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.
32 #include <asterisk/lock.h>
33 #include <asterisk/logger.h>
34 #include <asterisk/channel.h>
35 #include <asterisk/channel_pvt.h>
36 #include <asterisk/config.h>
37 #include <asterisk/module.h>
38 #include <asterisk/pbx.h>
39 #include <asterisk/options.h>
40 #include <asterisk/lock.h>
41 #include <asterisk/sched.h>
42 #include <asterisk/io.h>
43 #include <asterisk/rtp.h>
44 #include <asterisk/acl.h>
45 #include <asterisk/callerid.h>
46 #include <asterisk/cli.h>
47 #include <asterisk/dsp.h>
48 #include <sys/socket.h>
55 #include <sys/signal.h>
56 #include <netinet/ip.h>
59 #include "chan_h323.h"
61 /** String variables required by ASTERISK */
62 static char *type = "H323";
63 static char *desc = "The NuFone Network's Open H.323 Channel Driver";
64 static char *tdesc = "The NuFone Network's Open H.323 Channel Driver";
65 static char *config = "h323.conf";
67 static char default_context[AST_MAX_EXTENSION];
69 /** H.323 configuration values */
70 static char gatekeeper[100];
71 static int gatekeeper_disable = 1;
72 static int gatekeeper_discover = 0;
74 static int port = 1720;
75 static int gkroute = 0;
77 /* Just about everybody seems to support ulaw, so make it a nice default */
78 static int capability = AST_FORMAT_ULAW;
83 static int dtmfmode = H323_DTMF_RFC2833;
85 static char secret[50];
87 /** Private structure of a OpenH323 channel */
89 pthread_mutex_t lock; /* Channel private lock */
90 call_options_t calloptions; /* Options to be used during call setup */
91 int alreadygone; /* Whether or not we've already been destroyed by or peer */
92 int needdestroy; /* if we need to be destroyed */
93 call_details_t cd; /* Call details */
94 struct ast_channel *owner; /* Who owns us */
95 int capability; /* Special capability */
96 int nonCodecCapability;
97 int outgoing; /* Outgoing or incoming call? */
98 int nat; /* Are we talking to a NAT EP?*/
99 int bridge; /* Determine of we should native bridge or not*/
100 char exten[AST_MAX_EXTENSION]; /* Requested extension */
101 char context[AST_MAX_EXTENSION]; /* Context where to start */
102 char username[81]; /* H.323 alias using this channel */
103 char accountcode[256]; /* Account code */
104 int amaflags; /* AMA Flags */
105 char callerid[80]; /* Caller*ID if available */
106 struct ast_rtp *rtp; /* RTP Session */
108 struct ast_dsp *vad; /* Used for in-band DTMF detection */
109 struct oh323_pvt *next; /* Next channel in list */
112 static struct ast_user_list {
113 struct oh323_user *users;
114 pthread_mutex_t lock;
115 } userl = { NULL, AST_MUTEX_INITIALIZER };
117 static struct ast_peer_list {
118 struct oh323_peer *peers;
119 pthread_mutex_t lock;
120 } peerl = { NULL, AST_MUTEX_INITIALIZER };
122 static struct ast_alias_list {
123 struct oh323_alias *aliases;
124 pthread_mutex_t lock;
125 } aliasl = { NULL, AST_MUTEX_INITIALIZER };
127 /** Asterisk RTP stuff*/
128 static struct sched_context *sched;
129 static struct io_context *io;
131 /** Protect the interface list (of oh323_pvt's) */
132 static pthread_mutex_t iflock = AST_MUTEX_INITIALIZER;
134 /** Usage counter and associated lock */
135 static int usecnt =0;
136 static pthread_mutex_t usecnt_lock = AST_MUTEX_INITIALIZER;
138 /* Protect the monitoring thread, so only one process can kill or start it, and not
139 when it's doing something critical. */
140 static pthread_mutex_t monlock = AST_MUTEX_INITIALIZER;
142 /* This is the thread for the monitor which checks for input on the channels
143 which are not currently in use. */
144 static pthread_t monitor_thread = 0;
146 static int restart_monitor(void);
148 static void __oh323_destroy(struct oh323_pvt *p)
150 struct oh323_pvt *cur, *prev = NULL;
153 ast_rtp_destroy(p->rtp);
156 /* Unlink us from the owner if we have one */
158 ast_pthread_mutex_lock(&p->owner->lock);
159 ast_log(LOG_DEBUG, "Detaching from %s\n", p->owner->name);
160 p->owner->pvt->pvt = NULL;
161 ast_pthread_mutex_unlock(&p->owner->lock);
167 prev->next = cur->next;
176 ast_log(LOG_WARNING, "%p is not in list?!?! \n", cur);
181 static void oh323_destroy(struct oh323_pvt *p)
183 ast_pthread_mutex_lock(&iflock);
185 ast_pthread_mutex_unlock(&iflock);
188 static struct oh323_alias *build_alias(char *name, struct ast_variable *v)
190 struct oh323_alias *alias;
192 alias = (struct oh323_alias *)malloc(sizeof(struct oh323_alias));
195 memset(alias, 0, sizeof(struct oh323_alias));
196 strncpy(alias->name, name, sizeof(alias->name)-1);
199 if (!strcasecmp(v->name, "e164")) {
200 strncpy(alias->e164, v->value, sizeof(alias->e164)-1);
201 } else if (!strcasecmp(v->name, "prefix")) {
202 strncpy(alias->prefix, v->value, sizeof(alias->prefix)-1);
203 } else if (!strcasecmp(v->name, "context")) {
204 strncpy(alias->context, v->value, sizeof(alias->context)-1);
205 } else if (!strcasecmp(v->name, "secret")) {
206 strncpy(alias->secret, v->value, sizeof(alias->secret)-1);
214 static struct oh323_user *build_user(char *name, struct ast_variable *v)
216 struct oh323_user *user;
219 user = (struct oh323_user *)malloc(sizeof(struct oh323_user));
221 memset(user, 0, sizeof(struct oh323_user));
222 strncpy(user->name, name, sizeof(user->name)-1);
224 /* set the usage flag to a sane starting value*/
226 /* Assume we can native bridge */
230 if (!strcasecmp(v->name, "context")) {
231 strncpy(user->context, v->value, sizeof(user->context)-1);
232 } else if (!strcasecmp(v->name, "bridge")) {
233 user->bridge = ast_true(v->value);
234 } else if (!strcasecmp(v->name, "noFastStart")) {
235 user->noFastStart = ast_true(v->value);
236 } else if (!strcasecmp(v->name, "noH245Tunneling")) {
237 user->noH245Tunneling = ast_true(v->value);
238 } else if (!strcasecmp(v->name, "noSilenceSuppression")) {
239 user->noSilenceSuppression = ast_true(v->value);
240 } else if (!strcasecmp(v->name, "secret")) {
241 strncpy(user->secret, v->value, sizeof(user->secret)-1);
242 } else if (!strcasecmp(v->name, "callerid")) {
243 strncpy(user->callerid, v->value, sizeof(user->callerid)-1);
244 } else if (!strcasecmp(v->name, "accountcode")) {
245 strncpy(user->accountcode, v->value, sizeof(user->accountcode)-1);
246 } else if (!strcasecmp(v->name, "incominglimit")) {
247 user->incominglimit = atoi(v->value);
248 if (user->incominglimit < 0)
249 user->incominglimit = 0;
250 } else if (!strcasecmp(v->name, "host")) {
251 if (!strcasecmp(v->value, "dynamic")) {
252 ast_log(LOG_ERROR, "Dynamic host configuration not implemented, yet!\n");
255 } else if (ast_get_ip(&user->addr, v->value)) {
259 /* Let us know we need to use ip authentication */
261 } else if (!strcasecmp(v->name, "amaflags")) {
262 format = ast_cdr_amaflags2int(v->value);
264 ast_log(LOG_WARNING, "Invalid AMA Flags: %s at line %d\n", v->value, v->lineno);
266 user->amaflags = format;
276 static struct oh323_peer *build_peer(char *name, struct ast_variable *v)
278 struct oh323_peer *peer;
279 struct oh323_peer *prev;
283 ast_pthread_mutex_lock(&peerl.lock);
287 if (!strcasecmp(peer->name, name)) {
296 /* Already in the list, remove it and it will be added back (or FREE'd) */
298 prev->next = peer->next;
300 peerl.peers = peer->next;
302 ast_pthread_mutex_unlock(&peerl.lock);
304 ast_pthread_mutex_unlock(&peerl.lock);
305 peer = malloc(sizeof(struct oh323_peer));
306 memset(peer, 0, sizeof(struct oh323_peer));
310 strncpy(peer->name, name, sizeof(peer->name)-1);
313 /* set the usage flag to a sane starting value*/
317 if (!strcasecmp(v->name, "context")) {
318 strncpy(peer->context, v->value, sizeof(peer->context)-1);
319 } else if (!strcasecmp(v->name, "bridge")) {
320 peer->bridge = ast_true(v->value);
321 } else if (!strcasecmp(v->name, "noFastStart")) {
322 peer->noFastStart = ast_true(v->value);
323 } else if (!strcasecmp(v->name, "noH245Tunneling")) {
324 peer->noH245Tunneling = ast_true(v->value);
325 } else if (!strcasecmp(v->name, "noSilenceSuppression")) {
326 peer->noSilenceSuppression = ast_true(v->value);
327 } else if (!strcasecmp(v->name, "outgoinglimit")) {
328 peer->outgoinglimit = atoi(v->value);
329 if (peer->outgoinglimit > 0)
330 peer->outgoinglimit = 0;
331 } else if (!strcasecmp(v->name, "host")) {
332 if (!strcasecmp(v->value, "dynamic")) {
333 ast_log(LOG_ERROR, "Dynamic host configuration not implemented, yet!\n");
337 if (ast_get_ip(&peer->addr, v->value)) {
351 * Send (play) the specified digit to the channel.
354 static int oh323_digit(struct ast_channel *c, char digit)
356 struct oh323_pvt *p = c->pvt->pvt;
357 if (p && p->rtp && (p->dtmfmode & H323_DTMF_RFC2833)) {
358 ast_rtp_senddigit(p->rtp, digit);
360 /* If in-band DTMF is desired, send that */
361 if (p->dtmfmode & H323_DTMF_INBAND)
362 h323_send_tone(p->cd.call_token, digit);
368 * Make a call over the specified channel to the specified
369 * destination. This function will parse the destination string
370 * and determine the address-number to call.
371 * Return -1 on error, 0 on success.
373 static int oh323_call(struct ast_channel *c, char *dest, int timeout)
376 struct oh323_pvt *p = c->pvt->pvt;
377 char called_addr[256];
380 strtok_r(dest, "/", &(tmp));
382 ast_log(LOG_DEBUG, "dest=%s, timeout=%d.\n", dest, timeout);
384 if ((c->_state != AST_STATE_DOWN) && (c->_state != AST_STATE_RESERVED)) {
385 ast_log(LOG_WARNING, "Line is already in use (%s)\n", c->name);
392 /* Clear the call token */
393 if ((p->cd).call_token == NULL)
394 (p->cd).call_token = (char *)malloc(128);
396 memset((char *)(p->cd).call_token, 0, 128);
398 if (p->cd.call_token == NULL) {
399 ast_log(LOG_ERROR, "Not enough memory.\n");
403 /* Build the address to call */
404 memset(called_addr, 0, sizeof(dest));
405 memcpy(called_addr, dest, sizeof(called_addr));
407 /* Copy callerid, if there is any */
408 if (strlen(c->callerid)) {
409 p->calloptions.callerid = strdup(c->callerid);
412 res = h323_make_call(called_addr, &(p->cd), p->calloptions);
415 ast_log(LOG_NOTICE, "h323_make_call failed(%s)\n", c->name);
419 ast_setstate(c, AST_STATE_RINGING);
424 static int oh323_answer(struct ast_channel *c)
428 struct oh323_pvt *p = c->pvt->pvt;
430 res = h323_answering_call(p->cd.call_token, 0);
432 if (c->_state != AST_STATE_UP)
433 ast_setstate(c, AST_STATE_UP);
438 static int oh323_hangup(struct ast_channel *c)
440 struct oh323_pvt *p = c->pvt->pvt;
443 ast_log(LOG_DEBUG, "oh323_hangup(%s)\n", c->name);
445 ast_log(LOG_DEBUG, "Asked to hangup channel not connected\n");
448 ast_pthread_mutex_lock(&p->lock);
449 /* Determine how to disconnect */
451 ast_log(LOG_WARNING, "Huh? We aren't the owner?\n");
452 ast_pthread_mutex_unlock(&p->lock);
455 if (!c || (c->_state != AST_STATE_UP))
460 /* Free dsp used for in-band DTMF detection */
462 ast_dsp_free(p->vad);
468 /* Start the process if it's not already started */
469 if (!p->alreadygone) {
470 if (h323_clear_call((p->cd).call_token))
471 ast_log(LOG_DEBUG, "ClearCall failed.\n");
475 /* Update usage counter */
476 ast_pthread_mutex_lock(&usecnt_lock);
479 ast_log(LOG_WARNING, "Usecnt < 0\n");
480 ast_pthread_mutex_unlock(&usecnt_lock);
481 ast_update_use_count();
483 ast_pthread_mutex_unlock(&p->lock);
487 static struct ast_frame *oh323_rtp_read(struct oh323_pvt *p)
489 /* Retrieve audio/etc from channel. Assumes p->lock is already held. */
491 static struct ast_frame null_frame = { AST_FRAME_NULL, };
492 f = ast_rtp_read(p->rtp);
493 /* Don't send RFC2833 if we're not supposed to */
494 if (f && (f->frametype == AST_FRAME_DTMF) && !(p->dtmfmode & H323_DTMF_RFC2833))
497 /* We already hold the channel lock */
498 if (f->frametype == AST_FRAME_VOICE) {
499 if (f->subclass != p->owner->nativeformats) {
500 ast_log(LOG_DEBUG, "Oooh, format changed to %d\n", f->subclass);
501 p->owner->nativeformats = f->subclass;
502 ast_set_read_format(p->owner, p->owner->readformat);
503 ast_set_write_format(p->owner, p->owner->writeformat);
506 /* Do in-band DTMF detection */
507 if (p->dtmfmode & H323_DTMF_INBAND) {
508 f = ast_dsp_process(p->owner,p->vad,f,0);
509 if (f->frametype == AST_FRAME_DTMF)
510 ast_log(LOG_DEBUG, "Got in-band digit %c.\n", f->subclass);
520 static struct ast_frame *oh323_read(struct ast_channel *c)
522 struct ast_frame *fr;
523 struct oh323_pvt *p = c->pvt->pvt;
524 ast_pthread_mutex_lock(&p->lock);
525 fr = oh323_rtp_read(p);
526 ast_pthread_mutex_unlock(&p->lock);
530 static int oh323_write(struct ast_channel *c, struct ast_frame *frame)
532 struct oh323_pvt *p = c->pvt->pvt;
534 if (frame->frametype != AST_FRAME_VOICE) {
535 if (frame->frametype == AST_FRAME_IMAGE)
538 ast_log(LOG_WARNING, "Can't send %d type frames with H323 write\n", frame->frametype);
542 if (!(frame->subclass & c->nativeformats)) {
543 ast_log(LOG_WARNING, "Asked to transmit frame type %d, while native formats is %d (read/write = %d/%d)\n",
544 frame->subclass, c->nativeformats, c->readformat, c->writeformat);
549 ast_pthread_mutex_lock(&p->lock);
551 res = ast_rtp_write(p->rtp, frame);
553 ast_pthread_mutex_unlock(&p->lock);
558 /** FIXME: Can I acutally use this or does Open H.323 take care of everything? */
559 static int oh323_indicate(struct ast_channel *c, int condition)
562 struct oh323_pvt *p = c->pvt->pvt;
565 case AST_CONTROL_RINGING:
566 if (c->_state == AST_STATE_RING) {
567 // transmit_response(p, "180 Ringing", &p->initreq);
571 case AST_CONTROL_BUSY:
572 if (c->_state != AST_STATE_UP) {
573 // transmit_response(p, "600 Busy everywhere", &p->initreq);
575 ast_softhangup(c, AST_SOFTHANGUP_DEV);
579 case AST_CONTROL_CONGESTION:
580 if (c->_state != AST_STATE_UP) {
581 // transmit_response(p, "486 Busy here", &p->initreq);
583 ast_softhangup(c, AST_SOFTHANGUP_DEV);
590 ast_log(LOG_WARNING, "Don't know how to indicate condition %d\n", condition);
596 // FIXME: WTF is this? Do I need this???
597 static int oh323_fixup(struct ast_channel *oldchan, struct ast_channel *newchan)
599 struct oh323_pvt *p = newchan->pvt->pvt;
601 ast_pthread_mutex_lock(&p->lock);
602 if (p->owner != oldchan) {
603 ast_log(LOG_WARNING, "old channel wasn't %p but was %p\n", oldchan, p->owner);
607 ast_pthread_mutex_unlock(&p->lock);
611 static struct ast_channel *oh323_new(struct oh323_pvt *i, int state, const char *host)
613 struct ast_channel *tmp;
615 tmp = ast_channel_alloc(1);
619 snprintf(tmp->name, sizeof(tmp->name)-1, "H323/%s", host);
620 tmp->nativeformats = i->capability;
621 if (!tmp->nativeformats)
622 tmp->nativeformats = capability;
623 fmt = ast_best_codec(tmp->nativeformats);
625 tmp->fds[0] = ast_rtp_fd(i->rtp);
626 ast_setstate(tmp, state);
628 if (state == AST_STATE_RING)
631 tmp->writeformat = fmt;
632 tmp->pvt->rawwriteformat = fmt;
633 tmp->readformat = fmt;
634 tmp->pvt->rawreadformat = fmt;
636 /* Allocate dsp for in-band DTMF support */
637 if (i->dtmfmode & H323_DTMF_INBAND) {
638 i->vad = ast_dsp_new();
639 ast_dsp_set_features(i->vad, DSP_FEATURE_DTMF_DETECT);
642 /* Register the OpenH323 channel's functions. */
644 tmp->pvt->send_digit = oh323_digit;
645 tmp->pvt->call = oh323_call;
646 tmp->pvt->hangup = oh323_hangup;
647 tmp->pvt->answer = oh323_answer;
648 tmp->pvt->read = oh323_read;
649 tmp->pvt->write = oh323_write;
650 tmp->pvt->indicate = oh323_indicate;
651 tmp->pvt->fixup = oh323_fixup;
652 // tmp->pvt->bridge = ast_rtp_bridge;
654 /* Set the owner of this channel */
657 ast_pthread_mutex_lock(&usecnt_lock);
659 ast_pthread_mutex_unlock(&usecnt_lock);
660 ast_update_use_count();
661 strncpy(tmp->context, i->context, sizeof(tmp->context)-1);
662 strncpy(tmp->exten, i->exten, sizeof(tmp->exten)-1);
664 if (strlen(i->callerid))
665 tmp->callerid = strdup(i->callerid);
666 if (strlen(i->accountcode))
667 strncpy(tmp->accountcode, i->accountcode, sizeof(tmp->accountcode)-1);
669 tmp->amaflags = i->amaflags;
670 if (state != AST_STATE_DOWN) {
671 if (ast_pbx_start(tmp)) {
672 ast_log(LOG_WARNING, "Unable to start PBX on %s\n", tmp->name);
678 ast_log(LOG_WARNING, "Unable to allocate channel structure\n");
682 static struct oh323_pvt *oh323_alloc(int callid)
686 p = malloc(sizeof(struct oh323_pvt));
688 ast_log(LOG_ERROR, "Couldn't allocate private structure. This is bad\n");
692 /* Keep track of stuff */
693 memset(p, 0, sizeof(struct oh323_pvt));
694 p->rtp = ast_rtp_new(sched, io, 1, 0);
697 ast_log(LOG_WARNING, "Unable to create RTP session: %s\n", strerror(errno));
701 ast_rtp_settos(p->rtp, tos);
702 ast_pthread_mutex_init(&p->lock);
704 p->cd.call_reference = callid;
707 p->dtmfmode = dtmfmode;
708 if (p->dtmfmode & H323_DTMF_RFC2833)
709 p->nonCodecCapability |= AST_RTP_DTMF;
711 /* Add to interface list */
712 ast_pthread_mutex_lock(&iflock);
715 ast_pthread_mutex_unlock(&iflock);
719 static struct oh323_pvt *find_call(int call_reference)
723 ast_pthread_mutex_lock(&iflock);
727 if (p->cd.call_reference == call_reference) {
729 ast_pthread_mutex_unlock(&iflock);
734 ast_pthread_mutex_unlock(&iflock);
739 static struct ast_channel *oh323_request(char *type, int format, void *data)
744 struct ast_channel *tmpc = NULL;
751 ast_log(LOG_DEBUG, "type=%s, format=%d, data=%s.\n", type, format, (char *)data);
754 format &= capability;
756 ast_log(LOG_NOTICE, "Asked to get a channel of unsupported format '%d'\n", format);
760 strncpy(tmp, dest, sizeof(tmp) - 1);
762 host = strchr(tmp, '@');
772 strtok_r(host, "/", &(h323id));
782 ast_log(LOG_WARNING, "Unable to build pvt data for '%s'\n", (char *)data);
786 /* Assign a default capability */
787 p->capability = capability;
790 if (p->dtmfmode & H323_DTMF_RFC2833)
791 p->nonCodecCapability |= AST_RTP_DTMF;
793 p->nonCodecCapability &= ~AST_RTP_DTMF;
797 ast_log(LOG_DEBUG, "Host: %s\tUsername: %s\n", host, p->username);
800 strncpy(p->username, ext, sizeof(p->username) - 1);
801 tmpc = oh323_new(p, AST_STATE_DOWN, host);
810 struct oh323_alias *find_alias(const char *source_aliases)
812 struct oh323_alias *a;
818 if (!strcasecmp(a->name, source_aliases)) {
826 struct oh323_user *find_user(const char *source_aliases)
828 struct oh323_user *u;
834 if (!strcasecmp(u->name, source_aliases)) {
843 struct oh323_peer *find_peer(char *dest_peer)
845 struct oh323_peer *p;
850 if (!strcasecmp(p->name, dest_peer)) {
860 * Callback for sending digits from H.323 up to asterisk
863 int send_digit(unsigned call_reference, char digit)
868 ast_log(LOG_DEBUG, "Recieved Digit: %c\n", digit);
869 p = find_call(call_reference);
872 ast_log(LOG_ERROR, "Private structure not found in send_digit.\n");
875 memset(&f, 0, sizeof(f));
876 f.frametype = AST_FRAME_DTMF;
883 f.src = "SEND_DIGIT";
885 return ast_queue_frame(p->owner, &f, 1);
889 * Call-back function that gets called when any H.323 connection is made
891 * Returns the local RTP port
893 int create_connection(unsigned call_reference)
896 struct sockaddr_in us;
898 p = find_call(call_reference);
901 ast_log(LOG_ERROR, "Unable to allocate private structure, this is very bad.\n");
905 /* figure out our local RTP port and tell the H.323 stack about it*/
906 ast_rtp_get_us(p->rtp, &us);
907 return ntohs(us.sin_port);
911 * Call-back function for incoming calls
913 * Returns 1 on success
916 int setup_incoming_call(call_details_t cd)
919 struct oh323_pvt *p = NULL;
920 struct ast_channel *c = NULL;
921 struct oh323_user *user = NULL;
922 struct oh323_alias *alias = NULL;
924 /* allocate the call*/
925 p = oh323_alloc(cd.call_reference);
928 ast_log(LOG_ERROR, "Unable to allocate private structure, this is bad.\n");
932 /* Populate the call details in the private structure */
933 p->cd.call_token = cd.call_token;
934 p->cd.call_source_aliases = cd.call_source_aliases;
935 p->cd.call_dest_alias = cd.call_dest_alias;
936 p->cd.call_source_e164 = cd.call_source_e164;
937 p->cd.call_dest_e164 = cd.call_dest_e164;
940 printf(" == Setting up Call\n");
941 printf(" -- Calling party name: %s\n", p->cd.call_source_aliases);
942 printf(" -- Calling party number: %s\n", p->cd.call_source_e164);
943 printf(" -- Called party name: %s\n", p->cd.call_dest_alias);
944 printf(" -- Called party number: %s\n", p->cd.call_dest_e164);
947 /* Decide if we are allowing Gatekeeper routed calls*/
948 if ((!strcasecmp(cd.sourceIp, gatekeeper)) && (gkroute == -1) && (usingGk == 1)) {
950 if (strlen(cd.call_dest_e164)) {
951 strncpy(p->exten, cd.call_dest_e164, sizeof(p->exten)-1);
952 strncpy(p->context, default_context, sizeof(p->context)-1);
954 alias = find_alias(cd.call_dest_alias);
957 ast_log(LOG_ERROR, "Call for %s rejected, alias not found\n", cd.call_dest_alias);
960 printf("Alias found: %s and %s\n", alias->name, alias->context);
962 strncpy(p->exten, alias->name, sizeof(p->exten)-1);
963 strncpy(p->context, alias->context, sizeof(p->context)-1);
966 sprintf(p->callerid, "%s <%s>", p->cd.call_source_aliases, p->cd.call_source_e164);
969 /* Either this call is not from the Gatekeeper
970 or we are not allowing gk routed calls */
972 user = find_user(cd.call_source_aliases);
975 sprintf(p->callerid, "%s <%s>", p->cd.call_source_aliases, p->cd.call_source_e164);
976 if (strlen(p->cd.call_dest_e164)) {
977 strncpy(p->exten, cd.call_dest_e164, sizeof(p->exten)-1);
979 strncpy(p->exten, cd.call_dest_alias, sizeof(p->exten)-1);
981 if (!strlen(default_context)) {
982 ast_log(LOG_ERROR, "Call from user '%s' rejected due to no default context\n", p->cd.call_source_aliases);
985 strncpy(p->context, default_context, sizeof(p->context)-1);
986 ast_log(LOG_DEBUG, "Sending %s to context [%s]\n", cd.call_source_aliases, p->context);
989 if (strcasecmp(cd.sourceIp, inet_ntoa(user->addr.sin_addr))){
991 if(!strlen(default_context)) {
992 ast_log(LOG_ERROR, "Call from user '%s' rejected due to non-matching IP address of '%s'\n", user->name, cd.sourceIp);
995 strncpy(p->context, default_context, sizeof(p->context)-1);
996 sprintf(p->exten,"i");
1000 if (user->incominglimit > 0) {
1001 if (user->inUse >= user->incominglimit) {
1002 ast_log(LOG_ERROR, "Call from user '%s' rejected due to usage limit of %d\n", user->name, user->incominglimit);
1006 strncpy(p->context, user->context, sizeof(p->context)-1);
1007 p->bridge = user->bridge;
1009 if (strlen(user->callerid))
1010 strncpy(p->callerid, user->callerid, sizeof(p->callerid) - 1);
1012 sprintf(p->callerid, "%s <%s>", p->cd.call_source_aliases, p->cd.call_source_e164);
1014 if (strlen(p->cd.call_dest_e164)) {
1015 strncpy(p->exten, cd.call_dest_e164, sizeof(p->exten)-1);
1017 strncpy(p->exten, cd.call_dest_alias, sizeof(p->exten)-1);
1020 if (strlen(user->accountcode)) {
1021 strncpy(p->accountcode, user->accountcode, sizeof(p->accountcode)-1);
1024 /* Increment the usage counter */
1029 /* I know this is horrid, don't kill me saddam */
1031 /* allocate a channel and tell asterisk about it */
1032 c = oh323_new(p, AST_STATE_RINGING, cd.call_token);
1035 ast_log(LOG_ERROR, "Couldn't create channel. This is bad\n");
1043 * Call-back function to establish an outgoing H.323 call
1045 * Returns 1 on success
1047 int setup_outgoing_call(call_details_t cd)
1053 if (p->inUse >= p->outgoinglimit) {
1054 ast_log(LOG_ERROR, "Call to %s rejected due to usage limit of %d outgoing channels\n", p->name, p->inUse);
1059 ast_log(LOG_ERROR, "Rejecting call: peer %s not found\n", dest_peer);
1065 * Call-back function that gets called for each rtp channel opened
1069 void setup_rtp_connection(unsigned call_reference, const char *remoteIp, int remotePort)
1071 struct oh323_pvt *p = NULL;
1072 struct sockaddr_in them;
1074 /* Find the call or allocate a private structure if call not found */
1075 p = find_call(call_reference);
1078 ast_log(LOG_ERROR, "Something is wrong: rtp\n");
1082 them.sin_family = AF_INET;
1083 them.sin_addr.s_addr = inet_addr(remoteIp); // only works for IPv4
1084 them.sin_port = htons(remotePort);
1085 ast_rtp_set_peer(p->rtp, &them);
1091 * Call-back function to signal asterisk that the channel has been answered
1094 void connection_made(unsigned call_reference)
1096 struct ast_channel *c = NULL;
1097 struct oh323_pvt *p = NULL;
1099 p = find_call(call_reference);
1102 ast_log(LOG_ERROR, "Something is wrong: connection\n");
1106 printf("Channel has no owner\n");
1111 ast_setstate(c, AST_STATE_UP);
1116 * Call-back function to cleanup communication
1119 void cleanup_connection(call_details_t cd)
1121 struct oh323_pvt *p = NULL;
1122 // struct oh323_peer *peer = NULL;
1123 struct oh323_user *user = NULL;
1124 struct ast_rtp *rtp = NULL;
1126 ast_log(LOG_DEBUG, "Cleaning up our mess\n");
1128 p = find_call(cd.call_reference);
1134 /* Decrement usage counter */
1136 user = find_user(cd.call_source_aliases);
1144 peer = find_peer(cd.call_dest_alias);
1147 user = find_user(cd.call_source_aliases);
1155 /* Immediately stop RTP */
1156 ast_rtp_destroy(rtp);
1163 ast_queue_hangup(p->owner, 1);
1169 static void *do_monitor(void *data)
1172 struct oh323_pvt *oh323 = NULL;
1175 /* Check for interfaces needing to be killed */
1176 ast_pthread_mutex_lock(&iflock);
1180 if (oh323->needdestroy) {
1181 __oh323_destroy(oh323);
1184 oh323 = oh323->next;
1186 ast_pthread_mutex_unlock(&iflock);
1188 pthread_testcancel();
1190 /* Wait for sched or io */
1191 res = ast_sched_wait(sched);
1192 if ((res < 0) || (res > 1000))
1194 res = ast_io_wait(io, res);
1195 ast_pthread_mutex_lock(&monlock);
1197 ast_sched_runq(sched);
1198 ast_pthread_mutex_unlock(&monlock);
1205 static int restart_monitor(void)
1207 /* If we're supposed to be stopped -- stay stopped */
1208 if (monitor_thread == -2)
1210 if (ast_pthread_mutex_lock(&monlock)) {
1211 ast_log(LOG_WARNING, "Unable to lock monitor\n");
1214 if (monitor_thread == pthread_self()) {
1215 ast_pthread_mutex_unlock(&monlock);
1216 ast_log(LOG_WARNING, "Cannot kill myself\n");
1219 if (monitor_thread) {
1220 /* Wake up the thread */
1221 pthread_kill(monitor_thread, SIGURG);
1223 /* Start a new monitor */
1224 if (pthread_create(&monitor_thread, NULL, do_monitor, NULL) < 0) {
1225 ast_pthread_mutex_unlock(&monlock);
1226 ast_log(LOG_ERROR, "Unable to start monitor thread.\n");
1230 ast_pthread_mutex_unlock(&monlock);
1234 static int h323_do_trace(int fd, int argc, char *argv[])
1237 return RESULT_SHOWUSAGE;
1239 h323_debug(1, atoi(argv[2]));
1240 ast_cli(fd, "H.323 trace set to level %s\n", argv[2]);
1241 return RESULT_SUCCESS;
1244 static int h323_no_trace(int fd, int argc, char *argv[])
1247 return RESULT_SHOWUSAGE;
1250 ast_cli(fd, "H.323 trace disabled\n");
1251 return RESULT_SUCCESS;
1254 static int h323_do_debug(int fd, int argc, char *argv[])
1257 return RESULT_SHOWUSAGE;
1260 ast_cli(fd, "H323 debug enabled\n");
1261 return RESULT_SUCCESS;
1264 static int h323_no_debug(int fd, int argc, char *argv[])
1267 return RESULT_SHOWUSAGE;
1270 ast_cli(fd, "H323 Debug disabled\n");
1271 return RESULT_SUCCESS;
1274 static int h323_gk_cycle(int fd, int argc, char *argv[])
1277 return RESULT_SHOWUSAGE;
1281 /* Possibly register with a GK */
1282 if (gatekeeper_disable == 0) {
1283 if (h323_set_gk(gatekeeper_discover, gatekeeper, secret)) {
1284 ast_log(LOG_ERROR, "Gatekeeper registration failed.\n");
1289 return RESULT_SUCCESS;
1293 static char trace_usage[] =
1294 "Usage: h.323 trace <level num>\n"
1295 " Enables H.323 stack tracing for debugging purposes\n";
1297 static char no_trace_usage[] =
1298 "Usage: h.323 no trace\n"
1299 " Disables H.323 stack tracing for debugging purposes\n";
1301 static char debug_usage[] =
1302 "Usage: h.323 debug\n"
1303 " Enables chan_h323 debug output\n";
1305 static char no_debug_usage[] =
1306 "Usage: h.323 no debug\n"
1307 " Disables chan_h323 debug output\n";
1309 static char show_codec_usage[] =
1310 "Usage: h.323 show codec\n"
1311 " Shows all enabled codecs\n";
1313 static char show_cycle_usage[] =
1314 "Usage: h.323 gk cycle\n"
1315 " Manually re-register with the Gatekeper\n";
1318 static struct ast_cli_entry cli_trace =
1319 { { "h.323", "trace", NULL }, h323_do_trace, "Enable H.323 Stack Tracing", trace_usage };
1320 static struct ast_cli_entry cli_no_trace =
1321 { { "h.323", "no", "trace", NULL }, h323_no_trace, "Disable H.323 Stack Tracing", no_trace_usage };
1322 static struct ast_cli_entry cli_debug =
1323 { { "h.323", "debug", NULL }, h323_do_debug, "Enable chan_h323 debug", debug_usage };
1324 static struct ast_cli_entry cli_no_debug =
1325 { { "h.323", "no", "debug", NULL }, h323_no_debug, "Disable chan_h323 debug", no_debug_usage };
1326 static struct ast_cli_entry cli_show_codecs =
1327 { { "h.323", "show", "codecs", NULL }, h323_show_codec, "Show enabled codecs", show_codec_usage };
1328 static struct ast_cli_entry cli_gk_cycle =
1329 { { "h.323", "gk", "cycle", NULL }, h323_gk_cycle, "Manually re-register with the Gatekeper", show_cycle_usage };
1337 struct ast_config *cfg;
1338 struct ast_variable *v;
1339 struct oh323_peer *peer = NULL;
1340 struct oh323_user *user = NULL;
1341 struct oh323_alias *alias = NULL;
1346 cfg = ast_load(config);
1348 /* We *must* have a config file otherwise stop immediately */
1350 ast_log(LOG_NOTICE, "Unable to load config %s, H.323 disabled\n", config);
1355 dtmfmode = H323_DTMF_RFC2833;
1357 memset(&bindaddr, 0, sizeof(bindaddr));
1359 v = ast_variable_browse(cfg, "general");
1361 /* Create the interface list */
1362 if (!strcasecmp(v->name, "port")) {
1363 port = (int)strtol(v->value, NULL, 10);
1364 } else if (!strcasecmp(v->name, "bindaddr")) {
1365 if (!(hp = gethostbyname(v->value))) {
1366 ast_log(LOG_WARNING, "Invalid address: %s\n", v->value);
1368 memcpy(&bindaddr.sin_addr, hp->h_addr, sizeof(bindaddr.sin_addr));
1370 } else if (!strcasecmp(v->name, "allow")) {
1371 format = ast_getformatbyname(v->value);
1373 ast_log(LOG_WARNING, "Cannot allow unknown format '%s'\n", v->value);
1375 capability |= format;
1376 } else if (!strcasecmp(v->name, "disallow")) {
1377 format = ast_getformatbyname(v->value);
1379 ast_log(LOG_WARNING, "Cannot disallow unknown format '%s'\n", v->value);
1381 capability &= ~format;
1382 } else if (!strcasecmp(v->name, "tos")) {
1383 if (sscanf(v->value, "%i", &format) == 1)
1384 tos = format & 0xff;
1385 else if (!strcasecmp(v->value, "lowdelay"))
1386 tos = IPTOS_LOWDELAY;
1387 else if (!strcasecmp(v->value, "throughput"))
1388 tos = IPTOS_THROUGHPUT;
1389 else if (!strcasecmp(v->value, "reliability"))
1390 tos = IPTOS_RELIABILITY;
1391 else if (!strcasecmp(v->value, "mincost"))
1392 tos = IPTOS_MINCOST;
1393 else if (!strcasecmp(v->value, "none"))
1396 ast_log(LOG_WARNING, "Invalid tos value at line %d, should be 'lowdelay', 'throughput', 'reliability', 'mincost', or 'none'\n", v->lineno);
1397 } else if (!strcasecmp(v->name, "gatekeeper")) {
1398 if (!strcasecmp(v->value, "DISABLE")) {
1399 gatekeeper_disable = 1;
1401 } else if (!strcasecmp(v->value, "DISCOVER")) {
1402 gatekeeper_disable = 0;
1403 gatekeeper_discover = 1;
1406 gatekeeper_disable = 0;
1408 strncpy(gatekeeper, v->value, sizeof(gatekeeper)-1);
1410 } else if (!strcasecmp(v->name, "secret")) {
1411 strncpy(secret, v->value, sizeof(secret)-1);
1412 } else if (!strcasecmp(v->name, "AllowGKRouted")) {
1413 gkroute = ast_true(v->value);
1414 } else if (!strcasecmp(v->name, "context")) {
1415 strncpy(default_context, v->value, sizeof(default_context)-1);
1416 printf(" == Setting default context to %s\n", default_context);
1417 } else if (!strcasecmp(v->name, "dtmfmode")) {
1418 if (!strcasecmp(v->value, "inband"))
1419 dtmfmode=H323_DTMF_INBAND;
1420 else if (!strcasecmp(v->value, "rfc2833"))
1421 dtmfmode = H323_DTMF_RFC2833;
1423 ast_log(LOG_WARNING, "Unknown dtmf mode '%s', using rfc2833\n", v->value);
1424 dtmfmode = H323_DTMF_RFC2833;
1430 cat = ast_category_browse(cfg, NULL);
1432 if (strcasecmp(cat, "general")) {
1433 utype = ast_variable_retrieve(cfg, cat, "type");
1435 if (!strcasecmp(utype, "user") || !strcasecmp(utype, "friend")) {
1436 user = build_user(cat, ast_variable_browse(cfg, cat));
1438 ast_pthread_mutex_lock(&userl.lock);
1439 user->next = userl.users;
1441 ast_pthread_mutex_unlock(&userl.lock);
1443 } else if (!strcasecmp(utype, "peer") || !strcasecmp(utype, "friend")) {
1444 peer = build_peer(cat, ast_variable_browse(cfg, cat));
1446 ast_pthread_mutex_lock(&peerl.lock);
1447 peer->next = peerl.peers;
1449 ast_pthread_mutex_unlock(&peerl.lock);
1451 } else if (!strcasecmp(utype, "h323")) {
1452 alias = build_alias(cat, ast_variable_browse(cfg, cat));
1454 ast_pthread_mutex_lock(&aliasl.lock);
1455 alias->next = aliasl.aliases;
1456 aliasl.aliases = alias;
1457 ast_pthread_mutex_unlock(&aliasl.lock);
1460 ast_log(LOG_WARNING, "Unknown type '%s' for '%s' in %s\n", utype, cat, config);
1463 ast_log(LOG_WARNING, "Section '%s' lacks type\n", cat);
1465 cat = ast_category_browse(cfg, cat);
1468 /* Register our H.323 aliases if any*/
1470 if (h323_set_alias(alias)) {
1471 ast_log(LOG_ERROR, "Alias %s rejected by endpoint\n", alias->name);
1474 alias = alias->next;
1477 /* Add some capabilities */
1478 if(h323_set_capability(capability, dtmfmode)) {
1479 ast_log(LOG_ERROR, "Capabilities failure, this is bad.\n");
1487 void delete_users(void)
1489 struct oh323_user *user, *userlast;
1490 struct oh323_peer *peer;
1492 /* Delete all users */
1493 ast_pthread_mutex_lock(&userl.lock);
1494 for (user=userl.users;user;) {
1500 ast_pthread_mutex_unlock(&userl.lock);
1501 ast_pthread_mutex_lock(&peerl.lock);
1502 for (peer=peerl.peers;peer;) {
1503 /* Assume all will be deleted, and we'll find out for sure later */
1507 ast_pthread_mutex_unlock(&peerl.lock);
1510 void delete_aliases(void)
1512 struct oh323_alias *alias, *aliaslast;
1514 /* Delete all users */
1515 ast_pthread_mutex_lock(&aliasl.lock);
1516 for (alias=aliasl.aliases;alias;) {
1521 aliasl.aliases=NULL;
1522 ast_pthread_mutex_unlock(&aliasl.lock);
1525 void prune_peers(void)
1527 /* Prune peers who still are supposed to be deleted */
1528 struct oh323_peer *peer, *peerlast, *peernext;
1529 ast_pthread_mutex_lock(&peerl.lock);
1531 for (peer=peerl.peers;peer;) {
1532 peernext = peer->next;
1536 peerlast->next = peernext;
1538 peerl.peers = peernext;
1543 ast_pthread_mutex_unlock(&peerl.lock);
1552 if (strlen(gatekeeper)) {
1558 /* Possibly register with a GK */
1559 if (gatekeeper_disable == 0) {
1560 if (h323_set_gk(gatekeeper_discover, gatekeeper, secret)) {
1561 ast_log(LOG_ERROR, "Gatekeeper registration failed.\n");
1571 static struct ast_rtp *oh323_get_rtp_peer(struct ast_channel *chan)
1573 struct oh323_pvt *p;
1575 if (p && p->rtp && p->bridge)
1580 static struct ast_rtp *oh323_get_vrtp_peer(struct ast_channel *chan)
1585 static int oh323_set_rtp_peer(struct ast_channel *chan, struct ast_rtp *rtp, struct ast_rtp *vrtp)
1587 /* XXX Deal with Video */
1589 struct oh323_pvt *p;
1590 struct sockaddr_in them;
1591 struct sockaddr_in us;
1598 ast_log(LOG_ERROR, "No Private Structure, this is bad\n");
1602 ast_rtp_get_peer(rtp, &them);
1603 printf("peer is now: %s\n", inet_ntoa(them.sin_addr));
1605 ast_rtp_set_peer(p->rtp, &them);
1606 ast_rtp_get_us(p->rtp, &us);
1608 h323_native_bridge(p->cd.call_token, inet_ntoa(them.sin_addr), inet_ntoa(us.sin_addr));
1614 static struct ast_rtp_protocol oh323_rtp = {
1615 get_rtp_info: oh323_get_rtp_peer,
1616 get_vrtp_info: oh323_get_vrtp_peer,
1617 set_rtp_peer: oh323_set_rtp_peer,
1625 /* fire up the H.323 Endpoint */
1626 h323_end_point_create();
1628 res = reload_config();
1630 /* Make sure we can register our channel type */
1631 if (ast_channel_register(type, tdesc, capability, oh323_request)) {
1632 ast_log(LOG_ERROR, "Unable to register channel class %s\n", type);
1636 ast_cli_register(&cli_debug);
1637 ast_cli_register(&cli_no_debug);
1638 ast_cli_register(&cli_trace);
1639 ast_cli_register(&cli_no_trace);
1640 ast_cli_register(&cli_show_codecs);
1641 ast_cli_register(&cli_gk_cycle);
1643 oh323_rtp.type = type;
1644 ast_rtp_proto_register(&oh323_rtp);
1646 sched = sched_context_create();
1648 ast_log(LOG_WARNING, "Unable to create schedule context\n");
1650 io = io_context_create();
1652 ast_log(LOG_WARNING, "Unable to create I/O context\n");
1655 /* Register our callback functions */
1656 h323_callback_register(setup_incoming_call,
1657 setup_outgoing_call,
1659 setup_rtp_connection,
1661 connection_made, send_digit);
1663 /* start the h.323 listener */
1664 if (h323_start_listener(port, bindaddr)) {
1665 ast_log(LOG_ERROR, "Unable to create H323 listener.\n");
1666 // h323_end_process();
1670 /* Possibly register with a GK */
1671 if (gatekeeper_disable == 0) {
1672 if (h323_set_gk(gatekeeper_discover, gatekeeper, secret)) {
1673 ast_log(LOG_ERROR, "Gatekeeper registration failed.\n");
1674 // h323_end_process();
1678 /* And start the monitor for the first time */
1687 struct oh323_pvt *p, *pl;
1689 if (!ast_pthread_mutex_lock(&iflock)) {
1690 /* hangup all interfaces if they have an owner */
1694 ast_softhangup(p->owner, AST_SOFTHANGUP_APPUNLOAD);
1698 ast_pthread_mutex_unlock(&iflock);
1700 ast_log(LOG_WARNING, "Unable to lock the interface list\n");
1704 if (!ast_pthread_mutex_lock(&iflock)) {
1705 /* destroy all the interfaces and free their memory */
1710 /* free associated memory */
1714 ast_pthread_mutex_unlock(&iflock);
1716 ast_log(LOG_WARNING, "Unable to lock the interface list\n");
1722 /* unregister rtp */
1723 ast_rtp_proto_unregister(&oh323_rtp);
1725 /* unregister commands */
1726 ast_cli_unregister(&cli_debug);
1727 ast_cli_unregister(&cli_no_debug);
1728 ast_cli_unregister(&cli_trace);
1729 ast_cli_unregister(&cli_no_trace);
1730 ast_cli_unregister(&cli_show_codecs);
1731 ast_cli_unregister(&cli_gk_cycle);
1733 /* unregister channel type */
1734 ast_channel_unregister(type);
1743 ast_pthread_mutex_lock(&usecnt_lock);
1745 ast_pthread_mutex_unlock(&usecnt_lock);
1756 return ASTERISK_GPL_KEY;