2 * Asterisk -- An open source telephony toolkit.
4 * Copyright (C) 1999 - 2005
6 * OpenH323 Channel Driver for ASTERISK PBX.
8 * For The NuFone Network
10 * chan_h323 has been derived from code created by
11 * Michael Manousos and Mark Spencer
13 * See http://www.asterisk.org for more information about
14 * the Asterisk project. Please do not directly contact
15 * any of the maintainers of this project for assistance;
16 * the project provides a web site, mailing lists and IRC
17 * channels for your use.
19 * This program is free software, distributed under the terms of
20 * the GNU General Public License Version 2. See the LICENSE file
21 * at the top of the source tree.
26 * \brief This file is part of the chan_h323 driver for Asterisk
28 * \author Jeremy McNamara
32 * \extref OpenH323 http://www.voxgratia.org/
34 * \ingroup channel_drivers
38 <depend>openh323</depend>
39 <defaultenabled>yes</defaultenabled>
48 ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
54 #include <sys/types.h>
55 #include <sys/socket.h>
56 #include <sys/signal.h>
57 #include <sys/param.h>
58 #include <arpa/inet.h>
60 #include <netinet/in.h>
61 #include <netinet/in_systm.h>
62 #include <netinet/ip.h>
70 #include "asterisk/lock.h"
71 #include "asterisk/channel.h"
72 #include "asterisk/config.h"
73 #include "asterisk/module.h"
74 #include "asterisk/musiconhold.h"
75 #include "asterisk/pbx.h"
76 #include "asterisk/utils.h"
77 #include "asterisk/sched.h"
78 #include "asterisk/io.h"
79 #include "asterisk/rtp.h"
80 #include "asterisk/acl.h"
81 #include "asterisk/callerid.h"
82 #include "asterisk/cli.h"
83 #include "asterisk/dsp.h"
84 #include "asterisk/causes.h"
85 #include "asterisk/stringfields.h"
86 #include "asterisk/abstract_jb.h"
87 #include "asterisk/astobj.h"
93 #include "h323/chan_h323.h"
95 receive_digit_cb on_receive_digit;
96 on_rtp_cb on_external_rtp_create;
97 start_rtp_cb on_start_rtp_channel;
98 setup_incoming_cb on_incoming_call;
99 setup_outbound_cb on_outgoing_call;
100 chan_ringing_cb on_chan_ringing;
101 con_established_cb on_connection_established;
102 clear_con_cb on_connection_cleared;
103 answer_call_cb on_answer_call;
104 progress_cb on_progress;
105 rfc2833_cb on_set_rfc2833_payload;
107 setcapabilities_cb on_setcapabilities;
108 setpeercapabilities_cb on_setpeercapabilities;
111 int h323debug; /*!< global debug flag */
113 /*! \brief Global jitterbuffer configuration - by default, jb is disabled */
114 static struct ast_jb_conf default_jbconf =
118 .resync_threshold = -1,
121 static struct ast_jb_conf global_jbconf;
123 /** Variables required by Asterisk */
124 static const char tdesc[] = "The NuFone Network's Open H.323 Channel Driver";
125 static const char config[] = "h323.conf";
126 static char default_context[AST_MAX_CONTEXT] = "default";
127 static struct sockaddr_in bindaddr;
129 #define GLOBAL_CAPABILITY (AST_FORMAT_G723_1 | AST_FORMAT_GSM | AST_FORMAT_ULAW | AST_FORMAT_ALAW | AST_FORMAT_G729A | AST_FORMAT_G726_AAL2 | AST_FORMAT_H261)
131 /** H.323 configuration values */
132 static int h323_signalling_port = 1720;
133 static char gatekeeper[100];
134 static int gatekeeper_disable = 1;
135 static int gatekeeper_discover = 0;
136 static int gkroute = 0;
137 /* Find user by alias (h.323 id) is default, alternative is the incomming call's source IP address*/
138 static int userbyalias = 1;
139 static int acceptAnonymous = 1;
140 static unsigned int tos = 0;
141 static unsigned int cos = 0;
142 static char secret[50];
143 static unsigned int unique = 0;
145 static call_options_t global_options;
147 /*! \brief Private structure of a OpenH323 channel */
149 ast_mutex_t lock; /*!< Channel private lock */
150 call_options_t options; /*!<!< Options to be used during call setup */
151 int alreadygone; /*!< Whether or not we've already been destroyed by our peer */
152 int needdestroy; /*!< if we need to be destroyed */
153 call_details_t cd; /*!< Call details */
154 struct ast_channel *owner; /*!< Who owns us */
155 struct sockaddr_in sa; /*!< Our peer */
156 struct sockaddr_in redirip; /*!< Where our RTP should be going if not to us */
157 int nonCodecCapability; /*!< non-audio capability */
158 int outgoing; /*!< Outgoing or incoming call? */
159 char exten[AST_MAX_EXTENSION]; /*!< Requested extension */
160 char context[AST_MAX_CONTEXT]; /*!< Context where to start */
161 char accountcode[256]; /*!< Account code */
162 char rdnis[80]; /*!< Referring DNIS, if available */
163 int amaflags; /*!< AMA Flags */
164 struct ast_rtp *rtp; /*!< RTP Session */
165 struct ast_dsp *vad; /*!< Used for in-band DTMF detection */
166 int nativeformats; /*!< Codec formats supported by a channel */
167 int needhangup; /*!< Send hangup when Asterisk is ready */
168 int hangupcause; /*!< Hangup cause from OpenH323 layer */
169 int newstate; /*!< Pending state change */
170 int newcontrol; /*!< Pending control to send */
171 int newdigit; /*!< Pending DTMF digit to send */
172 int newduration; /*!< Pending DTMF digit duration to send */
173 int pref_codec; /*!< Preferred codec */
174 int peercapability; /*!< Capabilities learned from peer */
175 int jointcapability; /*!< Common capabilities for local and remote side */
176 struct ast_codec_pref peer_prefs; /*!< Preferenced list of codecs which remote side supports */
177 int dtmf_pt[2]; /*!< Payload code used for RFC2833/CISCO messages */
178 int curDTMF; /*!< DTMF tone being generated to Asterisk side */
179 int DTMFsched; /*!< Scheduler descriptor for DTMF */
180 int update_rtp_info; /*!< Configuration of fd's array is pending */
181 int recvonly; /*!< Peer isn't wish to receive our voice stream */
182 int txDtmfDigit; /*!< DTMF digit being to send to H.323 side */
183 int noInbandDtmf; /*!< Inband DTMF processing by DSP isn't available */
184 int connection_established; /*!< Call got CONNECT message */
185 int got_progress; /*!< Call got PROGRESS message, pass inband audio */
186 struct oh323_pvt *next; /*!< Next channel in list */
189 /*! \brief H323 User list */
190 static struct h323_user_list {
191 ASTOBJ_CONTAINER_COMPONENTS(struct oh323_user);
194 /*! \brief H323 peer list */
195 static struct h323_peer_list {
196 ASTOBJ_CONTAINER_COMPONENTS(struct oh323_peer);
199 /*! \brief H323 alias list */
200 static struct h323_alias_list {
201 ASTOBJ_CONTAINER_COMPONENTS(struct oh323_alias);
204 /* Asterisk RTP stuff */
205 static struct sched_context *sched;
206 static struct io_context *io;
208 AST_MUTEX_DEFINE_STATIC(iflock); /*!< Protect the interface list (oh323_pvt) */
210 /*! \brief Protect the H.323 monitoring thread, so only one process can kill or start it, and not
211 when it's doing something critical. */
212 AST_MUTEX_DEFINE_STATIC(monlock);
214 /*! \brief Protect the H.323 capabilities list, to avoid more than one channel to set the capabilities simultaneaously in the h323 stack. */
215 AST_MUTEX_DEFINE_STATIC(caplock);
217 /*! \brief Protect the reload process */
218 AST_MUTEX_DEFINE_STATIC(h323_reload_lock);
219 static int h323_reloading = 0;
221 /*! \brief This is the thread for the monitor which checks for input on the channels
222 which are not currently in use. */
223 static pthread_t monitor_thread = AST_PTHREADT_NULL;
224 static int restart_monitor(void);
225 static int h323_do_reload(void);
227 static void delete_users(void);
228 static void delete_aliases(void);
229 static void prune_peers(void);
231 static struct ast_channel *oh323_request(const char *type, int format, void *data, int *cause);
232 static int oh323_digit_begin(struct ast_channel *c, char digit);
233 static int oh323_digit_end(struct ast_channel *c, char digit, unsigned int duration);
234 static int oh323_call(struct ast_channel *c, char *dest, int timeout);
235 static int oh323_hangup(struct ast_channel *c);
236 static int oh323_answer(struct ast_channel *c);
237 static struct ast_frame *oh323_read(struct ast_channel *c);
238 static int oh323_write(struct ast_channel *c, struct ast_frame *frame);
239 static int oh323_indicate(struct ast_channel *c, int condition, const void *data, size_t datalen);
240 static int oh323_fixup(struct ast_channel *oldchan, struct ast_channel *newchan);
242 static const struct ast_channel_tech oh323_tech = {
244 .description = tdesc,
245 .capabilities = AST_FORMAT_AUDIO_MASK,
246 .properties = AST_CHAN_TP_WANTSJITTER | AST_CHAN_TP_CREATESJITTER,
247 .requester = oh323_request,
248 .send_digit_begin = oh323_digit_begin,
249 .send_digit_end = oh323_digit_end,
251 .hangup = oh323_hangup,
252 .answer = oh323_answer,
254 .write = oh323_write,
255 .indicate = oh323_indicate,
256 .fixup = oh323_fixup,
257 .bridge = ast_rtp_bridge,
260 static const char* redirectingreason2str(int redirectingreason)
262 switch (redirectingreason) {
270 return "UNCONDITIONAL";
276 static void oh323_destroy_alias(struct oh323_alias *alias)
279 ast_debug(1, "Destroying alias '%s'\n", alias->name);
283 static void oh323_destroy_user(struct oh323_user *user)
286 ast_debug(1, "Destroying user '%s'\n", user->name);
287 ast_free_ha(user->ha);
291 static void oh323_destroy_peer(struct oh323_peer *peer)
294 ast_debug(1, "Destroying peer '%s'\n", peer->name);
295 ast_free_ha(peer->ha);
299 static int oh323_simulate_dtmf_end(const void *data)
301 struct oh323_pvt *pvt = (struct oh323_pvt *)data;
304 ast_mutex_lock(&pvt->lock);
305 /* Don't hold pvt lock while trying to lock the channel */
306 while(pvt->owner && ast_channel_trylock(pvt->owner)) {
307 ast_mutex_unlock(&pvt->lock);
309 ast_mutex_lock(&pvt->lock);
313 struct ast_frame f = {
314 .frametype = AST_FRAME_DTMF_END,
315 .subclass = pvt->curDTMF,
317 .src = "SIMULATE_DTMF_END",
319 ast_queue_frame(pvt->owner, &f);
320 ast_channel_unlock(pvt->owner);
324 ast_mutex_unlock(&pvt->lock);
330 /*! \brief Channel and private structures should be already locked */
331 static void __oh323_update_info(struct ast_channel *c, struct oh323_pvt *pvt)
333 if (c->nativeformats != pvt->nativeformats) {
335 ast_debug(1, "Preparing %s for new native format\n", c->name);
336 c->nativeformats = pvt->nativeformats;
337 ast_set_read_format(c, c->readformat);
338 ast_set_write_format(c, c->writeformat);
340 if (pvt->needhangup) {
342 ast_debug(1, "Process pending hangup for %s\n", c->name);
343 c->_softhangup |= AST_SOFTHANGUP_DEV;
344 c->hangupcause = pvt->hangupcause;
347 pvt->newstate = pvt->newcontrol = pvt->newdigit = pvt->DTMFsched = -1;
349 if (pvt->newstate >= 0) {
350 ast_setstate(c, pvt->newstate);
353 if (pvt->newcontrol >= 0) {
354 ast_queue_control(c, pvt->newcontrol);
355 pvt->newcontrol = -1;
357 if (pvt->newdigit >= 0) {
358 struct ast_frame f = {
359 .frametype = AST_FRAME_DTMF_END,
360 .subclass = pvt->newdigit,
361 .samples = pvt->newduration * 8,
362 .len = pvt->newduration,
363 .src = "UPDATE_INFO",
365 if (pvt->newdigit == ' ') { /* signalUpdate message */
366 f.subclass = pvt->curDTMF;
367 if (pvt->DTMFsched >= 0) {
368 AST_SCHED_DEL(sched, pvt->DTMFsched);
370 } else { /* Regular input or signal message */
371 if (pvt->newduration) { /* This is a signal, signalUpdate follows */
372 f.frametype = AST_FRAME_DTMF_BEGIN;
373 AST_SCHED_DEL(sched, pvt->DTMFsched);
374 pvt->DTMFsched = ast_sched_add(sched, pvt->newduration, oh323_simulate_dtmf_end, pvt);
376 ast_log(LOG_DTMF, "Scheduled DTMF END simulation for %d ms, id=%d\n", pvt->newduration, pvt->DTMFsched);
378 pvt->curDTMF = pvt->newdigit;
380 ast_queue_frame(c, &f);
383 if (pvt->update_rtp_info > 0) {
385 ast_jb_configure(c, &global_jbconf);
386 ast_channel_set_fd(c, 0, ast_rtp_fd(pvt->rtp));
387 ast_channel_set_fd(c, 1, ast_rtcp_fd(pvt->rtp));
388 ast_queue_frame(pvt->owner, &ast_null_frame); /* Tell Asterisk to apply changes */
390 pvt->update_rtp_info = -1;
394 /*! \brief Only channel structure should be locked */
395 static void oh323_update_info(struct ast_channel *c)
397 struct oh323_pvt *pvt = c->tech_pvt;
400 ast_mutex_lock(&pvt->lock);
401 __oh323_update_info(c, pvt);
402 ast_mutex_unlock(&pvt->lock);
406 static void cleanup_call_details(call_details_t *cd)
408 if (cd->call_token) {
409 ast_free(cd->call_token);
410 cd->call_token = NULL;
412 if (cd->call_source_aliases) {
413 ast_free(cd->call_source_aliases);
414 cd->call_source_aliases = NULL;
416 if (cd->call_dest_alias) {
417 ast_free(cd->call_dest_alias);
418 cd->call_dest_alias = NULL;
420 if (cd->call_source_name) {
421 ast_free(cd->call_source_name);
422 cd->call_source_name = NULL;
424 if (cd->call_source_e164) {
425 ast_free(cd->call_source_e164);
426 cd->call_source_e164 = NULL;
428 if (cd->call_dest_e164) {
429 ast_free(cd->call_dest_e164);
430 cd->call_dest_e164 = NULL;
433 ast_free(cd->sourceIp);
436 if (cd->redirect_number) {
437 ast_free(cd->redirect_number);
438 cd->redirect_number = NULL;
442 static void __oh323_destroy(struct oh323_pvt *pvt)
444 struct oh323_pvt *cur, *prev = NULL;
446 AST_SCHED_DEL(sched, pvt->DTMFsched);
449 ast_rtp_destroy(pvt->rtp);
452 /* Free dsp used for in-band DTMF detection */
454 ast_dsp_free(pvt->vad);
456 cleanup_call_details(&pvt->cd);
458 /* Unlink us from the owner if we have one */
460 ast_channel_lock(pvt->owner);
462 ast_debug(1, "Detaching from %s\n", pvt->owner->name);
463 pvt->owner->tech_pvt = NULL;
464 ast_channel_unlock(pvt->owner);
470 prev->next = cur->next;
479 ast_log(LOG_WARNING, "%p is not in list?!?! \n", cur);
481 ast_mutex_unlock(&pvt->lock);
482 ast_mutex_destroy(&pvt->lock);
487 static void oh323_destroy(struct oh323_pvt *pvt)
490 ast_debug(1, "Destroying channel %s\n", (pvt->owner ? pvt->owner->name : "<unknown>"));
492 ast_mutex_lock(&iflock);
493 ast_mutex_lock(&pvt->lock);
494 __oh323_destroy(pvt);
495 ast_mutex_unlock(&iflock);
498 static int oh323_digit_begin(struct ast_channel *c, char digit)
500 struct oh323_pvt *pvt = (struct oh323_pvt *) c->tech_pvt;
504 ast_log(LOG_ERROR, "No private structure?! This is bad\n");
507 ast_mutex_lock(&pvt->lock);
509 (((pvt->options.dtmfmode & H323_DTMF_RFC2833) && pvt->dtmf_pt[0])
510 /*|| ((pvt->options.dtmfmode & H323_DTMF_CISCO) && pvt->dtmf_pt[1]))*/)) {
511 /* out-of-band DTMF */
513 ast_log(LOG_DTMF, "Begin sending out-of-band digit %c on %s\n", digit, c->name);
515 ast_rtp_senddigit_begin(pvt->rtp, digit);
516 ast_mutex_unlock(&pvt->lock);
517 } else if (pvt->txDtmfDigit != digit) {
520 ast_log(LOG_DTMF, "Begin sending inband digit %c on %s\n", digit, c->name);
522 pvt->txDtmfDigit = digit;
523 token = pvt->cd.call_token ? ast_strdup(pvt->cd.call_token) : NULL;
524 ast_mutex_unlock(&pvt->lock);
525 h323_send_tone(token, digit);
530 ast_mutex_unlock(&pvt->lock);
531 oh323_update_info(c);
536 * Send (play) the specified digit to the channel.
539 static int oh323_digit_end(struct ast_channel *c, char digit, unsigned int duration)
541 struct oh323_pvt *pvt = (struct oh323_pvt *) c->tech_pvt;
545 ast_log(LOG_ERROR, "No private structure?! This is bad\n");
548 ast_mutex_lock(&pvt->lock);
549 if (pvt->rtp && (pvt->options.dtmfmode & H323_DTMF_RFC2833) && ((pvt->dtmf_pt[0] > 0) || (pvt->dtmf_pt[0] > 0))) {
550 /* out-of-band DTMF */
552 ast_log(LOG_DTMF, "End sending out-of-band digit %c on %s, duration %d\n", digit, c->name, duration);
554 ast_rtp_senddigit_end(pvt->rtp, digit);
555 ast_mutex_unlock(&pvt->lock);
559 ast_log(LOG_DTMF, "End sending inband digit %c on %s, duration %d\n", digit, c->name, duration);
561 pvt->txDtmfDigit = ' ';
562 token = pvt->cd.call_token ? ast_strdup(pvt->cd.call_token) : NULL;
563 ast_mutex_unlock(&pvt->lock);
564 h323_send_tone(token, ' ');
569 oh323_update_info(c);
574 * Make a call over the specified channel to the specified
576 * Returns -1 on error, 0 on success.
578 static int oh323_call(struct ast_channel *c, char *dest, int timeout)
581 struct oh323_pvt *pvt = (struct oh323_pvt *)c->tech_pvt;
583 char called_addr[1024];
586 ast_debug(1, "Calling to %s on %s\n", dest, c->name);
588 if ((c->_state != AST_STATE_DOWN) && (c->_state != AST_STATE_RESERVED)) {
589 ast_log(LOG_WARNING, "Line is already in use (%s)\n", c->name);
592 ast_mutex_lock(&pvt->lock);
593 if (!gatekeeper_disable) {
594 if (ast_strlen_zero(pvt->exten)) {
595 ast_copy_string(called_addr, dest, sizeof(called_addr));
597 snprintf(called_addr, sizeof(called_addr), "%s@%s", pvt->exten, dest);
600 res = htons(pvt->sa.sin_port);
601 addr = ast_inet_ntoa(pvt->sa.sin_addr);
602 if (ast_strlen_zero(pvt->exten)) {
603 snprintf(called_addr, sizeof(called_addr), "%s:%d", addr, res);
605 snprintf(called_addr, sizeof(called_addr), "%s@%s:%d", pvt->exten, addr, res);
608 /* make sure null terminated */
609 called_addr[sizeof(called_addr) - 1] = '\0';
612 ast_copy_string(pvt->options.cid_num, c->cid.cid_num, sizeof(pvt->options.cid_num));
615 ast_copy_string(pvt->options.cid_name, c->cid.cid_name, sizeof(pvt->options.cid_name));
617 if (c->cid.cid_rdnis) {
618 ast_copy_string(pvt->options.cid_rdnis, c->cid.cid_rdnis, sizeof(pvt->options.cid_rdnis));
621 pvt->options.presentation = c->cid.cid_pres;
622 pvt->options.type_of_number = c->cid.cid_ton;
624 if ((addr = pbx_builtin_getvar_helper(c, "PRIREDIRECTREASON"))) {
625 if (!strcasecmp(addr, "UNKNOWN"))
626 pvt->options.redirect_reason = 0;
627 else if (!strcasecmp(addr, "BUSY"))
628 pvt->options.redirect_reason = 1;
629 else if (!strcasecmp(addr, "NO_REPLY"))
630 pvt->options.redirect_reason = 2;
631 else if (!strcasecmp(addr, "UNCONDITIONAL"))
632 pvt->options.redirect_reason = 15;
634 pvt->options.redirect_reason = -1;
636 pvt->options.redirect_reason = -1;
638 pvt->options.transfer_capability = c->transfercapability;
640 /* indicate that this is an outgoing call */
643 ast_verb(3, "Requested transfer capability: 0x%.2x - %s\n", c->transfercapability, ast_transfercapability2str(c->transfercapability));
645 ast_debug(1, "Placing outgoing call to %s, %d/%d\n", called_addr, pvt->options.dtmfcodec[0], pvt->options.dtmfcodec[1]);
646 ast_mutex_unlock(&pvt->lock);
647 res = h323_make_call(called_addr, &(pvt->cd), &pvt->options);
649 ast_log(LOG_NOTICE, "h323_make_call failed(%s)\n", c->name);
652 oh323_update_info(c);
656 static int oh323_answer(struct ast_channel *c)
659 struct oh323_pvt *pvt = (struct oh323_pvt *) c->tech_pvt;
663 ast_debug(1, "Answering on %s\n", c->name);
665 ast_mutex_lock(&pvt->lock);
666 token = pvt->cd.call_token ? ast_strdup(pvt->cd.call_token) : NULL;
667 ast_mutex_unlock(&pvt->lock);
668 res = h323_answering_call(token, 0);
672 oh323_update_info(c);
673 if (c->_state != AST_STATE_UP) {
674 ast_setstate(c, AST_STATE_UP);
679 static int oh323_hangup(struct ast_channel *c)
681 struct oh323_pvt *pvt = (struct oh323_pvt *) c->tech_pvt;
682 int q931cause = AST_CAUSE_NORMAL_CLEARING;
687 ast_debug(1, "Hanging up and scheduling destroy of call %s\n", c->name);
690 ast_log(LOG_WARNING, "Asked to hangup channel not connected\n");
693 ast_mutex_lock(&pvt->lock);
694 /* Determine how to disconnect */
695 if (pvt->owner != c) {
696 ast_log(LOG_WARNING, "Huh? We aren't the owner?\n");
697 ast_mutex_unlock(&pvt->lock);
704 if (c->hangupcause) {
705 q931cause = c->hangupcause;
707 const char *cause = pbx_builtin_getvar_helper(c, "DIALSTATUS");
709 if (!strcmp(cause, "CONGESTION")) {
710 q931cause = AST_CAUSE_NORMAL_CIRCUIT_CONGESTION;
711 } else if (!strcmp(cause, "BUSY")) {
712 q931cause = AST_CAUSE_USER_BUSY;
713 } else if (!strcmp(cause, "CHANISUNVAIL")) {
714 q931cause = AST_CAUSE_REQUESTED_CHAN_UNAVAIL;
715 } else if (!strcmp(cause, "NOANSWER")) {
716 q931cause = AST_CAUSE_NO_ANSWER;
717 } else if (!strcmp(cause, "CANCEL")) {
718 q931cause = AST_CAUSE_CALL_REJECTED;
723 /* Start the process if it's not already started */
724 if (!pvt->alreadygone && !pvt->hangupcause) {
725 call_token = pvt->cd.call_token ? ast_strdup(pvt->cd.call_token) : NULL;
727 /* Release lock to eliminate deadlock */
728 ast_mutex_unlock(&pvt->lock);
729 if (h323_clear_call(call_token, q931cause)) {
730 ast_log(LOG_WARNING, "ClearCall failed.\n");
732 ast_free(call_token);
733 ast_mutex_lock(&pvt->lock);
736 pvt->needdestroy = 1;
737 ast_mutex_unlock(&pvt->lock);
739 /* Update usage counter */
740 ast_module_unref(ast_module_info->self);
745 /*! \brief Retrieve audio/etc from channel. Assumes pvt->lock is already held. */
746 static struct ast_frame *oh323_rtp_read(struct oh323_pvt *pvt)
750 /* Only apply it for the first packet, we just need the correct ip/port */
751 if (pvt->options.nat) {
752 ast_rtp_setnat(pvt->rtp, pvt->options.nat);
753 pvt->options.nat = 0;
756 f = ast_rtp_read(pvt->rtp);
757 /* Don't send RFC2833 if we're not supposed to */
758 if (f && (f->frametype == AST_FRAME_DTMF) && !(pvt->options.dtmfmode & (H323_DTMF_RFC2833 | H323_DTMF_CISCO))) {
759 return &ast_null_frame;
762 /* We already hold the channel lock */
763 if (f->frametype == AST_FRAME_VOICE) {
764 if (f->subclass != pvt->owner->nativeformats) {
765 /* Try to avoid deadlock */
766 if (ast_channel_trylock(pvt->owner)) {
767 ast_log(LOG_NOTICE, "Format changed but channel is locked. Ignoring frame...\n");
768 return &ast_null_frame;
771 ast_debug(1, "Oooh, format changed to %d\n", f->subclass);
772 pvt->owner->nativeformats = f->subclass;
773 pvt->nativeformats = f->subclass;
774 ast_set_read_format(pvt->owner, pvt->owner->readformat);
775 ast_set_write_format(pvt->owner, pvt->owner->writeformat);
776 ast_channel_unlock(pvt->owner);
778 /* Do in-band DTMF detection */
779 if ((pvt->options.dtmfmode & H323_DTMF_INBAND) && pvt->vad) {
780 if ((pvt->nativeformats & (AST_FORMAT_SLINEAR | AST_FORMAT_ALAW | AST_FORMAT_ULAW))) {
781 if (!ast_channel_trylock(pvt->owner)) {
782 f = ast_dsp_process(pvt->owner, pvt->vad, f);
783 ast_channel_unlock(pvt->owner);
786 ast_log(LOG_NOTICE, "Unable to process inband DTMF while channel is locked\n");
787 } else if (pvt->nativeformats && !pvt->noInbandDtmf) {
788 ast_log(LOG_NOTICE, "Inband DTMF is not supported on codec %s. Use RFC2833\n", ast_getformatname(f->subclass));
789 pvt->noInbandDtmf = 1;
791 if (f &&(f->frametype == AST_FRAME_DTMF)) {
793 ast_log(LOG_DTMF, "Received in-band digit %c.\n", f->subclass);
801 static struct ast_frame *oh323_read(struct ast_channel *c)
803 struct ast_frame *fr;
804 struct oh323_pvt *pvt = (struct oh323_pvt *)c->tech_pvt;
805 ast_mutex_lock(&pvt->lock);
806 __oh323_update_info(c, pvt);
809 fr = oh323_rtp_read(pvt);
813 fr = ast_rtcp_read(pvt->rtp);
815 fr = &ast_null_frame;
818 ast_log(LOG_ERROR, "Unable to handle fd %d on channel %s\n", c->fdno, c->name);
819 fr = &ast_null_frame;
822 ast_mutex_unlock(&pvt->lock);
826 static int oh323_write(struct ast_channel *c, struct ast_frame *frame)
828 struct oh323_pvt *pvt = (struct oh323_pvt *) c->tech_pvt;
830 if (frame->frametype != AST_FRAME_VOICE) {
831 if (frame->frametype == AST_FRAME_IMAGE) {
834 ast_log(LOG_WARNING, "Can't send %d type frames with H323 write\n", frame->frametype);
838 if (!(frame->subclass & c->nativeformats)) {
839 ast_log(LOG_WARNING, "Asked to transmit frame type %d, while native formats is %d (read/write = %d/%d)\n",
840 frame->subclass, c->nativeformats, c->readformat, c->writeformat);
845 ast_mutex_lock(&pvt->lock);
846 if (pvt->rtp && !pvt->recvonly)
847 res = ast_rtp_write(pvt->rtp, frame);
848 __oh323_update_info(c, pvt);
849 ast_mutex_unlock(&pvt->lock);
854 static int oh323_indicate(struct ast_channel *c, int condition, const void *data, size_t datalen)
857 struct oh323_pvt *pvt = (struct oh323_pvt *) c->tech_pvt;
858 char *token = (char *)NULL;
862 ast_mutex_lock(&pvt->lock);
863 token = (pvt->cd.call_token ? ast_strdup(pvt->cd.call_token) : NULL);
864 got_progress = pvt->got_progress;
865 if (condition == AST_CONTROL_PROGRESS)
866 pvt->got_progress = 1;
867 else if ((condition == AST_CONTROL_BUSY) || (condition == AST_CONTROL_CONGESTION))
868 pvt->alreadygone = 1;
869 ast_mutex_unlock(&pvt->lock);
872 ast_debug(1, "OH323: Indicating %d on %s (%s)\n", condition, token, c->name);
875 case AST_CONTROL_RINGING:
876 if (c->_state == AST_STATE_RING || c->_state == AST_STATE_RINGING) {
877 h323_send_alerting(token);
878 res = (got_progress ? 0 : -1); /* Do not simulate any audio tones if we got PROGRESS message */
881 case AST_CONTROL_PROGRESS:
882 if (c->_state != AST_STATE_UP) {
883 /* Do not send PROGRESS message more than once */
885 h323_send_progress(token);
889 case AST_CONTROL_BUSY:
890 if (c->_state != AST_STATE_UP) {
891 h323_answering_call(token, 1);
892 ast_softhangup_nolock(c, AST_SOFTHANGUP_DEV);
896 case AST_CONTROL_CONGESTION:
897 if (c->_state != AST_STATE_UP) {
898 h323_answering_call(token, 1);
899 ast_softhangup_nolock(c, AST_SOFTHANGUP_DEV);
903 case AST_CONTROL_HOLD:
904 h323_hold_call(token, 1);
905 /* We should start MOH only if remote party isn't provide audio for us */
906 ast_moh_start(c, data, NULL);
909 case AST_CONTROL_UNHOLD:
910 h323_hold_call(token, 0);
914 case AST_CONTROL_SRCUPDATE:
915 ast_rtp_new_source(pvt->rtp);
918 case AST_CONTROL_PROCEEDING:
922 ast_log(LOG_WARNING, "OH323: Don't know how to indicate condition %d on %s\n", condition, token);
927 ast_debug(1, "OH323: Indicated %d on %s, res=%d\n", condition, token, res);
930 oh323_update_info(c);
935 static int oh323_fixup(struct ast_channel *oldchan, struct ast_channel *newchan)
937 struct oh323_pvt *pvt = (struct oh323_pvt *) newchan->tech_pvt;
939 ast_mutex_lock(&pvt->lock);
940 if (pvt->owner != oldchan) {
941 ast_log(LOG_WARNING, "old channel wasn't %p but was %p\n", oldchan, pvt->owner);
944 pvt->owner = newchan;
945 ast_mutex_unlock(&pvt->lock);
949 static int __oh323_rtp_create(struct oh323_pvt *pvt)
951 struct in_addr our_addr;
956 if (ast_find_ourip(&our_addr, bindaddr)) {
957 ast_mutex_unlock(&pvt->lock);
958 ast_log(LOG_ERROR, "Unable to locate local IP address for RTP stream\n");
961 pvt->rtp = ast_rtp_new_with_bindaddr(sched, io, 1, 0, our_addr);
963 ast_mutex_unlock(&pvt->lock);
964 ast_log(LOG_WARNING, "Unable to create RTP session: %s\n", strerror(errno));
968 ast_debug(1, "Created RTP channel\n");
970 ast_rtp_setqos(pvt->rtp, tos, cos, "H323 RTP");
973 ast_debug(1, "Setting NAT on RTP to %d\n", pvt->options.nat);
974 ast_rtp_setnat(pvt->rtp, pvt->options.nat);
976 if (pvt->dtmf_pt[0] > 0)
977 ast_rtp_set_rtpmap_type(pvt->rtp, pvt->dtmf_pt[0], "audio", "telephone-event", 0);
978 if (pvt->dtmf_pt[1] > 0)
979 ast_rtp_set_rtpmap_type(pvt->rtp, pvt->dtmf_pt[1], "audio", "cisco-telephone-event", 0);
981 if (pvt->peercapability)
982 ast_rtp_codec_setpref(pvt->rtp, &pvt->peer_prefs);
984 if (pvt->owner && !ast_channel_trylock(pvt->owner)) {
985 ast_jb_configure(pvt->owner, &global_jbconf);
986 ast_channel_set_fd(pvt->owner, 0, ast_rtp_fd(pvt->rtp));
987 ast_channel_set_fd(pvt->owner, 1, ast_rtcp_fd(pvt->rtp));
988 ast_queue_frame(pvt->owner, &ast_null_frame); /* Tell Asterisk to apply changes */
989 ast_channel_unlock(pvt->owner);
991 pvt->update_rtp_info = 1;
996 /*! \brief Private structure should be locked on a call */
997 static struct ast_channel *__oh323_new(struct oh323_pvt *pvt, int state, const char *host)
999 struct ast_channel *ch;
1000 char *cid_num, *cid_name;
1003 if (!ast_strlen_zero(pvt->options.cid_num))
1004 cid_num = pvt->options.cid_num;
1006 cid_num = pvt->cd.call_source_e164;
1008 if (!ast_strlen_zero(pvt->options.cid_name))
1009 cid_name = pvt->options.cid_name;
1011 cid_name = pvt->cd.call_source_name;
1013 /* Don't hold a oh323_pvt lock while we allocate a chanel */
1014 ast_mutex_unlock(&pvt->lock);
1015 ch = ast_channel_alloc(1, state, cid_num, cid_name, pvt->accountcode, pvt->exten, pvt->context, pvt->amaflags, "H323/%s", host);
1016 /* Update usage counter */
1017 ast_module_ref(ast_module_info->self);
1018 ast_mutex_lock(&pvt->lock);
1020 ch->tech = &oh323_tech;
1021 if (!(fmt = pvt->jointcapability) && !(fmt = pvt->options.capability))
1022 fmt = global_options.capability;
1023 ch->nativeformats = ast_codec_choose(&pvt->options.prefs, fmt, 1)/* | (pvt->jointcapability & AST_FORMAT_VIDEO_MASK)*/;
1024 pvt->nativeformats = ch->nativeformats;
1025 fmt = ast_best_codec(ch->nativeformats);
1026 ch->writeformat = fmt;
1027 ch->rawwriteformat = fmt;
1028 ch->readformat = fmt;
1029 ch->rawreadformat = fmt;
1031 __oh323_rtp_create(pvt);
1033 ast_channel_set_fd(ch, 0, ast_rtp_fd(pvt->rtp));
1034 ast_channel_set_fd(ch, 1, ast_rtcp_fd(pvt->rtp));
1036 #ifdef VIDEO_SUPPORT
1038 ast_channel_set_fd(ch, 2, ast_rtp_fd(pvt->vrtp));
1039 ast_channel_set_fd(ch, 3, ast_rtcp_fd(pvt->vrtp));
1044 ast_channel_set_fd(ch, 4, ast_udptl_fd(pvt->udptl));
1047 if (state == AST_STATE_RING) {
1050 /* Allocate dsp for in-band DTMF support */
1051 if (pvt->options.dtmfmode & H323_DTMF_INBAND) {
1052 pvt->vad = ast_dsp_new();
1053 ast_dsp_set_features(pvt->vad, DSP_FEATURE_DIGIT_DETECT);
1055 /* Register channel functions. */
1057 /* Set the owner of this channel */
1060 ast_copy_string(ch->context, pvt->context, sizeof(ch->context));
1061 ast_copy_string(ch->exten, pvt->exten, sizeof(ch->exten));
1063 if (!ast_strlen_zero(pvt->accountcode)) {
1064 ast_string_field_set(ch, accountcode, pvt->accountcode);
1066 if (pvt->amaflags) {
1067 ch->amaflags = pvt->amaflags;
1070 /* Don't use ast_set_callerid() here because it will
1071 * generate a needless NewCallerID event */
1072 ch->cid.cid_ani = ast_strdup(cid_num);
1074 if (pvt->cd.redirect_reason >= 0) {
1075 ch->cid.cid_rdnis = ast_strdup(pvt->cd.redirect_number);
1076 pbx_builtin_setvar_helper(ch, "PRIREDIRECTREASON", redirectingreason2str(pvt->cd.redirect_reason));
1078 ch->cid.cid_pres = pvt->cd.presentation;
1079 ch->cid.cid_ton = pvt->cd.type_of_number;
1081 if (!ast_strlen_zero(pvt->exten) && strcmp(pvt->exten, "s")) {
1082 ch->cid.cid_dnid = ast_strdup(pvt->exten);
1084 if (pvt->cd.transfer_capability >= 0)
1085 ch->transfercapability = pvt->cd.transfer_capability;
1086 if (state != AST_STATE_DOWN) {
1087 if (ast_pbx_start(ch)) {
1088 ast_log(LOG_WARNING, "Unable to start PBX on %s\n", ch->name);
1094 ast_log(LOG_WARNING, "Unable to allocate channel structure\n");
1099 static struct oh323_pvt *oh323_alloc(int callid)
1101 struct oh323_pvt *pvt;
1103 pvt = ast_calloc(1, sizeof(*pvt));
1105 ast_log(LOG_ERROR, "Couldn't allocate private structure. This is bad\n");
1108 pvt->cd.redirect_reason = -1;
1109 pvt->cd.transfer_capability = -1;
1110 /* Ensure the call token is allocated for outgoing call */
1112 if ((pvt->cd).call_token == NULL) {
1113 (pvt->cd).call_token = ast_calloc(1, 128);
1115 if (!pvt->cd.call_token) {
1116 ast_log(LOG_ERROR, "Not enough memory to alocate call token\n");
1117 ast_rtp_destroy(pvt->rtp);
1121 memset((char *)(pvt->cd).call_token, 0, 128);
1122 pvt->cd.call_reference = callid;
1124 memcpy(&pvt->options, &global_options, sizeof(pvt->options));
1125 pvt->jointcapability = pvt->options.capability;
1126 if (pvt->options.dtmfmode & (H323_DTMF_RFC2833 | H323_DTMF_CISCO)) {
1127 pvt->nonCodecCapability |= AST_RTP_DTMF;
1129 pvt->nonCodecCapability &= ~AST_RTP_DTMF;
1131 ast_copy_string(pvt->context, default_context, sizeof(pvt->context));
1132 pvt->newstate = pvt->newcontrol = pvt->newdigit = pvt->update_rtp_info = pvt->DTMFsched = -1;
1133 ast_mutex_init(&pvt->lock);
1134 /* Add to interface list */
1135 ast_mutex_lock(&iflock);
1138 ast_mutex_unlock(&iflock);
1142 static struct oh323_pvt *find_call_locked(int call_reference, const char *token)
1144 struct oh323_pvt *pvt;
1146 ast_mutex_lock(&iflock);
1149 if (!pvt->needdestroy && ((signed int)pvt->cd.call_reference == call_reference)) {
1150 /* Found the call */
1151 if ((token != NULL) && (pvt->cd.call_token != NULL) && (!strcmp(pvt->cd.call_token, token))) {
1152 ast_mutex_lock(&pvt->lock);
1153 ast_mutex_unlock(&iflock);
1155 } else if (token == NULL) {
1156 ast_log(LOG_WARNING, "Call Token is NULL\n");
1157 ast_mutex_lock(&pvt->lock);
1158 ast_mutex_unlock(&iflock);
1164 ast_mutex_unlock(&iflock);
1168 static int update_state(struct oh323_pvt *pvt, int state, int signal)
1172 if (pvt->owner && !ast_channel_trylock(pvt->owner)) {
1174 ast_setstate(pvt->owner, state);
1176 ast_queue_control(pvt->owner, signal);
1177 ast_channel_unlock(pvt->owner);
1182 pvt->newstate = state;
1184 pvt->newcontrol = signal;
1189 static struct oh323_alias *build_alias(const char *name, struct ast_variable *v, struct ast_variable *alt, int realtime)
1191 struct oh323_alias *alias;
1194 alias = ASTOBJ_CONTAINER_FIND_UNLINK_FULL(&aliasl, name, name, 0, 0, strcasecmp);
1199 if (!(alias = ast_calloc(1, sizeof(*alias))))
1204 ast_copy_string(alias->name, name, sizeof(alias->name));
1205 for (; v || ((v = alt) && !(alt = NULL)); v = v->next) {
1206 if (!strcasecmp(v->name, "e164")) {
1207 ast_copy_string(alias->e164, v->value, sizeof(alias->e164));
1208 } else if (!strcasecmp(v->name, "prefix")) {
1209 ast_copy_string(alias->prefix, v->value, sizeof(alias->prefix));
1210 } else if (!strcasecmp(v->name, "context")) {
1211 ast_copy_string(alias->context, v->value, sizeof(alias->context));
1212 } else if (!strcasecmp(v->name, "secret")) {
1213 ast_copy_string(alias->secret, v->value, sizeof(alias->secret));
1215 if (strcasecmp(v->value, "h323")) {
1216 ast_log(LOG_WARNING, "Keyword %s does not make sense in type=h323\n", v->name);
1220 ASTOBJ_UNMARK(alias);
1224 static struct oh323_alias *realtime_alias(const char *alias)
1226 struct ast_variable *var, *tmp;
1227 struct oh323_alias *a;
1229 var = ast_load_realtime("h323", "name", alias, NULL);
1234 for (tmp = var; tmp; tmp = tmp->next) {
1235 if (!strcasecmp(tmp->name, "type") &&
1236 !(!strcasecmp(tmp->value, "alias") || !strcasecmp(tmp->value, "h323"))) {
1237 ast_variables_destroy(var);
1242 a = build_alias(alias, var, NULL, 1);
1244 ast_variables_destroy(var);
1249 static int update_common_options(struct ast_variable *v, struct call_options *options)
1254 if (!strcasecmp(v->name, "allow")) {
1255 ast_parse_allow_disallow(&options->prefs, &options->capability, v->value, 1);
1256 } else if (!strcasecmp(v->name, "disallow")) {
1257 ast_parse_allow_disallow(&options->prefs, &options->capability, v->value, 0);
1258 } else if (!strcasecmp(v->name, "dtmfmode")) {
1259 val = ast_strdupa(v->value);
1260 if ((opt = strchr(val, ':')) != (char *)NULL) {
1264 if (!strcasecmp(v->value, "inband")) {
1265 options->dtmfmode |= H323_DTMF_INBAND;
1266 } else if (!strcasecmp(val, "rfc2833")) {
1267 options->dtmfmode |= H323_DTMF_RFC2833;
1269 options->dtmfcodec[0] = H323_DTMF_RFC2833_PT;
1270 } else if ((tmp >= 96) && (tmp < 128)) {
1271 options->dtmfcodec[0] = tmp;
1273 options->dtmfcodec[0] = H323_DTMF_RFC2833_PT;
1274 ast_log(LOG_WARNING, "Unknown rfc2833 payload %s specified at line %d, using default %d\n", opt, v->lineno, options->dtmfcodec[0]);
1276 } else if (!strcasecmp(val, "cisco")) {
1277 options->dtmfmode |= H323_DTMF_CISCO;
1279 options->dtmfcodec[1] = H323_DTMF_CISCO_PT;
1280 } else if ((tmp >= 96) && (tmp < 128)) {
1281 options->dtmfcodec[1] = tmp;
1283 options->dtmfcodec[1] = H323_DTMF_CISCO_PT;
1284 ast_log(LOG_WARNING, "Unknown Cisco DTMF payload %s specified at line %d, using default %d\n", opt, v->lineno, options->dtmfcodec[1]);
1286 } else if (!strcasecmp(v->value, "h245-signal")) {
1287 options->dtmfmode |= H323_DTMF_SIGNAL;
1289 ast_log(LOG_WARNING, "Unknown dtmf mode '%s' at line %d\n", v->value, v->lineno);
1291 } else if (!strcasecmp(v->name, "dtmfcodec")) {
1292 ast_log(LOG_NOTICE, "Option %s at line %d is deprecated. Use dtmfmode=rfc2833[:<payload>] instead.\n", v->name, v->lineno);
1293 tmp = atoi(v->value);
1295 ast_log(LOG_WARNING, "Invalid %s value %s at line %d\n", v->name, v->value, v->lineno);
1297 options->dtmfcodec[0] = tmp;
1298 } else if (!strcasecmp(v->name, "bridge")) {
1299 options->bridge = ast_true(v->value);
1300 } else if (!strcasecmp(v->name, "nat")) {
1301 options->nat = ast_true(v->value);
1302 } else if (!strcasecmp(v->name, "fastStart")) {
1303 options->fastStart = ast_true(v->value);
1304 } else if (!strcasecmp(v->name, "h245Tunneling")) {
1305 options->h245Tunneling = ast_true(v->value);
1306 } else if (!strcasecmp(v->name, "silenceSuppression")) {
1307 options->silenceSuppression = ast_true(v->value);
1308 } else if (!strcasecmp(v->name, "progress_setup")) {
1309 tmp = atoi(v->value);
1310 if ((tmp != 0) && (tmp != 1) && (tmp != 3) && (tmp != 8)) {
1311 ast_log(LOG_WARNING, "Invalid value %s for %s at line %d, assuming 0\n", v->value, v->name, v->lineno);
1314 options->progress_setup = tmp;
1315 } else if (!strcasecmp(v->name, "progress_alert")) {
1316 tmp = atoi(v->value);
1317 if ((tmp != 0) && (tmp != 1) && (tmp != 8)) {
1318 ast_log(LOG_WARNING, "Invalid value %s for %s at line %d, assuming 0\n", v->value, v->name, v->lineno);
1321 options->progress_alert = tmp;
1322 } else if (!strcasecmp(v->name, "progress_audio")) {
1323 options->progress_audio = ast_true(v->value);
1324 } else if (!strcasecmp(v->name, "callerid")) {
1325 ast_callerid_split(v->value, options->cid_name, sizeof(options->cid_name), options->cid_num, sizeof(options->cid_num));
1326 } else if (!strcasecmp(v->name, "fullname")) {
1327 ast_copy_string(options->cid_name, v->value, sizeof(options->cid_name));
1328 } else if (!strcasecmp(v->name, "cid_number")) {
1329 ast_copy_string(options->cid_num, v->value, sizeof(options->cid_num));
1330 } else if (!strcasecmp(v->name, "tunneling")) {
1331 if (!strcasecmp(v->value, "none"))
1332 options->tunnelOptions = 0;
1333 else if (!strcasecmp(v->value, "cisco"))
1334 options->tunnelOptions |= H323_TUNNEL_CISCO;
1335 else if (!strcasecmp(v->value, "qsig"))
1336 options->tunnelOptions |= H323_TUNNEL_QSIG;
1338 ast_log(LOG_WARNING, "Invalid value %s for %s at line %d\n", v->value, v->name, v->lineno);
1339 } else if (!strcasecmp(v->name, "hold")) {
1340 if (!strcasecmp(v->value, "none"))
1341 options->holdHandling = ~0;
1342 else if (!strcasecmp(v->value, "notify"))
1343 options->holdHandling |= H323_HOLD_NOTIFY;
1344 else if (!strcasecmp(v->value, "q931only"))
1345 options->holdHandling |= H323_HOLD_NOTIFY | H323_HOLD_Q931ONLY;
1346 else if (!strcasecmp(v->value, "h450"))
1347 options->holdHandling |= H323_HOLD_H450;
1349 ast_log(LOG_WARNING, "Invalid value %s for %s at line %d\n", v->value, v->name, v->lineno);
1356 static struct oh323_user *build_user(const char *name, struct ast_variable *v, struct ast_variable *alt, int realtime)
1358 struct oh323_user *user;
1359 struct ast_ha *oldha;
1363 user = ASTOBJ_CONTAINER_FIND_UNLINK_FULL(&userl, name, name, 0, 0, strcmp);
1368 if (!(user = ast_calloc(1, sizeof(*user))))
1373 user->ha = (struct ast_ha *)NULL;
1374 memcpy(&user->options, &global_options, sizeof(user->options));
1375 user->options.dtmfmode = 0;
1376 user->options.holdHandling = 0;
1377 /* Set default context */
1378 ast_copy_string(user->context, default_context, sizeof(user->context));
1380 ast_copy_string(user->name, name, sizeof(user->name));
1382 #if 0 /* XXX Port channel variables functionality from chan_sip XXX */
1383 if (user->chanvars) {
1384 ast_variables_destroy(user->chanvars);
1385 user->chanvars = NULL;
1389 for (; v || ((v = alt) && !(alt = NULL)); v = v->next) {
1390 if (!update_common_options(v, &user->options))
1392 if (!strcasecmp(v->name, "context")) {
1393 ast_copy_string(user->context, v->value, sizeof(user->context));
1394 } else if (!strcasecmp(v->name, "secret")) {
1395 ast_copy_string(user->secret, v->value, sizeof(user->secret));
1396 } else if (!strcasecmp(v->name, "accountcode")) {
1397 ast_copy_string(user->accountcode, v->value, sizeof(user->accountcode));
1398 } else if (!strcasecmp(v->name, "host")) {
1399 if (!strcasecmp(v->value, "dynamic")) {
1400 ast_log(LOG_ERROR, "A dynamic host on a type=user does not make any sense\n");
1401 ASTOBJ_UNREF(user, oh323_destroy_user);
1403 } else if (ast_get_ip(&user->addr, v->value)) {
1404 ASTOBJ_UNREF(user, oh323_destroy_user);
1407 /* Let us know we need to use ip authentication */
1409 } else if (!strcasecmp(v->name, "amaflags")) {
1410 format = ast_cdr_amaflags2int(v->value);
1412 ast_log(LOG_WARNING, "Invalid AMA Flags: %s at line %d\n", v->value, v->lineno);
1414 user->amaflags = format;
1416 } else if (!strcasecmp(v->name, "permit") ||
1417 !strcasecmp(v->name, "deny")) {
1420 user->ha = ast_append_ha(v->name, v->value, user->ha, &ha_error);
1422 ast_log(LOG_ERROR, "Bad ACL entry in configuration line %d : %s\n", v->lineno, v->value);
1425 if (!user->options.dtmfmode)
1426 user->options.dtmfmode = global_options.dtmfmode;
1427 if (user->options.holdHandling == ~0)
1428 user->options.holdHandling = 0;
1429 else if (!user->options.holdHandling)
1430 user->options.holdHandling = global_options.holdHandling;
1431 ASTOBJ_UNMARK(user);
1436 static struct oh323_user *realtime_user(const call_details_t *cd)
1438 struct ast_variable *var, *tmp;
1439 struct oh323_user *user;
1440 const char *username;
1443 var = ast_load_realtime("h323", "name", username = cd->call_source_aliases, NULL);
1445 username = (char *)NULL;
1446 var = ast_load_realtime("h323", "host", cd->sourceIp, NULL);
1452 for (tmp = var; tmp; tmp = tmp->next) {
1453 if (!strcasecmp(tmp->name, "type") &&
1454 !(!strcasecmp(tmp->value, "user") || !strcasecmp(tmp->value, "friend"))) {
1455 ast_variables_destroy(var);
1457 } else if (!username && !strcasecmp(tmp->name, "name"))
1458 username = tmp->value;
1462 ast_log(LOG_WARNING, "Cannot determine user name for IP address %s\n", cd->sourceIp);
1463 ast_variables_destroy(var);
1467 user = build_user(username, var, NULL, 1);
1469 ast_variables_destroy(var);
1474 static struct oh323_peer *build_peer(const char *name, struct ast_variable *v, struct ast_variable *alt, int realtime)
1476 struct oh323_peer *peer;
1477 struct ast_ha *oldha;
1480 peer = ASTOBJ_CONTAINER_FIND_UNLINK_FULL(&peerl, name, name, 0, 0, strcmp);
1485 if (!(peer = ast_calloc(1, sizeof(*peer))))
1491 memcpy(&peer->options, &global_options, sizeof(peer->options));
1492 peer->options.dtmfmode = 0;
1493 peer->options.holdHandling = 0;
1494 peer->addr.sin_port = htons(h323_signalling_port);
1495 peer->addr.sin_family = AF_INET;
1497 ast_copy_string(peer->name, name, sizeof(peer->name));
1499 #if 0 /* XXX Port channel variables functionality from chan_sip XXX */
1500 if (peer->chanvars) {
1501 ast_variables_destroy(peer->chanvars);
1502 peer->chanvars = NULL;
1505 /* Default settings for mailbox */
1506 peer->mailbox[0] = '\0';
1508 for (; v || ((v = alt) && !(alt = NULL)); v = v->next) {
1509 if (!update_common_options(v, &peer->options))
1511 if (!strcasecmp(v->name, "host")) {
1512 if (!strcasecmp(v->value, "dynamic")) {
1513 ast_log(LOG_ERROR, "Dynamic host configuration not implemented.\n");
1514 ASTOBJ_UNREF(peer, oh323_destroy_peer);
1517 if (ast_get_ip(&peer->addr, v->value)) {
1518 ast_log(LOG_ERROR, "Could not determine IP for %s\n", v->value);
1519 ASTOBJ_UNREF(peer, oh323_destroy_peer);
1522 } else if (!strcasecmp(v->name, "port")) {
1523 peer->addr.sin_port = htons(atoi(v->value));
1524 } else if (!strcasecmp(v->name, "permit") ||
1525 !strcasecmp(v->name, "deny")) {
1528 peer->ha = ast_append_ha(v->name, v->value, peer->ha, &ha_error);
1530 ast_log(LOG_ERROR, "Bad ACL entry in configuration line %d : %s\n", v->lineno, v->value);
1531 } else if (!strcasecmp(v->name, "mailbox")) {
1532 ast_copy_string(peer->mailbox, v->value, sizeof(peer->mailbox));
1535 if (!peer->options.dtmfmode)
1536 peer->options.dtmfmode = global_options.dtmfmode;
1537 if (peer->options.holdHandling == ~0)
1538 peer->options.holdHandling = 0;
1539 else if (!peer->options.holdHandling)
1540 peer->options.holdHandling = global_options.holdHandling;
1541 ASTOBJ_UNMARK(peer);
1546 static struct oh323_peer *realtime_peer(const char *peername, struct sockaddr_in *sin)
1548 struct oh323_peer *peer;
1549 struct ast_variable *var;
1550 struct ast_variable *tmp;
1553 /* First check on peer name */
1555 var = ast_load_realtime("h323", "name", peername, addr = NULL);
1556 else if (sin) /* Then check on IP address for dynamic peers */
1557 var = ast_load_realtime("h323", "host", addr = ast_inet_ntoa(sin->sin_addr), NULL);
1564 for (tmp = var; tmp; tmp = tmp->next) {
1565 /* If this is type=user, then skip this object. */
1566 if (!strcasecmp(tmp->name, "type") &&
1567 !(!strcasecmp(tmp->value, "peer") || !strcasecmp(tmp->value, "friend"))) {
1568 ast_variables_destroy(var);
1570 } else if (!peername && !strcasecmp(tmp->name, "name")) {
1571 peername = tmp->value;
1575 if (!peername) { /* Did not find peer in realtime */
1576 ast_log(LOG_WARNING, "Cannot determine peer name for IP address %s\n", addr);
1577 ast_variables_destroy(var);
1581 /* Peer found in realtime, now build it in memory */
1582 peer = build_peer(peername, var, NULL, 1);
1584 ast_variables_destroy(var);
1589 static int oh323_addrcmp_str(struct in_addr inaddr, char *addr)
1591 return strcmp(ast_inet_ntoa(inaddr), addr);
1594 static struct oh323_user *find_user(const call_details_t *cd, int realtime)
1596 struct oh323_user *u;
1599 u = ASTOBJ_CONTAINER_FIND(&userl, cd->call_source_aliases);
1601 u = ASTOBJ_CONTAINER_FIND_FULL(&userl, cd->sourceIp, addr.sin_addr, 0, 0, oh323_addrcmp_str);
1604 u = realtime_user(cd);
1606 if (!u && h323debug)
1607 ast_debug(1, "Could not find user by name %s or address %s\n", cd->call_source_aliases, cd->sourceIp);
1612 static int oh323_addrcmp(struct sockaddr_in addr, struct sockaddr_in *sin)
1619 res = inaddrcmp(&addr , sin);
1624 static struct oh323_peer *find_peer(const char *peer, struct sockaddr_in *sin, int realtime)
1626 struct oh323_peer *p;
1629 p = ASTOBJ_CONTAINER_FIND(&peerl, peer);
1631 p = ASTOBJ_CONTAINER_FIND_FULL(&peerl, sin, addr, 0, 0, oh323_addrcmp);
1634 p = realtime_peer(peer, sin);
1636 if (!p && h323debug)
1637 ast_debug(1, "Could not find peer by name %s or address %s\n", (peer ? peer : "<NONE>"), (sin ? ast_inet_ntoa(sin->sin_addr) : "<NONE>"));
1642 static int create_addr(struct oh323_pvt *pvt, char *opeer)
1645 struct ast_hostent ahp;
1646 struct oh323_peer *p;
1651 char peer[256] = "";
1653 ast_copy_string(peer, opeer, sizeof(peer));
1654 port = strchr(peer, ':');
1659 pvt->sa.sin_family = AF_INET;
1660 p = find_peer(peer, NULL, 1);
1663 memcpy(&pvt->options, &p->options, sizeof(pvt->options));
1664 pvt->jointcapability = pvt->options.capability;
1665 if (pvt->options.dtmfmode) {
1666 if (pvt->options.dtmfmode & H323_DTMF_RFC2833) {
1667 pvt->nonCodecCapability |= AST_RTP_DTMF;
1669 pvt->nonCodecCapability &= ~AST_RTP_DTMF;
1672 if (p->addr.sin_addr.s_addr) {
1673 pvt->sa.sin_addr = p->addr.sin_addr;
1674 pvt->sa.sin_port = p->addr.sin_port;
1676 ASTOBJ_UNREF(p, oh323_destroy_peer);
1681 portno = atoi(port);
1683 portno = h323_signalling_port;
1685 hp = ast_gethostbyname(hostn, &ahp);
1687 memcpy(&pvt->sa.sin_addr, hp->h_addr, sizeof(pvt->sa.sin_addr));
1688 pvt->sa.sin_port = htons(portno);
1689 /* Look peer by address */
1690 p = find_peer(NULL, &pvt->sa, 1);
1691 memcpy(&pvt->options, (p ? &p->options : &global_options), sizeof(pvt->options));
1692 pvt->jointcapability = pvt->options.capability;
1694 ASTOBJ_UNREF(p, oh323_destroy_peer);
1696 if (pvt->options.dtmfmode) {
1697 if (pvt->options.dtmfmode & H323_DTMF_RFC2833) {
1698 pvt->nonCodecCapability |= AST_RTP_DTMF;
1700 pvt->nonCodecCapability &= ~AST_RTP_DTMF;
1705 ast_log(LOG_WARNING, "No such host: %s\n", peer);
1708 } else if (!found) {
1714 static struct ast_channel *oh323_request(const char *type, int format, void *data, int *cause)
1717 struct oh323_pvt *pvt;
1718 struct ast_channel *tmpc = NULL;
1719 char *dest = (char *)data;
1721 char *h323id = NULL;
1722 char tmp[256], tmp1[256];
1725 ast_debug(1, "type=%s, format=%d, data=%s.\n", type, format, (char *)data);
1727 pvt = oh323_alloc(0);
1729 ast_log(LOG_WARNING, "Unable to build pvt data for '%s'\n", (char *)data);
1733 format &= AST_FORMAT_AUDIO_MASK;
1735 ast_log(LOG_NOTICE, "Asked to get a channel of unsupported format '%d'\n", format);
1738 *cause = AST_CAUSE_INCOMPATIBLE_DESTINATION;
1741 ast_copy_string(tmp, dest, sizeof(tmp));
1742 host = strchr(tmp, '@');
1748 ext = strrchr(tmp, '/');
1753 strtok_r(host, "/", &(h323id));
1754 if (!ast_strlen_zero(h323id)) {
1755 h323_set_id(h323id);
1758 ast_copy_string(pvt->exten, ext, sizeof(pvt->exten));
1761 ast_debug(1, "Extension: %s Host: %s\n", pvt->exten, host);
1763 if (gatekeeper_disable) {
1764 if (create_addr(pvt, host)) {
1767 *cause = AST_CAUSE_DESTINATION_OUT_OF_ORDER;
1772 memcpy(&pvt->options, &global_options, sizeof(pvt->options));
1773 pvt->jointcapability = pvt->options.capability;
1774 if (pvt->options.dtmfmode) {
1775 if (pvt->options.dtmfmode & H323_DTMF_RFC2833) {
1776 pvt->nonCodecCapability |= AST_RTP_DTMF;
1778 pvt->nonCodecCapability &= ~AST_RTP_DTMF;
1783 ast_mutex_lock(&caplock);
1784 /* Generate unique channel identifier */
1785 snprintf(tmp1, sizeof(tmp1)-1, "%s-%u", host, ++unique);
1786 tmp1[sizeof(tmp1)-1] = '\0';
1787 ast_mutex_unlock(&caplock);
1789 ast_mutex_lock(&pvt->lock);
1790 tmpc = __oh323_new(pvt, AST_STATE_DOWN, tmp1);
1791 ast_mutex_unlock(&pvt->lock);
1795 *cause = AST_CAUSE_NORMAL_TEMPORARY_FAILURE;
1797 ast_update_use_count();
1802 /*! \brief Find a call by alias */
1803 static struct oh323_alias *find_alias(const char *source_aliases, int realtime)
1805 struct oh323_alias *a;
1807 a = ASTOBJ_CONTAINER_FIND(&aliasl, source_aliases);
1810 a = realtime_alias(source_aliases);
1816 * Callback for sending digits from H.323 up to asterisk
1819 static int receive_digit(unsigned call_reference, char digit, const char *token, int duration)
1821 struct oh323_pvt *pvt;
1824 pvt = find_call_locked(call_reference, token);
1826 ast_log(LOG_ERROR, "Received digit '%c' (%u ms) for call %s without private structure\n", digit, duration, token);
1830 ast_log(LOG_DTMF, "Received %s digit '%c' (%u ms) for call %s\n", (digit == ' ' ? "update for" : "new"), (digit == ' ' ? pvt->curDTMF : digit), duration, token);
1832 if (pvt->owner && !ast_channel_trylock(pvt->owner)) {
1834 res = ast_queue_control(pvt->owner, AST_CONTROL_FLASH);
1836 struct ast_frame f = {
1837 .frametype = AST_FRAME_DTMF_END,
1839 .samples = duration * 8,
1841 .src = "SEND_DIGIT",
1843 if (digit == ' ') { /* signalUpdate message */
1844 f.subclass = pvt->curDTMF;
1845 AST_SCHED_DEL(sched, pvt->DTMFsched);
1846 } else { /* Regular input or signal message */
1847 if (pvt->DTMFsched >= 0) {
1848 /* We still don't send DTMF END from previous event, send it now */
1849 AST_SCHED_DEL(sched, pvt->DTMFsched);
1850 f.subclass = pvt->curDTMF;
1851 f.samples = f.len = 0;
1852 ast_queue_frame(pvt->owner, &f);
1853 /* Restore values */
1855 f.samples = duration * 8;
1858 if (duration) { /* This is a signal, signalUpdate follows */
1859 f.frametype = AST_FRAME_DTMF_BEGIN;
1860 pvt->DTMFsched = ast_sched_add(sched, duration, oh323_simulate_dtmf_end, pvt);
1862 ast_log(LOG_DTMF, "Scheduled DTMF END simulation for %d ms, id=%d\n", duration, pvt->DTMFsched);
1864 pvt->curDTMF = digit;
1866 res = ast_queue_frame(pvt->owner, &f);
1868 ast_channel_unlock(pvt->owner);
1871 pvt->newcontrol = AST_CONTROL_FLASH;
1873 pvt->newduration = duration;
1874 pvt->newdigit = digit;
1878 ast_mutex_unlock(&pvt->lock);
1883 * Callback function used to inform the H.323 stack of the local rtp ip/port details
1885 * \return Returns the local RTP information
1887 static struct rtp_info *external_rtp_create(unsigned call_reference, const char * token)
1889 struct oh323_pvt *pvt;
1890 struct sockaddr_in us;
1891 struct rtp_info *info;
1893 info = ast_calloc(1, sizeof(*info));
1895 ast_log(LOG_ERROR, "Unable to allocated info structure, this is very bad\n");
1898 pvt = find_call_locked(call_reference, token);
1901 ast_log(LOG_ERROR, "Unable to find call %s(%d)\n", token, call_reference);
1905 __oh323_rtp_create(pvt);
1907 ast_mutex_unlock(&pvt->lock);
1909 ast_log(LOG_ERROR, "No RTP stream is available for call %s (%d)", token, call_reference);
1912 /* figure out our local RTP port and tell the H.323 stack about it */
1913 ast_rtp_get_us(pvt->rtp, &us);
1914 ast_mutex_unlock(&pvt->lock);
1916 ast_copy_string(info->addr, ast_inet_ntoa(us.sin_addr), sizeof(info->addr));
1917 info->port = ntohs(us.sin_port);
1919 ast_debug(1, "Sending RTP 'US' %s:%d\n", info->addr, info->port);
1924 * Definition taken from rtp.c for rtpPayloadType because we need it here.
1927 struct rtpPayloadType {
1928 int isAstFormat; /* whether the following code is an AST_FORMAT */
1933 * Call-back function passing remote ip/port information from H.323 to asterisk
1937 static void setup_rtp_connection(unsigned call_reference, const char *remoteIp, int remotePort, const char *token, int pt)
1939 struct oh323_pvt *pvt;
1940 struct sockaddr_in them;
1941 struct rtpPayloadType rtptype;
1942 int nativeformats_changed;
1943 enum { NEED_NONE, NEED_HOLD, NEED_UNHOLD } rtp_change = NEED_NONE;
1946 ast_debug(1, "Setting up RTP connection for %s\n", token);
1948 /* Find the call or allocate a private structure if call not found */
1949 pvt = find_call_locked(call_reference, token);
1951 ast_log(LOG_ERROR, "Something is wrong: rtp\n");
1954 if (pvt->alreadygone) {
1955 ast_mutex_unlock(&pvt->lock);
1960 __oh323_rtp_create(pvt);
1962 if ((pt == 2) && (pvt->jointcapability & AST_FORMAT_G726_AAL2)) {
1963 ast_rtp_set_rtpmap_type(pvt->rtp, pt, "audio", "G726-32", AST_RTP_OPT_G726_NONSTANDARD);
1966 them.sin_family = AF_INET;
1967 /* only works for IPv4 */
1968 them.sin_addr.s_addr = inet_addr(remoteIp);
1969 them.sin_port = htons(remotePort);
1971 if (them.sin_addr.s_addr) {
1972 ast_rtp_set_peer(pvt->rtp, &them);
1973 if (pvt->recvonly) {
1975 rtp_change = NEED_UNHOLD;
1978 ast_rtp_stop(pvt->rtp);
1979 if (!pvt->recvonly) {
1981 rtp_change = NEED_HOLD;
1985 /* Change native format to reflect information taken from OLC/OLCAck */
1986 nativeformats_changed = 0;
1987 if (pt != 128 && pvt->rtp) { /* Payload type is invalid, so try to use previously decided */
1988 rtptype = ast_rtp_lookup_pt(pvt->rtp, pt);
1990 ast_debug(1, "Native format is set to %d from %d by RTP payload type %d\n", rtptype.code, pvt->nativeformats, pt);
1991 if (pvt->nativeformats != rtptype.code) {
1992 pvt->nativeformats = rtptype.code;
1993 nativeformats_changed = 1;
1995 } else if (h323debug)
1996 ast_log(LOG_NOTICE, "Payload type is unknown, formats isn't changed\n");
1998 /* Don't try to lock the channel if nothing changed */
1999 if (nativeformats_changed || pvt->options.progress_audio || (rtp_change != NEED_NONE)) {
2000 if (pvt->owner && !ast_channel_trylock(pvt->owner)) {
2001 /* Re-build translation path only if native format(s) has been changed */
2002 if (pvt->owner->nativeformats != pvt->nativeformats) {
2004 ast_debug(1, "Native format changed to %d from %d, read format is %d, write format is %d\n", pvt->nativeformats, pvt->owner->nativeformats, pvt->owner->readformat, pvt->owner->writeformat);
2005 pvt->owner->nativeformats = pvt->nativeformats;
2006 ast_set_read_format(pvt->owner, pvt->owner->readformat);
2007 ast_set_write_format(pvt->owner, pvt->owner->writeformat);
2009 if (pvt->options.progress_audio)
2010 ast_queue_control(pvt->owner, AST_CONTROL_PROGRESS);
2011 switch (rtp_change) {
2013 ast_queue_control(pvt->owner, AST_CONTROL_HOLD);
2016 ast_queue_control(pvt->owner, AST_CONTROL_UNHOLD);
2021 ast_channel_unlock(pvt->owner);
2024 if (pvt->options.progress_audio)
2025 pvt->newcontrol = AST_CONTROL_PROGRESS;
2026 else if (rtp_change == NEED_HOLD)
2027 pvt->newcontrol = AST_CONTROL_HOLD;
2028 else if (rtp_change == NEED_UNHOLD)
2029 pvt->newcontrol = AST_CONTROL_UNHOLD;
2031 ast_debug(1, "RTP connection preparation for %s is pending...\n", token);
2034 ast_mutex_unlock(&pvt->lock);
2037 ast_debug(1, "RTP connection prepared for %s\n", token);
2043 * Call-back function to signal asterisk that the channel has been answered
2046 static void connection_made(unsigned call_reference, const char *token)
2048 struct oh323_pvt *pvt;
2051 ast_debug(1, "Call %s answered\n", token);
2053 pvt = find_call_locked(call_reference, token);
2055 ast_log(LOG_ERROR, "Something is wrong: connection\n");
2059 /* Inform asterisk about remote party connected only on outgoing calls */
2060 if (!pvt->outgoing) {
2061 ast_mutex_unlock(&pvt->lock);
2064 /* Do not send ANSWER message more than once */
2065 if (!pvt->connection_established) {
2066 pvt->connection_established = 1;
2067 update_state(pvt, -1, AST_CONTROL_ANSWER);
2069 ast_mutex_unlock(&pvt->lock);
2073 static int progress(unsigned call_reference, const char *token, int inband)
2075 struct oh323_pvt *pvt;
2078 ast_debug(1, "Received ALERT/PROGRESS message for %s tones\n", (inband ? "inband" : "self-generated"));
2080 pvt = find_call_locked(call_reference, token);
2082 ast_log(LOG_ERROR, "Private structure not found in progress.\n");
2086 ast_mutex_unlock(&pvt->lock);
2087 ast_log(LOG_ERROR, "No Asterisk channel associated with private structure.\n");
2090 update_state(pvt, -1, (inband ? AST_CONTROL_PROGRESS : AST_CONTROL_RINGING));
2091 ast_mutex_unlock(&pvt->lock);
2097 * Call-back function for incoming calls
2099 * Returns 1 on success
2101 static call_options_t *setup_incoming_call(call_details_t *cd)
2103 struct oh323_pvt *pvt;
2104 struct oh323_user *user = NULL;
2105 struct oh323_alias *alias = NULL;
2108 ast_debug(1, "Setting up incoming call for %s\n", cd->call_token);
2110 /* allocate the call*/
2111 pvt = oh323_alloc(cd->call_reference);
2114 ast_log(LOG_ERROR, "Unable to allocate private structure, this is bad.\n");
2115 cleanup_call_details(cd);
2119 /* Populate the call details in the private structure */
2120 memcpy(&pvt->cd, cd, sizeof(pvt->cd));
2121 memcpy(&pvt->options, &global_options, sizeof(pvt->options));
2122 pvt->jointcapability = pvt->options.capability;
2125 ast_verb(3, "Setting up Call\n");
2126 ast_verb(3, " \tCall token: [%s]\n", pvt->cd.call_token);
2127 ast_verb(3, " \tCalling party name: [%s]\n", pvt->cd.call_source_name);
2128 ast_verb(3, " \tCalling party number: [%s]\n", pvt->cd.call_source_e164);
2129 ast_verb(3, " \tCalled party name: [%s]\n", pvt->cd.call_dest_alias);
2130 ast_verb(3, " \tCalled party number: [%s]\n", pvt->cd.call_dest_e164);
2131 if (pvt->cd.redirect_reason >= 0)
2132 ast_verb(3, " \tRedirecting party number: [%s] (reason %d)\n", pvt->cd.redirect_number, pvt->cd.redirect_reason);
2133 ast_verb(3, " \tCalling party IP: [%s]\n", pvt->cd.sourceIp);
2136 /* Decide if we are allowing Gatekeeper routed calls*/
2137 if ((!strcasecmp(cd->sourceIp, gatekeeper)) && (gkroute == -1) && !gatekeeper_disable) {
2138 if (!ast_strlen_zero(cd->call_dest_e164)) {
2139 ast_copy_string(pvt->exten, cd->call_dest_e164, sizeof(pvt->exten));
2140 ast_copy_string(pvt->context, default_context, sizeof(pvt->context));
2142 alias = find_alias(cd->call_dest_alias, 1);
2144 ast_log(LOG_ERROR, "Call for %s rejected, alias not found\n", cd->call_dest_alias);
2148 ast_copy_string(pvt->exten, alias->name, sizeof(pvt->exten));
2149 ast_copy_string(pvt->context, alias->context, sizeof(pvt->context));
2152 /* Either this call is not from the Gatekeeper
2153 or we are not allowing gk routed calls */
2154 user = find_user(cd, 1);
2156 if (!acceptAnonymous) {
2157 ast_log(LOG_NOTICE, "Anonymous call from '%s@%s' rejected\n", pvt->cd.call_source_aliases, pvt->cd.sourceIp);
2161 if (ast_strlen_zero(default_context)) {
2162 ast_log(LOG_ERROR, "Call from '%s@%s' rejected due to no default context\n", pvt->cd.call_source_aliases, pvt->cd.sourceIp);
2166 ast_copy_string(pvt->context, default_context, sizeof(pvt->context));
2167 if (!ast_strlen_zero(pvt->cd.call_dest_e164)) {
2168 ast_copy_string(pvt->exten, cd->call_dest_e164, sizeof(pvt->exten));
2170 ast_copy_string(pvt->exten, cd->call_dest_alias, sizeof(pvt->exten));
2173 ast_debug(1, "Sending %s@%s to context [%s] extension %s\n", cd->call_source_aliases, cd->sourceIp, pvt->context, pvt->exten);
2176 if (strcasecmp(cd->sourceIp, ast_inet_ntoa(user->addr.sin_addr))) {
2177 if (ast_strlen_zero(user->context)) {
2178 if (ast_strlen_zero(default_context)) {
2179 ast_log(LOG_ERROR, "Call from '%s' rejected due to non-matching IP address (%s) and no default context\n", user->name, cd->sourceIp);
2181 ASTOBJ_UNREF(user, oh323_destroy_user);
2184 ast_copy_string(pvt->context, default_context, sizeof(pvt->context));
2186 ast_copy_string(pvt->context, user->context, sizeof(pvt->context));
2188 pvt->exten[0] = 'i';
2189 pvt->exten[1] = '\0';
2190 ast_log(LOG_ERROR, "Call from '%s' rejected due to non-matching IP address (%s)s\n", user->name, cd->sourceIp);
2192 ASTOBJ_UNREF(user, oh323_destroy_user);
2193 return NULL; /* XXX: Hmmm... Why to setup context if we drop connection immediately??? */
2196 ast_copy_string(pvt->context, user->context, sizeof(pvt->context));
2197 memcpy(&pvt->options, &user->options, sizeof(pvt->options));
2198 pvt->jointcapability = pvt->options.capability;
2199 if (!ast_strlen_zero(pvt->cd.call_dest_e164)) {
2200 ast_copy_string(pvt->exten, cd->call_dest_e164, sizeof(pvt->exten));
2202 ast_copy_string(pvt->exten, cd->call_dest_alias, sizeof(pvt->exten));
2204 if (!ast_strlen_zero(user->accountcode)) {
2205 ast_copy_string(pvt->accountcode, user->accountcode, sizeof(pvt->accountcode));
2207 if (user->amaflags) {
2208 pvt->amaflags = user->amaflags;
2210 ASTOBJ_UNREF(user, oh323_destroy_user);
2213 return &pvt->options;
2217 * Call-back function to start PBX when OpenH323 ready to serve incoming call
2219 * Returns 1 on success
2221 static int answer_call(unsigned call_reference, const char *token)
2223 struct oh323_pvt *pvt;
2224 struct ast_channel *c = NULL;
2225 enum {ext_original, ext_s, ext_i, ext_notexists} try_exten;
2226 char tmp_exten[sizeof(pvt->exten)];
2229 ast_debug(1, "Preparing Asterisk to answer for %s\n", token);
2231 /* Find the call or allocate a private structure if call not found */
2232 pvt = find_call_locked(call_reference, token);
2234 ast_log(LOG_ERROR, "Something is wrong: answer_call\n");
2237 /* Check if requested extension@context pair exists in the dialplan */
2238 ast_copy_string(tmp_exten, pvt->exten, sizeof(tmp_exten));
2240 /* Try to find best extension in specified context */
2241 if ((tmp_exten[0] != '\0') && (tmp_exten[1] == '\0')) {
2242 if (tmp_exten[0] == 's')
2244 else if (tmp_exten[0] == 'i')
2247 try_exten = ext_original;
2249 try_exten = ext_original;
2251 if (ast_exists_extension(NULL, pvt->context, tmp_exten, 1, NULL))
2253 switch (try_exten) {
2256 tmp_exten[1] = '\0';
2264 try_exten = ext_notexists;
2269 } while (try_exten != ext_notexists);
2271 /* Drop the call if we don't have <exten>, s and i extensions */
2272 if (try_exten == ext_notexists) {
2273 ast_log(LOG_NOTICE, "Dropping call because extensions '%s', 's' and 'i' doesn't exists in context [%s]\n", pvt->exten, pvt->context);
2274 ast_mutex_unlock(&pvt->lock);
2275 h323_clear_call(token, AST_CAUSE_UNALLOCATED);
2277 } else if ((try_exten != ext_original) && (strcmp(pvt->exten, tmp_exten) != 0)) {
2279 ast_debug(1, "Going to extension %s@%s because %s@%s isn't exists\n", tmp_exten, pvt->context, pvt->exten, pvt->context);
2280 ast_copy_string(pvt->exten, tmp_exten, sizeof(pvt->exten));
2283 /* allocate a channel and tell asterisk about it */
2284 c = __oh323_new(pvt, AST_STATE_RINGING, pvt->cd.call_token);
2286 /* And release when done */
2287 ast_mutex_unlock(&pvt->lock);
2289 ast_log(LOG_ERROR, "Couldn't create channel. This is bad\n");
2296 * Call-back function to establish an outgoing H.323 call
2298 * Returns 1 on success
2300 static int setup_outgoing_call(call_details_t *cd)
2302 /* Use argument here or free it immediately */
2303 cleanup_call_details(cd);
2309 * Call-back function to signal asterisk that the channel is ringing
2312 static void chan_ringing(unsigned call_reference, const char *token)
2314 struct oh323_pvt *pvt;
2317 ast_debug(1, "Ringing on %s\n", token);
2319 pvt = find_call_locked(call_reference, token);
2321 ast_log(LOG_ERROR, "Something is wrong: ringing\n");
2325 ast_mutex_unlock(&pvt->lock);
2326 ast_log(LOG_ERROR, "Channel has no owner\n");
2329 update_state(pvt, AST_STATE_RINGING, AST_CONTROL_RINGING);
2330 ast_mutex_unlock(&pvt->lock);
2335 * Call-back function to cleanup communication
2338 static void cleanup_connection(unsigned call_reference, const char *call_token)
2340 struct oh323_pvt *pvt;
2343 ast_debug(1, "Cleaning connection to %s\n", call_token);
2346 pvt = find_call_locked(call_reference, call_token);
2349 ast_debug(1, "No connection for %s\n", call_token);
2352 if (!pvt->owner || !ast_channel_trylock(pvt->owner))
2355 ast_log(LOG_NOTICE, "Avoiding H.323 destory deadlock on %s\n", call_token);
2356 #ifdef DEBUG_THREADS
2357 /* XXX to be completed
2358 * If we want to print more info on who is holding the lock,
2359 * implement the relevant code in lock.h and use the routines
2364 ast_mutex_unlock(&pvt->lock);
2368 /* Immediately stop RTP */
2369 ast_rtp_destroy(pvt->rtp);
2372 /* Free dsp used for in-band DTMF detection */
2374 ast_dsp_free(pvt->vad);
2377 cleanup_call_details(&pvt->cd);
2378 pvt->alreadygone = 1;
2381 pvt->owner->_softhangup |= AST_SOFTHANGUP_DEV;
2382 ast_queue_hangup(pvt->owner);
2383 ast_channel_unlock(pvt->owner);
2385 ast_mutex_unlock(&pvt->lock);
2387 ast_debug(1, "Connection to %s cleaned\n", call_token);
2391 static void hangup_connection(unsigned int call_reference, const char *token, int cause)
2393 struct oh323_pvt *pvt;
2396 ast_debug(1, "Hanging up connection to %s with cause %d\n", token, cause);
2398 pvt = find_call_locked(call_reference, token);
2401 ast_debug(1, "Connection to %s already cleared\n", token);
2404 if (pvt->owner && !ast_channel_trylock(pvt->owner)) {
2405 pvt->owner->_softhangup |= AST_SOFTHANGUP_DEV;
2406 pvt->owner->hangupcause = pvt->hangupcause = cause;
2407 ast_queue_hangup(pvt->owner);
2408 ast_channel_unlock(pvt->owner);
2411 pvt->needhangup = 1;
2412 pvt->hangupcause = cause;
2414 ast_debug(1, "Hangup for %s is pending\n", token);
2416 ast_mutex_unlock(&pvt->lock);
2419 static void set_dtmf_payload(unsigned call_reference, const char *token, int payload, int is_cisco)
2421 struct oh323_pvt *pvt;
2424 ast_debug(1, "Setting %s DTMF payload to %d on %s\n", (is_cisco ? "Cisco" : "RFC2833"), payload, token);
2426 pvt = find_call_locked(call_reference, token);
2431 ast_rtp_set_rtpmap_type(pvt->rtp, payload, "audio", (is_cisco ? "cisco-telephone-event" : "telephone-event"), 0);
2433 pvt->dtmf_pt[is_cisco ? 1 : 0] = payload;
2434 ast_mutex_unlock(&pvt->lock);
2436 ast_debug(1, "DTMF payload on %s set to %d\n", token, payload);
2439 static void set_peer_capabilities(unsigned call_reference, const char *token, int capabilities, struct ast_codec_pref *prefs)
2441 struct oh323_pvt *pvt;
2444 ast_debug(1, "Got remote capabilities from connection %s\n", token);
2446 pvt = find_call_locked(call_reference, token);
2449 pvt->peercapability = capabilities;
2450 pvt->jointcapability = pvt->options.capability & capabilities;
2452 memcpy(&pvt->peer_prefs, prefs, sizeof(pvt->peer_prefs));
2455 for (i = 0; i < 32; ++i) {
2456 if (!prefs->order[i])
2458 ast_debug(1, "prefs[%d]=%s:%d\n", i, (prefs->order[i] ? ast_getformatname(1 << (prefs->order[i]-1)) : "<none>"), prefs->framing[i]);
2462 ast_rtp_codec_setpref(pvt->rtp, &pvt->peer_prefs);
2464 ast_mutex_unlock(&pvt->lock);
2467 static void set_local_capabilities(unsigned call_reference, const char *token)
2469 struct oh323_pvt *pvt;
2470 int capability, dtmfmode, pref_codec;
2471 struct ast_codec_pref prefs;
2474 ast_debug(1, "Setting capabilities for connection %s\n", token);
2476 pvt = find_call_locked(call_reference, token);
2479 capability = (pvt->jointcapability) ? pvt->jointcapability : pvt->options.capability;
2480 dtmfmode = pvt->options.dtmfmode;
2481 prefs = pvt->options.prefs;
2482 pref_codec = pvt->pref_codec;
2483 ast_mutex_unlock(&pvt->lock);
2484 h323_set_capabilities(token, capability, dtmfmode, &prefs, pref_codec);
2487 ast_debug(1, "Capabilities for connection %s is set\n", token);
2490 static void remote_hold(unsigned call_reference, const char *token, int is_hold)
2492 struct oh323_pvt *pvt;
2495 ast_debug(1, "Setting %shold status for connection %s\n", (is_hold ? "" : "un"), token);
2497 pvt = find_call_locked(call_reference, token);
2500 if (pvt->owner && !ast_channel_trylock(pvt->owner)) {
2502 ast_queue_control(pvt->owner, AST_CONTROL_HOLD);
2504 ast_queue_control(pvt->owner, AST_CONTROL_UNHOLD);
2505 ast_channel_unlock(pvt->owner);
2509 pvt->newcontrol = AST_CONTROL_HOLD;
2511 pvt->newcontrol = AST_CONTROL_UNHOLD;
2513 ast_mutex_unlock(&pvt->lock);
2516 static void *do_monitor(void *data)
2520 struct oh323_pvt *oh323 = NULL;
2523 /* Check for a reload request */
2524 ast_mutex_lock(&h323_reload_lock);
2525 reloading = h323_reloading;
2527 ast_mutex_unlock(&h323_reload_lock);
2529 ast_verb(1, "Reloading H.323\n");
2532 /* Check for interfaces needing to be killed */
2533 if (!ast_mutex_trylock(&iflock)) {
2536 for (oh323 = iflist; oh323; oh323 = oh323->next) {
2537 if (!ast_mutex_trylock(&oh323->lock)) {
2538 if (oh323->needdestroy) {
2539 __oh323_destroy(oh323);
2542 ast_mutex_unlock(&oh323->lock);
2545 } while (/*oh323*/ 0);
2550 if (!ast_mutex_trylock(&oh323->lock)) {
2551 if (oh323->needdestroy) {
2552 __oh323_destroy(oh323);
2555 ast_mutex_unlock(&oh323->lock);
2556 oh323 = oh323->next;
2560 ast_mutex_unlock(&iflock);
2562 oh323 = (struct oh323_pvt *)1; /* Force fast loop */
2563 pthread_testcancel();
2564 /* Wait for sched or io */
2565 res = ast_sched_wait(sched);
2566 if ((res < 0) || (res > 1000)) {
2569 /* Do not wait if some channel(s) is destroyed, probably, more available too */
2572 res = ast_io_wait(io, res);
2573 pthread_testcancel();
2574 ast_mutex_lock(&monlock);
2576 ast_sched_runq(sched);
2578 ast_mutex_unlock(&monlock);
2584 static int restart_monitor(void)
2586 /* If we're supposed to be stopped -- stay stopped */
2587 if (ast_mutex_lock(&monlock)) {
2588 ast_log(LOG_WARNING, "Unable to lock monitor\n");
2591 if (monitor_thread == AST_PTHREADT_STOP) {
2592 ast_mutex_unlock(&monlock);
2595 if (monitor_thread == pthread_self()) {
2596 ast_mutex_unlock(&monlock);
2597 ast_log(LOG_WARNING, "Cannot kill myself\n");
2600 if (monitor_thread && (monitor_thread != AST_PTHREADT_NULL)) {
2601 /* Wake up the thread */
2602 pthread_kill(monitor_thread, SIGURG);
2604 /* Start a new monitor */
2605 if (ast_pthread_create_detached_background(&monitor_thread, NULL, do_monitor, NULL) < 0) {
2606 monitor_thread = AST_PTHREADT_NULL;
2607 ast_mutex_unlock(&monlock);
2608 ast_log(LOG_ERROR, "Unable to start monitor thread.\n");
2612 ast_mutex_unlock(&monlock);
2616 static char *handle_cli_h323_set_trace(struct ast_cli_entry *e, int cmd, struct ast_cli_args *a)
2620 e->command = "h323 set trace [off]";
2622 "Usage: h323 set trace (off|<trace level>)\n"
2623 " Enable/Disable H.323 stack tracing for debugging purposes\n";
2630 return CLI_SHOWUSAGE;
2631 if (!strcasecmp(a->argv[3], "off")) {
2633 ast_cli(a->fd, "H.323 Trace Disabled\n");
2635 int tracelevel = atoi(a->argv[3]);
2636 h323_debug(1, tracelevel);
2637 ast_cli(a->fd, "H.323 Trace Enabled (Trace Level: %d)\n", tracelevel);
2642 static char *handle_cli_h323_set_debug(struct ast_cli_entry *e, int cmd, struct ast_cli_args *a)
2646 e->command = "h323 set debug [off]";
2648 "Usage: h323 set debug [off]\n"
2649 " Enable/Disable H.323 debugging output\n";
2655 if (a->argc < 3 || a->argc > 4)
2656 return CLI_SHOWUSAGE;
2657 if (a->argc == 4 && strcasecmp(a->argv[3], "off"))
2658 return CLI_SHOWUSAGE;
2660 h323debug = (a->argc == 3) ? 1 : 0;
2661 ast_cli(a->fd, "H.323 Debugging %s\n", h323debug ? "Enabled" : "Disabled");
2665 static char *handle_cli_h323_cycle_gk(struct ast_cli_entry *e, int cmd, struct ast_cli_args *a)
2669 e->command = "h323 cycle gk";
2671 "Usage: h323 cycle gk\n"
2672 " Manually re-register with the Gatekeper (Currently Disabled)\n";
2679 return CLI_SHOWUSAGE;
2683 /* Possibly register with a GK */
2684 if (!gatekeeper_disable) {
2685 if (h323_set_gk(gatekeeper_discover, gatekeeper, secret)) {
2686 ast_log(LOG_ERROR, "Gatekeeper registration failed.\n");
2692 static char *handle_cli_h323_hangup(struct ast_cli_entry *e, int cmd, struct ast_cli_args *a)
2696 e->command = "h323 hangup";
2698 "Usage: h323 hangup <token>\n"
2699 " Manually try to hang up the call identified by <token>\n";
2706 return CLI_SHOWUSAGE;
2707 if (h323_soft_hangup(a->argv[2])) {
2708 ast_verb(3, "Hangup succeeded on %s\n", a->argv[2]);
2710 ast_verb(3, "Hangup failed for %s\n", a->argv[2]);
2715 static char *handle_cli_h323_show_tokens(struct ast_cli_entry *e, int cmd, struct ast_cli_args *a)
2719 e->command = "h323 show tokens";
2721 "Usage: h323 show tokens\n"
2722 " Print out all active call tokens\n";
2729 return CLI_SHOWUSAGE;
2736 static struct ast_cli_entry cli_h323[] = {
2737 AST_CLI_DEFINE(handle_cli_h323_set_trace, "Enable/Disable H.323 Stack Tracing"),
2738 AST_CLI_DEFINE(handle_cli_h323_set_debug, "Enable/Disable H.323 Debugging"),
2739 AST_CLI_DEFINE(handle_cli_h323_cycle_gk, "Manually re-register with the Gatekeper"),
2740 AST_CLI_DEFINE(handle_cli_h323_hangup, "Manually try to hang up a call"),
2741 AST_CLI_DEFINE(handle_cli_h323_show_tokens, "Show all active call tokens"),
2744 static void delete_users(void)
2748 /* Delete all users */
2749 ASTOBJ_CONTAINER_WRLOCK(&userl);
2750 ASTOBJ_CONTAINER_TRAVERSE(&userl, 1, do {
2751 ASTOBJ_RDLOCK(iterator);
2752 ASTOBJ_MARK(iterator);
2754 ASTOBJ_UNLOCK(iterator);
2757 ASTOBJ_CONTAINER_PRUNE_MARKED(&userl, oh323_destroy_user);
2759 ASTOBJ_CONTAINER_UNLOCK(&userl);
2761 ASTOBJ_CONTAINER_WRLOCK(&peerl);
2762 ASTOBJ_CONTAINER_TRAVERSE(&peerl, 1, do {
2763 ASTOBJ_RDLOCK(iterator);
2764 ASTOBJ_MARK(iterator);
2765 ASTOBJ_UNLOCK(iterator);
2767 ASTOBJ_CONTAINER_UNLOCK(&peerl);
2770 static void delete_aliases(void)
2774 /* Delete all aliases */
2775 ASTOBJ_CONTAINER_WRLOCK(&aliasl);
2776 ASTOBJ_CONTAINER_TRAVERSE(&aliasl, 1, do {
2777 ASTOBJ_RDLOCK(iterator);
2778 ASTOBJ_MARK(iterator);
2780 ASTOBJ_UNLOCK(iterator);
2783 ASTOBJ_CONTAINER_PRUNE_MARKED(&aliasl, oh323_destroy_alias);
2785 ASTOBJ_CONTAINER_UNLOCK(&aliasl);
2788 static void prune_peers(void)
2790 /* Prune peers who still are supposed to be deleted */
2791 ASTOBJ_CONTAINER_PRUNE_MARKED(&peerl, oh323_destroy_peer);
2794 static int reload_config(int is_reload)
2796 struct ast_config *cfg, *ucfg;
2797 struct ast_variable *v;
2798 struct oh323_peer *peer = NULL;
2799 struct oh323_user *user = NULL;
2800 struct oh323_alias *alias = NULL;
2801 struct ast_hostent ahp; struct hostent *hp;
2804 int is_user, is_peer, is_alias;
2805 char _gatekeeper[100];
2806 int gk_discover, gk_disable, gk_changed;
2807 struct ast_flags config_flags = { is_reload ? CONFIG_FLAG_FILEUNCHANGED : 0 };
2809 cfg = ast_config_load(config, config_flags);
2811 /* We *must* have a config file otherwise stop immediately */
2813 ast_log(LOG_NOTICE, "Unable to load config %s, H.323 disabled\n", config);
2815 } else if (cfg == CONFIG_STATUS_FILEUNCHANGED) {
2816 ucfg = ast_config_load("users.conf", config_flags);
2817 if (ucfg == CONFIG_STATUS_FILEUNCHANGED)
2819 ast_clear_flag(&config_flags, CONFIG_FLAG_FILEUNCHANGED);
2820 cfg = ast_config_load(config, config_flags);
2822 ast_clear_flag(&config_flags, CONFIG_FLAG_FILEUNCHANGED);
2823 ucfg = ast_config_load("users.conf", config_flags);
2832 /* fire up the H.323 Endpoint */
2833 if (!h323_end_point_exist()) {
2834 h323_end_point_create();
2836 ast_copy_string(_gatekeeper, gatekeeper, sizeof(_gatekeeper));
2837 gk_discover = gatekeeper_discover;
2838 gk_disable = gatekeeper_disable;
2839 memset(&bindaddr, 0, sizeof(bindaddr));
2840 memset(&global_options, 0, sizeof(global_options));
2841 global_options.fastStart = 1;
2842 global_options.h245Tunneling = 1;
2843 global_options.dtmfcodec[0] = H323_DTMF_RFC2833_PT;
2844 global_options.dtmfcodec[1] = H323_DTMF_CISCO_PT;
2845 global_options.dtmfmode = 0;
2846 global_options.holdHandling = 0;
2847 global_options.capability = GLOBAL_CAPABILITY;
2848 global_options.bridge = 1; /* Do native bridging by default */
2849 strcpy(default_context, "default");
2850 h323_signalling_port = 1720;
2851 gatekeeper_disable = 1;
2852 gatekeeper_discover = 0;
2855 acceptAnonymous = 1;
2859 /* Copy the default jb config over global_jbconf */
2860 memcpy(&global_jbconf, &default_jbconf, sizeof(struct ast_jb_conf));
2863 struct ast_variable *gen;
2865 const char *has_h323;
2867 genhas_h323 = ast_true(ast_variable_retrieve(ucfg, "general", "hash323"));
2868 gen = ast_variable_browse(ucfg, "general");
2869 for (cat = ast_category_browse(ucfg, NULL); cat; cat = ast_category_browse(ucfg, cat)) {
2870 if (strcasecmp(cat, "general")) {
2871 has_h323 = ast_variable_retrieve(ucfg, cat, "hash323");
2872 if (ast_true(has_h323) || (!has_h323 && genhas_h323)) {
2873 user = build_user(cat, gen, ast_variable_browse(ucfg, cat), 0);
2875 ASTOBJ_CONTAINER_LINK(&userl, user);
2876 ASTOBJ_UNREF(user, oh323_destroy_user);
2878 peer = build_peer(cat, gen, ast_variable_browse(ucfg, cat), 0);
2880 ASTOBJ_CONTAINER_LINK(&peerl, peer);
2881 ASTOBJ_UNREF(peer, oh323_destroy_peer);
2886 ast_config_destroy(ucfg);
2889 for (v = ast_variable_browse(cfg, "general"); v; v = v->next) {
2890 /* handle jb conf */
2891 if (!ast_jb_read_conf(&global_jbconf, v->name, v->value))
2893 /* Create the interface list */
2894 if (!strcasecmp(v->name, "port")) {
2895 h323_signalling_port = (int)strtol(v->value, NULL, 10);
2896 } else if (!strcasecmp(v->name, "bindaddr")) {
2897 if (!(hp = ast_gethostbyname(v->value, &ahp))) {
2898 ast_log(LOG_WARNING, "Invalid address: %s\n", v->value);
2900 memcpy(&bindaddr.sin_addr, hp->h_addr, sizeof(bindaddr.sin_addr));
2902 } else if (!strcasecmp(v->name, "tos")) { /* Needs to be removed in next release */
2903 ast_log(LOG_WARNING, "The \"tos\" setting is deprecated in this version of Asterisk. Please change to \"tos_audio\".\n");
2904 if (ast_str2tos(v->value, &tos)) {
2905 ast_log(LOG_WARNING, "Invalid tos_audio value at line %d, refer to QoS documentation\n", v->lineno);
2907 } else if (!strcasecmp(v->name, "tos_audio")) {
2908 if (ast_str2tos(v->value, &tos)) {
2909 ast_log(LOG_WARNING, "Invalid tos_audio value at line %d, refer to QoS documentation\n", v->lineno);
2911 } else if (!strcasecmp(v->name, "cos")) {
2912 ast_log(LOG_WARNING, "The \"cos\" setting is deprecated in this version of Asterisk. Please change to \"cos_audio\".\n");
2913 if (ast_str2cos(v->value, &cos)) {
2914 ast_log(LOG_WARNING, "Invalid cos_audio value at line %d, refer to QoS documentation\n", v->lineno);
2916 } else if (!strcasecmp(v->name, "cos_audio")) {
2917 if (ast_str2cos(v->value, &cos)) {
2918 ast_log(LOG_WARNING, "Invalid cos_audio value at line %d, refer to QoS documentation\n", v->lineno);
2920 } else if (!strcasecmp(v->name, "gatekeeper")) {
2921 if (!strcasecmp(v->value, "DISABLE")) {
2922 gatekeeper_disable = 1;
2923 } else if (!strcasecmp(v->value, "DISCOVER")) {
2924 gatekeeper_disable = 0;
2925 gatekeeper_discover = 1;
2927 gatekeeper_disable = 0;
2928 ast_copy_string(gatekeeper, v->value, sizeof(gatekeeper));
2930 } else if (!strcasecmp(v->name, "secret")) {
2931 ast_copy_string(secret, v->value, sizeof(secret));
2932 } else if (!strcasecmp(v->name, "AllowGKRouted")) {
2933 gkroute = ast_true(v->value);
2934 } else if (!strcasecmp(v->name, "context")) {
2935 ast_copy_string(default_context, v->value, sizeof(default_context));
2936 ast_verb(2, "Setting default context to %s\n", default_context);
2937 } else if (!strcasecmp(v->name, "UserByAlias")) {
2938 userbyalias = ast_true(v->value);
2939 } else if (!strcasecmp(v->name, "AcceptAnonymous")) {
2940 acceptAnonymous = ast_true(v->value);
2941 } else if (!update_common_options(v, &global_options)) {
2945 if (!global_options.dtmfmode)
2946 global_options.dtmfmode = H323_DTMF_RFC2833;
2947 if (global_options.holdHandling == ~0)
2948 global_options.holdHandling = 0;
2949 else if (!global_options.holdHandling)
2950 global_options.holdHandling = H323_HOLD_H450;
2952 for (cat = ast_category_browse(cfg, NULL); cat; cat = ast_category_browse(cfg, cat)) {
2953 if (strcasecmp(cat, "general")) {
2954 utype = ast_variable_retrieve(cfg, cat, "type");
2956 is_user = is_peer = is_alias = 0;
2957 if (!strcasecmp(utype, "user"))
2959 else if (!strcasecmp(utype, "peer"))
2961 else if (!strcasecmp(utype, "friend"))
2962 is_user = is_peer = 1;
2963 else if (!strcasecmp(utype, "h323") || !strcasecmp(utype, "alias"))
2966 ast_log(LOG_WARNING, "Unknown type '%s' for '%s' in %s\n", utype, cat, config);
2970 user = build_user(cat, ast_variable_browse(cfg, cat), NULL, 0);
2972 ASTOBJ_CONTAINER_LINK(&userl, user);
2973 ASTOBJ_UNREF(user, oh323_destroy_user);
2977 peer = build_peer(cat, ast_variable_browse(cfg, cat), NULL, 0);
2979 ASTOBJ_CONTAINER_LINK(&peerl, peer);
2980 ASTOBJ_UNREF(peer, oh323_destroy_peer);
2984 alias = build_alias(cat, ast_variable_browse(cfg, cat), NULL, 0);
2986 ASTOBJ_CONTAINER_LINK(&aliasl, alias);
2987 ASTOBJ_UNREF(alias, oh323_destroy_alias);
2991 ast_log(LOG_WARNING, "Section '%s' lacks type\n", cat);
2995 ast_config_destroy(cfg);
2997 /* Register our H.323 aliases if any*/
2998 ASTOBJ_CONTAINER_WRLOCK(&aliasl);
2999 ASTOBJ_CONTAINER_TRAVERSE(&aliasl, 1, do {
3000 ASTOBJ_RDLOCK(iterator);
3001 if (h323_set_alias(iterator)) {
3002 ast_log(LOG_ERROR, "Alias %s rejected by endpoint\n", alias->name);
3003 ASTOBJ_UNLOCK(iterator);
3006 ASTOBJ_UNLOCK(iterator);
3008 ASTOBJ_CONTAINER_UNLOCK(&aliasl);
3010 /* Don't touch GK if nothing changed because URQ will drop all existing calls */
3012 if (gatekeeper_disable != gk_disable)
3013 gk_changed = is_reload;
3014 else if(!gatekeeper_disable && (gatekeeper_discover != gk_discover))
3015 gk_changed = is_reload;
3016 else if(!gatekeeper_disable && (strncmp(_gatekeeper, gatekeeper, sizeof(_gatekeeper)) != 0))
3017 gk_changed = is_reload;
3021 if (!gatekeeper_disable) {
3022 if (h323_set_gk(gatekeeper_discover, gatekeeper, secret)) {
3023 ast_log(LOG_ERROR, "Gatekeeper registration failed.\n");
3024 gatekeeper_disable = 1;
3031 static int h323_reload(void)
3033 ast_mutex_lock(&h323_reload_lock);
3034 if (h323_reloading) {
3035 ast_verbose("Previous H.323 reload not yet done\n");
3039 ast_mutex_unlock(&h323_reload_lock);
3044 static char *handle_cli_h323_reload(struct ast_cli_entry *e, int cmd, struct ast_cli_args *a)
3048 e->command = "h323 reload";
3050 "Usage: h323 reload\n"
3051 " Reloads H.323 configuration from h323.conf\n";