2 * Asterisk -- A telephony toolkit for Linux.
4 * VoiceTronix Interface driver
6 * Copyright (C) 2003, Paul Bagyenda
7 * Paul Bagyenda <bagyenda@dsmagic.com>
8 * Copyright (C) 2004, Ben Kramer
9 * Ben Kramer <ben@voicetronix.com.au>
11 * Daniel Bichara <daniel@bichara.com.br> - Brazilian CallerID detection (c)2004
13 * Welber Silveira - welberms@magiclink.com.br - (c)2004
14 * Copying CLID string to propper structure after detection
16 * This program is free software, distributed under the terms of
17 * the GNU General Public License
23 //#include <asterisk/lock.h>
24 #include <asterisk/utils.h>
25 #include <asterisk/channel.h>
26 #include <asterisk/channel_pvt.h>
27 #include <asterisk/config.h>
28 #include <asterisk/logger.h>
29 #include <asterisk/module.h>
30 #include <asterisk/pbx.h>
31 #include <asterisk/options.h>
32 #include <sys/socket.h>
37 #include <arpa/inet.h>
39 #include <sys/ioctl.h>
49 #define DEFAULT_GAIN 0
50 #define DEFAULT_ECHO_CANCEL 1
52 #define VPB_SAMPLES 160
53 #define VPB_MAX_BUF VPB_SAMPLES*4 + AST_FRIENDLY_OFFSET
55 #define VPB_NULL_EVENT 200
57 #define VPB_WAIT_TIMEOUT 4000
59 #define MAX_VPB_GAIN 12.0
62 #if defined(__cplusplus) || defined(c_plusplus)
67 static char *desc = "VoiceTronix V6PCI/V12PCI/V4PCI API Support";
68 static char *type = "vpb";
69 static char *tdesc = "Standard VoiceTronix API Driver";
70 static char *config = "vpb.conf";
72 /* Default context for dialtone mode */
73 static char context[AST_MAX_EXTENSION] = "default";
75 /* Default language */
76 static char language[MAX_LANGUAGE] = "";
79 static int gruntdetect_timeout = 3600000; /* Grunt detect timeout is 1hr. */
81 static const int prefformat = AST_FORMAT_SLINEAR;
83 AST_MUTEX_DEFINE_STATIC(usecnt_lock);
85 /* Protect the interface list (of vpb_pvt's) */
86 AST_MUTEX_DEFINE_STATIC(iflock);
88 /* Protect the monitoring thread, so only one process can kill or start it, and not
89 when it's doing something critical. */
90 AST_MUTEX_DEFINE_STATIC(monlock);
92 /* This is the thread for the monitor which checks for input on the channels
93 which are not currently in use. */
94 static pthread_t monitor_thread;
96 static int mthreadactive = -1; /* Flag for monitoring monitorthread.*/
99 static int restart_monitor(void);
101 /* The private structures of the VPB channels are
102 linked for selecting outgoing channels */
104 #define MODE_DIALTONE 1
105 #define MODE_IMMEDIATE 2
108 /* Pick a country or add your own! */
109 /* These are the tones that are played to the user */
112 static VPB_TONE Dialtone = {440, 440, 440, -10, -10, -10, 5000, 0 };
113 static VPB_TONE Busytone = {470, 0, 0, -10, -100, -100, 5000, 0 };
114 static VPB_TONE Ringbacktone = {400, 50, 440, -10, -10, -10, 1400, 800 };
119 static VPB_TONE Dialtone = {425, 0, 0, -16, -100, -100, 10000, 0};
120 static VPB_TONE Busytone = {425, 0, 0, -10, -100, -100, 500, 500};
121 static VPB_TONE Ringbacktone = {400, 425, 450, -20, -20, -20, 1000, 1000};
125 /* grunt tone defn's */
126 static VPB_DETECT toned_grunt = { 3, VPB_GRUNT, 1, 2000, 3000, 0, 0, -40, 0, 0, 0, 40, { { VPB_DELAY, 1000, 0, 0 }, { VPB_RISING, 0, 40, 0 }, { 0, 100, 0, 0 } } };
127 static VPB_DETECT toned_ungrunt = { 2, VPB_GRUNT, 1, 2000, 1, 0, 0, -40, 0, 0, 30, 40, { { 0, 0, 0, 0 } } };
129 /* Use loop drop detection */
130 static int UseLoopDrop=1;
132 /* To use or not to use Native bridging */
133 static int UseNativeBridge=1;
135 #define TIMER_PERIOD_RINGBACK 2000
136 #define TIMER_PERIOD_BUSY 700
138 #define VPB_EVENTS_ALL (VPB_MRING|VPB_MDIGIT|VPB_MDTMF|VPB_MTONEDETECT|VPB_MTIMEREXP|VPB_MPLAY_UNDERFLOW \
139 |VPB_MRECORD_OVERFLOW|VPB_MSTATION_OFFHOOK|VPB_MSTATION_ONHOOK \
140 |VPB_MRING_OFF|VPB_MDROP|VPB_MSTATION_FLASH)
141 #define VPB_EVENTS_NODROP (VPB_MRING|VPB_MDIGIT|VPB_MDTMF|VPB_MTONEDETECT|VPB_MTIMEREXP|VPB_MPLAY_UNDERFLOW \
142 |VPB_MRECORD_OVERFLOW|VPB_MSTATION_OFFHOOK|VPB_MSTATION_ONHOOK \
143 |VPB_MRING_OFF|VPB_MSTATION_FLASH)
144 #define VPB_EVENTS_NODTMF (VPB_MRING|VPB_MDIGIT|VPB_MTONEDETECT|VPB_MTIMEREXP|VPB_MPLAY_UNDERFLOW \
145 |VPB_MRECORD_OVERFLOW|VPB_MSTATION_OFFHOOK|VPB_MSTATION_ONHOOK \
146 |VPB_MRING_OFF|VPB_MDROP|VPB_MSTATION_FLASH)
147 #define VPB_EVENTS_STAT (VPB_MRING|VPB_MDIGIT|VPB_MDTMF|VPB_MTONEDETECT|VPB_MTIMEREXP|VPB_MPLAY_UNDERFLOW \
148 |VPB_MRECORD_OVERFLOW|VPB_MSTATION_OFFHOOK|VPB_MSTATION_ONHOOK \
149 |VPB_MRING_OFF|VPB_MSTATION_FLASH)
152 // Dialing parameters for Australia
153 //#define DIAL_WITH_CALL_PROGRESS
154 VPB_TONE_MAP DialToneMap[] = { { VPB_BUSY_AUST, VPB_CALL_DISCONNECT, 0 },
155 { VPB_DIAL, VPB_CALL_DIALTONE, 0 },
156 { VPB_RINGBACK_308, VPB_CALL_RINGBACK, 0 },
157 { VPB_BUSY_AUST, VPB_CALL_BUSY, 0 },
158 { VPB_GRUNT, VPB_CALL_GRUNT, 0 },
160 #define VPB_DIALTONE_WAIT 2000 /* Wait up to 2s for a dialtone */
161 #define VPB_RINGWAIT 4000 /* Wait up to 4s for ring tone after dialing */
162 #define VPB_CONNECTED_WAIT 4000 /* If no ring tone detected for 4s then consider call connected */
163 #define TIMER_PERIOD_NOANSWER 120000 /* Let it ring for 120s before deciding theres noone there */
165 #define MAX_BRIDGES_V4PCI 2
166 #define MAX_BRIDGES_V12PCI 128
169 #define VPB_STATE_ONHOOK 0
170 #define VPB_STATE_OFFHOOK 1
171 #define VPB_STATE_DIALLING 2
172 #define VPB_STATE_JOINED 3
173 #define VPB_STATE_GETDTMF 4
174 #define VPB_STATE_PLAYDIAL 5
175 #define VPB_STATE_PLAYBUSY 6
176 #define VPB_STATE_PLAYRING 7
181 struct ast_channel *c0, *c1, **rc;
182 struct ast_frame **fo;
189 static vpb_bridge_t * bridges;
190 static int max_bridges = MAX_BRIDGES_V4PCI;
192 AST_MUTEX_DEFINE_STATIC(bridge_lock);
195 vpb_model_unknown = 0,
200 static struct vpb_pvt {
202 ast_mutex_t owner_lock; /* Protect blocks that expect ownership to remain the same */
203 struct ast_channel *owner; /* Channel who owns us, possibly NULL */
205 int golock; /* Got owner lock ? */
207 int mode; /* fxo/imediate/dialtone*/
208 int handle; /* Handle for vpb interface */
210 int state; /* used to keep port state (internal to driver) */
212 int group; /* Which group this port belongs to */
214 char dev[256]; /* Device name, eg vpb/1-1 */
215 vpb_model_t vpb_model; /* card model */
217 struct ast_frame f, fr; /* Asterisk frame interface */
218 char buf[VPB_MAX_BUF]; /* Static buffer for reading frames */
220 int dialtone; /* NOT USED */
221 float txgain, rxgain; /* Hardware gain control */
222 float txswgain, rxswgain; /* Software gain control */
224 int wantdtmf; /* Waiting for DTMF. */
225 char context[AST_MAX_EXTENSION]; /* The context for this channel */
227 char ext[AST_MAX_EXTENSION]; /* DTMF buffer for the ext[ens] */
228 char language[MAX_LANGUAGE]; /* language being used */
229 char callerid[AST_MAX_EXTENSION]; /* CallerId used for directly connected phone */
231 int brcallerpos; /* Brazilian CallerID detection */
233 int lastoutput; /* Holds the last Audio format output'ed */
234 int lastinput; /* Holds the last Audio format input'ed */
235 int last_ignore_dtmf;
237 void *busy_timer; /* Void pointer for busy vpb_timer */
238 int busy_timer_id; /* unique timer ID for busy timer */
240 void *ringback_timer; /* Void pointer for ringback vpb_timer */
241 int ringback_timer_id; /* unique timer ID for ringback timer */
243 double lastgrunt; /* time stamp (secs since epoc) of last grunt event */
245 ast_mutex_t lock; /* This one just protects bridge ptr below */
246 vpb_bridge_t *bridge;
248 int stopreads; /* Stop reading...*/
249 int read_state; /* Read state */
250 int chuck_count; /* a count of packets weve chucked away!*/
251 pthread_t readthread; /* For monitoring read channel. One per owned channel. */
253 ast_mutex_t record_lock; /* This one prevents reentering a record_buf block */
254 ast_mutex_t play_lock; /* This one prevents reentering a play_buf block */
255 int play_buf_time; /* How long the last play_buf took */
257 ast_mutex_t play_dtmf_lock;
260 struct vpb_pvt *next; /* Next channel in list */
264 static struct ast_channel *vpb_new(struct vpb_pvt *i, int state, char *context);
265 static void *do_chanreads(void *pvt);
267 // Can't get vpb_bridge() working on v4pci without either a horrible
268 // high pitched feedback noise or bad hiss noise depending on gain settings
269 // Get asterisk to do the bridging
270 #define BAD_V4PCI_BRIDGE
272 // This one enables a half duplex bridge which may be required to prevent high pitched
273 // feedback when getting asterisk to do the bridging and when using certain gain settings.
274 //#define HALF_DUPLEX_BRIDGE
276 /* This is the Native bridge code, which Asterisk will try before using its own bridging code */
277 static int vpb_bridge(struct ast_channel *c0, struct ast_channel *c1, int flags, struct ast_frame **fo, struct ast_channel **rc)
279 struct vpb_pvt *p0 = (struct vpb_pvt *)c0->pvt->pvt;
280 struct vpb_pvt *p1 = (struct vpb_pvt *)c1->pvt->pvt;
283 #ifdef BAD_V4PCI_BRIDGE
284 if(p0->vpb_model==vpb_model_v4pci)
287 if ( UseNativeBridge != 1){
292 ast_mutex_lock(&p0->lock);
293 ast_mutex_lock(&p1->lock);
296 /* Bridge channels, check if we can. I believe we always can, so find a slot.*/
298 ast_mutex_lock(&bridge_lock); {
299 for (i = 0; i < max_bridges; i++)
300 if (!bridges[i].inuse)
302 if (i < max_bridges) {
303 bridges[i].inuse = 1;
304 bridges[i].endbridge = 0;
305 bridges[i].flags = flags;
311 } ast_mutex_unlock(&bridge_lock);
313 if (i == max_bridges) {
314 ast_log(LOG_WARNING, "Failed to bridge %s and %s!\n", c0->name, c1->name);
315 ast_mutex_unlock(&p0->lock);
316 ast_mutex_unlock(&p1->lock);
319 /* Set bridge pointers. You don't want to take these locks while holding bridge lock.*/
320 ast_mutex_lock(&p0->lock); {
321 p0->bridge = &bridges[i];
322 } ast_mutex_unlock(&p0->lock);
324 ast_mutex_lock(&p1->lock); {
325 p1->bridge = &bridges[i];
326 } ast_mutex_unlock(&p1->lock);
328 if (option_verbose>1)
329 ast_verbose(VERBOSE_PREFIX_2 "Bridging call entered with [%s, %s]\n", c0->name, c1->name);
332 #ifdef HALF_DUPLEX_BRIDGE
334 if (option_verbose>1)
335 ast_verbose(VERBOSE_PREFIX_2 "Starting half-duplex bridge [%s, %s]\n", c0->name, c1->name);
339 memset(p0->buf, 0, sizeof p0->buf);
340 memset(p1->buf, 0, sizeof p1->buf);
342 vpb_record_buf_start(p0->handle, VPB_ALAW);
343 vpb_record_buf_start(p1->handle, VPB_ALAW);
345 vpb_play_buf_start(p0->handle, VPB_ALAW);
346 vpb_play_buf_start(p1->handle, VPB_ALAW);
348 while( !bridges[i].endbridge ) {
349 struct vpb_pvt *from, *to;
357 vpb_record_buf_sync(from->handle, from->buf, VPB_SAMPLES);
358 vpb_play_buf_sync(to->handle, from->buf, VPB_SAMPLES);
361 vpb_record_buf_finish(p0->handle);
362 vpb_record_buf_finish(p1->handle);
364 vpb_play_buf_finish(p0->handle);
365 vpb_play_buf_finish(p1->handle);
367 if (option_verbose>1)
368 ast_verbose(VERBOSE_PREFIX_2 "Finished half-duplex bridge [%s, %s]\n", c0->name, c1->name);
374 res = vpb_bridge(p0->handle, p1->handle, VPB_BRIDGE_ON, i+1 /* resource 1 & 2 only for V4PCI*/ );
376 //pthread_cond_wait(&bridges[i].cond, &bridges[i].lock); /* Wait for condition signal. */
377 while( !bridges[i].endbridge ) {};
378 vpb_bridge(p0->handle, p1->handle, VPB_BRIDGE_OFF, i+1 /* resource 1 & 2 only for V4PCI*/ );
383 ast_mutex_lock(&bridge_lock); {
384 bridges[i].inuse = 0;
385 } ast_mutex_unlock(&bridge_lock);
391 if (option_verbose>1)
392 ast_verbose(VERBOSE_PREFIX_2 "Bridging call done with [%s, %s] => %d\n", c0->name, c1->name, res);
395 ast_mutex_unlock(&p0->lock);
396 ast_mutex_unlock(&p1->lock);
398 return (res==VPB_OK)?0:-1;
401 static double get_time_in_ms()
404 gettimeofday(&tv, NULL);
405 return ((double)tv.tv_sec*1000)+((double)tv.tv_usec/1000);
408 // Caller ID can be located in different positions between the rings depending on your Telco
409 // Australian (Telstra) callerid starts 700ms after 1st ring and finishes 1.5s after first ring
410 // Use ANALYSE_CID to record rings and determine location of callerid
411 //#define ANALYSE_CID
412 #define RING_SKIP 600
413 #define CID_MSECS 1700
415 static void get_callerid(struct vpb_pvt *p)
417 short buf[CID_MSECS*8]; // 8kHz sampling rate
418 double cid_record_time;
421 if(strcasecmp(p->callerid, "on")) {
422 if (option_verbose>3)
423 ast_verbose(VERBOSE_PREFIX_4 "Caller ID disabled\n");
424 // p->owner->callerid = strdup("unknown");
428 if( ast_mutex_trylock(&p->record_lock) == 0 ) {
430 char callerid[AST_MAX_EXTENSION] = "";
432 cid_record_time = get_time_in_ms();
433 if (option_verbose>3)
434 ast_verbose(VERBOSE_PREFIX_4 "CID record - start\n");
437 VPB_RECORD record_parms = { "", 8 * 1000 }; // record a couple of rings
438 vpb_record_set(p->handle,&record_parms);
439 ast_verbose(VERBOSE_PREFIX_4 "Recording debug CID sample to /tmp/cid.raw\n");
440 vpb_record_file_sync(p->handle,"/tmp/cid.raw",VPB_LINEAR);
441 rc = 1; // don't try to decode_cid
443 // Skip any trailing ringtone
444 vpb_sleep(RING_SKIP);
446 if (option_verbose>3)
447 ast_verbose(VERBOSE_PREFIX_4 "CID record - skipped %fms trailing ring\n",
448 get_time_in_ms() - cid_record_time);
449 cid_record_time = get_time_in_ms();
451 // Record bit between the rings which contains the callerid
452 vpb_record_buf_start(p->handle, VPB_LINEAR);
453 rc = vpb_record_buf_sync(p->handle, (char*)buf, sizeof(buf));
454 vpb_record_buf_finish(p->handle);
457 if (option_verbose>3)
458 ast_verbose(VERBOSE_PREFIX_4 "CID record - recorded %fms between rings\n",
459 get_time_in_ms() - cid_record_time);
461 ast_mutex_unlock(&p->record_lock);
464 ast_log(LOG_ERROR, "Failed to record caller id sample on %s\n", p->dev );
468 // This decodes FSK 1200baud type callerid
469 if ((rc=vpb_cid_decode(callerid, buf, CID_MSECS*8)) == VPB_OK ) {
471 strncpy(callerid,"undisclosed", sizeof(callerid) - 1); // blocked CID (eg caller used 1831)
473 ast_log(LOG_ERROR, "Failed to decode caller id on %s - %s\n", p->dev, vpb_strerror(rc) );
474 strncpy(callerid,"unknown", sizeof(callerid) - 1);
476 // p->owner->callerid = strdup(callerid);
479 ast_log(LOG_ERROR, "Failed to set record mode for caller id on %s\n", p->dev );
482 // Terminate any tones we are presently playing
483 static void stoptone( int handle)
487 while(vpb_playtone_state(handle)!=VPB_OK){
488 vpb_tone_terminate(handle);
489 ret = vpb_get_event_ch_async(handle,&je);
490 if ((ret == VPB_OK)&&(je.type != VPB_DIALEND)){
491 if (option_verbose > 3){
492 ast_verbose(VERBOSE_PREFIX_4 "Stop tone collected a wrong event!![%d]\n",je.type);
494 // vpb_put_event(&je);
500 /* Safe vpb_playtone_async */
501 static int playtone( int handle, VPB_TONE *tone)
505 if (option_verbose > 3)
506 ast_verbose(VERBOSE_PREFIX_4 "[%02d]: Playing tone\n", handle);
507 ret = vpb_playtone_async(handle, tone);
511 static inline int monitor_handle_owned(struct vpb_pvt *p, VPB_EVENT *e)
513 struct ast_frame f = {AST_FRAME_CONTROL}; /* default is control, Clear rest. */
517 if (option_verbose > 3)
518 ast_verbose(VERBOSE_PREFIX_4 "%s: handle_owned: got event: [%d=>%d]\n",
519 p->dev, e->type, e->data);
524 if (p->mode == MODE_FXO) {
525 f.subclass = AST_CONTROL_RING;
527 f.frametype = -1; /* ignore ring on station port. */
535 if (e->data == p->busy_timer_id) {
536 playtone(p->handle,&Busytone);
537 p->state = VPB_STATE_PLAYBUSY;
538 vpb_timer_stop(p->busy_timer);
539 vpb_timer_start(p->busy_timer);
541 } else if (e->data == p->ringback_timer_id) {
542 playtone(p->handle, &Ringbacktone);
543 vpb_timer_stop(p->ringback_timer);
544 vpb_timer_start(p->ringback_timer);
547 f.frametype = -1; /* Ignore. */
552 if (p->owner->_state == AST_STATE_UP) {
553 f.frametype = AST_FRAME_DTMF;
554 f.subclass = e->data;
560 if (e->data == VPB_BUSY || e->data == VPB_BUSY_308 || e->data == VPB_BUSY_AUST ) {
561 if (option_verbose > 3)
562 ast_verbose(VERBOSE_PREFIX_4 "%s: handle_owned: got event: BUSY\n", p->dev);
563 if (p->owner->_state == AST_STATE_UP) {
564 f.subclass = AST_CONTROL_HANGUP;
567 f.subclass = AST_CONTROL_BUSY;
569 } else if (e->data == VPB_GRUNT) {
570 if( ( get_time_in_ms() - p->lastgrunt ) > gruntdetect_timeout ) {
571 // Nothing heard on line for a very long time
572 // Timeout connection
573 if (option_verbose > 2)
574 ast_verbose(VERBOSE_PREFIX_3 "grunt timeout\n");
575 ast_log(LOG_NOTICE,"%s: Line hangup due of lack of conversation\n",p->dev);
576 f.subclass = AST_CONTROL_HANGUP;
578 p->lastgrunt = get_time_in_ms();
586 #ifdef DIAL_WITH_CALL_PROGRESS
587 if (e->data == VPB_CALL_CONNECTED)
588 f.subclass = AST_CONTROL_ANSWER;
589 else if (e->data == VPB_CALL_NO_DIAL_TONE || e->data == VPB_CALL_NO_RING_BACK)
590 f.subclass = AST_CONTROL_CONGESTION;
591 else if (e->data == VPB_CALL_NO_ANSWER || e->data == VPB_CALL_BUSY)
592 f.subclass = AST_CONTROL_BUSY;
593 else if (e->data == VPB_CALL_DISCONNECTED)
594 f.subclass = AST_CONTROL_HANGUP;
596 ast_log(LOG_NOTICE,"%s: Got call progress callback but blind dialing \n", p->dev);
601 case VPB_STATION_OFFHOOK:
602 f.subclass = AST_CONTROL_ANSWER;
606 if ((p->mode == MODE_FXO)&&(UseLoopDrop)){ /* ignore loop drop on stations */
607 if (p->owner->_state == AST_STATE_UP)
608 f.subclass = AST_CONTROL_HANGUP;
613 case VPB_STATION_ONHOOK:
614 f.subclass = AST_CONTROL_HANGUP;
617 case VPB_STATION_FLASH:
618 f.subclass = AST_CONTROL_FLASH;
621 // Called when dialing has finished and ringing starts
622 // No indication that call has really been answered when using blind dialing
625 f.subclass = AST_CONTROL_ANSWER;
626 if (option_verbose > 1)
627 ast_verbose(VERBOSE_PREFIX_2 "%s: Dialend\n", p->dev);
633 case VPB_PLAY_UNDERFLOW:
635 vpb_reset_play_fifo_alarm(p->handle);
638 case VPB_RECORD_OVERFLOW:
640 vpb_reset_record_fifo_alarm(p->handle);
648 if (option_verbose > 3)
649 ast_verbose(VERBOSE_PREFIX_4 "%s: handle_owned: putting frame type[%d]subclass[%d], bridge=%p\n",
650 p->dev, f.frametype, f.subclass, (void *)p->bridge);
653 if (option_verbose > 3) ast_verbose("%s: LOCKING in handle_owned [%d]\n", p->dev,res);
654 res = ast_mutex_lock(&p->lock);
655 if (option_verbose > 3) ast_verbose("%s: LOCKING count[%d] owner[%d] \n", p->dev, p->lock.__m_count,p->lock.__m_owner);
658 if (p->bridge) { /* Check what happened, see if we need to report it. */
659 switch (f.frametype) {
661 if ( !(p->bridge->c0 == p->owner &&
662 (p->bridge->flags & AST_BRIDGE_DTMF_CHANNEL_0) ) &&
663 !(p->bridge->c1 == p->owner &&
664 (p->bridge->flags & AST_BRIDGE_DTMF_CHANNEL_1) ))
665 /* Kill bridge, this is interesting. */
669 case AST_FRAME_CONTROL:
670 if (!(p->bridge->flags & AST_BRIDGE_IGNORE_SIGS))
672 if (f.subclass == AST_CONTROL_BUSY ||
673 f.subclass == AST_CONTROL_CONGESTION ||
674 f.subclass == AST_CONTROL_HANGUP ||
675 f.subclass == AST_CONTROL_FLASH)
685 *p->bridge->fo = ast_frisolate(&f);
687 *p->bridge->rc = p->owner;
689 ast_mutex_lock(&p->bridge->lock); {
690 p->bridge->endbridge = 1;
691 pthread_cond_signal(&p->bridge->cond);
692 } ast_mutex_unlock(&p->bridge->lock);
698 res = ast_mutex_unlock(&p->lock);
700 if (option_verbose > 3) ast_verbose("%s: unLOCKING in handle_owned [%d]\n", p->dev,res);
705 // Trylock used here to avoid deadlock that can occur if we
706 // happen to be in here handling an event when hangup is called
707 // Problem is that hangup holds p->owner->lock
708 if ((f.frametype >= 0)&& (f.frametype != AST_FRAME_NULL)&&(p->owner)) {
709 if (ast_mutex_trylock(&p->owner->lock)==0) {
710 ast_queue_frame(p->owner, &f);
711 ast_mutex_unlock(&p->owner->lock);
713 ast_verbose("%s: handled_owned: Missed event %d/%d \n",
714 p->dev,f.frametype, f.subclass);
717 res = ast_mutex_unlock(&p->lock);
719 if (option_verbose > 3) ast_verbose("%s: unLOCKING in handle_owned [%d]\n", p->dev,res);
725 static inline int monitor_handle_notowned(struct vpb_pvt *p, VPB_EVENT *e)
729 if (option_verbose > 3) {
730 char str[VPB_MAX_STR];
731 vpb_translate_event(e, str);
732 ast_verbose(VERBOSE_PREFIX_4 "%s: handle_notowned: mode=%d, event[%d][%s]=[%d]\n",
733 p->dev, p->mode, e->type,str, e->data);
738 if (p->mode == MODE_FXO) /* FXO port ring, start * */ {
739 vpb_new(p, AST_STATE_RING, p->context);
740 get_callerid(p); /* Australian Caller ID only between 1st and 2nd ring */
747 case VPB_STATION_OFFHOOK:
748 if (p->mode == MODE_IMMEDIATE)
749 vpb_new(p,AST_STATE_RING, p->context);
751 ast_verbose(VERBOSE_PREFIX_4 "%s: handle_notowned: playing dialtone\n",p->dev);
752 playtone(p->handle, &Dialtone);
754 p->ext[0] = 0; /* Just to be sure & paranoid.*/
755 p->state=VPB_STATE_PLAYDIAL;
760 if (p->mode == MODE_DIALTONE){
761 if (p->state == VPB_STATE_PLAYDIAL) {
762 playtone(p->handle, &Dialtone);
764 p->ext[0] = 0; // Just to be sure & paranoid.
766 /* These are not needed as they have timers to restart them
767 else if (p->state == VPB_STATE_PLAYBUSY) {
768 playtone(p->handle, &Busytone);
770 p->ext[0] = 0; // Just to be sure & paranoid.
772 else if (p->state == VPB_STATE_PLAYRING) {
773 playtone(p->handle, &Ringbacktone);
775 p->ext[0] = 0; // Just to be sure & paranoid.
779 ast_verbose(VERBOSE_PREFIX_4 "%s: handle_notowned: Got a DIALEND when not really expected\n",p->dev);
783 case VPB_STATION_ONHOOK: /* clear ext */
787 p->state=VPB_STATE_ONHOOK;
791 if (p->state == VPB_STATE_ONHOOK){
792 /* DTMF's being passed while on-hook maybe Caller ID */
795 if (p->wantdtmf == 1) {
799 p->state=VPB_STATE_GETDTMF;
801 strncat(p->ext, s, sizeof(p->ext) - strlen(p->ext) - 1);
802 if (ast_exists_extension(NULL, p->context, p->ext, 1, p->callerid)){
803 if (option_verbose > 3) {
804 ast_verbose(VERBOSE_PREFIX_4 "%s: handle_notowned: Matched on [%s] in [%s]\n", p->dev,p->ext , p->context);
806 vpb_new(p,AST_STATE_RING, p->context);
807 } else if (!ast_canmatch_extension(NULL, p->context, p->ext, 1, p->callerid)){
808 if (ast_exists_extension(NULL, "default", p->ext, 1, p->callerid)) {
809 vpb_new(p,AST_STATE_RING, "default");
810 } else if (!ast_canmatch_extension(NULL, "default", p->ext, 1, p->callerid)) {
811 if (option_verbose > 3) {
812 ast_verbose(VERBOSE_PREFIX_4 "%s: handle_notowned: can't match anything in %s or default\n",
815 playtone(p->handle, &Busytone);
816 vpb_timer_stop(p->busy_timer);
817 vpb_timer_start(p->busy_timer);
818 p->state = VPB_STATE_PLAYBUSY;
828 if (option_verbose > 3)
829 ast_verbose(VERBOSE_PREFIX_4 "%s: handle_notowned: mode=%d, [%d=>%d]\n",
830 p->dev, p->mode, e->type, e->data);
835 static void *do_monitor(void *unused)
838 /* Monitor thread, doesn't die until explicitly killed. */
840 if (option_verbose > 1)
841 ast_verbose(VERBOSE_PREFIX_2 "Starting vpb monitor thread[%ld]\n",
844 pthread_setcanceltype(PTHREAD_CANCEL_ASYNCHRONOUS, NULL);
849 char str[VPB_MAX_STR];
853 if (option_verbose > 3)
854 ast_verbose(VERBOSE_PREFIX_4 "Monitor waiting for event\n");
857 int res = vpb_get_event_sync(&e, VPB_WAIT_TIMEOUT);
858 if( (res==VPB_NO_EVENTS) || (res==VPB_TIME_OUT) ){
860 if (option_verbose > 3){
861 if (res == VPB_NO_EVENTS){
862 ast_verbose(VERBOSE_PREFIX_4 "No events....\n");
864 ast_verbose(VERBOSE_PREFIX_4 "No events, timed out....\n");
872 ast_log(LOG_ERROR,"Monitor get event error %s\n", vpb_strerror(res) );
873 ast_verbose("Monitor get event error %s\n", vpb_strerror(res) );
881 ast_mutex_lock(&monlock); {
882 vpb_translate_event(&e, str);
884 if (e.type == VPB_NULL_EVENT) {
885 if (option_verbose > 3)
886 ast_verbose(VERBOSE_PREFIX_4 "Monitor got null event\n");
887 goto done; /* Nothing to do, just a wakeup call.*/
890 str[(strlen(str)-1)]='\0';
893 ast_mutex_lock(&iflock); {
895 while (p && p->handle != e.handle)
897 } ast_mutex_unlock(&iflock);
899 if (p && (option_verbose > 3))
900 ast_verbose(VERBOSE_PREFIX_4 "%s: Event [%d=>%s] \n",
901 p ? p->dev : "null", e.type, str );
904 } ast_mutex_unlock(&monlock);
907 if (e.type != VPB_NULL_EVENT){
908 ast_log(LOG_WARNING, "Got event [%s][%d], no matching iface!\n", str,e.type);
909 if (option_verbose > 3){
910 ast_verbose(VERBOSE_PREFIX_4 "vpb/ERR: No interface for Event [%d=>%s] \n",e.type,str );
916 /* flush the event from the channel event Q */
917 vpb_get_event_ch_async(e.handle,&je);
918 if (option_verbose > 4){
919 vpb_translate_event(&je, str);
920 ast_verbose("%s: Flushing event [%d]=>%s\n",p->dev,je.type,str);
923 /* Check for ownership and locks */
924 if ((p->owner)&&(!p->golock)){
925 /* Need to get owner lock */
926 /* Safely grab both p->lock and p->owner->lock so that there
927 cannot be a race with something from the other side */
929 ast_mutex_lock(&p->lock);
930 while(ast_mutex_trylock(&p->owner->lock)) {
931 ast_mutex_unlock(&p->lock);
933 ast_mutex_lock(&p->lock);
941 /* Two scenarios: Are you owned or not. */
943 monitor_handle_owned(p, &e);
945 monitor_handle_notowned(p, &e);
947 /* if ((!p->owner)&&(p->golock)){
948 ast_mutex_unlock(&p->owner->lock);
949 ast_mutex_unlock(&p->lock);
958 static int restart_monitor(void)
962 /* If we're supposed to be stopped -- stay stopped */
963 if (mthreadactive == -2)
966 if (option_verbose > 3)
967 ast_verbose(VERBOSE_PREFIX_4 "Restarting monitor\n");
969 ast_mutex_lock(&monlock); {
970 if (monitor_thread == pthread_self()) {
971 ast_log(LOG_WARNING, "Cannot kill myself\n");
973 if (option_verbose > 3)
974 ast_verbose(VERBOSE_PREFIX_4 "Monitor trying to kill monitor\n");
977 if (mthreadactive != -1) {
978 /* Why do other drivers kill the thread? No need says I, simply awake thread with event. */
981 e.type = VPB_NULL_EVENT;
984 if (option_verbose > 3)
985 ast_verbose(VERBOSE_PREFIX_4 "Trying to reawake monitor\n");
989 /* Start a new monitor */
990 int pid = ast_pthread_create(&monitor_thread, NULL, do_monitor, NULL);
991 if (option_verbose > 3)
992 ast_verbose(VERBOSE_PREFIX_4 "Created new monitor thread %d\n",pid);
994 ast_log(LOG_ERROR, "Unable to start monitor thread.\n");
998 mthreadactive = 0; /* Started the thread!*/
1001 } ast_mutex_unlock(&monlock);
1003 if (option_verbose > 3)
1004 ast_verbose(VERBOSE_PREFIX_4 "Monitor restarted\n");
1009 // Per board config that must be called after vpb_open()
1010 static void mkbrd(vpb_model_t model, int echo_cancel)
1013 if(model==vpb_model_v4pci)
1014 max_bridges = MAX_BRIDGES_V4PCI;
1015 bridges = (vpb_bridge_t *)malloc(max_bridges * sizeof(vpb_bridge_t) );
1017 ast_log(LOG_ERROR, "Failed to initialize bridges\n");
1019 memset(bridges,0,max_bridges * sizeof(vpb_bridge_t));
1020 for(int i = 0; i < max_bridges; i++ ) {
1021 ast_mutex_init(&bridges[i].lock);
1022 pthread_cond_init(&bridges[i].cond, NULL);
1027 if (model==vpb_model_v4pci) {
1028 vpb_echo_canc_disable();
1029 ast_log(LOG_NOTICE, "Voicetronix echo cancellation OFF\n");
1032 /* need to it port by port for OpenSwitch*/
1035 if (model==vpb_model_v4pci) {
1036 vpb_echo_canc_enable();
1037 ast_log(LOG_NOTICE, "Voicetronix echo cancellation ON\n");
1040 /* need to it port by port for OpenSwitch*/
1045 struct vpb_pvt *mkif(int board, int channel, int mode, float txgain, float rxgain,
1046 float txswgain, float rxswgain, int bal1, int bal2, int bal3,
1047 char * callerid, int echo_cancel, int group )
1049 struct vpb_pvt *tmp;
1052 tmp = (struct vpb_pvt *)calloc(1, sizeof *tmp);
1057 tmp->handle = vpb_open(board, channel);
1059 if (tmp->handle < 0) {
1060 ast_log(LOG_WARNING, "Unable to create channel vpb/%d-%d: %s\n",
1061 board, channel, strerror(errno));
1066 snprintf(tmp->dev, sizeof(tmp->dev), "vpb/%d-%d", board, channel);
1073 strncpy(tmp->language, language, sizeof(tmp->language) - 1);
1074 strncpy(tmp->context, context, sizeof(tmp->context) - 1);
1077 strncpy(tmp->callerid, callerid, sizeof(tmp->callerid) - 1);
1080 strncpy(tmp->callerid, "unknown", sizeof(tmp->callerid) - 1);
1083 /* check if codec balances have been set in the config file */
1085 if ((bal1>=0) && !(bal1 & 32)) bal1 |= 32;
1086 vpb_set_codec_reg(tmp->handle, 0x42, bal3);
1088 if(bal1>=0) vpb_set_codec_reg(tmp->handle, 0x32, bal1);
1089 if(bal2>=0) vpb_set_codec_reg(tmp->handle, 0x3a, bal2);
1091 tmp->txgain = txgain;
1092 vpb_play_set_hw_gain(tmp->handle, (txgain > MAX_VPB_GAIN) ? MAX_VPB_GAIN : txgain);
1094 tmp->rxgain = rxgain;
1095 vpb_record_set_hw_gain(tmp->handle, (rxgain > MAX_VPB_GAIN) ? MAX_VPB_GAIN : rxgain);
1097 tmp->txswgain = txswgain;
1098 vpb_play_set_gain(tmp->handle, (txswgain > MAX_VPB_GAIN) ? MAX_VPB_GAIN : txswgain);
1100 tmp->rxswgain = rxswgain;
1101 vpb_record_set_gain(tmp->handle, (rxswgain > MAX_VPB_GAIN) ? MAX_VPB_GAIN : rxswgain);
1103 tmp->vpb_model = vpb_model_unknown;
1104 if( vpb_get_model(buf) == VPB_OK ) {
1105 if(strcmp(buf,"V12PCI")==0)
1106 tmp->vpb_model = vpb_model_v12pci;
1107 else if(strcmp(buf,"VPB4")==0)
1108 tmp->vpb_model = vpb_model_v4pci;
1111 ast_mutex_init(&tmp->owner_lock);
1112 ast_mutex_init(&tmp->lock);
1113 ast_mutex_init(&tmp->record_lock);
1114 ast_mutex_init(&tmp->play_lock);
1115 ast_mutex_init(&tmp->play_dtmf_lock);
1117 /* set default read state */
1118 tmp->read_state = 0;
1122 tmp->busy_timer_id = vpb_timer_get_unique_timer_id();
1123 vpb_timer_open(&tmp->busy_timer, tmp->handle, tmp->busy_timer_id, TIMER_PERIOD_BUSY);
1125 tmp->ringback_timer_id = vpb_timer_get_unique_timer_id();
1126 vpb_timer_open(&tmp->ringback_timer, tmp->handle, tmp->ringback_timer_id, TIMER_PERIOD_RINGBACK);
1128 if (mode == MODE_FXO){
1129 vpb_set_event_mask(tmp->handle, VPB_EVENTS_ALL );
1132 vpb_set_event_mask(tmp->handle, VPB_EVENTS_STAT );
1135 if ((tmp->vpb_model == vpb_model_v12pci) && (echo_cancel)){
1136 vpb_hostecho_on(tmp->handle);
1139 /* define grunt tone */
1140 vpb_settonedet(tmp->handle,&toned_ungrunt);
1142 ast_log(LOG_NOTICE,"Voicetronix %s channel %s initialized (rxgain=%f txgain=%f) (%f/%f/0x%X/0x%X/0x%X)\n",
1143 (tmp->vpb_model==vpb_model_v4pci)?"V4PCI":
1144 (tmp->vpb_model==vpb_model_v12pci)?"V12PCI":"[Unknown model]",
1145 tmp->dev, tmp->rxswgain, tmp->txswgain, tmp->rxgain, tmp->txgain, bal1, bal2, bal3 );
1150 static int vpb_indicate(struct ast_channel *ast, int condition)
1152 struct vpb_pvt *p = (struct vpb_pvt *)ast->pvt->pvt;
1156 if (option_verbose > 3)
1157 ast_verbose(VERBOSE_PREFIX_4 "%s: vpb_indicate [%d] state[%d]\n", p->dev, condition,ast->_state);
1159 if (ast->_state != AST_STATE_UP) {
1160 ast_verbose(VERBOSE_PREFIX_4 "%s: vpb_indicate Not in AST_STATE_UP\n", p->dev, condition,ast->_state);
1166 if (option_verbose > 3) ast_verbose("%s: LOCKING in indicate \n", p->dev);
1167 if (option_verbose > 3) ast_verbose("%s: LOCKING count[%d] owner[%d] \n", p->dev, p->lock.__m_count,p->lock.__m_owner);
1169 ast_mutex_lock(&p->lock);
1171 case AST_CONTROL_BUSY:
1172 case AST_CONTROL_CONGESTION:
1173 if (ast->_state == AST_STATE_UP) {
1174 playtone(p->handle, &Busytone);
1175 p->state = VPB_STATE_PLAYBUSY;
1176 vpb_timer_stop(p->busy_timer);
1177 vpb_timer_start(p->busy_timer);
1180 case AST_CONTROL_RINGING:
1181 if (ast->_state == AST_STATE_UP) {
1182 playtone(p->handle, &Ringbacktone);
1183 p->state = VPB_STATE_PLAYRING;
1184 if (option_verbose > 3)
1185 ast_verbose(VERBOSE_PREFIX_4 "%s: vpb indicate: setting ringback timer [%d]\n", p->dev,p->ringback_timer_id);
1187 vpb_timer_stop(p->ringback_timer);
1188 vpb_timer_start(p->ringback_timer);
1191 case AST_CONTROL_ANSWER:
1192 case -1: /* -1 means stop playing? */
1193 vpb_timer_stop(p->ringback_timer);
1194 vpb_timer_stop(p->busy_timer);
1195 stoptone(p->handle);
1197 case AST_CONTROL_HANGUP:
1198 if (ast->_state == AST_STATE_UP) {
1199 playtone(p->handle, &Busytone);
1200 p->state = VPB_STATE_PLAYBUSY;
1201 vpb_timer_stop(p->busy_timer);
1202 vpb_timer_start(p->busy_timer);
1210 tmp = ast_mutex_unlock(&p->lock);
1212 if (option_verbose > 3) ast_verbose("%s: unLOCKING in indicate [%d]\n", p->dev,tmp);
1217 static int vpb_fixup(struct ast_channel *oldchan, struct ast_channel *newchan)
1219 struct vpb_pvt *p = (struct vpb_pvt *)newchan->pvt->pvt;
1223 if (option_verbose > 3) ast_verbose("%s: LOCKING in fixup \n", p->dev);
1224 if (option_verbose > 3) ast_verbose("%s: LOCKING count[%d] owner[%d] \n", p->dev, p->lock.__m_count,p->lock.__m_owner);
1226 ast_mutex_lock(&p->lock);
1227 ast_log(LOG_DEBUG, "New owner for channel %s is %s\n", p->dev, newchan->name);
1229 if (p->owner == oldchan) {
1233 if (newchan->_state == AST_STATE_RINGING)
1234 vpb_indicate(newchan, AST_CONTROL_RINGING);
1236 res= ast_mutex_unlock(&p->lock);
1238 if (option_verbose > 3) ast_verbose("%s: unLOCKING in fixup [%d]\n", p->dev,res);
1243 static int vpb_digit(struct ast_channel *ast, char digit)
1245 struct vpb_pvt *p = (struct vpb_pvt *)ast->pvt->pvt;
1250 if (option_verbose > 3) ast_verbose("%s: LOCKING in digit \n", p->dev);
1251 if (option_verbose > 3) ast_verbose("%s: LOCKING count[%d] owner[%d] \n", p->dev, p->lock.__m_count,p->lock.__m_owner);
1253 ast_mutex_lock(&p->lock);
1259 if (option_verbose > 3)
1260 ast_verbose(VERBOSE_PREFIX_4 "%s: play digit[%s]\n", p->dev, s);
1262 ast_mutex_lock(&p->play_dtmf_lock);
1263 strncat(p->play_dtmf,s,sizeof(*p->play_dtmf));
1264 ast_mutex_unlock(&p->play_dtmf_lock);
1266 res = ast_mutex_unlock(&p->lock);
1268 if (option_verbose > 3) ast_verbose("%s: unLOCKING in digit [%d]\n", p->dev,res);
1273 /* Places a call out of a VPB channel */
1274 static int vpb_call(struct ast_channel *ast, char *dest, int timeout)
1276 struct vpb_pvt *p = (struct vpb_pvt *)ast->pvt->pvt;
1278 char *s = strrchr(dest, '/');
1279 char dialstring[254] = "";
1283 if (option_verbose > 3) ast_verbose("%s: LOCKING in call \n", p->dev);
1284 if (option_verbose > 3) ast_verbose("%s: LOCKING count[%d] owner[%d] \n", p->dev, p->lock.__m_count,p->lock.__m_owner);
1286 ast_mutex_lock(&p->lock);
1292 strncpy(dialstring, s, sizeof(dialstring) - 1);
1293 for (i=0; dialstring[i] != '\0' ; i++) {
1294 if ((dialstring[i] == 'w') || (dialstring[i] == 'W'))
1295 dialstring[i] = ',';
1296 else if ((dialstring[i] == 'f') || (dialstring[i] == 'F'))
1297 dialstring[i] = '&';
1299 if (option_verbose > 3)
1300 ast_verbose(VERBOSE_PREFIX_4 "%s: starting call\n", p->dev);
1302 if (ast->_state != AST_STATE_DOWN && ast->_state != AST_STATE_RESERVED) {
1303 ast_log(LOG_WARNING, "vpb_call on %s neither down nor reserved!\n", ast->name);
1304 tmp = ast_mutex_unlock(&p->lock);
1306 if (option_verbose > 3) ast_verbose("%s: unLOCKING in call [%d]\n", p->dev,tmp);
1310 if (p->mode != MODE_FXO) /* Station port, ring it. */
1311 res = vpb_ring_station_async(p->handle, VPB_RING_STATION_ON,0);
1315 // Dial must timeout or it can leave channels unuseable
1317 timeout = TIMER_PERIOD_NOANSWER;
1319 timeout = timeout * 1000; //convert from secs to ms.
1321 // These timeouts are only used with call progress dialing
1322 call.dialtones = 1; // Number of dialtones to get outside line
1323 call.dialtone_timeout = VPB_DIALTONE_WAIT; // Wait this long for dialtone (ms)
1324 call.ringback_timeout = VPB_RINGWAIT; // Wait this long for ringing after dialing (ms)
1325 call.inter_ringback_timeout = VPB_CONNECTED_WAIT; // If ringing stops for this long consider it connected (ms)
1326 call.answer_timeout = timeout; // Time to wait for answer after ringing starts (ms)
1327 memcpy( &call.tone_map, DialToneMap, sizeof(DialToneMap) );
1328 vpb_set_call(p->handle, &call);
1330 if (option_verbose > 1)
1331 ast_verbose(VERBOSE_PREFIX_2 "%s: Calling %s on %s \n",p->dev, dialstring, ast->name);
1333 if (option_verbose > 2) {
1335 ast_verbose(VERBOSE_PREFIX_2 "%s: Dial parms for %s %d/%dms/%dms/%dms/%dms\n", p->dev
1336 , ast->name, call.dialtones, call.dialtone_timeout
1337 , call.ringback_timeout, call.inter_ringback_timeout
1338 , call.answer_timeout );
1339 for( j=0; !call.tone_map[j].terminate; j++ )
1340 ast_verbose(VERBOSE_PREFIX_2 "%s: Dial parms for %s tone %d->%d\n", p->dev,
1341 ast->name, call.tone_map[j].tone_id, call.tone_map[j].call_id);
1344 if (option_verbose > 4)
1345 ast_verbose("%s: Disabling Loop Drop detection\n",p->dev);
1346 vpb_disable_event(p->handle, VPB_MDROP);
1347 vpb_sethook_sync(p->handle,VPB_OFFHOOK);
1348 p->state=VPB_STATE_OFFHOOK;
1350 #ifndef DIAL_WITH_CALL_PROGRESS
1352 if (option_verbose > 4)
1353 ast_verbose("%s: Disabling Loop Drop detection\n",p->dev);
1354 vpb_enable_event(p->handle, VPB_MDROP);
1355 res = vpb_dial_async(p->handle, dialstring);
1357 if (option_verbose > 4)
1358 ast_verbose("%s: Disabling Loop Drop detection\n",p->dev);
1359 vpb_enable_event(p->handle, VPB_MDROP);
1360 res = vpb_call_async(p->handle, dialstring);
1363 if (res != VPB_OK) {
1364 ast_log(LOG_DEBUG, "Call on %s to %s failed: %s\n", ast->name, s, vpb_strerror(res));
1370 if (option_verbose > 2)
1371 ast_verbose(VERBOSE_PREFIX_3 "%s: VPB Calling %s [t=%d] on %s returned %d\n",p->dev , s, timeout, ast->name, res);
1373 ast_setstate(ast, AST_STATE_RINGING);
1374 ast_queue_control(ast,AST_CONTROL_RINGING);
1377 if (!p->readthread){
1378 ast_pthread_create(&p->readthread, NULL, do_chanreads, (void *)p);
1381 tmp = ast_mutex_unlock(&p->lock);
1383 if (option_verbose > 3) ast_verbose("%s: unLOCKING in call [%d]\n", p->dev,tmp);
1388 static int vpb_hangup(struct ast_channel *ast)
1390 struct vpb_pvt *p = (struct vpb_pvt *)ast->pvt->pvt;
1392 char str[VPB_MAX_STR];
1396 if (option_verbose > 3) ast_verbose("%s: LOCKING in hangup \n", p->dev);
1397 if (option_verbose > 3) ast_verbose("%s: LOCKING in hangup count[%d] owner[%d] \n", p->dev, p->lock.__m_count,p->lock.__m_owner);
1398 if (option_verbose > 3) ast_verbose("%s: LOCKING pthread_self(%d)\n", p->dev,pthread_self());
1399 ast_mutex_lock(&p->lock);
1401 if (option_verbose > 1)
1402 ast_verbose(VERBOSE_PREFIX_2 "%s: Hangup requested\n", ast->name);
1404 if (!ast->pvt || !ast->pvt->pvt) {
1405 ast_log(LOG_WARNING, "%s: channel not connected?\n", ast->name);
1406 res = ast_mutex_unlock(&p->lock);
1408 if (option_verbose > 3) ast_verbose("%s: unLOCKING in hangup [%d]\n", p->dev,res);
1417 if( p->readthread ){
1418 pthread_join(p->readthread, NULL);
1419 if(option_verbose>3)
1420 ast_verbose( VERBOSE_PREFIX_4 "%s: stopped record thread on %s\n",ast->name,p->dev);
1424 if (p->lastoutput != -1) {
1425 if(option_verbose>1)
1426 ast_verbose( VERBOSE_PREFIX_2 "%s: Ending play mode on %s\n",ast->name,p->dev);
1427 vpb_play_terminate(p->handle);
1428 ast_mutex_lock(&p->play_lock); {
1429 vpb_play_buf_finish(p->handle);
1430 } ast_mutex_unlock(&p->play_lock);
1433 if(option_verbose>3)
1434 ast_verbose( VERBOSE_PREFIX_4 "%s: Setting state down\n",ast->name);
1435 ast_setstate(ast,AST_STATE_DOWN);
1439 if (option_verbose > 3) ast_verbose("%s: LOCKING in hangup \n", p->dev);
1440 if (option_verbose > 3) ast_verbose("%s: LOCKING in hangup count[%d] owner[%d] \n", p->dev, p->lock.__m_count,p->lock.__m_owner);
1441 if (option_verbose > 3) ast_verbose("%s: LOCKING pthread_self(%d)\n", p->dev,pthread_self());
1443 ast_mutex_lock(&p->lock);
1445 if (p->mode != MODE_FXO) {
1447 vpb_ring_station_async(p->handle, VPB_RING_STATION_OFF,0);
1448 if(p->state!=VPB_STATE_ONHOOK){
1449 /* This is causing a "dial end" "play tone" loop
1450 playtone(p->handle, &Busytone);
1451 p->state = VPB_STATE_PLAYBUSY;
1452 if(option_verbose>4)
1453 ast_verbose( VERBOSE_PREFIX_4 "%s: Station offhook[%d], playing busy tone\n",
1454 ast->name,p->state);
1458 stoptone(p->handle);
1461 stoptone(p->handle); // Terminates any dialing
1462 vpb_sethook_sync(p->handle, VPB_ONHOOK);
1463 p->state=VPB_STATE_ONHOOK;
1465 while (VPB_OK==vpb_get_event_ch_async(p->handle,&je)){
1466 if(option_verbose>3) {
1467 vpb_translate_event(&je, str);
1468 ast_verbose( VERBOSE_PREFIX_4 "%s: Flushing event [%d]=>%s\n",ast->name,je.type,str);
1475 p->last_ignore_dtmf = 1;
1482 ast_mutex_lock(&usecnt_lock); {
1484 } ast_mutex_unlock(&usecnt_lock);
1485 ast_update_use_count();
1487 if (option_verbose > 1)
1488 ast_verbose(VERBOSE_PREFIX_2 "%s: Hangup complete\n", ast->name);
1492 if (option_verbose > 3) ast_verbose("%s: LOCKING in hangup count[%d] owner[%d] \n", p->dev, p->lock.__m_count,p->lock.__m_owner);
1494 res = ast_mutex_unlock(&p->lock);
1496 if (option_verbose > 3) ast_verbose("%s: unLOCKING in hangup [%d]\n", p->dev,res);
1497 if (option_verbose > 3) ast_verbose("%s: LOCKING in hangup count[%d] owner[%d] \n", p->dev, p->lock.__m_count,p->lock.__m_owner);
1502 static int vpb_answer(struct ast_channel *ast)
1504 struct vpb_pvt *p = (struct vpb_pvt *)ast->pvt->pvt;
1509 if (option_verbose > 3) ast_verbose("%s: LOCKING in answer \n", p->dev);
1510 if (option_verbose > 3) ast_verbose("%s: LOCKING count[%d] owner[%d] \n", p->dev, p->lock.__m_count,p->lock.__m_owner);
1512 ast_mutex_lock(&p->lock);
1514 if (option_verbose > 3)
1515 ast_verbose(VERBOSE_PREFIX_4 "%s: Answering channel\n",p->dev);
1517 if (p->mode == MODE_FXO){
1518 if (option_verbose > 3)
1519 ast_verbose("%s: Disabling Loop Drop detection\n",p->dev);
1520 vpb_disable_event(p->handle, VPB_MDROP);
1523 if (ast->_state != AST_STATE_UP) {
1524 if (p->mode == MODE_FXO){
1525 vpb_sethook_sync(p->handle, VPB_OFFHOOK);
1526 p->state=VPB_STATE_OFFHOOK;
1528 ret = vpb_get_event_ch_async(p->handle,&je);
1529 if ((ret == VPB_OK)&&((je.type != VPB_DROP)&&(je.type != VPB_RING))){
1530 if (option_verbose > 3){
1531 ast_verbose(VERBOSE_PREFIX_4 "%s: Answer collected a wrong event!!\n",p->dev);
1537 ast_setstate(ast, AST_STATE_UP);
1539 if(option_verbose>1)
1540 // ast_verbose( VERBOSE_PREFIX_2 "%s: Answered call from %s on %s [%s]\n", p->dev,
1541 // p->owner->callerid, ast->name,(p->mode == MODE_FXO)?"FXO":"FXS");
1542 ast_verbose( VERBOSE_PREFIX_2 "%s: Answered call on %s [%s]\n", p->dev,
1543 ast->name,(p->mode == MODE_FXO)?"FXO":"FXS");
1546 if( !p->readthread ){
1547 // res = ast_mutex_unlock(&p->lock);
1548 // ast_verbose("%s: unLOCKING in answer [%d]\n", p->dev,res);
1549 ast_pthread_create(&p->readthread, NULL, do_chanreads, (void *)p);
1551 if(option_verbose>3)
1552 ast_verbose(VERBOSE_PREFIX_4 "%s: Record thread already running!!\n",p->dev);
1555 if(option_verbose>3) {
1556 ast_verbose(VERBOSE_PREFIX_4 "%s: Answered state is up\n",p->dev);
1558 // res = ast_mutex_unlock(&p->lock);
1559 // ast_verbose("%s: unLOCKING in answer [%d]\n", p->dev,res);
1562 if (p->mode == MODE_FXO){
1563 if (option_verbose > 3)
1564 ast_verbose("%s: Re-enabling Loop Drop detection\n",p->dev);
1565 vpb_enable_event(p->handle,VPB_MDROP);
1567 res = ast_mutex_unlock(&p->lock);
1569 if(option_verbose>3) ast_verbose("%s: unLOCKING in answer [%d]\n", p->dev,res);
1574 static struct ast_frame *vpb_read(struct ast_channel *ast)
1576 struct vpb_pvt *p = (struct vpb_pvt *)ast->pvt->pvt;
1577 static struct ast_frame f = {AST_FRAME_NULL};
1580 ast_log(LOG_NOTICE, "%s: vpb_read: should never be called!\n", p->dev);
1581 ast_verbose("%s: vpb_read: should never be called!\n", p->dev);
1586 static inline int ast2vpbformat(int ast_format)
1588 switch(ast_format) {
1589 case AST_FORMAT_ALAW:
1591 case AST_FORMAT_SLINEAR:
1593 case AST_FORMAT_ULAW:
1595 case AST_FORMAT_ADPCM:
1596 return VPB_OKIADPCM;
1602 static inline char * ast2vpbformatname(int ast_format)
1604 switch(ast_format) {
1605 case AST_FORMAT_ALAW:
1606 return "AST_FORMAT_ALAW:VPB_ALAW";
1607 case AST_FORMAT_SLINEAR:
1608 return "AST_FORMAT_SLINEAR:VPB_LINEAR";
1609 case AST_FORMAT_ULAW:
1610 return "AST_FORMAT_ULAW:VPB_MULAW";
1611 case AST_FORMAT_ADPCM:
1612 return "AST_FORMAT_ADPCM:VPB_OKIADPCM";
1618 static inline int astformatbits(int ast_format)
1620 switch(ast_format) {
1621 case AST_FORMAT_ALAW:
1622 case AST_FORMAT_ULAW:
1624 case AST_FORMAT_SLINEAR:
1626 case AST_FORMAT_ADPCM:
1633 int a_gain_vector(float g, short *v, int n)
1637 for ( i = 0; i<n; i++) {
1648 /* Writes a frame of voice data to a VPB channel */
1649 static int vpb_write(struct ast_channel *ast, struct ast_frame *frame)
1651 struct vpb_pvt *p = (struct vpb_pvt *)ast->pvt->pvt;
1652 int res = 0, fmt = 0;
1653 struct timeval play_buf_time_start,play_buf_time_finish;
1654 // ast_mutex_lock(&p->lock);
1655 if(option_verbose>5)
1656 ast_verbose("%s: vpb_write: Writing to channel\n", p->dev);
1658 if (frame->frametype != AST_FRAME_VOICE) {
1659 if(option_verbose>3)
1660 ast_verbose("%s: vpb_write: Don't know how to handle from type %d\n", ast->name, frame->frametype);
1661 // ast_mutex_unlock(&p->lock);
1663 } else if (ast->_state != AST_STATE_UP) {
1664 if(option_verbose>3)
1665 ast_verbose("%s: vpb_write: Attempt to Write frame type[%d]subclass[%d] on not up chan\n",ast->name, frame->frametype, frame->subclass);
1667 // ast_mutex_unlock(&p->lock);
1670 ast_log(LOG_DEBUG, "%s: vpb_write: Checked frame type..\n", p->dev);
1672 fmt = ast2vpbformat(frame->subclass);
1674 ast_log(LOG_WARNING, "%s: vpb_write: Cannot handle frames of %d format!\n",ast->name, frame->subclass);
1677 ast_log(LOG_DEBUG, "%s: vpb_write: Checked frame format..\n", p->dev);
1679 ast_mutex_lock(&p->play_lock);
1681 ast_log(LOG_DEBUG, "%s: vpb_write: Got play lock..\n", p->dev);
1683 /* Check if we have set up the play_buf */
1684 if (p->lastoutput == -1) {
1685 vpb_play_buf_start(p->handle, fmt);
1686 if(option_verbose>1) {
1687 ast_verbose("%s: vpb_write: Starting play mode (codec=%d)[%s]\n",p->dev,fmt,ast2vpbformatname(frame->subclass));
1689 } else if (p->lastoutput != fmt) {
1690 vpb_play_buf_finish(p->handle);
1691 vpb_play_buf_start(p->handle, fmt);
1692 if(option_verbose>1)
1693 ast_verbose("%s: vpb_write: Changed play format (%d=>%d)\n",p->dev,p->lastoutput,fmt);
1695 p->lastoutput = fmt;
1699 // Apply extra gain !
1700 if( p->txswgain > MAX_VPB_GAIN )
1701 a_gain_vector(p->txswgain - MAX_VPB_GAIN , (short*)frame->data, frame->datalen/sizeof(short));
1703 ast_log(LOG_DEBUG, "%s: vpb_write: Applied gain..\n", p->dev);
1705 // gettimeofday(&tv, NULL);
1706 // return ((double)tv.tv_sec*1000)+((double)tv.tv_usec/1000);
1708 if ((p->read_state == 1)&&(p->play_buf_time<5)){
1709 gettimeofday(&play_buf_time_start,NULL);
1710 res = vpb_play_buf_sync(p->handle, (char*)frame->data, frame->datalen);
1711 if( (res == VPB_OK) && (option_verbose > 5) ) {
1712 short * data = (short*)frame->data;
1713 ast_verbose("%s: vpb_write: Wrote chan (codec=%d) %d %d\n", p->dev, fmt, data[0],data[1]);
1715 gettimeofday(&play_buf_time_finish,NULL);
1716 if (play_buf_time_finish.tv_sec == play_buf_time_start.tv_sec){
1717 p->play_buf_time=(int)((play_buf_time_finish.tv_usec-play_buf_time_start.tv_usec)/1000);
1718 // ast_log(LOG_DEBUG, "%s: vpb_write: Timing start(%d) finish(%d)\n", p->dev,play_buf_time_start.tv_usec,play_buf_time_finish.tv_usec);
1721 p->play_buf_time=(int)((play_buf_time_finish.tv_sec - play_buf_time_start.tv_sec)*100)+(int)((play_buf_time_finish.tv_usec-play_buf_time_start.tv_usec)/1000);
1723 // ast_log(LOG_DEBUG, "%s: vpb_write: Wrote data [%d](%d=>%s) to play_buf in [%d]ms..\n", p->dev,frame->datalen,fmt,ast2vpbformatname(frame->subclass),p->play_buf_time);
1727 ast_log(LOG_DEBUG, "%s: vpb_write: Tossed data away, tooooo much data!![%d]\n", p->dev,p->chuck_count);
1731 ast_mutex_unlock(&p->play_lock);
1732 // ast_mutex_unlock(&p->lock);
1733 if(option_verbose>5)
1734 ast_verbose("%s: vpb_write: Done Writing to channel\n", p->dev);
1738 /* Read monitor thread function. */
1739 static void *do_chanreads(void *pvt)
1741 struct vpb_pvt *p = (struct vpb_pvt *)pvt;
1742 struct ast_frame *fr = &p->fr;
1743 char *readbuf = ((char *)p->buf) + AST_FRIENDLY_OFFSET;
1745 int afmt, readlen, res, fmt, trycnt=0;
1747 char * getdtmf_var = NULL;
1749 fr->frametype = AST_FRAME_VOICE;
1752 fr->delivery.tv_sec = 0;
1753 fr->delivery.tv_usec = 0;
1754 fr->samples = VPB_SAMPLES;
1755 fr->offset = AST_FRIENDLY_OFFSET;
1756 memset(p->buf, 0, sizeof p->buf);
1758 if (option_verbose > 2) {
1759 ast_verbose("%s: chanreads: starting thread\n", p->dev);
1761 ast_mutex_lock(&p->record_lock);
1765 while (!p->stopreads && p->owner) {
1767 if (option_verbose > 4)
1768 ast_verbose("%s: chanreads: Starting cycle ...\n", p->dev);
1769 if (option_verbose > 4)
1770 ast_verbose("%s: chanreads: Checking bridge \n", p->dev);
1772 if (p->bridge->c0 == p->owner && (p->bridge->flags & AST_BRIDGE_REC_CHANNEL_0))
1774 else if (p->bridge->c1 == p->owner && (p->bridge->flags & AST_BRIDGE_REC_CHANNEL_1))
1779 if (option_verbose > 4)
1780 ast_verbose("%s: chanreads: No native bridge.\n", p->dev);
1781 if (p->owner->bridge){
1782 if (option_verbose > 4){
1783 ast_verbose("%s: chanreads: Got Asterisk bridge with [%s].\n", p->dev,p->owner->bridge->name);
1792 // if ( (p->owner->_state != AST_STATE_UP) || !bridgerec) {
1793 if ( (p->owner->_state != AST_STATE_UP) ) {
1794 if (option_verbose > 4) {
1795 if (p->owner->_state != AST_STATE_UP)
1796 ast_verbose("%s: chanreads: Im not up[%d]\n", p->dev,p->owner->_state);
1798 ast_verbose("%s: chanreads: No bridgerec[%d]\n", p->dev,bridgerec);
1804 // Voicetronix DTMF detection can be triggered off ordinary speech
1805 // This leads to annoying beeps during the conversation
1806 // Avoid this problem by just setting VPB_GETDTMF when you want to listen for DTMF
1808 ignore_dtmf = 0; /* set this to 1 to turn this feature on */
1809 getdtmf_var = pbx_builtin_getvar_helper(p->owner,"VPB_GETDTMF");
1810 if( getdtmf_var && ( strcasecmp( getdtmf_var, "yes" ) == 0 ) )
1813 if( ignore_dtmf != p->last_ignore_dtmf ) {
1814 if(option_verbose>1)
1815 ast_verbose( VERBOSE_PREFIX_2 "%s:Now %s DTMF \n",
1816 p->dev, ignore_dtmf ? "ignoring" : "listening for");
1817 vpb_set_event_mask(p->handle, ignore_dtmf ? VPB_EVENTS_NODTMF : VPB_EVENTS_ALL );
1819 p->last_ignore_dtmf = ignore_dtmf;
1821 // Play DTMF digits here to avoid problem you get if playing a digit during
1822 // a record operation
1823 if (option_verbose > 5) {
1824 ast_verbose("%s: chanreads: Checking dtmf's \n", p->dev);
1826 ast_mutex_lock(&p->play_dtmf_lock);
1827 if( p->play_dtmf[0] ) {
1828 // Try to ignore DTMF event we get after playing digit
1829 // This DTMF is played by asterisk and leads to an annoying trailing beep on CISCO phones
1831 vpb_set_event_mask(p->handle, VPB_EVENTS_NODTMF );
1832 if (strcmp(p->owner->type,"vpb")){
1833 vpb_dial_sync(p->handle,p->play_dtmf);
1834 if(option_verbose>1)
1835 ast_verbose( VERBOSE_PREFIX_2 "%s: chanreads: Played DTMF %s\n",p->dev,p->play_dtmf);
1838 if (option_verbose > 1)
1839 ast_verbose(VERBOSE_PREFIX_2 "%s: chanreads: Not playing DTMF frame on native bridge\n", p->dev);
1841 p->play_dtmf[0] = '\0';
1842 ast_mutex_unlock(&p->play_dtmf_lock);
1843 vpb_sleep(700); // Long enough to miss echo and DTMF event
1845 vpb_set_event_mask(p->handle, VPB_EVENTS_ALL );
1848 ast_mutex_unlock(&p->play_dtmf_lock);
1850 // afmt = (p->owner) ? p->owner->pvt->rawreadformat : AST_FORMAT_SLINEAR;
1852 afmt = p->owner->pvt->rawreadformat;
1853 ast_log(LOG_DEBUG,"%s: Record using owner format [%s]\n", p->dev, ast2vpbformatname(afmt));
1856 afmt = AST_FORMAT_SLINEAR;
1857 ast_log(LOG_DEBUG,"%s: Record using default format [%s]\n", p->dev, ast2vpbformatname(afmt));
1859 fmt = ast2vpbformat(afmt);
1861 ast_log(LOG_WARNING,"%s: Record failure (unsupported format %d)\n", p->dev, afmt);
1864 readlen = VPB_SAMPLES * astformatbits(afmt) / 8;
1866 if (p->lastinput == -1) {
1867 vpb_record_buf_start(p->handle, fmt);
1868 vpb_reset_record_fifo_alarm(p->handle);
1869 if(option_verbose>1)
1870 ast_verbose( VERBOSE_PREFIX_2 "%s: Starting record mode (codec=%d)[%s]\n",p->dev,fmt,ast2vpbformatname(afmt));
1871 } else if (p->lastinput != fmt) {
1872 vpb_record_buf_finish(p->handle);
1873 vpb_record_buf_start(p->handle, fmt);
1874 if(option_verbose>1)
1875 ast_verbose( VERBOSE_PREFIX_2 "%s: Changed record format (%d=>%d)\n",p->dev,p->lastinput,fmt);
1879 /* Read only if up and not bridged, or a bridge for which we can read. */
1880 if (option_verbose > 5) {
1881 ast_verbose("%s: chanreads: getting buffer!\n", p->dev);
1883 if( (res = vpb_record_buf_sync(p->handle, readbuf, readlen) ) == VPB_OK ) {
1884 if (option_verbose > 5) {
1885 ast_verbose("%s: chanreads: got buffer!\n", p->dev);
1887 // Apply extra gain !
1888 if( p->rxswgain > MAX_VPB_GAIN )
1889 a_gain_vector(p->rxswgain - MAX_VPB_GAIN , (short*)readbuf, readlen/sizeof(short));
1890 if (option_verbose > 5) {
1891 ast_verbose("%s: chanreads: applied gain\n", p->dev);
1894 fr->subclass = afmt;
1896 fr->datalen = readlen;
1898 // Using trylock here to prevent deadlock when channel is hungup
1899 // (ast_hangup() immediately gets lock)
1900 if (p->owner && !p->stopreads ) {
1901 if (option_verbose > 5) {
1902 ast_verbose("%s: chanreads: queueing buffer on read frame q (state[%d])\n", p->dev,p->owner->_state);
1905 res = ast_mutex_trylock(&p->owner->lock);
1907 } while((res !=0)&&(trycnt<300));
1909 ast_queue_frame(p->owner, fr);
1910 ast_mutex_unlock(&p->owner->lock);
1912 if (option_verbose > 4)
1913 ast_verbose("%s: chanreads: Couldnt get lock after %d tries!\n", p->dev,trycnt);
1918 res = ast_mutex_trylock(&p->owner->lock);
1921 ast_queue_frame(p->owner, fr);
1922 ast_mutex_unlock(&p->owner->lock);
1925 if (option_verbose > 4) ast_verbose("%s: chanreads: try owner->lock gave me EINVAL[%d]\n", p->dev,res);
1926 else if (res == EBUSY )
1927 if (option_verbose > 4) ast_verbose("%s: chanreads: try owner->lock gave me EBUSY[%d]\n", p->dev,res);
1929 res = ast_mutex_trylock(&p->owner->lock);
1932 ast_queue_frame(p->owner, fr);
1933 ast_mutex_unlock(&p->owner->lock);
1937 if (option_verbose > 4) ast_verbose("%s: chanreads: try owner->lock gave me EINVAL[%d]\n", p->dev,res);
1938 else if (res == EBUSY )
1939 if (option_verbose > 4) ast_verbose("%s: chanreads: try owner->lock gave me EBUSY[%d]\n", p->dev,res);
1940 if (option_verbose > 4) ast_verbose("%s: chanreads: Couldnt get lock on owner[%s][%d][%d] channel to send frame!\n", p->dev,p->owner->name,(int)p->owner->lock.__m_owner,(int)p->owner->lock.__m_count);
1941 //assert(p->dev!=p->dev);
1945 if (option_verbose > 6) {
1946 short * data = (short*)readbuf;
1947 ast_verbose("%s: Read channel (codec=%d) %d %d\n", p->dev, fmt, data[0], data[1] );
1951 if (option_verbose > 4) {
1952 ast_verbose("%s: p->stopreads[%d] p->owner[%p]\n", p->dev, p->stopreads,(void *)p->owner);
1956 ast_log(LOG_WARNING,"%s: Record failure (%s)\n", p->dev, vpb_strerror(res));
1957 vpb_record_buf_finish(p->handle);
1958 vpb_record_buf_start(p->handle, fmt);
1960 if (option_verbose > 4)
1961 ast_verbose("%s: chanreads: Finished cycle...\n", p->dev);
1965 /* When stopreads seen, go away! */
1966 vpb_record_buf_finish(p->handle);
1968 ast_mutex_unlock(&p->record_lock);
1970 if (option_verbose > 1)
1971 ast_verbose(VERBOSE_PREFIX_2 "%s: Ending record mode (%d/%s)\n",
1972 p->dev, p->stopreads, p->owner? "yes" : "no");
1976 static struct ast_channel *vpb_new(struct vpb_pvt *me, int state, char *context)
1978 struct ast_channel *tmp;
1981 ast_log(LOG_WARNING, "Called vpb_new on owned channel (%s) ?!\n", me->dev);
1984 if (option_verbose > 3)
1985 ast_verbose("%s: New call for context [%s]\n",me->dev,context);
1987 tmp = ast_channel_alloc(1);
1989 strncpy(tmp->name, me->dev, sizeof(tmp->name) - 1);
1992 // Linear is the preferred format. Although Voicetronix supports other formats
1993 // they are all converted to/from linear in the vpb code. Best for us to use
1994 // linear since we can then adjust volume in this modules.
1995 tmp->nativeformats = prefformat;
1996 tmp->pvt->rawreadformat = AST_FORMAT_SLINEAR;
1997 tmp->pvt->rawwriteformat = AST_FORMAT_SLINEAR;
1998 ast_setstate(tmp, state);
1999 if (state == AST_STATE_RING)
2002 /* set call backs */
2003 tmp->pvt->send_digit = vpb_digit;
2004 tmp->pvt->call = vpb_call;
2005 tmp->pvt->hangup = vpb_hangup;
2006 tmp->pvt->answer = vpb_answer;
2007 tmp->pvt->read = vpb_read;
2008 tmp->pvt->write = vpb_write;
2009 tmp->pvt->bridge = vpb_bridge;
2010 tmp->pvt->indicate = vpb_indicate;
2011 tmp->pvt->fixup = vpb_fixup;
2013 strncpy(tmp->context, context, sizeof(tmp->context)-1);
2014 if (strlen(me->ext))
2015 strncpy(tmp->exten, me->ext, sizeof(tmp->exten)-1);
2017 strncpy(tmp->exten, "s", sizeof(tmp->exten) - 1);
2018 if (strlen(me->language))
2019 strncpy(tmp->language, me->language, sizeof(tmp->language)-1);
2024 me->lastoutput = -1;
2026 me->last_ignore_dtmf = 1;
2028 me->play_dtmf[0] = '\0';
2030 me->lastgrunt = get_time_in_ms(); /* Assume at least one grunt tone seen now. */
2032 ast_mutex_lock(&usecnt_lock);
2034 ast_mutex_unlock(&usecnt_lock);
2035 ast_update_use_count();
2036 if (state != AST_STATE_DOWN) {
2037 if (ast_pbx_start(tmp)) {
2038 ast_log(LOG_WARNING, "Unable to start PBX on %s\n", tmp->name);
2043 ast_log(LOG_WARNING, "Unable to allocate channel structure\n");
2048 static struct ast_channel *vpb_request(const char *type, int format, void *data)
2052 struct ast_channel *tmp = NULL;
2053 char *name = strdup(data ? (char *)data : "");
2058 format &= prefformat;
2060 ast_log(LOG_NOTICE, "Asked to get a channel of unsupported format '%d'\n", oldformat);
2065 s = strsep(&sepstr, "/"); /* Handle / issues */
2068 /* Check if we are looking for a group */
2069 if (toupper(name[0]) == 'G' || toupper(name[0])=='R') {
2072 /* Search for an unowned channel */
2073 ast_mutex_lock(&iflock); {
2077 if (strncmp(s, p->dev + 4, sizeof p->dev) == 0) {
2079 tmp = vpb_new(p, AST_STATE_DOWN, p->context);
2085 if ((p->group == group) && (!p->owner)) {
2086 tmp = vpb_new(p, AST_STATE_DOWN, p->context);
2092 } ast_mutex_unlock(&iflock);
2095 if (option_verbose > 1)
2096 ast_verbose(VERBOSE_PREFIX_2 " %s requested, got: [%s]\n",
2097 name, tmp ? tmp->name : "None");
2105 static float parse_gain_value(char *gain_type, char *value)
2109 /* try to scan number */
2110 if (sscanf(value, "%f", &gain) != 1)
2112 ast_log(LOG_ERROR, "Invalid %s value '%s' in '%s' config\n", value, gain_type, config);
2113 return DEFAULT_GAIN;
2118 //if (value[strlen(value) - 1] == '%')
2119 // return gain / (float)100;
2126 struct ast_config *cfg;
2127 struct ast_variable *v;
2128 struct vpb_pvt *tmp;
2129 int board = 0, group = 0;
2130 int mode = MODE_IMMEDIATE;
2131 float txgain = DEFAULT_GAIN, rxgain = DEFAULT_GAIN;
2132 float txswgain = 0, rxswgain = 0;
2133 int first_channel = 1;
2134 int echo_cancel = DEFAULT_ECHO_CANCEL;
2135 int error = 0; /* Error flag */
2136 int bal1 = -1; // Special value - means do not set
2139 char * callerid = NULL;
2141 cfg = ast_load(config);
2143 /* We *must* have a config file otherwise stop immediately */
2145 ast_log(LOG_ERROR, "Unable to load config %s\n", config);
2149 vpb_seterrormode(VPB_ERROR_CODE);
2151 ast_mutex_lock(&iflock); {
2152 v = ast_variable_browse(cfg, "interfaces");
2154 /* Create the interface list */
2155 if (strcasecmp(v->name, "board") == 0) {
2156 board = atoi(v->value);
2157 } else if (strcasecmp(v->name, "group") == 0){
2158 group = atoi(v->value);
2159 } else if (strcasecmp(v->name, "useloopdrop") == 0){
2160 UseLoopDrop = atoi(v->value);
2161 } else if (strcasecmp(v->name, "usenativebridge") == 0){
2162 UseNativeBridge = atoi(v->value);
2163 } else if (strcasecmp(v->name, "channel") == 0) {
2164 int channel = atoi(v->value);
2165 tmp = mkif(board, channel, mode, txgain, rxgain, txswgain, rxswgain, bal1, bal2, bal3, callerid, echo_cancel,group);
2168 mkbrd( tmp->vpb_model, echo_cancel );
2175 "Unable to register channel '%s'\n", v->value);
2180 } else if (strcasecmp(v->name, "language") == 0) {
2181 strncpy(language, v->value, sizeof(language)-1);
2182 } else if (strcasecmp(v->name, "callerid") == 0) {
2183 callerid = strdup(v->value);
2184 } else if (strcasecmp(v->name, "mode") == 0) {
2185 if (strncasecmp(v->value, "di", 2) == 0)
2186 mode = MODE_DIALTONE;
2187 else if (strncasecmp(v->value, "im", 2) == 0)
2188 mode = MODE_IMMEDIATE;
2189 else if (strncasecmp(v->value, "fx", 2) == 0)
2192 ast_log(LOG_WARNING, "Unknown mode: %s\n", v->value);
2193 } else if (!strcasecmp(v->name, "context")) {
2194 strncpy(context, v->value, sizeof(context)-1);
2195 } else if (!strcasecmp(v->name, "echocancel")) {
2196 if (!strcasecmp(v->value, "off"))
2198 } else if (strcasecmp(v->name, "txgain") == 0) {
2199 txswgain = parse_gain_value(v->name, v->value);
2200 } else if (strcasecmp(v->name, "rxgain") == 0) {
2201 rxswgain = parse_gain_value(v->name, v->value);
2202 } else if (strcasecmp(v->name, "txhwgain") == 0) {
2203 txgain = parse_gain_value(v->name, v->value);
2204 } else if (strcasecmp(v->name, "rxhwgain") == 0) {
2205 rxgain = parse_gain_value(v->name, v->value);
2206 } else if (strcasecmp(v->name, "bal1") == 0) {
2207 bal1 = strtol(v->value, NULL, 16);
2208 if(bal1<0 || bal1>255) {
2209 ast_log(LOG_WARNING, "Bad bal1 value: %d\n", bal1);
2212 } else if (strcasecmp(v->name, "bal2") == 0) {
2213 bal2 = strtol(v->value, NULL, 16);
2214 if(bal2<0 || bal2>255) {
2215 ast_log(LOG_WARNING, "Bad bal2 value: %d\n", bal2);
2218 } else if (strcasecmp(v->name, "bal3") == 0) {
2219 bal3 = strtol(v->value, NULL, 16);
2220 if(bal3<0 || bal3>255) {
2221 ast_log(LOG_WARNING, "Bad bal3 value: %d\n", bal3);
2224 } else if (strcasecmp(v->name, "grunttimeout") == 0) {
2225 gruntdetect_timeout = 1000*atoi(v->value);
2230 if (gruntdetect_timeout < 1000)
2231 gruntdetect_timeout = 1000;
2234 } ast_mutex_unlock(&iflock);
2238 if (!error && ast_channel_register(type, tdesc, prefformat, vpb_request) != 0) {
2239 ast_log(LOG_ERROR, "Unable to register channel class %s\n", type);
2247 restart_monitor(); /* And start the monitor for the first time */
2256 /* First, take us out of the channel loop */
2257 ast_channel_unregister(type);
2259 ast_mutex_lock(&iflock); {
2260 /* Hangup all interfaces if they have an owner */
2264 ast_softhangup(p->owner, AST_SOFTHANGUP_APPUNLOAD);
2268 } ast_mutex_unlock(&iflock);
2270 ast_mutex_lock(&monlock); {
2271 if (mthreadactive > -1) {
2272 pthread_cancel(monitor_thread);
2273 pthread_join(monitor_thread, NULL);
2276 } ast_mutex_unlock(&monlock);
2278 ast_mutex_lock(&iflock); {
2279 /* Destroy all the interfaces and free their memory */
2283 ast_mutex_destroy(&p->lock);
2284 pthread_cancel(p->readthread);
2285 ast_mutex_destroy(&p->owner_lock);
2286 ast_mutex_destroy(&p->record_lock);
2287 ast_mutex_destroy(&p->play_lock);
2288 ast_mutex_destroy(&p->play_dtmf_lock);
2291 vpb_close(p->handle);
2293 iflist = iflist->next;
2298 } ast_mutex_unlock(&iflock);
2300 ast_mutex_lock(&bridge_lock); {
2301 memset(bridges, 0, sizeof bridges);
2302 } ast_mutex_unlock(&bridge_lock);
2303 ast_mutex_destroy(&bridge_lock);
2304 for(int i = 0; i < max_bridges; i++ ) {
2305 ast_mutex_destroy(&bridges[i].lock);
2306 pthread_cond_destroy(&bridges[i].cond);
2316 ast_mutex_lock(&usecnt_lock);
2318 ast_mutex_unlock(&usecnt_lock);
2329 return ASTERISK_GPL_KEY;
2333 #if defined(__cplusplus) || defined(c_plusplus)