2002-02-18 22:06:31 +08:00
|
|
|
/*
|
|
|
|
* libpri: An implementation of Primary Rate ISDN
|
|
|
|
*
|
2005-06-22 06:47:39 +08:00
|
|
|
* Written by Mark Spencer <markster@digium.com>
|
2002-02-18 22:06:31 +08:00
|
|
|
*
|
2008-08-06 06:18:12 +08:00
|
|
|
* Copyright (C) 2001-2005, Digium, Inc.
|
2002-02-18 22:06:31 +08:00
|
|
|
* All Rights Reserved.
|
2008-08-06 06:18:12 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* See http://www.asterisk.org for more information about
|
|
|
|
* the Asterisk project. Please do not directly contact
|
|
|
|
* any of the maintainers of this project for assistance;
|
|
|
|
* the project provides a web site, mailing lists and IRC
|
|
|
|
* channels for your use.
|
2002-02-18 22:06:31 +08:00
|
|
|
*
|
2008-08-06 06:18:12 +08:00
|
|
|
* This program is free software, distributed under the terms of
|
|
|
|
* the GNU General Public License Version 2 as published by the
|
|
|
|
* Free Software Foundation. See the LICENSE file included with
|
|
|
|
* this program for more details.
|
2002-02-18 22:06:31 +08:00
|
|
|
*
|
2008-08-06 06:18:12 +08:00
|
|
|
* In addition, when this program is distributed with Asterisk in
|
|
|
|
* any form that would qualify as a 'combined work' or as a
|
|
|
|
* 'derivative work' (but not mere aggregation), you can redistribute
|
|
|
|
* and/or modify the combination under the terms of the license
|
|
|
|
* provided with that copy of Asterisk, instead of the license
|
|
|
|
* terms granted here.
|
2002-02-18 22:06:31 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
2010-07-17 06:55:15 +08:00
|
|
|
* This program tests libpri call reception using a dahdi interface.
|
2002-02-18 22:06:31 +08:00
|
|
|
* Its state machines are setup for RECEIVING CALLS ONLY, so if you
|
|
|
|
* are trying to both place and receive calls you have to a bit more.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <errno.h>
|
2010-07-17 06:55:15 +08:00
|
|
|
#include <ctype.h>
|
2002-02-18 22:06:31 +08:00
|
|
|
#include <sys/ioctl.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <sys/signal.h>
|
|
|
|
#include <sys/select.h>
|
|
|
|
#include <sys/wait.h>
|
|
|
|
#include <sys/resource.h>
|
|
|
|
#include <sys/time.h>
|
2010-07-17 06:55:15 +08:00
|
|
|
#include <dahdi/user.h>
|
|
|
|
#include <dahdi/tonezone.h>
|
2002-02-18 22:06:31 +08:00
|
|
|
#include "libpri.h"
|
|
|
|
|
|
|
|
#define PRI_DEF_NODETYPE PRI_CPE
|
|
|
|
#define PRI_DEF_SWITCHTYPE PRI_SWITCH_NI2
|
|
|
|
|
|
|
|
#define MAX_CHAN 32
|
2003-02-12 21:59:23 +08:00
|
|
|
#define DCHANNEL_TIMESLOT 16
|
|
|
|
|
2010-07-17 06:55:15 +08:00
|
|
|
#define READ_SIZE 160
|
2002-02-18 22:06:31 +08:00
|
|
|
|
|
|
|
static int offset = 0;
|
|
|
|
|
2010-07-17 06:55:15 +08:00
|
|
|
static void do_channel(int fd)
|
2002-02-18 22:06:31 +08:00
|
|
|
{
|
|
|
|
/* This is the part that runs on a given channel */
|
2010-07-17 06:55:15 +08:00
|
|
|
char buf[READ_SIZE];
|
|
|
|
int res;
|
|
|
|
int i=0;
|
|
|
|
|
|
|
|
while ((res = read(fd, buf, READ_SIZE)) > 0 && (i++ < 1000)) {
|
2012-10-30 05:19:52 +08:00
|
|
|
if (write(fd, buf, res) == -1) {
|
|
|
|
fprintf(stderr, "--!! Failed write: %d\n", errno);
|
|
|
|
break;
|
|
|
|
}
|
2010-07-17 06:55:15 +08:00
|
|
|
}
|
2002-02-18 22:06:31 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
struct pri_chan {
|
|
|
|
pid_t pid;
|
|
|
|
int needhangup;
|
|
|
|
int alreadyhungup;
|
|
|
|
q931_call *call;
|
|
|
|
} chans[MAX_CHAN];
|
|
|
|
|
|
|
|
static int str2node(char *node)
|
|
|
|
{
|
|
|
|
if (!strcasecmp(node, "cpe"))
|
|
|
|
return PRI_CPE;
|
|
|
|
if (!strcasecmp(node, "network"))
|
|
|
|
return PRI_NETWORK;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void chan_ended(int sig)
|
|
|
|
{
|
|
|
|
int status;
|
|
|
|
int x;
|
|
|
|
struct rusage rusage;
|
|
|
|
pid_t pid;
|
|
|
|
pid = wait4(-1, &status, WNOHANG, &rusage);
|
|
|
|
|
|
|
|
for (x=0;x<MAX_CHAN;x++) {
|
|
|
|
if (pid == chans[x].pid) {
|
|
|
|
printf("-- PID %d ended, channel %d\n", pid, x);
|
|
|
|
chans[x].pid = 0;
|
|
|
|
if (!chans[x].alreadyhungup) {
|
|
|
|
/* It died, we need to hangup now */
|
|
|
|
chans[x].needhangup = 1;
|
|
|
|
} else {
|
|
|
|
/* We've already been hungup, just clear it */
|
|
|
|
chans[x].alreadyhungup = 0;
|
|
|
|
chans[x].call = NULL;
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (pid > -1) {
|
|
|
|
fprintf(stderr, "--!! Unknown PID %d exited\n", pid);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
static int str2switch(char *swtype)
|
|
|
|
{
|
|
|
|
if (!strcasecmp(swtype, "ni2"))
|
|
|
|
return PRI_SWITCH_NI2;
|
|
|
|
if (!strcasecmp(swtype, "dms100"))
|
|
|
|
return PRI_SWITCH_DMS100;
|
|
|
|
if (!strcasecmp(swtype, "lucent5e"))
|
|
|
|
return PRI_SWITCH_LUCENT5E;
|
|
|
|
if (!strcasecmp(swtype, "att4ess"))
|
|
|
|
return PRI_SWITCH_ATT4ESS;
|
|
|
|
if (!strcasecmp(swtype, "euroisdn"))
|
|
|
|
return PRI_SWITCH_EUROISDN_E1;
|
2004-06-05 14:50:55 +08:00
|
|
|
if (!strcasecmp(swtype, "gr303eoc"))
|
|
|
|
return PRI_SWITCH_GR303_EOC;
|
|
|
|
if (!strcasecmp(swtype, "gr303tmc"))
|
|
|
|
return PRI_SWITCH_GR303_TMC;
|
2002-02-18 22:06:31 +08:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void hangup_channel(int channo)
|
|
|
|
{
|
|
|
|
if (chans[channo].pid) {
|
|
|
|
|
|
|
|
#if 0
|
|
|
|
printf("Killing channel %d (pid = %d)\n", channo, chans[channo].pid);
|
|
|
|
#endif
|
|
|
|
chans[channo].alreadyhungup = 1;
|
|
|
|
kill(chans[channo].pid, SIGTERM);
|
|
|
|
} else if (chans[channo].needhangup)
|
|
|
|
chans[channo].needhangup = 0;
|
|
|
|
}
|
|
|
|
|
2010-07-17 06:55:15 +08:00
|
|
|
static int dahdi_open(char *fn)
|
|
|
|
{
|
|
|
|
int fd;
|
|
|
|
int isnum;
|
|
|
|
int chan = 0;
|
|
|
|
int bs;
|
|
|
|
int x;
|
|
|
|
|
|
|
|
fprintf(stderr, "dahdi open %s\n", fn);
|
|
|
|
|
|
|
|
isnum = 1;
|
|
|
|
for (x = 0; x < strlen(fn); x++) {
|
|
|
|
if (!isdigit(fn[x])) {
|
|
|
|
isnum = 0;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (isnum) {
|
|
|
|
chan = atoi(fn);
|
|
|
|
if (chan < 1) {
|
|
|
|
printf("Invalid channel number '%s'\n", fn);
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
fn = "/dev/dahdi/channel";
|
|
|
|
}
|
|
|
|
fd = open(fn, O_RDWR /* | O_NONBLOCK */);
|
|
|
|
if (fd < 0) {
|
|
|
|
printf("Unable to open '%s': %s\n", fn, strerror(errno));
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
if (chan) {
|
|
|
|
if (ioctl(fd, DAHDI_SPECIFY, &chan)) {
|
|
|
|
x = errno;
|
|
|
|
close(fd);
|
|
|
|
errno = x;
|
|
|
|
printf("Unable to specify channel %d: %s\n", chan, strerror(errno));
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
bs = READ_SIZE;
|
|
|
|
if (ioctl(fd, DAHDI_SET_BLOCKSIZE, &bs) == -1) {
|
|
|
|
printf("Unable to set blocksize '%d': %s\n", bs, strerror(errno));
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
return fd;
|
|
|
|
}
|
|
|
|
|
2002-02-18 22:06:31 +08:00
|
|
|
static void launch_channel(int channo)
|
|
|
|
{
|
|
|
|
pid_t pid;
|
2010-07-17 06:55:15 +08:00
|
|
|
int z;
|
2002-02-18 22:06:31 +08:00
|
|
|
char ch[80];
|
|
|
|
|
|
|
|
/* Make sure hangup state is reset */
|
|
|
|
chans[channo].needhangup = 0;
|
|
|
|
chans[channo].alreadyhungup = 0;
|
|
|
|
|
|
|
|
pid = fork();
|
|
|
|
if (pid < 0) {
|
|
|
|
fprintf(stderr, "--!! Unable to fork\n");
|
|
|
|
chans[channo].needhangup = 1;
|
|
|
|
}
|
|
|
|
if (pid) {
|
|
|
|
printf("-- Launching process %d to handle channel %d\n", pid, channo);
|
|
|
|
chans[channo].pid = pid;
|
|
|
|
} else {
|
|
|
|
sprintf(ch, "%d", channo + offset);
|
2010-07-17 06:55:15 +08:00
|
|
|
z = dahdi_open(ch);
|
2002-02-18 22:06:31 +08:00
|
|
|
if (z) {
|
|
|
|
do_channel(z);
|
|
|
|
exit(0);
|
|
|
|
} else {
|
|
|
|
fprintf(stderr, "--!! Unable to open channel %d\n", channo);
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2003-02-12 21:59:23 +08:00
|
|
|
static int get_free_channel(int channo)
|
|
|
|
{
|
|
|
|
channo--;
|
|
|
|
if((channo>MAX_CHAN)||(channo<0)) {
|
|
|
|
fprintf(stderr, "Invalid Bchannel RANGE <%d", channo);
|
|
|
|
return 0;
|
|
|
|
};
|
|
|
|
|
|
|
|
while(chans[channo].pid) {
|
|
|
|
channo--;
|
|
|
|
}
|
|
|
|
|
|
|
|
return channo;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* place here criteria for completion of destination number */
|
|
|
|
static int number_incommplete(char *number)
|
|
|
|
{
|
|
|
|
return strlen(number) < 3;
|
|
|
|
}
|
|
|
|
|
2002-02-18 22:06:31 +08:00
|
|
|
static void start_channel(struct pri *pri, pri_event *e)
|
|
|
|
{
|
|
|
|
int channo = e->ring.channel;
|
2003-02-12 21:59:23 +08:00
|
|
|
int flag = 1;
|
|
|
|
pri_event_ring *ring = &e->ring;
|
|
|
|
|
|
|
|
if(channo == -1) {
|
|
|
|
channo = e->ring.channel = get_free_channel(MAX_CHAN);
|
2002-02-18 22:06:31 +08:00
|
|
|
|
2003-02-12 21:59:23 +08:00
|
|
|
if(channo == DCHANNEL_TIMESLOT)
|
|
|
|
channo = e->ring.channel = get_free_channel(MAX_CHAN);
|
|
|
|
|
|
|
|
|
|
|
|
fprintf(stdout, "Any channel selected: %d\n", channo);
|
|
|
|
|
|
|
|
if(!channo) {
|
|
|
|
pri_release(pri, ring->call, PRI_CAUSE_REQUESTED_CHAN_UNAVAIL);
|
|
|
|
fprintf(stdout, "Abort call due to no avl B channels\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
flag = 0;
|
|
|
|
}
|
2002-02-18 22:06:31 +08:00
|
|
|
/* Make sure it's a valid number */
|
|
|
|
if ((channo >= MAX_CHAN) || (channo < 0)) {
|
|
|
|
fprintf(stderr, "--!! Channel %d is out of range\n", channo);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Make sure nothing is there */
|
|
|
|
if (chans[channo].pid) {
|
|
|
|
fprintf(stderr, "--!! Channel %d still has a call on it, ending it...\n", channo);
|
|
|
|
hangup_channel(channo);
|
|
|
|
/* Wait for it to die */
|
|
|
|
while(chans[channo].pid)
|
|
|
|
usleep(100);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Record call number */
|
|
|
|
chans[channo].call = e->ring.call;
|
|
|
|
|
|
|
|
/* Answer the line */
|
2003-02-12 21:59:23 +08:00
|
|
|
if(flag) {
|
|
|
|
pri_answer(pri, chans[channo].call, channo, 1);
|
|
|
|
} else {
|
|
|
|
pri_need_more_info(pri, chans[channo].call, channo, 1);
|
|
|
|
}
|
2002-02-18 22:06:31 +08:00
|
|
|
|
|
|
|
/* Launch a process to handle it */
|
|
|
|
launch_channel(channo);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
static void handle_pri_event(struct pri *pri, pri_event *e)
|
|
|
|
{
|
|
|
|
switch(e->e) {
|
|
|
|
case PRI_EVENT_DCHAN_UP:
|
|
|
|
printf("-- D-Channel is now up! :-)\n");
|
|
|
|
break;
|
|
|
|
case PRI_EVENT_DCHAN_DOWN:
|
|
|
|
printf("-- D-Channel is now down! :-(\n");
|
|
|
|
break;
|
|
|
|
case PRI_EVENT_RESTART:
|
|
|
|
printf("-- Restarting channel %d\n", e->restart.channel);
|
|
|
|
hangup_channel(e->restart.channel);
|
|
|
|
break;
|
|
|
|
case PRI_EVENT_CONFIG_ERR:
|
|
|
|
printf("-- Configuration error detected: %s\n", e->err.err);
|
|
|
|
break;
|
|
|
|
case PRI_EVENT_RING:
|
|
|
|
printf("-- Ring on channel %d (from %s to %s), answering...\n", e->ring.channel, e->ring.callingnum, e->ring.callednum);
|
|
|
|
start_channel(pri, e);
|
|
|
|
break;
|
|
|
|
case PRI_EVENT_HANGUP:
|
|
|
|
printf("-- Hanging up channel %d\n", e->hangup.channel);
|
|
|
|
hangup_channel(e->hangup.channel);
|
|
|
|
break;
|
|
|
|
case PRI_EVENT_RINGING:
|
|
|
|
case PRI_EVENT_ANSWER:
|
|
|
|
fprintf(stderr, "--!! What? We shouldn't be making any calls...\n");
|
|
|
|
break;
|
|
|
|
case PRI_EVENT_HANGUP_ACK:
|
|
|
|
/* Ignore */
|
2003-02-12 21:59:23 +08:00
|
|
|
break;
|
|
|
|
case PRI_EVENT_INFO_RECEIVED:
|
|
|
|
fprintf(stdout, "number is: %s\n", e->ring.callednum);
|
|
|
|
if(!number_incommplete(e->ring.callednum)) {
|
|
|
|
fprintf(stdout, "final number is: %s\n", e->ring.callednum);
|
|
|
|
pri_answer(pri, e->ring.call, 0, 1);
|
|
|
|
}
|
|
|
|
|
2002-02-18 22:06:31 +08:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
fprintf(stderr, "--!! Unknown PRI event %d\n", e->e);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static int run_pri(int dfd, int swtype, int node)
|
|
|
|
{
|
|
|
|
struct pri *pri;
|
|
|
|
pri_event *e;
|
|
|
|
struct timeval tv = {0,0}, *next;
|
|
|
|
fd_set rfds, efds;
|
|
|
|
int res,x;
|
|
|
|
|
2010-07-17 06:55:15 +08:00
|
|
|
pri = pri_new(dfd, node, swtype);
|
2002-02-18 22:06:31 +08:00
|
|
|
if (!pri) {
|
|
|
|
fprintf(stderr, "Unable to create PRI\n");
|
|
|
|
return -1;
|
|
|
|
}
|
2004-06-05 14:50:55 +08:00
|
|
|
pri_set_debug(pri, -1);
|
2002-02-18 22:06:31 +08:00
|
|
|
for (;;) {
|
|
|
|
|
|
|
|
/* Run the D-Channel */
|
|
|
|
FD_ZERO(&rfds);
|
|
|
|
FD_ZERO(&efds);
|
|
|
|
FD_SET(dfd, &rfds);
|
|
|
|
FD_SET(dfd, &efds);
|
|
|
|
|
|
|
|
if ((next = pri_schedule_next(pri))) {
|
|
|
|
gettimeofday(&tv, NULL);
|
|
|
|
tv.tv_sec = next->tv_sec - tv.tv_sec;
|
|
|
|
tv.tv_usec = next->tv_usec - tv.tv_usec;
|
|
|
|
if (tv.tv_usec < 0) {
|
|
|
|
tv.tv_usec += 1000000;
|
|
|
|
tv.tv_sec -= 1;
|
|
|
|
}
|
|
|
|
if (tv.tv_sec < 0) {
|
|
|
|
tv.tv_sec = 0;
|
|
|
|
tv.tv_usec = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
res = select(dfd + 1, &rfds, NULL, &efds, next ? &tv : NULL);
|
|
|
|
e = NULL;
|
|
|
|
|
|
|
|
if (!res) {
|
|
|
|
e = pri_schedule_run(pri);
|
|
|
|
} else if (res > 0) {
|
|
|
|
e = pri_check_event(pri);
|
|
|
|
} else if (errno == ELAST) {
|
2010-07-17 06:55:15 +08:00
|
|
|
res = ioctl(dfd, DAHDI_GETEVENT, &x);
|
|
|
|
printf("Got DAHDI event: %d\n", x);
|
2002-02-18 22:06:31 +08:00
|
|
|
} else if (errno != EINTR)
|
|
|
|
fprintf(stderr, "Error (%d) on select: %s\n", ELAST, strerror(errno));
|
|
|
|
|
|
|
|
if (e) {
|
|
|
|
handle_pri_event(pri, e);
|
|
|
|
}
|
|
|
|
|
2010-07-17 06:55:15 +08:00
|
|
|
res = ioctl(dfd, DAHDI_GETEVENT, &x);
|
2002-02-18 22:06:31 +08:00
|
|
|
|
|
|
|
if (!res && x) {
|
|
|
|
fprintf(stderr, "Got event on PRI interface: %d\n", x);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Check for lines that need hangups */
|
|
|
|
for (x=0;x<MAX_CHAN;x++)
|
|
|
|
if (chans[x].needhangup) {
|
|
|
|
chans[x].needhangup = 0;
|
|
|
|
pri_release(pri, chans[x].call, PRI_CAUSE_NORMAL_CLEARING);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int main(int argc, char *argv[])
|
|
|
|
{
|
|
|
|
int dfd;
|
|
|
|
int swtype = PRI_DEF_SWITCHTYPE;
|
|
|
|
int node = PRI_DEF_NODETYPE;
|
2010-07-17 06:55:15 +08:00
|
|
|
struct dahdi_params p;
|
2002-02-18 22:06:31 +08:00
|
|
|
if (argc < 2) {
|
|
|
|
fprintf(stderr, "Usage: pritest <dchannel> [swtypetype] [nodetype]\n");
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
dfd = open(argv[1], O_RDWR);
|
|
|
|
if (dfd < 0) {
|
|
|
|
fprintf(stderr, "Failed to open dchannel '%s': %s\n", argv[1], strerror(errno));
|
|
|
|
exit(1);
|
|
|
|
}
|
2010-07-17 06:55:15 +08:00
|
|
|
if (ioctl(dfd, DAHDI_GET_PARAMS, &p)) {
|
2002-02-18 22:06:31 +08:00
|
|
|
fprintf(stderr, "Unable to get parameters on '%s': %s\n", argv[1], strerror(errno));
|
|
|
|
exit(1);
|
|
|
|
}
|
2010-07-17 06:55:15 +08:00
|
|
|
if ((p.sigtype != DAHDI_SIG_HDLCRAW) && (p.sigtype != DAHDI_SIG_HDLCFCS)) {
|
2002-02-18 22:06:31 +08:00
|
|
|
fprintf(stderr, "%s is in %d signalling, not FCS HDLC or RAW HDLC mode\n", argv[1], p.sigtype);
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (argc > 2) {
|
|
|
|
swtype = str2switch(argv[2]);
|
|
|
|
if (swtype < 0) {
|
|
|
|
fprintf(stderr, "Valid switchtypes are: ni2, dms100, lucent5e, att4ess, and euroisdn\n");
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (argc > 3) {
|
|
|
|
node = str2node(argv[3]);
|
|
|
|
if (node < 0) {
|
|
|
|
fprintf(stderr, "Valid node types are: network and cpe\n");
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
signal(SIGCHLD, chan_ended);
|
|
|
|
|
|
|
|
if (run_pri(dfd, swtype, node))
|
|
|
|
exit(1);
|
|
|
|
exit(0);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|