blob: 2acac894fa0fb82c1ca6a9c4d4b5e3c96371072a [file] [log] [blame]
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +02001/* OpenBSC Abis input driver for ip.access */
2
3/* (C) 2009 by Harald Welte <laforge@gnumonks.org>
4 * (C) 2010 by Holger Hans Peter Freyther
5 * (C) 2010 by On-Waves
6 *
7 * All Rights Reserved
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU Affero General Public License as published by
11 * the Free Software Foundation; either version 3 of the License, or
12 * (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU Affero General Public License for more details.
18 *
19 * You should have received a copy of the GNU Affero General Public License
20 * along with this program. If not, see <http://www.gnu.org/licenses/>.
21 *
22 */
23
24#include "internal.h"
25
26#include <stdio.h>
27#include <unistd.h>
28#include <stdlib.h>
Pablo Neira Ayusoeb434132011-07-07 19:19:46 +020029#include <stdbool.h>
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +020030#include <errno.h>
31#include <string.h>
32#include <time.h>
33#include <sys/fcntl.h>
34#include <sys/socket.h>
35#include <sys/ioctl.h>
36#include <arpa/inet.h>
37
38#include <osmocom/core/select.h>
39#include <osmocom/gsm/tlv.h>
40#include <osmocom/core/msgb.h>
41#include <osmocom/core/logging.h>
42#include <talloc.h>
Pablo Neira Ayuso177094b2011-06-07 12:21:51 +020043#include <osmocom/abis/e1_input.h>
44#include <osmocom/abis/ipaccess.h>
Pablo Neira Ayusof67471f2011-06-07 11:25:49 +020045#include <osmocom/core/socket.h>
Pablo Neira Ayuso96e81282011-06-09 15:06:11 +020046#include <osmocom/abis/ipa.h>
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +020047
Pablo Neira Ayuso54b49792011-06-07 12:15:26 +020048static void *tall_ipa_ctx;
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +020049
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +020050#define TS1_ALLOC_SIZE 900
51
52/*
53 * Common propietary IPA messages:
54 * - PONG: in reply to PING.
55 * - ID_REQUEST: first messages once OML has been established.
56 * - ID_ACK: in reply to ID_ACK.
57 */
58const uint8_t ipa_pong_msg[] = {
59 0, 1, IPAC_PROTO_IPACCESS, IPAC_MSGT_PONG
60};
61
62const uint8_t ipa_id_ack_msg[] = {
63 0, 1, IPAC_PROTO_IPACCESS, IPAC_MSGT_ID_ACK
64};
65
66const uint8_t ipa_id_req_msg[] = {
67 0, 17, IPAC_PROTO_IPACCESS, IPAC_MSGT_ID_GET,
68 0x01, IPAC_IDTAG_UNIT,
69 0x01, IPAC_IDTAG_MACADDR,
70 0x01, IPAC_IDTAG_LOCATION1,
71 0x01, IPAC_IDTAG_LOCATION2,
72 0x01, IPAC_IDTAG_EQUIPVERS,
73 0x01, IPAC_IDTAG_SWVERSION,
74 0x01, IPAC_IDTAG_UNITNAME,
75 0x01, IPAC_IDTAG_SERNR,
76};
77
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +020078static const char *idtag_names[] = {
79 [IPAC_IDTAG_SERNR] = "Serial_Number",
80 [IPAC_IDTAG_UNITNAME] = "Unit_Name",
81 [IPAC_IDTAG_LOCATION1] = "Location_1",
82 [IPAC_IDTAG_LOCATION2] = "Location_2",
83 [IPAC_IDTAG_EQUIPVERS] = "Equipment_Version",
84 [IPAC_IDTAG_SWVERSION] = "Software_Version",
85 [IPAC_IDTAG_IPADDR] = "IP_Address",
86 [IPAC_IDTAG_MACADDR] = "MAC_Address",
87 [IPAC_IDTAG_UNIT] = "Unit_ID",
88};
89
90const char *ipaccess_idtag_name(uint8_t tag)
91{
92 if (tag >= ARRAY_SIZE(idtag_names))
93 return "unknown";
94
95 return idtag_names[tag];
96}
97
98int ipaccess_idtag_parse(struct tlv_parsed *dec, unsigned char *buf, int len)
99{
100 uint8_t t_len;
101 uint8_t t_tag;
102 uint8_t *cur = buf;
103
104 memset(dec, 0, sizeof(*dec));
105
106 while (len >= 2) {
107 len -= 2;
108 t_len = *cur++;
109 t_tag = *cur++;
110
111 if (t_len > len + 1) {
112 LOGP(DMI, LOGL_ERROR, "The tag does not fit: %d\n", t_len);
113 return -EINVAL;
114 }
115
116 DEBUGPC(DMI, "%s='%s' ", ipaccess_idtag_name(t_tag), cur);
117
118 dec->lv[t_tag].len = t_len;
119 dec->lv[t_tag].val = cur;
120
121 cur += t_len;
122 len -= t_len;
123 }
124 return 0;
125}
126
127int ipaccess_parse_unitid(const char *str, struct ipaccess_unit *unit_data)
128{
129 unsigned long ul;
130 char *endptr;
131 const char *nptr;
132
133 nptr = str;
134 ul = strtoul(nptr, &endptr, 10);
135 if (endptr <= nptr)
136 return -EINVAL;
Pablo Neira Ayuso62d345a2011-07-05 16:37:37 +0200137 unit_data->site_id = ul & 0xffff;
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200138
139 if (*endptr++ != '/')
140 return -EINVAL;
141
142 nptr = endptr;
143 ul = strtoul(nptr, &endptr, 10);
144 if (endptr <= nptr)
145 return -EINVAL;
Pablo Neira Ayuso62d345a2011-07-05 16:37:37 +0200146 unit_data->bts_id = ul & 0xffff;
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200147
148 if (*endptr++ != '/')
149 return -EINVAL;
150
151 nptr = endptr;
152 ul = strtoul(nptr, &endptr, 10);
153 if (endptr <= nptr)
154 return -EINVAL;
Pablo Neira Ayuso62d345a2011-07-05 16:37:37 +0200155 unit_data->trx_id = ul & 0xffff;
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200156
157 return 0;
158}
159
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200160static int ipaccess_send(int fd, const void *msg, size_t msglen)
161{
162 int ret;
163
164 ret = write(fd, msg, msglen);
165 if (ret < 0)
166 return ret;
167 if (ret < msglen) {
168 LOGP(DINP, LOGL_ERROR, "ipaccess_send: short write\n");
169 return -EIO;
170 }
171 return ret;
172}
173
174int ipaccess_send_pong(int fd)
175{
176 return ipaccess_send(fd, ipa_pong_msg, sizeof(ipa_pong_msg));
177}
178
179int ipaccess_send_id_ack(int fd)
180{
181 return ipaccess_send(fd, ipa_id_ack_msg, sizeof(ipa_id_ack_msg));
182}
183
184int ipaccess_send_id_req(int fd)
185{
186 return ipaccess_send(fd, ipa_id_req_msg, sizeof(ipa_id_req_msg));
187}
188
Pablo Neira Ayuso5a4b7c52011-06-07 14:07:48 +0200189/* base handling of the ip.access protocol */
Pablo Neira Ayusoeb434132011-07-07 19:19:46 +0200190static bool ipaccess_rcvmsg_base(struct msgb *msg, struct osmo_fd *bfd)
Pablo Neira Ayuso5a4b7c52011-06-07 14:07:48 +0200191{
Pablo Neira Ayusoeb434132011-07-07 19:19:46 +0200192 bool ipa_ccm = false;
Pablo Neira Ayuso5a4b7c52011-06-07 14:07:48 +0200193 uint8_t msg_type = *(msg->l2h);
194 int ret = 0;
195
196 switch (msg_type) {
197 case IPAC_MSGT_PING:
Pablo Neira Ayusoeb434132011-07-07 19:19:46 +0200198 ipa_ccm = true;
Pablo Neira Ayuso5a4b7c52011-06-07 14:07:48 +0200199 ret = ipaccess_send_pong(bfd->fd);
200 break;
201 case IPAC_MSGT_PONG:
202 DEBUGP(DMI, "PONG!\n");
Pablo Neira Ayusoeb434132011-07-07 19:19:46 +0200203 ipa_ccm = true;
Pablo Neira Ayuso5a4b7c52011-06-07 14:07:48 +0200204 break;
205 case IPAC_MSGT_ID_ACK:
206 DEBUGP(DMI, "ID_ACK? -> ACK!\n");
Pablo Neira Ayusoeb434132011-07-07 19:19:46 +0200207 ipa_ccm = true;
Pablo Neira Ayuso5a4b7c52011-06-07 14:07:48 +0200208 ret = ipaccess_send_id_ack(bfd->fd);
209 break;
210 }
Pablo Neira Ayusoeb434132011-07-07 19:19:46 +0200211 return ipa_ccm;
Pablo Neira Ayuso5a4b7c52011-06-07 14:07:48 +0200212}
213
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200214/* base handling of the ip.access protocol */
215int ipaccess_rcvmsg_bts_base(struct msgb *msg,
216 struct osmo_fd *bfd)
217{
218 uint8_t msg_type = *(msg->l2h);
219 int ret = 0;
220
221 switch (msg_type) {
222 case IPAC_MSGT_PING:
223 ret = ipaccess_send_pong(bfd->fd);
224 break;
225 case IPAC_MSGT_PONG:
226 DEBUGP(DMI, "PONG!\n");
227 break;
228 case IPAC_MSGT_ID_ACK:
229 DEBUGP(DMI, "ID_ACK\n");
230 break;
231 }
232 return 0;
233}
234
Pablo Neira Ayuso466c5462011-07-07 19:17:20 +0200235static int ipaccess_drop(struct osmo_fd *bfd)
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200236{
Pablo Neira Ayuso466c5462011-07-07 19:17:20 +0200237 int ret = 0;
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200238 struct e1inp_line *line = bfd->data;
239
240 /* e1inp_sign_link_destroy releases the socket descriptors for us. */
241 line->ops->sign_link_down(line);
242
Pablo Neira Ayuso466c5462011-07-07 19:17:20 +0200243 /* Error case: we did not see any ID_RESP yet for this socket. */
244 if (bfd->fd != -1) {
245 LOGP(DINP, LOGL_ERROR, "Forcing socket shutdown with "
246 "no signal link set\n");
Pablo Neira Ayuso9621b412011-07-07 16:19:21 +0200247 osmo_fd_unregister(bfd);
248 close(bfd->fd);
249 bfd->fd = -1;
Pablo Neira Ayuso466c5462011-07-07 19:17:20 +0200250 ret = -ENOENT;
Pablo Neira Ayuso9621b412011-07-07 16:19:21 +0200251 }
Pablo Neira Ayuso3832c4f2011-07-07 17:47:26 +0200252 /* put the virtual E1 line that we cloned for this socket, if
253 * it becomes unused, it gets released. */
254 e1inp_line_put(line);
Pablo Neira Ayuso466c5462011-07-07 19:17:20 +0200255 return ret;
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200256}
257
Pablo Neira Ayuso5a4b7c52011-06-07 14:07:48 +0200258static int ipaccess_rcvmsg(struct e1inp_line *line, struct msgb *msg,
259 struct osmo_fd *bfd)
260{
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200261 struct tlv_parsed tlvp;
Pablo Neira Ayuso5a4b7c52011-06-07 14:07:48 +0200262 uint8_t msg_type = *(msg->l2h);
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200263 struct ipaccess_unit unit_data = {};
264 struct e1inp_sign_link *sign_link;
265 char *unitid;
266 int len, ret;
Pablo Neira Ayuso5a4b7c52011-06-07 14:07:48 +0200267
Pablo Neira Ayusoeb434132011-07-07 19:19:46 +0200268 /* Handle IPA PING, PONG and ID_ACK messages. */
269 if (ipaccess_rcvmsg_base(msg, bfd))
270 return 0;
Pablo Neira Ayuso5a4b7c52011-06-07 14:07:48 +0200271
272 switch (msg_type) {
273 case IPAC_MSGT_ID_RESP:
274 DEBUGP(DMI, "ID_RESP\n");
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200275 /* parse tags, search for Unit ID */
276 ret = ipaccess_idtag_parse(&tlvp, (uint8_t *)msg->l2h + 2,
277 msgb_l2len(msg)-2);
278 DEBUGP(DMI, "\n");
279 if (ret < 0) {
Pablo Neira Ayuso466c5462011-07-07 19:17:20 +0200280 LOGP(DINP, LOGL_ERROR, "IPA response message "
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200281 "with malformed TLVs\n");
Pablo Neira Ayuso466c5462011-07-07 19:17:20 +0200282 ret = -EINVAL;
283 goto err;
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200284 }
Pablo Neira Ayuso466c5462011-07-07 19:17:20 +0200285 if (!TLVP_PRESENT(&tlvp, IPAC_IDTAG_UNIT)) {
286 LOGP(DINP, LOGL_ERROR, "IPA response message "
287 "without unit ID\n");
288 ret = -EINVAL;
289 goto err;
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200290
Pablo Neira Ayuso466c5462011-07-07 19:17:20 +0200291 }
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200292 len = TLVP_LEN(&tlvp, IPAC_IDTAG_UNIT);
Pablo Neira Ayuso466c5462011-07-07 19:17:20 +0200293 if (len < 1) {
294 LOGP(DINP, LOGL_ERROR, "IPA response message "
295 "with too small unit ID\n");
296 ret = -EINVAL;
297 goto err;
298 }
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200299 unitid = (char *) TLVP_VAL(&tlvp, IPAC_IDTAG_UNIT);
300 unitid[len - 1] = '\0';
301 ipaccess_parse_unitid(unitid, &unit_data);
302
Pablo Neira Ayusof163d232011-06-25 18:42:55 +0200303 if (!line->ops->sign_link_up) {
Pablo Neira Ayusocd8d2e52011-07-02 17:05:21 +0200304 LOGP(DINP, LOGL_ERROR,
305 "Unable to set signal link, closing socket.\n");
Pablo Neira Ayuso466c5462011-07-07 19:17:20 +0200306 ret = -EINVAL;
307 goto err;
Pablo Neira Ayuso5a4b7c52011-06-07 14:07:48 +0200308 }
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200309 /* the BSC creates the new sign links at this stage. */
310 if (bfd->priv_nr == E1INP_SIGN_OML) {
311 sign_link =
312 line->ops->sign_link_up(&unit_data, line,
313 E1INP_SIGN_OML);
314 if (sign_link == NULL) {
315 LOGP(DINP, LOGL_ERROR,
Pablo Neira Ayusocd8d2e52011-07-02 17:05:21 +0200316 "Unable to set signal link, "
317 "closing socket.\n");
Pablo Neira Ayuso466c5462011-07-07 19:17:20 +0200318 ret = -EINVAL;
319 goto err;
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200320 }
321 } else if (bfd->priv_nr == E1INP_SIGN_RSL) {
Pablo Neira Ayuso3832c4f2011-07-07 17:47:26 +0200322 struct e1inp_ts *ts;
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200323 struct osmo_fd *newbfd;
Pablo Neira Ayuso3832c4f2011-07-07 17:47:26 +0200324 struct e1inp_line *new_line;
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200325
326 sign_link =
327 line->ops->sign_link_up(&unit_data, line,
328 E1INP_SIGN_RSL);
329 if (sign_link == NULL) {
Pablo Neira Ayusocd8d2e52011-07-02 17:05:21 +0200330 LOGP(DINP, LOGL_ERROR,
331 "Unable to set signal link, "
332 "closing socket.\n");
Pablo Neira Ayuso466c5462011-07-07 19:17:20 +0200333 ret = -EINVAL;
334 goto err;
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200335 }
Pablo Neira Ayusodb1c8a72011-07-08 15:12:03 +0200336 /* this is a bugtrap, the BSC should be using the
337 * virtual E1 line used by OML for this RSL link. */
338 if (sign_link->ts->line == line) {
339 LOGP(DINP, LOGL_ERROR,
340 "Fix your BSC, you should use the "
341 "E1 line used by the OML link for "
342 "your RSL link.\n");
343 return 0;
344 }
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200345 /* Finally, we know which OML link is associated with
346 * this RSL link, attach it to this socket. */
Pablo Neira Ayuso3832c4f2011-07-07 17:47:26 +0200347 bfd->data = new_line = sign_link->ts->line;
348 e1inp_line_get(new_line);
349 ts = &new_line->ts[E1INP_SIGN_RSL+unit_data.trx_id-1];
350 newbfd = &ts->driver.ipaccess.fd;
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200351
352 /* get rid of our old temporary bfd */
353 memcpy(newbfd, bfd, sizeof(*newbfd));
354 newbfd->priv_nr = E1INP_SIGN_RSL + unit_data.trx_id;
355 osmo_fd_unregister(bfd);
356 bfd->fd = -1;
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200357 osmo_fd_register(newbfd);
Pablo Neira Ayuso3832c4f2011-07-07 17:47:26 +0200358 /* now we can release the dummy RSL line. */
359 e1inp_line_put(line);
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200360 }
Pablo Neira Ayuso5a4b7c52011-06-07 14:07:48 +0200361 break;
Pablo Neira Ayuso466c5462011-07-07 19:17:20 +0200362 default:
363 LOGP(DINP, LOGL_ERROR, "Unknown IPA message type\n");
364 ret = -EINVAL;
365 goto err;
Pablo Neira Ayuso5a4b7c52011-06-07 14:07:48 +0200366 }
367 return 0;
Pablo Neira Ayuso466c5462011-07-07 19:17:20 +0200368err:
369 osmo_fd_unregister(bfd);
370 close(bfd->fd);
371 bfd->fd = -1;
Pablo Neira Ayuso3832c4f2011-07-07 17:47:26 +0200372 e1inp_line_put(line);
Pablo Neira Ayuso466c5462011-07-07 19:17:20 +0200373 return ret;
Pablo Neira Ayuso5a4b7c52011-06-07 14:07:48 +0200374}
375
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200376static int handle_ts1_read(struct osmo_fd *bfd)
377{
378 struct e1inp_line *line = bfd->data;
379 unsigned int ts_nr = bfd->priv_nr;
Pablo Neira Ayuso3832c4f2011-07-07 17:47:26 +0200380 struct e1inp_ts *e1i_ts = &line->ts[ts_nr-1];
Pablo Neira Ayuso5a4b7c52011-06-07 14:07:48 +0200381 struct e1inp_sign_link *link;
382 struct ipaccess_head *hh;
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200383 struct msgb *msg;
384 int ret = 0, error;
385
Pablo Neira Ayuso7a249402011-06-21 14:15:46 +0200386 error = ipa_msg_recv(bfd->fd, &msg);
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200387 if (error < 0)
388 return error;
389 else if (error == 0) {
Pablo Neira Ayuso466c5462011-07-07 19:17:20 +0200390 if (ipaccess_drop(bfd) >= 0) {
391 LOGP(DINP, LOGL_NOTICE, "Sign link vanished, "
392 "dead socket\n");
393 }
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200394 return error;
395 }
396 DEBUGP(DMI, "RX %u: %s\n", ts_nr, osmo_hexdump(msgb_l2(msg), msgb_l2len(msg)));
397
Pablo Neira Ayuso5a4b7c52011-06-07 14:07:48 +0200398 hh = (struct ipaccess_head *) msg->data;
399 if (hh->proto == IPAC_PROTO_IPACCESS) {
400 ipaccess_rcvmsg(line, msg, bfd);
401 msgb_free(msg);
402 return ret;
403 }
404 /* BIG FAT WARNING: bfd might no longer exist here, since ipaccess_rcvmsg()
405 * might have free'd it !!! */
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200406
Pablo Neira Ayuso5a4b7c52011-06-07 14:07:48 +0200407 link = e1inp_lookup_sign_link(e1i_ts, hh->proto, 0);
408 if (!link) {
409 LOGP(DINP, LOGL_ERROR, "no matching signalling link for "
410 "hh->proto=0x%02x\n", hh->proto);
411 msgb_free(msg);
412 return -EIO;
413 }
414 msg->dst = link;
415
416 /* XXX better use e1inp_ts_rx? */
Pablo Neira Ayusof163d232011-06-25 18:42:55 +0200417 if (!e1i_ts->line->ops->sign_link) {
Pablo Neira Ayuso5a4b7c52011-06-07 14:07:48 +0200418 LOGP(DINP, LOGL_ERROR, "Fix your application, "
419 "no action set for signalling messages.\n");
Pablo Neira Ayuso466c5462011-07-07 19:17:20 +0200420 ret = -EINVAL;
421 goto err;
Pablo Neira Ayuso5a4b7c52011-06-07 14:07:48 +0200422 }
Pablo Neira Ayuso466c5462011-07-07 19:17:20 +0200423 if (e1i_ts->line->ops->sign_link(msg) < 0) {
424 LOGP(DINP, LOGL_ERROR, "Bad signalling message,"
425 "closing socket.\n");
426 ret = -EINVAL;
427 goto err;
428 }
429 return ret;
430err:
431 osmo_fd_unregister(bfd);
432 close(bfd->fd);
433 bfd->fd = -1;
Pablo Neira Ayuso3832c4f2011-07-07 17:47:26 +0200434 e1inp_line_put(line);
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200435 return ret;
436}
437
438void ipaccess_prepend_header_ext(struct msgb *msg, int proto)
439{
440 struct ipaccess_head_ext *hh_ext;
441
442 /* prepend the osmo ip.access header extension */
443 hh_ext = (struct ipaccess_head_ext *) msgb_push(msg, sizeof(*hh_ext));
444 hh_ext->proto = proto;
445}
446
447void ipaccess_prepend_header(struct msgb *msg, int proto)
448{
449 struct ipaccess_head *hh;
450
451 /* prepend the ip.access header */
452 hh = (struct ipaccess_head *) msgb_push(msg, sizeof(*hh));
453 hh->len = htons(msg->len - sizeof(*hh));
454 hh->proto = proto;
455}
456
457static int ts_want_write(struct e1inp_ts *e1i_ts)
458{
459 e1i_ts->driver.ipaccess.fd.when |= BSC_FD_WRITE;
460
461 return 0;
462}
463
Pablo Neira Ayusoadd3ec82011-07-05 14:45:46 +0200464static void ipaccess_close(struct e1inp_sign_link *sign_link)
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200465{
Pablo Neira Ayusoadd3ec82011-07-05 14:45:46 +0200466 struct e1inp_ts *e1i_ts = sign_link->ts;
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200467 struct osmo_fd *bfd = &e1i_ts->driver.ipaccess.fd;
Pablo Neira Ayusoadd3ec82011-07-05 14:45:46 +0200468 e1inp_event(e1i_ts, S_INP_TEI_DN, sign_link->tei, sign_link->sapi);
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200469 osmo_fd_unregister(bfd);
470 close(bfd->fd);
471 bfd->fd = -1;
472}
473
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200474static void timeout_ts1_write(void *data)
475{
476 struct e1inp_ts *e1i_ts = (struct e1inp_ts *)data;
477
478 /* trigger write of ts1, due to tx delay timer */
479 ts_want_write(e1i_ts);
480}
481
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200482static int __handle_ts1_write(struct osmo_fd *bfd, struct e1inp_line *line)
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200483{
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200484 unsigned int ts_nr = bfd->priv_nr;
485 struct e1inp_ts *e1i_ts = &line->ts[ts_nr-1];
486 struct e1inp_sign_link *sign_link;
487 struct msgb *msg;
488 uint8_t proto;
489 int ret;
490
491 bfd->when &= ~BSC_FD_WRITE;
492
493 /* get the next msg for this timeslot */
494 msg = e1inp_tx_ts(e1i_ts, &sign_link);
495 if (!msg) {
496 /* no message after tx delay timer */
497 return 0;
498 }
499
500 switch (sign_link->type) {
501 case E1INP_SIGN_OML:
502 proto = IPAC_PROTO_OML;
503 break;
504 case E1INP_SIGN_RSL:
505 proto = IPAC_PROTO_RSL;
506 break;
507 default:
508 msgb_free(msg);
509 bfd->when |= BSC_FD_WRITE; /* come back for more msg */
510 return -EINVAL;
511 }
512
513 msg->l2h = msg->data;
Pablo Neira Ayusob9ed7e32011-07-05 18:31:59 +0200514 ipaccess_prepend_header(msg, sign_link->tei);
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200515
516 DEBUGP(DMI, "TX %u: %s\n", ts_nr, osmo_hexdump(msg->l2h, msgb_l2len(msg)));
517
518 ret = send(bfd->fd, msg->data, msg->len, 0);
519 msgb_free(msg);
520
521 /* set tx delay timer for next event */
522 e1i_ts->sign.tx_timer.cb = timeout_ts1_write;
523 e1i_ts->sign.tx_timer.data = e1i_ts;
524
525 /* Reducing this might break the nanoBTS 900 init. */
526 osmo_timer_schedule(&e1i_ts->sign.tx_timer, 0, e1i_ts->sign.delay);
527
528 return ret;
529}
530
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200531int handle_ts1_write(struct osmo_fd *bfd)
532{
533 struct e1inp_line *line = bfd->data;
534
535 return __handle_ts1_write(bfd, line);
536}
537
538int ipaccess_bts_write_cb(struct ipa_client_link *link)
539{
540 struct e1inp_line *line = link->line;
541
542 return __handle_ts1_write(link->ofd, line);
543}
544
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200545/* callback from select.c in case one of the fd's can be read/written */
546static int ipaccess_fd_cb(struct osmo_fd *bfd, unsigned int what)
547{
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200548 int rc = 0;
549
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200550 if (what & BSC_FD_READ)
551 rc = handle_ts1_read(bfd);
552 if (what & BSC_FD_WRITE)
553 rc = handle_ts1_write(bfd);
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200554
555 return rc;
556}
557
Pablo Neira Ayusoc00ee732011-06-21 12:22:49 +0200558static int ipaccess_line_update(struct e1inp_line *line,
559 enum e1inp_line_role role, const char *addr);
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200560
561struct e1inp_driver ipaccess_driver = {
562 .name = "ipa",
563 .want_write = ts_want_write,
564 .line_update = ipaccess_line_update,
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200565 .close = ipaccess_close,
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200566 .default_delay = 0,
567};
568
569/* callback of the OML listening filedescriptor */
Pablo Neira Ayuso986191f2011-06-21 19:56:26 +0200570static int ipaccess_bsc_oml_cb(struct ipa_server_link *link, int fd)
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200571{
572 int ret;
573 int idx = 0;
574 int i;
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200575 struct e1inp_line *line;
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200576 struct e1inp_ts *e1i_ts;
577 struct osmo_fd *bfd;
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200578
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200579 /* clone virtual E1 line for this new OML link. */
Pablo Neira Ayuso3832c4f2011-07-07 17:47:26 +0200580 line = e1inp_line_clone(tall_ipa_ctx, link->line);
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200581 if (line == NULL) {
582 LOGP(DINP, LOGL_ERROR, "could not clone E1 line\n");
583 return -1;
584 }
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200585
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200586 /* create virrtual E1 timeslots for signalling */
Pablo Neira Ayuso59301852011-06-27 15:44:23 +0200587 e1inp_ts_config_sign(&line->ts[E1INP_SIGN_OML-1], line);
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200588
589 /* initialize the fds */
590 for (i = 0; i < ARRAY_SIZE(line->ts); ++i)
591 line->ts[i].driver.ipaccess.fd.fd = -1;
592
593 e1i_ts = &line->ts[idx];
594
Pablo Neira Ayuso93c62012011-06-26 19:12:47 +0200595 bfd = &e1i_ts->driver.ipaccess.fd;
Pablo Neira Ayuso986191f2011-06-21 19:56:26 +0200596 bfd->fd = fd;
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200597 bfd->data = line;
Pablo Neira Ayusof163d232011-06-25 18:42:55 +0200598 bfd->priv_nr = E1INP_SIGN_OML;
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200599 bfd->cb = ipaccess_fd_cb;
600 bfd->when = BSC_FD_READ;
601 ret = osmo_fd_register(bfd);
602 if (ret < 0) {
603 LOGP(DINP, LOGL_ERROR, "could not register FD\n");
604 close(bfd->fd);
Pablo Neira Ayuso3832c4f2011-07-07 17:47:26 +0200605 e1inp_line_put(line);
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200606 return ret;
607 }
608
609 /* Request ID. FIXME: request LOCATION, HW/SW VErsion, Unit Name, Serno */
610 ret = ipaccess_send_id_req(bfd->fd);
611
612 return ret;
613}
614
Pablo Neira Ayuso986191f2011-06-21 19:56:26 +0200615static int ipaccess_bsc_rsl_cb(struct ipa_server_link *link, int fd)
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200616{
Pablo Neira Ayuso3832c4f2011-07-07 17:47:26 +0200617 struct e1inp_line *line;
618 struct e1inp_ts *e1i_ts;
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200619 struct osmo_fd *bfd;
Pablo Neira Ayuso3832c4f2011-07-07 17:47:26 +0200620 int i, ret;
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200621
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200622 /* We don't know yet which OML link to associate it with. Thus, we
Pablo Neira Ayuso3832c4f2011-07-07 17:47:26 +0200623 * allocate a temporary E1 line until we have received ID. */
624 line = e1inp_line_clone(tall_ipa_ctx, link->line);
625 if (line == NULL) {
626 LOGP(DINP, LOGL_ERROR, "could not clone E1 line\n");
627 return -1;
628 }
629 /* initialize the fds */
630 for (i = 0; i < ARRAY_SIZE(line->ts); ++i)
631 line->ts[i].driver.ipaccess.fd.fd = -1;
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200632
Pablo Neira Ayuso3832c4f2011-07-07 17:47:26 +0200633 /* we need this to initialize this in case to avoid crashes in case
634 * that the socket is closed before we've seen an ID_RESP. */
635 e1inp_ts_config_sign(&line->ts[E1INP_SIGN_OML-1], line);
636
637 e1i_ts = &line->ts[E1INP_SIGN_RSL-1];
638
639 bfd = &e1i_ts->driver.ipaccess.fd;
Pablo Neira Ayuso986191f2011-06-21 19:56:26 +0200640 bfd->fd = fd;
Pablo Neira Ayuso3832c4f2011-07-07 17:47:26 +0200641 bfd->data = line;
Pablo Neira Ayusof163d232011-06-25 18:42:55 +0200642 bfd->priv_nr = E1INP_SIGN_RSL;
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200643 bfd->cb = ipaccess_fd_cb;
644 bfd->when = BSC_FD_READ;
645 ret = osmo_fd_register(bfd);
646 if (ret < 0) {
647 LOGP(DINP, LOGL_ERROR, "could not register FD\n");
648 close(bfd->fd);
Pablo Neira Ayuso3832c4f2011-07-07 17:47:26 +0200649 e1inp_line_put(line);
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200650 return ret;
651 }
652 /* Request ID. FIXME: request LOCATION, HW/SW VErsion, Unit Name, Serno */
653 ret = ipaccess_send_id_req(bfd->fd);
654
655 return 0;
656}
657
Pablo Neira Ayusodfafe682011-07-02 14:32:32 +0200658static struct msgb *abis_msgb_alloc(int headroom)
659{
660 struct msgb *nmsg;
661
662 headroom += sizeof(struct ipaccess_head);
663
664 nmsg = msgb_alloc_headroom(1200 + headroom, headroom, "dummy BTS");
665 if (!nmsg)
666 return NULL;
667 return nmsg;
668}
669
670static void abis_push_ipa(struct msgb *msg, uint8_t proto)
671{
672 struct ipaccess_head *nhh;
673
674 msg->l2h = msg->data;
675 nhh = (struct ipaccess_head *) msgb_push(msg, sizeof(*nhh));
676 nhh->proto = proto;
677 nhh->len = htons(msgb_l2len(msg));
678}
679
680static struct msgb *
681ipa_bts_id_resp(struct ipaccess_unit *dev, uint8_t *data, int len)
682{
683 struct msgb *nmsg;
684 char str[64];
685 uint8_t *tag;
686
687 nmsg = abis_msgb_alloc(0);
688 if (!nmsg)
689 return NULL;
690
691 *msgb_put(nmsg, 1) = IPAC_MSGT_ID_RESP;
692 while (len) {
693 if (len < 2) {
694 LOGP(DINP, LOGL_NOTICE,
695 "Short read of ipaccess tag\n");
696 msgb_free(nmsg);
697 return NULL;
698 }
699 switch (data[1]) {
700 case IPAC_IDTAG_UNIT:
701 sprintf(str, "%u/%u/%u",
702 dev->site_id, dev->bts_id, dev->trx_id);
703 break;
704 case IPAC_IDTAG_MACADDR:
705 sprintf(str, "%02x:%02x:%02x:%02x:%02x:%02x",
706 dev->mac_addr[0], dev->mac_addr[1],
707 dev->mac_addr[2], dev->mac_addr[3],
708 dev->mac_addr[4], dev->mac_addr[5]);
709 break;
710 case IPAC_IDTAG_LOCATION1:
711 strcpy(str, dev->location1);
712 break;
713 case IPAC_IDTAG_LOCATION2:
714 strcpy(str, dev->location2);
715 break;
716 case IPAC_IDTAG_EQUIPVERS:
717 strcpy(str, dev->equipvers);
718 break;
719 case IPAC_IDTAG_SWVERSION:
720 strcpy(str, dev->swversion);
721 break;
722 case IPAC_IDTAG_UNITNAME:
723 sprintf(str, "%s-%02x-%02x-%02x-%02x-%02x-%02x",
724 dev->unit_name,
725 dev->mac_addr[0], dev->mac_addr[1],
726 dev->mac_addr[2], dev->mac_addr[3],
727 dev->mac_addr[4], dev->mac_addr[5]);
728 break;
729 case IPAC_IDTAG_SERNR:
730 strcpy(str, dev->serno);
731 break;
732 default:
733 LOGP(DINP, LOGL_NOTICE,
734 "Unknown ipaccess tag 0x%02x\n", *data);
735 msgb_free(nmsg);
736 return NULL;
737 }
738 LOGP(DINP, LOGL_INFO, " tag %d: %s\n", data[1], str);
739 tag = msgb_put(nmsg, 3 + strlen(str) + 1);
740 tag[0] = 0x00;
741 tag[1] = 1 + strlen(str) + 1;
742 tag[2] = data[1];
743 memcpy(tag + 3, str, strlen(str) + 1);
744 data += 2;
745 len -= 2;
746 }
747 abis_push_ipa(nmsg, IPAC_PROTO_IPACCESS);
748 return nmsg;
749}
750
751static struct msgb *ipa_bts_id_ack(void)
752{
753 struct msgb *nmsg2;
754
755 nmsg2 = abis_msgb_alloc(0);
756 if (!nmsg2)
757 return NULL;
758
759 *msgb_put(nmsg2, 1) = IPAC_MSGT_ID_ACK;
760 abis_push_ipa(nmsg2, IPAC_PROTO_IPACCESS);
761
762 return nmsg2;
763}
764
Pablo Neira Ayusoc07a8e72011-06-21 19:50:04 +0200765static int ipaccess_bts_cb(struct ipa_client_link *link, struct msgb *msg)
Pablo Neira Ayuso591ddad2011-06-21 18:16:42 +0200766{
767 struct ipaccess_head *hh = (struct ipaccess_head *) msg->data;
768 struct e1inp_ts *e1i_ts = NULL;
769 struct e1inp_sign_link *sign_link;
770
771 /* special handling for IPA CCM. */
772 if (hh->proto == IPAC_PROTO_IPACCESS) {
773 uint8_t msg_type = *(msg->l2h);
774
775 /* ping, pong and acknowledgment cases. */
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200776 ipaccess_rcvmsg_bts_base(msg, link->ofd);
Pablo Neira Ayuso591ddad2011-06-21 18:16:42 +0200777
778 /* this is a request for identification from the BSC. */
779 if (msg_type == IPAC_MSGT_ID_GET) {
Pablo Neira Ayusodfafe682011-07-02 14:32:32 +0200780 struct e1inp_sign_link *sign_link;
781 struct msgb *rmsg;
782 uint8_t *data = msgb_l2(msg);
783 int len = msgb_l2len(msg);
784
Pablo Neira Ayuso591ddad2011-06-21 18:16:42 +0200785 LOGP(DINP, LOGL_NOTICE, "received ID get\n");
Pablo Neira Ayusof163d232011-06-25 18:42:55 +0200786 if (!link->line->ops->sign_link_up) {
Pablo Neira Ayusocd8d2e52011-07-02 17:05:21 +0200787 LOGP(DINP, LOGL_ERROR,
788 "Unable to set signal link, "
789 "closing socket.\n");
790 osmo_fd_unregister(link->ofd);
791 close(link->ofd->fd);
792 link->ofd->fd = -1;
Pablo Neira Ayuso591ddad2011-06-21 18:16:42 +0200793 return -EINVAL;
794 }
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200795 sign_link = link->line->ops->sign_link_up(msg,
796 link->line,
797 link->ofd->priv_nr);
Pablo Neira Ayusodfafe682011-07-02 14:32:32 +0200798 if (sign_link == NULL) {
799 LOGP(DINP, LOGL_ERROR,
Pablo Neira Ayusocd8d2e52011-07-02 17:05:21 +0200800 "Unable to set signal link, "
801 "closing socket.\n");
802 osmo_fd_unregister(link->ofd);
803 close(link->ofd->fd);
804 link->ofd->fd = -1;
Pablo Neira Ayusodfafe682011-07-02 14:32:32 +0200805 return -EINVAL;
806 }
807 rmsg = ipa_bts_id_resp(link->line->ops->data,
808 data + 1, len - 1);
809 ipaccess_send(link->ofd->fd, rmsg->data, rmsg->len);
810 msgb_free(rmsg);
811
812 /* send ID_ACK. */
813 rmsg = ipa_bts_id_ack();
814 ipaccess_send(link->ofd->fd, rmsg->data, rmsg->len);
815 msgb_free(rmsg);
Pablo Neira Ayuso591ddad2011-06-21 18:16:42 +0200816 }
817 return 0;
818 } else if (link->port == IPA_TCP_PORT_OML)
819 e1i_ts = &link->line->ts[0];
820 else if (link->port == IPA_TCP_PORT_RSL)
821 e1i_ts = &link->line->ts[1];
822
823 /* look up for some existing signaling link. */
824 sign_link = e1inp_lookup_sign_link(e1i_ts, hh->proto, 0);
825 if (sign_link == NULL) {
826 LOGP(DINP, LOGL_ERROR, "no matching signalling link for "
827 "hh->proto=0x%02x\n", hh->proto);
828 msgb_free(msg);
829 return -EIO;
830 }
831 msg->dst = sign_link;
832
833 /* XXX better use e1inp_ts_rx? */
Pablo Neira Ayusof163d232011-06-25 18:42:55 +0200834 if (!link->line->ops->sign_link) {
Pablo Neira Ayuso591ddad2011-06-21 18:16:42 +0200835 LOGP(DINP, LOGL_ERROR, "Fix your application, "
836 "no action set for signalling messages.\n");
837 return -ENOENT;
838 }
Pablo Neira Ayusodbd82fb2011-07-05 15:29:23 +0200839 link->line->ops->sign_link(msg);
Pablo Neira Ayuso591ddad2011-06-21 18:16:42 +0200840 return 0;
841}
842
Pablo Neira Ayusoc00ee732011-06-21 12:22:49 +0200843static int ipaccess_line_update(struct e1inp_line *line,
844 enum e1inp_line_role role, const char *addr)
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200845{
846 int ret = -ENOENT;
847
848 switch(role) {
Pablo Neira Ayuso986191f2011-06-21 19:56:26 +0200849 case E1INP_LINE_R_BSC: {
850 struct ipa_server_link *oml_link, *rsl_link;
851
Pablo Neira Ayuso96e81282011-06-09 15:06:11 +0200852 LOGP(DINP, LOGL_NOTICE, "enabling ipaccess BSC mode\n");
853
Pablo Neira Ayuso986191f2011-06-21 19:56:26 +0200854 oml_link = ipa_server_link_create(tall_ipa_ctx, line,
855 "0.0.0.0", IPA_TCP_PORT_OML,
Pablo Neira Ayusoe009f4a2011-06-23 13:36:34 +0200856 ipaccess_bsc_oml_cb, NULL);
Pablo Neira Ayuso986191f2011-06-21 19:56:26 +0200857 if (oml_link == NULL) {
858 LOGP(DINP, LOGL_ERROR, "cannot create OML "
859 "BSC link: %s\n", strerror(errno));
860 return -ENOMEM;
Pablo Neira Ayusof67471f2011-06-07 11:25:49 +0200861 }
Pablo Neira Ayuso986191f2011-06-21 19:56:26 +0200862 if (ipa_server_link_open(oml_link) < 0) {
863 LOGP(DINP, LOGL_ERROR, "cannot open OML BSC link: %s\n",
864 strerror(errno));
865 ipa_server_link_close(oml_link);
866 ipa_server_link_destroy(oml_link);
867 return -EIO;
Pablo Neira Ayusof67471f2011-06-07 11:25:49 +0200868 }
Pablo Neira Ayuso986191f2011-06-21 19:56:26 +0200869 rsl_link = ipa_server_link_create(tall_ipa_ctx, line,
870 "0.0.0.0", IPA_TCP_PORT_RSL,
Pablo Neira Ayusoe009f4a2011-06-23 13:36:34 +0200871 ipaccess_bsc_rsl_cb, NULL);
Pablo Neira Ayuso986191f2011-06-21 19:56:26 +0200872 if (rsl_link == NULL) {
873 LOGP(DINP, LOGL_ERROR, "cannot create RSL "
874 "BSC link: %s\n", strerror(errno));
875 return -ENOMEM;
876 }
877 if (ipa_server_link_open(rsl_link) < 0) {
878 LOGP(DINP, LOGL_ERROR, "cannot open RSL BSC link: %s\n",
879 strerror(errno));
880 ipa_server_link_close(rsl_link);
881 ipa_server_link_destroy(rsl_link);
882 return -EIO;
883 }
884 ret = 0;
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200885 break;
Pablo Neira Ayuso986191f2011-06-21 19:56:26 +0200886 }
Pablo Neira Ayuso96e81282011-06-09 15:06:11 +0200887 case E1INP_LINE_R_BTS: {
Pablo Neira Ayusoc07a8e72011-06-21 19:50:04 +0200888 struct ipa_client_link *link, *rsl_link;
Pablo Neira Ayuso96e81282011-06-09 15:06:11 +0200889
890 LOGP(DINP, LOGL_NOTICE, "enabling ipaccess BTS mode\n");
891
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200892 link = ipa_client_link_create(tall_ipa_ctx,
893 &line->ts[E1INP_SIGN_OML-1],
894 "ipa", E1INP_SIGN_OML,
Pablo Neira Ayuso591ddad2011-06-21 18:16:42 +0200895 addr, IPA_TCP_PORT_OML,
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200896 ipaccess_bts_cb,
897 ipaccess_bts_write_cb,
898 NULL);
Pablo Neira Ayuso96e81282011-06-09 15:06:11 +0200899 if (link == NULL) {
Pablo Neira Ayuso29465d32011-06-21 14:21:33 +0200900 LOGP(DINP, LOGL_ERROR, "cannot create OML "
901 "BTS link: %s\n", strerror(errno));
Pablo Neira Ayuso96e81282011-06-09 15:06:11 +0200902 return -ENOMEM;
903 }
904 if (ipa_client_link_open(link) < 0) {
Pablo Neira Ayuso29465d32011-06-21 14:21:33 +0200905 LOGP(DINP, LOGL_ERROR, "cannot open OML BTS link: %s\n",
906 strerror(errno));
Pablo Neira Ayuso96e81282011-06-09 15:06:11 +0200907 ipa_client_link_close(link);
908 ipa_client_link_destroy(link);
909 return -EIO;
910 }
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200911 rsl_link = ipa_client_link_create(tall_ipa_ctx,
912 &line->ts[E1INP_SIGN_RSL-1],
913 "ipa", E1INP_SIGN_RSL,
Pablo Neira Ayuso591ddad2011-06-21 18:16:42 +0200914 addr, IPA_TCP_PORT_RSL,
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200915 ipaccess_bts_cb,
916 ipaccess_bts_write_cb,
917 NULL);
Pablo Neira Ayuso29465d32011-06-21 14:21:33 +0200918 if (rsl_link == NULL) {
919 LOGP(DINP, LOGL_ERROR, "cannot create RSL "
920 "BTS link: %s\n", strerror(errno));
921 return -ENOMEM;
922 }
923 if (ipa_client_link_open(rsl_link) < 0) {
924 LOGP(DINP, LOGL_ERROR, "cannot open RSL BTS link: %s\n",
925 strerror(errno));
926 ipa_client_link_close(rsl_link);
927 ipa_client_link_destroy(rsl_link);
928 return -EIO;
929 }
Pablo Neira Ayuso96e81282011-06-09 15:06:11 +0200930 ret = 0;
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200931 break;
Pablo Neira Ayuso96e81282011-06-09 15:06:11 +0200932 }
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200933 default:
934 break;
935 }
936 return ret;
937}
938
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200939void e1inp_ipaccess_init(void)
940{
Pablo Neira Ayuso54b49792011-06-07 12:15:26 +0200941 tall_ipa_ctx = talloc_named_const(libosmo_abis_ctx, 1, "ipa");
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200942 e1inp_driver_register(&ipaccess_driver);
943}