aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorHarald Welte <laforge@gnumonks.org>2016-07-28 11:09:31 +0200
committerHarald Welte <laforge@gnumonks.org>2016-10-17 22:15:55 +0200
commit7a228ebc604052017f750edd45a3846085b72126 (patch)
treeb73702fd93520714af28a64a5d32e38cfad316bb /src
parenta0108e78a9458282105b9d9d34b41be09343c373 (diff)
Add HDLC timeslot mode
This is useful for protocols that use HDLC framing for signalling on E1 timeslots, but which don't use LAPD inside (our E1INP_TS_TYPE_SIGN). Examples are particularly a MTP2/MTP3 SS7 stack, like it is used on the A interfaces or on the core network interfaces of classic circuit-switched networks. Change-Id: I2d75801df4d7cbb8dad325f4d6689841f0196fa6
Diffstat (limited to 'src')
-rw-r--r--src/e1_input.c25
-rw-r--r--src/input/dahdi.c67
-rw-r--r--src/input/misdn.c6
3 files changed, 97 insertions, 1 deletions
diff --git a/src/e1_input.c b/src/e1_input.c
index 75ae36e..970bdb9 100644
--- a/src/e1_input.c
+++ b/src/e1_input.c
@@ -213,11 +213,12 @@ const char *e1inp_signtype_name(enum e1inp_sign_type tp)
return get_value_string(e1inp_sign_type_names, tp);
}
-const struct value_string e1inp_ts_type_names[5] = {
+const struct value_string e1inp_ts_type_names[6] = {
{ E1INP_TS_TYPE_NONE, "None" },
{ E1INP_TS_TYPE_SIGN, "Signalling" },
{ E1INP_TS_TYPE_TRAU, "TRAU" },
{ E1INP_TS_TYPE_RAW, "RAW" },
+ { E1INP_TS_TYPE_HDLC, "HDLC" },
{ 0, NULL }
};
@@ -315,6 +316,21 @@ int e1inp_ts_config_raw(struct e1inp_ts *ts, struct e1inp_line *line,
return 0;
}
+int e1inp_ts_config_hdlc(struct e1inp_ts *ts, struct e1inp_line *line,
+ void (*hdlc_recv_cb)(struct e1inp_ts *ts,
+ struct msgb *msg))
+{
+ if (ts->type == E1INP_TS_TYPE_HDLC && ts->line && line)
+ return 0;
+
+ ts->type = E1INP_TS_TYPE_HDLC;
+ ts->line = line;
+ ts->hdlc.recv_cb = hdlc_recv_cb;
+ INIT_LLIST_HEAD(&ts->hdlc.tx_queue);
+
+ return 0;
+}
+
struct e1inp_line *e1inp_line_find(uint8_t e1_nr)
{
struct e1inp_line *e1i_line;
@@ -550,6 +566,9 @@ int e1inp_rx_ts(struct e1inp_ts *ts, struct msgb *msg,
case E1INP_TS_TYPE_RAW:
ts->raw.recv_cb(ts, msg);
break;
+ case E1INP_TS_TYPE_HDLC:
+ ts->hdlc.recv_cb(ts, msg);
+ break;
default:
ret = -EINVAL;
LOGP(DLMI, LOGL_ERROR, "unknown TS type %u\n", ts->type);
@@ -677,6 +696,10 @@ struct msgb *e1inp_tx_ts(struct e1inp_ts *e1i_ts,
/* Get msgb from tx_queue */
msg = msgb_dequeue(&e1i_ts->raw.tx_queue);
break;
+ case E1INP_TS_TYPE_HDLC:
+ /* Get msgb from tx_queue */
+ msg = msgb_dequeue(&e1i_ts->hdlc.tx_queue);
+ break;
default:
LOGP(DLMI, LOGL_ERROR, "unsupported E1 TS type %u\n", e1i_ts->type);
return NULL;
diff --git a/src/input/dahdi.c b/src/input/dahdi.c
index db00f5f..0945daa 100644
--- a/src/input/dahdi.c
+++ b/src/input/dahdi.c
@@ -259,6 +259,51 @@ static int handle_ts1_write(struct osmo_fd *bfd)
return 0;
}
+static void handle_hdlc_write(struct osmo_fd *bfd)
+{
+ struct e1inp_line *line = bfd->data;
+ unsigned int ts_nr = bfd->priv_nr;
+ struct e1inp_ts *e1i_ts = &line->ts[ts_nr-1];
+ struct msgb *msg;
+ int ret;
+
+ /* get the next msg for this timeslot */
+ msg = e1inp_tx_ts(e1i_ts, NULL);
+ if (!msg)
+ return;
+
+ ret = write(bfd->fd, msg->data, msg->len + 2);
+ msgb_free(msg);
+ if (ret == -1)
+ handle_dahdi_exception(e1i_ts);
+ else if (ret < 0)
+ LOGP(DLMI, LOGL_NOTICE, "%s write failed %d\n", __func__, ret);
+}
+
+static int handle_hdlc_read(struct osmo_fd *bfd)
+{
+ struct e1inp_line *line = bfd->data;
+ unsigned int ts_nr = bfd->priv_nr;
+ struct e1inp_ts *e1i_ts = &line->ts[ts_nr-1];
+ struct msgb *msg = msgb_alloc(TS1_ALLOC_SIZE, "DAHDI HDLC Rx");
+ int ret;
+
+ if (!msg)
+ return -ENOMEM;
+
+ ret = read(bfd->fd, msg->data, TS1_ALLOC_SIZE - 16);
+ if (ret == -1)
+ handle_dahdi_exception(e1i_ts);
+ else if (ret < 0) {
+ perror("read ");
+ }
+ msgb_put(msg, ret - 2);
+ if (ret <= 3) {
+ perror("read ");
+ }
+
+ return e1inp_rx_ts(e1i_ts, msg, 0, 0);
+}
static int invertbits = 1;
@@ -451,6 +496,14 @@ static int dahdi_fd_cb(struct osmo_fd *bfd, unsigned int what)
if (what & BSC_FD_WRITE)
rc = handle_ts1_write(bfd);
break;
+ case E1INP_TS_TYPE_HDLC:
+ if (what & BSC_FD_EXCEPT)
+ handle_dahdi_exception(e1i_ts);
+ if (what & BSC_FD_READ)
+ rc = handle_hdlc_read(bfd);
+ if (what & BSC_FD_WRITE)
+ handle_hdlc_write(bfd);
+ break;
case E1INP_TS_TYPE_TRAU:
if (what & BSC_FD_EXCEPT)
handle_dahdi_exception(e1i_ts);
@@ -620,6 +673,20 @@ static int dahdi_e1_setup(struct e1inp_line *line)
dahdi_write_msg, bfd, e1inp_dlsap_up,
e1i_ts, &lapd_profile_abis);
break;
+ case E1INP_TS_TYPE_HDLC:
+ if (!bfd->fd)
+ bfd->fd = open(openstr, O_RDWR | O_NONBLOCK);
+ if (bfd->fd == -1) {
+ LOGP(DLINP, LOGL_ERROR,
+ "%s could not open %s %s\n",
+ __func__, openstr, strerror(errno));
+ return -EIO;
+ }
+ bfd->when = BSC_FD_READ | BSC_FD_EXCEPT;
+ ret = dahdi_set_bufinfo(bfd->fd, 1);
+ if (ret < 0)
+ return ret;
+ break;
case E1INP_TS_TYPE_TRAU:
case E1INP_TS_TYPE_RAW:
/* close/release LAPD instance, if any */
diff --git a/src/input/misdn.c b/src/input/misdn.c
index 391cd18..f72b496 100644
--- a/src/input/misdn.c
+++ b/src/input/misdn.c
@@ -607,6 +607,11 @@ static int mi_e1_setup(struct e1inp_line *line, int release_l2)
case E1INP_TS_TYPE_NONE:
continue;
break;
+ case E1INP_TS_TYPE_HDLC:
+ bfd->fd = socket(PF_ISDN, SOCK_DGRAM,
+ ISDN_P_B_HDLC);
+ bfd->when = BSC_FD_READ;
+ break;
case E1INP_TS_TYPE_SIGN:
if (mline->use_userspace_lapd)
bfd->fd = socket(PF_ISDN, SOCK_DGRAM,
@@ -650,6 +655,7 @@ static int mi_e1_setup(struct e1inp_line *line, int release_l2)
addr.tei = GROUP_TEI;
}
break;
+ case E1INP_TS_TYPE_HDLC:
case E1INP_TS_TYPE_TRAU:
addr.channel = ts;
break;