blob: c721766575554aae8aefff54eda2712465d1c49c [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) {
Harald Welteafdca0f2009-12-23 23:01:04 +0100216 LOGP(DINP, LOGL_ERROR, "Unable to find BTS configuration for "
Harald Welteedb37782009-05-01 14:59:07 +0000217 " %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));
Harald Welte1394fea2009-12-21 23:01:33 +0100241 newbfd->priv_nr = 2+trx_id;
Harald Welteedb37782009-05-01 14:59:07 +0000242 bsc_unregister_fd(bfd);
243 bsc_register_fd(newbfd);
Harald Weltea4ffea92009-06-22 01:36:25 +0200244 talloc_free(bfd);
Harald Welteedb37782009-05-01 14:59:07 +0000245 }
Harald Welte5fd8a542009-02-13 02:43:36 +0000246 break;
Harald Welte5fd8a542009-02-13 02:43:36 +0000247 }
Harald Welte5fd8a542009-02-13 02:43:36 +0000248 return 0;
249}
250
Harald Welte88a412a2009-12-16 17:32:37 +0100251#define OML_UP 0x0001
252#define RSL_UP 0x0002
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;
Sylvain Munautd7d1c992009-10-29 16:33:59 +0100262 int len, 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) {
Harald Weltefb339572009-12-24 13:35:18 +0100273 if (errno != EAGAIN)
274 LOGP(DINP, LOGL_ERROR, "recv error %d %s\n", ret, strerror(errno));
Holger Hans Peter Freytherd5f05222009-08-18 10:05:45 +0200275 msgb_free(msg);
276 *error = ret;
277 return NULL;
278 } else if (ret == 0) {
279 msgb_free(msg);
280 *error = ret;
281 return NULL;
Harald Welte5fd8a542009-02-13 02:43:36 +0000282 }
Holger Hans Peter Freytherd5f05222009-08-18 10:05:45 +0200283
Harald Welte5fd8a542009-02-13 02:43:36 +0000284 msgb_put(msg, ret);
285
286 /* then read te length as specified in header */
287 msg->l2h = msg->data + sizeof(*hh);
Sylvain Munautd7d1c992009-10-29 16:33:59 +0100288 len = ntohs(hh->len);
289 ret = recv(bfd->fd, msg->l2h, len, 0);
290 if (ret < len) {
Harald Welteafdca0f2009-12-23 23:01:04 +0100291 LOGP(DINP, LOGL_ERROR, "short read!\n");
Harald Welte5c1e4582009-02-15 11:57:29 +0000292 msgb_free(msg);
Holger Hans Peter Freytherd5f05222009-08-18 10:05:45 +0200293 *error = -EIO;
294 return NULL;
Harald Welte5fd8a542009-02-13 02:43:36 +0000295 }
296 msgb_put(msg, ret);
Holger Hans Peter Freytherd5f05222009-08-18 10:05:45 +0200297
298 return msg;
299}
300
301static int handle_ts1_read(struct bsc_fd *bfd)
302{
303 struct e1inp_line *line = bfd->data;
304 unsigned int ts_nr = bfd->priv_nr;
305 struct e1inp_ts *e1i_ts = &line->ts[ts_nr-1];
306 struct e1inp_sign_link *link;
307 struct msgb *msg;
308 struct ipaccess_head *hh;
Holger Hans Peter Freyther67b59612009-10-27 10:08:38 +0100309 int ret = 0, error;
Holger Hans Peter Freytherd5f05222009-08-18 10:05:45 +0200310
311 msg = ipaccess_read_msg(bfd, &error);
312 if (!msg) {
313 if (error == 0) {
Harald Welteafdca0f2009-12-23 23:01:04 +0100314 LOGP(DINP, LOGL_NOTICE, "BTS disappeared, dead socket\n");
Holger Hans Peter Freytherd5f05222009-08-18 10:05:45 +0200315 e1inp_event(e1i_ts, EVT_E1_TEI_DN, 0, IPAC_PROTO_RSL);
316 e1inp_event(e1i_ts, EVT_E1_TEI_DN, 0, IPAC_PROTO_OML);
Harald Welteafdca0f2009-12-23 23:01:04 +0100317 link = e1inp_lookup_sign_link(e1i_ts, IPAC_PROTO_OML, 0);
318 if (link)
319 link->trx->bts->ip_access.flags = 0;
Holger Hans Peter Freytherd5f05222009-08-18 10:05:45 +0200320 bsc_unregister_fd(bfd);
321 close(bfd->fd);
322 bfd->fd = -1;
323 }
324 return error;
325 }
326
Sylvain Munaut86538c72009-09-30 22:35:04 +0200327 DEBUGP(DMI, "RX %u: %s\n", ts_nr, hexdump(msgb_l2(msg), msgb_l2len(msg)));
Harald Welte5fd8a542009-02-13 02:43:36 +0000328
Holger Hans Peter Freytherd5f05222009-08-18 10:05:45 +0200329 hh = (struct ipaccess_head *) msg->data;
Harald Welteedb37782009-05-01 14:59:07 +0000330 if (hh->proto == IPAC_PROTO_IPACCESS) {
331 ret = ipaccess_rcvmsg(line, msg, bfd);
332 if (ret < 0) {
333 e1inp_event(e1i_ts, EVT_E1_TEI_DN, 0, IPAC_PROTO_RSL);
334 e1inp_event(e1i_ts, EVT_E1_TEI_DN, 0, IPAC_PROTO_OML);
335 bsc_unregister_fd(bfd);
336 close(bfd->fd);
337 bfd->fd = -1;
338 }
339 msgb_free(msg);
340 return ret;
341 }
342 /* BIG FAT WARNING: bfd might no longer exist here, since ipaccess_rcvmsg()
343 * might have free'd it !!! */
344
Harald Welte8175e952009-10-20 00:22:00 +0200345 link = e1inp_lookup_sign_link(e1i_ts, hh->proto, 0);
Harald Welte5fd8a542009-02-13 02:43:36 +0000346 if (!link) {
Harald Welteafdca0f2009-12-23 23:01:04 +0100347 LOGP(DINP, LOGL_ERROR, "no matching signalling link for "
348 "hh->proto=0x%02x\n", hh->proto);
Harald Welte5fd8a542009-02-13 02:43:36 +0000349 msgb_free(msg);
350 return -EIO;
351 }
352 msg->trx = link->trx;
353
Harald Welte8175e952009-10-20 00:22:00 +0200354 switch (link->type) {
355 case E1INP_SIGN_RSL:
Harald Welte1394fea2009-12-21 23:01:33 +0100356 if (!(msg->trx->bts->ip_access.flags & (RSL_UP << msg->trx->nr))) {
Harald Weltee73501a2009-10-21 21:16:00 +0200357 e1inp_event(e1i_ts, EVT_E1_TEI_UP, link->tei, link->sapi);
Harald Welte1394fea2009-12-21 23:01:33 +0100358 msg->trx->bts->ip_access.flags |= (RSL_UP << msg->trx->nr);
Harald Weltee73501a2009-10-21 21:16:00 +0200359 }
Harald Welte5fd8a542009-02-13 02:43:36 +0000360 ret = abis_rsl_rcvmsg(msg);
361 break;
Harald Welte8175e952009-10-20 00:22:00 +0200362 case E1INP_SIGN_OML:
Harald Welte88a412a2009-12-16 17:32:37 +0100363 if (!(msg->trx->bts->ip_access.flags & OML_UP)) {
Harald Welte8175e952009-10-20 00:22:00 +0200364 e1inp_event(e1i_ts, EVT_E1_TEI_UP, link->tei, link->sapi);
Harald Welte88a412a2009-12-16 17:32:37 +0100365 msg->trx->bts->ip_access.flags |= OML_UP;
Harald Welte7782c142009-02-15 03:39:51 +0000366 }
Harald Welte5fd8a542009-02-13 02:43:36 +0000367 ret = abis_nm_rcvmsg(msg);
368 break;
369 default:
Harald Welteafdca0f2009-12-23 23:01:04 +0100370 LOGP(DINP, LOGL_NOTICE, "Unknown IP.access protocol proto=0x%02x\n", hh->proto);
Harald Welte5fd8a542009-02-13 02:43:36 +0000371 msgb_free(msg);
372 break;
373 }
374 return ret;
375}
376
Holger Hans Peter Freytherd5f05222009-08-18 10:05:45 +0200377void ipaccess_prepend_header(struct msgb *msg, int proto)
378{
379 struct ipaccess_head *hh;
380
381 /* prepend the ip.access header */
382 hh = (struct ipaccess_head *) msgb_push(msg, sizeof(*hh));
Sylvain Munautd7d1c992009-10-29 16:33:59 +0100383 hh->len = htons(msg->len - sizeof(*hh));
Holger Hans Peter Freytherd5f05222009-08-18 10:05:45 +0200384 hh->proto = proto;
385}
386
Andreas Eversberg38ae5cb2009-10-08 12:53:16 +0200387static int ts_want_write(struct e1inp_ts *e1i_ts)
388{
389 e1i_ts->driver.ipaccess.fd.when |= BSC_FD_WRITE;
390
391 return 0;
392}
393
394static void timeout_ts1_write(void *data)
395{
396 struct e1inp_ts *e1i_ts = (struct e1inp_ts *)data;
397
398 /* trigger write of ts1, due to tx delay timer */
399 ts_want_write(e1i_ts);
400}
401
Harald Welte5fd8a542009-02-13 02:43:36 +0000402static int handle_ts1_write(struct bsc_fd *bfd)
403{
404 struct e1inp_line *line = bfd->data;
405 unsigned int ts_nr = bfd->priv_nr;
406 struct e1inp_ts *e1i_ts = &line->ts[ts_nr-1];
407 struct e1inp_sign_link *sign_link;
408 struct msgb *msg;
Holger Hans Peter Freytherd5f05222009-08-18 10:05:45 +0200409 u_int8_t proto;
Harald Welte5fd8a542009-02-13 02:43:36 +0000410 int ret;
411
Andreas Eversberg38ae5cb2009-10-08 12:53:16 +0200412 bfd->when &= ~BSC_FD_WRITE;
413
Harald Welte5fd8a542009-02-13 02:43:36 +0000414 /* get the next msg for this timeslot */
415 msg = e1inp_tx_ts(e1i_ts, &sign_link);
416 if (!msg) {
Andreas Eversberg38ae5cb2009-10-08 12:53:16 +0200417 /* no message after tx delay timer */
Harald Welte5fd8a542009-02-13 02:43:36 +0000418 return 0;
419 }
420
Harald Welte5fd8a542009-02-13 02:43:36 +0000421 switch (sign_link->type) {
422 case E1INP_SIGN_OML:
Holger Hans Peter Freytherd5f05222009-08-18 10:05:45 +0200423 proto = IPAC_PROTO_OML;
Harald Welte5fd8a542009-02-13 02:43:36 +0000424 break;
425 case E1INP_SIGN_RSL:
Holger Hans Peter Freytherd5f05222009-08-18 10:05:45 +0200426 proto = IPAC_PROTO_RSL;
Harald Welte5fd8a542009-02-13 02:43:36 +0000427 break;
428 default:
429 msgb_free(msg);
Andreas Eversberg38ae5cb2009-10-08 12:53:16 +0200430 bfd->when |= BSC_FD_WRITE; /* come back for more msg */
Harald Welte5fd8a542009-02-13 02:43:36 +0000431 return -EINVAL;
432 }
433
Holger Hans Peter Freytherd5f05222009-08-18 10:05:45 +0200434 msg->l2h = msg->data;
Harald Welte8175e952009-10-20 00:22:00 +0200435 ipaccess_prepend_header(msg, sign_link->tei);
Holger Hans Peter Freytherd5f05222009-08-18 10:05:45 +0200436
437 DEBUGP(DMI, "TX %u: %s\n", ts_nr, hexdump(msg->l2h, msgb_l2len(msg)));
Harald Welte5fd8a542009-02-13 02:43:36 +0000438
439 ret = send(bfd->fd, msg->data, msg->len, 0);
440 msgb_free(msg);
Andreas Eversberg38ae5cb2009-10-08 12:53:16 +0200441
442 /* set tx delay timer for next event */
443 e1i_ts->sign.tx_timer.cb = timeout_ts1_write;
444 e1i_ts->sign.tx_timer.data = e1i_ts;
445 bsc_schedule_timer(&e1i_ts->sign.tx_timer, 0, 100000);
Harald Welte5fd8a542009-02-13 02:43:36 +0000446
447 return ret;
448}
449
Harald Welte5fd8a542009-02-13 02:43:36 +0000450/* callback from select.c in case one of the fd's can be read/written */
451static int ipaccess_fd_cb(struct bsc_fd *bfd, unsigned int what)
452{
453 struct e1inp_line *line = bfd->data;
454 unsigned int ts_nr = bfd->priv_nr;
455 unsigned int idx = ts_nr-1;
Harald Welteedb37782009-05-01 14:59:07 +0000456 struct e1inp_ts *e1i_ts;
Harald Welte5fd8a542009-02-13 02:43:36 +0000457 int rc = 0;
458
Harald Welteedb37782009-05-01 14:59:07 +0000459 /* In case of early RSL we might not yet have a line */
460
461 if (line)
462 e1i_ts = &line->ts[idx];
463
464 if (!line || e1i_ts->type == E1INP_TS_TYPE_SIGN) {
Harald Welte5fd8a542009-02-13 02:43:36 +0000465 if (what & BSC_FD_READ)
466 rc = handle_ts1_read(bfd);
467 if (what & BSC_FD_WRITE)
468 rc = handle_ts1_write(bfd);
Harald Welteedb37782009-05-01 14:59:07 +0000469 } else
Harald Welteafdca0f2009-12-23 23:01:04 +0100470 LOGP(DINP, LOGL_ERROR, "unknown E1 TS type %u\n", e1i_ts->type);
Harald Welte5fd8a542009-02-13 02:43:36 +0000471
472 return rc;
473}
474
475
Harald Welte5fd8a542009-02-13 02:43:36 +0000476struct e1inp_driver ipaccess_driver = {
477 .name = "ip.access",
478 .want_write = ts_want_write,
479};
480
Harald Welteedb37782009-05-01 14:59:07 +0000481/* callback of the OML listening filedescriptor */
Harald Welte5fd8a542009-02-13 02:43:36 +0000482static int listen_fd_cb(struct bsc_fd *listen_bfd, unsigned int what)
483{
Harald Welte5fd8a542009-02-13 02:43:36 +0000484 int ret;
Harald Welteedb37782009-05-01 14:59:07 +0000485 int idx = 0;
486 struct e1inp_line *line;
487 struct e1inp_ts *e1i_ts;
488 struct bsc_fd *bfd;
489 struct sockaddr_in sa;
490 socklen_t sa_len = sizeof(sa);
Harald Welte5fd8a542009-02-13 02:43:36 +0000491
Harald Welteedb37782009-05-01 14:59:07 +0000492 if (!(what & BSC_FD_READ))
493 return 0;
Harald Welte5fd8a542009-02-13 02:43:36 +0000494
Harald Welteedb37782009-05-01 14:59:07 +0000495 ret = accept(listen_bfd->fd, (struct sockaddr *) &sa, &sa_len);
496 if (ret < 0) {
497 perror("accept");
498 return ret;
Harald Welte5fd8a542009-02-13 02:43:36 +0000499 }
Harald Welteafdca0f2009-12-23 23:01:04 +0100500 LOGP(DINP, LOGL_NOTICE, "accept()ed new OML link from %s\n",
501 inet_ntoa(sa.sin_addr));
Harald Welteedb37782009-05-01 14:59:07 +0000502
Holger Hans Peter Freyther5ea73132009-10-29 02:29:45 +0100503 line = talloc_zero(tall_bsc_ctx, struct e1inp_line);
Harald Welteedb37782009-05-01 14:59:07 +0000504 if (!line) {
505 close(ret);
506 return -ENOMEM;
507 }
Harald Welteedb37782009-05-01 14:59:07 +0000508 line->driver = &ipaccess_driver;
509 //line->driver_data = e1h;
510 /* create virrtual E1 timeslots for signalling */
511 e1inp_ts_config(&line->ts[1-1], line, E1INP_TS_TYPE_SIGN);
Harald Welteedb37782009-05-01 14:59:07 +0000512
513 e1i_ts = &line->ts[idx];
514
515 bfd = &e1i_ts->driver.ipaccess.fd;
516 bfd->fd = ret;
517 bfd->data = line;
518 bfd->priv_nr = 1;
519 bfd->cb = ipaccess_fd_cb;
520 bfd->when = BSC_FD_READ;
521 ret = bsc_register_fd(bfd);
522 if (ret < 0) {
Harald Welteafdca0f2009-12-23 23:01:04 +0100523 LOGP(DINP, LOGL_ERROR, "could not register FD\n");
Harald Welteedb37782009-05-01 14:59:07 +0000524 close(bfd->fd);
Harald Weltea4ffea92009-06-22 01:36:25 +0200525 talloc_free(line);
Harald Welteedb37782009-05-01 14:59:07 +0000526 return ret;
527 }
528
529 /* Request ID. FIXME: request LOCATION, HW/SW VErsion, Unit Name, Serno */
530 ret = write(bfd->fd, id_req, sizeof(id_req));
531
Holger Hans Peter Freyther09e364b2009-08-10 07:59:27 +0200532 return ret;
Harald Welte42581822009-08-08 16:12:58 +0200533 //return e1inp_line_register(line);
Harald Welte5fd8a542009-02-13 02:43:36 +0000534}
535
Harald Welte5c1e4582009-02-15 11:57:29 +0000536static int rsl_listen_fd_cb(struct bsc_fd *listen_bfd, unsigned int what)
537{
Harald Welteedb37782009-05-01 14:59:07 +0000538 struct sockaddr_in sa;
539 socklen_t sa_len = sizeof(sa);
Harald Weltea4ffea92009-06-22 01:36:25 +0200540 struct bsc_fd *bfd;
Harald Welte5c1e4582009-02-15 11:57:29 +0000541 int ret;
542
Harald Welteedb37782009-05-01 14:59:07 +0000543 if (!(what & BSC_FD_READ))
544 return 0;
Harald Welte5c1e4582009-02-15 11:57:29 +0000545
Holger Hans Peter Freyther5ea73132009-10-29 02:29:45 +0100546 bfd = talloc_zero(tall_bsc_ctx, struct bsc_fd);
Harald Weltea4ffea92009-06-22 01:36:25 +0200547 if (!bfd)
548 return -ENOMEM;
Harald Weltea4ffea92009-06-22 01:36:25 +0200549
Harald Welteedb37782009-05-01 14:59:07 +0000550 /* Some BTS has connected to us, but we don't know yet which line
551 * (as created by the OML link) to associate it with. Thus, we
Holger Hans Peter Freytherc7df7c62009-11-15 13:50:39 +0100552 * allocate a temporary bfd until we have received ID from BTS */
Harald Welteedb37782009-05-01 14:59:07 +0000553
554 bfd->fd = accept(listen_bfd->fd, (struct sockaddr *) &sa, &sa_len);
555 if (bfd->fd < 0) {
556 perror("accept");
557 return bfd->fd;
Harald Welte5c1e4582009-02-15 11:57:29 +0000558 }
Harald Welteafdca0f2009-12-23 23:01:04 +0100559 LOGP(DINP, LOGL_NOTICE, "accept()ed new RSL link from %s\n", inet_ntoa(sa.sin_addr));
Harald Welteedb37782009-05-01 14:59:07 +0000560 bfd->priv_nr = 2;
561 bfd->cb = ipaccess_fd_cb;
562 bfd->when = BSC_FD_READ;
563 ret = bsc_register_fd(bfd);
564 if (ret < 0) {
Harald Welteafdca0f2009-12-23 23:01:04 +0100565 LOGP(DINP, LOGL_ERROR, "could not register FD\n");
Harald Welteedb37782009-05-01 14:59:07 +0000566 close(bfd->fd);
Harald Weltea4ffea92009-06-22 01:36:25 +0200567 talloc_free(bfd);
Harald Welteedb37782009-05-01 14:59:07 +0000568 return ret;
569 }
570 /* Request ID. FIXME: request LOCATION, HW/SW VErsion, Unit Name, Serno */
571 ret = write(bfd->fd, id_req, sizeof(id_req));
572
Harald Welte5c1e4582009-02-15 11:57:29 +0000573 return 0;
574}
575
576static int make_sock(struct bsc_fd *bfd, u_int16_t port,
Harald Welte5c1e4582009-02-15 11:57:29 +0000577 int (*cb)(struct bsc_fd *fd, unsigned int what))
Harald Welte5fd8a542009-02-13 02:43:36 +0000578{
579 struct sockaddr_in addr;
Harald Welte5c1e4582009-02-15 11:57:29 +0000580 int ret, on = 1;
581
582 bfd->fd = socket(AF_INET, SOCK_STREAM, IPPROTO_TCP);
583 bfd->cb = cb;
584 bfd->when = BSC_FD_READ;
Harald Welteedb37782009-05-01 14:59:07 +0000585 //bfd->data = line;
Harald Welte5c1e4582009-02-15 11:57:29 +0000586
587 memset(&addr, 0, sizeof(addr));
588 addr.sin_family = AF_INET;
589 addr.sin_port = htons(port);
590 addr.sin_addr.s_addr = INADDR_ANY;
591
592 setsockopt(bfd->fd, SOL_SOCKET, SO_REUSEADDR, &on, sizeof(on));
593
594 ret = bind(bfd->fd, (struct sockaddr *) &addr, sizeof(addr));
595 if (ret < 0) {
Harald Welteafdca0f2009-12-23 23:01:04 +0100596 LOGP(DINP, LOGL_ERROR, "could not bind l2 socket %s\n",
Harald Welte5c1e4582009-02-15 11:57:29 +0000597 strerror(errno));
598 return -EIO;
599 }
600
601 ret = listen(bfd->fd, 1);
602 if (ret < 0) {
603 perror("listen");
604 return ret;
605 }
606
607 ret = bsc_register_fd(bfd);
608 if (ret < 0) {
609 perror("register_listen_fd");
610 return ret;
611 }
612 return 0;
613}
614
Harald Welte25de9912009-04-30 15:53:07 +0000615/* Actively connect to a BTS. Currently used by ipaccess-config.c */
616int ipaccess_connect(struct e1inp_line *line, struct sockaddr_in *sa)
617{
618 struct e1inp_ts *e1i_ts = &line->ts[0];
619 struct bsc_fd *bfd = &e1i_ts->driver.ipaccess.fd;
620 int ret, on = 1;
621
622 bfd->fd = socket(AF_INET, SOCK_STREAM, IPPROTO_TCP);
623 bfd->cb = ipaccess_fd_cb;
624 bfd->when = BSC_FD_READ | BSC_FD_WRITE;
625 bfd->data = line;
626 bfd->priv_nr = 1;
627
628 setsockopt(bfd->fd, SOL_SOCKET, SO_REUSEADDR, &on, sizeof(on));
629
630 ret = connect(bfd->fd, (struct sockaddr *) sa, sizeof(*sa));
631 if (ret < 0) {
Harald Welteafdca0f2009-12-23 23:01:04 +0100632 LOGP(DINP, LOGL_ERROR, "could not connect socket\n");
Harald Welte25de9912009-04-30 15:53:07 +0000633 close(bfd->fd);
634 return ret;
635 }
636
637 ret = bsc_register_fd(bfd);
638 if (ret < 0) {
639 close(bfd->fd);
640 return ret;
641 }
642
643 line->driver = &ipaccess_driver;
644
Holger Hans Peter Freyther09e364b2009-08-10 07:59:27 +0200645 return ret;
Harald Welte42581822009-08-08 16:12:58 +0200646 //return e1inp_line_register(line);
Harald Welte25de9912009-04-30 15:53:07 +0000647}
648
Harald Welteedb37782009-05-01 14:59:07 +0000649int ipaccess_setup(struct gsm_network *gsmnet)
Harald Welte5c1e4582009-02-15 11:57:29 +0000650{
Harald Welte5c1e4582009-02-15 11:57:29 +0000651 int ret;
Harald Welte5fd8a542009-02-13 02:43:36 +0000652
653 /* register the driver with the core */
654 /* FIXME: do this in the plugin initializer function */
655 ret = e1inp_driver_register(&ipaccess_driver);
656 if (ret)
657 return ret;
658
Holger Hans Peter Freyther5ea73132009-10-29 02:29:45 +0100659 e1h = talloc_zero(tall_bsc_ctx, struct ia_e1_handle);
Harald Weltea4ffea92009-06-22 01:36:25 +0200660 if (!e1h)
661 return -ENOMEM;
Harald Weltea4ffea92009-06-22 01:36:25 +0200662
Harald Welteedb37782009-05-01 14:59:07 +0000663 e1h->gsmnet = gsmnet;
Harald Welte5fd8a542009-02-13 02:43:36 +0000664
Harald Welte5c1e4582009-02-15 11:57:29 +0000665 /* Listen for OML connections */
Harald Welte87ed5cd2009-12-23 22:47:53 +0100666 ret = make_sock(&e1h->listen_fd, IPA_TCP_PORT_OML, listen_fd_cb);
Harald Weltecf559782009-05-01 15:43:49 +0000667 if (ret < 0)
668 return ret;
Harald Welte5fd8a542009-02-13 02:43:36 +0000669
Harald Welte5c1e4582009-02-15 11:57:29 +0000670 /* Listen for RSL connections */
Harald Welte87ed5cd2009-12-23 22:47:53 +0100671 ret = make_sock(&e1h->rsl_listen_fd, IPA_TCP_PORT_RSL, rsl_listen_fd_cb);
Harald Welte5fd8a542009-02-13 02:43:36 +0000672
Harald Welteedb37782009-05-01 14:59:07 +0000673 return ret;
Harald Welte5fd8a542009-02-13 02:43:36 +0000674}