summaryrefslogtreecommitdiffstats
path: root/src/input/hsl.c
diff options
context:
space:
mode:
authorPablo Neira Ayuso2011-06-07 14:07:48 +0200
committerPablo Neira Ayuso2011-06-07 17:28:53 +0200
commit5a4b7c54c699889b3255e578ef75c0989622b541 (patch)
tree17aa3d1999806375e0ce7e627cca406dcaec9940 /src/input/hsl.c
parente1input: log_set_context(...) should be called from the application (diff)
downloadlibosmo-abis-5a4b7c54c699889b3255e578ef75c0989622b541.tar.gz
libosmo-abis-5a4b7c54c699889b3255e578ef75c0989622b541.tar.xz
libosmo-abis-5a4b7c54c699889b3255e578ef75c0989622b541.zip
e1input: rework generic (virtual and real) E1 line operations
struct e1inp_line_ops { int (*sign_link_up)(struct msgb *msg, struct e1inp_line *line); int (*sign_link)(struct msgb *msg, struct e1inp_sign_link *link); int (*error)(struct msgb *msg, int error); }; The description of the operations is the following: * sign_link_up is invoked if the signalling link becomes up. In A-bis over IP, we have to wait until the other peer identifies itself as a BTS/BSC device, then this function is invoked. This function is not used by ISDN drivers, the signalling link can be set up just after the line is created. * sign_link is called if we receive OML/RSL message. This function is used both by ISDN and A-bis over IP drivers. * error is called if we receive a malformed message. It is used both by ISDN and A-bis over IP drivers.
Diffstat (limited to 'src/input/hsl.c')
-rw-r--r--src/input/hsl.c56
1 files changed, 51 insertions, 5 deletions
diff --git a/src/input/hsl.c b/src/input/hsl.c
index b7c7897..97475cf 100644
--- a/src/input/hsl.c
+++ b/src/input/hsl.c
@@ -77,13 +77,15 @@ static int handle_ts1_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 e1inp_sign_link *link;
+ struct ipaccess_head *hh;
struct msgb *msg;
int ret = 0, error;
msg = ipaccess_read_msg(bfd, &error);
if (!msg) {
- if (e1i_ts->line->rx_err)
- e1i_ts->line->rx_err(error);
+ if (e1i_ts->line->ops.error)
+ e1i_ts->line->ops.error(NULL, error);
if (error == 0) {
osmo_fd_unregister(bfd);
close(bfd->fd);
@@ -93,9 +95,53 @@ static int handle_ts1_read(struct osmo_fd *bfd)
}
DEBUGP(DMI, "RX %u: %s\n", ts_nr, osmo_hexdump(msgb_l2(msg), msgb_l2len(msg)));
- /* XXX better use e1inp_rx_ts. */
- if (e1i_ts->line->rx)
- e1i_ts->line->rx(msg, e1i_ts);
+ hh = (struct ipaccess_head *) msg->data;
+ if (hh->proto == HSL_PROTO_DEBUG) {
+ LOGP(DINP, LOGL_NOTICE, "HSL debug: %s\n", msg->data + sizeof(*hh));
+ msgb_free(msg);
+ return ret;
+ }
+
+ /* HSL proprietary RSL extension */
+ if (hh->proto == 0 && (msg->l2h[0] == 0x81 || msg->l2h[0] == 0x80)) {
+ if (!line->ops.sign_link_up) {
+ LOGP(DINP, LOGL_ERROR, "Fix your application, no "
+ "action set if the signalling link "
+ "becomes ready.\n");
+ return -EINVAL;
+ }
+ ret = line->ops.sign_link_up(msg, line);
+ if (ret < 0) {
+ /* FIXME: close connection */
+ if (line->ops.error)
+ line->ops.error(msg, -EBADMSG);
+ return ret;
+ } else if (ret == 1)
+ return 0;
+ /* else: continue... */
+ }
+
+#ifdef HSL_SR_1_0
+ /* HSL for whatever reason chose to use 0x81 instead of 0x80 for FOM */
+ if (hh->proto == 255 && msg->l2h[0] == (ABIS_OM_MDISC_FOM | 0x01))
+ msg->l2h[0] = ABIS_OM_MDISC_FOM;
+#endif
+ link = e1inp_lookup_sign_link(e1i_ts, hh->proto, 0);
+ if (!link) {
+ LOGP(DINP, LOGL_ERROR, "no matching signalling link for "
+ "hh->proto=0x%02x\n", hh->proto);
+ msgb_free(msg);
+ return -EIO;
+ }
+ msg->dst = link;
+
+ /* XXX: better use e1inp_ts_rx? */
+ if (!e1i_ts->line->ops.sign_link) {
+ LOGP(DINP, LOGL_ERROR, "Fix your application, "
+ "no action set for signalling messages.\n");
+ return -ENOENT;
+ }
+ e1i_ts->line->ops.sign_link(msg, link);
return ret;
}