res_pjsip_send_to_voicemail.c 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232
  1. /*
  2. * Asterisk -- An open source telephony toolkit.
  3. *
  4. * Copyright (C) 2013, Digium, Inc.
  5. *
  6. * Jonathan Rose <jrose@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. /*! \file
  19. *
  20. * \brief Module for managing send to voicemail requests in SIP
  21. * REFER messages against PJSIP channels
  22. *
  23. * \author Jonathan Rose <jrose@digium.com>
  24. */
  25. /*** MODULEINFO
  26. <depend>pjproject</depend>
  27. <depend>res_pjsip</depend>
  28. <depend>res_pjsip_session</depend>
  29. <support_level>core</support_level>
  30. ***/
  31. #include "asterisk.h"
  32. #include <pjsip.h>
  33. #include <pjsip_ua.h>
  34. #include "asterisk/pbx.h"
  35. #include "asterisk/res_pjsip.h"
  36. #include "asterisk/res_pjsip_session.h"
  37. #include "asterisk/module.h"
  38. #define DATASTORE_NAME "call_feature_send_to_vm_datastore"
  39. #define SEND_TO_VM_HEADER "PJSIP_HEADER(add,X-Digium-Call-Feature)"
  40. #define SEND_TO_VM_HEADER_VALUE "feature_send_to_vm"
  41. #define SEND_TO_VM_REDIRECT "REDIRECTING(reason)"
  42. #define SEND_TO_VM_REDIRECT_VALUE "\"send_to_vm\""
  43. static void send_response(struct ast_sip_session *session, int code, struct pjsip_rx_data *rdata)
  44. {
  45. pjsip_tx_data *tdata;
  46. if (pjsip_dlg_create_response(session->inv_session->dlg, rdata, code, NULL, &tdata) == PJ_SUCCESS) {
  47. struct pjsip_transaction *tsx = pjsip_rdata_get_tsx(rdata);
  48. pjsip_dlg_send_response(session->inv_session->dlg, tsx, tdata);
  49. }
  50. }
  51. static void channel_cleanup_wrapper(void *data)
  52. {
  53. struct ast_channel *chan = data;
  54. ast_channel_cleanup(chan);
  55. }
  56. static struct ast_datastore_info call_feature_info = {
  57. .type = "REFER call feature info",
  58. .destroy = channel_cleanup_wrapper,
  59. };
  60. static pjsip_param *get_diversion_reason(pjsip_fromto_hdr *hdr)
  61. {
  62. static const pj_str_t reason_str = { "reason", 6 };
  63. return pjsip_param_find(&hdr->other_param, &reason_str);
  64. }
  65. static pjsip_fromto_hdr *get_diversion_header(pjsip_rx_data *rdata)
  66. {
  67. static const pj_str_t from_str = { "From", 4 };
  68. static const pj_str_t diversion_str = { "Diversion", 9 };
  69. pjsip_generic_string_hdr *hdr;
  70. pj_str_t value;
  71. if (!(hdr = pjsip_msg_find_hdr_by_name(
  72. rdata->msg_info.msg, &diversion_str, NULL))) {
  73. return NULL;
  74. }
  75. pj_strdup_with_null(rdata->tp_info.pool, &value, &hdr->hvalue);
  76. /* parse as a fromto header */
  77. return pjsip_parse_hdr(rdata->tp_info.pool, &from_str, value.ptr,
  78. pj_strlen(&value), NULL);
  79. }
  80. static int has_diversion_reason(pjsip_rx_data *rdata)
  81. {
  82. pjsip_param *reason;
  83. pjsip_fromto_hdr *hdr = get_diversion_header(rdata);
  84. return hdr &&
  85. (reason = get_diversion_reason(hdr)) &&
  86. !pj_stricmp2(&reason->value, SEND_TO_VM_REDIRECT_VALUE);
  87. }
  88. static int has_call_feature(pjsip_rx_data *rdata)
  89. {
  90. static const pj_str_t call_feature_str = { "X-Digium-Call-Feature", 21 };
  91. pjsip_generic_string_hdr *hdr = pjsip_msg_find_hdr_by_name(
  92. rdata->msg_info.msg, &call_feature_str, NULL);
  93. return hdr && !pj_stricmp2(&hdr->hvalue, SEND_TO_VM_HEADER_VALUE);
  94. }
  95. static int handle_incoming_request(struct ast_sip_session *session, struct pjsip_rx_data *rdata)
  96. {
  97. struct ast_datastore *sip_session_datastore;
  98. struct ast_channel *other_party;
  99. int has_feature = has_call_feature(rdata);
  100. int has_reason = has_diversion_reason(rdata);
  101. if (!has_feature && !has_reason) {
  102. /* If we don't have a call feature or diversion reason or if
  103. it's not a feature this module is related to then there
  104. is nothing to do. */
  105. return 0;
  106. }
  107. /* Check bridge status... */
  108. other_party = ast_channel_bridge_peer(session->channel);
  109. if (!other_party) {
  110. /* The channel wasn't in a two party bridge */
  111. ast_log(LOG_WARNING, "%s (%s) attempted to transfer to voicemail, "
  112. "but was not in a two party bridge.\n",
  113. ast_sorcery_object_get_id(session->endpoint),
  114. ast_channel_name(session->channel));
  115. send_response(session, 400, rdata);
  116. return -1;
  117. }
  118. sip_session_datastore = ast_sip_session_alloc_datastore(
  119. &call_feature_info, DATASTORE_NAME);
  120. if (!sip_session_datastore) {
  121. ast_channel_unref(other_party);
  122. send_response(session, 500, rdata);
  123. return -1;
  124. }
  125. sip_session_datastore->data = other_party;
  126. if (ast_sip_session_add_datastore(session, sip_session_datastore)) {
  127. ast_channel_unref(other_party);
  128. ao2_ref(sip_session_datastore, -1);
  129. send_response(session, 500, rdata);
  130. return -1;
  131. }
  132. ao2_ref(sip_session_datastore, -1);
  133. if (has_feature) {
  134. pbx_builtin_setvar_helper(other_party, SEND_TO_VM_HEADER,
  135. SEND_TO_VM_HEADER_VALUE);
  136. }
  137. if (has_reason) {
  138. pbx_builtin_setvar_helper(other_party, SEND_TO_VM_REDIRECT,
  139. SEND_TO_VM_REDIRECT_VALUE);
  140. }
  141. return 0;
  142. }
  143. static void handle_outgoing_response(struct ast_sip_session *session, struct pjsip_tx_data *tdata)
  144. {
  145. pjsip_status_line status = tdata->msg->line.status;
  146. struct ast_datastore *feature_datastore =
  147. ast_sip_session_get_datastore(session, DATASTORE_NAME);
  148. struct ast_channel *target_chan;
  149. if (!feature_datastore) {
  150. return;
  151. }
  152. /* Since we are handling the response, there is no need to keep the datastore in the session anymore. */
  153. ast_sip_session_remove_datastore(session, DATASTORE_NAME);
  154. /* If the response >= 300, the refer failed and we need to clear the feature. */
  155. if (status.code >= 300) {
  156. target_chan = feature_datastore->data;
  157. pbx_builtin_setvar_helper(target_chan, SEND_TO_VM_HEADER, NULL);
  158. pbx_builtin_setvar_helper(target_chan, SEND_TO_VM_REDIRECT, NULL);
  159. }
  160. ao2_ref(feature_datastore, -1);
  161. }
  162. static struct ast_sip_session_supplement refer_supplement = {
  163. .method = "REFER",
  164. .incoming_request = handle_incoming_request,
  165. .outgoing_response = handle_outgoing_response,
  166. };
  167. static int load_module(void)
  168. {
  169. CHECK_PJSIP_SESSION_MODULE_LOADED();
  170. if (ast_sip_session_register_supplement(&refer_supplement)) {
  171. ast_log(LOG_ERROR, "Unable to register Send to Voicemail supplement\n");
  172. return AST_MODULE_LOAD_FAILURE;
  173. }
  174. return AST_MODULE_LOAD_SUCCESS;
  175. }
  176. static int unload_module(void)
  177. {
  178. ast_sip_session_unregister_supplement(&refer_supplement);
  179. return 0;
  180. }
  181. AST_MODULE_INFO(ASTERISK_GPL_KEY, AST_MODFLAG_LOAD_ORDER, "PJSIP REFER Send to Voicemail Support",
  182. .support_level = AST_MODULE_SUPPORT_CORE,
  183. .load = load_module,
  184. .unload = unload_module,
  185. .load_pri = AST_MODPRI_APP_DEPEND,
  186. );