Asterisk - The Open Source Telephony Project GIT-master-754dea3
All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Macros Modules Pages
res_pjsip_notify.c
Go to the documentation of this file.
1/*
2 * Asterisk -- An open source telephony toolkit.
3 *
4 * Copyright (C) 2013, Digium, Inc.
5 *
6 * Kevin Harwell <kharwell@digium.com>
7 *
8 * See http://www.asterisk.org for more information about
9 * the Asterisk project. Please do not directly contact
10 * any of the maintainers of this project for assistance;
11 * the project provides a web site, mailing lists and IRC
12 * channels for your use.
13 *
14 * This program is free software, distributed under the terms of
15 * the GNU General Public License Version 2. See the LICENSE file
16 * at the top of the source tree.
17 */
18
19/*** MODULEINFO
20 <depend>pjproject</depend>
21 <depend>res_pjsip</depend>
22 <support_level>core</support_level>
23 ***/
24
25#include "asterisk.h"
26
27#include <pjsip.h>
28#include <pjsip_ua.h>
29
30#include "asterisk/app.h"
31#include "asterisk/cli.h"
32#include "asterisk/config.h"
33#include "asterisk/manager.h"
34#include "asterisk/module.h"
35#include "asterisk/pbx.h"
36#include "asterisk/res_pjsip.h"
38#include "asterisk/sorcery.h"
39
40/*** DOCUMENTATION
41 <manager name="PJSIPNotify" language="en_US">
42 <since>
43 <version>12.0.0</version>
44 </since>
45 <synopsis>
46 Send a NOTIFY to either an endpoint, an arbitrary URI, or inside a SIP dialog.
47 </synopsis>
48 <syntax>
49 <xi:include xpointer="xpointer(/docs/manager[@name='Login']/syntax/parameter[@name='ActionID'])" />
50 <parameter name="Endpoint" required="false">
51 <para>The endpoint to which to send the NOTIFY.</para>
52 </parameter>
53 <parameter name="URI" required="false">
54 <para>Abritrary URI to which to send the NOTIFY.</para>
55 </parameter>
56 <parameter name="channel" required="false">
57 <para>Channel name to send the NOTIFY. Must be a PJSIP channel.</para>
58 </parameter>
59 <parameter name="Option" required="false">
60 <para>The config section name from <literal>pjsip_notify.conf</literal> to use.</para>
61 <para>One of Option or Variable must be specified.</para>
62 </parameter>
63 <parameter name="Variable" required="false">
64 <para>Appends variables as headers/content to the NOTIFY. If the variable is
65 named <literal>Content</literal>, then the value will compose the body
66 of the message if another variable sets <literal>Content-Type</literal>.
67 <replaceable>name</replaceable>=<replaceable>value</replaceable></para>
68 <para>One of Option or Variable must be specified.</para>
69 </parameter>
70 </syntax>
71 <description>
72 <para>Sends a NOTIFY to an endpoint, an arbitrary URI, or inside a SIP dialog.</para>
73 <para>All parameters for this event must be specified in the body of this
74 request via multiple <literal>Variable: name=value</literal> sequences.</para>
75 <note><para>One (and only one) of <literal>Endpoint</literal>,
76 <literal>URI</literal>, or <literal>Channel</literal> must be specified.
77 If <literal>URI</literal> is used, the default outbound endpoint will be used
78 to send the message. If the default outbound endpoint isn't configured, this command
79 can not send to an arbitrary URI.</para></note>
80 </description>
81 </manager>
82 <configInfo name="res_pjsip_notify" language="en_US">
83 <synopsis>Module that supports sending NOTIFY requests to endpoints from external sources</synopsis>
84 <configFile name="pjsip_notify.conf">
85 <configObject name="general">
86 <synopsis>Unused, but reserved.</synopsis>
87 </configObject>
88 <configObject name="notify">
89 <since>
90 <version>12.0.0</version>
91 </since>
92 <synopsis>Configuration of a NOTIFY request.</synopsis>
93 <description>
94 <para>Each key-value pair in a <literal>notify</literal>
95 configuration section defines either a SIP header to send
96 in the request or a line of content in the request message
97 body. A key of <literal>Content</literal> is treated
98 as part of the message body and is appended in sequential
99 order; any other header is treated as part of the SIP
100 request.</para>
101 </description>
102 <configOption name="">
103 <synopsis>A key/value pair to add to a NOTIFY request.</synopsis>
104 <description>
105 <para>If the key is <literal>Content</literal>,
106 it will be treated as part of the message body. Otherwise,
107 it will be added as a header in the NOTIFY request.</para>
108 <para>The following headers are reserved and cannot be
109 specified:</para>
110 <enumlist>
111 <enum name="Call-ID" />
112 <enum name="Contact" />
113 <enum name="CSeq" />
114 <enum name="To" />
115 <enum name="From" />
116 <enum name="Record-Route" />
117 <enum name="Route" />
118 <enum name="Via" />
119 </enumlist>
120 </description>
121 </configOption>
122 </configObject>
123 </configFile>
124 </configInfo>
125 ***/
126
127#define CONTENT_TYPE_SIZE 64
128#define CONTENT_SIZE 512
129
130/*!
131 * \internal
132 * \brief The configuration file containing NOTIFY payload types to send.
133 */
134static const char notify_config[] = "pjsip_notify.conf";
135
137 const char *name;
138 const char *value;
139 char buf[0];
140};
141
143 /*! Contains header and/or content information */
145 /*! The name of the notify option */
146 char name[0];
147};
148
149static int notify_option_hash(const void *obj, int flags)
150{
151 const struct notify_option *option = obj;
152 return ast_str_case_hash(flags & OBJ_KEY ? obj : option->name);
153}
154
155static int notify_option_cmp(void *obj, void *arg, int flags)
156{
157 struct notify_option *option1 = obj;
158 struct notify_option *option2 = arg;
159 const char *key = flags & OBJ_KEY ? arg : option2->name;
160
161 return strcasecmp(option1->name, key) ? 0 : CMP_MATCH;
162}
163
164static void notify_option_destroy(void *obj)
165{
166 struct notify_option *option = obj;
167 ao2_cleanup(option->items);
168}
169
170static void *notify_option_alloc(const char *category)
171{
172 int category_size = strlen(category) + 1;
173
174 struct notify_option *option = ao2_alloc(
175 sizeof(*option) + category_size, notify_option_destroy);
176
177 if (!option) {
178 return NULL;
179 }
180
181 ast_copy_string(option->name, category, category_size);
182
183 if (!(option->items = ao2_container_alloc_list(
186 ao2_cleanup(option);
187 return NULL;
188 }
189
190 return option;
191}
192
193static void *notify_option_find(struct ao2_container *container, const char *category)
194{
195 return ao2_find(container, category, OBJ_KEY);
196}
197
198static int notify_option_handler(const struct aco_option *opt,
199 struct ast_variable *var, void *obj)
200{
201 struct notify_option *option = obj;
202
203 int name_size = strlen(var->name) + 1;
204 int value_size = strlen(var->value) + 1;
205
207 ao2_alloc(sizeof(*item) + name_size + value_size,
208 NULL), ao2_cleanup);
209
210 item->name = item->buf;
211 item->value = item->buf + name_size;
212
213 ast_copy_string(item->buf, var->name, name_size);
214 ast_copy_string(item->buf + name_size, var->value, value_size);
215
216 if (!ao2_link(option->items, item)) {
217 return -1;
218 }
219
220 return 0;
221}
222
225};
226
227static void notify_cfg_destroy(void *obj)
228{
229 struct notify_cfg *cfg = obj;
231}
232
233static void *notify_cfg_alloc(void)
234{
235 struct notify_cfg *cfg;
236
237 if (!(cfg = ao2_alloc(sizeof(*cfg), notify_cfg_destroy))) {
238 return NULL;
239 }
240
243 if (!cfg->notify_options) {
244 ao2_cleanup(cfg);
245 return NULL;
246 }
247
248 return cfg;
249}
250
251static struct aco_type notify_option = {
252 .type = ACO_ITEM,
253 .name = "notify",
254 .category_match = ACO_BLACKLIST_EXACT,
255 .category = "general",
256 .item_offset = offsetof(struct notify_cfg, notify_options),
257 .item_alloc = notify_option_alloc,
258 .item_find = notify_option_find
259};
260
262
263static struct aco_file module_conf = {
265 .types = ACO_TYPES(&notify_option),
266};
267
269
271 .files = ACO_FILES(&module_conf)
272);
273
274/*!
275 * \internal
276 * \brief Structure to hold task data for notifications.
277 */
279 /*! The endpoint being notified */
281 /*! The info of headers, types and content */
282 void *info;
283 /*! Function to help build notify request */
284 void (*build_notify)(pjsip_tx_data *, void *);
285};
286
287/*!
288 * \internal
289 * \brief Destroy the notify CLI data releasing any resources.
290 */
291static void notify_cli_data_destroy(void *obj)
292{
293 struct notify_data *data = obj;
294
295 ao2_cleanup(data->endpoint);
296 ao2_cleanup(data->info);
297}
298
299/*!
300 * \internal
301 * \brief Structure to hold task data for notifications (URI variant)
302 */
304 char *uri;
305 void *info;
306 void (*build_notify)(pjsip_tx_data *, void *);
307};
308
309/*!
310 * \internal
311 * \brief Structure to hold task data for notifications (channel variant)
312 */
315 void *info;
316 void (*build_notify)(pjsip_tx_data *, void *);
317};
318
319static void notify_cli_uri_data_destroy(void *obj)
320{
321 struct notify_uri_data *data = obj;
322
323 ast_free(data->uri);
324 ao2_cleanup(data->info);
325}
326
328{
329 struct notify_channel_data *data = obj;
330
331 ao2_cleanup(data->info);
332 ao2_cleanup(data->session);
333}
334
335/*!
336 * \internal
337 * \brief Destroy the notify CLI data releasing any resources (URI variant)
338 */
339static void build_cli_notify(pjsip_tx_data *tdata, void *info);
340
341/*!
342 * \internal
343 * \brief Construct a notify data object for CLI.
344 */
346 struct ast_sip_endpoint *endpoint, void *info)
347{
348 struct notify_data *data = ao2_alloc(sizeof(*data),
350 if (!data) {
351 return NULL;
352 }
353
354 data->endpoint = endpoint;
355 ao2_ref(data->endpoint, +1);
356
357 data->info = info;
358 ao2_ref(data->info, +1);
359
361
362 return data;
363}
364
365/*!
366 * \internal
367 * \brief Construct a notify URI data object for CLI.
368 */
370 const char *uri, void *info)
371{
372 struct notify_uri_data *data = ao2_alloc(sizeof(*data),
374
375 if (!data) {
376 return NULL;
377 }
378
379 data->uri = ast_strdup(uri);
380 if (!data->uri) {
381 ao2_ref(data, -1);
382 return NULL;
383 }
384
385 data->info = info;
386 ao2_ref(data->info, +1);
387
389
390 return data;
391}
392
393/*!
394 * \internal
395 * \brief Construct a notify URI data object for CLI.
396 */
398 struct ast_sip_session *session, void *info)
399{
400 struct notify_channel_data *data = ao2_alloc_options(sizeof(*data),
402
403 if (!data) {
404 return NULL;
405 }
406
407 data->session = session;
408 data->info = info;
409 ao2_ref(data->info, +1);
410
412
413 return data;
414}
415
416/*!
417 * \internal
418 * \brief Destroy the notify AMI data releasing any resources.
419 */
420static void notify_ami_data_destroy(void *obj)
421{
422 struct notify_data *data = obj;
423 struct ast_variable *info = data->info;
424
425 ao2_cleanup(data->endpoint);
427}
428
429/*!
430 * \internal
431 * \brief Destroy the notify AMI URI data releasing any resources.
432 */
433static void notify_ami_uri_data_destroy(void *obj)
434{
435 struct notify_uri_data *data = obj;
436 struct ast_variable *info = data->info;
437
438 ast_free(data->uri);
440}
441
442/*!
443 * \internal
444 * \brief Destroy the notify AMI channel data releasing any resources.
445 */
447{
448 struct notify_channel_data *data = obj;
449 struct ast_variable *info = data->info;
450
451 ao2_cleanup(data->session);
453}
454
455static void build_ami_notify(pjsip_tx_data *tdata, void *info);
456
457/*!
458 * \internal
459 * \brief Construct a notify data object for AMI.
460 */
462 struct ast_sip_endpoint *endpoint, void *info)
463{
464 struct notify_data *data = ao2_alloc(sizeof(*data),
466 if (!data) {
467 return NULL;
468 }
469
470 data->endpoint = endpoint;
471 ao2_ref(data->endpoint, +1);
472
473 data->info = info;
475
476 return data;
477}
478
479/*!
480 * \internal
481 * \brief Construct a notify URI data object for AMI.
482 */
484 const char *uri, void *info)
485{
486 struct notify_uri_data *data = ao2_alloc(sizeof(*data),
488 if (!data) {
489 return NULL;
490 }
491
492 data->uri = ast_strdup(uri);
493 if (!data->uri) {
494 ao2_ref(data, -1);
495 return NULL;
496 }
497
498 data->info = info;
500
501 return data;
502}
503
504/*!
505 * \internal
506 * \brief Construct a notify channel data object for AMI.
507 */
509 struct ast_sip_session *session, void *info)
510{
511 struct notify_channel_data *data;
512
515 if (!data) {
516 return NULL;
517 }
518
519 data->session = session;
520 data->info = info;
522
523 return data;
524}
525
526/*!
527 * \internal
528 * \brief Checks if the given header name is not allowed.
529 *
530 * \details Some headers are not allowed to be set by the user within the
531 * scope of a NOTIFY request. If the given var header name is
532 * found in the "not allowed" list then return true.
533 */
534static int not_allowed(const char *name)
535{
536 int i;
537 static const char *names[] = {
538 "Call-ID",
539 "Contact",
540 "CSeq",
541 "To",
542 "From",
543 "Record-Route",
544 "Route",
545 "Request-URI",
546 "Via",
547 };
548
549 for (i = 0; i < ARRAY_LEN(names); ++i) {
550 if (!strcasecmp(name, names[i])) {
551 return 1;
552 }
553 }
554 return 0;
555}
556
557/*!
558 * \internal
559 * \brief Check if the given header can be added to a message more than once.
560 */
561static int multiple_headers_allowed(const char *name)
562{
563 /* This can be extended to include additional headers */
564 return strcasecmp("Event", name);
565}
566
567/*!
568 * \internal
569 * \brief If a content type was specified add it and the content body to the
570 * NOTIFY request.
571 */
572static void build_notify_body(pjsip_tx_data *tdata, struct ast_str *content_type,
573 struct ast_str *content)
574{
575 if (content_type) {
576 char *p;
577 struct ast_sip_body body;
578
579 if (content) {
580 body.body_text = ast_str_buffer(content);
581 }
582
583 body.type = ast_str_buffer(content_type);
584 if ((p = strchr(body.type, '/'))) {
585 *p++ = '\0';
586 body.subtype = p;
587 }
588 ast_sip_add_body(tdata, &body);
589 }
590}
591
592/*!
593 * \internal
594 * \brief Build the NOTIFY request adding content or header info.
595 */
596static void build_notify(pjsip_tx_data *tdata, const char *name, const char *value,
597 struct ast_str **content_type, struct ast_str **content)
598{
599 if (not_allowed(name)) {
600 ast_log(LOG_WARNING, "Cannot specify %s header, "
601 "ignoring\n", name);
602 return;
603 }
604
605 if (!strcasecmp(name, "Content-type")) {
606 if (!(*content_type)) {
607 *content_type = ast_str_create(CONTENT_TYPE_SIZE);
608 }
609 ast_str_set(content_type, 0,"%s", value);
610 } else if (!strcasecmp(name, "Content")) {
611 if (!(*content)) {
612 *content = ast_str_create(CONTENT_SIZE);
613 }
614
615 if (ast_str_strlen(*content)) {
616 ast_str_append(content, 0, "\r\n");
617 }
618 ast_str_append(content, 0, "%s", value);
619 } else {
620 /* See if there is an existing one */
622 pj_str_t hdr_name;
623 pj_cstr(&hdr_name, name);
624
625 if (pjsip_msg_find_hdr_by_name(tdata->msg, &hdr_name, NULL)) {
626 ast_log(LOG_ERROR, "Only one '%s' header can be added to a NOTIFY, "
627 "ignoring \"%s: %s\"\n", name, name, value);
628 return;
629 }
630 }
631
633 }
634}
635
636/*!
637 * \internal
638 * \brief Build the NOTIFY request from CLI info adding header and content
639 * when specified.
640 */
641static void build_cli_notify(pjsip_tx_data *tdata, void *info)
642{
643 struct notify_option *option = info;
644 RAII_VAR(struct ast_str *, content_type, NULL, ast_free);
645 RAII_VAR(struct ast_str *, content, NULL, ast_free);
646
647 struct notify_option_item *item;
648 struct ao2_iterator i = ao2_iterator_init(option->items, 0);
649
650 while ((item = ao2_iterator_next(&i))) {
651 build_notify(tdata, item->name, item->value,
652 &content_type, &content);
654 }
656
657 build_notify_body(tdata, content_type, content);
658}
659
660/*!
661 * \internal
662 * \brief Build the NOTIFY request from AMI info adding header and content
663 * when specified.
664 */
665static void build_ami_notify(pjsip_tx_data *tdata, void *info)
666{
667 struct ast_variable *vars = info;
668 RAII_VAR(struct ast_str *, content_type, NULL, ast_free);
669 RAII_VAR(struct ast_str *, content, NULL, ast_free);
670 struct ast_variable *i;
671
672 for (i = vars; i; i = i->next) {
673 if (!strcasecmp(i->name, "Content-Length")) {
674 ast_log(LOG_NOTICE, "It is not necessary to specify Content-Length, ignoring.\n");
675 continue;
676 }
677 build_notify(tdata, i->name, i->value,
678 &content_type, &content);
679 }
680
681 build_notify_body(tdata, content_type, content);
682}
683
684/*!
685 * \internal
686 * \brief Build and send a NOTIFY request to a contact.
687 */
688static int notify_contact(void *obj, void *arg, int flags)
689{
690 struct ast_sip_contact *contact = obj;
691 struct notify_data *data = arg;
692 pjsip_tx_data *tdata;
693
694 if (ast_sip_create_request("NOTIFY", NULL, data->endpoint,
695 NULL, contact, &tdata)) {
696 ast_log(LOG_WARNING, "SIP NOTIFY - Unable to create request for "
697 "contact %s\n", contact->uri);
698 return -1;
699 }
700
701 ast_sip_add_header(tdata, "Subscription-State", "terminated");
702 data->build_notify(tdata, data->info);
703
704 if (ast_sip_send_request(tdata, NULL, data->endpoint, NULL, NULL)) {
705 ast_log(LOG_ERROR, "SIP NOTIFY - Unable to send request for "
706 "contact %s\n", contact->uri);
707 return -1;
708 }
709
710 return 0;
711}
712
713/*!
714 * \internal
715 * \brief Send a NOTIFY request to the endpoint.
716 *
717 * \details Iterates over an endpoint's AORs sending a NOTIFY request
718 * with the appropriate payload information to each contact.
719 */
720static int notify_endpoint(void *obj)
721{
722 RAII_VAR(struct notify_data *, data, obj, ao2_cleanup);
723 char *aor_name, *aors;
724
725 if (ast_strlen_zero(data->endpoint->aors)) {
726 ast_log(LOG_WARNING, "Unable to NOTIFY - "
727 "endpoint has no configured AORs\n");
728 return -1;
729 }
730
731 aors = ast_strdupa(data->endpoint->aors);
732
733 while ((aor_name = ast_strip(strsep(&aors, ",")))) {
734 RAII_VAR(struct ast_sip_aor *, aor,
736 RAII_VAR(struct ao2_container *, contacts, NULL, ao2_cleanup);
737
738 if (!aor || !(contacts = ast_sip_location_retrieve_aor_contacts(aor))) {
739 continue;
740 }
741
742 ao2_callback(contacts, OBJ_NODATA, notify_contact, data);
743 }
744
745 return 0;
746}
747
748/*!
749 * \internal
750 * \brief Send a notify request to the URI.
751 */
752static int notify_uri(void *obj)
753{
754 RAII_VAR(struct notify_uri_data *, data, obj, ao2_cleanup);
757 pjsip_tx_data *tdata;
758
759 if (!endpoint) {
760 ast_log(LOG_WARNING, "No default outbound endpoint set, can not send "
761 "NOTIFY requests to arbitrary URIs.\n");
762 return -1;
763 }
764
765 if (ast_strlen_zero(data->uri)) {
766 ast_log(LOG_WARNING, "Unable to NOTIFY - URI is blank.\n");
767 return -1;
768 }
769
770 if (ast_sip_create_request("NOTIFY", NULL, endpoint,
771 data->uri, NULL, &tdata)) {
772 ast_log(LOG_WARNING, "SIP NOTIFY - Unable to create request for "
773 "uri %s\n", data->uri);
774 return -1;
775 }
776
777 ast_sip_add_header(tdata, "Subscription-State", "terminated");
778
779 data->build_notify(tdata, data->info);
780
781 if (ast_sip_send_request(tdata, NULL, endpoint, NULL, NULL)) {
782 ast_log(LOG_ERROR, "SIP NOTIFY - Unable to send request for "
783 "uri %s\n", data->uri);
784 return -1;
785 }
786
787 return 0;
788}
789
790/*!
791 * \internal
792 * \brief Send a notify request to a channel.
793 */
794static int notify_channel(void *obj)
795{
796 RAII_VAR(struct notify_channel_data *, data, obj, ao2_cleanup);
797 pjsip_tx_data *tdata;
798 struct pjsip_dialog *dlg;
799
800 if (!data->session->channel
801 || !data->session->inv_session
802 || data->session->inv_session->state < PJSIP_INV_STATE_EARLY
803 || data->session->inv_session->state == PJSIP_INV_STATE_DISCONNECTED) {
804 return -1;
805 }
806
807 ast_debug(1, "Sending notify on channel %s\n", ast_channel_name(data->session->channel));
808
809 dlg = data->session->inv_session->dlg;
810
811 if (ast_sip_create_request("NOTIFY", dlg, NULL, NULL, NULL, &tdata)) {
812 return -1;
813 }
814
815 ast_sip_add_header(tdata, "Subscription-State", "terminated");
816 data->build_notify(tdata, data->info);
817
818 if (ast_sip_send_request(tdata, dlg, NULL, NULL, NULL)) {
819 return -1;
820 }
821
822 return 0;
823}
824
832
833typedef struct notify_data *(*task_data_create)(
834 struct ast_sip_endpoint *, void *info);
835
836typedef struct notify_uri_data *(*task_uri_data_create)(
837 const char *uri, void *info);
838
839typedef struct notify_channel_data *(*task_channel_data_create)(
840 struct ast_sip_session *session, void *info);
841
842/*!
843 * \internal
844 * \brief Send a NOTIFY request to the endpoint within a threaded task.
845 */
846static enum notify_result push_notify(const char *endpoint_name, void *info,
847 task_data_create data_create)
848{
850 struct notify_data *data;
851
853 ast_sip_get_sorcery(), "endpoint", endpoint_name))) {
854 return INVALID_ENDPOINT;
855 }
856
857 if (!(data = data_create(endpoint, info))) {
858 return ALLOC_ERROR;
859 }
860
862 ao2_cleanup(data);
863 return TASK_PUSH_ERROR;
864 }
865
866 return SUCCESS;
867}
868
869/*!
870 * \internal
871 * \brief Send a NOTIFY request to the URI within an threaded task.
872 */
873static enum notify_result push_notify_uri(const char *uri, void *info,
874 task_uri_data_create data_create)
875{
876 struct notify_uri_data *data;
877
878 if (!(data = data_create(uri, info))) {
879 return ALLOC_ERROR;
880 }
881
882 if (ast_sip_push_task(NULL, notify_uri, data)) {
883 ao2_cleanup(data);
884 return TASK_PUSH_ERROR;
885 }
886
887 return SUCCESS;
888}
889
890/*!
891 * \internal
892 * \brief Send a NOTIFY request in a channel within an threaded task.
893 */
894static enum notify_result push_notify_channel(const char *channel_name, void *info,
895 task_channel_data_create data_create)
896{
897 struct notify_channel_data *data;
898 struct ast_channel *ch;
899 struct ast_sip_session *session;
900 struct ast_sip_channel_pvt *ch_pvt;
901
902 /* note: this increases the refcount of the channel */
903 ch = ast_channel_get_by_name(channel_name);
904 if (!ch) {
905 ast_debug(1, "No channel found with name %s", channel_name);
906 return INVALID_CHANNEL;
907 }
908
909 if (strcmp(ast_channel_tech(ch)->type, "PJSIP")) {
910 ast_log(LOG_WARNING, "Channel was a non-PJSIP channel: %s\n", channel_name);
912 return INVALID_CHANNEL;
913 }
914
916 ch_pvt = ast_channel_tech_pvt(ch);
917 session = ch_pvt->session;
918
919 if (!session || !session->inv_session
920 || session->inv_session->state < PJSIP_INV_STATE_EARLY
921 || session->inv_session->state == PJSIP_INV_STATE_DISCONNECTED) {
922 ast_debug(1, "No active session for channel %s\n", channel_name);
925 return INVALID_CHANNEL;
926 }
927
928 ao2_ref(session, +1);
930
931 /* don't keep a reference to the channel, we've got a reference to the session */
933
934 /*
935 * data_create will take ownership of the session,
936 * and take care of releasing the ref.
937 */
938 data = data_create(session, info);
939 if (!data) {
940 ao2_ref(session, -1);
941 return ALLOC_ERROR;
942 }
943
944 if (ast_sip_push_task(session->serializer, notify_channel, data)) {
945 ao2_ref(data, -1);
946 return TASK_PUSH_ERROR;
947 }
948
949 return SUCCESS;
950}
951
952/*!
953 * \internal
954 * \brief Do completion on the endpoint.
955 */
956static char *cli_complete_endpoint(const char *word)
957{
958 int wordlen = strlen(word);
959 struct ao2_container * endpoints;
960 struct ast_sip_endpoint *endpoint;
961 struct ao2_iterator i;
962
964 "endpoint", word, wordlen);
965 if (endpoints == NULL) {
966 return NULL;
967 }
968
970 while ((endpoint = ao2_iterator_next(&i))) {
973 ao2_cleanup(endpoint);
974 }
976
977 ao2_ref(endpoints, -1);
978
979 return NULL;
980}
981
982/*!
983 * \internal
984 * \brief Do completion on the notify CLI command.
985 */
986static char *cli_complete_notify(struct ast_cli_args *a)
987{
988 char *c = NULL;
989
990 if (a->pos == 3) {
991 int which = 0;
992 int wordlen = strlen(a->word);
993
994 RAII_VAR(struct notify_cfg *, cfg,
996 struct notify_option *option;
997
998 /* do completion for notify type */
999 struct ao2_iterator i = ao2_iterator_init(cfg->notify_options, 0);
1000 while ((option = ao2_iterator_next(&i))) {
1001 if (!strncasecmp(a->word, option->name, wordlen) && ++which > a->n) {
1002 c = ast_strdup(option->name);
1003 }
1004
1005 ao2_cleanup(option);
1006 if (c) {
1007 break;
1008 }
1009 }
1011 return c;
1012 }
1013
1014 if (a->pos == 4) {
1015 int wordlen = strlen(a->word);
1016
1017 if (ast_strlen_zero(a->word)) {
1018 if (a->n == 0) {
1019 c = ast_strdup("endpoint");
1020 } else if (a->n == 1) {
1021 c = ast_strdup("uri");
1022 } else if (a->n == 2) {
1023 c = ast_strdup("channel");
1024 }
1025 } else if (a->n == 0) {
1026 if (!strncasecmp(a->word, "endpoint", wordlen)) {
1027 c = ast_strdup("endpoint");
1028 } else if (!strncasecmp(a->word, "uri", wordlen)) {
1029 c = ast_strdup("uri");
1030 } else if (!strncasecmp(a->word, "channel", wordlen)) {
1031 c = ast_strdup("channel");
1032 }
1033 }
1034
1035 return c;
1036 }
1037
1038 if (a->pos > 4) {
1039 if (!strcasecmp(a->argv[4], "endpoint")) {
1040 return cli_complete_endpoint(a->word);
1041 } else if (!strcasecmp(a->argv[4], "channel")) {
1042 return ast_complete_channels(a->line, a->word, a->pos, a->n, 5);
1043 }
1044 }
1045 return NULL;
1046}
1047
1048/*!
1049 * \internal
1050 * \brief CLI command to send a SIP notify to an endpoint.
1051 *
1052 * \details Attempts to match the "type" given in the CLI command to a
1053 * configured one. If found, sends a NOTIFY to the endpoint
1054 * with the associated payload.
1055 */
1056static char *cli_notify(struct ast_cli_entry *e, int cmd, struct ast_cli_args *a)
1057{
1058 RAII_VAR(struct notify_cfg *, cfg, NULL, ao2_cleanup);
1059 RAII_VAR(struct notify_option *, option, NULL, ao2_cleanup);
1060
1061 int i;
1062 int using_uri = 0;
1063 int using_channel = 0;
1064
1065 switch (cmd) {
1066 case CLI_INIT:
1067 e->command = "pjsip send notify";
1068 e->usage =
1069 "Usage: pjsip send notify <type> {endpoint|uri|channel} <peer> [<peer>...]\n"
1070 " Send a NOTIFY request to an endpoint\n"
1071 " Message types are defined in pjsip_notify.conf\n";
1072 return NULL;
1073 case CLI_GENERATE:
1074 return cli_complete_notify(a);
1075 }
1076
1077 if (a->argc < 6) {
1078 return CLI_SHOWUSAGE;
1079 }
1080
1081 if (!strcasecmp(a->argv[4], "uri")) {
1082 using_uri = 1;
1083 } else if (!strcasecmp(a->argv[4], "channel")) {
1084 using_channel = 1;
1085 } else if (strcasecmp(a->argv[4], "endpoint")) {
1086 return CLI_SHOWUSAGE;
1087 }
1088
1090
1091 if (!(option = notify_option_find(cfg->notify_options, a->argv[3])))
1092 {
1093 ast_cli(a->fd, "Unable to find notify type '%s'\n",
1094 a->argv[3]);
1095 return CLI_FAILURE;
1096 }
1097
1098 for (i = 5; i < a->argc; ++i) {
1099 enum notify_result result;
1100 ast_cli(a->fd, "Sending NOTIFY of type '%s' to '%s'\n",
1101 a->argv[3], a->argv[i]);
1102
1103 if (using_uri) {
1105 } else if (using_channel) {
1107 } else {
1108 result = push_notify(a->argv[i], option, notify_cli_data_create);
1109 }
1110 switch(result) {
1111 case INVALID_ENDPOINT:
1112 ast_cli(a->fd, "Unable to retrieve endpoint %s\n", a->argv[i]);
1113 break;
1114 case INVALID_CHANNEL:
1115 ast_cli(a->fd, "Unable to find channel %s\n", a->argv[i]);
1116 break;
1117 case ALLOC_ERROR:
1118 ast_cli(a->fd, "Unable to allocate NOTIFY task data\n");
1119 return CLI_FAILURE;
1120 case TASK_PUSH_ERROR:
1121 ast_cli(a->fd, "Unable to push NOTIFY task\n");
1122 return CLI_FAILURE;
1123 default:
1124 break;
1125 }
1126 }
1127
1128 return CLI_SUCCESS;
1129}
1130
1131static struct ast_cli_entry cli_options[] = {
1132 AST_CLI_DEFINE(cli_notify, "Send a NOTIFY request to a SIP endpoint")
1133};
1134
1139};
1140
1141static void manager_send_response(struct mansession *s, const struct message *m, enum notify_type type, enum notify_result res, struct ast_variable *vars, const char *endpoint_name)
1142{
1143 switch (res) {
1144 case INVALID_CHANNEL:
1145 if (type == NOTIFY_CHANNEL) {
1147 astman_send_error(s, m, "Channel not found");
1148 } else {
1149 /* Shouldn't be possible. */
1150 ast_assert(0);
1151 }
1152 break;
1153 case INVALID_ENDPOINT:
1154 if (type == NOTIFY_ENDPOINT) {
1156 astman_send_error_va(s, m, "Unable to retrieve endpoint %s", endpoint_name);
1157 } else {
1158 /* Shouldn't be possible. */
1159 ast_assert(0);
1160 }
1161 break;
1162 case ALLOC_ERROR:
1164 astman_send_error(s, m, "Unable to allocate NOTIFY task data");
1165 break;
1166 case TASK_PUSH_ERROR:
1167 /* Don't need to destroy vars since it is handled by cleanup in push_notify, push_notify_uri, etc. */
1168 astman_send_error(s, m, "Unable to push Notify task");
1169 break;
1170 case SUCCESS:
1171 astman_send_ack(s, m, "NOTIFY sent");
1172 break;
1173 }
1174}
1175
1176/*!
1177 * \internal
1178 * \brief Completes SIPNotify AMI command in Endpoint mode.
1179 */
1181 const struct message *m, const char *endpoint_name)
1182{
1183 RAII_VAR(struct notify_cfg *, cfg, NULL, ao2_cleanup);
1184 RAII_VAR(struct notify_option *, option, NULL, ao2_cleanup);
1185 struct ast_variable *vars = NULL;
1186 enum notify_result res;
1187 const char *option_name = astman_get_header(m, "Option");
1188
1189 if (!ast_strlen_zero(option_name) && (cfg = ao2_global_obj_ref(globals)) && !(option = notify_option_find(cfg->notify_options, option_name))) {
1190 astman_send_error_va(s, m, "Unable to find notify type '%s'\n", option_name);
1191 return;
1192 }
1193 if (!option) {
1195 }
1196
1197 if (!strncasecmp(endpoint_name, "sip/", 4)) {
1198 endpoint_name += 4;
1199 }
1200
1201 if (!strncasecmp(endpoint_name, "pjsip/", 6)) {
1202 endpoint_name += 6;
1203 }
1204
1205 if (option) {
1206 res = push_notify(endpoint_name, option, notify_cli_data_create); /* The CLI version happens to be suitable for options. */
1207 } else {
1208 res = push_notify(endpoint_name, vars, notify_ami_data_create);
1209 }
1210
1211 manager_send_response(s, m, NOTIFY_ENDPOINT, res, vars, endpoint_name);
1212}
1213
1214/*!
1215 * \internal
1216 * \brief Completes SIPNotify AMI command in URI mode.
1217 */
1218static void manager_notify_uri(struct mansession *s,
1219 const struct message *m, const char *uri)
1220{
1221 RAII_VAR(struct notify_cfg *, cfg, NULL, ao2_cleanup);
1222 RAII_VAR(struct notify_option *, option, NULL, ao2_cleanup);
1223 enum notify_result res;
1224 const char *option_name = astman_get_header(m, "Option");
1225 struct ast_variable *vars = NULL;
1226
1227 if (!ast_strlen_zero(option_name) && (cfg = ao2_global_obj_ref(globals)) && !(option = notify_option_find(cfg->notify_options, option_name))) {
1228 astman_send_error_va(s, m, "Unable to find notify type '%s'\n", option_name);
1229 return;
1230 }
1231 if (!option) {
1233 }
1234
1235 if (option) {
1236 res = push_notify_uri(uri, option, notify_cli_uri_data_create);
1237 } else {
1239 }
1240
1241 manager_send_response(s, m, NOTIFY_URI, res, vars, NULL);
1242}
1243
1244/*!
1245 * \internal
1246 * \brief Completes SIPNotify AMI command in channel mode.
1247 */
1249 const struct message *m, const char *channel)
1250{
1251 enum notify_result res;
1252 struct ast_variable *vars = NULL;
1253
1256
1257 manager_send_response(s, m, NOTIFY_CHANNEL, res, vars, NULL);
1258}
1259
1260/*!
1261 * \internal
1262 * \brief AMI entry point to send a SIP notify to an endpoint.
1263 */
1264static int manager_notify(struct mansession *s, const struct message *m)
1265{
1266 const char *endpoint_name = astman_get_header(m, "Endpoint");
1267 const char *uri = astman_get_header(m, "URI");
1268 const char *channel = astman_get_header(m, "Channel");
1269 const char *variables = astman_get_header(m, "Variable");
1270 const char *option = astman_get_header(m, "Option");
1271 int count = 0;
1272
1273 if (!ast_strlen_zero(endpoint_name)) {
1274 ++count;
1275 }
1276 if (!ast_strlen_zero(uri)) {
1277 ++count;
1278 }
1279 if (!ast_strlen_zero(channel)) {
1280 ++count;
1281 }
1282
1283 if ((!ast_strlen_zero(option) && !ast_strlen_zero(variables)) || (ast_strlen_zero(option) && ast_strlen_zero(variables))) {
1284 astman_send_error(s, m,
1285 "PJSIPNotify requires either an Option or Variable(s)."
1286 "You must use only one of them.");
1287 } else if (1 < count) {
1288 astman_send_error(s, m,
1289 "PJSIPNotify requires either an endpoint name, a SIP URI, or a channel. "
1290 "You must use only one of them.");
1291 } else if (!ast_strlen_zero(endpoint_name)) {
1292 manager_notify_endpoint(s, m, endpoint_name);
1293 } else if (!ast_strlen_zero(uri)) {
1294 manager_notify_uri(s, m, uri);
1295 } else if (!ast_strlen_zero(channel)) {
1296 manager_notify_channel(s, m, channel);
1297 } else {
1298 astman_send_error(s, m,
1299 "PJSIPNotify requires either an endpoint name, a SIP URI, or a channel.");
1300 }
1301
1302 return 0;
1303}
1304
1305/*! \brief Convert headers string such as "Event=hold&Event=answer&..." into ast variable list*/
1306/* Caller has to call ast_variables_destroy() to free the list*/
1307static struct ast_variable *headers_to_variables(const char *headers)
1308{
1309 struct ast_variable *varlist = NULL;
1310 struct ast_variable *var;
1311 char *cur;
1312 char *header;
1313
1314 cur = (char *)headers;
1315
1316 while( (header = strsep(&cur, "&")) ) {
1317 char *name;
1318 char *value;
1319
1320 name = value = header;
1321 strsep(&value, "=");
1322
1323 if (!value || ast_strlen_zero(name)) {
1324 continue;
1325 }
1326
1328 var->next = varlist;
1329 varlist = var;
1330 }
1331 return varlist;
1332}
1333
1334/*! \brief Application entry point to send a SIP notify to an endpoint. */
1335static int app_notify(struct ast_channel *chan, const char *data)
1336{
1337 RAII_VAR(struct notify_cfg *, cfg, NULL, ao2_cleanup);
1338 RAII_VAR(struct notify_option *, option, NULL, ao2_cleanup);
1339
1340 struct ast_variable *varlist = NULL;
1341 char *tmp;
1342 int res;
1344 AST_APP_ARG(to);
1345 AST_APP_ARG(headers);
1346 );
1347
1348
1349 if (ast_strlen_zero(data)) {
1350 ast_log(LOG_WARNING, "PJSIPNotify requires arguments (to, &header=...)\n");
1351 return -1;
1352 }
1353
1354 tmp = ast_strdupa(data);
1357
1358 if (!(option = notify_option_find(cfg->notify_options, args.headers))) {
1359 /* If the app is passed a list of headers, use the notify_ami_*_data_create
1360 functions as the option data is handled the same way as the ami command. */
1361 varlist = headers_to_variables(args.headers);
1362 if (ast_strlen_zero(args.to)) {
1364 } else {
1366 }
1367 } else {
1368 /* If the app is passed a configured notify option, use the notify_cli_*_data_create
1369 functions as the option data is handled the same way as the cli command. */
1370 if (ast_strlen_zero(args.to)) {
1372 } else {
1374 }
1375 }
1376
1377 switch (res) {
1378 case INVALID_CHANNEL:
1379 case INVALID_ENDPOINT:
1380 case ALLOC_ERROR:
1381 res = -1;
1382 ast_variables_destroy(varlist);
1383 break;
1384 case TASK_PUSH_ERROR:
1385 /* Don't need to destroy vars since it is handled by cleanup in push_notify_channel */
1386 res = -1;
1387 break;
1388 case SUCCESS:
1389 res = 0;
1390 break;
1391 }
1392
1393 return res;
1394}
1395
1396static int load_module(void)
1397{
1398 if (aco_info_init(&notify_cfg)) {
1400 }
1401
1403 "", notify_option_handler, 0);
1404
1405 if (aco_process_config(&notify_cfg, 0)) {
1408 }
1409
1413
1415}
1416
1417static int reload_module(void)
1418{
1421 }
1422
1423 return 0;
1424}
1425
1426static int unload_module(void)
1427{
1428 ast_manager_unregister("PJSIPNotify");
1429 ast_unregister_application("PJSIPNotify");
1433
1434 return 0;
1435}
1436
1437AST_MODULE_INFO(ASTERISK_GPL_KEY, AST_MODFLAG_LOAD_ORDER, "CLI/AMI PJSIP NOTIFY Support",
1438 .support_level = AST_MODULE_SUPPORT_CORE,
1439 .load = load_module,
1441 .unload = unload_module,
1442 .load_pri = AST_MODPRI_APP_DEPEND,
1443 .requires = "res_pjsip",
#define var
Definition: ast_expr2f.c:605
char * strsep(char **str, const char *delims)
Asterisk main include file. File version handling, generic pbx functions.
static struct ast_mansession session
#define ast_free(a)
Definition: astmm.h:180
#define ast_strdup(str)
A wrapper for strdup()
Definition: astmm.h:241
#define ast_strdupa(s)
duplicate a string in memory from the stack
Definition: astmm.h:298
#define ast_log
Definition: astobj2.c:42
#define ao2_iterator_next(iter)
Definition: astobj2.h:1911
#define ao2_link(container, obj)
Add an object to a container.
Definition: astobj2.h:1532
@ CMP_MATCH
Definition: astobj2.h:1027
#define OBJ_KEY
Definition: astobj2.h:1151
@ AO2_ALLOC_OPT_LOCK_NOLOCK
Definition: astobj2.h:367
#define ao2_callback(c, flags, cb_fn, arg)
ao2_callback() is a generic function that applies cb_fn() to all objects in a container,...
Definition: astobj2.h:1693
#define ao2_cleanup(obj)
Definition: astobj2.h:1934
#define ao2_global_obj_ref(holder)
Get a reference to the object stored in the global holder.
Definition: astobj2.h:918
#define ao2_find(container, arg, flags)
Definition: astobj2.h:1736
struct ao2_iterator ao2_iterator_init(struct ao2_container *c, int flags) attribute_warn_unused_result
Create an iterator for a container.
#define ao2_ref(o, delta)
Reference/unreference an object and return the old refcount.
Definition: astobj2.h:459
#define ao2_alloc_options(data_size, destructor_fn, options)
Definition: astobj2.h:404
#define ao2_global_obj_release(holder)
Release the ao2 object held in the global holder.
Definition: astobj2.h:859
void ao2_iterator_destroy(struct ao2_iterator *iter)
Destroy a container iterator.
@ OBJ_NODATA
Definition: astobj2.h:1044
#define ao2_container_alloc_list(ao2_options, container_options, sort_fn, cmp_fn)
Allocate and initialize a list container.
Definition: astobj2.h:1327
#define ao2_alloc(data_size, destructor_fn)
Definition: astobj2.h:409
#define ao2_container_alloc_hash(ao2_options, container_options, n_buckets, hash_fn, sort_fn, cmp_fn)
Allocate and initialize a hash container with the desired number of buckets.
Definition: astobj2.h:1303
@ AO2_CONTAINER_ALLOC_OPT_DUPS_ALLOW
Allow objects with duplicate keys in container.
Definition: astobj2.h:1181
static PGresult * result
Definition: cel_pgsql.c:84
static struct console_pvt globals
static const char type[]
Definition: chan_ooh323.c:109
const char * ast_channel_name(const struct ast_channel *chan)
void * ast_channel_tech_pvt(const struct ast_channel *chan)
#define ast_channel_lock(chan)
Definition: channel.h:2970
#define ast_channel_unref(c)
Decrease channel reference count.
Definition: channel.h:3006
const struct ast_channel_tech * ast_channel_tech(const struct ast_channel *chan)
struct ast_channel * ast_channel_get_by_name(const char *name)
Find a channel by name.
Definition: channel.c:1481
#define ast_channel_unlock(chan)
Definition: channel.h:2971
Standard Command Line Interface.
#define CLI_SHOWUSAGE
Definition: cli.h:45
#define CLI_SUCCESS
Definition: cli.h:44
int ast_cli_unregister_multiple(struct ast_cli_entry *e, int len)
Unregister multiple commands.
Definition: clicompat.c:30
#define AST_CLI_DEFINE(fn, txt,...)
Definition: cli.h:197
int ast_cli_completion_add(char *value)
Add a result to a request for completion options.
Definition: main/cli.c:2768
void ast_cli(int fd, const char *fmt,...)
Definition: clicompat.c:6
char * ast_complete_channels(const char *line, const char *word, int pos, int state, int rpos)
Command completion for the list of active channels.
Definition: main/cli.c:1872
@ CLI_INIT
Definition: cli.h:152
@ CLI_GENERATE
Definition: cli.h:153
#define CLI_FAILURE
Definition: cli.h:46
#define ast_cli_register_multiple(e, len)
Register multiple commands.
Definition: cli.h:265
short word
@ ACO_PREFIX
void aco_info_destroy(struct aco_info *info)
Destroy an initialized aco_info struct.
@ ACO_PROCESS_ERROR
Their was an error and no changes were applied.
int aco_info_init(struct aco_info *info)
Initialize an aco_info structure.
#define ACO_FILES(...)
#define aco_option_register_custom(info, name, matchtype, types, default_val, handler, flags)
Register a config option.
@ ACO_ITEM
@ ACO_BLACKLIST_EXACT
enum aco_process_status aco_process_config(struct aco_info *info, int reload)
Process a config info via the options registered with an aco_info.
#define ACO_TYPES(...)
A helper macro to ensure that aco_info types always have a sentinel.
static const char name[]
Definition: format_mp3.c:68
void astman_send_error(struct mansession *s, const struct message *m, char *error)
Send error in manager transaction.
Definition: manager.c:1986
void astman_send_error_va(struct mansession *s, const struct message *m, const char *fmt,...)
Send error in manager transaction (with va_args support)
Definition: manager.c:1991
void astman_send_ack(struct mansession *s, const struct message *m, char *msg)
Send ack in manager transaction.
Definition: manager.c:2018
struct ast_variable * astman_get_variables_order(const struct message *m, enum variable_orders order)
Get a linked list of the Variable: headers with order specified.
Definition: manager.c:1738
const char * astman_get_header(const struct message *m, char *var)
Get header from manager transaction.
Definition: manager.c:1647
int ast_manager_unregister(const char *action)
Unregister a registered manager command.
Definition: manager.c:7697
int ast_sip_push_task(struct ast_taskprocessor *serializer, int(*sip_task)(void *), void *task_data)
Pushes a task to SIP servants.
Definition: res_pjsip.c:2099
Application convenience functions, designed to give consistent look and feel to Asterisk apps.
#define AST_APP_ARG(name)
Define an application argument.
#define AST_DECLARE_APP_ARGS(name, arglist)
Declare a structure to hold an application's arguments.
#define AST_STANDARD_APP_ARGS(args, parse)
Performs the 'standard' argument separation process for an application.
Configuration File Parser.
#define ast_variable_new(name, value, filename)
void ast_variables_destroy(struct ast_variable *var)
Free variable list.
Definition: extconf.c:1262
#define ast_debug(level,...)
Log a DEBUG message.
#define LOG_ERROR
#define LOG_NOTICE
#define LOG_WARNING
static struct ao2_container * endpoints
The AMI - Asterisk Manager Interface - is a TCP protocol created to manage Asterisk with third-party ...
#define EVENT_FLAG_SYSTEM
Definition: manager.h:75
@ ORDER_NATURAL
Definition: manager.h:289
#define ast_manager_register_xml(action, authority, func)
Register a manager callback using XML documentation to describe the manager.
Definition: manager.h:192
Asterisk module definitions.
@ AST_MODFLAG_LOAD_ORDER
Definition: module.h:331
#define AST_MODULE_INFO(keystr, flags_to_set, desc, fields...)
Definition: module.h:557
@ AST_MODPRI_APP_DEPEND
Definition: module.h:342
@ AST_MODULE_SUPPORT_CORE
Definition: module.h:121
#define ASTERISK_GPL_KEY
The text the key() function should return.
Definition: module.h:46
int ast_unregister_application(const char *app)
Unregister an application.
Definition: pbx_app.c:392
@ AST_MODULE_LOAD_SUCCESS
Definition: module.h:70
@ AST_MODULE_LOAD_DECLINE
Module has failed to load, may be in an inconsistent state.
Definition: module.h:78
#define ast_register_application_xml(app, execute)
Register an application using XML documentation.
Definition: module.h:640
def info(msg)
Core PBX routines and definitions.
static int reload(void)
struct ao2_container * container
Definition: res_fax.c:531
struct ast_sip_aor * ast_sip_location_retrieve_aor(const char *aor_name)
Retrieve a named AOR.
Definition: location.c:147
int ast_sip_send_request(pjsip_tx_data *tdata, struct pjsip_dialog *dlg, struct ast_sip_endpoint *endpoint, void *token, void(*callback)(void *token, pjsip_event *e))
General purpose method for sending a SIP request.
Definition: res_pjsip.c:1979
struct ast_sip_endpoint * ast_sip_default_outbound_endpoint(void)
Retrieve the default outbound endpoint.
int ast_sip_add_body(pjsip_tx_data *tdata, const struct ast_sip_body *body)
Add a body to an outbound SIP message.
Definition: res_pjsip.c:2052
int ast_sip_create_request(const char *method, struct pjsip_dialog *dlg, struct ast_sip_endpoint *endpoint, const char *uri, struct ast_sip_contact *contact, pjsip_tx_data **tdata)
General purpose method for creating a SIP request.
Definition: res_pjsip.c:1435
int ast_sip_add_header(pjsip_tx_data *tdata, const char *name, const char *value)
Add a header to an outbound SIP message.
Definition: res_pjsip.c:2008
struct ast_sorcery * ast_sip_get_sorcery(void)
Get a pointer to the SIP sorcery structure.
struct ao2_container * ast_sip_location_retrieve_aor_contacts(const struct ast_sip_aor *aor)
Retrieve all contacts currently available for an AOR.
Definition: location.c:247
AO2_GLOBAL_OBJ_STATIC(globals)
static void build_notify_body(pjsip_tx_data *tdata, struct ast_str *content_type, struct ast_str *content)
static void * notify_option_find(struct ao2_container *container, const char *category)
static void notify_ami_channel_data_destroy(void *obj)
static void * notify_cfg_alloc(void)
static int notify_option_cmp(void *obj, void *arg, int flags)
static struct notify_channel_data * notify_cli_channel_data_create(struct ast_sip_session *session, void *info)
static void * notify_option_alloc(const char *category)
static void notify_ami_data_destroy(void *obj)
static int not_allowed(const char *name)
static enum notify_result push_notify_channel(const char *channel_name, void *info, task_channel_data_create data_create)
struct notify_channel_data *(* task_channel_data_create)(struct ast_sip_session *session, void *info)
static struct aco_type * notify_options[]
static void manager_notify_endpoint(struct mansession *s, const struct message *m, const char *endpoint_name)
CONFIG_INFO_STANDARD(notify_cfg, globals, notify_cfg_alloc,.files=ACO_FILES(&module_conf))
static void build_cli_notify(pjsip_tx_data *tdata, void *info)
static struct notify_data * notify_cli_data_create(struct ast_sip_endpoint *endpoint, void *info)
static struct aco_file module_conf
static struct notify_uri_data * notify_ami_uri_data_create(const char *uri, void *info)
struct notify_uri_data *(* task_uri_data_create)(const char *uri, void *info)
static char * cli_complete_endpoint(const char *word)
static char * cli_notify(struct ast_cli_entry *e, int cmd, struct ast_cli_args *a)
static void manager_notify_channel(struct mansession *s, const struct message *m, const char *channel)
static struct notify_data * notify_ami_data_create(struct ast_sip_endpoint *endpoint, void *info)
static int notify_contact(void *obj, void *arg, int flags)
static void build_notify(pjsip_tx_data *tdata, const char *name, const char *value, struct ast_str **content_type, struct ast_str **content)
static enum notify_result push_notify_uri(const char *uri, void *info, task_uri_data_create data_create)
static int reload_module(void)
static void build_ami_notify(pjsip_tx_data *tdata, void *info)
static int notify_uri(void *obj)
static int app_notify(struct ast_channel *chan, const char *data)
Application entry point to send a SIP notify to an endpoint.
static struct ast_variable * headers_to_variables(const char *headers)
Convert headers string such as "Event=hold&Event=answer&..." into ast variable list.
static int notify_channel(void *obj)
static int multiple_headers_allowed(const char *name)
static int manager_notify(struct mansession *s, const struct message *m)
notify_result
@ TASK_PUSH_ERROR
@ ALLOC_ERROR
@ SUCCESS
@ INVALID_ENDPOINT
@ INVALID_CHANNEL
static char * cli_complete_notify(struct ast_cli_args *a)
static struct ast_cli_entry cli_options[]
static int notify_option_handler(const struct aco_option *opt, struct ast_variable *var, void *obj)
static int notify_endpoint(void *obj)
static void notify_cli_uri_data_destroy(void *obj)
static void notify_cfg_destroy(void *obj)
static void notify_cli_channel_data_destroy(void *obj)
static struct notify_channel_data * notify_ami_channel_data_create(struct ast_sip_session *session, void *info)
static int load_module(void)
static void notify_ami_uri_data_destroy(void *obj)
static int unload_module(void)
static struct notify_uri_data * notify_cli_uri_data_create(const char *uri, void *info)
static void manager_send_response(struct mansession *s, const struct message *m, enum notify_type type, enum notify_result res, struct ast_variable *vars, const char *endpoint_name)
static int notify_option_hash(const void *obj, int flags)
static enum notify_result push_notify(const char *endpoint_name, void *info, task_data_create data_create)
#define CONTENT_TYPE_SIZE
static void notify_cli_data_destroy(void *obj)
static void notify_option_destroy(void *obj)
struct notify_data *(* task_data_create)(struct ast_sip_endpoint *, void *info)
static const char notify_config[]
notify_type
@ NOTIFY_CHANNEL
@ NOTIFY_ENDPOINT
@ NOTIFY_URI
static void manager_notify_uri(struct mansession *s, const struct message *m, const char *uri)
#define CONTENT_SIZE
#define NULL
Definition: resample.c:96
Sorcery Data Access Layer API.
const char * ast_sorcery_object_get_id(const void *object)
Get the unique identifier of a sorcery object.
Definition: sorcery.c:2317
void * ast_sorcery_retrieve_by_id(const struct ast_sorcery *sorcery, const char *type, const char *id)
Retrieve an object using its unique identifier.
Definition: sorcery.c:1853
struct ao2_container * ast_sorcery_retrieve_by_prefix(const struct ast_sorcery *sorcery, const char *type, const char *prefix, const size_t prefix_len)
Retrieve multiple objects whose id begins with the specified prefix.
Definition: sorcery.c:1989
int ast_str_append(struct ast_str **buf, ssize_t max_len, const char *fmt,...)
Append to a thread local dynamic string.
Definition: strings.h:1139
char * ast_str_buffer(const struct ast_str *buf)
Returns the string buffer within the ast_str buf.
Definition: strings.h:761
static force_inline int attribute_pure ast_strlen_zero(const char *s)
Definition: strings.h:65
#define ast_str_create(init_len)
Create a malloc'ed dynamic length string.
Definition: strings.h:659
int ast_str_set(struct ast_str **buf, ssize_t max_len, const char *fmt,...)
Set a dynamic string using variable arguments.
Definition: strings.h:1113
size_t ast_str_strlen(const struct ast_str *buf)
Returns the current length of the string stored within buf.
Definition: strings.h:730
static force_inline int attribute_pure ast_str_case_hash(const char *str)
Compute a hash value on a case-insensitive string.
Definition: strings.h:1303
void ast_copy_string(char *dst, const char *src, size_t size)
Size-limited null-terminating string copy.
Definition: strings.h:425
char * ast_strip(char *s)
Strip leading/trailing whitespace from a string.
Definition: strings.h:223
The representation of a single configuration file to be processed.
const char * filename
Type information about a category-level configurable object.
const char * name
Generic container type.
When we need to walk through a container, we use an ao2_iterator to keep track of the current positio...
Definition: astobj2.h:1821
Main Channel structure associated with a channel.
descriptor for a cli entry.
Definition: cli.h:171
char * command
Definition: cli.h:186
const char * usage
Definition: cli.h:177
A SIP address of record.
Definition: res_pjsip.h:478
SIP body description.
Definition: res_pjsip.h:2444
const char * type
Definition: res_pjsip.h:2446
const char * body_text
Definition: res_pjsip.h:2450
const char * subtype
Definition: res_pjsip.h:2448
A structure which contains a channel implementation and session.
struct ast_sip_session * session
Pointer to session.
Contact associated with an address of record.
Definition: res_pjsip.h:390
const ast_string_field uri
Definition: res_pjsip.h:412
An entity with which Asterisk communicates.
Definition: res_pjsip.h:1051
A structure describing a SIP session.
struct ast_sip_endpoint * endpoint
Support for dynamic strings.
Definition: strings.h:623
Structure for variables, used for configurations and for channel variables.
struct ast_variable * next
In case you didn't read that giant block of text above the mansession_session struct,...
Definition: manager.c:327
struct ao2_container * notify_options
struct ast_sip_session * session
void(* build_notify)(pjsip_tx_data *, void *)
struct ast_sip_endpoint * endpoint
void(* build_notify)(pjsip_tx_data *, void *)
struct ao2_container * items
void(* build_notify)(pjsip_tx_data *, void *)
int value
Definition: syslog.c:37
static struct aco_type item
Definition: test_config.c:1463
const char * args
static struct test_val a
static struct test_val c
#define RAII_VAR(vartype, varname, initval, dtor)
Declare a variable that will call a destructor function when it goes out of scope.
Definition: utils.h:941
#define ast_assert(a)
Definition: utils.h:739
#define ARRAY_LEN(a)
Definition: utils.h:666