blob: dbb8b2e95ada1be43caab286422cf2cf04e408d1 [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. */
126 line->ops->sign_link_down(line);
127
Pau Espin Pedroldeb5c4f2020-07-31 12:55:01 +0200128 e1inp_line_put2(line, __func__);
Pablo Neira Ayuso466c5462011-07-07 19:17:20 +0200129 return ret;
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200130}
131
Eric Wildef1f3272019-07-10 18:10:31 +0200132static void ipa_bsc_keepalive_write_server_cb(struct osmo_fsm_inst *fi, void *conn, struct msgb *msg)
133{
134 struct osmo_fd *bfd = (struct osmo_fd *)conn;
135 write(bfd->fd, msg->data, msg->len);
136 msgb_free(msg);
137}
138
139static int ipa_bsc_keepalive_timeout_cb(struct osmo_fsm_inst *fi, void *data)
140{
141 struct osmo_fd *bfd = (struct osmo_fd *)data;
142
143 if (bfd->fd == -1)
144 return 1;
145
146 ipaccess_drop(bfd, (struct e1inp_line *)bfd->data);
147 return 1;
148}
149
150static void ipaccess_bsc_keepalive_fsm_alloc(struct e1inp_ts *e1i_ts, struct osmo_fd *bfd, const char *id)
151{
152 struct e1inp_line *line = e1i_ts->line;
153 struct osmo_fsm_inst *ka_fsm;
154
155 ipaccess_keepalive_fsm_cleanup(e1i_ts);
156 if (!line->ipa_kap)
157 return;
158
159 ka_fsm = ipa_generic_conn_alloc_keepalive_fsm(tall_ipa_ctx, bfd, line->ipa_kap, id);
160 e1i_ts->driver.ipaccess.ka_fsm = ka_fsm;
161 if (!ka_fsm)
162 return;
163
164 ipa_keepalive_fsm_set_timeout_cb(ka_fsm, ipa_bsc_keepalive_timeout_cb);
165 ipa_keepalive_fsm_set_send_cb(ka_fsm, ipa_bsc_keepalive_write_server_cb);
166 ipa_keepalive_fsm_start(ka_fsm);
167}
168
169static void ipa_bts_keepalive_write_client_cb(struct osmo_fsm_inst *fi, void *conn, struct msgb *msg) {
170 struct ipa_client_conn *link = (struct ipa_client_conn *)conn;
171 int ret = 0;
172
173 ret = ipa_send(link->ofd->fd, msg->data, msg->len);
174 if (ret != msg->len) {
175 LOGP(DLINP, LOGL_ERROR, "cannot send message. Reason: %s\n", strerror(errno));
176 }
177 msgb_free(msg);
178}
179
180static void update_fd_settings(struct e1inp_line *line, int fd);
181static void ipaccess_bts_updown_cb(struct ipa_client_conn *link, int up);
182
183static int ipa_bts_keepalive_timeout_cb(struct osmo_fsm_inst *fi, void *conn) {
184 ipaccess_bts_updown_cb(conn, false);
185 return 1;
186}
187
188static void ipaccess_bts_keepalive_fsm_alloc(struct e1inp_ts *e1i_ts, struct ipa_client_conn *client, const char *id)
189{
190 struct e1inp_line *line = e1i_ts->line;
191 struct osmo_fsm_inst *ka_fsm;
192
193 ipaccess_keepalive_fsm_cleanup(e1i_ts);
194 if (!line->ipa_kap)
195 return;
196
197 ka_fsm = ipa_client_conn_alloc_keepalive_fsm(client, line->ipa_kap, id);
198 e1i_ts->driver.ipaccess.ka_fsm = ka_fsm;
199 if (!ka_fsm)
200 return;
201
202 ipa_keepalive_fsm_set_timeout_cb(ka_fsm, ipa_bts_keepalive_timeout_cb);
203 ipa_keepalive_fsm_set_send_cb(ka_fsm, ipa_bts_keepalive_write_client_cb);
204}
205
Pau Espin Pedrol7edc25d2018-05-23 14:57:03 +0200206/* Returns -1 on error, and 0 or 1 on success. If -1 or 1 is returned, line has
207 * been released and should not be used anymore by the caller. */
Pablo Neira Ayuso5a4b7c52011-06-07 14:07:48 +0200208static int ipaccess_rcvmsg(struct e1inp_line *line, struct msgb *msg,
209 struct osmo_fd *bfd)
210{
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200211 struct tlv_parsed tlvp;
Pablo Neira Ayuso5a4b7c52011-06-07 14:07:48 +0200212 uint8_t msg_type = *(msg->l2h);
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200213 struct ipaccess_unit unit_data = {};
214 struct e1inp_sign_link *sign_link;
215 char *unitid;
216 int len, ret;
Eric Wildef1f3272019-07-10 18:10:31 +0200217 struct e1inp_ts *e1i_ts;
218 struct osmo_fsm_inst *ka_fsm;
219
220 /* peek the pong for our keepalive fsm */
221 e1i_ts = ipaccess_line_ts(bfd, line);
222 ka_fsm = e1i_ts->driver.ipaccess.ka_fsm;
223 if (ka_fsm && msg_type == IPAC_MSGT_PONG)
224 ipa_keepalive_fsm_pong_received(ka_fsm);
Pablo Neira Ayuso5a4b7c52011-06-07 14:07:48 +0200225
Pablo Neira Ayusoeb434132011-07-07 19:19:46 +0200226 /* Handle IPA PING, PONG and ID_ACK messages. */
Harald Welteb65f58f2014-08-20 22:04:11 +0200227 ret = ipa_ccm_rcvmsg_base(msg, bfd);
Pablo Neira Ayuso1e401942012-08-22 14:16:24 +0200228 switch(ret) {
229 case -1:
230 /* error in IPA control message handling */
231 goto err;
232 case 1:
233 /* this is an IPA control message, skip further processing */
Pablo Neira Ayusoeb434132011-07-07 19:19:46 +0200234 return 0;
Pablo Neira Ayuso1e401942012-08-22 14:16:24 +0200235 case 0:
236 /* this is not an IPA control message, continue */
237 break;
238 default:
239 LOGP(DLINP, LOGL_ERROR, "Unexpected return from "
Harald Welteb65f58f2014-08-20 22:04:11 +0200240 "ipa_ccm_rcvmsg_base "
Pablo Neira Ayuso1e401942012-08-22 14:16:24 +0200241 "(ret=%d)\n", ret);
242 goto err;
243 }
Pablo Neira Ayuso5a4b7c52011-06-07 14:07:48 +0200244
245 switch (msg_type) {
246 case IPAC_MSGT_ID_RESP:
Pau Espin Pedrol30e80d52020-07-14 13:23:05 +0200247 DEBUGP(DLMI, "ID_RESP ");
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200248 /* parse tags, search for Unit ID */
Harald Welte82eb55e2018-08-01 13:22:55 +0200249 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 +0200250 DEBUGPC(DLMI, "\n");
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200251 if (ret < 0) {
Harald Weltecc2241b2011-07-19 16:06:06 +0200252 LOGP(DLINP, LOGL_ERROR, "IPA response message "
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200253 "with malformed TLVs\n");
Pablo Neira Ayuso466c5462011-07-07 19:17:20 +0200254 goto err;
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200255 }
Pablo Neira Ayuso466c5462011-07-07 19:17:20 +0200256 if (!TLVP_PRESENT(&tlvp, IPAC_IDTAG_UNIT)) {
Harald Weltecc2241b2011-07-19 16:06:06 +0200257 LOGP(DLINP, LOGL_ERROR, "IPA response message "
Pablo Neira Ayuso466c5462011-07-07 19:17:20 +0200258 "without unit ID\n");
Pablo Neira Ayuso466c5462011-07-07 19:17:20 +0200259 goto err;
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200260
Pablo Neira Ayuso466c5462011-07-07 19:17:20 +0200261 }
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200262 len = TLVP_LEN(&tlvp, IPAC_IDTAG_UNIT);
Pablo Neira Ayuso466c5462011-07-07 19:17:20 +0200263 if (len < 1) {
Harald Weltecc2241b2011-07-19 16:06:06 +0200264 LOGP(DLINP, LOGL_ERROR, "IPA response message "
Pablo Neira Ayuso466c5462011-07-07 19:17:20 +0200265 "with too small unit ID\n");
Pablo Neira Ayuso466c5462011-07-07 19:17:20 +0200266 goto err;
267 }
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200268 unitid = (char *) TLVP_VAL(&tlvp, IPAC_IDTAG_UNIT);
269 unitid[len - 1] = '\0';
Vadim Yanitskiy1c94f6a2019-12-02 02:16:07 +0700270 ret = ipa_parse_unitid(unitid, &unit_data);
271 if (ret) {
272 LOGP(DLINP, LOGL_ERROR, "Failed to parse unit ID '%s'\n", unitid);
273 goto err;
274 }
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200275
Pablo Neira Ayusof163d232011-06-25 18:42:55 +0200276 if (!line->ops->sign_link_up) {
Harald Weltecc2241b2011-07-19 16:06:06 +0200277 LOGP(DLINP, LOGL_ERROR,
Pablo Neira Ayusocd8d2e52011-07-02 17:05:21 +0200278 "Unable to set signal link, closing socket.\n");
Pablo Neira Ayuso466c5462011-07-07 19:17:20 +0200279 goto err;
Pablo Neira Ayuso5a4b7c52011-06-07 14:07:48 +0200280 }
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200281 /* the BSC creates the new sign links at this stage. */
282 if (bfd->priv_nr == E1INP_SIGN_OML) {
283 sign_link =
284 line->ops->sign_link_up(&unit_data, line,
285 E1INP_SIGN_OML);
286 if (sign_link == NULL) {
Harald Weltecc2241b2011-07-19 16:06:06 +0200287 LOGP(DLINP, LOGL_ERROR,
Pablo Neira Ayusocd8d2e52011-07-02 17:05:21 +0200288 "Unable to set signal link, "
289 "closing socket.\n");
Pablo Neira Ayuso466c5462011-07-07 19:17:20 +0200290 goto err;
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200291 }
Eric Wildef1f3272019-07-10 18:10:31 +0200292
293 ipaccess_bsc_keepalive_fsm_alloc(e1i_ts, bfd, "oml_bsc_to_bts");
294
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200295 } else if (bfd->priv_nr == E1INP_SIGN_RSL) {
Pablo Neira Ayuso3832c4f2011-07-07 17:47:26 +0200296 struct e1inp_ts *ts;
Eric Wildef1f3272019-07-10 18:10:31 +0200297 struct osmo_fd *newbfd;
Pablo Neira Ayuso3832c4f2011-07-07 17:47:26 +0200298 struct e1inp_line *new_line;
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200299
300 sign_link =
301 line->ops->sign_link_up(&unit_data, line,
302 E1INP_SIGN_RSL);
303 if (sign_link == NULL) {
Harald Weltecc2241b2011-07-19 16:06:06 +0200304 LOGP(DLINP, LOGL_ERROR,
Pablo Neira Ayusocd8d2e52011-07-02 17:05:21 +0200305 "Unable to set signal link, "
306 "closing socket.\n");
Pablo Neira Ayuso466c5462011-07-07 19:17:20 +0200307 goto err;
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200308 }
Pau Espin Pedrol8a4e3d92020-07-14 21:20:55 +0200309 /* Finally, we know which OML link is associated with
310 * this RSL link, attach it to this socket. */
311 new_line = sign_link->ts->line;
Pablo Neira Ayusodb1c8a72011-07-08 15:12:03 +0200312 /* this is a bugtrap, the BSC should be using the
313 * virtual E1 line used by OML for this RSL link. */
Pau Espin Pedrol8a4e3d92020-07-14 21:20:55 +0200314 if (new_line == line) {
Harald Weltecc2241b2011-07-19 16:06:06 +0200315 LOGP(DLINP, LOGL_ERROR,
Pablo Neira Ayusodb1c8a72011-07-08 15:12:03 +0200316 "Fix your BSC, you should use the "
317 "E1 line used by the OML link for "
318 "your RSL link.\n");
319 return 0;
320 }
Pau Espin Pedrol5196cd52020-07-14 17:52:09 +0200321 e1inp_line_get2(new_line, "ipa_bfd");
Pau Espin Pedrolb5cfc6b2018-10-02 21:22:18 +0200322 ts = e1inp_line_ipa_rsl_ts(new_line, unit_data.trx_id);
Pablo Neira Ayuso3832c4f2011-07-07 17:47:26 +0200323 newbfd = &ts->driver.ipaccess.fd;
Pau Espin Pedrol815117c2020-07-14 21:19:16 +0200324 OSMO_ASSERT(newbfd != bfd);
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200325
Pau Espin Pedrol56ae85f2018-08-22 13:11:19 +0200326 /* preserve 'newbfd->when' flags potentially set by sign_link_up() */
Pau Espin Pedrol67902bb2018-08-23 14:35:08 +0200327 osmo_fd_setup(newbfd, bfd->fd, newbfd->when | bfd->when, bfd->cb,
Pau Espin Pedrol8a4e3d92020-07-14 21:20:55 +0200328 new_line, E1INP_SIGN_RSL + unit_data.trx_id);
329
330
331 /* now we can release the dummy RSL line (old temporary bfd). */
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200332 osmo_fd_unregister(bfd);
333 bfd->fd = -1;
Pau Espin Pedrol8a4e3d92020-07-14 21:20:55 +0200334 /* bfd->data holds a reference to line, drop it */
335 OSMO_ASSERT(bfd->data == line);
336 bfd->data = NULL;
337 e1inp_line_put2(line, "ipa_bfd");
338
Harald Welteae3a9932016-11-26 09:25:23 +0100339 ret = osmo_fd_register(newbfd);
340 if (ret < 0) {
341 LOGP(DLINP, LOGL_ERROR,
342 "could not register FD\n");
343 goto err;
344 }
Philipp Maierf5f31d32021-12-06 16:46:40 +0100345 osmo_stats_tcp_osmo_fd_register(newbfd, "ipa-rsl");
Eric Wildef1f3272019-07-10 18:10:31 +0200346
347 e1i_ts = ipaccess_line_ts(newbfd, new_line);
348 ipaccess_bsc_keepalive_fsm_alloc(e1i_ts, newbfd, "rsl_bsc_to_bts");
Pau Espin Pedrol7edc25d2018-05-23 14:57:03 +0200349 return 1;
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200350 }
Pablo Neira Ayuso5a4b7c52011-06-07 14:07:48 +0200351 break;
Pablo Neira Ayuso466c5462011-07-07 19:17:20 +0200352 default:
Harald Weltecc2241b2011-07-19 16:06:06 +0200353 LOGP(DLINP, LOGL_ERROR, "Unknown IPA message type\n");
Pablo Neira Ayuso466c5462011-07-07 19:17:20 +0200354 goto err;
Pablo Neira Ayuso5a4b7c52011-06-07 14:07:48 +0200355 }
356 return 0;
Pablo Neira Ayuso466c5462011-07-07 19:17:20 +0200357err:
Harald Welteb4a7db02019-07-21 11:51:56 +0200358 if (bfd->fd != -1) {
Pau Espin Pedroldc55a5f2020-07-14 21:14:34 +0200359 osmo_fd_unregister(bfd);
Harald Welteb4a7db02019-07-21 11:51:56 +0200360 close(bfd->fd);
361 bfd->fd = -1;
Pau Espin Pedroldc55a5f2020-07-14 21:14:34 +0200362 /* This is a BSC accepted socket, bfd->data holds a reference to line, drop it */
363 OSMO_ASSERT(bfd->data == line);
364 bfd->data = NULL;
365 e1inp_line_put2(line, "ipa_bfd");
Harald Welteb4a7db02019-07-21 11:51:56 +0200366 }
Pau Espin Pedrol7edc25d2018-05-23 14:57:03 +0200367 return -1;
Pablo Neira Ayuso5a4b7c52011-06-07 14:07:48 +0200368}
369
Pau Espin Pedrol7edc25d2018-05-23 14:57:03 +0200370/* Returns -EBADF if bfd cannot be used by the caller anymore after return. */
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200371static int handle_ts1_read(struct osmo_fd *bfd)
372{
373 struct e1inp_line *line = bfd->data;
374 unsigned int ts_nr = bfd->priv_nr;
Pau Espin Pedrolb5cfc6b2018-10-02 21:22:18 +0200375 struct e1inp_ts *e1i_ts;
Pablo Neira Ayuso5a4b7c52011-06-07 14:07:48 +0200376 struct e1inp_sign_link *link;
377 struct ipaccess_head *hh;
Jacob Erlbeck98af3c32014-03-31 10:53:32 +0200378 struct msgb *msg = NULL;
Maxc9fa25e2017-01-09 13:23:15 +0100379 int ret, rc;
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200380
Eric Wildef1f3272019-07-10 18:10:31 +0200381 e1i_ts = ipaccess_line_ts(bfd, line);
Jacob Erlbeck98af3c32014-03-31 10:53:32 +0200382 ret = ipa_msg_recv_buffered(bfd->fd, &msg, &e1i_ts->pending_msg);
Pablo Neira Ayuso1e401942012-08-22 14:16:24 +0200383 if (ret < 0) {
Jacob Erlbeck98af3c32014-03-31 10:53:32 +0200384 if (ret == -EAGAIN)
385 return 0;
Pablo Neira Ayuso1e401942012-08-22 14:16:24 +0200386 LOGP(DLINP, LOGL_NOTICE, "Sign link problems, "
Jacob Erlbeck98af3c32014-03-31 10:53:32 +0200387 "closing socket. Reason: %s\n", strerror(-ret));
Pablo Neira Ayuso1e401942012-08-22 14:16:24 +0200388 goto err;
389 } else if (ret == 0) {
390 LOGP(DLINP, LOGL_NOTICE, "Sign link vanished, dead socket\n");
391 goto err;
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200392 }
Harald Weltecc2241b2011-07-19 16:06:06 +0200393 DEBUGP(DLMI, "RX %u: %s\n", ts_nr, osmo_hexdump(msgb_l2(msg), msgb_l2len(msg)));
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200394
Pablo Neira Ayuso5a4b7c52011-06-07 14:07:48 +0200395 hh = (struct ipaccess_head *) msg->data;
396 if (hh->proto == IPAC_PROTO_IPACCESS) {
Pau Espin Pedrol7edc25d2018-05-23 14:57:03 +0200397 ret = ipaccess_rcvmsg(line, msg, bfd);
398 /* BIG FAT WARNING: bfd might no longer exist here (ret != 0),
399 * since ipaccess_rcvmsg() might have free'd it !!! */
Pablo Neira Ayuso5a4b7c52011-06-07 14:07:48 +0200400 msgb_free(msg);
Pau Espin Pedrol7edc25d2018-05-23 14:57:03 +0200401 return ret != 0 ? -EBADF : 0;
Holger Hans Peter Freyther63ddf462013-12-28 21:19:19 +0100402 } else if (e1i_ts->type == E1INP_TS_TYPE_NONE) {
403 /* this sign link is not know yet.. complain. */
404 LOGP(DLINP, LOGL_ERROR, "Timeslot is not configured.\n");
Holger Hans Peter Freyther63ddf462013-12-28 21:19:19 +0100405 goto err_msg;
Pablo Neira Ayuso5a4b7c52011-06-07 14:07:48 +0200406 }
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200407
Pablo Neira Ayuso5a4b7c52011-06-07 14:07:48 +0200408 link = e1inp_lookup_sign_link(e1i_ts, hh->proto, 0);
409 if (!link) {
Harald Weltecc2241b2011-07-19 16:06:06 +0200410 LOGP(DLINP, LOGL_ERROR, "no matching signalling link for "
Pablo Neira Ayuso5a4b7c52011-06-07 14:07:48 +0200411 "hh->proto=0x%02x\n", hh->proto);
Pablo Neira Ayuso1e401942012-08-22 14:16:24 +0200412 goto err_msg;
Pablo Neira Ayuso5a4b7c52011-06-07 14:07:48 +0200413 }
414 msg->dst = link;
415
416 /* XXX better use e1inp_ts_rx? */
Pablo Neira Ayusof163d232011-06-25 18:42:55 +0200417 if (!e1i_ts->line->ops->sign_link) {
Harald Weltecc2241b2011-07-19 16:06:06 +0200418 LOGP(DLINP, LOGL_ERROR, "Fix your application, "
Pablo Neira Ayuso5a4b7c52011-06-07 14:07:48 +0200419 "no action set for signalling messages.\n");
Pablo Neira Ayuso1e401942012-08-22 14:16:24 +0200420 goto err_msg;
Pablo Neira Ayuso5a4b7c52011-06-07 14:07:48 +0200421 }
Maxc9fa25e2017-01-09 13:23:15 +0100422 rc = e1i_ts->line->ops->sign_link(msg);
423 if (rc < 0) {
Pablo Neira Ayusoa49c24d2012-10-16 11:24:08 +0200424 /* Don't close the signalling link if the upper layers report
425 * an error, that's too strict. BTW, the signalling layer is
426 * resposible for releasing the message.
427 */
Harald Weltecc2241b2011-07-19 16:06:06 +0200428 LOGP(DLINP, LOGL_ERROR, "Bad signalling message,"
Maxc9fa25e2017-01-09 13:23:15 +0100429 " sign_link returned error: %s.\n", strerror(-rc));
Pablo Neira Ayuso466c5462011-07-07 19:17:20 +0200430 }
Pablo Neira Ayuso1e401942012-08-22 14:16:24 +0200431
Pau Espin Pedroled122f32018-08-28 18:25:02 +0200432 return rc;
Pablo Neira Ayuso1e401942012-08-22 14:16:24 +0200433err_msg:
434 msgb_free(msg);
Pablo Neira Ayuso466c5462011-07-07 19:17:20 +0200435err:
Harald Welte10b41302013-06-30 14:05:49 +0200436 ipaccess_drop(bfd, line);
Pau Espin Pedrol7edc25d2018-05-23 14:57:03 +0200437 return -EBADF;
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200438}
439
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200440static int ts_want_write(struct e1inp_ts *e1i_ts)
441{
Harald Welte949b8a22020-10-18 23:01:53 +0200442 osmo_fd_write_enable(&e1i_ts->driver.ipaccess.fd);
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200443
444 return 0;
445}
446
Pablo Neira Ayusoadd3ec82011-07-05 14:45:46 +0200447static void ipaccess_close(struct e1inp_sign_link *sign_link)
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200448{
Pablo Neira Ayusoadd3ec82011-07-05 14:45:46 +0200449 struct e1inp_ts *e1i_ts = sign_link->ts;
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200450 struct osmo_fd *bfd = &e1i_ts->driver.ipaccess.fd;
Eric Wildef1f3272019-07-10 18:10:31 +0200451 struct e1inp_line *line = e1i_ts->line;
452
453 /* line might not exist if != bsc||bts */
454 if (line) {
455 /* depending on caller the fsm might be dead */
456 struct osmo_fsm_inst* ka_fsm = ipaccess_line_ts(bfd, line)->driver.ipaccess.ka_fsm;
457 if (ka_fsm)
458 ipa_keepalive_fsm_stop(ka_fsm);
459
460 }
461
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
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200477static void timeout_ts1_write(void *data)
478{
479 struct e1inp_ts *e1i_ts = (struct e1inp_ts *)data;
480
481 /* trigger write of ts1, due to tx delay timer */
482 ts_want_write(e1i_ts);
483}
484
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200485static int __handle_ts1_write(struct osmo_fd *bfd, struct e1inp_line *line)
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200486{
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200487 unsigned int ts_nr = bfd->priv_nr;
Pau Espin Pedrolb5cfc6b2018-10-02 21:22:18 +0200488 struct e1inp_ts *e1i_ts;
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200489 struct e1inp_sign_link *sign_link;
490 struct msgb *msg;
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200491 int ret;
492
Eric Wildef1f3272019-07-10 18:10:31 +0200493 e1i_ts = ipaccess_line_ts(bfd, line);
Harald Welte949b8a22020-10-18 23:01:53 +0200494 osmo_fd_write_disable(bfd);
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200495
496 /* get the next msg for this timeslot */
497 msg = e1inp_tx_ts(e1i_ts, &sign_link);
498 if (!msg) {
499 /* no message after tx delay timer */
500 return 0;
501 }
502
503 switch (sign_link->type) {
504 case E1INP_SIGN_OML:
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200505 case E1INP_SIGN_RSL:
Harald Welte46fc7e22014-08-18 19:04:26 +0200506 case E1INP_SIGN_OSMO:
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200507 break;
508 default:
Harald Welte949b8a22020-10-18 23:01:53 +0200509 osmo_fd_write_enable(bfd); /* come back for more msg */
Pablo Neira Ayuso1e401942012-08-22 14:16:24 +0200510 ret = -EINVAL;
511 goto out;
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200512 }
513
514 msg->l2h = msg->data;
Harald Welteb65f58f2014-08-20 22:04:11 +0200515 ipa_prepend_header(msg, sign_link->tei);
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200516
Vadim Yanitskiy77a7cf42020-11-29 20:39:57 +0100517 LOGPITS(e1i_ts, DLMI, LOGL_DEBUG, "TX %u: %s\n", ts_nr,
Pau Espin Pedrol3bdf59b2020-11-23 13:47:16 +0100518 osmo_hexdump(msg->l2h, msgb_l2len(msg)));
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200519
520 ret = send(bfd->fd, msg->data, msg->len, 0);
Pablo Neira Ayuso1e401942012-08-22 14:16:24 +0200521 if (ret != msg->len) {
Pau Espin Pedrol3bdf59b2020-11-23 13:47:16 +0100522 LOGPITS(e1i_ts, DLINP, LOGL_ERROR, "failed to send A-bis IPA signalling "
Pablo Neira Ayuso1e401942012-08-22 14:16:24 +0200523 "message. Reason: %s\n", strerror(errno));
524 goto err;
525 }
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200526
527 /* set tx delay timer for next event */
Pablo Neira Ayusob26f2fd2017-06-07 18:32:13 +0200528 osmo_timer_setup(&e1i_ts->sign.tx_timer, timeout_ts1_write, e1i_ts);
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200529
530 /* Reducing this might break the nanoBTS 900 init. */
531 osmo_timer_schedule(&e1i_ts->sign.tx_timer, 0, e1i_ts->sign.delay);
532
Pablo Neira Ayuso1e401942012-08-22 14:16:24 +0200533out:
534 msgb_free(msg);
535 return ret;
536err:
Harald Welte10b41302013-06-30 14:05:49 +0200537 ipaccess_drop(bfd, line);
Pablo Neira Ayuso1e401942012-08-22 14:16:24 +0200538 msgb_free(msg);
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200539 return ret;
540}
541
Pablo Neira Ayuso88136fc2011-07-08 16:21:55 +0200542static int handle_ts1_write(struct osmo_fd *bfd)
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200543{
544 struct e1inp_line *line = bfd->data;
545
546 return __handle_ts1_write(bfd, line);
547}
548
Pablo Neira Ayusof0995672011-09-08 12:58:38 +0200549static int ipaccess_bts_write_cb(struct ipa_client_conn *link)
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200550{
551 struct e1inp_line *line = link->line;
552
553 return __handle_ts1_write(link->ofd, line);
554}
555
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200556/* callback from select.c in case one of the fd's can be read/written */
Pablo Neira Ayuso495ddb62011-07-08 21:04:11 +0200557int ipaccess_fd_cb(struct osmo_fd *bfd, unsigned int what)
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200558{
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200559 int rc = 0;
560
Harald Weltede3959e2020-10-18 22:28:50 +0200561 if (what & OSMO_FD_READ)
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200562 rc = handle_ts1_read(bfd);
Harald Weltede3959e2020-10-18 22:28:50 +0200563 if (rc != -EBADF && (what & OSMO_FD_WRITE))
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200564 rc = handle_ts1_write(bfd);
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200565
566 return rc;
567}
568
Pablo Neira Ayuso4e862cb2011-08-19 18:43:38 +0200569static int ipaccess_line_update(struct e1inp_line *line);
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200570
571struct e1inp_driver ipaccess_driver = {
572 .name = "ipa",
573 .want_write = ts_want_write,
574 .line_update = ipaccess_line_update,
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200575 .close = ipaccess_close,
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200576 .default_delay = 0,
Jacob Erlbeck8fe15712014-01-09 14:30:58 +0100577 .has_keepalive = 1,
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200578};
579
Jacob Erlbecka4ec51e2014-01-09 14:30:56 +0100580static void update_fd_settings(struct e1inp_line *line, int fd)
581{
582 int ret;
583 int val;
584
Jacob Erlbeck8fe15712014-01-09 14:30:58 +0100585 if (line->keepalive_num_probes) {
Jacob Erlbecka4ec51e2014-01-09 14:30:56 +0100586 /* Enable TCP keepalive to find out if the connection is gone */
587 val = 1;
588 ret = setsockopt(fd, SOL_SOCKET, SO_KEEPALIVE, &val, sizeof(val));
589 if (ret < 0)
590 LOGP(DLINP, LOGL_NOTICE, "Failed to set keepalive: %s\n",
591 strerror(errno));
592 else
593 LOGP(DLINP, LOGL_NOTICE, "Keepalive is set: %i\n", ret);
594
595#if defined(TCP_KEEPIDLE) && defined(TCP_KEEPINTVL) && defined(TCP_KEEPCNT)
596 /* The following options are not portable! */
Jacob Erlbeck8fe15712014-01-09 14:30:58 +0100597 val = line->keepalive_idle_timeout > 0 ?
598 line->keepalive_idle_timeout :
599 DEFAULT_TCP_KEEPALIVE_IDLE_TIMEOUT;
Jacob Erlbecka4ec51e2014-01-09 14:30:56 +0100600 ret = setsockopt(fd, IPPROTO_TCP, TCP_KEEPIDLE,
601 &val, sizeof(val));
602 if (ret < 0)
603 LOGP(DLINP, LOGL_NOTICE,
604 "Failed to set keepalive idle time: %s\n",
605 strerror(errno));
Jacob Erlbeck8fe15712014-01-09 14:30:58 +0100606 val = line->keepalive_probe_interval > -1 ?
607 line->keepalive_probe_interval :
608 DEFAULT_TCP_KEEPALIVE_INTERVAL;
Jacob Erlbecka4ec51e2014-01-09 14:30:56 +0100609 ret = setsockopt(fd, IPPROTO_TCP, TCP_KEEPINTVL,
610 &val, sizeof(val));
611 if (ret < 0)
612 LOGP(DLINP, LOGL_NOTICE,
613 "Failed to set keepalive interval: %s\n",
614 strerror(errno));
Jacob Erlbeck8fe15712014-01-09 14:30:58 +0100615 val = line->keepalive_num_probes > 0 ?
616 line->keepalive_num_probes :
617 DEFAULT_TCP_KEEPALIVE_RETRY_COUNT;
Jacob Erlbecka4ec51e2014-01-09 14:30:56 +0100618 ret = setsockopt(fd, IPPROTO_TCP, TCP_KEEPCNT,
619 &val, sizeof(val));
620 if (ret < 0)
621 LOGP(DLINP, LOGL_NOTICE,
622 "Failed to set keepalive count: %s\n",
623 strerror(errno));
Eric Wild6eb186c2019-06-21 15:26:25 +0200624#if defined(TCP_USER_TIMEOUT)
625 val = 1000 * line->keepalive_num_probes *
626 line->keepalive_probe_interval +
627 line->keepalive_idle_timeout;
628 ret = setsockopt(fd, IPPROTO_TCP, TCP_USER_TIMEOUT,
629 &val, sizeof(val));
630 if (ret < 0)
631 LOGP(DLINP, LOGL_NOTICE,
632 "Failed to set user timoeut: %s\n",
633 strerror(errno));
634#endif
Jacob Erlbecka4ec51e2014-01-09 14:30:56 +0100635#endif
Holger Hans Peter Freytherf465a4c2014-02-03 09:34:02 +0100636 }
Oliver Smith62725d02020-04-17 10:57:46 +0200637
638 val = 1;
639 ret = setsockopt(fd, IPPROTO_TCP, TCP_NODELAY, &val, sizeof(val));
640 if (ret < 0)
641 LOGP(DLINP, LOGL_ERROR, "Failed to set TCP_NODELAY: %s\n", strerror(errno));
Jacob Erlbecka4ec51e2014-01-09 14:30:56 +0100642}
643
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200644/* callback of the OML listening filedescriptor */
Pablo Neira Ayuso986191f2011-06-21 19:56:26 +0200645static int ipaccess_bsc_oml_cb(struct ipa_server_link *link, int fd)
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200646{
647 int ret;
Jacob Erlbecka4ec51e2014-01-09 14:30:56 +0100648 int i;
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200649 struct e1inp_line *line;
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200650 struct e1inp_ts *e1i_ts;
651 struct osmo_fd *bfd;
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200652
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200653 /* clone virtual E1 line for this new OML link. */
Pau Espin Pedrol5196cd52020-07-14 17:52:09 +0200654 line = e1inp_line_clone(tall_ipa_ctx, link->line, "ipa_bfd");
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200655 if (line == NULL) {
Harald Weltecc2241b2011-07-19 16:06:06 +0200656 LOGP(DLINP, LOGL_ERROR, "could not clone E1 line\n");
Pablo Neira Ayuso1e401942012-08-22 14:16:24 +0200657 return -ENOMEM;
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200658 }
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200659
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200660 /* create virrtual E1 timeslots for signalling */
Pau Espin Pedrolb5cfc6b2018-10-02 21:22:18 +0200661 e1inp_ts_config_sign(e1inp_line_ipa_oml_ts(line), line);
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200662
663 /* initialize the fds */
664 for (i = 0; i < ARRAY_SIZE(line->ts); ++i)
665 line->ts[i].driver.ipaccess.fd.fd = -1;
666
Pau Espin Pedrolb5cfc6b2018-10-02 21:22:18 +0200667 e1i_ts = e1inp_line_ipa_oml_ts(line);
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200668
Pablo Neira Ayuso93c62012011-06-26 19:12:47 +0200669 bfd = &e1i_ts->driver.ipaccess.fd;
Harald Weltede3959e2020-10-18 22:28:50 +0200670 osmo_fd_setup(bfd, fd, OSMO_FD_READ, ipaccess_fd_cb, line, E1INP_SIGN_OML);
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200671 ret = osmo_fd_register(bfd);
672 if (ret < 0) {
Harald Weltecc2241b2011-07-19 16:06:06 +0200673 LOGP(DLINP, LOGL_ERROR, "could not register FD\n");
Pablo Neira Ayuso1e401942012-08-22 14:16:24 +0200674 goto err_line;
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200675 }
Philipp Maierf5f31d32021-12-06 16:46:40 +0100676 osmo_stats_tcp_osmo_fd_register(bfd, "ipa-oml");
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200677
Jacob Erlbecka4ec51e2014-01-09 14:30:56 +0100678 update_fd_settings(line, bfd->fd);
Daniel Willmann85980722014-01-09 14:30:55 +0100679
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200680 /* Request ID. FIXME: request LOCATION, HW/SW VErsion, Unit Name, Serno */
Harald Welteb65f58f2014-08-20 22:04:11 +0200681 ret = ipa_ccm_send_id_req(bfd->fd);
Pablo Neira Ayuso1e401942012-08-22 14:16:24 +0200682 if (ret < 0) {
683 LOGP(DLINP, LOGL_ERROR, "could not send ID REQ. Reason: %s\n",
684 strerror(errno));
685 goto err_socket;
686 }
687 return ret;
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200688
Pablo Neira Ayuso1e401942012-08-22 14:16:24 +0200689err_socket:
690 osmo_fd_unregister(bfd);
691err_line:
692 close(bfd->fd);
693 bfd->fd = -1;
Pau Espin Pedrola2ff7332020-07-14 21:12:50 +0200694 bfd->data = NULL;
Pau Espin Pedrol5196cd52020-07-14 17:52:09 +0200695 e1inp_line_put2(line, "ipa_bfd");
Pablo Neira Ayuso1e401942012-08-22 14:16:24 +0200696 return ret;
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200697}
698
Pablo Neira Ayuso986191f2011-06-21 19:56:26 +0200699static int ipaccess_bsc_rsl_cb(struct ipa_server_link *link, int fd)
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200700{
Pablo Neira Ayuso3832c4f2011-07-07 17:47:26 +0200701 struct e1inp_line *line;
702 struct e1inp_ts *e1i_ts;
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200703 struct osmo_fd *bfd;
Pablo Neira Ayuso3832c4f2011-07-07 17:47:26 +0200704 int i, ret;
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200705
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200706 /* We don't know yet which OML link to associate it with. Thus, we
Pablo Neira Ayuso3832c4f2011-07-07 17:47:26 +0200707 * allocate a temporary E1 line until we have received ID. */
Pau Espin Pedrol5196cd52020-07-14 17:52:09 +0200708 line = e1inp_line_clone(tall_ipa_ctx, link->line, "ipa_bfd");
Pablo Neira Ayuso3832c4f2011-07-07 17:47:26 +0200709 if (line == NULL) {
Harald Weltecc2241b2011-07-19 16:06:06 +0200710 LOGP(DLINP, LOGL_ERROR, "could not clone E1 line\n");
Pablo Neira Ayuso1e401942012-08-22 14:16:24 +0200711 return -ENOMEM;
Pablo Neira Ayuso3832c4f2011-07-07 17:47:26 +0200712 }
713 /* initialize the fds */
714 for (i = 0; i < ARRAY_SIZE(line->ts); ++i)
715 line->ts[i].driver.ipaccess.fd.fd = -1;
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200716
Pablo Neira Ayuso3832c4f2011-07-07 17:47:26 +0200717 /* we need this to initialize this in case to avoid crashes in case
718 * that the socket is closed before we've seen an ID_RESP. */
Pau Espin Pedrolb5cfc6b2018-10-02 21:22:18 +0200719 e1inp_ts_config_sign(e1inp_line_ipa_oml_ts(line), line);
Pablo Neira Ayuso3832c4f2011-07-07 17:47:26 +0200720
Pau Espin Pedrolb5cfc6b2018-10-02 21:22:18 +0200721 e1i_ts = e1inp_line_ipa_rsl_ts(line, 0);
Pablo Neira Ayuso3832c4f2011-07-07 17:47:26 +0200722
723 bfd = &e1i_ts->driver.ipaccess.fd;
Harald Weltede3959e2020-10-18 22:28:50 +0200724 osmo_fd_setup(bfd, fd, OSMO_FD_READ, ipaccess_fd_cb, line, E1INP_SIGN_RSL);
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200725 ret = osmo_fd_register(bfd);
726 if (ret < 0) {
Harald Weltecc2241b2011-07-19 16:06:06 +0200727 LOGP(DLINP, LOGL_ERROR, "could not register FD\n");
Pablo Neira Ayuso1e401942012-08-22 14:16:24 +0200728 goto err_line;
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200729 }
Philipp Maierf5f31d32021-12-06 16:46:40 +0100730 osmo_stats_tcp_osmo_fd_register(bfd, "ipa-rsl");
731
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200732 /* Request ID. FIXME: request LOCATION, HW/SW VErsion, Unit Name, Serno */
Harald Welteb65f58f2014-08-20 22:04:11 +0200733 ret = ipa_ccm_send_id_req(bfd->fd);
Pablo Neira Ayuso1e401942012-08-22 14:16:24 +0200734 if (ret < 0) {
735 LOGP(DLINP, LOGL_ERROR, "could not send ID REQ. Reason: %s\n",
736 strerror(errno));
737 goto err_socket;
738 }
Jacob Erlbecka4ec51e2014-01-09 14:30:56 +0100739 update_fd_settings(line, bfd->fd);
Pablo Neira Ayuso1e401942012-08-22 14:16:24 +0200740 return ret;
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200741
Pablo Neira Ayuso1e401942012-08-22 14:16:24 +0200742err_socket:
743 osmo_fd_unregister(bfd);
744err_line:
745 close(bfd->fd);
746 bfd->fd = -1;
Pau Espin Pedrola2ff7332020-07-14 21:12:50 +0200747 bfd->data = NULL;
Pau Espin Pedrol5196cd52020-07-14 17:52:09 +0200748 e1inp_line_put2(line, "ipa_bfd");
Pablo Neira Ayuso1e401942012-08-22 14:16:24 +0200749 return ret;
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200750}
751
Harald Weltee416e2e2017-05-26 13:11:59 +0200752#define IPA_STRING_MAX 64
753
754static struct msgb *
Max71393522018-01-08 15:42:00 +0100755ipa_bts_id_resp(const struct ipaccess_unit *dev, uint8_t *data, int len, int trx_nr)
Harald Weltee416e2e2017-05-26 13:11:59 +0200756{
757 struct msgb *nmsg;
758 char str[IPA_STRING_MAX];
759 uint8_t *tag;
760
761 memset(str, 0, sizeof(str));
762
763 nmsg = ipa_msg_alloc(0);
764 if (!nmsg)
765 return NULL;
766
767 *msgb_put(nmsg, 1) = IPAC_MSGT_ID_RESP;
768 while (len) {
769 if (len < 2) {
770 LOGP(DLINP, LOGL_NOTICE,
771 "Short read of ipaccess tag\n");
772 msgb_free(nmsg);
773 return NULL;
774 }
775 switch (data[1]) {
776 case IPAC_IDTAG_UNIT:
777 snprintf(str, sizeof(str), "%u/%u/%u",
778 dev->site_id, dev->bts_id, trx_nr);
779 break;
780 case IPAC_IDTAG_MACADDR:
781 snprintf(str, sizeof(str),
782 "%02x:%02x:%02x:%02x:%02x:%02x",
783 dev->mac_addr[0], dev->mac_addr[1],
784 dev->mac_addr[2], dev->mac_addr[3],
785 dev->mac_addr[4], dev->mac_addr[5]);
786 break;
787 case IPAC_IDTAG_LOCATION1:
788 if (dev->location1)
Stefan Sperling961776a2018-12-06 13:09:48 +0100789 osmo_strlcpy(str, dev->location1, sizeof(str));
Harald Weltee416e2e2017-05-26 13:11:59 +0200790 break;
791 case IPAC_IDTAG_LOCATION2:
792 if (dev->location2)
Stefan Sperling961776a2018-12-06 13:09:48 +0100793 osmo_strlcpy(str, dev->location2, sizeof(str));
Harald Weltee416e2e2017-05-26 13:11:59 +0200794 break;
795 case IPAC_IDTAG_EQUIPVERS:
796 if (dev->equipvers)
Stefan Sperling961776a2018-12-06 13:09:48 +0100797 osmo_strlcpy(str, dev->equipvers, sizeof(str));
Harald Weltee416e2e2017-05-26 13:11:59 +0200798 break;
799 case IPAC_IDTAG_SWVERSION:
800 if (dev->swversion)
Neels Hofmeyr4c57eef2018-07-26 17:28:24 +0200801 osmo_strlcpy(str, dev->swversion, sizeof(str));
Harald Weltee416e2e2017-05-26 13:11:59 +0200802 break;
803 case IPAC_IDTAG_UNITNAME:
804 snprintf(str, sizeof(str),
805 "%s-%02x-%02x-%02x-%02x-%02x-%02x",
806 dev->unit_name,
807 dev->mac_addr[0], dev->mac_addr[1],
808 dev->mac_addr[2], dev->mac_addr[3],
809 dev->mac_addr[4], dev->mac_addr[5]);
810 break;
811 case IPAC_IDTAG_SERNR:
812 if (dev->serno)
Stefan Sperling961776a2018-12-06 13:09:48 +0100813 osmo_strlcpy(str, dev->serno, sizeof(str));
Harald Weltee416e2e2017-05-26 13:11:59 +0200814 break;
815 default:
816 LOGP(DLINP, LOGL_NOTICE,
817 "Unknown ipaccess tag 0x%02x\n", *data);
818 msgb_free(nmsg);
819 return NULL;
820 }
Harald Weltee416e2e2017-05-26 13:11:59 +0200821
822 LOGP(DLINP, LOGL_INFO, " tag %d: %s\n", data[1], str);
823 tag = msgb_put(nmsg, 3 + strlen(str) + 1);
824 tag[0] = 0x00;
825 tag[1] = 1 + strlen(str) + 1;
826 tag[2] = data[1];
827 memcpy(tag + 3, str, strlen(str) + 1);
828 data += 2;
829 len -= 2;
830 }
831 ipa_msg_push_header(nmsg, IPAC_PROTO_IPACCESS);
832 return nmsg;
833}
834
Pablo Neira Ayusodfafe682011-07-02 14:32:32 +0200835static struct msgb *ipa_bts_id_ack(void)
836{
837 struct msgb *nmsg2;
838
Pablo Neira Ayuso88136fc2011-07-08 16:21:55 +0200839 nmsg2 = ipa_msg_alloc(0);
Pablo Neira Ayusodfafe682011-07-02 14:32:32 +0200840 if (!nmsg2)
841 return NULL;
842
843 *msgb_put(nmsg2, 1) = IPAC_MSGT_ID_ACK;
Pablo Neira Ayuso88136fc2011-07-08 16:21:55 +0200844 ipa_msg_push_header(nmsg2, IPAC_PROTO_IPACCESS);
Pablo Neira Ayusodfafe682011-07-02 14:32:32 +0200845
846 return nmsg2;
847}
848
Harald Welte51de9ca2013-06-30 20:13:16 +0200849static void ipaccess_bts_updown_cb(struct ipa_client_conn *link, int up)
850{
851 struct e1inp_line *line = link->line;
852
Eric Wildef1f3272019-07-10 18:10:31 +0200853 if (up) {
854 struct osmo_fsm_inst *ka_fsm = ipaccess_line_ts(link->ofd, line)->driver.ipaccess.ka_fsm;
855
856 update_fd_settings(line, link->ofd->fd);
857 if (ka_fsm && line->ipa_kap)
858 ipa_keepalive_fsm_start(ka_fsm);
859 return;
860 }
Harald Welte51de9ca2013-06-30 20:13:16 +0200861
862 if (line->ops->sign_link_down)
863 line->ops->sign_link_down(line);
864}
865
Harald Welte783715b2014-08-17 18:24:51 +0200866/* handle incoming message to BTS, check if it is an IPA CCM, and if yes,
867 * handle it accordingly (PING/PONG/ID_REQ/ID_RESP/ID_ACK) */
868int ipaccess_bts_handle_ccm(struct ipa_client_conn *link,
869 struct ipaccess_unit *dev, struct msgb *msg)
Pablo Neira Ayuso591ddad2011-06-21 18:16:42 +0200870{
871 struct ipaccess_head *hh = (struct ipaccess_head *) msg->data;
Pablo Neira Ayuso1e401942012-08-22 14:16:24 +0200872 struct msgb *rmsg;
873 int ret = 0;
Eric Wildef1f3272019-07-10 18:10:31 +0200874 /* line might not exist if != bsc||bts */
875 struct e1inp_line *line = link->line;
Pablo Neira Ayuso591ddad2011-06-21 18:16:42 +0200876
877 /* special handling for IPA CCM. */
878 if (hh->proto == IPAC_PROTO_IPACCESS) {
879 uint8_t msg_type = *(msg->l2h);
Eric Wildef1f3272019-07-10 18:10:31 +0200880 struct osmo_fsm_inst* ka_fsm = NULL;
881
882 /* peek the pong for our keepalive fsm */
883 if (line && msg_type == IPAC_MSGT_PONG) {
884 ka_fsm = ipaccess_line_ts(link->ofd, line)->driver.ipaccess.ka_fsm;
885 ipa_keepalive_fsm_pong_received(ka_fsm);
886 }
Pablo Neira Ayuso591ddad2011-06-21 18:16:42 +0200887
888 /* ping, pong and acknowledgment cases. */
Harald Welteb65f58f2014-08-20 22:04:11 +0200889 ret = ipa_ccm_rcvmsg_bts_base(msg, link->ofd);
Pablo Neira Ayuso1e401942012-08-22 14:16:24 +0200890 if (ret < 0)
891 goto err;
Pablo Neira Ayuso591ddad2011-06-21 18:16:42 +0200892
893 /* this is a request for identification from the BSC. */
894 if (msg_type == IPAC_MSGT_ID_GET) {
Pablo Neira Ayusodfafe682011-07-02 14:32:32 +0200895 uint8_t *data = msgb_l2(msg);
896 int len = msgb_l2len(msg);
Andreas Eversbergf422a752014-01-21 14:54:41 +0100897 int trx_nr = 0;
898
899 if (link->ofd->priv_nr >= E1INP_SIGN_RSL)
900 trx_nr = link->ofd->priv_nr - E1INP_SIGN_RSL;
Pablo Neira Ayusodfafe682011-07-02 14:32:32 +0200901
Vadim Yanitskiy69ae2382019-12-02 02:42:43 +0700902 LOGP(DLINP, LOGL_NOTICE, "received ID_GET for unit ID %u/%u/%u\n",
Pau Espin Pedroldd95eb62018-10-02 20:05:28 +0200903 dev->site_id, dev->bts_id, trx_nr);
Harald Weltee416e2e2017-05-26 13:11:59 +0200904 rmsg = ipa_bts_id_resp(dev, data + 1, len - 1, trx_nr);
Harald Welteb65f58f2014-08-20 22:04:11 +0200905 ret = ipa_send(link->ofd->fd, rmsg->data, rmsg->len);
Pablo Neira Ayuso1e401942012-08-22 14:16:24 +0200906 if (ret != rmsg->len) {
907 LOGP(DLINP, LOGL_ERROR, "cannot send ID_RESP "
908 "message. Reason: %s\n", strerror(errno));
909 goto err_rmsg;
910 }
Pablo Neira Ayusodfafe682011-07-02 14:32:32 +0200911 msgb_free(rmsg);
912
913 /* send ID_ACK. */
914 rmsg = ipa_bts_id_ack();
Harald Welteb65f58f2014-08-20 22:04:11 +0200915 ret = ipa_send(link->ofd->fd, rmsg->data, rmsg->len);
Pablo Neira Ayuso1e401942012-08-22 14:16:24 +0200916 if (ret != rmsg->len) {
917 LOGP(DLINP, LOGL_ERROR, "cannot send ID_ACK "
918 "message. Reason: %s\n", strerror(errno));
919 goto err_rmsg;
920 }
Pablo Neira Ayusodfafe682011-07-02 14:32:32 +0200921 msgb_free(rmsg);
Harald Welte783715b2014-08-17 18:24:51 +0200922 }
923 return 1;
924 }
Harald Welte6eddd472013-06-30 20:18:53 +0200925
Harald Welte783715b2014-08-17 18:24:51 +0200926 return 0;
927
928err_rmsg:
929 msgb_free(rmsg);
930err:
931 ipa_client_conn_close(link);
932 return -1;
933}
934
935static int ipaccess_bts_read_cb(struct ipa_client_conn *link, struct msgb *msg)
936{
937 struct ipaccess_head *hh = (struct ipaccess_head *) msg->data;
938 struct e1inp_ts *e1i_ts = NULL;
939 struct e1inp_sign_link *sign_link;
Neels Hofmeyrfe673112018-08-24 17:43:45 +0200940 uint8_t msg_type = *(msg->l2h);
Harald Welte783715b2014-08-17 18:24:51 +0200941 int ret = 0;
942
943 /* special handling for IPA CCM. */
944 if (hh->proto == IPAC_PROTO_IPACCESS) {
Harald Welte783715b2014-08-17 18:24:51 +0200945 /* this is a request for identification from the BSC. */
946 if (msg_type == IPAC_MSGT_ID_GET) {
947 if (!link->line->ops->sign_link_up) {
948 LOGP(DLINP, LOGL_ERROR,
949 "Unable to set signal link, "
950 "closing socket.\n");
Harald Welte783715b2014-08-17 18:24:51 +0200951 goto err;
952 }
953 }
954 }
955
956 /* core CCM handling */
957 ret = ipaccess_bts_handle_ccm(link, link->line->ops->cfg.ipa.dev, msg);
958 if (ret < 0)
959 goto err;
960
961 if (ret == 1 && hh->proto == IPAC_PROTO_IPACCESS) {
Harald Welte783715b2014-08-17 18:24:51 +0200962 if (msg_type == IPAC_MSGT_ID_GET) {
Harald Welte6eddd472013-06-30 20:18:53 +0200963 sign_link = link->line->ops->sign_link_up(msg,
964 link->line,
965 link->ofd->priv_nr);
966 if (sign_link == NULL) {
967 LOGP(DLINP, LOGL_ERROR,
968 "Unable to set signal link, "
969 "closing socket.\n");
Harald Welte6eddd472013-06-30 20:18:53 +0200970 goto err;
971 }
Pablo Neira Ayuso591ddad2011-06-21 18:16:42 +0200972 }
Pablo Neira Ayuso84e5cb92012-08-23 23:41:54 +0200973 msgb_free(msg);
Pablo Neira Ayuso1e401942012-08-22 14:16:24 +0200974 return ret;
Pablo Neira Ayuso591ddad2011-06-21 18:16:42 +0200975 } else if (link->port == IPA_TCP_PORT_OML)
Pau Espin Pedrolb5cfc6b2018-10-02 21:22:18 +0200976 e1i_ts = e1inp_line_ipa_oml_ts(link->line);
Pablo Neira Ayuso591ddad2011-06-21 18:16:42 +0200977 else if (link->port == IPA_TCP_PORT_RSL)
Pau Espin Pedrolb5cfc6b2018-10-02 21:22:18 +0200978 e1i_ts = e1inp_line_ipa_rsl_ts(link->line, link->ofd->priv_nr - E1INP_SIGN_RSL);
Pablo Neira Ayuso591ddad2011-06-21 18:16:42 +0200979
Pablo Neira Ayusob9487012013-07-05 14:38:43 +0200980 OSMO_ASSERT(e1i_ts != NULL);
981
Neels Hofmeyrfe673112018-08-24 17:43:45 +0200982 if (e1i_ts->type == E1INP_TS_TYPE_NONE) {
983 LOGP(DLINP, LOGL_ERROR, "Signalling link not initialized. Discarding."
984 " port=%u msg_type=%u\n", link->port, msg_type);
Neels Hofmeyrfe673112018-08-24 17:43:45 +0200985 goto err;
986 }
Pau Espin Pedrol7ad2b152018-08-28 17:37:59 +0200987
Pablo Neira Ayuso591ddad2011-06-21 18:16:42 +0200988 /* look up for some existing signaling link. */
989 sign_link = e1inp_lookup_sign_link(e1i_ts, hh->proto, 0);
990 if (sign_link == NULL) {
Harald Weltecc2241b2011-07-19 16:06:06 +0200991 LOGP(DLINP, LOGL_ERROR, "no matching signalling link for "
Pablo Neira Ayuso591ddad2011-06-21 18:16:42 +0200992 "hh->proto=0x%02x\n", hh->proto);
Pablo Neira Ayuso1e401942012-08-22 14:16:24 +0200993 goto err;
Pablo Neira Ayuso591ddad2011-06-21 18:16:42 +0200994 }
995 msg->dst = sign_link;
996
997 /* XXX better use e1inp_ts_rx? */
Pablo Neira Ayusof163d232011-06-25 18:42:55 +0200998 if (!link->line->ops->sign_link) {
Harald Weltecc2241b2011-07-19 16:06:06 +0200999 LOGP(DLINP, LOGL_ERROR, "Fix your application, "
Pablo Neira Ayuso591ddad2011-06-21 18:16:42 +02001000 "no action set for signalling messages.\n");
Pablo Neira Ayuso1e401942012-08-22 14:16:24 +02001001 goto err;
Pablo Neira Ayuso591ddad2011-06-21 18:16:42 +02001002 }
Pau Espin Pedroled122f32018-08-28 18:25:02 +02001003 return link->line->ops->sign_link(msg);
Pablo Neira Ayuso1e401942012-08-22 14:16:24 +02001004
Pablo Neira Ayuso1e401942012-08-22 14:16:24 +02001005err:
Harald Welte783715b2014-08-17 18:24:51 +02001006 ipa_client_conn_close(link);
Pablo Neira Ayuso1e401942012-08-22 14:16:24 +02001007 msgb_free(msg);
Pau Espin Pedrol7ad2b152018-08-28 17:37:59 +02001008 return -EBADF;
Pablo Neira Ayuso591ddad2011-06-21 18:16:42 +02001009}
1010
Pablo Neira Ayusod6216402011-08-31 16:47:44 +02001011struct ipaccess_line {
Oliver Smith65ae42c2020-01-22 11:24:52 +01001012 bool line_already_initialized;
Pau Espin Pedrol92aee512021-10-11 12:14:36 +02001013 struct ipa_client_conn *ipa_cli[NUM_E1_TS]; /* 0=OML, 1+N=TRX_N */
Pablo Neira Ayusod6216402011-08-31 16:47:44 +02001014};
1015
Pablo Neira Ayuso4e862cb2011-08-19 18:43:38 +02001016static int ipaccess_line_update(struct e1inp_line *line)
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +02001017{
1018 int ret = -ENOENT;
Pablo Neira Ayusod6216402011-08-31 16:47:44 +02001019 struct ipaccess_line *il;
1020
1021 if (!line->driver_data)
1022 line->driver_data = talloc_zero(line, struct ipaccess_line);
1023
1024 if (!line->driver_data) {
1025 LOGP(DLINP, LOGL_ERROR, "ipaccess: OOM in line update\n");
1026 return -ENOMEM;
1027 }
1028 il = line->driver_data;
1029
Pablo Neira Ayuso4e862cb2011-08-19 18:43:38 +02001030 switch(line->ops->cfg.ipa.role) {
Pablo Neira Ayuso986191f2011-06-21 19:56:26 +02001031 case E1INP_LINE_R_BSC: {
Pau Espin Pedrold2d28d82021-09-29 14:15:56 +02001032 /* We only initialize this line once. */
1033 if (il->line_already_initialized)
1034 return 0;
Pablo Neira Ayuso986191f2011-06-21 19:56:26 +02001035 struct ipa_server_link *oml_link, *rsl_link;
Max4c4a1c22016-12-30 15:10:47 +01001036 const char *ipa = e1inp_ipa_get_bind_addr();
Pablo Neira Ayuso986191f2011-06-21 19:56:26 +02001037
Max4c4a1c22016-12-30 15:10:47 +01001038 LOGP(DLINP, LOGL_NOTICE, "enabling ipaccess BSC mode on %s "
1039 "with OML %u and RSL %u TCP ports\n", ipa,
1040 IPA_TCP_PORT_OML, IPA_TCP_PORT_RSL);
Pablo Neira Ayuso96e81282011-06-09 15:06:11 +02001041
Max4c4a1c22016-12-30 15:10:47 +01001042 oml_link = ipa_server_link_create(tall_ipa_ctx, line, ipa,
Neels Hofmeyr0db1d432016-02-22 13:29:09 +01001043 IPA_TCP_PORT_OML,
Pablo Neira Ayusoe009f4a2011-06-23 13:36:34 +02001044 ipaccess_bsc_oml_cb, NULL);
Pablo Neira Ayuso986191f2011-06-21 19:56:26 +02001045 if (oml_link == NULL) {
Harald Weltecc2241b2011-07-19 16:06:06 +02001046 LOGP(DLINP, LOGL_ERROR, "cannot create OML "
Pablo Neira Ayuso986191f2011-06-21 19:56:26 +02001047 "BSC link: %s\n", strerror(errno));
1048 return -ENOMEM;
Pablo Neira Ayusof67471f2011-06-07 11:25:49 +02001049 }
Harald Welte41547552021-04-28 18:23:21 +02001050 oml_link->dscp = g_e1inp_ipaccess_pars.oml.dscp;
1051 oml_link->priority = g_e1inp_ipaccess_pars.oml.priority;
Pablo Neira Ayuso986191f2011-06-21 19:56:26 +02001052 if (ipa_server_link_open(oml_link) < 0) {
Harald Weltecc2241b2011-07-19 16:06:06 +02001053 LOGP(DLINP, LOGL_ERROR, "cannot open OML BSC link: %s\n",
Pablo Neira Ayuso986191f2011-06-21 19:56:26 +02001054 strerror(errno));
Pablo Neira Ayuso986191f2011-06-21 19:56:26 +02001055 ipa_server_link_destroy(oml_link);
1056 return -EIO;
Pablo Neira Ayusof67471f2011-06-07 11:25:49 +02001057 }
Max4c4a1c22016-12-30 15:10:47 +01001058 rsl_link = ipa_server_link_create(tall_ipa_ctx, line, ipa,
Neels Hofmeyr0db1d432016-02-22 13:29:09 +01001059 IPA_TCP_PORT_RSL,
Pablo Neira Ayusoe009f4a2011-06-23 13:36:34 +02001060 ipaccess_bsc_rsl_cb, NULL);
Pablo Neira Ayuso986191f2011-06-21 19:56:26 +02001061 if (rsl_link == NULL) {
Harald Weltecc2241b2011-07-19 16:06:06 +02001062 LOGP(DLINP, LOGL_ERROR, "cannot create RSL "
Pablo Neira Ayuso986191f2011-06-21 19:56:26 +02001063 "BSC link: %s\n", strerror(errno));
1064 return -ENOMEM;
1065 }
Harald Welte41547552021-04-28 18:23:21 +02001066 rsl_link->dscp = g_e1inp_ipaccess_pars.rsl.dscp;
1067 rsl_link->priority = g_e1inp_ipaccess_pars.rsl.priority;
Pablo Neira Ayuso986191f2011-06-21 19:56:26 +02001068 if (ipa_server_link_open(rsl_link) < 0) {
Harald Weltecc2241b2011-07-19 16:06:06 +02001069 LOGP(DLINP, LOGL_ERROR, "cannot open RSL BSC link: %s\n",
Pablo Neira Ayuso986191f2011-06-21 19:56:26 +02001070 strerror(errno));
Pablo Neira Ayuso986191f2011-06-21 19:56:26 +02001071 ipa_server_link_destroy(rsl_link);
1072 return -EIO;
1073 }
1074 ret = 0;
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +02001075 break;
Pablo Neira Ayuso986191f2011-06-21 19:56:26 +02001076 }
Pablo Neira Ayuso96e81282011-06-09 15:06:11 +02001077 case E1INP_LINE_R_BTS: {
Harald Welte84f67b22013-06-30 13:13:59 +02001078 struct ipa_client_conn *link;
Eric Wildef1f3272019-07-10 18:10:31 +02001079 struct e1inp_ts *e1i_ts;
Pablo Neira Ayuso96e81282011-06-09 15:06:11 +02001080
Max4c4a1c22016-12-30 15:10:47 +01001081 LOGP(DLINP, LOGL_NOTICE, "enabling ipaccess BTS mode, "
1082 "OML connecting to %s:%u\n", line->ops->cfg.ipa.addr,
1083 IPA_TCP_PORT_OML);
Pablo Neira Ayuso96e81282011-06-09 15:06:11 +02001084
Pau Espin Pedrold2d28d82021-09-29 14:15:56 +02001085 /* Drop previous line */
Pau Espin Pedrol92aee512021-10-11 12:14:36 +02001086 if (il->ipa_cli[0]) {
1087 ipa_client_conn_close(il->ipa_cli[0]);
1088 ipa_client_conn_destroy(il->ipa_cli[0]);
1089 il->ipa_cli[0] = NULL;
Pau Espin Pedrold2d28d82021-09-29 14:15:56 +02001090 }
1091
Pau Espin Pedrolb6e28bf2019-11-08 17:30:28 +01001092 link = ipa_client_conn_create2(tall_ipa_ctx,
Pau Espin Pedrolb5cfc6b2018-10-02 21:22:18 +02001093 e1inp_line_ipa_oml_ts(line),
Pablo Neira Ayuso00af7722011-09-08 12:47:06 +02001094 E1INP_SIGN_OML,
Pau Espin Pedrolb6e28bf2019-11-08 17:30:28 +01001095 NULL, 0,
Pablo Neira Ayuso4e862cb2011-08-19 18:43:38 +02001096 line->ops->cfg.ipa.addr,
1097 IPA_TCP_PORT_OML,
Harald Welte51de9ca2013-06-30 20:13:16 +02001098 ipaccess_bts_updown_cb,
Harald Weltea3e9dd52013-06-30 14:25:07 +02001099 ipaccess_bts_read_cb,
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +02001100 ipaccess_bts_write_cb,
Harald Welte10b41302013-06-30 14:05:49 +02001101 line);
Pablo Neira Ayuso96e81282011-06-09 15:06:11 +02001102 if (link == NULL) {
Harald Weltecc2241b2011-07-19 16:06:06 +02001103 LOGP(DLINP, LOGL_ERROR, "cannot create OML "
Pablo Neira Ayuso29465d32011-06-21 14:21:33 +02001104 "BTS link: %s\n", strerror(errno));
Pablo Neira Ayuso96e81282011-06-09 15:06:11 +02001105 return -ENOMEM;
1106 }
Harald Welte41547552021-04-28 18:23:21 +02001107 link->dscp = g_e1inp_ipaccess_pars.oml.dscp;
1108 link->priority = g_e1inp_ipaccess_pars.oml.priority;
Pablo Neira Ayusof0995672011-09-08 12:58:38 +02001109 if (ipa_client_conn_open(link) < 0) {
Harald Weltecc2241b2011-07-19 16:06:06 +02001110 LOGP(DLINP, LOGL_ERROR, "cannot open OML BTS link: %s\n",
Pablo Neira Ayuso29465d32011-06-21 14:21:33 +02001111 strerror(errno));
Pablo Neira Ayusof0995672011-09-08 12:58:38 +02001112 ipa_client_conn_close(link);
1113 ipa_client_conn_destroy(link);
Pablo Neira Ayuso96e81282011-06-09 15:06:11 +02001114 return -EIO;
1115 }
Eric Wildef1f3272019-07-10 18:10:31 +02001116
1117 e1i_ts = e1inp_line_ipa_oml_ts(line);
1118 ipaccess_bts_keepalive_fsm_alloc(e1i_ts, link, "oml_bts_to_bsc");
Pau Espin Pedrol92aee512021-10-11 12:14:36 +02001119 il->ipa_cli[0] = link;
Pablo Neira Ayuso96e81282011-06-09 15:06:11 +02001120 ret = 0;
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +02001121 break;
Pablo Neira Ayuso96e81282011-06-09 15:06:11 +02001122 }
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +02001123 default:
1124 break;
1125 }
Philipp Maierea0f1bd2021-05-20 21:01:23 +02001126
1127 il->line_already_initialized = true;
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +02001128 return ret;
1129}
1130
Andreas Eversbergf422a752014-01-21 14:54:41 +01001131
1132/* backwards compatibility */
Harald Welte84f67b22013-06-30 13:13:59 +02001133int e1inp_ipa_bts_rsl_connect(struct e1inp_line *line,
1134 const char *rem_addr, uint16_t rem_port)
1135{
Andreas Eversbergf422a752014-01-21 14:54:41 +01001136 return e1inp_ipa_bts_rsl_connect_n(line, rem_addr, rem_port, 0);
1137}
1138
1139int e1inp_ipa_bts_rsl_connect_n(struct e1inp_line *line,
1140 const char *rem_addr, uint16_t rem_port,
1141 uint8_t trx_nr)
1142{
Harald Welte84f67b22013-06-30 13:13:59 +02001143 struct ipa_client_conn *rsl_link;
Eric Wildef1f3272019-07-10 18:10:31 +02001144 struct e1inp_ts *e1i_ts = e1inp_line_ipa_rsl_ts(line, trx_nr);
Pau Espin Pedrol92aee512021-10-11 12:14:36 +02001145 struct ipaccess_line *il;
Harald Welte84f67b22013-06-30 13:13:59 +02001146
Andreas Eversbergf422a752014-01-21 14:54:41 +01001147 if (E1INP_SIGN_RSL+trx_nr-1 >= NUM_E1_TS) {
1148 LOGP(DLINP, LOGL_ERROR, "cannot create RSL BTS link: "
1149 "trx_nr (%d) out of range\n", trx_nr);
1150 return -EINVAL;
1151 }
Andreas Eversbergf422a752014-01-21 14:54:41 +01001152
Pau Espin Pedrol92aee512021-10-11 12:14:36 +02001153 if (!line->driver_data)
1154 line->driver_data = talloc_zero(line, struct ipaccess_line);
1155 il = line->driver_data;
1156
1157 /* Drop previous line */
1158 if (il->ipa_cli[1 + trx_nr]) {
1159 ipa_client_conn_close(il->ipa_cli[1 + trx_nr]);
1160 ipa_client_conn_destroy(il->ipa_cli[1 + trx_nr]);
1161 il->ipa_cli[1 + trx_nr] = NULL;
1162 }
1163
Pau Espin Pedrolb6e28bf2019-11-08 17:30:28 +01001164 rsl_link = ipa_client_conn_create2(tall_ipa_ctx,
Pau Espin Pedrolb5cfc6b2018-10-02 21:22:18 +02001165 e1inp_line_ipa_rsl_ts(line, trx_nr),
Andreas Eversbergf422a752014-01-21 14:54:41 +01001166 E1INP_SIGN_RSL+trx_nr,
Pau Espin Pedrolb6e28bf2019-11-08 17:30:28 +01001167 NULL, 0,
Harald Welte84f67b22013-06-30 13:13:59 +02001168 rem_addr, rem_port,
Harald Welte51de9ca2013-06-30 20:13:16 +02001169 ipaccess_bts_updown_cb,
Harald Weltea3e9dd52013-06-30 14:25:07 +02001170 ipaccess_bts_read_cb,
Harald Welte84f67b22013-06-30 13:13:59 +02001171 ipaccess_bts_write_cb,
Harald Welte10b41302013-06-30 14:05:49 +02001172 line);
Harald Welte84f67b22013-06-30 13:13:59 +02001173 if (rsl_link == NULL) {
1174 LOGP(DLINP, LOGL_ERROR, "cannot create RSL "
1175 "BTS link: %s\n", strerror(errno));
1176 return -ENOMEM;
1177 }
Harald Welte41547552021-04-28 18:23:21 +02001178 rsl_link->dscp = g_e1inp_ipaccess_pars.rsl.dscp;
1179 rsl_link->priority = g_e1inp_ipaccess_pars.rsl.priority;
Harald Welte84f67b22013-06-30 13:13:59 +02001180 if (ipa_client_conn_open(rsl_link) < 0) {
1181 LOGP(DLINP, LOGL_ERROR, "cannot open RSL BTS link: %s\n",
1182 strerror(errno));
1183 ipa_client_conn_close(rsl_link);
1184 ipa_client_conn_destroy(rsl_link);
1185 return -EIO;
1186 }
Eric Wildef1f3272019-07-10 18:10:31 +02001187 ipaccess_bts_keepalive_fsm_alloc(e1i_ts, rsl_link, "rsl_bts_to_bsc");
Pau Espin Pedrol92aee512021-10-11 12:14:36 +02001188 il->ipa_cli[1 + trx_nr] = rsl_link;
Harald Welte84f67b22013-06-30 13:13:59 +02001189 return 0;
1190}
1191
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +02001192void e1inp_ipaccess_init(void)
1193{
Pablo Neira Ayuso54b49792011-06-07 12:15:26 +02001194 tall_ipa_ctx = talloc_named_const(libosmo_abis_ctx, 1, "ipa");
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +02001195 e1inp_driver_register(&ipaccess_driver);
1196}
Neels Hofmeyr0db1d432016-02-22 13:29:09 +01001197
1198void e1inp_ipa_set_bind_addr(const char *ip_bind_addr)
1199{
1200 talloc_free((char*)ipaccess_driver.bind_addr);
1201 ipaccess_driver.bind_addr = NULL;
1202
1203 if (ip_bind_addr)
1204 ipaccess_driver.bind_addr = talloc_strdup(tall_ipa_ctx,
1205 ip_bind_addr);
1206}
1207
1208const char *e1inp_ipa_get_bind_addr(void)
1209{
1210 return ipaccess_driver.bind_addr?
1211 ipaccess_driver.bind_addr
1212 : "0.0.0.0";
1213}