blob: aa79cdf3752f608bb8ac1ca6bb19c54b586799e8 [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
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +020077static void hsl_drop(struct e1inp_line *line, struct osmo_fd *bfd)
78{
79 line->ops->sign_link_down(line);
80}
81
Pablo Neira Ayusocd8d2e52011-07-02 17:05:21 +020082static int process_hsl_rsl(struct msgb *msg, struct e1inp_line *line,
83 struct osmo_fd *bfd)
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +020084{
85 char serno_buf[16];
86 uint8_t serno_len;
Pablo Neira Ayusocd8d2e52011-07-02 17:05:21 +020087 struct e1inp_sign_link *sign_link;
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +020088 struct hsl_unit unit_data;
89
90 switch (msg->l2h[1]) {
91 case 0x80:
92 /*, contains Serial Number + SW version */
93 if (msg->l2h[2] != 0xc0)
94 break;
95 serno_len = msg->l2h[3];
96 if (serno_len > sizeof(serno_buf)-1)
97 serno_len = sizeof(serno_buf)-1;
98 memcpy(serno_buf, msg->l2h+4, serno_len);
99 serno_buf[serno_len] = '\0';
100 unit_data.serno = strtoul(serno_buf, NULL, 10);
101
102 if (!line->ops->sign_link_up) {
Pablo Neira Ayusocd8d2e52011-07-02 17:05:21 +0200103 LOGP(DINP, LOGL_ERROR,
104 "Unable to set signal link, closing socket.\n");
105 osmo_fd_unregister(bfd);
106 close(bfd->fd);
107 bfd->fd = -1;
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200108 return -EINVAL;
109 }
Pablo Neira Ayusocd8d2e52011-07-02 17:05:21 +0200110 sign_link = line->ops->sign_link_up(&unit_data,
111 line, E1INP_SIGN_NONE);
112 if (sign_link == NULL) {
113 LOGP(DINP, LOGL_ERROR,
114 "Unable to set signal link, closing socket.\n");
115 osmo_fd_unregister(bfd);
116 close(bfd->fd);
117 bfd->fd = -1;
118 return -EINVAL;
119 }
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200120 msgb_free(msg);
121 return 1; /* == we have taken over the msg */
122 case 0x82:
123 /* FIXME: do something with BSSGP, i.e. forward it over
124 * NSIP to OsmoSGSN */
125 msgb_free(msg);
126 return 1;
127 }
128 return 0;
129}
130
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200131static int handle_ts1_read(struct osmo_fd *bfd)
132{
133 struct e1inp_line *line = bfd->data;
134 unsigned int ts_nr = bfd->priv_nr;
135 struct e1inp_ts *e1i_ts = &line->ts[ts_nr-1];
Pablo Neira Ayuso5a4b7c52011-06-07 14:07:48 +0200136 struct e1inp_sign_link *link;
137 struct ipaccess_head *hh;
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200138 struct msgb *msg;
139 int ret = 0, error;
140
Pablo Neira Ayuso7a249402011-06-21 14:15:46 +0200141 error = ipa_msg_recv(bfd->fd, &msg);
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200142 if (error < 0)
143 return error;
144 else if (error == 0) {
145 hsl_drop(e1i_ts->line, bfd);
146 LOGP(DINP, LOGL_NOTICE, "Sign link vanished, dead socket\n");
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200147 return error;
148 }
149 DEBUGP(DMI, "RX %u: %s\n", ts_nr, osmo_hexdump(msgb_l2(msg), msgb_l2len(msg)));
150
Pablo Neira Ayuso5a4b7c52011-06-07 14:07:48 +0200151 hh = (struct ipaccess_head *) msg->data;
152 if (hh->proto == HSL_PROTO_DEBUG) {
153 LOGP(DINP, LOGL_NOTICE, "HSL debug: %s\n", msg->data + sizeof(*hh));
154 msgb_free(msg);
155 return ret;
156 }
157
158 /* HSL proprietary RSL extension */
159 if (hh->proto == 0 && (msg->l2h[0] == 0x81 || msg->l2h[0] == 0x80)) {
Pablo Neira Ayusocd8d2e52011-07-02 17:05:21 +0200160 ret = process_hsl_rsl(msg, line, bfd);
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200161 if (ret < 0) {
162 hsl_drop(e1i_ts->line, bfd);
163 return ret;
Pablo Neira Ayuso5a4b7c52011-06-07 14:07:48 +0200164 } else if (ret == 1)
165 return 0;
166 /* else: continue... */
167 }
168
169#ifdef HSL_SR_1_0
170 /* HSL for whatever reason chose to use 0x81 instead of 0x80 for FOM */
171 if (hh->proto == 255 && msg->l2h[0] == (ABIS_OM_MDISC_FOM | 0x01))
172 msg->l2h[0] = ABIS_OM_MDISC_FOM;
173#endif
174 link = e1inp_lookup_sign_link(e1i_ts, hh->proto, 0);
175 if (!link) {
176 LOGP(DINP, LOGL_ERROR, "no matching signalling link for "
177 "hh->proto=0x%02x\n", hh->proto);
178 msgb_free(msg);
179 return -EIO;
180 }
181 msg->dst = link;
182
183 /* XXX: better use e1inp_ts_rx? */
Pablo Neira Ayusof163d232011-06-25 18:42:55 +0200184 if (!e1i_ts->line->ops->sign_link) {
Pablo Neira Ayuso5a4b7c52011-06-07 14:07:48 +0200185 LOGP(DINP, LOGL_ERROR, "Fix your application, "
186 "no action set for signalling messages.\n");
187 return -ENOENT;
188 }
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200189 e1i_ts->line->ops->sign_link(msg, link);
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200190
191 return ret;
192}
193
194static int ts_want_write(struct e1inp_ts *e1i_ts)
195{
196 e1i_ts->driver.ipaccess.fd.when |= BSC_FD_WRITE;
197
198 return 0;
199}
200
201static void timeout_ts1_write(void *data)
202{
203 struct e1inp_ts *e1i_ts = (struct e1inp_ts *)data;
204
205 /* trigger write of ts1, due to tx delay timer */
206 ts_want_write(e1i_ts);
207}
208
209static int handle_ts1_write(struct osmo_fd *bfd)
210{
211 struct e1inp_line *line = bfd->data;
212 unsigned int ts_nr = bfd->priv_nr;
213 struct e1inp_ts *e1i_ts = &line->ts[ts_nr-1];
214 struct e1inp_sign_link *sign_link;
215 struct msgb *msg;
216 uint8_t proto;
217 int ret;
218
219 bfd->when &= ~BSC_FD_WRITE;
220
221 /* get the next msg for this timeslot */
222 msg = e1inp_tx_ts(e1i_ts, &sign_link);
223 if (!msg) {
224 /* no message after tx delay timer */
225 return 0;
226 }
227
228 switch (sign_link->type) {
229 case E1INP_SIGN_OML:
230 proto = IPAC_PROTO_OML;
231#ifdef HSL_SR_1_0
232 /* HSL uses 0x81 for FOM for some reason */
233 if (msg->data[0] == ABIS_OM_MDISC_FOM)
234 msg->data[0] = ABIS_OM_MDISC_FOM | 0x01;
235#endif
236 break;
237 case E1INP_SIGN_RSL:
238 proto = IPAC_PROTO_RSL;
239 break;
240 default:
241 msgb_free(msg);
242 bfd->when |= BSC_FD_WRITE; /* come back for more msg */
243 return -EINVAL;
244 }
245
246 msg->l2h = msg->data;
247 ipaccess_prepend_header(msg, sign_link->tei);
248
249 DEBUGP(DMI, "TX %u: %s\n", ts_nr, osmo_hexdump(msg->l2h, msgb_l2len(msg)));
250
251 ret = send(bfd->fd, msg->data, msg->len, 0);
252 msgb_free(msg);
253
254 /* set tx delay timer for next event */
255 e1i_ts->sign.tx_timer.cb = timeout_ts1_write;
256 e1i_ts->sign.tx_timer.data = e1i_ts;
257
258 /* Reducing this might break the nanoBTS 900 init. */
259 osmo_timer_schedule(&e1i_ts->sign.tx_timer, 0, e1i_ts->sign.delay);
260
261 return ret;
262}
263
264/* callback from select.c in case one of the fd's can be read/written */
265static int hsl_fd_cb(struct osmo_fd *bfd, unsigned int what)
266{
267 struct e1inp_line *line = bfd->data;
268 unsigned int ts_nr = bfd->priv_nr;
269 unsigned int idx = ts_nr-1;
270 struct e1inp_ts *e1i_ts;
271 int rc = 0;
272
273 /* In case of early RSL we might not yet have a line */
274
275 if (line)
276 e1i_ts = &line->ts[idx];
277
278 if (!line || e1i_ts->type == E1INP_TS_TYPE_SIGN) {
279 if (what & BSC_FD_READ)
280 rc = handle_ts1_read(bfd);
281 if (what & BSC_FD_WRITE)
282 rc = handle_ts1_write(bfd);
283 } else
284 LOGP(DINP, LOGL_ERROR, "unknown E1 TS type %u\n", e1i_ts->type);
285
286 return rc;
287}
288
Pablo Neira Ayusoc00ee732011-06-21 12:22:49 +0200289static int hsl_line_update(struct e1inp_line *line,
290 enum e1inp_line_role role, const char *addr);
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200291
292struct e1inp_driver hsl_driver = {
293 .name = "hsl",
294 .want_write = ts_want_write,
295 .line_update = hsl_line_update,
296 .default_delay = 0,
297};
298
299/* callback of the OML listening filedescriptor */
300static int listen_fd_cb(struct osmo_fd *listen_bfd, unsigned int what)
301{
302 int ret;
303 int idx = 0;
304 int i;
305 struct e1inp_line *line = listen_bfd->data;
306 struct e1inp_ts *e1i_ts;
307 struct osmo_fd *bfd;
308 struct sockaddr_in sa;
309 socklen_t sa_len = sizeof(sa);
310
311 if (!(what & BSC_FD_READ))
312 return 0;
313
314 ret = accept(listen_bfd->fd, (struct sockaddr *) &sa, &sa_len);
315 if (ret < 0) {
316 perror("accept");
317 return ret;
318 }
319 LOGP(DINP, LOGL_NOTICE, "accept()ed new HSL link from %s\n",
320 inet_ntoa(sa.sin_addr));
321
322 /* create virrtual E1 timeslots for signalling */
323 e1inp_ts_config_sign(&line->ts[1-1], line);
324
325 /* initialize the fds */
326 for (i = 0; i < ARRAY_SIZE(line->ts); ++i)
327 line->ts[i].driver.ipaccess.fd.fd = -1;
328
329 e1i_ts = &line->ts[idx];
330
331 bfd = &e1i_ts->driver.ipaccess.fd;
332 bfd->fd = ret;
333 bfd->data = line;
334 bfd->priv_nr = PRIV_OML;
335 bfd->cb = hsl_fd_cb;
336 bfd->when = BSC_FD_READ;
337 ret = osmo_fd_register(bfd);
338 if (ret < 0) {
339 LOGP(DINP, LOGL_ERROR, "could not register FD\n");
340 close(bfd->fd);
341 talloc_free(line);
342 return ret;
343 }
344
345 return ret;
346}
347
Pablo Neira Ayusoc07a8e72011-06-21 19:50:04 +0200348static int hsl_bts_process(struct ipa_client_link *link, struct msgb *msg)
Pablo Neira Ayuso591ddad2011-06-21 18:16:42 +0200349{
350 /* XXX: not implemented yet. */
351 return 0;
352}
353
Pablo Neira Ayusoc00ee732011-06-21 12:22:49 +0200354static int hsl_line_update(struct e1inp_line *line,
355 enum e1inp_line_role role, const char *addr)
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200356{
357 int ret = -ENOENT;
358
359 switch(role) {
360 case E1INP_LINE_R_BSC:
Pablo Neira Ayuso9b3a33c2011-06-21 13:52:41 +0200361 LOGP(DINP, LOGL_NOTICE, "enabling hsl BSC mode\n");
362
Pablo Neira Ayusof67471f2011-06-07 11:25:49 +0200363 ret = osmo_sock_init(AF_INET, SOCK_STREAM, IPPROTO_TCP,
Pablo Neira Ayuso9b3a33c2011-06-21 13:52:41 +0200364 addr, HSL_TCP_PORT, OSMO_SOCK_F_BIND);
Pablo Neira Ayusof67471f2011-06-07 11:25:49 +0200365 if (ret < 0)
366 return ret;
367
368 e1h->listen_fd.fd = ret;
369 e1h->listen_fd.when |= BSC_FD_READ;
370 e1h->listen_fd.cb = listen_fd_cb;
371 e1h->listen_fd.data = line;
372
373 if (osmo_fd_register(&e1h->listen_fd) < 0) {
374 close(ret);
375 return ret;
376 }
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200377 break;
Pablo Neira Ayuso9b3a33c2011-06-21 13:52:41 +0200378 case E1INP_LINE_R_BTS: {
Pablo Neira Ayusoc07a8e72011-06-21 19:50:04 +0200379 struct ipa_client_link *link;
Pablo Neira Ayuso9b3a33c2011-06-21 13:52:41 +0200380
381 LOGP(DINP, LOGL_NOTICE, "enabling hsl BTS mode\n");
382
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200383 link = ipa_client_link_create(tall_hsl_ctx,
384 &line->ts[0], "hsl", 0,
385 addr, HSL_TCP_PORT,
386 hsl_bts_process, NULL,
Pablo Neira Ayusoe009f4a2011-06-23 13:36:34 +0200387 NULL);
Pablo Neira Ayuso9b3a33c2011-06-21 13:52:41 +0200388 if (link == NULL) {
389 LOGP(DINP, LOGL_ERROR, "cannot create BTS link: %s\n",
390 strerror(errno));
391 return -ENOMEM;
392 }
393 if (ipa_client_link_open(link) < 0) {
394 LOGP(DINP, LOGL_ERROR, "cannot open BTS link: %s\n",
395 strerror(errno));
396 ipa_client_link_close(link);
397 ipa_client_link_destroy(link);
398 return -EIO;
399 }
400 ret = 0;
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200401 break;
Pablo Neira Ayuso9b3a33c2011-06-21 13:52:41 +0200402 }
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200403 default:
404 break;
405 }
406 return ret;
407}
408
409int hsl_setup(struct gsm_network *gsmnet)
410{
411 e1h->gsmnet = gsmnet;
412 return 0;
413}
414
415void e1inp_hsl_init(void)
416{
Pablo Neira Ayuso54b49792011-06-07 12:15:26 +0200417 tall_hsl_ctx = talloc_named_const(libosmo_abis_ctx, 1, "hsl");
418
419 e1h = talloc_zero(tall_hsl_ctx, struct hsl_e1_handle);
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200420 if (!e1h)
421 return;
422
423 e1inp_driver_register(&hsl_driver);
424}