blob: 887124628d10ebc18723479ecad170e967233933 [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;
Pablo Neira Ayuso466c5462011-07-07 19:17:20 +0200427 }
428 return ret;
429err:
430 osmo_fd_unregister(bfd);
431 close(bfd->fd);
432 bfd->fd = -1;
Pablo Neira Ayuso3832c4f2011-07-07 17:47:26 +0200433 e1inp_line_put(line);
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200434 return ret;
435}
436
437void ipaccess_prepend_header_ext(struct msgb *msg, int proto)
438{
439 struct ipaccess_head_ext *hh_ext;
440
441 /* prepend the osmo ip.access header extension */
442 hh_ext = (struct ipaccess_head_ext *) msgb_push(msg, sizeof(*hh_ext));
443 hh_ext->proto = proto;
444}
445
446void ipaccess_prepend_header(struct msgb *msg, int proto)
447{
448 struct ipaccess_head *hh;
449
450 /* prepend the ip.access header */
451 hh = (struct ipaccess_head *) msgb_push(msg, sizeof(*hh));
452 hh->len = htons(msg->len - sizeof(*hh));
453 hh->proto = proto;
454}
455
456static int ts_want_write(struct e1inp_ts *e1i_ts)
457{
458 e1i_ts->driver.ipaccess.fd.when |= BSC_FD_WRITE;
459
460 return 0;
461}
462
Pablo Neira Ayusoadd3ec82011-07-05 14:45:46 +0200463static void ipaccess_close(struct e1inp_sign_link *sign_link)
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200464{
Pablo Neira Ayusoadd3ec82011-07-05 14:45:46 +0200465 struct e1inp_ts *e1i_ts = sign_link->ts;
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200466 struct osmo_fd *bfd = &e1i_ts->driver.ipaccess.fd;
Pablo Neira Ayusode668912011-08-16 17:26:23 +0200467 e1inp_event(e1i_ts, S_L_INP_TEI_DN, sign_link->tei, sign_link->sapi);
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200468 osmo_fd_unregister(bfd);
469 close(bfd->fd);
470 bfd->fd = -1;
471}
472
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200473static void timeout_ts1_write(void *data)
474{
475 struct e1inp_ts *e1i_ts = (struct e1inp_ts *)data;
476
477 /* trigger write of ts1, due to tx delay timer */
478 ts_want_write(e1i_ts);
479}
480
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200481static int __handle_ts1_write(struct osmo_fd *bfd, struct e1inp_line *line)
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200482{
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200483 unsigned int ts_nr = bfd->priv_nr;
484 struct e1inp_ts *e1i_ts = &line->ts[ts_nr-1];
485 struct e1inp_sign_link *sign_link;
486 struct msgb *msg;
487 uint8_t proto;
488 int ret;
489
490 bfd->when &= ~BSC_FD_WRITE;
491
492 /* get the next msg for this timeslot */
493 msg = e1inp_tx_ts(e1i_ts, &sign_link);
494 if (!msg) {
495 /* no message after tx delay timer */
496 return 0;
497 }
498
499 switch (sign_link->type) {
500 case E1INP_SIGN_OML:
501 proto = IPAC_PROTO_OML;
502 break;
503 case E1INP_SIGN_RSL:
504 proto = IPAC_PROTO_RSL;
505 break;
506 default:
507 msgb_free(msg);
508 bfd->when |= BSC_FD_WRITE; /* come back for more msg */
509 return -EINVAL;
510 }
511
512 msg->l2h = msg->data;
Pablo Neira Ayusob9ed7e32011-07-05 18:31:59 +0200513 ipaccess_prepend_header(msg, sign_link->tei);
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200514
Harald Weltecc2241b2011-07-19 16:06:06 +0200515 DEBUGP(DLMI, "TX %u: %s\n", ts_nr, osmo_hexdump(msg->l2h, msgb_l2len(msg)));
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200516
517 ret = send(bfd->fd, msg->data, msg->len, 0);
518 msgb_free(msg);
519
520 /* set tx delay timer for next event */
521 e1i_ts->sign.tx_timer.cb = timeout_ts1_write;
522 e1i_ts->sign.tx_timer.data = e1i_ts;
523
524 /* Reducing this might break the nanoBTS 900 init. */
525 osmo_timer_schedule(&e1i_ts->sign.tx_timer, 0, e1i_ts->sign.delay);
526
527 return ret;
528}
529
Pablo Neira Ayuso88136fc2011-07-08 16:21:55 +0200530static int handle_ts1_write(struct osmo_fd *bfd)
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200531{
532 struct e1inp_line *line = bfd->data;
533
534 return __handle_ts1_write(bfd, line);
535}
536
537int ipaccess_bts_write_cb(struct ipa_client_link *link)
538{
539 struct e1inp_line *line = link->line;
540
541 return __handle_ts1_write(link->ofd, line);
542}
543
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200544/* callback from select.c in case one of the fd's can be read/written */
Pablo Neira Ayuso495ddb62011-07-08 21:04:11 +0200545int ipaccess_fd_cb(struct osmo_fd *bfd, unsigned int what)
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200546{
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200547 int rc = 0;
548
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200549 if (what & BSC_FD_READ)
550 rc = handle_ts1_read(bfd);
551 if (what & BSC_FD_WRITE)
552 rc = handle_ts1_write(bfd);
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200553
554 return rc;
555}
556
Pablo Neira Ayusoc00ee732011-06-21 12:22:49 +0200557static int ipaccess_line_update(struct e1inp_line *line,
558 enum e1inp_line_role role, const char *addr);
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200559
560struct e1inp_driver ipaccess_driver = {
561 .name = "ipa",
562 .want_write = ts_want_write,
563 .line_update = ipaccess_line_update,
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200564 .close = ipaccess_close,
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200565 .default_delay = 0,
566};
567
568/* callback of the OML listening filedescriptor */
Pablo Neira Ayuso986191f2011-06-21 19:56:26 +0200569static int ipaccess_bsc_oml_cb(struct ipa_server_link *link, int fd)
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200570{
571 int ret;
572 int idx = 0;
573 int i;
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200574 struct e1inp_line *line;
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200575 struct e1inp_ts *e1i_ts;
576 struct osmo_fd *bfd;
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200577
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200578 /* clone virtual E1 line for this new OML link. */
Pablo Neira Ayuso3832c4f2011-07-07 17:47:26 +0200579 line = e1inp_line_clone(tall_ipa_ctx, link->line);
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200580 if (line == NULL) {
Harald Weltecc2241b2011-07-19 16:06:06 +0200581 LOGP(DLINP, LOGL_ERROR, "could not clone E1 line\n");
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200582 return -1;
583 }
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200584
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200585 /* create virrtual E1 timeslots for signalling */
Pablo Neira Ayuso59301852011-06-27 15:44:23 +0200586 e1inp_ts_config_sign(&line->ts[E1INP_SIGN_OML-1], line);
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200587
588 /* initialize the fds */
589 for (i = 0; i < ARRAY_SIZE(line->ts); ++i)
590 line->ts[i].driver.ipaccess.fd.fd = -1;
591
592 e1i_ts = &line->ts[idx];
593
Pablo Neira Ayuso93c62012011-06-26 19:12:47 +0200594 bfd = &e1i_ts->driver.ipaccess.fd;
Pablo Neira Ayuso986191f2011-06-21 19:56:26 +0200595 bfd->fd = fd;
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200596 bfd->data = line;
Pablo Neira Ayusof163d232011-06-25 18:42:55 +0200597 bfd->priv_nr = E1INP_SIGN_OML;
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200598 bfd->cb = ipaccess_fd_cb;
599 bfd->when = BSC_FD_READ;
600 ret = osmo_fd_register(bfd);
601 if (ret < 0) {
Harald Weltecc2241b2011-07-19 16:06:06 +0200602 LOGP(DLINP, LOGL_ERROR, "could not register FD\n");
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200603 close(bfd->fd);
Pablo Neira Ayuso3832c4f2011-07-07 17:47:26 +0200604 e1inp_line_put(line);
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200605 return ret;
606 }
607
608 /* Request ID. FIXME: request LOCATION, HW/SW VErsion, Unit Name, Serno */
609 ret = ipaccess_send_id_req(bfd->fd);
610
611 return ret;
612}
613
Pablo Neira Ayuso986191f2011-06-21 19:56:26 +0200614static int ipaccess_bsc_rsl_cb(struct ipa_server_link *link, int fd)
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200615{
Pablo Neira Ayuso3832c4f2011-07-07 17:47:26 +0200616 struct e1inp_line *line;
617 struct e1inp_ts *e1i_ts;
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200618 struct osmo_fd *bfd;
Pablo Neira Ayuso3832c4f2011-07-07 17:47:26 +0200619 int i, ret;
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200620
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200621 /* We don't know yet which OML link to associate it with. Thus, we
Pablo Neira Ayuso3832c4f2011-07-07 17:47:26 +0200622 * allocate a temporary E1 line until we have received ID. */
623 line = e1inp_line_clone(tall_ipa_ctx, link->line);
624 if (line == NULL) {
Harald Weltecc2241b2011-07-19 16:06:06 +0200625 LOGP(DLINP, LOGL_ERROR, "could not clone E1 line\n");
Pablo Neira Ayuso3832c4f2011-07-07 17:47:26 +0200626 return -1;
627 }
628 /* initialize the fds */
629 for (i = 0; i < ARRAY_SIZE(line->ts); ++i)
630 line->ts[i].driver.ipaccess.fd.fd = -1;
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200631
Pablo Neira Ayuso3832c4f2011-07-07 17:47:26 +0200632 /* we need this to initialize this in case to avoid crashes in case
633 * that the socket is closed before we've seen an ID_RESP. */
634 e1inp_ts_config_sign(&line->ts[E1INP_SIGN_OML-1], line);
635
636 e1i_ts = &line->ts[E1INP_SIGN_RSL-1];
637
638 bfd = &e1i_ts->driver.ipaccess.fd;
Pablo Neira Ayuso986191f2011-06-21 19:56:26 +0200639 bfd->fd = fd;
Pablo Neira Ayuso3832c4f2011-07-07 17:47:26 +0200640 bfd->data = line;
Pablo Neira Ayusof163d232011-06-25 18:42:55 +0200641 bfd->priv_nr = E1INP_SIGN_RSL;
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200642 bfd->cb = ipaccess_fd_cb;
643 bfd->when = BSC_FD_READ;
644 ret = osmo_fd_register(bfd);
645 if (ret < 0) {
Harald Weltecc2241b2011-07-19 16:06:06 +0200646 LOGP(DLINP, LOGL_ERROR, "could not register FD\n");
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200647 close(bfd->fd);
Pablo Neira Ayuso3832c4f2011-07-07 17:47:26 +0200648 e1inp_line_put(line);
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200649 return ret;
650 }
651 /* Request ID. FIXME: request LOCATION, HW/SW VErsion, Unit Name, Serno */
652 ret = ipaccess_send_id_req(bfd->fd);
653
654 return 0;
655}
656
Pablo Neira Ayusodfafe682011-07-02 14:32:32 +0200657static struct msgb *
658ipa_bts_id_resp(struct ipaccess_unit *dev, uint8_t *data, int len)
659{
660 struct msgb *nmsg;
661 char str[64];
662 uint8_t *tag;
663
Pablo Neira Ayuso88136fc2011-07-08 16:21:55 +0200664 nmsg = ipa_msg_alloc(0);
Pablo Neira Ayusodfafe682011-07-02 14:32:32 +0200665 if (!nmsg)
666 return NULL;
667
668 *msgb_put(nmsg, 1) = IPAC_MSGT_ID_RESP;
669 while (len) {
670 if (len < 2) {
Harald Weltecc2241b2011-07-19 16:06:06 +0200671 LOGP(DLINP, LOGL_NOTICE,
Pablo Neira Ayusodfafe682011-07-02 14:32:32 +0200672 "Short read of ipaccess tag\n");
673 msgb_free(nmsg);
674 return NULL;
675 }
676 switch (data[1]) {
677 case IPAC_IDTAG_UNIT:
678 sprintf(str, "%u/%u/%u",
679 dev->site_id, dev->bts_id, dev->trx_id);
680 break;
681 case IPAC_IDTAG_MACADDR:
682 sprintf(str, "%02x:%02x:%02x:%02x:%02x:%02x",
683 dev->mac_addr[0], dev->mac_addr[1],
684 dev->mac_addr[2], dev->mac_addr[3],
685 dev->mac_addr[4], dev->mac_addr[5]);
686 break;
687 case IPAC_IDTAG_LOCATION1:
688 strcpy(str, dev->location1);
689 break;
690 case IPAC_IDTAG_LOCATION2:
691 strcpy(str, dev->location2);
692 break;
693 case IPAC_IDTAG_EQUIPVERS:
694 strcpy(str, dev->equipvers);
695 break;
696 case IPAC_IDTAG_SWVERSION:
697 strcpy(str, dev->swversion);
698 break;
699 case IPAC_IDTAG_UNITNAME:
700 sprintf(str, "%s-%02x-%02x-%02x-%02x-%02x-%02x",
701 dev->unit_name,
702 dev->mac_addr[0], dev->mac_addr[1],
703 dev->mac_addr[2], dev->mac_addr[3],
704 dev->mac_addr[4], dev->mac_addr[5]);
705 break;
706 case IPAC_IDTAG_SERNR:
707 strcpy(str, dev->serno);
708 break;
709 default:
Harald Weltecc2241b2011-07-19 16:06:06 +0200710 LOGP(DLINP, LOGL_NOTICE,
Pablo Neira Ayusodfafe682011-07-02 14:32:32 +0200711 "Unknown ipaccess tag 0x%02x\n", *data);
712 msgb_free(nmsg);
713 return NULL;
714 }
Harald Weltecc2241b2011-07-19 16:06:06 +0200715 LOGP(DLINP, LOGL_INFO, " tag %d: %s\n", data[1], str);
Pablo Neira Ayusodfafe682011-07-02 14:32:32 +0200716 tag = msgb_put(nmsg, 3 + strlen(str) + 1);
717 tag[0] = 0x00;
718 tag[1] = 1 + strlen(str) + 1;
719 tag[2] = data[1];
720 memcpy(tag + 3, str, strlen(str) + 1);
721 data += 2;
722 len -= 2;
723 }
Pablo Neira Ayuso88136fc2011-07-08 16:21:55 +0200724 ipa_msg_push_header(nmsg, IPAC_PROTO_IPACCESS);
Pablo Neira Ayusodfafe682011-07-02 14:32:32 +0200725 return nmsg;
726}
727
728static struct msgb *ipa_bts_id_ack(void)
729{
730 struct msgb *nmsg2;
731
Pablo Neira Ayuso88136fc2011-07-08 16:21:55 +0200732 nmsg2 = ipa_msg_alloc(0);
Pablo Neira Ayusodfafe682011-07-02 14:32:32 +0200733 if (!nmsg2)
734 return NULL;
735
736 *msgb_put(nmsg2, 1) = IPAC_MSGT_ID_ACK;
Pablo Neira Ayuso88136fc2011-07-08 16:21:55 +0200737 ipa_msg_push_header(nmsg2, IPAC_PROTO_IPACCESS);
Pablo Neira Ayusodfafe682011-07-02 14:32:32 +0200738
739 return nmsg2;
740}
741
Pablo Neira Ayusoc07a8e72011-06-21 19:50:04 +0200742static int ipaccess_bts_cb(struct ipa_client_link *link, struct msgb *msg)
Pablo Neira Ayuso591ddad2011-06-21 18:16:42 +0200743{
744 struct ipaccess_head *hh = (struct ipaccess_head *) msg->data;
745 struct e1inp_ts *e1i_ts = NULL;
746 struct e1inp_sign_link *sign_link;
747
748 /* special handling for IPA CCM. */
749 if (hh->proto == IPAC_PROTO_IPACCESS) {
750 uint8_t msg_type = *(msg->l2h);
751
752 /* ping, pong and acknowledgment cases. */
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200753 ipaccess_rcvmsg_bts_base(msg, link->ofd);
Pablo Neira Ayuso591ddad2011-06-21 18:16:42 +0200754
755 /* this is a request for identification from the BSC. */
756 if (msg_type == IPAC_MSGT_ID_GET) {
Pablo Neira Ayusodfafe682011-07-02 14:32:32 +0200757 struct e1inp_sign_link *sign_link;
758 struct msgb *rmsg;
759 uint8_t *data = msgb_l2(msg);
760 int len = msgb_l2len(msg);
761
Harald Weltecc2241b2011-07-19 16:06:06 +0200762 LOGP(DLINP, LOGL_NOTICE, "received ID get\n");
Pablo Neira Ayusof163d232011-06-25 18:42:55 +0200763 if (!link->line->ops->sign_link_up) {
Harald Weltecc2241b2011-07-19 16:06:06 +0200764 LOGP(DLINP, LOGL_ERROR,
Pablo Neira Ayusocd8d2e52011-07-02 17:05:21 +0200765 "Unable to set signal link, "
766 "closing socket.\n");
767 osmo_fd_unregister(link->ofd);
768 close(link->ofd->fd);
769 link->ofd->fd = -1;
Pablo Neira Ayuso591ddad2011-06-21 18:16:42 +0200770 return -EINVAL;
771 }
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200772 sign_link = link->line->ops->sign_link_up(msg,
773 link->line,
774 link->ofd->priv_nr);
Pablo Neira Ayusodfafe682011-07-02 14:32:32 +0200775 if (sign_link == NULL) {
Harald Weltecc2241b2011-07-19 16:06:06 +0200776 LOGP(DLINP, LOGL_ERROR,
Pablo Neira Ayusocd8d2e52011-07-02 17:05:21 +0200777 "Unable to set signal link, "
778 "closing socket.\n");
779 osmo_fd_unregister(link->ofd);
780 close(link->ofd->fd);
781 link->ofd->fd = -1;
Pablo Neira Ayusodfafe682011-07-02 14:32:32 +0200782 return -EINVAL;
783 }
784 rmsg = ipa_bts_id_resp(link->line->ops->data,
785 data + 1, len - 1);
786 ipaccess_send(link->ofd->fd, rmsg->data, rmsg->len);
787 msgb_free(rmsg);
788
789 /* send ID_ACK. */
790 rmsg = ipa_bts_id_ack();
791 ipaccess_send(link->ofd->fd, rmsg->data, rmsg->len);
792 msgb_free(rmsg);
Pablo Neira Ayuso591ddad2011-06-21 18:16:42 +0200793 }
794 return 0;
795 } else if (link->port == IPA_TCP_PORT_OML)
796 e1i_ts = &link->line->ts[0];
797 else if (link->port == IPA_TCP_PORT_RSL)
798 e1i_ts = &link->line->ts[1];
799
800 /* look up for some existing signaling link. */
801 sign_link = e1inp_lookup_sign_link(e1i_ts, hh->proto, 0);
802 if (sign_link == NULL) {
Harald Weltecc2241b2011-07-19 16:06:06 +0200803 LOGP(DLINP, LOGL_ERROR, "no matching signalling link for "
Pablo Neira Ayuso591ddad2011-06-21 18:16:42 +0200804 "hh->proto=0x%02x\n", hh->proto);
805 msgb_free(msg);
806 return -EIO;
807 }
808 msg->dst = sign_link;
809
810 /* XXX better use e1inp_ts_rx? */
Pablo Neira Ayusof163d232011-06-25 18:42:55 +0200811 if (!link->line->ops->sign_link) {
Harald Weltecc2241b2011-07-19 16:06:06 +0200812 LOGP(DLINP, LOGL_ERROR, "Fix your application, "
Pablo Neira Ayuso591ddad2011-06-21 18:16:42 +0200813 "no action set for signalling messages.\n");
814 return -ENOENT;
815 }
Pablo Neira Ayusodbd82fb2011-07-05 15:29:23 +0200816 link->line->ops->sign_link(msg);
Pablo Neira Ayuso591ddad2011-06-21 18:16:42 +0200817 return 0;
818}
819
Pablo Neira Ayusoc00ee732011-06-21 12:22:49 +0200820static int ipaccess_line_update(struct e1inp_line *line,
821 enum e1inp_line_role role, const char *addr)
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200822{
823 int ret = -ENOENT;
824
825 switch(role) {
Pablo Neira Ayuso986191f2011-06-21 19:56:26 +0200826 case E1INP_LINE_R_BSC: {
827 struct ipa_server_link *oml_link, *rsl_link;
828
Harald Weltecc2241b2011-07-19 16:06:06 +0200829 LOGP(DLINP, LOGL_NOTICE, "enabling ipaccess BSC mode\n");
Pablo Neira Ayuso96e81282011-06-09 15:06:11 +0200830
Pablo Neira Ayuso986191f2011-06-21 19:56:26 +0200831 oml_link = ipa_server_link_create(tall_ipa_ctx, line,
832 "0.0.0.0", IPA_TCP_PORT_OML,
Pablo Neira Ayusoe009f4a2011-06-23 13:36:34 +0200833 ipaccess_bsc_oml_cb, NULL);
Pablo Neira Ayuso986191f2011-06-21 19:56:26 +0200834 if (oml_link == NULL) {
Harald Weltecc2241b2011-07-19 16:06:06 +0200835 LOGP(DLINP, LOGL_ERROR, "cannot create OML "
Pablo Neira Ayuso986191f2011-06-21 19:56:26 +0200836 "BSC link: %s\n", strerror(errno));
837 return -ENOMEM;
Pablo Neira Ayusof67471f2011-06-07 11:25:49 +0200838 }
Pablo Neira Ayuso986191f2011-06-21 19:56:26 +0200839 if (ipa_server_link_open(oml_link) < 0) {
Harald Weltecc2241b2011-07-19 16:06:06 +0200840 LOGP(DLINP, LOGL_ERROR, "cannot open OML BSC link: %s\n",
Pablo Neira Ayuso986191f2011-06-21 19:56:26 +0200841 strerror(errno));
Pablo Neira Ayuso986191f2011-06-21 19:56:26 +0200842 ipa_server_link_destroy(oml_link);
843 return -EIO;
Pablo Neira Ayusof67471f2011-06-07 11:25:49 +0200844 }
Pablo Neira Ayuso986191f2011-06-21 19:56:26 +0200845 rsl_link = ipa_server_link_create(tall_ipa_ctx, line,
846 "0.0.0.0", IPA_TCP_PORT_RSL,
Pablo Neira Ayusoe009f4a2011-06-23 13:36:34 +0200847 ipaccess_bsc_rsl_cb, NULL);
Pablo Neira Ayuso986191f2011-06-21 19:56:26 +0200848 if (rsl_link == NULL) {
Harald Weltecc2241b2011-07-19 16:06:06 +0200849 LOGP(DLINP, LOGL_ERROR, "cannot create RSL "
Pablo Neira Ayuso986191f2011-06-21 19:56:26 +0200850 "BSC link: %s\n", strerror(errno));
851 return -ENOMEM;
852 }
853 if (ipa_server_link_open(rsl_link) < 0) {
Harald Weltecc2241b2011-07-19 16:06:06 +0200854 LOGP(DLINP, LOGL_ERROR, "cannot open RSL BSC link: %s\n",
Pablo Neira Ayuso986191f2011-06-21 19:56:26 +0200855 strerror(errno));
Pablo Neira Ayuso986191f2011-06-21 19:56:26 +0200856 ipa_server_link_destroy(rsl_link);
857 return -EIO;
858 }
859 ret = 0;
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200860 break;
Pablo Neira Ayuso986191f2011-06-21 19:56:26 +0200861 }
Pablo Neira Ayuso96e81282011-06-09 15:06:11 +0200862 case E1INP_LINE_R_BTS: {
Pablo Neira Ayusoc07a8e72011-06-21 19:50:04 +0200863 struct ipa_client_link *link, *rsl_link;
Pablo Neira Ayuso96e81282011-06-09 15:06:11 +0200864
Harald Weltecc2241b2011-07-19 16:06:06 +0200865 LOGP(DLINP, LOGL_NOTICE, "enabling ipaccess BTS mode\n");
Pablo Neira Ayuso96e81282011-06-09 15:06:11 +0200866
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200867 link = ipa_client_link_create(tall_ipa_ctx,
868 &line->ts[E1INP_SIGN_OML-1],
869 "ipa", E1INP_SIGN_OML,
Pablo Neira Ayuso591ddad2011-06-21 18:16:42 +0200870 addr, IPA_TCP_PORT_OML,
Pablo Neira Ayuso88136fc2011-07-08 16:21:55 +0200871 NULL,
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200872 ipaccess_bts_cb,
873 ipaccess_bts_write_cb,
874 NULL);
Pablo Neira Ayuso96e81282011-06-09 15:06:11 +0200875 if (link == NULL) {
Harald Weltecc2241b2011-07-19 16:06:06 +0200876 LOGP(DLINP, LOGL_ERROR, "cannot create OML "
Pablo Neira Ayuso29465d32011-06-21 14:21:33 +0200877 "BTS link: %s\n", strerror(errno));
Pablo Neira Ayuso96e81282011-06-09 15:06:11 +0200878 return -ENOMEM;
879 }
880 if (ipa_client_link_open(link) < 0) {
Harald Weltecc2241b2011-07-19 16:06:06 +0200881 LOGP(DLINP, LOGL_ERROR, "cannot open OML BTS link: %s\n",
Pablo Neira Ayuso29465d32011-06-21 14:21:33 +0200882 strerror(errno));
Pablo Neira Ayuso96e81282011-06-09 15:06:11 +0200883 ipa_client_link_close(link);
884 ipa_client_link_destroy(link);
885 return -EIO;
886 }
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200887 rsl_link = ipa_client_link_create(tall_ipa_ctx,
888 &line->ts[E1INP_SIGN_RSL-1],
889 "ipa", E1INP_SIGN_RSL,
Pablo Neira Ayuso591ddad2011-06-21 18:16:42 +0200890 addr, IPA_TCP_PORT_RSL,
Pablo Neira Ayuso88136fc2011-07-08 16:21:55 +0200891 NULL,
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200892 ipaccess_bts_cb,
893 ipaccess_bts_write_cb,
894 NULL);
Pablo Neira Ayuso29465d32011-06-21 14:21:33 +0200895 if (rsl_link == NULL) {
Harald Weltecc2241b2011-07-19 16:06:06 +0200896 LOGP(DLINP, LOGL_ERROR, "cannot create RSL "
Pablo Neira Ayuso29465d32011-06-21 14:21:33 +0200897 "BTS link: %s\n", strerror(errno));
898 return -ENOMEM;
899 }
900 if (ipa_client_link_open(rsl_link) < 0) {
Harald Weltecc2241b2011-07-19 16:06:06 +0200901 LOGP(DLINP, LOGL_ERROR, "cannot open RSL BTS link: %s\n",
Pablo Neira Ayuso29465d32011-06-21 14:21:33 +0200902 strerror(errno));
903 ipa_client_link_close(rsl_link);
904 ipa_client_link_destroy(rsl_link);
905 return -EIO;
906 }
Pablo Neira Ayuso96e81282011-06-09 15:06:11 +0200907 ret = 0;
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200908 break;
Pablo Neira Ayuso96e81282011-06-09 15:06:11 +0200909 }
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200910 default:
911 break;
912 }
913 return ret;
914}
915
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200916void e1inp_ipaccess_init(void)
917{
Pablo Neira Ayuso54b49792011-06-07 12:15:26 +0200918 tall_ipa_ctx = talloc_named_const(libosmo_abis_ctx, 1, "ipa");
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200919 e1inp_driver_register(&ipaccess_driver);
920}