Asterisk - The Open Source Telephony Project  18.5.0
res_pjsip_dtmf_info.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  * Jason Parker <[email protected]>
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  <depend>res_pjsip_session</depend>
23  <support_level>core</support_level>
24  ***/
25 
26 #include "asterisk.h"
27 
28 #include <pjsip.h>
29 #include <pjsip_ua.h>
30 
31 #include "asterisk/res_pjsip.h"
33 #include "asterisk/module.h"
34 
35 static int is_media_type(pjsip_rx_data *rdata, char *subtype)
36 {
37  return rdata->msg_info.ctype
38  && !pj_strcmp2(&rdata->msg_info.ctype->media.type, "application")
39  && !pj_strcmp2(&rdata->msg_info.ctype->media.subtype, subtype);
40 }
41 
43  struct pjsip_rx_data *rdata, int code)
44 {
45  pjsip_tx_data *tdata;
46  pjsip_dialog *dlg = session->inv_session->dlg;
47 
48  if (pjsip_dlg_create_response(dlg, rdata, code,
49  NULL, &tdata) == PJ_SUCCESS) {
50  struct pjsip_transaction *tsx = pjsip_rdata_get_tsx(rdata);
51  pjsip_dlg_send_response(dlg, tsx, tdata);
52  }
53 }
54 
55 static char get_event(const char *c)
56 {
57  unsigned int event;
58 
59  if (*c == '!' || *c == '*' || *c == '#' ||
60  ('A' <= *c && *c <= 'D') ||
61  ('a' <= *c && *c <= 'd')) {
62  return *c;
63  }
64 
65  if ((sscanf(c, "%30u", &event) != 1) || event > 16) {
66  return '\0';
67  }
68 
69  if (event < 10) {
70  return *c;
71  }
72 
73  switch (event) {
74  case 10: return '*';
75  case 11: return '#';
76  case 16: return '!';
77  }
78 
79  return 'A' + (event - 12);
80 }
81 
82 static int dtmf_info_incoming_request(struct ast_sip_session *session, struct pjsip_rx_data *rdata)
83 {
84  pjsip_msg_body *body = rdata->msg_info.msg->body;
85  char buf[body ? body->len + 1 : 1];
86  char *cur = buf;
87  char *line;
88  char event = '\0';
89  unsigned int duration = 100;
90  char is_dtmf, is_dtmf_relay, is_flash;
91  int res;
92 
93  if (!session->channel) {
94  return 0;
95  }
96 
97  is_dtmf = is_media_type(rdata, "dtmf");
98  is_dtmf_relay = is_media_type(rdata, "dtmf-relay");
99  is_flash = is_media_type(rdata, "hook-flash");
100 
101  if (!is_flash && !is_dtmf && !is_dtmf_relay) {
102  return 0;
103  }
104 
105  if (!body || !body->len) {
106  /* need to return 200 OK on empty body */
107  send_response(session, rdata, 200);
108  return 1;
109  }
110 
111  res = body->print_body(body, buf, body->len);
112  if (res < 0) {
113  send_response(session, rdata, 500);
114  return 1;
115  }
116  buf[res] = '\0';
117 
118  if (is_dtmf) {
119  /* directly use what is in the message body */
120  event = get_event(cur);
121  } else if (is_dtmf_relay) { /* content type = application/dtmf-relay */
122  while ((line = strsep(&cur, "\r\n"))) {
123  char *c;
124 
125  if (!(c = strchr(line, '='))) {
126  continue;
127  }
128 
129  *c++ = '\0';
130  c = ast_skip_blanks(c);
131 
132  if (!strcasecmp(line, "signal")) {
133  if (!(event = get_event(c))) {
134  break;
135  }
136  } else if (!strcasecmp(line, "duration")) {
137  sscanf(c, "%30u", &duration);
138  }
139  }
140  }
141 
142  if (event == '!' || is_flash) {
143  struct ast_frame f = { AST_FRAME_CONTROL, { AST_CONTROL_FLASH, } };
144  ast_queue_frame(session->channel, &f);
145  } else if (event != '\0') {
146  struct ast_frame f = { AST_FRAME_DTMF, };
147  f.len = duration;
148  f.subclass.integer = event;
149  ast_queue_frame(session->channel, &f);
150  } else {
151  ast_log(LOG_ERROR, "Invalid DTMF event signal in INFO message.\n");
152  }
153 
154  send_response(session, rdata, event ? 200 : 500);
155  return 1;
156 }
157 
159  .method = "INFO",
161  .incoming_request = dtmf_info_incoming_request,
162 };
163 
164 static int load_module(void)
165 {
166  ast_sip_session_register_supplement(&dtmf_info_supplement);
168 }
169 
170 static int unload_module(void)
171 {
172  ast_sip_session_unregister_supplement(&dtmf_info_supplement);
173  return 0;
174 }
175 
176 AST_MODULE_INFO(ASTERISK_GPL_KEY, AST_MODFLAG_LOAD_ORDER, "PJSIP DTMF INFO Support",
177  .support_level = AST_MODULE_SUPPORT_CORE,
178  .load = load_module,
179  .unload = unload_module,
180  .load_pri = AST_MODPRI_APP_DEPEND,
181  .requires = "res_pjsip,res_pjsip_session",
182 );
Asterisk main include file. File version handling, generic pbx functions.
static int load_module(void)
static char get_event(const char *c)
char buf[BUFSIZE]
Definition: eagi_proxy.c:66
static struct ast_sip_session_supplement dtmf_info_supplement
Definition: astman.c:222
static struct test_val c
void ast_sip_session_unregister_supplement(struct ast_sip_session_supplement *supplement)
Unregister a an supplement to SIP session processing.
Definition: pjsip_session.c:63
#define NULL
Definition: resample.c:96
#define AST_FRAME_DTMF
struct pjsip_inv_session * inv_session
A structure describing a SIP session.
struct ast_frame_subclass subclass
#define ast_log
Definition: astobj2.c:42
static struct ast_mansession session
struct ast_channel * channel
int ast_queue_frame(struct ast_channel *chan, struct ast_frame *f)
Queue one or more frames to a channel&#39;s frame queue.
Definition: channel.c:1139
static int is_media_type(pjsip_rx_data *rdata, char *subtype)
#define LOG_ERROR
Definition: logger.h:285
char * ast_skip_blanks(const char *str)
Gets a pointer to the first non-whitespace character in a string.
Definition: strings.h:157
static int dtmf_info_incoming_request(struct ast_sip_session *session, struct pjsip_rx_data *rdata)
AST_MODULE_INFO(ASTERISK_GPL_KEY, AST_MODFLAG_GLOBAL_SYMBOLS|AST_MODFLAG_LOAD_ORDER, "HTTP Phone Provisioning",.support_level=AST_MODULE_SUPPORT_EXTENDED,.load=load_module,.unload=unload_module,.reload=reload,.load_pri=AST_MODPRI_CHANNEL_DEPEND,.requires="http",)
A supplement to SIP message processing.
char * strsep(char **str, const char *delims)
static int unload_module(void)
Data structure associated with a single frame of data.
#define ASTERISK_GPL_KEY
The text the key() function should return.
Definition: module.h:46
Asterisk module definitions.
static void send_response(struct ast_sip_session *session, struct pjsip_rx_data *rdata, int code)
#define ast_sip_session_register_supplement(supplement)