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