forked from OpenSIPS/opensips
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpath.c
More file actions
219 lines (192 loc) · 5.89 KB
/
Copy pathpath.c
File metadata and controls
219 lines (192 loc) · 5.89 KB
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
/*
* Path handling for intermediate proxies.
*
* Copyright (C) 2006 Inode GmbH (Andreas Granig <andreas.granig@inode.info>)
*
* 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*
*/
#include <string.h>
#include <stdio.h>
#include "../mem/mem.h"
#include "../data_lump.h"
#include "../parser/parse_param.h"
#include "path.h"
#define INBOUND 1 /* Insert inbound Path */
#define OUTBOUND 0 /* Insert outbound Path */
static int build_path(struct sip_msg* _m, struct lump* l, struct lump* l2,
str* user, int recv, int _inbound, int double_path)
{
char *prefix, *suffix, *crlf, *r2;
int prefix_len, suffix_len;
str rcv_addr = {0, 0};
char *src_ip;
prefix = suffix = crlf = r2 = 0;
prefix_len = PATH_PREFIX_LEN + (user->len ? (user->len+1) : 0);
prefix = pkg_malloc(prefix_len);
if (!prefix) {
LM_ERR("no pkg memory left for prefix\n");
goto out1;
}
memcpy(prefix, PATH_PREFIX, PATH_PREFIX_LEN);
if (user->len) {
memcpy(prefix + PATH_PREFIX_LEN, user->s, user->len);
memcpy(prefix + prefix_len - 1, "@", 1);
}
suffix_len = PATH_LR_PARAM_LEN +
((recv && (!double_path || _inbound == INBOUND)) ?
PATH_RC_PARAM_LEN : 0);
suffix = pkg_malloc(suffix_len);
if (!suffix) {
LM_ERR("no pkg memory left for suffix\n");
goto out1;
}
memcpy(suffix, PATH_LR_PARAM, PATH_LR_PARAM_LEN);
if (recv && (!double_path || _inbound == INBOUND))
memcpy(suffix+PATH_LR_PARAM_LEN, PATH_RC_PARAM, PATH_RC_PARAM_LEN);
crlf = pkg_malloc(PATH_CRLF_LEN);
if (!crlf) {
LM_ERR("no pkg memory left for crlf\n");
goto out1;
}
memcpy(crlf, PATH_CRLF, PATH_CRLF_LEN);
r2 = pkg_malloc(PATH_R2_LEN);
if (!r2) {
LM_ERR("no pkg memory left for r2\n");
goto out1;
}
memcpy(r2, PATH_R2, PATH_R2_LEN);
l = insert_new_lump_after(l, prefix, prefix_len, 0);
if (!l) goto out1;
l = insert_subst_lump_after(l, _inbound?SUBST_RCV_ALL:SUBST_SND_ALL, 0);
if (!l) goto out2;
if (double_path) {
if (!(l = insert_cond_lump_after(l, COND_IF_DIFF_REALMS, 0)))
goto out2;
if (!(l = insert_new_lump_after(l, r2, PATH_R2_LEN, 0)))
goto out2;
r2 = 0;
} else {
pkg_free(r2);
r2 = 0;
}
l2 = insert_new_lump_before(l2, suffix, suffix_len, 0);
if (!l) goto out3;
if (recv && (!double_path || _inbound == INBOUND)) {
/* TODO: agranig: optimize this one! */
src_ip = ip_addr2a(&_m->rcv.src_ip);
rcv_addr.s = pkg_malloc(4 + IP_ADDR_MAX_STR_SIZE + 7 +
PATH_ESC_TRANS_PARAM_LEN + 4); /* sip:<ip>:<port>(\0|[%3btransport%3dxxxx]) */
if(!rcv_addr.s) {
LM_ERR("no pkg memory left for receive-address\n");
goto out4;
}
rcv_addr.len = snprintf(rcv_addr.s, 4 + IP_ADDR_MAX_STR_SIZE + 6,
"sip:%s:%u", src_ip, _m->rcv.src_port);
switch (_m->rcv.proto) {
case PROTO_TCP:
memcpy(rcv_addr.s+rcv_addr.len, PATH_ESC_TRANS_PARAM "tcp",
PATH_ESC_TRANS_PARAM_LEN+3);
rcv_addr.len += PATH_ESC_TRANS_PARAM_LEN + 3;
break;
case PROTO_TLS:
memcpy(rcv_addr.s+rcv_addr.len, PATH_ESC_TRANS_PARAM "tls",
PATH_ESC_TRANS_PARAM_LEN+3);
rcv_addr.len += PATH_ESC_TRANS_PARAM_LEN + 3;
break;
case PROTO_SCTP:
memcpy(rcv_addr.s+rcv_addr.len, PATH_ESC_TRANS_PARAM "sctp",
PATH_ESC_TRANS_PARAM_LEN+4);
rcv_addr.len += PATH_ESC_TRANS_PARAM_LEN + 4;
break;
}
l2 = insert_new_lump_before(l2, rcv_addr.s, rcv_addr.len, 0);
if (!l2) goto out4;
}
l2 = insert_new_lump_before(l2, crlf, CRLF_LEN+1, 0);
if (!l2) goto out5;
return 1;
out1:
if (prefix) pkg_free(prefix);
out2:
if (r2) pkg_free(r2);
out3:
if (suffix) pkg_free(suffix);
out4:
if (rcv_addr.s) pkg_free(rcv_addr.s);
out5:
if (crlf) pkg_free(crlf);
LM_ERR("failed to insert prefix lump\n");
return -1;
}
int prepend_path(struct sip_msg* _m, str *user, int recv, int double_path)
{
struct lump* l, *l2;
struct hdr_field *hf;
if (parse_headers(_m, HDR_PATH_F, 0) < 0) {
LM_ERR("failed to parse message for Path header\n");
return -1;
}
for (hf = _m->headers; hf; hf = hf->next) {
if (hf->type == HDR_PATH_T) {
break;
}
}
if (hf) {
/* path found, add ours in front of that */
l = anchor_lump(_m, hf->name.s - _m->buf, 0);
l2 = anchor_lump(_m, hf->name.s - _m->buf, 0);
} else {
/* no path, append to message */
l = anchor_lump(_m, _m->unparsed - _m->buf, 0);
l2 = anchor_lump(_m, _m->unparsed - _m->buf, 0);
}
if (!l || !l2) {
LM_ERR("failed to get anchor\n");
return -2;
}
if (build_path(_m, l, l2, user, recv, OUTBOUND, double_path) < 0) {
LM_ERR("failed to insert outbound Path");
return -3;
}
if (double_path) {
if (hf) {
/* path found, add ours in front of that */
l = anchor_lump(_m, hf->name.s - _m->buf, 0);
l2 = anchor_lump(_m, hf->name.s - _m->buf, 0);
} else {
/* no path, append to message */
l = anchor_lump(_m, _m->unparsed - _m->buf, 0);
l2 = anchor_lump(_m, _m->unparsed - _m->buf, 0);
}
if (!l || !l2) {
LM_ERR("failed to get anchor\n");
return -4;
}
l = insert_cond_lump_after(l, COND_IF_DIFF_REALMS, 0);
l2 = insert_cond_lump_before(l2, COND_IF_DIFF_REALMS, 0);
if (!l || !l2) {
LM_ERR("failed to insert conditional lump\n");
return -5;
}
if (build_path(_m, l, l2, user, recv, INBOUND, double_path) < 0) {
LM_ERR("failed to insert inbound Path");
return -6;
}
}
return 0;
}