blob: 07c860717556dac4f1f813fdb86a61ee6d798947 [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>
Harald Welte71d87b22011-07-18 14:49:56 +020042#include <osmocom/core/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) {
Harald Weltecc2241b2011-07-19 16:06:06 +0200112 LOGP(DLMI, LOGL_ERROR, "The tag does not fit: %d\n", t_len);
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200113 return -EINVAL;
114 }
115
Harald Weltecc2241b2011-07-19 16:06:06 +0200116 DEBUGPC(DLMI, "%s='%s' ", ipaccess_idtag_name(t_tag), cur);
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200117
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) {
Harald Weltecc2241b2011-07-19 16:06:06 +0200168 LOGP(DLINP, LOGL_ERROR, "ipaccess_send: short write\n");
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200169 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:
Harald Weltecc2241b2011-07-19 16:06:06 +0200202 DEBUGP(DLMI, "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:
Harald Weltecc2241b2011-07-19 16:06:06 +0200206 DEBUGP(DLMI, "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:
Harald Weltecc2241b2011-07-19 16:06:06 +0200226 DEBUGP(DLMI, "PONG!\n");
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200227 break;
228 case IPAC_MSGT_ID_ACK:
Harald Weltecc2241b2011-07-19 16:06:06 +0200229 DEBUGP(DLMI, "ID_ACK\n");
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200230 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) {
Harald Weltecc2241b2011-07-19 16:06:06 +0200245 LOGP(DLINP, LOGL_ERROR, "Forcing socket shutdown with "
Pablo Neira Ayuso466c5462011-07-07 19:17:20 +0200246 "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:
Harald Weltecc2241b2011-07-19 16:06:06 +0200274 DEBUGP(DLMI, "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);
Harald Weltecc2241b2011-07-19 16:06:06 +0200278 DEBUGP(DLMI, "\n");
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200279 if (ret < 0) {
Harald Weltecc2241b2011-07-19 16:06:06 +0200280 LOGP(DLINP, 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)) {
Harald Weltecc2241b2011-07-19 16:06:06 +0200286 LOGP(DLINP, LOGL_ERROR, "IPA response message "
Pablo Neira Ayuso466c5462011-07-07 19:17:20 +0200287 "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) {
Harald Weltecc2241b2011-07-19 16:06:06 +0200294 LOGP(DLINP, LOGL_ERROR, "IPA response message "
Pablo Neira Ayuso466c5462011-07-07 19:17:20 +0200295 "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) {
Harald Weltecc2241b2011-07-19 16:06:06 +0200304 LOGP(DLINP, LOGL_ERROR,
Pablo Neira Ayusocd8d2e52011-07-02 17:05:21 +0200305 "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) {
Harald Weltecc2241b2011-07-19 16:06:06 +0200315 LOGP(DLINP, 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) {
Harald Weltecc2241b2011-07-19 16:06:06 +0200330 LOGP(DLINP, LOGL_ERROR,
Pablo Neira Ayusocd8d2e52011-07-02 17:05:21 +0200331 "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) {
Harald Weltecc2241b2011-07-19 16:06:06 +0200339 LOGP(DLINP, LOGL_ERROR,
Pablo Neira Ayusodb1c8a72011-07-08 15:12:03 +0200340 "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:
Harald Weltecc2241b2011-07-19 16:06:06 +0200363 LOGP(DLINP, LOGL_ERROR, "Unknown IPA message type\n");
Pablo Neira Ayuso466c5462011-07-07 19:17:20 +0200364 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) {
Harald Weltecc2241b2011-07-19 16:06:06 +0200391 LOGP(DLINP, LOGL_NOTICE, "Sign link vanished, "
Pablo Neira Ayuso466c5462011-07-07 19:17:20 +0200392 "dead socket\n");
393 }
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200394 return error;
395 }
Harald Weltecc2241b2011-07-19 16:06:06 +0200396 DEBUGP(DLMI, "RX %u: %s\n", ts_nr, osmo_hexdump(msgb_l2(msg), msgb_l2len(msg)));
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200397
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) {
Harald Weltecc2241b2011-07-19 16:06:06 +0200409 LOGP(DLINP, LOGL_ERROR, "no matching signalling link for "
Pablo Neira Ayuso5a4b7c52011-06-07 14:07:48 +0200410 "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) {
Harald Weltecc2241b2011-07-19 16:06:06 +0200418 LOGP(DLINP, LOGL_ERROR, "Fix your application, "
Pablo Neira Ayuso5a4b7c52011-06-07 14:07:48 +0200419 "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) {
Harald Weltecc2241b2011-07-19 16:06:06 +0200424 LOGP(DLINP, LOGL_ERROR, "Bad signalling message,"
Pablo Neira Ayuso466c5462011-07-07 19:17:20 +0200425 "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
Harald Weltecc2241b2011-07-19 16:06:06 +0200516 DEBUGP(DLMI, "TX %u: %s\n", ts_nr, osmo_hexdump(msg->l2h, msgb_l2len(msg)));
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200517
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 Ayuso88136fc2011-07-08 16:21:55 +0200531static int handle_ts1_write(struct osmo_fd *bfd)
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200532{
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 */
Pablo Neira Ayuso495ddb62011-07-08 21:04:11 +0200546int ipaccess_fd_cb(struct osmo_fd *bfd, unsigned int what)
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200547{
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) {
Harald Weltecc2241b2011-07-19 16:06:06 +0200582 LOGP(DLINP, LOGL_ERROR, "could not clone E1 line\n");
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200583 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) {
Harald Weltecc2241b2011-07-19 16:06:06 +0200603 LOGP(DLINP, LOGL_ERROR, "could not register FD\n");
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200604 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) {
Harald Weltecc2241b2011-07-19 16:06:06 +0200626 LOGP(DLINP, LOGL_ERROR, "could not clone E1 line\n");
Pablo Neira Ayuso3832c4f2011-07-07 17:47:26 +0200627 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) {
Harald Weltecc2241b2011-07-19 16:06:06 +0200647 LOGP(DLINP, LOGL_ERROR, "could not register FD\n");
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200648 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 *
659ipa_bts_id_resp(struct ipaccess_unit *dev, uint8_t *data, int len)
660{
661 struct msgb *nmsg;
662 char str[64];
663 uint8_t *tag;
664
Pablo Neira Ayuso88136fc2011-07-08 16:21:55 +0200665 nmsg = ipa_msg_alloc(0);
Pablo Neira Ayusodfafe682011-07-02 14:32:32 +0200666 if (!nmsg)
667 return NULL;
668
669 *msgb_put(nmsg, 1) = IPAC_MSGT_ID_RESP;
670 while (len) {
671 if (len < 2) {
Harald Weltecc2241b2011-07-19 16:06:06 +0200672 LOGP(DLINP, LOGL_NOTICE,
Pablo Neira Ayusodfafe682011-07-02 14:32:32 +0200673 "Short read of ipaccess tag\n");
674 msgb_free(nmsg);
675 return NULL;
676 }
677 switch (data[1]) {
678 case IPAC_IDTAG_UNIT:
679 sprintf(str, "%u/%u/%u",
680 dev->site_id, dev->bts_id, dev->trx_id);
681 break;
682 case IPAC_IDTAG_MACADDR:
683 sprintf(str, "%02x:%02x:%02x:%02x:%02x:%02x",
684 dev->mac_addr[0], dev->mac_addr[1],
685 dev->mac_addr[2], dev->mac_addr[3],
686 dev->mac_addr[4], dev->mac_addr[5]);
687 break;
688 case IPAC_IDTAG_LOCATION1:
689 strcpy(str, dev->location1);
690 break;
691 case IPAC_IDTAG_LOCATION2:
692 strcpy(str, dev->location2);
693 break;
694 case IPAC_IDTAG_EQUIPVERS:
695 strcpy(str, dev->equipvers);
696 break;
697 case IPAC_IDTAG_SWVERSION:
698 strcpy(str, dev->swversion);
699 break;
700 case IPAC_IDTAG_UNITNAME:
701 sprintf(str, "%s-%02x-%02x-%02x-%02x-%02x-%02x",
702 dev->unit_name,
703 dev->mac_addr[0], dev->mac_addr[1],
704 dev->mac_addr[2], dev->mac_addr[3],
705 dev->mac_addr[4], dev->mac_addr[5]);
706 break;
707 case IPAC_IDTAG_SERNR:
708 strcpy(str, dev->serno);
709 break;
710 default:
Harald Weltecc2241b2011-07-19 16:06:06 +0200711 LOGP(DLINP, LOGL_NOTICE,
Pablo Neira Ayusodfafe682011-07-02 14:32:32 +0200712 "Unknown ipaccess tag 0x%02x\n", *data);
713 msgb_free(nmsg);
714 return NULL;
715 }
Harald Weltecc2241b2011-07-19 16:06:06 +0200716 LOGP(DLINP, LOGL_INFO, " tag %d: %s\n", data[1], str);
Pablo Neira Ayusodfafe682011-07-02 14:32:32 +0200717 tag = msgb_put(nmsg, 3 + strlen(str) + 1);
718 tag[0] = 0x00;
719 tag[1] = 1 + strlen(str) + 1;
720 tag[2] = data[1];
721 memcpy(tag + 3, str, strlen(str) + 1);
722 data += 2;
723 len -= 2;
724 }
Pablo Neira Ayuso88136fc2011-07-08 16:21:55 +0200725 ipa_msg_push_header(nmsg, IPAC_PROTO_IPACCESS);
Pablo Neira Ayusodfafe682011-07-02 14:32:32 +0200726 return nmsg;
727}
728
729static struct msgb *ipa_bts_id_ack(void)
730{
731 struct msgb *nmsg2;
732
Pablo Neira Ayuso88136fc2011-07-08 16:21:55 +0200733 nmsg2 = ipa_msg_alloc(0);
Pablo Neira Ayusodfafe682011-07-02 14:32:32 +0200734 if (!nmsg2)
735 return NULL;
736
737 *msgb_put(nmsg2, 1) = IPAC_MSGT_ID_ACK;
Pablo Neira Ayuso88136fc2011-07-08 16:21:55 +0200738 ipa_msg_push_header(nmsg2, IPAC_PROTO_IPACCESS);
Pablo Neira Ayusodfafe682011-07-02 14:32:32 +0200739
740 return nmsg2;
741}
742
Pablo Neira Ayusoc07a8e72011-06-21 19:50:04 +0200743static int ipaccess_bts_cb(struct ipa_client_link *link, struct msgb *msg)
Pablo Neira Ayuso591ddad2011-06-21 18:16:42 +0200744{
745 struct ipaccess_head *hh = (struct ipaccess_head *) msg->data;
746 struct e1inp_ts *e1i_ts = NULL;
747 struct e1inp_sign_link *sign_link;
748
749 /* special handling for IPA CCM. */
750 if (hh->proto == IPAC_PROTO_IPACCESS) {
751 uint8_t msg_type = *(msg->l2h);
752
753 /* ping, pong and acknowledgment cases. */
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200754 ipaccess_rcvmsg_bts_base(msg, link->ofd);
Pablo Neira Ayuso591ddad2011-06-21 18:16:42 +0200755
756 /* this is a request for identification from the BSC. */
757 if (msg_type == IPAC_MSGT_ID_GET) {
Pablo Neira Ayusodfafe682011-07-02 14:32:32 +0200758 struct e1inp_sign_link *sign_link;
759 struct msgb *rmsg;
760 uint8_t *data = msgb_l2(msg);
761 int len = msgb_l2len(msg);
762
Harald Weltecc2241b2011-07-19 16:06:06 +0200763 LOGP(DLINP, LOGL_NOTICE, "received ID get\n");
Pablo Neira Ayusof163d232011-06-25 18:42:55 +0200764 if (!link->line->ops->sign_link_up) {
Harald Weltecc2241b2011-07-19 16:06:06 +0200765 LOGP(DLINP, LOGL_ERROR,
Pablo Neira Ayusocd8d2e52011-07-02 17:05:21 +0200766 "Unable to set signal link, "
767 "closing socket.\n");
768 osmo_fd_unregister(link->ofd);
769 close(link->ofd->fd);
770 link->ofd->fd = -1;
Pablo Neira Ayuso591ddad2011-06-21 18:16:42 +0200771 return -EINVAL;
772 }
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200773 sign_link = link->line->ops->sign_link_up(msg,
774 link->line,
775 link->ofd->priv_nr);
Pablo Neira Ayusodfafe682011-07-02 14:32:32 +0200776 if (sign_link == NULL) {
Harald Weltecc2241b2011-07-19 16:06:06 +0200777 LOGP(DLINP, LOGL_ERROR,
Pablo Neira Ayusocd8d2e52011-07-02 17:05:21 +0200778 "Unable to set signal link, "
779 "closing socket.\n");
780 osmo_fd_unregister(link->ofd);
781 close(link->ofd->fd);
782 link->ofd->fd = -1;
Pablo Neira Ayusodfafe682011-07-02 14:32:32 +0200783 return -EINVAL;
784 }
785 rmsg = ipa_bts_id_resp(link->line->ops->data,
786 data + 1, len - 1);
787 ipaccess_send(link->ofd->fd, rmsg->data, rmsg->len);
788 msgb_free(rmsg);
789
790 /* send ID_ACK. */
791 rmsg = ipa_bts_id_ack();
792 ipaccess_send(link->ofd->fd, rmsg->data, rmsg->len);
793 msgb_free(rmsg);
Pablo Neira Ayuso591ddad2011-06-21 18:16:42 +0200794 }
795 return 0;
796 } else if (link->port == IPA_TCP_PORT_OML)
797 e1i_ts = &link->line->ts[0];
798 else if (link->port == IPA_TCP_PORT_RSL)
799 e1i_ts = &link->line->ts[1];
800
801 /* look up for some existing signaling link. */
802 sign_link = e1inp_lookup_sign_link(e1i_ts, hh->proto, 0);
803 if (sign_link == NULL) {
Harald Weltecc2241b2011-07-19 16:06:06 +0200804 LOGP(DLINP, LOGL_ERROR, "no matching signalling link for "
Pablo Neira Ayuso591ddad2011-06-21 18:16:42 +0200805 "hh->proto=0x%02x\n", hh->proto);
806 msgb_free(msg);
807 return -EIO;
808 }
809 msg->dst = sign_link;
810
811 /* XXX better use e1inp_ts_rx? */
Pablo Neira Ayusof163d232011-06-25 18:42:55 +0200812 if (!link->line->ops->sign_link) {
Harald Weltecc2241b2011-07-19 16:06:06 +0200813 LOGP(DLINP, LOGL_ERROR, "Fix your application, "
Pablo Neira Ayuso591ddad2011-06-21 18:16:42 +0200814 "no action set for signalling messages.\n");
815 return -ENOENT;
816 }
Pablo Neira Ayusodbd82fb2011-07-05 15:29:23 +0200817 link->line->ops->sign_link(msg);
Pablo Neira Ayuso591ddad2011-06-21 18:16:42 +0200818 return 0;
819}
820
Pablo Neira Ayusoc00ee732011-06-21 12:22:49 +0200821static int ipaccess_line_update(struct e1inp_line *line,
822 enum e1inp_line_role role, const char *addr)
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200823{
824 int ret = -ENOENT;
825
826 switch(role) {
Pablo Neira Ayuso986191f2011-06-21 19:56:26 +0200827 case E1INP_LINE_R_BSC: {
828 struct ipa_server_link *oml_link, *rsl_link;
829
Harald Weltecc2241b2011-07-19 16:06:06 +0200830 LOGP(DLINP, LOGL_NOTICE, "enabling ipaccess BSC mode\n");
Pablo Neira Ayuso96e81282011-06-09 15:06:11 +0200831
Pablo Neira Ayuso986191f2011-06-21 19:56:26 +0200832 oml_link = ipa_server_link_create(tall_ipa_ctx, line,
833 "0.0.0.0", IPA_TCP_PORT_OML,
Pablo Neira Ayusoe009f4a2011-06-23 13:36:34 +0200834 ipaccess_bsc_oml_cb, NULL);
Pablo Neira Ayuso986191f2011-06-21 19:56:26 +0200835 if (oml_link == NULL) {
Harald Weltecc2241b2011-07-19 16:06:06 +0200836 LOGP(DLINP, LOGL_ERROR, "cannot create OML "
Pablo Neira Ayuso986191f2011-06-21 19:56:26 +0200837 "BSC link: %s\n", strerror(errno));
838 return -ENOMEM;
Pablo Neira Ayusof67471f2011-06-07 11:25:49 +0200839 }
Pablo Neira Ayuso986191f2011-06-21 19:56:26 +0200840 if (ipa_server_link_open(oml_link) < 0) {
Harald Weltecc2241b2011-07-19 16:06:06 +0200841 LOGP(DLINP, LOGL_ERROR, "cannot open OML BSC link: %s\n",
Pablo Neira Ayuso986191f2011-06-21 19:56:26 +0200842 strerror(errno));
843 ipa_server_link_close(oml_link);
844 ipa_server_link_destroy(oml_link);
845 return -EIO;
Pablo Neira Ayusof67471f2011-06-07 11:25:49 +0200846 }
Pablo Neira Ayuso986191f2011-06-21 19:56:26 +0200847 rsl_link = ipa_server_link_create(tall_ipa_ctx, line,
848 "0.0.0.0", IPA_TCP_PORT_RSL,
Pablo Neira Ayusoe009f4a2011-06-23 13:36:34 +0200849 ipaccess_bsc_rsl_cb, NULL);
Pablo Neira Ayuso986191f2011-06-21 19:56:26 +0200850 if (rsl_link == NULL) {
Harald Weltecc2241b2011-07-19 16:06:06 +0200851 LOGP(DLINP, LOGL_ERROR, "cannot create RSL "
Pablo Neira Ayuso986191f2011-06-21 19:56:26 +0200852 "BSC link: %s\n", strerror(errno));
853 return -ENOMEM;
854 }
855 if (ipa_server_link_open(rsl_link) < 0) {
Harald Weltecc2241b2011-07-19 16:06:06 +0200856 LOGP(DLINP, LOGL_ERROR, "cannot open RSL BSC link: %s\n",
Pablo Neira Ayuso986191f2011-06-21 19:56:26 +0200857 strerror(errno));
858 ipa_server_link_close(rsl_link);
859 ipa_server_link_destroy(rsl_link);
860 return -EIO;
861 }
862 ret = 0;
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200863 break;
Pablo Neira Ayuso986191f2011-06-21 19:56:26 +0200864 }
Pablo Neira Ayuso96e81282011-06-09 15:06:11 +0200865 case E1INP_LINE_R_BTS: {
Pablo Neira Ayusoc07a8e72011-06-21 19:50:04 +0200866 struct ipa_client_link *link, *rsl_link;
Pablo Neira Ayuso96e81282011-06-09 15:06:11 +0200867
Harald Weltecc2241b2011-07-19 16:06:06 +0200868 LOGP(DLINP, LOGL_NOTICE, "enabling ipaccess BTS mode\n");
Pablo Neira Ayuso96e81282011-06-09 15:06:11 +0200869
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200870 link = ipa_client_link_create(tall_ipa_ctx,
871 &line->ts[E1INP_SIGN_OML-1],
872 "ipa", E1INP_SIGN_OML,
Pablo Neira Ayuso591ddad2011-06-21 18:16:42 +0200873 addr, IPA_TCP_PORT_OML,
Pablo Neira Ayuso88136fc2011-07-08 16:21:55 +0200874 NULL,
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200875 ipaccess_bts_cb,
876 ipaccess_bts_write_cb,
877 NULL);
Pablo Neira Ayuso96e81282011-06-09 15:06:11 +0200878 if (link == NULL) {
Harald Weltecc2241b2011-07-19 16:06:06 +0200879 LOGP(DLINP, LOGL_ERROR, "cannot create OML "
Pablo Neira Ayuso29465d32011-06-21 14:21:33 +0200880 "BTS link: %s\n", strerror(errno));
Pablo Neira Ayuso96e81282011-06-09 15:06:11 +0200881 return -ENOMEM;
882 }
883 if (ipa_client_link_open(link) < 0) {
Harald Weltecc2241b2011-07-19 16:06:06 +0200884 LOGP(DLINP, LOGL_ERROR, "cannot open OML BTS link: %s\n",
Pablo Neira Ayuso29465d32011-06-21 14:21:33 +0200885 strerror(errno));
Pablo Neira Ayuso96e81282011-06-09 15:06:11 +0200886 ipa_client_link_close(link);
887 ipa_client_link_destroy(link);
888 return -EIO;
889 }
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200890 rsl_link = ipa_client_link_create(tall_ipa_ctx,
891 &line->ts[E1INP_SIGN_RSL-1],
892 "ipa", E1INP_SIGN_RSL,
Pablo Neira Ayuso591ddad2011-06-21 18:16:42 +0200893 addr, IPA_TCP_PORT_RSL,
Pablo Neira Ayuso88136fc2011-07-08 16:21:55 +0200894 NULL,
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200895 ipaccess_bts_cb,
896 ipaccess_bts_write_cb,
897 NULL);
Pablo Neira Ayuso29465d32011-06-21 14:21:33 +0200898 if (rsl_link == NULL) {
Harald Weltecc2241b2011-07-19 16:06:06 +0200899 LOGP(DLINP, LOGL_ERROR, "cannot create RSL "
Pablo Neira Ayuso29465d32011-06-21 14:21:33 +0200900 "BTS link: %s\n", strerror(errno));
901 return -ENOMEM;
902 }
903 if (ipa_client_link_open(rsl_link) < 0) {
Harald Weltecc2241b2011-07-19 16:06:06 +0200904 LOGP(DLINP, LOGL_ERROR, "cannot open RSL BTS link: %s\n",
Pablo Neira Ayuso29465d32011-06-21 14:21:33 +0200905 strerror(errno));
906 ipa_client_link_close(rsl_link);
907 ipa_client_link_destroy(rsl_link);
908 return -EIO;
909 }
Pablo Neira Ayuso96e81282011-06-09 15:06:11 +0200910 ret = 0;
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200911 break;
Pablo Neira Ayuso96e81282011-06-09 15:06:11 +0200912 }
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200913 default:
914 break;
915 }
916 return ret;
917}
918
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200919void e1inp_ipaccess_init(void)
920{
Pablo Neira Ayuso54b49792011-06-07 12:15:26 +0200921 tall_ipa_ctx = talloc_named_const(libosmo_abis_ctx, 1, "ipa");
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200922 e1inp_driver_register(&ipaccess_driver);
923}