blob: 62c2451abc22ee43f28d55067b6ef9d29fa3c9d5 [file] [log] [blame]
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001/* $Id$ */
2/*
Benny Prijono844653c2008-12-23 17:27:53 +00003 * Copyright (C) 2008-2009 Teluu Inc. (http://www.teluu.com)
Benny Prijono32177c02008-06-20 22:44:47 +00004 * Copyright (C) 2003-2008 Benny Prijono <benny@prijono.org>
Benny Prijonoeebe9af2006-06-13 22:57:13 +00005 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19 */
20#include <pjsua-lib/pjsua.h>
21#include <pjsua-lib/pjsua_internal.h>
22
23
24#define THIS_FILE "pjsua_acc.c"
25
26
Nanang Izzuddin36dd5b62010-03-30 11:13:59 +000027static void schedule_reregistration(pjsua_acc *acc);
28
Benny Prijonoeebe9af2006-06-13 22:57:13 +000029/*
30 * Get number of current accounts.
31 */
32PJ_DEF(unsigned) pjsua_acc_get_count(void)
33{
34 return pjsua_var.acc_cnt;
35}
36
37
38/*
39 * Check if the specified account ID is valid.
40 */
41PJ_DEF(pj_bool_t) pjsua_acc_is_valid(pjsua_acc_id acc_id)
42{
Benny Prijonoa1e69682007-05-11 15:14:34 +000043 return acc_id>=0 && acc_id<(int)PJ_ARRAY_SIZE(pjsua_var.acc) &&
Benny Prijonoeebe9af2006-06-13 22:57:13 +000044 pjsua_var.acc[acc_id].valid;
45}
46
47
48/*
Benny Prijono21b9ad92006-08-15 13:11:22 +000049 * Set default account
50 */
51PJ_DEF(pj_status_t) pjsua_acc_set_default(pjsua_acc_id acc_id)
52{
53 pjsua_var.default_acc = acc_id;
54 return PJ_SUCCESS;
55}
56
57
58/*
59 * Get default account.
60 */
61PJ_DEF(pjsua_acc_id) pjsua_acc_get_default(void)
62{
63 return pjsua_var.default_acc;
64}
65
66
67/*
Benny Prijonoeebe9af2006-06-13 22:57:13 +000068 * Copy account configuration.
69 */
Benny Prijonobddef2c2007-10-31 13:28:08 +000070PJ_DEF(void) pjsua_acc_config_dup( pj_pool_t *pool,
71 pjsua_acc_config *dst,
72 const pjsua_acc_config *src)
Benny Prijonoeebe9af2006-06-13 22:57:13 +000073{
74 unsigned i;
75
76 pj_memcpy(dst, src, sizeof(pjsua_acc_config));
77
78 pj_strdup_with_null(pool, &dst->id, &src->id);
79 pj_strdup_with_null(pool, &dst->reg_uri, &src->reg_uri);
Benny Prijonob4a17c92006-07-10 14:40:21 +000080 pj_strdup_with_null(pool, &dst->force_contact, &src->force_contact);
Benny Prijonofe04fb52007-08-24 08:28:52 +000081 pj_strdup_with_null(pool, &dst->pidf_tuple_id, &src->pidf_tuple_id);
Benny Prijonoeebe9af2006-06-13 22:57:13 +000082
83 dst->proxy_cnt = src->proxy_cnt;
84 for (i=0; i<src->proxy_cnt; ++i)
85 pj_strdup_with_null(pool, &dst->proxy[i], &src->proxy[i]);
86
87 dst->reg_timeout = src->reg_timeout;
88 dst->cred_count = src->cred_count;
89
90 for (i=0; i<src->cred_count; ++i) {
91 pjsip_cred_dup(pool, &dst->cred_info[i], &src->cred_info[i]);
92 }
Benny Prijonobddef2c2007-10-31 13:28:08 +000093
94 dst->ka_interval = src->ka_interval;
95 pj_strdup(pool, &dst->ka_data, &src->ka_data);
Benny Prijonoeebe9af2006-06-13 22:57:13 +000096}
97
Nanang Izzuddinc3ea16a2010-04-20 14:36:38 +000098/*
99 * Calculate CRC of proxy list.
100 */
101static pj_uint32_t calc_proxy_crc(const pj_str_t proxy[], pj_size_t cnt)
102{
103 pj_crc32_context ctx;
104 unsigned i;
105
106 pj_crc32_init(&ctx);
107 for (i=0; i<cnt; ++i) {
108 pj_crc32_update(&ctx, (pj_uint8_t*)proxy[i].ptr, proxy[i].slen);
109 }
110
111 return pj_crc32_final(&ctx);
112}
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000113
114/*
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000115 * Initialize a new account (after configuration is set).
116 */
117static pj_status_t initialize_acc(unsigned acc_id)
118{
119 pjsua_acc_config *acc_cfg = &pjsua_var.acc[acc_id].cfg;
120 pjsua_acc *acc = &pjsua_var.acc[acc_id];
Benny Prijonoc570f2d2006-07-18 00:33:02 +0000121 pjsip_name_addr *name_addr;
Benny Prijonob4a17c92006-07-10 14:40:21 +0000122 pjsip_sip_uri *sip_uri, *sip_reg_uri;
Benny Prijono3a5e1ab2006-08-15 20:26:34 +0000123 pj_status_t status;
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000124 unsigned i;
125
126 /* Need to parse local_uri to get the elements: */
127
Benny Prijonoc570f2d2006-07-18 00:33:02 +0000128 name_addr = (pjsip_name_addr*)
Benny Prijonoc91ed8d2008-07-13 12:24:55 +0000129 pjsip_parse_uri(acc->pool, acc_cfg->id.ptr,
Benny Prijonoc570f2d2006-07-18 00:33:02 +0000130 acc_cfg->id.slen,
131 PJSIP_PARSE_URI_AS_NAMEADDR);
132 if (name_addr == NULL) {
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000133 pjsua_perror(THIS_FILE, "Invalid local URI",
134 PJSIP_EINVALIDURI);
135 return PJSIP_EINVALIDURI;
136 }
137
138 /* Local URI MUST be a SIP or SIPS: */
139
Benny Prijonoc570f2d2006-07-18 00:33:02 +0000140 if (!PJSIP_URI_SCHEME_IS_SIP(name_addr) &&
141 !PJSIP_URI_SCHEME_IS_SIPS(name_addr))
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000142 {
143 pjsua_perror(THIS_FILE, "Invalid local URI",
144 PJSIP_EINVALIDSCHEME);
145 return PJSIP_EINVALIDSCHEME;
146 }
147
148
149 /* Get the SIP URI object: */
Benny Prijonoc570f2d2006-07-18 00:33:02 +0000150 sip_uri = (pjsip_sip_uri*) pjsip_uri_get_uri(name_addr);
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000151
Benny Prijonob4a17c92006-07-10 14:40:21 +0000152
153 /* Parse registrar URI, if any */
154 if (acc_cfg->reg_uri.slen) {
155 pjsip_uri *reg_uri;
156
Benny Prijonoc91ed8d2008-07-13 12:24:55 +0000157 reg_uri = pjsip_parse_uri(acc->pool, acc_cfg->reg_uri.ptr,
Benny Prijonob4a17c92006-07-10 14:40:21 +0000158 acc_cfg->reg_uri.slen, 0);
159 if (reg_uri == NULL) {
160 pjsua_perror(THIS_FILE, "Invalid registrar URI",
161 PJSIP_EINVALIDURI);
162 return PJSIP_EINVALIDURI;
163 }
164
165 /* Registrar URI MUST be a SIP or SIPS: */
166 if (!PJSIP_URI_SCHEME_IS_SIP(reg_uri) &&
167 !PJSIP_URI_SCHEME_IS_SIPS(reg_uri))
168 {
169 pjsua_perror(THIS_FILE, "Invalid registar URI",
170 PJSIP_EINVALIDSCHEME);
171 return PJSIP_EINVALIDSCHEME;
172 }
173
174 sip_reg_uri = (pjsip_sip_uri*) pjsip_uri_get_uri(reg_uri);
175
176 } else {
177 sip_reg_uri = NULL;
178 }
179
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000180 /* Save the user and domain part. These will be used when finding an
181 * account for incoming requests.
182 */
Benny Prijonoc570f2d2006-07-18 00:33:02 +0000183 acc->display = name_addr->display;
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000184 acc->user_part = sip_uri->user;
Benny Prijonob4a17c92006-07-10 14:40:21 +0000185 acc->srv_domain = sip_uri->host;
186 acc->srv_port = 0;
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000187
Benny Prijonob4a17c92006-07-10 14:40:21 +0000188 if (sip_reg_uri) {
189 acc->srv_port = sip_reg_uri->port;
190 }
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000191
192 /* Create Contact header if not present. */
Benny Prijonob4a17c92006-07-10 14:40:21 +0000193 //if (acc_cfg->contact.slen == 0) {
194 // acc_cfg->contact = acc_cfg->id;
195 //}
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000196
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000197 /* Build account route-set from outbound proxies and route set from
198 * account configuration.
199 */
200 pj_list_init(&acc->route_set);
201
Benny Prijono29c8ca32010-06-22 06:02:13 +0000202 if (!pj_list_empty(&pjsua_var.outbound_proxy)) {
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000203 pjsip_route_hdr *r;
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000204
Benny Prijono29c8ca32010-06-22 06:02:13 +0000205 r = pjsua_var.outbound_proxy.next;
206 while (r != &pjsua_var.outbound_proxy) {
207 pj_list_push_back(&acc->route_set,
208 pjsip_hdr_shallow_clone(acc->pool, r));
209 r = r->next;
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000210 }
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000211 }
212
213 for (i=0; i<acc_cfg->proxy_cnt; ++i) {
214 pj_str_t hname = { "Route", 5};
215 pjsip_route_hdr *r;
216 pj_str_t tmp;
217
Benny Prijonoc91ed8d2008-07-13 12:24:55 +0000218 pj_strdup_with_null(acc->pool, &tmp, &acc_cfg->proxy[i]);
Benny Prijonoa1e69682007-05-11 15:14:34 +0000219 r = (pjsip_route_hdr*)
Benny Prijonoc91ed8d2008-07-13 12:24:55 +0000220 pjsip_parse_hdr(acc->pool, &hname, tmp.ptr, tmp.slen, NULL);
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000221 if (r == NULL) {
222 pjsua_perror(THIS_FILE, "Invalid URI in account route set",
223 PJ_EINVAL);
224 return PJ_EINVAL;
225 }
226 pj_list_push_back(&acc->route_set, r);
227 }
228
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000229 /* Concatenate credentials from account config and global config */
230 acc->cred_cnt = 0;
231 for (i=0; i<acc_cfg->cred_count; ++i) {
232 acc->cred[acc->cred_cnt++] = acc_cfg->cred_info[i];
233 }
234 for (i=0; i<pjsua_var.ua_cfg.cred_count &&
235 acc->cred_cnt < PJ_ARRAY_SIZE(acc->cred); ++i)
236 {
237 acc->cred[acc->cred_cnt++] = pjsua_var.ua_cfg.cred_info[i];
238 }
239
Benny Prijono07fe2302010-06-24 12:33:18 +0000240 /* If ICE is enabled, add "+sip.ice" media feature tag in account's
241 * contact params.
242 */
243#if PJSUA_ADD_ICE_TAGS
244 if (pjsua_var.media_cfg.enable_ice) {
245 unsigned new_len;
246 pj_str_t new_prm;
247
248 new_len = acc_cfg->contact_params.slen + 10;
249 new_prm.ptr = (char*)pj_pool_alloc(acc->pool, new_len);
250 pj_strcpy(&new_prm, &acc_cfg->contact_params);
251 pj_strcat2(&new_prm, ";+sip.ice");
252 acc_cfg->contact_params = new_prm;
253 }
254#endif
255
Benny Prijono3a5e1ab2006-08-15 20:26:34 +0000256 status = pjsua_pres_init_acc(acc_id);
257 if (status != PJ_SUCCESS)
258 return status;
259
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000260 /* Mark account as valid */
261 pjsua_var.acc[acc_id].valid = PJ_TRUE;
262
Benny Prijono093d3022006-09-24 00:07:11 +0000263 /* Insert account ID into account ID array, sorted by priority */
264 for (i=0; i<pjsua_var.acc_cnt; ++i) {
265 if ( pjsua_var.acc[pjsua_var.acc_ids[i]].cfg.priority <
266 pjsua_var.acc[acc_id].cfg.priority)
267 {
268 break;
269 }
270 }
271 pj_array_insert(pjsua_var.acc_ids, sizeof(pjsua_var.acc_ids[0]),
272 pjsua_var.acc_cnt, i, &acc_id);
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000273
274 return PJ_SUCCESS;
275}
276
277
278/*
279 * Add a new account to pjsua.
280 */
281PJ_DEF(pj_status_t) pjsua_acc_add( const pjsua_acc_config *cfg,
282 pj_bool_t is_default,
283 pjsua_acc_id *p_acc_id)
284{
Benny Prijonoc91ed8d2008-07-13 12:24:55 +0000285 pjsua_acc *acc;
Benny Prijono91d06b62008-09-20 12:16:56 +0000286 unsigned i, id;
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000287 pj_status_t status;
288
289 PJ_ASSERT_RETURN(pjsua_var.acc_cnt < PJ_ARRAY_SIZE(pjsua_var.acc),
290 PJ_ETOOMANY);
291
292 /* Must have a transport */
Benny Prijonoe93e2872006-06-28 16:46:49 +0000293 PJ_ASSERT_RETURN(pjsua_var.tpdata[0].data.ptr != NULL, PJ_EINVALIDOP);
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000294
295 PJSUA_LOCK();
296
297 /* Find empty account id. */
298 for (id=0; id < PJ_ARRAY_SIZE(pjsua_var.acc); ++id) {
299 if (pjsua_var.acc[id].valid == PJ_FALSE)
300 break;
301 }
302
303 /* Expect to find a slot */
304 PJ_ASSERT_ON_FAIL( id < PJ_ARRAY_SIZE(pjsua_var.acc),
305 {PJSUA_UNLOCK(); return PJ_EBUG;});
306
Benny Prijonoc91ed8d2008-07-13 12:24:55 +0000307 acc = &pjsua_var.acc[id];
308
309 /* Create pool for this account. */
310 if (acc->pool)
311 pj_pool_reset(acc->pool);
312 else
313 acc->pool = pjsua_pool_create("acc%p", 512, 256);
314
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000315 /* Copy config */
Benny Prijonoc91ed8d2008-07-13 12:24:55 +0000316 pjsua_acc_config_dup(acc->pool, &pjsua_var.acc[id].cfg, cfg);
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000317
318 /* Normalize registration timeout */
319 if (pjsua_var.acc[id].cfg.reg_uri.slen &&
320 pjsua_var.acc[id].cfg.reg_timeout == 0)
321 {
322 pjsua_var.acc[id].cfg.reg_timeout = PJSUA_REG_INTERVAL;
323 }
324
Nanang Izzuddinc3ea16a2010-04-20 14:36:38 +0000325 /* Get CRC of account proxy setting */
326 acc->local_route_crc = calc_proxy_crc(acc->cfg.proxy, acc->cfg.proxy_cnt);
327
328 /* Get CRC of global outbound proxy setting */
329 acc->global_route_crc=calc_proxy_crc(pjsua_var.ua_cfg.outbound_proxy,
330 pjsua_var.ua_cfg.outbound_proxy_cnt);
331
Benny Prijono91d06b62008-09-20 12:16:56 +0000332 /* Check the route URI's and force loose route if required */
333 for (i=0; i<acc->cfg.proxy_cnt; ++i) {
334 status = normalize_route_uri(acc->pool, &acc->cfg.proxy[i]);
335 if (status != PJ_SUCCESS)
336 return status;
337 }
338
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000339 status = initialize_acc(id);
340 if (status != PJ_SUCCESS) {
341 pjsua_perror(THIS_FILE, "Error adding account", status);
Benny Prijonoc91ed8d2008-07-13 12:24:55 +0000342 pj_pool_release(acc->pool);
343 acc->pool = NULL;
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000344 PJSUA_UNLOCK();
345 return status;
346 }
347
348 if (is_default)
349 pjsua_var.default_acc = id;
350
351 if (p_acc_id)
352 *p_acc_id = id;
353
354 pjsua_var.acc_cnt++;
355
356 PJSUA_UNLOCK();
357
358 PJ_LOG(4,(THIS_FILE, "Account %.*s added with id %d",
359 (int)cfg->id.slen, cfg->id.ptr, id));
360
361 /* If accounts has registration enabled, start registration */
362 if (pjsua_var.acc[id].cfg.reg_uri.slen)
363 pjsua_acc_set_registration(id, PJ_TRUE);
Benny Prijono4dd961b2009-10-26 11:21:37 +0000364 else {
365 /* Otherwise subscribe to MWI, if it's enabled */
366 if (pjsua_var.acc[id].cfg.mwi_enabled)
367 pjsua_start_mwi(&pjsua_var.acc[id]);
368 }
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000369
370 return PJ_SUCCESS;
371}
372
373
374/*
375 * Add local account
376 */
377PJ_DEF(pj_status_t) pjsua_acc_add_local( pjsua_transport_id tid,
378 pj_bool_t is_default,
379 pjsua_acc_id *p_acc_id)
380{
381 pjsua_acc_config cfg;
Benny Prijono62c5c5b2007-01-13 23:22:40 +0000382 pjsua_transport_data *t = &pjsua_var.tpdata[tid];
Benny Prijonod0bd4982007-12-02 15:40:52 +0000383 const char *beginquote, *endquote;
384 char transport_param[32];
Benny Prijonoe85bc412006-07-29 20:29:24 +0000385 char uri[PJSIP_MAX_URL_SIZE];
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000386
Benny Prijonoe93e2872006-06-28 16:46:49 +0000387 /* ID must be valid */
Benny Prijonoa1e69682007-05-11 15:14:34 +0000388 PJ_ASSERT_RETURN(tid>=0 && tid<(int)PJ_ARRAY_SIZE(pjsua_var.tpdata),
389 PJ_EINVAL);
Benny Prijonoe93e2872006-06-28 16:46:49 +0000390
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000391 /* Transport must be valid */
Benny Prijonoe93e2872006-06-28 16:46:49 +0000392 PJ_ASSERT_RETURN(t->data.ptr != NULL, PJ_EINVAL);
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000393
394 pjsua_acc_config_default(&cfg);
395
Benny Prijono093d3022006-09-24 00:07:11 +0000396 /* Lower the priority of local account */
397 --cfg.priority;
398
Benny Prijonod0bd4982007-12-02 15:40:52 +0000399 /* Enclose IPv6 address in square brackets */
400 if (t->type & PJSIP_TRANSPORT_IPV6) {
401 beginquote = "[";
402 endquote = "]";
403 } else {
404 beginquote = endquote = "";
405 }
406
407 /* Don't add transport parameter if it's UDP */
Benny Prijono4c82c1e2008-10-16 08:14:51 +0000408 if (t->type!=PJSIP_TRANSPORT_UDP && t->type!=PJSIP_TRANSPORT_UDP6) {
Benny Prijonod0bd4982007-12-02 15:40:52 +0000409 pj_ansi_snprintf(transport_param, sizeof(transport_param),
410 ";transport=%s",
411 pjsip_transport_get_type_name(t->type));
412 } else {
413 transport_param[0] = '\0';
414 }
415
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000416 /* Build URI for the account */
Benny Prijonoe85bc412006-07-29 20:29:24 +0000417 pj_ansi_snprintf(uri, PJSIP_MAX_URL_SIZE,
Benny Prijonod0bd4982007-12-02 15:40:52 +0000418 "<sip:%s%.*s%s:%d%s>",
419 beginquote,
Benny Prijonoe85bc412006-07-29 20:29:24 +0000420 (int)t->local_name.host.slen,
421 t->local_name.host.ptr,
Benny Prijonod0bd4982007-12-02 15:40:52 +0000422 endquote,
Benny Prijonoe85bc412006-07-29 20:29:24 +0000423 t->local_name.port,
Benny Prijonod0bd4982007-12-02 15:40:52 +0000424 transport_param);
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000425
426 cfg.id = pj_str(uri);
427
428 return pjsua_acc_add(&cfg, is_default, p_acc_id);
429}
430
431
432/*
Benny Prijono705e7842008-07-21 18:12:51 +0000433 * Set arbitrary data to be associated with the account.
434 */
435PJ_DEF(pj_status_t) pjsua_acc_set_user_data(pjsua_acc_id acc_id,
436 void *user_data)
437{
438 PJ_ASSERT_RETURN(acc_id>=0 && acc_id<(int)PJ_ARRAY_SIZE(pjsua_var.acc),
439 PJ_EINVAL);
440 PJ_ASSERT_RETURN(pjsua_var.acc[acc_id].valid, PJ_EINVALIDOP);
441
442 PJSUA_LOCK();
443
444 pjsua_var.acc[acc_id].cfg.user_data = user_data;
445
446 PJSUA_UNLOCK();
447
448 return PJ_SUCCESS;
449}
450
451
452/*
453 * Retrieve arbitrary data associated with the account.
454 */
455PJ_DEF(void*) pjsua_acc_get_user_data(pjsua_acc_id acc_id)
456{
457 PJ_ASSERT_RETURN(acc_id>=0 && acc_id<(int)PJ_ARRAY_SIZE(pjsua_var.acc),
458 NULL);
459 PJ_ASSERT_RETURN(pjsua_var.acc[acc_id].valid, NULL);
460
461 return pjsua_var.acc[acc_id].cfg.user_data;
462}
463
464
465/*
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000466 * Delete account.
467 */
468PJ_DEF(pj_status_t) pjsua_acc_del(pjsua_acc_id acc_id)
469{
Benny Prijono093d3022006-09-24 00:07:11 +0000470 unsigned i;
471
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000472 PJ_ASSERT_RETURN(acc_id>=0 && acc_id<(int)PJ_ARRAY_SIZE(pjsua_var.acc),
473 PJ_EINVAL);
474 PJ_ASSERT_RETURN(pjsua_var.acc[acc_id].valid, PJ_EINVALIDOP);
475
476 PJSUA_LOCK();
477
Nanang Izzuddin36dd5b62010-03-30 11:13:59 +0000478 /* Cancel any re-registration timer */
479 pjsua_cancel_timer(&pjsua_var.acc[acc_id].auto_rereg.timer);
480
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000481 /* Delete registration */
Benny Prijono922933b2007-01-21 16:23:56 +0000482 if (pjsua_var.acc[acc_id].regc != NULL) {
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000483 pjsua_acc_set_registration(acc_id, PJ_FALSE);
Benny Prijonoe68e99f2007-06-06 00:28:10 +0000484 if (pjsua_var.acc[acc_id].regc) {
485 pjsip_regc_destroy(pjsua_var.acc[acc_id].regc);
486 }
Benny Prijono922933b2007-01-21 16:23:56 +0000487 pjsua_var.acc[acc_id].regc = NULL;
488 }
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000489
490 /* Delete server presence subscription */
491 pjsua_pres_delete_acc(acc_id);
492
Benny Prijonoc91ed8d2008-07-13 12:24:55 +0000493 /* Release account pool */
494 if (pjsua_var.acc[acc_id].pool) {
495 pj_pool_release(pjsua_var.acc[acc_id].pool);
496 pjsua_var.acc[acc_id].pool = NULL;
497 }
498
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000499 /* Invalidate */
500 pjsua_var.acc[acc_id].valid = PJ_FALSE;
Benny Prijono978de6e2008-09-15 14:56:05 +0000501 pjsua_var.acc[acc_id].contact.slen = 0;
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000502
Benny Prijono093d3022006-09-24 00:07:11 +0000503 /* Remove from array */
504 for (i=0; i<pjsua_var.acc_cnt; ++i) {
505 if (pjsua_var.acc_ids[i] == acc_id)
506 break;
507 }
508 if (i != pjsua_var.acc_cnt) {
509 pj_array_erase(pjsua_var.acc_ids, sizeof(pjsua_var.acc_ids[0]),
510 pjsua_var.acc_cnt, i);
511 --pjsua_var.acc_cnt;
512 }
513
Benny Prijono62c5c5b2007-01-13 23:22:40 +0000514 /* Leave the calls intact, as I don't think calls need to
515 * access account once it's created
516 */
517
Benny Prijonofb2b3652007-06-28 07:15:03 +0000518 /* Update default account */
519 if (pjsua_var.default_acc == acc_id)
520 pjsua_var.default_acc = 0;
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000521
522 PJSUA_UNLOCK();
523
524 PJ_LOG(4,(THIS_FILE, "Account id %d deleted", acc_id));
525
526 return PJ_SUCCESS;
527}
528
529
530/*
531 * Modify account information.
532 */
533PJ_DEF(pj_status_t) pjsua_acc_modify( pjsua_acc_id acc_id,
534 const pjsua_acc_config *cfg)
535{
Nanang Izzuddinc3ea16a2010-04-20 14:36:38 +0000536 pjsua_acc *acc;
537 pjsip_name_addr *id_name_addr = NULL;
538 pjsip_sip_uri *id_sip_uri = NULL;
539 pjsip_sip_uri *reg_sip_uri = NULL;
540 pj_uint32_t local_route_crc, global_route_crc;
541 pjsip_route_hdr global_route;
542 pjsip_route_hdr local_route;
543 pj_str_t acc_proxy[PJSUA_ACC_MAX_PROXIES];
544 pj_bool_t update_reg = PJ_FALSE;
545 pj_status_t status = PJ_SUCCESS;
546
547 PJ_ASSERT_RETURN(acc_id>=0 && acc_id<(int)PJ_ARRAY_SIZE(pjsua_var.acc),
548 PJ_EINVAL);
549
550 PJSUA_LOCK();
551
552 acc = &pjsua_var.acc[acc_id];
553 if (!acc->valid) {
554 status = PJ_EINVAL;
555 goto on_return;
556 }
557
558 /* == Validate first == */
559
560 /* Account id */
561 if (pj_strcmp(&acc->cfg.id, &cfg->id)) {
562 /* Need to parse id to get the elements: */
563 id_name_addr = (pjsip_name_addr*)
564 pjsip_parse_uri(acc->pool, cfg->id.ptr, cfg->id.slen,
565 PJSIP_PARSE_URI_AS_NAMEADDR);
566 if (id_name_addr == NULL) {
567 status = PJSIP_EINVALIDURI;
568 pjsua_perror(THIS_FILE, "Invalid local URI", status);
569 goto on_return;
570 }
571
572 /* URI MUST be a SIP or SIPS: */
573 if (!PJSIP_URI_SCHEME_IS_SIP(id_name_addr) &&
574 !PJSIP_URI_SCHEME_IS_SIPS(id_name_addr))
575 {
576 status = PJSIP_EINVALIDSCHEME;
577 pjsua_perror(THIS_FILE, "Invalid local URI", status);
578 goto on_return;
579 }
580
581 /* Get the SIP URI object: */
582 id_sip_uri = (pjsip_sip_uri*) pjsip_uri_get_uri(id_name_addr);
583 }
584
585 /* Registrar URI */
586 if (pj_strcmp(&acc->cfg.reg_uri, &cfg->reg_uri) && cfg->reg_uri.slen) {
587 pjsip_uri *reg_uri;
588
589 /* Need to parse reg_uri to get the elements: */
590 reg_uri = pjsip_parse_uri(acc->pool, cfg->reg_uri.ptr,
591 cfg->reg_uri.slen, 0);
592 if (reg_uri == NULL) {
593 status = PJSIP_EINVALIDURI;
594 pjsua_perror(THIS_FILE, "Invalid registrar URI", status);
595 goto on_return;
596 }
597
598 /* Registrar URI MUST be a SIP or SIPS: */
599 if (!PJSIP_URI_SCHEME_IS_SIP(reg_uri) &&
600 !PJSIP_URI_SCHEME_IS_SIPS(reg_uri))
601 {
602 status = PJSIP_EINVALIDSCHEME;
603 pjsua_perror(THIS_FILE, "Invalid registar URI", status);
604 goto on_return;
605 }
606
607 reg_sip_uri = (pjsip_sip_uri*) pjsip_uri_get_uri(reg_uri);
608 }
609
610 /* Global outbound proxy */
611 global_route_crc = calc_proxy_crc(pjsua_var.ua_cfg.outbound_proxy,
612 pjsua_var.ua_cfg.outbound_proxy_cnt);
613 if (global_route_crc != acc->global_route_crc) {
614 pjsip_route_hdr *r;
Nanang Izzuddinc3ea16a2010-04-20 14:36:38 +0000615
Benny Prijono29c8ca32010-06-22 06:02:13 +0000616 /* Copy from global outbound proxies */
Nanang Izzuddinc3ea16a2010-04-20 14:36:38 +0000617 pj_list_init(&global_route);
Benny Prijono29c8ca32010-06-22 06:02:13 +0000618 r = pjsua_var.outbound_proxy.next;
619 while (r != &pjsua_var.outbound_proxy) {
620 pj_list_push_back(&global_route,
621 pjsip_hdr_shallow_clone(acc->pool, r));
622 r = r->next;
Nanang Izzuddinc3ea16a2010-04-20 14:36:38 +0000623 }
624 }
625
626 /* Account proxy */
627 local_route_crc = calc_proxy_crc(cfg->proxy, cfg->proxy_cnt);
628 if (local_route_crc != acc->local_route_crc) {
629 pjsip_route_hdr *r;
630 unsigned i;
631
632 /* Validate the local route and save it to temporary var */
633 pj_list_init(&local_route);
634 for (i=0; i<cfg->proxy_cnt; ++i) {
635 pj_str_t hname = { "Route", 5};
636
637 pj_strdup_with_null(acc->pool, &acc_proxy[i], &cfg->proxy[i]);
638 status = normalize_route_uri(acc->pool, &acc_proxy[i]);
639 if (status != PJ_SUCCESS)
640 goto on_return;
641 r = (pjsip_route_hdr*)
642 pjsip_parse_hdr(acc->pool, &hname, acc_proxy[i].ptr,
643 acc_proxy[i].slen, NULL);
644 if (r == NULL) {
645 status = PJSIP_EINVALIDURI;
646 pjsua_perror(THIS_FILE, "Invalid URI in account route set",
647 status);
648 goto on_return;
649 }
650
651 pj_list_push_back(&local_route, r);
652 }
653 }
654
655
656 /* == Apply the new config == */
657
658 /* Account ID. */
659 if (id_name_addr && id_sip_uri) {
660 pj_strdup_with_null(acc->pool, &acc->cfg.id, &cfg->id);
661 acc->display = id_name_addr->display;
662 acc->user_part = id_sip_uri->user;
663 acc->srv_domain = id_sip_uri->host;
664 acc->srv_port = 0;
665 update_reg = PJ_TRUE;
666 }
667
668 /* User data */
669 acc->cfg.user_data = cfg->user_data;
670
671 /* Priority */
672 if (acc->cfg.priority != cfg->priority) {
673 unsigned i;
674
675 acc->cfg.priority = cfg->priority;
676
677 /* Resort accounts priority */
678 for (i=0; i<pjsua_var.acc_cnt; ++i) {
679 if (pjsua_var.acc_ids[i] == acc_id)
680 break;
681 }
682 pj_assert(i < pjsua_var.acc_cnt);
683 pj_array_erase(pjsua_var.acc_ids, sizeof(acc_id),
684 pjsua_var.acc_cnt, i);
685 for (i=0; i<pjsua_var.acc_cnt; ++i) {
686 if (pjsua_var.acc[pjsua_var.acc_ids[i]].cfg.priority <
687 acc->cfg.priority)
688 {
689 break;
690 }
691 }
692 pj_array_insert(pjsua_var.acc_ids, sizeof(acc_id),
693 pjsua_var.acc_cnt, i, &acc_id);
694 }
695
696 /* MWI */
697 acc->cfg.mwi_enabled = cfg->mwi_enabled;
698
699 /* PIDF tuple ID */
700 if (pj_strcmp(&acc->cfg.pidf_tuple_id, &cfg->pidf_tuple_id))
701 pj_strdup_with_null(acc->pool, &acc->cfg.pidf_tuple_id,
702 &cfg->pidf_tuple_id);
703
704 /* Publish */
705 acc->cfg.publish_opt = cfg->publish_opt;
706 acc->cfg.unpublish_max_wait_time_msec = cfg->unpublish_max_wait_time_msec;
707 if (acc->cfg.publish_enabled != cfg->publish_enabled) {
708 acc->cfg.publish_enabled = cfg->publish_enabled;
709 if (!acc->cfg.publish_enabled)
710 pjsua_pres_unpublish(acc);
711 else
712 update_reg = PJ_TRUE;
713 }
714
715 /* Force contact URI */
716 if (pj_strcmp(&acc->cfg.force_contact, &cfg->force_contact)) {
717 pj_strdup_with_null(acc->pool, &acc->cfg.force_contact,
718 &cfg->force_contact);
719 update_reg = PJ_TRUE;
720 }
721
722 /* Contact param */
723 if (pj_strcmp(&acc->cfg.contact_params, &cfg->contact_params)) {
724 pj_strdup_with_null(acc->pool, &acc->cfg.contact_params,
725 &cfg->contact_params);
726 update_reg = PJ_TRUE;
727 }
728
729 /* Contact URI params */
730 if (pj_strcmp(&acc->cfg.contact_uri_params, &cfg->contact_uri_params)) {
731 pj_strdup_with_null(acc->pool, &acc->cfg.contact_uri_params,
732 &cfg->contact_uri_params);
733 update_reg = PJ_TRUE;
734 }
735
736 /* Reliable provisional response */
737 acc->cfg.require_100rel = cfg->require_100rel;
738
739 /* Session timer */
740 acc->cfg.require_timer = cfg->require_timer;
741 acc->cfg.timer_setting = cfg->timer_setting;
742
743 /* Transport and keep-alive */
744 if (acc->cfg.transport_id != cfg->transport_id) {
745 acc->cfg.transport_id = cfg->transport_id;
746 update_reg = PJ_TRUE;
747 }
748 acc->cfg.ka_interval = cfg->ka_interval;
749 if (pj_strcmp(&acc->cfg.ka_data, &cfg->ka_data))
750 pj_strdup(acc->pool, &acc->cfg.ka_data, &cfg->ka_data);
751#if defined(PJMEDIA_HAS_SRTP) && (PJMEDIA_HAS_SRTP != 0)
752 acc->cfg.use_srtp = cfg->use_srtp;
753 acc->cfg.srtp_secure_signaling = cfg->srtp_secure_signaling;
Nanang Izzuddind89cc3a2010-05-13 05:22:51 +0000754 acc->cfg.srtp_optional_dup_offer = cfg->srtp_optional_dup_offer;
Nanang Izzuddinc3ea16a2010-04-20 14:36:38 +0000755#endif
756
757 /* Global outbound proxy */
758 if (global_route_crc != acc->global_route_crc) {
759 unsigned i, rcnt;
760
761 /* Remove the outbound proxies from the route set */
762 rcnt = pj_list_size(&acc->route_set);
763 for (i=0; i < rcnt - acc->cfg.proxy_cnt; ++i) {
764 pjsip_route_hdr *r = acc->route_set.next;
765 pj_list_erase(r);
766 }
767
768 /* Insert the outbound proxies to the beginning of route set */
769 pj_list_merge_first(&acc->route_set, &global_route);
770
771 /* Update global route CRC */
772 acc->global_route_crc = global_route_crc;
773
774 update_reg = PJ_TRUE;
775 }
776
777 /* Account proxy */
778 if (local_route_crc != acc->local_route_crc) {
779 unsigned i;
780
781 /* Remove the current account proxies from the route set */
782 for (i=0; i < acc->cfg.proxy_cnt; ++i) {
783 pjsip_route_hdr *r = acc->route_set.prev;
784 pj_list_erase(r);
785 }
786
787 /* Insert new proxy setting to the route set */
788 pj_list_merge_last(&acc->route_set, &local_route);
789
790 /* Update the proxy setting */
791 acc->cfg.proxy_cnt = cfg->proxy_cnt;
792 for (i = 0; i < cfg->proxy_cnt; ++i)
793 acc->cfg.proxy[i] = acc_proxy[i];
794
795 /* Update local route CRC */
796 acc->local_route_crc = local_route_crc;
797
798 update_reg = PJ_TRUE;
799 }
800
801 /* Credential info */
802 {
803 unsigned i;
804
805 /* Selective update credential info. */
806 for (i = 0; i < cfg->cred_count; ++i) {
807 unsigned j;
808 pjsip_cred_info ci;
809
810 /* Find if this credential is already listed */
811 for (j = i; j < acc->cfg.cred_count; ++i) {
812 if (pjsip_cred_info_cmp(&acc->cfg.cred_info[j],
813 &cfg->cred_info[i]) == 0)
814 {
815 /* Found, but different index/position, swap */
816 if (j != i) {
817 ci = acc->cfg.cred_info[i];
818 acc->cfg.cred_info[i] = acc->cfg.cred_info[j];
819 acc->cfg.cred_info[j] = ci;
820 }
821 break;
822 }
823 }
824
825 /* Not found, insert this */
826 if (j == acc->cfg.cred_count) {
827 /* If account credential is full, discard the last one. */
828 if (acc->cfg.cred_count == PJ_ARRAY_SIZE(acc->cfg.cred_info)) {
829 pj_array_erase(acc->cfg.cred_info, sizeof(pjsip_cred_info),
830 acc->cfg.cred_count, acc->cfg.cred_count-1);
831 acc->cfg.cred_count--;
832 }
833
834 /* Insert this */
835 pjsip_cred_info_dup(acc->pool, &ci, &cfg->cred_info[i]);
836 pj_array_insert(acc->cfg.cred_info, sizeof(pjsip_cred_info),
837 acc->cfg.cred_count, i, &ci);
838 }
839 }
840 acc->cfg.cred_count = cfg->cred_count;
841
842 /* Concatenate credentials from account config and global config */
843 acc->cred_cnt = 0;
844 for (i=0; i<acc->cfg.cred_count; ++i) {
845 acc->cred[acc->cred_cnt++] = acc->cfg.cred_info[i];
846 }
847 for (i=0; i<pjsua_var.ua_cfg.cred_count &&
848 acc->cred_cnt < PJ_ARRAY_SIZE(acc->cred); ++i)
849 {
850 acc->cred[acc->cred_cnt++] = pjsua_var.ua_cfg.cred_info[i];
851 }
852 }
853
854 /* Authentication preference */
855 acc->cfg.auth_pref.initial_auth = cfg->auth_pref.initial_auth;
856 if (pj_strcmp(&acc->cfg.auth_pref.algorithm, &cfg->auth_pref.algorithm))
857 pj_strdup_with_null(acc->pool, &acc->cfg.auth_pref.algorithm,
858 &cfg->auth_pref.algorithm);
859
860 /* Registration */
861 acc->cfg.reg_timeout = cfg->reg_timeout;
862 acc->cfg.unreg_timeout = cfg->unreg_timeout;
863 acc->cfg.allow_contact_rewrite = cfg->allow_contact_rewrite;
864 acc->cfg.reg_retry_interval = cfg->reg_retry_interval;
865 acc->cfg.drop_calls_on_reg_fail = cfg->drop_calls_on_reg_fail;
866
867 /* Normalize registration timeout */
868 if (acc->cfg.reg_uri.slen && acc->cfg.reg_timeout == 0)
869 acc->cfg.reg_timeout = PJSUA_REG_INTERVAL;
870
871 /* Registrar URI */
872 if (pj_strcmp(&acc->cfg.reg_uri, &cfg->reg_uri)) {
873 if (cfg->reg_uri.slen) {
874 pj_strdup_with_null(acc->pool, &acc->cfg.reg_uri, &cfg->reg_uri);
875 if (reg_sip_uri)
876 acc->srv_port = reg_sip_uri->port;
877 } else {
878 /* Unregister if registration was set */
879 if (acc->cfg.reg_uri.slen)
880 pjsua_acc_set_registration(acc->index, PJ_FALSE);
881 pj_bzero(&acc->cfg.reg_uri, sizeof(acc->cfg.reg_uri));
882 }
883 update_reg = PJ_TRUE;
884 }
885
886 /* Update registration */
887 if (update_reg) {
888 /* If accounts has registration enabled, start registration */
889 if (acc->cfg.reg_uri.slen)
890 pjsua_acc_set_registration(acc->index, PJ_TRUE);
891 else {
892 /* Otherwise subscribe to MWI, if it's enabled */
893 if (acc->cfg.mwi_enabled)
894 pjsua_start_mwi(acc);
895 }
896 }
897
898on_return:
899 PJSUA_UNLOCK();
900 return status;
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000901}
902
903
904/*
905 * Modify account's presence status to be advertised to remote/presence
906 * subscribers.
907 */
908PJ_DEF(pj_status_t) pjsua_acc_set_online_status( pjsua_acc_id acc_id,
909 pj_bool_t is_online)
910{
911 PJ_ASSERT_RETURN(acc_id>=0 && acc_id<(int)PJ_ARRAY_SIZE(pjsua_var.acc),
912 PJ_EINVAL);
913 PJ_ASSERT_RETURN(pjsua_var.acc[acc_id].valid, PJ_EINVALIDOP);
914
915 pjsua_var.acc[acc_id].online_status = is_online;
Benny Prijono4461c7d2007-08-25 13:36:15 +0000916 pj_bzero(&pjsua_var.acc[acc_id].rpid, sizeof(pjrpid_element));
917 pjsua_pres_update_acc(acc_id, PJ_FALSE);
918 return PJ_SUCCESS;
919}
920
921
922/*
923 * Set online status with extended information
924 */
925PJ_DEF(pj_status_t) pjsua_acc_set_online_status2( pjsua_acc_id acc_id,
926 pj_bool_t is_online,
927 const pjrpid_element *pr)
928{
929 PJ_ASSERT_RETURN(acc_id>=0 && acc_id<(int)PJ_ARRAY_SIZE(pjsua_var.acc),
930 PJ_EINVAL);
931 PJ_ASSERT_RETURN(pjsua_var.acc[acc_id].valid, PJ_EINVALIDOP);
932
Benny Prijonoc91ed8d2008-07-13 12:24:55 +0000933 PJSUA_LOCK();
Benny Prijono4461c7d2007-08-25 13:36:15 +0000934 pjsua_var.acc[acc_id].online_status = is_online;
Benny Prijonoc91ed8d2008-07-13 12:24:55 +0000935 pjrpid_element_dup(pjsua_var.acc[acc_id].pool, &pjsua_var.acc[acc_id].rpid, pr);
936 PJSUA_UNLOCK();
937
Benny Prijono4461c7d2007-08-25 13:36:15 +0000938 pjsua_pres_update_acc(acc_id, PJ_TRUE);
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000939 return PJ_SUCCESS;
940}
941
Benny Prijono7f630432008-09-24 16:52:41 +0000942/* Check if IP is private IP address */
943static pj_bool_t is_private_ip(const pj_str_t *addr)
944{
945 const pj_str_t private_net[] =
946 {
947 { "10.", 3 },
948 { "127.", 4 },
949 { "172.16.", 7 },
950 { "192.168.", 8 }
951 };
952 unsigned i;
953
954 for (i=0; i<PJ_ARRAY_SIZE(private_net); ++i) {
955 if (pj_strncmp(addr, &private_net[i], private_net[i].slen)==0)
956 return PJ_TRUE;
957 }
958
959 return PJ_FALSE;
960}
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000961
Benny Prijono15b02302007-09-27 14:07:07 +0000962/* Update NAT address from the REGISTER response */
963static pj_bool_t acc_check_nat_addr(pjsua_acc *acc,
964 struct pjsip_regc_cbparam *param)
965{
966 pjsip_transport *tp;
967 const pj_str_t *via_addr;
Benny Prijonoe8554ef2008-03-22 09:33:52 +0000968 pj_pool_t *pool;
Benny Prijono15b02302007-09-27 14:07:07 +0000969 int rport;
Benny Prijonoe8554ef2008-03-22 09:33:52 +0000970 pjsip_sip_uri *uri;
Benny Prijono15b02302007-09-27 14:07:07 +0000971 pjsip_via_hdr *via;
Benny Prijono84d24932009-06-04 15:51:39 +0000972 pj_sockaddr contact_addr;
973 pj_sockaddr recv_addr;
974 pj_status_t status;
975 pj_bool_t matched;
Benny Prijono7f630432008-09-24 16:52:41 +0000976 pj_str_t srv_ip;
Nanang Izzuddin5af37ff2009-08-05 18:41:23 +0000977 pjsip_contact_hdr *contact_hdr;
978 const pj_str_t STR_CONTACT = { "Contact", 7 };
Benny Prijono15b02302007-09-27 14:07:07 +0000979
980 tp = param->rdata->tp_info.transport;
981
982 /* Only update if account is configured to auto-update */
Benny Prijonoe8554ef2008-03-22 09:33:52 +0000983 if (acc->cfg.allow_contact_rewrite == PJ_FALSE)
Benny Prijono15b02302007-09-27 14:07:07 +0000984 return PJ_FALSE;
985
Benny Prijonoe8554ef2008-03-22 09:33:52 +0000986#if 0
987 // Always update
988 // See http://lists.pjsip.org/pipermail/pjsip_lists.pjsip.org/2008-March/002178.html
Benny Prijono15b02302007-09-27 14:07:07 +0000989
Benny Prijonoe8554ef2008-03-22 09:33:52 +0000990 /* For UDP, only update if STUN is enabled (for now).
991 * For TCP/TLS, always check.
992 */
993 if ((tp->key.type == PJSIP_TRANSPORT_UDP &&
994 (pjsua_var.ua_cfg.stun_domain.slen != 0 ||
995 (pjsua_var.ua_cfg.stun_host.slen != 0)) ||
996 (tp->key.type == PJSIP_TRANSPORT_TCP) ||
997 (tp->key.type == PJSIP_TRANSPORT_TLS))
Benny Prijono15b02302007-09-27 14:07:07 +0000998 {
Benny Prijonoe8554ef2008-03-22 09:33:52 +0000999 /* Yes we will check */
1000 } else {
Benny Prijono15b02302007-09-27 14:07:07 +00001001 return PJ_FALSE;
1002 }
Benny Prijonoe8554ef2008-03-22 09:33:52 +00001003#endif
Benny Prijono15b02302007-09-27 14:07:07 +00001004
1005 /* Get the received and rport info */
1006 via = param->rdata->msg_info.via;
1007 if (via->rport_param < 1) {
1008 /* Remote doesn't support rport */
1009 rport = via->sent_by.port;
Benny Prijono24a21852008-04-14 04:04:30 +00001010 if (rport==0) {
1011 pjsip_transport_type_e tp_type;
1012 tp_type = (pjsip_transport_type_e) tp->key.type;
1013 rport = pjsip_transport_get_default_port_for_type(tp_type);
1014 }
Benny Prijono15b02302007-09-27 14:07:07 +00001015 } else
1016 rport = via->rport_param;
1017
1018 if (via->recvd_param.slen != 0)
1019 via_addr = &via->recvd_param;
1020 else
1021 via_addr = &via->sent_by.host;
1022
Benny Prijonoe8554ef2008-03-22 09:33:52 +00001023 /* Compare received and rport with the URI in our registration */
1024 pool = pjsua_pool_create("tmp", 512, 512);
Nanang Izzuddin5af37ff2009-08-05 18:41:23 +00001025 contact_hdr = (pjsip_contact_hdr*)
1026 pjsip_parse_hdr(pool, &STR_CONTACT, acc->contact.ptr,
1027 acc->contact.slen, NULL);
1028 pj_assert(contact_hdr != NULL);
1029 uri = (pjsip_sip_uri*) contact_hdr->uri;
Benny Prijonoe8554ef2008-03-22 09:33:52 +00001030 pj_assert(uri != NULL);
Benny Prijono24a21852008-04-14 04:04:30 +00001031 uri = (pjsip_sip_uri*) pjsip_uri_get_uri(uri);
Benny Prijonoe8554ef2008-03-22 09:33:52 +00001032
Benny Prijono24a21852008-04-14 04:04:30 +00001033 if (uri->port == 0) {
1034 pjsip_transport_type_e tp_type;
1035 tp_type = (pjsip_transport_type_e) tp->key.type;
1036 uri->port = pjsip_transport_get_default_port_for_type(tp_type);
1037 }
Benny Prijonoe8554ef2008-03-22 09:33:52 +00001038
Benny Prijono84d24932009-06-04 15:51:39 +00001039 /* Convert IP address strings into sockaddr for comparison.
1040 * (http://trac.pjsip.org/repos/ticket/863)
1041 */
1042 status = pj_sockaddr_parse(pj_AF_UNSPEC(), 0, &uri->host,
1043 &contact_addr);
1044 if (status == PJ_SUCCESS)
1045 status = pj_sockaddr_parse(pj_AF_UNSPEC(), 0, via_addr,
1046 &recv_addr);
1047 if (status == PJ_SUCCESS) {
1048 /* Compare the addresses as sockaddr according to the ticket above */
1049 matched = (uri->port == rport &&
1050 pj_sockaddr_cmp(&contact_addr, &recv_addr)==0);
1051 } else {
1052 /* Compare the addresses as string, as before */
1053 matched = (uri->port == rport &&
1054 pj_stricmp(&uri->host, via_addr)==0);
1055 }
1056
1057 if (matched) {
Benny Prijono15b02302007-09-27 14:07:07 +00001058 /* Address doesn't change */
Benny Prijonoe8554ef2008-03-22 09:33:52 +00001059 pj_pool_release(pool);
Benny Prijono15b02302007-09-27 14:07:07 +00001060 return PJ_FALSE;
1061 }
1062
Benny Prijono7f630432008-09-24 16:52:41 +00001063 /* Get server IP */
1064 srv_ip = pj_str(param->rdata->pkt_info.src_name);
1065
Benny Prijono15b02302007-09-27 14:07:07 +00001066 /* At this point we've detected that the address as seen by registrar.
1067 * has changed.
1068 */
Benny Prijono7f630432008-09-24 16:52:41 +00001069
1070 /* Do not switch if both Contact and server's IP address are
1071 * public but response contains private IP. A NAT in the middle
Benny Prijono44e42e12009-06-03 08:37:24 +00001072 * might have messed up with the SIP packets. See:
1073 * http://trac.pjsip.org/repos/ticket/643
Benny Prijono247921b2008-09-26 22:06:11 +00001074 *
1075 * This exception can be disabled by setting allow_contact_rewrite
1076 * to 2. In this case, the switch will always be done whenever there
1077 * is difference in the IP address in the response.
Benny Prijono7f630432008-09-24 16:52:41 +00001078 */
Benny Prijono247921b2008-09-26 22:06:11 +00001079 if (acc->cfg.allow_contact_rewrite != 2 && !is_private_ip(&uri->host) &&
1080 !is_private_ip(&srv_ip) && is_private_ip(via_addr))
Benny Prijono7f630432008-09-24 16:52:41 +00001081 {
1082 /* Don't switch */
1083 pj_pool_release(pool);
1084 return PJ_FALSE;
1085 }
1086
Benny Prijono4f933762009-11-10 03:45:42 +00001087 /* Also don't switch if only the port number part is different, and
1088 * the Via received address is private.
1089 * See http://trac.pjsip.org/repos/ticket/864
1090 */
1091 if (acc->cfg.allow_contact_rewrite != 2 &&
1092 pj_sockaddr_cmp(&contact_addr, &recv_addr)==0 &&
1093 is_private_ip(via_addr))
1094 {
1095 /* Don't switch */
1096 pj_pool_release(pool);
1097 return PJ_FALSE;
1098 }
1099
Benny Prijono15b02302007-09-27 14:07:07 +00001100 PJ_LOG(3,(THIS_FILE, "IP address change detected for account %d "
Benny Prijonoc6d5fdc2010-06-20 08:58:26 +00001101 "(%.*s:%d --> %.*s:%d). Updating registration "
1102 "(using method %d)",
Benny Prijono15b02302007-09-27 14:07:07 +00001103 acc->index,
Benny Prijonoe8554ef2008-03-22 09:33:52 +00001104 (int)uri->host.slen,
1105 uri->host.ptr,
1106 uri->port,
Benny Prijono15b02302007-09-27 14:07:07 +00001107 (int)via_addr->slen,
1108 via_addr->ptr,
Benny Prijonoc6d5fdc2010-06-20 08:58:26 +00001109 rport,
1110 acc->cfg.contact_rewrite_method));
Benny Prijono15b02302007-09-27 14:07:07 +00001111
Benny Prijonoc6d5fdc2010-06-20 08:58:26 +00001112 pj_assert(acc->cfg.contact_rewrite_method == 1 ||
1113 acc->cfg.contact_rewrite_method == 2);
1114
1115 if (acc->cfg.contact_rewrite_method == 1) {
1116 /* Unregister current contact */
1117 pjsua_acc_set_registration(acc->index, PJ_FALSE);
1118 if (acc->regc != NULL) {
1119 pjsip_regc_destroy(acc->regc);
1120 acc->regc = NULL;
1121 acc->contact.slen = 0;
1122 }
Benny Prijono15b02302007-09-27 14:07:07 +00001123 }
1124
Benny Prijonoc6d5fdc2010-06-20 08:58:26 +00001125 /*
1126 * Build new Contact header
1127 */
Benny Prijonoe8554ef2008-03-22 09:33:52 +00001128 {
1129 char *tmp;
Benny Prijono8972bf02009-04-05 18:30:45 +00001130 const char *beginquote, *endquote;
Benny Prijonoe8554ef2008-03-22 09:33:52 +00001131 int len;
1132
Benny Prijono8972bf02009-04-05 18:30:45 +00001133 /* Enclose IPv6 address in square brackets */
1134 if (tp->key.type & PJSIP_TRANSPORT_IPV6) {
1135 beginquote = "[";
1136 endquote = "]";
1137 } else {
1138 beginquote = endquote = "";
1139 }
1140
Benny Prijono24a21852008-04-14 04:04:30 +00001141 tmp = (char*) pj_pool_alloc(pool, PJSIP_MAX_URL_SIZE);
Benny Prijonoe8554ef2008-03-22 09:33:52 +00001142 len = pj_ansi_snprintf(tmp, PJSIP_MAX_URL_SIZE,
Nanang Izzuddine2c7e852009-08-04 14:36:17 +00001143 "<sip:%.*s%s%s%.*s%s:%d;transport=%s%.*s>%.*s",
Benny Prijonoe8554ef2008-03-22 09:33:52 +00001144 (int)acc->user_part.slen,
1145 acc->user_part.ptr,
Benny Prijono83088f32008-04-22 18:33:55 +00001146 (acc->user_part.slen? "@" : ""),
Benny Prijono8972bf02009-04-05 18:30:45 +00001147 beginquote,
Benny Prijonoe8554ef2008-03-22 09:33:52 +00001148 (int)via_addr->slen,
1149 via_addr->ptr,
Benny Prijono8972bf02009-04-05 18:30:45 +00001150 endquote,
Benny Prijonoe8554ef2008-03-22 09:33:52 +00001151 rport,
Benny Prijono30fe4852008-12-10 16:54:16 +00001152 tp->type_name,
Nanang Izzuddine2c7e852009-08-04 14:36:17 +00001153 (int)acc->cfg.contact_uri_params.slen,
1154 acc->cfg.contact_uri_params.ptr,
Benny Prijono30fe4852008-12-10 16:54:16 +00001155 (int)acc->cfg.contact_params.slen,
1156 acc->cfg.contact_params.ptr);
Benny Prijonoe8554ef2008-03-22 09:33:52 +00001157 if (len < 1) {
1158 PJ_LOG(1,(THIS_FILE, "URI too long"));
1159 pj_pool_release(pool);
1160 return PJ_FALSE;
1161 }
Benny Prijono3d9b4b62008-07-14 17:55:40 +00001162 pj_strdup2_with_null(acc->pool, &acc->contact, tmp);
Benny Prijonoc6d5fdc2010-06-20 08:58:26 +00001163
1164 /* Always update, by http://trac.pjsip.org/repos/ticket/864. */
1165 pj_strdup_with_null(tp->pool, &tp->local_name.host, via_addr);
1166 tp->local_name.port = rport;
1167
Benny Prijonoe8554ef2008-03-22 09:33:52 +00001168 }
1169
Benny Prijonoc6d5fdc2010-06-20 08:58:26 +00001170 if (acc->cfg.contact_rewrite_method == 2 && acc->regc != NULL) {
1171 pjsip_regc_update_contact(acc->regc, 1, &acc->contact);
1172 }
Benny Prijono15b02302007-09-27 14:07:07 +00001173
1174 /* Perform new registration */
1175 pjsua_acc_set_registration(acc->index, PJ_TRUE);
1176
Benny Prijonoe8554ef2008-03-22 09:33:52 +00001177 pj_pool_release(pool);
1178
Benny Prijono15b02302007-09-27 14:07:07 +00001179 return PJ_TRUE;
1180}
1181
Benny Prijonoa2a2d412007-10-18 05:54:02 +00001182/* Check and update Service-Route header */
1183void update_service_route(pjsua_acc *acc, pjsip_rx_data *rdata)
1184{
1185 pjsip_generic_string_hdr *hsr = NULL;
1186 pjsip_route_hdr *hr, *h;
1187 const pj_str_t HNAME = { "Service-Route", 13 };
1188 const pj_str_t HROUTE = { "Route", 5 };
1189 pjsip_uri *uri[PJSUA_ACC_MAX_PROXIES];
Benny Prijonof020ab22007-10-18 15:28:33 +00001190 unsigned i, uri_cnt = 0, rcnt;
Benny Prijonoa2a2d412007-10-18 05:54:02 +00001191
1192 /* Find and parse Service-Route headers */
1193 for (;;) {
1194 char saved;
1195 int parsed_len;
1196
1197 /* Find Service-Route header */
1198 hsr = (pjsip_generic_string_hdr*)
1199 pjsip_msg_find_hdr_by_name(rdata->msg_info.msg, &HNAME, hsr);
1200 if (!hsr)
1201 break;
1202
1203 /* Parse as Route header since the syntax is similar. This may
1204 * return more than one headers.
1205 */
1206 saved = hsr->hvalue.ptr[hsr->hvalue.slen];
1207 hsr->hvalue.ptr[hsr->hvalue.slen] = '\0';
1208 hr = (pjsip_route_hdr*)
1209 pjsip_parse_hdr(rdata->tp_info.pool, &HROUTE, hsr->hvalue.ptr,
1210 hsr->hvalue.slen, &parsed_len);
1211 hsr->hvalue.ptr[hsr->hvalue.slen] = saved;
1212
1213 if (hr == NULL) {
1214 /* Error */
1215 PJ_LOG(1,(THIS_FILE, "Error parsing Service-Route header"));
1216 return;
1217 }
1218
1219 /* Save each URI in the result */
1220 h = hr;
1221 do {
1222 if (!PJSIP_URI_SCHEME_IS_SIP(h->name_addr.uri) &&
1223 !PJSIP_URI_SCHEME_IS_SIPS(h->name_addr.uri))
1224 {
1225 PJ_LOG(1,(THIS_FILE,"Error: non SIP URI in Service-Route: %.*s",
1226 (int)hsr->hvalue.slen, hsr->hvalue.ptr));
1227 return;
1228 }
1229
1230 uri[uri_cnt++] = h->name_addr.uri;
1231 h = h->next;
1232 } while (h != hr && uri_cnt != PJ_ARRAY_SIZE(uri));
1233
1234 if (h != hr) {
1235 PJ_LOG(1,(THIS_FILE, "Error: too many Service-Route headers"));
1236 return;
1237 }
1238
1239 /* Prepare to find next Service-Route header */
1240 hsr = hsr->next;
1241 if ((void*)hsr == (void*)&rdata->msg_info.msg->hdr)
1242 break;
1243 }
1244
1245 if (uri_cnt == 0)
1246 return;
1247
1248 /*
1249 * Update account's route set
1250 */
1251
1252 /* First remove all routes which are not the outbound proxies */
Benny Prijonof020ab22007-10-18 15:28:33 +00001253 rcnt = pj_list_size(&acc->route_set);
Benny Prijono2568c742007-11-03 09:29:52 +00001254 if (rcnt != pjsua_var.ua_cfg.outbound_proxy_cnt + acc->cfg.proxy_cnt) {
1255 for (i=pjsua_var.ua_cfg.outbound_proxy_cnt + acc->cfg.proxy_cnt,
1256 hr=acc->route_set.prev;
Benny Prijonof020ab22007-10-18 15:28:33 +00001257 i<rcnt;
1258 ++i)
1259 {
1260 pjsip_route_hdr *prev = hr->prev;
1261 pj_list_erase(hr);
1262 hr = prev;
1263 }
1264 }
Benny Prijonoa2a2d412007-10-18 05:54:02 +00001265
1266 /* Then append the Service-Route URIs */
1267 for (i=0; i<uri_cnt; ++i) {
Benny Prijonoc91ed8d2008-07-13 12:24:55 +00001268 hr = pjsip_route_hdr_create(acc->pool);
1269 hr->name_addr.uri = (pjsip_uri*)pjsip_uri_clone(acc->pool, uri[i]);
Benny Prijonoa2a2d412007-10-18 05:54:02 +00001270 pj_list_push_back(&acc->route_set, hr);
1271 }
1272
1273 /* Done */
1274
1275 PJ_LOG(4,(THIS_FILE, "Service-Route updated for acc %d with %d URI(s)",
1276 acc->index, uri_cnt));
1277}
1278
Benny Prijonobddef2c2007-10-31 13:28:08 +00001279
1280/* Keep alive timer callback */
1281static void keep_alive_timer_cb(pj_timer_heap_t *th, pj_timer_entry *te)
1282{
1283 pjsua_acc *acc;
1284 pjsip_tpselector tp_sel;
1285 pj_time_val delay;
Benny Prijonodb4eb812007-12-09 05:30:47 +00001286 char addrtxt[PJ_INET6_ADDRSTRLEN];
Benny Prijonobddef2c2007-10-31 13:28:08 +00001287 pj_status_t status;
1288
1289 PJ_UNUSED_ARG(th);
1290
1291 PJSUA_LOCK();
1292
1293 te->id = PJ_FALSE;
1294
1295 acc = (pjsua_acc*) te->user_data;
1296
1297 /* Select the transport to send the packet */
1298 pj_bzero(&tp_sel, sizeof(tp_sel));
1299 tp_sel.type = PJSIP_TPSELECTOR_TRANSPORT;
1300 tp_sel.u.transport = acc->ka_transport;
1301
1302 PJ_LOG(5,(THIS_FILE,
Benny Prijonodb4eb812007-12-09 05:30:47 +00001303 "Sending %d bytes keep-alive packet for acc %d to %s",
Benny Prijonobddef2c2007-10-31 13:28:08 +00001304 acc->cfg.ka_data.slen, acc->index,
Benny Prijonodb4eb812007-12-09 05:30:47 +00001305 pj_sockaddr_print(&acc->ka_target, addrtxt, sizeof(addrtxt),3)));
Benny Prijonobddef2c2007-10-31 13:28:08 +00001306
1307 /* Send raw packet */
1308 status = pjsip_tpmgr_send_raw(pjsip_endpt_get_tpmgr(pjsua_var.endpt),
1309 PJSIP_TRANSPORT_UDP, &tp_sel,
1310 NULL, acc->cfg.ka_data.ptr,
1311 acc->cfg.ka_data.slen,
1312 &acc->ka_target, acc->ka_target_len,
1313 NULL, NULL);
1314
1315 if (status != PJ_SUCCESS && status != PJ_EPENDING) {
1316 pjsua_perror(THIS_FILE, "Error sending keep-alive packet", status);
1317 }
1318
1319 /* Reschedule next timer */
1320 delay.sec = acc->cfg.ka_interval;
1321 delay.msec = 0;
1322 status = pjsip_endpt_schedule_timer(pjsua_var.endpt, te, &delay);
1323 if (status == PJ_SUCCESS) {
1324 te->id = PJ_TRUE;
1325 } else {
1326 pjsua_perror(THIS_FILE, "Error starting keep-alive timer", status);
1327 }
1328
1329 PJSUA_UNLOCK();
1330}
1331
1332
1333/* Update keep-alive for the account */
1334static void update_keep_alive(pjsua_acc *acc, pj_bool_t start,
1335 struct pjsip_regc_cbparam *param)
1336{
1337 /* In all cases, stop keep-alive timer if it's running. */
1338 if (acc->ka_timer.id) {
1339 pjsip_endpt_cancel_timer(pjsua_var.endpt, &acc->ka_timer);
1340 acc->ka_timer.id = PJ_FALSE;
1341
1342 pjsip_transport_dec_ref(acc->ka_transport);
1343 acc->ka_transport = NULL;
1344 }
1345
1346 if (start) {
1347 pj_time_val delay;
1348 pj_status_t status;
1349
1350 /* Only do keep-alive if:
Benny Prijonobddef2c2007-10-31 13:28:08 +00001351 * - ka_interval is not zero in the account, and
1352 * - transport is UDP.
Benny Prijono7fff9f92008-04-04 10:50:21 +00001353 *
1354 * Previously we only enabled keep-alive when STUN is enabled, since
1355 * we thought that keep-alive is only needed in Internet situation.
1356 * But it has been discovered that Windows Firewall on WinXP also
1357 * needs to be kept-alive, otherwise incoming packets will be dropped.
1358 * So because of this, now keep-alive is always enabled for UDP,
1359 * regardless of whether STUN is enabled or not.
1360 *
1361 * Note that this applies only for UDP. For TCP/TLS, the keep-alive
1362 * is done by the transport layer.
Benny Prijonobddef2c2007-10-31 13:28:08 +00001363 */
Benny Prijono7fff9f92008-04-04 10:50:21 +00001364 if (/*pjsua_var.stun_srv.ipv4.sin_family == 0 ||*/
Benny Prijonobddef2c2007-10-31 13:28:08 +00001365 acc->cfg.ka_interval == 0 ||
1366 param->rdata->tp_info.transport->key.type != PJSIP_TRANSPORT_UDP)
1367 {
1368 /* Keep alive is not necessary */
1369 return;
1370 }
1371
1372 /* Save transport and destination address. */
1373 acc->ka_transport = param->rdata->tp_info.transport;
1374 pjsip_transport_add_ref(acc->ka_transport);
1375 pj_memcpy(&acc->ka_target, &param->rdata->pkt_info.src_addr,
1376 param->rdata->pkt_info.src_addr_len);
1377 acc->ka_target_len = param->rdata->pkt_info.src_addr_len;
1378
1379 /* Setup and start the timer */
1380 acc->ka_timer.cb = &keep_alive_timer_cb;
1381 acc->ka_timer.user_data = (void*)acc;
1382
1383 delay.sec = acc->cfg.ka_interval;
1384 delay.msec = 0;
1385 status = pjsip_endpt_schedule_timer(pjsua_var.endpt, &acc->ka_timer,
1386 &delay);
1387 if (status == PJ_SUCCESS) {
1388 acc->ka_timer.id = PJ_TRUE;
1389 PJ_LOG(4,(THIS_FILE, "Keep-alive timer started for acc %d, "
1390 "destination:%s:%d, interval:%ds",
1391 acc->index,
1392 param->rdata->pkt_info.src_name,
1393 param->rdata->pkt_info.src_port,
1394 acc->cfg.ka_interval));
1395 } else {
1396 acc->ka_timer.id = PJ_FALSE;
1397 pjsip_transport_dec_ref(acc->ka_transport);
1398 acc->ka_transport = NULL;
1399 pjsua_perror(THIS_FILE, "Error starting keep-alive timer", status);
1400 }
1401 }
1402}
1403
1404
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001405/*
1406 * This callback is called by pjsip_regc when outgoing register
1407 * request has completed.
1408 */
1409static void regc_cb(struct pjsip_regc_cbparam *param)
1410{
1411
Benny Prijonoa1e69682007-05-11 15:14:34 +00001412 pjsua_acc *acc = (pjsua_acc*) param->token;
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001413
Benny Prijono15b02302007-09-27 14:07:07 +00001414 if (param->regc != acc->regc)
1415 return;
1416
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001417 PJSUA_LOCK();
1418
1419 /*
1420 * Print registration status.
1421 */
1422 if (param->status!=PJ_SUCCESS) {
1423 pjsua_perror(THIS_FILE, "SIP registration error",
1424 param->status);
1425 pjsip_regc_destroy(acc->regc);
1426 acc->regc = NULL;
Benny Prijonoddaaf6a2008-04-15 10:37:19 +00001427 acc->contact.slen = 0;
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001428
Benny Prijonobddef2c2007-10-31 13:28:08 +00001429 /* Stop keep-alive timer if any. */
1430 update_keep_alive(acc, PJ_FALSE, NULL);
1431
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001432 } else if (param->code < 0 || param->code >= 300) {
1433 PJ_LOG(2, (THIS_FILE, "SIP registration failed, status=%d (%.*s)",
1434 param->code,
1435 (int)param->reason.slen, param->reason.ptr));
1436 pjsip_regc_destroy(acc->regc);
1437 acc->regc = NULL;
Benny Prijonoddaaf6a2008-04-15 10:37:19 +00001438 acc->contact.slen = 0;
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001439
Benny Prijonobddef2c2007-10-31 13:28:08 +00001440 /* Stop keep-alive timer if any. */
1441 update_keep_alive(acc, PJ_FALSE, NULL);
1442
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001443 } else if (PJSIP_IS_STATUS_IN_CLASS(param->code, 200)) {
1444
Nanang Izzuddin36dd5b62010-03-30 11:13:59 +00001445 /* Update auto registration flag */
1446 acc->auto_rereg.active = PJ_FALSE;
1447 acc->auto_rereg.attempt_cnt = 0;
1448
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001449 if (param->expiration < 1) {
1450 pjsip_regc_destroy(acc->regc);
1451 acc->regc = NULL;
Benny Prijonoddaaf6a2008-04-15 10:37:19 +00001452 acc->contact.slen = 0;
Benny Prijonobddef2c2007-10-31 13:28:08 +00001453
1454 /* Stop keep-alive timer if any. */
1455 update_keep_alive(acc, PJ_FALSE, NULL);
1456
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001457 PJ_LOG(3,(THIS_FILE, "%s: unregistration success",
1458 pjsua_var.acc[acc->index].cfg.id.ptr));
1459 } else {
Benny Prijono15b02302007-09-27 14:07:07 +00001460 /* Check NAT bound address */
1461 if (acc_check_nat_addr(acc, param)) {
1462 /* Update address, don't notify application yet */
1463 PJSUA_UNLOCK();
1464 return;
1465 }
1466
Benny Prijonoa2a2d412007-10-18 05:54:02 +00001467 /* Check and update Service-Route header */
1468 update_service_route(acc, param->rdata);
1469
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001470 PJ_LOG(3, (THIS_FILE,
1471 "%s: registration success, status=%d (%.*s), "
1472 "will re-register in %d seconds",
1473 pjsua_var.acc[acc->index].cfg.id.ptr,
1474 param->code,
1475 (int)param->reason.slen, param->reason.ptr,
1476 param->expiration));
Benny Prijono8b6834f2007-02-24 13:29:22 +00001477
Benny Prijonobddef2c2007-10-31 13:28:08 +00001478 /* Start keep-alive timer if necessary. */
1479 update_keep_alive(acc, PJ_TRUE, param);
1480
Benny Prijono8b6834f2007-02-24 13:29:22 +00001481 /* Send initial PUBLISH if it is enabled */
1482 if (acc->cfg.publish_enabled && acc->publish_sess==NULL)
1483 pjsua_pres_init_publish_acc(acc->index);
Benny Prijono4dd961b2009-10-26 11:21:37 +00001484
1485 /* Subscribe to MWI, if it's enabled */
1486 if (acc->cfg.mwi_enabled)
1487 pjsua_start_mwi(acc);
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001488 }
1489
1490 } else {
1491 PJ_LOG(4, (THIS_FILE, "SIP registration updated status=%d", param->code));
1492 }
1493
1494 acc->reg_last_err = param->status;
1495 acc->reg_last_code = param->code;
1496
Nanang Izzuddin36dd5b62010-03-30 11:13:59 +00001497 /* Check if we need to auto retry registration. Basically, registration
1498 * failure codes triggering auto-retry are those of temporal failures
1499 * considered to be recoverable in relatively short term.
1500 */
1501 if (acc->cfg.reg_retry_interval &&
1502 (param->code == PJSIP_SC_REQUEST_TIMEOUT ||
1503 param->code == PJSIP_SC_INTERNAL_SERVER_ERROR ||
1504 param->code == PJSIP_SC_BAD_GATEWAY ||
1505 param->code == PJSIP_SC_SERVICE_UNAVAILABLE ||
1506 param->code == PJSIP_SC_SERVER_TIMEOUT ||
1507 PJSIP_IS_STATUS_IN_CLASS(param->code, 600))) /* Global failure */
1508 {
1509 schedule_reregistration(acc);
1510 }
1511
Nanang Izzuddinc71bed62010-05-26 15:04:43 +00001512 if (pjsua_var.ua_cfg.cb.on_reg_state)
1513 (*pjsua_var.ua_cfg.cb.on_reg_state)(acc->index);
1514
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001515 PJSUA_UNLOCK();
1516}
1517
1518
1519/*
1520 * Initialize client registration.
1521 */
1522static pj_status_t pjsua_regc_init(int acc_id)
1523{
1524 pjsua_acc *acc;
Benny Prijonoe1a8bad2006-10-13 17:45:38 +00001525 pj_pool_t *pool;
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001526 pj_status_t status;
1527
Benny Prijono62c5c5b2007-01-13 23:22:40 +00001528 PJ_ASSERT_RETURN(pjsua_acc_is_valid(acc_id), PJ_EINVAL);
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001529 acc = &pjsua_var.acc[acc_id];
1530
1531 if (acc->cfg.reg_uri.slen == 0) {
1532 PJ_LOG(3,(THIS_FILE, "Registrar URI is not specified"));
1533 return PJ_SUCCESS;
1534 }
1535
Benny Prijonoe1a8bad2006-10-13 17:45:38 +00001536 /* Destroy existing session, if any */
1537 if (acc->regc) {
1538 pjsip_regc_destroy(acc->regc);
1539 acc->regc = NULL;
Benny Prijonoddaaf6a2008-04-15 10:37:19 +00001540 acc->contact.slen = 0;
Benny Prijonoe1a8bad2006-10-13 17:45:38 +00001541 }
1542
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001543 /* initialize SIP registration if registrar is configured */
1544
1545 status = pjsip_regc_create( pjsua_var.endpt,
1546 acc, &regc_cb, &acc->regc);
1547
1548 if (status != PJ_SUCCESS) {
1549 pjsua_perror(THIS_FILE, "Unable to create client registration",
1550 status);
1551 return status;
1552 }
1553
Benny Prijono38fb3ea2008-01-02 08:27:03 +00001554 pool = pjsua_pool_create("tmpregc", 512, 512);
Benny Prijonoe8554ef2008-03-22 09:33:52 +00001555
1556 if (acc->contact.slen == 0) {
1557 pj_str_t tmp_contact;
1558
1559 status = pjsua_acc_create_uac_contact( pool, &tmp_contact,
1560 acc_id, &acc->cfg.reg_uri);
1561 if (status != PJ_SUCCESS) {
1562 pjsua_perror(THIS_FILE, "Unable to generate suitable Contact header"
1563 " for registration",
1564 status);
1565 pjsip_regc_destroy(acc->regc);
1566 pj_pool_release(pool);
1567 acc->regc = NULL;
1568 return status;
1569 }
1570
Benny Prijonoc91ed8d2008-07-13 12:24:55 +00001571 pj_strdup_with_null(acc->pool, &acc->contact, &tmp_contact);
Benny Prijonoc570f2d2006-07-18 00:33:02 +00001572 }
1573
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001574 status = pjsip_regc_init( acc->regc,
1575 &acc->cfg.reg_uri,
1576 &acc->cfg.id,
1577 &acc->cfg.id,
Benny Prijonoe8554ef2008-03-22 09:33:52 +00001578 1, &acc->contact,
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001579 acc->cfg.reg_timeout);
1580 if (status != PJ_SUCCESS) {
1581 pjsua_perror(THIS_FILE,
1582 "Client registration initialization error",
1583 status);
Benny Prijono19b29372007-12-05 04:08:40 +00001584 pjsip_regc_destroy(acc->regc);
Benny Prijono38fb3ea2008-01-02 08:27:03 +00001585 pj_pool_release(pool);
Benny Prijono19b29372007-12-05 04:08:40 +00001586 acc->regc = NULL;
Benny Prijonoddaaf6a2008-04-15 10:37:19 +00001587 acc->contact.slen = 0;
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001588 return status;
1589 }
1590
Benny Prijono62c5c5b2007-01-13 23:22:40 +00001591 /* If account is locked to specific transport, then set transport to
1592 * the client registration.
1593 */
1594 if (pjsua_var.acc[acc_id].cfg.transport_id != PJSUA_INVALID_ID) {
1595 pjsip_tpselector tp_sel;
1596
1597 pjsua_init_tpselector(pjsua_var.acc[acc_id].cfg.transport_id, &tp_sel);
1598 pjsip_regc_set_transport(acc->regc, &tp_sel);
1599 }
1600
1601
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001602 /* Set credentials
1603 */
1604 if (acc->cred_cnt) {
1605 pjsip_regc_set_credentials( acc->regc, acc->cred_cnt, acc->cred);
1606 }
1607
Benny Prijono48ab2b72007-11-08 09:24:30 +00001608 /* Set authentication preference */
1609 pjsip_regc_set_prefs(acc->regc, &acc->cfg.auth_pref);
1610
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001611 /* Set route-set
1612 */
Benny Prijono29c8ca32010-06-22 06:02:13 +00001613 if (acc->cfg.reg_use_proxy) {
1614 pjsip_route_hdr route_set;
1615 const pjsip_route_hdr *r;
1616
1617 pj_list_init(&route_set);
1618
1619 if (acc->cfg.reg_use_proxy & PJSUA_REG_USE_OUTBOUND_PROXY) {
1620 r = pjsua_var.outbound_proxy.next;
1621 while (r != &pjsua_var.outbound_proxy) {
1622 pj_list_push_back(&route_set, pjsip_hdr_shallow_clone(pool, r));
1623 r = r->next;
1624 }
1625 }
1626
1627 if (acc->cfg.reg_use_proxy & PJSUA_REG_USE_ACC_PROXY &&
1628 acc->cfg.proxy_cnt)
1629 {
1630 int cnt = acc->cfg.proxy_cnt;
1631 pjsip_route_hdr *pos = route_set.prev;
1632 int i;
1633
1634 r = acc->route_set.prev;
1635 for (i=0; i<cnt; ++i) {
1636 pj_list_push_front(pos, pjsip_hdr_shallow_clone(pool, r));
1637 r = r->prev;
1638 }
1639 }
1640
1641 if (!pj_list_empty(&route_set))
1642 pjsip_regc_set_route_set( acc->regc, &route_set );
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001643 }
1644
Benny Prijono8fc6de02006-11-11 21:25:55 +00001645 /* Add other request headers. */
1646 if (pjsua_var.ua_cfg.user_agent.slen) {
1647 pjsip_hdr hdr_list;
1648 const pj_str_t STR_USER_AGENT = { "User-Agent", 10 };
1649 pjsip_generic_string_hdr *h;
1650
Benny Prijono8fc6de02006-11-11 21:25:55 +00001651 pj_list_init(&hdr_list);
1652
1653 h = pjsip_generic_string_hdr_create(pool, &STR_USER_AGENT,
1654 &pjsua_var.ua_cfg.user_agent);
1655 pj_list_push_back(&hdr_list, (pjsip_hdr*)h);
1656
1657 pjsip_regc_add_headers(acc->regc, &hdr_list);
1658 }
1659
Benny Prijono38fb3ea2008-01-02 08:27:03 +00001660 pj_pool_release(pool);
1661
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001662 return PJ_SUCCESS;
1663}
1664
1665
1666/*
1667 * Update registration or perform unregistration.
1668 */
1669PJ_DEF(pj_status_t) pjsua_acc_set_registration( pjsua_acc_id acc_id,
1670 pj_bool_t renew)
1671{
1672 pj_status_t status = 0;
1673 pjsip_tx_data *tdata = 0;
1674
1675 PJ_ASSERT_RETURN(acc_id>=0 && acc_id<(int)PJ_ARRAY_SIZE(pjsua_var.acc),
1676 PJ_EINVAL);
1677 PJ_ASSERT_RETURN(pjsua_var.acc[acc_id].valid, PJ_EINVALIDOP);
1678
1679 PJSUA_LOCK();
1680
Nanang Izzuddin36dd5b62010-03-30 11:13:59 +00001681 /* Cancel any re-registration timer */
1682 pjsua_cancel_timer(&pjsua_var.acc[acc_id].auto_rereg.timer);
1683
1684 /* Reset pointer to registration transport */
1685 pjsua_var.acc[acc_id].auto_rereg.reg_tp = NULL;
1686
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001687 if (renew) {
1688 if (pjsua_var.acc[acc_id].regc == NULL) {
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001689 status = pjsua_regc_init(acc_id);
1690 if (status != PJ_SUCCESS) {
1691 pjsua_perror(THIS_FILE, "Unable to create registration",
1692 status);
1693 goto on_return;
1694 }
1695 }
1696 if (!pjsua_var.acc[acc_id].regc) {
1697 status = PJ_EINVALIDOP;
1698 goto on_return;
1699 }
1700
1701 status = pjsip_regc_register(pjsua_var.acc[acc_id].regc, 1,
1702 &tdata);
1703
Benny Prijono28f673a2007-10-15 07:04:59 +00001704 if (0 && status == PJ_SUCCESS && pjsua_var.acc[acc_id].cred_cnt) {
1705 pjsua_acc *acc = &pjsua_var.acc[acc_id];
1706 pjsip_authorization_hdr *h;
1707 char *uri;
1708 int d;
1709
1710 uri = (char*) pj_pool_alloc(tdata->pool, acc->cfg.reg_uri.slen+10);
1711 d = pjsip_uri_print(PJSIP_URI_IN_REQ_URI, tdata->msg->line.req.uri,
1712 uri, acc->cfg.reg_uri.slen+10);
1713 pj_assert(d > 0);
1714
1715 h = pjsip_authorization_hdr_create(tdata->pool);
1716 h->scheme = pj_str("Digest");
1717 h->credential.digest.username = acc->cred[0].username;
1718 h->credential.digest.realm = acc->srv_domain;
1719 h->credential.digest.uri = pj_str(uri);
1720 h->credential.digest.algorithm = pj_str("md5");
1721
1722 pjsip_msg_add_hdr(tdata->msg, (pjsip_hdr*)h);
1723 }
1724
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001725 } else {
1726 if (pjsua_var.acc[acc_id].regc == NULL) {
1727 PJ_LOG(3,(THIS_FILE, "Currently not registered"));
1728 status = PJ_EINVALIDOP;
1729 goto on_return;
1730 }
Benny Prijono166d5022010-02-10 14:24:48 +00001731
1732 pjsua_pres_unpublish(&pjsua_var.acc[acc_id]);
1733
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001734 status = pjsip_regc_unregister(pjsua_var.acc[acc_id].regc, &tdata);
1735 }
1736
Benny Prijono56315612006-07-18 14:39:40 +00001737 if (status == PJ_SUCCESS) {
Benny Prijono8fc6de02006-11-11 21:25:55 +00001738 //pjsua_process_msg_data(tdata, NULL);
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001739 status = pjsip_regc_send( pjsua_var.acc[acc_id].regc, tdata );
Benny Prijono56315612006-07-18 14:39:40 +00001740 }
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001741
Nanang Izzuddin36dd5b62010-03-30 11:13:59 +00001742 /* Update pointer to registration transport */
1743 if (status == PJ_SUCCESS) {
1744 pjsip_regc_info reg_info;
1745
1746 pjsip_regc_get_info(pjsua_var.acc[acc_id].regc, &reg_info);
1747 pjsua_var.acc[acc_id].auto_rereg.reg_tp = reg_info.transport;
1748 }
1749
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001750 if (status != PJ_SUCCESS) {
1751 pjsua_perror(THIS_FILE, "Unable to create/send REGISTER",
1752 status);
1753 } else {
1754 PJ_LOG(3,(THIS_FILE, "%s sent",
1755 (renew? "Registration" : "Unregistration")));
1756 }
1757
1758on_return:
1759 PJSUA_UNLOCK();
1760 return status;
1761}
1762
1763
1764/*
1765 * Get account information.
1766 */
1767PJ_DEF(pj_status_t) pjsua_acc_get_info( pjsua_acc_id acc_id,
1768 pjsua_acc_info *info)
1769{
1770 pjsua_acc *acc = &pjsua_var.acc[acc_id];
1771 pjsua_acc_config *acc_cfg = &pjsua_var.acc[acc_id].cfg;
1772
1773 PJ_ASSERT_RETURN(info != NULL, PJ_EINVAL);
Benny Prijono62c5c5b2007-01-13 23:22:40 +00001774 PJ_ASSERT_RETURN(pjsua_acc_is_valid(acc_id), PJ_EINVAL);
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001775
Benny Prijonoac623b32006-07-03 15:19:31 +00001776 pj_bzero(info, sizeof(pjsua_acc_info));
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001777
1778 PJ_ASSERT_RETURN(acc_id>=0 && acc_id<(int)PJ_ARRAY_SIZE(pjsua_var.acc),
1779 PJ_EINVAL);
1780 PJ_ASSERT_RETURN(pjsua_var.acc[acc_id].valid, PJ_EINVALIDOP);
1781
1782 PJSUA_LOCK();
1783
1784 if (pjsua_var.acc[acc_id].valid == PJ_FALSE) {
1785 PJSUA_UNLOCK();
1786 return PJ_EINVALIDOP;
1787 }
1788
1789 info->id = acc_id;
1790 info->is_default = (pjsua_var.default_acc == acc_id);
1791 info->acc_uri = acc_cfg->id;
1792 info->has_registration = (acc->cfg.reg_uri.slen > 0);
1793 info->online_status = acc->online_status;
Benny Prijono4461c7d2007-08-25 13:36:15 +00001794 pj_memcpy(&info->rpid, &acc->rpid, sizeof(pjrpid_element));
1795 if (info->rpid.note.slen)
1796 info->online_status_text = info->rpid.note;
1797 else if (info->online_status)
1798 info->online_status_text = pj_str("Online");
1799 else
1800 info->online_status_text = pj_str("Offline");
1801
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001802 if (acc->reg_last_err) {
Benny Prijonoba5926a2007-05-02 11:29:37 +00001803 info->status = (pjsip_status_code) acc->reg_last_err;
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001804 pj_strerror(acc->reg_last_err, info->buf_, sizeof(info->buf_));
1805 info->status_text = pj_str(info->buf_);
1806 } else if (acc->reg_last_code) {
Benny Prijono6f979412006-06-15 12:25:46 +00001807 if (info->has_registration) {
Benny Prijonoba5926a2007-05-02 11:29:37 +00001808 info->status = (pjsip_status_code) acc->reg_last_code;
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001809 info->status_text = *pjsip_get_status_text(acc->reg_last_code);
1810 } else {
Benny Prijonoba5926a2007-05-02 11:29:37 +00001811 info->status = (pjsip_status_code) 0;
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001812 info->status_text = pj_str("not registered");
1813 }
1814 } else if (acc->cfg.reg_uri.slen) {
Benny Prijonoba5926a2007-05-02 11:29:37 +00001815 info->status = PJSIP_SC_TRYING;
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001816 info->status_text = pj_str("In Progress");
1817 } else {
Benny Prijonoba5926a2007-05-02 11:29:37 +00001818 info->status = (pjsip_status_code) 0;
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001819 info->status_text = pj_str("does not register");
1820 }
1821
1822 if (acc->regc) {
1823 pjsip_regc_info regc_info;
1824 pjsip_regc_get_info(acc->regc, &regc_info);
1825 info->expires = regc_info.next_reg;
1826 } else {
1827 info->expires = -1;
1828 }
1829
1830 PJSUA_UNLOCK();
1831
1832 return PJ_SUCCESS;
1833
1834}
1835
1836
1837/*
1838 * Enum accounts all account ids.
1839 */
1840PJ_DEF(pj_status_t) pjsua_enum_accs(pjsua_acc_id ids[],
1841 unsigned *count )
1842{
1843 unsigned i, c;
1844
1845 PJ_ASSERT_RETURN(ids && *count, PJ_EINVAL);
1846
1847 PJSUA_LOCK();
1848
1849 for (i=0, c=0; c<*count && i<PJ_ARRAY_SIZE(pjsua_var.acc); ++i) {
1850 if (!pjsua_var.acc[i].valid)
1851 continue;
1852 ids[c] = i;
1853 ++c;
1854 }
1855
1856 *count = c;
1857
1858 PJSUA_UNLOCK();
1859
1860 return PJ_SUCCESS;
1861}
1862
1863
1864/*
1865 * Enum accounts info.
1866 */
1867PJ_DEF(pj_status_t) pjsua_acc_enum_info( pjsua_acc_info info[],
1868 unsigned *count )
1869{
1870 unsigned i, c;
1871
1872 PJ_ASSERT_RETURN(info && *count, PJ_EINVAL);
1873
1874 PJSUA_LOCK();
1875
1876 for (i=0, c=0; c<*count && i<PJ_ARRAY_SIZE(pjsua_var.acc); ++i) {
1877 if (!pjsua_var.acc[i].valid)
1878 continue;
1879
1880 pjsua_acc_get_info(i, &info[c]);
1881 ++c;
1882 }
1883
1884 *count = c;
1885
1886 PJSUA_UNLOCK();
1887
1888 return PJ_SUCCESS;
1889}
1890
1891
1892/*
1893 * This is an internal function to find the most appropriate account to
1894 * used to reach to the specified URL.
1895 */
1896PJ_DEF(pjsua_acc_id) pjsua_acc_find_for_outgoing(const pj_str_t *url)
1897{
1898 pj_str_t tmp;
1899 pjsip_uri *uri;
1900 pjsip_sip_uri *sip_uri;
Benny Prijonoc91ed8d2008-07-13 12:24:55 +00001901 pj_pool_t *tmp_pool;
Benny Prijono093d3022006-09-24 00:07:11 +00001902 unsigned i;
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001903
1904 PJSUA_LOCK();
1905
Benny Prijonoc91ed8d2008-07-13 12:24:55 +00001906 tmp_pool = pjsua_pool_create("tmpacc10", 256, 256);
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001907
Benny Prijonoc91ed8d2008-07-13 12:24:55 +00001908 pj_strdup_with_null(tmp_pool, &tmp, url);
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001909
Benny Prijonoc91ed8d2008-07-13 12:24:55 +00001910 uri = pjsip_parse_uri(tmp_pool, tmp.ptr, tmp.slen, 0);
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001911 if (!uri) {
Benny Prijonoc91ed8d2008-07-13 12:24:55 +00001912 pj_pool_release(tmp_pool);
Benny Prijono093d3022006-09-24 00:07:11 +00001913 PJSUA_UNLOCK();
1914 return pjsua_var.default_acc;
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001915 }
1916
1917 if (!PJSIP_URI_SCHEME_IS_SIP(uri) &&
1918 !PJSIP_URI_SCHEME_IS_SIPS(uri))
1919 {
1920 /* Return the first account with proxy */
Benny Prijono093d3022006-09-24 00:07:11 +00001921 for (i=0; i<PJ_ARRAY_SIZE(pjsua_var.acc); ++i) {
1922 if (!pjsua_var.acc[i].valid)
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001923 continue;
Benny Prijono093d3022006-09-24 00:07:11 +00001924 if (!pj_list_empty(&pjsua_var.acc[i].route_set))
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001925 break;
1926 }
1927
Benny Prijono093d3022006-09-24 00:07:11 +00001928 if (i != PJ_ARRAY_SIZE(pjsua_var.acc)) {
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001929 /* Found rather matching account */
Benny Prijonoc91ed8d2008-07-13 12:24:55 +00001930 pj_pool_release(tmp_pool);
Benny Prijono093d3022006-09-24 00:07:11 +00001931 PJSUA_UNLOCK();
Benny Prijonoc91ed8d2008-07-13 12:24:55 +00001932 return i;
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001933 }
1934
1935 /* Not found, use default account */
Benny Prijonoc91ed8d2008-07-13 12:24:55 +00001936 pj_pool_release(tmp_pool);
Benny Prijono093d3022006-09-24 00:07:11 +00001937 PJSUA_UNLOCK();
1938 return pjsua_var.default_acc;
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001939 }
1940
Benny Prijonoa1e69682007-05-11 15:14:34 +00001941 sip_uri = (pjsip_sip_uri*) pjsip_uri_get_uri(uri);
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001942
Benny Prijonob4a17c92006-07-10 14:40:21 +00001943 /* Find matching domain AND port */
Benny Prijono093d3022006-09-24 00:07:11 +00001944 for (i=0; i<pjsua_var.acc_cnt; ++i) {
1945 unsigned acc_id = pjsua_var.acc_ids[i];
1946 if (pj_stricmp(&pjsua_var.acc[acc_id].srv_domain, &sip_uri->host)==0 &&
1947 pjsua_var.acc[acc_id].srv_port == sip_uri->port)
1948 {
Benny Prijonoc91ed8d2008-07-13 12:24:55 +00001949 pj_pool_release(tmp_pool);
Benny Prijono093d3022006-09-24 00:07:11 +00001950 PJSUA_UNLOCK();
1951 return acc_id;
Benny Prijono21b9ad92006-08-15 13:11:22 +00001952 }
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001953 }
1954
Benny Prijonob4a17c92006-07-10 14:40:21 +00001955 /* If no match, try to match the domain part only */
Benny Prijono093d3022006-09-24 00:07:11 +00001956 for (i=0; i<pjsua_var.acc_cnt; ++i) {
1957 unsigned acc_id = pjsua_var.acc_ids[i];
1958 if (pj_stricmp(&pjsua_var.acc[acc_id].srv_domain, &sip_uri->host)==0)
1959 {
Benny Prijonoc91ed8d2008-07-13 12:24:55 +00001960 pj_pool_release(tmp_pool);
Benny Prijono093d3022006-09-24 00:07:11 +00001961 PJSUA_UNLOCK();
1962 return acc_id;
Benny Prijonob4a17c92006-07-10 14:40:21 +00001963 }
1964 }
1965
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001966
Benny Prijono093d3022006-09-24 00:07:11 +00001967 /* Still no match, just use default account */
Benny Prijonoc91ed8d2008-07-13 12:24:55 +00001968 pj_pool_release(tmp_pool);
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001969 PJSUA_UNLOCK();
Benny Prijono093d3022006-09-24 00:07:11 +00001970 return pjsua_var.default_acc;
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001971}
1972
1973
1974/*
1975 * This is an internal function to find the most appropriate account to be
1976 * used to handle incoming calls.
1977 */
1978PJ_DEF(pjsua_acc_id) pjsua_acc_find_for_incoming(pjsip_rx_data *rdata)
1979{
1980 pjsip_uri *uri;
1981 pjsip_sip_uri *sip_uri;
Benny Prijono093d3022006-09-24 00:07:11 +00001982 unsigned i;
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001983
Benny Prijono371cf0a2007-06-19 00:35:37 +00001984 /* Check that there's at least one account configured */
1985 PJ_ASSERT_RETURN(pjsua_var.acc_cnt!=0, pjsua_var.default_acc);
1986
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001987 uri = rdata->msg_info.to->uri;
1988
1989 /* Just return default account if To URI is not SIP: */
1990 if (!PJSIP_URI_SCHEME_IS_SIP(uri) &&
1991 !PJSIP_URI_SCHEME_IS_SIPS(uri))
1992 {
1993 return pjsua_var.default_acc;
1994 }
1995
1996
1997 PJSUA_LOCK();
1998
1999 sip_uri = (pjsip_sip_uri*)pjsip_uri_get_uri(uri);
2000
2001 /* Find account which has matching username and domain. */
Benny Prijono093d3022006-09-24 00:07:11 +00002002 for (i=0; i < pjsua_var.acc_cnt; ++i) {
2003 unsigned acc_id = pjsua_var.acc_ids[i];
Benny Prijonoeebe9af2006-06-13 22:57:13 +00002004 pjsua_acc *acc = &pjsua_var.acc[acc_id];
2005
Benny Prijono62c5c5b2007-01-13 23:22:40 +00002006 if (acc->valid && pj_stricmp(&acc->user_part, &sip_uri->user)==0 &&
Benny Prijonob4a17c92006-07-10 14:40:21 +00002007 pj_stricmp(&acc->srv_domain, &sip_uri->host)==0)
Benny Prijonoeebe9af2006-06-13 22:57:13 +00002008 {
2009 /* Match ! */
2010 PJSUA_UNLOCK();
2011 return acc_id;
2012 }
2013 }
2014
Benny Prijono093d3022006-09-24 00:07:11 +00002015 /* No matching account, try match domain part only. */
2016 for (i=0; i < pjsua_var.acc_cnt; ++i) {
2017 unsigned acc_id = pjsua_var.acc_ids[i];
Benny Prijonoeebe9af2006-06-13 22:57:13 +00002018 pjsua_acc *acc = &pjsua_var.acc[acc_id];
2019
Benny Prijono62c5c5b2007-01-13 23:22:40 +00002020 if (acc->valid && pj_stricmp(&acc->srv_domain, &sip_uri->host)==0) {
Benny Prijonoeebe9af2006-06-13 22:57:13 +00002021 /* Match ! */
2022 PJSUA_UNLOCK();
2023 return acc_id;
2024 }
2025 }
2026
Benny Prijono62c5c5b2007-01-13 23:22:40 +00002027 /* No matching account, try match user part (and transport type) only. */
Benny Prijono093d3022006-09-24 00:07:11 +00002028 for (i=0; i < pjsua_var.acc_cnt; ++i) {
2029 unsigned acc_id = pjsua_var.acc_ids[i];
2030 pjsua_acc *acc = &pjsua_var.acc[acc_id];
2031
Benny Prijono62c5c5b2007-01-13 23:22:40 +00002032 if (acc->valid && pj_stricmp(&acc->user_part, &sip_uri->user)==0) {
2033
2034 if (acc->cfg.transport_id != PJSUA_INVALID_ID) {
2035 pjsip_transport_type_e type;
2036 type = pjsip_transport_get_type_from_name(&sip_uri->transport_param);
2037 if (type == PJSIP_TRANSPORT_UNSPECIFIED)
2038 type = PJSIP_TRANSPORT_UDP;
2039
2040 if (pjsua_var.tpdata[acc->cfg.transport_id].type != type)
2041 continue;
2042 }
2043
Benny Prijono093d3022006-09-24 00:07:11 +00002044 /* Match ! */
2045 PJSUA_UNLOCK();
2046 return acc_id;
2047 }
2048 }
2049
Benny Prijonoeebe9af2006-06-13 22:57:13 +00002050 /* Still no match, use default account */
2051 PJSUA_UNLOCK();
2052 return pjsua_var.default_acc;
2053}
2054
Benny Prijonoc570f2d2006-07-18 00:33:02 +00002055
Benny Prijonofff245c2007-04-02 11:44:47 +00002056/*
2057 * Create arbitrary requests for this account.
2058 */
2059PJ_DEF(pj_status_t) pjsua_acc_create_request(pjsua_acc_id acc_id,
2060 const pjsip_method *method,
2061 const pj_str_t *target,
2062 pjsip_tx_data **p_tdata)
2063{
2064 pjsip_tx_data *tdata;
2065 pjsua_acc *acc;
2066 pjsip_route_hdr *r;
2067 pj_status_t status;
2068
2069 PJ_ASSERT_RETURN(method && target && p_tdata, PJ_EINVAL);
2070 PJ_ASSERT_RETURN(pjsua_acc_is_valid(acc_id), PJ_EINVAL);
2071
2072 acc = &pjsua_var.acc[acc_id];
2073
2074 status = pjsip_endpt_create_request(pjsua_var.endpt, method, target,
2075 &acc->cfg.id, target,
2076 NULL, NULL, -1, NULL, &tdata);
2077 if (status != PJ_SUCCESS) {
2078 pjsua_perror(THIS_FILE, "Unable to create request", status);
2079 return status;
2080 }
2081
2082 /* Copy routeset */
2083 r = acc->route_set.next;
2084 while (r != &acc->route_set) {
Benny Prijonoa1e69682007-05-11 15:14:34 +00002085 pjsip_msg_add_hdr(tdata->msg,
2086 (pjsip_hdr*)pjsip_hdr_clone(tdata->pool, r));
Benny Prijonofff245c2007-04-02 11:44:47 +00002087 r = r->next;
2088 }
Benny Prijonoe7911562009-12-14 11:13:45 +00002089
2090 /* If account is locked to specific transport, then set that transport to
2091 * the transmit data.
2092 */
2093 if (pjsua_var.acc[acc_id].cfg.transport_id != PJSUA_INVALID_ID) {
2094 pjsip_tpselector tp_sel;
2095
2096 pjsua_init_tpselector(acc->cfg.transport_id, &tp_sel);
2097 pjsip_tx_data_set_transport(tdata, &tp_sel);
2098 }
2099
Benny Prijonofff245c2007-04-02 11:44:47 +00002100 /* Done */
2101 *p_tdata = tdata;
2102 return PJ_SUCCESS;
2103}
2104
2105
Benny Prijonoc570f2d2006-07-18 00:33:02 +00002106PJ_DEF(pj_status_t) pjsua_acc_create_uac_contact( pj_pool_t *pool,
2107 pj_str_t *contact,
2108 pjsua_acc_id acc_id,
2109 const pj_str_t *suri)
2110{
2111 pjsua_acc *acc;
2112 pjsip_sip_uri *sip_uri;
2113 pj_status_t status;
2114 pjsip_transport_type_e tp_type = PJSIP_TRANSPORT_UNSPECIFIED;
2115 pj_str_t local_addr;
Benny Prijono62c5c5b2007-01-13 23:22:40 +00002116 pjsip_tpselector tp_sel;
Benny Prijonoc570f2d2006-07-18 00:33:02 +00002117 unsigned flag;
2118 int secure;
2119 int local_port;
Benny Prijonod0bd4982007-12-02 15:40:52 +00002120 const char *beginquote, *endquote;
2121 char transport_param[32];
2122
Benny Prijonoc570f2d2006-07-18 00:33:02 +00002123
Benny Prijono62c5c5b2007-01-13 23:22:40 +00002124 PJ_ASSERT_RETURN(pjsua_acc_is_valid(acc_id), PJ_EINVAL);
Benny Prijonoc570f2d2006-07-18 00:33:02 +00002125 acc = &pjsua_var.acc[acc_id];
2126
Benny Prijonof75eceb2007-03-23 19:09:54 +00002127 /* If force_contact is configured, then use use it */
2128 if (acc->cfg.force_contact.slen) {
2129 *contact = acc->cfg.force_contact;
2130 return PJ_SUCCESS;
2131 }
2132
Benny Prijonoc570f2d2006-07-18 00:33:02 +00002133 /* If route-set is configured for the account, then URI is the
2134 * first entry of the route-set.
2135 */
2136 if (!pj_list_empty(&acc->route_set)) {
Benny Prijono9c1528f2007-02-10 19:22:25 +00002137 sip_uri = (pjsip_sip_uri*)
2138 pjsip_uri_get_uri(acc->route_set.next->name_addr.uri);
Benny Prijonoc570f2d2006-07-18 00:33:02 +00002139 } else {
2140 pj_str_t tmp;
2141 pjsip_uri *uri;
2142
2143 pj_strdup_with_null(pool, &tmp, suri);
2144
2145 uri = pjsip_parse_uri(pool, tmp.ptr, tmp.slen, 0);
2146 if (uri == NULL)
2147 return PJSIP_EINVALIDURI;
2148
2149 /* For non-SIP scheme, route set should be configured */
2150 if (!PJSIP_URI_SCHEME_IS_SIP(uri) && !PJSIP_URI_SCHEME_IS_SIPS(uri))
2151 return PJSIP_EINVALIDREQURI;
2152
Benny Prijono8c7a6172007-02-18 21:17:46 +00002153 sip_uri = (pjsip_sip_uri*)pjsip_uri_get_uri(uri);
Benny Prijonoc570f2d2006-07-18 00:33:02 +00002154 }
2155
2156 /* Get transport type of the URI */
2157 if (PJSIP_URI_SCHEME_IS_SIPS(sip_uri))
2158 tp_type = PJSIP_TRANSPORT_TLS;
2159 else if (sip_uri->transport_param.slen == 0) {
2160 tp_type = PJSIP_TRANSPORT_UDP;
2161 } else
2162 tp_type = pjsip_transport_get_type_from_name(&sip_uri->transport_param);
2163
2164 if (tp_type == PJSIP_TRANSPORT_UNSPECIFIED)
2165 return PJSIP_EUNSUPTRANSPORT;
2166
Benny Prijonod0bd4982007-12-02 15:40:52 +00002167 /* If destination URI specifies IPv6, then set transport type
2168 * to use IPv6 as well.
2169 */
Benny Prijono19b29372007-12-05 04:08:40 +00002170 if (pj_strchr(&sip_uri->host, ':'))
Benny Prijonod0bd4982007-12-02 15:40:52 +00002171 tp_type = (pjsip_transport_type_e)(((int)tp_type) + PJSIP_TRANSPORT_IPV6);
2172
Benny Prijonoc570f2d2006-07-18 00:33:02 +00002173 flag = pjsip_transport_get_flag_from_type(tp_type);
2174 secure = (flag & PJSIP_TRANSPORT_SECURE) != 0;
2175
Benny Prijono62c5c5b2007-01-13 23:22:40 +00002176 /* Init transport selector. */
2177 pjsua_init_tpselector(pjsua_var.acc[acc_id].cfg.transport_id, &tp_sel);
2178
Benny Prijonoc570f2d2006-07-18 00:33:02 +00002179 /* Get local address suitable to send request from */
2180 status = pjsip_tpmgr_find_local_addr(pjsip_endpt_get_tpmgr(pjsua_var.endpt),
Benny Prijono62c5c5b2007-01-13 23:22:40 +00002181 pool, tp_type, &tp_sel,
2182 &local_addr, &local_port);
Benny Prijonoc570f2d2006-07-18 00:33:02 +00002183 if (status != PJ_SUCCESS)
2184 return status;
2185
Benny Prijonod0bd4982007-12-02 15:40:52 +00002186 /* Enclose IPv6 address in square brackets */
2187 if (tp_type & PJSIP_TRANSPORT_IPV6) {
2188 beginquote = "[";
2189 endquote = "]";
2190 } else {
2191 beginquote = endquote = "";
2192 }
2193
2194 /* Don't add transport parameter if it's UDP */
Benny Prijono4c82c1e2008-10-16 08:14:51 +00002195 if (tp_type!=PJSIP_TRANSPORT_UDP && tp_type!=PJSIP_TRANSPORT_UDP6) {
Benny Prijonod0bd4982007-12-02 15:40:52 +00002196 pj_ansi_snprintf(transport_param, sizeof(transport_param),
2197 ";transport=%s",
2198 pjsip_transport_get_type_name(tp_type));
2199 } else {
2200 transport_param[0] = '\0';
2201 }
2202
2203
Benny Prijonoc570f2d2006-07-18 00:33:02 +00002204 /* Create the contact header */
Benny Prijonoa1e69682007-05-11 15:14:34 +00002205 contact->ptr = (char*)pj_pool_alloc(pool, PJSIP_MAX_URL_SIZE);
Benny Prijonoc570f2d2006-07-18 00:33:02 +00002206 contact->slen = pj_ansi_snprintf(contact->ptr, PJSIP_MAX_URL_SIZE,
Nanang Izzuddine2c7e852009-08-04 14:36:17 +00002207 "%.*s%s<%s:%.*s%s%s%.*s%s:%d%s%.*s>%.*s",
Benny Prijonoc570f2d2006-07-18 00:33:02 +00002208 (int)acc->display.slen,
2209 acc->display.ptr,
2210 (acc->display.slen?" " : ""),
Benny Prijono8058a622007-06-08 04:37:05 +00002211 (secure ? PJSUA_SECURE_SCHEME : "sip"),
Benny Prijonoc570f2d2006-07-18 00:33:02 +00002212 (int)acc->user_part.slen,
2213 acc->user_part.ptr,
2214 (acc->user_part.slen?"@":""),
Benny Prijonod0bd4982007-12-02 15:40:52 +00002215 beginquote,
Benny Prijonoc570f2d2006-07-18 00:33:02 +00002216 (int)local_addr.slen,
2217 local_addr.ptr,
Benny Prijonod0bd4982007-12-02 15:40:52 +00002218 endquote,
Benny Prijonoc570f2d2006-07-18 00:33:02 +00002219 local_port,
Benny Prijono30fe4852008-12-10 16:54:16 +00002220 transport_param,
Nanang Izzuddine2c7e852009-08-04 14:36:17 +00002221 (int)acc->cfg.contact_uri_params.slen,
2222 acc->cfg.contact_uri_params.ptr,
Benny Prijono30fe4852008-12-10 16:54:16 +00002223 (int)acc->cfg.contact_params.slen,
2224 acc->cfg.contact_params.ptr);
Benny Prijonoc570f2d2006-07-18 00:33:02 +00002225
2226 return PJ_SUCCESS;
2227}
2228
2229
2230
2231PJ_DEF(pj_status_t) pjsua_acc_create_uas_contact( pj_pool_t *pool,
2232 pj_str_t *contact,
2233 pjsua_acc_id acc_id,
2234 pjsip_rx_data *rdata )
2235{
2236 /*
2237 * Section 12.1.1, paragraph about using SIPS URI in Contact.
2238 * If the request that initiated the dialog contained a SIPS URI
2239 * in the Request-URI or in the top Record-Route header field value,
2240 * if there was any, or the Contact header field if there was no
2241 * Record-Route header field, the Contact header field in the response
2242 * MUST be a SIPS URI.
2243 */
2244 pjsua_acc *acc;
2245 pjsip_sip_uri *sip_uri;
2246 pj_status_t status;
2247 pjsip_transport_type_e tp_type = PJSIP_TRANSPORT_UNSPECIFIED;
2248 pj_str_t local_addr;
Benny Prijono62c5c5b2007-01-13 23:22:40 +00002249 pjsip_tpselector tp_sel;
Benny Prijonoc570f2d2006-07-18 00:33:02 +00002250 unsigned flag;
2251 int secure;
2252 int local_port;
Benny Prijonod0bd4982007-12-02 15:40:52 +00002253 const char *beginquote, *endquote;
2254 char transport_param[32];
Benny Prijonoc570f2d2006-07-18 00:33:02 +00002255
Benny Prijono62c5c5b2007-01-13 23:22:40 +00002256 PJ_ASSERT_RETURN(pjsua_acc_is_valid(acc_id), PJ_EINVAL);
Benny Prijonoc570f2d2006-07-18 00:33:02 +00002257 acc = &pjsua_var.acc[acc_id];
2258
Benny Prijonof75eceb2007-03-23 19:09:54 +00002259 /* If force_contact is configured, then use use it */
2260 if (acc->cfg.force_contact.slen) {
2261 *contact = acc->cfg.force_contact;
2262 return PJ_SUCCESS;
2263 }
2264
Benny Prijonoc570f2d2006-07-18 00:33:02 +00002265 /* If Record-Route is present, then URI is the top Record-Route. */
2266 if (rdata->msg_info.record_route) {
Benny Prijono9c1528f2007-02-10 19:22:25 +00002267 sip_uri = (pjsip_sip_uri*)
2268 pjsip_uri_get_uri(rdata->msg_info.record_route->name_addr.uri);
Benny Prijonoc570f2d2006-07-18 00:33:02 +00002269 } else {
Benny Prijonoa330d452008-08-05 20:14:39 +00002270 pjsip_hdr *pos = NULL;
Benny Prijonoc570f2d2006-07-18 00:33:02 +00002271 pjsip_contact_hdr *h_contact;
2272 pjsip_uri *uri = NULL;
2273
Benny Prijonoa330d452008-08-05 20:14:39 +00002274 /* Otherwise URI is Contact URI.
2275 * Iterate the Contact URI until we find sip: or sips: scheme.
2276 */
2277 do {
2278 h_contact = (pjsip_contact_hdr*)
2279 pjsip_msg_find_hdr(rdata->msg_info.msg, PJSIP_H_CONTACT,
2280 pos);
2281 if (h_contact) {
Benny Prijono8b33bba2010-06-02 03:03:43 +00002282 if (h_contact->uri)
2283 uri = (pjsip_uri*) pjsip_uri_get_uri(h_contact->uri);
2284 else
2285 uri = NULL;
2286 if (!uri || (!PJSIP_URI_SCHEME_IS_SIP(uri) &&
2287 !PJSIP_URI_SCHEME_IS_SIPS(uri)))
Benny Prijonoa330d452008-08-05 20:14:39 +00002288 {
2289 pos = (pjsip_hdr*)h_contact->next;
2290 if (pos == &rdata->msg_info.msg->hdr)
2291 h_contact = NULL;
2292 } else {
2293 break;
2294 }
2295 }
2296 } while (h_contact);
Benny Prijonoc570f2d2006-07-18 00:33:02 +00002297
2298
2299 /* Or if Contact URI is not present, take the remote URI from
2300 * the From URI.
2301 */
2302 if (uri == NULL)
Benny Prijonoa1e69682007-05-11 15:14:34 +00002303 uri = (pjsip_uri*) pjsip_uri_get_uri(rdata->msg_info.from->uri);
Benny Prijonoc570f2d2006-07-18 00:33:02 +00002304
2305
2306 /* Can only do sip/sips scheme at present. */
2307 if (!PJSIP_URI_SCHEME_IS_SIP(uri) && !PJSIP_URI_SCHEME_IS_SIPS(uri))
2308 return PJSIP_EINVALIDREQURI;
2309
Benny Prijono8c7a6172007-02-18 21:17:46 +00002310 sip_uri = (pjsip_sip_uri*)pjsip_uri_get_uri(uri);
Benny Prijonoc570f2d2006-07-18 00:33:02 +00002311 }
2312
2313 /* Get transport type of the URI */
2314 if (PJSIP_URI_SCHEME_IS_SIPS(sip_uri))
2315 tp_type = PJSIP_TRANSPORT_TLS;
2316 else if (sip_uri->transport_param.slen == 0) {
2317 tp_type = PJSIP_TRANSPORT_UDP;
2318 } else
2319 tp_type = pjsip_transport_get_type_from_name(&sip_uri->transport_param);
Benny Prijonod0bd4982007-12-02 15:40:52 +00002320
Benny Prijonoc570f2d2006-07-18 00:33:02 +00002321 if (tp_type == PJSIP_TRANSPORT_UNSPECIFIED)
2322 return PJSIP_EUNSUPTRANSPORT;
2323
Benny Prijonod0bd4982007-12-02 15:40:52 +00002324 /* If destination URI specifies IPv6, then set transport type
2325 * to use IPv6 as well.
2326 */
2327 if (pj_strchr(&sip_uri->host, ':'))
2328 tp_type = (pjsip_transport_type_e)(((int)tp_type) + PJSIP_TRANSPORT_IPV6);
2329
Benny Prijonoc570f2d2006-07-18 00:33:02 +00002330 flag = pjsip_transport_get_flag_from_type(tp_type);
2331 secure = (flag & PJSIP_TRANSPORT_SECURE) != 0;
2332
Benny Prijono62c5c5b2007-01-13 23:22:40 +00002333 /* Init transport selector. */
2334 pjsua_init_tpselector(pjsua_var.acc[acc_id].cfg.transport_id, &tp_sel);
2335
Benny Prijonoc570f2d2006-07-18 00:33:02 +00002336 /* Get local address suitable to send request from */
2337 status = pjsip_tpmgr_find_local_addr(pjsip_endpt_get_tpmgr(pjsua_var.endpt),
Benny Prijono62c5c5b2007-01-13 23:22:40 +00002338 pool, tp_type, &tp_sel,
2339 &local_addr, &local_port);
Benny Prijonoc570f2d2006-07-18 00:33:02 +00002340 if (status != PJ_SUCCESS)
2341 return status;
2342
Benny Prijonod0bd4982007-12-02 15:40:52 +00002343 /* Enclose IPv6 address in square brackets */
2344 if (tp_type & PJSIP_TRANSPORT_IPV6) {
2345 beginquote = "[";
2346 endquote = "]";
2347 } else {
2348 beginquote = endquote = "";
2349 }
2350
2351 /* Don't add transport parameter if it's UDP */
Benny Prijono4c82c1e2008-10-16 08:14:51 +00002352 if (tp_type!=PJSIP_TRANSPORT_UDP && tp_type!=PJSIP_TRANSPORT_UDP6) {
Benny Prijonod0bd4982007-12-02 15:40:52 +00002353 pj_ansi_snprintf(transport_param, sizeof(transport_param),
2354 ";transport=%s",
2355 pjsip_transport_get_type_name(tp_type));
2356 } else {
2357 transport_param[0] = '\0';
2358 }
2359
2360
Benny Prijonoc570f2d2006-07-18 00:33:02 +00002361 /* Create the contact header */
Benny Prijonoa1e69682007-05-11 15:14:34 +00002362 contact->ptr = (char*) pj_pool_alloc(pool, PJSIP_MAX_URL_SIZE);
Benny Prijonoc570f2d2006-07-18 00:33:02 +00002363 contact->slen = pj_ansi_snprintf(contact->ptr, PJSIP_MAX_URL_SIZE,
Nanang Izzuddine2c7e852009-08-04 14:36:17 +00002364 "%.*s%s<%s:%.*s%s%s%.*s%s:%d%s%.*s>%.*s",
Benny Prijonoc570f2d2006-07-18 00:33:02 +00002365 (int)acc->display.slen,
2366 acc->display.ptr,
2367 (acc->display.slen?" " : ""),
Benny Prijono8058a622007-06-08 04:37:05 +00002368 (secure ? PJSUA_SECURE_SCHEME : "sip"),
Benny Prijonoc570f2d2006-07-18 00:33:02 +00002369 (int)acc->user_part.slen,
2370 acc->user_part.ptr,
2371 (acc->user_part.slen?"@":""),
Benny Prijonod0bd4982007-12-02 15:40:52 +00002372 beginquote,
Benny Prijonoc570f2d2006-07-18 00:33:02 +00002373 (int)local_addr.slen,
2374 local_addr.ptr,
Benny Prijonod0bd4982007-12-02 15:40:52 +00002375 endquote,
Benny Prijonoc570f2d2006-07-18 00:33:02 +00002376 local_port,
Benny Prijono30fe4852008-12-10 16:54:16 +00002377 transport_param,
Nanang Izzuddine2c7e852009-08-04 14:36:17 +00002378 (int)acc->cfg.contact_uri_params.slen,
2379 acc->cfg.contact_uri_params.ptr,
Benny Prijono30fe4852008-12-10 16:54:16 +00002380 (int)acc->cfg.contact_params.slen,
2381 acc->cfg.contact_params.ptr);
Benny Prijonoc570f2d2006-07-18 00:33:02 +00002382
2383 return PJ_SUCCESS;
2384}
2385
2386
Benny Prijono62c5c5b2007-01-13 23:22:40 +00002387PJ_DEF(pj_status_t) pjsua_acc_set_transport( pjsua_acc_id acc_id,
2388 pjsua_transport_id tp_id)
2389{
2390 pjsua_acc *acc;
2391
2392 PJ_ASSERT_RETURN(pjsua_acc_is_valid(acc_id), PJ_EINVAL);
2393 acc = &pjsua_var.acc[acc_id];
2394
Benny Prijonoa1e69682007-05-11 15:14:34 +00002395 PJ_ASSERT_RETURN(tp_id >= 0 && tp_id < (int)PJ_ARRAY_SIZE(pjsua_var.tpdata),
Benny Prijono62c5c5b2007-01-13 23:22:40 +00002396 PJ_EINVAL);
2397
2398 acc->cfg.transport_id = tp_id;
2399
2400 return PJ_SUCCESS;
2401}
Benny Prijonoc570f2d2006-07-18 00:33:02 +00002402
Nanang Izzuddin36dd5b62010-03-30 11:13:59 +00002403
2404/* Auto re-registration timeout callback */
2405static void auto_rereg_timer_cb(pj_timer_heap_t *th, pj_timer_entry *te)
2406{
2407 pjsua_acc *acc;
2408 pj_status_t status;
2409
2410 PJ_UNUSED_ARG(th);
2411 acc = (pjsua_acc*) te->user_data;
2412 pj_assert(acc);
2413
2414 PJSUA_LOCK();
2415
Nanang Izzuddinc71bed62010-05-26 15:04:43 +00002416 /* Check if the reregistration timer is still valid, e.g: while waiting
2417 * timeout timer application might have deleted the account or disabled
2418 * the auto-reregistration.
2419 */
2420 if (!acc->valid || !acc->auto_rereg.active ||
2421 acc->cfg.reg_retry_interval == 0)
2422 {
Nanang Izzuddin36dd5b62010-03-30 11:13:59 +00002423 goto on_return;
Nanang Izzuddinc71bed62010-05-26 15:04:43 +00002424 }
Nanang Izzuddin36dd5b62010-03-30 11:13:59 +00002425
2426 /* Start re-registration */
2427 acc->auto_rereg.attempt_cnt++;
2428 status = pjsua_acc_set_registration(acc->index, PJ_TRUE);
2429 if (status != PJ_SUCCESS)
2430 schedule_reregistration(acc);
2431
Nanang Izzuddin66580002010-04-14 08:12:08 +00002432on_return:
2433 PJSUA_UNLOCK();
2434}
2435
2436
2437/* Schedule reregistration for specified account. Note that the first
2438 * re-registration after a registration failure will be done immediately.
2439 * Also note that this function should be called within PJSUA mutex.
2440 */
2441static void schedule_reregistration(pjsua_acc *acc)
2442{
2443 pj_time_val delay;
2444
Nanang Izzuddinc71bed62010-05-26 15:04:43 +00002445 pj_assert(acc);
2446
2447 /* Validate the account and re-registration feature status */
2448 if (!acc->valid || acc->cfg.reg_retry_interval == 0) {
2449 return;
2450 }
Nanang Izzuddin66580002010-04-14 08:12:08 +00002451
Nanang Izzuddin36dd5b62010-03-30 11:13:59 +00002452 /* If configured, disconnect calls of this account after the first
2453 * reregistration attempt failed.
2454 */
Nanang Izzuddin66580002010-04-14 08:12:08 +00002455 if (acc->cfg.drop_calls_on_reg_fail && acc->auto_rereg.attempt_cnt >= 1)
Nanang Izzuddin36dd5b62010-03-30 11:13:59 +00002456 {
2457 unsigned i, cnt;
2458
2459 for (i = 0, cnt = 0; i < pjsua_var.ua_cfg.max_calls; ++i) {
2460 if (pjsua_var.calls[i].acc_id == acc->index) {
2461 pjsua_call_hangup(i, 0, NULL, NULL);
2462 ++cnt;
2463 }
2464 }
2465
2466 if (cnt) {
2467 PJ_LOG(3, (THIS_FILE, "Disconnecting %d call(s) of account #%d "
2468 "after reregistration attempt failed",
2469 cnt, acc->index));
2470 }
2471 }
2472
Nanang Izzuddin36dd5b62010-03-30 11:13:59 +00002473 /* Cancel any re-registration timer */
2474 pjsua_cancel_timer(&acc->auto_rereg.timer);
2475
2476 /* Update re-registration flag */
2477 acc->auto_rereg.active = PJ_TRUE;
2478
2479 /* Set up timer for reregistration */
2480 acc->auto_rereg.timer.cb = &auto_rereg_timer_cb;
2481 acc->auto_rereg.timer.user_data = acc;
2482
2483 /* Reregistration attempt. The first attempt will be done immediately. */
2484 delay.sec = acc->auto_rereg.attempt_cnt? acc->cfg.reg_retry_interval : 0;
2485 delay.msec = 0;
2486 pjsua_schedule_timer(&acc->auto_rereg.timer, &delay);
2487}
2488
2489
2490/* Internal function to perform auto-reregistration on transport
2491 * connection/disconnection events.
2492 */
2493void pjsua_acc_on_tp_state_changed(pjsip_transport *tp,
2494 pjsip_transport_state state,
2495 const pjsip_transport_state_info *info)
2496{
2497 unsigned i;
2498
2499 PJ_UNUSED_ARG(info);
2500
2501 /* Only care for transport disconnection events */
2502 if (state != PJSIP_TP_STATE_DISCONNECTED)
2503 return;
2504
2505 /* Shutdown this transport, to make sure that the transport manager
2506 * will create a new transport for reconnection.
2507 */
2508 pjsip_transport_shutdown(tp);
2509
2510 PJSUA_LOCK();
2511
2512 /* Enumerate accounts using this transport and perform actions
2513 * based on the transport state.
2514 */
2515 for (i = 0; i < PJ_ARRAY_SIZE(pjsua_var.acc); ++i) {
2516 pjsua_acc *acc = &pjsua_var.acc[i];
2517
2518 /* Skip if this account is not valid OR auto re-registration
2519 * feature is disabled OR this transport is not used by this account.
2520 */
2521 if (!acc->valid || !acc->cfg.reg_retry_interval ||
2522 tp != acc->auto_rereg.reg_tp)
2523 {
2524 continue;
2525 }
2526
2527 /* Schedule reregistration for this account */
2528 schedule_reregistration(acc);
2529 }
2530
2531 PJSUA_UNLOCK();
2532}