-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathid.c
216 lines (187 loc) · 4.93 KB
/
id.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
/*
* $Id: id.c 166 2007-03-02 19:28:23Z vingarzan $
*
* Copyright (C) 2005 iptelorg GmbH
*
* This file is part of ser, a free SIP server.
*
* ser 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
*
* For a license to use the ser software under conditions
* other than those described here, or to purchase support for this
* software, please contact iptel.org by e-mail at the following addresses:
*
* ser 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
*/
#include "id.h"
#include "parser/parse_from.h"
#include "parser/parse_uri.h"
#include "parser/digest/digest.h"
#include "ut.h"
static str uid_name = STR_STATIC_INIT(AVP_UID);
static str did_name = STR_STATIC_INIT(AVP_DID);
/*
* Set From UID
*/
int set_from_uid(str* uid)
{
struct search_state s;
int_str val, name;
avp_t* a;
name.s = uid_name;
a = search_first_avp(AVP_CLASS_USER | AVP_TRACK_FROM | AVP_NAME_STR, name, 0, &s);
while(a) {
destroy_avp(a);
a = search_next_avp(&s, 0);
}
val.s = *uid;
return add_avp(AVP_CLASS_USER | AVP_TRACK_FROM | AVP_NAME_STR | AVP_VAL_STR, name, val);
}
/* Extract username attribute from authorized credentials */
static inline str* cred_user(struct sip_msg* msg)
{
struct hdr_field* h;
auth_body_t* cred;
get_authorized_cred(msg->proxy_auth, &h);
if (!h) get_authorized_cred(msg->authorization, &h);
if (!h) return 0;
cred = (auth_body_t*)(h->parsed);
if (!cred || !cred->digest.username.user.len) return 0;
return &cred->digest.username.user;
}
/*
* Set From UID
*/
int get_from_uid(str* uid, struct sip_msg* msg)
{
static char buf[MAX_URI_SIZE];
struct to_body* from;
struct sip_uri puri;
str* du;
int_str val, name;
name.s = uid_name;
if (search_first_avp(AVP_CLASS_USER | AVP_TRACK_FROM | AVP_NAME_STR, name, &val, 0)) {
*uid = val.s;
return 1;
} else {
du = cred_user(msg);
if (du) {
/* Try digest username first */
*uid = *du;
} else {
/* Get From URI username */
if (parse_from_header(msg) < 0) {
LOG(L_ERR, "get_from_uid: Error while parsing From header\n");
return -1;
}
from = get_from(msg);
if (parse_uri(from->uri.s, from->uri.len, &puri) == -1) {
LOG(L_ERR, "get_from_uid: Error while parsing From URI\n");
return -1;
}
if (puri.user.len > MAX_URI_SIZE) {
LOG(L_ERR, "get_from_uid: Username too long\n");
return -1;
}
memcpy(buf, puri.user.s, puri.user.len);
uid->s = buf;
uid->len = puri.user.len;
strlower(uid);
}
val.s = *uid;
add_avp(AVP_CLASS_USER | AVP_TRACK_FROM | AVP_NAME_STR | AVP_VAL_STR, name, val);
return 0;
}
}
/*
* Set To UID
*/
int set_to_uid(str* uid)
{
struct search_state s;
int_str val, name;
avp_t* a;
name.s = uid_name;
a = search_first_avp(AVP_CLASS_USER | AVP_TRACK_TO | AVP_NAME_STR, name, 0, &s);
while(a) {
destroy_avp(a);
a = search_next_avp(&s, 0);
}
val.s = *uid;
return add_avp(AVP_CLASS_USER | AVP_TRACK_TO | AVP_NAME_STR | AVP_VAL_STR, name, val);
}
/*
* Get To UID
*/
int get_to_uid(str* uid, struct sip_msg* msg)
{
static char buf[MAX_URI_SIZE];
struct to_body* to;
struct sip_uri puri;
int_str val, name;
name.s = uid_name;
if (search_first_avp(AVP_CLASS_USER | AVP_TRACK_TO | AVP_NAME_STR, name, &val, 0)) {
*uid = val.s;
return 1;
} else {
if ((msg->to==0) &&
(parse_headers(msg, HDR_TO_F, 0)<0 || msg->to==0)) {
LOG(L_ERR, "get_to_uid: Error while parsing To URI: "
" to header bad or missing\n");
return -1;
}
to = get_to(msg);
if (parse_uri(to->uri.s, to->uri.len, &puri) == -1) {
LOG(L_ERR, "get_to_uid: Error while parsing To URI\n");
return -1;
}
if (puri.user.len > MAX_URI_SIZE) {
LOG(L_ERR, "get_to_uid: Username too long\n");
return -1;
}
memcpy(buf, puri.user.s, puri.user.len);
uid->s = buf;
uid->len = puri.user.len;
strlower(uid);
val.s = *uid;
add_avp(AVP_CLASS_USER | AVP_TRACK_TO | AVP_NAME_STR | AVP_VAL_STR, name, val);
return 0;
}
}
/*
* Return current To domain id
*/
int get_to_did(str* did, struct sip_msg* msg)
{
int_str val, name;
name.s = did_name;
if (search_first_avp(AVP_TRACK_TO | AVP_NAME_STR, name, &val, 0)) {
*did = val.s;
return 1;
}
return 0;
}
/*
* Return current To domain id
*/
int get_from_did(str* did, struct sip_msg* msg)
{
int_str val, name;
name.s = did_name;
if (search_first_avp(AVP_TRACK_FROM | AVP_NAME_STR, name, &val, 0)) {
*did = val.s;
return 1;
}
return 0;
}