Skip to content
Snippets Groups Projects
chan_h323.c 49.7 KiB
Newer Older
  • Learn to ignore specific revisions
  • Jeremy McNamara's avatar
    Jeremy McNamara committed
     * chan_h323.c
    
     *
     * OpenH323 Channel Driver for ASTERISK PBX.
     *			By Jeremy McNamara
     *                      For The NuFone Network 
     *
    
     * This code has been derived from code created by
     *              Michael Manousos and Mark Spencer
    
     *
     * This file is part of the chan_h323 driver for Asterisk
     *
     * chan_h323 is free software; you can redistribute it and/or modify
     * it under the terms of the GNU General Public License as published by
     * the Free Software Foundation; either version 2 of the License, or
     * (at your option) any later version. 
     *
     * chan_h323 is distributed WITHOUT ANY WARRANTY; without even 
     * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR 
     * PURPOSE. See the GNU General Public License for more details. 
     *
     * You should have received a copy of the GNU General Public License
     * along with this program; if not, write to the Free Software
     * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. 
     *
    
    Jeremy McNamara's avatar
    Jeremy McNamara committed
     * Version Info: $Id$
    
     */
    
    
    #include <stdio.h>
    #include <pthread.h>
    #include <string.h>
    #include <asterisk/lock.h>
    #include <asterisk/logger.h>
    #include <asterisk/channel.h>
    #include <asterisk/channel_pvt.h>
    #include <asterisk/config.h>
    #include <asterisk/module.h>
    #include <asterisk/pbx.h>
    #include <asterisk/options.h>
    
    Jeremy McNamara's avatar
    Jeremy McNamara committed
    #include <asterisk/utils.h>
    
    #include <asterisk/lock.h>
    #include <asterisk/sched.h>
    #include <asterisk/io.h>
    #include <asterisk/rtp.h>
    #include <asterisk/acl.h>
    #include <asterisk/callerid.h>
    #include <asterisk/cli.h>
    #include <asterisk/dsp.h>
    #include <sys/socket.h>
    #include <net/if.h>
    #include <errno.h>
    #include <unistd.h>
    #include <stdlib.h>
    #include <fcntl.h>
    #include <netdb.h>
    #include <sys/signal.h>
    
    #ifdef __OpenBSD__
    #include <netinet/in_systm.h>
    #ifndef IPTOS_MINCOST
    #define IPTOS_MINCOST 0x02
    #endif
    #endif
    
    #include <netinet/ip.h>
    
    #include "h323/chan_h323.h"
    
    
    /** String variables required by ASTERISK */
    static char *type	= "H323";
    static char *desc	= "The NuFone Network's Open H.323 Channel Driver";
    static char *tdesc	= "The NuFone Network's Open H.323 Channel Driver";
    static char *config = "h323.conf";
    
    static char default_context[AST_MAX_EXTENSION];
    
    /** H.323 configuration values */
    static char gatekeeper[100];
    
    static int  gatekeeper_disable = 1;
    static int  gatekeeper_discover = 0;
    
    static int  usingGk;
    
    static int  port = 1720;
    
    static int  gkroute = 0;
    
    
    /* to find user by alias is default, alternative is the incomming call's source IP address*/
    
    static int  userbyalias = 1;
    
    static int  bridge_default = 1;
    
    
    /* Just about everybody seems to support ulaw, so make it a nice default */
    static int capability = AST_FORMAT_ULAW;
    
    /* TOS flag */
    static int tos = 0;
    
    static int dtmfmode = H323_DTMF_RFC2833;
    
    static char secret[50];
    
    /** Private structure of a OpenH323 channel */
    struct oh323_pvt {
    
    Jeremy McNamara's avatar
    Jeremy McNamara committed
    	ast_mutex_t lock;					/* Channel private lock */
    
    	call_options_t calloptions;				/* Options to be used during call setup */
    
    	int alreadygone;					/* Whether or not we've already been destroyed by our peer */
    
    	int needdestroy;					/* if we need to be destroyed */
    	call_details_t cd;					/* Call details */
    
    	struct ast_channel *owner;				/* Who owns us */
    
    	int capability;						/* audio capability */
    	int nonCodecCapability;					/* non-audio capability */
    	int outgoing;						/* Outgoing or incoming call? */
    	int nat;						/* Are we talking to a NAT EP?*/
    	int bridge;						/* Determine of we should native bridge or not*/
    	char exten[AST_MAX_EXTENSION];				/* Requested extension */
    	char context[AST_MAX_EXTENSION];			/* Context where to start */
    	char username[81];					/* H.323 alias using this channel */
    
    	char accountcode[256];					/* Account code */
    
    	int amaflags;						/* AMA Flags */
    	char callerid[80];					/* Caller*ID if available */
    
    	struct ast_rtp *rtp;					/* RTP Session */
    
    	int dtmfmode;						/* What DTMF Mode is being used */
    
    	struct ast_dsp *vad;					/* Used for in-band DTMF detection */
    	struct oh323_pvt *next;					/* Next channel in list */
    } *iflist = NULL;
    
    static struct ast_user_list {
    	struct oh323_user *users;
    
    Jeremy McNamara's avatar
    Jeremy McNamara committed
    	ast_mutex_t lock;
    
    } userl = { NULL, AST_MUTEX_INITIALIZER };
    
    static struct ast_peer_list {
    	struct oh323_peer *peers;
    
    Jeremy McNamara's avatar
    Jeremy McNamara committed
    	ast_mutex_t lock;
    
    } peerl = { NULL, AST_MUTEX_INITIALIZER };
    
    static struct ast_alias_list {
    	struct oh323_alias *aliases;
    
    Jeremy McNamara's avatar
    Jeremy McNamara committed
    	ast_mutex_t lock;
    
    } aliasl = { NULL, AST_MUTEX_INITIALIZER };
    
    /** Asterisk RTP stuff*/
    static struct sched_context *sched;
    static struct io_context *io;
    
    /** Protect the interface list (of oh323_pvt's) */
    
    AST_MUTEX_DEFINE_STATIC(iflock);
    
    
    /** Usage counter and associated lock */
    static int usecnt =0;
    
    AST_MUTEX_DEFINE_STATIC(usecnt_lock);
    
    
    /* Protect the monitoring thread, so only one process can kill or start it, and not
       when it's doing something critical. */
    
    AST_MUTEX_DEFINE_STATIC(monlock);
    
    
    /* This is the thread for the monitor which checks for input on the channels
       which are not currently in use.  */
    
    static pthread_t monitor_thread = AST_PTHREADT_NULL;
    
    
    static int restart_monitor(void);
    
    static void __oh323_destroy(struct oh323_pvt *p)
    {
    	struct oh323_pvt *cur, *prev = NULL;
    	
    	if (p->rtp) {
    		ast_rtp_destroy(p->rtp);
    	}
    	
    	/* Unlink us from the owner if we have one */
    	if (p->owner) {
    
    Jeremy McNamara's avatar
    Jeremy McNamara committed
    		ast_mutex_lock(&p->owner->lock);
    
    		ast_log(LOG_DEBUG, "Detaching from %s\n", p->owner->name);
    		p->owner->pvt->pvt = NULL;
    
    Jeremy McNamara's avatar
    Jeremy McNamara committed
    		ast_mutex_unlock(&p->owner->lock);
    
    	}
    	cur = iflist;
    	while(cur) {
    		if (cur == p) {
    			if (prev)
    				prev->next = cur->next;
    			else
    				iflist = cur->next;
    			break;
    		}
    		prev = cur;
    		cur = cur->next;
    	}
    	if (!cur) {
    		ast_log(LOG_WARNING, "%p is not in list?!?! \n", cur);
    	} else
    		free(p);
    }
    
    static void oh323_destroy(struct oh323_pvt *p)
    {
    
    Jeremy McNamara's avatar
    Jeremy McNamara committed
    	ast_mutex_lock(&iflock);
    
    	__oh323_destroy(p);
    
    Jeremy McNamara's avatar
    Jeremy McNamara committed
    	ast_mutex_unlock(&iflock);
    
    }
    
    static struct oh323_alias *build_alias(char *name, struct ast_variable *v)
    {
    	struct oh323_alias *alias;
    
    	alias = (struct oh323_alias *)malloc(sizeof(struct oh323_alias));
    
    	if (alias) {
    		memset(alias, 0, sizeof(struct oh323_alias));
    		strncpy(alias->name, name, sizeof(alias->name)-1);
    
    		while (v) {
    			if (!strcasecmp(v->name, "e164")) {
    
    				strncpy(alias->e164,  v->value, sizeof(alias->e164)-1);
    
    			} else if (!strcasecmp(v->name, "prefix")) {
    
    				strncpy(alias->prefix,  v->value, sizeof(alias->prefix)-1);
    
    			} else if (!strcasecmp(v->name, "context")) {
    				strncpy(alias->context,  v->value, sizeof(alias->context)-1);
    			} else if (!strcasecmp(v->name, "secret")) {
    
    				strncpy(alias->secret,  v->value, sizeof(alias->secret)-1);
    
    				if (strcasecmp(v->value, "h323")) { 	
    
    					ast_log(LOG_WARNING, "Keyword %s does not make sense in type=h323\n", v->value);
    
    			}
    			v = v->next;
    		}
    	}
    	return alias;
    }
    
    static struct oh323_user *build_user(char *name, struct ast_variable *v)
    {
    	struct oh323_user *user;
    	int format;
    	
    	user = (struct oh323_user *)malloc(sizeof(struct oh323_user));
    	if (user) {
    		memset(user, 0, sizeof(struct oh323_user));
    		strncpy(user->name, name, sizeof(user->name)-1);
    		
    		/* set the usage flag to a sane starting value*/
    		user->inUse = 0;
    		/* Assume we can native bridge */
    
    
    		while(v) {
    			if (!strcasecmp(v->name, "context")) {
    				strncpy(user->context, v->value, sizeof(user->context)-1);
    			} else if (!strcasecmp(v->name, "bridge")) {
    				user->bridge = ast_true(v->value);
    
                          } else if (!strcasecmp(v->name, "nat")) {
                                  user->nat = ast_true(v->value);
    
    			} else if (!strcasecmp(v->name, "noFastStart")) {
    
    			} else if (!strcasecmp(v->name, "noH245Tunneling")) {
    
    			} else if (!strcasecmp(v->name, "noSilenceSuppression")) {
    
    				user->noSilenceSuppression = ast_true(v->value);
    
    			} else if (!strcasecmp(v->name, "secret")) {
    				strncpy(user->secret, v->value, sizeof(user->secret)-1);
    
    			} else if (!strcasecmp(v->name, "callerid")) {
    				strncpy(user->callerid, v->value, sizeof(user->callerid)-1);
    
    			} else if (!strcasecmp(v->name, "accountcode")) {
    				strncpy(user->accountcode, v->value, sizeof(user->accountcode)-1);
    			} else if (!strcasecmp(v->name, "incominglimit")) {
    				user->incominglimit = atoi(v->value);
    				if (user->incominglimit < 0)
    					user->incominglimit = 0;
    			} else if (!strcasecmp(v->name, "host")) {
    				if (!strcasecmp(v->value, "dynamic")) {
    					ast_log(LOG_ERROR, "Dynamic host configuration not implemented, yet!\n");
    					free(user);
    					return NULL;
    				} else if (ast_get_ip(&user->addr, v->value)) {
    					free(user);
    					return NULL;
    				} 
    
    				/* Let us know we need to use ip authentication */
    				user->host = 1;
    
    			} else if (!strcasecmp(v->name, "amaflags")) {
    				format = ast_cdr_amaflags2int(v->value);
    				if (format < 0) {
    					ast_log(LOG_WARNING, "Invalid AMA Flags: %s at line %d\n", v->value, v->lineno);
    				} else {
    					user->amaflags = format;
    				}
    			}
    			v = v->next;
    		}
    	}
    	return user;
    }
    
    
    static struct oh323_peer *build_peer(char *name, struct ast_variable *v)
    {
    	struct oh323_peer *peer;
    	struct oh323_peer *prev;
    	int found=0;
    	
    	prev = NULL;
    
    Jeremy McNamara's avatar
    Jeremy McNamara committed
    	ast_mutex_lock(&peerl.lock);
    
    	peer = peerl.peers;
    
    	while(peer) {
    		if (!strcasecmp(peer->name, name)) {	
    			break;
    		}
    		prev = peer;
    		peer = peer->next;
    	}
    
    	if (peer) {
    		found++;
    		/* Already in the list, remove it and it will be added back (or FREE'd) */
    		if (prev) {
    			prev->next = peer->next;
    		} else {
    			peerl.peers = peer->next;
    		}
    
    Jeremy McNamara's avatar
    Jeremy McNamara committed
    		ast_mutex_unlock(&peerl.lock);
    
     	} else {
    
    Jeremy McNamara's avatar
    Jeremy McNamara committed
    		ast_mutex_unlock(&peerl.lock);
    
    		peer = malloc(sizeof(struct oh323_peer));
    		memset(peer, 0, sizeof(struct oh323_peer));
    	}
    	if (peer) {
    		if (!found) {
    			strncpy(peer->name, name, sizeof(peer->name)-1);
    		}
    		
    		/* set the usage flag to a sane starting value*/
    		peer->inUse = 0;
    
    		while(v) {
    			if (!strcasecmp(v->name, "context")) {
    				strncpy(peer->context, v->value, sizeof(peer->context)-1);
    			}  else if (!strcasecmp(v->name, "bridge")) {
    				peer->bridge = ast_true(v->value);
    			} else if (!strcasecmp(v->name, "noFastStart")) {
    
    			} else if (!strcasecmp(v->name, "noH245Tunneling")) {
    
    			} else if (!strcasecmp(v->name, "noSilenceSuppression")) {
    
    				peer->noSilenceSuppression = ast_true(v->value);
    
    			} else if (!strcasecmp(v->name, "outgoinglimit")) {
    				peer->outgoinglimit = atoi(v->value);
    				if (peer->outgoinglimit > 0)
    					peer->outgoinglimit = 0;
    			} else if (!strcasecmp(v->name, "host")) {
    				if (!strcasecmp(v->value, "dynamic")) {
    					ast_log(LOG_ERROR, "Dynamic host configuration not implemented, yet!\n");
    					free(peer);
    					return NULL;
    				}
    				if (ast_get_ip(&peer->addr, v->value)) {
    						free(peer);
    						return NULL;
    				}
    			} 
    			v=v->next;
    		}
    	}
    	return peer;
    }
    
    
    
    /**
     * Send (play) the specified digit to the channel.
     * 
     */
    static int oh323_digit(struct ast_channel *c, char digit)
    {
    	struct oh323_pvt *p = c->pvt->pvt;
    	if (p && p->rtp && (p->dtmfmode & H323_DTMF_RFC2833)) {
    		ast_rtp_senddigit(p->rtp, digit);
    	}
    	/* If in-band DTMF is desired, send that */
    	if (p->dtmfmode & H323_DTMF_INBAND)
    		h323_send_tone(p->cd.call_token, digit);
    	return 0;
    }
    
    
    /**
     * Make a call over the specified channel to the specified 
     * destination. This function will parse the destination string
     * and determine the address-number to call.
     * Return -1 on error, 0 on success.
     */
    static int oh323_call(struct ast_channel *c, char *dest, int timeout)
    {
    	int res;
    	struct oh323_pvt *p = c->pvt->pvt;
    	char called_addr[256];
    
    
    	ast_log(LOG_DEBUG, "dest=%s, timeout=%d.\n", dest, timeout);
    
    	if ((c->_state != AST_STATE_DOWN) && (c->_state != AST_STATE_RESERVED)) {
    		ast_log(LOG_WARNING, "Line is already in use (%s)\n", c->name);
    		return -1;
    	}
    	
    	/* outgoing call */
    	p->outgoing = 1;
    
    	/* Clear the call token */
    	if ((p->cd).call_token == NULL)
    		(p->cd).call_token = (char *)malloc(128);
    
    	memset((char *)(p->cd).call_token, 0, 128);
    	
    	if (p->cd.call_token == NULL) {
    		ast_log(LOG_ERROR, "Not enough memory.\n");
    		return -1;
    	}
    
    	/* Build the address to call */
    	memset(called_addr, 0, sizeof(dest));
    	memcpy(called_addr, dest, sizeof(called_addr));
    
    
    	/* Copy callerid, if there is any */
    
    	if (c->callerid) {
    
                    memset(oldcid, 0, sizeof(oldcid));
                    memcpy(oldcid, c->callerid, strlen(c->callerid));
                    oldcid[sizeof(oldcid)-1] = '\0';
                    ast_callerid_parse(oldcid, &cidname, &cid);
                    if (p->calloptions.callerid) {
                            free(p->calloptions.callerid);
                            p->calloptions.callerid = NULL;
                    }
                    if (p->calloptions.callername) {
                            free(p->calloptions.callername);
                            p->calloptions.callername = NULL;
                    }
                    p->calloptions.callerid = (char*)malloc(256);
                    if (p->calloptions.callerid == NULL) {
                            ast_log(LOG_ERROR, "Not enough memory.\n");
                            return(-1);
                    }
                    memset(p->calloptions.callerid, 0, 256);
                    if ((cid != NULL)&&(strlen(cid) > 0))
                            strncpy(p->calloptions.callerid, cid, 255);
    
                    p->calloptions.callername = (char*)malloc(256);
                    if (p->calloptions.callername == NULL) {
                            ast_log(LOG_ERROR, "Not enough memory.\n");
                            return(-1);
                    }
                    memset(p->calloptions.callername, 0, 256);
                    if ((cidname != NULL)&&(strlen(cidname) > 0))
                            strncpy(p->calloptions.callername, cidname, 255);
    
            } else {
                    if (p->calloptions.callerid) {
                            free(p->calloptions.callerid);
                            p->calloptions.callerid = NULL;
                    }
                    if (p->calloptions.callername) {
                            free(p->calloptions.callername);
                            p->calloptions.callername = NULL;
                    }
            }
    
    	res = h323_make_call(called_addr, &(p->cd), p->calloptions);
    
    
    	if (res) {
    
    		ast_log(LOG_NOTICE, "h323_make_call failed(%s)\n", c->name);
    
    		return -1;
    	}
    	return 0;
    }
    
    static int oh323_answer(struct ast_channel *c)
    {
    	int res;
    
    	struct oh323_pvt *p = c->pvt->pvt;
    
    	res = h323_answering_call(p->cd.call_token, 0);
    	
    	if (c->_state != AST_STATE_UP)
    		ast_setstate(c, AST_STATE_UP);
    
    	return res;
    }
    
    static int oh323_hangup(struct ast_channel *c)
    {
    	struct oh323_pvt *p = c->pvt->pvt;
    	int needcancel = 0;
    	if (h323debug)
    		ast_log(LOG_DEBUG, "oh323_hangup(%s)\n", c->name);
    	if (!c->pvt->pvt) {
    		ast_log(LOG_DEBUG, "Asked to hangup channel not connected\n");
    		return 0;
    	}
    
    Jeremy McNamara's avatar
    Jeremy McNamara committed
    	ast_mutex_lock(&p->lock);
    
    	/* Determine how to disconnect */
    	if (p->owner != c) {
    		ast_log(LOG_WARNING, "Huh?  We aren't the owner?\n");
    
    Jeremy McNamara's avatar
    Jeremy McNamara committed
    		ast_mutex_unlock(&p->lock);
    
    		return 0;
    	}
    	if (!c || (c->_state != AST_STATE_UP))
    		needcancel = 1;
    	/* Disconnect */
    	p = c->pvt->pvt;
    	
    	/* Free dsp used for in-band DTMF detection */
    	if (p->vad) {
    		ast_dsp_free(p->vad);
    
    
    	p->owner = NULL;
    	c->pvt->pvt = NULL;
    
    	/* Start the process if it's not already started */
    	if (!p->alreadygone) {
    
    		if (h323_clear_call((p->cd).call_token)) { 
    			ast_log(LOG_DEBUG, "ClearCall failed.\n");
    		}
    
    	/* Update usage counter */
    
    Jeremy McNamara's avatar
    Jeremy McNamara committed
    	ast_mutex_lock(&usecnt_lock);
    
    	usecnt--;
    	if (usecnt < 0)
    		ast_log(LOG_WARNING, "Usecnt < 0\n");
    
    Jeremy McNamara's avatar
    Jeremy McNamara committed
    	ast_mutex_unlock(&usecnt_lock);
    
    	ast_update_use_count();
    
    
    Jeremy McNamara's avatar
    Jeremy McNamara committed
    	ast_mutex_unlock(&p->lock);
    
    static struct ast_frame *oh323_rtp_read(struct oh323_pvt *p)
    
    {
    	/* Retrieve audio/etc from channel.  Assumes p->lock is already held. */
    	struct ast_frame *f;
    	static struct ast_frame null_frame = { AST_FRAME_NULL, };
    
          /* Only apply it for the first packet, we just need the correct ip/port */
          if(p->nat)
          {
                  ast_rtp_setnat(p->rtp,p->nat);
                  p->nat = 0;
          }
    
    	/* Don't send RFC2833 if we're not supposed to */
    	if (f && (f->frametype == AST_FRAME_DTMF) && !(p->dtmfmode & H323_DTMF_RFC2833))
    		return &null_frame;
    	if (p->owner) {
    		/* We already hold the channel lock */
    		if (f->frametype == AST_FRAME_VOICE) {
    			if (f->subclass != p->owner->nativeformats) {
    				ast_log(LOG_DEBUG, "Oooh, format changed to %d\n", f->subclass);
    				p->owner->nativeformats = f->subclass;
    
    				ast_set_read_format(p->owner, p->owner->readformat);
    				ast_set_write_format(p->owner, p->owner->writeformat);
    
    			}
    		
    			/* Do in-band DTMF detection */
    			if (p->dtmfmode & H323_DTMF_INBAND) {
    
                       f = ast_dsp_process(p->owner,p->vad,f);
    
    				   if (f->frametype == AST_FRAME_DTMF)
    					ast_log(LOG_DEBUG, "Got in-band digit %c.\n", f->subclass);
                }
    			
    			
    		}
    	}
    	return f;
    }
    
    
    static struct ast_frame  *oh323_read(struct ast_channel *c)
    {
    	struct ast_frame *fr;
    	struct oh323_pvt *p = c->pvt->pvt;
    
    Jeremy McNamara's avatar
    Jeremy McNamara committed
    	ast_mutex_lock(&p->lock);
    
    Jeremy McNamara's avatar
    Jeremy McNamara committed
    	ast_mutex_unlock(&p->lock);
    
    	return fr;
    }
    
    static int oh323_write(struct ast_channel *c, struct ast_frame *frame)
    {
    	struct oh323_pvt *p = c->pvt->pvt;
    	int res = 0;
    	if (frame->frametype != AST_FRAME_VOICE) {
    		if (frame->frametype == AST_FRAME_IMAGE)
    			return 0;
    		else {
    			ast_log(LOG_WARNING, "Can't send %d type frames with H323 write\n", frame->frametype);
    			return 0;
    		}
    	} else {
    		if (!(frame->subclass & c->nativeformats)) {
    
    			ast_log(LOG_WARNING, "Asked to transmit frame type %d, while native formats is %d (read/write = %d/%d)\n",
    				frame->subclass, c->nativeformats, c->readformat, c->writeformat);
    			return -1;
    
    Jeremy McNamara's avatar
    Jeremy McNamara committed
    		ast_mutex_lock(&p->lock);
    
    		if (p->rtp) {
    			res =  ast_rtp_write(p->rtp, frame);
    		}
    
    Jeremy McNamara's avatar
    Jeremy McNamara committed
    		ast_mutex_unlock(&p->lock);
    
    	}
    	return res;
    }
    
    /** FIXME: Can I acutally use this or does Open H.323 take care of everything? */
    static int oh323_indicate(struct ast_channel *c, int condition)
    {
    
    	struct oh323_pvt *p = c->pvt->pvt;
    	
    	switch(condition) {
    	case AST_CONTROL_RINGING:
    
    		if (c->_state == AST_STATE_RING || c->_state == AST_STATE_RINGING) {
    			h323_send_alerting(p->cd.call_token);
     			break;
     		}		
    		return -1;
    	case AST_CONTROL_PROGRESS:
    		if (c->_state != AST_STATE_UP) {
    			h323_send_progress(p->cd.call_token);
    			break;
    
    	case AST_CONTROL_BUSY:
    		if (c->_state != AST_STATE_UP) {
    
    			h323_answering_call(p->cd.call_token, 1);
     			p->alreadygone = 1;
    			ast_softhangup_nolock(c, AST_SOFTHANGUP_DEV);			
    
    	case AST_CONTROL_CONGESTION:
    		if (c->_state != AST_STATE_UP) {
    
    			h323_answering_call(p->cd.call_token, 1);
    
    			p->alreadygone = 1;
    
    			ast_softhangup_nolock(c, AST_SOFTHANGUP_DEV);
    
    	case -1:
    
    	default:
    		ast_log(LOG_WARNING, "Don't know how to indicate condition %d\n", condition);
    		return -1;
    	}
    	return 0;
    }
    
    // FIXME: WTF is this? Do I need this???
    
    static int oh323_fixup(struct ast_channel *oldchan, struct ast_channel *newchan)
    
    {
    	struct oh323_pvt *p = newchan->pvt->pvt;
    
    
    	ast_mutex_lock(&p->lock);
    
    	if (p->owner != oldchan) {
    		ast_log(LOG_WARNING, "old channel wasn't %p but was %p\n", oldchan, p->owner);
    		return -1;
    	}
    	p->owner = newchan;
    
    	ast_mutex_unlock(&p->lock);
    
    	return 0;
    }
    
    static struct ast_channel *oh323_new(struct oh323_pvt *i, int state, const char *host)
    {
    
    	struct ast_channel *ch;
    
    	int fmt;
    
    	ch = ast_channel_alloc(1);
    
    	if (ch) {
    
    		snprintf(ch->name, sizeof(ch->name)-1, "H323/%s", host);
    		ch->nativeformats = i->capability;
    		if (!ch->nativeformats)
    			ch->nativeformats = capability;
    		fmt = ast_best_codec(ch->nativeformats);
    		ch->type = type;
    		ch->fds[0] = ast_rtp_fd(i->rtp);
    
    		
    		if (state == AST_STATE_RING)
    
    			ch->rings = 1;
    
    		ch->writeformat = fmt;
    		ch->pvt->rawwriteformat = fmt;
    		ch->readformat = fmt;
    		ch->pvt->rawreadformat = fmt;
    
    		
    		/* Allocate dsp for in-band DTMF support */
    		if (i->dtmfmode & H323_DTMF_INBAND) {
    			i->vad = ast_dsp_new();
    			ast_dsp_set_features(i->vad, DSP_FEATURE_DTMF_DETECT);
    
    
    		/* Register the OpenH323 channel's functions. */
    
    		ch->pvt->pvt = i;
    		ch->pvt->send_digit = oh323_digit;
    		ch->pvt->call = oh323_call;
    		ch->pvt->hangup = oh323_hangup;
    		ch->pvt->answer = oh323_answer;
    		ch->pvt->read = oh323_read;
    		ch->pvt->write = oh323_write;
    		ch->pvt->indicate = oh323_indicate;
    		ch->pvt->fixup = oh323_fixup;
    
    	     /*	ch->pvt->bridge = ast_rtp_bridge; */
    
    
    		/*  Set the owner of this channel */
    
    		i->owner = ch;
    
    Jeremy McNamara's avatar
    Jeremy McNamara committed
    		ast_mutex_lock(&usecnt_lock);
    
    		usecnt++;
    
    Jeremy McNamara's avatar
    Jeremy McNamara committed
    		ast_mutex_unlock(&usecnt_lock);
    
    		ast_update_use_count();
    
    		strncpy(ch->context, i->context, sizeof(ch->context)-1);
    		strncpy(ch->exten, i->exten, sizeof(ch->exten)-1);		
    		ch->priority = 1;
    
    Jeremy McNamara's avatar
    Jeremy McNamara committed
    		if (!ast_strlen_zero(i->callerid))
    
    			ch->callerid = strdup(i->callerid);
    
    Jeremy McNamara's avatar
    Jeremy McNamara committed
    		if (!ast_strlen_zero(i->accountcode))
    
    			strncpy(ch->accountcode, i->accountcode, sizeof(ch->accountcode)-1);
    
    Jeremy McNamara's avatar
    Jeremy McNamara committed
    		if (i->amaflags)
    
    			ch->amaflags = i->amaflags;
    
    		if (state != AST_STATE_DOWN) {
    
    			if (ast_pbx_start(ch)) {
    				ast_log(LOG_WARNING, "Unable to start PBX on %s\n", ch->name);
    				ast_hangup(ch);
    				ch = NULL;
    
    			}
    		}
    	} else
    		ast_log(LOG_WARNING, "Unable to allocate channel structure\n");
    
    	return ch;
    
    }
    
    static struct oh323_pvt *oh323_alloc(int callid)
    {
    	struct oh323_pvt *p;
    
    	p = malloc(sizeof(struct oh323_pvt));
    	if (!p) {
    		ast_log(LOG_ERROR, "Couldn't allocate private structure. This is bad\n");
    		return NULL;
    	}
    
    	/* Keep track of stuff */
    	memset(p, 0, sizeof(struct oh323_pvt));
    
    	p->rtp = ast_rtp_new(sched, io, 1, 0);
    
    
    	if (!p->rtp) {
    		ast_log(LOG_WARNING, "Unable to create RTP session: %s\n", strerror(errno));
    		free(p);
    		return NULL;
    	}
    	ast_rtp_settos(p->rtp, tos);
    
    Jeremy McNamara's avatar
    Jeremy McNamara committed
    	ast_mutex_init(&p->lock);
    
    	
    	p->cd.call_reference = callid;
    
    	
    	p->dtmfmode = dtmfmode;
    	if (p->dtmfmode & H323_DTMF_RFC2833)
    		p->nonCodecCapability |= AST_RTP_DTMF;
    
    	/* Add to interface list */
    
    Jeremy McNamara's avatar
    Jeremy McNamara committed
    	ast_mutex_lock(&iflock);
    
    	p->next = iflist;
    	iflist = p;
    
    Jeremy McNamara's avatar
    Jeremy McNamara committed
    	ast_mutex_unlock(&iflock);
    
    	return p;
    }
    
    static struct oh323_pvt *find_call(int call_reference)
    {  
    
            struct oh323_pvt *p;
    
    		ast_mutex_lock(&iflock);
            p = iflist; 
    
            while(p) {
                    if (p->cd.call_reference == call_reference) {
                            /* Found the call */						
    						ast_mutex_unlock(&iflock);
    						return p;
                    }
                    p = p->next; 
            }
            ast_mutex_unlock(&iflock);
    		return NULL;
            
    
    }
    
    static struct ast_channel *oh323_request(char *type, int format, void *data)
    {
    
    	int oldformat;
    	struct oh323_pvt *p;
    	struct ast_channel *tmpc = NULL;
    	char *dest = data;
    	char *ext, *host;
    
    	char tmp[256];
    
    
    	ast_log(LOG_DEBUG, "type=%s, format=%d, data=%s.\n", type, format, (char *)data);
    
    	oldformat = format;
    	format &= capability;
    	if (!format) {
    		ast_log(LOG_NOTICE, "Asked to get a channel of unsupported format '%d'\n", format);
    		return NULL;
    	}
    	
    	strncpy(tmp, dest, sizeof(tmp) - 1);
    
    	host = strchr(tmp, '@');
    	if (host) {
    		*host = '\0';
    		host++;
    		ext = tmp;
    	} else {
    		host = tmp;
    		ext = NULL;
    	}
    
    	strtok_r(host, "/", &(h323id));
    		
    	if (*h323id) {
    		h323_set_id(h323id);
    	}
    		
    
    	p = oh323_alloc(0);
    
    	if (!p) {
    		ast_log(LOG_WARNING, "Unable to build pvt data for '%s'\n", (char *)data);
    		return NULL;
    	}
    
    	/* Assign a default capability */
    	p->capability = capability;
    
    	if (p->dtmfmode) {
    		if (p->dtmfmode & H323_DTMF_RFC2833)
    			p->nonCodecCapability |= AST_RTP_DTMF;
    		else
    			p->nonCodecCapability &= ~AST_RTP_DTMF;
    	}
    
    	/* pass on our preferred codec to the H.323 stack */
    	h323_set_capability(format, dtmfmode);
    
    	if (ext) {
    		strncpy(p->username, ext, sizeof(p->username) - 1);
    	}
    
    	ast_log(LOG_DEBUG, "Host: %s\tUsername: %s\n", host, p->username);
    
    	tmpc = oh323_new(p, AST_STATE_DOWN, host);
    	if (!tmpc)
    		oh323_destroy(p);
    	
    	restart_monitor();
    	
    	return tmpc;
    }
    
    
    struct oh323_alias *find_alias(const char *source_aliases)
    
    
    	a = aliasl.aliases;
    
    	while(a) {
    
    
    			break;
    		}
    		a = a->next;
    	}
    
    struct oh323_user *find_user(const call_details_t cd)
    
    {
    	struct oh323_user *u;
    
    	u = userl.users;
    
    	if(userbyalias == 1){
    		while(u) {
    			if (!strcasecmp(u->name, cd.call_source_aliases)) {
    				break;
    			}
    			u = u->next;
    		}
    
    	} else {
    		while(u) {
    			if (!strcasecmp(cd.sourceIp, inet_ntoa(u->addr.sin_addr))) {
    				break;
    			}
    			u = u->next;
    
    	}
    	return u;
    
    }
    
    struct oh323_peer *find_peer(char *dest_peer)
    {
    	struct oh323_peer *p;
    
    	p = peerl.peers;
    
    	while(p) {
    		if (!strcasecmp(p->name, dest_peer)) {
    			break;
    		}
    		p = p->next;
    	}
    	return p;
    
    }
    
    /**
      * Callback for sending digits from H.323 up to asterisk
      *
      */
    int send_digit(unsigned call_reference, char digit)
    {
    	struct oh323_pvt *p;
    	struct ast_frame f;
    
    	ast_log(LOG_DEBUG, "Recieved Digit: %c\n", digit);
    	p = find_call(call_reference);
    
    	if (!p) {
    		ast_log(LOG_ERROR, "Private structure not found in send_digit.\n");
    		return -1;
    	}
    	memset(&f, 0, sizeof(f));
    	f.frametype = AST_FRAME_DTMF;
    
        f.samples = 800;
        f.offset = 0;
        f.data = NULL;
    
    }
    
    /**
      * Call-back function that gets called when any H.323 connection is made
      *
    
    Jeremy McNamara's avatar
    Jeremy McNamara committed
      * Returns the local RTP information
    
    Jeremy McNamara's avatar
    Jeremy McNamara committed
    struct rtp_info *create_connection(unsigned call_reference)
    
    {	
    	struct oh323_pvt *p;
    	struct sockaddr_in us;
    
    Jeremy McNamara's avatar
    Jeremy McNamara committed
    	struct sockaddr_in them;
    	struct rtp_info *info;
    
    	info = malloc(sizeof(struct rtp_info));
    
    
    	p = find_call(call_reference);
    
    	if (!p) {
    		ast_log(LOG_ERROR, "Unable to allocate private structure, this is very bad.\n");
    
    Jeremy McNamara's avatar
    Jeremy McNamara committed
    		return NULL;
    
    	}
    
    	/* figure out our local RTP port and tell the H.323 stack about it*/
    	ast_rtp_get_us(p->rtp, &us);
    
    Jeremy McNamara's avatar
    Jeremy McNamara committed
    	ast_rtp_get_peer(p->rtp, &them);
    
    	info->addr = inet_ntoa(us.sin_addr);
    	info->port = ntohs(us.sin_port);
    
    Jeremy McNamara's avatar
    Jeremy McNamara committed
    
    
    Jeremy McNamara's avatar
    Jeremy McNamara committed
    	return info;
    
    }
    
    /**
     *  Call-back function for incoming calls