lcr/gsm.cpp

1015 lines
28 KiB
C++

/*****************************************************************************\
** **
** LCR **
** **
**---------------------------------------------------------------------------**
** Copyright: Andreas Eversberg **
** **
** mISDN gsm **
** **
\*****************************************************************************/
#include "main.h"
#ifndef _GNU_SOURCE
#define _GNU_SOURCE
#endif
extern "C" {
#include "gsm_audio.h"
}
#include <mISDN/mISDNcompat.h>
struct lcr_gsm *gsm = NULL;
int new_callref = 1;
/* names of MNCC-SAP */
static const struct _value_string {
int msg_type;
const char *name;
} mncc_names[] = {
#if defined(MNCC_SETUP_REQ)
{ MNCC_SETUP_REQ, "MNCC_SETUP_REQ" },
#endif
#if defined(MNCC_SETUP_IND)
{ MNCC_SETUP_IND, "MNCC_SETUP_IND" },
#endif
#if defined(MNCC_SETUP_RSP)
{ MNCC_SETUP_RSP, "MNCC_SETUP_RSP" },
#endif
#if defined(MNCC_SETUP_CNF)
{ MNCC_SETUP_CNF, "MNCC_SETUP_CNF" },
#endif
#if defined(MNCC_SETUP_COMPL_REQ)
{ MNCC_SETUP_COMPL_REQ, "MNCC_SETUP_COMPL_REQ" },
#endif
#if defined(MNCC_SETUP_COMPL_IND)
{ MNCC_SETUP_COMPL_IND, "MNCC_SETUP_COMPL_IND" },
#endif
#if defined(MNCC_CALL_CONF_IND)
{ MNCC_CALL_CONF_IND, "MNCC_CALL_CONF_IND" },
#endif
#if defined(MNCC_CALL_PROC_REQ)
{ MNCC_CALL_PROC_REQ, "MNCC_CALL_PROC_REQ" },
#endif
#if defined(MNCC_PROGRESS_REQ)
{ MNCC_PROGRESS_REQ, "MNCC_PROGRESS_REQ" },
#endif
#if defined(MNCC_ALERT_REQ)
{ MNCC_ALERT_REQ, "MNCC_ALERT_REQ" },
#endif
#if defined(MNCC_ALERT_IND)
{ MNCC_ALERT_IND, "MNCC_ALERT_IND" },
#endif
#if defined(MNCC_NOTIFY_REQ)
{ MNCC_NOTIFY_REQ, "MNCC_NOTIFY_REQ" },
#endif
#if defined(MNCC_NOTIFY_IND)
{ MNCC_NOTIFY_IND, "MNCC_NOTIFY_IND" },
#endif
#if defined(MNCC_DISC_REQ)
{ MNCC_DISC_REQ, "MNCC_DISC_REQ" },
#endif
#if defined(MNCC_DISC_IND)
{ MNCC_DISC_IND, "MNCC_DISC_IND" },
#endif
#if defined(MNCC_REL_REQ)
{ MNCC_REL_REQ, "MNCC_REL_REQ" },
#endif
#if defined(MNCC_REL_IND)
{ MNCC_REL_IND, "MNCC_REL_IND" },
#endif
#if defined(MNCC_REL_CNF)
{ MNCC_REL_CNF, "MNCC_REL_CNF" },
#endif
#if defined(MNCC_FACILITY_REQ)
{ MNCC_FACILITY_REQ, "MNCC_FACILITY_REQ" },
#endif
#if defined(MNCC_FACILITY_IND)
{ MNCC_FACILITY_IND, "MNCC_FACILITY_IND" },
#endif
#if defined(MNCC_START_DTMF_IND)
{ MNCC_START_DTMF_IND, "MNCC_START_DTMF_IND" },
#endif
#if defined(MNCC_START_DTMF_RSP)
{ MNCC_START_DTMF_RSP, "MNCC_START_DTMF_RSP" },
#endif
#if defined(MNCC_START_DTMF_REJ)
{ MNCC_START_DTMF_REJ, "MNCC_START_DTMF_REJ" },
#endif
#if defined(MNCC_STOP_DTMF_IND)
{ MNCC_STOP_DTMF_IND, "MNCC_STOP_DTMF_IND" },
#endif
#if defined(MNCC_STOP_DTMF_RSP)
{ MNCC_STOP_DTMF_RSP, "MNCC_STOP_DTMF_RSP" },
#endif
#if defined(MNCC_MODIFY_REQ)
{ MNCC_MODIFY_REQ, "MNCC_MODIFY_REQ" },
#endif
#if defined(MNCC_MODIFY_IND)
{ MNCC_MODIFY_IND, "MNCC_MODIFY_IND" },
#endif
#if defined(MNCC_MODIFY_RSP)
{ MNCC_MODIFY_RSP, "MNCC_MODIFY_RSP" },
#endif
#if defined(MNCC_MODIFY_CNF)
{ MNCC_MODIFY_CNF, "MNCC_MODIFY_CNF" },
#endif
#if defined(MNCC_MODIFY_REJ)
{ MNCC_MODIFY_REJ, "MNCC_MODIFY_REJ" },
#endif
#if defined(MNCC_HOLD_IND)
{ MNCC_HOLD_IND, "MNCC_HOLD_IND" },
#endif
#if defined(MNCC_HOLD_CNF)
{ MNCC_HOLD_CNF, "MNCC_HOLD_CNF" },
#endif
#if defined(MNCC_HOLD_REJ)
{ MNCC_HOLD_REJ, "MNCC_HOLD_REJ" },
#endif
#if defined(MNCC_RETRIEVE_IND)
{ MNCC_RETRIEVE_IND, "MNCC_RETRIEVE_IND" },
#endif
#if defined(MNCC_RETRIEVE_CNF)
{ MNCC_RETRIEVE_CNF, "MNCC_RETRIEVE_CNF" },
#endif
#if defined(MNCC_RETRIEVE_REJ)
{ MNCC_RETRIEVE_REJ, "MNCC_RETRIEVE_REJ" },
#endif
#if defined(MNCC_USERINFO_REQ)
{ MNCC_USERINFO_REQ, "MNCC_USERINFO_REQ" },
#endif
#if defined(MNCC_USERINFO_IND)
{ MNCC_USERINFO_IND, "MNCC_USERINFO_IND" },
#endif
#if defined(MNCC_REJ_REQ)
{ MNCC_REJ_REQ, "MNCC_REJ_REQ" },
#endif
#if defined(MNCC_REJ_IND)
{ MNCC_REJ_IND, "MNCC_REJ_IND" },
#endif
#if defined(MNCC_PROGRESS_IND)
{ MNCC_PROGRESS_IND, "MNCC_PROGRESS_IND" },
#endif
#if defined(MNCC_CALL_PROC_IND)
{ MNCC_CALL_PROC_IND, "MNCC_CALL_PROC_IND" },
#endif
#if defined(MNCC_CALL_CONF_REQ)
{ MNCC_CALL_CONF_REQ, "MNCC_CALL_CONF_REQ" },
#endif
#if defined(MNCC_START_DTMF_REQ)
{ MNCC_START_DTMF_REQ, "MNCC_START_DTMF_REQ" },
#endif
#if defined(MNCC_STOP_DTMF_REQ)
{ MNCC_STOP_DTMF_REQ, "MNCC_STOP_DTMF_REQ" },
#endif
#if defined(MNCC_HOLD_REQ)
{ MNCC_HOLD_REQ, "MNCC_HOLD_REQ " },
#endif
#if defined(MNCC_RETRIEVE_REQ)
{ MNCC_RETRIEVE_REQ, "MNCC_RETRIEVE_REQ" },
#endif
{ 0, NULL }
};
const char *mncc_name(int value)
{
int i = 0;
while (mncc_names[i].name) {
if (mncc_names[i].msg_type == value)
return mncc_names[i].name;
i++;
}
return "unknown";
}
/*
* create and send mncc message
*/
struct gsm_mncc *create_mncc(int msg_type, unsigned int callref)
{
struct gsm_mncc *mncc;
mncc = (struct gsm_mncc *)MALLOC(sizeof(struct gsm_mncc));
mncc->msg_type = msg_type;
mncc->callref = callref;
return (mncc);
}
int send_and_free_mncc(void *instance, unsigned int msg_type, void *data)
{
int ret;
#ifdef WITH_GSM_BS
ret = mncc_send((struct gsm_network *)instance, msg_type, data);
#endif
#ifdef WITH_GSM_MS
ret = mncc_send((struct osmocom_ms *)instance, msg_type, data);
#endif
free(data);
return ret;
}
static int delete_event(struct lcr_work *work, void *instance, int index);
/*
* constructor
*/
Pgsm::Pgsm(int type, struct mISDNport *mISDNport, char *portname, struct port_settings *settings, int channel, int exclusive, int mode) : PmISDN(type, mISDNport, portname, settings, channel, exclusive, mode)
{
p_callerinfo.itype = (mISDNport->ifport->interface->extension)?INFO_ITYPE_ISDN_EXTENSION:INFO_ITYPE_ISDN;
memset(&p_m_g_delete, 0, sizeof(p_m_g_delete));
add_work(&p_m_g_delete, delete_event, this, 0);
p_m_g_instance = NULL;
p_m_g_callref = 0;
p_m_g_mode = 0;
p_m_g_gsm_b_sock = -1;
p_m_g_gsm_b_index = -1;
p_m_g_gsm_b_active = 0;
p_m_g_notify_pending = NULL;
p_m_g_decoder = gsm_audio_create();
p_m_g_encoder = gsm_audio_create();
if (!p_m_g_encoder || !p_m_g_decoder) {
PERROR("Failed to create GSM audio codec instance\n");
trigger_work(&p_m_g_delete);
}
p_m_g_rxpos = 0;
p_m_g_tch_connected = 0;
PDEBUG(DEBUG_GSM, "Created new GSMPort(%s).\n", portname);
}
/*
* destructor
*/
Pgsm::~Pgsm()
{
PDEBUG(DEBUG_GSM, "Destroyed GSM process(%s).\n", p_name);
del_work(&p_m_g_delete);
/* remove queued message */
if (p_m_g_notify_pending)
message_free(p_m_g_notify_pending);
/* close audio transfer socket */
if (p_m_g_gsm_b_sock > -1)
bchannel_close();
/* close codec */
if (p_m_g_encoder)
gsm_audio_destroy(p_m_g_encoder);
if (p_m_g_decoder)
gsm_audio_destroy(p_m_g_decoder);
}
/* close bsc side bchannel */
void Pgsm::bchannel_close(void)
{
if (p_m_g_gsm_b_sock > -1) {
unregister_fd(&p_m_g_gsm_b_fd);
close(p_m_g_gsm_b_sock);
}
p_m_g_gsm_b_sock = -1;
p_m_g_gsm_b_index = -1;
p_m_g_gsm_b_active = 0;
}
static int b_handler(struct lcr_fd *fd, unsigned int what, void *instance, int index);
/* open external side bchannel */
int Pgsm::bchannel_open(int index)
{
int ret;
struct sockaddr_mISDN addr;
struct mISDNhead act;
if (p_m_g_gsm_b_sock > -1) {
PERROR("Socket already created for index %d\n", index);
return(-EIO);
}
/* open socket */
ret = p_m_g_gsm_b_sock = socket(PF_ISDN, SOCK_DGRAM, ISDN_P_B_RAW);
if (ret < 0) {
PERROR("Failed to open bchannel-socket for index %d\n", index);
bchannel_close();
return(ret);
}
memset(&p_m_g_gsm_b_fd, 0, sizeof(p_m_g_gsm_b_fd));
p_m_g_gsm_b_fd.fd = p_m_g_gsm_b_sock;
register_fd(&p_m_g_gsm_b_fd, LCR_FD_READ, b_handler, this, 0);
/* bind socket to bchannel */
addr.family = AF_ISDN;
addr.dev = mISDNloop.port;
addr.channel = index+1+(index>15);
ret = bind(p_m_g_gsm_b_sock, (struct sockaddr *)&addr, sizeof(addr));
if (ret < 0) {
PERROR("Failed to bind bchannel-socket for index %d\n", index);
bchannel_close();
return(ret);
}
/* activate bchannel */
PDEBUG(DEBUG_GSM, "Activating GSM side channel index %i.\n", index);
act.prim = PH_ACTIVATE_REQ;
act.id = 0;
ret = sendto(p_m_g_gsm_b_sock, &act, MISDN_HEADER_LEN, 0, NULL, 0);
if (ret < 0) {
PERROR("Failed to activate index %d\n", index);
bchannel_close();
return(ret);
}
p_m_g_gsm_b_index = index;
return(0);
}
/* receive from bchannel */
void Pgsm::bchannel_receive(struct mISDNhead *hh, unsigned char *data, int len)
{
unsigned char frame[33];
/* encoder init failed */
if (!p_m_g_encoder)
return;
/* (currently) not connected, so don't flood tch! */
if (!p_m_g_tch_connected)
return;
/* write to rx buffer */
while(len--) {
p_m_g_rxdata[p_m_g_rxpos++] = audio_law_to_s32[*data++];
if (p_m_g_rxpos == 160) {
p_m_g_rxpos = 0;
/* encode data */
gsm_audio_encode(p_m_g_encoder, p_m_g_rxdata, frame);
frame_send(frame);
}
}
}
/* transmit to bchannel */
void Pgsm::bchannel_send(unsigned int prim, unsigned int id, unsigned char *data, int len)
{
unsigned char buf[MISDN_HEADER_LEN+len];
struct mISDNhead *hh = (struct mISDNhead *)buf;
int ret;
if (!p_m_g_gsm_b_active)
return;
/* make and send frame */
hh->prim = PH_DATA_REQ;
hh->id = 0;
memcpy(buf+MISDN_HEADER_LEN, data, len);
ret = sendto(p_m_g_gsm_b_sock, buf, MISDN_HEADER_LEN+len, 0, NULL, 0);
if (ret <= 0)
PERROR("Failed to send to socket index %d\n", p_m_g_gsm_b_index);
}
void Pgsm::frame_send(void *_frame)
{
unsigned char buffer[sizeof(struct gsm_data_frame) + 33];
struct gsm_data_frame *frame = (struct gsm_data_frame *)buffer;
frame->msg_type = GSM_TCHF_FRAME;
frame->callref = p_m_g_callref;
memcpy(frame->data, _frame, 33);
#ifdef WITH_GSM_BS
mncc_send((struct gsm_network *)p_m_g_instance, frame->msg_type, frame);
#endif
#ifdef WITH_GSM_MS
mncc_send((struct osmocom_ms *)p_m_g_instance, frame->msg_type, frame);
#endif
}
void Pgsm::frame_receive(void *arg)
{
struct gsm_data_frame *frame = (struct gsm_data_frame *)arg;
signed short samples[160];
unsigned char data[160];
int i;
if (!p_m_g_decoder)
return;
if ((frame->data[0]>>4) != 0xd)
PERROR("received GSM frame with wrong magig 0x%x\n", frame->data[0]>>4);
/* decode */
gsm_audio_decode(p_m_g_decoder, frame->data, samples);
for (i = 0; i < 160; i++) {
data[i] = audio_s16_to_law[samples[i] & 0xffff];
}
/* send */
bchannel_send(PH_DATA_REQ, 0, data, 160);
}
/*
* create trace
*/
void gsm_trace_header(struct mISDNport *mISDNport, class PmISDN *port, unsigned int msg_type, int direction)
{
char msgtext[64];
/* select message and primitive text */
SCPY(msgtext, mncc_name(msg_type));
/* add direction */
if (port) {
switch(port->p_type) {
case PORT_TYPE_GSM_BS_OUT:
SCAT(msgtext, " LCR->BSC");
break;
case PORT_TYPE_GSM_BS_IN:
SCAT(msgtext, " LCR<-BSC");
break;
case PORT_TYPE_GSM_MS_OUT:
SCAT(msgtext, " LCR->MS");
break;
case PORT_TYPE_GSM_MS_IN:
SCAT(msgtext, " LCR<-MS");
break;
}
} else
SCAT(msgtext, " ----");
/* init trace with given values */
start_trace(mISDNport?mISDNport->portnum:-1,
mISDNport?(mISDNport->ifport?mISDNport->ifport->interface:NULL):NULL,
port?numberrize_callerinfo(port->p_callerinfo.id, port->p_callerinfo.ntype, options.national, options.international):NULL,
port?port->p_dialinginfo.id:NULL,
direction,
CATEGORY_CH,
port?port->p_serial:0,
msgtext);
}
/* select free bchannel from loopback interface */
int Pgsm::hunt_bchannel(void)
{
return loop_hunt_bchannel(this, p_m_mISDNport);
}
/* PROCEEDING INDICATION */
void Pgsm::call_conf_ind(unsigned int msg_type, unsigned int callref, struct gsm_mncc *mncc)
{
struct gsm_mncc *mode;
gsm_trace_header(p_m_mISDNport, this, msg_type, DIRECTION_IN);
if (mncc->fields & MNCC_F_CAUSE) {
add_trace("cause", "coding", "%d", mncc->cause.coding);
add_trace("cause", "location", "%", mncc->cause.location);
add_trace("cause", "value", "%", mncc->cause.value);
}
end_trace();
/* modify lchan to GSM codec V1 */
gsm_trace_header(p_m_mISDNport, this, MNCC_LCHAN_MODIFY, DIRECTION_OUT);
mode = create_mncc(MNCC_LCHAN_MODIFY, p_m_g_callref);
mode->lchan_mode = 0x01; /* GSM V1 */
add_trace("mode", NULL, "0x%02x", mode->lchan_mode);
end_trace();
send_and_free_mncc(p_m_g_instance, mode->msg_type, mode);
}
/* CALL PROCEEDING INDICATION */
void Pgsm::call_proc_ind(unsigned int msg_type, unsigned int callref, struct gsm_mncc *mncc)
{
struct lcr_msg *message;
struct gsm_mncc *frame;
gsm_trace_header(p_m_mISDNport, this, msg_type, DIRECTION_IN);
end_trace();
message = message_create(p_serial, ACTIVE_EPOINT(p_epointlist), PORT_TO_EPOINT, MESSAGE_PROCEEDING);
message_put(message);
new_state(PORT_STATE_OUT_PROCEEDING);
if (p_m_mISDNport->earlyb && !p_m_g_tch_connected) { /* only if ... */
gsm_trace_header(p_m_mISDNport, this, MNCC_FRAME_RECV, DIRECTION_OUT);
end_trace();
frame = create_mncc(MNCC_FRAME_RECV, p_m_g_callref);
send_and_free_mncc(p_m_g_instance, frame->msg_type, frame);
p_m_g_tch_connected = 1;
}
}
/* ALERTING INDICATION */
void Pgsm::alert_ind(unsigned int msg_type, unsigned int callref, struct gsm_mncc *mncc)
{
struct lcr_msg *message;
struct gsm_mncc *frame;
gsm_trace_header(p_m_mISDNport, this, msg_type, DIRECTION_IN);
end_trace();
message = message_create(p_serial, ACTIVE_EPOINT(p_epointlist), PORT_TO_EPOINT, MESSAGE_ALERTING);
message_put(message);
new_state(PORT_STATE_OUT_ALERTING);
if (p_m_mISDNport->earlyb && !p_m_g_tch_connected) { /* only if ... */
gsm_trace_header(p_m_mISDNport, this, MNCC_FRAME_RECV, DIRECTION_OUT);
end_trace();
frame = create_mncc(MNCC_FRAME_RECV, p_m_g_callref);
send_and_free_mncc(p_m_g_instance, frame->msg_type, frame);
p_m_g_tch_connected = 1;
}
}
/* CONNECT INDICATION */
void Pgsm::setup_cnf(unsigned int msg_type, unsigned int callref, struct gsm_mncc *mncc)
{
struct gsm_mncc *resp, *frame;
struct lcr_msg *message;
SCPY(p_connectinfo.id, mncc->connected.number);
SCPY(p_connectinfo.imsi, mncc->imsi);
p_connectinfo.present = INFO_PRESENT_ALLOWED;
p_connectinfo.screen = INFO_SCREEN_NETWORK;
p_connectinfo.ntype = INFO_NTYPE_UNKNOWN;
p_connectinfo.isdn_port = p_m_portnum;
SCPY(p_connectinfo.interface, p_m_mISDNport->ifport->interface->name);
gsm_trace_header(p_m_mISDNport, this, msg_type, DIRECTION_IN);
if (p_connectinfo.id[0])
add_trace("connect", "number", "%s", p_connectinfo.id);
else if (mncc->imsi[0])
SPRINT(p_connectinfo.id, "imsi-%s", p_connectinfo.imsi);
if (mncc->imsi[0])
add_trace("connect", "imsi", "%s", p_connectinfo.imsi);
end_trace();
/* send resp */
gsm_trace_header(p_m_mISDNport, this, MNCC_SETUP_COMPL_REQ, DIRECTION_OUT);
resp = create_mncc(MNCC_SETUP_COMPL_REQ, p_m_g_callref);
end_trace();
send_and_free_mncc(p_m_g_instance, resp->msg_type, resp);
message = message_create(p_serial, ACTIVE_EPOINT(p_epointlist), PORT_TO_EPOINT, MESSAGE_CONNECT);
memcpy(&message->param.connectinfo, &p_connectinfo, sizeof(struct connect_info));
message_put(message);
new_state(PORT_STATE_CONNECT);
if (!p_m_g_tch_connected) { /* only if ... */
gsm_trace_header(p_m_mISDNport, this, MNCC_FRAME_RECV, DIRECTION_OUT);
end_trace();
frame = create_mncc(MNCC_FRAME_RECV, p_m_g_callref);
send_and_free_mncc(p_m_g_instance, frame->msg_type, frame);
p_m_g_tch_connected = 1;
}
}
/* CONNECT ACK INDICATION */
void Pgsm::setup_compl_ind(unsigned int msg_type, unsigned int callref, struct gsm_mncc *mncc)
{
struct gsm_mncc *frame;
gsm_trace_header(p_m_mISDNport, this, msg_type, DIRECTION_IN);
end_trace();
new_state(PORT_STATE_CONNECT);
if (!p_m_g_tch_connected) { /* only if ... */
gsm_trace_header(p_m_mISDNport, this, MNCC_FRAME_RECV, DIRECTION_OUT);
end_trace();
frame = create_mncc(MNCC_FRAME_RECV, p_m_g_callref);
send_and_free_mncc(p_m_g_instance, frame->msg_type, frame);
p_m_g_tch_connected = 1;
}
}
/* DISCONNECT INDICATION */
void Pgsm::disc_ind(unsigned int msg_type, unsigned int callref, struct gsm_mncc *mncc)
{
struct lcr_msg *message;
int cause = 16, location = 0;
struct gsm_mncc *resp;
gsm_trace_header(p_m_mISDNport, this, msg_type, DIRECTION_IN);
if (mncc->fields & MNCC_F_CAUSE) {
location = mncc->cause.location;
cause = mncc->cause.value;
add_trace("cause", "coding", "%d", mncc->cause.coding);
add_trace("cause", "location", "%d", location);
add_trace("cause", "value", "%d", cause);
}
end_trace();
/* send release */
resp = create_mncc(MNCC_REL_REQ, p_m_g_callref);
gsm_trace_header(p_m_mISDNport, this, MNCC_REL_REQ, DIRECTION_OUT);
#if 0
resp->fields |= MNCC_F_CAUSE;
resp->cause.coding = 3;
resp->cause.location = 1;
resp->cause.value = cause;
add_trace("cause", "coding", "%d", resp->cause.coding);
add_trace("cause", "location", "%d", resp->cause.location);
add_trace("cause", "value", "%d", resp->cause.value);
#endif
end_trace();
send_and_free_mncc(p_m_g_instance, resp->msg_type, resp);
/* sending release to endpoint */
while(p_epointlist) {
message = message_create(p_serial, p_epointlist->epoint_id, PORT_TO_EPOINT, MESSAGE_RELEASE);
message->param.disconnectinfo.cause = cause;
message->param.disconnectinfo.location = location;
message_put(message);
/* remove epoint */
free_epointlist(p_epointlist);
}
new_state(PORT_STATE_RELEASE);
trigger_work(&p_m_g_delete);
}
/* CC_RELEASE INDICATION */
void Pgsm::rel_ind(unsigned int msg_type, unsigned int callref, struct gsm_mncc *mncc)
{
int location = 0, cause = 16;
struct lcr_msg *message;
gsm_trace_header(p_m_mISDNport, this, msg_type, DIRECTION_IN);
if (mncc->fields & MNCC_F_CAUSE) {
location = mncc->cause.location;
cause = mncc->cause.value;
add_trace("cause", "coding", "%d", mncc->cause.coding);
add_trace("cause", "location", "%d", mncc->cause.location);
add_trace("cause", "value", "%d", mncc->cause.value);
}
end_trace();
/* sending release to endpoint */
while(p_epointlist) {
message = message_create(p_serial, p_epointlist->epoint_id, PORT_TO_EPOINT, MESSAGE_RELEASE);
message->param.disconnectinfo.cause = cause;
message->param.disconnectinfo.location = location;
message_put(message);
/* remove epoint */
free_epointlist(p_epointlist);
}
new_state(PORT_STATE_RELEASE);
trigger_work(&p_m_g_delete);
}
/* NOTIFY INDICATION */
void Pgsm::notify_ind(unsigned int msg_type, unsigned int callref, struct gsm_mncc *mncc)
{
struct lcr_msg *message;
gsm_trace_header(p_m_mISDNport, this, msg_type, DIRECTION_IN);
add_trace("notify", NULL, "%d", mncc->notify);
end_trace();
message = message_create(p_serial, ACTIVE_EPOINT(p_epointlist), PORT_TO_EPOINT, MESSAGE_NOTIFY);
message->param.notifyinfo.notify = mncc->notify;
message_put(message);
}
/* MESSAGE_NOTIFY */
void Pgsm::message_notify(unsigned int epoint_id, int message_id, union parameter *param)
{
struct gsm_mncc *mncc;
int notify;
// printf("if = %d\n", param->notifyinfo.notify);
if (param->notifyinfo.notify>INFO_NOTIFY_NONE) {
notify = param->notifyinfo.notify & 0x7f;
if (p_state!=PORT_STATE_CONNECT /*&& p_state!=PORT_STATE_IN_PROCEEDING*/ && p_state!=PORT_STATE_IN_ALERTING) {
/* queue notification */
if (p_m_g_notify_pending)
message_free(p_m_g_notify_pending);
p_m_g_notify_pending = message_create(ACTIVE_EPOINT(p_epointlist), p_serial, EPOINT_TO_PORT, message_id);
memcpy(&p_m_g_notify_pending->param, param, sizeof(union parameter));
} else {
/* sending notification */
gsm_trace_header(p_m_mISDNport, this, MNCC_NOTIFY_REQ, DIRECTION_OUT);
add_trace("notify", NULL, "%d", notify);
end_trace();
mncc = create_mncc(MNCC_NOTIFY_REQ, p_m_g_callref);
mncc->notify = notify;
send_and_free_mncc(p_m_g_instance, mncc->msg_type, mncc);
}
}
}
/* MESSAGE_ALERTING */
void Pgsm::message_alerting(unsigned int epoint_id, int message_id, union parameter *param)
{
struct gsm_mncc *mncc;
/* send alert */
gsm_trace_header(p_m_mISDNport, this, MNCC_ALERT_REQ, DIRECTION_OUT);
mncc = create_mncc(MNCC_ALERT_REQ, p_m_g_callref);
if (p_m_mISDNport->tones) {
mncc->fields |= MNCC_F_PROGRESS;
mncc->progress.coding = 3; /* GSM */
mncc->progress.location = 1;
mncc->progress.descr = 8;
add_trace("progress", "coding", "%d", mncc->progress.coding);
add_trace("progress", "location", "%d", mncc->progress.location);
add_trace("progress", "descr", "%d", mncc->progress.descr);
}
end_trace();
send_and_free_mncc(p_m_g_instance, mncc->msg_type, mncc);
new_state(PORT_STATE_IN_ALERTING);
if (p_m_mISDNport->tones && !p_m_g_tch_connected) { /* only if ... */
gsm_trace_header(p_m_mISDNport, this, MNCC_FRAME_RECV, DIRECTION_OUT);
end_trace();
mncc = create_mncc(MNCC_FRAME_RECV, p_m_g_callref);
send_and_free_mncc(p_m_g_instance, mncc->msg_type, mncc);
p_m_g_tch_connected = 1;
}
}
/* MESSAGE_CONNECT */
void Pgsm::message_connect(unsigned int epoint_id, int message_id, union parameter *param)
{
struct gsm_mncc *mncc;
/* copy connected information */
memcpy(&p_connectinfo, &param->connectinfo, sizeof(p_connectinfo));
/* screen outgoing caller id */
do_screen(1, p_connectinfo.id, sizeof(p_connectinfo.id), &p_connectinfo.ntype, &p_connectinfo.present, p_m_mISDNport->ifport->interface);
/* send connect */
mncc = create_mncc(MNCC_SETUP_RSP, p_m_g_callref);
gsm_trace_header(p_m_mISDNport, this, MNCC_SETUP_RSP, DIRECTION_OUT);
/* caller information */
mncc->fields |= MNCC_F_CONNECTED;
mncc->connected.plan = 1;
switch (p_callerinfo.ntype) {
case INFO_NTYPE_UNKNOWN:
mncc->connected.type = 0x0;
break;
case INFO_NTYPE_INTERNATIONAL:
mncc->connected.type = 0x1;
break;
case INFO_NTYPE_NATIONAL:
mncc->connected.type = 0x2;
break;
case INFO_NTYPE_SUBSCRIBER:
mncc->connected.type = 0x4;
break;
default: /* INFO_NTYPE_NOTPRESENT */
mncc->fields &= ~MNCC_F_CONNECTED;
break;
}
switch (p_callerinfo.screen) {
case INFO_SCREEN_USER:
mncc->connected.screen = 0;
break;
default: /* INFO_SCREEN_NETWORK */
mncc->connected.screen = 3;
break;
}
switch (p_callerinfo.present) {
case INFO_PRESENT_ALLOWED:
mncc->connected.present = 0;
break;
case INFO_PRESENT_RESTRICTED:
mncc->connected.present = 1;
break;
default: /* INFO_PRESENT_NOTAVAIL */
mncc->connected.present = 2;
break;
}
if (mncc->fields & MNCC_F_CONNECTED) {
SCPY(mncc->connected.number, p_connectinfo.id);
add_trace("connected", "type", "%d", mncc->connected.type);
add_trace("connected", "plan", "%d", mncc->connected.plan);
add_trace("connected", "present", "%d", mncc->connected.present);
add_trace("connected", "screen", "%d", mncc->connected.screen);
add_trace("connected", "number", "%s", mncc->connected.number);
}
end_trace();
send_and_free_mncc(p_m_g_instance, mncc->msg_type, mncc);
new_state(PORT_STATE_CONNECT_WAITING);
}
/* MESSAGE_DISCONNECT */
void Pgsm::message_disconnect(unsigned int epoint_id, int message_id, union parameter *param)
{
struct gsm_mncc *mncc;
/* send disconnect */
mncc = create_mncc(MNCC_DISC_REQ, p_m_g_callref);
gsm_trace_header(p_m_mISDNport, this, MNCC_DISC_REQ, DIRECTION_OUT);
if (p_m_mISDNport->tones) {
mncc->fields |= MNCC_F_PROGRESS;
mncc->progress.coding = 3; /* GSM */
mncc->progress.location = 1;
mncc->progress.descr = 8;
add_trace("progress", "coding", "%d", mncc->progress.coding);
add_trace("progress", "location", "%d", mncc->progress.location);
add_trace("progress", "descr", "%d", mncc->progress.descr);
}
mncc->fields |= MNCC_F_CAUSE;
mncc->cause.coding = 3;
mncc->cause.location = param->disconnectinfo.location;
mncc->cause.value = param->disconnectinfo.cause;
add_trace("cause", "coding", "%d", mncc->cause.coding);
add_trace("cause", "location", "%d", mncc->cause.location);
add_trace("cause", "value", "%d", mncc->cause.value);
end_trace();
send_and_free_mncc(p_m_g_instance, mncc->msg_type, mncc);
new_state(PORT_STATE_OUT_DISCONNECT);
if (p_m_mISDNport->tones && !p_m_g_tch_connected) { /* only if ... */
gsm_trace_header(p_m_mISDNport, this, MNCC_FRAME_RECV, DIRECTION_OUT);
end_trace();
mncc = create_mncc(MNCC_FRAME_RECV, p_m_g_callref);
send_and_free_mncc(p_m_g_instance, mncc->msg_type, mncc);
p_m_g_tch_connected = 1;
}
}
/* MESSAGE_RELEASE */
void Pgsm::message_release(unsigned int epoint_id, int message_id, union parameter *param)
{
struct gsm_mncc *mncc;
/* send release */
mncc = create_mncc(MNCC_REL_REQ, p_m_g_callref);
gsm_trace_header(p_m_mISDNport, this, MNCC_REL_REQ, DIRECTION_OUT);
mncc->fields |= MNCC_F_CAUSE;
mncc->cause.coding = 3;
mncc->cause.location = param->disconnectinfo.location;
mncc->cause.value = param->disconnectinfo.cause;
add_trace("cause", "coding", "%d", mncc->cause.coding);
add_trace("cause", "location", "%d", mncc->cause.location);
add_trace("cause", "value", "%d", mncc->cause.value);
end_trace();
send_and_free_mncc(p_m_g_instance, mncc->msg_type, mncc);
new_state(PORT_STATE_RELEASE);
trigger_work(&p_m_g_delete);
return;
}
/*
* endpoint sends messages to the port
*/
int Pgsm::message_epoint(unsigned int epoint_id, int message_id, union parameter *param)
{
if (PmISDN::message_epoint(epoint_id, message_id, param))
return(1);
switch(message_id) {
case MESSAGE_NOTIFY: /* display and notifications */
message_notify(epoint_id, message_id, param);
break;
// case MESSAGE_FACILITY: /* facility message */
// message_facility(epoint_id, message_id, param);
// break;
case MESSAGE_PROCEEDING: /* message not handles */
break;
case MESSAGE_ALERTING: /* call of endpoint is ringing */
if (p_state!=PORT_STATE_IN_PROCEEDING)
break;
message_alerting(epoint_id, message_id, param);
if (p_m_g_notify_pending) {
/* send pending notify message during connect */
message_notify(ACTIVE_EPOINT(p_epointlist), p_m_g_notify_pending->type, &p_m_g_notify_pending->param);
message_free(p_m_g_notify_pending);
p_m_g_notify_pending = NULL;
}
break;
case MESSAGE_CONNECT: /* call of endpoint is connected */
if (p_state!=PORT_STATE_IN_PROCEEDING
&& p_state!=PORT_STATE_IN_ALERTING)
break;
message_connect(epoint_id, message_id, param);
if (p_m_g_notify_pending) {
/* send pending notify message during connect */
message_notify(ACTIVE_EPOINT(p_epointlist), p_m_g_notify_pending->type, &p_m_g_notify_pending->param);
message_free(p_m_g_notify_pending);
p_m_g_notify_pending = NULL;
}
break;
case MESSAGE_DISCONNECT: /* call has been disconnected */
if (p_state!=PORT_STATE_IN_PROCEEDING
&& p_state!=PORT_STATE_IN_ALERTING
&& p_state!=PORT_STATE_OUT_SETUP
&& p_state!=PORT_STATE_OUT_OVERLAP
&& p_state!=PORT_STATE_OUT_PROCEEDING
&& p_state!=PORT_STATE_OUT_ALERTING
&& p_state!=PORT_STATE_CONNECT
&& p_state!=PORT_STATE_CONNECT_WAITING)
break;
message_disconnect(epoint_id, message_id, param);
break;
case MESSAGE_RELEASE: /* release isdn port */
if (p_state==PORT_STATE_RELEASE)
break;
message_release(epoint_id, message_id, param);
break;
}
return(0);
}
/* deletes only if l3id is release, otherwhise it will be triggered then */
static int delete_event(struct lcr_work *work, void *instance, int index)
{
class Pgsm *gsmport = (class Pgsm *)instance;
delete gsmport;
return 0;
}
/*
* handler of bchannel events
*/
static int b_handler(struct lcr_fd *fd, unsigned int what, void *instance, int index)
{
class Pgsm *gsmport = (class Pgsm *)instance;
int ret;
unsigned char buffer[2048+MISDN_HEADER_LEN];
struct mISDNhead *hh = (struct mISDNhead *)buffer;
/* handle message from bchannel */
if (gsmport->p_m_g_gsm_b_sock > -1) {
ret = recv(gsmport->p_m_g_gsm_b_sock, buffer, sizeof(buffer), 0);
if (ret >= (int)MISDN_HEADER_LEN) {
switch(hh->prim) {
/* we don't care about confirms, we use rx data to sync tx */
case PH_DATA_CNF:
break;
/* we receive audio data, we respond to it AND we send tones */
case PH_DATA_IND:
gsmport->bchannel_receive(hh, buffer+MISDN_HEADER_LEN, ret-MISDN_HEADER_LEN);
break;
case PH_ACTIVATE_IND:
gsmport->p_m_g_gsm_b_active = 1;
break;
case PH_DEACTIVATE_IND:
gsmport->p_m_g_gsm_b_active = 0;
break;
}
} else {
if (ret < 0 && errno != EWOULDBLOCK)
PERROR("Read from GSM port, index %d failed with return code %d\n", ret);
}
}
return 0;
}
int gsm_exit(int rc)
{
/* free gsm instance */
if (gsm) {
free(gsm);
gsm = NULL;
}
return(rc);
}
int gsm_init(void)
{
/* seed the PRNG */
srand(time(NULL));
/* create gsm instance */
gsm = (struct lcr_gsm *)MALLOC(sizeof(struct lcr_gsm));
return 0;
}
int handle_gsm(void)
{
return 0;
}