blob: 42dd94279ded92fc306706fac3d6569b62087e2e [file] [log] [blame]
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +02001/* OpenBSC Abis input driver for ip.access */
2
Harald Welte41547552021-04-28 18:23:21 +02003/* (C) 2009-2021 by Harald Welte <laforge@gnumonks.org>
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +02004 * (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>
Philipp Maierf5f31d32021-12-06 16:46:40 +010053#include <osmocom/core/stats_tcp.h>
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +020054
Harald Welte41547552021-04-28 18:23:21 +020055/* global parameters of IPA input driver */
56struct ipa_pars g_e1inp_ipaccess_pars;
57
Pablo Neira Ayuso54b49792011-06-07 12:15:26 +020058static void *tall_ipa_ctx;
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +020059
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +020060#define TS1_ALLOC_SIZE 900
61
Daniel Willmann85980722014-01-09 14:30:55 +010062#define DEFAULT_TCP_KEEPALIVE_IDLE_TIMEOUT 30
63#define DEFAULT_TCP_KEEPALIVE_INTERVAL 3
64#define DEFAULT_TCP_KEEPALIVE_RETRY_COUNT 10
65
Eric Wildef1f3272019-07-10 18:10:31 +020066static inline struct e1inp_ts *ipaccess_line_ts(struct osmo_fd *bfd, struct e1inp_line *line)
67{
68 if (bfd->priv_nr == E1INP_SIGN_OML)
69 return e1inp_line_ipa_oml_ts(line);
70 else
71 return e1inp_line_ipa_rsl_ts(line, bfd->priv_nr - E1INP_SIGN_RSL);
72}
73
74static inline void ipaccess_keepalive_fsm_cleanup(struct e1inp_ts *e1i_ts)
75{
76 struct osmo_fsm_inst *ka_fsm;
77
78 ka_fsm = e1i_ts->driver.ipaccess.ka_fsm;
79 if (ka_fsm) {
80 ipa_keepalive_fsm_stop(ka_fsm);
81 e1i_ts->driver.ipaccess.ka_fsm = NULL;
82 }
83}
84
Harald Welte10b41302013-06-30 14:05:49 +020085static int ipaccess_drop(struct osmo_fd *bfd, struct e1inp_line *line)
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +020086{
Pablo Neira Ayuso1e401942012-08-22 14:16:24 +020087 int ret = 1;
Eric Wildef1f3272019-07-10 18:10:31 +020088 struct e1inp_ts *e1i_ts = ipaccess_line_ts(bfd, line);
Pau Espin Pedroldeb5c4f2020-07-31 12:55:01 +020089 e1inp_line_get2(line, __func__);
Eric Wildef1f3272019-07-10 18:10:31 +020090
91 ipaccess_keepalive_fsm_cleanup(e1i_ts);
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +020092
Pablo Neira Ayuso466c5462011-07-07 19:17:20 +020093 /* Error case: we did not see any ID_RESP yet for this socket. */
94 if (bfd->fd != -1) {
Pau Espin Pedrol91314c12020-11-23 14:45:03 +010095 LOGPITS(e1i_ts, DLINP, LOGL_NOTICE, "Forcing socket shutdown\n");
Pablo Neira Ayuso9621b412011-07-07 16:19:21 +020096 osmo_fd_unregister(bfd);
97 close(bfd->fd);
98 bfd->fd = -1;
Pau Espin Pedrol9af069d2020-11-23 14:54:00 +010099 switch (line->ops->cfg.ipa.role) {
100 case E1INP_LINE_R_BSC:
101 /* This is BSC code, ipaccess_drop() is only called for
102 accepted() sockets, hence the bfd holds a reference to
103 e1inp_line in ->data that needs to be released */
104 OSMO_ASSERT(bfd->data == line);
105 bfd->data = NULL;
106 e1inp_line_put2(line, "ipa_bfd");
107 break;
108 case E1INP_LINE_R_BTS:
109 /* BTS code: bfd->data contains pointer to struct
110 * ipa_client_conn. Leave it alive so it reconnects.
111 */
112 break;
113 default:
114 break;
115 }
Pablo Neira Ayuso466c5462011-07-07 19:17:20 +0200116 ret = -ENOENT;
Pau Espin Pedrol91314c12020-11-23 14:45:03 +0100117 } else {
118 LOGPITS(e1i_ts, DLINP, LOGL_ERROR,
119 "Forcing socket shutdown with no signal link set\n");
Pablo Neira Ayuso9621b412011-07-07 16:19:21 +0200120 }
Pablo Neira Ayuso6cc3f922012-08-22 13:57:58 +0200121
Jacob Erlbeck98af3c32014-03-31 10:53:32 +0200122 msgb_free(e1i_ts->pending_msg);
123 e1i_ts->pending_msg = NULL;
124
Pablo Neira Ayuso6cc3f922012-08-22 13:57:58 +0200125 /* e1inp_sign_link_destroy releases the socket descriptors for us. */
Pau Espin Pedrolc4c3a852022-09-16 19:24:07 +0200126 if (line->ops->sign_link_down)
127 line->ops->sign_link_down(line);
Pablo Neira Ayuso6cc3f922012-08-22 13:57:58 +0200128
Pau Espin Pedroldeb5c4f2020-07-31 12:55:01 +0200129 e1inp_line_put2(line, __func__);
Pablo Neira Ayuso466c5462011-07-07 19:17:20 +0200130 return ret;
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200131}
132
Eric Wildef1f3272019-07-10 18:10:31 +0200133static void ipa_bsc_keepalive_write_server_cb(struct osmo_fsm_inst *fi, void *conn, struct msgb *msg)
134{
135 struct osmo_fd *bfd = (struct osmo_fd *)conn;
136 write(bfd->fd, msg->data, msg->len);
137 msgb_free(msg);
138}
139
140static int ipa_bsc_keepalive_timeout_cb(struct osmo_fsm_inst *fi, void *data)
141{
142 struct osmo_fd *bfd = (struct osmo_fd *)data;
143
144 if (bfd->fd == -1)
145 return 1;
146
147 ipaccess_drop(bfd, (struct e1inp_line *)bfd->data);
148 return 1;
149}
150
151static void ipaccess_bsc_keepalive_fsm_alloc(struct e1inp_ts *e1i_ts, struct osmo_fd *bfd, const char *id)
152{
153 struct e1inp_line *line = e1i_ts->line;
154 struct osmo_fsm_inst *ka_fsm;
155
156 ipaccess_keepalive_fsm_cleanup(e1i_ts);
157 if (!line->ipa_kap)
158 return;
159
160 ka_fsm = ipa_generic_conn_alloc_keepalive_fsm(tall_ipa_ctx, bfd, line->ipa_kap, id);
161 e1i_ts->driver.ipaccess.ka_fsm = ka_fsm;
162 if (!ka_fsm)
163 return;
164
165 ipa_keepalive_fsm_set_timeout_cb(ka_fsm, ipa_bsc_keepalive_timeout_cb);
166 ipa_keepalive_fsm_set_send_cb(ka_fsm, ipa_bsc_keepalive_write_server_cb);
167 ipa_keepalive_fsm_start(ka_fsm);
168}
169
170static void ipa_bts_keepalive_write_client_cb(struct osmo_fsm_inst *fi, void *conn, struct msgb *msg) {
171 struct ipa_client_conn *link = (struct ipa_client_conn *)conn;
172 int ret = 0;
173
174 ret = ipa_send(link->ofd->fd, msg->data, msg->len);
175 if (ret != msg->len) {
176 LOGP(DLINP, LOGL_ERROR, "cannot send message. Reason: %s\n", strerror(errno));
177 }
178 msgb_free(msg);
179}
180
181static void update_fd_settings(struct e1inp_line *line, int fd);
182static void ipaccess_bts_updown_cb(struct ipa_client_conn *link, int up);
183
184static int ipa_bts_keepalive_timeout_cb(struct osmo_fsm_inst *fi, void *conn) {
185 ipaccess_bts_updown_cb(conn, false);
186 return 1;
187}
188
189static void ipaccess_bts_keepalive_fsm_alloc(struct e1inp_ts *e1i_ts, struct ipa_client_conn *client, const char *id)
190{
191 struct e1inp_line *line = e1i_ts->line;
192 struct osmo_fsm_inst *ka_fsm;
193
194 ipaccess_keepalive_fsm_cleanup(e1i_ts);
195 if (!line->ipa_kap)
196 return;
197
198 ka_fsm = ipa_client_conn_alloc_keepalive_fsm(client, line->ipa_kap, id);
199 e1i_ts->driver.ipaccess.ka_fsm = ka_fsm;
200 if (!ka_fsm)
201 return;
202
203 ipa_keepalive_fsm_set_timeout_cb(ka_fsm, ipa_bts_keepalive_timeout_cb);
204 ipa_keepalive_fsm_set_send_cb(ka_fsm, ipa_bts_keepalive_write_client_cb);
205}
206
Pau Espin Pedrol7edc25d2018-05-23 14:57:03 +0200207/* Returns -1 on error, and 0 or 1 on success. If -1 or 1 is returned, line has
208 * been released and should not be used anymore by the caller. */
Pablo Neira Ayuso5a4b7c52011-06-07 14:07:48 +0200209static int ipaccess_rcvmsg(struct e1inp_line *line, struct msgb *msg,
210 struct osmo_fd *bfd)
211{
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200212 struct tlv_parsed tlvp;
Pablo Neira Ayuso5a4b7c52011-06-07 14:07:48 +0200213 uint8_t msg_type = *(msg->l2h);
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200214 struct ipaccess_unit unit_data = {};
215 struct e1inp_sign_link *sign_link;
216 char *unitid;
217 int len, ret;
Eric Wildef1f3272019-07-10 18:10:31 +0200218 struct e1inp_ts *e1i_ts;
219 struct osmo_fsm_inst *ka_fsm;
220
221 /* peek the pong for our keepalive fsm */
222 e1i_ts = ipaccess_line_ts(bfd, line);
223 ka_fsm = e1i_ts->driver.ipaccess.ka_fsm;
224 if (ka_fsm && msg_type == IPAC_MSGT_PONG)
225 ipa_keepalive_fsm_pong_received(ka_fsm);
Pablo Neira Ayuso5a4b7c52011-06-07 14:07:48 +0200226
Pablo Neira Ayusoeb434132011-07-07 19:19:46 +0200227 /* Handle IPA PING, PONG and ID_ACK messages. */
Harald Welteb65f58f2014-08-20 22:04:11 +0200228 ret = ipa_ccm_rcvmsg_base(msg, bfd);
Pablo Neira Ayuso1e401942012-08-22 14:16:24 +0200229 switch(ret) {
230 case -1:
231 /* error in IPA control message handling */
232 goto err;
233 case 1:
234 /* this is an IPA control message, skip further processing */
Pablo Neira Ayusoeb434132011-07-07 19:19:46 +0200235 return 0;
Pablo Neira Ayuso1e401942012-08-22 14:16:24 +0200236 case 0:
237 /* this is not an IPA control message, continue */
238 break;
239 default:
240 LOGP(DLINP, LOGL_ERROR, "Unexpected return from "
Harald Welteb65f58f2014-08-20 22:04:11 +0200241 "ipa_ccm_rcvmsg_base "
Pablo Neira Ayuso1e401942012-08-22 14:16:24 +0200242 "(ret=%d)\n", ret);
243 goto err;
244 }
Pablo Neira Ayuso5a4b7c52011-06-07 14:07:48 +0200245
246 switch (msg_type) {
247 case IPAC_MSGT_ID_RESP:
Pau Espin Pedrol30e80d52020-07-14 13:23:05 +0200248 DEBUGP(DLMI, "ID_RESP ");
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200249 /* parse tags, search for Unit ID */
Harald Welte82eb55e2018-08-01 13:22:55 +0200250 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 +0200251 DEBUGPC(DLMI, "\n");
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200252 if (ret < 0) {
Harald Weltecc2241b2011-07-19 16:06:06 +0200253 LOGP(DLINP, LOGL_ERROR, "IPA response message "
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200254 "with malformed TLVs\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 if (!TLVP_PRESENT(&tlvp, IPAC_IDTAG_UNIT)) {
Harald Weltecc2241b2011-07-19 16:06:06 +0200258 LOGP(DLINP, LOGL_ERROR, "IPA response message "
Pablo Neira Ayuso466c5462011-07-07 19:17:20 +0200259 "without unit ID\n");
Pablo Neira Ayuso466c5462011-07-07 19:17:20 +0200260 goto err;
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200261
Pablo Neira Ayuso466c5462011-07-07 19:17:20 +0200262 }
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200263 len = TLVP_LEN(&tlvp, IPAC_IDTAG_UNIT);
Pablo Neira Ayuso466c5462011-07-07 19:17:20 +0200264 if (len < 1) {
Harald Weltecc2241b2011-07-19 16:06:06 +0200265 LOGP(DLINP, LOGL_ERROR, "IPA response message "
Pablo Neira Ayuso466c5462011-07-07 19:17:20 +0200266 "with too small unit ID\n");
Pablo Neira Ayuso466c5462011-07-07 19:17:20 +0200267 goto err;
268 }
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200269 unitid = (char *) TLVP_VAL(&tlvp, IPAC_IDTAG_UNIT);
270 unitid[len - 1] = '\0';
Vadim Yanitskiy1c94f6a2019-12-02 02:16:07 +0700271 ret = ipa_parse_unitid(unitid, &unit_data);
272 if (ret) {
273 LOGP(DLINP, LOGL_ERROR, "Failed to parse unit ID '%s'\n", unitid);
274 goto err;
275 }
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200276
Pablo Neira Ayusof163d232011-06-25 18:42:55 +0200277 if (!line->ops->sign_link_up) {
Harald Weltecc2241b2011-07-19 16:06:06 +0200278 LOGP(DLINP, LOGL_ERROR,
Pablo Neira Ayusocd8d2e52011-07-02 17:05:21 +0200279 "Unable to set signal link, closing socket.\n");
Pablo Neira Ayuso466c5462011-07-07 19:17:20 +0200280 goto err;
Pablo Neira Ayuso5a4b7c52011-06-07 14:07:48 +0200281 }
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200282 /* the BSC creates the new sign links at this stage. */
283 if (bfd->priv_nr == E1INP_SIGN_OML) {
284 sign_link =
285 line->ops->sign_link_up(&unit_data, line,
286 E1INP_SIGN_OML);
287 if (sign_link == NULL) {
Harald Weltecc2241b2011-07-19 16:06:06 +0200288 LOGP(DLINP, LOGL_ERROR,
Pablo Neira Ayusocd8d2e52011-07-02 17:05:21 +0200289 "Unable to set signal link, "
290 "closing socket.\n");
Pablo Neira Ayuso466c5462011-07-07 19:17:20 +0200291 goto err;
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200292 }
Eric Wildef1f3272019-07-10 18:10:31 +0200293
294 ipaccess_bsc_keepalive_fsm_alloc(e1i_ts, bfd, "oml_bsc_to_bts");
295
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200296 } else if (bfd->priv_nr == E1INP_SIGN_RSL) {
Pablo Neira Ayuso3832c4f2011-07-07 17:47:26 +0200297 struct e1inp_ts *ts;
Eric Wildef1f3272019-07-10 18:10:31 +0200298 struct osmo_fd *newbfd;
Pablo Neira Ayuso3832c4f2011-07-07 17:47:26 +0200299 struct e1inp_line *new_line;
Michael Iedemaee2589e2022-05-03 07:27:38 -0700300 char tcp_stat_name[64];
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200301
302 sign_link =
303 line->ops->sign_link_up(&unit_data, line,
304 E1INP_SIGN_RSL);
305 if (sign_link == NULL) {
Harald Weltecc2241b2011-07-19 16:06:06 +0200306 LOGP(DLINP, LOGL_ERROR,
Pablo Neira Ayusocd8d2e52011-07-02 17:05:21 +0200307 "Unable to set signal link, "
308 "closing socket.\n");
Pablo Neira Ayuso466c5462011-07-07 19:17:20 +0200309 goto err;
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200310 }
Pau Espin Pedrol8a4e3d92020-07-14 21:20:55 +0200311 /* Finally, we know which OML link is associated with
312 * this RSL link, attach it to this socket. */
313 new_line = sign_link->ts->line;
Pablo Neira Ayusodb1c8a72011-07-08 15:12:03 +0200314 /* this is a bugtrap, the BSC should be using the
315 * virtual E1 line used by OML for this RSL link. */
Pau Espin Pedrol8a4e3d92020-07-14 21:20:55 +0200316 if (new_line == line) {
Harald Weltecc2241b2011-07-19 16:06:06 +0200317 LOGP(DLINP, LOGL_ERROR,
Pablo Neira Ayusodb1c8a72011-07-08 15:12:03 +0200318 "Fix your BSC, you should use the "
319 "E1 line used by the OML link for "
320 "your RSL link.\n");
321 return 0;
322 }
Pau Espin Pedrol5196cd52020-07-14 17:52:09 +0200323 e1inp_line_get2(new_line, "ipa_bfd");
Pau Espin Pedrolb5cfc6b2018-10-02 21:22:18 +0200324 ts = e1inp_line_ipa_rsl_ts(new_line, unit_data.trx_id);
Pablo Neira Ayuso3832c4f2011-07-07 17:47:26 +0200325 newbfd = &ts->driver.ipaccess.fd;
Pau Espin Pedrol815117c2020-07-14 21:19:16 +0200326 OSMO_ASSERT(newbfd != bfd);
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200327
Pau Espin Pedrol56ae85f2018-08-22 13:11:19 +0200328 /* preserve 'newbfd->when' flags potentially set by sign_link_up() */
Pau Espin Pedrol67902bb2018-08-23 14:35:08 +0200329 osmo_fd_setup(newbfd, bfd->fd, newbfd->when | bfd->when, bfd->cb,
Pau Espin Pedrol8a4e3d92020-07-14 21:20:55 +0200330 new_line, E1INP_SIGN_RSL + unit_data.trx_id);
331
332
333 /* now we can release the dummy RSL line (old temporary bfd). */
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200334 osmo_fd_unregister(bfd);
335 bfd->fd = -1;
Pau Espin Pedrol8a4e3d92020-07-14 21:20:55 +0200336 /* bfd->data holds a reference to line, drop it */
337 OSMO_ASSERT(bfd->data == line);
338 bfd->data = NULL;
339 e1inp_line_put2(line, "ipa_bfd");
340
Harald Welteae3a9932016-11-26 09:25:23 +0100341 ret = osmo_fd_register(newbfd);
342 if (ret < 0) {
343 LOGP(DLINP, LOGL_ERROR,
344 "could not register FD\n");
345 goto err;
346 }
Michael Iedemaee2589e2022-05-03 07:27:38 -0700347 snprintf(tcp_stat_name, sizeof(tcp_stat_name), "site.%u.bts.%u.ipa-rsl.%u",
348 unit_data.site_id, unit_data.bts_id, unit_data.trx_id);
Michael Iedema29667862022-02-24 09:25:20 -0800349 osmo_stats_tcp_osmo_fd_register(newbfd, tcp_stat_name);
Eric Wildef1f3272019-07-10 18:10:31 +0200350
351 e1i_ts = ipaccess_line_ts(newbfd, new_line);
352 ipaccess_bsc_keepalive_fsm_alloc(e1i_ts, newbfd, "rsl_bsc_to_bts");
Pau Espin Pedrol7edc25d2018-05-23 14:57:03 +0200353 return 1;
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200354 }
Pablo Neira Ayuso5a4b7c52011-06-07 14:07:48 +0200355 break;
Pablo Neira Ayuso466c5462011-07-07 19:17:20 +0200356 default:
Harald Weltecc2241b2011-07-19 16:06:06 +0200357 LOGP(DLINP, LOGL_ERROR, "Unknown IPA message type\n");
Pablo Neira Ayuso466c5462011-07-07 19:17:20 +0200358 goto err;
Pablo Neira Ayuso5a4b7c52011-06-07 14:07:48 +0200359 }
360 return 0;
Pablo Neira Ayuso466c5462011-07-07 19:17:20 +0200361err:
Harald Welteb4a7db02019-07-21 11:51:56 +0200362 if (bfd->fd != -1) {
Pau Espin Pedroldc55a5f2020-07-14 21:14:34 +0200363 osmo_fd_unregister(bfd);
Harald Welteb4a7db02019-07-21 11:51:56 +0200364 close(bfd->fd);
365 bfd->fd = -1;
Pau Espin Pedroldc55a5f2020-07-14 21:14:34 +0200366 /* This is a BSC accepted socket, bfd->data holds a reference to line, drop it */
367 OSMO_ASSERT(bfd->data == line);
368 bfd->data = NULL;
369 e1inp_line_put2(line, "ipa_bfd");
Harald Welteb4a7db02019-07-21 11:51:56 +0200370 }
Pau Espin Pedrol7edc25d2018-05-23 14:57:03 +0200371 return -1;
Pablo Neira Ayuso5a4b7c52011-06-07 14:07:48 +0200372}
373
Pau Espin Pedrol7edc25d2018-05-23 14:57:03 +0200374/* Returns -EBADF if bfd cannot be used by the caller anymore after return. */
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200375static int handle_ts1_read(struct osmo_fd *bfd)
376{
377 struct e1inp_line *line = bfd->data;
378 unsigned int ts_nr = bfd->priv_nr;
Pau Espin Pedrolb5cfc6b2018-10-02 21:22:18 +0200379 struct e1inp_ts *e1i_ts;
Pablo Neira Ayuso5a4b7c52011-06-07 14:07:48 +0200380 struct e1inp_sign_link *link;
381 struct ipaccess_head *hh;
Jacob Erlbeck98af3c32014-03-31 10:53:32 +0200382 struct msgb *msg = NULL;
Maxc9fa25e2017-01-09 13:23:15 +0100383 int ret, rc;
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200384
Eric Wildef1f3272019-07-10 18:10:31 +0200385 e1i_ts = ipaccess_line_ts(bfd, line);
Jacob Erlbeck98af3c32014-03-31 10:53:32 +0200386 ret = ipa_msg_recv_buffered(bfd->fd, &msg, &e1i_ts->pending_msg);
Pablo Neira Ayuso1e401942012-08-22 14:16:24 +0200387 if (ret < 0) {
Jacob Erlbeck98af3c32014-03-31 10:53:32 +0200388 if (ret == -EAGAIN)
389 return 0;
Pablo Neira Ayuso1e401942012-08-22 14:16:24 +0200390 LOGP(DLINP, LOGL_NOTICE, "Sign link problems, "
Jacob Erlbeck98af3c32014-03-31 10:53:32 +0200391 "closing socket. Reason: %s\n", strerror(-ret));
Pablo Neira Ayuso1e401942012-08-22 14:16:24 +0200392 goto err;
393 } else if (ret == 0) {
394 LOGP(DLINP, LOGL_NOTICE, "Sign link vanished, dead socket\n");
395 goto err;
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200396 }
Harald Weltecc2241b2011-07-19 16:06:06 +0200397 DEBUGP(DLMI, "RX %u: %s\n", ts_nr, osmo_hexdump(msgb_l2(msg), msgb_l2len(msg)));
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200398
Pablo Neira Ayuso5a4b7c52011-06-07 14:07:48 +0200399 hh = (struct ipaccess_head *) msg->data;
400 if (hh->proto == IPAC_PROTO_IPACCESS) {
Pau Espin Pedrol7edc25d2018-05-23 14:57:03 +0200401 ret = ipaccess_rcvmsg(line, msg, bfd);
402 /* BIG FAT WARNING: bfd might no longer exist here (ret != 0),
403 * since ipaccess_rcvmsg() might have free'd it !!! */
Pablo Neira Ayuso5a4b7c52011-06-07 14:07:48 +0200404 msgb_free(msg);
Pau Espin Pedrol7edc25d2018-05-23 14:57:03 +0200405 return ret != 0 ? -EBADF : 0;
Holger Hans Peter Freyther63ddf462013-12-28 21:19:19 +0100406 } else if (e1i_ts->type == E1INP_TS_TYPE_NONE) {
407 /* this sign link is not know yet.. complain. */
408 LOGP(DLINP, LOGL_ERROR, "Timeslot is not configured.\n");
Holger Hans Peter Freyther63ddf462013-12-28 21:19:19 +0100409 goto err_msg;
Pablo Neira Ayuso5a4b7c52011-06-07 14:07:48 +0200410 }
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200411
Pablo Neira Ayuso5a4b7c52011-06-07 14:07:48 +0200412 link = e1inp_lookup_sign_link(e1i_ts, hh->proto, 0);
413 if (!link) {
Harald Weltecc2241b2011-07-19 16:06:06 +0200414 LOGP(DLINP, LOGL_ERROR, "no matching signalling link for "
Pablo Neira Ayuso5a4b7c52011-06-07 14:07:48 +0200415 "hh->proto=0x%02x\n", hh->proto);
Pablo Neira Ayuso1e401942012-08-22 14:16:24 +0200416 goto err_msg;
Pablo Neira Ayuso5a4b7c52011-06-07 14:07:48 +0200417 }
418 msg->dst = link;
419
420 /* XXX better use e1inp_ts_rx? */
Pablo Neira Ayusof163d232011-06-25 18:42:55 +0200421 if (!e1i_ts->line->ops->sign_link) {
Harald Weltecc2241b2011-07-19 16:06:06 +0200422 LOGP(DLINP, LOGL_ERROR, "Fix your application, "
Pablo Neira Ayuso5a4b7c52011-06-07 14:07:48 +0200423 "no action set for signalling messages.\n");
Pablo Neira Ayuso1e401942012-08-22 14:16:24 +0200424 goto err_msg;
Pablo Neira Ayuso5a4b7c52011-06-07 14:07:48 +0200425 }
Maxc9fa25e2017-01-09 13:23:15 +0100426 rc = e1i_ts->line->ops->sign_link(msg);
427 if (rc < 0) {
Pablo Neira Ayusoa49c24d2012-10-16 11:24:08 +0200428 /* Don't close the signalling link if the upper layers report
429 * an error, that's too strict. BTW, the signalling layer is
430 * resposible for releasing the message.
431 */
Harald Weltecc2241b2011-07-19 16:06:06 +0200432 LOGP(DLINP, LOGL_ERROR, "Bad signalling message,"
Maxc9fa25e2017-01-09 13:23:15 +0100433 " sign_link returned error: %s.\n", strerror(-rc));
Pablo Neira Ayuso466c5462011-07-07 19:17:20 +0200434 }
Pablo Neira Ayuso1e401942012-08-22 14:16:24 +0200435
Pau Espin Pedroled122f32018-08-28 18:25:02 +0200436 return rc;
Pablo Neira Ayuso1e401942012-08-22 14:16:24 +0200437err_msg:
438 msgb_free(msg);
Pablo Neira Ayuso466c5462011-07-07 19:17:20 +0200439err:
Harald Welte10b41302013-06-30 14:05:49 +0200440 ipaccess_drop(bfd, line);
Pau Espin Pedrol7edc25d2018-05-23 14:57:03 +0200441 return -EBADF;
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200442}
443
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200444static int ts_want_write(struct e1inp_ts *e1i_ts)
445{
Harald Welte949b8a22020-10-18 23:01:53 +0200446 osmo_fd_write_enable(&e1i_ts->driver.ipaccess.fd);
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200447
448 return 0;
449}
450
Pablo Neira Ayusoadd3ec82011-07-05 14:45:46 +0200451static void ipaccess_close(struct e1inp_sign_link *sign_link)
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200452{
Pablo Neira Ayusoadd3ec82011-07-05 14:45:46 +0200453 struct e1inp_ts *e1i_ts = sign_link->ts;
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200454 struct osmo_fd *bfd = &e1i_ts->driver.ipaccess.fd;
Eric Wildef1f3272019-07-10 18:10:31 +0200455 struct e1inp_line *line = e1i_ts->line;
Pau Espin Pedrol3d3e5af2022-09-16 19:10:41 +0200456 struct osmo_fsm_inst *ka_fsm = e1i_ts->driver.ipaccess.ka_fsm;
Eric Wildef1f3272019-07-10 18:10:31 +0200457
Pau Espin Pedrol3d3e5af2022-09-16 19:10:41 +0200458 /* depending on caller the fsm might be dead */
459 if (ka_fsm)
460 ipa_keepalive_fsm_stop(ka_fsm);
Eric Wildef1f3272019-07-10 18:10:31 +0200461
Pau Espin Pedrol8737ad42020-07-14 21:11:56 +0200462 e1inp_int_snd_event(e1i_ts, sign_link, S_L_INP_TEI_DN);
463 /* the first e1inp_sign_link_destroy call closes the socket. */
464 if (bfd->fd != -1) {
465 osmo_fd_unregister(bfd);
466 close(bfd->fd);
467 bfd->fd = -1;
468 /* If The bfd holds a reference to e1inp_line in ->data (BSC
469 * accepted() sockets), then release it */
470 if (bfd->data == line) {
471 bfd->data = NULL;
472 e1inp_line_put2(line, "ipa_bfd");
473 }
474 }
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200475}
476
Pau Espin Pedrol90df0352022-05-09 12:59:35 +0200477static bool e1i_ts_has_pending_tx_msgs(struct e1inp_ts *e1i_ts)
478{
479 struct e1inp_sign_link *link;
480 llist_for_each_entry(link, &e1i_ts->sign.sign_links, list) {
481 if (!llist_empty(&link->tx_list)) {
482 return true;
483 }
484 }
485 return false;
486}
487
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200488static void timeout_ts1_write(void *data)
489{
490 struct e1inp_ts *e1i_ts = (struct e1inp_ts *)data;
491
492 /* trigger write of ts1, due to tx delay timer */
Pau Espin Pedrol90df0352022-05-09 12:59:35 +0200493 if (e1i_ts_has_pending_tx_msgs(e1i_ts))
494 ts_want_write(e1i_ts);
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200495}
496
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200497static int __handle_ts1_write(struct osmo_fd *bfd, struct e1inp_line *line)
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200498{
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200499 unsigned int ts_nr = bfd->priv_nr;
Pau Espin Pedrolb5cfc6b2018-10-02 21:22:18 +0200500 struct e1inp_ts *e1i_ts;
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200501 struct e1inp_sign_link *sign_link;
502 struct msgb *msg;
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200503 int ret;
504
Eric Wildef1f3272019-07-10 18:10:31 +0200505 e1i_ts = ipaccess_line_ts(bfd, line);
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200506
507 /* get the next msg for this timeslot */
508 msg = e1inp_tx_ts(e1i_ts, &sign_link);
509 if (!msg) {
510 /* no message after tx delay timer */
Harald Welte28fea772022-05-06 19:38:33 +0000511 osmo_fd_write_disable(bfd);
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200512 return 0;
513 }
514
515 switch (sign_link->type) {
516 case E1INP_SIGN_OML:
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200517 case E1INP_SIGN_RSL:
Harald Welte46fc7e22014-08-18 19:04:26 +0200518 case E1INP_SIGN_OSMO:
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200519 break;
520 default:
Pau Espin Pedrold20a10c2022-05-09 12:45:07 +0200521 /* leave WRITE flag enabled, come back for more msg */
Pablo Neira Ayuso1e401942012-08-22 14:16:24 +0200522 ret = -EINVAL;
523 goto out;
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200524 }
525
526 msg->l2h = msg->data;
Harald Welteb65f58f2014-08-20 22:04:11 +0200527 ipa_prepend_header(msg, sign_link->tei);
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200528
Vadim Yanitskiy77a7cf42020-11-29 20:39:57 +0100529 LOGPITS(e1i_ts, DLMI, LOGL_DEBUG, "TX %u: %s\n", ts_nr,
Pau Espin Pedrol3bdf59b2020-11-23 13:47:16 +0100530 osmo_hexdump(msg->l2h, msgb_l2len(msg)));
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200531
532 ret = send(bfd->fd, msg->data, msg->len, 0);
Pablo Neira Ayuso1e401942012-08-22 14:16:24 +0200533 if (ret != msg->len) {
Pau Espin Pedrol3bdf59b2020-11-23 13:47:16 +0100534 LOGPITS(e1i_ts, DLINP, LOGL_ERROR, "failed to send A-bis IPA signalling "
Pablo Neira Ayuso1e401942012-08-22 14:16:24 +0200535 "message. Reason: %s\n", strerror(errno));
536 goto err;
537 }
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200538
Harald Welte28fea772022-05-06 19:38:33 +0000539 /* this is some ancient code that apparently exists to slow down writes towards
540 * some even more ancient nanoBTS 900 units. See git commit
541 * d49fc5ae24fc9d44d2b284392ab619cc7a69a876 of openbsc.git (now osmo-bsc.git) */
542 if (e1i_ts->sign.delay) {
543 osmo_fd_write_disable(bfd);
544 /* set tx delay timer for next event */
545 osmo_timer_setup(&e1i_ts->sign.tx_timer, timeout_ts1_write, e1i_ts);
546 osmo_timer_schedule(&e1i_ts->sign.tx_timer, 0, e1i_ts->sign.delay);
Pau Espin Pedrol90df0352022-05-09 12:59:35 +0200547 } else {
Pablo Neira Ayuso1e401942012-08-22 14:16:24 +0200548out:
Pau Espin Pedrol90df0352022-05-09 12:59:35 +0200549 if (!e1i_ts_has_pending_tx_msgs(e1i_ts))
550 osmo_fd_write_disable(bfd);
551 }
Pablo Neira Ayuso1e401942012-08-22 14:16:24 +0200552 msgb_free(msg);
553 return ret;
554err:
Harald Welte10b41302013-06-30 14:05:49 +0200555 ipaccess_drop(bfd, line);
Pablo Neira Ayuso1e401942012-08-22 14:16:24 +0200556 msgb_free(msg);
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200557 return ret;
558}
559
Pablo Neira Ayuso88136fc2011-07-08 16:21:55 +0200560static int handle_ts1_write(struct osmo_fd *bfd)
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200561{
562 struct e1inp_line *line = bfd->data;
563
564 return __handle_ts1_write(bfd, line);
565}
566
Pablo Neira Ayusof0995672011-09-08 12:58:38 +0200567static int ipaccess_bts_write_cb(struct ipa_client_conn *link)
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200568{
569 struct e1inp_line *line = link->line;
570
571 return __handle_ts1_write(link->ofd, line);
572}
573
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200574/* callback from select.c in case one of the fd's can be read/written */
Pablo Neira Ayuso495ddb62011-07-08 21:04:11 +0200575int ipaccess_fd_cb(struct osmo_fd *bfd, unsigned int what)
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200576{
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200577 int rc = 0;
578
Harald Weltede3959e2020-10-18 22:28:50 +0200579 if (what & OSMO_FD_READ)
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200580 rc = handle_ts1_read(bfd);
Harald Weltede3959e2020-10-18 22:28:50 +0200581 if (rc != -EBADF && (what & OSMO_FD_WRITE))
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200582 rc = handle_ts1_write(bfd);
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200583
584 return rc;
585}
586
Pablo Neira Ayuso4e862cb2011-08-19 18:43:38 +0200587static int ipaccess_line_update(struct e1inp_line *line);
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200588
589struct e1inp_driver ipaccess_driver = {
590 .name = "ipa",
591 .want_write = ts_want_write,
592 .line_update = ipaccess_line_update,
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200593 .close = ipaccess_close,
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200594 .default_delay = 0,
Jacob Erlbeck8fe15712014-01-09 14:30:58 +0100595 .has_keepalive = 1,
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200596};
597
Jacob Erlbecka4ec51e2014-01-09 14:30:56 +0100598static void update_fd_settings(struct e1inp_line *line, int fd)
599{
600 int ret;
601 int val;
602
Jacob Erlbeck8fe15712014-01-09 14:30:58 +0100603 if (line->keepalive_num_probes) {
Jacob Erlbecka4ec51e2014-01-09 14:30:56 +0100604 /* Enable TCP keepalive to find out if the connection is gone */
605 val = 1;
606 ret = setsockopt(fd, SOL_SOCKET, SO_KEEPALIVE, &val, sizeof(val));
607 if (ret < 0)
608 LOGP(DLINP, LOGL_NOTICE, "Failed to set keepalive: %s\n",
609 strerror(errno));
610 else
611 LOGP(DLINP, LOGL_NOTICE, "Keepalive is set: %i\n", ret);
612
613#if defined(TCP_KEEPIDLE) && defined(TCP_KEEPINTVL) && defined(TCP_KEEPCNT)
614 /* The following options are not portable! */
Jacob Erlbeck8fe15712014-01-09 14:30:58 +0100615 val = line->keepalive_idle_timeout > 0 ?
616 line->keepalive_idle_timeout :
617 DEFAULT_TCP_KEEPALIVE_IDLE_TIMEOUT;
Jacob Erlbecka4ec51e2014-01-09 14:30:56 +0100618 ret = setsockopt(fd, IPPROTO_TCP, TCP_KEEPIDLE,
619 &val, sizeof(val));
620 if (ret < 0)
621 LOGP(DLINP, LOGL_NOTICE,
622 "Failed to set keepalive idle time: %s\n",
623 strerror(errno));
Jacob Erlbeck8fe15712014-01-09 14:30:58 +0100624 val = line->keepalive_probe_interval > -1 ?
625 line->keepalive_probe_interval :
626 DEFAULT_TCP_KEEPALIVE_INTERVAL;
Jacob Erlbecka4ec51e2014-01-09 14:30:56 +0100627 ret = setsockopt(fd, IPPROTO_TCP, TCP_KEEPINTVL,
628 &val, sizeof(val));
629 if (ret < 0)
630 LOGP(DLINP, LOGL_NOTICE,
631 "Failed to set keepalive interval: %s\n",
632 strerror(errno));
Jacob Erlbeck8fe15712014-01-09 14:30:58 +0100633 val = line->keepalive_num_probes > 0 ?
634 line->keepalive_num_probes :
635 DEFAULT_TCP_KEEPALIVE_RETRY_COUNT;
Jacob Erlbecka4ec51e2014-01-09 14:30:56 +0100636 ret = setsockopt(fd, IPPROTO_TCP, TCP_KEEPCNT,
637 &val, sizeof(val));
638 if (ret < 0)
639 LOGP(DLINP, LOGL_NOTICE,
640 "Failed to set keepalive count: %s\n",
641 strerror(errno));
Eric Wild6eb186c2019-06-21 15:26:25 +0200642#if defined(TCP_USER_TIMEOUT)
643 val = 1000 * line->keepalive_num_probes *
644 line->keepalive_probe_interval +
645 line->keepalive_idle_timeout;
646 ret = setsockopt(fd, IPPROTO_TCP, TCP_USER_TIMEOUT,
647 &val, sizeof(val));
648 if (ret < 0)
649 LOGP(DLINP, LOGL_NOTICE,
650 "Failed to set user timoeut: %s\n",
651 strerror(errno));
652#endif
Jacob Erlbecka4ec51e2014-01-09 14:30:56 +0100653#endif
Holger Hans Peter Freytherf465a4c2014-02-03 09:34:02 +0100654 }
Oliver Smith62725d02020-04-17 10:57:46 +0200655
656 val = 1;
657 ret = setsockopt(fd, IPPROTO_TCP, TCP_NODELAY, &val, sizeof(val));
658 if (ret < 0)
659 LOGP(DLINP, LOGL_ERROR, "Failed to set TCP_NODELAY: %s\n", strerror(errno));
Jacob Erlbecka4ec51e2014-01-09 14:30:56 +0100660}
661
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200662/* callback of the OML listening filedescriptor */
Pablo Neira Ayuso986191f2011-06-21 19:56:26 +0200663static int ipaccess_bsc_oml_cb(struct ipa_server_link *link, int fd)
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200664{
665 int ret;
Jacob Erlbecka4ec51e2014-01-09 14:30:56 +0100666 int i;
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200667 struct e1inp_line *line;
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200668 struct e1inp_ts *e1i_ts;
669 struct osmo_fd *bfd;
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200670
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200671 /* clone virtual E1 line for this new OML link. */
Pau Espin Pedrol5196cd52020-07-14 17:52:09 +0200672 line = e1inp_line_clone(tall_ipa_ctx, link->line, "ipa_bfd");
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200673 if (line == NULL) {
Harald Weltecc2241b2011-07-19 16:06:06 +0200674 LOGP(DLINP, LOGL_ERROR, "could not clone E1 line\n");
Pablo Neira Ayuso1e401942012-08-22 14:16:24 +0200675 return -ENOMEM;
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200676 }
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200677
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200678 /* create virrtual E1 timeslots for signalling */
Pau Espin Pedrolb5cfc6b2018-10-02 21:22:18 +0200679 e1inp_ts_config_sign(e1inp_line_ipa_oml_ts(line), line);
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200680
681 /* initialize the fds */
682 for (i = 0; i < ARRAY_SIZE(line->ts); ++i)
683 line->ts[i].driver.ipaccess.fd.fd = -1;
684
Pau Espin Pedrolb5cfc6b2018-10-02 21:22:18 +0200685 e1i_ts = e1inp_line_ipa_oml_ts(line);
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200686
Pablo Neira Ayuso93c62012011-06-26 19:12:47 +0200687 bfd = &e1i_ts->driver.ipaccess.fd;
Harald Weltede3959e2020-10-18 22:28:50 +0200688 osmo_fd_setup(bfd, fd, OSMO_FD_READ, ipaccess_fd_cb, line, E1INP_SIGN_OML);
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200689 ret = osmo_fd_register(bfd);
690 if (ret < 0) {
Harald Weltecc2241b2011-07-19 16:06:06 +0200691 LOGP(DLINP, LOGL_ERROR, "could not register FD\n");
Pablo Neira Ayuso1e401942012-08-22 14:16:24 +0200692 goto err_line;
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200693 }
Philipp Maierf5f31d32021-12-06 16:46:40 +0100694 osmo_stats_tcp_osmo_fd_register(bfd, "ipa-oml");
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200695
Jacob Erlbecka4ec51e2014-01-09 14:30:56 +0100696 update_fd_settings(line, bfd->fd);
Daniel Willmann85980722014-01-09 14:30:55 +0100697
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200698 /* Request ID. FIXME: request LOCATION, HW/SW VErsion, Unit Name, Serno */
Harald Welteb65f58f2014-08-20 22:04:11 +0200699 ret = ipa_ccm_send_id_req(bfd->fd);
Pablo Neira Ayuso1e401942012-08-22 14:16:24 +0200700 if (ret < 0) {
701 LOGP(DLINP, LOGL_ERROR, "could not send ID REQ. Reason: %s\n",
702 strerror(errno));
703 goto err_socket;
704 }
705 return ret;
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200706
Pablo Neira Ayuso1e401942012-08-22 14:16:24 +0200707err_socket:
708 osmo_fd_unregister(bfd);
709err_line:
710 close(bfd->fd);
711 bfd->fd = -1;
Pau Espin Pedrola2ff7332020-07-14 21:12:50 +0200712 bfd->data = NULL;
Pau Espin Pedrol5196cd52020-07-14 17:52:09 +0200713 e1inp_line_put2(line, "ipa_bfd");
Pablo Neira Ayuso1e401942012-08-22 14:16:24 +0200714 return ret;
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200715}
716
Pablo Neira Ayuso986191f2011-06-21 19:56:26 +0200717static int ipaccess_bsc_rsl_cb(struct ipa_server_link *link, int fd)
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200718{
Pablo Neira Ayuso3832c4f2011-07-07 17:47:26 +0200719 struct e1inp_line *line;
720 struct e1inp_ts *e1i_ts;
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200721 struct osmo_fd *bfd;
Pablo Neira Ayuso3832c4f2011-07-07 17:47:26 +0200722 int i, ret;
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200723
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200724 /* We don't know yet which OML link to associate it with. Thus, we
Pablo Neira Ayuso3832c4f2011-07-07 17:47:26 +0200725 * allocate a temporary E1 line until we have received ID. */
Pau Espin Pedrol5196cd52020-07-14 17:52:09 +0200726 line = e1inp_line_clone(tall_ipa_ctx, link->line, "ipa_bfd");
Pablo Neira Ayuso3832c4f2011-07-07 17:47:26 +0200727 if (line == NULL) {
Harald Weltecc2241b2011-07-19 16:06:06 +0200728 LOGP(DLINP, LOGL_ERROR, "could not clone E1 line\n");
Pablo Neira Ayuso1e401942012-08-22 14:16:24 +0200729 return -ENOMEM;
Pablo Neira Ayuso3832c4f2011-07-07 17:47:26 +0200730 }
731 /* initialize the fds */
732 for (i = 0; i < ARRAY_SIZE(line->ts); ++i)
733 line->ts[i].driver.ipaccess.fd.fd = -1;
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200734
Pablo Neira Ayuso3832c4f2011-07-07 17:47:26 +0200735 /* we need this to initialize this in case to avoid crashes in case
736 * that the socket is closed before we've seen an ID_RESP. */
Pau Espin Pedrolb5cfc6b2018-10-02 21:22:18 +0200737 e1inp_ts_config_sign(e1inp_line_ipa_oml_ts(line), line);
Pablo Neira Ayuso3832c4f2011-07-07 17:47:26 +0200738
Pau Espin Pedrolb5cfc6b2018-10-02 21:22:18 +0200739 e1i_ts = e1inp_line_ipa_rsl_ts(line, 0);
Pablo Neira Ayuso3832c4f2011-07-07 17:47:26 +0200740
741 bfd = &e1i_ts->driver.ipaccess.fd;
Harald Weltede3959e2020-10-18 22:28:50 +0200742 osmo_fd_setup(bfd, fd, OSMO_FD_READ, ipaccess_fd_cb, line, E1INP_SIGN_RSL);
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200743 ret = osmo_fd_register(bfd);
744 if (ret < 0) {
Harald Weltecc2241b2011-07-19 16:06:06 +0200745 LOGP(DLINP, LOGL_ERROR, "could not register FD\n");
Pablo Neira Ayuso1e401942012-08-22 14:16:24 +0200746 goto err_line;
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200747 }
Philipp Maierf5f31d32021-12-06 16:46:40 +0100748 osmo_stats_tcp_osmo_fd_register(bfd, "ipa-rsl");
749
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200750 /* Request ID. FIXME: request LOCATION, HW/SW VErsion, Unit Name, Serno */
Harald Welteb65f58f2014-08-20 22:04:11 +0200751 ret = ipa_ccm_send_id_req(bfd->fd);
Pablo Neira Ayuso1e401942012-08-22 14:16:24 +0200752 if (ret < 0) {
753 LOGP(DLINP, LOGL_ERROR, "could not send ID REQ. Reason: %s\n",
754 strerror(errno));
755 goto err_socket;
756 }
Jacob Erlbecka4ec51e2014-01-09 14:30:56 +0100757 update_fd_settings(line, bfd->fd);
Pablo Neira Ayuso1e401942012-08-22 14:16:24 +0200758 return ret;
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200759
Pablo Neira Ayuso1e401942012-08-22 14:16:24 +0200760err_socket:
761 osmo_fd_unregister(bfd);
762err_line:
763 close(bfd->fd);
764 bfd->fd = -1;
Pau Espin Pedrola2ff7332020-07-14 21:12:50 +0200765 bfd->data = NULL;
Pau Espin Pedrol5196cd52020-07-14 17:52:09 +0200766 e1inp_line_put2(line, "ipa_bfd");
Pablo Neira Ayuso1e401942012-08-22 14:16:24 +0200767 return ret;
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200768}
769
Harald Weltee416e2e2017-05-26 13:11:59 +0200770#define IPA_STRING_MAX 64
771
772static struct msgb *
Max71393522018-01-08 15:42:00 +0100773ipa_bts_id_resp(const struct ipaccess_unit *dev, uint8_t *data, int len, int trx_nr)
Harald Weltee416e2e2017-05-26 13:11:59 +0200774{
775 struct msgb *nmsg;
776 char str[IPA_STRING_MAX];
777 uint8_t *tag;
778
779 memset(str, 0, sizeof(str));
780
781 nmsg = ipa_msg_alloc(0);
782 if (!nmsg)
783 return NULL;
784
785 *msgb_put(nmsg, 1) = IPAC_MSGT_ID_RESP;
786 while (len) {
787 if (len < 2) {
788 LOGP(DLINP, LOGL_NOTICE,
789 "Short read of ipaccess tag\n");
790 msgb_free(nmsg);
791 return NULL;
792 }
793 switch (data[1]) {
794 case IPAC_IDTAG_UNIT:
795 snprintf(str, sizeof(str), "%u/%u/%u",
796 dev->site_id, dev->bts_id, trx_nr);
797 break;
798 case IPAC_IDTAG_MACADDR:
799 snprintf(str, sizeof(str),
800 "%02x:%02x:%02x:%02x:%02x:%02x",
801 dev->mac_addr[0], dev->mac_addr[1],
802 dev->mac_addr[2], dev->mac_addr[3],
803 dev->mac_addr[4], dev->mac_addr[5]);
804 break;
805 case IPAC_IDTAG_LOCATION1:
806 if (dev->location1)
Stefan Sperling961776a2018-12-06 13:09:48 +0100807 osmo_strlcpy(str, dev->location1, sizeof(str));
Harald Weltee416e2e2017-05-26 13:11:59 +0200808 break;
809 case IPAC_IDTAG_LOCATION2:
810 if (dev->location2)
Stefan Sperling961776a2018-12-06 13:09:48 +0100811 osmo_strlcpy(str, dev->location2, sizeof(str));
Harald Weltee416e2e2017-05-26 13:11:59 +0200812 break;
813 case IPAC_IDTAG_EQUIPVERS:
814 if (dev->equipvers)
Stefan Sperling961776a2018-12-06 13:09:48 +0100815 osmo_strlcpy(str, dev->equipvers, sizeof(str));
Harald Weltee416e2e2017-05-26 13:11:59 +0200816 break;
817 case IPAC_IDTAG_SWVERSION:
818 if (dev->swversion)
Neels Hofmeyr4c57eef2018-07-26 17:28:24 +0200819 osmo_strlcpy(str, dev->swversion, sizeof(str));
Harald Weltee416e2e2017-05-26 13:11:59 +0200820 break;
821 case IPAC_IDTAG_UNITNAME:
822 snprintf(str, sizeof(str),
823 "%s-%02x-%02x-%02x-%02x-%02x-%02x",
824 dev->unit_name,
825 dev->mac_addr[0], dev->mac_addr[1],
826 dev->mac_addr[2], dev->mac_addr[3],
827 dev->mac_addr[4], dev->mac_addr[5]);
828 break;
829 case IPAC_IDTAG_SERNR:
830 if (dev->serno)
Stefan Sperling961776a2018-12-06 13:09:48 +0100831 osmo_strlcpy(str, dev->serno, sizeof(str));
Harald Weltee416e2e2017-05-26 13:11:59 +0200832 break;
833 default:
834 LOGP(DLINP, LOGL_NOTICE,
835 "Unknown ipaccess tag 0x%02x\n", *data);
836 msgb_free(nmsg);
837 return NULL;
838 }
Harald Weltee416e2e2017-05-26 13:11:59 +0200839
840 LOGP(DLINP, LOGL_INFO, " tag %d: %s\n", data[1], str);
841 tag = msgb_put(nmsg, 3 + strlen(str) + 1);
842 tag[0] = 0x00;
843 tag[1] = 1 + strlen(str) + 1;
844 tag[2] = data[1];
845 memcpy(tag + 3, str, strlen(str) + 1);
846 data += 2;
847 len -= 2;
848 }
849 ipa_msg_push_header(nmsg, IPAC_PROTO_IPACCESS);
850 return nmsg;
851}
852
Pablo Neira Ayusodfafe682011-07-02 14:32:32 +0200853static struct msgb *ipa_bts_id_ack(void)
854{
855 struct msgb *nmsg2;
856
Pablo Neira Ayuso88136fc2011-07-08 16:21:55 +0200857 nmsg2 = ipa_msg_alloc(0);
Pablo Neira Ayusodfafe682011-07-02 14:32:32 +0200858 if (!nmsg2)
859 return NULL;
860
861 *msgb_put(nmsg2, 1) = IPAC_MSGT_ID_ACK;
Pablo Neira Ayuso88136fc2011-07-08 16:21:55 +0200862 ipa_msg_push_header(nmsg2, IPAC_PROTO_IPACCESS);
Pablo Neira Ayusodfafe682011-07-02 14:32:32 +0200863
864 return nmsg2;
865}
866
Harald Welte51de9ca2013-06-30 20:13:16 +0200867static void ipaccess_bts_updown_cb(struct ipa_client_conn *link, int up)
868{
869 struct e1inp_line *line = link->line;
870
Eric Wildef1f3272019-07-10 18:10:31 +0200871 if (up) {
872 struct osmo_fsm_inst *ka_fsm = ipaccess_line_ts(link->ofd, line)->driver.ipaccess.ka_fsm;
873
874 update_fd_settings(line, link->ofd->fd);
875 if (ka_fsm && line->ipa_kap)
876 ipa_keepalive_fsm_start(ka_fsm);
877 return;
878 }
Harald Welte51de9ca2013-06-30 20:13:16 +0200879
880 if (line->ops->sign_link_down)
881 line->ops->sign_link_down(line);
882}
883
Harald Welte783715b2014-08-17 18:24:51 +0200884/* handle incoming message to BTS, check if it is an IPA CCM, and if yes,
885 * handle it accordingly (PING/PONG/ID_REQ/ID_RESP/ID_ACK) */
886int ipaccess_bts_handle_ccm(struct ipa_client_conn *link,
887 struct ipaccess_unit *dev, struct msgb *msg)
Pablo Neira Ayuso591ddad2011-06-21 18:16:42 +0200888{
889 struct ipaccess_head *hh = (struct ipaccess_head *) msg->data;
Pablo Neira Ayuso1e401942012-08-22 14:16:24 +0200890 struct msgb *rmsg;
891 int ret = 0;
Eric Wildef1f3272019-07-10 18:10:31 +0200892 /* line might not exist if != bsc||bts */
893 struct e1inp_line *line = link->line;
Pablo Neira Ayuso591ddad2011-06-21 18:16:42 +0200894
895 /* special handling for IPA CCM. */
896 if (hh->proto == IPAC_PROTO_IPACCESS) {
897 uint8_t msg_type = *(msg->l2h);
Eric Wildef1f3272019-07-10 18:10:31 +0200898 struct osmo_fsm_inst* ka_fsm = NULL;
899
900 /* peek the pong for our keepalive fsm */
901 if (line && msg_type == IPAC_MSGT_PONG) {
902 ka_fsm = ipaccess_line_ts(link->ofd, line)->driver.ipaccess.ka_fsm;
903 ipa_keepalive_fsm_pong_received(ka_fsm);
904 }
Pablo Neira Ayuso591ddad2011-06-21 18:16:42 +0200905
906 /* ping, pong and acknowledgment cases. */
Harald Welteb65f58f2014-08-20 22:04:11 +0200907 ret = ipa_ccm_rcvmsg_bts_base(msg, link->ofd);
Pablo Neira Ayuso1e401942012-08-22 14:16:24 +0200908 if (ret < 0)
909 goto err;
Pablo Neira Ayuso591ddad2011-06-21 18:16:42 +0200910
911 /* this is a request for identification from the BSC. */
912 if (msg_type == IPAC_MSGT_ID_GET) {
Pablo Neira Ayusodfafe682011-07-02 14:32:32 +0200913 uint8_t *data = msgb_l2(msg);
914 int len = msgb_l2len(msg);
Andreas Eversbergf422a752014-01-21 14:54:41 +0100915 int trx_nr = 0;
916
917 if (link->ofd->priv_nr >= E1INP_SIGN_RSL)
918 trx_nr = link->ofd->priv_nr - E1INP_SIGN_RSL;
Pablo Neira Ayusodfafe682011-07-02 14:32:32 +0200919
Vadim Yanitskiy69ae2382019-12-02 02:42:43 +0700920 LOGP(DLINP, LOGL_NOTICE, "received ID_GET for unit ID %u/%u/%u\n",
Pau Espin Pedroldd95eb62018-10-02 20:05:28 +0200921 dev->site_id, dev->bts_id, trx_nr);
Harald Weltee416e2e2017-05-26 13:11:59 +0200922 rmsg = ipa_bts_id_resp(dev, data + 1, len - 1, trx_nr);
Harald Welteb65f58f2014-08-20 22:04:11 +0200923 ret = ipa_send(link->ofd->fd, rmsg->data, rmsg->len);
Pablo Neira Ayuso1e401942012-08-22 14:16:24 +0200924 if (ret != rmsg->len) {
925 LOGP(DLINP, LOGL_ERROR, "cannot send ID_RESP "
926 "message. Reason: %s\n", strerror(errno));
927 goto err_rmsg;
928 }
Pablo Neira Ayusodfafe682011-07-02 14:32:32 +0200929 msgb_free(rmsg);
930
931 /* send ID_ACK. */
932 rmsg = ipa_bts_id_ack();
Harald Welteb65f58f2014-08-20 22:04:11 +0200933 ret = ipa_send(link->ofd->fd, rmsg->data, rmsg->len);
Pablo Neira Ayuso1e401942012-08-22 14:16:24 +0200934 if (ret != rmsg->len) {
935 LOGP(DLINP, LOGL_ERROR, "cannot send ID_ACK "
936 "message. Reason: %s\n", strerror(errno));
937 goto err_rmsg;
938 }
Pablo Neira Ayusodfafe682011-07-02 14:32:32 +0200939 msgb_free(rmsg);
Harald Welte783715b2014-08-17 18:24:51 +0200940 }
941 return 1;
942 }
Harald Welte6eddd472013-06-30 20:18:53 +0200943
Harald Welte783715b2014-08-17 18:24:51 +0200944 return 0;
945
946err_rmsg:
947 msgb_free(rmsg);
948err:
949 ipa_client_conn_close(link);
950 return -1;
951}
952
953static int ipaccess_bts_read_cb(struct ipa_client_conn *link, struct msgb *msg)
954{
955 struct ipaccess_head *hh = (struct ipaccess_head *) msg->data;
956 struct e1inp_ts *e1i_ts = NULL;
957 struct e1inp_sign_link *sign_link;
Neels Hofmeyrfe673112018-08-24 17:43:45 +0200958 uint8_t msg_type = *(msg->l2h);
Harald Welte783715b2014-08-17 18:24:51 +0200959 int ret = 0;
960
961 /* special handling for IPA CCM. */
962 if (hh->proto == IPAC_PROTO_IPACCESS) {
Harald Welte783715b2014-08-17 18:24:51 +0200963 /* this is a request for identification from the BSC. */
964 if (msg_type == IPAC_MSGT_ID_GET) {
965 if (!link->line->ops->sign_link_up) {
966 LOGP(DLINP, LOGL_ERROR,
967 "Unable to set signal link, "
968 "closing socket.\n");
Harald Welte783715b2014-08-17 18:24:51 +0200969 goto err;
970 }
971 }
972 }
973
974 /* core CCM handling */
975 ret = ipaccess_bts_handle_ccm(link, link->line->ops->cfg.ipa.dev, msg);
976 if (ret < 0)
977 goto err;
978
979 if (ret == 1 && hh->proto == IPAC_PROTO_IPACCESS) {
Harald Welte783715b2014-08-17 18:24:51 +0200980 if (msg_type == IPAC_MSGT_ID_GET) {
Harald Welte6eddd472013-06-30 20:18:53 +0200981 sign_link = link->line->ops->sign_link_up(msg,
982 link->line,
983 link->ofd->priv_nr);
984 if (sign_link == NULL) {
985 LOGP(DLINP, LOGL_ERROR,
986 "Unable to set signal link, "
987 "closing socket.\n");
Harald Welte6eddd472013-06-30 20:18:53 +0200988 goto err;
989 }
Pablo Neira Ayuso591ddad2011-06-21 18:16:42 +0200990 }
Pablo Neira Ayuso84e5cb92012-08-23 23:41:54 +0200991 msgb_free(msg);
Pablo Neira Ayuso1e401942012-08-22 14:16:24 +0200992 return ret;
Pablo Neira Ayuso591ddad2011-06-21 18:16:42 +0200993 } else if (link->port == IPA_TCP_PORT_OML)
Pau Espin Pedrolb5cfc6b2018-10-02 21:22:18 +0200994 e1i_ts = e1inp_line_ipa_oml_ts(link->line);
Pablo Neira Ayuso591ddad2011-06-21 18:16:42 +0200995 else if (link->port == IPA_TCP_PORT_RSL)
Pau Espin Pedrolb5cfc6b2018-10-02 21:22:18 +0200996 e1i_ts = e1inp_line_ipa_rsl_ts(link->line, link->ofd->priv_nr - E1INP_SIGN_RSL);
Pablo Neira Ayuso591ddad2011-06-21 18:16:42 +0200997
Pablo Neira Ayusob9487012013-07-05 14:38:43 +0200998 OSMO_ASSERT(e1i_ts != NULL);
999
Neels Hofmeyrfe673112018-08-24 17:43:45 +02001000 if (e1i_ts->type == E1INP_TS_TYPE_NONE) {
1001 LOGP(DLINP, LOGL_ERROR, "Signalling link not initialized. Discarding."
1002 " port=%u msg_type=%u\n", link->port, msg_type);
Neels Hofmeyrfe673112018-08-24 17:43:45 +02001003 goto err;
1004 }
Pau Espin Pedrol7ad2b152018-08-28 17:37:59 +02001005
Pablo Neira Ayuso591ddad2011-06-21 18:16:42 +02001006 /* look up for some existing signaling link. */
1007 sign_link = e1inp_lookup_sign_link(e1i_ts, hh->proto, 0);
1008 if (sign_link == NULL) {
Harald Weltecc2241b2011-07-19 16:06:06 +02001009 LOGP(DLINP, LOGL_ERROR, "no matching signalling link for "
Pablo Neira Ayuso591ddad2011-06-21 18:16:42 +02001010 "hh->proto=0x%02x\n", hh->proto);
Pablo Neira Ayuso1e401942012-08-22 14:16:24 +02001011 goto err;
Pablo Neira Ayuso591ddad2011-06-21 18:16:42 +02001012 }
1013 msg->dst = sign_link;
1014
1015 /* XXX better use e1inp_ts_rx? */
Pablo Neira Ayusof163d232011-06-25 18:42:55 +02001016 if (!link->line->ops->sign_link) {
Harald Weltecc2241b2011-07-19 16:06:06 +02001017 LOGP(DLINP, LOGL_ERROR, "Fix your application, "
Pablo Neira Ayuso591ddad2011-06-21 18:16:42 +02001018 "no action set for signalling messages.\n");
Pablo Neira Ayuso1e401942012-08-22 14:16:24 +02001019 goto err;
Pablo Neira Ayuso591ddad2011-06-21 18:16:42 +02001020 }
Pau Espin Pedroled122f32018-08-28 18:25:02 +02001021 return link->line->ops->sign_link(msg);
Pablo Neira Ayuso1e401942012-08-22 14:16:24 +02001022
Pablo Neira Ayuso1e401942012-08-22 14:16:24 +02001023err:
Harald Welte783715b2014-08-17 18:24:51 +02001024 ipa_client_conn_close(link);
Pablo Neira Ayuso1e401942012-08-22 14:16:24 +02001025 msgb_free(msg);
Pau Espin Pedrol7ad2b152018-08-28 17:37:59 +02001026 return -EBADF;
Pablo Neira Ayuso591ddad2011-06-21 18:16:42 +02001027}
1028
Pablo Neira Ayusod6216402011-08-31 16:47:44 +02001029struct ipaccess_line {
Oliver Smith65ae42c2020-01-22 11:24:52 +01001030 bool line_already_initialized;
Pau Espin Pedrol92aee512021-10-11 12:14:36 +02001031 struct ipa_client_conn *ipa_cli[NUM_E1_TS]; /* 0=OML, 1+N=TRX_N */
Pablo Neira Ayusod6216402011-08-31 16:47:44 +02001032};
1033
Pablo Neira Ayuso4e862cb2011-08-19 18:43:38 +02001034static int ipaccess_line_update(struct e1inp_line *line)
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +02001035{
1036 int ret = -ENOENT;
Pablo Neira Ayusod6216402011-08-31 16:47:44 +02001037 struct ipaccess_line *il;
1038
1039 if (!line->driver_data)
1040 line->driver_data = talloc_zero(line, struct ipaccess_line);
1041
1042 if (!line->driver_data) {
1043 LOGP(DLINP, LOGL_ERROR, "ipaccess: OOM in line update\n");
1044 return -ENOMEM;
1045 }
1046 il = line->driver_data;
1047
Pablo Neira Ayuso4e862cb2011-08-19 18:43:38 +02001048 switch(line->ops->cfg.ipa.role) {
Pablo Neira Ayuso986191f2011-06-21 19:56:26 +02001049 case E1INP_LINE_R_BSC: {
Pau Espin Pedrold2d28d82021-09-29 14:15:56 +02001050 /* We only initialize this line once. */
1051 if (il->line_already_initialized)
1052 return 0;
Pablo Neira Ayuso986191f2011-06-21 19:56:26 +02001053 struct ipa_server_link *oml_link, *rsl_link;
Max4c4a1c22016-12-30 15:10:47 +01001054 const char *ipa = e1inp_ipa_get_bind_addr();
Pablo Neira Ayuso986191f2011-06-21 19:56:26 +02001055
Max4c4a1c22016-12-30 15:10:47 +01001056 LOGP(DLINP, LOGL_NOTICE, "enabling ipaccess BSC mode on %s "
1057 "with OML %u and RSL %u TCP ports\n", ipa,
1058 IPA_TCP_PORT_OML, IPA_TCP_PORT_RSL);
Pablo Neira Ayuso96e81282011-06-09 15:06:11 +02001059
Max4c4a1c22016-12-30 15:10:47 +01001060 oml_link = ipa_server_link_create(tall_ipa_ctx, line, ipa,
Neels Hofmeyr0db1d432016-02-22 13:29:09 +01001061 IPA_TCP_PORT_OML,
Pablo Neira Ayusoe009f4a2011-06-23 13:36:34 +02001062 ipaccess_bsc_oml_cb, NULL);
Pablo Neira Ayuso986191f2011-06-21 19:56:26 +02001063 if (oml_link == NULL) {
Harald Weltecc2241b2011-07-19 16:06:06 +02001064 LOGP(DLINP, LOGL_ERROR, "cannot create OML "
Pablo Neira Ayuso986191f2011-06-21 19:56:26 +02001065 "BSC link: %s\n", strerror(errno));
1066 return -ENOMEM;
Pablo Neira Ayusof67471f2011-06-07 11:25:49 +02001067 }
Harald Welte41547552021-04-28 18:23:21 +02001068 oml_link->dscp = g_e1inp_ipaccess_pars.oml.dscp;
1069 oml_link->priority = g_e1inp_ipaccess_pars.oml.priority;
Pablo Neira Ayuso986191f2011-06-21 19:56:26 +02001070 if (ipa_server_link_open(oml_link) < 0) {
Harald Weltecc2241b2011-07-19 16:06:06 +02001071 LOGP(DLINP, LOGL_ERROR, "cannot open OML BSC link: %s\n",
Pablo Neira Ayuso986191f2011-06-21 19:56:26 +02001072 strerror(errno));
Pablo Neira Ayuso986191f2011-06-21 19:56:26 +02001073 ipa_server_link_destroy(oml_link);
1074 return -EIO;
Pablo Neira Ayusof67471f2011-06-07 11:25:49 +02001075 }
Max4c4a1c22016-12-30 15:10:47 +01001076 rsl_link = ipa_server_link_create(tall_ipa_ctx, line, ipa,
Neels Hofmeyr0db1d432016-02-22 13:29:09 +01001077 IPA_TCP_PORT_RSL,
Pablo Neira Ayusoe009f4a2011-06-23 13:36:34 +02001078 ipaccess_bsc_rsl_cb, NULL);
Pablo Neira Ayuso986191f2011-06-21 19:56:26 +02001079 if (rsl_link == NULL) {
Harald Weltecc2241b2011-07-19 16:06:06 +02001080 LOGP(DLINP, LOGL_ERROR, "cannot create RSL "
Pablo Neira Ayuso986191f2011-06-21 19:56:26 +02001081 "BSC link: %s\n", strerror(errno));
1082 return -ENOMEM;
1083 }
Harald Welte41547552021-04-28 18:23:21 +02001084 rsl_link->dscp = g_e1inp_ipaccess_pars.rsl.dscp;
1085 rsl_link->priority = g_e1inp_ipaccess_pars.rsl.priority;
Pablo Neira Ayuso986191f2011-06-21 19:56:26 +02001086 if (ipa_server_link_open(rsl_link) < 0) {
Harald Weltecc2241b2011-07-19 16:06:06 +02001087 LOGP(DLINP, LOGL_ERROR, "cannot open RSL BSC link: %s\n",
Pablo Neira Ayuso986191f2011-06-21 19:56:26 +02001088 strerror(errno));
Pablo Neira Ayuso986191f2011-06-21 19:56:26 +02001089 ipa_server_link_destroy(rsl_link);
1090 return -EIO;
1091 }
1092 ret = 0;
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +02001093 break;
Pablo Neira Ayuso986191f2011-06-21 19:56:26 +02001094 }
Pablo Neira Ayuso96e81282011-06-09 15:06:11 +02001095 case E1INP_LINE_R_BTS: {
Harald Welte84f67b22013-06-30 13:13:59 +02001096 struct ipa_client_conn *link;
Eric Wildef1f3272019-07-10 18:10:31 +02001097 struct e1inp_ts *e1i_ts;
Pablo Neira Ayuso96e81282011-06-09 15:06:11 +02001098
Max4c4a1c22016-12-30 15:10:47 +01001099 LOGP(DLINP, LOGL_NOTICE, "enabling ipaccess BTS mode, "
1100 "OML connecting to %s:%u\n", line->ops->cfg.ipa.addr,
1101 IPA_TCP_PORT_OML);
Pablo Neira Ayuso96e81282011-06-09 15:06:11 +02001102
Pau Espin Pedrold2d28d82021-09-29 14:15:56 +02001103 /* Drop previous line */
Pau Espin Pedrol92aee512021-10-11 12:14:36 +02001104 if (il->ipa_cli[0]) {
1105 ipa_client_conn_close(il->ipa_cli[0]);
1106 ipa_client_conn_destroy(il->ipa_cli[0]);
1107 il->ipa_cli[0] = NULL;
Pau Espin Pedrold2d28d82021-09-29 14:15:56 +02001108 }
1109
Pau Espin Pedrolb6e28bf2019-11-08 17:30:28 +01001110 link = ipa_client_conn_create2(tall_ipa_ctx,
Pau Espin Pedrolb5cfc6b2018-10-02 21:22:18 +02001111 e1inp_line_ipa_oml_ts(line),
Pablo Neira Ayuso00af7722011-09-08 12:47:06 +02001112 E1INP_SIGN_OML,
Pau Espin Pedrolb6e28bf2019-11-08 17:30:28 +01001113 NULL, 0,
Pablo Neira Ayuso4e862cb2011-08-19 18:43:38 +02001114 line->ops->cfg.ipa.addr,
1115 IPA_TCP_PORT_OML,
Harald Welte51de9ca2013-06-30 20:13:16 +02001116 ipaccess_bts_updown_cb,
Harald Weltea3e9dd52013-06-30 14:25:07 +02001117 ipaccess_bts_read_cb,
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +02001118 ipaccess_bts_write_cb,
Harald Welte10b41302013-06-30 14:05:49 +02001119 line);
Pablo Neira Ayuso96e81282011-06-09 15:06:11 +02001120 if (link == NULL) {
Harald Weltecc2241b2011-07-19 16:06:06 +02001121 LOGP(DLINP, LOGL_ERROR, "cannot create OML "
Pablo Neira Ayuso29465d32011-06-21 14:21:33 +02001122 "BTS link: %s\n", strerror(errno));
Pablo Neira Ayuso96e81282011-06-09 15:06:11 +02001123 return -ENOMEM;
1124 }
Harald Welte41547552021-04-28 18:23:21 +02001125 link->dscp = g_e1inp_ipaccess_pars.oml.dscp;
1126 link->priority = g_e1inp_ipaccess_pars.oml.priority;
Pablo Neira Ayusof0995672011-09-08 12:58:38 +02001127 if (ipa_client_conn_open(link) < 0) {
Harald Weltecc2241b2011-07-19 16:06:06 +02001128 LOGP(DLINP, LOGL_ERROR, "cannot open OML BTS link: %s\n",
Pablo Neira Ayuso29465d32011-06-21 14:21:33 +02001129 strerror(errno));
Pablo Neira Ayusof0995672011-09-08 12:58:38 +02001130 ipa_client_conn_close(link);
1131 ipa_client_conn_destroy(link);
Pablo Neira Ayuso96e81282011-06-09 15:06:11 +02001132 return -EIO;
1133 }
Eric Wildef1f3272019-07-10 18:10:31 +02001134
1135 e1i_ts = e1inp_line_ipa_oml_ts(line);
1136 ipaccess_bts_keepalive_fsm_alloc(e1i_ts, link, "oml_bts_to_bsc");
Pau Espin Pedrol92aee512021-10-11 12:14:36 +02001137 il->ipa_cli[0] = link;
Pablo Neira Ayuso96e81282011-06-09 15:06:11 +02001138 ret = 0;
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +02001139 break;
Pablo Neira Ayuso96e81282011-06-09 15:06:11 +02001140 }
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +02001141 default:
1142 break;
1143 }
Philipp Maierea0f1bd2021-05-20 21:01:23 +02001144
1145 il->line_already_initialized = true;
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +02001146 return ret;
1147}
1148
Andreas Eversbergf422a752014-01-21 14:54:41 +01001149/* backwards compatibility */
Harald Welte84f67b22013-06-30 13:13:59 +02001150int e1inp_ipa_bts_rsl_connect(struct e1inp_line *line,
1151 const char *rem_addr, uint16_t rem_port)
1152{
Andreas Eversbergf422a752014-01-21 14:54:41 +01001153 return e1inp_ipa_bts_rsl_connect_n(line, rem_addr, rem_port, 0);
1154}
1155
1156int e1inp_ipa_bts_rsl_connect_n(struct e1inp_line *line,
1157 const char *rem_addr, uint16_t rem_port,
1158 uint8_t trx_nr)
1159{
Harald Welte84f67b22013-06-30 13:13:59 +02001160 struct ipa_client_conn *rsl_link;
Eric Wildef1f3272019-07-10 18:10:31 +02001161 struct e1inp_ts *e1i_ts = e1inp_line_ipa_rsl_ts(line, trx_nr);
Pau Espin Pedrol92aee512021-10-11 12:14:36 +02001162 struct ipaccess_line *il;
Pau Espin Pedrol57a148f2022-09-15 18:54:21 +02001163 int rc;
Harald Welte84f67b22013-06-30 13:13:59 +02001164
Andreas Eversbergf422a752014-01-21 14:54:41 +01001165 if (E1INP_SIGN_RSL+trx_nr-1 >= NUM_E1_TS) {
1166 LOGP(DLINP, LOGL_ERROR, "cannot create RSL BTS link: "
1167 "trx_nr (%d) out of range\n", trx_nr);
1168 return -EINVAL;
1169 }
Andreas Eversbergf422a752014-01-21 14:54:41 +01001170
Pau Espin Pedrol57a148f2022-09-15 18:54:21 +02001171 /* Drop previous line */
1172 if ((rc = e1inp_ipa_bts_rsl_close_n(line, trx_nr)) < 0)
1173 return rc;
1174
Pau Espin Pedrol92aee512021-10-11 12:14:36 +02001175 if (!line->driver_data)
1176 line->driver_data = talloc_zero(line, struct ipaccess_line);
1177 il = line->driver_data;
1178
Pau Espin Pedrolb6e28bf2019-11-08 17:30:28 +01001179 rsl_link = ipa_client_conn_create2(tall_ipa_ctx,
Pau Espin Pedrolb5cfc6b2018-10-02 21:22:18 +02001180 e1inp_line_ipa_rsl_ts(line, trx_nr),
Andreas Eversbergf422a752014-01-21 14:54:41 +01001181 E1INP_SIGN_RSL+trx_nr,
Pau Espin Pedrolb6e28bf2019-11-08 17:30:28 +01001182 NULL, 0,
Harald Welte84f67b22013-06-30 13:13:59 +02001183 rem_addr, rem_port,
Harald Welte51de9ca2013-06-30 20:13:16 +02001184 ipaccess_bts_updown_cb,
Harald Weltea3e9dd52013-06-30 14:25:07 +02001185 ipaccess_bts_read_cb,
Harald Welte84f67b22013-06-30 13:13:59 +02001186 ipaccess_bts_write_cb,
Harald Welte10b41302013-06-30 14:05:49 +02001187 line);
Harald Welte84f67b22013-06-30 13:13:59 +02001188 if (rsl_link == NULL) {
1189 LOGP(DLINP, LOGL_ERROR, "cannot create RSL "
1190 "BTS link: %s\n", strerror(errno));
1191 return -ENOMEM;
1192 }
Harald Welte41547552021-04-28 18:23:21 +02001193 rsl_link->dscp = g_e1inp_ipaccess_pars.rsl.dscp;
1194 rsl_link->priority = g_e1inp_ipaccess_pars.rsl.priority;
Harald Welte84f67b22013-06-30 13:13:59 +02001195 if (ipa_client_conn_open(rsl_link) < 0) {
1196 LOGP(DLINP, LOGL_ERROR, "cannot open RSL BTS link: %s\n",
1197 strerror(errno));
1198 ipa_client_conn_close(rsl_link);
1199 ipa_client_conn_destroy(rsl_link);
1200 return -EIO;
1201 }
Eric Wildef1f3272019-07-10 18:10:31 +02001202 ipaccess_bts_keepalive_fsm_alloc(e1i_ts, rsl_link, "rsl_bts_to_bsc");
Pau Espin Pedrol92aee512021-10-11 12:14:36 +02001203 il->ipa_cli[1 + trx_nr] = rsl_link;
Harald Welte84f67b22013-06-30 13:13:59 +02001204 return 0;
1205}
1206
Pau Espin Pedrol57a148f2022-09-15 18:54:21 +02001207/* Close the underlying IPA TCP socket of an RSL link */
1208int e1inp_ipa_bts_rsl_close_n(struct e1inp_line *line, uint8_t trx_nr)
1209{
1210 struct ipaccess_line *il;
1211
1212 if (E1INP_SIGN_RSL+trx_nr-1 >= NUM_E1_TS) {
1213 LOGP(DLINP, LOGL_ERROR,
1214 "cannot close RSL BTS link: trx_nr (%d) out of range\n", trx_nr);
1215 return -EINVAL;
1216 }
1217
1218 il = line->driver_data;
1219 if (!il)
1220 return 0; /* Nothing to do, no lines created */
1221
1222 if (il->ipa_cli[1 + trx_nr]) {
1223 ipa_client_conn_close(il->ipa_cli[1 + trx_nr]);
1224 ipa_client_conn_destroy(il->ipa_cli[1 + trx_nr]);
1225 il->ipa_cli[1 + trx_nr] = NULL;
1226 }
1227 return 0;
1228}
1229
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +02001230void e1inp_ipaccess_init(void)
1231{
Pablo Neira Ayuso54b49792011-06-07 12:15:26 +02001232 tall_ipa_ctx = talloc_named_const(libosmo_abis_ctx, 1, "ipa");
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +02001233 e1inp_driver_register(&ipaccess_driver);
1234}
Neels Hofmeyr0db1d432016-02-22 13:29:09 +01001235
1236void e1inp_ipa_set_bind_addr(const char *ip_bind_addr)
1237{
1238 talloc_free((char*)ipaccess_driver.bind_addr);
1239 ipaccess_driver.bind_addr = NULL;
1240
1241 if (ip_bind_addr)
1242 ipaccess_driver.bind_addr = talloc_strdup(tall_ipa_ctx,
1243 ip_bind_addr);
1244}
1245
1246const char *e1inp_ipa_get_bind_addr(void)
1247{
1248 return ipaccess_driver.bind_addr?
1249 ipaccess_driver.bind_addr
1250 : "0.0.0.0";
1251}