blob: 18096629f3ce0321cd336bfee7327b5d23952402 [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
27/*
28 * Get number of current accounts.
29 */
30PJ_DEF(unsigned) pjsua_acc_get_count(void)
31{
32 return pjsua_var.acc_cnt;
33}
34
35
36/*
37 * Check if the specified account ID is valid.
38 */
39PJ_DEF(pj_bool_t) pjsua_acc_is_valid(pjsua_acc_id acc_id)
40{
Benny Prijonoa1e69682007-05-11 15:14:34 +000041 return acc_id>=0 && acc_id<(int)PJ_ARRAY_SIZE(pjsua_var.acc) &&
Benny Prijonoeebe9af2006-06-13 22:57:13 +000042 pjsua_var.acc[acc_id].valid;
43}
44
45
46/*
Benny Prijono21b9ad92006-08-15 13:11:22 +000047 * Set default account
48 */
49PJ_DEF(pj_status_t) pjsua_acc_set_default(pjsua_acc_id acc_id)
50{
51 pjsua_var.default_acc = acc_id;
52 return PJ_SUCCESS;
53}
54
55
56/*
57 * Get default account.
58 */
59PJ_DEF(pjsua_acc_id) pjsua_acc_get_default(void)
60{
61 return pjsua_var.default_acc;
62}
63
64
65/*
Benny Prijonoeebe9af2006-06-13 22:57:13 +000066 * Copy account configuration.
67 */
Benny Prijonobddef2c2007-10-31 13:28:08 +000068PJ_DEF(void) pjsua_acc_config_dup( pj_pool_t *pool,
69 pjsua_acc_config *dst,
70 const pjsua_acc_config *src)
Benny Prijonoeebe9af2006-06-13 22:57:13 +000071{
72 unsigned i;
73
74 pj_memcpy(dst, src, sizeof(pjsua_acc_config));
75
76 pj_strdup_with_null(pool, &dst->id, &src->id);
77 pj_strdup_with_null(pool, &dst->reg_uri, &src->reg_uri);
Benny Prijonob4a17c92006-07-10 14:40:21 +000078 pj_strdup_with_null(pool, &dst->force_contact, &src->force_contact);
Benny Prijonofe04fb52007-08-24 08:28:52 +000079 pj_strdup_with_null(pool, &dst->pidf_tuple_id, &src->pidf_tuple_id);
Benny Prijonoeebe9af2006-06-13 22:57:13 +000080
81 dst->proxy_cnt = src->proxy_cnt;
82 for (i=0; i<src->proxy_cnt; ++i)
83 pj_strdup_with_null(pool, &dst->proxy[i], &src->proxy[i]);
84
85 dst->reg_timeout = src->reg_timeout;
86 dst->cred_count = src->cred_count;
87
88 for (i=0; i<src->cred_count; ++i) {
89 pjsip_cred_dup(pool, &dst->cred_info[i], &src->cred_info[i]);
90 }
Benny Prijonobddef2c2007-10-31 13:28:08 +000091
92 dst->ka_interval = src->ka_interval;
93 pj_strdup(pool, &dst->ka_data, &src->ka_data);
Benny Prijonoeebe9af2006-06-13 22:57:13 +000094}
95
96
97/*
Benny Prijonoeebe9af2006-06-13 22:57:13 +000098 * Initialize a new account (after configuration is set).
99 */
100static pj_status_t initialize_acc(unsigned acc_id)
101{
102 pjsua_acc_config *acc_cfg = &pjsua_var.acc[acc_id].cfg;
103 pjsua_acc *acc = &pjsua_var.acc[acc_id];
Benny Prijonoc570f2d2006-07-18 00:33:02 +0000104 pjsip_name_addr *name_addr;
Benny Prijonob4a17c92006-07-10 14:40:21 +0000105 pjsip_sip_uri *sip_uri, *sip_reg_uri;
Benny Prijono3a5e1ab2006-08-15 20:26:34 +0000106 pj_status_t status;
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000107 unsigned i;
108
109 /* Need to parse local_uri to get the elements: */
110
Benny Prijonoc570f2d2006-07-18 00:33:02 +0000111 name_addr = (pjsip_name_addr*)
Benny Prijonoc91ed8d2008-07-13 12:24:55 +0000112 pjsip_parse_uri(acc->pool, acc_cfg->id.ptr,
Benny Prijonoc570f2d2006-07-18 00:33:02 +0000113 acc_cfg->id.slen,
114 PJSIP_PARSE_URI_AS_NAMEADDR);
115 if (name_addr == NULL) {
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000116 pjsua_perror(THIS_FILE, "Invalid local URI",
117 PJSIP_EINVALIDURI);
118 return PJSIP_EINVALIDURI;
119 }
120
121 /* Local URI MUST be a SIP or SIPS: */
122
Benny Prijonoc570f2d2006-07-18 00:33:02 +0000123 if (!PJSIP_URI_SCHEME_IS_SIP(name_addr) &&
124 !PJSIP_URI_SCHEME_IS_SIPS(name_addr))
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000125 {
126 pjsua_perror(THIS_FILE, "Invalid local URI",
127 PJSIP_EINVALIDSCHEME);
128 return PJSIP_EINVALIDSCHEME;
129 }
130
131
132 /* Get the SIP URI object: */
Benny Prijonoc570f2d2006-07-18 00:33:02 +0000133 sip_uri = (pjsip_sip_uri*) pjsip_uri_get_uri(name_addr);
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000134
Benny Prijonob4a17c92006-07-10 14:40:21 +0000135
136 /* Parse registrar URI, if any */
137 if (acc_cfg->reg_uri.slen) {
138 pjsip_uri *reg_uri;
139
Benny Prijonoc91ed8d2008-07-13 12:24:55 +0000140 reg_uri = pjsip_parse_uri(acc->pool, acc_cfg->reg_uri.ptr,
Benny Prijonob4a17c92006-07-10 14:40:21 +0000141 acc_cfg->reg_uri.slen, 0);
142 if (reg_uri == NULL) {
143 pjsua_perror(THIS_FILE, "Invalid registrar URI",
144 PJSIP_EINVALIDURI);
145 return PJSIP_EINVALIDURI;
146 }
147
148 /* Registrar URI MUST be a SIP or SIPS: */
149 if (!PJSIP_URI_SCHEME_IS_SIP(reg_uri) &&
150 !PJSIP_URI_SCHEME_IS_SIPS(reg_uri))
151 {
152 pjsua_perror(THIS_FILE, "Invalid registar URI",
153 PJSIP_EINVALIDSCHEME);
154 return PJSIP_EINVALIDSCHEME;
155 }
156
157 sip_reg_uri = (pjsip_sip_uri*) pjsip_uri_get_uri(reg_uri);
158
159 } else {
160 sip_reg_uri = NULL;
161 }
162
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000163 /* Save the user and domain part. These will be used when finding an
164 * account for incoming requests.
165 */
Benny Prijonoc570f2d2006-07-18 00:33:02 +0000166 acc->display = name_addr->display;
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000167 acc->user_part = sip_uri->user;
Benny Prijonob4a17c92006-07-10 14:40:21 +0000168 acc->srv_domain = sip_uri->host;
169 acc->srv_port = 0;
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000170
Benny Prijonob4a17c92006-07-10 14:40:21 +0000171 if (sip_reg_uri) {
172 acc->srv_port = sip_reg_uri->port;
173 }
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000174
175 /* Create Contact header if not present. */
Benny Prijonob4a17c92006-07-10 14:40:21 +0000176 //if (acc_cfg->contact.slen == 0) {
177 // acc_cfg->contact = acc_cfg->id;
178 //}
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000179
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000180 /* Build account route-set from outbound proxies and route set from
181 * account configuration.
182 */
183 pj_list_init(&acc->route_set);
184
185 for (i=0; i<pjsua_var.ua_cfg.outbound_proxy_cnt; ++i) {
186 pj_str_t hname = { "Route", 5};
187 pjsip_route_hdr *r;
188 pj_str_t tmp;
189
Benny Prijonoc91ed8d2008-07-13 12:24:55 +0000190 pj_strdup_with_null(acc->pool, &tmp,
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000191 &pjsua_var.ua_cfg.outbound_proxy[i]);
Benny Prijonoa1e69682007-05-11 15:14:34 +0000192 r = (pjsip_route_hdr*)
Benny Prijonoc91ed8d2008-07-13 12:24:55 +0000193 pjsip_parse_hdr(acc->pool, &hname, tmp.ptr, tmp.slen, NULL);
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000194 if (r == NULL) {
195 pjsua_perror(THIS_FILE, "Invalid outbound proxy URI",
196 PJSIP_EINVALIDURI);
197 return PJSIP_EINVALIDURI;
198 }
199 pj_list_push_back(&acc->route_set, r);
200 }
201
202 for (i=0; i<acc_cfg->proxy_cnt; ++i) {
203 pj_str_t hname = { "Route", 5};
204 pjsip_route_hdr *r;
205 pj_str_t tmp;
206
Benny Prijonoc91ed8d2008-07-13 12:24:55 +0000207 pj_strdup_with_null(acc->pool, &tmp, &acc_cfg->proxy[i]);
Benny Prijonoa1e69682007-05-11 15:14:34 +0000208 r = (pjsip_route_hdr*)
Benny Prijonoc91ed8d2008-07-13 12:24:55 +0000209 pjsip_parse_hdr(acc->pool, &hname, tmp.ptr, tmp.slen, NULL);
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000210 if (r == NULL) {
211 pjsua_perror(THIS_FILE, "Invalid URI in account route set",
212 PJ_EINVAL);
213 return PJ_EINVAL;
214 }
215 pj_list_push_back(&acc->route_set, r);
216 }
217
218
219 /* Concatenate credentials from account config and global config */
220 acc->cred_cnt = 0;
221 for (i=0; i<acc_cfg->cred_count; ++i) {
222 acc->cred[acc->cred_cnt++] = acc_cfg->cred_info[i];
223 }
224 for (i=0; i<pjsua_var.ua_cfg.cred_count &&
225 acc->cred_cnt < PJ_ARRAY_SIZE(acc->cred); ++i)
226 {
227 acc->cred[acc->cred_cnt++] = pjsua_var.ua_cfg.cred_info[i];
228 }
229
Benny Prijono3a5e1ab2006-08-15 20:26:34 +0000230 status = pjsua_pres_init_acc(acc_id);
231 if (status != PJ_SUCCESS)
232 return status;
233
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000234 /* Mark account as valid */
235 pjsua_var.acc[acc_id].valid = PJ_TRUE;
236
Benny Prijono093d3022006-09-24 00:07:11 +0000237 /* Insert account ID into account ID array, sorted by priority */
238 for (i=0; i<pjsua_var.acc_cnt; ++i) {
239 if ( pjsua_var.acc[pjsua_var.acc_ids[i]].cfg.priority <
240 pjsua_var.acc[acc_id].cfg.priority)
241 {
242 break;
243 }
244 }
245 pj_array_insert(pjsua_var.acc_ids, sizeof(pjsua_var.acc_ids[0]),
246 pjsua_var.acc_cnt, i, &acc_id);
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000247
248 return PJ_SUCCESS;
249}
250
251
252/*
253 * Add a new account to pjsua.
254 */
255PJ_DEF(pj_status_t) pjsua_acc_add( const pjsua_acc_config *cfg,
256 pj_bool_t is_default,
257 pjsua_acc_id *p_acc_id)
258{
Benny Prijonoc91ed8d2008-07-13 12:24:55 +0000259 pjsua_acc *acc;
Benny Prijono91d06b62008-09-20 12:16:56 +0000260 unsigned i, id;
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000261 pj_status_t status;
262
263 PJ_ASSERT_RETURN(pjsua_var.acc_cnt < PJ_ARRAY_SIZE(pjsua_var.acc),
264 PJ_ETOOMANY);
265
266 /* Must have a transport */
Benny Prijonoe93e2872006-06-28 16:46:49 +0000267 PJ_ASSERT_RETURN(pjsua_var.tpdata[0].data.ptr != NULL, PJ_EINVALIDOP);
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000268
269 PJSUA_LOCK();
270
271 /* Find empty account id. */
272 for (id=0; id < PJ_ARRAY_SIZE(pjsua_var.acc); ++id) {
273 if (pjsua_var.acc[id].valid == PJ_FALSE)
274 break;
275 }
276
277 /* Expect to find a slot */
278 PJ_ASSERT_ON_FAIL( id < PJ_ARRAY_SIZE(pjsua_var.acc),
279 {PJSUA_UNLOCK(); return PJ_EBUG;});
280
Benny Prijonoc91ed8d2008-07-13 12:24:55 +0000281 acc = &pjsua_var.acc[id];
282
283 /* Create pool for this account. */
284 if (acc->pool)
285 pj_pool_reset(acc->pool);
286 else
287 acc->pool = pjsua_pool_create("acc%p", 512, 256);
288
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000289 /* Copy config */
Benny Prijonoc91ed8d2008-07-13 12:24:55 +0000290 pjsua_acc_config_dup(acc->pool, &pjsua_var.acc[id].cfg, cfg);
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000291
292 /* Normalize registration timeout */
293 if (pjsua_var.acc[id].cfg.reg_uri.slen &&
294 pjsua_var.acc[id].cfg.reg_timeout == 0)
295 {
296 pjsua_var.acc[id].cfg.reg_timeout = PJSUA_REG_INTERVAL;
297 }
298
Benny Prijono91d06b62008-09-20 12:16:56 +0000299 /* Check the route URI's and force loose route if required */
300 for (i=0; i<acc->cfg.proxy_cnt; ++i) {
301 status = normalize_route_uri(acc->pool, &acc->cfg.proxy[i]);
302 if (status != PJ_SUCCESS)
303 return status;
304 }
305
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000306 status = initialize_acc(id);
307 if (status != PJ_SUCCESS) {
308 pjsua_perror(THIS_FILE, "Error adding account", status);
Benny Prijonoc91ed8d2008-07-13 12:24:55 +0000309 pj_pool_release(acc->pool);
310 acc->pool = NULL;
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000311 PJSUA_UNLOCK();
312 return status;
313 }
314
315 if (is_default)
316 pjsua_var.default_acc = id;
317
318 if (p_acc_id)
319 *p_acc_id = id;
320
321 pjsua_var.acc_cnt++;
322
323 PJSUA_UNLOCK();
324
325 PJ_LOG(4,(THIS_FILE, "Account %.*s added with id %d",
326 (int)cfg->id.slen, cfg->id.ptr, id));
327
328 /* If accounts has registration enabled, start registration */
329 if (pjsua_var.acc[id].cfg.reg_uri.slen)
330 pjsua_acc_set_registration(id, PJ_TRUE);
Benny Prijono4dd961b2009-10-26 11:21:37 +0000331 else {
332 /* Otherwise subscribe to MWI, if it's enabled */
333 if (pjsua_var.acc[id].cfg.mwi_enabled)
334 pjsua_start_mwi(&pjsua_var.acc[id]);
335 }
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000336
337 return PJ_SUCCESS;
338}
339
340
341/*
342 * Add local account
343 */
344PJ_DEF(pj_status_t) pjsua_acc_add_local( pjsua_transport_id tid,
345 pj_bool_t is_default,
346 pjsua_acc_id *p_acc_id)
347{
348 pjsua_acc_config cfg;
Benny Prijono62c5c5b2007-01-13 23:22:40 +0000349 pjsua_transport_data *t = &pjsua_var.tpdata[tid];
Benny Prijonod0bd4982007-12-02 15:40:52 +0000350 const char *beginquote, *endquote;
351 char transport_param[32];
Benny Prijonoe85bc412006-07-29 20:29:24 +0000352 char uri[PJSIP_MAX_URL_SIZE];
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000353
Benny Prijonoe93e2872006-06-28 16:46:49 +0000354 /* ID must be valid */
Benny Prijonoa1e69682007-05-11 15:14:34 +0000355 PJ_ASSERT_RETURN(tid>=0 && tid<(int)PJ_ARRAY_SIZE(pjsua_var.tpdata),
356 PJ_EINVAL);
Benny Prijonoe93e2872006-06-28 16:46:49 +0000357
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000358 /* Transport must be valid */
Benny Prijonoe93e2872006-06-28 16:46:49 +0000359 PJ_ASSERT_RETURN(t->data.ptr != NULL, PJ_EINVAL);
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000360
361 pjsua_acc_config_default(&cfg);
362
Benny Prijono093d3022006-09-24 00:07:11 +0000363 /* Lower the priority of local account */
364 --cfg.priority;
365
Benny Prijonod0bd4982007-12-02 15:40:52 +0000366 /* Enclose IPv6 address in square brackets */
367 if (t->type & PJSIP_TRANSPORT_IPV6) {
368 beginquote = "[";
369 endquote = "]";
370 } else {
371 beginquote = endquote = "";
372 }
373
374 /* Don't add transport parameter if it's UDP */
Benny Prijono4c82c1e2008-10-16 08:14:51 +0000375 if (t->type!=PJSIP_TRANSPORT_UDP && t->type!=PJSIP_TRANSPORT_UDP6) {
Benny Prijonod0bd4982007-12-02 15:40:52 +0000376 pj_ansi_snprintf(transport_param, sizeof(transport_param),
377 ";transport=%s",
378 pjsip_transport_get_type_name(t->type));
379 } else {
380 transport_param[0] = '\0';
381 }
382
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000383 /* Build URI for the account */
Benny Prijonoe85bc412006-07-29 20:29:24 +0000384 pj_ansi_snprintf(uri, PJSIP_MAX_URL_SIZE,
Benny Prijonod0bd4982007-12-02 15:40:52 +0000385 "<sip:%s%.*s%s:%d%s>",
386 beginquote,
Benny Prijonoe85bc412006-07-29 20:29:24 +0000387 (int)t->local_name.host.slen,
388 t->local_name.host.ptr,
Benny Prijonod0bd4982007-12-02 15:40:52 +0000389 endquote,
Benny Prijonoe85bc412006-07-29 20:29:24 +0000390 t->local_name.port,
Benny Prijonod0bd4982007-12-02 15:40:52 +0000391 transport_param);
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000392
393 cfg.id = pj_str(uri);
394
395 return pjsua_acc_add(&cfg, is_default, p_acc_id);
396}
397
398
399/*
Benny Prijono705e7842008-07-21 18:12:51 +0000400 * Set arbitrary data to be associated with the account.
401 */
402PJ_DEF(pj_status_t) pjsua_acc_set_user_data(pjsua_acc_id acc_id,
403 void *user_data)
404{
405 PJ_ASSERT_RETURN(acc_id>=0 && acc_id<(int)PJ_ARRAY_SIZE(pjsua_var.acc),
406 PJ_EINVAL);
407 PJ_ASSERT_RETURN(pjsua_var.acc[acc_id].valid, PJ_EINVALIDOP);
408
409 PJSUA_LOCK();
410
411 pjsua_var.acc[acc_id].cfg.user_data = user_data;
412
413 PJSUA_UNLOCK();
414
415 return PJ_SUCCESS;
416}
417
418
419/*
420 * Retrieve arbitrary data associated with the account.
421 */
422PJ_DEF(void*) pjsua_acc_get_user_data(pjsua_acc_id acc_id)
423{
424 PJ_ASSERT_RETURN(acc_id>=0 && acc_id<(int)PJ_ARRAY_SIZE(pjsua_var.acc),
425 NULL);
426 PJ_ASSERT_RETURN(pjsua_var.acc[acc_id].valid, NULL);
427
428 return pjsua_var.acc[acc_id].cfg.user_data;
429}
430
431
432/*
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000433 * Delete account.
434 */
435PJ_DEF(pj_status_t) pjsua_acc_del(pjsua_acc_id acc_id)
436{
Benny Prijono093d3022006-09-24 00:07:11 +0000437 unsigned i;
438
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000439 PJ_ASSERT_RETURN(acc_id>=0 && acc_id<(int)PJ_ARRAY_SIZE(pjsua_var.acc),
440 PJ_EINVAL);
441 PJ_ASSERT_RETURN(pjsua_var.acc[acc_id].valid, PJ_EINVALIDOP);
442
443 PJSUA_LOCK();
444
445 /* Delete registration */
Benny Prijono922933b2007-01-21 16:23:56 +0000446 if (pjsua_var.acc[acc_id].regc != NULL) {
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000447 pjsua_acc_set_registration(acc_id, PJ_FALSE);
Benny Prijonoe68e99f2007-06-06 00:28:10 +0000448 if (pjsua_var.acc[acc_id].regc) {
449 pjsip_regc_destroy(pjsua_var.acc[acc_id].regc);
450 }
Benny Prijono922933b2007-01-21 16:23:56 +0000451 pjsua_var.acc[acc_id].regc = NULL;
452 }
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000453
454 /* Delete server presence subscription */
455 pjsua_pres_delete_acc(acc_id);
456
Benny Prijonoc91ed8d2008-07-13 12:24:55 +0000457 /* Release account pool */
458 if (pjsua_var.acc[acc_id].pool) {
459 pj_pool_release(pjsua_var.acc[acc_id].pool);
460 pjsua_var.acc[acc_id].pool = NULL;
461 }
462
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000463 /* Invalidate */
464 pjsua_var.acc[acc_id].valid = PJ_FALSE;
Benny Prijono978de6e2008-09-15 14:56:05 +0000465 pjsua_var.acc[acc_id].contact.slen = 0;
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000466
Benny Prijono093d3022006-09-24 00:07:11 +0000467 /* Remove from array */
468 for (i=0; i<pjsua_var.acc_cnt; ++i) {
469 if (pjsua_var.acc_ids[i] == acc_id)
470 break;
471 }
472 if (i != pjsua_var.acc_cnt) {
473 pj_array_erase(pjsua_var.acc_ids, sizeof(pjsua_var.acc_ids[0]),
474 pjsua_var.acc_cnt, i);
475 --pjsua_var.acc_cnt;
476 }
477
Benny Prijono62c5c5b2007-01-13 23:22:40 +0000478 /* Leave the calls intact, as I don't think calls need to
479 * access account once it's created
480 */
481
Benny Prijonofb2b3652007-06-28 07:15:03 +0000482 /* Update default account */
483 if (pjsua_var.default_acc == acc_id)
484 pjsua_var.default_acc = 0;
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000485
486 PJSUA_UNLOCK();
487
488 PJ_LOG(4,(THIS_FILE, "Account id %d deleted", acc_id));
489
490 return PJ_SUCCESS;
491}
492
493
494/*
495 * Modify account information.
496 */
497PJ_DEF(pj_status_t) pjsua_acc_modify( pjsua_acc_id acc_id,
498 const pjsua_acc_config *cfg)
499{
500 PJ_TODO(pjsua_acc_modify);
Benny Prijonoc570f2d2006-07-18 00:33:02 +0000501 PJ_UNUSED_ARG(acc_id);
502 PJ_UNUSED_ARG(cfg);
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000503 return PJ_EINVALIDOP;
504}
505
506
507/*
508 * Modify account's presence status to be advertised to remote/presence
509 * subscribers.
510 */
511PJ_DEF(pj_status_t) pjsua_acc_set_online_status( pjsua_acc_id acc_id,
512 pj_bool_t is_online)
513{
514 PJ_ASSERT_RETURN(acc_id>=0 && acc_id<(int)PJ_ARRAY_SIZE(pjsua_var.acc),
515 PJ_EINVAL);
516 PJ_ASSERT_RETURN(pjsua_var.acc[acc_id].valid, PJ_EINVALIDOP);
517
518 pjsua_var.acc[acc_id].online_status = is_online;
Benny Prijono4461c7d2007-08-25 13:36:15 +0000519 pj_bzero(&pjsua_var.acc[acc_id].rpid, sizeof(pjrpid_element));
520 pjsua_pres_update_acc(acc_id, PJ_FALSE);
521 return PJ_SUCCESS;
522}
523
524
525/*
526 * Set online status with extended information
527 */
528PJ_DEF(pj_status_t) pjsua_acc_set_online_status2( pjsua_acc_id acc_id,
529 pj_bool_t is_online,
530 const pjrpid_element *pr)
531{
532 PJ_ASSERT_RETURN(acc_id>=0 && acc_id<(int)PJ_ARRAY_SIZE(pjsua_var.acc),
533 PJ_EINVAL);
534 PJ_ASSERT_RETURN(pjsua_var.acc[acc_id].valid, PJ_EINVALIDOP);
535
Benny Prijonoc91ed8d2008-07-13 12:24:55 +0000536 PJSUA_LOCK();
Benny Prijono4461c7d2007-08-25 13:36:15 +0000537 pjsua_var.acc[acc_id].online_status = is_online;
Benny Prijonoc91ed8d2008-07-13 12:24:55 +0000538 pjrpid_element_dup(pjsua_var.acc[acc_id].pool, &pjsua_var.acc[acc_id].rpid, pr);
539 PJSUA_UNLOCK();
540
Benny Prijono4461c7d2007-08-25 13:36:15 +0000541 pjsua_pres_update_acc(acc_id, PJ_TRUE);
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000542 return PJ_SUCCESS;
543}
544
Benny Prijono7f630432008-09-24 16:52:41 +0000545/* Check if IP is private IP address */
546static pj_bool_t is_private_ip(const pj_str_t *addr)
547{
548 const pj_str_t private_net[] =
549 {
550 { "10.", 3 },
551 { "127.", 4 },
552 { "172.16.", 7 },
553 { "192.168.", 8 }
554 };
555 unsigned i;
556
557 for (i=0; i<PJ_ARRAY_SIZE(private_net); ++i) {
558 if (pj_strncmp(addr, &private_net[i], private_net[i].slen)==0)
559 return PJ_TRUE;
560 }
561
562 return PJ_FALSE;
563}
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000564
Benny Prijono15b02302007-09-27 14:07:07 +0000565/* Update NAT address from the REGISTER response */
566static pj_bool_t acc_check_nat_addr(pjsua_acc *acc,
567 struct pjsip_regc_cbparam *param)
568{
569 pjsip_transport *tp;
570 const pj_str_t *via_addr;
Benny Prijonoe8554ef2008-03-22 09:33:52 +0000571 pj_pool_t *pool;
Benny Prijono15b02302007-09-27 14:07:07 +0000572 int rport;
Benny Prijonoe8554ef2008-03-22 09:33:52 +0000573 pjsip_sip_uri *uri;
Benny Prijono15b02302007-09-27 14:07:07 +0000574 pjsip_via_hdr *via;
Benny Prijono84d24932009-06-04 15:51:39 +0000575 pj_sockaddr contact_addr;
576 pj_sockaddr recv_addr;
577 pj_status_t status;
578 pj_bool_t matched;
Benny Prijono7f630432008-09-24 16:52:41 +0000579 pj_str_t srv_ip;
Nanang Izzuddin5af37ff2009-08-05 18:41:23 +0000580 pjsip_contact_hdr *contact_hdr;
581 const pj_str_t STR_CONTACT = { "Contact", 7 };
Benny Prijono15b02302007-09-27 14:07:07 +0000582
583 tp = param->rdata->tp_info.transport;
584
585 /* Only update if account is configured to auto-update */
Benny Prijonoe8554ef2008-03-22 09:33:52 +0000586 if (acc->cfg.allow_contact_rewrite == PJ_FALSE)
Benny Prijono15b02302007-09-27 14:07:07 +0000587 return PJ_FALSE;
588
Benny Prijonoe8554ef2008-03-22 09:33:52 +0000589#if 0
590 // Always update
591 // See http://lists.pjsip.org/pipermail/pjsip_lists.pjsip.org/2008-March/002178.html
Benny Prijono15b02302007-09-27 14:07:07 +0000592
Benny Prijonoe8554ef2008-03-22 09:33:52 +0000593 /* For UDP, only update if STUN is enabled (for now).
594 * For TCP/TLS, always check.
595 */
596 if ((tp->key.type == PJSIP_TRANSPORT_UDP &&
597 (pjsua_var.ua_cfg.stun_domain.slen != 0 ||
598 (pjsua_var.ua_cfg.stun_host.slen != 0)) ||
599 (tp->key.type == PJSIP_TRANSPORT_TCP) ||
600 (tp->key.type == PJSIP_TRANSPORT_TLS))
Benny Prijono15b02302007-09-27 14:07:07 +0000601 {
Benny Prijonoe8554ef2008-03-22 09:33:52 +0000602 /* Yes we will check */
603 } else {
Benny Prijono15b02302007-09-27 14:07:07 +0000604 return PJ_FALSE;
605 }
Benny Prijonoe8554ef2008-03-22 09:33:52 +0000606#endif
Benny Prijono15b02302007-09-27 14:07:07 +0000607
608 /* Get the received and rport info */
609 via = param->rdata->msg_info.via;
610 if (via->rport_param < 1) {
611 /* Remote doesn't support rport */
612 rport = via->sent_by.port;
Benny Prijono24a21852008-04-14 04:04:30 +0000613 if (rport==0) {
614 pjsip_transport_type_e tp_type;
615 tp_type = (pjsip_transport_type_e) tp->key.type;
616 rport = pjsip_transport_get_default_port_for_type(tp_type);
617 }
Benny Prijono15b02302007-09-27 14:07:07 +0000618 } else
619 rport = via->rport_param;
620
621 if (via->recvd_param.slen != 0)
622 via_addr = &via->recvd_param;
623 else
624 via_addr = &via->sent_by.host;
625
Benny Prijonoe8554ef2008-03-22 09:33:52 +0000626 /* Compare received and rport with the URI in our registration */
627 pool = pjsua_pool_create("tmp", 512, 512);
Nanang Izzuddin5af37ff2009-08-05 18:41:23 +0000628 contact_hdr = (pjsip_contact_hdr*)
629 pjsip_parse_hdr(pool, &STR_CONTACT, acc->contact.ptr,
630 acc->contact.slen, NULL);
631 pj_assert(contact_hdr != NULL);
632 uri = (pjsip_sip_uri*) contact_hdr->uri;
Benny Prijonoe8554ef2008-03-22 09:33:52 +0000633 pj_assert(uri != NULL);
Benny Prijono24a21852008-04-14 04:04:30 +0000634 uri = (pjsip_sip_uri*) pjsip_uri_get_uri(uri);
Benny Prijonoe8554ef2008-03-22 09:33:52 +0000635
Benny Prijono24a21852008-04-14 04:04:30 +0000636 if (uri->port == 0) {
637 pjsip_transport_type_e tp_type;
638 tp_type = (pjsip_transport_type_e) tp->key.type;
639 uri->port = pjsip_transport_get_default_port_for_type(tp_type);
640 }
Benny Prijonoe8554ef2008-03-22 09:33:52 +0000641
Benny Prijono84d24932009-06-04 15:51:39 +0000642 /* Convert IP address strings into sockaddr for comparison.
643 * (http://trac.pjsip.org/repos/ticket/863)
644 */
645 status = pj_sockaddr_parse(pj_AF_UNSPEC(), 0, &uri->host,
646 &contact_addr);
647 if (status == PJ_SUCCESS)
648 status = pj_sockaddr_parse(pj_AF_UNSPEC(), 0, via_addr,
649 &recv_addr);
650 if (status == PJ_SUCCESS) {
651 /* Compare the addresses as sockaddr according to the ticket above */
652 matched = (uri->port == rport &&
653 pj_sockaddr_cmp(&contact_addr, &recv_addr)==0);
654 } else {
655 /* Compare the addresses as string, as before */
656 matched = (uri->port == rport &&
657 pj_stricmp(&uri->host, via_addr)==0);
658 }
659
660 if (matched) {
Benny Prijono15b02302007-09-27 14:07:07 +0000661 /* Address doesn't change */
Benny Prijonoe8554ef2008-03-22 09:33:52 +0000662 pj_pool_release(pool);
Benny Prijono15b02302007-09-27 14:07:07 +0000663 return PJ_FALSE;
664 }
665
Benny Prijono7f630432008-09-24 16:52:41 +0000666 /* Get server IP */
667 srv_ip = pj_str(param->rdata->pkt_info.src_name);
668
Benny Prijono15b02302007-09-27 14:07:07 +0000669 /* At this point we've detected that the address as seen by registrar.
670 * has changed.
671 */
Benny Prijono7f630432008-09-24 16:52:41 +0000672
673 /* Do not switch if both Contact and server's IP address are
674 * public but response contains private IP. A NAT in the middle
Benny Prijono44e42e12009-06-03 08:37:24 +0000675 * might have messed up with the SIP packets. See:
676 * http://trac.pjsip.org/repos/ticket/643
Benny Prijono247921b2008-09-26 22:06:11 +0000677 *
678 * This exception can be disabled by setting allow_contact_rewrite
679 * to 2. In this case, the switch will always be done whenever there
680 * is difference in the IP address in the response.
Benny Prijono7f630432008-09-24 16:52:41 +0000681 */
Benny Prijono247921b2008-09-26 22:06:11 +0000682 if (acc->cfg.allow_contact_rewrite != 2 && !is_private_ip(&uri->host) &&
683 !is_private_ip(&srv_ip) && is_private_ip(via_addr))
Benny Prijono7f630432008-09-24 16:52:41 +0000684 {
685 /* Don't switch */
686 pj_pool_release(pool);
687 return PJ_FALSE;
688 }
689
Benny Prijono4f933762009-11-10 03:45:42 +0000690 /* Also don't switch if only the port number part is different, and
691 * the Via received address is private.
692 * See http://trac.pjsip.org/repos/ticket/864
693 */
694 if (acc->cfg.allow_contact_rewrite != 2 &&
695 pj_sockaddr_cmp(&contact_addr, &recv_addr)==0 &&
696 is_private_ip(via_addr))
697 {
698 /* Don't switch */
699 pj_pool_release(pool);
700 return PJ_FALSE;
701 }
702
Benny Prijono15b02302007-09-27 14:07:07 +0000703 PJ_LOG(3,(THIS_FILE, "IP address change detected for account %d "
704 "(%.*s:%d --> %.*s:%d). Updating registration..",
705 acc->index,
Benny Prijonoe8554ef2008-03-22 09:33:52 +0000706 (int)uri->host.slen,
707 uri->host.ptr,
708 uri->port,
Benny Prijono15b02302007-09-27 14:07:07 +0000709 (int)via_addr->slen,
710 via_addr->ptr,
711 rport));
712
713 /* Unregister current contact */
714 pjsua_acc_set_registration(acc->index, PJ_FALSE);
715 if (acc->regc != NULL) {
716 pjsip_regc_destroy(acc->regc);
717 acc->regc = NULL;
Benny Prijonoddaaf6a2008-04-15 10:37:19 +0000718 acc->contact.slen = 0;
Benny Prijono15b02302007-09-27 14:07:07 +0000719 }
720
Benny Prijonoe8554ef2008-03-22 09:33:52 +0000721 /* Update account's Contact header */
722 {
723 char *tmp;
Benny Prijono8972bf02009-04-05 18:30:45 +0000724 const char *beginquote, *endquote;
Benny Prijonoe8554ef2008-03-22 09:33:52 +0000725 int len;
726
Benny Prijono8972bf02009-04-05 18:30:45 +0000727 /* Enclose IPv6 address in square brackets */
728 if (tp->key.type & PJSIP_TRANSPORT_IPV6) {
729 beginquote = "[";
730 endquote = "]";
731 } else {
732 beginquote = endquote = "";
733 }
734
Benny Prijono24a21852008-04-14 04:04:30 +0000735 tmp = (char*) pj_pool_alloc(pool, PJSIP_MAX_URL_SIZE);
Benny Prijonoe8554ef2008-03-22 09:33:52 +0000736 len = pj_ansi_snprintf(tmp, PJSIP_MAX_URL_SIZE,
Nanang Izzuddine2c7e852009-08-04 14:36:17 +0000737 "<sip:%.*s%s%s%.*s%s:%d;transport=%s%.*s>%.*s",
Benny Prijonoe8554ef2008-03-22 09:33:52 +0000738 (int)acc->user_part.slen,
739 acc->user_part.ptr,
Benny Prijono83088f32008-04-22 18:33:55 +0000740 (acc->user_part.slen? "@" : ""),
Benny Prijono8972bf02009-04-05 18:30:45 +0000741 beginquote,
Benny Prijonoe8554ef2008-03-22 09:33:52 +0000742 (int)via_addr->slen,
743 via_addr->ptr,
Benny Prijono8972bf02009-04-05 18:30:45 +0000744 endquote,
Benny Prijonoe8554ef2008-03-22 09:33:52 +0000745 rport,
Benny Prijono30fe4852008-12-10 16:54:16 +0000746 tp->type_name,
Nanang Izzuddine2c7e852009-08-04 14:36:17 +0000747 (int)acc->cfg.contact_uri_params.slen,
748 acc->cfg.contact_uri_params.ptr,
Benny Prijono30fe4852008-12-10 16:54:16 +0000749 (int)acc->cfg.contact_params.slen,
750 acc->cfg.contact_params.ptr);
Benny Prijonoe8554ef2008-03-22 09:33:52 +0000751 if (len < 1) {
752 PJ_LOG(1,(THIS_FILE, "URI too long"));
753 pj_pool_release(pool);
754 return PJ_FALSE;
755 }
Benny Prijono3d9b4b62008-07-14 17:55:40 +0000756 pj_strdup2_with_null(acc->pool, &acc->contact, tmp);
Benny Prijonoe8554ef2008-03-22 09:33:52 +0000757 }
758
Benny Prijono4f933762009-11-10 03:45:42 +0000759 /* Always update, by http://trac.pjsip.org/repos/ticket/864. */
760 pj_strdup_with_null(tp->pool, &tp->local_name.host, via_addr);
761 tp->local_name.port = rport;
Benny Prijono15b02302007-09-27 14:07:07 +0000762
763 /* Perform new registration */
764 pjsua_acc_set_registration(acc->index, PJ_TRUE);
765
Benny Prijonoe8554ef2008-03-22 09:33:52 +0000766 pj_pool_release(pool);
767
Benny Prijono15b02302007-09-27 14:07:07 +0000768 return PJ_TRUE;
769}
770
Benny Prijonoa2a2d412007-10-18 05:54:02 +0000771/* Check and update Service-Route header */
772void update_service_route(pjsua_acc *acc, pjsip_rx_data *rdata)
773{
774 pjsip_generic_string_hdr *hsr = NULL;
775 pjsip_route_hdr *hr, *h;
776 const pj_str_t HNAME = { "Service-Route", 13 };
777 const pj_str_t HROUTE = { "Route", 5 };
778 pjsip_uri *uri[PJSUA_ACC_MAX_PROXIES];
Benny Prijonof020ab22007-10-18 15:28:33 +0000779 unsigned i, uri_cnt = 0, rcnt;
Benny Prijonoa2a2d412007-10-18 05:54:02 +0000780
781 /* Find and parse Service-Route headers */
782 for (;;) {
783 char saved;
784 int parsed_len;
785
786 /* Find Service-Route header */
787 hsr = (pjsip_generic_string_hdr*)
788 pjsip_msg_find_hdr_by_name(rdata->msg_info.msg, &HNAME, hsr);
789 if (!hsr)
790 break;
791
792 /* Parse as Route header since the syntax is similar. This may
793 * return more than one headers.
794 */
795 saved = hsr->hvalue.ptr[hsr->hvalue.slen];
796 hsr->hvalue.ptr[hsr->hvalue.slen] = '\0';
797 hr = (pjsip_route_hdr*)
798 pjsip_parse_hdr(rdata->tp_info.pool, &HROUTE, hsr->hvalue.ptr,
799 hsr->hvalue.slen, &parsed_len);
800 hsr->hvalue.ptr[hsr->hvalue.slen] = saved;
801
802 if (hr == NULL) {
803 /* Error */
804 PJ_LOG(1,(THIS_FILE, "Error parsing Service-Route header"));
805 return;
806 }
807
808 /* Save each URI in the result */
809 h = hr;
810 do {
811 if (!PJSIP_URI_SCHEME_IS_SIP(h->name_addr.uri) &&
812 !PJSIP_URI_SCHEME_IS_SIPS(h->name_addr.uri))
813 {
814 PJ_LOG(1,(THIS_FILE,"Error: non SIP URI in Service-Route: %.*s",
815 (int)hsr->hvalue.slen, hsr->hvalue.ptr));
816 return;
817 }
818
819 uri[uri_cnt++] = h->name_addr.uri;
820 h = h->next;
821 } while (h != hr && uri_cnt != PJ_ARRAY_SIZE(uri));
822
823 if (h != hr) {
824 PJ_LOG(1,(THIS_FILE, "Error: too many Service-Route headers"));
825 return;
826 }
827
828 /* Prepare to find next Service-Route header */
829 hsr = hsr->next;
830 if ((void*)hsr == (void*)&rdata->msg_info.msg->hdr)
831 break;
832 }
833
834 if (uri_cnt == 0)
835 return;
836
837 /*
838 * Update account's route set
839 */
840
841 /* First remove all routes which are not the outbound proxies */
Benny Prijonof020ab22007-10-18 15:28:33 +0000842 rcnt = pj_list_size(&acc->route_set);
Benny Prijono2568c742007-11-03 09:29:52 +0000843 if (rcnt != pjsua_var.ua_cfg.outbound_proxy_cnt + acc->cfg.proxy_cnt) {
844 for (i=pjsua_var.ua_cfg.outbound_proxy_cnt + acc->cfg.proxy_cnt,
845 hr=acc->route_set.prev;
Benny Prijonof020ab22007-10-18 15:28:33 +0000846 i<rcnt;
847 ++i)
848 {
849 pjsip_route_hdr *prev = hr->prev;
850 pj_list_erase(hr);
851 hr = prev;
852 }
853 }
Benny Prijonoa2a2d412007-10-18 05:54:02 +0000854
855 /* Then append the Service-Route URIs */
856 for (i=0; i<uri_cnt; ++i) {
Benny Prijonoc91ed8d2008-07-13 12:24:55 +0000857 hr = pjsip_route_hdr_create(acc->pool);
858 hr->name_addr.uri = (pjsip_uri*)pjsip_uri_clone(acc->pool, uri[i]);
Benny Prijonoa2a2d412007-10-18 05:54:02 +0000859 pj_list_push_back(&acc->route_set, hr);
860 }
861
862 /* Done */
863
864 PJ_LOG(4,(THIS_FILE, "Service-Route updated for acc %d with %d URI(s)",
865 acc->index, uri_cnt));
866}
867
Benny Prijonobddef2c2007-10-31 13:28:08 +0000868
869/* Keep alive timer callback */
870static void keep_alive_timer_cb(pj_timer_heap_t *th, pj_timer_entry *te)
871{
872 pjsua_acc *acc;
873 pjsip_tpselector tp_sel;
874 pj_time_val delay;
Benny Prijonodb4eb812007-12-09 05:30:47 +0000875 char addrtxt[PJ_INET6_ADDRSTRLEN];
Benny Prijonobddef2c2007-10-31 13:28:08 +0000876 pj_status_t status;
877
878 PJ_UNUSED_ARG(th);
879
880 PJSUA_LOCK();
881
882 te->id = PJ_FALSE;
883
884 acc = (pjsua_acc*) te->user_data;
885
886 /* Select the transport to send the packet */
887 pj_bzero(&tp_sel, sizeof(tp_sel));
888 tp_sel.type = PJSIP_TPSELECTOR_TRANSPORT;
889 tp_sel.u.transport = acc->ka_transport;
890
891 PJ_LOG(5,(THIS_FILE,
Benny Prijonodb4eb812007-12-09 05:30:47 +0000892 "Sending %d bytes keep-alive packet for acc %d to %s",
Benny Prijonobddef2c2007-10-31 13:28:08 +0000893 acc->cfg.ka_data.slen, acc->index,
Benny Prijonodb4eb812007-12-09 05:30:47 +0000894 pj_sockaddr_print(&acc->ka_target, addrtxt, sizeof(addrtxt),3)));
Benny Prijonobddef2c2007-10-31 13:28:08 +0000895
896 /* Send raw packet */
897 status = pjsip_tpmgr_send_raw(pjsip_endpt_get_tpmgr(pjsua_var.endpt),
898 PJSIP_TRANSPORT_UDP, &tp_sel,
899 NULL, acc->cfg.ka_data.ptr,
900 acc->cfg.ka_data.slen,
901 &acc->ka_target, acc->ka_target_len,
902 NULL, NULL);
903
904 if (status != PJ_SUCCESS && status != PJ_EPENDING) {
905 pjsua_perror(THIS_FILE, "Error sending keep-alive packet", status);
906 }
907
908 /* Reschedule next timer */
909 delay.sec = acc->cfg.ka_interval;
910 delay.msec = 0;
911 status = pjsip_endpt_schedule_timer(pjsua_var.endpt, te, &delay);
912 if (status == PJ_SUCCESS) {
913 te->id = PJ_TRUE;
914 } else {
915 pjsua_perror(THIS_FILE, "Error starting keep-alive timer", status);
916 }
917
918 PJSUA_UNLOCK();
919}
920
921
922/* Update keep-alive for the account */
923static void update_keep_alive(pjsua_acc *acc, pj_bool_t start,
924 struct pjsip_regc_cbparam *param)
925{
926 /* In all cases, stop keep-alive timer if it's running. */
927 if (acc->ka_timer.id) {
928 pjsip_endpt_cancel_timer(pjsua_var.endpt, &acc->ka_timer);
929 acc->ka_timer.id = PJ_FALSE;
930
931 pjsip_transport_dec_ref(acc->ka_transport);
932 acc->ka_transport = NULL;
933 }
934
935 if (start) {
936 pj_time_val delay;
937 pj_status_t status;
938
939 /* Only do keep-alive if:
Benny Prijonobddef2c2007-10-31 13:28:08 +0000940 * - ka_interval is not zero in the account, and
941 * - transport is UDP.
Benny Prijono7fff9f92008-04-04 10:50:21 +0000942 *
943 * Previously we only enabled keep-alive when STUN is enabled, since
944 * we thought that keep-alive is only needed in Internet situation.
945 * But it has been discovered that Windows Firewall on WinXP also
946 * needs to be kept-alive, otherwise incoming packets will be dropped.
947 * So because of this, now keep-alive is always enabled for UDP,
948 * regardless of whether STUN is enabled or not.
949 *
950 * Note that this applies only for UDP. For TCP/TLS, the keep-alive
951 * is done by the transport layer.
Benny Prijonobddef2c2007-10-31 13:28:08 +0000952 */
Benny Prijono7fff9f92008-04-04 10:50:21 +0000953 if (/*pjsua_var.stun_srv.ipv4.sin_family == 0 ||*/
Benny Prijonobddef2c2007-10-31 13:28:08 +0000954 acc->cfg.ka_interval == 0 ||
955 param->rdata->tp_info.transport->key.type != PJSIP_TRANSPORT_UDP)
956 {
957 /* Keep alive is not necessary */
958 return;
959 }
960
961 /* Save transport and destination address. */
962 acc->ka_transport = param->rdata->tp_info.transport;
963 pjsip_transport_add_ref(acc->ka_transport);
964 pj_memcpy(&acc->ka_target, &param->rdata->pkt_info.src_addr,
965 param->rdata->pkt_info.src_addr_len);
966 acc->ka_target_len = param->rdata->pkt_info.src_addr_len;
967
968 /* Setup and start the timer */
969 acc->ka_timer.cb = &keep_alive_timer_cb;
970 acc->ka_timer.user_data = (void*)acc;
971
972 delay.sec = acc->cfg.ka_interval;
973 delay.msec = 0;
974 status = pjsip_endpt_schedule_timer(pjsua_var.endpt, &acc->ka_timer,
975 &delay);
976 if (status == PJ_SUCCESS) {
977 acc->ka_timer.id = PJ_TRUE;
978 PJ_LOG(4,(THIS_FILE, "Keep-alive timer started for acc %d, "
979 "destination:%s:%d, interval:%ds",
980 acc->index,
981 param->rdata->pkt_info.src_name,
982 param->rdata->pkt_info.src_port,
983 acc->cfg.ka_interval));
984 } else {
985 acc->ka_timer.id = PJ_FALSE;
986 pjsip_transport_dec_ref(acc->ka_transport);
987 acc->ka_transport = NULL;
988 pjsua_perror(THIS_FILE, "Error starting keep-alive timer", status);
989 }
990 }
991}
992
993
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000994/*
995 * This callback is called by pjsip_regc when outgoing register
996 * request has completed.
997 */
998static void regc_cb(struct pjsip_regc_cbparam *param)
999{
1000
Benny Prijonoa1e69682007-05-11 15:14:34 +00001001 pjsua_acc *acc = (pjsua_acc*) param->token;
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001002
Benny Prijono15b02302007-09-27 14:07:07 +00001003 if (param->regc != acc->regc)
1004 return;
1005
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001006 PJSUA_LOCK();
1007
1008 /*
1009 * Print registration status.
1010 */
1011 if (param->status!=PJ_SUCCESS) {
1012 pjsua_perror(THIS_FILE, "SIP registration error",
1013 param->status);
1014 pjsip_regc_destroy(acc->regc);
1015 acc->regc = NULL;
Benny Prijonoddaaf6a2008-04-15 10:37:19 +00001016 acc->contact.slen = 0;
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001017
Benny Prijonobddef2c2007-10-31 13:28:08 +00001018 /* Stop keep-alive timer if any. */
1019 update_keep_alive(acc, PJ_FALSE, NULL);
1020
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001021 } else if (param->code < 0 || param->code >= 300) {
1022 PJ_LOG(2, (THIS_FILE, "SIP registration failed, status=%d (%.*s)",
1023 param->code,
1024 (int)param->reason.slen, param->reason.ptr));
1025 pjsip_regc_destroy(acc->regc);
1026 acc->regc = NULL;
Benny Prijonoddaaf6a2008-04-15 10:37:19 +00001027 acc->contact.slen = 0;
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001028
Benny Prijonobddef2c2007-10-31 13:28:08 +00001029 /* Stop keep-alive timer if any. */
1030 update_keep_alive(acc, PJ_FALSE, NULL);
1031
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001032 } else if (PJSIP_IS_STATUS_IN_CLASS(param->code, 200)) {
1033
1034 if (param->expiration < 1) {
1035 pjsip_regc_destroy(acc->regc);
1036 acc->regc = NULL;
Benny Prijonoddaaf6a2008-04-15 10:37:19 +00001037 acc->contact.slen = 0;
Benny Prijonobddef2c2007-10-31 13:28:08 +00001038
1039 /* Stop keep-alive timer if any. */
1040 update_keep_alive(acc, PJ_FALSE, NULL);
1041
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001042 PJ_LOG(3,(THIS_FILE, "%s: unregistration success",
1043 pjsua_var.acc[acc->index].cfg.id.ptr));
1044 } else {
Benny Prijono15b02302007-09-27 14:07:07 +00001045 /* Check NAT bound address */
1046 if (acc_check_nat_addr(acc, param)) {
1047 /* Update address, don't notify application yet */
1048 PJSUA_UNLOCK();
1049 return;
1050 }
1051
Benny Prijonoa2a2d412007-10-18 05:54:02 +00001052 /* Check and update Service-Route header */
1053 update_service_route(acc, param->rdata);
1054
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001055 PJ_LOG(3, (THIS_FILE,
1056 "%s: registration success, status=%d (%.*s), "
1057 "will re-register in %d seconds",
1058 pjsua_var.acc[acc->index].cfg.id.ptr,
1059 param->code,
1060 (int)param->reason.slen, param->reason.ptr,
1061 param->expiration));
Benny Prijono8b6834f2007-02-24 13:29:22 +00001062
Benny Prijonobddef2c2007-10-31 13:28:08 +00001063 /* Start keep-alive timer if necessary. */
1064 update_keep_alive(acc, PJ_TRUE, param);
1065
Benny Prijono8b6834f2007-02-24 13:29:22 +00001066 /* Send initial PUBLISH if it is enabled */
1067 if (acc->cfg.publish_enabled && acc->publish_sess==NULL)
1068 pjsua_pres_init_publish_acc(acc->index);
Benny Prijono4dd961b2009-10-26 11:21:37 +00001069
1070 /* Subscribe to MWI, if it's enabled */
1071 if (acc->cfg.mwi_enabled)
1072 pjsua_start_mwi(acc);
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001073 }
1074
1075 } else {
1076 PJ_LOG(4, (THIS_FILE, "SIP registration updated status=%d", param->code));
1077 }
1078
1079 acc->reg_last_err = param->status;
1080 acc->reg_last_code = param->code;
1081
1082 if (pjsua_var.ua_cfg.cb.on_reg_state)
1083 (*pjsua_var.ua_cfg.cb.on_reg_state)(acc->index);
1084
1085 PJSUA_UNLOCK();
1086}
1087
1088
1089/*
1090 * Initialize client registration.
1091 */
1092static pj_status_t pjsua_regc_init(int acc_id)
1093{
1094 pjsua_acc *acc;
Benny Prijonoe1a8bad2006-10-13 17:45:38 +00001095 pj_pool_t *pool;
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001096 pj_status_t status;
1097
Benny Prijono62c5c5b2007-01-13 23:22:40 +00001098 PJ_ASSERT_RETURN(pjsua_acc_is_valid(acc_id), PJ_EINVAL);
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001099 acc = &pjsua_var.acc[acc_id];
1100
1101 if (acc->cfg.reg_uri.slen == 0) {
1102 PJ_LOG(3,(THIS_FILE, "Registrar URI is not specified"));
1103 return PJ_SUCCESS;
1104 }
1105
Benny Prijonoe1a8bad2006-10-13 17:45:38 +00001106 /* Destroy existing session, if any */
1107 if (acc->regc) {
1108 pjsip_regc_destroy(acc->regc);
1109 acc->regc = NULL;
Benny Prijonoddaaf6a2008-04-15 10:37:19 +00001110 acc->contact.slen = 0;
Benny Prijonoe1a8bad2006-10-13 17:45:38 +00001111 }
1112
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001113 /* initialize SIP registration if registrar is configured */
1114
1115 status = pjsip_regc_create( pjsua_var.endpt,
1116 acc, &regc_cb, &acc->regc);
1117
1118 if (status != PJ_SUCCESS) {
1119 pjsua_perror(THIS_FILE, "Unable to create client registration",
1120 status);
1121 return status;
1122 }
1123
Benny Prijono38fb3ea2008-01-02 08:27:03 +00001124 pool = pjsua_pool_create("tmpregc", 512, 512);
Benny Prijonoe8554ef2008-03-22 09:33:52 +00001125
1126 if (acc->contact.slen == 0) {
1127 pj_str_t tmp_contact;
1128
1129 status = pjsua_acc_create_uac_contact( pool, &tmp_contact,
1130 acc_id, &acc->cfg.reg_uri);
1131 if (status != PJ_SUCCESS) {
1132 pjsua_perror(THIS_FILE, "Unable to generate suitable Contact header"
1133 " for registration",
1134 status);
1135 pjsip_regc_destroy(acc->regc);
1136 pj_pool_release(pool);
1137 acc->regc = NULL;
1138 return status;
1139 }
1140
Benny Prijonoc91ed8d2008-07-13 12:24:55 +00001141 pj_strdup_with_null(acc->pool, &acc->contact, &tmp_contact);
Benny Prijonoc570f2d2006-07-18 00:33:02 +00001142 }
1143
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001144 status = pjsip_regc_init( acc->regc,
1145 &acc->cfg.reg_uri,
1146 &acc->cfg.id,
1147 &acc->cfg.id,
Benny Prijonoe8554ef2008-03-22 09:33:52 +00001148 1, &acc->contact,
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001149 acc->cfg.reg_timeout);
1150 if (status != PJ_SUCCESS) {
1151 pjsua_perror(THIS_FILE,
1152 "Client registration initialization error",
1153 status);
Benny Prijono19b29372007-12-05 04:08:40 +00001154 pjsip_regc_destroy(acc->regc);
Benny Prijono38fb3ea2008-01-02 08:27:03 +00001155 pj_pool_release(pool);
Benny Prijono19b29372007-12-05 04:08:40 +00001156 acc->regc = NULL;
Benny Prijonoddaaf6a2008-04-15 10:37:19 +00001157 acc->contact.slen = 0;
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001158 return status;
1159 }
1160
Benny Prijono62c5c5b2007-01-13 23:22:40 +00001161 /* If account is locked to specific transport, then set transport to
1162 * the client registration.
1163 */
1164 if (pjsua_var.acc[acc_id].cfg.transport_id != PJSUA_INVALID_ID) {
1165 pjsip_tpselector tp_sel;
1166
1167 pjsua_init_tpselector(pjsua_var.acc[acc_id].cfg.transport_id, &tp_sel);
1168 pjsip_regc_set_transport(acc->regc, &tp_sel);
1169 }
1170
1171
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001172 /* Set credentials
1173 */
1174 if (acc->cred_cnt) {
1175 pjsip_regc_set_credentials( acc->regc, acc->cred_cnt, acc->cred);
1176 }
1177
Benny Prijono48ab2b72007-11-08 09:24:30 +00001178 /* Set authentication preference */
1179 pjsip_regc_set_prefs(acc->regc, &acc->cfg.auth_pref);
1180
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001181 /* Set route-set
1182 */
1183 if (!pj_list_empty(&acc->route_set)) {
1184 pjsip_regc_set_route_set( acc->regc, &acc->route_set );
1185 }
1186
Benny Prijono8fc6de02006-11-11 21:25:55 +00001187 /* Add other request headers. */
1188 if (pjsua_var.ua_cfg.user_agent.slen) {
1189 pjsip_hdr hdr_list;
1190 const pj_str_t STR_USER_AGENT = { "User-Agent", 10 };
1191 pjsip_generic_string_hdr *h;
1192
Benny Prijono8fc6de02006-11-11 21:25:55 +00001193 pj_list_init(&hdr_list);
1194
1195 h = pjsip_generic_string_hdr_create(pool, &STR_USER_AGENT,
1196 &pjsua_var.ua_cfg.user_agent);
1197 pj_list_push_back(&hdr_list, (pjsip_hdr*)h);
1198
1199 pjsip_regc_add_headers(acc->regc, &hdr_list);
1200 }
1201
Benny Prijono38fb3ea2008-01-02 08:27:03 +00001202 pj_pool_release(pool);
1203
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001204 return PJ_SUCCESS;
1205}
1206
1207
1208/*
1209 * Update registration or perform unregistration.
1210 */
1211PJ_DEF(pj_status_t) pjsua_acc_set_registration( pjsua_acc_id acc_id,
1212 pj_bool_t renew)
1213{
1214 pj_status_t status = 0;
1215 pjsip_tx_data *tdata = 0;
1216
1217 PJ_ASSERT_RETURN(acc_id>=0 && acc_id<(int)PJ_ARRAY_SIZE(pjsua_var.acc),
1218 PJ_EINVAL);
1219 PJ_ASSERT_RETURN(pjsua_var.acc[acc_id].valid, PJ_EINVALIDOP);
1220
1221 PJSUA_LOCK();
1222
1223 if (renew) {
1224 if (pjsua_var.acc[acc_id].regc == NULL) {
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001225 status = pjsua_regc_init(acc_id);
1226 if (status != PJ_SUCCESS) {
1227 pjsua_perror(THIS_FILE, "Unable to create registration",
1228 status);
1229 goto on_return;
1230 }
1231 }
1232 if (!pjsua_var.acc[acc_id].regc) {
1233 status = PJ_EINVALIDOP;
1234 goto on_return;
1235 }
1236
1237 status = pjsip_regc_register(pjsua_var.acc[acc_id].regc, 1,
1238 &tdata);
1239
Benny Prijono28f673a2007-10-15 07:04:59 +00001240 if (0 && status == PJ_SUCCESS && pjsua_var.acc[acc_id].cred_cnt) {
1241 pjsua_acc *acc = &pjsua_var.acc[acc_id];
1242 pjsip_authorization_hdr *h;
1243 char *uri;
1244 int d;
1245
1246 uri = (char*) pj_pool_alloc(tdata->pool, acc->cfg.reg_uri.slen+10);
1247 d = pjsip_uri_print(PJSIP_URI_IN_REQ_URI, tdata->msg->line.req.uri,
1248 uri, acc->cfg.reg_uri.slen+10);
1249 pj_assert(d > 0);
1250
1251 h = pjsip_authorization_hdr_create(tdata->pool);
1252 h->scheme = pj_str("Digest");
1253 h->credential.digest.username = acc->cred[0].username;
1254 h->credential.digest.realm = acc->srv_domain;
1255 h->credential.digest.uri = pj_str(uri);
1256 h->credential.digest.algorithm = pj_str("md5");
1257
1258 pjsip_msg_add_hdr(tdata->msg, (pjsip_hdr*)h);
1259 }
1260
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001261 } else {
1262 if (pjsua_var.acc[acc_id].regc == NULL) {
1263 PJ_LOG(3,(THIS_FILE, "Currently not registered"));
1264 status = PJ_EINVALIDOP;
1265 goto on_return;
1266 }
Benny Prijono166d5022010-02-10 14:24:48 +00001267
1268 pjsua_pres_unpublish(&pjsua_var.acc[acc_id]);
1269
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001270 status = pjsip_regc_unregister(pjsua_var.acc[acc_id].regc, &tdata);
1271 }
1272
Benny Prijono56315612006-07-18 14:39:40 +00001273 if (status == PJ_SUCCESS) {
Benny Prijono8fc6de02006-11-11 21:25:55 +00001274 //pjsua_process_msg_data(tdata, NULL);
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001275 status = pjsip_regc_send( pjsua_var.acc[acc_id].regc, tdata );
Benny Prijono56315612006-07-18 14:39:40 +00001276 }
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001277
1278 if (status != PJ_SUCCESS) {
1279 pjsua_perror(THIS_FILE, "Unable to create/send REGISTER",
1280 status);
1281 } else {
1282 PJ_LOG(3,(THIS_FILE, "%s sent",
1283 (renew? "Registration" : "Unregistration")));
1284 }
1285
1286on_return:
1287 PJSUA_UNLOCK();
1288 return status;
1289}
1290
1291
1292/*
1293 * Get account information.
1294 */
1295PJ_DEF(pj_status_t) pjsua_acc_get_info( pjsua_acc_id acc_id,
1296 pjsua_acc_info *info)
1297{
1298 pjsua_acc *acc = &pjsua_var.acc[acc_id];
1299 pjsua_acc_config *acc_cfg = &pjsua_var.acc[acc_id].cfg;
1300
1301 PJ_ASSERT_RETURN(info != NULL, PJ_EINVAL);
Benny Prijono62c5c5b2007-01-13 23:22:40 +00001302 PJ_ASSERT_RETURN(pjsua_acc_is_valid(acc_id), PJ_EINVAL);
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001303
Benny Prijonoac623b32006-07-03 15:19:31 +00001304 pj_bzero(info, sizeof(pjsua_acc_info));
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001305
1306 PJ_ASSERT_RETURN(acc_id>=0 && acc_id<(int)PJ_ARRAY_SIZE(pjsua_var.acc),
1307 PJ_EINVAL);
1308 PJ_ASSERT_RETURN(pjsua_var.acc[acc_id].valid, PJ_EINVALIDOP);
1309
1310 PJSUA_LOCK();
1311
1312 if (pjsua_var.acc[acc_id].valid == PJ_FALSE) {
1313 PJSUA_UNLOCK();
1314 return PJ_EINVALIDOP;
1315 }
1316
1317 info->id = acc_id;
1318 info->is_default = (pjsua_var.default_acc == acc_id);
1319 info->acc_uri = acc_cfg->id;
1320 info->has_registration = (acc->cfg.reg_uri.slen > 0);
1321 info->online_status = acc->online_status;
Benny Prijono4461c7d2007-08-25 13:36:15 +00001322 pj_memcpy(&info->rpid, &acc->rpid, sizeof(pjrpid_element));
1323 if (info->rpid.note.slen)
1324 info->online_status_text = info->rpid.note;
1325 else if (info->online_status)
1326 info->online_status_text = pj_str("Online");
1327 else
1328 info->online_status_text = pj_str("Offline");
1329
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001330 if (acc->reg_last_err) {
Benny Prijonoba5926a2007-05-02 11:29:37 +00001331 info->status = (pjsip_status_code) acc->reg_last_err;
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001332 pj_strerror(acc->reg_last_err, info->buf_, sizeof(info->buf_));
1333 info->status_text = pj_str(info->buf_);
1334 } else if (acc->reg_last_code) {
Benny Prijono6f979412006-06-15 12:25:46 +00001335 if (info->has_registration) {
Benny Prijonoba5926a2007-05-02 11:29:37 +00001336 info->status = (pjsip_status_code) acc->reg_last_code;
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001337 info->status_text = *pjsip_get_status_text(acc->reg_last_code);
1338 } else {
Benny Prijonoba5926a2007-05-02 11:29:37 +00001339 info->status = (pjsip_status_code) 0;
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001340 info->status_text = pj_str("not registered");
1341 }
1342 } else if (acc->cfg.reg_uri.slen) {
Benny Prijonoba5926a2007-05-02 11:29:37 +00001343 info->status = PJSIP_SC_TRYING;
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001344 info->status_text = pj_str("In Progress");
1345 } else {
Benny Prijonoba5926a2007-05-02 11:29:37 +00001346 info->status = (pjsip_status_code) 0;
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001347 info->status_text = pj_str("does not register");
1348 }
1349
1350 if (acc->regc) {
1351 pjsip_regc_info regc_info;
1352 pjsip_regc_get_info(acc->regc, &regc_info);
1353 info->expires = regc_info.next_reg;
1354 } else {
1355 info->expires = -1;
1356 }
1357
1358 PJSUA_UNLOCK();
1359
1360 return PJ_SUCCESS;
1361
1362}
1363
1364
1365/*
1366 * Enum accounts all account ids.
1367 */
1368PJ_DEF(pj_status_t) pjsua_enum_accs(pjsua_acc_id ids[],
1369 unsigned *count )
1370{
1371 unsigned i, c;
1372
1373 PJ_ASSERT_RETURN(ids && *count, PJ_EINVAL);
1374
1375 PJSUA_LOCK();
1376
1377 for (i=0, c=0; c<*count && i<PJ_ARRAY_SIZE(pjsua_var.acc); ++i) {
1378 if (!pjsua_var.acc[i].valid)
1379 continue;
1380 ids[c] = i;
1381 ++c;
1382 }
1383
1384 *count = c;
1385
1386 PJSUA_UNLOCK();
1387
1388 return PJ_SUCCESS;
1389}
1390
1391
1392/*
1393 * Enum accounts info.
1394 */
1395PJ_DEF(pj_status_t) pjsua_acc_enum_info( pjsua_acc_info info[],
1396 unsigned *count )
1397{
1398 unsigned i, c;
1399
1400 PJ_ASSERT_RETURN(info && *count, PJ_EINVAL);
1401
1402 PJSUA_LOCK();
1403
1404 for (i=0, c=0; c<*count && i<PJ_ARRAY_SIZE(pjsua_var.acc); ++i) {
1405 if (!pjsua_var.acc[i].valid)
1406 continue;
1407
1408 pjsua_acc_get_info(i, &info[c]);
1409 ++c;
1410 }
1411
1412 *count = c;
1413
1414 PJSUA_UNLOCK();
1415
1416 return PJ_SUCCESS;
1417}
1418
1419
1420/*
1421 * This is an internal function to find the most appropriate account to
1422 * used to reach to the specified URL.
1423 */
1424PJ_DEF(pjsua_acc_id) pjsua_acc_find_for_outgoing(const pj_str_t *url)
1425{
1426 pj_str_t tmp;
1427 pjsip_uri *uri;
1428 pjsip_sip_uri *sip_uri;
Benny Prijonoc91ed8d2008-07-13 12:24:55 +00001429 pj_pool_t *tmp_pool;
Benny Prijono093d3022006-09-24 00:07:11 +00001430 unsigned i;
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001431
1432 PJSUA_LOCK();
1433
Benny Prijonoc91ed8d2008-07-13 12:24:55 +00001434 tmp_pool = pjsua_pool_create("tmpacc10", 256, 256);
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001435
Benny Prijonoc91ed8d2008-07-13 12:24:55 +00001436 pj_strdup_with_null(tmp_pool, &tmp, url);
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001437
Benny Prijonoc91ed8d2008-07-13 12:24:55 +00001438 uri = pjsip_parse_uri(tmp_pool, tmp.ptr, tmp.slen, 0);
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001439 if (!uri) {
Benny Prijonoc91ed8d2008-07-13 12:24:55 +00001440 pj_pool_release(tmp_pool);
Benny Prijono093d3022006-09-24 00:07:11 +00001441 PJSUA_UNLOCK();
1442 return pjsua_var.default_acc;
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001443 }
1444
1445 if (!PJSIP_URI_SCHEME_IS_SIP(uri) &&
1446 !PJSIP_URI_SCHEME_IS_SIPS(uri))
1447 {
1448 /* Return the first account with proxy */
Benny Prijono093d3022006-09-24 00:07:11 +00001449 for (i=0; i<PJ_ARRAY_SIZE(pjsua_var.acc); ++i) {
1450 if (!pjsua_var.acc[i].valid)
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001451 continue;
Benny Prijono093d3022006-09-24 00:07:11 +00001452 if (!pj_list_empty(&pjsua_var.acc[i].route_set))
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001453 break;
1454 }
1455
Benny Prijono093d3022006-09-24 00:07:11 +00001456 if (i != PJ_ARRAY_SIZE(pjsua_var.acc)) {
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001457 /* Found rather matching account */
Benny Prijonoc91ed8d2008-07-13 12:24:55 +00001458 pj_pool_release(tmp_pool);
Benny Prijono093d3022006-09-24 00:07:11 +00001459 PJSUA_UNLOCK();
Benny Prijonoc91ed8d2008-07-13 12:24:55 +00001460 return i;
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001461 }
1462
1463 /* Not found, use default account */
Benny Prijonoc91ed8d2008-07-13 12:24:55 +00001464 pj_pool_release(tmp_pool);
Benny Prijono093d3022006-09-24 00:07:11 +00001465 PJSUA_UNLOCK();
1466 return pjsua_var.default_acc;
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001467 }
1468
Benny Prijonoa1e69682007-05-11 15:14:34 +00001469 sip_uri = (pjsip_sip_uri*) pjsip_uri_get_uri(uri);
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001470
Benny Prijonob4a17c92006-07-10 14:40:21 +00001471 /* Find matching domain AND port */
Benny Prijono093d3022006-09-24 00:07:11 +00001472 for (i=0; i<pjsua_var.acc_cnt; ++i) {
1473 unsigned acc_id = pjsua_var.acc_ids[i];
1474 if (pj_stricmp(&pjsua_var.acc[acc_id].srv_domain, &sip_uri->host)==0 &&
1475 pjsua_var.acc[acc_id].srv_port == sip_uri->port)
1476 {
Benny Prijonoc91ed8d2008-07-13 12:24:55 +00001477 pj_pool_release(tmp_pool);
Benny Prijono093d3022006-09-24 00:07:11 +00001478 PJSUA_UNLOCK();
1479 return acc_id;
Benny Prijono21b9ad92006-08-15 13:11:22 +00001480 }
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001481 }
1482
Benny Prijonob4a17c92006-07-10 14:40:21 +00001483 /* If no match, try to match the domain part only */
Benny Prijono093d3022006-09-24 00:07:11 +00001484 for (i=0; i<pjsua_var.acc_cnt; ++i) {
1485 unsigned acc_id = pjsua_var.acc_ids[i];
1486 if (pj_stricmp(&pjsua_var.acc[acc_id].srv_domain, &sip_uri->host)==0)
1487 {
Benny Prijonoc91ed8d2008-07-13 12:24:55 +00001488 pj_pool_release(tmp_pool);
Benny Prijono093d3022006-09-24 00:07:11 +00001489 PJSUA_UNLOCK();
1490 return acc_id;
Benny Prijonob4a17c92006-07-10 14:40:21 +00001491 }
1492 }
1493
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001494
Benny Prijono093d3022006-09-24 00:07:11 +00001495 /* Still no match, just use default account */
Benny Prijonoc91ed8d2008-07-13 12:24:55 +00001496 pj_pool_release(tmp_pool);
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001497 PJSUA_UNLOCK();
Benny Prijono093d3022006-09-24 00:07:11 +00001498 return pjsua_var.default_acc;
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001499}
1500
1501
1502/*
1503 * This is an internal function to find the most appropriate account to be
1504 * used to handle incoming calls.
1505 */
1506PJ_DEF(pjsua_acc_id) pjsua_acc_find_for_incoming(pjsip_rx_data *rdata)
1507{
1508 pjsip_uri *uri;
1509 pjsip_sip_uri *sip_uri;
Benny Prijono093d3022006-09-24 00:07:11 +00001510 unsigned i;
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001511
Benny Prijono371cf0a2007-06-19 00:35:37 +00001512 /* Check that there's at least one account configured */
1513 PJ_ASSERT_RETURN(pjsua_var.acc_cnt!=0, pjsua_var.default_acc);
1514
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001515 uri = rdata->msg_info.to->uri;
1516
1517 /* Just return default account if To URI is not SIP: */
1518 if (!PJSIP_URI_SCHEME_IS_SIP(uri) &&
1519 !PJSIP_URI_SCHEME_IS_SIPS(uri))
1520 {
1521 return pjsua_var.default_acc;
1522 }
1523
1524
1525 PJSUA_LOCK();
1526
1527 sip_uri = (pjsip_sip_uri*)pjsip_uri_get_uri(uri);
1528
1529 /* Find account which has matching username and domain. */
Benny Prijono093d3022006-09-24 00:07:11 +00001530 for (i=0; i < pjsua_var.acc_cnt; ++i) {
1531 unsigned acc_id = pjsua_var.acc_ids[i];
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001532 pjsua_acc *acc = &pjsua_var.acc[acc_id];
1533
Benny Prijono62c5c5b2007-01-13 23:22:40 +00001534 if (acc->valid && pj_stricmp(&acc->user_part, &sip_uri->user)==0 &&
Benny Prijonob4a17c92006-07-10 14:40:21 +00001535 pj_stricmp(&acc->srv_domain, &sip_uri->host)==0)
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001536 {
1537 /* Match ! */
1538 PJSUA_UNLOCK();
1539 return acc_id;
1540 }
1541 }
1542
Benny Prijono093d3022006-09-24 00:07:11 +00001543 /* No matching account, try match domain part only. */
1544 for (i=0; i < pjsua_var.acc_cnt; ++i) {
1545 unsigned acc_id = pjsua_var.acc_ids[i];
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001546 pjsua_acc *acc = &pjsua_var.acc[acc_id];
1547
Benny Prijono62c5c5b2007-01-13 23:22:40 +00001548 if (acc->valid && pj_stricmp(&acc->srv_domain, &sip_uri->host)==0) {
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001549 /* Match ! */
1550 PJSUA_UNLOCK();
1551 return acc_id;
1552 }
1553 }
1554
Benny Prijono62c5c5b2007-01-13 23:22:40 +00001555 /* No matching account, try match user part (and transport type) only. */
Benny Prijono093d3022006-09-24 00:07:11 +00001556 for (i=0; i < pjsua_var.acc_cnt; ++i) {
1557 unsigned acc_id = pjsua_var.acc_ids[i];
1558 pjsua_acc *acc = &pjsua_var.acc[acc_id];
1559
Benny Prijono62c5c5b2007-01-13 23:22:40 +00001560 if (acc->valid && pj_stricmp(&acc->user_part, &sip_uri->user)==0) {
1561
1562 if (acc->cfg.transport_id != PJSUA_INVALID_ID) {
1563 pjsip_transport_type_e type;
1564 type = pjsip_transport_get_type_from_name(&sip_uri->transport_param);
1565 if (type == PJSIP_TRANSPORT_UNSPECIFIED)
1566 type = PJSIP_TRANSPORT_UDP;
1567
1568 if (pjsua_var.tpdata[acc->cfg.transport_id].type != type)
1569 continue;
1570 }
1571
Benny Prijono093d3022006-09-24 00:07:11 +00001572 /* Match ! */
1573 PJSUA_UNLOCK();
1574 return acc_id;
1575 }
1576 }
1577
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001578 /* Still no match, use default account */
1579 PJSUA_UNLOCK();
1580 return pjsua_var.default_acc;
1581}
1582
Benny Prijonoc570f2d2006-07-18 00:33:02 +00001583
Benny Prijonofff245c2007-04-02 11:44:47 +00001584/*
1585 * Create arbitrary requests for this account.
1586 */
1587PJ_DEF(pj_status_t) pjsua_acc_create_request(pjsua_acc_id acc_id,
1588 const pjsip_method *method,
1589 const pj_str_t *target,
1590 pjsip_tx_data **p_tdata)
1591{
1592 pjsip_tx_data *tdata;
1593 pjsua_acc *acc;
1594 pjsip_route_hdr *r;
1595 pj_status_t status;
1596
1597 PJ_ASSERT_RETURN(method && target && p_tdata, PJ_EINVAL);
1598 PJ_ASSERT_RETURN(pjsua_acc_is_valid(acc_id), PJ_EINVAL);
1599
1600 acc = &pjsua_var.acc[acc_id];
1601
1602 status = pjsip_endpt_create_request(pjsua_var.endpt, method, target,
1603 &acc->cfg.id, target,
1604 NULL, NULL, -1, NULL, &tdata);
1605 if (status != PJ_SUCCESS) {
1606 pjsua_perror(THIS_FILE, "Unable to create request", status);
1607 return status;
1608 }
1609
1610 /* Copy routeset */
1611 r = acc->route_set.next;
1612 while (r != &acc->route_set) {
Benny Prijonoa1e69682007-05-11 15:14:34 +00001613 pjsip_msg_add_hdr(tdata->msg,
1614 (pjsip_hdr*)pjsip_hdr_clone(tdata->pool, r));
Benny Prijonofff245c2007-04-02 11:44:47 +00001615 r = r->next;
1616 }
Benny Prijonoe7911562009-12-14 11:13:45 +00001617
1618 /* If account is locked to specific transport, then set that transport to
1619 * the transmit data.
1620 */
1621 if (pjsua_var.acc[acc_id].cfg.transport_id != PJSUA_INVALID_ID) {
1622 pjsip_tpselector tp_sel;
1623
1624 pjsua_init_tpselector(acc->cfg.transport_id, &tp_sel);
1625 pjsip_tx_data_set_transport(tdata, &tp_sel);
1626 }
1627
Benny Prijonofff245c2007-04-02 11:44:47 +00001628 /* Done */
1629 *p_tdata = tdata;
1630 return PJ_SUCCESS;
1631}
1632
1633
Benny Prijonoc570f2d2006-07-18 00:33:02 +00001634PJ_DEF(pj_status_t) pjsua_acc_create_uac_contact( pj_pool_t *pool,
1635 pj_str_t *contact,
1636 pjsua_acc_id acc_id,
1637 const pj_str_t *suri)
1638{
1639 pjsua_acc *acc;
1640 pjsip_sip_uri *sip_uri;
1641 pj_status_t status;
1642 pjsip_transport_type_e tp_type = PJSIP_TRANSPORT_UNSPECIFIED;
1643 pj_str_t local_addr;
Benny Prijono62c5c5b2007-01-13 23:22:40 +00001644 pjsip_tpselector tp_sel;
Benny Prijonoc570f2d2006-07-18 00:33:02 +00001645 unsigned flag;
1646 int secure;
1647 int local_port;
Benny Prijonod0bd4982007-12-02 15:40:52 +00001648 const char *beginquote, *endquote;
1649 char transport_param[32];
1650
Benny Prijonoc570f2d2006-07-18 00:33:02 +00001651
Benny Prijono62c5c5b2007-01-13 23:22:40 +00001652 PJ_ASSERT_RETURN(pjsua_acc_is_valid(acc_id), PJ_EINVAL);
Benny Prijonoc570f2d2006-07-18 00:33:02 +00001653 acc = &pjsua_var.acc[acc_id];
1654
Benny Prijonof75eceb2007-03-23 19:09:54 +00001655 /* If force_contact is configured, then use use it */
1656 if (acc->cfg.force_contact.slen) {
1657 *contact = acc->cfg.force_contact;
1658 return PJ_SUCCESS;
1659 }
1660
Benny Prijonoc570f2d2006-07-18 00:33:02 +00001661 /* If route-set is configured for the account, then URI is the
1662 * first entry of the route-set.
1663 */
1664 if (!pj_list_empty(&acc->route_set)) {
Benny Prijono9c1528f2007-02-10 19:22:25 +00001665 sip_uri = (pjsip_sip_uri*)
1666 pjsip_uri_get_uri(acc->route_set.next->name_addr.uri);
Benny Prijonoc570f2d2006-07-18 00:33:02 +00001667 } else {
1668 pj_str_t tmp;
1669 pjsip_uri *uri;
1670
1671 pj_strdup_with_null(pool, &tmp, suri);
1672
1673 uri = pjsip_parse_uri(pool, tmp.ptr, tmp.slen, 0);
1674 if (uri == NULL)
1675 return PJSIP_EINVALIDURI;
1676
1677 /* For non-SIP scheme, route set should be configured */
1678 if (!PJSIP_URI_SCHEME_IS_SIP(uri) && !PJSIP_URI_SCHEME_IS_SIPS(uri))
1679 return PJSIP_EINVALIDREQURI;
1680
Benny Prijono8c7a6172007-02-18 21:17:46 +00001681 sip_uri = (pjsip_sip_uri*)pjsip_uri_get_uri(uri);
Benny Prijonoc570f2d2006-07-18 00:33:02 +00001682 }
1683
1684 /* Get transport type of the URI */
1685 if (PJSIP_URI_SCHEME_IS_SIPS(sip_uri))
1686 tp_type = PJSIP_TRANSPORT_TLS;
1687 else if (sip_uri->transport_param.slen == 0) {
1688 tp_type = PJSIP_TRANSPORT_UDP;
1689 } else
1690 tp_type = pjsip_transport_get_type_from_name(&sip_uri->transport_param);
1691
1692 if (tp_type == PJSIP_TRANSPORT_UNSPECIFIED)
1693 return PJSIP_EUNSUPTRANSPORT;
1694
Benny Prijonod0bd4982007-12-02 15:40:52 +00001695 /* If destination URI specifies IPv6, then set transport type
1696 * to use IPv6 as well.
1697 */
Benny Prijono19b29372007-12-05 04:08:40 +00001698 if (pj_strchr(&sip_uri->host, ':'))
Benny Prijonod0bd4982007-12-02 15:40:52 +00001699 tp_type = (pjsip_transport_type_e)(((int)tp_type) + PJSIP_TRANSPORT_IPV6);
1700
Benny Prijonoc570f2d2006-07-18 00:33:02 +00001701 flag = pjsip_transport_get_flag_from_type(tp_type);
1702 secure = (flag & PJSIP_TRANSPORT_SECURE) != 0;
1703
Benny Prijono62c5c5b2007-01-13 23:22:40 +00001704 /* Init transport selector. */
1705 pjsua_init_tpselector(pjsua_var.acc[acc_id].cfg.transport_id, &tp_sel);
1706
Benny Prijonoc570f2d2006-07-18 00:33:02 +00001707 /* Get local address suitable to send request from */
1708 status = pjsip_tpmgr_find_local_addr(pjsip_endpt_get_tpmgr(pjsua_var.endpt),
Benny Prijono62c5c5b2007-01-13 23:22:40 +00001709 pool, tp_type, &tp_sel,
1710 &local_addr, &local_port);
Benny Prijonoc570f2d2006-07-18 00:33:02 +00001711 if (status != PJ_SUCCESS)
1712 return status;
1713
Benny Prijonod0bd4982007-12-02 15:40:52 +00001714 /* Enclose IPv6 address in square brackets */
1715 if (tp_type & PJSIP_TRANSPORT_IPV6) {
1716 beginquote = "[";
1717 endquote = "]";
1718 } else {
1719 beginquote = endquote = "";
1720 }
1721
1722 /* Don't add transport parameter if it's UDP */
Benny Prijono4c82c1e2008-10-16 08:14:51 +00001723 if (tp_type!=PJSIP_TRANSPORT_UDP && tp_type!=PJSIP_TRANSPORT_UDP6) {
Benny Prijonod0bd4982007-12-02 15:40:52 +00001724 pj_ansi_snprintf(transport_param, sizeof(transport_param),
1725 ";transport=%s",
1726 pjsip_transport_get_type_name(tp_type));
1727 } else {
1728 transport_param[0] = '\0';
1729 }
1730
1731
Benny Prijonoc570f2d2006-07-18 00:33:02 +00001732 /* Create the contact header */
Benny Prijonoa1e69682007-05-11 15:14:34 +00001733 contact->ptr = (char*)pj_pool_alloc(pool, PJSIP_MAX_URL_SIZE);
Benny Prijonoc570f2d2006-07-18 00:33:02 +00001734 contact->slen = pj_ansi_snprintf(contact->ptr, PJSIP_MAX_URL_SIZE,
Nanang Izzuddine2c7e852009-08-04 14:36:17 +00001735 "%.*s%s<%s:%.*s%s%s%.*s%s:%d%s%.*s>%.*s",
Benny Prijonoc570f2d2006-07-18 00:33:02 +00001736 (int)acc->display.slen,
1737 acc->display.ptr,
1738 (acc->display.slen?" " : ""),
Benny Prijono8058a622007-06-08 04:37:05 +00001739 (secure ? PJSUA_SECURE_SCHEME : "sip"),
Benny Prijonoc570f2d2006-07-18 00:33:02 +00001740 (int)acc->user_part.slen,
1741 acc->user_part.ptr,
1742 (acc->user_part.slen?"@":""),
Benny Prijonod0bd4982007-12-02 15:40:52 +00001743 beginquote,
Benny Prijonoc570f2d2006-07-18 00:33:02 +00001744 (int)local_addr.slen,
1745 local_addr.ptr,
Benny Prijonod0bd4982007-12-02 15:40:52 +00001746 endquote,
Benny Prijonoc570f2d2006-07-18 00:33:02 +00001747 local_port,
Benny Prijono30fe4852008-12-10 16:54:16 +00001748 transport_param,
Nanang Izzuddine2c7e852009-08-04 14:36:17 +00001749 (int)acc->cfg.contact_uri_params.slen,
1750 acc->cfg.contact_uri_params.ptr,
Benny Prijono30fe4852008-12-10 16:54:16 +00001751 (int)acc->cfg.contact_params.slen,
1752 acc->cfg.contact_params.ptr);
Benny Prijonoc570f2d2006-07-18 00:33:02 +00001753
1754 return PJ_SUCCESS;
1755}
1756
1757
1758
1759PJ_DEF(pj_status_t) pjsua_acc_create_uas_contact( pj_pool_t *pool,
1760 pj_str_t *contact,
1761 pjsua_acc_id acc_id,
1762 pjsip_rx_data *rdata )
1763{
1764 /*
1765 * Section 12.1.1, paragraph about using SIPS URI in Contact.
1766 * If the request that initiated the dialog contained a SIPS URI
1767 * in the Request-URI or in the top Record-Route header field value,
1768 * if there was any, or the Contact header field if there was no
1769 * Record-Route header field, the Contact header field in the response
1770 * MUST be a SIPS URI.
1771 */
1772 pjsua_acc *acc;
1773 pjsip_sip_uri *sip_uri;
1774 pj_status_t status;
1775 pjsip_transport_type_e tp_type = PJSIP_TRANSPORT_UNSPECIFIED;
1776 pj_str_t local_addr;
Benny Prijono62c5c5b2007-01-13 23:22:40 +00001777 pjsip_tpselector tp_sel;
Benny Prijonoc570f2d2006-07-18 00:33:02 +00001778 unsigned flag;
1779 int secure;
1780 int local_port;
Benny Prijonod0bd4982007-12-02 15:40:52 +00001781 const char *beginquote, *endquote;
1782 char transport_param[32];
Benny Prijonoc570f2d2006-07-18 00:33:02 +00001783
Benny Prijono62c5c5b2007-01-13 23:22:40 +00001784 PJ_ASSERT_RETURN(pjsua_acc_is_valid(acc_id), PJ_EINVAL);
Benny Prijonoc570f2d2006-07-18 00:33:02 +00001785 acc = &pjsua_var.acc[acc_id];
1786
Benny Prijonof75eceb2007-03-23 19:09:54 +00001787 /* If force_contact is configured, then use use it */
1788 if (acc->cfg.force_contact.slen) {
1789 *contact = acc->cfg.force_contact;
1790 return PJ_SUCCESS;
1791 }
1792
Benny Prijonoc570f2d2006-07-18 00:33:02 +00001793 /* If Record-Route is present, then URI is the top Record-Route. */
1794 if (rdata->msg_info.record_route) {
Benny Prijono9c1528f2007-02-10 19:22:25 +00001795 sip_uri = (pjsip_sip_uri*)
1796 pjsip_uri_get_uri(rdata->msg_info.record_route->name_addr.uri);
Benny Prijonoc570f2d2006-07-18 00:33:02 +00001797 } else {
Benny Prijonoa330d452008-08-05 20:14:39 +00001798 pjsip_hdr *pos = NULL;
Benny Prijonoc570f2d2006-07-18 00:33:02 +00001799 pjsip_contact_hdr *h_contact;
1800 pjsip_uri *uri = NULL;
1801
Benny Prijonoa330d452008-08-05 20:14:39 +00001802 /* Otherwise URI is Contact URI.
1803 * Iterate the Contact URI until we find sip: or sips: scheme.
1804 */
1805 do {
1806 h_contact = (pjsip_contact_hdr*)
1807 pjsip_msg_find_hdr(rdata->msg_info.msg, PJSIP_H_CONTACT,
1808 pos);
1809 if (h_contact) {
1810 uri = (pjsip_uri*) pjsip_uri_get_uri(h_contact->uri);
1811 if (!PJSIP_URI_SCHEME_IS_SIP(uri) &&
1812 !PJSIP_URI_SCHEME_IS_SIPS(uri))
1813 {
1814 pos = (pjsip_hdr*)h_contact->next;
1815 if (pos == &rdata->msg_info.msg->hdr)
1816 h_contact = NULL;
1817 } else {
1818 break;
1819 }
1820 }
1821 } while (h_contact);
Benny Prijonoc570f2d2006-07-18 00:33:02 +00001822
1823
1824 /* Or if Contact URI is not present, take the remote URI from
1825 * the From URI.
1826 */
1827 if (uri == NULL)
Benny Prijonoa1e69682007-05-11 15:14:34 +00001828 uri = (pjsip_uri*) pjsip_uri_get_uri(rdata->msg_info.from->uri);
Benny Prijonoc570f2d2006-07-18 00:33:02 +00001829
1830
1831 /* Can only do sip/sips scheme at present. */
1832 if (!PJSIP_URI_SCHEME_IS_SIP(uri) && !PJSIP_URI_SCHEME_IS_SIPS(uri))
1833 return PJSIP_EINVALIDREQURI;
1834
Benny Prijono8c7a6172007-02-18 21:17:46 +00001835 sip_uri = (pjsip_sip_uri*)pjsip_uri_get_uri(uri);
Benny Prijonoc570f2d2006-07-18 00:33:02 +00001836 }
1837
1838 /* Get transport type of the URI */
1839 if (PJSIP_URI_SCHEME_IS_SIPS(sip_uri))
1840 tp_type = PJSIP_TRANSPORT_TLS;
1841 else if (sip_uri->transport_param.slen == 0) {
1842 tp_type = PJSIP_TRANSPORT_UDP;
1843 } else
1844 tp_type = pjsip_transport_get_type_from_name(&sip_uri->transport_param);
Benny Prijonod0bd4982007-12-02 15:40:52 +00001845
Benny Prijonoc570f2d2006-07-18 00:33:02 +00001846 if (tp_type == PJSIP_TRANSPORT_UNSPECIFIED)
1847 return PJSIP_EUNSUPTRANSPORT;
1848
Benny Prijonod0bd4982007-12-02 15:40:52 +00001849 /* If destination URI specifies IPv6, then set transport type
1850 * to use IPv6 as well.
1851 */
1852 if (pj_strchr(&sip_uri->host, ':'))
1853 tp_type = (pjsip_transport_type_e)(((int)tp_type) + PJSIP_TRANSPORT_IPV6);
1854
Benny Prijonoc570f2d2006-07-18 00:33:02 +00001855 flag = pjsip_transport_get_flag_from_type(tp_type);
1856 secure = (flag & PJSIP_TRANSPORT_SECURE) != 0;
1857
Benny Prijono62c5c5b2007-01-13 23:22:40 +00001858 /* Init transport selector. */
1859 pjsua_init_tpselector(pjsua_var.acc[acc_id].cfg.transport_id, &tp_sel);
1860
Benny Prijonoc570f2d2006-07-18 00:33:02 +00001861 /* Get local address suitable to send request from */
1862 status = pjsip_tpmgr_find_local_addr(pjsip_endpt_get_tpmgr(pjsua_var.endpt),
Benny Prijono62c5c5b2007-01-13 23:22:40 +00001863 pool, tp_type, &tp_sel,
1864 &local_addr, &local_port);
Benny Prijonoc570f2d2006-07-18 00:33:02 +00001865 if (status != PJ_SUCCESS)
1866 return status;
1867
Benny Prijonod0bd4982007-12-02 15:40:52 +00001868 /* Enclose IPv6 address in square brackets */
1869 if (tp_type & PJSIP_TRANSPORT_IPV6) {
1870 beginquote = "[";
1871 endquote = "]";
1872 } else {
1873 beginquote = endquote = "";
1874 }
1875
1876 /* Don't add transport parameter if it's UDP */
Benny Prijono4c82c1e2008-10-16 08:14:51 +00001877 if (tp_type!=PJSIP_TRANSPORT_UDP && tp_type!=PJSIP_TRANSPORT_UDP6) {
Benny Prijonod0bd4982007-12-02 15:40:52 +00001878 pj_ansi_snprintf(transport_param, sizeof(transport_param),
1879 ";transport=%s",
1880 pjsip_transport_get_type_name(tp_type));
1881 } else {
1882 transport_param[0] = '\0';
1883 }
1884
1885
Benny Prijonoc570f2d2006-07-18 00:33:02 +00001886 /* Create the contact header */
Benny Prijonoa1e69682007-05-11 15:14:34 +00001887 contact->ptr = (char*) pj_pool_alloc(pool, PJSIP_MAX_URL_SIZE);
Benny Prijonoc570f2d2006-07-18 00:33:02 +00001888 contact->slen = pj_ansi_snprintf(contact->ptr, PJSIP_MAX_URL_SIZE,
Nanang Izzuddine2c7e852009-08-04 14:36:17 +00001889 "%.*s%s<%s:%.*s%s%s%.*s%s:%d%s%.*s>%.*s",
Benny Prijonoc570f2d2006-07-18 00:33:02 +00001890 (int)acc->display.slen,
1891 acc->display.ptr,
1892 (acc->display.slen?" " : ""),
Benny Prijono8058a622007-06-08 04:37:05 +00001893 (secure ? PJSUA_SECURE_SCHEME : "sip"),
Benny Prijonoc570f2d2006-07-18 00:33:02 +00001894 (int)acc->user_part.slen,
1895 acc->user_part.ptr,
1896 (acc->user_part.slen?"@":""),
Benny Prijonod0bd4982007-12-02 15:40:52 +00001897 beginquote,
Benny Prijonoc570f2d2006-07-18 00:33:02 +00001898 (int)local_addr.slen,
1899 local_addr.ptr,
Benny Prijonod0bd4982007-12-02 15:40:52 +00001900 endquote,
Benny Prijonoc570f2d2006-07-18 00:33:02 +00001901 local_port,
Benny Prijono30fe4852008-12-10 16:54:16 +00001902 transport_param,
Nanang Izzuddine2c7e852009-08-04 14:36:17 +00001903 (int)acc->cfg.contact_uri_params.slen,
1904 acc->cfg.contact_uri_params.ptr,
Benny Prijono30fe4852008-12-10 16:54:16 +00001905 (int)acc->cfg.contact_params.slen,
1906 acc->cfg.contact_params.ptr);
Benny Prijonoc570f2d2006-07-18 00:33:02 +00001907
1908 return PJ_SUCCESS;
1909}
1910
1911
Benny Prijono62c5c5b2007-01-13 23:22:40 +00001912PJ_DEF(pj_status_t) pjsua_acc_set_transport( pjsua_acc_id acc_id,
1913 pjsua_transport_id tp_id)
1914{
1915 pjsua_acc *acc;
1916
1917 PJ_ASSERT_RETURN(pjsua_acc_is_valid(acc_id), PJ_EINVAL);
1918 acc = &pjsua_var.acc[acc_id];
1919
Benny Prijonoa1e69682007-05-11 15:14:34 +00001920 PJ_ASSERT_RETURN(tp_id >= 0 && tp_id < (int)PJ_ARRAY_SIZE(pjsua_var.tpdata),
Benny Prijono62c5c5b2007-01-13 23:22:40 +00001921 PJ_EINVAL);
1922
1923 acc->cfg.transport_id = tp_id;
1924
1925 return PJ_SUCCESS;
1926}
Benny Prijonoc570f2d2006-07-18 00:33:02 +00001927