blob: e74ee4068fb3d2be757588548b19b112160f0125 [file] [log] [blame]
Benny Prijono834aee32006-02-19 01:38:06 +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 Prijono834aee32006-02-19 01:38:06 +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 */
Benny Prijono4f9f64e2006-02-27 00:00:30 +000020#include <pjsua-lib/pjsua.h>
Benny Prijonoeebe9af2006-06-13 22:57:13 +000021#include <pjsua-lib/pjsua_internal.h>
Benny Prijono834aee32006-02-19 01:38:06 +000022
Benny Prijono834aee32006-02-19 01:38:06 +000023
24#define THIS_FILE "pjsua_pres.c"
25
Benny Prijonoa17496a2007-10-31 10:20:31 +000026
Benny Prijono73bb7232009-10-20 13:56:26 +000027static void subscribe_buddy_presence(pjsua_buddy_id buddy_id);
28static void unsubscribe_buddy_presence(pjsua_buddy_id buddy_id);
Benny Prijonoa17496a2007-10-31 10:20:31 +000029
30
31/*
32 * Find buddy.
33 */
Benny Prijono73bb7232009-10-20 13:56:26 +000034static pjsua_buddy_id find_buddy(const pjsip_uri *uri)
Benny Prijonoa17496a2007-10-31 10:20:31 +000035{
36 const pjsip_sip_uri *sip_uri;
37 unsigned i;
38
Benny Prijonof0f8fd12007-11-10 12:05:59 +000039 uri = (const pjsip_uri*) pjsip_uri_get_uri((pjsip_uri*)uri);
Benny Prijonoa17496a2007-10-31 10:20:31 +000040
41 if (!PJSIP_URI_SCHEME_IS_SIP(uri) && !PJSIP_URI_SCHEME_IS_SIPS(uri))
42 return PJSUA_INVALID_ID;
43
44 sip_uri = (const pjsip_sip_uri*) uri;
45
46 for (i=0; i<PJ_ARRAY_SIZE(pjsua_var.buddy); ++i) {
47 const pjsua_buddy *b = &pjsua_var.buddy[i];
48
49 if (!pjsua_buddy_is_valid(i))
50 continue;
51
52 if (pj_stricmp(&sip_uri->user, &b->name)==0 &&
53 pj_stricmp(&sip_uri->host, &b->host)==0 &&
54 (sip_uri->port==(int)b->port || (sip_uri->port==0 && b->port==5060)))
55 {
56 /* Match */
57 return i;
58 }
59 }
60
61 return PJSUA_INVALID_ID;
62}
Benny Prijono7a5f5102007-05-29 00:33:09 +000063
Benny Prijono73bb7232009-10-20 13:56:26 +000064#define LOCK_DIALOG 1
65#define LOCK_PJSUA 2
66#define LOCK_ALL (LOCK_DIALOG | LOCK_PJSUA)
67
68/* Buddy lock object */
69struct buddy_lock
70{
71 pjsua_buddy *buddy;
72 pjsip_dialog *dlg;
73 pj_uint8_t flag;
74};
75
76/* Acquire lock to the specified buddy_id */
77pj_status_t lock_buddy(const char *title,
78 pjsua_buddy_id buddy_id,
79 struct buddy_lock *lck,
80 unsigned _unused_)
81{
82 enum { MAX_RETRY=50 };
83 pj_bool_t has_pjsua_lock = PJ_FALSE;
84 unsigned retry;
85
86 PJ_UNUSED_ARG(_unused_);
87
88 pj_bzero(lck, sizeof(*lck));
89
90 for (retry=0; retry<MAX_RETRY; ++retry) {
91
92 if (PJSUA_TRY_LOCK() != PJ_SUCCESS) {
93 pj_thread_sleep(retry/10);
94 continue;
95 }
96
97 has_pjsua_lock = PJ_TRUE;
98 lck->flag = LOCK_PJSUA;
99 lck->buddy = &pjsua_var.buddy[buddy_id];
100
101 if (lck->buddy->dlg == NULL)
102 return PJ_SUCCESS;
103
104 if (pjsip_dlg_try_inc_lock(lck->buddy->dlg) != PJ_SUCCESS) {
105 lck->flag = 0;
106 lck->buddy = NULL;
107 has_pjsua_lock = PJ_FALSE;
108 PJSUA_UNLOCK();
109 pj_thread_sleep(retry/10);
110 continue;
111 }
112
113 lck->dlg = lck->buddy->dlg;
114 lck->flag = LOCK_DIALOG;
115 PJSUA_UNLOCK();
116
117 break;
118 }
119
120 if (lck->flag == 0) {
121 if (has_pjsua_lock == PJ_FALSE)
122 PJ_LOG(1,(THIS_FILE, "Timed-out trying to acquire PJSUA mutex "
123 "(possibly system has deadlocked) in %s",
124 title));
125 else
126 PJ_LOG(1,(THIS_FILE, "Timed-out trying to acquire dialog mutex "
127 "(possibly system has deadlocked) in %s",
128 title));
129 return PJ_ETIMEDOUT;
130 }
131
132 return PJ_SUCCESS;
133}
134
135/* Release buddy lock */
136static void unlock_buddy(struct buddy_lock *lck)
137{
138 if (lck->flag & LOCK_DIALOG)
139 pjsip_dlg_dec_lock(lck->dlg);
140
141 if (lck->flag & LOCK_PJSUA)
142 PJSUA_UNLOCK();
143}
144
Benny Prijono834aee32006-02-19 01:38:06 +0000145
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000146/*
147 * Get total number of buddies.
148 */
149PJ_DEF(unsigned) pjsua_get_buddy_count(void)
150{
151 return pjsua_var.buddy_cnt;
152}
Benny Prijono834aee32006-02-19 01:38:06 +0000153
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000154
155/*
Benny Prijono705e7842008-07-21 18:12:51 +0000156 * Find buddy.
157 */
158PJ_DEF(pjsua_buddy_id) pjsua_buddy_find(const pj_str_t *uri_str)
159{
160 pj_str_t input;
161 pj_pool_t *pool;
162 pjsip_uri *uri;
163 pjsua_buddy_id buddy_id;
164
165 pool = pjsua_pool_create("buddyfind", 512, 512);
166 pj_strdup_with_null(pool, &input, uri_str);
167
168 uri = pjsip_parse_uri(pool, input.ptr, input.slen, 0);
169 if (!uri)
170 buddy_id = PJSUA_INVALID_ID;
Benny Prijono73bb7232009-10-20 13:56:26 +0000171 else {
172 PJSUA_LOCK();
173 buddy_id = find_buddy(uri);
174 PJSUA_UNLOCK();
175 }
Benny Prijono705e7842008-07-21 18:12:51 +0000176
177 pj_pool_release(pool);
178
179 return buddy_id;
180}
181
182
183/*
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000184 * Check if buddy ID is valid.
185 */
186PJ_DEF(pj_bool_t) pjsua_buddy_is_valid(pjsua_buddy_id buddy_id)
187{
Benny Prijonoa1e69682007-05-11 15:14:34 +0000188 return buddy_id>=0 && buddy_id<(int)PJ_ARRAY_SIZE(pjsua_var.buddy) &&
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000189 pjsua_var.buddy[buddy_id].uri.slen != 0;
190}
191
192
193/*
194 * Enum buddy IDs.
195 */
196PJ_DEF(pj_status_t) pjsua_enum_buddies( pjsua_buddy_id ids[],
197 unsigned *count)
198{
199 unsigned i, c;
200
201 PJ_ASSERT_RETURN(ids && count, PJ_EINVAL);
202
203 PJSUA_LOCK();
204
205 for (i=0, c=0; c<*count && i<PJ_ARRAY_SIZE(pjsua_var.buddy); ++i) {
206 if (!pjsua_var.buddy[i].uri.slen)
207 continue;
208 ids[c] = i;
209 ++c;
210 }
211
212 *count = c;
213
214 PJSUA_UNLOCK();
215
216 return PJ_SUCCESS;
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000217}
218
219
220/*
221 * Get detailed buddy info.
222 */
223PJ_DEF(pj_status_t) pjsua_buddy_get_info( pjsua_buddy_id buddy_id,
224 pjsua_buddy_info *info)
225{
Benny Prijono20da7992008-12-18 16:48:43 +0000226 unsigned total=0;
Benny Prijono73bb7232009-10-20 13:56:26 +0000227 struct buddy_lock lck;
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000228 pjsua_buddy *buddy;
Benny Prijono73bb7232009-10-20 13:56:26 +0000229 pj_status_t status;
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000230
Benny Prijono73bb7232009-10-20 13:56:26 +0000231 PJ_ASSERT_RETURN(pjsua_buddy_is_valid(buddy_id), PJ_EINVAL);
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000232
Benny Prijonoac623b32006-07-03 15:19:31 +0000233 pj_bzero(info, sizeof(pjsua_buddy_info));
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000234
Benny Prijono73bb7232009-10-20 13:56:26 +0000235 status = lock_buddy("pjsua_buddy_get_info()", buddy_id, &lck, 0);
236 if (status != PJ_SUCCESS)
237 return status;
238
239 buddy = lck.buddy;
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000240 info->id = buddy->index;
241 if (pjsua_var.buddy[buddy_id].uri.slen == 0) {
Benny Prijono73bb7232009-10-20 13:56:26 +0000242 unlock_buddy(&lck);
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000243 return PJ_SUCCESS;
244 }
245
246 /* uri */
247 info->uri.ptr = info->buf_ + total;
248 pj_strncpy(&info->uri, &buddy->uri, sizeof(info->buf_)-total);
249 total += info->uri.slen;
250
251 /* contact */
252 info->contact.ptr = info->buf_ + total;
253 pj_strncpy(&info->contact, &buddy->contact, sizeof(info->buf_)-total);
254 total += info->contact.slen;
Benny Prijono97276602007-06-23 01:07:08 +0000255
Benny Prijono28add7e2009-06-15 16:03:40 +0000256 /* Presence status */
257 pj_memcpy(&info->pres_status, &buddy->status, sizeof(pjsip_pres_status));
258
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000259 /* status and status text */
260 if (buddy->sub == NULL || buddy->status.info_cnt==0) {
261 info->status = PJSUA_BUDDY_STATUS_UNKNOWN;
262 info->status_text = pj_str("?");
263 } else if (pjsua_var.buddy[buddy_id].status.info[0].basic_open) {
264 info->status = PJSUA_BUDDY_STATUS_ONLINE;
Benny Prijono4461c7d2007-08-25 13:36:15 +0000265
266 /* copy RPID information */
267 info->rpid = buddy->status.info[0].rpid;
268
269 if (info->rpid.note.slen)
270 info->status_text = info->rpid.note;
271 else
272 info->status_text = pj_str("Online");
273
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000274 } else {
275 info->status = PJSUA_BUDDY_STATUS_OFFLINE;
Benny Prijono73bb7232009-10-20 13:56:26 +0000276 info->rpid = buddy->status.info[0].rpid;
277
278 if (info->rpid.note.slen)
279 info->status_text = info->rpid.note;
280 else
281 info->status_text = pj_str("Offline");
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000282 }
283
284 /* monitor pres */
285 info->monitor_pres = buddy->monitor;
286
Benny Prijono63fba012008-07-17 14:19:10 +0000287 /* subscription state and termination reason */
Benny Prijono73bb7232009-10-20 13:56:26 +0000288 info->sub_term_code = buddy->term_code;
Benny Prijono63fba012008-07-17 14:19:10 +0000289 if (buddy->sub) {
290 info->sub_state = pjsip_evsub_get_state(buddy->sub);
Benny Prijonod06d8c52009-06-30 13:53:47 +0000291 info->sub_state_name = pjsip_evsub_get_state_name(buddy->sub);
Benny Prijono63fba012008-07-17 14:19:10 +0000292 if (info->sub_state == PJSIP_EVSUB_STATE_TERMINATED &&
293 total < sizeof(info->buf_))
294 {
295 info->sub_term_reason.ptr = info->buf_ + total;
296 pj_strncpy(&info->sub_term_reason,
297 pjsip_evsub_get_termination_reason(buddy->sub),
298 sizeof(info->buf_) - total);
299 total += info->sub_term_reason.slen;
300 } else {
301 info->sub_term_reason = pj_str("");
302 }
303 } else if (total < sizeof(info->buf_)) {
Benny Prijonod06d8c52009-06-30 13:53:47 +0000304 info->sub_state_name = "NULL";
Benny Prijono63fba012008-07-17 14:19:10 +0000305 info->sub_term_reason.ptr = info->buf_ + total;
306 pj_strncpy(&info->sub_term_reason, &buddy->term_reason,
307 sizeof(info->buf_) - total);
308 total += info->sub_term_reason.slen;
309 } else {
Benny Prijonod06d8c52009-06-30 13:53:47 +0000310 info->sub_state_name = "NULL";
Benny Prijono63fba012008-07-17 14:19:10 +0000311 info->sub_term_reason = pj_str("");
312 }
313
Benny Prijono73bb7232009-10-20 13:56:26 +0000314 unlock_buddy(&lck);
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000315 return PJ_SUCCESS;
316}
317
Benny Prijono705e7842008-07-21 18:12:51 +0000318/*
319 * Set the user data associated with the buddy object.
320 */
321PJ_DEF(pj_status_t) pjsua_buddy_set_user_data( pjsua_buddy_id buddy_id,
322 void *user_data)
323{
Benny Prijono73bb7232009-10-20 13:56:26 +0000324 struct buddy_lock lck;
325 pj_status_t status;
Benny Prijono705e7842008-07-21 18:12:51 +0000326
Benny Prijono73bb7232009-10-20 13:56:26 +0000327 PJ_ASSERT_RETURN(pjsua_buddy_is_valid(buddy_id), PJ_EINVAL);
328
329 status = lock_buddy("pjsua_buddy_set_user_data()", buddy_id, &lck, 0);
330 if (status != PJ_SUCCESS)
331 return status;
Benny Prijono705e7842008-07-21 18:12:51 +0000332
333 pjsua_var.buddy[buddy_id].user_data = user_data;
334
Benny Prijono73bb7232009-10-20 13:56:26 +0000335 unlock_buddy(&lck);
Benny Prijono705e7842008-07-21 18:12:51 +0000336
337 return PJ_SUCCESS;
338}
339
340
341/*
342 * Get the user data associated with the budy object.
343 */
344PJ_DEF(void*) pjsua_buddy_get_user_data(pjsua_buddy_id buddy_id)
345{
Benny Prijono73bb7232009-10-20 13:56:26 +0000346 struct buddy_lock lck;
347 pj_status_t status;
Benny Prijono705e7842008-07-21 18:12:51 +0000348 void *user_data;
349
Benny Prijono73bb7232009-10-20 13:56:26 +0000350 PJ_ASSERT_RETURN(pjsua_buddy_is_valid(buddy_id), NULL);
Benny Prijono705e7842008-07-21 18:12:51 +0000351
Benny Prijono73bb7232009-10-20 13:56:26 +0000352 status = lock_buddy("pjsua_buddy_get_user_data()", buddy_id, &lck, 0);
353 if (status != PJ_SUCCESS)
354 return NULL;
Benny Prijono705e7842008-07-21 18:12:51 +0000355
356 user_data = pjsua_var.buddy[buddy_id].user_data;
357
Benny Prijono73bb7232009-10-20 13:56:26 +0000358 unlock_buddy(&lck);
Benny Prijono705e7842008-07-21 18:12:51 +0000359
360 return user_data;
361}
362
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000363
364/*
365 * Reset buddy descriptor.
366 */
367static void reset_buddy(pjsua_buddy_id id)
368{
Benny Prijonoc91ed8d2008-07-13 12:24:55 +0000369 pj_pool_t *pool = pjsua_var.buddy[id].pool;
Benny Prijonoac623b32006-07-03 15:19:31 +0000370 pj_bzero(&pjsua_var.buddy[id], sizeof(pjsua_var.buddy[id]));
Benny Prijonoc91ed8d2008-07-13 12:24:55 +0000371 pjsua_var.buddy[id].pool = pool;
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000372 pjsua_var.buddy[id].index = id;
373}
374
375
376/*
377 * Add new buddy.
378 */
379PJ_DEF(pj_status_t) pjsua_buddy_add( const pjsua_buddy_config *cfg,
380 pjsua_buddy_id *p_buddy_id)
381{
382 pjsip_name_addr *url;
Benny Prijonoc91ed8d2008-07-13 12:24:55 +0000383 pjsua_buddy *buddy;
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000384 pjsip_sip_uri *sip_uri;
385 int index;
386 pj_str_t tmp;
387
388 PJ_ASSERT_RETURN(pjsua_var.buddy_cnt <=
389 PJ_ARRAY_SIZE(pjsua_var.buddy),
390 PJ_ETOOMANY);
391
392 PJSUA_LOCK();
393
394 /* Find empty slot */
Benny Prijonoa1e69682007-05-11 15:14:34 +0000395 for (index=0; index<(int)PJ_ARRAY_SIZE(pjsua_var.buddy); ++index) {
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000396 if (pjsua_var.buddy[index].uri.slen == 0)
397 break;
398 }
399
400 /* Expect to find an empty slot */
401 if (index == PJ_ARRAY_SIZE(pjsua_var.buddy)) {
402 PJSUA_UNLOCK();
403 /* This shouldn't happen */
404 pj_assert(!"index < PJ_ARRAY_SIZE(pjsua_var.buddy)");
405 return PJ_ETOOMANY;
406 }
407
Benny Prijonoc91ed8d2008-07-13 12:24:55 +0000408 buddy = &pjsua_var.buddy[index];
409
410 /* Create pool for this buddy */
411 if (buddy->pool) {
412 pj_pool_reset(buddy->pool);
413 } else {
414 char name[PJ_MAX_OBJ_NAME];
415 pj_ansi_snprintf(name, sizeof(name), "buddy%03d", index);
416 buddy->pool = pjsua_pool_create(name, 512, 256);
417 }
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000418
Benny Prijono63fba012008-07-17 14:19:10 +0000419 /* Init buffers for presence subscription status */
420 buddy->term_reason.ptr = (char*)
421 pj_pool_alloc(buddy->pool,
422 PJSUA_BUDDY_SUB_TERM_REASON_LEN);
423
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000424 /* Get name and display name for buddy */
Benny Prijonoc91ed8d2008-07-13 12:24:55 +0000425 pj_strdup_with_null(buddy->pool, &tmp, &cfg->uri);
426 url = (pjsip_name_addr*)pjsip_parse_uri(buddy->pool, tmp.ptr, tmp.slen,
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000427 PJSIP_PARSE_URI_AS_NAMEADDR);
428
429 if (url == NULL) {
430 pjsua_perror(THIS_FILE, "Unable to add buddy", PJSIP_EINVALIDURI);
Benny Prijonoc91ed8d2008-07-13 12:24:55 +0000431 pj_pool_release(buddy->pool);
432 buddy->pool = NULL;
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000433 PJSUA_UNLOCK();
434 return PJSIP_EINVALIDURI;
435 }
436
Benny Prijonofc493592007-02-18 20:56:32 +0000437 /* Only support SIP schemes */
Benny Prijonoc91ed8d2008-07-13 12:24:55 +0000438 if (!PJSIP_URI_SCHEME_IS_SIP(url) && !PJSIP_URI_SCHEME_IS_SIPS(url)) {
439 pj_pool_release(buddy->pool);
440 buddy->pool = NULL;
441 PJSUA_UNLOCK();
Benny Prijonofc493592007-02-18 20:56:32 +0000442 return PJSIP_EINVALIDSCHEME;
Benny Prijonoc91ed8d2008-07-13 12:24:55 +0000443 }
Benny Prijonofc493592007-02-18 20:56:32 +0000444
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000445 /* Reset buddy, to make sure everything is cleared with default
446 * values
447 */
448 reset_buddy(index);
449
450 /* Save URI */
451 pjsua_var.buddy[index].uri = tmp;
452
Benny Prijono9c1528f2007-02-10 19:22:25 +0000453 sip_uri = (pjsip_sip_uri*) pjsip_uri_get_uri(url->uri);
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000454 pjsua_var.buddy[index].name = sip_uri->user;
455 pjsua_var.buddy[index].display = url->display;
456 pjsua_var.buddy[index].host = sip_uri->host;
457 pjsua_var.buddy[index].port = sip_uri->port;
458 pjsua_var.buddy[index].monitor = cfg->subscribe;
459 if (pjsua_var.buddy[index].port == 0)
460 pjsua_var.buddy[index].port = 5060;
461
Benny Prijono705e7842008-07-21 18:12:51 +0000462 /* Save user data */
463 pjsua_var.buddy[index].user_data = (void*)cfg->user_data;
464
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000465 if (p_buddy_id)
466 *p_buddy_id = index;
467
468 pjsua_var.buddy_cnt++;
469
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000470 PJSUA_UNLOCK();
471
Benny Prijonof9c40c32007-06-28 07:20:26 +0000472 pjsua_buddy_subscribe_pres(index, cfg->subscribe);
473
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000474 return PJ_SUCCESS;
475}
476
477
478/*
479 * Delete buddy.
480 */
481PJ_DEF(pj_status_t) pjsua_buddy_del(pjsua_buddy_id buddy_id)
482{
Benny Prijono73bb7232009-10-20 13:56:26 +0000483 struct buddy_lock lck;
484 pj_status_t status;
485
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000486 PJ_ASSERT_RETURN(buddy_id>=0 &&
487 buddy_id<(int)PJ_ARRAY_SIZE(pjsua_var.buddy),
488 PJ_EINVAL);
489
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000490 if (pjsua_var.buddy[buddy_id].uri.slen == 0) {
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000491 return PJ_SUCCESS;
492 }
493
Benny Prijono73bb7232009-10-20 13:56:26 +0000494 status = lock_buddy("pjsua_buddy_del()", buddy_id, &lck, 0);
495 if (status != PJ_SUCCESS)
496 return status;
497
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000498 /* Unsubscribe presence */
499 pjsua_buddy_subscribe_pres(buddy_id, PJ_FALSE);
500
Benny Prijonoa5776cb2009-04-14 15:11:23 +0000501 /* Not interested with further events for this buddy */
502 if (pjsua_var.buddy[buddy_id].sub) {
503 pjsip_evsub_set_mod_data(pjsua_var.buddy[buddy_id].sub,
504 pjsua_var.mod.id, NULL);
505 }
506
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000507 /* Remove buddy */
508 pjsua_var.buddy[buddy_id].uri.slen = 0;
509 pjsua_var.buddy_cnt--;
510
Benny Prijono011e3f22009-12-10 05:16:23 +0000511 /* Clear timer */
512 if (pjsua_var.buddy[buddy_id].timer.id) {
513 pjsua_cancel_timer(&pjsua_var.buddy[buddy_id].timer);
514 pjsua_var.buddy[buddy_id].timer.id = PJ_FALSE;
515 }
516
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000517 /* Reset buddy struct */
518 reset_buddy(buddy_id);
519
Benny Prijono73bb7232009-10-20 13:56:26 +0000520 unlock_buddy(&lck);
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000521 return PJ_SUCCESS;
522}
523
524
525/*
526 * Enable/disable buddy's presence monitoring.
527 */
528PJ_DEF(pj_status_t) pjsua_buddy_subscribe_pres( pjsua_buddy_id buddy_id,
529 pj_bool_t subscribe)
530{
Benny Prijono73bb7232009-10-20 13:56:26 +0000531 struct buddy_lock lck;
532 pj_status_t status;
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000533
Benny Prijono73bb7232009-10-20 13:56:26 +0000534 PJ_ASSERT_RETURN(pjsua_buddy_is_valid(buddy_id), PJ_EINVAL);
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000535
Benny Prijono73bb7232009-10-20 13:56:26 +0000536 status = lock_buddy("pjsua_buddy_subscribe_pres()", buddy_id, &lck, 0);
537 if (status != PJ_SUCCESS)
538 return status;
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000539
Benny Prijono73bb7232009-10-20 13:56:26 +0000540 lck.buddy->monitor = subscribe;
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000541
Benny Prijono73bb7232009-10-20 13:56:26 +0000542 pjsua_buddy_update_pres(buddy_id);
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000543
Benny Prijono73bb7232009-10-20 13:56:26 +0000544 unlock_buddy(&lck);
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000545 return PJ_SUCCESS;
546}
547
548
549/*
Benny Prijono10861432007-10-31 10:54:53 +0000550 * Update buddy's presence.
551 */
552PJ_DEF(pj_status_t) pjsua_buddy_update_pres(pjsua_buddy_id buddy_id)
553{
Benny Prijono73bb7232009-10-20 13:56:26 +0000554 struct buddy_lock lck;
555 pj_status_t status;
Benny Prijono10861432007-10-31 10:54:53 +0000556
Benny Prijono73bb7232009-10-20 13:56:26 +0000557 PJ_ASSERT_RETURN(pjsua_buddy_is_valid(buddy_id), PJ_EINVAL);
Benny Prijono10861432007-10-31 10:54:53 +0000558
Benny Prijono73bb7232009-10-20 13:56:26 +0000559 status = lock_buddy("pjsua_buddy_update_pres()", buddy_id, &lck, 0);
560 if (status != PJ_SUCCESS)
561 return status;
Benny Prijono10861432007-10-31 10:54:53 +0000562
Benny Prijono73bb7232009-10-20 13:56:26 +0000563 /* Is this an unsubscribe request? */
564 if (!lck.buddy->monitor) {
565 unsubscribe_buddy_presence(buddy_id);
566 unlock_buddy(&lck);
567 return PJ_SUCCESS;
Benny Prijono10861432007-10-31 10:54:53 +0000568 }
569
570 /* Ignore if presence is already active for the buddy */
Benny Prijono73bb7232009-10-20 13:56:26 +0000571 if (lck.buddy->sub) {
572 unlock_buddy(&lck);
Benny Prijono10861432007-10-31 10:54:53 +0000573 return PJ_SUCCESS;
574 }
575
576 /* Initiate presence subscription */
577 subscribe_buddy_presence(buddy_id);
578
Benny Prijono73bb7232009-10-20 13:56:26 +0000579 unlock_buddy(&lck);
Benny Prijono10861432007-10-31 10:54:53 +0000580
581 return PJ_SUCCESS;
582}
583
584
585/*
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000586 * Dump presence subscriptions to log file.
587 */
588PJ_DEF(void) pjsua_pres_dump(pj_bool_t verbose)
589{
590 unsigned acc_id;
591 unsigned i;
592
593
594 PJSUA_LOCK();
595
596 /*
597 * When no detail is required, just dump number of server and client
598 * subscriptions.
599 */
600 if (verbose == PJ_FALSE) {
601
602 int count = 0;
603
604 for (acc_id=0; acc_id<PJ_ARRAY_SIZE(pjsua_var.acc); ++acc_id) {
605
606 if (!pjsua_var.acc[acc_id].valid)
607 continue;
608
609 if (!pj_list_empty(&pjsua_var.acc[acc_id].pres_srv_list)) {
610 struct pjsua_srv_pres *uapres;
611
612 uapres = pjsua_var.acc[acc_id].pres_srv_list.next;
613 while (uapres != &pjsua_var.acc[acc_id].pres_srv_list) {
614 ++count;
615 uapres = uapres->next;
616 }
617 }
618 }
619
620 PJ_LOG(3,(THIS_FILE, "Number of server/UAS subscriptions: %d",
621 count));
622
623 count = 0;
624
625 for (i=0; i<PJ_ARRAY_SIZE(pjsua_var.buddy); ++i) {
626 if (pjsua_var.buddy[i].uri.slen == 0)
627 continue;
628 if (pjsua_var.buddy[i].sub) {
629 ++count;
630 }
631 }
632
633 PJ_LOG(3,(THIS_FILE, "Number of client/UAC subscriptions: %d",
634 count));
635 PJSUA_UNLOCK();
636 return;
637 }
638
639
640 /*
641 * Dumping all server (UAS) subscriptions
642 */
643 PJ_LOG(3,(THIS_FILE, "Dumping pjsua server subscriptions:"));
644
645 for (acc_id=0; acc_id<(int)PJ_ARRAY_SIZE(pjsua_var.acc); ++acc_id) {
646
647 if (!pjsua_var.acc[acc_id].valid)
648 continue;
649
650 PJ_LOG(3,(THIS_FILE, " %.*s",
651 (int)pjsua_var.acc[acc_id].cfg.id.slen,
652 pjsua_var.acc[acc_id].cfg.id.ptr));
653
654 if (pj_list_empty(&pjsua_var.acc[acc_id].pres_srv_list)) {
655
656 PJ_LOG(3,(THIS_FILE, " - none - "));
657
658 } else {
659 struct pjsua_srv_pres *uapres;
660
661 uapres = pjsua_var.acc[acc_id].pres_srv_list.next;
662 while (uapres != &pjsua_var.acc[acc_id].pres_srv_list) {
663
664 PJ_LOG(3,(THIS_FILE, " %10s %s",
665 pjsip_evsub_get_state_name(uapres->sub),
666 uapres->remote));
667
668 uapres = uapres->next;
669 }
670 }
671 }
672
673 /*
674 * Dumping all client (UAC) subscriptions
675 */
676 PJ_LOG(3,(THIS_FILE, "Dumping pjsua client subscriptions:"));
677
678 if (pjsua_var.buddy_cnt == 0) {
679
680 PJ_LOG(3,(THIS_FILE, " - no buddy list - "));
681
682 } else {
683 for (i=0; i<PJ_ARRAY_SIZE(pjsua_var.buddy); ++i) {
684
685 if (pjsua_var.buddy[i].uri.slen == 0)
686 continue;
687
688 if (pjsua_var.buddy[i].sub) {
689 PJ_LOG(3,(THIS_FILE, " %10s %.*s",
690 pjsip_evsub_get_state_name(pjsua_var.buddy[i].sub),
691 (int)pjsua_var.buddy[i].uri.slen,
692 pjsua_var.buddy[i].uri.ptr));
693 } else {
694 PJ_LOG(3,(THIS_FILE, " %10s %.*s",
695 "(null)",
696 (int)pjsua_var.buddy[i].uri.slen,
697 pjsua_var.buddy[i].uri.ptr));
698 }
699 }
700 }
701
702 PJSUA_UNLOCK();
703}
704
705
706/***************************************************************************
707 * Server subscription.
Benny Prijono834aee32006-02-19 01:38:06 +0000708 */
709
710/* Proto */
711static pj_bool_t pres_on_rx_request(pjsip_rx_data *rdata);
712
713/* The module instance. */
714static pjsip_module mod_pjsua_pres =
715{
716 NULL, NULL, /* prev, next. */
717 { "mod-pjsua-pres", 14 }, /* Name. */
718 -1, /* Id */
719 PJSIP_MOD_PRIORITY_APPLICATION, /* Priority */
Benny Prijono834aee32006-02-19 01:38:06 +0000720 NULL, /* load() */
721 NULL, /* start() */
722 NULL, /* stop() */
723 NULL, /* unload() */
724 &pres_on_rx_request, /* on_rx_request() */
725 NULL, /* on_rx_response() */
726 NULL, /* on_tx_request. */
727 NULL, /* on_tx_response() */
728 NULL, /* on_tsx_state() */
729
730};
731
732
733/* Callback called when *server* subscription state has changed. */
734static void pres_evsub_on_srv_state( pjsip_evsub *sub, pjsip_event *event)
735{
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000736 pjsua_srv_pres *uapres;
Benny Prijono834aee32006-02-19 01:38:06 +0000737
738 PJ_UNUSED_ARG(event);
739
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000740 PJSUA_LOCK();
741
Benny Prijonoa1e69682007-05-11 15:14:34 +0000742 uapres = (pjsua_srv_pres*) pjsip_evsub_get_mod_data(sub, pjsua_var.mod.id);
Benny Prijono834aee32006-02-19 01:38:06 +0000743 if (uapres) {
Benny Prijono63fba012008-07-17 14:19:10 +0000744 pjsip_evsub_state state;
745
Benny Prijonoba736c42008-07-10 20:45:03 +0000746 PJ_LOG(4,(THIS_FILE, "Server subscription to %s is %s",
Benny Prijono834aee32006-02-19 01:38:06 +0000747 uapres->remote, pjsip_evsub_get_state_name(sub)));
748
Benny Prijono63fba012008-07-17 14:19:10 +0000749 state = pjsip_evsub_get_state(sub);
750
751 if (pjsua_var.ua_cfg.cb.on_srv_subscribe_state) {
752 pj_str_t from;
753
754 from = uapres->dlg->remote.info_str;
755 (*pjsua_var.ua_cfg.cb.on_srv_subscribe_state)(uapres->acc_id,
756 uapres, &from,
757 state, event);
758 }
759
760 if (state == PJSIP_EVSUB_STATE_TERMINATED) {
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000761 pjsip_evsub_set_mod_data(sub, pjsua_var.mod.id, NULL);
Benny Prijono834aee32006-02-19 01:38:06 +0000762 pj_list_erase(uapres);
763 }
764 }
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000765
766 PJSUA_UNLOCK();
Benny Prijono834aee32006-02-19 01:38:06 +0000767}
768
769/* This is called when request is received.
770 * We need to check for incoming SUBSCRIBE request.
771 */
772static pj_bool_t pres_on_rx_request(pjsip_rx_data *rdata)
773{
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000774 int acc_id;
Benny Prijono6f979412006-06-15 12:25:46 +0000775 pjsua_acc *acc;
Benny Prijonoc570f2d2006-07-18 00:33:02 +0000776 pj_str_t contact;
Benny Prijono834aee32006-02-19 01:38:06 +0000777 pjsip_method *req_method = &rdata->msg_info.msg->line.req.method;
778 pjsua_srv_pres *uapres;
779 pjsip_evsub *sub;
780 pjsip_evsub_user pres_cb;
Benny Prijono834aee32006-02-19 01:38:06 +0000781 pjsip_dialog *dlg;
Benny Prijono63fba012008-07-17 14:19:10 +0000782 pjsip_status_code st_code;
783 pj_str_t reason;
Benny Prijonoc61cc042007-06-27 13:01:59 +0000784 pjsip_expires_hdr *expires_hdr;
Benny Prijono63fba012008-07-17 14:19:10 +0000785 pjsua_msg_data msg_data;
Benny Prijono834aee32006-02-19 01:38:06 +0000786 pj_status_t status;
787
Benny Prijono1f61a8f2007-08-16 10:11:44 +0000788 if (pjsip_method_cmp(req_method, pjsip_get_subscribe_method()) != 0)
Benny Prijono834aee32006-02-19 01:38:06 +0000789 return PJ_FALSE;
790
791 /* Incoming SUBSCRIBE: */
792
Benny Prijono384dab42009-10-14 01:58:04 +0000793 /* Don't want to accept the request if shutdown is in progress */
794 if (pjsua_var.thread_quit_flag) {
795 pjsip_endpt_respond_stateless(pjsua_var.endpt, rdata,
796 PJSIP_SC_TEMPORARILY_UNAVAILABLE, NULL,
797 NULL, NULL);
798 return PJ_TRUE;
799 }
800
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000801 PJSUA_LOCK();
802
Benny Prijonoa91a0032006-02-26 21:23:45 +0000803 /* Find which account for the incoming request. */
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000804 acc_id = pjsua_acc_find_for_incoming(rdata);
Benny Prijono6f979412006-06-15 12:25:46 +0000805 acc = &pjsua_var.acc[acc_id];
Benny Prijonoa91a0032006-02-26 21:23:45 +0000806
Benny Prijono6f979412006-06-15 12:25:46 +0000807 PJ_LOG(4,(THIS_FILE, "Creating server subscription, using account %d",
808 acc_id));
809
Benny Prijonoc570f2d2006-07-18 00:33:02 +0000810 /* Create suitable Contact header */
Benny Prijonoddaaf6a2008-04-15 10:37:19 +0000811 if (acc->contact.slen) {
812 contact = acc->contact;
813 } else {
814 status = pjsua_acc_create_uas_contact(rdata->tp_info.pool, &contact,
815 acc_id, rdata);
816 if (status != PJ_SUCCESS) {
817 pjsua_perror(THIS_FILE, "Unable to generate Contact header",
818 status);
819 PJSUA_UNLOCK();
Benny Prijonoa330d452008-08-05 20:14:39 +0000820 pjsip_endpt_respond_stateless(pjsua_var.endpt, rdata, 400, NULL,
821 NULL, NULL);
Benny Prijonoddaaf6a2008-04-15 10:37:19 +0000822 return PJ_TRUE;
823 }
Benny Prijonoc570f2d2006-07-18 00:33:02 +0000824 }
825
Benny Prijono834aee32006-02-19 01:38:06 +0000826 /* Create UAS dialog: */
Benny Prijonodc39fe82006-05-26 12:17:46 +0000827 status = pjsip_dlg_create_uas(pjsip_ua_instance(), rdata,
Benny Prijonoc570f2d2006-07-18 00:33:02 +0000828 &contact, &dlg);
Benny Prijono834aee32006-02-19 01:38:06 +0000829 if (status != PJ_SUCCESS) {
Benny Prijonobcaed6c2006-02-19 15:37:19 +0000830 pjsua_perror(THIS_FILE,
831 "Unable to create UAS dialog for subscription",
832 status);
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000833 PJSUA_UNLOCK();
Benny Prijonoa330d452008-08-05 20:14:39 +0000834 pjsip_endpt_respond_stateless(pjsua_var.endpt, rdata, 400, NULL,
835 NULL, NULL);
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000836 return PJ_TRUE;
Benny Prijono834aee32006-02-19 01:38:06 +0000837 }
838
Benny Prijono48ab2b72007-11-08 09:24:30 +0000839 /* Set credentials and preference. */
Benny Prijono6f979412006-06-15 12:25:46 +0000840 pjsip_auth_clt_set_credentials(&dlg->auth_sess, acc->cred_cnt, acc->cred);
Benny Prijono48ab2b72007-11-08 09:24:30 +0000841 pjsip_auth_clt_set_prefs(&dlg->auth_sess, &acc->cfg.auth_pref);
Benny Prijono6f979412006-06-15 12:25:46 +0000842
Benny Prijono834aee32006-02-19 01:38:06 +0000843 /* Init callback: */
Benny Prijonoac623b32006-07-03 15:19:31 +0000844 pj_bzero(&pres_cb, sizeof(pres_cb));
Benny Prijono834aee32006-02-19 01:38:06 +0000845 pres_cb.on_evsub_state = &pres_evsub_on_srv_state;
846
847 /* Create server presence subscription: */
848 status = pjsip_pres_create_uas( dlg, &pres_cb, rdata, &sub);
849 if (status != PJ_SUCCESS) {
Benny Prijonodbd9d4b2008-09-11 10:25:51 +0000850 int code = PJSIP_ERRNO_TO_SIP_STATUS(status);
851 pjsip_tx_data *tdata;
852
Benny Prijonobcaed6c2006-02-19 15:37:19 +0000853 pjsua_perror(THIS_FILE, "Unable to create server subscription",
854 status);
Benny Prijonodbd9d4b2008-09-11 10:25:51 +0000855
856 if (code==599 || code > 699 || code < 300) {
857 code = 400;
858 }
859
860 status = pjsip_dlg_create_response(dlg, rdata, code, NULL, &tdata);
861 if (status == PJ_SUCCESS) {
862 status = pjsip_dlg_send_response(dlg, pjsip_rdata_get_tsx(rdata),
863 tdata);
864 }
865
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000866 PJSUA_UNLOCK();
867 return PJ_TRUE;
Benny Prijono834aee32006-02-19 01:38:06 +0000868 }
869
Benny Prijono62c5c5b2007-01-13 23:22:40 +0000870 /* If account is locked to specific transport, then lock dialog
871 * to this transport too.
872 */
873 if (acc->cfg.transport_id != PJSUA_INVALID_ID) {
874 pjsip_tpselector tp_sel;
875
876 pjsua_init_tpselector(acc->cfg.transport_id, &tp_sel);
877 pjsip_dlg_set_transport(dlg, &tp_sel);
878 }
879
Benny Prijono834aee32006-02-19 01:38:06 +0000880 /* Attach our data to the subscription: */
Benny Prijonoa1e69682007-05-11 15:14:34 +0000881 uapres = PJ_POOL_ALLOC_T(dlg->pool, pjsua_srv_pres);
Benny Prijono834aee32006-02-19 01:38:06 +0000882 uapres->sub = sub;
Benny Prijonoa1e69682007-05-11 15:14:34 +0000883 uapres->remote = (char*) pj_pool_alloc(dlg->pool, PJSIP_MAX_URL_SIZE);
Benny Prijono63fba012008-07-17 14:19:10 +0000884 uapres->acc_id = acc_id;
885 uapres->dlg = dlg;
Benny Prijono834aee32006-02-19 01:38:06 +0000886 status = pjsip_uri_print(PJSIP_URI_IN_REQ_URI, dlg->remote.info->uri,
887 uapres->remote, PJSIP_MAX_URL_SIZE);
888 if (status < 1)
889 pj_ansi_strcpy(uapres->remote, "<-- url is too long-->");
890 else
891 uapres->remote[status] = '\0';
892
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000893 pjsip_evsub_set_mod_data(sub, pjsua_var.mod.id, uapres);
Benny Prijono834aee32006-02-19 01:38:06 +0000894
895 /* Add server subscription to the list: */
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000896 pj_list_push_back(&pjsua_var.acc[acc_id].pres_srv_list, uapres);
Benny Prijono834aee32006-02-19 01:38:06 +0000897
898
Benny Prijono63fba012008-07-17 14:19:10 +0000899 /* Capture the value of Expires header. */
900 expires_hdr = (pjsip_expires_hdr*)
901 pjsip_msg_find_hdr(rdata->msg_info.msg, PJSIP_H_EXPIRES,
902 NULL);
903 if (expires_hdr)
904 uapres->expires = expires_hdr->ivalue;
905 else
906 uapres->expires = -1;
907
Nanang Izzuddin82f7a412008-12-17 11:36:22 +0000908 st_code = (pjsip_status_code)200;
Benny Prijono63fba012008-07-17 14:19:10 +0000909 reason = pj_str("OK");
910 pjsua_msg_data_init(&msg_data);
911
912 /* Notify application callback, if any */
913 if (pjsua_var.ua_cfg.cb.on_incoming_subscribe) {
914 pjsua_buddy_id buddy_id;
915
Benny Prijono73bb7232009-10-20 13:56:26 +0000916 buddy_id = find_buddy(rdata->msg_info.from->uri);
Benny Prijono63fba012008-07-17 14:19:10 +0000917
918 (*pjsua_var.ua_cfg.cb.on_incoming_subscribe)(acc_id, uapres, buddy_id,
919 &dlg->remote.info_str,
920 rdata, &st_code, &reason,
921 &msg_data);
922 }
923
924 /* Handle rejection case */
925 if (st_code >= 300) {
926 pjsip_tx_data *tdata;
927
928 /* Create response */
929 status = pjsip_dlg_create_response(dlg, rdata, st_code,
930 &reason, &tdata);
931 if (status != PJ_SUCCESS) {
932 pjsua_perror(THIS_FILE, "Error creating response", status);
933 pj_list_erase(uapres);
934 pjsip_pres_terminate(sub, PJ_FALSE);
935 PJSUA_UNLOCK();
936 return PJ_FALSE;
937 }
938
939 /* Add header list, if any */
940 pjsua_process_msg_data(tdata, &msg_data);
941
942 /* Send the response */
943 status = pjsip_dlg_send_response(dlg, pjsip_rdata_get_tsx(rdata),
944 tdata);
945 if (status != PJ_SUCCESS) {
946 pjsua_perror(THIS_FILE, "Error sending response", status);
947 /* This is not fatal */
948 }
949
950 /* Terminate presence subscription */
951 pj_list_erase(uapres);
952 pjsip_pres_terminate(sub, PJ_FALSE);
953 PJSUA_UNLOCK();
954 return PJ_TRUE;
955 }
956
957 /* Create and send 2xx response to the SUBSCRIBE request: */
958 status = pjsip_pres_accept(sub, rdata, st_code, &msg_data.hdr_list);
Benny Prijono834aee32006-02-19 01:38:06 +0000959 if (status != PJ_SUCCESS) {
Benny Prijonobcaed6c2006-02-19 15:37:19 +0000960 pjsua_perror(THIS_FILE, "Unable to accept presence subscription",
961 status);
Benny Prijono834aee32006-02-19 01:38:06 +0000962 pj_list_erase(uapres);
Benny Prijono1c2bf462006-03-05 11:54:02 +0000963 pjsip_pres_terminate(sub, PJ_FALSE);
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000964 PJSUA_UNLOCK();
Benny Prijono834aee32006-02-19 01:38:06 +0000965 return PJ_FALSE;
966 }
967
Benny Prijono63fba012008-07-17 14:19:10 +0000968 /* If code is 200, send NOTIFY now */
969 if (st_code == 200) {
970 pjsua_pres_notify(acc_id, uapres, PJSIP_EVSUB_STATE_ACTIVE,
971 NULL, NULL, PJ_TRUE, &msg_data);
972 }
973
974 /* Done: */
975
976 PJSUA_UNLOCK();
977
978 return PJ_TRUE;
979}
980
981
982/*
983 * Send NOTIFY.
984 */
985PJ_DEF(pj_status_t) pjsua_pres_notify( pjsua_acc_id acc_id,
986 pjsua_srv_pres *srv_pres,
987 pjsip_evsub_state ev_state,
988 const pj_str_t *state_str,
989 const pj_str_t *reason,
990 pj_bool_t with_body,
991 const pjsua_msg_data *msg_data)
992{
993 pjsua_acc *acc;
994 pjsip_pres_status pres_status;
995 pjsua_buddy_id buddy_id;
996 pjsip_tx_data *tdata;
997 pj_status_t status;
998
999 /* Check parameters */
1000 PJ_ASSERT_RETURN(acc_id!=-1 && srv_pres, PJ_EINVAL);
1001
1002 /* Check that account ID is valid */
1003 PJ_ASSERT_RETURN(acc_id>=0 && acc_id<(int)PJ_ARRAY_SIZE(pjsua_var.acc),
1004 PJ_EINVAL);
1005 /* Check that account is valid */
1006 PJ_ASSERT_RETURN(pjsua_var.acc[acc_id].valid, PJ_EINVALIDOP);
1007
1008 PJSUA_LOCK();
1009
1010 acc = &pjsua_var.acc[acc_id];
1011
1012 /* Check that the server presence subscription is still valid */
1013 if (pj_list_find_node(&acc->pres_srv_list, srv_pres) == NULL) {
1014 /* Subscription has been terminated */
1015 PJSUA_UNLOCK();
1016 return PJ_EINVALIDOP;
1017 }
Benny Prijono834aee32006-02-19 01:38:06 +00001018
1019 /* Set our online status: */
Benny Prijonoac623b32006-07-03 15:19:31 +00001020 pj_bzero(&pres_status, sizeof(pres_status));
Benny Prijono834aee32006-02-19 01:38:06 +00001021 pres_status.info_cnt = 1;
Benny Prijono63fba012008-07-17 14:19:10 +00001022 pres_status.info[0].basic_open = acc->online_status;
1023 pres_status.info[0].id = acc->cfg.pidf_tuple_id;
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001024 //Both pjsua_var.local_uri and pjsua_var.contact_uri are enclosed in "<" and ">"
Benny Prijono834aee32006-02-19 01:38:06 +00001025 //causing XML parsing to fail.
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001026 //pres_status.info[0].contact = pjsua_var.local_uri;
Benny Prijono7f6ee022008-07-31 08:32:46 +00001027 /* add RPID information */
1028 pj_memcpy(&pres_status.info[0].rpid, &acc->rpid,
1029 sizeof(pjrpid_element));
Benny Prijono834aee32006-02-19 01:38:06 +00001030
Benny Prijono63fba012008-07-17 14:19:10 +00001031 pjsip_pres_set_status(srv_pres->sub, &pres_status);
Benny Prijono834aee32006-02-19 01:38:06 +00001032
Benny Prijonoc61cc042007-06-27 13:01:59 +00001033 /* Check expires value. If it's zero, send our presense state but
1034 * set subscription state to TERMINATED.
1035 */
Benny Prijono63fba012008-07-17 14:19:10 +00001036 if (srv_pres->expires == 0)
Benny Prijonoc61cc042007-06-27 13:01:59 +00001037 ev_state = PJSIP_EVSUB_STATE_TERMINATED;
Benny Prijonoc61cc042007-06-27 13:01:59 +00001038
Benny Prijono63fba012008-07-17 14:19:10 +00001039 /* Create and send the NOTIFY to active subscription: */
1040 status = pjsip_pres_notify(srv_pres->sub, ev_state, state_str,
1041 reason, &tdata);
Benny Prijono21b9ad92006-08-15 13:11:22 +00001042 if (status == PJ_SUCCESS) {
Benny Prijono63fba012008-07-17 14:19:10 +00001043 /* Force removal of message body if msg_body==FALSE */
1044 if (!with_body) {
1045 tdata->msg->body = NULL;
1046 }
1047 pjsua_process_msg_data(tdata, msg_data);
1048 status = pjsip_pres_send_request( srv_pres->sub, tdata);
Benny Prijono21b9ad92006-08-15 13:11:22 +00001049 }
Benny Prijono834aee32006-02-19 01:38:06 +00001050
1051 if (status != PJ_SUCCESS) {
Benny Prijonobcaed6c2006-02-19 15:37:19 +00001052 pjsua_perror(THIS_FILE, "Unable to create/send NOTIFY",
1053 status);
Benny Prijono63fba012008-07-17 14:19:10 +00001054 pj_list_erase(srv_pres);
1055 pjsip_pres_terminate(srv_pres->sub, PJ_FALSE);
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001056 PJSUA_UNLOCK();
Benny Prijono63fba012008-07-17 14:19:10 +00001057 return status;
Benny Prijono834aee32006-02-19 01:38:06 +00001058 }
1059
1060
Benny Prijonoa17496a2007-10-31 10:20:31 +00001061 /* Subscribe to buddy's presence if we're not subscribed */
Benny Prijono73bb7232009-10-20 13:56:26 +00001062 buddy_id = find_buddy(srv_pres->dlg->remote.info->uri);
Benny Prijonoa17496a2007-10-31 10:20:31 +00001063 if (buddy_id != PJSUA_INVALID_ID) {
1064 pjsua_buddy *b = &pjsua_var.buddy[buddy_id];
1065 if (b->monitor && b->sub == NULL) {
1066 PJ_LOG(4,(THIS_FILE, "Received SUBSCRIBE from buddy %d, "
1067 "activating outgoing subscription", buddy_id));
1068 subscribe_buddy_presence(buddy_id);
1069 }
1070 }
1071
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001072 PJSUA_UNLOCK();
1073
Benny Prijono63fba012008-07-17 14:19:10 +00001074 return PJ_SUCCESS;
Benny Prijono834aee32006-02-19 01:38:06 +00001075}
1076
1077
Benny Prijono3a5e1ab2006-08-15 20:26:34 +00001078/*
1079 * Client presence publication callback.
1080 */
1081static void publish_cb(struct pjsip_publishc_cbparam *param)
1082{
Benny Prijonoa1e69682007-05-11 15:14:34 +00001083 pjsua_acc *acc = (pjsua_acc*) param->token;
Benny Prijono3a5e1ab2006-08-15 20:26:34 +00001084
1085 if (param->code/100 != 2 || param->status != PJ_SUCCESS) {
Benny Prijono53984d12009-04-28 22:19:49 +00001086
1087 pjsip_publishc_destroy(param->pubc);
1088 acc->publish_sess = NULL;
1089
Benny Prijono3a5e1ab2006-08-15 20:26:34 +00001090 if (param->status != PJ_SUCCESS) {
1091 char errmsg[PJ_ERR_MSG_SIZE];
1092
1093 pj_strerror(param->status, errmsg, sizeof(errmsg));
1094 PJ_LOG(1,(THIS_FILE,
1095 "Client publication (PUBLISH) failed, status=%d, msg=%s",
1096 param->status, errmsg));
Benny Prijono53984d12009-04-28 22:19:49 +00001097 } else if (param->code == 412) {
1098 /* 412 (Conditional Request Failed)
1099 * The PUBLISH refresh has failed, retry with new one.
1100 */
1101 pjsua_pres_init_publish_acc(acc->index);
1102
Benny Prijono3a5e1ab2006-08-15 20:26:34 +00001103 } else {
1104 PJ_LOG(1,(THIS_FILE,
1105 "Client publication (PUBLISH) failed (%d/%.*s)",
1106 param->code, (int)param->reason.slen,
1107 param->reason.ptr));
1108 }
1109
Benny Prijono53984d12009-04-28 22:19:49 +00001110 } else {
Benny Prijono534a9ba2009-10-13 14:01:59 +00001111 if (param->expiration < 1) {
Benny Prijono53984d12009-04-28 22:19:49 +00001112 /* Could happen if server "forgot" to include Expires header
1113 * in the response. We will not renew, so destroy the pubc.
1114 */
1115 pjsip_publishc_destroy(param->pubc);
1116 acc->publish_sess = NULL;
1117 }
Benny Prijono3a5e1ab2006-08-15 20:26:34 +00001118 }
1119}
1120
1121
1122/*
1123 * Send PUBLISH request.
1124 */
1125static pj_status_t send_publish(int acc_id, pj_bool_t active)
1126{
1127 pjsua_acc_config *acc_cfg = &pjsua_var.acc[acc_id].cfg;
1128 pjsua_acc *acc = &pjsua_var.acc[acc_id];
1129 pjsip_pres_status pres_status;
1130 pjsip_tx_data *tdata;
1131 pj_status_t status;
1132
1133
1134 /* Create PUBLISH request */
1135 if (active) {
Benny Prijono8c6e8842007-02-24 15:33:54 +00001136 char *bpos;
1137 pj_str_t entity;
1138
Benny Prijono3a5e1ab2006-08-15 20:26:34 +00001139 status = pjsip_publishc_publish(acc->publish_sess, PJ_TRUE, &tdata);
1140 if (status != PJ_SUCCESS) {
1141 pjsua_perror(THIS_FILE, "Error creating PUBLISH request", status);
1142 goto on_error;
1143 }
1144
1145 /* Set our online status: */
1146 pj_bzero(&pres_status, sizeof(pres_status));
1147 pres_status.info_cnt = 1;
1148 pres_status.info[0].basic_open = acc->online_status;
Benny Prijonofe04fb52007-08-24 08:28:52 +00001149 pres_status.info[0].id = acc->cfg.pidf_tuple_id;
Benny Prijono4461c7d2007-08-25 13:36:15 +00001150 /* .. including RPID information */
1151 pj_memcpy(&pres_status.info[0].rpid, &acc->rpid,
1152 sizeof(pjrpid_element));
Benny Prijono3a5e1ab2006-08-15 20:26:34 +00001153
Benny Prijono8c6e8842007-02-24 15:33:54 +00001154 /* Be careful not to send PIDF with presence entity ID containing
1155 * "<" character.
1156 */
1157 if ((bpos=pj_strchr(&acc_cfg->id, '<')) != NULL) {
1158 char *epos = pj_strchr(&acc_cfg->id, '>');
1159 if (epos - bpos < 2) {
1160 pj_assert(!"Unexpected invalid URI");
1161 status = PJSIP_EINVALIDURI;
1162 goto on_error;
1163 }
1164 entity.ptr = bpos+1;
1165 entity.slen = epos - bpos - 1;
1166 } else {
1167 entity = acc_cfg->id;
1168 }
1169
Benny Prijono3a5e1ab2006-08-15 20:26:34 +00001170 /* Create and add PIDF message body */
1171 status = pjsip_pres_create_pidf(tdata->pool, &pres_status,
Benny Prijono8c6e8842007-02-24 15:33:54 +00001172 &entity, &tdata->msg->body);
Benny Prijono3a5e1ab2006-08-15 20:26:34 +00001173 if (status != PJ_SUCCESS) {
1174 pjsua_perror(THIS_FILE, "Error creating PIDF for PUBLISH request",
1175 status);
1176 pjsip_tx_data_dec_ref(tdata);
1177 goto on_error;
1178 }
1179 } else {
1180 status = pjsip_publishc_unpublish(acc->publish_sess, &tdata);
1181 if (status != PJ_SUCCESS) {
1182 pjsua_perror(THIS_FILE, "Error creating PUBLISH request", status);
1183 goto on_error;
1184 }
1185 }
1186
1187 /* Add headers etc */
1188 pjsua_process_msg_data(tdata, NULL);
1189
1190 /* Send the PUBLISH request */
1191 status = pjsip_publishc_send(acc->publish_sess, tdata);
Benny Prijonofe50c9e2009-10-12 07:44:14 +00001192 if (status == PJ_EPENDING) {
1193 PJ_LOG(3,(THIS_FILE, "Previous request is in progress, "
1194 "PUBLISH request is queued"));
1195 } else if (status != PJ_SUCCESS) {
Benny Prijono3a5e1ab2006-08-15 20:26:34 +00001196 pjsua_perror(THIS_FILE, "Error sending PUBLISH request", status);
1197 goto on_error;
1198 }
1199
1200 acc->publish_state = acc->online_status;
1201 return PJ_SUCCESS;
1202
1203on_error:
Benny Prijono29438152007-06-28 02:47:32 +00001204 if (acc->publish_sess) {
1205 pjsip_publishc_destroy(acc->publish_sess);
1206 acc->publish_sess = NULL;
1207 }
Benny Prijono3a5e1ab2006-08-15 20:26:34 +00001208 return status;
1209}
1210
1211
1212/* Create client publish session */
Benny Prijono8b6834f2007-02-24 13:29:22 +00001213pj_status_t pjsua_pres_init_publish_acc(int acc_id)
Benny Prijono3a5e1ab2006-08-15 20:26:34 +00001214{
1215 const pj_str_t STR_PRESENCE = { "presence", 8 };
1216 pjsua_acc_config *acc_cfg = &pjsua_var.acc[acc_id].cfg;
1217 pjsua_acc *acc = &pjsua_var.acc[acc_id];
1218 pj_status_t status;
1219
1220 /* Create and init client publication session */
1221 if (acc_cfg->publish_enabled) {
1222
1223 /* Create client publication */
Benny Prijonofe50c9e2009-10-12 07:44:14 +00001224 status = pjsip_publishc_create(pjsua_var.endpt, &acc_cfg->publish_opt,
1225 acc, &publish_cb,
Benny Prijono3a5e1ab2006-08-15 20:26:34 +00001226 &acc->publish_sess);
1227 if (status != PJ_SUCCESS) {
1228 acc->publish_sess = NULL;
1229 return status;
1230 }
1231
1232 /* Initialize client publication */
1233 status = pjsip_publishc_init(acc->publish_sess, &STR_PRESENCE,
1234 &acc_cfg->id, &acc_cfg->id,
1235 &acc_cfg->id,
Benny Prijono53984d12009-04-28 22:19:49 +00001236 PJSUA_PUBLISH_EXPIRATION);
Benny Prijono3a5e1ab2006-08-15 20:26:34 +00001237 if (status != PJ_SUCCESS) {
1238 acc->publish_sess = NULL;
1239 return status;
1240 }
1241
Benny Prijono703b7d72007-03-20 09:13:24 +00001242 /* Add credential for authentication */
Benny Prijono29438152007-06-28 02:47:32 +00001243 if (acc->cred_cnt) {
1244 pjsip_publishc_set_credentials(acc->publish_sess, acc->cred_cnt,
1245 acc->cred);
1246 }
Benny Prijono703b7d72007-03-20 09:13:24 +00001247
1248 /* Set route-set */
1249 pjsip_publishc_set_route_set(acc->publish_sess, &acc->route_set);
1250
Benny Prijono3a5e1ab2006-08-15 20:26:34 +00001251 /* Send initial PUBLISH request */
1252 if (acc->online_status != 0) {
1253 status = send_publish(acc_id, PJ_TRUE);
1254 if (status != PJ_SUCCESS)
1255 return status;
1256 }
1257
1258 } else {
1259 acc->publish_sess = NULL;
1260 }
1261
1262 return PJ_SUCCESS;
1263}
1264
1265
1266/* Init presence for account */
1267pj_status_t pjsua_pres_init_acc(int acc_id)
1268{
1269 pjsua_acc *acc = &pjsua_var.acc[acc_id];
1270
1271 /* Init presence subscription */
1272 pj_list_init(&acc->pres_srv_list);
1273
Benny Prijono8b6834f2007-02-24 13:29:22 +00001274 return PJ_SUCCESS;
Benny Prijono3a5e1ab2006-08-15 20:26:34 +00001275}
1276
1277
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001278/* Terminate server subscription for the account */
1279void pjsua_pres_delete_acc(int acc_id)
Benny Prijono834aee32006-02-19 01:38:06 +00001280{
Benny Prijono3a5e1ab2006-08-15 20:26:34 +00001281 pjsua_acc *acc = &pjsua_var.acc[acc_id];
1282 pjsua_acc_config *acc_cfg = &pjsua_var.acc[acc_id].cfg;
Benny Prijono834aee32006-02-19 01:38:06 +00001283 pjsua_srv_pres *uapres;
1284
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001285 uapres = pjsua_var.acc[acc_id].pres_srv_list.next;
Benny Prijono834aee32006-02-19 01:38:06 +00001286
Benny Prijono922933b2007-01-21 16:23:56 +00001287 /* Notify all subscribers that we're no longer available */
Benny Prijono3a5e1ab2006-08-15 20:26:34 +00001288 while (uapres != &acc->pres_srv_list) {
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001289
1290 pjsip_pres_status pres_status;
1291 pj_str_t reason = { "noresource", 10 };
Benny Prijono5516f912008-05-05 12:06:08 +00001292 pjsua_srv_pres *next;
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001293 pjsip_tx_data *tdata;
1294
Benny Prijono5516f912008-05-05 12:06:08 +00001295 next = uapres->next;
1296
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001297 pjsip_pres_get_status(uapres->sub, &pres_status);
1298
1299 pres_status.info[0].basic_open = pjsua_var.acc[acc_id].online_status;
1300 pjsip_pres_set_status(uapres->sub, &pres_status);
1301
1302 if (pjsip_pres_notify(uapres->sub,
1303 PJSIP_EVSUB_STATE_TERMINATED, NULL,
1304 &reason, &tdata)==PJ_SUCCESS)
1305 {
1306 pjsip_pres_send_request(uapres->sub, tdata);
1307 }
1308
Benny Prijono5516f912008-05-05 12:06:08 +00001309 uapres = next;
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001310 }
Benny Prijono3a5e1ab2006-08-15 20:26:34 +00001311
Benny Prijono922933b2007-01-21 16:23:56 +00001312 /* Clear server presence subscription list because account might be reused
1313 * later. */
1314 pj_list_init(&acc->pres_srv_list);
1315
1316 /* Terminate presence publication, if any */
Benny Prijono3a5e1ab2006-08-15 20:26:34 +00001317 if (acc->publish_sess) {
1318 acc->online_status = PJ_FALSE;
1319 send_publish(acc_id, PJ_FALSE);
Benny Prijono534a9ba2009-10-13 14:01:59 +00001320 /* By ticket #364, don't destroy the session yet (let the callback
1321 destroy it)
Benny Prijono3a5e1ab2006-08-15 20:26:34 +00001322 if (acc->publish_sess) {
1323 pjsip_publishc_destroy(acc->publish_sess);
1324 acc->publish_sess = NULL;
1325 }
Benny Prijono534a9ba2009-10-13 14:01:59 +00001326 */
Benny Prijono3a5e1ab2006-08-15 20:26:34 +00001327 acc_cfg->publish_enabled = PJ_FALSE;
1328 }
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001329}
1330
1331
Benny Prijono4461c7d2007-08-25 13:36:15 +00001332/* Update server subscription (e.g. when our online status has changed) */
1333void pjsua_pres_update_acc(int acc_id, pj_bool_t force)
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001334{
Benny Prijono3a5e1ab2006-08-15 20:26:34 +00001335 pjsua_acc *acc = &pjsua_var.acc[acc_id];
1336 pjsua_acc_config *acc_cfg = &pjsua_var.acc[acc_id].cfg;
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001337 pjsua_srv_pres *uapres;
1338
1339 uapres = pjsua_var.acc[acc_id].pres_srv_list.next;
1340
Benny Prijono3a5e1ab2006-08-15 20:26:34 +00001341 while (uapres != &acc->pres_srv_list) {
Benny Prijono834aee32006-02-19 01:38:06 +00001342
1343 pjsip_pres_status pres_status;
1344 pjsip_tx_data *tdata;
1345
1346 pjsip_pres_get_status(uapres->sub, &pres_status);
Benny Prijono232759b2008-09-08 12:46:29 +00001347
1348 /* Only send NOTIFY once subscription is active. Some subscriptions
1349 * may still be in NULL (when app is adding a new buddy while in the
1350 * on_incoming_subscribe() callback) or PENDING (when user approval is
1351 * being requested) state and we don't send NOTIFY to these subs until
1352 * the user accepted the request.
1353 */
1354 if (pjsip_evsub_get_state(uapres->sub)==PJSIP_EVSUB_STATE_ACTIVE &&
1355 (force || pres_status.info[0].basic_open != acc->online_status))
1356 {
Benny Prijono4461c7d2007-08-25 13:36:15 +00001357
Benny Prijono3a5e1ab2006-08-15 20:26:34 +00001358 pres_status.info[0].basic_open = acc->online_status;
Benny Prijono4461c7d2007-08-25 13:36:15 +00001359 pj_memcpy(&pres_status.info[0].rpid, &acc->rpid,
1360 sizeof(pjrpid_element));
1361
Benny Prijono834aee32006-02-19 01:38:06 +00001362 pjsip_pres_set_status(uapres->sub, &pres_status);
1363
Benny Prijono21b9ad92006-08-15 13:11:22 +00001364 if (pjsip_pres_current_notify(uapres->sub, &tdata)==PJ_SUCCESS) {
1365 pjsua_process_msg_data(tdata, NULL);
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001366 pjsip_pres_send_request(uapres->sub, tdata);
Benny Prijono21b9ad92006-08-15 13:11:22 +00001367 }
Benny Prijono834aee32006-02-19 01:38:06 +00001368 }
1369
1370 uapres = uapres->next;
1371 }
Benny Prijono3a5e1ab2006-08-15 20:26:34 +00001372
Benny Prijono8b6834f2007-02-24 13:29:22 +00001373 /* Send PUBLISH if required. We only do this when we have a PUBLISH
1374 * session. If we don't have a PUBLISH session, then it could be
1375 * that we're waiting until registration has completed before we
1376 * send the first PUBLISH.
1377 */
1378 if (acc_cfg->publish_enabled && acc->publish_sess) {
Benny Prijono4461c7d2007-08-25 13:36:15 +00001379 if (force || acc->publish_state != acc->online_status) {
Benny Prijono3a5e1ab2006-08-15 20:26:34 +00001380 send_publish(acc_id, PJ_TRUE);
1381 }
1382 }
Benny Prijono834aee32006-02-19 01:38:06 +00001383}
1384
1385
1386
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001387/***************************************************************************
1388 * Client subscription.
Benny Prijono834aee32006-02-19 01:38:06 +00001389 */
1390
Benny Prijono73bb7232009-10-20 13:56:26 +00001391static void buddy_timer_cb(pj_timer_heap_t *th, pj_timer_entry *entry)
1392{
1393 pjsua_buddy *buddy = (pjsua_buddy*)entry->user_data;
1394
1395 PJ_UNUSED_ARG(th);
1396
1397 entry->id = PJ_FALSE;
1398 pjsua_buddy_update_pres(buddy->index);
1399}
1400
1401/* Reschedule subscription refresh timer or terminate the subscription
1402 * refresh timer for the specified buddy.
1403 */
1404static void buddy_resubscribe(pjsua_buddy *buddy, pj_bool_t resched,
1405 unsigned msec_interval)
1406{
1407 if (buddy->timer.id) {
1408 pjsua_cancel_timer(&buddy->timer);
1409 buddy->timer.id = PJ_FALSE;
1410 }
1411
1412 if (resched) {
1413 pj_time_val delay;
1414
Benny Prijono12c01a92009-10-21 02:37:52 +00001415 PJ_LOG(4,(THIS_FILE,
1416 "Resubscribing buddy id %u in %u ms (reason: %.*s)",
1417 buddy->index, msec_interval,
1418 (int)buddy->term_reason.slen,
1419 buddy->term_reason.ptr));
1420
Benny Prijono73bb7232009-10-20 13:56:26 +00001421 pj_timer_entry_init(&buddy->timer, 0, buddy, &buddy_timer_cb);
1422 delay.sec = 0;
1423 delay.msec = msec_interval;
1424 pj_time_val_normalize(&delay);
1425
1426 if (pjsua_schedule_timer(&buddy->timer, &delay)==PJ_SUCCESS)
1427 buddy->timer.id = PJ_TRUE;
1428 }
1429}
1430
Benny Prijono834aee32006-02-19 01:38:06 +00001431/* Callback called when *client* subscription state has changed. */
1432static void pjsua_evsub_on_state( pjsip_evsub *sub, pjsip_event *event)
1433{
1434 pjsua_buddy *buddy;
1435
1436 PJ_UNUSED_ARG(event);
1437
Benny Prijono73bb7232009-10-20 13:56:26 +00001438 /* Note: #937: no need to acuire PJSUA_LOCK here. Since the buddy has
1439 * a dialog attached to it, lock_buddy() will use the dialog
1440 * lock, which we are currently holding!
1441 */
Benny Prijonoa1e69682007-05-11 15:14:34 +00001442 buddy = (pjsua_buddy*) pjsip_evsub_get_mod_data(sub, pjsua_var.mod.id);
Benny Prijono834aee32006-02-19 01:38:06 +00001443 if (buddy) {
Benny Prijonoba736c42008-07-10 20:45:03 +00001444 PJ_LOG(4,(THIS_FILE,
Benny Prijono9fc735d2006-05-28 14:58:12 +00001445 "Presence subscription to %.*s is %s",
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001446 (int)pjsua_var.buddy[buddy->index].uri.slen,
1447 pjsua_var.buddy[buddy->index].uri.ptr,
Benny Prijono834aee32006-02-19 01:38:06 +00001448 pjsip_evsub_get_state_name(sub)));
1449
1450 if (pjsip_evsub_get_state(sub) == PJSIP_EVSUB_STATE_TERMINATED) {
Benny Prijono73bb7232009-10-20 13:56:26 +00001451 int resub_delay = -1;
1452
Benny Prijono63fba012008-07-17 14:19:10 +00001453 if (buddy->term_reason.ptr == NULL) {
1454 buddy->term_reason.ptr = (char*)
1455 pj_pool_alloc(buddy->pool,
1456 PJSUA_BUDDY_SUB_TERM_REASON_LEN);
1457 }
1458 pj_strncpy(&buddy->term_reason,
1459 pjsip_evsub_get_termination_reason(sub),
1460 PJSUA_BUDDY_SUB_TERM_REASON_LEN);
Benny Prijono73bb7232009-10-20 13:56:26 +00001461
1462 buddy->term_code = 200;
1463
1464 /* Determine whether to resubscribe automatically */
Benny Prijonod3d18c32009-11-10 10:54:11 +00001465 if (event && event->type==PJSIP_EVENT_TSX_STATE) {
Benny Prijono73bb7232009-10-20 13:56:26 +00001466 const pjsip_transaction *tsx = event->body.tsx_state.tsx;
1467 if (pjsip_method_cmp(&tsx->method,
1468 &pjsip_subscribe_method)==0)
1469 {
1470 buddy->term_code = tsx->status_code;
1471 switch (tsx->status_code) {
1472 case PJSIP_SC_CALL_TSX_DOES_NOT_EXIST:
1473 /* 481: we refreshed too late? resubscribe
1474 * immediately.
1475 */
Benny Prijono6ab05322009-10-21 03:03:06 +00001476 /* But this must only happen when the 481 is received
1477 * on subscription refresh request. We MUST NOT try to
1478 * resubscribe automatically if the 481 is received
1479 * on the initial SUBSCRIBE (if server returns this
1480 * response for some reason).
1481 */
1482 if (buddy->dlg->remote.contact)
1483 resub_delay = 500;
Benny Prijono73bb7232009-10-20 13:56:26 +00001484 break;
1485 }
1486 } else if (pjsip_method_cmp(&tsx->method,
1487 &pjsip_notify_method)==0)
1488 {
1489 if (pj_stricmp2(&buddy->term_reason, "deactivated")==0 ||
1490 pj_stricmp2(&buddy->term_reason, "timeout")==0) {
1491 /* deactivated: The subscription has been terminated,
1492 * but the subscriber SHOULD retry immediately with
1493 * a new subscription.
1494 */
1495 /* timeout: The subscription has been terminated
1496 * because it was not refreshed before it expired.
1497 * Clients MAY re-subscribe immediately. The
1498 * "retry-after" parameter has no semantics for
1499 * "timeout".
1500 */
1501 resub_delay = 500;
1502 }
1503 else if (pj_stricmp2(&buddy->term_reason, "probation")==0||
1504 pj_stricmp2(&buddy->term_reason, "giveup")==0) {
1505 /* probation: The subscription has been terminated,
1506 * but the client SHOULD retry at some later time.
1507 * If a "retry-after" parameter is also present, the
1508 * client SHOULD wait at least the number of seconds
1509 * specified by that parameter before attempting to re-
1510 * subscribe.
1511 */
1512 /* giveup: The subscription has been terminated because
1513 * the notifier could not obtain authorization in a
1514 * timely fashion. If a "retry-after" parameter is
1515 * also present, the client SHOULD wait at least the
1516 * number of seconds specified by that parameter before
1517 * attempting to re-subscribe; otherwise, the client
1518 * MAY retry immediately, but will likely get put back
1519 * into pending state.
1520 */
1521 const pjsip_sub_state_hdr *sub_hdr;
1522 pj_str_t sub_state = { "Subscription-State", 18 };
1523 const pjsip_msg *msg;
1524
1525 msg = event->body.tsx_state.src.rdata->msg_info.msg;
1526 sub_hdr = (const pjsip_sub_state_hdr*)
1527 pjsip_msg_find_hdr_by_name(msg, &sub_state,
1528 NULL);
1529 if (sub_hdr && sub_hdr->retry_after > 0)
1530 resub_delay = sub_hdr->retry_after * 1000;
1531 }
1532
1533 }
1534 }
1535
1536 /* For other cases of subscription termination, if resubscribe
1537 * timer is not set, schedule with default expiration (plus minus
1538 * some random value, to avoid sending SUBSCRIBEs all at once)
1539 */
1540 if (resub_delay == -1) {
1541 pj_assert(PJSUA_PRES_TIMER >= 3);
1542 resub_delay = PJSUA_PRES_TIMER*1000 - 2500 + (pj_rand()%5000);
1543 }
1544
1545 buddy_resubscribe(buddy, PJ_TRUE, resub_delay);
Benny Prijono6ab05322009-10-21 03:03:06 +00001546
Benny Prijono63fba012008-07-17 14:19:10 +00001547 } else {
Benny Prijono6ab05322009-10-21 03:03:06 +00001548 /* This will clear the last termination code/reason */
Benny Prijono73bb7232009-10-20 13:56:26 +00001549 buddy->term_code = 0;
Benny Prijono63fba012008-07-17 14:19:10 +00001550 buddy->term_reason.slen = 0;
Benny Prijono834aee32006-02-19 01:38:06 +00001551 }
Benny Prijono9fc735d2006-05-28 14:58:12 +00001552
1553 /* Call callback */
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001554 if (pjsua_var.ua_cfg.cb.on_buddy_state)
1555 (*pjsua_var.ua_cfg.cb.on_buddy_state)(buddy->index);
Benny Prijono63fba012008-07-17 14:19:10 +00001556
1557 /* Clear subscription */
1558 if (pjsip_evsub_get_state(sub) == PJSIP_EVSUB_STATE_TERMINATED) {
1559 buddy->sub = NULL;
1560 buddy->status.info_cnt = 0;
Benny Prijono73bb7232009-10-20 13:56:26 +00001561 buddy->dlg = NULL;
Benny Prijono63fba012008-07-17 14:19:10 +00001562 pjsip_evsub_set_mod_data(sub, pjsua_var.mod.id, NULL);
1563 }
Benny Prijono834aee32006-02-19 01:38:06 +00001564 }
1565}
1566
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001567
1568/* Callback when transaction state has changed. */
1569static void pjsua_evsub_on_tsx_state(pjsip_evsub *sub,
1570 pjsip_transaction *tsx,
1571 pjsip_event *event)
1572{
1573 pjsua_buddy *buddy;
1574 pjsip_contact_hdr *contact_hdr;
1575
Benny Prijono73bb7232009-10-20 13:56:26 +00001576 /* Note: #937: no need to acuire PJSUA_LOCK here. Since the buddy has
1577 * a dialog attached to it, lock_buddy() will use the dialog
1578 * lock, which we are currently holding!
1579 */
Benny Prijonoa1e69682007-05-11 15:14:34 +00001580 buddy = (pjsua_buddy*) pjsip_evsub_get_mod_data(sub, pjsua_var.mod.id);
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001581 if (!buddy) {
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001582 return;
1583 }
1584
1585 /* We only use this to update buddy's Contact, when it's not
1586 * set.
1587 */
1588 if (buddy->contact.slen != 0) {
1589 /* Contact already set */
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001590 return;
1591 }
1592
1593 /* Only care about 2xx response to outgoing SUBSCRIBE */
1594 if (tsx->status_code/100 != 2 ||
1595 tsx->role != PJSIP_UAC_ROLE ||
1596 event->type != PJSIP_EVENT_RX_MSG ||
Benny Prijono1f61a8f2007-08-16 10:11:44 +00001597 pjsip_method_cmp(&tsx->method, pjsip_get_subscribe_method())!=0)
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001598 {
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001599 return;
1600 }
1601
1602 /* Find contact header. */
Benny Prijonoa1e69682007-05-11 15:14:34 +00001603 contact_hdr = (pjsip_contact_hdr*)
1604 pjsip_msg_find_hdr(event->body.rx_msg.rdata->msg_info.msg,
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001605 PJSIP_H_CONTACT, NULL);
1606 if (!contact_hdr) {
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001607 return;
1608 }
1609
Benny Prijonoa1e69682007-05-11 15:14:34 +00001610 buddy->contact.ptr = (char*)
Benny Prijonoc91ed8d2008-07-13 12:24:55 +00001611 pj_pool_alloc(buddy->pool, PJSIP_MAX_URL_SIZE);
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001612 buddy->contact.slen = pjsip_uri_print( PJSIP_URI_IN_CONTACT_HDR,
1613 contact_hdr->uri,
1614 buddy->contact.ptr,
1615 PJSIP_MAX_URL_SIZE);
1616 if (buddy->contact.slen < 0)
1617 buddy->contact.slen = 0;
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001618}
1619
1620
Benny Prijono834aee32006-02-19 01:38:06 +00001621/* Callback called when we receive NOTIFY */
1622static void pjsua_evsub_on_rx_notify(pjsip_evsub *sub,
1623 pjsip_rx_data *rdata,
1624 int *p_st_code,
1625 pj_str_t **p_st_text,
1626 pjsip_hdr *res_hdr,
1627 pjsip_msg_body **p_body)
1628{
1629 pjsua_buddy *buddy;
1630
Benny Prijono73bb7232009-10-20 13:56:26 +00001631 /* Note: #937: no need to acuire PJSUA_LOCK here. Since the buddy has
1632 * a dialog attached to it, lock_buddy() will use the dialog
1633 * lock, which we are currently holding!
1634 */
Benny Prijonoa1e69682007-05-11 15:14:34 +00001635 buddy = (pjsua_buddy*) pjsip_evsub_get_mod_data(sub, pjsua_var.mod.id);
Benny Prijono834aee32006-02-19 01:38:06 +00001636 if (buddy) {
1637 /* Update our info. */
1638 pjsip_pres_get_status(sub, &buddy->status);
Benny Prijono834aee32006-02-19 01:38:06 +00001639 }
1640
1641 /* The default is to send 200 response to NOTIFY.
1642 * Just leave it there..
1643 */
1644 PJ_UNUSED_ARG(rdata);
1645 PJ_UNUSED_ARG(p_st_code);
1646 PJ_UNUSED_ARG(p_st_text);
1647 PJ_UNUSED_ARG(res_hdr);
1648 PJ_UNUSED_ARG(p_body);
1649}
1650
1651
1652/* Event subscription callback. */
1653static pjsip_evsub_user pres_callback =
1654{
1655 &pjsua_evsub_on_state,
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001656 &pjsua_evsub_on_tsx_state,
Benny Prijono834aee32006-02-19 01:38:06 +00001657
1658 NULL, /* on_rx_refresh: don't care about SUBSCRIBE refresh, unless
1659 * we want to authenticate
1660 */
1661
1662 &pjsua_evsub_on_rx_notify,
1663
1664 NULL, /* on_client_refresh: Use default behaviour, which is to
1665 * refresh client subscription. */
1666
1667 NULL, /* on_server_timeout: Use default behaviour, which is to send
1668 * NOTIFY to terminate.
1669 */
1670};
1671
1672
1673/* It does what it says.. */
Benny Prijono73bb7232009-10-20 13:56:26 +00001674static void subscribe_buddy_presence(pjsua_buddy_id buddy_id)
Benny Prijono834aee32006-02-19 01:38:06 +00001675{
Benny Prijonoc91ed8d2008-07-13 12:24:55 +00001676 pj_pool_t *tmp_pool = NULL;
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001677 pjsua_buddy *buddy;
1678 int acc_id;
1679 pjsua_acc *acc;
Benny Prijonoc570f2d2006-07-18 00:33:02 +00001680 pj_str_t contact;
Benny Prijono834aee32006-02-19 01:38:06 +00001681 pjsip_tx_data *tdata;
1682 pj_status_t status;
1683
Benny Prijono73bb7232009-10-20 13:56:26 +00001684 buddy = &pjsua_var.buddy[buddy_id];
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001685 acc_id = pjsua_acc_find_for_outgoing(&buddy->uri);
Benny Prijono8b1889b2006-06-06 18:40:40 +00001686
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001687 acc = &pjsua_var.acc[acc_id];
Benny Prijonoa91a0032006-02-26 21:23:45 +00001688
Benny Prijonob4a17c92006-07-10 14:40:21 +00001689 PJ_LOG(4,(THIS_FILE, "Using account %d for buddy %d subscription",
Benny Prijono73bb7232009-10-20 13:56:26 +00001690 acc_id, buddy_id));
Benny Prijonob4a17c92006-07-10 14:40:21 +00001691
Benny Prijonoddaaf6a2008-04-15 10:37:19 +00001692 /* Generate suitable Contact header unless one is already set in
1693 * the account
1694 */
1695 if (acc->contact.slen) {
1696 contact = acc->contact;
1697 } else {
Benny Prijonoc91ed8d2008-07-13 12:24:55 +00001698 tmp_pool = pjsua_pool_create("tmpbuddy", 512, 256);
1699
1700 status = pjsua_acc_create_uac_contact(tmp_pool, &contact,
Benny Prijonoddaaf6a2008-04-15 10:37:19 +00001701 acc_id, &buddy->uri);
1702 if (status != PJ_SUCCESS) {
1703 pjsua_perror(THIS_FILE, "Unable to generate Contact header",
1704 status);
Benny Prijonoc91ed8d2008-07-13 12:24:55 +00001705 pj_pool_release(tmp_pool);
Benny Prijonoddaaf6a2008-04-15 10:37:19 +00001706 return;
1707 }
Benny Prijonoc570f2d2006-07-18 00:33:02 +00001708 }
1709
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001710 /* Create UAC dialog */
Benny Prijono834aee32006-02-19 01:38:06 +00001711 status = pjsip_dlg_create_uac( pjsip_ua_instance(),
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001712 &acc->cfg.id,
Benny Prijonoc570f2d2006-07-18 00:33:02 +00001713 &contact,
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001714 &buddy->uri,
Benny Prijonof9c40c32007-06-28 07:20:26 +00001715 NULL, &buddy->dlg);
Benny Prijono834aee32006-02-19 01:38:06 +00001716 if (status != PJ_SUCCESS) {
Benny Prijonobcaed6c2006-02-19 15:37:19 +00001717 pjsua_perror(THIS_FILE, "Unable to create dialog",
1718 status);
Benny Prijonoc91ed8d2008-07-13 12:24:55 +00001719 if (tmp_pool) pj_pool_release(tmp_pool);
Benny Prijono834aee32006-02-19 01:38:06 +00001720 return;
1721 }
1722
Benny Prijono0bd5eb92009-04-14 11:10:31 +00001723 /* Increment the dialog's lock otherwise when presence session creation
1724 * fails the dialog will be destroyed prematurely.
1725 */
1726 pjsip_dlg_inc_lock(buddy->dlg);
1727
Benny Prijonof9c40c32007-06-28 07:20:26 +00001728 status = pjsip_pres_create_uac( buddy->dlg, &pres_callback,
Benny Prijonodc752ca2006-09-22 16:55:42 +00001729 PJSIP_EVSUB_NO_EVENT_ID, &buddy->sub);
1730 if (status != PJ_SUCCESS) {
Benny Prijono73bb7232009-10-20 13:56:26 +00001731 buddy->sub = NULL;
Benny Prijonodc752ca2006-09-22 16:55:42 +00001732 pjsua_perror(THIS_FILE, "Unable to create presence client",
1733 status);
Benny Prijono0bd5eb92009-04-14 11:10:31 +00001734 /* This should destroy the dialog since there's no session
1735 * referencing it
1736 */
Benny Prijono011e3f22009-12-10 05:16:23 +00001737 if (buddy->dlg) pjsip_dlg_dec_lock(buddy->dlg);
Benny Prijonoc91ed8d2008-07-13 12:24:55 +00001738 if (tmp_pool) pj_pool_release(tmp_pool);
Benny Prijonodc752ca2006-09-22 16:55:42 +00001739 return;
1740 }
1741
Benny Prijono62c5c5b2007-01-13 23:22:40 +00001742 /* If account is locked to specific transport, then lock dialog
1743 * to this transport too.
1744 */
1745 if (acc->cfg.transport_id != PJSUA_INVALID_ID) {
1746 pjsip_tpselector tp_sel;
1747
1748 pjsua_init_tpselector(acc->cfg.transport_id, &tp_sel);
Benny Prijonof9c40c32007-06-28 07:20:26 +00001749 pjsip_dlg_set_transport(buddy->dlg, &tp_sel);
Benny Prijono62c5c5b2007-01-13 23:22:40 +00001750 }
1751
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001752 /* Set route-set */
1753 if (!pj_list_empty(&acc->route_set)) {
Benny Prijonof9c40c32007-06-28 07:20:26 +00001754 pjsip_dlg_set_route_set(buddy->dlg, &acc->route_set);
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001755 }
1756
1757 /* Set credentials */
1758 if (acc->cred_cnt) {
Benny Prijonof9c40c32007-06-28 07:20:26 +00001759 pjsip_auth_clt_set_credentials( &buddy->dlg->auth_sess,
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001760 acc->cred_cnt, acc->cred);
Benny Prijonodc39fe82006-05-26 12:17:46 +00001761 }
Benny Prijono1d8d6082006-04-29 12:38:25 +00001762
Benny Prijono48ab2b72007-11-08 09:24:30 +00001763 /* Set authentication preference */
1764 pjsip_auth_clt_set_prefs(&buddy->dlg->auth_sess, &acc->cfg.auth_pref);
1765
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001766 pjsip_evsub_set_mod_data(buddy->sub, pjsua_var.mod.id, buddy);
Benny Prijono834aee32006-02-19 01:38:06 +00001767
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001768 status = pjsip_pres_initiate(buddy->sub, -1, &tdata);
Benny Prijono834aee32006-02-19 01:38:06 +00001769 if (status != PJ_SUCCESS) {
Benny Prijono011e3f22009-12-10 05:16:23 +00001770 if (buddy->dlg) pjsip_dlg_dec_lock(buddy->dlg);
Benny Prijonoa6992c52007-06-05 22:58:32 +00001771 if (buddy->sub) {
1772 pjsip_pres_terminate(buddy->sub, PJ_FALSE);
1773 }
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001774 buddy->sub = NULL;
Benny Prijonobcaed6c2006-02-19 15:37:19 +00001775 pjsua_perror(THIS_FILE, "Unable to create initial SUBSCRIBE",
1776 status);
Benny Prijonoc91ed8d2008-07-13 12:24:55 +00001777 if (tmp_pool) pj_pool_release(tmp_pool);
Benny Prijono834aee32006-02-19 01:38:06 +00001778 return;
1779 }
1780
Benny Prijono21b9ad92006-08-15 13:11:22 +00001781 pjsua_process_msg_data(tdata, NULL);
1782
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001783 status = pjsip_pres_send_request(buddy->sub, tdata);
Benny Prijono834aee32006-02-19 01:38:06 +00001784 if (status != PJ_SUCCESS) {
Benny Prijono011e3f22009-12-10 05:16:23 +00001785 if (buddy->dlg) pjsip_dlg_dec_lock(buddy->dlg);
Benny Prijonoa6992c52007-06-05 22:58:32 +00001786 if (buddy->sub) {
1787 pjsip_pres_terminate(buddy->sub, PJ_FALSE);
1788 }
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001789 buddy->sub = NULL;
Benny Prijonobcaed6c2006-02-19 15:37:19 +00001790 pjsua_perror(THIS_FILE, "Unable to send initial SUBSCRIBE",
1791 status);
Benny Prijonoc91ed8d2008-07-13 12:24:55 +00001792 if (tmp_pool) pj_pool_release(tmp_pool);
Benny Prijono834aee32006-02-19 01:38:06 +00001793 return;
1794 }
Benny Prijonoc91ed8d2008-07-13 12:24:55 +00001795
Benny Prijono0bd5eb92009-04-14 11:10:31 +00001796 pjsip_dlg_dec_lock(buddy->dlg);
Benny Prijonoc91ed8d2008-07-13 12:24:55 +00001797 if (tmp_pool) pj_pool_release(tmp_pool);
Benny Prijono834aee32006-02-19 01:38:06 +00001798}
1799
1800
1801/* It does what it says... */
Benny Prijono73bb7232009-10-20 13:56:26 +00001802static void unsubscribe_buddy_presence(pjsua_buddy_id buddy_id)
Benny Prijono834aee32006-02-19 01:38:06 +00001803{
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001804 pjsua_buddy *buddy;
Benny Prijono834aee32006-02-19 01:38:06 +00001805 pjsip_tx_data *tdata;
1806 pj_status_t status;
1807
Benny Prijono73bb7232009-10-20 13:56:26 +00001808 buddy = &pjsua_var.buddy[buddy_id];
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001809
1810 if (buddy->sub == NULL)
Benny Prijono834aee32006-02-19 01:38:06 +00001811 return;
1812
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001813 if (pjsip_evsub_get_state(buddy->sub) == PJSIP_EVSUB_STATE_TERMINATED) {
Benny Prijono73bb7232009-10-20 13:56:26 +00001814 buddy->sub = NULL;
Benny Prijono834aee32006-02-19 01:38:06 +00001815 return;
1816 }
1817
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001818 status = pjsip_pres_initiate( buddy->sub, 0, &tdata);
Benny Prijono21b9ad92006-08-15 13:11:22 +00001819 if (status == PJ_SUCCESS) {
1820 pjsua_process_msg_data(tdata, NULL);
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001821 status = pjsip_pres_send_request( buddy->sub, tdata );
Benny Prijono21b9ad92006-08-15 13:11:22 +00001822 }
Benny Prijono834aee32006-02-19 01:38:06 +00001823
Benny Prijono48da92e2007-05-16 08:56:30 +00001824 if (status != PJ_SUCCESS && buddy->sub) {
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001825 pjsip_pres_terminate(buddy->sub, PJ_FALSE);
1826 buddy->sub = NULL;
Benny Prijonobcaed6c2006-02-19 15:37:19 +00001827 pjsua_perror(THIS_FILE, "Unable to unsubscribe presence",
1828 status);
Benny Prijono834aee32006-02-19 01:38:06 +00001829 }
1830}
1831
Benny Prijono834aee32006-02-19 01:38:06 +00001832/* It does what it says.. */
Benny Prijono73bb7232009-10-20 13:56:26 +00001833static pj_status_t refresh_client_subscriptions(void)
Benny Prijono834aee32006-02-19 01:38:06 +00001834{
Benny Prijono9fc735d2006-05-28 14:58:12 +00001835 unsigned i;
Benny Prijono73bb7232009-10-20 13:56:26 +00001836 pj_status_t status;
Benny Prijonof9c40c32007-06-28 07:20:26 +00001837
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001838 for (i=0; i<PJ_ARRAY_SIZE(pjsua_var.buddy); ++i) {
Benny Prijono73bb7232009-10-20 13:56:26 +00001839 struct buddy_lock lck;
Benny Prijono834aee32006-02-19 01:38:06 +00001840
Benny Prijono73bb7232009-10-20 13:56:26 +00001841 if (!pjsua_buddy_is_valid(i))
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001842 continue;
1843
Benny Prijono73bb7232009-10-20 13:56:26 +00001844 status = lock_buddy("refresh_client_subscriptions()", i, &lck, 0);
1845 if (status != PJ_SUCCESS)
1846 return status;
1847
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001848 if (pjsua_var.buddy[i].monitor && !pjsua_var.buddy[i].sub) {
Benny Prijono834aee32006-02-19 01:38:06 +00001849 subscribe_buddy_presence(i);
1850
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001851 } else if (!pjsua_var.buddy[i].monitor && pjsua_var.buddy[i].sub) {
Benny Prijono834aee32006-02-19 01:38:06 +00001852 unsubscribe_buddy_presence(i);
1853
1854 }
Benny Prijono73bb7232009-10-20 13:56:26 +00001855
1856 unlock_buddy(&lck);
Benny Prijono834aee32006-02-19 01:38:06 +00001857 }
Benny Prijonof9c40c32007-06-28 07:20:26 +00001858
Benny Prijono73bb7232009-10-20 13:56:26 +00001859 return PJ_SUCCESS;
Benny Prijono834aee32006-02-19 01:38:06 +00001860}
1861
Benny Prijono4dd961b2009-10-26 11:21:37 +00001862/***************************************************************************
1863 * MWI
1864 */
1865/* Callback called when *client* subscription state has changed. */
1866static void mwi_evsub_on_state( pjsip_evsub *sub, pjsip_event *event)
1867{
1868 pjsua_acc *acc;
1869
1870 PJ_UNUSED_ARG(event);
1871
1872 /* Note: #937: no need to acuire PJSUA_LOCK here. Since the buddy has
1873 * a dialog attached to it, lock_buddy() will use the dialog
1874 * lock, which we are currently holding!
1875 */
1876 acc = (pjsua_acc*) pjsip_evsub_get_mod_data(sub, pjsua_var.mod.id);
1877 if (!acc)
1878 return;
1879
1880 PJ_LOG(4,(THIS_FILE,
1881 "MWI subscription for %.*s is %s",
1882 (int)acc->cfg.id.slen, acc->cfg.id.ptr,
1883 pjsip_evsub_get_state_name(sub)));
1884
1885 if (pjsip_evsub_get_state(sub) == PJSIP_EVSUB_STATE_TERMINATED) {
1886 /* Clear subscription */
1887 acc->mwi_dlg = NULL;
1888 acc->mwi_sub = NULL;
1889 pjsip_evsub_set_mod_data(sub, pjsua_var.mod.id, NULL);
1890
1891 }
1892}
1893
1894/* Callback called when we receive NOTIFY */
1895static void mwi_evsub_on_rx_notify(pjsip_evsub *sub,
1896 pjsip_rx_data *rdata,
1897 int *p_st_code,
1898 pj_str_t **p_st_text,
1899 pjsip_hdr *res_hdr,
1900 pjsip_msg_body **p_body)
1901{
1902 pjsua_mwi_info mwi_info;
1903 pjsua_acc *acc;
1904
1905 PJ_UNUSED_ARG(p_st_code);
1906 PJ_UNUSED_ARG(p_st_text);
1907 PJ_UNUSED_ARG(res_hdr);
1908 PJ_UNUSED_ARG(p_body);
1909
1910 acc = (pjsua_acc*) pjsip_evsub_get_mod_data(sub, pjsua_var.mod.id);
1911 if (!acc)
1912 return;
1913
1914 /* Construct mwi_info */
1915 pj_bzero(&mwi_info, sizeof(mwi_info));
1916 mwi_info.evsub = sub;
1917 mwi_info.rdata = rdata;
1918
1919 /* Call callback */
1920 if (pjsua_var.ua_cfg.cb.on_mwi_info) {
1921 (*pjsua_var.ua_cfg.cb.on_mwi_info)(acc->index, &mwi_info);
1922 }
1923}
1924
1925
1926/* Event subscription callback. */
1927static pjsip_evsub_user mwi_cb =
1928{
1929 &mwi_evsub_on_state,
1930 NULL, /* on_tsx_state: not interested */
1931 NULL, /* on_rx_refresh: don't care about SUBSCRIBE refresh, unless
1932 * we want to authenticate
1933 */
1934
1935 &mwi_evsub_on_rx_notify,
1936
1937 NULL, /* on_client_refresh: Use default behaviour, which is to
1938 * refresh client subscription. */
1939
1940 NULL, /* on_server_timeout: Use default behaviour, which is to send
1941 * NOTIFY to terminate.
1942 */
1943};
1944
1945void pjsua_start_mwi(pjsua_acc *acc)
1946{
1947 pj_pool_t *tmp_pool = NULL;
1948 pj_str_t contact;
1949 pjsip_tx_data *tdata;
1950 pj_status_t status;
1951
1952 if (!acc->cfg.mwi_enabled) {
1953 if (acc->mwi_sub) {
1954 /* Terminate MWI subscription */
1955 pjsip_tx_data *tdata;
1956 pjsip_evsub *sub = acc->mwi_sub;
1957
1958 /* Detach sub from this account */
1959 acc->mwi_sub = NULL;
1960 acc->mwi_dlg = NULL;
1961 pjsip_evsub_set_mod_data(sub, pjsua_var.mod.id, NULL);
1962
1963 /* Unsubscribe */
1964 status = pjsip_mwi_initiate(acc->mwi_sub, 0, &tdata);
1965 if (status == PJ_SUCCESS) {
1966 status = pjsip_mwi_send_request(acc->mwi_sub, tdata);
1967 }
1968 }
1969 return;
1970 }
1971
1972 if (acc->mwi_sub) {
1973 /* Subscription is already active */
1974 return;
1975
1976 }
1977
1978 /* Generate suitable Contact header unless one is already set in
1979 * the account
1980 */
1981 if (acc->contact.slen) {
1982 contact = acc->contact;
1983 } else {
1984 tmp_pool = pjsua_pool_create("tmpmwi", 512, 256);
1985 status = pjsua_acc_create_uac_contact(tmp_pool, &contact,
1986 acc->index, &acc->cfg.id);
1987 if (status != PJ_SUCCESS) {
1988 pjsua_perror(THIS_FILE, "Unable to generate Contact header",
1989 status);
1990 pj_pool_release(tmp_pool);
1991 return;
1992 }
1993 }
1994
1995 /* Create UAC dialog */
1996 status = pjsip_dlg_create_uac( pjsip_ua_instance(),
1997 &acc->cfg.id,
1998 &contact,
1999 &acc->cfg.id,
2000 NULL, &acc->mwi_dlg);
2001 if (status != PJ_SUCCESS) {
2002 pjsua_perror(THIS_FILE, "Unable to create dialog", status);
2003 if (tmp_pool) pj_pool_release(tmp_pool);
2004 return;
2005 }
2006
2007 /* Increment the dialog's lock otherwise when presence session creation
2008 * fails the dialog will be destroyed prematurely.
2009 */
2010 pjsip_dlg_inc_lock(acc->mwi_dlg);
2011
2012 /* Create UAC subscription */
2013 status = pjsip_mwi_create_uac(acc->mwi_dlg, &mwi_cb,
2014 PJSIP_EVSUB_NO_EVENT_ID, &acc->mwi_sub);
2015 if (status != PJ_SUCCESS) {
2016 pjsua_perror(THIS_FILE, "Error creating MWI subscription", status);
2017 if (tmp_pool) pj_pool_release(tmp_pool);
Benny Prijono011e3f22009-12-10 05:16:23 +00002018 if (acc->mwi_dlg) pjsip_dlg_dec_lock(acc->mwi_dlg);
Benny Prijono4dd961b2009-10-26 11:21:37 +00002019 return;
2020 }
2021
2022 /* If account is locked to specific transport, then lock dialog
2023 * to this transport too.
2024 */
2025 if (acc->cfg.transport_id != PJSUA_INVALID_ID) {
2026 pjsip_tpselector tp_sel;
2027
2028 pjsua_init_tpselector(acc->cfg.transport_id, &tp_sel);
2029 pjsip_dlg_set_transport(acc->mwi_dlg, &tp_sel);
2030 }
2031
2032 /* Set route-set */
2033 if (!pj_list_empty(&acc->route_set)) {
2034 pjsip_dlg_set_route_set(acc->mwi_dlg, &acc->route_set);
2035 }
2036
2037 /* Set credentials */
2038 if (acc->cred_cnt) {
2039 pjsip_auth_clt_set_credentials( &acc->mwi_dlg->auth_sess,
2040 acc->cred_cnt, acc->cred);
2041 }
2042
2043 /* Set authentication preference */
2044 pjsip_auth_clt_set_prefs(&acc->mwi_dlg->auth_sess, &acc->cfg.auth_pref);
2045
2046 pjsip_evsub_set_mod_data(acc->mwi_sub, pjsua_var.mod.id, acc);
2047
2048 status = pjsip_mwi_initiate(acc->mwi_sub, -1, &tdata);
2049 if (status != PJ_SUCCESS) {
Benny Prijono011e3f22009-12-10 05:16:23 +00002050 if (acc->mwi_dlg) pjsip_dlg_dec_lock(acc->mwi_dlg);
Benny Prijono4dd961b2009-10-26 11:21:37 +00002051 if (acc->mwi_sub) {
2052 pjsip_pres_terminate(acc->mwi_sub, PJ_FALSE);
2053 }
2054 acc->mwi_sub = NULL;
2055 acc->mwi_dlg = NULL;
2056 pjsua_perror(THIS_FILE, "Unable to create initial MWI SUBSCRIBE",
2057 status);
2058 if (tmp_pool) pj_pool_release(tmp_pool);
2059 return;
2060 }
2061
2062 pjsua_process_msg_data(tdata, NULL);
2063
2064 status = pjsip_pres_send_request(acc->mwi_sub, tdata);
2065 if (status != PJ_SUCCESS) {
Benny Prijono011e3f22009-12-10 05:16:23 +00002066 if (acc->mwi_dlg) pjsip_dlg_dec_lock(acc->mwi_dlg);
Benny Prijono4dd961b2009-10-26 11:21:37 +00002067 if (acc->mwi_sub) {
2068 pjsip_pres_terminate(acc->mwi_sub, PJ_FALSE);
2069 }
2070 acc->mwi_sub = NULL;
2071 acc->mwi_dlg = NULL;
2072 pjsua_perror(THIS_FILE, "Unable to send initial MWI SUBSCRIBE",
2073 status);
2074 if (tmp_pool) pj_pool_release(tmp_pool);
2075 return;
2076 }
2077
2078 pjsip_dlg_dec_lock(acc->mwi_dlg);
2079 if (tmp_pool) pj_pool_release(tmp_pool);
2080
2081}
2082
2083
Benny Prijonofe1bd342009-11-20 23:33:07 +00002084/***************************************************************************
2085 * Unsolicited MWI
2086 */
2087static pj_bool_t unsolicited_mwi_on_rx_request(pjsip_rx_data *rdata)
2088{
2089 pjsip_msg *msg = rdata->msg_info.msg;
2090 pj_str_t EVENT_HDR = { "Event", 5 };
2091 pj_str_t MWI = { "message-summary", 15 };
2092 pjsip_event_hdr *eh;
2093
2094 if (pjsip_method_cmp(&msg->line.req.method, &pjsip_notify_method)!=0) {
2095 /* Only interested with NOTIFY request */
2096 return PJ_FALSE;
2097 }
2098
2099 eh = (pjsip_event_hdr*) pjsip_msg_find_hdr_by_name(msg, &EVENT_HDR, NULL);
2100 if (!eh) {
2101 /* Something wrong with the request, it has no Event hdr */
2102 return PJ_FALSE;
2103 }
2104
2105 if (pj_stricmp(&eh->event_type, &MWI) != 0) {
2106 /* Not MWI event */
2107 return PJ_FALSE;
2108 }
2109
2110 /* Got unsolicited MWI request, respond with 200/OK first */
2111 pjsip_endpt_respond(pjsua_get_pjsip_endpt(), NULL, rdata, 200, NULL,
2112 NULL, NULL, NULL);
2113
2114
2115 /* Call callback */
2116 if (pjsua_var.ua_cfg.cb.on_mwi_info) {
2117 pjsua_acc_id acc_id;
2118 pjsua_mwi_info mwi_info;
2119
2120 acc_id = pjsua_acc_find_for_incoming(rdata);
2121
2122 pj_bzero(&mwi_info, sizeof(mwi_info));
2123 mwi_info.rdata = rdata;
2124
2125 (*pjsua_var.ua_cfg.cb.on_mwi_info)(acc_id, &mwi_info);
2126 }
2127
2128
2129 return PJ_TRUE;
2130}
2131
2132/* The module instance. */
2133static pjsip_module pjsua_unsolicited_mwi_mod =
2134{
2135 NULL, NULL, /* prev, next. */
2136 { "mod-unsolicited-mwi", 19 }, /* Name. */
2137 -1, /* Id */
2138 PJSIP_MOD_PRIORITY_APPLICATION, /* Priority */
2139 NULL, /* load() */
2140 NULL, /* start() */
2141 NULL, /* stop() */
2142 NULL, /* unload() */
2143 &unsolicited_mwi_on_rx_request, /* on_rx_request() */
2144 NULL, /* on_rx_response() */
2145 NULL, /* on_tx_request. */
2146 NULL, /* on_tx_response() */
2147 NULL, /* on_tsx_state() */
2148};
2149
2150static pj_status_t enable_unsolicited_mwi(void)
2151{
2152 pj_status_t status;
2153
2154 status = pjsip_endpt_register_module(pjsua_get_pjsip_endpt(),
2155 &pjsua_unsolicited_mwi_mod);
2156 if (status != PJ_SUCCESS)
2157 pjsua_perror(THIS_FILE, "Error registering unsolicited MWI module",
2158 status);
2159
2160 return status;
2161}
2162
2163
2164
Benny Prijono4dd961b2009-10-26 11:21:37 +00002165/***************************************************************************/
2166
Benny Prijono7a5f5102007-05-29 00:33:09 +00002167/* Timer callback to re-create client subscription */
2168static void pres_timer_cb(pj_timer_heap_t *th,
2169 pj_timer_entry *entry)
2170{
Benny Prijono53984d12009-04-28 22:19:49 +00002171 unsigned i;
Benny Prijono7a5f5102007-05-29 00:33:09 +00002172 pj_time_val delay = { PJSUA_PRES_TIMER, 0 };
2173
Benny Prijono4dd961b2009-10-26 11:21:37 +00002174 entry->id = PJ_FALSE;
2175
2176 /* Retry failed PUBLISH and MWI SUBSCRIBE requests */
Benny Prijono53984d12009-04-28 22:19:49 +00002177 for (i=0; i<PJ_ARRAY_SIZE(pjsua_var.acc); ++i) {
2178 pjsua_acc *acc = &pjsua_var.acc[i];
Benny Prijono4dd961b2009-10-26 11:21:37 +00002179
2180 /* Retry PUBLISH */
Benny Prijono53984d12009-04-28 22:19:49 +00002181 if (acc->cfg.publish_enabled && acc->publish_sess==NULL)
2182 pjsua_pres_init_publish_acc(acc->index);
Benny Prijono53984d12009-04-28 22:19:49 +00002183
Benny Prijono4dd961b2009-10-26 11:21:37 +00002184 /* Re-subscribe MWI subscription if it's terminated prematurely */
2185 if (acc->cfg.mwi_enabled && !acc->mwi_sub)
2186 pjsua_start_mwi(acc);
2187 }
Benny Prijono73bb7232009-10-20 13:56:26 +00002188
2189 /* #937: No need to do bulk client refresh, as buddies have their
2190 * own individual timer now.
2191 */
2192 //refresh_client_subscriptions();
Benny Prijono7a5f5102007-05-29 00:33:09 +00002193
2194 pjsip_endpt_schedule_timer(pjsua_var.endpt, entry, &delay);
2195 entry->id = PJ_TRUE;
2196
Benny Prijonof9c40c32007-06-28 07:20:26 +00002197 PJ_UNUSED_ARG(th);
Benny Prijono7a5f5102007-05-29 00:33:09 +00002198}
2199
Benny Prijono834aee32006-02-19 01:38:06 +00002200
2201/*
2202 * Init presence
2203 */
2204pj_status_t pjsua_pres_init()
2205{
Benny Prijonoeebe9af2006-06-13 22:57:13 +00002206 unsigned i;
Benny Prijono834aee32006-02-19 01:38:06 +00002207 pj_status_t status;
2208
Benny Prijonoeebe9af2006-06-13 22:57:13 +00002209 status = pjsip_endpt_register_module( pjsua_var.endpt, &mod_pjsua_pres);
Benny Prijono834aee32006-02-19 01:38:06 +00002210 if (status != PJ_SUCCESS) {
Benny Prijonobcaed6c2006-02-19 15:37:19 +00002211 pjsua_perror(THIS_FILE, "Unable to register pjsua presence module",
2212 status);
Benny Prijono834aee32006-02-19 01:38:06 +00002213 }
2214
Benny Prijonoeebe9af2006-06-13 22:57:13 +00002215 for (i=0; i<PJ_ARRAY_SIZE(pjsua_var.buddy); ++i) {
2216 reset_buddy(i);
2217 }
2218
Benny Prijono834aee32006-02-19 01:38:06 +00002219 return status;
2220}
2221
Benny Prijonoeebe9af2006-06-13 22:57:13 +00002222
Benny Prijono834aee32006-02-19 01:38:06 +00002223/*
Benny Prijonoeebe9af2006-06-13 22:57:13 +00002224 * Start presence subsystem.
Benny Prijono9fc735d2006-05-28 14:58:12 +00002225 */
Benny Prijonoeebe9af2006-06-13 22:57:13 +00002226pj_status_t pjsua_pres_start(void)
Benny Prijono9fc735d2006-05-28 14:58:12 +00002227{
Benny Prijono7a5f5102007-05-29 00:33:09 +00002228 /* Start presence timer to re-subscribe to buddy's presence when
2229 * subscription has failed.
2230 */
2231 if (pjsua_var.pres_timer.id == PJ_FALSE) {
2232 pj_time_val pres_interval = {PJSUA_PRES_TIMER, 0};
2233
2234 pjsua_var.pres_timer.cb = &pres_timer_cb;
2235 pjsip_endpt_schedule_timer(pjsua_var.endpt, &pjsua_var.pres_timer,
2236 &pres_interval);
Benny Prijono97276602007-06-23 01:07:08 +00002237 pjsua_var.pres_timer.id = PJ_TRUE;
Benny Prijono7a5f5102007-05-29 00:33:09 +00002238 }
2239
Benny Prijonofe1bd342009-11-20 23:33:07 +00002240 if (pjsua_var.ua_cfg.enable_unsolicited_mwi) {
2241 pj_status_t status = enable_unsolicited_mwi();
2242 if (status != PJ_SUCCESS)
2243 return status;
2244 }
2245
Benny Prijono9fc735d2006-05-28 14:58:12 +00002246 return PJ_SUCCESS;
2247}
2248
2249
2250/*
Benny Prijono834aee32006-02-19 01:38:06 +00002251 * Shutdown presence.
2252 */
2253void pjsua_pres_shutdown(void)
2254{
Benny Prijono9fc735d2006-05-28 14:58:12 +00002255 unsigned i;
Benny Prijono834aee32006-02-19 01:38:06 +00002256
Benny Prijono384dab42009-10-14 01:58:04 +00002257 PJ_LOG(4,(THIS_FILE, "Shutting down presence.."));
2258
Benny Prijono7a5f5102007-05-29 00:33:09 +00002259 if (pjsua_var.pres_timer.id != 0) {
2260 pjsip_endpt_cancel_timer(pjsua_var.endpt, &pjsua_var.pres_timer);
2261 pjsua_var.pres_timer.id = PJ_FALSE;
2262 }
2263
Benny Prijonoeebe9af2006-06-13 22:57:13 +00002264 for (i=0; i<PJ_ARRAY_SIZE(pjsua_var.acc); ++i) {
2265 if (!pjsua_var.acc[i].valid)
2266 continue;
2267 pjsua_pres_delete_acc(i);
Benny Prijonoa91a0032006-02-26 21:23:45 +00002268 }
2269
Benny Prijonoeebe9af2006-06-13 22:57:13 +00002270 for (i=0; i<PJ_ARRAY_SIZE(pjsua_var.buddy); ++i) {
2271 pjsua_var.buddy[i].monitor = 0;
Benny Prijono834aee32006-02-19 01:38:06 +00002272 }
Benny Prijonoa91a0032006-02-26 21:23:45 +00002273
Benny Prijono73bb7232009-10-20 13:56:26 +00002274 refresh_client_subscriptions();
2275
2276 for (i=0; i<PJ_ARRAY_SIZE(pjsua_var.acc); ++i) {
2277 if (pjsua_var.acc[i].valid)
2278 pjsua_pres_update_acc(i, PJ_FALSE);
2279 }
Benny Prijono834aee32006-02-19 01:38:06 +00002280}