blob: 85018648a7a3171024b931c518eded705a0cfb23 [file] [log] [blame]
Harald Welte5fd8a542009-02-13 02:43:36 +00001/* OpenBSC Abis input driver for ip.access */
2
3/* (C) 2009 by Harald Welte <laforge@gnumonks.org>
4 *
5 * All Rights Reserved
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License along
18 * with this program; if not, write to the Free Software Foundation, Inc.,
19 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
20 *
21 */
22
23#include <stdio.h>
24#include <unistd.h>
25#include <stdlib.h>
26#include <errno.h>
27#include <string.h>
28#include <time.h>
29#include <sys/fcntl.h>
30#include <sys/types.h>
31#include <sys/socket.h>
32#include <sys/ioctl.h>
33#include <arpa/inet.h>
34
35#include <openbsc/select.h>
Harald Welteedb37782009-05-01 14:59:07 +000036#include <openbsc/tlv.h>
Harald Welte5fd8a542009-02-13 02:43:36 +000037#include <openbsc/msgb.h>
38#include <openbsc/debug.h>
39#include <openbsc/gsm_data.h>
40#include <openbsc/abis_nm.h>
41#include <openbsc/abis_rsl.h>
42#include <openbsc/subchan_demux.h>
43#include <openbsc/e1_input.h>
Harald Welte4f361fc2009-02-15 15:32:53 +000044#include <openbsc/ipaccess.h>
Harald Welte2cf161b2009-06-20 22:36:41 +020045#include <openbsc/talloc.h>
Harald Welte5fd8a542009-02-13 02:43:36 +000046
47/* data structure for one E1 interface with A-bis */
48struct ia_e1_handle {
49 struct bsc_fd listen_fd;
Harald Welte5c1e4582009-02-15 11:57:29 +000050 struct bsc_fd rsl_listen_fd;
Harald Welteedb37782009-05-01 14:59:07 +000051 struct gsm_network *gsmnet;
Harald Welte5fd8a542009-02-13 02:43:36 +000052};
53
Harald Welteedb37782009-05-01 14:59:07 +000054static struct ia_e1_handle *e1h;
55
56
Harald Welte5fd8a542009-02-13 02:43:36 +000057#define TS1_ALLOC_SIZE 300
58
Harald Welte4f361fc2009-02-15 15:32:53 +000059static const u_int8_t pong[] = { 0, 1, IPAC_PROTO_IPACCESS, IPAC_MSGT_PONG };
60static const u_int8_t id_ack[] = { 0, 1, IPAC_PROTO_IPACCESS, IPAC_MSGT_ID_ACK };
Harald Welteedb37782009-05-01 14:59:07 +000061static const u_int8_t id_req[] = { 0, 17, IPAC_PROTO_IPACCESS, IPAC_MSGT_ID_GET,
62 0x01, IPAC_IDTAG_UNIT,
63 0x01, IPAC_IDTAG_MACADDR,
64 0x01, IPAC_IDTAG_LOCATION1,
65 0x01, IPAC_IDTAG_LOCATION2,
66 0x01, IPAC_IDTAG_EQUIPVERS,
67 0x01, IPAC_IDTAG_SWVERSION,
68 0x01, IPAC_IDTAG_UNITNAME,
69 0x01, IPAC_IDTAG_SERNR,
70 };
Harald Welte5fd8a542009-02-13 02:43:36 +000071
Harald Welteedb37782009-05-01 14:59:07 +000072static const char *idtag_names[] = {
73 [IPAC_IDTAG_SERNR] = "Serial_Number",
74 [IPAC_IDTAG_UNITNAME] = "Unit_Name",
75 [IPAC_IDTAG_LOCATION1] = "Location_1",
76 [IPAC_IDTAG_LOCATION2] = "Location_2",
77 [IPAC_IDTAG_EQUIPVERS] = "Equipment_Version",
78 [IPAC_IDTAG_SWVERSION] = "Software_Version",
79 [IPAC_IDTAG_IPADDR] = "IP_Address",
80 [IPAC_IDTAG_MACADDR] = "MAC_Address",
81 [IPAC_IDTAG_UNIT] = "Unit_ID",
82};
83
84static const char *ipac_idtag_name(int tag)
Harald Welte5fd8a542009-02-13 02:43:36 +000085{
Harald Welteedb37782009-05-01 14:59:07 +000086 if (tag >= ARRAY_SIZE(idtag_names))
87 return "unknown";
88
89 return idtag_names[tag];
90}
91
92static int ipac_idtag_parse(struct tlv_parsed *dec, unsigned char *buf, int len)
93{
94 u_int8_t t_len;
95 u_int8_t t_tag;
96 u_int8_t *cur = buf;
97
98 while (cur < buf + len) {
99 t_len = *cur++;
100 t_tag = *cur++;
101
102 DEBUGPC(DMI, "%s='%s' ", ipac_idtag_name(t_tag), cur);
103
104 dec->lv[t_tag].len = t_len;
105 dec->lv[t_tag].val = cur;
106
107 cur += t_len;
108 }
109 return 0;
110}
111
112struct gsm_bts *find_bts_by_unitid(struct gsm_network *net,
113 u_int16_t site_id, u_int16_t bts_id)
114{
Harald Weltee441d9c2009-06-21 16:17:15 +0200115 struct gsm_bts *bts;
Harald Welteedb37782009-05-01 14:59:07 +0000116
Harald Weltee441d9c2009-06-21 16:17:15 +0200117 llist_for_each_entry(bts, &net->bts_list, list) {
Harald Welteedb37782009-05-01 14:59:07 +0000118
119 if (!is_ipaccess_bts(bts))
120 continue;
121
122 if (bts->ip_access.site_id == site_id &&
123 bts->ip_access.bts_id == bts_id)
124 return bts;
125 }
126
127 return NULL;
128}
129
130static int parse_unitid(const char *str, u_int16_t *site_id, u_int16_t *bts_id,
131 u_int16_t *trx_id)
132{
133 unsigned long ul;
134 char *endptr;
135 const char *nptr;
136
137 nptr = str;
138 ul = strtoul(nptr, &endptr, 10);
139 if (endptr <= nptr)
140 return -EINVAL;
141 if (site_id)
142 *site_id = ul & 0xffff;
143
144 if (*endptr++ != '/')
145 return -EINVAL;
146
147 nptr = endptr;
148 ul = strtoul(nptr, &endptr, 10);
149 if (endptr <= nptr)
150 return -EINVAL;
151 if (bts_id)
152 *bts_id = ul & 0xffff;
153
154 if (*endptr++ != '/')
155 return -EINVAL;
156
157 nptr = endptr;
158 ul = strtoul(nptr, &endptr, 10);
159 if (endptr <= nptr)
160 return -EINVAL;
161 if (trx_id)
162 *trx_id = ul & 0xffff;
163
164 return 0;
165}
166
Holger Hans Peter Freytherd5f05222009-08-18 10:05:45 +0200167/* base handling of the ip.access protocol */
168int ipaccess_rcvmsg_base(struct msgb *msg,
169 struct bsc_fd *bfd)
Harald Welteedb37782009-05-01 14:59:07 +0000170{
Harald Welte5fd8a542009-02-13 02:43:36 +0000171 u_int8_t msg_type = *(msg->l2h);
Holger Freytherff9592f2009-03-09 16:17:14 +0000172 int ret = 0;
Harald Welte5fd8a542009-02-13 02:43:36 +0000173
Harald Welte5fd8a542009-02-13 02:43:36 +0000174 switch (msg_type) {
Harald Welte4f361fc2009-02-15 15:32:53 +0000175 case IPAC_MSGT_PING:
Harald Welteedb37782009-05-01 14:59:07 +0000176 ret = write(bfd->fd, pong, sizeof(pong));
Harald Welte5fd8a542009-02-13 02:43:36 +0000177 break;
Harald Welte4f361fc2009-02-15 15:32:53 +0000178 case IPAC_MSGT_PONG:
Harald Welte5fd8a542009-02-13 02:43:36 +0000179 DEBUGP(DMI, "PONG!\n");
180 break;
Holger Hans Peter Freytherd5f05222009-08-18 10:05:45 +0200181 case IPAC_MSGT_ID_ACK:
182 DEBUGP(DMI, "ID_ACK? -> ACK!\n");
183 ret = write(bfd->fd, id_ack, sizeof(id_ack));
184 break;
185 }
186 return 0;
187}
188
189static int ipaccess_rcvmsg(struct e1inp_line *line, struct msgb *msg,
190 struct bsc_fd *bfd)
191{
192 struct tlv_parsed tlvp;
193 u_int8_t msg_type = *(msg->l2h);
194 u_int16_t site_id = 0, bts_id = 0, trx_id = 0;
195 struct gsm_bts *bts;
196
197 /* handle base messages */
198 ipaccess_rcvmsg_base(msg, bfd);
199
200 switch (msg_type) {
Harald Welte4f361fc2009-02-15 15:32:53 +0000201 case IPAC_MSGT_ID_RESP:
Harald Welteedb37782009-05-01 14:59:07 +0000202 DEBUGP(DMI, "ID_RESP ");
203 /* parse tags, search for Unit ID */
204 ipac_idtag_parse(&tlvp, (u_int8_t *)msg->l2h + 2,
205 msgb_l2len(msg)-2);
206 DEBUGP(DMI, "\n");
207
208 if (!TLVP_PRESENT(&tlvp, IPAC_IDTAG_UNIT))
209 break;
210
211 /* lookup BTS, create sign_link, ... */
212 parse_unitid((char *)TLVP_VAL(&tlvp, IPAC_IDTAG_UNIT),
213 &site_id, &bts_id, &trx_id);
214 bts = find_bts_by_unitid(e1h->gsmnet, site_id, bts_id);
215 if (!bts) {
216 DEBUGP(DINP, "Unable to find BTS configuration for "
217 " %u/%u/%u, disconnecting\n", site_id, bts_id,
218 trx_id);
219 return -EIO;
220 }
221 DEBUGP(DINP, "Identified BTS %u/%u/%u\n", site_id, bts_id, trx_id);
222 if (bfd->priv_nr == 1) {
223 bts->oml_link = e1inp_sign_link_create(&line->ts[1-1],
224 E1INP_SIGN_OML, bts->c0,
Harald Welte8175e952009-10-20 00:22:00 +0200225 bts->oml_tei, 0);
Harald Welteedb37782009-05-01 14:59:07 +0000226 } else if (bfd->priv_nr == 2) {
227 struct e1inp_ts *e1i_ts;
228 struct bsc_fd *newbfd;
Harald Welte8175e952009-10-20 00:22:00 +0200229 struct gsm_bts_trx *trx = gsm_bts_trx_num(bts, trx_id);
Harald Welteedb37782009-05-01 14:59:07 +0000230
Harald Welteedb37782009-05-01 14:59:07 +0000231 bfd->data = line = bts->oml_link->ts->line;
Harald Welte8175e952009-10-20 00:22:00 +0200232 e1i_ts = &line->ts[2+trx_id - 1];
Harald Welteedb37782009-05-01 14:59:07 +0000233 newbfd = &e1i_ts->driver.ipaccess.fd;
Harald Welte8175e952009-10-20 00:22:00 +0200234 e1inp_ts_config(e1i_ts, line, E1INP_TS_TYPE_SIGN);
Harald Welteedb37782009-05-01 14:59:07 +0000235
Harald Welte8175e952009-10-20 00:22:00 +0200236 trx->rsl_link = e1inp_sign_link_create(e1i_ts,
237 E1INP_SIGN_RSL, trx,
238 trx->rsl_tei, 0);
Harald Welteedb37782009-05-01 14:59:07 +0000239 /* get rid of our old temporary bfd */
240 memcpy(newbfd, bfd, sizeof(*newbfd));
241 bsc_unregister_fd(bfd);
242 bsc_register_fd(newbfd);
Harald Weltea4ffea92009-06-22 01:36:25 +0200243 talloc_free(bfd);
Harald Welteedb37782009-05-01 14:59:07 +0000244 }
Harald Welte5fd8a542009-02-13 02:43:36 +0000245 break;
Harald Welte5fd8a542009-02-13 02:43:36 +0000246 }
Harald Welte5fd8a542009-02-13 02:43:36 +0000247 return 0;
248}
249
Harald Welte7782c142009-02-15 03:39:51 +0000250/* FIXME: this is per BTS */
251static int oml_up = 0;
Harald Weltee73501a2009-10-21 21:16:00 +0200252static int rsl_up = 0;
Harald Welte7782c142009-02-15 03:39:51 +0000253
Holger Hans Peter Freytherd5f05222009-08-18 10:05:45 +0200254/*
255 * read one ipa message from the socket
256 * return NULL in case of error
257 */
258struct msgb *ipaccess_read_msg(struct bsc_fd *bfd, int *error)
Harald Welte5fd8a542009-02-13 02:43:36 +0000259{
Harald Welte966636f2009-06-26 19:39:35 +0200260 struct msgb *msg = msgb_alloc(TS1_ALLOC_SIZE, "Abis/IP");
Harald Welte5fd8a542009-02-13 02:43:36 +0000261 struct ipaccess_head *hh;
Holger Hans Peter Freytherd5f05222009-08-18 10:05:45 +0200262 int ret = 0;
Harald Welte5fd8a542009-02-13 02:43:36 +0000263
Holger Hans Peter Freytherd5f05222009-08-18 10:05:45 +0200264 if (!msg) {
265 *error = -ENOMEM;
266 return NULL;
267 }
Harald Welte5fd8a542009-02-13 02:43:36 +0000268
269 /* first read our 3-byte header */
270 hh = (struct ipaccess_head *) msg->data;
271 ret = recv(bfd->fd, msg->data, 3, 0);
272 if (ret < 0) {
273 fprintf(stderr, "recv error %s\n", strerror(errno));
Holger Hans Peter Freytherd5f05222009-08-18 10:05:45 +0200274 msgb_free(msg);
275 *error = ret;
276 return NULL;
277 } else if (ret == 0) {
278 msgb_free(msg);
279 *error = ret;
280 return NULL;
Harald Welte5fd8a542009-02-13 02:43:36 +0000281 }
Holger Hans Peter Freytherd5f05222009-08-18 10:05:45 +0200282
Harald Welte5fd8a542009-02-13 02:43:36 +0000283 msgb_put(msg, ret);
284
285 /* then read te length as specified in header */
286 msg->l2h = msg->data + sizeof(*hh);
287 ret = recv(bfd->fd, msg->l2h, hh->len, 0);
288 if (ret < hh->len) {
289 fprintf(stderr, "short read!\n");
Harald Welte5c1e4582009-02-15 11:57:29 +0000290 msgb_free(msg);
Holger Hans Peter Freytherd5f05222009-08-18 10:05:45 +0200291 *error = -EIO;
292 return NULL;
Harald Welte5fd8a542009-02-13 02:43:36 +0000293 }
294 msgb_put(msg, ret);
Holger Hans Peter Freytherd5f05222009-08-18 10:05:45 +0200295
296 return msg;
297}
298
299static int handle_ts1_read(struct bsc_fd *bfd)
300{
301 struct e1inp_line *line = bfd->data;
302 unsigned int ts_nr = bfd->priv_nr;
303 struct e1inp_ts *e1i_ts = &line->ts[ts_nr-1];
304 struct e1inp_sign_link *link;
305 struct msgb *msg;
306 struct ipaccess_head *hh;
Holger Hans Peter Freyther67b59612009-10-27 10:08:38 +0100307 int ret = 0, error;
Holger Hans Peter Freytherd5f05222009-08-18 10:05:45 +0200308
309 msg = ipaccess_read_msg(bfd, &error);
310 if (!msg) {
311 if (error == 0) {
312 fprintf(stderr, "BTS disappeared, dead socket\n");
313 e1inp_event(e1i_ts, EVT_E1_TEI_DN, 0, IPAC_PROTO_RSL);
314 e1inp_event(e1i_ts, EVT_E1_TEI_DN, 0, IPAC_PROTO_OML);
315 bsc_unregister_fd(bfd);
316 close(bfd->fd);
317 bfd->fd = -1;
318 }
319 return error;
320 }
321
Sylvain Munaut86538c72009-09-30 22:35:04 +0200322 DEBUGP(DMI, "RX %u: %s\n", ts_nr, hexdump(msgb_l2(msg), msgb_l2len(msg)));
Harald Welte5fd8a542009-02-13 02:43:36 +0000323
Holger Hans Peter Freytherd5f05222009-08-18 10:05:45 +0200324 hh = (struct ipaccess_head *) msg->data;
Harald Welteedb37782009-05-01 14:59:07 +0000325 if (hh->proto == IPAC_PROTO_IPACCESS) {
326 ret = ipaccess_rcvmsg(line, msg, bfd);
327 if (ret < 0) {
328 e1inp_event(e1i_ts, EVT_E1_TEI_DN, 0, IPAC_PROTO_RSL);
329 e1inp_event(e1i_ts, EVT_E1_TEI_DN, 0, IPAC_PROTO_OML);
330 bsc_unregister_fd(bfd);
331 close(bfd->fd);
332 bfd->fd = -1;
333 }
334 msgb_free(msg);
335 return ret;
336 }
337 /* BIG FAT WARNING: bfd might no longer exist here, since ipaccess_rcvmsg()
338 * might have free'd it !!! */
339
Harald Welte8175e952009-10-20 00:22:00 +0200340 link = e1inp_lookup_sign_link(e1i_ts, hh->proto, 0);
Harald Welte5fd8a542009-02-13 02:43:36 +0000341 if (!link) {
342 printf("no matching signalling link for hh->proto=0x%02x\n", hh->proto);
343 msgb_free(msg);
344 return -EIO;
345 }
346 msg->trx = link->trx;
347
Harald Welte8175e952009-10-20 00:22:00 +0200348 switch (link->type) {
349 case E1INP_SIGN_RSL:
Harald Weltee73501a2009-10-21 21:16:00 +0200350 if (!rsl_up) {
351 e1inp_event(e1i_ts, EVT_E1_TEI_UP, link->tei, link->sapi);
352 rsl_up = 1;
353 }
Harald Welte5fd8a542009-02-13 02:43:36 +0000354 ret = abis_rsl_rcvmsg(msg);
355 break;
Harald Welte8175e952009-10-20 00:22:00 +0200356 case E1INP_SIGN_OML:
Harald Welte7782c142009-02-15 03:39:51 +0000357 if (!oml_up) {
Harald Welte8175e952009-10-20 00:22:00 +0200358 e1inp_event(e1i_ts, EVT_E1_TEI_UP, link->tei, link->sapi);
Harald Welte7782c142009-02-15 03:39:51 +0000359 oml_up = 1;
360 }
Harald Welte5fd8a542009-02-13 02:43:36 +0000361 ret = abis_nm_rcvmsg(msg);
362 break;
363 default:
Harald Welte7782c142009-02-15 03:39:51 +0000364 DEBUGP(DMI, "Unknown IP.access protocol proto=0x%02x\n", hh->proto);
Harald Welte5fd8a542009-02-13 02:43:36 +0000365 msgb_free(msg);
366 break;
367 }
368 return ret;
369}
370
Holger Hans Peter Freytherd5f05222009-08-18 10:05:45 +0200371void ipaccess_prepend_header(struct msgb *msg, int proto)
372{
373 struct ipaccess_head *hh;
374
375 /* prepend the ip.access header */
376 hh = (struct ipaccess_head *) msgb_push(msg, sizeof(*hh));
377 hh->zero = 0;
378 hh->len = msg->len - sizeof(*hh);
379 hh->proto = proto;
380}
381
Andreas Eversberg38ae5cb2009-10-08 12:53:16 +0200382static int ts_want_write(struct e1inp_ts *e1i_ts)
383{
384 e1i_ts->driver.ipaccess.fd.when |= BSC_FD_WRITE;
385
386 return 0;
387}
388
389static void timeout_ts1_write(void *data)
390{
391 struct e1inp_ts *e1i_ts = (struct e1inp_ts *)data;
392
393 /* trigger write of ts1, due to tx delay timer */
394 ts_want_write(e1i_ts);
395}
396
Harald Welte5fd8a542009-02-13 02:43:36 +0000397static int handle_ts1_write(struct bsc_fd *bfd)
398{
399 struct e1inp_line *line = bfd->data;
400 unsigned int ts_nr = bfd->priv_nr;
401 struct e1inp_ts *e1i_ts = &line->ts[ts_nr-1];
402 struct e1inp_sign_link *sign_link;
403 struct msgb *msg;
Holger Hans Peter Freytherd5f05222009-08-18 10:05:45 +0200404 u_int8_t proto;
Harald Welte5fd8a542009-02-13 02:43:36 +0000405 int ret;
406
Andreas Eversberg38ae5cb2009-10-08 12:53:16 +0200407 bfd->when &= ~BSC_FD_WRITE;
408
Harald Welte5fd8a542009-02-13 02:43:36 +0000409 /* get the next msg for this timeslot */
410 msg = e1inp_tx_ts(e1i_ts, &sign_link);
411 if (!msg) {
Andreas Eversberg38ae5cb2009-10-08 12:53:16 +0200412 /* no message after tx delay timer */
Harald Welte5fd8a542009-02-13 02:43:36 +0000413 return 0;
414 }
415
Harald Welte5fd8a542009-02-13 02:43:36 +0000416 switch (sign_link->type) {
417 case E1INP_SIGN_OML:
Holger Hans Peter Freytherd5f05222009-08-18 10:05:45 +0200418 proto = IPAC_PROTO_OML;
Harald Welte5fd8a542009-02-13 02:43:36 +0000419 break;
420 case E1INP_SIGN_RSL:
Holger Hans Peter Freytherd5f05222009-08-18 10:05:45 +0200421 proto = IPAC_PROTO_RSL;
Harald Welte5fd8a542009-02-13 02:43:36 +0000422 break;
423 default:
424 msgb_free(msg);
Andreas Eversberg38ae5cb2009-10-08 12:53:16 +0200425 bfd->when |= BSC_FD_WRITE; /* come back for more msg */
Harald Welte5fd8a542009-02-13 02:43:36 +0000426 return -EINVAL;
427 }
428
Holger Hans Peter Freytherd5f05222009-08-18 10:05:45 +0200429 msg->l2h = msg->data;
Harald Welte8175e952009-10-20 00:22:00 +0200430 ipaccess_prepend_header(msg, sign_link->tei);
Holger Hans Peter Freytherd5f05222009-08-18 10:05:45 +0200431
432 DEBUGP(DMI, "TX %u: %s\n", ts_nr, hexdump(msg->l2h, msgb_l2len(msg)));
Harald Welte5fd8a542009-02-13 02:43:36 +0000433
434 ret = send(bfd->fd, msg->data, msg->len, 0);
435 msgb_free(msg);
Andreas Eversberg38ae5cb2009-10-08 12:53:16 +0200436
437 /* set tx delay timer for next event */
438 e1i_ts->sign.tx_timer.cb = timeout_ts1_write;
439 e1i_ts->sign.tx_timer.data = e1i_ts;
440 bsc_schedule_timer(&e1i_ts->sign.tx_timer, 0, 100000);
Harald Welte5fd8a542009-02-13 02:43:36 +0000441
442 return ret;
443}
444
Harald Welte5fd8a542009-02-13 02:43:36 +0000445/* callback from select.c in case one of the fd's can be read/written */
446static int ipaccess_fd_cb(struct bsc_fd *bfd, unsigned int what)
447{
448 struct e1inp_line *line = bfd->data;
449 unsigned int ts_nr = bfd->priv_nr;
450 unsigned int idx = ts_nr-1;
Harald Welteedb37782009-05-01 14:59:07 +0000451 struct e1inp_ts *e1i_ts;
Harald Welte5fd8a542009-02-13 02:43:36 +0000452 int rc = 0;
453
Harald Welteedb37782009-05-01 14:59:07 +0000454 /* In case of early RSL we might not yet have a line */
455
456 if (line)
457 e1i_ts = &line->ts[idx];
458
459 if (!line || e1i_ts->type == E1INP_TS_TYPE_SIGN) {
Harald Welte5fd8a542009-02-13 02:43:36 +0000460 if (what & BSC_FD_READ)
461 rc = handle_ts1_read(bfd);
462 if (what & BSC_FD_WRITE)
463 rc = handle_ts1_write(bfd);
Harald Welteedb37782009-05-01 14:59:07 +0000464 } else
Harald Welte5fd8a542009-02-13 02:43:36 +0000465 fprintf(stderr, "unknown E1 TS type %u\n", e1i_ts->type);
Harald Welte5fd8a542009-02-13 02:43:36 +0000466
467 return rc;
468}
469
470
Harald Welte5fd8a542009-02-13 02:43:36 +0000471struct e1inp_driver ipaccess_driver = {
472 .name = "ip.access",
473 .want_write = ts_want_write,
474};
475
Harald Welteedb37782009-05-01 14:59:07 +0000476/* callback of the OML listening filedescriptor */
Harald Welte5fd8a542009-02-13 02:43:36 +0000477static int listen_fd_cb(struct bsc_fd *listen_bfd, unsigned int what)
478{
Harald Welte5fd8a542009-02-13 02:43:36 +0000479 int ret;
Harald Welteedb37782009-05-01 14:59:07 +0000480 int idx = 0;
481 struct e1inp_line *line;
482 struct e1inp_ts *e1i_ts;
483 struct bsc_fd *bfd;
484 struct sockaddr_in sa;
485 socklen_t sa_len = sizeof(sa);
Harald Welte5fd8a542009-02-13 02:43:36 +0000486
Harald Welteedb37782009-05-01 14:59:07 +0000487 if (!(what & BSC_FD_READ))
488 return 0;
Harald Welte5fd8a542009-02-13 02:43:36 +0000489
Harald Welteedb37782009-05-01 14:59:07 +0000490 ret = accept(listen_bfd->fd, (struct sockaddr *) &sa, &sa_len);
491 if (ret < 0) {
492 perror("accept");
493 return ret;
Harald Welte5fd8a542009-02-13 02:43:36 +0000494 }
Harald Welteedb37782009-05-01 14:59:07 +0000495 DEBUGP(DINP, "accept()ed new OML link from %s\n", inet_ntoa(sa.sin_addr));
496
Harald Welte2cf161b2009-06-20 22:36:41 +0200497 line = talloc(tall_bsc_ctx, struct e1inp_line);
Harald Welteedb37782009-05-01 14:59:07 +0000498 if (!line) {
499 close(ret);
500 return -ENOMEM;
501 }
502 memset(line, 0, sizeof(*line));
503 line->driver = &ipaccess_driver;
504 //line->driver_data = e1h;
505 /* create virrtual E1 timeslots for signalling */
506 e1inp_ts_config(&line->ts[1-1], line, E1INP_TS_TYPE_SIGN);
Harald Welteedb37782009-05-01 14:59:07 +0000507
508 e1i_ts = &line->ts[idx];
509
510 bfd = &e1i_ts->driver.ipaccess.fd;
511 bfd->fd = ret;
512 bfd->data = line;
513 bfd->priv_nr = 1;
514 bfd->cb = ipaccess_fd_cb;
515 bfd->when = BSC_FD_READ;
516 ret = bsc_register_fd(bfd);
517 if (ret < 0) {
518 fprintf(stderr, "could not register FD\n");
519 close(bfd->fd);
Harald Weltea4ffea92009-06-22 01:36:25 +0200520 talloc_free(line);
Harald Welteedb37782009-05-01 14:59:07 +0000521 return ret;
522 }
523
524 /* Request ID. FIXME: request LOCATION, HW/SW VErsion, Unit Name, Serno */
525 ret = write(bfd->fd, id_req, sizeof(id_req));
526
Holger Hans Peter Freyther09e364b2009-08-10 07:59:27 +0200527 return ret;
Harald Welte42581822009-08-08 16:12:58 +0200528 //return e1inp_line_register(line);
Harald Welte5fd8a542009-02-13 02:43:36 +0000529}
530
Harald Welte5c1e4582009-02-15 11:57:29 +0000531static int rsl_listen_fd_cb(struct bsc_fd *listen_bfd, unsigned int what)
532{
Harald Welteedb37782009-05-01 14:59:07 +0000533 struct sockaddr_in sa;
534 socklen_t sa_len = sizeof(sa);
Harald Weltea4ffea92009-06-22 01:36:25 +0200535 struct bsc_fd *bfd;
Harald Welte5c1e4582009-02-15 11:57:29 +0000536 int ret;
537
Harald Welteedb37782009-05-01 14:59:07 +0000538 if (!(what & BSC_FD_READ))
539 return 0;
Harald Welte5c1e4582009-02-15 11:57:29 +0000540
Harald Weltea4ffea92009-06-22 01:36:25 +0200541 bfd = talloc(tall_bsc_ctx, struct bsc_fd);
542 if (!bfd)
543 return -ENOMEM;
544 memset(bfd, 0, sizeof(*bfd));
545
Harald Welteedb37782009-05-01 14:59:07 +0000546 /* Some BTS has connected to us, but we don't know yet which line
547 * (as created by the OML link) to associate it with. Thus, we
548 * aloocate a temporary bfd until we have received ID from BTS */
549
550 bfd->fd = accept(listen_bfd->fd, (struct sockaddr *) &sa, &sa_len);
551 if (bfd->fd < 0) {
552 perror("accept");
553 return bfd->fd;
Harald Welte5c1e4582009-02-15 11:57:29 +0000554 }
Harald Welteedb37782009-05-01 14:59:07 +0000555 DEBUGP(DINP, "accept()ed new RSL link from %s\n", inet_ntoa(sa.sin_addr));
556 bfd->priv_nr = 2;
557 bfd->cb = ipaccess_fd_cb;
558 bfd->when = BSC_FD_READ;
559 ret = bsc_register_fd(bfd);
560 if (ret < 0) {
561 fprintf(stderr, "could not register FD\n");
562 close(bfd->fd);
Harald Weltea4ffea92009-06-22 01:36:25 +0200563 talloc_free(bfd);
Harald Welteedb37782009-05-01 14:59:07 +0000564 return ret;
565 }
566 /* Request ID. FIXME: request LOCATION, HW/SW VErsion, Unit Name, Serno */
567 ret = write(bfd->fd, id_req, sizeof(id_req));
568
Harald Welte5c1e4582009-02-15 11:57:29 +0000569 return 0;
570}
571
572static int make_sock(struct bsc_fd *bfd, u_int16_t port,
Harald Welte5c1e4582009-02-15 11:57:29 +0000573 int (*cb)(struct bsc_fd *fd, unsigned int what))
Harald Welte5fd8a542009-02-13 02:43:36 +0000574{
575 struct sockaddr_in addr;
Harald Welte5c1e4582009-02-15 11:57:29 +0000576 int ret, on = 1;
577
578 bfd->fd = socket(AF_INET, SOCK_STREAM, IPPROTO_TCP);
579 bfd->cb = cb;
580 bfd->when = BSC_FD_READ;
Harald Welteedb37782009-05-01 14:59:07 +0000581 //bfd->data = line;
Harald Welte5c1e4582009-02-15 11:57:29 +0000582
583 memset(&addr, 0, sizeof(addr));
584 addr.sin_family = AF_INET;
585 addr.sin_port = htons(port);
586 addr.sin_addr.s_addr = INADDR_ANY;
587
588 setsockopt(bfd->fd, SOL_SOCKET, SO_REUSEADDR, &on, sizeof(on));
589
590 ret = bind(bfd->fd, (struct sockaddr *) &addr, sizeof(addr));
591 if (ret < 0) {
592 fprintf(stderr, "could not bind l2 socket %s\n",
593 strerror(errno));
594 return -EIO;
595 }
596
597 ret = listen(bfd->fd, 1);
598 if (ret < 0) {
599 perror("listen");
600 return ret;
601 }
602
603 ret = bsc_register_fd(bfd);
604 if (ret < 0) {
605 perror("register_listen_fd");
606 return ret;
607 }
608 return 0;
609}
610
Harald Welte25de9912009-04-30 15:53:07 +0000611/* Actively connect to a BTS. Currently used by ipaccess-config.c */
612int ipaccess_connect(struct e1inp_line *line, struct sockaddr_in *sa)
613{
614 struct e1inp_ts *e1i_ts = &line->ts[0];
615 struct bsc_fd *bfd = &e1i_ts->driver.ipaccess.fd;
616 int ret, on = 1;
617
618 bfd->fd = socket(AF_INET, SOCK_STREAM, IPPROTO_TCP);
619 bfd->cb = ipaccess_fd_cb;
620 bfd->when = BSC_FD_READ | BSC_FD_WRITE;
621 bfd->data = line;
622 bfd->priv_nr = 1;
623
624 setsockopt(bfd->fd, SOL_SOCKET, SO_REUSEADDR, &on, sizeof(on));
625
626 ret = connect(bfd->fd, (struct sockaddr *) sa, sizeof(*sa));
627 if (ret < 0) {
628 fprintf(stderr, "could not connect socket\n");
629 close(bfd->fd);
630 return ret;
631 }
632
633 ret = bsc_register_fd(bfd);
634 if (ret < 0) {
635 close(bfd->fd);
636 return ret;
637 }
638
639 line->driver = &ipaccess_driver;
640
Holger Hans Peter Freyther09e364b2009-08-10 07:59:27 +0200641 return ret;
Harald Welte42581822009-08-08 16:12:58 +0200642 //return e1inp_line_register(line);
Harald Welte25de9912009-04-30 15:53:07 +0000643}
644
Harald Welteedb37782009-05-01 14:59:07 +0000645int ipaccess_setup(struct gsm_network *gsmnet)
Harald Welte5c1e4582009-02-15 11:57:29 +0000646{
Harald Welte5c1e4582009-02-15 11:57:29 +0000647 int ret;
Harald Welte5fd8a542009-02-13 02:43:36 +0000648
649 /* register the driver with the core */
650 /* FIXME: do this in the plugin initializer function */
651 ret = e1inp_driver_register(&ipaccess_driver);
652 if (ret)
653 return ret;
654
Harald Welte2cf161b2009-06-20 22:36:41 +0200655 e1h = talloc(tall_bsc_ctx, struct ia_e1_handle);
Harald Weltea4ffea92009-06-22 01:36:25 +0200656 if (!e1h)
657 return -ENOMEM;
Harald Welte5fd8a542009-02-13 02:43:36 +0000658 memset(e1h, 0, sizeof(*e1h));
Harald Weltea4ffea92009-06-22 01:36:25 +0200659
Harald Welteedb37782009-05-01 14:59:07 +0000660 e1h->gsmnet = gsmnet;
Harald Welte5fd8a542009-02-13 02:43:36 +0000661
Harald Welte5c1e4582009-02-15 11:57:29 +0000662 /* Listen for OML connections */
Harald Welteedb37782009-05-01 14:59:07 +0000663 ret = make_sock(&e1h->listen_fd, 3002, listen_fd_cb);
Harald Weltecf559782009-05-01 15:43:49 +0000664 if (ret < 0)
665 return ret;
Harald Welte5fd8a542009-02-13 02:43:36 +0000666
Harald Welte5c1e4582009-02-15 11:57:29 +0000667 /* Listen for RSL connections */
Harald Welteedb37782009-05-01 14:59:07 +0000668 ret = make_sock(&e1h->rsl_listen_fd, 3003, rsl_listen_fd_cb);
Harald Welte5fd8a542009-02-13 02:43:36 +0000669
Harald Welteedb37782009-05-01 14:59:07 +0000670 return ret;
Harald Welte5fd8a542009-02-13 02:43:36 +0000671}