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 - 2005, 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
25 #include <asterisk/lock.h>
26 #include <asterisk/utils.h>
27 #include <asterisk/channel.h>
28 #include <asterisk/channel_pvt.h>
29 #include <asterisk/config.h>
30 #include <asterisk/logger.h>
31 #include <asterisk/module.h>
32 #include <asterisk/pbx.h>
33 #include <asterisk/options.h>
34 #include <asterisk/callerid.h>
38 #include <sys/socket.h>
43 #include <arpa/inet.h>
45 #include <sys/ioctl.h>
55 #define DEFAULT_GAIN 0
56 #define DEFAULT_ECHO_CANCEL 1
58 #define VPB_SAMPLES 160
59 #define VPB_MAX_BUF VPB_SAMPLES*4 + AST_FRIENDLY_OFFSET
61 #define VPB_NULL_EVENT 200
63 #define VPB_WAIT_TIMEOUT 4000
65 #define MAX_VPB_GAIN 12.0
68 #define DTMF_CID_START 'D'
69 #define DTMF_CID_STOP 'C'
72 #if defined(__cplusplus) || defined(c_plusplus)
77 static char *desc = "VoiceTronix V6PCI/V12PCI/V4PCI API Support";
78 static char *type = "vpb";
79 static char *tdesc = "Standard VoiceTronix API Driver";
80 static char *config = "vpb.conf";
82 /* Default context for dialtone mode */
83 static char context[AST_MAX_EXTENSION] = "default";
85 /* Default language */
86 static char language[MAX_LANGUAGE] = "";
89 static int gruntdetect_timeout = 3600000; /* Grunt detect timeout is 1hr. */
91 static const int prefformat = AST_FORMAT_SLINEAR;
93 AST_MUTEX_DEFINE_STATIC(usecnt_lock);
95 /* Protect the interface list (of vpb_pvt's) */
96 AST_MUTEX_DEFINE_STATIC(iflock);
98 /* Protect the monitoring thread, so only one process can kill or start it, and not
99 when it's doing something critical. */
100 AST_MUTEX_DEFINE_STATIC(monlock);
102 /* This is the thread for the monitor which checks for input on the channels
103 which are not currently in use. */
104 static pthread_t monitor_thread;
106 static int mthreadactive = -1; /* Flag for monitoring monitorthread.*/
109 static int restart_monitor(void);
111 /* The private structures of the VPB channels are
112 linked for selecting outgoing channels */
114 #define MODE_DIALTONE 1
115 #define MODE_IMMEDIATE 2
118 /* Pick a country or add your own! */
119 /* These are the tones that are played to the user */
121 /* #define TONES_USA */
124 static VPB_TONE Dialtone = {440, 440, 440, -10, -10, -10, 5000, 0 };
125 static VPB_TONE Busytone = {470, 0, 0, -10, -100, -100, 5000, 0 };
126 static VPB_TONE Ringbacktone = {400, 50, 440, -10, -10, -10, 1400, 800 };
129 static VPB_TONE Dialtone = {350, 440, 0, -16, -16, -100, 10000, 0};
130 static VPB_TONE Busytone = {480, 620, 0, -10, -10, -100, 500, 500};
131 static VPB_TONE Ringbacktone = {440, 480, 0, -20, -20, -100, 2000, 4000};
134 /* grunt tone defn's */
135 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 } } };
136 static VPB_DETECT toned_ungrunt = { 2, VPB_GRUNT, 1, 2000, 1, 0, 0, -40, 0, 0, 30, 40, { { 0, 0, 0, 0 } } };
138 /* Use loop drop detection */
139 static int UseLoopDrop=1;
141 /* To use or not to use Native bridging */
142 static int UseNativeBridge=1;
144 /* Use Asterisk Indication or VPB */
145 static int use_ast_ind=0;
147 #define TIMER_PERIOD_RINGBACK 2000
148 #define TIMER_PERIOD_BUSY 700
149 #define TIMER_PERIOD_RING 4000
151 #define VPB_EVENTS_ALL (VPB_MRING|VPB_MDIGIT|VPB_MDTMF|VPB_MTONEDETECT|VPB_MTIMEREXP|VPB_MPLAY_UNDERFLOW \
152 |VPB_MRECORD_OVERFLOW|VPB_MSTATION_OFFHOOK|VPB_MSTATION_ONHOOK \
153 |VPB_MRING_OFF|VPB_MDROP|VPB_MSTATION_FLASH)
154 #define VPB_EVENTS_NODROP (VPB_MRING|VPB_MDIGIT|VPB_MDTMF|VPB_MTONEDETECT|VPB_MTIMEREXP|VPB_MPLAY_UNDERFLOW \
155 |VPB_MRECORD_OVERFLOW|VPB_MSTATION_OFFHOOK|VPB_MSTATION_ONHOOK \
156 |VPB_MRING_OFF|VPB_MSTATION_FLASH)
157 #define VPB_EVENTS_NODTMF (VPB_MRING|VPB_MDIGIT|VPB_MTONEDETECT|VPB_MTIMEREXP|VPB_MPLAY_UNDERFLOW \
158 |VPB_MRECORD_OVERFLOW|VPB_MSTATION_OFFHOOK|VPB_MSTATION_ONHOOK \
159 |VPB_MRING_OFF|VPB_MDROP|VPB_MSTATION_FLASH)
160 #define VPB_EVENTS_STAT (VPB_MRING|VPB_MDIGIT|VPB_MDTMF|VPB_MTONEDETECT|VPB_MTIMEREXP|VPB_MPLAY_UNDERFLOW \
161 |VPB_MRECORD_OVERFLOW|VPB_MSTATION_OFFHOOK|VPB_MSTATION_ONHOOK \
162 |VPB_MRING_OFF|VPB_MSTATION_FLASH)
165 /* Dialing parameters for Australia */
166 /* #define DIAL_WITH_CALL_PROGRESS */
167 VPB_TONE_MAP DialToneMap[] = { { VPB_BUSY_AUST, VPB_CALL_DISCONNECT, 0 },
168 { VPB_DIAL, VPB_CALL_DIALTONE, 0 },
169 { VPB_RINGBACK_308, VPB_CALL_RINGBACK, 0 },
170 { VPB_BUSY_AUST, VPB_CALL_BUSY, 0 },
171 { VPB_GRUNT, VPB_CALL_GRUNT, 0 },
173 #define VPB_DIALTONE_WAIT 2000 /* Wait up to 2s for a dialtone */
174 #define VPB_RINGWAIT 4000 /* Wait up to 4s for ring tone after dialing */
175 #define VPB_CONNECTED_WAIT 4000 /* If no ring tone detected for 4s then consider call connected */
176 #define TIMER_PERIOD_NOANSWER 120000 /* Let it ring for 120s before deciding theres noone there */
178 #define MAX_BRIDGES_V4PCI 2
179 #define MAX_BRIDGES_V12PCI 128
182 #define VPB_STATE_ONHOOK 0
183 #define VPB_STATE_OFFHOOK 1
184 #define VPB_STATE_DIALLING 2
185 #define VPB_STATE_JOINED 3
186 #define VPB_STATE_GETDTMF 4
187 #define VPB_STATE_PLAYDIAL 5
188 #define VPB_STATE_PLAYBUSY 6
189 #define VPB_STATE_PLAYRING 7
194 struct ast_channel *c0, *c1, **rc;
195 struct ast_frame **fo;
202 static vpb_bridge_t * bridges;
203 static int max_bridges = MAX_BRIDGES_V4PCI;
205 AST_MUTEX_DEFINE_STATIC(bridge_lock);
208 vpb_model_unknown = 0,
213 static struct vpb_pvt {
215 ast_mutex_t owner_lock; /* Protect blocks that expect ownership to remain the same */
216 struct ast_channel *owner; /* Channel who owns us, possibly NULL */
218 int golock; /* Got owner lock ? */
220 int mode; /* fxo/imediate/dialtone*/
221 int handle; /* Handle for vpb interface */
223 int state; /* used to keep port state (internal to driver) */
225 int group; /* Which group this port belongs to */
227 char dev[256]; /* Device name, eg vpb/1-1 */
228 vpb_model_t vpb_model; /* card model */
230 struct ast_frame f, fr; /* Asterisk frame interface */
231 char buf[VPB_MAX_BUF]; /* Static buffer for reading frames */
233 int dialtone; /* NOT USED */
234 float txgain, rxgain; /* Hardware gain control */
235 float txswgain, rxswgain; /* Software gain control */
237 int wantdtmf; /* Waiting for DTMF. */
238 char context[AST_MAX_EXTENSION]; /* The context for this channel */
240 char ext[AST_MAX_EXTENSION]; /* DTMF buffer for the ext[ens] */
241 char language[MAX_LANGUAGE]; /* language being used */
242 char callerid[AST_MAX_EXTENSION]; /* CallerId used for directly connected phone */
243 int callerid_type; /* Caller ID type: 0=>none 1=>vpb 2=>AstV23 3=>AstBell */
245 int dtmf_caller_pos; /* DTMF CallerID detection (Brazil)*/
247 int lastoutput; /* Holds the last Audio format output'ed */
248 int lastinput; /* Holds the last Audio format input'ed */
249 int last_ignore_dtmf;
251 void *busy_timer; /* Void pointer for busy vpb_timer */
252 int busy_timer_id; /* unique timer ID for busy timer */
254 void *ringback_timer; /* Void pointer for ringback vpb_timer */
255 int ringback_timer_id; /* unique timer ID for ringback timer */
257 void *ring_timer; /* Void pointer for ring vpb_timer */
258 int ring_timer_id; /* unique timer ID for ring timer */
260 double lastgrunt; /* time stamp (secs since epoc) of last grunt event */
262 ast_mutex_t lock; /* This one just protects bridge ptr below */
263 vpb_bridge_t *bridge;
265 int stopreads; /* Stop reading...*/
266 int read_state; /* Read state */
267 int chuck_count; /* a count of packets weve chucked away!*/
268 pthread_t readthread; /* For monitoring read channel. One per owned channel. */
270 ast_mutex_t record_lock; /* This one prevents reentering a record_buf block */
271 ast_mutex_t play_lock; /* This one prevents reentering a play_buf block */
272 int play_buf_time; /* How long the last play_buf took */
274 ast_mutex_t play_dtmf_lock;
277 struct vpb_pvt *next; /* Next channel in list */
281 static struct ast_channel *vpb_new(struct vpb_pvt *i, int state, char *context);
282 static void *do_chanreads(void *pvt);
284 /* Can't get vpb_bridge() working on v4pci without either a horrible
285 * high pitched feedback noise or bad hiss noise depending on gain settings
286 * Get asterisk to do the bridging
288 #define BAD_V4PCI_BRIDGE
290 /* This one enables a half duplex bridge which may be required to prevent high pitched
291 * feedback when getting asterisk to do the bridging and when using certain gain settings.
293 /* #define HALF_DUPLEX_BRIDGE */
295 /* This is the Native bridge code, which Asterisk will try before using its own bridging code */
296 static int vpb_bridge(struct ast_channel *c0, struct ast_channel *c1, int flags, struct ast_frame **fo, struct ast_channel **rc)
298 struct vpb_pvt *p0 = (struct vpb_pvt *)c0->pvt->pvt;
299 struct vpb_pvt *p1 = (struct vpb_pvt *)c1->pvt->pvt;
302 struct ast_channel *cs[3];
303 struct ast_channel *who;
310 #ifdef BAD_V4PCI_BRIDGE
311 if(p0->vpb_model==vpb_model_v4pci)
314 if ( UseNativeBridge != 1){
319 ast_mutex_lock(&p0->lock);
320 ast_mutex_lock(&p1->lock);
323 /* Bridge channels, check if we can. I believe we always can, so find a slot.*/
325 ast_mutex_lock(&bridge_lock); {
326 for (i = 0; i < max_bridges; i++)
327 if (!bridges[i].inuse)
329 if (i < max_bridges) {
330 bridges[i].inuse = 1;
331 bridges[i].endbridge = 0;
332 bridges[i].flags = flags;
338 } ast_mutex_unlock(&bridge_lock);
340 if (i == max_bridges) {
341 ast_log(LOG_WARNING, "vpb_bridge: Failed to bridge %s and %s!\n", c0->name, c1->name);
342 ast_mutex_unlock(&p0->lock);
343 ast_mutex_unlock(&p1->lock);
346 /* Set bridge pointers. You don't want to take these locks while holding bridge lock.*/
347 ast_mutex_lock(&p0->lock); {
348 p0->bridge = &bridges[i];
349 } ast_mutex_unlock(&p0->lock);
351 ast_mutex_lock(&p1->lock); {
352 p1->bridge = &bridges[i];
353 } ast_mutex_unlock(&p1->lock);
355 if (option_verbose>1)
356 ast_verbose(VERBOSE_PREFIX_2 "vpb_bridge: Bridging call entered with [%s, %s]\n", c0->name, c1->name);
359 #ifdef HALF_DUPLEX_BRIDGE
361 if (option_verbose>1)
362 ast_verbose(VERBOSE_PREFIX_2 "vpb_bridge: Starting half-duplex bridge [%s, %s]\n", c0->name, c1->name);
366 memset(p0->buf, 0, sizeof p0->buf);
367 memset(p1->buf, 0, sizeof p1->buf);
369 vpb_record_buf_start(p0->handle, VPB_ALAW);
370 vpb_record_buf_start(p1->handle, VPB_ALAW);
372 vpb_play_buf_start(p0->handle, VPB_ALAW);
373 vpb_play_buf_start(p1->handle, VPB_ALAW);
375 while( !bridges[i].endbridge ) {
376 struct vpb_pvt *from, *to;
384 vpb_record_buf_sync(from->handle, from->buf, VPB_SAMPLES);
385 vpb_play_buf_sync(to->handle, from->buf, VPB_SAMPLES);
388 vpb_record_buf_finish(p0->handle);
389 vpb_record_buf_finish(p1->handle);
391 vpb_play_buf_finish(p0->handle);
392 vpb_play_buf_finish(p1->handle);
394 if (option_verbose>1)
395 ast_verbose(VERBOSE_PREFIX_2 "vpb_bridge: Finished half-duplex bridge [%s, %s]\n", c0->name, c1->name);
401 res = vpb_bridge(p0->handle, p1->handle, VPB_BRIDGE_ON, i+1 /* resource 1 & 2 only for V4PCI*/ );
403 /* pthread_cond_wait(&bridges[i].cond, &bridges[i].lock);*/ /* Wait for condition signal. */
404 while( !bridges[i].endbridge ) {
405 /* Are we really ment to be doing nothing ?!?! */
406 who = ast_waitfor_n(cs, 2, &to);
408 ast_log(LOG_DEBUG, "vpb_bridge: Empty frame read...\n");
409 /* check for hangup / whentohangup */
410 if (ast_check_hangup(c0) || ast_check_hangup(c1))
415 if (!f || ((f->frametype == AST_FRAME_DTMF) &&
416 (((who == c0) && (flags & AST_BRIDGE_DTMF_CHANNEL_0)) ||
417 ((who == c1) && (flags & AST_BRIDGE_DTMF_CHANNEL_1))))) {
420 ast_log(LOG_DEBUG, "vpb_bridge: Got a [%s]\n", f ? "digit" : "hangup");
422 if ((c0->pvt->pvt == pvt0) && (!c0->_softhangup)) {
423 if (pr0->set_rtp_peer(c0, NULL, NULL, 0))
424 ast_log(LOG_WARNING, "Channel '%s' failed to revert\n", c0->name);
426 if ((c1->pvt->pvt == pvt1) && (!c1->_softhangup)) {
427 if (pr1->set_rtp_peer(c1, NULL, NULL, 0))
428 ast_log(LOG_WARNING, "Channel '%s' failed to revert back\n", c1->name);
431 /* That's all we needed */
435 if ((f->frametype == AST_FRAME_DTMF) ||
436 (f->frametype == AST_FRAME_VOICE) ||
437 (f->frametype == AST_FRAME_VIDEO))
439 /* Forward voice or DTMF frames if they happen upon us */
440 /* Actually I dont think we want to forward on any frames!
443 } else if (who == c1) {
450 /* Swap priority not that it's a big deal at this point */
455 vpb_bridge(p0->handle, p1->handle, VPB_BRIDGE_OFF, i+1 /* resource 1 & 2 only for V4PCI*/ );
460 ast_mutex_lock(&bridge_lock); {
461 bridges[i].inuse = 0;
462 } ast_mutex_unlock(&bridge_lock);
468 if (option_verbose>1)
469 ast_verbose(VERBOSE_PREFIX_2 "Bridging call done with [%s, %s] => %d\n", c0->name, c1->name, res);
472 ast_mutex_unlock(&p0->lock);
473 ast_mutex_unlock(&p1->lock);
475 return (res==VPB_OK)?0:-1;
478 static double get_time_in_ms()
481 gettimeofday(&tv, NULL);
482 return ((double)tv.tv_sec*1000)+((double)tv.tv_usec/1000);
485 /* Caller ID can be located in different positions between the rings depending on your Telco
486 * Australian (Telstra) callerid starts 700ms after 1st ring and finishes 1.5s after first ring
487 * Use ANALYSE_CID to record rings and determine location of callerid
489 /* #define ANALYSE_CID */
490 #define RING_SKIP 300
491 #define CID_MSECS 2000
493 static void get_callerid(struct vpb_pvt *p)
495 short buf[CID_MSECS*8]; /* 8kHz sampling rate */
496 double cid_record_time;
498 struct ast_channel *owner = p->owner;
500 char * file="cidsams.wav";
503 if( ast_mutex_trylock(&p->record_lock) == 0 ) {
505 char callerid[AST_MAX_EXTENSION] = "";
507 cid_record_time = get_time_in_ms();
508 if (option_verbose>3)
509 ast_verbose(VERBOSE_PREFIX_4 "CID record - start\n");
511 /* Skip any trailing ringtone */
512 vpb_sleep(RING_SKIP);
514 if (option_verbose>3)
515 ast_verbose(VERBOSE_PREFIX_4 "CID record - skipped %fms trailing ring\n",
516 get_time_in_ms() - cid_record_time);
517 cid_record_time = get_time_in_ms();
519 /* Record bit between the rings which contains the callerid */
520 vpb_record_buf_start(p->handle, VPB_LINEAR);
521 rc = vpb_record_buf_sync(p->handle, (char*)buf, sizeof(buf));
522 vpb_record_buf_finish(p->handle);
524 vpb_wave_open_write(&ws, file, VPB_LINEAR);
525 vpb_wave_write(ws,(char*)buf,sizeof(buf));
526 vpb_wave_close_write(ws);
529 if (option_verbose>3)
530 ast_verbose(VERBOSE_PREFIX_4 "CID record - recorded %fms between rings\n",
531 get_time_in_ms() - cid_record_time);
533 ast_mutex_unlock(&p->record_lock);
536 ast_log(LOG_ERROR, "Failed to record caller id sample on %s\n", p->dev );
540 VPB_CID *cli_struct = new VPB_CID;
541 cli_struct->ra_cldn[0]=0;
542 cli_struct->ra_cn[0]=0;
543 /* This decodes FSK 1200baud type callerid */
544 if ((rc=vpb_cid_decode2(cli_struct, buf, CID_MSECS*8)) == VPB_OK ) {
546 if (owner->cid.cid_num)
547 free(owner->cid.cid_num);
548 owner->cid.cid_num=NULL;
549 if (owner->cid.cid_name)
550 free(owner->cid.cid_name);
551 owner->cid.cid_name=NULL;
554 if (cli_struct->ra_cldn[0]=='\0'){
556 owner->cid.cid_num = strdup(cli_struct->cldn);
557 owner->cid.cid_name = strdup(cli_struct->cn);
559 ast_set_callerid(owner, cli_struct->cldn, cli_struct->cn, cli_struct->cldn);
560 if (option_verbose>3)
561 ast_verbose(VERBOSE_PREFIX_4 "CID record - got [%s] [%s]\n",owner->cid.cid_num,owner->cid.cid_name );
562 snprintf(p->callerid,sizeof(p->callerid)-1,"%s %s",cli_struct->cldn,cli_struct->cn);
565 ast_log(LOG_ERROR,"CID record - No caller id avalable on %s \n", p->dev);
569 ast_log(LOG_ERROR, "CID record - Failed to decode caller id on %s - %s\n", p->dev, vpb_strerror(rc) );
570 strncpy(p->callerid,"unknown", sizeof(p->callerid) - 1);
575 ast_log(LOG_ERROR, "CID record - Failed to set record mode for caller id on %s\n", p->dev );
578 static void get_callerid_ast(struct vpb_pvt *p)
580 struct callerid_state *cs;
582 char *name=NULL, *number=NULL;
586 struct ast_channel *owner = p->owner;
590 char * file="cidsams.wav";
592 if(p->callerid_type == 1) {
593 if (option_verbose>3) ast_verbose(VERBOSE_PREFIX_4 "Collected caller ID already\n");
596 else if(p->callerid_type == 2 ) {
597 which_cid=CID_SIG_V23;
598 if (option_verbose>3) ast_verbose(VERBOSE_PREFIX_4 "Collecting Caller ID v23...\n");
600 else if(p->callerid_type == 3) {
601 which_cid=CID_SIG_BELL;
602 if (option_verbose>3) ast_verbose(VERBOSE_PREFIX_4 "Collecting Caller ID bell...\n");
605 if (option_verbose>3)
606 ast_verbose(VERBOSE_PREFIX_4 "Caller ID disabled\n");
609 /* vpb_sleep(RING_SKIP); */
610 /* vpb_record_get_gain(p->handle, &old_gain); */
611 cs = callerid_new(which_cid);
614 vpb_wave_open_write(&ws, file, VPB_MULAW);
615 vpb_record_set_gain(p->handle, 3.0);
616 vpb_record_set_hw_gain(p->handle,12.0);
618 vpb_record_buf_start(p->handle, VPB_MULAW);
619 while((rc == 0)&&(sam_count<8000*3)){
620 vrc = vpb_record_buf_sync(p->handle, (char*)buf, sizeof(buf));
622 ast_log(LOG_ERROR, "%s: Caller ID couldnt read audio buffer!\n",p->dev);
623 rc = callerid_feed(cs,(unsigned char *)buf,sizeof(buf),AST_FORMAT_ULAW);
625 vpb_wave_write(ws,(char*)buf,sizeof(buf));
627 sam_count+=sizeof(buf);
628 if (option_verbose>3) ast_verbose(VERBOSE_PREFIX_4 "Collecting Caller ID samples [%d][%d]...\n",sam_count,rc);
630 vpb_record_buf_finish(p->handle);
632 vpb_wave_close_write(ws);
635 callerid_get(cs, &name, &number, &flags);
636 if (option_verbose>0)
637 ast_verbose(VERBOSE_PREFIX_1 "%s: Caller ID name [%s] number [%s] flags [%d]\n",p->dev,name, number,flags);
640 ast_log(LOG_ERROR, "%s: Failed to decode Caller ID \n", p->dev );
642 /* vpb_record_set_gain(p->handle, old_gain); */
643 /* vpb_record_set_hw_gain(p->handle,6.0); */
646 ast_log(LOG_ERROR, "%s: Failed to create Caller ID struct\n", p->dev );
648 if (owner->cid.cid_num) {
649 free(owner->cid.cid_num);
650 owner->cid.cid_num = NULL;
652 if (owner->cid.cid_name) {
653 free(owner->cid.cid_name);
654 owner->cid.cid_name = NULL;
657 ast_shrink_phone_number(number);
658 if (number && !ast_strlen_zero(number)) {
659 owner->cid.cid_num = strdup(number);
660 owner->cid.cid_ani = strdup(number);
661 if (name && !ast_strlen_zero(name)){
662 owner->cid.cid_name = strdup(name);
663 snprintf(p->callerid,(sizeof(p->callerid)-1),"%s %s",number,name);
666 snprintf(p->callerid,(sizeof(p->callerid)-1),"%s",number);
674 /* Terminate any tones we are presently playing */
675 static void stoptone( int handle)
679 while(vpb_playtone_state(handle)!=VPB_OK){
680 vpb_tone_terminate(handle);
681 ret = vpb_get_event_ch_async(handle,&je);
682 if ((ret == VPB_OK)&&(je.type != VPB_DIALEND)){
683 if (option_verbose > 3){
684 ast_verbose(VERBOSE_PREFIX_4 "Stop tone collected a wrong event!![%d]\n",je.type);
686 /* vpb_put_event(&je); */
692 /* Safe vpb_playtone_async */
693 static int playtone( int handle, VPB_TONE *tone)
697 if (option_verbose > 3)
698 ast_verbose(VERBOSE_PREFIX_4 "[%02d]: Playing tone\n", handle);
699 ret = vpb_playtone_async(handle, tone);
703 static inline int monitor_handle_owned(struct vpb_pvt *p, VPB_EVENT *e)
705 struct ast_frame f = {AST_FRAME_CONTROL}; /* default is control, Clear rest. */
709 if (option_verbose > 3)
710 ast_verbose(VERBOSE_PREFIX_4 "%s: handle_owned: got event: [%d=>%d]\n",
711 p->dev, e->type, e->data);
716 if (p->mode == MODE_FXO) {
717 f.subclass = AST_CONTROL_RING;
718 vpb_timer_stop(p->ring_timer);
719 vpb_timer_start(p->ring_timer);
721 f.frametype = -1; /* ignore ring on station port. */
729 if (e->data == p->busy_timer_id) {
730 playtone(p->handle,&Busytone);
731 p->state = VPB_STATE_PLAYBUSY;
732 vpb_timer_stop(p->busy_timer);
733 vpb_timer_start(p->busy_timer);
735 } else if (e->data == p->ringback_timer_id) {
736 playtone(p->handle, &Ringbacktone);
737 vpb_timer_stop(p->ringback_timer);
738 vpb_timer_start(p->ringback_timer);
740 } else if (e->data == p->ring_timer_id) {
741 /* We didnt get another ring in time! */
742 if (p->owner->_state != AST_STATE_UP) {
743 /* Assume caller has hung up */
744 vpb_timer_stop(p->ring_timer);
745 f.subclass = AST_CONTROL_HANGUP;
747 vpb_timer_stop(p->ring_timer);
752 f.frametype = -1; /* Ignore. */
757 if (p->owner->_state == AST_STATE_UP) {
758 f.frametype = AST_FRAME_DTMF;
759 f.subclass = e->data;
765 if (e->data == VPB_BUSY || e->data == VPB_BUSY_308 || e->data == VPB_BUSY_AUST ) {
766 if (option_verbose > 3)
767 ast_verbose(VERBOSE_PREFIX_4 "%s: handle_owned: got event: BUSY\n", p->dev);
768 if (p->owner->_state == AST_STATE_UP) {
769 f.subclass = AST_CONTROL_HANGUP;
772 f.subclass = AST_CONTROL_BUSY;
774 } else if (e->data == VPB_GRUNT) {
775 if( ( get_time_in_ms() - p->lastgrunt ) > gruntdetect_timeout ) {
776 /* Nothing heard on line for a very long time
777 * Timeout connection */
778 if (option_verbose > 2)
779 ast_verbose(VERBOSE_PREFIX_3 "grunt timeout\n");
780 ast_log(LOG_NOTICE,"%s: Line hangup due of lack of conversation\n",p->dev);
781 f.subclass = AST_CONTROL_HANGUP;
783 p->lastgrunt = get_time_in_ms();
791 #ifdef DIAL_WITH_CALL_PROGRESS
792 if (e->data == VPB_CALL_CONNECTED)
793 f.subclass = AST_CONTROL_ANSWER;
794 else if (e->data == VPB_CALL_NO_DIAL_TONE || e->data == VPB_CALL_NO_RING_BACK)
795 f.subclass = AST_CONTROL_CONGESTION;
796 else if (e->data == VPB_CALL_NO_ANSWER || e->data == VPB_CALL_BUSY)
797 f.subclass = AST_CONTROL_BUSY;
798 else if (e->data == VPB_CALL_DISCONNECTED)
799 f.subclass = AST_CONTROL_HANGUP;
801 ast_log(LOG_NOTICE,"%s: Got call progress callback but blind dialing \n", p->dev);
806 case VPB_STATION_OFFHOOK:
807 f.subclass = AST_CONTROL_ANSWER;
811 if ((p->mode == MODE_FXO)&&(UseLoopDrop)){ /* ignore loop drop on stations */
812 if (p->owner->_state == AST_STATE_UP)
813 f.subclass = AST_CONTROL_HANGUP;
818 case VPB_STATION_ONHOOK:
819 f.subclass = AST_CONTROL_HANGUP;
822 case VPB_STATION_FLASH:
823 f.subclass = AST_CONTROL_FLASH;
826 /* Called when dialing has finished and ringing starts
827 * No indication that call has really been answered when using blind dialing
831 f.subclass = AST_CONTROL_ANSWER;
832 if (option_verbose > 1)
833 ast_verbose(VERBOSE_PREFIX_2 "%s: Dialend\n", p->dev);
839 case VPB_PLAY_UNDERFLOW:
841 vpb_reset_play_fifo_alarm(p->handle);
844 case VPB_RECORD_OVERFLOW:
846 vpb_reset_record_fifo_alarm(p->handle);
855 if (option_verbose > 3) ast_verbose("%s: LOCKING in handle_owned [%d]\n", p->dev,res);
856 res = ast_mutex_lock(&p->lock);
857 if (option_verbose > 3) ast_verbose("%s: LOCKING count[%d] owner[%d] \n", p->dev, p->lock.__m_count,p->lock.__m_owner);
860 if (p->bridge) { /* Check what happened, see if we need to report it. */
861 switch (f.frametype) {
863 if ( !(p->bridge->c0 == p->owner &&
864 (p->bridge->flags & AST_BRIDGE_DTMF_CHANNEL_0) ) &&
865 !(p->bridge->c1 == p->owner &&
866 (p->bridge->flags & AST_BRIDGE_DTMF_CHANNEL_1) ))
867 /* Kill bridge, this is interesting. */
871 case AST_FRAME_CONTROL:
872 if (!(p->bridge->flags & AST_BRIDGE_IGNORE_SIGS))
874 if (f.subclass == AST_CONTROL_BUSY ||
875 f.subclass == AST_CONTROL_CONGESTION ||
876 f.subclass == AST_CONTROL_HANGUP ||
877 f.subclass == AST_CONTROL_FLASH)
887 *p->bridge->fo = ast_frisolate(&f);
889 *p->bridge->rc = p->owner;
891 ast_mutex_lock(&p->bridge->lock); {
892 p->bridge->endbridge = 1;
893 pthread_cond_signal(&p->bridge->cond);
894 } ast_mutex_unlock(&p->bridge->lock);
900 res = ast_mutex_unlock(&p->lock);
902 if (option_verbose > 3) ast_verbose("%s: unLOCKING in handle_owned [%d]\n", p->dev,res);
907 if (option_verbose > 3)
908 ast_verbose(VERBOSE_PREFIX_4 "%s: handle_owned: Prepared frame type[%d]subclass[%d], bridge=%p owner=[%s]\n",
909 p->dev, f.frametype, f.subclass, (void *)p->bridge, p->owner->name);
911 /* Trylock used here to avoid deadlock that can occur if we
912 * happen to be in here handling an event when hangup is called
913 * Problem is that hangup holds p->owner->lock
915 if ((f.frametype >= 0)&& (f.frametype != AST_FRAME_NULL)&&(p->owner)) {
916 if (ast_mutex_trylock(&p->owner->lock)==0) {
917 ast_queue_frame(p->owner, &f);
918 ast_mutex_unlock(&p->owner->lock);
919 if (option_verbose > 3)
920 ast_verbose(VERBOSE_PREFIX_4 "%s: handled_owned: Queued Frame to [%s]\n", p->dev,p->owner->name);
922 ast_verbose("%s: handled_owned: Missed event %d/%d \n",
923 p->dev,f.frametype, f.subclass);
926 res = ast_mutex_unlock(&p->lock);
928 if (option_verbose > 3) ast_verbose("%s: unLOCKING in handle_owned [%d]\n", p->dev,res);
934 static inline int monitor_handle_notowned(struct vpb_pvt *p, VPB_EVENT *e)
937 struct ast_channel *owner = p->owner;
941 if (option_verbose > 3) {
942 char str[VPB_MAX_STR];
943 vpb_translate_event(e, str);
944 ast_verbose(VERBOSE_PREFIX_4 "%s: handle_notowned: mode=%d, event[%d][%s]=[%d]\n",
945 p->dev, p->mode, e->type,str, e->data);
950 if (p->mode == MODE_FXO) /* FXO port ring, start * */ {
951 vpb_new(p, AST_STATE_RING, p->context);
952 if(p->callerid_type == 1) {
953 if (option_verbose>3)
954 ast_verbose(VERBOSE_PREFIX_4 "Using VPB Caller ID\n");
955 get_callerid(p); /* Australian Caller ID only between 1st and 2nd ring */
957 get_callerid_ast(p); /* Caller ID using the ast functions */
964 case VPB_STATION_OFFHOOK:
965 if (p->mode == MODE_IMMEDIATE)
966 vpb_new(p,AST_STATE_RING, p->context);
968 ast_verbose(VERBOSE_PREFIX_4 "%s: handle_notowned: playing dialtone\n",p->dev);
969 playtone(p->handle, &Dialtone);
970 p->state=VPB_STATE_PLAYDIAL;
972 p->ext[0] = 0; /* Just to be sure & paranoid.*/
977 if (p->mode == MODE_DIALTONE){
978 if (p->state == VPB_STATE_PLAYDIAL) {
979 playtone(p->handle, &Dialtone);
981 p->ext[0] = 0; /* Just to be sure & paranoid. */
983 /* These are not needed as they have timers to restart them
984 else if (p->state == VPB_STATE_PLAYBUSY) {
985 playtone(p->handle, &Busytone);
989 else if (p->state == VPB_STATE_PLAYRING) {
990 playtone(p->handle, &Ringbacktone);
996 ast_verbose(VERBOSE_PREFIX_4 "%s: handle_notowned: Got a DIALEND when not really expected\n",p->dev);
1000 case VPB_STATION_ONHOOK: /* clear ext */
1001 stoptone(p->handle);
1004 p->state=VPB_STATE_ONHOOK;
1008 if (p->state == VPB_STATE_ONHOOK){
1009 /* DTMF's being passed while on-hook maybe Caller ID */
1010 if ( p->mode == MODE_FXO ) {
1011 if ( e->data == DTMF_CID_START ) { /* CallerID Start signal */
1012 p->dtmf_caller_pos = 0; /* Leaves the first digit out */
1013 memset(p->callerid,0,AST_MAX_EXTENSION);
1015 else if ( e->data == DTMF_CID_STOP ) { /* CallerID End signal */
1016 p->callerid[p->dtmf_caller_pos] = '\0';
1017 if (option_verbose > 2)
1018 ast_verbose(VERBOSE_PREFIX_3 " %s: DTMF CallerID %s\n",p->dev,p->callerid);
1021 if (owner->cid.cid_num)
1022 free(owner->cid.cid_num);
1023 owner->cid.cid_num=NULL;
1024 if (owner->cid.cid_name)
1025 free(owner->cid.cid_name);
1026 owner->cid.cid_name=NULL;
1027 owner->cid.cid_num = strdup(p->callerid);
1031 ast_callerid_split(p->callerid, cid_name, sizeof(cid_name), cid_num, sizeof(cid_num));
1032 ast_set_callerid(owner, cid_num, cid_name, cid_num);
1036 if (option_verbose > 2)
1037 ast_verbose(VERBOSE_PREFIX_3 " %s: DTMF CallerID: no owner to assign CID \n",p->dev);
1039 } else if ( p->dtmf_caller_pos < AST_MAX_EXTENSION ) {
1040 if ( p->dtmf_caller_pos >= 0 )
1041 p->callerid[p->dtmf_caller_pos] = e->data;
1042 p->dtmf_caller_pos++;
1047 if (p->wantdtmf == 1) {
1048 stoptone(p->handle);
1051 p->state=VPB_STATE_GETDTMF;
1053 strncat(p->ext, s, sizeof(p->ext) - strlen(p->ext) - 1);
1054 if (ast_exists_extension(NULL, p->context, p->ext, 1, p->callerid)){
1055 if (option_verbose > 3) {
1056 ast_verbose(VERBOSE_PREFIX_4 "%s: handle_notowned: Matched on [%s] in [%s]\n", p->dev,p->ext , p->context);
1058 vpb_new(p,AST_STATE_RING, p->context);
1059 } else if (!ast_canmatch_extension(NULL, p->context, p->ext, 1, p->callerid)){
1060 if (ast_exists_extension(NULL, "default", p->ext, 1, p->callerid)) {
1061 vpb_new(p,AST_STATE_RING, "default");
1062 } else if (!ast_canmatch_extension(NULL, "default", p->ext, 1, p->callerid)) {
1063 if (option_verbose > 3) {
1064 ast_verbose(VERBOSE_PREFIX_4 "%s: handle_notowned: can't match anything in %s or default\n",
1065 p->dev, p->context);
1067 playtone(p->handle, &Busytone);
1068 vpb_timer_stop(p->busy_timer);
1069 vpb_timer_start(p->busy_timer);
1070 p->state = VPB_STATE_PLAYBUSY;
1080 if (option_verbose > 3)
1081 ast_verbose(VERBOSE_PREFIX_4 "%s: handle_notowned: mode=%d, [%d=>%d]\n",
1082 p->dev, p->mode, e->type, e->data);
1087 static void *do_monitor(void *unused)
1090 /* Monitor thread, doesn't die until explicitly killed. */
1092 if (option_verbose > 1)
1093 ast_verbose(VERBOSE_PREFIX_2 "Starting vpb monitor thread[%ld]\n",
1096 pthread_setcanceltype(PTHREAD_CANCEL_ASYNCHRONOUS, NULL);
1101 char str[VPB_MAX_STR];
1105 if (option_verbose > 3)
1106 ast_verbose(VERBOSE_PREFIX_4 "Monitor waiting for event\n");
1109 int res = vpb_get_event_sync(&e, VPB_WAIT_TIMEOUT);
1110 if( (res==VPB_NO_EVENTS) || (res==VPB_TIME_OUT) ){
1112 if (option_verbose > 3){
1113 if (res == VPB_NO_EVENTS){
1114 ast_verbose(VERBOSE_PREFIX_4 "No events....\n");
1116 ast_verbose(VERBOSE_PREFIX_4 "No events, timed out....\n");
1123 if (res != VPB_OK) {
1124 ast_log(LOG_ERROR,"Monitor get event error %s\n", vpb_strerror(res) );
1125 ast_verbose("Monitor get event error %s\n", vpb_strerror(res) );
1133 ast_mutex_lock(&monlock); {
1135 if (e.type == VPB_NULL_EVENT) {
1136 if (option_verbose > 3)
1137 ast_verbose(VERBOSE_PREFIX_4 "Monitor got null event\n");
1140 vpb_translate_event(&e, str);
1142 str[(strlen(str)-1)]='\0';
1145 ast_mutex_lock(&iflock); {
1147 while (p && p->handle != e.handle)
1149 } ast_mutex_unlock(&iflock);
1151 if (p && (option_verbose > 3))
1152 ast_verbose(VERBOSE_PREFIX_4 "%s: Event [%d=>%s] \n",
1153 p ? p->dev : "null", e.type, str );
1156 } ast_mutex_unlock(&monlock);
1159 if (e.type != VPB_NULL_EVENT){
1160 ast_log(LOG_WARNING, "Got event [%s][%d], no matching iface!\n", str,e.type);
1161 if (option_verbose > 3){
1162 ast_verbose(VERBOSE_PREFIX_4 "vpb/ERR: No interface for Event [%d=>%s] \n",e.type,str );
1168 /* flush the event from the channel event Q */
1169 vpb_get_event_ch_async(e.handle,&je);
1170 if (option_verbose > 4){
1171 vpb_translate_event(&je, str);
1172 ast_verbose("%s: Flushing event [%d]=>%s\n",p->dev,je.type,str);
1175 /* Check for ownership and locks */
1176 if ((p->owner)&&(!p->golock)){
1177 /* Need to get owner lock */
1178 /* Safely grab both p->lock and p->owner->lock so that there
1179 cannot be a race with something from the other side */
1181 ast_mutex_lock(&p->lock);
1182 while(ast_mutex_trylock(&p->owner->lock)) {
1183 ast_mutex_unlock(&p->lock);
1185 ast_mutex_lock(&p->lock);
1193 /* Two scenarios: Are you owned or not. */
1195 monitor_handle_owned(p, &e);
1197 monitor_handle_notowned(p, &e);
1199 /* if ((!p->owner)&&(p->golock)){
1200 ast_mutex_unlock(&p->owner->lock);
1201 ast_mutex_unlock(&p->lock);
1210 static int restart_monitor(void)
1214 /* If we're supposed to be stopped -- stay stopped */
1215 if (mthreadactive == -2)
1218 if (option_verbose > 3)
1219 ast_verbose(VERBOSE_PREFIX_4 "Restarting monitor\n");
1221 ast_mutex_lock(&monlock); {
1222 if (monitor_thread == pthread_self()) {
1223 ast_log(LOG_WARNING, "Cannot kill myself\n");
1225 if (option_verbose > 3)
1226 ast_verbose(VERBOSE_PREFIX_4 "Monitor trying to kill monitor\n");
1229 if (mthreadactive != -1) {
1230 /* Why do other drivers kill the thread? No need says I, simply awake thread with event. */
1233 e.type = VPB_NULL_EVENT;
1236 if (option_verbose > 3)
1237 ast_verbose(VERBOSE_PREFIX_4 "Trying to reawake monitor\n");
1241 /* Start a new monitor */
1242 int pid = ast_pthread_create(&monitor_thread, NULL, do_monitor, NULL);
1243 if (option_verbose > 3)
1244 ast_verbose(VERBOSE_PREFIX_4 "Created new monitor thread %d\n",pid);
1246 ast_log(LOG_ERROR, "Unable to start monitor thread.\n");
1249 mthreadactive = 0; /* Started the thread!*/
1252 } ast_mutex_unlock(&monlock);
1254 if (option_verbose > 3)
1255 ast_verbose(VERBOSE_PREFIX_4 "Monitor restarted\n");
1260 /* Per board config that must be called after vpb_open() */
1261 static void mkbrd(vpb_model_t model, int echo_cancel)
1264 if(model==vpb_model_v4pci)
1265 max_bridges = MAX_BRIDGES_V4PCI;
1266 bridges = (vpb_bridge_t *)malloc(max_bridges * sizeof(vpb_bridge_t) );
1268 ast_log(LOG_ERROR, "Failed to initialize bridges\n");
1270 memset(bridges,0,max_bridges * sizeof(vpb_bridge_t));
1271 for(int i = 0; i < max_bridges; i++ ) {
1272 ast_mutex_init(&bridges[i].lock);
1273 pthread_cond_init(&bridges[i].cond, NULL);
1278 if (model==vpb_model_v4pci) {
1279 vpb_echo_canc_disable();
1280 ast_log(LOG_NOTICE, "Voicetronix echo cancellation OFF\n");
1283 /* need to it port by port for OpenSwitch*/
1286 if (model==vpb_model_v4pci) {
1287 vpb_echo_canc_enable();
1288 ast_log(LOG_NOTICE, "Voicetronix echo cancellation ON\n");
1291 /* need to it port by port for OpenSwitch*/
1296 static struct vpb_pvt *mkif(int board, int channel, int mode, float txgain, float rxgain,
1297 float txswgain, float rxswgain, int bal1, int bal2, int bal3,
1298 char * callerid, int echo_cancel, int group )
1300 struct vpb_pvt *tmp;
1303 tmp = (struct vpb_pvt *)calloc(1, sizeof *tmp);
1308 tmp->handle = vpb_open(board, channel);
1310 if (tmp->handle < 0) {
1311 ast_log(LOG_WARNING, "Unable to create channel vpb/%d-%d: %s\n",
1312 board, channel, strerror(errno));
1317 snprintf(tmp->dev, sizeof(tmp->dev), "vpb/%d-%d", board, channel);
1323 /* Initilize dtmf caller ID position variable */
1324 tmp->dtmf_caller_pos=0;
1326 strncpy(tmp->language, language, sizeof(tmp->language) - 1);
1327 strncpy(tmp->context, context, sizeof(tmp->context) - 1);
1329 tmp->callerid_type=0;
1331 if (strcasecmp(callerid,"on")==0){
1332 tmp->callerid_type =1;
1333 strncpy(tmp->callerid, "unknown", sizeof(tmp->callerid) - 1);
1335 else if (strcasecmp(callerid,"v23")==0){
1336 tmp->callerid_type =2;
1337 strncpy(tmp->callerid, "unknown", sizeof(tmp->callerid) - 1);
1339 else if (strcasecmp(callerid,"bell")==0){
1340 tmp->callerid_type =3;
1341 strncpy(tmp->callerid, "unknown", sizeof(tmp->callerid) - 1);
1344 strncpy(tmp->callerid, callerid, sizeof(tmp->callerid) - 1);
1347 strncpy(tmp->callerid, "unknown", sizeof(tmp->callerid) - 1);
1350 /* check if codec balances have been set in the config file */
1352 if ((bal1>=0) && !(bal1 & 32)) bal1 |= 32;
1353 vpb_set_codec_reg(tmp->handle, 0x42, bal3);
1355 if(bal1>=0) vpb_set_codec_reg(tmp->handle, 0x32, bal1);
1356 if(bal2>=0) vpb_set_codec_reg(tmp->handle, 0x3a, bal2);
1358 tmp->txgain = txgain;
1359 vpb_play_set_hw_gain(tmp->handle, (txgain > MAX_VPB_GAIN) ? MAX_VPB_GAIN : txgain);
1361 tmp->rxgain = rxgain;
1362 vpb_record_set_hw_gain(tmp->handle, (rxgain > MAX_VPB_GAIN) ? MAX_VPB_GAIN : rxgain);
1364 tmp->txswgain = txswgain;
1365 vpb_play_set_gain(tmp->handle, (txswgain > MAX_VPB_GAIN) ? MAX_VPB_GAIN : txswgain);
1367 tmp->rxswgain = rxswgain;
1368 vpb_record_set_gain(tmp->handle, (rxswgain > MAX_VPB_GAIN) ? MAX_VPB_GAIN : rxswgain);
1370 tmp->vpb_model = vpb_model_unknown;
1371 if( vpb_get_model(buf) == VPB_OK ) {
1372 if(strcmp(buf,"V12PCI")==0)
1373 tmp->vpb_model = vpb_model_v12pci;
1374 else if(strcmp(buf,"VPB4")==0)
1375 tmp->vpb_model = vpb_model_v4pci;
1378 ast_mutex_init(&tmp->owner_lock);
1379 ast_mutex_init(&tmp->lock);
1380 ast_mutex_init(&tmp->record_lock);
1381 ast_mutex_init(&tmp->play_lock);
1382 ast_mutex_init(&tmp->play_dtmf_lock);
1384 /* set default read state */
1385 tmp->read_state = 0;
1389 tmp->busy_timer_id = vpb_timer_get_unique_timer_id();
1390 vpb_timer_open(&tmp->busy_timer, tmp->handle, tmp->busy_timer_id, TIMER_PERIOD_BUSY);
1392 tmp->ringback_timer_id = vpb_timer_get_unique_timer_id();
1393 vpb_timer_open(&tmp->ringback_timer, tmp->handle, tmp->ringback_timer_id, TIMER_PERIOD_RINGBACK);
1395 tmp->ring_timer_id = vpb_timer_get_unique_timer_id();
1396 vpb_timer_open(&tmp->ring_timer, tmp->handle, tmp->ring_timer_id, TIMER_PERIOD_RING);
1398 if (mode == MODE_FXO){
1399 vpb_set_event_mask(tmp->handle, VPB_EVENTS_ALL );
1402 vpb_set_event_mask(tmp->handle, VPB_EVENTS_STAT );
1405 if ((tmp->vpb_model == vpb_model_v12pci) && (echo_cancel)){
1406 vpb_hostecho_on(tmp->handle);
1409 /* define grunt tone */
1410 vpb_settonedet(tmp->handle,&toned_ungrunt);
1412 ast_log(LOG_NOTICE,"Voicetronix %s channel %s initialized (rxgain=%f txgain=%f) (%f/%f/0x%X/0x%X/0x%X)\n",
1413 (tmp->vpb_model==vpb_model_v4pci)?"V4PCI":
1414 (tmp->vpb_model==vpb_model_v12pci)?"V12PCI":"[Unknown model]",
1415 tmp->dev, tmp->rxswgain, tmp->txswgain, tmp->rxgain, tmp->txgain, bal1, bal2, bal3 );
1420 static int vpb_indicate(struct ast_channel *ast, int condition)
1422 struct vpb_pvt *p = (struct vpb_pvt *)ast->pvt->pvt;
1426 if (option_verbose > 3)
1427 ast_verbose(VERBOSE_PREFIX_4 "%s: vpb_indicate [%d] state[%d]\n", p->dev, condition,ast->_state);
1429 if (ast->_state != AST_STATE_UP) {
1430 ast_verbose(VERBOSE_PREFIX_4 "%s: vpb_indicate Not in AST_STATE_UP\n", p->dev, condition,ast->_state);
1436 if (option_verbose > 3) ast_verbose("%s: LOCKING in indicate \n", p->dev);
1437 if (option_verbose > 3) ast_verbose("%s: LOCKING count[%d] owner[%d] \n", p->dev, p->lock.__m_count,p->lock.__m_owner);
1439 ast_mutex_lock(&p->lock);
1441 case AST_CONTROL_BUSY:
1442 case AST_CONTROL_CONGESTION:
1443 if (ast->_state == AST_STATE_UP) {
1444 playtone(p->handle, &Busytone);
1445 p->state = VPB_STATE_PLAYBUSY;
1446 vpb_timer_stop(p->busy_timer);
1447 vpb_timer_start(p->busy_timer);
1450 case AST_CONTROL_RINGING:
1451 if (ast->_state == AST_STATE_UP) {
1452 playtone(p->handle, &Ringbacktone);
1453 p->state = VPB_STATE_PLAYRING;
1454 if (option_verbose > 3)
1455 ast_verbose(VERBOSE_PREFIX_4 "%s: vpb indicate: setting ringback timer [%d]\n", p->dev,p->ringback_timer_id);
1457 vpb_timer_stop(p->ringback_timer);
1458 vpb_timer_start(p->ringback_timer);
1461 case AST_CONTROL_ANSWER:
1462 case -1: /* -1 means stop playing? */
1463 vpb_timer_stop(p->ringback_timer);
1464 vpb_timer_stop(p->busy_timer);
1465 stoptone(p->handle);
1467 case AST_CONTROL_HANGUP:
1468 if (ast->_state == AST_STATE_UP) {
1469 playtone(p->handle, &Busytone);
1470 p->state = VPB_STATE_PLAYBUSY;
1471 vpb_timer_stop(p->busy_timer);
1472 vpb_timer_start(p->busy_timer);
1480 tmp = ast_mutex_unlock(&p->lock);
1482 if (option_verbose > 3) ast_verbose("%s: unLOCKING in indicate [%d]\n", p->dev,tmp);
1487 static int vpb_fixup(struct ast_channel *oldchan, struct ast_channel *newchan)
1489 struct vpb_pvt *p = (struct vpb_pvt *)newchan->pvt->pvt;
1493 if (option_verbose > 3) ast_verbose("%s: LOCKING in fixup \n", p->dev);
1494 if (option_verbose > 3) ast_verbose("%s: LOCKING count[%d] owner[%d] \n", p->dev, p->lock.__m_count,p->lock.__m_owner);
1496 ast_mutex_lock(&p->lock);
1497 ast_log(LOG_DEBUG, "New owner for channel %s is %s\n", p->dev, newchan->name);
1499 if (p->owner == oldchan) {
1503 if (newchan->_state == AST_STATE_RINGING){
1504 if (use_ast_ind == 1)
1505 ast_indicate(newchan, AST_CONTROL_RINGING);
1507 vpb_indicate(newchan, AST_CONTROL_RINGING);
1510 res= ast_mutex_unlock(&p->lock);
1512 if (option_verbose > 3) ast_verbose("%s: unLOCKING in fixup [%d]\n", p->dev,res);
1517 static int vpb_digit(struct ast_channel *ast, char digit)
1519 struct vpb_pvt *p = (struct vpb_pvt *)ast->pvt->pvt;
1524 if (option_verbose > 3) ast_verbose("%s: LOCKING in digit \n", p->dev);
1525 if (option_verbose > 3) ast_verbose("%s: LOCKING count[%d] owner[%d] \n", p->dev, p->lock.__m_count,p->lock.__m_owner);
1527 ast_mutex_lock(&p->lock);
1533 if (option_verbose > 3)
1534 ast_verbose(VERBOSE_PREFIX_4 "%s: play digit[%s]\n", p->dev, s);
1536 ast_mutex_lock(&p->play_dtmf_lock);
1537 strncat(p->play_dtmf,s,sizeof(*p->play_dtmf));
1538 ast_mutex_unlock(&p->play_dtmf_lock);
1540 res = ast_mutex_unlock(&p->lock);
1542 if (option_verbose > 3) ast_verbose("%s: unLOCKING in digit [%d]\n", p->dev,res);
1547 /* Places a call out of a VPB channel */
1548 static int vpb_call(struct ast_channel *ast, char *dest, int timeout)
1550 struct vpb_pvt *p = (struct vpb_pvt *)ast->pvt->pvt;
1552 char *s = strrchr(dest, '/');
1553 char dialstring[254] = "";
1557 if (option_verbose > 3) ast_verbose("%s: LOCKING in call \n", p->dev);
1558 if (option_verbose > 3) ast_verbose("%s: LOCKING count[%d] owner[%d] \n", p->dev, p->lock.__m_count,p->lock.__m_owner);
1560 ast_mutex_lock(&p->lock);
1566 strncpy(dialstring, s, sizeof(dialstring) - 1);
1567 for (i=0; dialstring[i] != '\0' ; i++) {
1568 if ((dialstring[i] == 'w') || (dialstring[i] == 'W'))
1569 dialstring[i] = ',';
1570 else if ((dialstring[i] == 'f') || (dialstring[i] == 'F'))
1571 dialstring[i] = '&';
1573 if (option_verbose > 3)
1574 ast_verbose(VERBOSE_PREFIX_4 "%s: starting call\n", p->dev);
1576 if (ast->_state != AST_STATE_DOWN && ast->_state != AST_STATE_RESERVED) {
1577 ast_log(LOG_WARNING, "vpb_call on %s neither down nor reserved!\n", ast->name);
1578 tmp = ast_mutex_unlock(&p->lock);
1580 if (option_verbose > 3) ast_verbose("%s: unLOCKING in call [%d]\n", p->dev,tmp);
1584 if (p->mode != MODE_FXO) /* Station port, ring it. */
1585 res = vpb_ring_station_async(p->handle, VPB_RING_STATION_ON,0);
1589 /* Dial must timeout or it can leave channels unuseable */
1591 timeout = TIMER_PERIOD_NOANSWER;
1593 timeout = timeout * 1000; /* convert from secs to ms. */
1595 /* These timeouts are only used with call progress dialing */
1596 call.dialtones = 1; /* Number of dialtones to get outside line */
1597 call.dialtone_timeout = VPB_DIALTONE_WAIT; /* Wait this long for dialtone (ms) */
1598 call.ringback_timeout = VPB_RINGWAIT; /* Wait this long for ringing after dialing (ms) */
1599 call.inter_ringback_timeout = VPB_CONNECTED_WAIT; /* If ringing stops for this long consider it connected (ms) */
1600 call.answer_timeout = timeout; /* Time to wait for answer after ringing starts (ms) */
1601 memcpy( &call.tone_map, DialToneMap, sizeof(DialToneMap) );
1602 vpb_set_call(p->handle, &call);
1604 if (option_verbose > 1)
1605 ast_verbose(VERBOSE_PREFIX_2 "%s: Calling %s on %s \n",p->dev, dialstring, ast->name);
1607 if (option_verbose > 2) {
1609 ast_verbose(VERBOSE_PREFIX_2 "%s: Dial parms for %s %d/%dms/%dms/%dms/%dms\n", p->dev
1610 , ast->name, call.dialtones, call.dialtone_timeout
1611 , call.ringback_timeout, call.inter_ringback_timeout
1612 , call.answer_timeout );
1613 for( j=0; !call.tone_map[j].terminate; j++ )
1614 ast_verbose(VERBOSE_PREFIX_2 "%s: Dial parms for %s tone %d->%d\n", p->dev,
1615 ast->name, call.tone_map[j].tone_id, call.tone_map[j].call_id);
1618 if (option_verbose > 4)
1619 ast_verbose("%s: Disabling Loop Drop detection\n",p->dev);
1620 vpb_disable_event(p->handle, VPB_MDROP);
1621 vpb_sethook_sync(p->handle,VPB_OFFHOOK);
1622 p->state=VPB_STATE_OFFHOOK;
1624 #ifndef DIAL_WITH_CALL_PROGRESS
1626 if (option_verbose > 4)
1627 ast_verbose("%s: Disabling Loop Drop detection\n",p->dev);
1628 vpb_enable_event(p->handle, VPB_MDROP);
1629 res = vpb_dial_async(p->handle, dialstring);
1631 if (option_verbose > 4)
1632 ast_verbose("%s: Disabling Loop Drop detection\n",p->dev);
1633 vpb_enable_event(p->handle, VPB_MDROP);
1634 res = vpb_call_async(p->handle, dialstring);
1637 if (res != VPB_OK) {
1638 ast_log(LOG_DEBUG, "Call on %s to %s failed: %s\n", ast->name, s, vpb_strerror(res));
1644 if (option_verbose > 2)
1645 ast_verbose(VERBOSE_PREFIX_3 "%s: VPB Calling %s [t=%d] on %s returned %d\n",p->dev , s, timeout, ast->name, res);
1647 ast_setstate(ast, AST_STATE_RINGING);
1648 ast_queue_control(ast,AST_CONTROL_RINGING);
1651 if (!p->readthread){
1652 ast_pthread_create(&p->readthread, NULL, do_chanreads, (void *)p);
1655 tmp = ast_mutex_unlock(&p->lock);
1657 if (option_verbose > 3) ast_verbose("%s: unLOCKING in call [%d]\n", p->dev,tmp);
1662 static int vpb_hangup(struct ast_channel *ast)
1664 struct vpb_pvt *p = (struct vpb_pvt *)ast->pvt->pvt;
1666 char str[VPB_MAX_STR];
1670 if (option_verbose > 3) ast_verbose("%s: LOCKING in hangup \n", p->dev);
1671 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);
1672 if (option_verbose > 3) ast_verbose("%s: LOCKING pthread_self(%d)\n", p->dev,pthread_self());
1673 ast_mutex_lock(&p->lock);
1675 if (option_verbose > 1)
1676 ast_verbose(VERBOSE_PREFIX_2 "%s: Hangup requested\n", ast->name);
1678 if (!ast->pvt || !ast->pvt->pvt) {
1679 ast_log(LOG_WARNING, "%s: channel not connected?\n", ast->name);
1680 res = ast_mutex_unlock(&p->lock);
1682 if (option_verbose > 3) ast_verbose("%s: unLOCKING in hangup [%d]\n", p->dev,res);
1691 if( p->readthread ){
1692 pthread_join(p->readthread, NULL);
1693 if(option_verbose>3)
1694 ast_verbose( VERBOSE_PREFIX_4 "%s: stopped record thread on %s\n",ast->name,p->dev);
1698 if (p->lastoutput != -1) {
1699 if(option_verbose>1)
1700 ast_verbose( VERBOSE_PREFIX_2 "%s: Ending play mode on %s\n",ast->name,p->dev);
1701 vpb_play_terminate(p->handle);
1702 ast_mutex_lock(&p->play_lock); {
1703 vpb_play_buf_finish(p->handle);
1704 } ast_mutex_unlock(&p->play_lock);
1707 if(option_verbose>3)
1708 ast_verbose( VERBOSE_PREFIX_4 "%s: Setting state down\n",ast->name);
1709 ast_setstate(ast,AST_STATE_DOWN);
1713 if (option_verbose > 3) ast_verbose("%s: LOCKING in hangup \n", p->dev);
1714 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);
1715 if (option_verbose > 3) ast_verbose("%s: LOCKING pthread_self(%d)\n", p->dev,pthread_self());
1717 ast_mutex_lock(&p->lock);
1719 if (p->mode != MODE_FXO) {
1721 vpb_ring_station_async(p->handle, VPB_RING_STATION_OFF,0);
1722 if(p->state!=VPB_STATE_ONHOOK){
1723 /* This is causing a "dial end" "play tone" loop
1724 playtone(p->handle, &Busytone);
1725 p->state = VPB_STATE_PLAYBUSY;
1726 if(option_verbose>4)
1727 ast_verbose( VERBOSE_PREFIX_4 "%s: Station offhook[%d], playing busy tone\n",
1728 ast->name,p->state);
1732 stoptone(p->handle);
1735 stoptone(p->handle); /* Terminates any dialing */
1736 vpb_sethook_sync(p->handle, VPB_ONHOOK);
1737 p->state=VPB_STATE_ONHOOK;
1739 while (VPB_OK==vpb_get_event_ch_async(p->handle,&je)){
1740 if(option_verbose>3) {
1741 vpb_translate_event(&je, str);
1742 ast_verbose( VERBOSE_PREFIX_4 "%s: Flushing event [%d]=>%s\n",ast->name,je.type,str);
1749 p->last_ignore_dtmf = 1;
1756 ast_mutex_lock(&usecnt_lock); {
1758 } ast_mutex_unlock(&usecnt_lock);
1759 ast_update_use_count();
1761 if (option_verbose > 1)
1762 ast_verbose(VERBOSE_PREFIX_2 "%s: Hangup complete\n", ast->name);
1766 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);
1768 res = ast_mutex_unlock(&p->lock);
1770 if (option_verbose > 3) ast_verbose("%s: unLOCKING in hangup [%d]\n", p->dev,res);
1771 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);
1776 static int vpb_answer(struct ast_channel *ast)
1778 struct vpb_pvt *p = (struct vpb_pvt *)ast->pvt->pvt;
1783 if (option_verbose > 3) ast_verbose("%s: LOCKING in answer \n", p->dev);
1784 if (option_verbose > 3) ast_verbose("%s: LOCKING count[%d] owner[%d] \n", p->dev, p->lock.__m_count,p->lock.__m_owner);
1786 ast_mutex_lock(&p->lock);
1788 if (option_verbose > 3)
1789 ast_verbose(VERBOSE_PREFIX_4 "%s: Answering channel\n",p->dev);
1791 if (p->mode == MODE_FXO){
1792 if (option_verbose > 3)
1793 ast_verbose("%s: Disabling Loop Drop detection\n",p->dev);
1794 vpb_disable_event(p->handle, VPB_MDROP);
1797 if (ast->_state != AST_STATE_UP) {
1798 if (p->mode == MODE_FXO){
1799 vpb_sethook_sync(p->handle, VPB_OFFHOOK);
1800 p->state=VPB_STATE_OFFHOOK;
1802 ret = vpb_get_event_ch_async(p->handle,&je);
1803 if ((ret == VPB_OK)&&((je.type != VPB_DROP)&&(je.type != VPB_RING))){
1804 if (option_verbose > 3){
1805 ast_verbose(VERBOSE_PREFIX_4 "%s: Answer collected a wrong event!!\n",p->dev);
1811 ast_setstate(ast, AST_STATE_UP);
1813 if(option_verbose>1)
1815 ast_verbose( VERBOSE_PREFIX_2 "%s: Answered call from %s on %s [%s]\n", p->dev,
1816 p->owner->callerid, ast->name,(p->mode == MODE_FXO)?"FXO":"FXS");
1818 ast_verbose( VERBOSE_PREFIX_2 "%s: Answered call on %s [%s]\n", p->dev,
1819 ast->name,(p->mode == MODE_FXO)?"FXO":"FXS");
1822 if( !p->readthread ){
1823 /* res = ast_mutex_unlock(&p->lock); */
1824 /* ast_verbose("%s: unLOCKING in answer [%d]\n", p->dev,res); */
1825 ast_pthread_create(&p->readthread, NULL, do_chanreads, (void *)p);
1827 if(option_verbose>3)
1828 ast_verbose(VERBOSE_PREFIX_4 "%s: Record thread already running!!\n",p->dev);
1831 if(option_verbose>3) {
1832 ast_verbose(VERBOSE_PREFIX_4 "%s: Answered state is up\n",p->dev);
1834 /* res = ast_mutex_unlock(&p->lock); */
1835 /* ast_verbose("%s: unLOCKING in answer [%d]\n", p->dev,res); */
1838 if (p->mode == MODE_FXO){
1839 if (option_verbose > 3)
1840 ast_verbose("%s: Re-enabling Loop Drop detection\n",p->dev);
1841 vpb_enable_event(p->handle,VPB_MDROP);
1843 res = ast_mutex_unlock(&p->lock);
1845 if(option_verbose>3) ast_verbose("%s: unLOCKING in answer [%d]\n", p->dev,res);
1850 static struct ast_frame *vpb_read(struct ast_channel *ast)
1852 struct vpb_pvt *p = (struct vpb_pvt *)ast->pvt->pvt;
1853 static struct ast_frame f = {AST_FRAME_NULL};
1856 ast_log(LOG_NOTICE, "%s: vpb_read: should never be called!\n", p->dev);
1857 ast_verbose("%s: vpb_read: should never be called!\n", p->dev);
1862 static inline int ast2vpbformat(int ast_format)
1864 switch(ast_format) {
1865 case AST_FORMAT_ALAW:
1867 case AST_FORMAT_SLINEAR:
1869 case AST_FORMAT_ULAW:
1871 case AST_FORMAT_ADPCM:
1872 return VPB_OKIADPCM;
1878 static inline char * ast2vpbformatname(int ast_format)
1880 switch(ast_format) {
1881 case AST_FORMAT_ALAW:
1882 return "AST_FORMAT_ALAW:VPB_ALAW";
1883 case AST_FORMAT_SLINEAR:
1884 return "AST_FORMAT_SLINEAR:VPB_LINEAR";
1885 case AST_FORMAT_ULAW:
1886 return "AST_FORMAT_ULAW:VPB_MULAW";
1887 case AST_FORMAT_ADPCM:
1888 return "AST_FORMAT_ADPCM:VPB_OKIADPCM";
1894 static inline int astformatbits(int ast_format)
1896 switch(ast_format) {
1897 case AST_FORMAT_ALAW:
1898 case AST_FORMAT_ULAW:
1900 case AST_FORMAT_SLINEAR:
1902 case AST_FORMAT_ADPCM:
1909 int a_gain_vector(float g, short *v, int n)
1913 for ( i = 0; i<n; i++) {
1924 /* Writes a frame of voice data to a VPB channel */
1925 static int vpb_write(struct ast_channel *ast, struct ast_frame *frame)
1927 struct vpb_pvt *p = (struct vpb_pvt *)ast->pvt->pvt;
1928 int res = 0, fmt = 0;
1929 struct timeval play_buf_time_start,play_buf_time_finish;
1930 /* ast_mutex_lock(&p->lock); */
1931 if(option_verbose>5)
1932 ast_verbose("%s: vpb_write: Writing to channel\n", p->dev);
1934 if (frame->frametype != AST_FRAME_VOICE) {
1935 if(option_verbose>3)
1936 ast_verbose("%s: vpb_write: Don't know how to handle from type %d\n", ast->name, frame->frametype);
1937 /* ast_mutex_unlock(&p->lock); */
1939 } else if (ast->_state != AST_STATE_UP) {
1940 if(option_verbose>3)
1941 ast_verbose("%s: vpb_write: Attempt to Write frame type[%d]subclass[%d] on not up chan\n",ast->name, frame->frametype, frame->subclass);
1943 /* ast_mutex_unlock(&p->lock); */
1946 /* ast_log(LOG_DEBUG, "%s: vpb_write: Checked frame type..\n", p->dev); */
1948 fmt = ast2vpbformat(frame->subclass);
1950 ast_log(LOG_WARNING, "%s: vpb_write: Cannot handle frames of %d format!\n",ast->name, frame->subclass);
1953 /* ast_log(LOG_DEBUG, "%s: vpb_write: Checked frame format..\n", p->dev); */
1955 ast_mutex_lock(&p->play_lock);
1957 /* ast_log(LOG_DEBUG, "%s: vpb_write: Got play lock..\n", p->dev); */
1959 /* Check if we have set up the play_buf */
1960 if (p->lastoutput == -1) {
1961 vpb_play_buf_start(p->handle, fmt);
1962 if(option_verbose>1) {
1963 ast_verbose("%s: vpb_write: Starting play mode (codec=%d)[%s]\n",p->dev,fmt,ast2vpbformatname(frame->subclass));
1965 } else if (p->lastoutput != fmt) {
1966 vpb_play_buf_finish(p->handle);
1967 vpb_play_buf_start(p->handle, fmt);
1968 if(option_verbose>1)
1969 ast_verbose("%s: vpb_write: Changed play format (%d=>%d)\n",p->dev,p->lastoutput,fmt);
1971 p->lastoutput = fmt;
1975 /* Apply extra gain ! */
1976 if( p->txswgain > MAX_VPB_GAIN )
1977 a_gain_vector(p->txswgain - MAX_VPB_GAIN , (short*)frame->data, frame->datalen/sizeof(short));
1979 /* ast_log(LOG_DEBUG, "%s: vpb_write: Applied gain..\n", p->dev); */
1981 /* gettimeofday(&tv, NULL); */
1982 /* return ((double)tv.tv_sec*1000)+((double)tv.tv_usec/1000); */
1984 if ((p->read_state == 1)&&(p->play_buf_time<5)){
1985 gettimeofday(&play_buf_time_start,NULL);
1986 res = vpb_play_buf_sync(p->handle, (char*)frame->data, frame->datalen);
1987 if( (res == VPB_OK) && (option_verbose > 5) ) {
1988 short * data = (short*)frame->data;
1989 ast_verbose("%s: vpb_write: Wrote chan (codec=%d) %d %d\n", p->dev, fmt, data[0],data[1]);
1991 gettimeofday(&play_buf_time_finish,NULL);
1992 if (play_buf_time_finish.tv_sec == play_buf_time_start.tv_sec){
1993 p->play_buf_time=(int)((play_buf_time_finish.tv_usec-play_buf_time_start.tv_usec)/1000);
1994 /* 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); */
1997 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);
1999 /* 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); */
2003 ast_log(LOG_DEBUG, "%s: vpb_write: Tossed data away, tooooo much data!![%d]\n", p->dev,p->chuck_count);
2007 ast_mutex_unlock(&p->play_lock);
2008 /* ast_mutex_unlock(&p->lock); */
2009 if(option_verbose>5)
2010 ast_verbose("%s: vpb_write: Done Writing to channel\n", p->dev);
2014 /* Read monitor thread function. */
2015 static void *do_chanreads(void *pvt)
2017 struct vpb_pvt *p = (struct vpb_pvt *)pvt;
2018 struct ast_frame *fr = &p->fr;
2019 char *readbuf = ((char *)p->buf) + AST_FRIENDLY_OFFSET;
2021 int afmt, readlen, res, fmt, trycnt=0;
2023 char * getdtmf_var = NULL;
2025 fr->frametype = AST_FRAME_VOICE;
2028 fr->delivery.tv_sec = 0;
2029 fr->delivery.tv_usec = 0;
2030 fr->samples = VPB_SAMPLES;
2031 fr->offset = AST_FRIENDLY_OFFSET;
2032 memset(p->buf, 0, sizeof p->buf);
2034 if (option_verbose > 2) {
2035 ast_verbose("%s: chanreads: starting thread\n", p->dev);
2037 ast_mutex_lock(&p->record_lock);
2041 while (!p->stopreads && p->owner) {
2043 if (option_verbose > 4)
2044 ast_verbose("%s: chanreads: Starting cycle ...\n", p->dev);
2045 if (option_verbose > 4)
2046 ast_verbose("%s: chanreads: Checking bridge \n", p->dev);
2048 if (p->bridge->c0 == p->owner && (p->bridge->flags & AST_BRIDGE_REC_CHANNEL_0))
2050 else if (p->bridge->c1 == p->owner && (p->bridge->flags & AST_BRIDGE_REC_CHANNEL_1))
2055 if (option_verbose > 4)
2056 ast_verbose("%s: chanreads: No native bridge.\n", p->dev);
2057 if (p->owner->_bridge){
2058 if (option_verbose > 4){
2059 ast_verbose("%s: chanreads: Got Asterisk bridge with [%s].\n", p->dev,p->owner->_bridge->name);
2068 /* if ( (p->owner->_state != AST_STATE_UP) || !bridgerec) { */
2069 if ( (p->owner->_state != AST_STATE_UP) ) {
2070 if (option_verbose > 4) {
2071 if (p->owner->_state != AST_STATE_UP)
2072 ast_verbose("%s: chanreads: Im not up[%d]\n", p->dev,p->owner->_state);
2074 ast_verbose("%s: chanreads: No bridgerec[%d]\n", p->dev,bridgerec);
2080 /* Voicetronix DTMF detection can be triggered off ordinary speech
2081 * This leads to annoying beeps during the conversation
2082 * Avoid this problem by just setting VPB_GETDTMF when you want to listen for DTMF
2084 /* ignore_dtmf = 1; */
2085 ignore_dtmf = 0; /* set this to 1 to turn this feature on */
2086 getdtmf_var = pbx_builtin_getvar_helper(p->owner,"VPB_GETDTMF");
2087 if( getdtmf_var && ( strcasecmp( getdtmf_var, "yes" ) == 0 ) )
2090 if( ignore_dtmf != p->last_ignore_dtmf ) {
2091 if(option_verbose>1)
2092 ast_verbose( VERBOSE_PREFIX_2 "%s:Now %s DTMF \n",
2093 p->dev, ignore_dtmf ? "ignoring" : "listening for");
2094 vpb_set_event_mask(p->handle, ignore_dtmf ? VPB_EVENTS_NODTMF : VPB_EVENTS_ALL );
2096 p->last_ignore_dtmf = ignore_dtmf;
2098 /* Play DTMF digits here to avoid problem you get if playing a digit during
2099 * a record operation
2101 if (option_verbose > 5) {
2102 ast_verbose("%s: chanreads: Checking dtmf's \n", p->dev);
2104 ast_mutex_lock(&p->play_dtmf_lock);
2105 if( p->play_dtmf[0] ) {
2106 /* Try to ignore DTMF event we get after playing digit */
2107 /* This DTMF is played by asterisk and leads to an annoying trailing beep on CISCO phones */
2109 vpb_set_event_mask(p->handle, VPB_EVENTS_NODTMF );
2110 /* if (strcmp(p->owner->type,"vpb")==0){ */
2111 if (p->bridge == NULL){
2112 vpb_dial_sync(p->handle,p->play_dtmf);
2113 if(option_verbose>1)
2114 ast_verbose( VERBOSE_PREFIX_2 "%s: chanreads: Played DTMF %s\n",p->dev,p->play_dtmf);
2117 if (option_verbose > 1)
2118 ast_verbose(VERBOSE_PREFIX_2 "%s: chanreads: Not playing DTMF frame on native bridge\n", p->dev);
2120 p->play_dtmf[0] = '\0';
2121 ast_mutex_unlock(&p->play_dtmf_lock);
2122 vpb_sleep(700); /* Long enough to miss echo and DTMF event */
2124 vpb_set_event_mask(p->handle, VPB_EVENTS_ALL );
2127 ast_mutex_unlock(&p->play_dtmf_lock);
2129 /* afmt = (p->owner) ? p->owner->pvt->rawreadformat : AST_FORMAT_SLINEAR; */
2131 afmt = p->owner->pvt->rawreadformat;
2132 /* ast_log(LOG_DEBUG,"%s: Record using owner format [%s]\n", p->dev, ast2vpbformatname(afmt)); */
2135 afmt = AST_FORMAT_SLINEAR;
2136 /* ast_log(LOG_DEBUG,"%s: Record using default format [%s]\n", p->dev, ast2vpbformatname(afmt)); */
2138 fmt = ast2vpbformat(afmt);
2140 ast_log(LOG_WARNING,"%s: Record failure (unsupported format %d)\n", p->dev, afmt);
2143 readlen = VPB_SAMPLES * astformatbits(afmt) / 8;
2145 if (p->lastinput == -1) {
2146 vpb_record_buf_start(p->handle, fmt);
2147 vpb_reset_record_fifo_alarm(p->handle);
2148 if(option_verbose>1)
2149 ast_verbose( VERBOSE_PREFIX_2 "%s: Starting record mode (codec=%d)[%s]\n",p->dev,fmt,ast2vpbformatname(afmt));
2150 } else if (p->lastinput != fmt) {
2151 vpb_record_buf_finish(p->handle);
2152 vpb_record_buf_start(p->handle, fmt);
2153 if(option_verbose>1)
2154 ast_verbose( VERBOSE_PREFIX_2 "%s: Changed record format (%d=>%d)\n",p->dev,p->lastinput,fmt);
2158 /* Read only if up and not bridged, or a bridge for which we can read. */
2159 if (option_verbose > 5) {
2160 ast_verbose("%s: chanreads: getting buffer!\n", p->dev);
2162 if( (res = vpb_record_buf_sync(p->handle, readbuf, readlen) ) == VPB_OK ) {
2163 if (option_verbose > 5) {
2164 ast_verbose("%s: chanreads: got buffer!\n", p->dev);
2166 /* Apply extra gain ! */
2167 if( p->rxswgain > MAX_VPB_GAIN )
2168 a_gain_vector(p->rxswgain - MAX_VPB_GAIN , (short*)readbuf, readlen/sizeof(short));
2169 if (option_verbose > 5) {
2170 ast_verbose("%s: chanreads: applied gain\n", p->dev);
2173 fr->subclass = afmt;
2175 fr->datalen = readlen;
2177 /* Using trylock here to prevent deadlock when channel is hungup
2178 * (ast_hangup() immediately gets lock)
2180 if (p->owner && !p->stopreads ) {
2181 if (option_verbose > 5) {
2182 ast_verbose("%s: chanreads: queueing buffer on read frame q (state[%d])\n", p->dev,p->owner->_state);
2185 res = ast_mutex_trylock(&p->owner->lock);
2187 } while((res !=0)&&(trycnt<300));
2189 ast_queue_frame(p->owner, fr);
2190 ast_mutex_unlock(&p->owner->lock);
2192 if (option_verbose > 4)
2193 ast_verbose("%s: chanreads: Couldnt get lock after %d tries!\n", p->dev,trycnt);
2198 res = ast_mutex_trylock(&p->owner->lock);
2200 ast_queue_frame(p->owner, fr);
2201 ast_mutex_unlock(&p->owner->lock);
2204 if (option_verbose > 4) ast_verbose("%s: chanreads: try owner->lock gave me EINVAL[%d]\n", p->dev,res);
2205 else if (res == EBUSY )
2206 if (option_verbose > 4) ast_verbose("%s: chanreads: try owner->lock gave me EBUSY[%d]\n", p->dev,res);
2208 res = ast_mutex_trylock(&p->owner->lock);
2211 ast_queue_frame(p->owner, fr);
2212 ast_mutex_unlock(&p->owner->lock);
2216 if (option_verbose > 4) ast_verbose("%s: chanreads: try owner->lock gave me EINVAL[%d]\n", p->dev,res);
2217 else if (res == EBUSY )
2218 if (option_verbose > 4) ast_verbose("%s: chanreads: try owner->lock gave me EBUSY[%d]\n", p->dev,res);
2219 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);
2223 if (option_verbose > 6) {
2224 short * data = (short*)readbuf;
2225 ast_verbose("%s: Read channel (codec=%d) %d %d\n", p->dev, fmt, data[0], data[1] );
2229 if (option_verbose > 4) {
2230 ast_verbose("%s: p->stopreads[%d] p->owner[%p]\n", p->dev, p->stopreads,(void *)p->owner);
2234 ast_log(LOG_WARNING,"%s: Record failure (%s)\n", p->dev, vpb_strerror(res));
2235 vpb_record_buf_finish(p->handle);
2236 vpb_record_buf_start(p->handle, fmt);
2238 if (option_verbose > 4)
2239 ast_verbose("%s: chanreads: Finished cycle...\n", p->dev);
2243 /* When stopreads seen, go away! */
2244 vpb_record_buf_finish(p->handle);
2246 ast_mutex_unlock(&p->record_lock);
2248 if (option_verbose > 1)
2249 ast_verbose(VERBOSE_PREFIX_2 "%s: Ending record mode (%d/%s)\n",
2250 p->dev, p->stopreads, p->owner? "yes" : "no");
2254 static struct ast_channel *vpb_new(struct vpb_pvt *me, int state, char *context)
2256 struct ast_channel *tmp;
2261 ast_log(LOG_WARNING, "Called vpb_new on owned channel (%s) ?!\n", me->dev);
2264 if (option_verbose > 3)
2265 ast_verbose("%s: New call for context [%s]\n",me->dev,context);
2267 tmp = ast_channel_alloc(1);
2269 strncpy(tmp->name, me->dev, sizeof(tmp->name) - 1);
2272 /* Linear is the preferred format. Although Voicetronix supports other formats
2273 * they are all converted to/from linear in the vpb code. Best for us to use
2274 * linear since we can then adjust volume in this modules.
2276 tmp->nativeformats = prefformat;
2277 tmp->pvt->rawreadformat = AST_FORMAT_SLINEAR;
2278 tmp->pvt->rawwriteformat = AST_FORMAT_SLINEAR;
2279 ast_setstate(tmp, state);
2280 if (state == AST_STATE_RING) {
2284 ast_callerid_split(me->callerid, cid_name, sizeof(cid_name), cid_num, sizeof(cid_num));
2285 ast_set_callerid(tmp, cid_num, cid_name, cid_num);
2288 /* set call backs */
2289 tmp->pvt->send_digit = vpb_digit;
2290 tmp->pvt->call = vpb_call;
2291 tmp->pvt->hangup = vpb_hangup;
2292 tmp->pvt->answer = vpb_answer;
2293 tmp->pvt->read = vpb_read;
2294 tmp->pvt->write = vpb_write;
2295 tmp->pvt->bridge = vpb_bridge;
2296 if (use_ast_ind == 0)
2297 tmp->pvt->indicate = vpb_indicate;
2298 tmp->pvt->fixup = vpb_fixup;
2300 strncpy(tmp->context, context, sizeof(tmp->context)-1);
2301 if (strlen(me->ext))
2302 strncpy(tmp->exten, me->ext, sizeof(tmp->exten)-1);
2304 strncpy(tmp->exten, "s", sizeof(tmp->exten) - 1);
2305 if (strlen(me->language))
2306 strncpy(tmp->language, me->language, sizeof(tmp->language)-1);
2311 me->lastoutput = -1;
2313 me->last_ignore_dtmf = 1;
2315 me->play_dtmf[0] = '\0';
2317 me->lastgrunt = get_time_in_ms(); /* Assume at least one grunt tone seen now. */
2319 ast_mutex_lock(&usecnt_lock);
2321 ast_mutex_unlock(&usecnt_lock);
2322 ast_update_use_count();
2323 if (state != AST_STATE_DOWN) {
2324 if (ast_pbx_start(tmp)) {
2325 ast_log(LOG_WARNING, "Unable to start PBX on %s\n", tmp->name);
2330 ast_log(LOG_WARNING, "Unable to allocate channel structure\n");
2335 static struct ast_channel *vpb_request(const char *type, int format, void *data, int *cause)
2339 struct ast_channel *tmp = NULL;
2340 char *name = strdup(data ? (char *)data : "");
2345 format &= prefformat;
2347 ast_log(LOG_NOTICE, "Asked to get a channel of unsupported format '%d'\n", oldformat);
2352 s = strsep(&sepstr, "/"); /* Handle / issues */
2355 /* Check if we are looking for a group */
2356 if (toupper(name[0]) == 'G' || toupper(name[0])=='R') {
2359 /* Search for an unowned channel */
2360 ast_mutex_lock(&iflock); {
2364 if (strncmp(s, p->dev + 4, sizeof p->dev) == 0) {
2366 tmp = vpb_new(p, AST_STATE_DOWN, p->context);
2372 if ((p->group == group) && (!p->owner)) {
2373 tmp = vpb_new(p, AST_STATE_DOWN, p->context);
2379 } ast_mutex_unlock(&iflock);
2382 if (option_verbose > 1)
2383 ast_verbose(VERBOSE_PREFIX_2 " %s requested, got: [%s]\n",
2384 name, tmp ? tmp->name : "None");
2392 static float parse_gain_value(char *gain_type, char *value)
2396 /* try to scan number */
2397 if (sscanf(value, "%f", &gain) != 1)
2399 ast_log(LOG_ERROR, "Invalid %s value '%s' in '%s' config\n", value, gain_type, config);
2400 return DEFAULT_GAIN;
2405 /*if (value[strlen(value) - 1] == '%') */
2406 /* return gain / (float)100; */
2413 struct ast_config *cfg;
2414 struct ast_variable *v;
2415 struct vpb_pvt *tmp;
2416 int board = 0, group = 0;
2417 int mode = MODE_IMMEDIATE;
2418 float txgain = DEFAULT_GAIN, rxgain = DEFAULT_GAIN;
2419 float txswgain = 0, rxswgain = 0;
2420 int first_channel = 1;
2421 int echo_cancel = DEFAULT_ECHO_CANCEL;
2422 int error = 0; /* Error flag */
2423 int bal1 = -1; /* Special value - means do not set */
2426 char * callerid = NULL;
2428 cfg = ast_load(config);
2430 /* We *must* have a config file otherwise stop immediately */
2432 ast_log(LOG_ERROR, "Unable to load config %s\n", config);
2436 vpb_seterrormode(VPB_ERROR_CODE);
2438 ast_mutex_lock(&iflock); {
2439 v = ast_variable_browse(cfg, "general");
2441 if (strcasecmp(v->name, "cards") == 0) {
2442 ast_log(LOG_NOTICE,"VPB Driver configured to use [%d] cards\n",atoi(v->value));
2444 else if (strcasecmp(v->name, "indication") == 0) {
2446 ast_log(LOG_NOTICE,"VPB driver using Asterisk Indication functions!\n");
2451 v = ast_variable_browse(cfg, "interfaces");
2453 /* Create the interface list */
2454 if (strcasecmp(v->name, "board") == 0) {
2455 board = atoi(v->value);
2456 } else if (strcasecmp(v->name, "group") == 0){
2457 group = atoi(v->value);
2458 } else if (strcasecmp(v->name, "useloopdrop") == 0){
2459 UseLoopDrop = atoi(v->value);
2460 } else if (strcasecmp(v->name, "usenativebridge") == 0){
2461 UseNativeBridge = atoi(v->value);
2462 } else if (strcasecmp(v->name, "channel") == 0) {
2463 int channel = atoi(v->value);
2464 tmp = mkif(board, channel, mode, txgain, rxgain, txswgain, rxswgain, bal1, bal2, bal3, callerid, echo_cancel,group);
2467 mkbrd( tmp->vpb_model, echo_cancel );
2473 ast_log(LOG_ERROR, "Unable to register channel '%s'\n", v->value);
2477 } else if (strcasecmp(v->name, "language") == 0) {
2478 strncpy(language, v->value, sizeof(language)-1);
2479 } else if (strcasecmp(v->name, "callerid") == 0) {
2480 callerid = strdup(v->value);
2481 } else if (strcasecmp(v->name, "mode") == 0) {
2482 if (strncasecmp(v->value, "di", 2) == 0)
2483 mode = MODE_DIALTONE;
2484 else if (strncasecmp(v->value, "im", 2) == 0)
2485 mode = MODE_IMMEDIATE;
2486 else if (strncasecmp(v->value, "fx", 2) == 0)
2489 ast_log(LOG_WARNING, "Unknown mode: %s\n", v->value);
2490 } else if (!strcasecmp(v->name, "context")) {
2491 strncpy(context, v->value, sizeof(context)-1);
2492 } else if (!strcasecmp(v->name, "echocancel")) {
2493 if (!strcasecmp(v->value, "off"))
2495 } else if (strcasecmp(v->name, "txgain") == 0) {
2496 txswgain = parse_gain_value(v->name, v->value);
2497 } else if (strcasecmp(v->name, "rxgain") == 0) {
2498 rxswgain = parse_gain_value(v->name, v->value);
2499 } else if (strcasecmp(v->name, "txhwgain") == 0) {
2500 txgain = parse_gain_value(v->name, v->value);
2501 } else if (strcasecmp(v->name, "rxhwgain") == 0) {
2502 rxgain = parse_gain_value(v->name, v->value);
2503 } else if (strcasecmp(v->name, "bal1") == 0) {
2504 bal1 = strtol(v->value, NULL, 16);
2505 if(bal1<0 || bal1>255) {
2506 ast_log(LOG_WARNING, "Bad bal1 value: %d\n", bal1);
2509 } else if (strcasecmp(v->name, "bal2") == 0) {
2510 bal2 = strtol(v->value, NULL, 16);
2511 if(bal2<0 || bal2>255) {
2512 ast_log(LOG_WARNING, "Bad bal2 value: %d\n", bal2);
2515 } else if (strcasecmp(v->name, "bal3") == 0) {
2516 bal3 = strtol(v->value, NULL, 16);
2517 if(bal3<0 || bal3>255) {
2518 ast_log(LOG_WARNING, "Bad bal3 value: %d\n", bal3);
2521 } else if (strcasecmp(v->name, "grunttimeout") == 0) {
2522 gruntdetect_timeout = 1000*atoi(v->value);
2527 if (gruntdetect_timeout < 1000)
2528 gruntdetect_timeout = 1000;
2531 } ast_mutex_unlock(&iflock);
2535 if (!error && ast_channel_register(type, tdesc, prefformat, vpb_request) != 0) {
2536 ast_log(LOG_ERROR, "Unable to register channel class %s\n", type);
2544 restart_monitor(); /* And start the monitor for the first time */
2553 /* First, take us out of the channel loop */
2554 ast_channel_unregister(type);
2556 ast_mutex_lock(&iflock); {
2557 /* Hangup all interfaces if they have an owner */
2561 ast_softhangup(p->owner, AST_SOFTHANGUP_APPUNLOAD);
2565 } ast_mutex_unlock(&iflock);
2567 ast_mutex_lock(&monlock); {
2568 if (mthreadactive > -1) {
2569 pthread_cancel(monitor_thread);
2570 pthread_join(monitor_thread, NULL);
2573 } ast_mutex_unlock(&monlock);
2575 ast_mutex_lock(&iflock); {
2576 /* Destroy all the interfaces and free their memory */
2580 ast_mutex_destroy(&p->lock);
2581 pthread_cancel(p->readthread);
2582 ast_mutex_destroy(&p->owner_lock);
2583 ast_mutex_destroy(&p->record_lock);
2584 ast_mutex_destroy(&p->play_lock);
2585 ast_mutex_destroy(&p->play_dtmf_lock);
2588 vpb_close(p->handle);
2590 iflist = iflist->next;
2595 } ast_mutex_unlock(&iflock);
2597 ast_mutex_lock(&bridge_lock); {
2598 memset(bridges, 0, sizeof bridges);
2599 } ast_mutex_unlock(&bridge_lock);
2600 ast_mutex_destroy(&bridge_lock);
2601 for(int i = 0; i < max_bridges; i++ ) {
2602 ast_mutex_destroy(&bridges[i].lock);
2603 pthread_cond_destroy(&bridges[i].cond);
2613 ast_mutex_lock(&usecnt_lock);
2615 ast_mutex_unlock(&usecnt_lock);
2626 return ASTERISK_GPL_KEY;
2630 #if defined(__cplusplus) || defined(c_plusplus)