forked from OpenSIPS/opensips
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dset.c
507 lines (425 loc) · 11 KB
/
dset.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
/*
* Copyright (C) 2001-2004 FhG FOKUS
*
* This file is part of opensips, a free SIP server.
*
* opensips is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version
*
* opensips is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
/*!
* \file
* \brief Destination set handling functions
*/
#include <string.h>
#include "dprint.h"
#include "config.h"
#include "parser/parser_f.h"
#include "parser/msg_parser.h"
#include "ut.h"
#include "hash_func.h"
#include "error.h"
#include "dset.h"
#include "mem/mem.h"
#include "ip_addr.h"
#define CONTACT "Contact: "
#define CONTACT_LEN (sizeof(CONTACT) - 1)
#define CONTACT_DELIM ", "
#define CONTACT_DELIM_LEN (sizeof(CONTACT_DELIM) - 1)
#define Q_PARAM ";q="
#define Q_PARAM_LEN (sizeof(Q_PARAM) - 1)
struct branch
{
char uri[MAX_URI_SIZE];
unsigned int len;
/* Real destination of the request */
char dst_uri[MAX_URI_SIZE];
unsigned int dst_uri_len;
/* Path vector of the request */
char path[MAX_PATH_SIZE];
unsigned int path_len;
int q; /* Preference of the contact among contact within the array */
struct socket_info* force_send_socket;
unsigned int flags;
};
/*! \brief
* Where we store URIs of additional transaction branches
* (-1 because of the default branch, #0)
*/
static struct branch branches[MAX_BRANCHES - 1];
static unsigned char dset_state = 1 /*enabled*/ ;
/*! how many of them we have */
unsigned int nr_branches = 0;
static inline unsigned int* get_ptr_bflags(struct sip_msg *msg, unsigned int b_idx)
{
if (b_idx==0) {
return &getb0flags(msg);
} else {
if (b_idx-1<nr_branches) {
return &branches[b_idx-1].flags;
} else {
return 0;
}
}
}
int setbflag(struct sip_msg *msg, unsigned int b_idx, unsigned int mask)
{
unsigned int *flags;
flags = get_ptr_bflags( msg, b_idx );
#ifdef EXTRA_DEBUG
LM_DBG("bflags for %p : (%u, %u)\n", msg, mask, *flags);
#endif
if (flags==0)
return -1;
(*flags) |= mask;
return 1;
}
/*! \brief
* Tests the per branch flags
*/
int isbflagset(struct sip_msg *msg, unsigned int b_idx, unsigned int mask)
{
unsigned int *flags;
flags = get_ptr_bflags( msg, b_idx );
#ifdef EXTRA_DEBUG
LM_DBG("bflags for %p : (%u, %u)\n", msg, mask, *flags);
#endif
if (flags==0)
return -1;
return ( (*flags) & mask) ? 1 : -1;
}
/*! \brief
* Resets the per branch flags
*/
int resetbflag(struct sip_msg *msg, unsigned int b_idx, unsigned int mask)
{
unsigned int *flags;
flags = get_ptr_bflags( msg, b_idx );
#ifdef EXTRA_DEBUG
LM_DBG("bflags for %p : (%u, %u)\n", msg, mask, *flags);
#endif
if (flags==0)
return -1;
(*flags) &= ~mask;
return 1;
}
/*! \brief Disable/Enables parallel branch usage (read and write)
*/
void set_dset_state(unsigned char enable)
{
static unsigned int bk_nr_branches;
if (enable) {
/* enable dset usage */
if (dset_state==1) return; /* already enabled */
/* enable read */
nr_branches = bk_nr_branches;
bk_nr_branches = 0;
/* enable write */
dset_state = 1;
} else {
/* disable dset usage */
if (dset_state==0) return; /* already disabled */
/* disable read */
bk_nr_branches = nr_branches;
nr_branches = 0;
/* disabel write */
dset_state = 0;
}
}
/*! \brief Find the next brand from the destination set
* \return Return the next branch from the dset
* array, 0 is returned if there are no
* more branches
*/
char* get_branch(unsigned int idx, int* len, qvalue_t* q, str* dst_uri,
str* path, unsigned int *flags, struct socket_info** force_socket)
{
if (idx < nr_branches) {
*len = branches[idx].len;
*q = branches[idx].q;
if (dst_uri) {
dst_uri->len = branches[idx].dst_uri_len;
dst_uri->s = (dst_uri->len)?branches[idx].dst_uri:0;
}
if (path) {
path->len = branches[idx].path_len;
path->s = (path->len)?branches[idx].path:0;
}
if (force_socket)
*force_socket = branches[idx].force_send_socket;
if (flags)
*flags = branches[idx].flags;
return branches[idx].uri;
} else {
*len = 0;
*q = Q_UNSPECIFIED;
if (dst_uri) {
dst_uri->s = 0;
dst_uri->len = 0;
}
if (force_socket)
*force_socket = 0;
if (flags)
*flags = 0;
return 0;
}
}
/*! \brief
* Empty the dset array
*/
void clear_branches(void)
{
nr_branches = 0;
}
/* ! \brief
* Add a new branch to current transaction
*/
int append_branch(struct sip_msg* msg, str* uri, str* dst_uri, str* path,
qvalue_t q, unsigned int flags, struct socket_info* force_socket)
{
str luri;
if (dset_state==0)
return -1;
/* if we have already set up the maximum number
* of branches, don't try new ones
*/
if (nr_branches == MAX_BRANCHES - 1) {
LM_ERR("max nr of branches exceeded\n");
ser_error = E_TOO_MANY_BRANCHES;
return -1;
}
/* if not parameterized, take current uri */
if (uri==0 || uri->len==0 || uri->s==0) {
if (msg->new_uri.s)
luri = msg->new_uri;
else
luri = msg->first_line.u.request.uri;
} else {
luri = *uri;
}
if (luri.len > MAX_URI_SIZE - 1) {
LM_ERR("too long uri: %.*s\n", luri.len, luri.s);
return -1;
}
/* copy the dst_uri */
if (dst_uri && dst_uri->len && dst_uri->s) {
if (dst_uri->len > MAX_URI_SIZE - 1) {
LM_ERR("too long dst_uri: %.*s\n",
dst_uri->len, dst_uri->s);
return -1;
}
memcpy(branches[nr_branches].dst_uri, dst_uri->s, dst_uri->len);
branches[nr_branches].dst_uri[dst_uri->len] = 0;
branches[nr_branches].dst_uri_len = dst_uri->len;
} else {
branches[nr_branches].dst_uri[0] = '\0';
branches[nr_branches].dst_uri_len = 0;
}
/* copy the path string */
if (path && path->len && path->s) {
if (path->len > MAX_PATH_SIZE - 1) {
LM_ERR("too long path: %.*s\n", path->len, path->s);
return -1;
}
memcpy(branches[nr_branches].path, path->s, path->len);
branches[nr_branches].path[path->len] = 0;
branches[nr_branches].path_len = path->len;
} else {
branches[nr_branches].path[0] = '\0';
branches[nr_branches].path_len = 0;
}
/* copy the ruri */
memcpy(branches[nr_branches].uri, luri.s, luri.len);
branches[nr_branches].uri[luri.len] = 0;
branches[nr_branches].len = luri.len;
branches[nr_branches].q = q;
branches[nr_branches].force_send_socket = force_socket;
branches[nr_branches].flags = flags;
nr_branches++;
return 1;
}
/* ! \brief
* Updates an already created branches
*/
int update_branch(unsigned int idx, str** uri, str** dst_uri, str** path,
qvalue_t* q, unsigned int* flags, struct socket_info** force_socket)
{
if (dset_state==0 || idx>=nr_branches)
return -1;
/* uri ? */
if (uri) {
/* set uri */
if (*uri==NULL || (*uri)->len>MAX_URI_SIZE-1) {
LM_ERR("empty or too long uri\n");
return -1;
}
memcpy(branches[idx].uri, (*uri)->s, (*uri)->len);
branches[idx].uri[(*uri)->len] = 0;
branches[idx].len = (*uri)->len;
}
/* duri ? */
if (dst_uri) {
if (*dst_uri && (*dst_uri)->len && (*dst_uri)->s) {
if ((*dst_uri)->len > MAX_URI_SIZE - 1) {
LM_ERR("too long dst_uri: %.*s\n",
(*dst_uri)->len, (*dst_uri)->s);
return -1;
}
memcpy(branches[idx].dst_uri, (*dst_uri)->s, (*dst_uri)->len);
branches[idx].dst_uri[(*dst_uri)->len] = 0;
branches[idx].dst_uri_len = (*dst_uri)->len;
} else {
branches[idx].dst_uri[0] = '\0';
branches[idx].dst_uri_len = 0;
}
}
/* path ? */
if (path) {
if (*path && (*path)->len && (*path)->s) {
if ((*path)->len > MAX_PATH_SIZE - 1) {
LM_ERR("too long path: %.*s\n", (*path)->len, (*path)->s);
return -1;
}
memcpy(branches[idx].path, (*path)->s, (*path)->len);
branches[idx].path[(*path)->len] = 0;
branches[idx].path_len = (*path)->len;
} else {
branches[idx].path[0] = '\0';
branches[idx].path_len = 0;
}
}
/* Q value ? */
if (q)
branches[idx].q = *q;
/* flags ? */
if (flags)
branches[idx].flags = *flags;
/* socket ? */
if (force_socket)
branches[idx].force_send_socket = *force_socket;
return 0;
}
int remove_branch( unsigned int idx)
{
if (dset_state==0 || idx>=nr_branches)
return -1;
/* not last branch ?*/
if ( idx+1!=nr_branches )
memmove( branches+idx , branches+idx+1,
(nr_branches-idx-1)*sizeof(struct branch) );
nr_branches--;
return 0;
}
/*! \brief
* Create a Contact header field from the dset
* array
*/
char* print_dset(struct sip_msg* msg, int* len)
{
int cnt, i, idx;
unsigned int qlen;
qvalue_t q;
str uri;
char* p, *qbuf;
static char *dset = NULL;
static unsigned int dset_len = 0;
if (msg->new_uri.s) {
cnt = 1;
*len = msg->new_uri.len+2 /*for <>*/;
if (get_ruri_q(msg) != Q_UNSPECIFIED) {
*len += Q_PARAM_LEN + len_q(get_ruri_q(msg));
}
} else {
cnt = 0;
*len = 0;
}
for( idx=0 ; (uri.s=get_branch(idx,&uri.len,&q,0,0,0,0))!=0 ; idx++ ) {
cnt++;
*len += uri.len+2 /*for <>*/ ;
if (q != Q_UNSPECIFIED) {
*len += Q_PARAM_LEN + len_q(q);
}
}
if (cnt == 0) return 0;
*len += CONTACT_LEN + CRLF_LEN + (cnt - 1) * CONTACT_DELIM_LEN;
/* does the current buffer fit the new dset ? */
if (*len + 1 > dset_len) {
/* need to resize */
if (dset) pkg_free(dset);
dset = (char*)pkg_malloc( *len + 1 );
if (dset==NULL) {
dset_len = 0;
LM_ERR("failed to allocate redirect buffer for %d bytes\n", *len + 1 );
return NULL;
}
dset_len = *len + 1;
}
memcpy(dset, CONTACT, CONTACT_LEN);
p = dset + CONTACT_LEN;
if (msg->new_uri.s) {
*p++ = '<';
memcpy(p, msg->new_uri.s, msg->new_uri.len);
p += msg->new_uri.len;
*p++ = '>';
if (get_ruri_q(msg) != Q_UNSPECIFIED) {
memcpy(p, Q_PARAM, Q_PARAM_LEN);
p += Q_PARAM_LEN;
qbuf = q2str(get_ruri_q(msg), &qlen);
memcpy(p, qbuf, qlen);
p += qlen;
}
i = 1;
} else {
i = 0;
}
for( idx=0 ; (uri.s=get_branch(idx,&uri.len,&q,0,0,0,0))!=0 ; idx++ ) {
if (i) {
memcpy(p, CONTACT_DELIM, CONTACT_DELIM_LEN);
p += CONTACT_DELIM_LEN;
}
*p++ = '<';
memcpy(p, uri.s, uri.len);
p += uri.len;
*p++ = '>';
if (q != Q_UNSPECIFIED) {
memcpy(p, Q_PARAM, Q_PARAM_LEN);
p += Q_PARAM_LEN;
qbuf = q2str(q, &qlen);
memcpy(p, qbuf, qlen);
p += qlen;
}
i++;
}
memcpy(p, CRLF " ", CRLF_LEN + 1);
return dset;
}
/*! \brief moves the uri to destination for all branches and
* all uris are set to given uri */
int branch_uri2dset( str *new_uri )
{
unsigned int b;
if (new_uri->len+1 > MAX_URI_SIZE) {
LM_ERR("new uri too long (%d)\n",new_uri->len);
return -1;
}
for( b=0 ; b<nr_branches ; b++ ) {
/* move uri to dst */
memcpy( branches[b].dst_uri, branches[b].uri, branches[b].len+1);
branches[b].dst_uri_len = branches[b].len;
/* set new uri */
memcpy( branches[b].uri, new_uri->s, new_uri->len);
branches[b].len = new_uri->len;
branches[b].uri[new_uri->len] = 0;
}
return 0;
}