blob: be882a95f2f4ea8f5fc9b721fd7aefe5a9a1b484 [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 *
Harald Welte323d39d2017-11-13 01:09:21 +09009 * SPDX-License-Identifier: AGPL-3.0+
10 *
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +020011 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU Affero General Public License as published by
13 * the Free Software Foundation; either version 3 of the License, or
14 * (at your option) any later version.
15 *
16 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU Affero General Public License for more details.
20 *
21 * You should have received a copy of the GNU Affero General Public License
22 * along with this program. If not, see <http://www.gnu.org/licenses/>.
23 *
24 */
25
26#include "internal.h"
27
28#include <stdio.h>
29#include <unistd.h>
30#include <stdlib.h>
Pablo Neira Ayusoeb434132011-07-07 19:19:46 +020031#include <stdbool.h>
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +020032#include <errno.h>
Daniel Willmann85980722014-01-09 14:30:55 +010033#include <netinet/tcp.h>
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +020034#include <string.h>
35#include <time.h>
Holger Hans Peter Freyther25474582017-01-23 19:49:07 +010036#include <fcntl.h>
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +020037#include <sys/socket.h>
38#include <sys/ioctl.h>
39#include <arpa/inet.h>
40
41#include <osmocom/core/select.h>
42#include <osmocom/gsm/tlv.h>
43#include <osmocom/core/msgb.h>
Harald Weltef5efba42014-08-18 17:30:36 +020044#include <osmocom/core/macaddr.h>
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +020045#include <osmocom/core/logging.h>
Harald Welte71d87b22011-07-18 14:49:56 +020046#include <osmocom/core/talloc.h>
Pablo Neira Ayuso177094b2011-06-07 12:21:51 +020047#include <osmocom/abis/e1_input.h>
48#include <osmocom/abis/ipaccess.h>
Pablo Neira Ayusof67471f2011-06-07 11:25:49 +020049#include <osmocom/core/socket.h>
Pablo Neira Ayuso96e81282011-06-09 15:06:11 +020050#include <osmocom/abis/ipa.h>
Pablo Neira Ayusoef132692013-07-08 01:17:27 +020051#include <osmocom/core/backtrace.h>
Harald Welteb65f58f2014-08-20 22:04:11 +020052#include <osmocom/gsm/ipa.h>
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +020053
Pablo Neira Ayuso54b49792011-06-07 12:15:26 +020054static void *tall_ipa_ctx;
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +020055
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +020056#define TS1_ALLOC_SIZE 900
57
Daniel Willmann85980722014-01-09 14:30:55 +010058#define DEFAULT_TCP_KEEPALIVE_IDLE_TIMEOUT 30
59#define DEFAULT_TCP_KEEPALIVE_INTERVAL 3
60#define DEFAULT_TCP_KEEPALIVE_RETRY_COUNT 10
61
Eric Wildef1f3272019-07-10 18:10:31 +020062static inline struct e1inp_ts *ipaccess_line_ts(struct osmo_fd *bfd, struct e1inp_line *line)
63{
64 if (bfd->priv_nr == E1INP_SIGN_OML)
65 return e1inp_line_ipa_oml_ts(line);
66 else
67 return e1inp_line_ipa_rsl_ts(line, bfd->priv_nr - E1INP_SIGN_RSL);
68}
69
70static inline void ipaccess_keepalive_fsm_cleanup(struct e1inp_ts *e1i_ts)
71{
72 struct osmo_fsm_inst *ka_fsm;
73
74 ka_fsm = e1i_ts->driver.ipaccess.ka_fsm;
75 if (ka_fsm) {
76 ipa_keepalive_fsm_stop(ka_fsm);
77 e1i_ts->driver.ipaccess.ka_fsm = NULL;
78 }
79}
80
Harald Welte10b41302013-06-30 14:05:49 +020081static int ipaccess_drop(struct osmo_fd *bfd, struct e1inp_line *line)
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +020082{
Pablo Neira Ayuso1e401942012-08-22 14:16:24 +020083 int ret = 1;
Eric Wildef1f3272019-07-10 18:10:31 +020084 struct e1inp_ts *e1i_ts = ipaccess_line_ts(bfd, line);
Pau Espin Pedroldeb5c4f2020-07-31 12:55:01 +020085 e1inp_line_get2(line, __func__);
Eric Wildef1f3272019-07-10 18:10:31 +020086
87 ipaccess_keepalive_fsm_cleanup(e1i_ts);
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +020088
Pablo Neira Ayuso466c5462011-07-07 19:17:20 +020089 /* Error case: we did not see any ID_RESP yet for this socket. */
90 if (bfd->fd != -1) {
Pau Espin Pedrol91314c12020-11-23 14:45:03 +010091 LOGPITS(e1i_ts, DLINP, LOGL_NOTICE, "Forcing socket shutdown\n");
Pablo Neira Ayuso9621b412011-07-07 16:19:21 +020092 osmo_fd_unregister(bfd);
93 close(bfd->fd);
94 bfd->fd = -1;
Pau Espin Pedrol9af069d2020-11-23 14:54:00 +010095 switch (line->ops->cfg.ipa.role) {
96 case E1INP_LINE_R_BSC:
97 /* This is BSC code, ipaccess_drop() is only called for
98 accepted() sockets, hence the bfd holds a reference to
99 e1inp_line in ->data that needs to be released */
100 OSMO_ASSERT(bfd->data == line);
101 bfd->data = NULL;
102 e1inp_line_put2(line, "ipa_bfd");
103 break;
104 case E1INP_LINE_R_BTS:
105 /* BTS code: bfd->data contains pointer to struct
106 * ipa_client_conn. Leave it alive so it reconnects.
107 */
108 break;
109 default:
110 break;
111 }
Pablo Neira Ayuso466c5462011-07-07 19:17:20 +0200112 ret = -ENOENT;
Pau Espin Pedrol91314c12020-11-23 14:45:03 +0100113 } else {
114 LOGPITS(e1i_ts, DLINP, LOGL_ERROR,
115 "Forcing socket shutdown with no signal link set\n");
Pablo Neira Ayuso9621b412011-07-07 16:19:21 +0200116 }
Pablo Neira Ayuso6cc3f922012-08-22 13:57:58 +0200117
Jacob Erlbeck98af3c32014-03-31 10:53:32 +0200118 msgb_free(e1i_ts->pending_msg);
119 e1i_ts->pending_msg = NULL;
120
Pablo Neira Ayuso6cc3f922012-08-22 13:57:58 +0200121 /* e1inp_sign_link_destroy releases the socket descriptors for us. */
122 line->ops->sign_link_down(line);
123
Pau Espin Pedroldeb5c4f2020-07-31 12:55:01 +0200124 e1inp_line_put2(line, __func__);
Pablo Neira Ayuso466c5462011-07-07 19:17:20 +0200125 return ret;
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200126}
127
Eric Wildef1f3272019-07-10 18:10:31 +0200128static void ipa_bsc_keepalive_write_server_cb(struct osmo_fsm_inst *fi, void *conn, struct msgb *msg)
129{
130 struct osmo_fd *bfd = (struct osmo_fd *)conn;
131 write(bfd->fd, msg->data, msg->len);
132 msgb_free(msg);
133}
134
135static int ipa_bsc_keepalive_timeout_cb(struct osmo_fsm_inst *fi, void *data)
136{
137 struct osmo_fd *bfd = (struct osmo_fd *)data;
138
139 if (bfd->fd == -1)
140 return 1;
141
142 ipaccess_drop(bfd, (struct e1inp_line *)bfd->data);
143 return 1;
144}
145
146static void ipaccess_bsc_keepalive_fsm_alloc(struct e1inp_ts *e1i_ts, struct osmo_fd *bfd, const char *id)
147{
148 struct e1inp_line *line = e1i_ts->line;
149 struct osmo_fsm_inst *ka_fsm;
150
151 ipaccess_keepalive_fsm_cleanup(e1i_ts);
152 if (!line->ipa_kap)
153 return;
154
155 ka_fsm = ipa_generic_conn_alloc_keepalive_fsm(tall_ipa_ctx, bfd, line->ipa_kap, id);
156 e1i_ts->driver.ipaccess.ka_fsm = ka_fsm;
157 if (!ka_fsm)
158 return;
159
160 ipa_keepalive_fsm_set_timeout_cb(ka_fsm, ipa_bsc_keepalive_timeout_cb);
161 ipa_keepalive_fsm_set_send_cb(ka_fsm, ipa_bsc_keepalive_write_server_cb);
162 ipa_keepalive_fsm_start(ka_fsm);
163}
164
165static void ipa_bts_keepalive_write_client_cb(struct osmo_fsm_inst *fi, void *conn, struct msgb *msg) {
166 struct ipa_client_conn *link = (struct ipa_client_conn *)conn;
167 int ret = 0;
168
169 ret = ipa_send(link->ofd->fd, msg->data, msg->len);
170 if (ret != msg->len) {
171 LOGP(DLINP, LOGL_ERROR, "cannot send message. Reason: %s\n", strerror(errno));
172 }
173 msgb_free(msg);
174}
175
176static void update_fd_settings(struct e1inp_line *line, int fd);
177static void ipaccess_bts_updown_cb(struct ipa_client_conn *link, int up);
178
179static int ipa_bts_keepalive_timeout_cb(struct osmo_fsm_inst *fi, void *conn) {
180 ipaccess_bts_updown_cb(conn, false);
181 return 1;
182}
183
184static void ipaccess_bts_keepalive_fsm_alloc(struct e1inp_ts *e1i_ts, struct ipa_client_conn *client, const char *id)
185{
186 struct e1inp_line *line = e1i_ts->line;
187 struct osmo_fsm_inst *ka_fsm;
188
189 ipaccess_keepalive_fsm_cleanup(e1i_ts);
190 if (!line->ipa_kap)
191 return;
192
193 ka_fsm = ipa_client_conn_alloc_keepalive_fsm(client, line->ipa_kap, id);
194 e1i_ts->driver.ipaccess.ka_fsm = ka_fsm;
195 if (!ka_fsm)
196 return;
197
198 ipa_keepalive_fsm_set_timeout_cb(ka_fsm, ipa_bts_keepalive_timeout_cb);
199 ipa_keepalive_fsm_set_send_cb(ka_fsm, ipa_bts_keepalive_write_client_cb);
200}
201
Pau Espin Pedrol7edc25d2018-05-23 14:57:03 +0200202/* Returns -1 on error, and 0 or 1 on success. If -1 or 1 is returned, line has
203 * been released and should not be used anymore by the caller. */
Pablo Neira Ayuso5a4b7c52011-06-07 14:07:48 +0200204static int ipaccess_rcvmsg(struct e1inp_line *line, struct msgb *msg,
205 struct osmo_fd *bfd)
206{
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200207 struct tlv_parsed tlvp;
Pablo Neira Ayuso5a4b7c52011-06-07 14:07:48 +0200208 uint8_t msg_type = *(msg->l2h);
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200209 struct ipaccess_unit unit_data = {};
210 struct e1inp_sign_link *sign_link;
211 char *unitid;
212 int len, ret;
Eric Wildef1f3272019-07-10 18:10:31 +0200213 struct e1inp_ts *e1i_ts;
214 struct osmo_fsm_inst *ka_fsm;
215
216 /* peek the pong for our keepalive fsm */
217 e1i_ts = ipaccess_line_ts(bfd, line);
218 ka_fsm = e1i_ts->driver.ipaccess.ka_fsm;
219 if (ka_fsm && msg_type == IPAC_MSGT_PONG)
220 ipa_keepalive_fsm_pong_received(ka_fsm);
Pablo Neira Ayuso5a4b7c52011-06-07 14:07:48 +0200221
Pablo Neira Ayusoeb434132011-07-07 19:19:46 +0200222 /* Handle IPA PING, PONG and ID_ACK messages. */
Harald Welteb65f58f2014-08-20 22:04:11 +0200223 ret = ipa_ccm_rcvmsg_base(msg, bfd);
Pablo Neira Ayuso1e401942012-08-22 14:16:24 +0200224 switch(ret) {
225 case -1:
226 /* error in IPA control message handling */
227 goto err;
228 case 1:
229 /* this is an IPA control message, skip further processing */
Pablo Neira Ayusoeb434132011-07-07 19:19:46 +0200230 return 0;
Pablo Neira Ayuso1e401942012-08-22 14:16:24 +0200231 case 0:
232 /* this is not an IPA control message, continue */
233 break;
234 default:
235 LOGP(DLINP, LOGL_ERROR, "Unexpected return from "
Harald Welteb65f58f2014-08-20 22:04:11 +0200236 "ipa_ccm_rcvmsg_base "
Pablo Neira Ayuso1e401942012-08-22 14:16:24 +0200237 "(ret=%d)\n", ret);
238 goto err;
239 }
Pablo Neira Ayuso5a4b7c52011-06-07 14:07:48 +0200240
241 switch (msg_type) {
242 case IPAC_MSGT_ID_RESP:
Pau Espin Pedrol30e80d52020-07-14 13:23:05 +0200243 DEBUGP(DLMI, "ID_RESP ");
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200244 /* parse tags, search for Unit ID */
Harald Welte82eb55e2018-08-01 13:22:55 +0200245 ret = ipa_ccm_id_resp_parse(&tlvp, (const uint8_t *)msg->l2h+1, msgb_l2len(msg)-1);
Pau Espin Pedrol30e80d52020-07-14 13:23:05 +0200246 DEBUGPC(DLMI, "\n");
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200247 if (ret < 0) {
Harald Weltecc2241b2011-07-19 16:06:06 +0200248 LOGP(DLINP, LOGL_ERROR, "IPA response message "
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200249 "with malformed TLVs\n");
Pablo Neira Ayuso466c5462011-07-07 19:17:20 +0200250 goto err;
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200251 }
Pablo Neira Ayuso466c5462011-07-07 19:17:20 +0200252 if (!TLVP_PRESENT(&tlvp, IPAC_IDTAG_UNIT)) {
Harald Weltecc2241b2011-07-19 16:06:06 +0200253 LOGP(DLINP, LOGL_ERROR, "IPA response message "
Pablo Neira Ayuso466c5462011-07-07 19:17:20 +0200254 "without unit ID\n");
Pablo Neira Ayuso466c5462011-07-07 19:17:20 +0200255 goto err;
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200256
Pablo Neira Ayuso466c5462011-07-07 19:17:20 +0200257 }
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200258 len = TLVP_LEN(&tlvp, IPAC_IDTAG_UNIT);
Pablo Neira Ayuso466c5462011-07-07 19:17:20 +0200259 if (len < 1) {
Harald Weltecc2241b2011-07-19 16:06:06 +0200260 LOGP(DLINP, LOGL_ERROR, "IPA response message "
Pablo Neira Ayuso466c5462011-07-07 19:17:20 +0200261 "with too small unit ID\n");
Pablo Neira Ayuso466c5462011-07-07 19:17:20 +0200262 goto err;
263 }
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200264 unitid = (char *) TLVP_VAL(&tlvp, IPAC_IDTAG_UNIT);
265 unitid[len - 1] = '\0';
Vadim Yanitskiy1c94f6a2019-12-02 02:16:07 +0700266 ret = ipa_parse_unitid(unitid, &unit_data);
267 if (ret) {
268 LOGP(DLINP, LOGL_ERROR, "Failed to parse unit ID '%s'\n", unitid);
269 goto err;
270 }
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200271
Pablo Neira Ayusof163d232011-06-25 18:42:55 +0200272 if (!line->ops->sign_link_up) {
Harald Weltecc2241b2011-07-19 16:06:06 +0200273 LOGP(DLINP, LOGL_ERROR,
Pablo Neira Ayusocd8d2e52011-07-02 17:05:21 +0200274 "Unable to set signal link, closing socket.\n");
Pablo Neira Ayuso466c5462011-07-07 19:17:20 +0200275 goto err;
Pablo Neira Ayuso5a4b7c52011-06-07 14:07:48 +0200276 }
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200277 /* the BSC creates the new sign links at this stage. */
278 if (bfd->priv_nr == E1INP_SIGN_OML) {
279 sign_link =
280 line->ops->sign_link_up(&unit_data, line,
281 E1INP_SIGN_OML);
282 if (sign_link == NULL) {
Harald Weltecc2241b2011-07-19 16:06:06 +0200283 LOGP(DLINP, LOGL_ERROR,
Pablo Neira Ayusocd8d2e52011-07-02 17:05:21 +0200284 "Unable to set signal link, "
285 "closing socket.\n");
Pablo Neira Ayuso466c5462011-07-07 19:17:20 +0200286 goto err;
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200287 }
Eric Wildef1f3272019-07-10 18:10:31 +0200288
289 ipaccess_bsc_keepalive_fsm_alloc(e1i_ts, bfd, "oml_bsc_to_bts");
290
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200291 } else if (bfd->priv_nr == E1INP_SIGN_RSL) {
Pablo Neira Ayuso3832c4f2011-07-07 17:47:26 +0200292 struct e1inp_ts *ts;
Eric Wildef1f3272019-07-10 18:10:31 +0200293 struct osmo_fd *newbfd;
Pablo Neira Ayuso3832c4f2011-07-07 17:47:26 +0200294 struct e1inp_line *new_line;
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200295
296 sign_link =
297 line->ops->sign_link_up(&unit_data, line,
298 E1INP_SIGN_RSL);
299 if (sign_link == NULL) {
Harald Weltecc2241b2011-07-19 16:06:06 +0200300 LOGP(DLINP, LOGL_ERROR,
Pablo Neira Ayusocd8d2e52011-07-02 17:05:21 +0200301 "Unable to set signal link, "
302 "closing socket.\n");
Pablo Neira Ayuso466c5462011-07-07 19:17:20 +0200303 goto err;
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200304 }
Pau Espin Pedrol8a4e3d92020-07-14 21:20:55 +0200305 /* Finally, we know which OML link is associated with
306 * this RSL link, attach it to this socket. */
307 new_line = sign_link->ts->line;
Pablo Neira Ayusodb1c8a72011-07-08 15:12:03 +0200308 /* this is a bugtrap, the BSC should be using the
309 * virtual E1 line used by OML for this RSL link. */
Pau Espin Pedrol8a4e3d92020-07-14 21:20:55 +0200310 if (new_line == line) {
Harald Weltecc2241b2011-07-19 16:06:06 +0200311 LOGP(DLINP, LOGL_ERROR,
Pablo Neira Ayusodb1c8a72011-07-08 15:12:03 +0200312 "Fix your BSC, you should use the "
313 "E1 line used by the OML link for "
314 "your RSL link.\n");
315 return 0;
316 }
Pau Espin Pedrol5196cd52020-07-14 17:52:09 +0200317 e1inp_line_get2(new_line, "ipa_bfd");
Pau Espin Pedrolb5cfc6b2018-10-02 21:22:18 +0200318 ts = e1inp_line_ipa_rsl_ts(new_line, unit_data.trx_id);
Pablo Neira Ayuso3832c4f2011-07-07 17:47:26 +0200319 newbfd = &ts->driver.ipaccess.fd;
Pau Espin Pedrol815117c2020-07-14 21:19:16 +0200320 OSMO_ASSERT(newbfd != bfd);
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200321
Pau Espin Pedrol56ae85f2018-08-22 13:11:19 +0200322 /* preserve 'newbfd->when' flags potentially set by sign_link_up() */
Pau Espin Pedrol67902bb2018-08-23 14:35:08 +0200323 osmo_fd_setup(newbfd, bfd->fd, newbfd->when | bfd->when, bfd->cb,
Pau Espin Pedrol8a4e3d92020-07-14 21:20:55 +0200324 new_line, E1INP_SIGN_RSL + unit_data.trx_id);
325
326
327 /* now we can release the dummy RSL line (old temporary bfd). */
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200328 osmo_fd_unregister(bfd);
329 bfd->fd = -1;
Pau Espin Pedrol8a4e3d92020-07-14 21:20:55 +0200330 /* bfd->data holds a reference to line, drop it */
331 OSMO_ASSERT(bfd->data == line);
332 bfd->data = NULL;
333 e1inp_line_put2(line, "ipa_bfd");
334
Harald Welteae3a9932016-11-26 09:25:23 +0100335 ret = osmo_fd_register(newbfd);
336 if (ret < 0) {
337 LOGP(DLINP, LOGL_ERROR,
338 "could not register FD\n");
339 goto err;
340 }
Eric Wildef1f3272019-07-10 18:10:31 +0200341
342 e1i_ts = ipaccess_line_ts(newbfd, new_line);
343 ipaccess_bsc_keepalive_fsm_alloc(e1i_ts, newbfd, "rsl_bsc_to_bts");
Pau Espin Pedrol7edc25d2018-05-23 14:57:03 +0200344 return 1;
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200345 }
Pablo Neira Ayuso5a4b7c52011-06-07 14:07:48 +0200346 break;
Pablo Neira Ayuso466c5462011-07-07 19:17:20 +0200347 default:
Harald Weltecc2241b2011-07-19 16:06:06 +0200348 LOGP(DLINP, LOGL_ERROR, "Unknown IPA message type\n");
Pablo Neira Ayuso466c5462011-07-07 19:17:20 +0200349 goto err;
Pablo Neira Ayuso5a4b7c52011-06-07 14:07:48 +0200350 }
351 return 0;
Pablo Neira Ayuso466c5462011-07-07 19:17:20 +0200352err:
Harald Welteb4a7db02019-07-21 11:51:56 +0200353 if (bfd->fd != -1) {
Pau Espin Pedroldc55a5f2020-07-14 21:14:34 +0200354 osmo_fd_unregister(bfd);
Harald Welteb4a7db02019-07-21 11:51:56 +0200355 close(bfd->fd);
356 bfd->fd = -1;
Pau Espin Pedroldc55a5f2020-07-14 21:14:34 +0200357 /* This is a BSC accepted socket, bfd->data holds a reference to line, drop it */
358 OSMO_ASSERT(bfd->data == line);
359 bfd->data = NULL;
360 e1inp_line_put2(line, "ipa_bfd");
Harald Welteb4a7db02019-07-21 11:51:56 +0200361 }
Pau Espin Pedrol7edc25d2018-05-23 14:57:03 +0200362 return -1;
Pablo Neira Ayuso5a4b7c52011-06-07 14:07:48 +0200363}
364
Pau Espin Pedrol7edc25d2018-05-23 14:57:03 +0200365/* Returns -EBADF if bfd cannot be used by the caller anymore after return. */
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200366static int handle_ts1_read(struct osmo_fd *bfd)
367{
368 struct e1inp_line *line = bfd->data;
369 unsigned int ts_nr = bfd->priv_nr;
Pau Espin Pedrolb5cfc6b2018-10-02 21:22:18 +0200370 struct e1inp_ts *e1i_ts;
Pablo Neira Ayuso5a4b7c52011-06-07 14:07:48 +0200371 struct e1inp_sign_link *link;
372 struct ipaccess_head *hh;
Jacob Erlbeck98af3c32014-03-31 10:53:32 +0200373 struct msgb *msg = NULL;
Maxc9fa25e2017-01-09 13:23:15 +0100374 int ret, rc;
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200375
Eric Wildef1f3272019-07-10 18:10:31 +0200376 e1i_ts = ipaccess_line_ts(bfd, line);
Jacob Erlbeck98af3c32014-03-31 10:53:32 +0200377 ret = ipa_msg_recv_buffered(bfd->fd, &msg, &e1i_ts->pending_msg);
Pablo Neira Ayuso1e401942012-08-22 14:16:24 +0200378 if (ret < 0) {
Jacob Erlbeck98af3c32014-03-31 10:53:32 +0200379 if (ret == -EAGAIN)
380 return 0;
Pablo Neira Ayuso1e401942012-08-22 14:16:24 +0200381 LOGP(DLINP, LOGL_NOTICE, "Sign link problems, "
Jacob Erlbeck98af3c32014-03-31 10:53:32 +0200382 "closing socket. Reason: %s\n", strerror(-ret));
Pablo Neira Ayuso1e401942012-08-22 14:16:24 +0200383 goto err;
384 } else if (ret == 0) {
385 LOGP(DLINP, LOGL_NOTICE, "Sign link vanished, dead socket\n");
386 goto err;
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200387 }
Harald Weltecc2241b2011-07-19 16:06:06 +0200388 DEBUGP(DLMI, "RX %u: %s\n", ts_nr, osmo_hexdump(msgb_l2(msg), msgb_l2len(msg)));
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200389
Pablo Neira Ayuso5a4b7c52011-06-07 14:07:48 +0200390 hh = (struct ipaccess_head *) msg->data;
391 if (hh->proto == IPAC_PROTO_IPACCESS) {
Pau Espin Pedrol7edc25d2018-05-23 14:57:03 +0200392 ret = ipaccess_rcvmsg(line, msg, bfd);
393 /* BIG FAT WARNING: bfd might no longer exist here (ret != 0),
394 * since ipaccess_rcvmsg() might have free'd it !!! */
Pablo Neira Ayuso5a4b7c52011-06-07 14:07:48 +0200395 msgb_free(msg);
Pau Espin Pedrol7edc25d2018-05-23 14:57:03 +0200396 return ret != 0 ? -EBADF : 0;
Holger Hans Peter Freyther63ddf462013-12-28 21:19:19 +0100397 } else if (e1i_ts->type == E1INP_TS_TYPE_NONE) {
398 /* this sign link is not know yet.. complain. */
399 LOGP(DLINP, LOGL_ERROR, "Timeslot is not configured.\n");
Holger Hans Peter Freyther63ddf462013-12-28 21:19:19 +0100400 goto err_msg;
Pablo Neira Ayuso5a4b7c52011-06-07 14:07:48 +0200401 }
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200402
Pablo Neira Ayuso5a4b7c52011-06-07 14:07:48 +0200403 link = e1inp_lookup_sign_link(e1i_ts, hh->proto, 0);
404 if (!link) {
Harald Weltecc2241b2011-07-19 16:06:06 +0200405 LOGP(DLINP, LOGL_ERROR, "no matching signalling link for "
Pablo Neira Ayuso5a4b7c52011-06-07 14:07:48 +0200406 "hh->proto=0x%02x\n", hh->proto);
Pablo Neira Ayuso1e401942012-08-22 14:16:24 +0200407 goto err_msg;
Pablo Neira Ayuso5a4b7c52011-06-07 14:07:48 +0200408 }
409 msg->dst = link;
410
411 /* XXX better use e1inp_ts_rx? */
Pablo Neira Ayusof163d232011-06-25 18:42:55 +0200412 if (!e1i_ts->line->ops->sign_link) {
Harald Weltecc2241b2011-07-19 16:06:06 +0200413 LOGP(DLINP, LOGL_ERROR, "Fix your application, "
Pablo Neira Ayuso5a4b7c52011-06-07 14:07:48 +0200414 "no action set for signalling messages.\n");
Pablo Neira Ayuso1e401942012-08-22 14:16:24 +0200415 goto err_msg;
Pablo Neira Ayuso5a4b7c52011-06-07 14:07:48 +0200416 }
Maxc9fa25e2017-01-09 13:23:15 +0100417 rc = e1i_ts->line->ops->sign_link(msg);
418 if (rc < 0) {
Pablo Neira Ayusoa49c24d2012-10-16 11:24:08 +0200419 /* Don't close the signalling link if the upper layers report
420 * an error, that's too strict. BTW, the signalling layer is
421 * resposible for releasing the message.
422 */
Harald Weltecc2241b2011-07-19 16:06:06 +0200423 LOGP(DLINP, LOGL_ERROR, "Bad signalling message,"
Maxc9fa25e2017-01-09 13:23:15 +0100424 " sign_link returned error: %s.\n", strerror(-rc));
Pablo Neira Ayuso466c5462011-07-07 19:17:20 +0200425 }
Pablo Neira Ayuso1e401942012-08-22 14:16:24 +0200426
Pau Espin Pedroled122f32018-08-28 18:25:02 +0200427 return rc;
Pablo Neira Ayuso1e401942012-08-22 14:16:24 +0200428err_msg:
429 msgb_free(msg);
Pablo Neira Ayuso466c5462011-07-07 19:17:20 +0200430err:
Harald Welte10b41302013-06-30 14:05:49 +0200431 ipaccess_drop(bfd, line);
Pau Espin Pedrol7edc25d2018-05-23 14:57:03 +0200432 return -EBADF;
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200433}
434
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200435static int ts_want_write(struct e1inp_ts *e1i_ts)
436{
Harald Welte949b8a22020-10-18 23:01:53 +0200437 osmo_fd_write_enable(&e1i_ts->driver.ipaccess.fd);
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200438
439 return 0;
440}
441
Pablo Neira Ayusoadd3ec82011-07-05 14:45:46 +0200442static void ipaccess_close(struct e1inp_sign_link *sign_link)
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200443{
Pablo Neira Ayusoadd3ec82011-07-05 14:45:46 +0200444 struct e1inp_ts *e1i_ts = sign_link->ts;
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200445 struct osmo_fd *bfd = &e1i_ts->driver.ipaccess.fd;
Eric Wildef1f3272019-07-10 18:10:31 +0200446 struct e1inp_line *line = e1i_ts->line;
447
448 /* line might not exist if != bsc||bts */
449 if (line) {
450 /* depending on caller the fsm might be dead */
451 struct osmo_fsm_inst* ka_fsm = ipaccess_line_ts(bfd, line)->driver.ipaccess.ka_fsm;
452 if (ka_fsm)
453 ipa_keepalive_fsm_stop(ka_fsm);
454
455 }
456
Pau Espin Pedrol8737ad42020-07-14 21:11:56 +0200457 e1inp_int_snd_event(e1i_ts, sign_link, S_L_INP_TEI_DN);
458 /* the first e1inp_sign_link_destroy call closes the socket. */
459 if (bfd->fd != -1) {
460 osmo_fd_unregister(bfd);
461 close(bfd->fd);
462 bfd->fd = -1;
463 /* If The bfd holds a reference to e1inp_line in ->data (BSC
464 * accepted() sockets), then release it */
465 if (bfd->data == line) {
466 bfd->data = NULL;
467 e1inp_line_put2(line, "ipa_bfd");
468 }
469 }
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200470}
471
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200472static void timeout_ts1_write(void *data)
473{
474 struct e1inp_ts *e1i_ts = (struct e1inp_ts *)data;
475
476 /* trigger write of ts1, due to tx delay timer */
477 ts_want_write(e1i_ts);
478}
479
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200480static int __handle_ts1_write(struct osmo_fd *bfd, struct e1inp_line *line)
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200481{
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200482 unsigned int ts_nr = bfd->priv_nr;
Pau Espin Pedrolb5cfc6b2018-10-02 21:22:18 +0200483 struct e1inp_ts *e1i_ts;
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200484 struct e1inp_sign_link *sign_link;
485 struct msgb *msg;
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200486 int ret;
487
Eric Wildef1f3272019-07-10 18:10:31 +0200488 e1i_ts = ipaccess_line_ts(bfd, line);
Harald Welte949b8a22020-10-18 23:01:53 +0200489 osmo_fd_write_disable(bfd);
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200490
491 /* get the next msg for this timeslot */
492 msg = e1inp_tx_ts(e1i_ts, &sign_link);
493 if (!msg) {
494 /* no message after tx delay timer */
495 return 0;
496 }
497
498 switch (sign_link->type) {
499 case E1INP_SIGN_OML:
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200500 case E1INP_SIGN_RSL:
Harald Welte46fc7e22014-08-18 19:04:26 +0200501 case E1INP_SIGN_OSMO:
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200502 break;
503 default:
Harald Welte949b8a22020-10-18 23:01:53 +0200504 osmo_fd_write_enable(bfd); /* come back for more msg */
Pablo Neira Ayuso1e401942012-08-22 14:16:24 +0200505 ret = -EINVAL;
506 goto out;
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200507 }
508
509 msg->l2h = msg->data;
Harald Welteb65f58f2014-08-20 22:04:11 +0200510 ipa_prepend_header(msg, sign_link->tei);
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200511
Vadim Yanitskiy77a7cf42020-11-29 20:39:57 +0100512 LOGPITS(e1i_ts, DLMI, LOGL_DEBUG, "TX %u: %s\n", ts_nr,
Pau Espin Pedrol3bdf59b2020-11-23 13:47:16 +0100513 osmo_hexdump(msg->l2h, msgb_l2len(msg)));
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200514
515 ret = send(bfd->fd, msg->data, msg->len, 0);
Pablo Neira Ayuso1e401942012-08-22 14:16:24 +0200516 if (ret != msg->len) {
Pau Espin Pedrol3bdf59b2020-11-23 13:47:16 +0100517 LOGPITS(e1i_ts, DLINP, LOGL_ERROR, "failed to send A-bis IPA signalling "
Pablo Neira Ayuso1e401942012-08-22 14:16:24 +0200518 "message. Reason: %s\n", strerror(errno));
519 goto err;
520 }
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200521
522 /* set tx delay timer for next event */
Pablo Neira Ayusob26f2fd2017-06-07 18:32:13 +0200523 osmo_timer_setup(&e1i_ts->sign.tx_timer, timeout_ts1_write, e1i_ts);
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200524
525 /* Reducing this might break the nanoBTS 900 init. */
526 osmo_timer_schedule(&e1i_ts->sign.tx_timer, 0, e1i_ts->sign.delay);
527
Pablo Neira Ayuso1e401942012-08-22 14:16:24 +0200528out:
529 msgb_free(msg);
530 return ret;
531err:
Harald Welte10b41302013-06-30 14:05:49 +0200532 ipaccess_drop(bfd, line);
Pablo Neira Ayuso1e401942012-08-22 14:16:24 +0200533 msgb_free(msg);
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200534 return ret;
535}
536
Pablo Neira Ayuso88136fc2011-07-08 16:21:55 +0200537static int handle_ts1_write(struct osmo_fd *bfd)
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200538{
539 struct e1inp_line *line = bfd->data;
540
541 return __handle_ts1_write(bfd, line);
542}
543
Pablo Neira Ayusof0995672011-09-08 12:58:38 +0200544static int ipaccess_bts_write_cb(struct ipa_client_conn *link)
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200545{
546 struct e1inp_line *line = link->line;
547
548 return __handle_ts1_write(link->ofd, line);
549}
550
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200551/* callback from select.c in case one of the fd's can be read/written */
Pablo Neira Ayuso495ddb62011-07-08 21:04:11 +0200552int ipaccess_fd_cb(struct osmo_fd *bfd, unsigned int what)
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200553{
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200554 int rc = 0;
555
Harald Weltede3959e2020-10-18 22:28:50 +0200556 if (what & OSMO_FD_READ)
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200557 rc = handle_ts1_read(bfd);
Harald Weltede3959e2020-10-18 22:28:50 +0200558 if (rc != -EBADF && (what & OSMO_FD_WRITE))
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200559 rc = handle_ts1_write(bfd);
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200560
561 return rc;
562}
563
Pablo Neira Ayuso4e862cb2011-08-19 18:43:38 +0200564static int ipaccess_line_update(struct e1inp_line *line);
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200565
566struct e1inp_driver ipaccess_driver = {
567 .name = "ipa",
568 .want_write = ts_want_write,
569 .line_update = ipaccess_line_update,
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200570 .close = ipaccess_close,
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200571 .default_delay = 0,
Jacob Erlbeck8fe15712014-01-09 14:30:58 +0100572 .has_keepalive = 1,
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200573};
574
Jacob Erlbecka4ec51e2014-01-09 14:30:56 +0100575static void update_fd_settings(struct e1inp_line *line, int fd)
576{
577 int ret;
578 int val;
579
Jacob Erlbeck8fe15712014-01-09 14:30:58 +0100580 if (line->keepalive_num_probes) {
Jacob Erlbecka4ec51e2014-01-09 14:30:56 +0100581 /* Enable TCP keepalive to find out if the connection is gone */
582 val = 1;
583 ret = setsockopt(fd, SOL_SOCKET, SO_KEEPALIVE, &val, sizeof(val));
584 if (ret < 0)
585 LOGP(DLINP, LOGL_NOTICE, "Failed to set keepalive: %s\n",
586 strerror(errno));
587 else
588 LOGP(DLINP, LOGL_NOTICE, "Keepalive is set: %i\n", ret);
589
590#if defined(TCP_KEEPIDLE) && defined(TCP_KEEPINTVL) && defined(TCP_KEEPCNT)
591 /* The following options are not portable! */
Jacob Erlbeck8fe15712014-01-09 14:30:58 +0100592 val = line->keepalive_idle_timeout > 0 ?
593 line->keepalive_idle_timeout :
594 DEFAULT_TCP_KEEPALIVE_IDLE_TIMEOUT;
Jacob Erlbecka4ec51e2014-01-09 14:30:56 +0100595 ret = setsockopt(fd, IPPROTO_TCP, TCP_KEEPIDLE,
596 &val, sizeof(val));
597 if (ret < 0)
598 LOGP(DLINP, LOGL_NOTICE,
599 "Failed to set keepalive idle time: %s\n",
600 strerror(errno));
Jacob Erlbeck8fe15712014-01-09 14:30:58 +0100601 val = line->keepalive_probe_interval > -1 ?
602 line->keepalive_probe_interval :
603 DEFAULT_TCP_KEEPALIVE_INTERVAL;
Jacob Erlbecka4ec51e2014-01-09 14:30:56 +0100604 ret = setsockopt(fd, IPPROTO_TCP, TCP_KEEPINTVL,
605 &val, sizeof(val));
606 if (ret < 0)
607 LOGP(DLINP, LOGL_NOTICE,
608 "Failed to set keepalive interval: %s\n",
609 strerror(errno));
Jacob Erlbeck8fe15712014-01-09 14:30:58 +0100610 val = line->keepalive_num_probes > 0 ?
611 line->keepalive_num_probes :
612 DEFAULT_TCP_KEEPALIVE_RETRY_COUNT;
Jacob Erlbecka4ec51e2014-01-09 14:30:56 +0100613 ret = setsockopt(fd, IPPROTO_TCP, TCP_KEEPCNT,
614 &val, sizeof(val));
615 if (ret < 0)
616 LOGP(DLINP, LOGL_NOTICE,
617 "Failed to set keepalive count: %s\n",
618 strerror(errno));
Eric Wild6eb186c2019-06-21 15:26:25 +0200619#if defined(TCP_USER_TIMEOUT)
620 val = 1000 * line->keepalive_num_probes *
621 line->keepalive_probe_interval +
622 line->keepalive_idle_timeout;
623 ret = setsockopt(fd, IPPROTO_TCP, TCP_USER_TIMEOUT,
624 &val, sizeof(val));
625 if (ret < 0)
626 LOGP(DLINP, LOGL_NOTICE,
627 "Failed to set user timoeut: %s\n",
628 strerror(errno));
629#endif
Jacob Erlbecka4ec51e2014-01-09 14:30:56 +0100630#endif
Holger Hans Peter Freytherf465a4c2014-02-03 09:34:02 +0100631 }
Oliver Smith62725d02020-04-17 10:57:46 +0200632
633 val = 1;
634 ret = setsockopt(fd, IPPROTO_TCP, TCP_NODELAY, &val, sizeof(val));
635 if (ret < 0)
636 LOGP(DLINP, LOGL_ERROR, "Failed to set TCP_NODELAY: %s\n", strerror(errno));
Jacob Erlbecka4ec51e2014-01-09 14:30:56 +0100637}
638
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200639/* callback of the OML listening filedescriptor */
Pablo Neira Ayuso986191f2011-06-21 19:56:26 +0200640static int ipaccess_bsc_oml_cb(struct ipa_server_link *link, int fd)
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200641{
642 int ret;
Jacob Erlbecka4ec51e2014-01-09 14:30:56 +0100643 int i;
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200644 struct e1inp_line *line;
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200645 struct e1inp_ts *e1i_ts;
646 struct osmo_fd *bfd;
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200647
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200648 /* clone virtual E1 line for this new OML link. */
Pau Espin Pedrol5196cd52020-07-14 17:52:09 +0200649 line = e1inp_line_clone(tall_ipa_ctx, link->line, "ipa_bfd");
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200650 if (line == NULL) {
Harald Weltecc2241b2011-07-19 16:06:06 +0200651 LOGP(DLINP, LOGL_ERROR, "could not clone E1 line\n");
Pablo Neira Ayuso1e401942012-08-22 14:16:24 +0200652 return -ENOMEM;
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200653 }
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200654
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200655 /* create virrtual E1 timeslots for signalling */
Pau Espin Pedrolb5cfc6b2018-10-02 21:22:18 +0200656 e1inp_ts_config_sign(e1inp_line_ipa_oml_ts(line), line);
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200657
658 /* initialize the fds */
659 for (i = 0; i < ARRAY_SIZE(line->ts); ++i)
660 line->ts[i].driver.ipaccess.fd.fd = -1;
661
Pau Espin Pedrolb5cfc6b2018-10-02 21:22:18 +0200662 e1i_ts = e1inp_line_ipa_oml_ts(line);
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200663
Pablo Neira Ayuso93c62012011-06-26 19:12:47 +0200664 bfd = &e1i_ts->driver.ipaccess.fd;
Harald Weltede3959e2020-10-18 22:28:50 +0200665 osmo_fd_setup(bfd, fd, OSMO_FD_READ, ipaccess_fd_cb, line, E1INP_SIGN_OML);
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200666 ret = osmo_fd_register(bfd);
667 if (ret < 0) {
Harald Weltecc2241b2011-07-19 16:06:06 +0200668 LOGP(DLINP, LOGL_ERROR, "could not register FD\n");
Pablo Neira Ayuso1e401942012-08-22 14:16:24 +0200669 goto err_line;
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200670 }
671
Jacob Erlbecka4ec51e2014-01-09 14:30:56 +0100672 update_fd_settings(line, bfd->fd);
Daniel Willmann85980722014-01-09 14:30:55 +0100673
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200674 /* Request ID. FIXME: request LOCATION, HW/SW VErsion, Unit Name, Serno */
Harald Welteb65f58f2014-08-20 22:04:11 +0200675 ret = ipa_ccm_send_id_req(bfd->fd);
Pablo Neira Ayuso1e401942012-08-22 14:16:24 +0200676 if (ret < 0) {
677 LOGP(DLINP, LOGL_ERROR, "could not send ID REQ. Reason: %s\n",
678 strerror(errno));
679 goto err_socket;
680 }
681 return ret;
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200682
Pablo Neira Ayuso1e401942012-08-22 14:16:24 +0200683err_socket:
684 osmo_fd_unregister(bfd);
685err_line:
686 close(bfd->fd);
687 bfd->fd = -1;
Pau Espin Pedrola2ff7332020-07-14 21:12:50 +0200688 bfd->data = NULL;
Pau Espin Pedrol5196cd52020-07-14 17:52:09 +0200689 e1inp_line_put2(line, "ipa_bfd");
Pablo Neira Ayuso1e401942012-08-22 14:16:24 +0200690 return ret;
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200691}
692
Pablo Neira Ayuso986191f2011-06-21 19:56:26 +0200693static int ipaccess_bsc_rsl_cb(struct ipa_server_link *link, int fd)
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200694{
Pablo Neira Ayuso3832c4f2011-07-07 17:47:26 +0200695 struct e1inp_line *line;
696 struct e1inp_ts *e1i_ts;
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200697 struct osmo_fd *bfd;
Pablo Neira Ayuso3832c4f2011-07-07 17:47:26 +0200698 int i, ret;
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200699
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200700 /* We don't know yet which OML link to associate it with. Thus, we
Pablo Neira Ayuso3832c4f2011-07-07 17:47:26 +0200701 * allocate a temporary E1 line until we have received ID. */
Pau Espin Pedrol5196cd52020-07-14 17:52:09 +0200702 line = e1inp_line_clone(tall_ipa_ctx, link->line, "ipa_bfd");
Pablo Neira Ayuso3832c4f2011-07-07 17:47:26 +0200703 if (line == NULL) {
Harald Weltecc2241b2011-07-19 16:06:06 +0200704 LOGP(DLINP, LOGL_ERROR, "could not clone E1 line\n");
Pablo Neira Ayuso1e401942012-08-22 14:16:24 +0200705 return -ENOMEM;
Pablo Neira Ayuso3832c4f2011-07-07 17:47:26 +0200706 }
707 /* initialize the fds */
708 for (i = 0; i < ARRAY_SIZE(line->ts); ++i)
709 line->ts[i].driver.ipaccess.fd.fd = -1;
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200710
Pablo Neira Ayuso3832c4f2011-07-07 17:47:26 +0200711 /* we need this to initialize this in case to avoid crashes in case
712 * that the socket is closed before we've seen an ID_RESP. */
Pau Espin Pedrolb5cfc6b2018-10-02 21:22:18 +0200713 e1inp_ts_config_sign(e1inp_line_ipa_oml_ts(line), line);
Pablo Neira Ayuso3832c4f2011-07-07 17:47:26 +0200714
Pau Espin Pedrolb5cfc6b2018-10-02 21:22:18 +0200715 e1i_ts = e1inp_line_ipa_rsl_ts(line, 0);
Pablo Neira Ayuso3832c4f2011-07-07 17:47:26 +0200716
717 bfd = &e1i_ts->driver.ipaccess.fd;
Harald Weltede3959e2020-10-18 22:28:50 +0200718 osmo_fd_setup(bfd, fd, OSMO_FD_READ, ipaccess_fd_cb, line, E1INP_SIGN_RSL);
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200719 ret = osmo_fd_register(bfd);
720 if (ret < 0) {
Harald Weltecc2241b2011-07-19 16:06:06 +0200721 LOGP(DLINP, LOGL_ERROR, "could not register FD\n");
Pablo Neira Ayuso1e401942012-08-22 14:16:24 +0200722 goto err_line;
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200723 }
724 /* Request ID. FIXME: request LOCATION, HW/SW VErsion, Unit Name, Serno */
Harald Welteb65f58f2014-08-20 22:04:11 +0200725 ret = ipa_ccm_send_id_req(bfd->fd);
Pablo Neira Ayuso1e401942012-08-22 14:16:24 +0200726 if (ret < 0) {
727 LOGP(DLINP, LOGL_ERROR, "could not send ID REQ. Reason: %s\n",
728 strerror(errno));
729 goto err_socket;
730 }
Jacob Erlbecka4ec51e2014-01-09 14:30:56 +0100731 update_fd_settings(line, bfd->fd);
Pablo Neira Ayuso1e401942012-08-22 14:16:24 +0200732 return ret;
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200733
Pablo Neira Ayuso1e401942012-08-22 14:16:24 +0200734err_socket:
735 osmo_fd_unregister(bfd);
736err_line:
737 close(bfd->fd);
738 bfd->fd = -1;
Pau Espin Pedrola2ff7332020-07-14 21:12:50 +0200739 bfd->data = NULL;
Pau Espin Pedrol5196cd52020-07-14 17:52:09 +0200740 e1inp_line_put2(line, "ipa_bfd");
Pablo Neira Ayuso1e401942012-08-22 14:16:24 +0200741 return ret;
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200742}
743
Harald Weltee416e2e2017-05-26 13:11:59 +0200744#define IPA_STRING_MAX 64
745
746static struct msgb *
Max71393522018-01-08 15:42:00 +0100747ipa_bts_id_resp(const struct ipaccess_unit *dev, uint8_t *data, int len, int trx_nr)
Harald Weltee416e2e2017-05-26 13:11:59 +0200748{
749 struct msgb *nmsg;
750 char str[IPA_STRING_MAX];
751 uint8_t *tag;
752
753 memset(str, 0, sizeof(str));
754
755 nmsg = ipa_msg_alloc(0);
756 if (!nmsg)
757 return NULL;
758
759 *msgb_put(nmsg, 1) = IPAC_MSGT_ID_RESP;
760 while (len) {
761 if (len < 2) {
762 LOGP(DLINP, LOGL_NOTICE,
763 "Short read of ipaccess tag\n");
764 msgb_free(nmsg);
765 return NULL;
766 }
767 switch (data[1]) {
768 case IPAC_IDTAG_UNIT:
769 snprintf(str, sizeof(str), "%u/%u/%u",
770 dev->site_id, dev->bts_id, trx_nr);
771 break;
772 case IPAC_IDTAG_MACADDR:
773 snprintf(str, sizeof(str),
774 "%02x:%02x:%02x:%02x:%02x:%02x",
775 dev->mac_addr[0], dev->mac_addr[1],
776 dev->mac_addr[2], dev->mac_addr[3],
777 dev->mac_addr[4], dev->mac_addr[5]);
778 break;
779 case IPAC_IDTAG_LOCATION1:
780 if (dev->location1)
Stefan Sperling961776a2018-12-06 13:09:48 +0100781 osmo_strlcpy(str, dev->location1, sizeof(str));
Harald Weltee416e2e2017-05-26 13:11:59 +0200782 break;
783 case IPAC_IDTAG_LOCATION2:
784 if (dev->location2)
Stefan Sperling961776a2018-12-06 13:09:48 +0100785 osmo_strlcpy(str, dev->location2, sizeof(str));
Harald Weltee416e2e2017-05-26 13:11:59 +0200786 break;
787 case IPAC_IDTAG_EQUIPVERS:
788 if (dev->equipvers)
Stefan Sperling961776a2018-12-06 13:09:48 +0100789 osmo_strlcpy(str, dev->equipvers, sizeof(str));
Harald Weltee416e2e2017-05-26 13:11:59 +0200790 break;
791 case IPAC_IDTAG_SWVERSION:
792 if (dev->swversion)
Neels Hofmeyr4c57eef2018-07-26 17:28:24 +0200793 osmo_strlcpy(str, dev->swversion, sizeof(str));
Harald Weltee416e2e2017-05-26 13:11:59 +0200794 break;
795 case IPAC_IDTAG_UNITNAME:
796 snprintf(str, sizeof(str),
797 "%s-%02x-%02x-%02x-%02x-%02x-%02x",
798 dev->unit_name,
799 dev->mac_addr[0], dev->mac_addr[1],
800 dev->mac_addr[2], dev->mac_addr[3],
801 dev->mac_addr[4], dev->mac_addr[5]);
802 break;
803 case IPAC_IDTAG_SERNR:
804 if (dev->serno)
Stefan Sperling961776a2018-12-06 13:09:48 +0100805 osmo_strlcpy(str, dev->serno, sizeof(str));
Harald Weltee416e2e2017-05-26 13:11:59 +0200806 break;
807 default:
808 LOGP(DLINP, LOGL_NOTICE,
809 "Unknown ipaccess tag 0x%02x\n", *data);
810 msgb_free(nmsg);
811 return NULL;
812 }
Harald Weltee416e2e2017-05-26 13:11:59 +0200813
814 LOGP(DLINP, LOGL_INFO, " tag %d: %s\n", data[1], str);
815 tag = msgb_put(nmsg, 3 + strlen(str) + 1);
816 tag[0] = 0x00;
817 tag[1] = 1 + strlen(str) + 1;
818 tag[2] = data[1];
819 memcpy(tag + 3, str, strlen(str) + 1);
820 data += 2;
821 len -= 2;
822 }
823 ipa_msg_push_header(nmsg, IPAC_PROTO_IPACCESS);
824 return nmsg;
825}
826
Pablo Neira Ayusodfafe682011-07-02 14:32:32 +0200827static struct msgb *ipa_bts_id_ack(void)
828{
829 struct msgb *nmsg2;
830
Pablo Neira Ayuso88136fc2011-07-08 16:21:55 +0200831 nmsg2 = ipa_msg_alloc(0);
Pablo Neira Ayusodfafe682011-07-02 14:32:32 +0200832 if (!nmsg2)
833 return NULL;
834
835 *msgb_put(nmsg2, 1) = IPAC_MSGT_ID_ACK;
Pablo Neira Ayuso88136fc2011-07-08 16:21:55 +0200836 ipa_msg_push_header(nmsg2, IPAC_PROTO_IPACCESS);
Pablo Neira Ayusodfafe682011-07-02 14:32:32 +0200837
838 return nmsg2;
839}
840
Harald Welte51de9ca2013-06-30 20:13:16 +0200841static void ipaccess_bts_updown_cb(struct ipa_client_conn *link, int up)
842{
843 struct e1inp_line *line = link->line;
844
Eric Wildef1f3272019-07-10 18:10:31 +0200845 if (up) {
846 struct osmo_fsm_inst *ka_fsm = ipaccess_line_ts(link->ofd, line)->driver.ipaccess.ka_fsm;
847
848 update_fd_settings(line, link->ofd->fd);
849 if (ka_fsm && line->ipa_kap)
850 ipa_keepalive_fsm_start(ka_fsm);
851 return;
852 }
Harald Welte51de9ca2013-06-30 20:13:16 +0200853
854 if (line->ops->sign_link_down)
855 line->ops->sign_link_down(line);
856}
857
Harald Welte783715b2014-08-17 18:24:51 +0200858/* handle incoming message to BTS, check if it is an IPA CCM, and if yes,
859 * handle it accordingly (PING/PONG/ID_REQ/ID_RESP/ID_ACK) */
860int ipaccess_bts_handle_ccm(struct ipa_client_conn *link,
861 struct ipaccess_unit *dev, struct msgb *msg)
Pablo Neira Ayuso591ddad2011-06-21 18:16:42 +0200862{
863 struct ipaccess_head *hh = (struct ipaccess_head *) msg->data;
Pablo Neira Ayuso1e401942012-08-22 14:16:24 +0200864 struct msgb *rmsg;
865 int ret = 0;
Eric Wildef1f3272019-07-10 18:10:31 +0200866 /* line might not exist if != bsc||bts */
867 struct e1inp_line *line = link->line;
Pablo Neira Ayuso591ddad2011-06-21 18:16:42 +0200868
869 /* special handling for IPA CCM. */
870 if (hh->proto == IPAC_PROTO_IPACCESS) {
871 uint8_t msg_type = *(msg->l2h);
Eric Wildef1f3272019-07-10 18:10:31 +0200872 struct osmo_fsm_inst* ka_fsm = NULL;
873
874 /* peek the pong for our keepalive fsm */
875 if (line && msg_type == IPAC_MSGT_PONG) {
876 ka_fsm = ipaccess_line_ts(link->ofd, line)->driver.ipaccess.ka_fsm;
877 ipa_keepalive_fsm_pong_received(ka_fsm);
878 }
Pablo Neira Ayuso591ddad2011-06-21 18:16:42 +0200879
880 /* ping, pong and acknowledgment cases. */
Harald Welteb65f58f2014-08-20 22:04:11 +0200881 ret = ipa_ccm_rcvmsg_bts_base(msg, link->ofd);
Pablo Neira Ayuso1e401942012-08-22 14:16:24 +0200882 if (ret < 0)
883 goto err;
Pablo Neira Ayuso591ddad2011-06-21 18:16:42 +0200884
885 /* this is a request for identification from the BSC. */
886 if (msg_type == IPAC_MSGT_ID_GET) {
Pablo Neira Ayusodfafe682011-07-02 14:32:32 +0200887 uint8_t *data = msgb_l2(msg);
888 int len = msgb_l2len(msg);
Andreas Eversbergf422a752014-01-21 14:54:41 +0100889 int trx_nr = 0;
890
891 if (link->ofd->priv_nr >= E1INP_SIGN_RSL)
892 trx_nr = link->ofd->priv_nr - E1INP_SIGN_RSL;
Pablo Neira Ayusodfafe682011-07-02 14:32:32 +0200893
Vadim Yanitskiy69ae2382019-12-02 02:42:43 +0700894 LOGP(DLINP, LOGL_NOTICE, "received ID_GET for unit ID %u/%u/%u\n",
Pau Espin Pedroldd95eb62018-10-02 20:05:28 +0200895 dev->site_id, dev->bts_id, trx_nr);
Harald Weltee416e2e2017-05-26 13:11:59 +0200896 rmsg = ipa_bts_id_resp(dev, data + 1, len - 1, trx_nr);
Harald Welteb65f58f2014-08-20 22:04:11 +0200897 ret = ipa_send(link->ofd->fd, rmsg->data, rmsg->len);
Pablo Neira Ayuso1e401942012-08-22 14:16:24 +0200898 if (ret != rmsg->len) {
899 LOGP(DLINP, LOGL_ERROR, "cannot send ID_RESP "
900 "message. Reason: %s\n", strerror(errno));
901 goto err_rmsg;
902 }
Pablo Neira Ayusodfafe682011-07-02 14:32:32 +0200903 msgb_free(rmsg);
904
905 /* send ID_ACK. */
906 rmsg = ipa_bts_id_ack();
Harald Welteb65f58f2014-08-20 22:04:11 +0200907 ret = ipa_send(link->ofd->fd, rmsg->data, rmsg->len);
Pablo Neira Ayuso1e401942012-08-22 14:16:24 +0200908 if (ret != rmsg->len) {
909 LOGP(DLINP, LOGL_ERROR, "cannot send ID_ACK "
910 "message. Reason: %s\n", strerror(errno));
911 goto err_rmsg;
912 }
Pablo Neira Ayusodfafe682011-07-02 14:32:32 +0200913 msgb_free(rmsg);
Harald Welte783715b2014-08-17 18:24:51 +0200914 }
915 return 1;
916 }
Harald Welte6eddd472013-06-30 20:18:53 +0200917
Harald Welte783715b2014-08-17 18:24:51 +0200918 return 0;
919
920err_rmsg:
921 msgb_free(rmsg);
922err:
923 ipa_client_conn_close(link);
924 return -1;
925}
926
927static int ipaccess_bts_read_cb(struct ipa_client_conn *link, struct msgb *msg)
928{
929 struct ipaccess_head *hh = (struct ipaccess_head *) msg->data;
930 struct e1inp_ts *e1i_ts = NULL;
931 struct e1inp_sign_link *sign_link;
Neels Hofmeyrfe673112018-08-24 17:43:45 +0200932 uint8_t msg_type = *(msg->l2h);
Harald Welte783715b2014-08-17 18:24:51 +0200933 int ret = 0;
934
935 /* special handling for IPA CCM. */
936 if (hh->proto == IPAC_PROTO_IPACCESS) {
Harald Welte783715b2014-08-17 18:24:51 +0200937 /* this is a request for identification from the BSC. */
938 if (msg_type == IPAC_MSGT_ID_GET) {
939 if (!link->line->ops->sign_link_up) {
940 LOGP(DLINP, LOGL_ERROR,
941 "Unable to set signal link, "
942 "closing socket.\n");
Harald Welte783715b2014-08-17 18:24:51 +0200943 goto err;
944 }
945 }
946 }
947
948 /* core CCM handling */
949 ret = ipaccess_bts_handle_ccm(link, link->line->ops->cfg.ipa.dev, msg);
950 if (ret < 0)
951 goto err;
952
953 if (ret == 1 && hh->proto == IPAC_PROTO_IPACCESS) {
Harald Welte783715b2014-08-17 18:24:51 +0200954 if (msg_type == IPAC_MSGT_ID_GET) {
Harald Welte6eddd472013-06-30 20:18:53 +0200955 sign_link = link->line->ops->sign_link_up(msg,
956 link->line,
957 link->ofd->priv_nr);
958 if (sign_link == NULL) {
959 LOGP(DLINP, LOGL_ERROR,
960 "Unable to set signal link, "
961 "closing socket.\n");
Harald Welte6eddd472013-06-30 20:18:53 +0200962 goto err;
963 }
Pablo Neira Ayuso591ddad2011-06-21 18:16:42 +0200964 }
Pablo Neira Ayuso84e5cb92012-08-23 23:41:54 +0200965 msgb_free(msg);
Pablo Neira Ayuso1e401942012-08-22 14:16:24 +0200966 return ret;
Pablo Neira Ayuso591ddad2011-06-21 18:16:42 +0200967 } else if (link->port == IPA_TCP_PORT_OML)
Pau Espin Pedrolb5cfc6b2018-10-02 21:22:18 +0200968 e1i_ts = e1inp_line_ipa_oml_ts(link->line);
Pablo Neira Ayuso591ddad2011-06-21 18:16:42 +0200969 else if (link->port == IPA_TCP_PORT_RSL)
Pau Espin Pedrolb5cfc6b2018-10-02 21:22:18 +0200970 e1i_ts = e1inp_line_ipa_rsl_ts(link->line, link->ofd->priv_nr - E1INP_SIGN_RSL);
Pablo Neira Ayuso591ddad2011-06-21 18:16:42 +0200971
Pablo Neira Ayusob9487012013-07-05 14:38:43 +0200972 OSMO_ASSERT(e1i_ts != NULL);
973
Neels Hofmeyrfe673112018-08-24 17:43:45 +0200974 if (e1i_ts->type == E1INP_TS_TYPE_NONE) {
975 LOGP(DLINP, LOGL_ERROR, "Signalling link not initialized. Discarding."
976 " port=%u msg_type=%u\n", link->port, msg_type);
Neels Hofmeyrfe673112018-08-24 17:43:45 +0200977 goto err;
978 }
Pau Espin Pedrol7ad2b152018-08-28 17:37:59 +0200979
Pablo Neira Ayuso591ddad2011-06-21 18:16:42 +0200980 /* look up for some existing signaling link. */
981 sign_link = e1inp_lookup_sign_link(e1i_ts, hh->proto, 0);
982 if (sign_link == NULL) {
Harald Weltecc2241b2011-07-19 16:06:06 +0200983 LOGP(DLINP, LOGL_ERROR, "no matching signalling link for "
Pablo Neira Ayuso591ddad2011-06-21 18:16:42 +0200984 "hh->proto=0x%02x\n", hh->proto);
Pablo Neira Ayuso1e401942012-08-22 14:16:24 +0200985 goto err;
Pablo Neira Ayuso591ddad2011-06-21 18:16:42 +0200986 }
987 msg->dst = sign_link;
988
989 /* XXX better use e1inp_ts_rx? */
Pablo Neira Ayusof163d232011-06-25 18:42:55 +0200990 if (!link->line->ops->sign_link) {
Harald Weltecc2241b2011-07-19 16:06:06 +0200991 LOGP(DLINP, LOGL_ERROR, "Fix your application, "
Pablo Neira Ayuso591ddad2011-06-21 18:16:42 +0200992 "no action set for signalling messages.\n");
Pablo Neira Ayuso1e401942012-08-22 14:16:24 +0200993 goto err;
Pablo Neira Ayuso591ddad2011-06-21 18:16:42 +0200994 }
Pau Espin Pedroled122f32018-08-28 18:25:02 +0200995 return link->line->ops->sign_link(msg);
Pablo Neira Ayuso1e401942012-08-22 14:16:24 +0200996
Pablo Neira Ayuso1e401942012-08-22 14:16:24 +0200997err:
Harald Welte783715b2014-08-17 18:24:51 +0200998 ipa_client_conn_close(link);
Pablo Neira Ayuso1e401942012-08-22 14:16:24 +0200999 msgb_free(msg);
Pau Espin Pedrol7ad2b152018-08-28 17:37:59 +02001000 return -EBADF;
Pablo Neira Ayuso591ddad2011-06-21 18:16:42 +02001001}
1002
Pablo Neira Ayusod6216402011-08-31 16:47:44 +02001003struct ipaccess_line {
Oliver Smith65ae42c2020-01-22 11:24:52 +01001004 bool line_already_initialized;
Pablo Neira Ayusod6216402011-08-31 16:47:44 +02001005};
1006
Pablo Neira Ayuso4e862cb2011-08-19 18:43:38 +02001007static int ipaccess_line_update(struct e1inp_line *line)
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +02001008{
1009 int ret = -ENOENT;
Pablo Neira Ayusod6216402011-08-31 16:47:44 +02001010 struct ipaccess_line *il;
1011
1012 if (!line->driver_data)
1013 line->driver_data = talloc_zero(line, struct ipaccess_line);
1014
1015 if (!line->driver_data) {
1016 LOGP(DLINP, LOGL_ERROR, "ipaccess: OOM in line update\n");
1017 return -ENOMEM;
1018 }
1019 il = line->driver_data;
1020
1021 /* We only initialize this line once. */
1022 if (il->line_already_initialized)
1023 return 0;
1024
Oliver Smith65ae42c2020-01-22 11:24:52 +01001025 il->line_already_initialized = true;
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +02001026
Pablo Neira Ayuso4e862cb2011-08-19 18:43:38 +02001027 switch(line->ops->cfg.ipa.role) {
Pablo Neira Ayuso986191f2011-06-21 19:56:26 +02001028 case E1INP_LINE_R_BSC: {
1029 struct ipa_server_link *oml_link, *rsl_link;
Max4c4a1c22016-12-30 15:10:47 +01001030 const char *ipa = e1inp_ipa_get_bind_addr();
Pablo Neira Ayuso986191f2011-06-21 19:56:26 +02001031
Max4c4a1c22016-12-30 15:10:47 +01001032 LOGP(DLINP, LOGL_NOTICE, "enabling ipaccess BSC mode on %s "
1033 "with OML %u and RSL %u TCP ports\n", ipa,
1034 IPA_TCP_PORT_OML, IPA_TCP_PORT_RSL);
Pablo Neira Ayuso96e81282011-06-09 15:06:11 +02001035
Max4c4a1c22016-12-30 15:10:47 +01001036 oml_link = ipa_server_link_create(tall_ipa_ctx, line, ipa,
Neels Hofmeyr0db1d432016-02-22 13:29:09 +01001037 IPA_TCP_PORT_OML,
Pablo Neira Ayusoe009f4a2011-06-23 13:36:34 +02001038 ipaccess_bsc_oml_cb, NULL);
Pablo Neira Ayuso986191f2011-06-21 19:56:26 +02001039 if (oml_link == NULL) {
Harald Weltecc2241b2011-07-19 16:06:06 +02001040 LOGP(DLINP, LOGL_ERROR, "cannot create OML "
Pablo Neira Ayuso986191f2011-06-21 19:56:26 +02001041 "BSC link: %s\n", strerror(errno));
1042 return -ENOMEM;
Pablo Neira Ayusof67471f2011-06-07 11:25:49 +02001043 }
Pablo Neira Ayuso986191f2011-06-21 19:56:26 +02001044 if (ipa_server_link_open(oml_link) < 0) {
Harald Weltecc2241b2011-07-19 16:06:06 +02001045 LOGP(DLINP, LOGL_ERROR, "cannot open OML BSC link: %s\n",
Pablo Neira Ayuso986191f2011-06-21 19:56:26 +02001046 strerror(errno));
Pablo Neira Ayuso986191f2011-06-21 19:56:26 +02001047 ipa_server_link_destroy(oml_link);
1048 return -EIO;
Pablo Neira Ayusof67471f2011-06-07 11:25:49 +02001049 }
Max4c4a1c22016-12-30 15:10:47 +01001050 rsl_link = ipa_server_link_create(tall_ipa_ctx, line, ipa,
Neels Hofmeyr0db1d432016-02-22 13:29:09 +01001051 IPA_TCP_PORT_RSL,
Pablo Neira Ayusoe009f4a2011-06-23 13:36:34 +02001052 ipaccess_bsc_rsl_cb, NULL);
Pablo Neira Ayuso986191f2011-06-21 19:56:26 +02001053 if (rsl_link == NULL) {
Harald Weltecc2241b2011-07-19 16:06:06 +02001054 LOGP(DLINP, LOGL_ERROR, "cannot create RSL "
Pablo Neira Ayuso986191f2011-06-21 19:56:26 +02001055 "BSC link: %s\n", strerror(errno));
1056 return -ENOMEM;
1057 }
1058 if (ipa_server_link_open(rsl_link) < 0) {
Harald Weltecc2241b2011-07-19 16:06:06 +02001059 LOGP(DLINP, LOGL_ERROR, "cannot open RSL BSC link: %s\n",
Pablo Neira Ayuso986191f2011-06-21 19:56:26 +02001060 strerror(errno));
Pablo Neira Ayuso986191f2011-06-21 19:56:26 +02001061 ipa_server_link_destroy(rsl_link);
1062 return -EIO;
1063 }
1064 ret = 0;
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +02001065 break;
Pablo Neira Ayuso986191f2011-06-21 19:56:26 +02001066 }
Pablo Neira Ayuso96e81282011-06-09 15:06:11 +02001067 case E1INP_LINE_R_BTS: {
Harald Welte84f67b22013-06-30 13:13:59 +02001068 struct ipa_client_conn *link;
Eric Wildef1f3272019-07-10 18:10:31 +02001069 struct e1inp_ts *e1i_ts;
Pablo Neira Ayuso96e81282011-06-09 15:06:11 +02001070
Max4c4a1c22016-12-30 15:10:47 +01001071 LOGP(DLINP, LOGL_NOTICE, "enabling ipaccess BTS mode, "
1072 "OML connecting to %s:%u\n", line->ops->cfg.ipa.addr,
1073 IPA_TCP_PORT_OML);
Pablo Neira Ayuso96e81282011-06-09 15:06:11 +02001074
Pau Espin Pedrolb6e28bf2019-11-08 17:30:28 +01001075 link = ipa_client_conn_create2(tall_ipa_ctx,
Pau Espin Pedrolb5cfc6b2018-10-02 21:22:18 +02001076 e1inp_line_ipa_oml_ts(line),
Pablo Neira Ayuso00af7722011-09-08 12:47:06 +02001077 E1INP_SIGN_OML,
Pau Espin Pedrolb6e28bf2019-11-08 17:30:28 +01001078 NULL, 0,
Pablo Neira Ayuso4e862cb2011-08-19 18:43:38 +02001079 line->ops->cfg.ipa.addr,
1080 IPA_TCP_PORT_OML,
Harald Welte51de9ca2013-06-30 20:13:16 +02001081 ipaccess_bts_updown_cb,
Harald Weltea3e9dd52013-06-30 14:25:07 +02001082 ipaccess_bts_read_cb,
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +02001083 ipaccess_bts_write_cb,
Harald Welte10b41302013-06-30 14:05:49 +02001084 line);
Pablo Neira Ayuso96e81282011-06-09 15:06:11 +02001085 if (link == NULL) {
Harald Weltecc2241b2011-07-19 16:06:06 +02001086 LOGP(DLINP, LOGL_ERROR, "cannot create OML "
Pablo Neira Ayuso29465d32011-06-21 14:21:33 +02001087 "BTS link: %s\n", strerror(errno));
Pablo Neira Ayuso96e81282011-06-09 15:06:11 +02001088 return -ENOMEM;
1089 }
Pablo Neira Ayusof0995672011-09-08 12:58:38 +02001090 if (ipa_client_conn_open(link) < 0) {
Harald Weltecc2241b2011-07-19 16:06:06 +02001091 LOGP(DLINP, LOGL_ERROR, "cannot open OML BTS link: %s\n",
Pablo Neira Ayuso29465d32011-06-21 14:21:33 +02001092 strerror(errno));
Pablo Neira Ayusof0995672011-09-08 12:58:38 +02001093 ipa_client_conn_close(link);
1094 ipa_client_conn_destroy(link);
Pablo Neira Ayuso96e81282011-06-09 15:06:11 +02001095 return -EIO;
1096 }
Eric Wildef1f3272019-07-10 18:10:31 +02001097
1098 e1i_ts = e1inp_line_ipa_oml_ts(line);
1099 ipaccess_bts_keepalive_fsm_alloc(e1i_ts, link, "oml_bts_to_bsc");
Pablo Neira Ayuso96e81282011-06-09 15:06:11 +02001100 ret = 0;
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +02001101 break;
Pablo Neira Ayuso96e81282011-06-09 15:06:11 +02001102 }
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +02001103 default:
1104 break;
1105 }
1106 return ret;
1107}
1108
Andreas Eversbergf422a752014-01-21 14:54:41 +01001109
1110/* backwards compatibility */
Harald Welte84f67b22013-06-30 13:13:59 +02001111int e1inp_ipa_bts_rsl_connect(struct e1inp_line *line,
1112 const char *rem_addr, uint16_t rem_port)
1113{
Andreas Eversbergf422a752014-01-21 14:54:41 +01001114 return e1inp_ipa_bts_rsl_connect_n(line, rem_addr, rem_port, 0);
1115}
1116
1117int e1inp_ipa_bts_rsl_connect_n(struct e1inp_line *line,
1118 const char *rem_addr, uint16_t rem_port,
1119 uint8_t trx_nr)
1120{
Harald Welte84f67b22013-06-30 13:13:59 +02001121 struct ipa_client_conn *rsl_link;
Eric Wildef1f3272019-07-10 18:10:31 +02001122 struct e1inp_ts *e1i_ts = e1inp_line_ipa_rsl_ts(line, trx_nr);
Harald Welte84f67b22013-06-30 13:13:59 +02001123
Andreas Eversbergf422a752014-01-21 14:54:41 +01001124 if (E1INP_SIGN_RSL+trx_nr-1 >= NUM_E1_TS) {
1125 LOGP(DLINP, LOGL_ERROR, "cannot create RSL BTS link: "
1126 "trx_nr (%d) out of range\n", trx_nr);
1127 return -EINVAL;
1128 }
Andreas Eversbergf422a752014-01-21 14:54:41 +01001129
Pau Espin Pedrolb6e28bf2019-11-08 17:30:28 +01001130 rsl_link = ipa_client_conn_create2(tall_ipa_ctx,
Pau Espin Pedrolb5cfc6b2018-10-02 21:22:18 +02001131 e1inp_line_ipa_rsl_ts(line, trx_nr),
Andreas Eversbergf422a752014-01-21 14:54:41 +01001132 E1INP_SIGN_RSL+trx_nr,
Pau Espin Pedrolb6e28bf2019-11-08 17:30:28 +01001133 NULL, 0,
Harald Welte84f67b22013-06-30 13:13:59 +02001134 rem_addr, rem_port,
Harald Welte51de9ca2013-06-30 20:13:16 +02001135 ipaccess_bts_updown_cb,
Harald Weltea3e9dd52013-06-30 14:25:07 +02001136 ipaccess_bts_read_cb,
Harald Welte84f67b22013-06-30 13:13:59 +02001137 ipaccess_bts_write_cb,
Harald Welte10b41302013-06-30 14:05:49 +02001138 line);
Harald Welte84f67b22013-06-30 13:13:59 +02001139 if (rsl_link == NULL) {
1140 LOGP(DLINP, LOGL_ERROR, "cannot create RSL "
1141 "BTS link: %s\n", strerror(errno));
1142 return -ENOMEM;
1143 }
1144 if (ipa_client_conn_open(rsl_link) < 0) {
1145 LOGP(DLINP, LOGL_ERROR, "cannot open RSL BTS link: %s\n",
1146 strerror(errno));
1147 ipa_client_conn_close(rsl_link);
1148 ipa_client_conn_destroy(rsl_link);
1149 return -EIO;
1150 }
Eric Wildef1f3272019-07-10 18:10:31 +02001151
1152 ipaccess_bts_keepalive_fsm_alloc(e1i_ts, rsl_link, "rsl_bts_to_bsc");
Harald Welte84f67b22013-06-30 13:13:59 +02001153 return 0;
1154}
1155
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +02001156void e1inp_ipaccess_init(void)
1157{
Pablo Neira Ayuso54b49792011-06-07 12:15:26 +02001158 tall_ipa_ctx = talloc_named_const(libosmo_abis_ctx, 1, "ipa");
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +02001159 e1inp_driver_register(&ipaccess_driver);
1160}
Neels Hofmeyr0db1d432016-02-22 13:29:09 +01001161
1162void e1inp_ipa_set_bind_addr(const char *ip_bind_addr)
1163{
1164 talloc_free((char*)ipaccess_driver.bind_addr);
1165 ipaccess_driver.bind_addr = NULL;
1166
1167 if (ip_bind_addr)
1168 ipaccess_driver.bind_addr = talloc_strdup(tall_ipa_ctx,
1169 ip_bind_addr);
1170}
1171
1172const char *e1inp_ipa_get_bind_addr(void)
1173{
1174 return ipaccess_driver.bind_addr?
1175 ipaccess_driver.bind_addr
1176 : "0.0.0.0";
1177}