blob: a9a9a784c89f702222d1796d94dbf2eb71a4a936 [file] [log] [blame]
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +02001/* OpenBSC Abis input driver for HSL Femto */
2
3/* (C) 2011 by Harald Welte <laforge@gnumonks.org>
4 * (C) 2011 by On-Waves
5 *
6 * All Rights Reserved
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU Affero General Public License as published by
10 * the Free Software Foundation; either version 3 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU Affero General Public License for more details.
17 *
18 * You should have received a copy of the GNU Affero General Public License
19 * along with this program. If not, see <http://www.gnu.org/licenses/>.
20 *
21 */
22
23/* HSL uses a much more primitive/simplified version of the IPA multiplex.
24 *
25 * They have taken out the nice parts like the ID_GET / ID_RESP for resolving
26 * the UNIT ID, as well as the keepalive ping/pong messages. Furthermore, the
27 * Stream Identifiers are fixed on the BTS side (RSL always 0, OML always 0xff)
28 * and both OML+RSL share a single TCP connection.
29 *
30 * Other oddities include the encapsulation of BSSGP messages in the L3_INFO IE
31 * of RSL
32 */
33
34#include "internal.h"
35
36#include <stdio.h>
37#include <unistd.h>
38#include <stdlib.h>
39#include <errno.h>
40#include <string.h>
41#include <time.h>
42#include <sys/fcntl.h>
43#include <sys/socket.h>
44#include <sys/ioctl.h>
45#include <arpa/inet.h>
46
47#include <osmocom/core/select.h>
48#include <osmocom/gsm/tlv.h>
49#include <osmocom/core/msgb.h>
Pablo Neira Ayuso177094b2011-06-07 12:21:51 +020050#include <osmocom/abis/e1_input.h>
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +020051#include <osmocom/core/logging.h>
Pablo Neira Ayusoe47a9782011-06-07 18:03:48 +020052#include <osmocom/abis/ipaccess.h>
Pablo Neira Ayusof67471f2011-06-07 11:25:49 +020053#include <osmocom/core/socket.h>
Pablo Neira Ayuso0b099b22011-06-09 13:14:11 +020054#include <osmocom/abis/logging.h>
Pablo Neira Ayuso9b3a33c2011-06-21 13:52:41 +020055#include <osmocom/abis/ipa.h>
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +020056#include <talloc.h>
57
58#define HSL_TCP_PORT 2500
59#define HSL_PROTO_DEBUG 0xdd
60
61#define PRIV_OML 1
62#define PRIV_RSL 2
63
Pablo Neira Ayuso54b49792011-06-07 12:15:26 +020064static void *tall_hsl_ctx;
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +020065
66/* data structure for one E1 interface with A-bis */
67struct hsl_e1_handle {
68 struct osmo_fd listen_fd;
69 struct gsm_network *gsmnet;
70};
71
72static struct hsl_e1_handle *e1h;
73
74
75#define TS1_ALLOC_SIZE 900
76
77static int handle_ts1_read(struct osmo_fd *bfd)
78{
79 struct e1inp_line *line = bfd->data;
80 unsigned int ts_nr = bfd->priv_nr;
81 struct e1inp_ts *e1i_ts = &line->ts[ts_nr-1];
Pablo Neira Ayuso5a4b7c52011-06-07 14:07:48 +020082 struct e1inp_sign_link *link;
83 struct ipaccess_head *hh;
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +020084 struct msgb *msg;
85 int ret = 0, error;
86
Pablo Neira Ayuso7a249402011-06-21 14:15:46 +020087 error = ipa_msg_recv(bfd->fd, &msg);
88 if (error <= 0) {
Pablo Neira Ayusof163d232011-06-25 18:42:55 +020089 if (e1i_ts->line->ops->error)
90 e1i_ts->line->ops->error(NULL, line, ts_nr, error);
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +020091 if (error == 0) {
92 osmo_fd_unregister(bfd);
93 close(bfd->fd);
94 bfd->fd = -1;
95 }
96 return error;
97 }
98 DEBUGP(DMI, "RX %u: %s\n", ts_nr, osmo_hexdump(msgb_l2(msg), msgb_l2len(msg)));
99
Pablo Neira Ayuso5a4b7c52011-06-07 14:07:48 +0200100 hh = (struct ipaccess_head *) msg->data;
101 if (hh->proto == HSL_PROTO_DEBUG) {
102 LOGP(DINP, LOGL_NOTICE, "HSL debug: %s\n", msg->data + sizeof(*hh));
103 msgb_free(msg);
104 return ret;
105 }
106
107 /* HSL proprietary RSL extension */
108 if (hh->proto == 0 && (msg->l2h[0] == 0x81 || msg->l2h[0] == 0x80)) {
Pablo Neira Ayusof163d232011-06-25 18:42:55 +0200109 if (!line->ops->sign_link_up) {
Pablo Neira Ayuso5a4b7c52011-06-07 14:07:48 +0200110 LOGP(DINP, LOGL_ERROR, "Fix your application, no "
111 "action set if the signalling link "
112 "becomes ready.\n");
113 return -EINVAL;
114 }
Pablo Neira Ayusof163d232011-06-25 18:42:55 +0200115 ret = line->ops->sign_link_up(msg, line, E1INP_SIGN_RSL);
Pablo Neira Ayuso5a4b7c52011-06-07 14:07:48 +0200116 if (ret < 0) {
117 /* FIXME: close connection */
Pablo Neira Ayusof163d232011-06-25 18:42:55 +0200118 if (line->ops->error)
119 line->ops->error(msg, line,
120 E1INP_SIGN_RSL, -EBADMSG);
Pablo Neira Ayuso5a4b7c52011-06-07 14:07:48 +0200121 return ret;
122 } else if (ret == 1)
123 return 0;
124 /* else: continue... */
125 }
126
127#ifdef HSL_SR_1_0
128 /* HSL for whatever reason chose to use 0x81 instead of 0x80 for FOM */
129 if (hh->proto == 255 && msg->l2h[0] == (ABIS_OM_MDISC_FOM | 0x01))
130 msg->l2h[0] = ABIS_OM_MDISC_FOM;
131#endif
132 link = e1inp_lookup_sign_link(e1i_ts, hh->proto, 0);
133 if (!link) {
134 LOGP(DINP, LOGL_ERROR, "no matching signalling link for "
135 "hh->proto=0x%02x\n", hh->proto);
136 msgb_free(msg);
137 return -EIO;
138 }
139 msg->dst = link;
140
141 /* XXX: better use e1inp_ts_rx? */
Pablo Neira Ayusof163d232011-06-25 18:42:55 +0200142 if (!e1i_ts->line->ops->sign_link) {
Pablo Neira Ayuso5a4b7c52011-06-07 14:07:48 +0200143 LOGP(DINP, LOGL_ERROR, "Fix your application, "
144 "no action set for signalling messages.\n");
145 return -ENOENT;
146 }
Pablo Neira Ayusof163d232011-06-25 18:42:55 +0200147 e1i_ts->line->ops->sign_link(msg, line, link);
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200148
149 return ret;
150}
151
152static int ts_want_write(struct e1inp_ts *e1i_ts)
153{
154 e1i_ts->driver.ipaccess.fd.when |= BSC_FD_WRITE;
155
156 return 0;
157}
158
159static void timeout_ts1_write(void *data)
160{
161 struct e1inp_ts *e1i_ts = (struct e1inp_ts *)data;
162
163 /* trigger write of ts1, due to tx delay timer */
164 ts_want_write(e1i_ts);
165}
166
167static int handle_ts1_write(struct osmo_fd *bfd)
168{
169 struct e1inp_line *line = bfd->data;
170 unsigned int ts_nr = bfd->priv_nr;
171 struct e1inp_ts *e1i_ts = &line->ts[ts_nr-1];
172 struct e1inp_sign_link *sign_link;
173 struct msgb *msg;
174 uint8_t proto;
175 int ret;
176
177 bfd->when &= ~BSC_FD_WRITE;
178
179 /* get the next msg for this timeslot */
180 msg = e1inp_tx_ts(e1i_ts, &sign_link);
181 if (!msg) {
182 /* no message after tx delay timer */
183 return 0;
184 }
185
186 switch (sign_link->type) {
187 case E1INP_SIGN_OML:
188 proto = IPAC_PROTO_OML;
189#ifdef HSL_SR_1_0
190 /* HSL uses 0x81 for FOM for some reason */
191 if (msg->data[0] == ABIS_OM_MDISC_FOM)
192 msg->data[0] = ABIS_OM_MDISC_FOM | 0x01;
193#endif
194 break;
195 case E1INP_SIGN_RSL:
196 proto = IPAC_PROTO_RSL;
197 break;
198 default:
199 msgb_free(msg);
200 bfd->when |= BSC_FD_WRITE; /* come back for more msg */
201 return -EINVAL;
202 }
203
204 msg->l2h = msg->data;
205 ipaccess_prepend_header(msg, sign_link->tei);
206
207 DEBUGP(DMI, "TX %u: %s\n", ts_nr, osmo_hexdump(msg->l2h, msgb_l2len(msg)));
208
209 ret = send(bfd->fd, msg->data, msg->len, 0);
210 msgb_free(msg);
211
212 /* set tx delay timer for next event */
213 e1i_ts->sign.tx_timer.cb = timeout_ts1_write;
214 e1i_ts->sign.tx_timer.data = e1i_ts;
215
216 /* Reducing this might break the nanoBTS 900 init. */
217 osmo_timer_schedule(&e1i_ts->sign.tx_timer, 0, e1i_ts->sign.delay);
218
219 return ret;
220}
221
222/* callback from select.c in case one of the fd's can be read/written */
223static int hsl_fd_cb(struct osmo_fd *bfd, unsigned int what)
224{
225 struct e1inp_line *line = bfd->data;
226 unsigned int ts_nr = bfd->priv_nr;
227 unsigned int idx = ts_nr-1;
228 struct e1inp_ts *e1i_ts;
229 int rc = 0;
230
231 /* In case of early RSL we might not yet have a line */
232
233 if (line)
234 e1i_ts = &line->ts[idx];
235
236 if (!line || e1i_ts->type == E1INP_TS_TYPE_SIGN) {
237 if (what & BSC_FD_READ)
238 rc = handle_ts1_read(bfd);
239 if (what & BSC_FD_WRITE)
240 rc = handle_ts1_write(bfd);
241 } else
242 LOGP(DINP, LOGL_ERROR, "unknown E1 TS type %u\n", e1i_ts->type);
243
244 return rc;
245}
246
Pablo Neira Ayusoc00ee732011-06-21 12:22:49 +0200247static int hsl_line_update(struct e1inp_line *line,
248 enum e1inp_line_role role, const char *addr);
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200249
250struct e1inp_driver hsl_driver = {
251 .name = "hsl",
252 .want_write = ts_want_write,
253 .line_update = hsl_line_update,
254 .default_delay = 0,
255};
256
257/* callback of the OML listening filedescriptor */
258static int listen_fd_cb(struct osmo_fd *listen_bfd, unsigned int what)
259{
260 int ret;
261 int idx = 0;
262 int i;
263 struct e1inp_line *line = listen_bfd->data;
264 struct e1inp_ts *e1i_ts;
265 struct osmo_fd *bfd;
266 struct sockaddr_in sa;
267 socklen_t sa_len = sizeof(sa);
268
269 if (!(what & BSC_FD_READ))
270 return 0;
271
272 ret = accept(listen_bfd->fd, (struct sockaddr *) &sa, &sa_len);
273 if (ret < 0) {
274 perror("accept");
275 return ret;
276 }
277 LOGP(DINP, LOGL_NOTICE, "accept()ed new HSL link from %s\n",
278 inet_ntoa(sa.sin_addr));
279
280 /* create virrtual E1 timeslots for signalling */
281 e1inp_ts_config_sign(&line->ts[1-1], line);
282
283 /* initialize the fds */
284 for (i = 0; i < ARRAY_SIZE(line->ts); ++i)
285 line->ts[i].driver.ipaccess.fd.fd = -1;
286
287 e1i_ts = &line->ts[idx];
288
289 bfd = &e1i_ts->driver.ipaccess.fd;
290 bfd->fd = ret;
291 bfd->data = line;
292 bfd->priv_nr = PRIV_OML;
293 bfd->cb = hsl_fd_cb;
294 bfd->when = BSC_FD_READ;
295 ret = osmo_fd_register(bfd);
296 if (ret < 0) {
297 LOGP(DINP, LOGL_ERROR, "could not register FD\n");
298 close(bfd->fd);
299 talloc_free(line);
300 return ret;
301 }
302
303 return ret;
304}
305
Pablo Neira Ayusoc07a8e72011-06-21 19:50:04 +0200306static int hsl_bts_process(struct ipa_client_link *link, struct msgb *msg)
Pablo Neira Ayuso591ddad2011-06-21 18:16:42 +0200307{
308 /* XXX: not implemented yet. */
309 return 0;
310}
311
Pablo Neira Ayusoc00ee732011-06-21 12:22:49 +0200312static int hsl_line_update(struct e1inp_line *line,
313 enum e1inp_line_role role, const char *addr)
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200314{
315 int ret = -ENOENT;
316
317 switch(role) {
318 case E1INP_LINE_R_BSC:
Pablo Neira Ayuso9b3a33c2011-06-21 13:52:41 +0200319 LOGP(DINP, LOGL_NOTICE, "enabling hsl BSC mode\n");
320
Pablo Neira Ayusof67471f2011-06-07 11:25:49 +0200321 ret = osmo_sock_init(AF_INET, SOCK_STREAM, IPPROTO_TCP,
Pablo Neira Ayuso9b3a33c2011-06-21 13:52:41 +0200322 addr, HSL_TCP_PORT, OSMO_SOCK_F_BIND);
Pablo Neira Ayusof67471f2011-06-07 11:25:49 +0200323 if (ret < 0)
324 return ret;
325
326 e1h->listen_fd.fd = ret;
327 e1h->listen_fd.when |= BSC_FD_READ;
328 e1h->listen_fd.cb = listen_fd_cb;
329 e1h->listen_fd.data = line;
330
331 if (osmo_fd_register(&e1h->listen_fd) < 0) {
332 close(ret);
333 return ret;
334 }
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200335 break;
Pablo Neira Ayuso9b3a33c2011-06-21 13:52:41 +0200336 case E1INP_LINE_R_BTS: {
Pablo Neira Ayusoc07a8e72011-06-21 19:50:04 +0200337 struct ipa_client_link *link;
Pablo Neira Ayuso9b3a33c2011-06-21 13:52:41 +0200338
339 LOGP(DINP, LOGL_NOTICE, "enabling hsl BTS mode\n");
340
Pablo Neira Ayuso591ddad2011-06-21 18:16:42 +0200341 link = ipa_client_link_create(tall_hsl_ctx, line, addr,
Pablo Neira Ayusoe009f4a2011-06-23 13:36:34 +0200342 HSL_TCP_PORT, hsl_bts_process,
343 NULL);
Pablo Neira Ayuso9b3a33c2011-06-21 13:52:41 +0200344 if (link == NULL) {
345 LOGP(DINP, LOGL_ERROR, "cannot create BTS link: %s\n",
346 strerror(errno));
347 return -ENOMEM;
348 }
349 if (ipa_client_link_open(link) < 0) {
350 LOGP(DINP, LOGL_ERROR, "cannot open BTS link: %s\n",
351 strerror(errno));
352 ipa_client_link_close(link);
353 ipa_client_link_destroy(link);
354 return -EIO;
355 }
356 ret = 0;
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200357 break;
Pablo Neira Ayuso9b3a33c2011-06-21 13:52:41 +0200358 }
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200359 default:
360 break;
361 }
362 return ret;
363}
364
365int hsl_setup(struct gsm_network *gsmnet)
366{
367 e1h->gsmnet = gsmnet;
368 return 0;
369}
370
371void e1inp_hsl_init(void)
372{
Pablo Neira Ayuso54b49792011-06-07 12:15:26 +0200373 tall_hsl_ctx = talloc_named_const(libosmo_abis_ctx, 1, "hsl");
374
375 e1h = talloc_zero(tall_hsl_ctx, struct hsl_e1_handle);
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200376 if (!e1h)
377 return;
378
379 e1inp_driver_register(&hsl_driver);
380}