chan_pjsip.c 68 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298
  1. /*
  2. * Asterisk -- An open source telephony toolkit.
  3. *
  4. * Copyright (C) 2013, Digium, Inc.
  5. *
  6. * Joshua Colp <jcolp@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. * \author Joshua Colp <jcolp@digium.com>
  21. *
  22. * \brief PSJIP SIP Channel Driver
  23. *
  24. * \ingroup channel_drivers
  25. */
  26. /*** MODULEINFO
  27. <depend>pjproject</depend>
  28. <depend>res_pjsip</depend>
  29. <depend>res_pjsip_session</depend>
  30. <support_level>core</support_level>
  31. ***/
  32. #include "asterisk.h"
  33. #include <pjsip.h>
  34. #include <pjsip_ua.h>
  35. #include <pjlib.h>
  36. ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
  37. #include "asterisk/lock.h"
  38. #include "asterisk/channel.h"
  39. #include "asterisk/module.h"
  40. #include "asterisk/pbx.h"
  41. #include "asterisk/rtp_engine.h"
  42. #include "asterisk/acl.h"
  43. #include "asterisk/callerid.h"
  44. #include "asterisk/file.h"
  45. #include "asterisk/cli.h"
  46. #include "asterisk/app.h"
  47. #include "asterisk/musiconhold.h"
  48. #include "asterisk/causes.h"
  49. #include "asterisk/taskprocessor.h"
  50. #include "asterisk/dsp.h"
  51. #include "asterisk/stasis_endpoints.h"
  52. #include "asterisk/stasis_channels.h"
  53. #include "asterisk/indications.h"
  54. #include "asterisk/threadstorage.h"
  55. #include "asterisk/features_config.h"
  56. #include "asterisk/pickup.h"
  57. #include "asterisk/test.h"
  58. #include "asterisk/res_pjsip.h"
  59. #include "asterisk/res_pjsip_session.h"
  60. #include "pjsip/include/chan_pjsip.h"
  61. #include "pjsip/include/dialplan_functions.h"
  62. AST_THREADSTORAGE(uniqueid_threadbuf);
  63. #define UNIQUEID_BUFSIZE 256
  64. static const char desc[] = "PJSIP Channel";
  65. static const char channel_type[] = "PJSIP";
  66. static unsigned int chan_idx;
  67. static void chan_pjsip_pvt_dtor(void *obj)
  68. {
  69. struct chan_pjsip_pvt *pvt = obj;
  70. int i;
  71. for (i = 0; i < SIP_MEDIA_SIZE; ++i) {
  72. ao2_cleanup(pvt->media[i]);
  73. pvt->media[i] = NULL;
  74. }
  75. }
  76. /* \brief Asterisk core interaction functions */
  77. static struct ast_channel *chan_pjsip_request(const char *type, struct ast_format_cap *cap, const struct ast_assigned_ids *assignedids, const struct ast_channel *requestor, const char *data, int *cause);
  78. static int chan_pjsip_sendtext(struct ast_channel *ast, const char *text);
  79. static int chan_pjsip_digit_begin(struct ast_channel *ast, char digit);
  80. static int chan_pjsip_digit_end(struct ast_channel *ast, char digit, unsigned int duration);
  81. static int chan_pjsip_call(struct ast_channel *ast, const char *dest, int timeout);
  82. static int chan_pjsip_hangup(struct ast_channel *ast);
  83. static int chan_pjsip_answer(struct ast_channel *ast);
  84. static struct ast_frame *chan_pjsip_read(struct ast_channel *ast);
  85. static int chan_pjsip_write(struct ast_channel *ast, struct ast_frame *f);
  86. static int chan_pjsip_indicate(struct ast_channel *ast, int condition, const void *data, size_t datalen);
  87. static int chan_pjsip_transfer(struct ast_channel *ast, const char *target);
  88. static int chan_pjsip_fixup(struct ast_channel *oldchan, struct ast_channel *newchan);
  89. static int chan_pjsip_devicestate(const char *data);
  90. static int chan_pjsip_queryoption(struct ast_channel *ast, int option, void *data, int *datalen);
  91. static const char *chan_pjsip_get_uniqueid(struct ast_channel *ast);
  92. /*! \brief PBX interface structure for channel registration */
  93. struct ast_channel_tech chan_pjsip_tech = {
  94. .type = channel_type,
  95. .description = "PJSIP Channel Driver",
  96. .requester = chan_pjsip_request,
  97. .send_text = chan_pjsip_sendtext,
  98. .send_digit_begin = chan_pjsip_digit_begin,
  99. .send_digit_end = chan_pjsip_digit_end,
  100. .call = chan_pjsip_call,
  101. .hangup = chan_pjsip_hangup,
  102. .answer = chan_pjsip_answer,
  103. .read = chan_pjsip_read,
  104. .write = chan_pjsip_write,
  105. .write_video = chan_pjsip_write,
  106. .exception = chan_pjsip_read,
  107. .indicate = chan_pjsip_indicate,
  108. .transfer = chan_pjsip_transfer,
  109. .fixup = chan_pjsip_fixup,
  110. .devicestate = chan_pjsip_devicestate,
  111. .queryoption = chan_pjsip_queryoption,
  112. .func_channel_read = pjsip_acf_channel_read,
  113. .get_pvt_uniqueid = chan_pjsip_get_uniqueid,
  114. .properties = AST_CHAN_TP_WANTSJITTER | AST_CHAN_TP_CREATESJITTER
  115. };
  116. /*! \brief SIP session interaction functions */
  117. static void chan_pjsip_session_begin(struct ast_sip_session *session);
  118. static void chan_pjsip_session_end(struct ast_sip_session *session);
  119. static int chan_pjsip_incoming_request(struct ast_sip_session *session, struct pjsip_rx_data *rdata);
  120. static void chan_pjsip_incoming_response(struct ast_sip_session *session, struct pjsip_rx_data *rdata);
  121. /*! \brief SIP session supplement structure */
  122. static struct ast_sip_session_supplement chan_pjsip_supplement = {
  123. .method = "INVITE",
  124. .priority = AST_SIP_SUPPLEMENT_PRIORITY_CHANNEL,
  125. .session_begin = chan_pjsip_session_begin,
  126. .session_end = chan_pjsip_session_end,
  127. .incoming_request = chan_pjsip_incoming_request,
  128. .incoming_response = chan_pjsip_incoming_response,
  129. /* It is important that this supplement runs after media has been negotiated */
  130. .response_priority = AST_SIP_SESSION_AFTER_MEDIA,
  131. };
  132. static int chan_pjsip_incoming_ack(struct ast_sip_session *session, struct pjsip_rx_data *rdata);
  133. static struct ast_sip_session_supplement chan_pjsip_ack_supplement = {
  134. .method = "ACK",
  135. .priority = AST_SIP_SUPPLEMENT_PRIORITY_CHANNEL,
  136. .incoming_request = chan_pjsip_incoming_ack,
  137. };
  138. /*! \brief Function called by RTP engine to get local audio RTP peer */
  139. static enum ast_rtp_glue_result chan_pjsip_get_rtp_peer(struct ast_channel *chan, struct ast_rtp_instance **instance)
  140. {
  141. struct ast_sip_channel_pvt *channel = ast_channel_tech_pvt(chan);
  142. struct chan_pjsip_pvt *pvt = channel->pvt;
  143. struct ast_sip_endpoint *endpoint;
  144. if (!pvt || !channel->session || !pvt->media[SIP_MEDIA_AUDIO]->rtp) {
  145. return AST_RTP_GLUE_RESULT_FORBID;
  146. }
  147. endpoint = channel->session->endpoint;
  148. *instance = pvt->media[SIP_MEDIA_AUDIO]->rtp;
  149. ao2_ref(*instance, +1);
  150. ast_assert(endpoint != NULL);
  151. if (endpoint->media.rtp.encryption != AST_SIP_MEDIA_ENCRYPT_NONE) {
  152. return AST_RTP_GLUE_RESULT_FORBID;
  153. }
  154. if (endpoint->media.direct_media.enabled) {
  155. return AST_RTP_GLUE_RESULT_REMOTE;
  156. }
  157. return AST_RTP_GLUE_RESULT_LOCAL;
  158. }
  159. /*! \brief Function called by RTP engine to get local video RTP peer */
  160. static enum ast_rtp_glue_result chan_pjsip_get_vrtp_peer(struct ast_channel *chan, struct ast_rtp_instance **instance)
  161. {
  162. struct ast_sip_channel_pvt *channel = ast_channel_tech_pvt(chan);
  163. struct chan_pjsip_pvt *pvt = channel->pvt;
  164. struct ast_sip_endpoint *endpoint;
  165. if (!pvt || !channel->session || !pvt->media[SIP_MEDIA_VIDEO]->rtp) {
  166. return AST_RTP_GLUE_RESULT_FORBID;
  167. }
  168. endpoint = channel->session->endpoint;
  169. *instance = pvt->media[SIP_MEDIA_VIDEO]->rtp;
  170. ao2_ref(*instance, +1);
  171. ast_assert(endpoint != NULL);
  172. if (endpoint->media.rtp.encryption != AST_SIP_MEDIA_ENCRYPT_NONE) {
  173. return AST_RTP_GLUE_RESULT_FORBID;
  174. }
  175. return AST_RTP_GLUE_RESULT_LOCAL;
  176. }
  177. /*! \brief Function called by RTP engine to get peer capabilities */
  178. static void chan_pjsip_get_codec(struct ast_channel *chan, struct ast_format_cap *result)
  179. {
  180. struct ast_sip_channel_pvt *channel = ast_channel_tech_pvt(chan);
  181. ast_format_cap_copy(result, channel->session->endpoint->media.codecs);
  182. }
  183. static int send_direct_media_request(void *data)
  184. {
  185. RAII_VAR(struct ast_sip_session *, session, data, ao2_cleanup);
  186. return ast_sip_session_refresh(session, NULL, NULL, NULL,
  187. session->endpoint->media.direct_media.method, 1);
  188. }
  189. /*! \brief Destructor function for \ref transport_info_data */
  190. static void transport_info_destroy(void *obj)
  191. {
  192. struct transport_info_data *data = obj;
  193. ast_free(data);
  194. }
  195. /*! \brief Datastore used to store local/remote addresses for the
  196. * INVITE request that created the PJSIP channel */
  197. static struct ast_datastore_info transport_info = {
  198. .type = "chan_pjsip_transport_info",
  199. .destroy = transport_info_destroy,
  200. };
  201. static struct ast_datastore_info direct_media_mitigation_info = { };
  202. static int direct_media_mitigate_glare(struct ast_sip_session *session)
  203. {
  204. RAII_VAR(struct ast_datastore *, datastore, NULL, ao2_cleanup);
  205. if (session->endpoint->media.direct_media.glare_mitigation ==
  206. AST_SIP_DIRECT_MEDIA_GLARE_MITIGATION_NONE) {
  207. return 0;
  208. }
  209. datastore = ast_sip_session_get_datastore(session, "direct_media_glare_mitigation");
  210. if (!datastore) {
  211. return 0;
  212. }
  213. /* Removing the datastore ensures we won't try to mitigate glare on subsequent reinvites */
  214. ast_sip_session_remove_datastore(session, "direct_media_glare_mitigation");
  215. if ((session->endpoint->media.direct_media.glare_mitigation ==
  216. AST_SIP_DIRECT_MEDIA_GLARE_MITIGATION_OUTGOING &&
  217. session->inv_session->role == PJSIP_ROLE_UAC) ||
  218. (session->endpoint->media.direct_media.glare_mitigation ==
  219. AST_SIP_DIRECT_MEDIA_GLARE_MITIGATION_INCOMING &&
  220. session->inv_session->role == PJSIP_ROLE_UAS)) {
  221. return 1;
  222. }
  223. return 0;
  224. }
  225. static int check_for_rtp_changes(struct ast_channel *chan, struct ast_rtp_instance *rtp,
  226. struct ast_sip_session_media *media, int rtcp_fd)
  227. {
  228. int changed = 0;
  229. if (rtp) {
  230. changed = ast_rtp_instance_get_and_cmp_remote_address(rtp, &media->direct_media_addr);
  231. if (media->rtp) {
  232. ast_channel_set_fd(chan, rtcp_fd, -1);
  233. ast_rtp_instance_set_prop(media->rtp, AST_RTP_PROPERTY_RTCP, 0);
  234. }
  235. } else if (!ast_sockaddr_isnull(&media->direct_media_addr)){
  236. ast_sockaddr_setnull(&media->direct_media_addr);
  237. changed = 1;
  238. if (media->rtp) {
  239. ast_rtp_instance_set_prop(media->rtp, AST_RTP_PROPERTY_RTCP, 1);
  240. ast_channel_set_fd(chan, rtcp_fd, ast_rtp_instance_fd(media->rtp, 1));
  241. }
  242. }
  243. return changed;
  244. }
  245. /*! \brief Function called by RTP engine to change where the remote party should send media */
  246. static int chan_pjsip_set_rtp_peer(struct ast_channel *chan,
  247. struct ast_rtp_instance *rtp,
  248. struct ast_rtp_instance *vrtp,
  249. struct ast_rtp_instance *tpeer,
  250. const struct ast_format_cap *cap,
  251. int nat_active)
  252. {
  253. struct ast_sip_channel_pvt *channel = ast_channel_tech_pvt(chan);
  254. struct chan_pjsip_pvt *pvt = channel->pvt;
  255. struct ast_sip_session *session = channel->session;
  256. int changed = 0;
  257. /* Don't try to do any direct media shenanigans on early bridges */
  258. if ((rtp || vrtp || tpeer) && !ast_channel_is_bridged(chan)) {
  259. ast_debug(4, "Disregarding setting RTP on %s: channel is not bridged\n", ast_channel_name(chan));
  260. return 0;
  261. }
  262. if (nat_active && session->endpoint->media.direct_media.disable_on_nat) {
  263. ast_debug(4, "Disregarding setting RTP on %s: NAT is active\n", ast_channel_name(chan));
  264. return 0;
  265. }
  266. if (pvt->media[SIP_MEDIA_AUDIO]) {
  267. changed |= check_for_rtp_changes(chan, rtp, pvt->media[SIP_MEDIA_AUDIO], 1);
  268. }
  269. if (pvt->media[SIP_MEDIA_VIDEO]) {
  270. changed |= check_for_rtp_changes(chan, vrtp, pvt->media[SIP_MEDIA_VIDEO], 3);
  271. }
  272. if (direct_media_mitigate_glare(session)) {
  273. ast_debug(4, "Disregarding setting RTP on %s: mitigating re-INVITE glare\n", ast_channel_name(chan));
  274. return 0;
  275. }
  276. if (cap && !ast_format_cap_is_empty(cap) && !ast_format_cap_identical(session->direct_media_cap, cap)) {
  277. ast_format_cap_copy(session->direct_media_cap, cap);
  278. changed = 1;
  279. }
  280. if (changed) {
  281. ao2_ref(session, +1);
  282. ast_debug(4, "RTP changed on %s; initiating direct media update\n", ast_channel_name(chan));
  283. if (ast_sip_push_task(session->serializer, send_direct_media_request, session)) {
  284. ao2_cleanup(session);
  285. }
  286. }
  287. return 0;
  288. }
  289. /*! \brief Local glue for interacting with the RTP engine core */
  290. static struct ast_rtp_glue chan_pjsip_rtp_glue = {
  291. .type = "PJSIP",
  292. .get_rtp_info = chan_pjsip_get_rtp_peer,
  293. .get_vrtp_info = chan_pjsip_get_vrtp_peer,
  294. .get_codec = chan_pjsip_get_codec,
  295. .update_peer = chan_pjsip_set_rtp_peer,
  296. };
  297. static void set_channel_on_rtp_instance(struct chan_pjsip_pvt *pvt, const char *channel_id)
  298. {
  299. if (pvt->media[SIP_MEDIA_AUDIO] && pvt->media[SIP_MEDIA_AUDIO]->rtp) {
  300. ast_rtp_instance_set_channel_id(pvt->media[SIP_MEDIA_AUDIO]->rtp, channel_id);
  301. }
  302. if (pvt->media[SIP_MEDIA_VIDEO] && pvt->media[SIP_MEDIA_VIDEO]->rtp) {
  303. ast_rtp_instance_set_channel_id(pvt->media[SIP_MEDIA_VIDEO]->rtp, channel_id);
  304. }
  305. }
  306. /*! \brief Function called to create a new PJSIP Asterisk channel */
  307. static struct ast_channel *chan_pjsip_new(struct ast_sip_session *session, int state, const char *exten, const char *title, const struct ast_assigned_ids *assignedids, const struct ast_channel *requestor, const char *cid_name)
  308. {
  309. struct ast_channel *chan;
  310. struct ast_format fmt;
  311. RAII_VAR(struct chan_pjsip_pvt *, pvt, NULL, ao2_cleanup);
  312. struct ast_sip_channel_pvt *channel;
  313. struct ast_variable *var;
  314. if (!(pvt = ao2_alloc(sizeof(*pvt), chan_pjsip_pvt_dtor))) {
  315. return NULL;
  316. }
  317. chan = ast_channel_alloc_with_endpoint(1, state,
  318. S_COR(session->id.number.valid, session->id.number.str, ""),
  319. S_COR(session->id.name.valid, session->id.name.str, ""),
  320. session->endpoint->accountcode, "", "", assignedids, requestor, 0,
  321. session->endpoint->persistent, "PJSIP/%s-%08x",
  322. ast_sorcery_object_get_id(session->endpoint),
  323. (unsigned) ast_atomic_fetchadd_int((int *) &chan_idx, +1));
  324. if (!chan) {
  325. return NULL;
  326. }
  327. ast_channel_tech_set(chan, &chan_pjsip_tech);
  328. if (!(channel = ast_sip_channel_pvt_alloc(pvt, session))) {
  329. ast_channel_unlock(chan);
  330. ast_hangup(chan);
  331. return NULL;
  332. }
  333. ast_channel_stage_snapshot(chan);
  334. ast_channel_tech_pvt_set(chan, channel);
  335. if (ast_format_cap_is_empty(session->req_caps) || !ast_format_cap_has_joint(session->req_caps, session->endpoint->media.codecs)) {
  336. ast_format_cap_copy(ast_channel_nativeformats(chan), session->endpoint->media.codecs);
  337. } else {
  338. ast_format_cap_copy(ast_channel_nativeformats(chan), session->req_caps);
  339. }
  340. ast_codec_choose(&session->endpoint->media.prefs, ast_channel_nativeformats(chan), 1, &fmt);
  341. ast_format_copy(ast_channel_writeformat(chan), &fmt);
  342. ast_format_copy(ast_channel_rawwriteformat(chan), &fmt);
  343. ast_format_copy(ast_channel_readformat(chan), &fmt);
  344. ast_format_copy(ast_channel_rawreadformat(chan), &fmt);
  345. if (state == AST_STATE_RING) {
  346. ast_channel_rings_set(chan, 1);
  347. }
  348. ast_channel_adsicpe_set(chan, AST_ADSI_UNAVAILABLE);
  349. ast_party_id_copy(&ast_channel_caller(chan)->id, &session->id);
  350. ast_party_id_copy(&ast_channel_caller(chan)->ani, &session->id);
  351. ast_channel_context_set(chan, session->endpoint->context);
  352. ast_channel_exten_set(chan, S_OR(exten, "s"));
  353. ast_channel_priority_set(chan, 1);
  354. ast_channel_callgroup_set(chan, session->endpoint->pickup.callgroup);
  355. ast_channel_pickupgroup_set(chan, session->endpoint->pickup.pickupgroup);
  356. ast_channel_named_callgroups_set(chan, session->endpoint->pickup.named_callgroups);
  357. ast_channel_named_pickupgroups_set(chan, session->endpoint->pickup.named_pickupgroups);
  358. if (!ast_strlen_zero(session->endpoint->language)) {
  359. ast_channel_language_set(chan, session->endpoint->language);
  360. }
  361. if (!ast_strlen_zero(session->endpoint->zone)) {
  362. struct ast_tone_zone *zone = ast_get_indication_zone(session->endpoint->zone);
  363. if (!zone) {
  364. ast_log(LOG_ERROR, "Unknown country code '%s' for tonezone. Check indications.conf for available country codes.\n", session->endpoint->zone);
  365. }
  366. ast_channel_zone_set(chan, zone);
  367. }
  368. for (var = session->endpoint->channel_vars; var; var = var->next) {
  369. char buf[512];
  370. pbx_builtin_setvar_helper(chan, var->name, ast_get_encoded_str(
  371. var->value, buf, sizeof(buf)));
  372. }
  373. ast_channel_stage_snapshot_done(chan);
  374. ast_channel_unlock(chan);
  375. /* If res_pjsip_session is ever updated to create/destroy ast_sip_session_media
  376. * during a call such as if multiple same-type stream support is introduced,
  377. * these will need to be recaptured as well */
  378. pvt->media[SIP_MEDIA_AUDIO] = ao2_find(session->media, "audio", OBJ_KEY);
  379. pvt->media[SIP_MEDIA_VIDEO] = ao2_find(session->media, "video", OBJ_KEY);
  380. set_channel_on_rtp_instance(pvt, ast_channel_uniqueid(chan));
  381. return chan;
  382. }
  383. static int answer(void *data)
  384. {
  385. pj_status_t status = PJ_SUCCESS;
  386. pjsip_tx_data *packet = NULL;
  387. struct ast_sip_session *session = data;
  388. if (session->inv_session->state == PJSIP_INV_STATE_DISCONNECTED) {
  389. ao2_ref(session, -1);
  390. return 0;
  391. }
  392. pjsip_dlg_inc_lock(session->inv_session->dlg);
  393. if (session->inv_session->invite_tsx) {
  394. status = pjsip_inv_answer(session->inv_session, 200, NULL, NULL, &packet);
  395. } else {
  396. ast_log(LOG_ERROR,"Cannot answer '%s' because there is no associated SIP transaction\n",
  397. ast_channel_name(session->channel));
  398. }
  399. pjsip_dlg_dec_lock(session->inv_session->dlg);
  400. if (status == PJ_SUCCESS && packet) {
  401. ast_sip_session_send_response(session, packet);
  402. }
  403. ao2_ref(session, -1);
  404. return (status == PJ_SUCCESS) ? 0 : -1;
  405. }
  406. /*! \brief Function called by core when we should answer a PJSIP session */
  407. static int chan_pjsip_answer(struct ast_channel *ast)
  408. {
  409. struct ast_sip_channel_pvt *channel = ast_channel_tech_pvt(ast);
  410. if (ast_channel_state(ast) == AST_STATE_UP) {
  411. return 0;
  412. }
  413. ast_setstate(ast, AST_STATE_UP);
  414. ao2_ref(channel->session, +1);
  415. if (ast_sip_push_task(channel->session->serializer, answer, channel->session)) {
  416. ast_log(LOG_WARNING, "Unable to push answer task to the threadpool. Cannot answer call\n");
  417. ao2_cleanup(channel->session);
  418. return -1;
  419. }
  420. return 0;
  421. }
  422. /*! \brief Internal helper function called when CNG tone is detected */
  423. static struct ast_frame *chan_pjsip_cng_tone_detected(struct ast_sip_session *session, struct ast_frame *f)
  424. {
  425. const char *target_context;
  426. int exists;
  427. /* If we only needed this DSP for fax detection purposes we can just drop it now */
  428. if (session->endpoint->dtmf == AST_SIP_DTMF_INBAND) {
  429. ast_dsp_set_features(session->dsp, DSP_FEATURE_DIGIT_DETECT);
  430. } else {
  431. ast_dsp_free(session->dsp);
  432. session->dsp = NULL;
  433. }
  434. /* If already executing in the fax extension don't do anything */
  435. if (!strcmp(ast_channel_exten(session->channel), "fax")) {
  436. return f;
  437. }
  438. target_context = S_OR(ast_channel_macrocontext(session->channel), ast_channel_context(session->channel));
  439. /* We need to unlock the channel here because ast_exists_extension has the
  440. * potential to start and stop an autoservice on the channel. Such action
  441. * is prone to deadlock if the channel is locked.
  442. */
  443. ast_channel_unlock(session->channel);
  444. exists = ast_exists_extension(session->channel, target_context, "fax", 1,
  445. S_COR(ast_channel_caller(session->channel)->id.number.valid,
  446. ast_channel_caller(session->channel)->id.number.str, NULL));
  447. ast_channel_lock(session->channel);
  448. if (exists) {
  449. ast_verb(2, "Redirecting '%s' to fax extension due to CNG detection\n",
  450. ast_channel_name(session->channel));
  451. pbx_builtin_setvar_helper(session->channel, "FAXEXTEN", ast_channel_exten(session->channel));
  452. if (ast_async_goto(session->channel, target_context, "fax", 1)) {
  453. ast_log(LOG_ERROR, "Failed to async goto '%s' into fax extension in '%s'\n",
  454. ast_channel_name(session->channel), target_context);
  455. }
  456. ast_frfree(f);
  457. f = &ast_null_frame;
  458. } else {
  459. ast_log(LOG_NOTICE, "FAX CNG detected on '%s' but no fax extension in '%s'\n",
  460. ast_channel_name(session->channel), target_context);
  461. }
  462. return f;
  463. }
  464. /*! \brief Function called by core to read any waiting frames */
  465. static struct ast_frame *chan_pjsip_read(struct ast_channel *ast)
  466. {
  467. struct ast_sip_channel_pvt *channel = ast_channel_tech_pvt(ast);
  468. struct chan_pjsip_pvt *pvt = channel->pvt;
  469. struct ast_frame *f;
  470. struct ast_sip_session_media *media = NULL;
  471. int rtcp = 0;
  472. int fdno = ast_channel_fdno(ast);
  473. switch (fdno) {
  474. case 0:
  475. media = pvt->media[SIP_MEDIA_AUDIO];
  476. break;
  477. case 1:
  478. media = pvt->media[SIP_MEDIA_AUDIO];
  479. rtcp = 1;
  480. break;
  481. case 2:
  482. media = pvt->media[SIP_MEDIA_VIDEO];
  483. break;
  484. case 3:
  485. media = pvt->media[SIP_MEDIA_VIDEO];
  486. rtcp = 1;
  487. break;
  488. }
  489. if (!media || !media->rtp) {
  490. return &ast_null_frame;
  491. }
  492. if (!(f = ast_rtp_instance_read(media->rtp, rtcp))) {
  493. return f;
  494. }
  495. if (f->frametype != AST_FRAME_VOICE) {
  496. return f;
  497. }
  498. if (!(ast_format_cap_iscompatible(ast_channel_nativeformats(ast), &f->subclass.format))) {
  499. ast_debug(1, "Oooh, format changed to %s\n", ast_getformatname(&f->subclass.format));
  500. ast_format_cap_set(ast_channel_nativeformats(ast), &f->subclass.format);
  501. ast_set_read_format(ast, ast_channel_readformat(ast));
  502. ast_set_write_format(ast, ast_channel_writeformat(ast));
  503. }
  504. if (channel->session->dsp) {
  505. f = ast_dsp_process(ast, channel->session->dsp, f);
  506. if (f && (f->frametype == AST_FRAME_DTMF)) {
  507. if (f->subclass.integer == 'f') {
  508. ast_debug(3, "Fax CNG detected on %s\n", ast_channel_name(ast));
  509. f = chan_pjsip_cng_tone_detected(channel->session, f);
  510. } else {
  511. ast_debug(3, "* Detected inband DTMF '%c' on '%s'\n", f->subclass.integer,
  512. ast_channel_name(ast));
  513. }
  514. }
  515. }
  516. return f;
  517. }
  518. /*! \brief Function called by core to write frames */
  519. static int chan_pjsip_write(struct ast_channel *ast, struct ast_frame *frame)
  520. {
  521. struct ast_sip_channel_pvt *channel = ast_channel_tech_pvt(ast);
  522. struct chan_pjsip_pvt *pvt = channel->pvt;
  523. struct ast_sip_session_media *media;
  524. int res = 0;
  525. switch (frame->frametype) {
  526. case AST_FRAME_VOICE:
  527. media = pvt->media[SIP_MEDIA_AUDIO];
  528. if (!media) {
  529. return 0;
  530. }
  531. if (!(ast_format_cap_iscompatible(ast_channel_nativeformats(ast), &frame->subclass.format))) {
  532. char buf[256];
  533. ast_log(LOG_WARNING,
  534. "Asked to transmit frame type %s, while native formats is %s (read/write = %s/%s)\n",
  535. ast_getformatname(&frame->subclass.format),
  536. ast_getformatname_multiple(buf, sizeof(buf), ast_channel_nativeformats(ast)),
  537. ast_getformatname(ast_channel_readformat(ast)),
  538. ast_getformatname(ast_channel_writeformat(ast)));
  539. return 0;
  540. }
  541. if (media->rtp) {
  542. res = ast_rtp_instance_write(media->rtp, frame);
  543. }
  544. break;
  545. case AST_FRAME_VIDEO:
  546. if ((media = pvt->media[SIP_MEDIA_VIDEO]) && media->rtp) {
  547. res = ast_rtp_instance_write(media->rtp, frame);
  548. }
  549. break;
  550. case AST_FRAME_MODEM:
  551. break;
  552. default:
  553. ast_log(LOG_WARNING, "Can't send %u type frames with PJSIP\n", frame->frametype);
  554. break;
  555. }
  556. return res;
  557. }
  558. /*! \brief Function called by core to change the underlying owner channel */
  559. static int chan_pjsip_fixup(struct ast_channel *oldchan, struct ast_channel *newchan)
  560. {
  561. struct ast_sip_channel_pvt *channel = ast_channel_tech_pvt(newchan);
  562. struct chan_pjsip_pvt *pvt = channel->pvt;
  563. if (channel->session->channel != oldchan) {
  564. return -1;
  565. }
  566. /*
  567. * The masquerade has suspended the channel's session
  568. * serializer so we can safely change it outside of
  569. * the serializer thread.
  570. */
  571. channel->session->channel = newchan;
  572. set_channel_on_rtp_instance(pvt, ast_channel_uniqueid(newchan));
  573. return 0;
  574. }
  575. /*! AO2 hash function for on hold UIDs */
  576. static int uid_hold_hash_fn(const void *obj, const int flags)
  577. {
  578. const char *key = obj;
  579. switch (flags & OBJ_SEARCH_MASK) {
  580. case OBJ_SEARCH_KEY:
  581. break;
  582. case OBJ_SEARCH_OBJECT:
  583. break;
  584. default:
  585. /* Hash can only work on something with a full key. */
  586. ast_assert(0);
  587. return 0;
  588. }
  589. return ast_str_hash(key);
  590. }
  591. /*! AO2 sort function for on hold UIDs */
  592. static int uid_hold_sort_fn(const void *obj_left, const void *obj_right, const int flags)
  593. {
  594. const char *left = obj_left;
  595. const char *right = obj_right;
  596. int cmp;
  597. switch (flags & OBJ_SEARCH_MASK) {
  598. case OBJ_SEARCH_OBJECT:
  599. case OBJ_SEARCH_KEY:
  600. cmp = strcmp(left, right);
  601. break;
  602. case OBJ_SEARCH_PARTIAL_KEY:
  603. cmp = strncmp(left, right, strlen(right));
  604. break;
  605. default:
  606. /* Sort can only work on something with a full or partial key. */
  607. ast_assert(0);
  608. cmp = 0;
  609. break;
  610. }
  611. return cmp;
  612. }
  613. static struct ao2_container *pjsip_uids_onhold;
  614. /*!
  615. * \brief Add a channel ID to the list of PJSIP channels on hold
  616. *
  617. * \param chan_uid - Unique ID of the channel being put into the hold list
  618. *
  619. * \retval 0 Channel has been added to or was already in the hold list
  620. * \retval -1 Failed to add channel to the hold list
  621. */
  622. static int chan_pjsip_add_hold(const char *chan_uid)
  623. {
  624. RAII_VAR(char *, hold_uid, NULL, ao2_cleanup);
  625. hold_uid = ao2_find(pjsip_uids_onhold, chan_uid, OBJ_SEARCH_KEY);
  626. if (hold_uid) {
  627. /* Device is already on hold. Nothing to do. */
  628. return 0;
  629. }
  630. /* Device wasn't in hold list already. Create a new one. */
  631. hold_uid = ao2_alloc_options(strlen(chan_uid) + 1, NULL,
  632. AO2_ALLOC_OPT_LOCK_NOLOCK);
  633. if (!hold_uid) {
  634. return -1;
  635. }
  636. ast_copy_string(hold_uid, chan_uid, strlen(chan_uid) + 1);
  637. if (ao2_link(pjsip_uids_onhold, hold_uid) == 0) {
  638. return -1;
  639. }
  640. return 0;
  641. }
  642. /*!
  643. * \brief Remove a channel ID from the list of PJSIP channels on hold
  644. *
  645. * \param chan_uid - Unique ID of the channel being taken out of the hold list
  646. */
  647. static void chan_pjsip_remove_hold(const char *chan_uid)
  648. {
  649. ao2_find(pjsip_uids_onhold, chan_uid, OBJ_SEARCH_KEY | OBJ_UNLINK | OBJ_NODATA);
  650. }
  651. /*!
  652. * \brief Determine whether a channel ID is in the list of PJSIP channels on hold
  653. *
  654. * \param chan_uid - Channel being checked
  655. *
  656. * \retval 0 The channel is not in the hold list
  657. * \retval 1 The channel is in the hold list
  658. */
  659. static int chan_pjsip_get_hold(const char *chan_uid)
  660. {
  661. RAII_VAR(char *, hold_uid, NULL, ao2_cleanup);
  662. hold_uid = ao2_find(pjsip_uids_onhold, chan_uid, OBJ_SEARCH_KEY);
  663. if (!hold_uid) {
  664. return 0;
  665. }
  666. return 1;
  667. }
  668. /*! \brief Function called to get the device state of an endpoint */
  669. static int chan_pjsip_devicestate(const char *data)
  670. {
  671. RAII_VAR(struct ast_sip_endpoint *, endpoint, ast_sorcery_retrieve_by_id(ast_sip_get_sorcery(), "endpoint", data), ao2_cleanup);
  672. enum ast_device_state state = AST_DEVICE_UNKNOWN;
  673. RAII_VAR(struct ast_endpoint_snapshot *, endpoint_snapshot, NULL, ao2_cleanup);
  674. RAII_VAR(struct stasis_cache *, cache, NULL, ao2_cleanup);
  675. struct ast_devstate_aggregate aggregate;
  676. int num, inuse = 0;
  677. if (!endpoint) {
  678. return AST_DEVICE_INVALID;
  679. }
  680. endpoint_snapshot = ast_endpoint_latest_snapshot(ast_endpoint_get_tech(endpoint->persistent),
  681. ast_endpoint_get_resource(endpoint->persistent));
  682. if (!endpoint_snapshot) {
  683. return AST_DEVICE_INVALID;
  684. }
  685. if (endpoint_snapshot->state == AST_ENDPOINT_OFFLINE) {
  686. state = AST_DEVICE_UNAVAILABLE;
  687. } else if (endpoint_snapshot->state == AST_ENDPOINT_ONLINE) {
  688. state = AST_DEVICE_NOT_INUSE;
  689. }
  690. if (!endpoint_snapshot->num_channels || !(cache = ast_channel_cache())) {
  691. return state;
  692. }
  693. ast_devstate_aggregate_init(&aggregate);
  694. ao2_ref(cache, +1);
  695. for (num = 0; num < endpoint_snapshot->num_channels; num++) {
  696. RAII_VAR(struct stasis_message *, msg, NULL, ao2_cleanup);
  697. struct ast_channel_snapshot *snapshot;
  698. msg = stasis_cache_get(cache, ast_channel_snapshot_type(),
  699. endpoint_snapshot->channel_ids[num]);
  700. if (!msg) {
  701. continue;
  702. }
  703. snapshot = stasis_message_data(msg);
  704. if (snapshot->state == AST_STATE_DOWN) {
  705. ast_devstate_aggregate_add(&aggregate, AST_DEVICE_NOT_INUSE);
  706. } else if (snapshot->state == AST_STATE_RINGING) {
  707. ast_devstate_aggregate_add(&aggregate, AST_DEVICE_RINGING);
  708. } else if ((snapshot->state == AST_STATE_UP) || (snapshot->state == AST_STATE_RING) ||
  709. (snapshot->state == AST_STATE_BUSY)) {
  710. if (chan_pjsip_get_hold(snapshot->uniqueid)) {
  711. ast_devstate_aggregate_add(&aggregate, AST_DEVICE_ONHOLD);
  712. } else {
  713. ast_devstate_aggregate_add(&aggregate, AST_DEVICE_INUSE);
  714. }
  715. inuse++;
  716. }
  717. }
  718. if (endpoint->devicestate_busy_at && (inuse == endpoint->devicestate_busy_at)) {
  719. state = AST_DEVICE_BUSY;
  720. } else if (ast_devstate_aggregate_result(&aggregate) != AST_DEVICE_INVALID) {
  721. state = ast_devstate_aggregate_result(&aggregate);
  722. }
  723. return state;
  724. }
  725. /*! \brief Function called to query options on a channel */
  726. static int chan_pjsip_queryoption(struct ast_channel *ast, int option, void *data, int *datalen)
  727. {
  728. struct ast_sip_channel_pvt *channel = ast_channel_tech_pvt(ast);
  729. struct ast_sip_session *session = channel->session;
  730. int res = -1;
  731. enum ast_sip_session_t38state state = T38_STATE_UNAVAILABLE;
  732. switch (option) {
  733. case AST_OPTION_T38_STATE:
  734. if (session->endpoint->media.t38.enabled) {
  735. switch (session->t38state) {
  736. case T38_LOCAL_REINVITE:
  737. case T38_PEER_REINVITE:
  738. state = T38_STATE_NEGOTIATING;
  739. break;
  740. case T38_ENABLED:
  741. state = T38_STATE_NEGOTIATED;
  742. break;
  743. case T38_REJECTED:
  744. state = T38_STATE_REJECTED;
  745. break;
  746. default:
  747. state = T38_STATE_UNKNOWN;
  748. break;
  749. }
  750. }
  751. *((enum ast_t38_state *) data) = state;
  752. res = 0;
  753. break;
  754. default:
  755. break;
  756. }
  757. return res;
  758. }
  759. static const char *chan_pjsip_get_uniqueid(struct ast_channel *ast)
  760. {
  761. struct ast_sip_channel_pvt *channel = ast_channel_tech_pvt(ast);
  762. char *uniqueid = ast_threadstorage_get(&uniqueid_threadbuf, UNIQUEID_BUFSIZE);
  763. if (!uniqueid) {
  764. return "";
  765. }
  766. ast_copy_pj_str(uniqueid, &channel->session->inv_session->dlg->call_id->id, UNIQUEID_BUFSIZE);
  767. return uniqueid;
  768. }
  769. struct indicate_data {
  770. struct ast_sip_session *session;
  771. int condition;
  772. int response_code;
  773. void *frame_data;
  774. size_t datalen;
  775. };
  776. static void indicate_data_destroy(void *obj)
  777. {
  778. struct indicate_data *ind_data = obj;
  779. ast_free(ind_data->frame_data);
  780. ao2_ref(ind_data->session, -1);
  781. }
  782. static struct indicate_data *indicate_data_alloc(struct ast_sip_session *session,
  783. int condition, int response_code, const void *frame_data, size_t datalen)
  784. {
  785. struct indicate_data *ind_data = ao2_alloc(sizeof(*ind_data), indicate_data_destroy);
  786. if (!ind_data) {
  787. return NULL;
  788. }
  789. ind_data->frame_data = ast_malloc(datalen);
  790. if (!ind_data->frame_data) {
  791. ao2_ref(ind_data, -1);
  792. return NULL;
  793. }
  794. memcpy(ind_data->frame_data, frame_data, datalen);
  795. ind_data->datalen = datalen;
  796. ind_data->condition = condition;
  797. ind_data->response_code = response_code;
  798. ao2_ref(session, +1);
  799. ind_data->session = session;
  800. return ind_data;
  801. }
  802. static int indicate(void *data)
  803. {
  804. pjsip_tx_data *packet = NULL;
  805. struct indicate_data *ind_data = data;
  806. struct ast_sip_session *session = ind_data->session;
  807. int response_code = ind_data->response_code;
  808. if ((session->inv_session->state != PJSIP_INV_STATE_DISCONNECTED) &&
  809. (pjsip_inv_answer(session->inv_session, response_code, NULL, NULL, &packet) == PJ_SUCCESS)) {
  810. ast_sip_session_send_response(session, packet);
  811. }
  812. ao2_ref(ind_data, -1);
  813. return 0;
  814. }
  815. /*! \brief Send SIP INFO with video update request */
  816. static int transmit_info_with_vidupdate(void *data)
  817. {
  818. const char * xml =
  819. "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\r\n"
  820. " <media_control>\r\n"
  821. " <vc_primitive>\r\n"
  822. " <to_encoder>\r\n"
  823. " <picture_fast_update/>\r\n"
  824. " </to_encoder>\r\n"
  825. " </vc_primitive>\r\n"
  826. " </media_control>\r\n";
  827. const struct ast_sip_body body = {
  828. .type = "application",
  829. .subtype = "media_control+xml",
  830. .body_text = xml
  831. };
  832. RAII_VAR(struct ast_sip_session *, session, data, ao2_cleanup);
  833. struct pjsip_tx_data *tdata;
  834. if (ast_sip_create_request("INFO", session->inv_session->dlg, session->endpoint, NULL, NULL, &tdata)) {
  835. ast_log(LOG_ERROR, "Could not create text video update INFO request\n");
  836. return -1;
  837. }
  838. if (ast_sip_add_body(tdata, &body)) {
  839. ast_log(LOG_ERROR, "Could not add body to text video update INFO request\n");
  840. return -1;
  841. }
  842. ast_sip_session_send_request(session, tdata);
  843. return 0;
  844. }
  845. /*! \brief Update connected line information */
  846. static int update_connected_line_information(void *data)
  847. {
  848. RAII_VAR(struct ast_sip_session *, session, data, ao2_cleanup);
  849. if ((ast_channel_state(session->channel) != AST_STATE_UP) && (session->inv_session->role == PJSIP_UAS_ROLE)) {
  850. int response_code = 0;
  851. if (session->inv_session->state == PJSIP_INV_STATE_DISCONNECTED) {
  852. return 0;
  853. }
  854. if (ast_channel_state(session->channel) == AST_STATE_RING) {
  855. response_code = !session->endpoint->inband_progress ? 180 : 183;
  856. } else if (ast_channel_state(session->channel) == AST_STATE_RINGING) {
  857. response_code = 183;
  858. }
  859. if (response_code) {
  860. struct pjsip_tx_data *packet = NULL;
  861. if (pjsip_inv_answer(session->inv_session, response_code, NULL, NULL, &packet) == PJ_SUCCESS) {
  862. ast_sip_session_send_response(session, packet);
  863. }
  864. }
  865. } else {
  866. enum ast_sip_session_refresh_method method = session->endpoint->id.refresh_method;
  867. int generate_new_sdp;
  868. struct ast_party_id connected_id;
  869. if (session->inv_session->invite_tsx && (session->inv_session->options & PJSIP_INV_SUPPORT_UPDATE)) {
  870. method = AST_SIP_SESSION_REFRESH_METHOD_UPDATE;
  871. }
  872. /* Only the INVITE method actually needs SDP, UPDATE can do without */
  873. generate_new_sdp = (method == AST_SIP_SESSION_REFRESH_METHOD_INVITE);
  874. /*
  875. * We can get away with a shallow copy here because we are
  876. * not looking at strings.
  877. */
  878. ast_channel_lock(session->channel);
  879. connected_id = ast_channel_connected_effective_id(session->channel);
  880. ast_channel_unlock(session->channel);
  881. if ((session->endpoint->id.send_pai || session->endpoint->id.send_rpid) &&
  882. (session->endpoint->id.trust_outbound ||
  883. ((connected_id.name.presentation & AST_PRES_RESTRICTION) == AST_PRES_ALLOWED &&
  884. (connected_id.number.presentation & AST_PRES_RESTRICTION) == AST_PRES_ALLOWED))) {
  885. ast_sip_session_refresh(session, NULL, NULL, NULL, method, generate_new_sdp);
  886. }
  887. }
  888. return 0;
  889. }
  890. /*! \brief Function called by core to ask the channel to indicate some sort of condition */
  891. static int chan_pjsip_indicate(struct ast_channel *ast, int condition, const void *data, size_t datalen)
  892. {
  893. struct ast_sip_channel_pvt *channel = ast_channel_tech_pvt(ast);
  894. struct chan_pjsip_pvt *pvt = channel->pvt;
  895. struct ast_sip_session_media *media;
  896. int response_code = 0;
  897. int res = 0;
  898. char *device_buf;
  899. size_t device_buf_size;
  900. switch (condition) {
  901. case AST_CONTROL_RINGING:
  902. if (ast_channel_state(ast) == AST_STATE_RING) {
  903. if (channel->session->endpoint->inband_progress) {
  904. response_code = 183;
  905. res = -1;
  906. } else {
  907. response_code = 180;
  908. }
  909. } else {
  910. res = -1;
  911. }
  912. ast_devstate_changed(AST_DEVICE_UNKNOWN, AST_DEVSTATE_CACHABLE, "PJSIP/%s", ast_sorcery_object_get_id(channel->session->endpoint));
  913. break;
  914. case AST_CONTROL_BUSY:
  915. if (ast_channel_state(ast) != AST_STATE_UP) {
  916. response_code = 486;
  917. } else {
  918. res = -1;
  919. }
  920. break;
  921. case AST_CONTROL_CONGESTION:
  922. if (ast_channel_state(ast) != AST_STATE_UP) {
  923. response_code = 503;
  924. } else {
  925. res = -1;
  926. }
  927. break;
  928. case AST_CONTROL_INCOMPLETE:
  929. if (ast_channel_state(ast) != AST_STATE_UP) {
  930. response_code = 484;
  931. } else {
  932. res = -1;
  933. }
  934. break;
  935. case AST_CONTROL_PROCEEDING:
  936. if (ast_channel_state(ast) != AST_STATE_UP) {
  937. response_code = 100;
  938. } else {
  939. res = -1;
  940. }
  941. break;
  942. case AST_CONTROL_PROGRESS:
  943. if (ast_channel_state(ast) != AST_STATE_UP) {
  944. response_code = 183;
  945. } else {
  946. res = -1;
  947. }
  948. break;
  949. case AST_CONTROL_VIDUPDATE:
  950. media = pvt->media[SIP_MEDIA_VIDEO];
  951. if (media && media->rtp) {
  952. /* FIXME: Only use this for VP8. Additional work would have to be done to
  953. * fully support other video codecs */
  954. struct ast_format_cap *fcap = ast_channel_nativeformats(ast);
  955. struct ast_format vp8;
  956. ast_format_set(&vp8, AST_FORMAT_VP8, 0);
  957. if (ast_format_cap_iscompatible(fcap, &vp8)) {
  958. /* FIXME Fake RTP write, this will be sent as an RTCP packet. Ideally the
  959. * RTP engine would provide a way to externally write/schedule RTCP
  960. * packets */
  961. struct ast_frame fr;
  962. fr.frametype = AST_FRAME_CONTROL;
  963. fr.subclass.integer = AST_CONTROL_VIDUPDATE;
  964. res = ast_rtp_instance_write(media->rtp, &fr);
  965. } else {
  966. ao2_ref(channel->session, +1);
  967. if (ast_sip_push_task(channel->session->serializer, transmit_info_with_vidupdate, channel->session)) {
  968. ao2_cleanup(channel->session);
  969. }
  970. }
  971. ast_test_suite_event_notify("AST_CONTROL_VIDUPDATE", "Result: Success");
  972. } else {
  973. ast_test_suite_event_notify("AST_CONTROL_VIDUPDATE", "Result: Failure");
  974. res = -1;
  975. }
  976. break;
  977. case AST_CONTROL_CONNECTED_LINE:
  978. ao2_ref(channel->session, +1);
  979. if (ast_sip_push_task(channel->session->serializer, update_connected_line_information, channel->session)) {
  980. ao2_cleanup(channel->session);
  981. }
  982. break;
  983. case AST_CONTROL_UPDATE_RTP_PEER:
  984. break;
  985. case AST_CONTROL_PVT_CAUSE_CODE:
  986. res = -1;
  987. break;
  988. case AST_CONTROL_MASQUERADE_NOTIFY:
  989. ast_assert(datalen == sizeof(int));
  990. if (*(int *) data) {
  991. /*
  992. * Masquerade is beginning:
  993. * Wait for session serializer to get suspended.
  994. */
  995. ast_channel_unlock(ast);
  996. ast_sip_session_suspend(channel->session);
  997. ast_channel_lock(ast);
  998. } else {
  999. /*
  1000. * Masquerade is complete:
  1001. * Unsuspend the session serializer.
  1002. */
  1003. ast_sip_session_unsuspend(channel->session);
  1004. }
  1005. break;
  1006. case AST_CONTROL_HOLD:
  1007. chan_pjsip_add_hold(ast_channel_uniqueid(ast));
  1008. device_buf_size = strlen(ast_channel_name(ast)) + 1;
  1009. device_buf = alloca(device_buf_size);
  1010. ast_channel_get_device_name(ast, device_buf, device_buf_size);
  1011. ast_devstate_changed_literal(AST_DEVICE_ONHOLD, 1, device_buf);
  1012. ast_moh_start(ast, data, NULL);
  1013. break;
  1014. case AST_CONTROL_UNHOLD:
  1015. chan_pjsip_remove_hold(ast_channel_uniqueid(ast));
  1016. device_buf_size = strlen(ast_channel_name(ast)) + 1;
  1017. device_buf = alloca(device_buf_size);
  1018. ast_channel_get_device_name(ast, device_buf, device_buf_size);
  1019. ast_devstate_changed_literal(AST_DEVICE_UNKNOWN, 1, device_buf);
  1020. ast_moh_stop(ast);
  1021. break;
  1022. case AST_CONTROL_SRCUPDATE:
  1023. break;
  1024. case AST_CONTROL_SRCCHANGE:
  1025. break;
  1026. case AST_CONTROL_REDIRECTING:
  1027. if (ast_channel_state(ast) != AST_STATE_UP) {
  1028. response_code = 181;
  1029. } else {
  1030. res = -1;
  1031. }
  1032. break;
  1033. case AST_CONTROL_T38_PARAMETERS:
  1034. res = 0;
  1035. if (channel->session->t38state == T38_PEER_REINVITE) {
  1036. const struct ast_control_t38_parameters *parameters = data;
  1037. if (parameters->request_response == AST_T38_REQUEST_PARMS) {
  1038. res = AST_T38_REQUEST_PARMS;
  1039. }
  1040. }
  1041. break;
  1042. case -1:
  1043. res = -1;
  1044. break;
  1045. default:
  1046. ast_log(LOG_WARNING, "Don't know how to indicate condition %d\n", condition);
  1047. res = -1;
  1048. break;
  1049. }
  1050. if (response_code) {
  1051. struct indicate_data *ind_data = indicate_data_alloc(channel->session, condition, response_code, data, datalen);
  1052. if (!ind_data || ast_sip_push_task(channel->session->serializer, indicate, ind_data)) {
  1053. ast_log(LOG_NOTICE, "Cannot send response code %d to endpoint %s. Could not queue task properly\n",
  1054. response_code, ast_sorcery_object_get_id(channel->session->endpoint));
  1055. ao2_cleanup(ind_data);
  1056. res = -1;
  1057. }
  1058. }
  1059. return res;
  1060. }
  1061. struct transfer_data {
  1062. struct ast_sip_session *session;
  1063. char *target;
  1064. };
  1065. static void transfer_data_destroy(void *obj)
  1066. {
  1067. struct transfer_data *trnf_data = obj;
  1068. ast_free(trnf_data->target);
  1069. ao2_cleanup(trnf_data->session);
  1070. }
  1071. static struct transfer_data *transfer_data_alloc(struct ast_sip_session *session, const char *target)
  1072. {
  1073. struct transfer_data *trnf_data = ao2_alloc(sizeof(*trnf_data), transfer_data_destroy);
  1074. if (!trnf_data) {
  1075. return NULL;
  1076. }
  1077. if (!(trnf_data->target = ast_strdup(target))) {
  1078. ao2_ref(trnf_data, -1);
  1079. return NULL;
  1080. }
  1081. ao2_ref(session, +1);
  1082. trnf_data->session = session;
  1083. return trnf_data;
  1084. }
  1085. static void transfer_redirect(struct ast_sip_session *session, const char *target)
  1086. {
  1087. pjsip_tx_data *packet;
  1088. enum ast_control_transfer message = AST_TRANSFER_SUCCESS;
  1089. pjsip_contact_hdr *contact;
  1090. pj_str_t tmp;
  1091. if (pjsip_inv_end_session(session->inv_session, 302, NULL, &packet) != PJ_SUCCESS) {
  1092. message = AST_TRANSFER_FAILED;
  1093. ast_queue_control_data(session->channel, AST_CONTROL_TRANSFER, &message, sizeof(message));
  1094. return;
  1095. }
  1096. if (!(contact = pjsip_msg_find_hdr(packet->msg, PJSIP_H_CONTACT, NULL))) {
  1097. contact = pjsip_contact_hdr_create(packet->pool);
  1098. }
  1099. pj_strdup2_with_null(packet->pool, &tmp, target);
  1100. if (!(contact->uri = pjsip_parse_uri(packet->pool, tmp.ptr, tmp.slen, PJSIP_PARSE_URI_AS_NAMEADDR))) {
  1101. message = AST_TRANSFER_FAILED;
  1102. ast_queue_control_data(session->channel, AST_CONTROL_TRANSFER, &message, sizeof(message));
  1103. pjsip_tx_data_dec_ref(packet);
  1104. return;
  1105. }
  1106. pjsip_msg_add_hdr(packet->msg, (pjsip_hdr *) contact);
  1107. ast_sip_session_send_response(session, packet);
  1108. ast_queue_control_data(session->channel, AST_CONTROL_TRANSFER, &message, sizeof(message));
  1109. }
  1110. static void transfer_refer(struct ast_sip_session *session, const char *target)
  1111. {
  1112. pjsip_evsub *sub;
  1113. enum ast_control_transfer message = AST_TRANSFER_SUCCESS;
  1114. pj_str_t tmp;
  1115. pjsip_tx_data *packet;
  1116. if (pjsip_xfer_create_uac(session->inv_session->dlg, NULL, &sub) != PJ_SUCCESS) {
  1117. message = AST_TRANSFER_FAILED;
  1118. ast_queue_control_data(session->channel, AST_CONTROL_TRANSFER, &message, sizeof(message));
  1119. return;
  1120. }
  1121. if (pjsip_xfer_initiate(sub, pj_cstr(&tmp, target), &packet) != PJ_SUCCESS) {
  1122. message = AST_TRANSFER_FAILED;
  1123. ast_queue_control_data(session->channel, AST_CONTROL_TRANSFER, &message, sizeof(message));
  1124. pjsip_evsub_terminate(sub, PJ_FALSE);
  1125. return;
  1126. }
  1127. pjsip_xfer_send_request(sub, packet);
  1128. ast_queue_control_data(session->channel, AST_CONTROL_TRANSFER, &message, sizeof(message));
  1129. }
  1130. static int transfer(void *data)
  1131. {
  1132. struct transfer_data *trnf_data = data;
  1133. if (ast_channel_state(trnf_data->session->channel) == AST_STATE_RING) {
  1134. transfer_redirect(trnf_data->session, trnf_data->target);
  1135. } else {
  1136. transfer_refer(trnf_data->session, trnf_data->target);
  1137. }
  1138. ao2_ref(trnf_data, -1);
  1139. return 0;
  1140. }
  1141. /*! \brief Function called by core for Asterisk initiated transfer */
  1142. static int chan_pjsip_transfer(struct ast_channel *chan, const char *target)
  1143. {
  1144. struct ast_sip_channel_pvt *channel = ast_channel_tech_pvt(chan);
  1145. struct transfer_data *trnf_data = transfer_data_alloc(channel->session, target);
  1146. if (!trnf_data) {
  1147. return -1;
  1148. }
  1149. if (ast_sip_push_task(channel->session->serializer, transfer, trnf_data)) {
  1150. ast_log(LOG_WARNING, "Error requesting transfer\n");
  1151. ao2_cleanup(trnf_data);
  1152. return -1;
  1153. }
  1154. return 0;
  1155. }
  1156. /*! \brief Function called by core to start a DTMF digit */
  1157. static int chan_pjsip_digit_begin(struct ast_channel *chan, char digit)
  1158. {
  1159. struct ast_sip_channel_pvt *channel = ast_channel_tech_pvt(chan);
  1160. struct chan_pjsip_pvt *pvt = channel->pvt;
  1161. struct ast_sip_session_media *media = pvt->media[SIP_MEDIA_AUDIO];
  1162. int res = 0;
  1163. switch (channel->session->endpoint->dtmf) {
  1164. case AST_SIP_DTMF_RFC_4733:
  1165. if (!media || !media->rtp) {
  1166. return -1;
  1167. }
  1168. ast_rtp_instance_dtmf_begin(media->rtp, digit);
  1169. case AST_SIP_DTMF_NONE:
  1170. break;
  1171. case AST_SIP_DTMF_INBAND:
  1172. res = -1;
  1173. break;
  1174. default:
  1175. break;
  1176. }
  1177. return res;
  1178. }
  1179. struct info_dtmf_data {
  1180. struct ast_sip_session *session;
  1181. char digit;
  1182. unsigned int duration;
  1183. };
  1184. static void info_dtmf_data_destroy(void *obj)
  1185. {
  1186. struct info_dtmf_data *dtmf_data = obj;
  1187. ao2_ref(dtmf_data->session, -1);
  1188. }
  1189. static struct info_dtmf_data *info_dtmf_data_alloc(struct ast_sip_session *session, char digit, unsigned int duration)
  1190. {
  1191. struct info_dtmf_data *dtmf_data = ao2_alloc(sizeof(*dtmf_data), info_dtmf_data_destroy);
  1192. if (!dtmf_data) {
  1193. return NULL;
  1194. }
  1195. ao2_ref(session, +1);
  1196. dtmf_data->session = session;
  1197. dtmf_data->digit = digit;
  1198. dtmf_data->duration = duration;
  1199. return dtmf_data;
  1200. }
  1201. static int transmit_info_dtmf(void *data)
  1202. {
  1203. RAII_VAR(struct info_dtmf_data *, dtmf_data, data, ao2_cleanup);
  1204. struct ast_sip_session *session = dtmf_data->session;
  1205. struct pjsip_tx_data *tdata;
  1206. RAII_VAR(struct ast_str *, body_text, NULL, ast_free_ptr);
  1207. struct ast_sip_body body = {
  1208. .type = "application",
  1209. .subtype = "dtmf-relay",
  1210. };
  1211. if (!(body_text = ast_str_create(32))) {
  1212. ast_log(LOG_ERROR, "Could not allocate buffer for INFO DTMF.\n");
  1213. return -1;
  1214. }
  1215. ast_str_set(&body_text, 0, "Signal=%c\r\nDuration=%u\r\n", dtmf_data->digit, dtmf_data->duration);
  1216. body.body_text = ast_str_buffer(body_text);
  1217. if (ast_sip_create_request("INFO", session->inv_session->dlg, session->endpoint, NULL, NULL, &tdata)) {
  1218. ast_log(LOG_ERROR, "Could not create DTMF INFO request\n");
  1219. return -1;
  1220. }
  1221. if (ast_sip_add_body(tdata, &body)) {
  1222. ast_log(LOG_ERROR, "Could not add body to DTMF INFO request\n");
  1223. pjsip_tx_data_dec_ref(tdata);
  1224. return -1;
  1225. }
  1226. ast_sip_session_send_request(session, tdata);
  1227. return 0;
  1228. }
  1229. /*! \brief Function called by core to stop a DTMF digit */
  1230. static int chan_pjsip_digit_end(struct ast_channel *ast, char digit, unsigned int duration)
  1231. {
  1232. struct ast_sip_channel_pvt *channel = ast_channel_tech_pvt(ast);
  1233. struct chan_pjsip_pvt *pvt = channel->pvt;
  1234. struct ast_sip_session_media *media = pvt->media[SIP_MEDIA_AUDIO];
  1235. int res = 0;
  1236. switch (channel->session->endpoint->dtmf) {
  1237. case AST_SIP_DTMF_INFO:
  1238. {
  1239. struct info_dtmf_data *dtmf_data = info_dtmf_data_alloc(channel->session, digit, duration);
  1240. if (!dtmf_data) {
  1241. return -1;
  1242. }
  1243. if (ast_sip_push_task(channel->session->serializer, transmit_info_dtmf, dtmf_data)) {
  1244. ast_log(LOG_WARNING, "Error sending DTMF via INFO.\n");
  1245. ao2_cleanup(dtmf_data);
  1246. return -1;
  1247. }
  1248. break;
  1249. }
  1250. case AST_SIP_DTMF_RFC_4733:
  1251. if (!media || !media->rtp) {
  1252. return -1;
  1253. }
  1254. ast_rtp_instance_dtmf_end_with_duration(media->rtp, digit, duration);
  1255. case AST_SIP_DTMF_NONE:
  1256. break;
  1257. case AST_SIP_DTMF_INBAND:
  1258. res = -1;
  1259. break;
  1260. }
  1261. return res;
  1262. }
  1263. static void update_initial_connected_line(struct ast_sip_session *session)
  1264. {
  1265. struct ast_party_connected_line connected;
  1266. /*
  1267. * Use the channel CALLERID() as the initial connected line data.
  1268. * The core or a predial handler may have supplied missing values
  1269. * from the session->endpoint->id.self about who we are calling.
  1270. */
  1271. ast_channel_lock(session->channel);
  1272. ast_party_id_copy(&session->id, &ast_channel_caller(session->channel)->id);
  1273. ast_channel_unlock(session->channel);
  1274. /* Supply initial connected line information if available. */
  1275. if (!session->id.number.valid && !session->id.name.valid) {
  1276. return;
  1277. }
  1278. ast_party_connected_line_init(&connected);
  1279. connected.id = session->id;
  1280. connected.source = AST_CONNECTED_LINE_UPDATE_SOURCE_ANSWER;
  1281. ast_channel_queue_connected_line_update(session->channel, &connected, NULL);
  1282. }
  1283. static int call(void *data)
  1284. {
  1285. struct ast_sip_channel_pvt *channel = data;
  1286. struct ast_sip_session *session = channel->session;
  1287. struct chan_pjsip_pvt *pvt = channel->pvt;
  1288. pjsip_tx_data *tdata;
  1289. int res = ast_sip_session_create_invite(session, &tdata);
  1290. if (res) {
  1291. ast_set_hangupsource(session->channel, ast_channel_name(session->channel), 0);
  1292. ast_queue_hangup(session->channel);
  1293. } else {
  1294. set_channel_on_rtp_instance(pvt, ast_channel_uniqueid(session->channel));
  1295. update_initial_connected_line(session);
  1296. ast_sip_session_send_request(session, tdata);
  1297. }
  1298. ao2_ref(channel, -1);
  1299. return res;
  1300. }
  1301. /*! \brief Function called by core to actually start calling a remote party */
  1302. static int chan_pjsip_call(struct ast_channel *ast, const char *dest, int timeout)
  1303. {
  1304. struct ast_sip_channel_pvt *channel = ast_channel_tech_pvt(ast);
  1305. ao2_ref(channel, +1);
  1306. if (ast_sip_push_task(channel->session->serializer, call, channel)) {
  1307. ast_log(LOG_WARNING, "Error attempting to place outbound call to '%s'\n", dest);
  1308. ao2_cleanup(channel);
  1309. return -1;
  1310. }
  1311. return 0;
  1312. }
  1313. /*! \brief Internal function which translates from Asterisk cause codes to SIP response codes */
  1314. static int hangup_cause2sip(int cause)
  1315. {
  1316. switch (cause) {
  1317. case AST_CAUSE_UNALLOCATED: /* 1 */
  1318. case AST_CAUSE_NO_ROUTE_DESTINATION: /* 3 IAX2: Can't find extension in context */
  1319. case AST_CAUSE_NO_ROUTE_TRANSIT_NET: /* 2 */
  1320. return 404;
  1321. case AST_CAUSE_CONGESTION: /* 34 */
  1322. case AST_CAUSE_SWITCH_CONGESTION: /* 42 */
  1323. return 503;
  1324. case AST_CAUSE_NO_USER_RESPONSE: /* 18 */
  1325. return 408;
  1326. case AST_CAUSE_NO_ANSWER: /* 19 */
  1327. case AST_CAUSE_UNREGISTERED: /* 20 */
  1328. return 480;
  1329. case AST_CAUSE_CALL_REJECTED: /* 21 */
  1330. return 403;
  1331. case AST_CAUSE_NUMBER_CHANGED: /* 22 */
  1332. return 410;
  1333. case AST_CAUSE_NORMAL_UNSPECIFIED: /* 31 */
  1334. return 480;
  1335. case AST_CAUSE_INVALID_NUMBER_FORMAT:
  1336. return 484;
  1337. case AST_CAUSE_USER_BUSY:
  1338. return 486;
  1339. case AST_CAUSE_FAILURE:
  1340. return 500;
  1341. case AST_CAUSE_FACILITY_REJECTED: /* 29 */
  1342. return 501;
  1343. case AST_CAUSE_CHAN_NOT_IMPLEMENTED:
  1344. return 503;
  1345. case AST_CAUSE_DESTINATION_OUT_OF_ORDER:
  1346. return 502;
  1347. case AST_CAUSE_BEARERCAPABILITY_NOTAVAIL: /* Can't find codec to connect to host */
  1348. return 488;
  1349. case AST_CAUSE_INTERWORKING: /* Unspecified Interworking issues */
  1350. return 500;
  1351. case AST_CAUSE_NOTDEFINED:
  1352. default:
  1353. ast_debug(1, "AST hangup cause %d (no match found in PJSIP)\n", cause);
  1354. return 0;
  1355. }
  1356. /* Never reached */
  1357. return 0;
  1358. }
  1359. struct hangup_data {
  1360. int cause;
  1361. struct ast_channel *chan;
  1362. };
  1363. static void hangup_data_destroy(void *obj)
  1364. {
  1365. struct hangup_data *h_data = obj;
  1366. h_data->chan = ast_channel_unref(h_data->chan);
  1367. }
  1368. static struct hangup_data *hangup_data_alloc(int cause, struct ast_channel *chan)
  1369. {
  1370. struct hangup_data *h_data = ao2_alloc(sizeof(*h_data), hangup_data_destroy);
  1371. if (!h_data) {
  1372. return NULL;
  1373. }
  1374. h_data->cause = cause;
  1375. h_data->chan = ast_channel_ref(chan);
  1376. return h_data;
  1377. }
  1378. /*! \brief Clear a channel from a session along with its PVT */
  1379. static void clear_session_and_channel(struct ast_sip_session *session, struct ast_channel *ast, struct chan_pjsip_pvt *pvt)
  1380. {
  1381. session->channel = NULL;
  1382. set_channel_on_rtp_instance(pvt, "");
  1383. ast_channel_tech_pvt_set(ast, NULL);
  1384. }
  1385. static int hangup(void *data)
  1386. {
  1387. struct hangup_data *h_data = data;
  1388. struct ast_channel *ast = h_data->chan;
  1389. struct ast_sip_channel_pvt *channel = ast_channel_tech_pvt(ast);
  1390. struct chan_pjsip_pvt *pvt = channel->pvt;
  1391. struct ast_sip_session *session = channel->session;
  1392. int cause = h_data->cause;
  1393. if (!session->defer_terminate) {
  1394. pj_status_t status;
  1395. pjsip_tx_data *packet = NULL;
  1396. if (session->inv_session->state == PJSIP_INV_STATE_NULL) {
  1397. pjsip_inv_terminate(session->inv_session, cause ? cause : 603, PJ_TRUE);
  1398. } else if (((status = pjsip_inv_end_session(session->inv_session, cause ? cause : 603, NULL, &packet)) == PJ_SUCCESS)
  1399. && packet) {
  1400. if (packet->msg->type == PJSIP_RESPONSE_MSG) {
  1401. ast_sip_session_send_response(session, packet);
  1402. } else {
  1403. ast_sip_session_send_request(session, packet);
  1404. }
  1405. }
  1406. }
  1407. clear_session_and_channel(session, ast, pvt);
  1408. ao2_cleanup(channel);
  1409. ao2_cleanup(h_data);
  1410. return 0;
  1411. }
  1412. /*! \brief Function called by core to hang up a PJSIP session */
  1413. static int chan_pjsip_hangup(struct ast_channel *ast)
  1414. {
  1415. struct ast_sip_channel_pvt *channel = ast_channel_tech_pvt(ast);
  1416. struct chan_pjsip_pvt *pvt = channel->pvt;
  1417. int cause = hangup_cause2sip(ast_channel_hangupcause(channel->session->channel));
  1418. struct hangup_data *h_data = hangup_data_alloc(cause, ast);
  1419. if (!h_data) {
  1420. goto failure;
  1421. }
  1422. if (ast_sip_push_task(channel->session->serializer, hangup, h_data)) {
  1423. ast_log(LOG_WARNING, "Unable to push hangup task to the threadpool. Expect bad things\n");
  1424. goto failure;
  1425. }
  1426. return 0;
  1427. failure:
  1428. /* Go ahead and do our cleanup of the session and channel even if we're not going
  1429. * to be able to send our SIP request/response
  1430. */
  1431. clear_session_and_channel(channel->session, ast, pvt);
  1432. ao2_cleanup(channel);
  1433. ao2_cleanup(h_data);
  1434. return -1;
  1435. }
  1436. struct request_data {
  1437. struct ast_sip_session *session;
  1438. struct ast_format_cap *caps;
  1439. const char *dest;
  1440. int cause;
  1441. };
  1442. static int request(void *obj)
  1443. {
  1444. struct request_data *req_data = obj;
  1445. struct ast_sip_session *session = NULL;
  1446. char *tmp = ast_strdupa(req_data->dest), *endpoint_name = NULL, *request_user = NULL;
  1447. RAII_VAR(struct ast_sip_endpoint *, endpoint, NULL, ao2_cleanup);
  1448. AST_DECLARE_APP_ARGS(args,
  1449. AST_APP_ARG(endpoint);
  1450. AST_APP_ARG(aor);
  1451. );
  1452. if (ast_strlen_zero(tmp)) {
  1453. ast_log(LOG_ERROR, "Unable to create PJSIP channel with empty destination\n");
  1454. req_data->cause = AST_CAUSE_CHANNEL_UNACCEPTABLE;
  1455. return -1;
  1456. }
  1457. AST_NONSTANDARD_APP_ARGS(args, tmp, '/');
  1458. /* If a request user has been specified extract it from the endpoint name portion */
  1459. if ((endpoint_name = strchr(args.endpoint, '@'))) {
  1460. request_user = args.endpoint;
  1461. *endpoint_name++ = '\0';
  1462. } else {
  1463. endpoint_name = args.endpoint;
  1464. }
  1465. if (ast_strlen_zero(endpoint_name)) {
  1466. ast_log(LOG_ERROR, "Unable to create PJSIP channel with empty endpoint name\n");
  1467. req_data->cause = AST_CAUSE_CHANNEL_UNACCEPTABLE;
  1468. } else if (!(endpoint = ast_sorcery_retrieve_by_id(ast_sip_get_sorcery(), "endpoint", endpoint_name))) {
  1469. ast_log(LOG_ERROR, "Unable to create PJSIP channel - endpoint '%s' was not found\n", endpoint_name);
  1470. req_data->cause = AST_CAUSE_NO_ROUTE_DESTINATION;
  1471. return -1;
  1472. }
  1473. if (!(session = ast_sip_session_create_outgoing(endpoint, NULL, args.aor, request_user, req_data->caps))) {
  1474. ast_log(LOG_ERROR, "Failed to create outgoing session to endpoint '%s'\n", endpoint_name);
  1475. req_data->cause = AST_CAUSE_NO_ROUTE_DESTINATION;
  1476. return -1;
  1477. }
  1478. req_data->session = session;
  1479. return 0;
  1480. }
  1481. /*! \brief Function called by core to create a new outgoing PJSIP session */
  1482. static struct ast_channel *chan_pjsip_request(const char *type, struct ast_format_cap *cap, const struct ast_assigned_ids *assignedids, const struct ast_channel *requestor, const char *data, int *cause)
  1483. {
  1484. struct request_data req_data;
  1485. RAII_VAR(struct ast_sip_session *, session, NULL, ao2_cleanup);
  1486. req_data.caps = cap;
  1487. req_data.dest = data;
  1488. if (ast_sip_push_task_synchronous(NULL, request, &req_data)) {
  1489. *cause = req_data.cause;
  1490. return NULL;
  1491. }
  1492. session = req_data.session;
  1493. if (!(session->channel = chan_pjsip_new(session, AST_STATE_DOWN, NULL, NULL, assignedids, requestor, NULL))) {
  1494. /* Session needs to be terminated prematurely */
  1495. return NULL;
  1496. }
  1497. return session->channel;
  1498. }
  1499. struct sendtext_data {
  1500. struct ast_sip_session *session;
  1501. char text[0];
  1502. };
  1503. static void sendtext_data_destroy(void *obj)
  1504. {
  1505. struct sendtext_data *data = obj;
  1506. ao2_ref(data->session, -1);
  1507. }
  1508. static struct sendtext_data* sendtext_data_create(struct ast_sip_session *session, const char *text)
  1509. {
  1510. int size = strlen(text) + 1;
  1511. struct sendtext_data *data = ao2_alloc(sizeof(*data)+size, sendtext_data_destroy);
  1512. if (!data) {
  1513. return NULL;
  1514. }
  1515. data->session = session;
  1516. ao2_ref(data->session, +1);
  1517. ast_copy_string(data->text, text, size);
  1518. return data;
  1519. }
  1520. static int sendtext(void *obj)
  1521. {
  1522. RAII_VAR(struct sendtext_data *, data, obj, ao2_cleanup);
  1523. pjsip_tx_data *tdata;
  1524. const struct ast_sip_body body = {
  1525. .type = "text",
  1526. .subtype = "plain",
  1527. .body_text = data->text
  1528. };
  1529. /* NOT ast_strlen_zero, because a zero-length message is specifically
  1530. * allowed by RFC 3428 (See section 10, Examples) */
  1531. if (!data->text) {
  1532. return 0;
  1533. }
  1534. ast_debug(3, "Sending in dialog SIP message\n");
  1535. ast_sip_create_request("MESSAGE", data->session->inv_session->dlg, data->session->endpoint, NULL, NULL, &tdata);
  1536. ast_sip_add_body(tdata, &body);
  1537. ast_sip_send_request(tdata, data->session->inv_session->dlg, data->session->endpoint, NULL, NULL);
  1538. return 0;
  1539. }
  1540. /*! \brief Function called by core to send text on PJSIP session */
  1541. static int chan_pjsip_sendtext(struct ast_channel *ast, const char *text)
  1542. {
  1543. struct ast_sip_channel_pvt *channel = ast_channel_tech_pvt(ast);
  1544. struct sendtext_data *data = sendtext_data_create(channel->session, text);
  1545. if (!data || ast_sip_push_task(channel->session->serializer, sendtext, data)) {
  1546. ao2_ref(data, -1);
  1547. return -1;
  1548. }
  1549. return 0;
  1550. }
  1551. /*! \brief Convert SIP hangup causes to Asterisk hangup causes */
  1552. static int hangup_sip2cause(int cause)
  1553. {
  1554. /* Possible values taken from causes.h */
  1555. switch(cause) {
  1556. case 401: /* Unauthorized */
  1557. return AST_CAUSE_CALL_REJECTED;
  1558. case 403: /* Not found */
  1559. return AST_CAUSE_CALL_REJECTED;
  1560. case 404: /* Not found */
  1561. return AST_CAUSE_UNALLOCATED;
  1562. case 405: /* Method not allowed */
  1563. return AST_CAUSE_INTERWORKING;
  1564. case 407: /* Proxy authentication required */
  1565. return AST_CAUSE_CALL_REJECTED;
  1566. case 408: /* No reaction */
  1567. return AST_CAUSE_NO_USER_RESPONSE;
  1568. case 409: /* Conflict */
  1569. return AST_CAUSE_NORMAL_TEMPORARY_FAILURE;
  1570. case 410: /* Gone */
  1571. return AST_CAUSE_NUMBER_CHANGED;
  1572. case 411: /* Length required */
  1573. return AST_CAUSE_INTERWORKING;
  1574. case 413: /* Request entity too large */
  1575. return AST_CAUSE_INTERWORKING;
  1576. case 414: /* Request URI too large */
  1577. return AST_CAUSE_INTERWORKING;
  1578. case 415: /* Unsupported media type */
  1579. return AST_CAUSE_INTERWORKING;
  1580. case 420: /* Bad extension */
  1581. return AST_CAUSE_NO_ROUTE_DESTINATION;
  1582. case 480: /* No answer */
  1583. return AST_CAUSE_NO_ANSWER;
  1584. case 481: /* No answer */
  1585. return AST_CAUSE_INTERWORKING;
  1586. case 482: /* Loop detected */
  1587. return AST_CAUSE_INTERWORKING;
  1588. case 483: /* Too many hops */
  1589. return AST_CAUSE_NO_ANSWER;
  1590. case 484: /* Address incomplete */
  1591. return AST_CAUSE_INVALID_NUMBER_FORMAT;
  1592. case 485: /* Ambiguous */
  1593. return AST_CAUSE_UNALLOCATED;
  1594. case 486: /* Busy everywhere */
  1595. return AST_CAUSE_BUSY;
  1596. case 487: /* Request terminated */
  1597. return AST_CAUSE_INTERWORKING;
  1598. case 488: /* No codecs approved */
  1599. return AST_CAUSE_BEARERCAPABILITY_NOTAVAIL;
  1600. case 491: /* Request pending */
  1601. return AST_CAUSE_INTERWORKING;
  1602. case 493: /* Undecipherable */
  1603. return AST_CAUSE_INTERWORKING;
  1604. case 500: /* Server internal failure */
  1605. return AST_CAUSE_FAILURE;
  1606. case 501: /* Call rejected */
  1607. return AST_CAUSE_FACILITY_REJECTED;
  1608. case 502:
  1609. return AST_CAUSE_DESTINATION_OUT_OF_ORDER;
  1610. case 503: /* Service unavailable */
  1611. return AST_CAUSE_CONGESTION;
  1612. case 504: /* Gateway timeout */
  1613. return AST_CAUSE_RECOVERY_ON_TIMER_EXPIRE;
  1614. case 505: /* SIP version not supported */
  1615. return AST_CAUSE_INTERWORKING;
  1616. case 600: /* Busy everywhere */
  1617. return AST_CAUSE_USER_BUSY;
  1618. case 603: /* Decline */
  1619. return AST_CAUSE_CALL_REJECTED;
  1620. case 604: /* Does not exist anywhere */
  1621. return AST_CAUSE_UNALLOCATED;
  1622. case 606: /* Not acceptable */
  1623. return AST_CAUSE_BEARERCAPABILITY_NOTAVAIL;
  1624. default:
  1625. if (cause < 500 && cause >= 400) {
  1626. /* 4xx class error that is unknown - someting wrong with our request */
  1627. return AST_CAUSE_INTERWORKING;
  1628. } else if (cause < 600 && cause >= 500) {
  1629. /* 5xx class error - problem in the remote end */
  1630. return AST_CAUSE_CONGESTION;
  1631. } else if (cause < 700 && cause >= 600) {
  1632. /* 6xx - global errors in the 4xx class */
  1633. return AST_CAUSE_INTERWORKING;
  1634. }
  1635. return AST_CAUSE_NORMAL;
  1636. }
  1637. /* Never reached */
  1638. return 0;
  1639. }
  1640. static void chan_pjsip_session_begin(struct ast_sip_session *session)
  1641. {
  1642. RAII_VAR(struct ast_datastore *, datastore, NULL, ao2_cleanup);
  1643. if (session->endpoint->media.direct_media.glare_mitigation ==
  1644. AST_SIP_DIRECT_MEDIA_GLARE_MITIGATION_NONE) {
  1645. return;
  1646. }
  1647. datastore = ast_sip_session_alloc_datastore(&direct_media_mitigation_info,
  1648. "direct_media_glare_mitigation");
  1649. if (!datastore) {
  1650. return;
  1651. }
  1652. ast_sip_session_add_datastore(session, datastore);
  1653. }
  1654. /*! \brief Function called when the session ends */
  1655. static void chan_pjsip_session_end(struct ast_sip_session *session)
  1656. {
  1657. if (!session->channel) {
  1658. return;
  1659. }
  1660. chan_pjsip_remove_hold(ast_channel_uniqueid(session->channel));
  1661. ast_set_hangupsource(session->channel, ast_channel_name(session->channel), 0);
  1662. if (!ast_channel_hangupcause(session->channel) && session->inv_session) {
  1663. int cause = hangup_sip2cause(session->inv_session->cause);
  1664. ast_queue_hangup_with_cause(session->channel, cause);
  1665. } else {
  1666. ast_queue_hangup(session->channel);
  1667. }
  1668. }
  1669. /*! \brief Function called when a request is received on the session */
  1670. static int chan_pjsip_incoming_request(struct ast_sip_session *session, struct pjsip_rx_data *rdata)
  1671. {
  1672. RAII_VAR(struct ast_datastore *, datastore, NULL, ao2_cleanup);
  1673. struct transport_info_data *transport_data;
  1674. pjsip_tx_data *packet = NULL;
  1675. if (session->channel) {
  1676. return 0;
  1677. }
  1678. datastore = ast_sip_session_alloc_datastore(&transport_info, "transport_info");
  1679. if (!datastore) {
  1680. return -1;
  1681. }
  1682. transport_data = ast_calloc(1, sizeof(*transport_data));
  1683. if (!transport_data) {
  1684. return -1;
  1685. }
  1686. pj_sockaddr_cp(&transport_data->local_addr, &rdata->tp_info.transport->local_addr);
  1687. pj_sockaddr_cp(&transport_data->remote_addr, &rdata->pkt_info.src_addr);
  1688. datastore->data = transport_data;
  1689. ast_sip_session_add_datastore(session, datastore);
  1690. if (!(session->channel = chan_pjsip_new(session, AST_STATE_RING, session->exten, NULL, NULL, NULL, NULL))) {
  1691. if (pjsip_inv_end_session(session->inv_session, 503, NULL, &packet) == PJ_SUCCESS) {
  1692. ast_sip_session_send_response(session, packet);
  1693. }
  1694. ast_log(LOG_ERROR, "Failed to allocate new PJSIP channel on incoming SIP INVITE\n");
  1695. return -1;
  1696. }
  1697. /* channel gets created on incoming request, but we wait to call start
  1698. so other supplements have a chance to run */
  1699. return 0;
  1700. }
  1701. static int call_pickup_incoming_request(struct ast_sip_session *session, pjsip_rx_data *rdata)
  1702. {
  1703. struct ast_features_pickup_config *pickup_cfg = ast_get_chan_features_pickup_config(session->channel);
  1704. struct ast_channel *chan;
  1705. /* We don't care about reinvites */
  1706. if (session->inv_session->state >= PJSIP_INV_STATE_CONFIRMED) {
  1707. return 0;
  1708. }
  1709. if (!pickup_cfg) {
  1710. ast_log(LOG_ERROR, "Unable to retrieve pickup configuration options. Unable to detect call pickup extension.\n");
  1711. return 0;
  1712. }
  1713. if (strcmp(session->exten, pickup_cfg->pickupexten)) {
  1714. ao2_ref(pickup_cfg, -1);
  1715. return 0;
  1716. }
  1717. ao2_ref(pickup_cfg, -1);
  1718. /* We can't directly use session->channel because the pickup operation will cause a masquerade to occur,
  1719. * changing the channel pointer in session to a different channel. To ensure we work on the right channel
  1720. * we store a pointer locally before we begin and keep a reference so it remains valid no matter what.
  1721. */
  1722. chan = ast_channel_ref(session->channel);
  1723. if (ast_pickup_call(chan)) {
  1724. ast_channel_hangupcause_set(chan, AST_CAUSE_CALL_REJECTED);
  1725. } else {
  1726. ast_channel_hangupcause_set(chan, AST_CAUSE_NORMAL_CLEARING);
  1727. }
  1728. /* A hangup always occurs because the pickup operation will have either failed resulting in the call
  1729. * needing to be hung up OR the pickup operation was a success and the channel we now have is actually
  1730. * the channel that was replaced, which should be hung up since it is literally in limbo not connected
  1731. * to anything at all.
  1732. */
  1733. ast_hangup(chan);
  1734. ast_channel_unref(chan);
  1735. return 1;
  1736. }
  1737. static struct ast_sip_session_supplement call_pickup_supplement = {
  1738. .method = "INVITE",
  1739. .priority = AST_SIP_SUPPLEMENT_PRIORITY_LAST - 1,
  1740. .incoming_request = call_pickup_incoming_request,
  1741. };
  1742. static int pbx_start_incoming_request(struct ast_sip_session *session, pjsip_rx_data *rdata)
  1743. {
  1744. int res;
  1745. /* We don't care about reinvites */
  1746. if (session->inv_session->state >= PJSIP_INV_STATE_CONFIRMED) {
  1747. return 0;
  1748. }
  1749. res = ast_pbx_start(session->channel);
  1750. switch (res) {
  1751. case AST_PBX_FAILED:
  1752. ast_log(LOG_WARNING, "Failed to start PBX ;(\n");
  1753. ast_channel_hangupcause_set(session->channel, AST_CAUSE_SWITCH_CONGESTION);
  1754. ast_hangup(session->channel);
  1755. break;
  1756. case AST_PBX_CALL_LIMIT:
  1757. ast_log(LOG_WARNING, "Failed to start PBX (call limit reached) \n");
  1758. ast_channel_hangupcause_set(session->channel, AST_CAUSE_SWITCH_CONGESTION);
  1759. ast_hangup(session->channel);
  1760. break;
  1761. case AST_PBX_SUCCESS:
  1762. default:
  1763. break;
  1764. }
  1765. ast_debug(3, "Started PBX on new PJSIP channel %s\n", ast_channel_name(session->channel));
  1766. return (res == AST_PBX_SUCCESS) ? 0 : -1;
  1767. }
  1768. static struct ast_sip_session_supplement pbx_start_supplement = {
  1769. .method = "INVITE",
  1770. .priority = AST_SIP_SUPPLEMENT_PRIORITY_LAST,
  1771. .incoming_request = pbx_start_incoming_request,
  1772. };
  1773. /*! \brief Function called when a response is received on the session */
  1774. static void chan_pjsip_incoming_response(struct ast_sip_session *session, struct pjsip_rx_data *rdata)
  1775. {
  1776. struct pjsip_status_line status = rdata->msg_info.msg->line.status;
  1777. struct ast_control_pvt_cause_code *cause_code;
  1778. int data_size = sizeof(*cause_code);
  1779. if (!session->channel) {
  1780. return;
  1781. }
  1782. switch (status.code) {
  1783. case 180:
  1784. ast_queue_control(session->channel, AST_CONTROL_RINGING);
  1785. ast_channel_lock(session->channel);
  1786. if (ast_channel_state(session->channel) != AST_STATE_UP) {
  1787. ast_setstate(session->channel, AST_STATE_RINGING);
  1788. }
  1789. ast_channel_unlock(session->channel);
  1790. break;
  1791. case 183:
  1792. ast_queue_control(session->channel, AST_CONTROL_PROGRESS);
  1793. break;
  1794. case 200:
  1795. ast_queue_control(session->channel, AST_CONTROL_ANSWER);
  1796. break;
  1797. default:
  1798. break;
  1799. }
  1800. /* Build and send the tech-specific cause information */
  1801. /* size of the string making up the cause code is "SIP " number + " " + reason length */
  1802. data_size += 4 + 4 + pj_strlen(&status.reason);
  1803. cause_code = ast_alloca(data_size);
  1804. memset(cause_code, 0, data_size);
  1805. ast_copy_string(cause_code->chan_name, ast_channel_name(session->channel), AST_CHANNEL_NAME);
  1806. snprintf(cause_code->code, data_size - sizeof(*cause_code) + 1, "SIP %d %.*s", status.code,
  1807. (int) pj_strlen(&status.reason), pj_strbuf(&status.reason));
  1808. cause_code->ast_cause = hangup_sip2cause(status.code);
  1809. ast_queue_control_data(session->channel, AST_CONTROL_PVT_CAUSE_CODE, cause_code, data_size);
  1810. ast_channel_hangupcause_hash_set(session->channel, cause_code, data_size);
  1811. }
  1812. static int chan_pjsip_incoming_ack(struct ast_sip_session *session, struct pjsip_rx_data *rdata)
  1813. {
  1814. if (rdata->msg_info.msg->line.req.method.id == PJSIP_ACK_METHOD) {
  1815. if (session->endpoint->media.direct_media.enabled && session->channel) {
  1816. ast_queue_control(session->channel, AST_CONTROL_SRCCHANGE);
  1817. }
  1818. }
  1819. return 0;
  1820. }
  1821. static int update_devstate(void *obj, void *arg, int flags)
  1822. {
  1823. ast_devstate_changed(AST_DEVICE_UNKNOWN, AST_DEVSTATE_CACHABLE,
  1824. "PJSIP/%s", ast_sorcery_object_get_id(obj));
  1825. return 0;
  1826. }
  1827. static struct ast_custom_function chan_pjsip_dial_contacts_function = {
  1828. .name = "PJSIP_DIAL_CONTACTS",
  1829. .read = pjsip_acf_dial_contacts_read,
  1830. };
  1831. static struct ast_custom_function media_offer_function = {
  1832. .name = "PJSIP_MEDIA_OFFER",
  1833. .read = pjsip_acf_media_offer_read,
  1834. .write = pjsip_acf_media_offer_write
  1835. };
  1836. /*!
  1837. * \brief Load the module
  1838. *
  1839. * Module loading including tests for configuration or dependencies.
  1840. * This function can return AST_MODULE_LOAD_FAILURE, AST_MODULE_LOAD_DECLINE,
  1841. * or AST_MODULE_LOAD_SUCCESS. If a dependency or environment variable fails
  1842. * tests return AST_MODULE_LOAD_FAILURE. If the module can not load the
  1843. * configuration file or other non-critical problem return
  1844. * AST_MODULE_LOAD_DECLINE. On success return AST_MODULE_LOAD_SUCCESS.
  1845. */
  1846. static int load_module(void)
  1847. {
  1848. struct ao2_container *endpoints;
  1849. CHECK_PJSIP_SESSION_MODULE_LOADED();
  1850. if (!(chan_pjsip_tech.capabilities = ast_format_cap_alloc(0))) {
  1851. return AST_MODULE_LOAD_DECLINE;
  1852. }
  1853. ast_format_cap_add_all_by_type(chan_pjsip_tech.capabilities, AST_FORMAT_TYPE_AUDIO);
  1854. ast_rtp_glue_register(&chan_pjsip_rtp_glue);
  1855. if (ast_channel_register(&chan_pjsip_tech)) {
  1856. ast_log(LOG_ERROR, "Unable to register channel class %s\n", channel_type);
  1857. goto end;
  1858. }
  1859. if (ast_custom_function_register(&chan_pjsip_dial_contacts_function)) {
  1860. ast_log(LOG_ERROR, "Unable to register PJSIP_DIAL_CONTACTS dialplan function\n");
  1861. goto end;
  1862. }
  1863. if (ast_custom_function_register(&media_offer_function)) {
  1864. ast_log(LOG_WARNING, "Unable to register PJSIP_MEDIA_OFFER dialplan function\n");
  1865. goto end;
  1866. }
  1867. if (ast_sip_session_register_supplement(&chan_pjsip_supplement)) {
  1868. ast_log(LOG_ERROR, "Unable to register PJSIP supplement\n");
  1869. goto end;
  1870. }
  1871. if (!(pjsip_uids_onhold = ao2_container_alloc_hash(AO2_ALLOC_OPT_LOCK_RWLOCK,
  1872. AO2_CONTAINER_ALLOC_OPT_DUPS_REJECT, 37, uid_hold_hash_fn,
  1873. uid_hold_sort_fn, NULL))) {
  1874. ast_log(LOG_ERROR, "Unable to create held channels container\n");
  1875. goto end;
  1876. }
  1877. if (ast_sip_session_register_supplement(&call_pickup_supplement)) {
  1878. ast_log(LOG_ERROR, "Unable to register PJSIP call pickup supplement\n");
  1879. ast_sip_session_unregister_supplement(&chan_pjsip_supplement);
  1880. goto end;
  1881. }
  1882. if (ast_sip_session_register_supplement(&pbx_start_supplement)) {
  1883. ast_log(LOG_ERROR, "Unable to register PJSIP pbx start supplement\n");
  1884. ast_sip_session_unregister_supplement(&chan_pjsip_supplement);
  1885. ast_sip_session_unregister_supplement(&call_pickup_supplement);
  1886. goto end;
  1887. }
  1888. if (ast_sip_session_register_supplement(&chan_pjsip_ack_supplement)) {
  1889. ast_log(LOG_ERROR, "Unable to register PJSIP ACK supplement\n");
  1890. ast_sip_session_unregister_supplement(&pbx_start_supplement);
  1891. ast_sip_session_unregister_supplement(&chan_pjsip_supplement);
  1892. ast_sip_session_unregister_supplement(&call_pickup_supplement);
  1893. goto end;
  1894. }
  1895. /* since endpoints are loaded before the channel driver their device
  1896. states get set to 'invalid', so they need to be updated */
  1897. if ((endpoints = ast_sip_get_endpoints())) {
  1898. ao2_callback(endpoints, OBJ_NODATA, update_devstate, NULL);
  1899. ao2_ref(endpoints, -1);
  1900. }
  1901. return 0;
  1902. end:
  1903. ao2_cleanup(pjsip_uids_onhold);
  1904. pjsip_uids_onhold = NULL;
  1905. ast_custom_function_unregister(&media_offer_function);
  1906. ast_custom_function_unregister(&chan_pjsip_dial_contacts_function);
  1907. ast_channel_unregister(&chan_pjsip_tech);
  1908. ast_rtp_glue_unregister(&chan_pjsip_rtp_glue);
  1909. return AST_MODULE_LOAD_FAILURE;
  1910. }
  1911. /*! \brief Unload the PJSIP channel from Asterisk */
  1912. static int unload_module(void)
  1913. {
  1914. ao2_cleanup(pjsip_uids_onhold);
  1915. pjsip_uids_onhold = NULL;
  1916. ast_sip_session_unregister_supplement(&chan_pjsip_supplement);
  1917. ast_sip_session_unregister_supplement(&pbx_start_supplement);
  1918. ast_sip_session_unregister_supplement(&chan_pjsip_ack_supplement);
  1919. ast_sip_session_unregister_supplement(&call_pickup_supplement);
  1920. ast_custom_function_unregister(&media_offer_function);
  1921. ast_custom_function_unregister(&chan_pjsip_dial_contacts_function);
  1922. ast_channel_unregister(&chan_pjsip_tech);
  1923. ast_rtp_glue_unregister(&chan_pjsip_rtp_glue);
  1924. return 0;
  1925. }
  1926. AST_MODULE_INFO(ASTERISK_GPL_KEY, AST_MODFLAG_LOAD_ORDER, "PJSIP Channel Driver",
  1927. .load = load_module,
  1928. .unload = unload_module,
  1929. .load_pri = AST_MODPRI_CHANNEL_DRIVER,
  1930. );