4 * OpenH323 Channel Driver for ASTERISK PBX.
6 * For The NuFone Network
8 * This code has been derived from code created by
9 * Michael Manousos and Mark Spencer
11 * This file is part of the chan_h323 driver for Asterisk
13 * chan_h323 is free software; you can redistribute it and/or modify
14 * it under the terms of the GNU General Public License as published by
15 * the Free Software Foundation; either version 2 of the License, or
16 * (at your option) any later version.
18 * chan_h323 is distributed WITHOUT ANY WARRANTY; without even
19 * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
20 * PURPOSE. See the GNU General Public License for more details.
22 * You should have received a copy of the GNU General Public License
23 * along with this program; if not, write to the Free Software
24 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
33 #include <asterisk/lock.h>
34 #include <asterisk/logger.h>
35 #include <asterisk/channel.h>
36 #include <asterisk/channel_pvt.h>
37 #include <asterisk/config.h>
38 #include <asterisk/module.h>
39 #include <asterisk/pbx.h>
40 #include <asterisk/options.h>
41 #include <asterisk/utils.h>
42 #include <asterisk/lock.h>
43 #include <asterisk/sched.h>
44 #include <asterisk/io.h>
45 #include <asterisk/rtp.h>
46 #include <asterisk/acl.h>
47 #include <asterisk/callerid.h>
48 #include <asterisk/cli.h>
49 #include <asterisk/dsp.h>
50 #include <sys/socket.h>
57 #include <sys/signal.h>
59 #include <netinet/in_systm.h>
61 #define IPTOS_MINCOST 0x02
64 #include <netinet/ip.h>
66 #include "h323/chan_h323.h"
68 /** String variables required by ASTERISK */
69 static char *type = "H323";
70 static char *desc = "The NuFone Network's Open H.323 Channel Driver";
71 static char *tdesc = "The NuFone Network's Open H.323 Channel Driver";
72 static char *config = "h323.conf";
74 static char default_context[AST_MAX_EXTENSION];
76 /** H.323 configuration values */
77 static char gatekeeper[100];
78 static int gatekeeper_disable = 1;
79 static int gatekeeper_discover = 0;
81 static int port = 1720;
82 static int gkroute = 0;
84 /* to find user by alias is default, alternative is the incomming call's source IP address*/
85 static int userbyalias = 1;
87 static int bridge_default = 1;
89 /* Just about everybody seems to support ulaw, so make it a nice default */
90 static int capability = AST_FORMAT_ULAW;
95 static int dtmfmode = H323_DTMF_RFC2833;
97 static char secret[50];
99 /** Private structure of a OpenH323 channel */
101 ast_mutex_t lock; /* Channel private lock */
102 call_options_t calloptions; /* Options to be used during call setup */
103 int alreadygone; /* Whether or not we've already been destroyed by or peer */
104 int needdestroy; /* if we need to be destroyed */
105 call_details_t cd; /* Call details */
106 struct ast_channel *owner; /* Who owns us */
107 int capability; /* audio capability */
108 int nonCodecCapability; /* non-audio capability */
109 int outgoing; /* Outgoing or incoming call? */
110 int nat; /* Are we talking to a NAT EP?*/
111 int bridge; /* Determine of we should native bridge or not*/
112 char exten[AST_MAX_EXTENSION]; /* Requested extension */
113 char context[AST_MAX_EXTENSION]; /* Context where to start */
114 char username[81]; /* H.323 alias using this channel */
115 char accountcode[256]; /* Account code */
116 int amaflags; /* AMA Flags */
117 char callerid[80]; /* Caller*ID if available */
118 struct ast_rtp *rtp; /* RTP Session */
119 int dtmfmode; /* What DTMF Mode is being used */
120 struct ast_dsp *vad; /* Used for in-band DTMF detection */
121 struct oh323_pvt *next; /* Next channel in list */
124 static struct ast_user_list {
125 struct oh323_user *users;
127 } userl = { NULL, AST_MUTEX_INITIALIZER };
129 static struct ast_peer_list {
130 struct oh323_peer *peers;
132 } peerl = { NULL, AST_MUTEX_INITIALIZER };
134 static struct ast_alias_list {
135 struct oh323_alias *aliases;
137 } aliasl = { NULL, AST_MUTEX_INITIALIZER };
139 /** Asterisk RTP stuff*/
140 static struct sched_context *sched;
141 static struct io_context *io;
143 /** Protect the interface list (of oh323_pvt's) */
144 static ast_mutex_t iflock = AST_MUTEX_INITIALIZER;
146 /** Usage counter and associated lock */
147 static int usecnt =0;
148 static ast_mutex_t usecnt_lock = AST_MUTEX_INITIALIZER;
150 /* Protect the monitoring thread, so only one process can kill or start it, and not
151 when it's doing something critical. */
152 static ast_mutex_t monlock = AST_MUTEX_INITIALIZER;
154 /* This is the thread for the monitor which checks for input on the channels
155 which are not currently in use. */
156 static pthread_t monitor_thread = AST_PTHREADT_NULL;
158 static int restart_monitor(void);
160 static void __oh323_destroy(struct oh323_pvt *p)
162 struct oh323_pvt *cur, *prev = NULL;
165 ast_rtp_destroy(p->rtp);
168 /* Unlink us from the owner if we have one */
170 ast_mutex_lock(&p->owner->lock);
171 ast_log(LOG_DEBUG, "Detaching from %s\n", p->owner->name);
172 p->owner->pvt->pvt = NULL;
173 ast_mutex_unlock(&p->owner->lock);
179 prev->next = cur->next;
188 ast_log(LOG_WARNING, "%p is not in list?!?! \n", cur);
193 static void oh323_destroy(struct oh323_pvt *p)
195 ast_mutex_lock(&iflock);
197 ast_mutex_unlock(&iflock);
200 static struct oh323_alias *build_alias(char *name, struct ast_variable *v)
202 struct oh323_alias *alias;
204 alias = (struct oh323_alias *)malloc(sizeof(struct oh323_alias));
207 memset(alias, 0, sizeof(struct oh323_alias));
208 strncpy(alias->name, name, sizeof(alias->name)-1);
211 if (!strcasecmp(v->name, "e164")) {
212 strncpy(alias->e164, v->value, sizeof(alias->e164)-1);
213 } else if (!strcasecmp(v->name, "prefix")) {
214 strncpy(alias->prefix, v->value, sizeof(alias->prefix)-1);
215 } else if (!strcasecmp(v->name, "context")) {
216 strncpy(alias->context, v->value, sizeof(alias->context)-1);
217 } else if (!strcasecmp(v->name, "secret")) {
218 strncpy(alias->secret, v->value, sizeof(alias->secret)-1);
220 if (strcasecmp(v->value, "h323")) {
221 ast_log(LOG_WARNING, "Keyword %s does not make sense in type=h323\n", v->value);
230 static struct oh323_user *build_user(char *name, struct ast_variable *v)
232 struct oh323_user *user;
235 user = (struct oh323_user *)malloc(sizeof(struct oh323_user));
237 memset(user, 0, sizeof(struct oh323_user));
238 strncpy(user->name, name, sizeof(user->name)-1);
240 /* set the usage flag to a sane starting value*/
242 /* Assume we can native bridge */
243 user->bridge = bridge_default;
246 if (!strcasecmp(v->name, "context")) {
247 strncpy(user->context, v->value, sizeof(user->context)-1);
248 } else if (!strcasecmp(v->name, "bridge")) {
249 user->bridge = ast_true(v->value);
250 } else if (!strcasecmp(v->name, "nat")) {
251 user->nat = ast_true(v->value);
252 } else if (!strcasecmp(v->name, "noFastStart")) {
253 user->noFastStart = ast_true(v->value);
254 } else if (!strcasecmp(v->name, "noH245Tunneling")) {
255 user->noH245Tunneling = ast_true(v->value);
256 } else if (!strcasecmp(v->name, "noSilenceSuppression")) {
257 user->noSilenceSuppression = ast_true(v->value);
258 } else if (!strcasecmp(v->name, "secret")) {
259 strncpy(user->secret, v->value, sizeof(user->secret)-1);
260 } else if (!strcasecmp(v->name, "callerid")) {
261 strncpy(user->callerid, v->value, sizeof(user->callerid)-1);
262 } else if (!strcasecmp(v->name, "accountcode")) {
263 strncpy(user->accountcode, v->value, sizeof(user->accountcode)-1);
264 } else if (!strcasecmp(v->name, "incominglimit")) {
265 user->incominglimit = atoi(v->value);
266 if (user->incominglimit < 0)
267 user->incominglimit = 0;
268 } else if (!strcasecmp(v->name, "host")) {
269 if (!strcasecmp(v->value, "dynamic")) {
270 ast_log(LOG_ERROR, "Dynamic host configuration not implemented, yet!\n");
273 } else if (ast_get_ip(&user->addr, v->value)) {
277 /* Let us know we need to use ip authentication */
279 } else if (!strcasecmp(v->name, "amaflags")) {
280 format = ast_cdr_amaflags2int(v->value);
282 ast_log(LOG_WARNING, "Invalid AMA Flags: %s at line %d\n", v->value, v->lineno);
284 user->amaflags = format;
294 static struct oh323_peer *build_peer(char *name, struct ast_variable *v)
296 struct oh323_peer *peer;
297 struct oh323_peer *prev;
301 ast_mutex_lock(&peerl.lock);
305 if (!strcasecmp(peer->name, name)) {
314 /* Already in the list, remove it and it will be added back (or FREE'd) */
316 prev->next = peer->next;
318 peerl.peers = peer->next;
320 ast_mutex_unlock(&peerl.lock);
322 ast_mutex_unlock(&peerl.lock);
323 peer = malloc(sizeof(struct oh323_peer));
324 memset(peer, 0, sizeof(struct oh323_peer));
328 strncpy(peer->name, name, sizeof(peer->name)-1);
331 /* set the usage flag to a sane starting value*/
335 if (!strcasecmp(v->name, "context")) {
336 strncpy(peer->context, v->value, sizeof(peer->context)-1);
337 } else if (!strcasecmp(v->name, "bridge")) {
338 peer->bridge = ast_true(v->value);
339 } else if (!strcasecmp(v->name, "noFastStart")) {
340 peer->noFastStart = ast_true(v->value);
341 } else if (!strcasecmp(v->name, "noH245Tunneling")) {
342 peer->noH245Tunneling = ast_true(v->value);
343 } else if (!strcasecmp(v->name, "noSilenceSuppression")) {
344 peer->noSilenceSuppression = ast_true(v->value);
345 } else if (!strcasecmp(v->name, "outgoinglimit")) {
346 peer->outgoinglimit = atoi(v->value);
347 if (peer->outgoinglimit > 0)
348 peer->outgoinglimit = 0;
349 } else if (!strcasecmp(v->name, "host")) {
350 if (!strcasecmp(v->value, "dynamic")) {
351 ast_log(LOG_ERROR, "Dynamic host configuration not implemented, yet!\n");
355 if (ast_get_ip(&peer->addr, v->value)) {
369 * Send (play) the specified digit to the channel.
372 static int oh323_digit(struct ast_channel *c, char digit)
374 struct oh323_pvt *p = c->pvt->pvt;
375 if (p && p->rtp && (p->dtmfmode & H323_DTMF_RFC2833)) {
376 ast_rtp_senddigit(p->rtp, digit);
378 /* If in-band DTMF is desired, send that */
379 if (p->dtmfmode & H323_DTMF_INBAND)
380 h323_send_tone(p->cd.call_token, digit);
386 * Make a call over the specified channel to the specified
387 * destination. This function will parse the destination string
388 * and determine the address-number to call.
389 * Return -1 on error, 0 on success.
391 static int oh323_call(struct ast_channel *c, char *dest, int timeout)
394 struct oh323_pvt *p = c->pvt->pvt;
395 char called_addr[256];
398 strtok_r(dest, "/", &(tmp));
400 ast_log(LOG_DEBUG, "dest=%s, timeout=%d.\n", dest, timeout);
402 if ((c->_state != AST_STATE_DOWN) && (c->_state != AST_STATE_RESERVED)) {
403 ast_log(LOG_WARNING, "Line is already in use (%s)\n", c->name);
410 /* Clear the call token */
411 if ((p->cd).call_token == NULL)
412 (p->cd).call_token = (char *)malloc(128);
414 memset((char *)(p->cd).call_token, 0, 128);
416 if (p->cd.call_token == NULL) {
417 ast_log(LOG_ERROR, "Not enough memory.\n");
421 /* Build the address to call */
422 memset(called_addr, 0, sizeof(dest));
423 memcpy(called_addr, dest, sizeof(called_addr));
425 /* Copy callerid, if there is any */
427 char *tmp = strchr(c->callerid, '"');
429 p->calloptions.callerid = malloc(80); // evil
430 // sprintf(p->calloptions.callerid, "\"%s\"", c->callerid);
431 sprintf(p->calloptions.callerid, "\"\" <%s>", c->callerid);
433 p->calloptions.callerid = strdup(c->callerid);
437 res = h323_make_call(called_addr, &(p->cd), p->calloptions);
440 ast_log(LOG_NOTICE, "h323_make_call failed(%s)\n", c->name);
444 ast_setstate(c, AST_STATE_RINGING);
449 static int oh323_answer(struct ast_channel *c)
453 struct oh323_pvt *p = c->pvt->pvt;
455 res = h323_answering_call(p->cd.call_token, 0);
457 if (c->_state != AST_STATE_UP)
458 ast_setstate(c, AST_STATE_UP);
463 static int oh323_hangup(struct ast_channel *c)
465 struct oh323_pvt *p = c->pvt->pvt;
468 ast_log(LOG_DEBUG, "oh323_hangup(%s)\n", c->name);
470 ast_log(LOG_DEBUG, "Asked to hangup channel not connected\n");
473 ast_mutex_lock(&p->lock);
474 /* Determine how to disconnect */
476 ast_log(LOG_WARNING, "Huh? We aren't the owner?\n");
477 ast_mutex_unlock(&p->lock);
480 if (!c || (c->_state != AST_STATE_UP))
485 /* Free dsp used for in-band DTMF detection */
487 ast_dsp_free(p->vad);
493 /* Start the process if it's not already started */
494 if (!p->alreadygone) {
496 if (h323_clear_call((p->cd).call_token)) {
497 ast_log(LOG_DEBUG, "ClearCall failed.\n");
501 /* Update usage counter */
502 ast_mutex_lock(&usecnt_lock);
505 ast_log(LOG_WARNING, "Usecnt < 0\n");
506 ast_mutex_unlock(&usecnt_lock);
507 ast_update_use_count();
509 ast_mutex_unlock(&p->lock);
513 static struct ast_frame *oh323_rtp_read(struct oh323_pvt *p)
515 /* Retrieve audio/etc from channel. Assumes p->lock is already held. */
517 static struct ast_frame null_frame = { AST_FRAME_NULL, };
519 /* Only apply it for the first packet, we just need the correct ip/port */
522 ast_rtp_setnat(p->rtp,p->nat);
526 f = ast_rtp_read(p->rtp);
527 /* Don't send RFC2833 if we're not supposed to */
528 if (f && (f->frametype == AST_FRAME_DTMF) && !(p->dtmfmode & H323_DTMF_RFC2833))
531 /* We already hold the channel lock */
532 if (f->frametype == AST_FRAME_VOICE) {
533 if (f->subclass != p->owner->nativeformats) {
534 ast_log(LOG_DEBUG, "Oooh, format changed to %d\n", f->subclass);
535 p->owner->nativeformats = f->subclass;
536 ast_set_read_format(p->owner, p->owner->readformat);
537 ast_set_write_format(p->owner, p->owner->writeformat);
540 /* Do in-band DTMF detection */
541 if (p->dtmfmode & H323_DTMF_INBAND) {
542 f = ast_dsp_process(p->owner,p->vad,f);
543 if (f->frametype == AST_FRAME_DTMF)
544 ast_log(LOG_DEBUG, "Got in-band digit %c.\n", f->subclass);
554 static struct ast_frame *oh323_read(struct ast_channel *c)
556 struct ast_frame *fr;
557 struct oh323_pvt *p = c->pvt->pvt;
558 ast_mutex_lock(&p->lock);
559 fr = oh323_rtp_read(p);
560 ast_mutex_unlock(&p->lock);
564 static int oh323_write(struct ast_channel *c, struct ast_frame *frame)
566 struct oh323_pvt *p = c->pvt->pvt;
568 if (frame->frametype != AST_FRAME_VOICE) {
569 if (frame->frametype == AST_FRAME_IMAGE)
572 ast_log(LOG_WARNING, "Can't send %d type frames with H323 write\n", frame->frametype);
576 if (!(frame->subclass & c->nativeformats)) {
577 ast_log(LOG_WARNING, "Asked to transmit frame type %d, while native formats is %d (read/write = %d/%d)\n",
578 frame->subclass, c->nativeformats, c->readformat, c->writeformat);
583 ast_mutex_lock(&p->lock);
585 res = ast_rtp_write(p->rtp, frame);
587 ast_mutex_unlock(&p->lock);
592 /** FIXME: Can I acutally use this or does Open H.323 take care of everything? */
593 static int oh323_indicate(struct ast_channel *c, int condition)
596 struct oh323_pvt *p = c->pvt->pvt;
599 case AST_CONTROL_RINGING:
600 if (c->_state == AST_STATE_RING) {
604 case AST_CONTROL_BUSY:
605 if (c->_state != AST_STATE_UP) {
606 // transmit_response(p, "600 Busy everywhere", &p->initreq);
608 ast_softhangup(c, AST_SOFTHANGUP_DEV);
612 case AST_CONTROL_CONGESTION:
613 if (c->_state != AST_STATE_UP) {
614 // transmit_response(p, "486 Busy here", &p->initreq);
616 ast_softhangup(c, AST_SOFTHANGUP_DEV);
623 ast_log(LOG_WARNING, "Don't know how to indicate condition %d\n", condition);
629 // FIXME: WTF is this? Do I need this???
630 static int oh323_fixup(struct ast_channel *oldchan, struct ast_channel *newchan)
632 struct oh323_pvt *p = newchan->pvt->pvt;
634 ast_mutex_lock(&p->lock);
635 if (p->owner != oldchan) {
636 ast_log(LOG_WARNING, "old channel wasn't %p but was %p\n", oldchan, p->owner);
640 ast_mutex_unlock(&p->lock);
644 static struct ast_channel *oh323_new(struct oh323_pvt *i, int state, const char *host)
646 struct ast_channel *ch;
648 ch = ast_channel_alloc(1);
652 snprintf(ch->name, sizeof(ch->name)-1, "H323/%s", host);
653 ch->nativeformats = i->capability;
654 if (!ch->nativeformats)
655 ch->nativeformats = capability;
656 fmt = ast_best_codec(ch->nativeformats);
658 ch->fds[0] = ast_rtp_fd(i->rtp);
660 if (state == AST_STATE_RING)
663 ch->writeformat = fmt;
664 ch->pvt->rawwriteformat = fmt;
665 ch->readformat = fmt;
666 ch->pvt->rawreadformat = fmt;
668 /* Allocate dsp for in-band DTMF support */
669 if (i->dtmfmode & H323_DTMF_INBAND) {
670 i->vad = ast_dsp_new();
671 ast_dsp_set_features(i->vad, DSP_FEATURE_DTMF_DETECT);
674 /* Register the OpenH323 channel's functions. */
676 ch->pvt->send_digit = oh323_digit;
677 ch->pvt->call = oh323_call;
678 ch->pvt->hangup = oh323_hangup;
679 ch->pvt->answer = oh323_answer;
680 ch->pvt->read = oh323_read;
681 ch->pvt->write = oh323_write;
682 ch->pvt->indicate = oh323_indicate;
683 ch->pvt->fixup = oh323_fixup;
684 // ch->pvt->bridge = ast_rtp_bridge;
686 /* Set the owner of this channel */
689 ast_mutex_lock(&usecnt_lock);
691 ast_mutex_unlock(&usecnt_lock);
692 ast_update_use_count();
693 strncpy(ch->context, i->context, sizeof(ch->context)-1);
694 strncpy(ch->exten, i->exten, sizeof(ch->exten)-1);
696 if (!ast_strlen_zero(i->callerid))
697 ch->callerid = strdup(i->callerid);
698 if (!ast_strlen_zero(i->accountcode))
699 strncpy(ch->accountcode, i->accountcode, sizeof(ch->accountcode)-1);
701 ch->amaflags = i->amaflags;
702 ast_setstate(ch, state);
703 if (state != AST_STATE_DOWN) {
704 if (ast_pbx_start(ch)) {
705 ast_log(LOG_WARNING, "Unable to start PBX on %s\n", ch->name);
711 ast_log(LOG_WARNING, "Unable to allocate channel structure\n");
715 static struct oh323_pvt *oh323_alloc(int callid)
719 p = malloc(sizeof(struct oh323_pvt));
721 ast_log(LOG_ERROR, "Couldn't allocate private structure. This is bad\n");
725 /* Keep track of stuff */
726 memset(p, 0, sizeof(struct oh323_pvt));
727 p->rtp = ast_rtp_new(sched, io, 1, 0);
730 ast_log(LOG_WARNING, "Unable to create RTP session: %s\n", strerror(errno));
734 ast_rtp_settos(p->rtp, tos);
735 ast_mutex_init(&p->lock);
737 p->cd.call_reference = callid;
738 p->bridge = bridge_default;
740 p->dtmfmode = dtmfmode;
741 if (p->dtmfmode & H323_DTMF_RFC2833)
742 p->nonCodecCapability |= AST_RTP_DTMF;
744 /* Add to interface list */
745 ast_mutex_lock(&iflock);
748 ast_mutex_unlock(&iflock);
752 static struct oh323_pvt *find_call(int call_reference)
756 ast_mutex_lock(&iflock);
760 if (p->cd.call_reference == call_reference) {
762 ast_mutex_unlock(&iflock);
767 ast_mutex_unlock(&iflock);
772 static struct ast_channel *oh323_request(char *type, int format, void *data)
777 struct ast_channel *tmpc = NULL;
784 ast_log(LOG_DEBUG, "type=%s, format=%d, data=%s.\n", type, format, (char *)data);
787 format &= capability;
789 ast_log(LOG_NOTICE, "Asked to get a channel of unsupported format '%d'\n", format);
793 strncpy(tmp, dest, sizeof(tmp) - 1);
795 host = strchr(tmp, '@');
805 strtok_r(host, "/", &(h323id));
814 ast_log(LOG_WARNING, "Unable to build pvt data for '%s'\n", (char *)data);
818 /* Assign a default capability */
819 p->capability = capability;
822 if (p->dtmfmode & H323_DTMF_RFC2833)
823 p->nonCodecCapability |= AST_RTP_DTMF;
825 p->nonCodecCapability &= ~AST_RTP_DTMF;
827 /* pass on our preferred codec to the H.323 stack */
828 h323_set_capability(format, dtmfmode);
831 strncpy(p->username, ext, sizeof(p->username) - 1);
833 ast_log(LOG_DEBUG, "Host: %s\tUsername: %s\n", host, p->username);
835 tmpc = oh323_new(p, AST_STATE_DOWN, host);
844 struct oh323_alias *find_alias(const char *source_aliases)
846 struct oh323_alias *a;
852 if (!strcasecmp(a->name, source_aliases)) {
860 struct oh323_user *find_user(const call_details_t cd)
862 struct oh323_user *u;
865 if(userbyalias == 1){
867 if (!strcasecmp(u->name, cd.call_source_aliases)) {
875 if (!strcasecmp(cd.sourceIp, inet_ntoa(u->addr.sin_addr))) {
887 struct oh323_peer *find_peer(char *dest_peer)
889 struct oh323_peer *p;
894 if (!strcasecmp(p->name, dest_peer)) {
904 * Callback for sending digits from H.323 up to asterisk
907 int send_digit(unsigned call_reference, char digit)
912 ast_log(LOG_DEBUG, "Recieved Digit: %c\n", digit);
913 p = find_call(call_reference);
916 ast_log(LOG_ERROR, "Private structure not found in send_digit.\n");
919 memset(&f, 0, sizeof(f));
920 f.frametype = AST_FRAME_DTMF;
927 f.src = "SEND_DIGIT";
929 return ast_queue_frame(p->owner, &f);
933 * Call-back function that gets called when any H.323 connection is made
935 * Returns the local RTP information
937 struct rtp_info *create_connection(unsigned call_reference)
940 struct sockaddr_in us;
941 struct sockaddr_in them;
942 struct rtp_info *info;
944 info = malloc(sizeof(struct rtp_info));
946 p = find_call(call_reference);
949 ast_log(LOG_ERROR, "Unable to allocate private structure, this is very bad.\n");
953 /* figure out our local RTP port and tell the H.323 stack about it*/
954 ast_rtp_get_us(p->rtp, &us);
955 ast_rtp_get_peer(p->rtp, &them);
958 info->addr = inet_ntoa(us.sin_addr);
959 info->port = ntohs(us.sin_port);
966 * Call-back function for incoming calls
968 * Returns 1 on success
971 int setup_incoming_call(call_details_t cd)
974 struct oh323_pvt *p = NULL;
975 struct ast_channel *c = NULL;
976 struct oh323_user *user = NULL;
977 struct oh323_alias *alias = NULL;
979 /* allocate the call*/
980 p = oh323_alloc(cd.call_reference);
983 ast_log(LOG_ERROR, "Unable to allocate private structure, this is bad.\n");
987 /* Populate the call details in the private structure */
988 p->cd.call_token = cd.call_token;
989 p->cd.call_source_aliases = cd.call_source_aliases;
990 p->cd.call_dest_alias = cd.call_dest_alias;
991 p->cd.call_source_e164 = cd.call_source_e164;
992 p->cd.call_dest_e164 = cd.call_dest_e164;
995 ast_verbose(VERBOSE_PREFIX_3 "Setting up Call\n");
996 ast_verbose(VERBOSE_PREFIX_3 " Call token: [%s]\n", p->cd.call_token);
997 ast_verbose(VERBOSE_PREFIX_3 " Calling party name: [%s]\n", p->cd.call_source_aliases);
998 ast_verbose(VERBOSE_PREFIX_3 " Calling party number: [%s]\n", p->cd.call_source_e164);
999 ast_verbose(VERBOSE_PREFIX_3 " Called party name: [%s]\n", p->cd.call_dest_alias);
1000 ast_verbose(VERBOSE_PREFIX_3 " Called party number: [%s]\n", p->cd.call_dest_e164);
1003 /* Decide if we are allowing Gatekeeper routed calls*/
1004 if ((!strcasecmp(cd.sourceIp, gatekeeper)) && (gkroute == -1) && (usingGk == 1)) {
1006 if (!ast_strlen_zero(cd.call_dest_e164)) {
1007 strncpy(p->exten, cd.call_dest_e164, sizeof(p->exten)-1);
1008 strncpy(p->context, default_context, sizeof(p->context)-1);
1010 alias = find_alias(cd.call_dest_alias);
1013 ast_log(LOG_ERROR, "Call for %s rejected, alias not found\n", cd.call_dest_alias);
1016 strncpy(p->exten, alias->name, sizeof(p->exten)-1);
1017 strncpy(p->context, alias->context, sizeof(p->context)-1);
1021 sprintf(p->callerid, "%s <%s>", p->cd.call_source_aliases, p->cd.call_source_e164);
1024 /* Either this call is not from the Gatekeeper
1025 or we are not allowing gk routed calls */
1026 user = find_user(cd);
1029 sprintf(p->callerid, "%s <%s>", p->cd.call_source_aliases, p->cd.call_source_e164);
1030 if (!ast_strlen_zero(p->cd.call_dest_e164)) {
1031 strncpy(p->exten, cd.call_dest_e164, sizeof(p->exten)-1);
1033 strncpy(p->exten, cd.call_dest_alias, sizeof(p->exten)-1);
1035 if (ast_strlen_zero(default_context)) {
1036 ast_log(LOG_ERROR, "Call from user '%s' rejected due to no default context\n", p->cd.call_source_aliases);
1039 strncpy(p->context, default_context, sizeof(p->context)-1);
1040 ast_log(LOG_DEBUG, "Sending %s to context [%s]\n", cd.call_source_aliases, p->context);
1043 if (strcasecmp(cd.sourceIp, inet_ntoa(user->addr.sin_addr))){
1045 if(ast_strlen_zero(default_context)) {
1046 ast_log(LOG_ERROR, "Call from user '%s' rejected due to non-matching IP address of '%s'\n", user->name, cd.sourceIp);
1050 strncpy(p->context, default_context, sizeof(p->context)-1);
1051 sprintf(p->exten,"i");
1056 if (user->incominglimit > 0) {
1057 if (user->inUse >= user->incominglimit) {
1058 ast_log(LOG_ERROR, "Call from user '%s' rejected due to usage limit of %d\n", user->name, user->incominglimit);
1062 strncpy(p->context, user->context, sizeof(p->context)-1);
1063 p->bridge = user->bridge;
1066 if (!ast_strlen_zero(user->callerid))
1067 strncpy(p->callerid, user->callerid, sizeof(p->callerid) - 1);
1069 sprintf(p->callerid, "%s <%s>", p->cd.call_source_aliases, p->cd.call_source_e164);
1071 if (!ast_strlen_zero(p->cd.call_dest_e164)) {
1072 strncpy(p->exten, cd.call_dest_e164, sizeof(p->exten)-1);
1074 strncpy(p->exten, cd.call_dest_alias, sizeof(p->exten)-1);
1076 if (!ast_strlen_zero(user->accountcode)) {
1077 strncpy(p->accountcode, user->accountcode, sizeof(p->accountcode)-1);
1080 /* Increment the usage counter */
1086 /* allocate a channel and tell asterisk about it */
1087 c = oh323_new(p, AST_STATE_RINGING, cd.call_token);
1089 ast_log(LOG_ERROR, "Couldn't create channel. This is bad\n");
1097 * Call-back function to establish an outgoing H.323 call
1099 * Returns 1 on success
1101 int setup_outgoing_call(call_details_t cd)
1107 if (p->inUse >= p->outgoinglimit) {
1108 ast_log(LOG_ERROR, "Call to %s rejected due to usage limit of %d outgoing channels\n", p->name, p->inUse);
1113 ast_log(LOG_ERROR, "Rejecting call: peer %s not found\n", dest_peer);
1119 * Call-back function that gets called for each rtp channel opened
1123 void setup_rtp_connection(unsigned call_reference, const char *remoteIp, int remotePort)
1125 struct oh323_pvt *p = NULL;
1126 struct sockaddr_in them;
1128 /* Find the call or allocate a private structure if call not found */
1129 p = find_call(call_reference);
1132 ast_log(LOG_ERROR, "Something is wrong: rtp\n");
1136 them.sin_family = AF_INET;
1137 them.sin_addr.s_addr = inet_addr(remoteIp); // only works for IPv4
1138 them.sin_port = htons(remotePort);
1139 ast_rtp_set_peer(p->rtp, &them);
1145 * Call-back function to signal asterisk that the channel has been answered
1148 void connection_made(unsigned call_reference)
1150 struct ast_channel *c = NULL;
1151 struct oh323_pvt *p = NULL;
1153 p = find_call(call_reference);
1156 ast_log(LOG_ERROR, "Something is wrong: connection\n");
1160 ast_log(LOG_ERROR, "Channel has no owner\n");
1165 ast_setstate(c, AST_STATE_UP);
1170 * Call-back function to cleanup communication
1173 void cleanup_connection(call_details_t cd)
1175 struct oh323_pvt *p = NULL;
1176 // struct oh323_peer *peer = NULL;
1177 struct oh323_user *user = NULL;
1178 struct ast_rtp *rtp = NULL;
1180 ast_log(LOG_DEBUG, "Cleaning up our mess\n");
1182 p = find_call(cd.call_reference);
1188 /* Decrement usage counter */
1190 user = find_user(cd);
1198 peer = find_peer(cd.call_dest_alias);
1201 user = find_user(cd);
1209 /* Immediately stop RTP */
1210 ast_rtp_destroy(rtp);
1217 ast_queue_hangup(p->owner);
1223 static void *do_monitor(void *data)
1226 struct oh323_pvt *oh323 = NULL;
1229 /* Check for interfaces needing to be killed */
1230 ast_mutex_lock(&iflock);
1234 if (oh323->needdestroy) {
1235 __oh323_destroy(oh323);
1238 oh323 = oh323->next;
1240 ast_mutex_unlock(&iflock);
1242 /* Wait for sched or io */
1243 res = ast_sched_wait(sched);
1244 if ((res < 0) || (res > 1000))
1246 res = ast_io_wait(io, res);
1248 pthread_testcancel();
1250 ast_mutex_lock(&monlock);
1252 ast_sched_runq(sched);
1253 ast_mutex_unlock(&monlock);
1260 static int restart_monitor(void)
1262 /* If we're supposed to be stopped -- stay stopped */
1263 if (monitor_thread == AST_PTHREADT_STOP)
1265 if (ast_mutex_lock(&monlock)) {
1266 ast_log(LOG_WARNING, "Unable to lock monitor\n");
1269 if (monitor_thread == pthread_self()) {
1270 ast_mutex_unlock(&monlock);
1271 ast_log(LOG_WARNING, "Cannot kill myself\n");
1274 if (monitor_thread && (monitor_thread != AST_PTHREADT_NULL)) {
1275 /* Wake up the thread */
1276 pthread_kill(monitor_thread, SIGURG);
1278 /* Start a new monitor */
1279 if (pthread_create(&monitor_thread, NULL, do_monitor, NULL) < 0) {
1280 ast_mutex_unlock(&monlock);
1281 ast_log(LOG_ERROR, "Unable to start monitor thread.\n");
1285 ast_mutex_unlock(&monlock);
1289 static int h323_do_trace(int fd, int argc, char *argv[])
1292 return RESULT_SHOWUSAGE;
1294 h323_debug(1, atoi(argv[2]));
1295 ast_cli(fd, "H.323 trace set to level %s\n", argv[2]);
1296 return RESULT_SUCCESS;
1299 static int h323_no_trace(int fd, int argc, char *argv[])
1302 return RESULT_SHOWUSAGE;
1305 ast_cli(fd, "H.323 trace disabled\n");
1306 return RESULT_SUCCESS;
1309 static int h323_do_debug(int fd, int argc, char *argv[])
1312 return RESULT_SHOWUSAGE;
1315 ast_cli(fd, "H323 debug enabled\n");
1316 return RESULT_SUCCESS;
1319 static int h323_no_debug(int fd, int argc, char *argv[])
1322 return RESULT_SHOWUSAGE;
1325 ast_cli(fd, "H323 Debug disabled\n");
1326 return RESULT_SUCCESS;
1329 static int h323_gk_cycle(int fd, int argc, char *argv[])
1331 return RESULT_SUCCESS;
1334 return RESULT_SHOWUSAGE;
1338 /* Possibly register with a GK */
1339 if (!gatekeeper_disable) {
1340 if (h323_set_gk(gatekeeper_discover, gatekeeper, secret)) {
1341 ast_log(LOG_ERROR, "Gatekeeper registration failed.\n");
1344 return RESULT_SUCCESS;
1348 static int h323_ep_hangup(int fd, int argc, char *argv[])
1352 return RESULT_SHOWUSAGE;
1355 if (h323_soft_hangup(argv[2])) {
1356 ast_verbose(VERBOSE_PREFIX_3 "Hangup succeeded on %s\n", argv[2]);
1358 ast_verbose(VERBOSE_PREFIX_3 "Hangup failed for %s\n", argv[2]);
1361 return RESULT_SUCCESS;
1364 static int h323_tokens_show(int fd, int argc, char *argv[])
1368 return RESULT_SHOWUSAGE;
1372 return RESULT_SUCCESS;
1376 static char trace_usage[] =
1377 "Usage: h.323 trace <level num>\n"
1378 " Enables H.323 stack tracing for debugging purposes\n";
1380 static char no_trace_usage[] =
1381 "Usage: h.323 no trace\n"
1382 " Disables H.323 stack tracing for debugging purposes\n";
1384 static char debug_usage[] =
1385 "Usage: h.323 debug\n"
1386 " Enables chan_h323 debug output\n";
1388 static char no_debug_usage[] =
1389 "Usage: h.323 no debug\n"
1390 " Disables chan_h323 debug output\n";
1392 static char show_codec_usage[] =
1393 "Usage: h.323 show codec\n"
1394 " Shows all enabled codecs\n";
1396 static char show_cycle_usage[] =
1397 "Usage: h.323 gk cycle\n"
1398 " Manually re-register with the Gatekeper\n";
1400 static char show_hangup_usage[] =
1401 "Usage: h.323 hangup <token>\n"
1402 " Manually try to hang up call identified by <token>\n";
1404 static char show_tokens_usage[] =
1405 "Usage: h.323 show tokens\n"
1406 " Print out all active call tokens\n";
1408 static struct ast_cli_entry cli_trace =
1409 { { "h.323", "trace", NULL }, h323_do_trace, "Enable H.323 Stack Tracing", trace_usage };
1410 static struct ast_cli_entry cli_no_trace =
1411 { { "h.323", "no", "trace", NULL }, h323_no_trace, "Disable H.323 Stack Tracing", no_trace_usage };
1412 static struct ast_cli_entry cli_debug =
1413 { { "h.323", "debug", NULL }, h323_do_debug, "Enable chan_h323 debug", debug_usage };
1414 static struct ast_cli_entry cli_no_debug =
1415 { { "h.323", "no", "debug", NULL }, h323_no_debug, "Disable chan_h323 debug", no_debug_usage };
1416 static struct ast_cli_entry cli_show_codecs =
1417 { { "h.323", "show", "codecs", NULL }, h323_show_codec, "Show enabled codecs", show_codec_usage };
1418 static struct ast_cli_entry cli_gk_cycle =
1419 { { "h.323", "gk", "cycle", NULL }, h323_gk_cycle, "Manually re-register with the Gatekeper", show_cycle_usage };
1420 static struct ast_cli_entry cli_hangup_call =
1421 { { "h.323", "hangup", NULL }, h323_ep_hangup, "Manually try to hang up a call", show_hangup_usage };
1422 static struct ast_cli_entry cli_show_tokens =
1423 { { "h.323", "show", "tokens", NULL }, h323_tokens_show, "Manually try to hang up a call", show_tokens_usage };
1427 int reload_config(void)
1431 struct ast_config *cfg;
1432 struct ast_variable *v;
1433 struct oh323_peer *peer = NULL;
1434 struct oh323_user *user = NULL;
1435 struct oh323_alias *alias = NULL;
1436 struct ast_hostent ahp; struct hostent *hp;
1440 cfg = ast_load(config);
1442 /* We *must* have a config file otherwise stop immediately */
1444 ast_log(LOG_NOTICE, "Unable to load config %s, H.323 disabled\n", config);
1448 /* fire up the H.323 Endpoint */
1449 if (!h323_end_point_exist()) {
1450 h323_end_point_create();
1453 dtmfmode = H323_DTMF_RFC2833;
1455 memset(&bindaddr, 0, sizeof(bindaddr));
1457 v = ast_variable_browse(cfg, "general");
1459 /* Create the interface list */
1460 if (!strcasecmp(v->name, "port")) {
1461 port = (int)strtol(v->value, NULL, 10);
1462 } else if (!strcasecmp(v->name, "bindaddr")) {
1463 if (!(hp = ast_gethostbyname(v->value, &ahp))) {
1464 ast_log(LOG_WARNING, "Invalid address: %s\n", v->value);
1466 memcpy(&bindaddr.sin_addr, hp->h_addr, sizeof(bindaddr.sin_addr));
1468 } else if (!strcasecmp(v->name, "allow")) {
1469 format = ast_getformatbyname(v->value);
1471 ast_log(LOG_WARNING, "Cannot allow unknown format '%s'\n", v->value);
1473 capability |= format;
1474 } else if (!strcasecmp(v->name, "disallow")) {
1475 format = ast_getformatbyname(v->value);
1477 ast_log(LOG_WARNING, "Cannot disallow unknown format '%s'\n", v->value);
1479 capability &= ~format;
1480 } else if (!strcasecmp(v->name, "tos")) {
1481 if (sscanf(v->value, "%i", &format) == 1)
1482 tos = format & 0xff;
1483 else if (!strcasecmp(v->value, "lowdelay"))
1484 tos = IPTOS_LOWDELAY;
1485 else if (!strcasecmp(v->value, "throughput"))
1486 tos = IPTOS_THROUGHPUT;
1487 else if (!strcasecmp(v->value, "reliability"))
1488 tos = IPTOS_RELIABILITY;
1489 else if (!strcasecmp(v->value, "mincost"))
1490 tos = IPTOS_MINCOST;
1491 else if (!strcasecmp(v->value, "none"))
1494 ast_log(LOG_WARNING, "Invalid tos value at line %d, should be 'lowdelay', 'throughput', 'reliability', 'mincost', or 'none'\n", v->lineno);
1495 } else if (!strcasecmp(v->name, "gatekeeper")) {
1496 if (!strcasecmp(v->value, "DISABLE")) {
1497 gatekeeper_disable = 1;
1499 } else if (!strcasecmp(v->value, "DISCOVER")) {
1500 gatekeeper_disable = 0;
1501 gatekeeper_discover = 1;
1504 gatekeeper_disable = 0;
1506 strncpy(gatekeeper, v->value, sizeof(gatekeeper)-1);
1508 } else if (!strcasecmp(v->name, "secret")) {
1509 strncpy(secret, v->value, sizeof(secret)-1);
1510 } else if (!strcasecmp(v->name, "AllowGKRouted")) {
1511 gkroute = ast_true(v->value);
1512 } else if (!strcasecmp(v->name, "context")) {
1513 strncpy(default_context, v->value, sizeof(default_context)-1);
1514 ast_verbose(VERBOSE_PREFIX_3 " == Setting default context to %s\n", default_context);
1515 } else if (!strcasecmp(v->name, "dtmfmode")) {
1516 if (!strcasecmp(v->value, "inband"))
1517 dtmfmode=H323_DTMF_INBAND;
1518 else if (!strcasecmp(v->value, "rfc2833"))
1519 dtmfmode = H323_DTMF_RFC2833;
1521 ast_log(LOG_WARNING, "Unknown dtmf mode '%s', using rfc2833\n", v->value);
1522 dtmfmode = H323_DTMF_RFC2833;
1524 } else if (!strcasecmp(v->name, "UserByAlias")) {
1525 userbyalias = ast_true(v->value);
1526 } else if (!strcasecmp(v->name, "bridge")) {
1527 bridge_default = ast_true(v->value);
1532 cat = ast_category_browse(cfg, NULL);
1534 if (strcasecmp(cat, "general")) {
1535 utype = ast_variable_retrieve(cfg, cat, "type");
1537 if (!strcasecmp(utype, "user") || !strcasecmp(utype, "friend")) {
1538 user = build_user(cat, ast_variable_browse(cfg, cat));
1540 ast_mutex_lock(&userl.lock);
1541 user->next = userl.users;
1543 ast_mutex_unlock(&userl.lock);
1545 } else if (!strcasecmp(utype, "peer") || !strcasecmp(utype, "friend")) {
1546 peer = build_peer(cat, ast_variable_browse(cfg, cat));
1548 ast_mutex_lock(&peerl.lock);
1549 peer->next = peerl.peers;
1551 ast_mutex_unlock(&peerl.lock);
1553 } else if (!strcasecmp(utype, "h323")) {
1554 alias = build_alias(cat, ast_variable_browse(cfg, cat));
1556 ast_mutex_lock(&aliasl.lock);
1557 alias->next = aliasl.aliases;
1558 aliasl.aliases = alias;
1559 ast_mutex_unlock(&aliasl.lock);
1562 ast_log(LOG_WARNING, "Unknown type '%s' for '%s' in %s\n", utype, cat, config);
1565 ast_log(LOG_WARNING, "Section '%s' lacks type\n", cat);
1567 cat = ast_category_browse(cfg, cat);
1570 /* Register our H.323 aliases if any*/
1572 if (h323_set_alias(alias)) {
1573 ast_log(LOG_ERROR, "Alias %s rejected by endpoint\n", alias->name);
1576 alias = alias->next;
1579 /* Add some capabilities */
1580 if(h323_set_capability(capability, dtmfmode)) {
1581 ast_log(LOG_ERROR, "Capabilities failure, this is bad.\n");
1589 void delete_users(void)
1591 struct oh323_user *user, *userlast;
1592 struct oh323_peer *peer;
1594 /* Delete all users */
1595 ast_mutex_lock(&userl.lock);
1596 for (user=userl.users;user;) {
1602 ast_mutex_unlock(&userl.lock);
1603 ast_mutex_lock(&peerl.lock);
1604 for (peer=peerl.peers;peer;) {
1605 /* Assume all will be deleted, and we'll find out for sure later */
1609 ast_mutex_unlock(&peerl.lock);
1612 void delete_aliases(void)
1614 struct oh323_alias *alias, *aliaslast;
1616 /* Delete all users */
1617 ast_mutex_lock(&aliasl.lock);
1618 for (alias=aliasl.aliases;alias;) {
1623 aliasl.aliases=NULL;
1624 ast_mutex_unlock(&aliasl.lock);
1627 void prune_peers(void)
1629 /* Prune peers who still are supposed to be deleted */
1630 struct oh323_peer *peer, *peerlast, *peernext;
1631 ast_mutex_lock(&peerl.lock);
1633 for (peer=peerl.peers;peer;) {
1634 peernext = peer->next;
1638 peerlast->next = peernext;
1640 peerl.peers = peernext;
1645 ast_mutex_unlock(&peerl.lock);
1655 if (!ast_strlen_zero(gatekeeper)) {
1663 /* Possibly register with a GK */
1664 if (gatekeeper_disable == 0) {
1665 if (h323_set_gk(gatekeeper_discover, gatekeeper, secret)) {
1666 ast_log(LOG_ERROR, "Gatekeeper registration failed.\n");
1677 static struct ast_rtp *oh323_get_rtp_peer(struct ast_channel *chan)
1679 struct oh323_pvt *p;
1681 if (p && p->rtp && p->bridge) {
1687 static struct ast_rtp *oh323_get_vrtp_peer(struct ast_channel *chan)
1692 static char *convertcap(int cap)
1695 case AST_FORMAT_G723_1:
1697 case AST_FORMAT_GSM:
1699 case AST_FORMAT_ULAW:
1701 case AST_FORMAT_ALAW:
1703 case AST_FORMAT_ADPCM:
1705 case AST_FORMAT_G729A:
1707 case AST_FORMAT_SPEEX:
1709 case AST_FORMAT_ILBC:
1712 ast_log(LOG_NOTICE, "Don't know how to deal with mode %d\n", cap);
1718 static int oh323_set_rtp_peer(struct ast_channel *chan, struct ast_rtp *rtp, struct ast_rtp *vrtp)
1720 /* XXX Deal with Video */
1721 struct oh323_pvt *p;
1722 struct sockaddr_in them;
1723 struct sockaddr_in us;
1726 mode = convertcap(chan->writeformat);
1734 ast_log(LOG_ERROR, "No Private Structure, this is bad\n");
1738 ast_rtp_get_peer(rtp, &them);
1739 ast_rtp_get_us(rtp, &us);
1742 h323_native_bridge(p->cd.call_token, inet_ntoa(them.sin_addr), mode);
1748 static struct ast_rtp_protocol oh323_rtp = {
1749 get_rtp_info: oh323_get_rtp_peer,
1750 get_vrtp_info: oh323_get_vrtp_peer,
1751 set_rtp_peer: oh323_set_rtp_peer,
1759 res = reload_config();
1764 /* Make sure we can register our channel type */
1765 if (ast_channel_register(type, tdesc, capability, oh323_request)) {
1766 ast_log(LOG_ERROR, "Unable to register channel class %s\n", type);
1770 ast_cli_register(&cli_debug);
1771 ast_cli_register(&cli_no_debug);
1772 ast_cli_register(&cli_trace);
1773 ast_cli_register(&cli_no_trace);
1774 ast_cli_register(&cli_show_codecs);
1775 ast_cli_register(&cli_gk_cycle);
1776 ast_cli_register(&cli_hangup_call);
1777 ast_cli_register(&cli_show_tokens);
1779 oh323_rtp.type = type;
1780 ast_rtp_proto_register(&oh323_rtp);
1782 sched = sched_context_create();
1784 ast_log(LOG_WARNING, "Unable to create schedule context\n");
1786 io = io_context_create();
1788 ast_log(LOG_WARNING, "Unable to create I/O context\n");
1791 /* Register our callback functions */
1792 h323_callback_register(setup_incoming_call,
1793 setup_outgoing_call,
1795 setup_rtp_connection,
1801 /* start the h.323 listener */
1802 if (h323_start_listener(port, bindaddr)) {
1803 ast_log(LOG_ERROR, "Unable to create H323 listener.\n");
1804 // h323_end_process();
1808 /* Possibly register with a GK */
1809 if (gatekeeper_disable == 0) {
1810 if (h323_set_gk(gatekeeper_discover, gatekeeper, secret)) {
1811 ast_log(LOG_ERROR, "Gatekeeper registration failed.\n");
1812 // h323_end_process();
1816 /* And start the monitor for the first time */
1825 struct oh323_pvt *p, *pl;
1827 if (!ast_mutex_lock(&iflock)) {
1828 /* hangup all interfaces if they have an owner */
1832 ast_softhangup(p->owner, AST_SOFTHANGUP_APPUNLOAD);
1836 ast_mutex_unlock(&iflock);
1838 ast_log(LOG_WARNING, "Unable to lock the interface list\n");
1842 if (!ast_mutex_lock(&monlock)) {
1843 if (monitor_thread && (monitor_thread != AST_PTHREADT_STOP)) {
1844 pthread_cancel(monitor_thread);
1845 pthread_kill(monitor_thread, SIGURG);
1846 pthread_join(monitor_thread, NULL);
1848 monitor_thread = AST_PTHREADT_STOP;
1849 ast_mutex_unlock(&monlock);
1851 ast_log(LOG_WARNING, "Unable to lock the monitor\n");
1855 if (!ast_mutex_lock(&iflock)) {
1856 /* destroy all the interfaces and free their memory */
1861 /* free associated memory */
1865 ast_mutex_unlock(&iflock);
1867 ast_log(LOG_WARNING, "Unable to lock the interface list\n");
1873 /* unregister rtp */
1874 ast_rtp_proto_unregister(&oh323_rtp);
1876 /* unregister commands */
1877 ast_cli_unregister(&cli_debug);
1878 ast_cli_unregister(&cli_no_debug);
1879 ast_cli_unregister(&cli_trace);
1880 ast_cli_unregister(&cli_no_trace);
1881 ast_cli_unregister(&cli_show_codecs);
1882 ast_cli_unregister(&cli_gk_cycle);
1883 ast_cli_unregister(&cli_hangup_call);
1884 ast_cli_unregister(&cli_show_tokens);
1886 /* unregister channel type */
1887 ast_channel_unregister(type);
1895 ast_mutex_lock(&usecnt_lock);
1897 ast_mutex_unlock(&usecnt_lock);
1908 return ASTERISK_GPL_KEY;