blob: 5d17839eb8a9f48a778dddacd616b41dca0adb47 [file] [log] [blame]
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +02001/* OpenBSC Abis input driver for ip.access */
2
3/* (C) 2009 by Harald Welte <laforge@gnumonks.org>
4 * (C) 2010 by Holger Hans Peter Freyther
5 * (C) 2010 by On-Waves
6 *
7 * All Rights Reserved
8 *
Harald Welte323d39d2017-11-13 01:09:21 +09009 * SPDX-License-Identifier: AGPL-3.0+
10 *
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +020011 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU Affero General Public License as published by
13 * the Free Software Foundation; either version 3 of the License, or
14 * (at your option) any later version.
15 *
16 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU Affero General Public License for more details.
20 *
21 * You should have received a copy of the GNU Affero General Public License
22 * along with this program. If not, see <http://www.gnu.org/licenses/>.
23 *
24 */
25
26#include "internal.h"
27
28#include <stdio.h>
29#include <unistd.h>
30#include <stdlib.h>
Pablo Neira Ayusoeb434132011-07-07 19:19:46 +020031#include <stdbool.h>
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +020032#include <errno.h>
Daniel Willmann85980722014-01-09 14:30:55 +010033#include <netinet/tcp.h>
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +020034#include <string.h>
35#include <time.h>
Holger Hans Peter Freyther25474582017-01-23 19:49:07 +010036#include <fcntl.h>
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +020037#include <sys/socket.h>
38#include <sys/ioctl.h>
39#include <arpa/inet.h>
40
41#include <osmocom/core/select.h>
42#include <osmocom/gsm/tlv.h>
43#include <osmocom/core/msgb.h>
Harald Weltef5efba42014-08-18 17:30:36 +020044#include <osmocom/core/macaddr.h>
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +020045#include <osmocom/core/logging.h>
Harald Welte71d87b22011-07-18 14:49:56 +020046#include <osmocom/core/talloc.h>
Pablo Neira Ayuso177094b2011-06-07 12:21:51 +020047#include <osmocom/abis/e1_input.h>
48#include <osmocom/abis/ipaccess.h>
Pablo Neira Ayusof67471f2011-06-07 11:25:49 +020049#include <osmocom/core/socket.h>
Pablo Neira Ayuso96e81282011-06-09 15:06:11 +020050#include <osmocom/abis/ipa.h>
Pablo Neira Ayusoef132692013-07-08 01:17:27 +020051#include <osmocom/core/backtrace.h>
Harald Welteb65f58f2014-08-20 22:04:11 +020052#include <osmocom/gsm/ipa.h>
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +020053
Pablo Neira Ayuso54b49792011-06-07 12:15:26 +020054static void *tall_ipa_ctx;
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +020055
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +020056#define TS1_ALLOC_SIZE 900
57
Daniel Willmann85980722014-01-09 14:30:55 +010058#define DEFAULT_TCP_KEEPALIVE_IDLE_TIMEOUT 30
59#define DEFAULT_TCP_KEEPALIVE_INTERVAL 3
60#define DEFAULT_TCP_KEEPALIVE_RETRY_COUNT 10
61
Eric Wildef1f3272019-07-10 18:10:31 +020062static inline struct e1inp_ts *ipaccess_line_ts(struct osmo_fd *bfd, struct e1inp_line *line)
63{
64 if (bfd->priv_nr == E1INP_SIGN_OML)
65 return e1inp_line_ipa_oml_ts(line);
66 else
67 return e1inp_line_ipa_rsl_ts(line, bfd->priv_nr - E1INP_SIGN_RSL);
68}
69
70static inline void ipaccess_keepalive_fsm_cleanup(struct e1inp_ts *e1i_ts)
71{
72 struct osmo_fsm_inst *ka_fsm;
73
74 ka_fsm = e1i_ts->driver.ipaccess.ka_fsm;
75 if (ka_fsm) {
76 ipa_keepalive_fsm_stop(ka_fsm);
77 e1i_ts->driver.ipaccess.ka_fsm = NULL;
78 }
79}
80
Harald Welte10b41302013-06-30 14:05:49 +020081static int ipaccess_drop(struct osmo_fd *bfd, struct e1inp_line *line)
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +020082{
Pablo Neira Ayuso1e401942012-08-22 14:16:24 +020083 int ret = 1;
Eric Wildef1f3272019-07-10 18:10:31 +020084 struct e1inp_ts *e1i_ts = ipaccess_line_ts(bfd, line);
85
86 ipaccess_keepalive_fsm_cleanup(e1i_ts);
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +020087
Pablo Neira Ayuso466c5462011-07-07 19:17:20 +020088 /* Error case: we did not see any ID_RESP yet for this socket. */
89 if (bfd->fd != -1) {
Harald Weltecc2241b2011-07-19 16:06:06 +020090 LOGP(DLINP, LOGL_ERROR, "Forcing socket shutdown with "
Pablo Neira Ayuso466c5462011-07-07 19:17:20 +020091 "no signal link set\n");
Pablo Neira Ayuso9621b412011-07-07 16:19:21 +020092 osmo_fd_unregister(bfd);
93 close(bfd->fd);
94 bfd->fd = -1;
Pablo Neira Ayuso466c5462011-07-07 19:17:20 +020095 ret = -ENOENT;
Pablo Neira Ayuso9621b412011-07-07 16:19:21 +020096 }
Pablo Neira Ayuso6cc3f922012-08-22 13:57:58 +020097
Jacob Erlbeck98af3c32014-03-31 10:53:32 +020098 msgb_free(e1i_ts->pending_msg);
99 e1i_ts->pending_msg = NULL;
100
Pablo Neira Ayuso6cc3f922012-08-22 13:57:58 +0200101 /* e1inp_sign_link_destroy releases the socket descriptors for us. */
102 line->ops->sign_link_down(line);
103
Pablo Neira Ayuso466c5462011-07-07 19:17:20 +0200104 return ret;
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200105}
106
Eric Wildef1f3272019-07-10 18:10:31 +0200107static void ipa_bsc_keepalive_write_server_cb(struct osmo_fsm_inst *fi, void *conn, struct msgb *msg)
108{
109 struct osmo_fd *bfd = (struct osmo_fd *)conn;
110 write(bfd->fd, msg->data, msg->len);
111 msgb_free(msg);
112}
113
114static int ipa_bsc_keepalive_timeout_cb(struct osmo_fsm_inst *fi, void *data)
115{
116 struct osmo_fd *bfd = (struct osmo_fd *)data;
117
118 if (bfd->fd == -1)
119 return 1;
120
121 ipaccess_drop(bfd, (struct e1inp_line *)bfd->data);
122 return 1;
123}
124
125static void ipaccess_bsc_keepalive_fsm_alloc(struct e1inp_ts *e1i_ts, struct osmo_fd *bfd, const char *id)
126{
127 struct e1inp_line *line = e1i_ts->line;
128 struct osmo_fsm_inst *ka_fsm;
129
130 ipaccess_keepalive_fsm_cleanup(e1i_ts);
131 if (!line->ipa_kap)
132 return;
133
134 ka_fsm = ipa_generic_conn_alloc_keepalive_fsm(tall_ipa_ctx, bfd, line->ipa_kap, id);
135 e1i_ts->driver.ipaccess.ka_fsm = ka_fsm;
136 if (!ka_fsm)
137 return;
138
139 ipa_keepalive_fsm_set_timeout_cb(ka_fsm, ipa_bsc_keepalive_timeout_cb);
140 ipa_keepalive_fsm_set_send_cb(ka_fsm, ipa_bsc_keepalive_write_server_cb);
141 ipa_keepalive_fsm_start(ka_fsm);
142}
143
144static void ipa_bts_keepalive_write_client_cb(struct osmo_fsm_inst *fi, void *conn, struct msgb *msg) {
145 struct ipa_client_conn *link = (struct ipa_client_conn *)conn;
146 int ret = 0;
147
148 ret = ipa_send(link->ofd->fd, msg->data, msg->len);
149 if (ret != msg->len) {
150 LOGP(DLINP, LOGL_ERROR, "cannot send message. Reason: %s\n", strerror(errno));
151 }
152 msgb_free(msg);
153}
154
155static void update_fd_settings(struct e1inp_line *line, int fd);
156static void ipaccess_bts_updown_cb(struct ipa_client_conn *link, int up);
157
158static int ipa_bts_keepalive_timeout_cb(struct osmo_fsm_inst *fi, void *conn) {
159 ipaccess_bts_updown_cb(conn, false);
160 return 1;
161}
162
163static void ipaccess_bts_keepalive_fsm_alloc(struct e1inp_ts *e1i_ts, struct ipa_client_conn *client, const char *id)
164{
165 struct e1inp_line *line = e1i_ts->line;
166 struct osmo_fsm_inst *ka_fsm;
167
168 ipaccess_keepalive_fsm_cleanup(e1i_ts);
169 if (!line->ipa_kap)
170 return;
171
172 ka_fsm = ipa_client_conn_alloc_keepalive_fsm(client, line->ipa_kap, id);
173 e1i_ts->driver.ipaccess.ka_fsm = ka_fsm;
174 if (!ka_fsm)
175 return;
176
177 ipa_keepalive_fsm_set_timeout_cb(ka_fsm, ipa_bts_keepalive_timeout_cb);
178 ipa_keepalive_fsm_set_send_cb(ka_fsm, ipa_bts_keepalive_write_client_cb);
179}
180
Pau Espin Pedrol7edc25d2018-05-23 14:57:03 +0200181/* Returns -1 on error, and 0 or 1 on success. If -1 or 1 is returned, line has
182 * been released and should not be used anymore by the caller. */
Pablo Neira Ayuso5a4b7c52011-06-07 14:07:48 +0200183static int ipaccess_rcvmsg(struct e1inp_line *line, struct msgb *msg,
184 struct osmo_fd *bfd)
185{
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200186 struct tlv_parsed tlvp;
Pablo Neira Ayuso5a4b7c52011-06-07 14:07:48 +0200187 uint8_t msg_type = *(msg->l2h);
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200188 struct ipaccess_unit unit_data = {};
189 struct e1inp_sign_link *sign_link;
190 char *unitid;
191 int len, ret;
Eric Wildef1f3272019-07-10 18:10:31 +0200192 struct e1inp_ts *e1i_ts;
193 struct osmo_fsm_inst *ka_fsm;
194
195 /* peek the pong for our keepalive fsm */
196 e1i_ts = ipaccess_line_ts(bfd, line);
197 ka_fsm = e1i_ts->driver.ipaccess.ka_fsm;
198 if (ka_fsm && msg_type == IPAC_MSGT_PONG)
199 ipa_keepalive_fsm_pong_received(ka_fsm);
Pablo Neira Ayuso5a4b7c52011-06-07 14:07:48 +0200200
Pablo Neira Ayusoeb434132011-07-07 19:19:46 +0200201 /* Handle IPA PING, PONG and ID_ACK messages. */
Harald Welteb65f58f2014-08-20 22:04:11 +0200202 ret = ipa_ccm_rcvmsg_base(msg, bfd);
Pablo Neira Ayuso1e401942012-08-22 14:16:24 +0200203 switch(ret) {
204 case -1:
205 /* error in IPA control message handling */
206 goto err;
207 case 1:
208 /* this is an IPA control message, skip further processing */
Pablo Neira Ayusoeb434132011-07-07 19:19:46 +0200209 return 0;
Pablo Neira Ayuso1e401942012-08-22 14:16:24 +0200210 case 0:
211 /* this is not an IPA control message, continue */
212 break;
213 default:
214 LOGP(DLINP, LOGL_ERROR, "Unexpected return from "
Harald Welteb65f58f2014-08-20 22:04:11 +0200215 "ipa_ccm_rcvmsg_base "
Pablo Neira Ayuso1e401942012-08-22 14:16:24 +0200216 "(ret=%d)\n", ret);
217 goto err;
218 }
Pablo Neira Ayuso5a4b7c52011-06-07 14:07:48 +0200219
220 switch (msg_type) {
221 case IPAC_MSGT_ID_RESP:
Pau Espin Pedrol30e80d52020-07-14 13:23:05 +0200222 DEBUGP(DLMI, "ID_RESP ");
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200223 /* parse tags, search for Unit ID */
Harald Welte82eb55e2018-08-01 13:22:55 +0200224 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 +0200225 DEBUGPC(DLMI, "\n");
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200226 if (ret < 0) {
Harald Weltecc2241b2011-07-19 16:06:06 +0200227 LOGP(DLINP, LOGL_ERROR, "IPA response message "
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200228 "with malformed TLVs\n");
Pablo Neira Ayuso466c5462011-07-07 19:17:20 +0200229 goto err;
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200230 }
Pablo Neira Ayuso466c5462011-07-07 19:17:20 +0200231 if (!TLVP_PRESENT(&tlvp, IPAC_IDTAG_UNIT)) {
Harald Weltecc2241b2011-07-19 16:06:06 +0200232 LOGP(DLINP, LOGL_ERROR, "IPA response message "
Pablo Neira Ayuso466c5462011-07-07 19:17:20 +0200233 "without unit ID\n");
Pablo Neira Ayuso466c5462011-07-07 19:17:20 +0200234 goto err;
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200235
Pablo Neira Ayuso466c5462011-07-07 19:17:20 +0200236 }
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200237 len = TLVP_LEN(&tlvp, IPAC_IDTAG_UNIT);
Pablo Neira Ayuso466c5462011-07-07 19:17:20 +0200238 if (len < 1) {
Harald Weltecc2241b2011-07-19 16:06:06 +0200239 LOGP(DLINP, LOGL_ERROR, "IPA response message "
Pablo Neira Ayuso466c5462011-07-07 19:17:20 +0200240 "with too small unit ID\n");
Pablo Neira Ayuso466c5462011-07-07 19:17:20 +0200241 goto err;
242 }
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200243 unitid = (char *) TLVP_VAL(&tlvp, IPAC_IDTAG_UNIT);
244 unitid[len - 1] = '\0';
Vadim Yanitskiy1c94f6a2019-12-02 02:16:07 +0700245 ret = ipa_parse_unitid(unitid, &unit_data);
246 if (ret) {
247 LOGP(DLINP, LOGL_ERROR, "Failed to parse unit ID '%s'\n", unitid);
248 goto err;
249 }
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200250
Pablo Neira Ayusof163d232011-06-25 18:42:55 +0200251 if (!line->ops->sign_link_up) {
Harald Weltecc2241b2011-07-19 16:06:06 +0200252 LOGP(DLINP, LOGL_ERROR,
Pablo Neira Ayusocd8d2e52011-07-02 17:05:21 +0200253 "Unable to set signal link, closing socket.\n");
Pablo Neira Ayuso466c5462011-07-07 19:17:20 +0200254 goto err;
Pablo Neira Ayuso5a4b7c52011-06-07 14:07:48 +0200255 }
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200256 /* the BSC creates the new sign links at this stage. */
257 if (bfd->priv_nr == E1INP_SIGN_OML) {
258 sign_link =
259 line->ops->sign_link_up(&unit_data, line,
260 E1INP_SIGN_OML);
261 if (sign_link == NULL) {
Harald Weltecc2241b2011-07-19 16:06:06 +0200262 LOGP(DLINP, LOGL_ERROR,
Pablo Neira Ayusocd8d2e52011-07-02 17:05:21 +0200263 "Unable to set signal link, "
264 "closing socket.\n");
Pablo Neira Ayuso466c5462011-07-07 19:17:20 +0200265 goto err;
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200266 }
Eric Wildef1f3272019-07-10 18:10:31 +0200267
268 ipaccess_bsc_keepalive_fsm_alloc(e1i_ts, bfd, "oml_bsc_to_bts");
269
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200270 } else if (bfd->priv_nr == E1INP_SIGN_RSL) {
Pablo Neira Ayuso3832c4f2011-07-07 17:47:26 +0200271 struct e1inp_ts *ts;
Eric Wildef1f3272019-07-10 18:10:31 +0200272 struct osmo_fd *newbfd;
Pablo Neira Ayuso3832c4f2011-07-07 17:47:26 +0200273 struct e1inp_line *new_line;
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200274
275 sign_link =
276 line->ops->sign_link_up(&unit_data, line,
277 E1INP_SIGN_RSL);
278 if (sign_link == NULL) {
Harald Weltecc2241b2011-07-19 16:06:06 +0200279 LOGP(DLINP, LOGL_ERROR,
Pablo Neira Ayusocd8d2e52011-07-02 17:05:21 +0200280 "Unable to set signal link, "
281 "closing socket.\n");
Pablo Neira Ayuso466c5462011-07-07 19:17:20 +0200282 goto err;
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200283 }
Pablo Neira Ayusodb1c8a72011-07-08 15:12:03 +0200284 /* this is a bugtrap, the BSC should be using the
285 * virtual E1 line used by OML for this RSL link. */
286 if (sign_link->ts->line == line) {
Harald Weltecc2241b2011-07-19 16:06:06 +0200287 LOGP(DLINP, LOGL_ERROR,
Pablo Neira Ayusodb1c8a72011-07-08 15:12:03 +0200288 "Fix your BSC, you should use the "
289 "E1 line used by the OML link for "
290 "your RSL link.\n");
291 return 0;
292 }
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200293 /* Finally, we know which OML link is associated with
294 * this RSL link, attach it to this socket. */
Pablo Neira Ayuso3832c4f2011-07-07 17:47:26 +0200295 bfd->data = new_line = sign_link->ts->line;
Pau Espin Pedrol5196cd52020-07-14 17:52:09 +0200296 e1inp_line_get2(new_line, "ipa_bfd");
Pau Espin Pedrolb5cfc6b2018-10-02 21:22:18 +0200297 ts = e1inp_line_ipa_rsl_ts(new_line, unit_data.trx_id);
Pablo Neira Ayuso3832c4f2011-07-07 17:47:26 +0200298 newbfd = &ts->driver.ipaccess.fd;
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200299
300 /* get rid of our old temporary bfd */
Pau Espin Pedrol56ae85f2018-08-22 13:11:19 +0200301 /* preserve 'newbfd->when' flags potentially set by sign_link_up() */
Pau Espin Pedrol67902bb2018-08-23 14:35:08 +0200302 osmo_fd_setup(newbfd, bfd->fd, newbfd->when | bfd->when, bfd->cb,
Pau Espin Pedrol56ae85f2018-08-22 13:11:19 +0200303 bfd->data, E1INP_SIGN_RSL + unit_data.trx_id);
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200304 osmo_fd_unregister(bfd);
305 bfd->fd = -1;
Harald Welteae3a9932016-11-26 09:25:23 +0100306 ret = osmo_fd_register(newbfd);
307 if (ret < 0) {
308 LOGP(DLINP, LOGL_ERROR,
309 "could not register FD\n");
310 goto err;
311 }
Pablo Neira Ayuso3832c4f2011-07-07 17:47:26 +0200312 /* now we can release the dummy RSL line. */
Pau Espin Pedrol5196cd52020-07-14 17:52:09 +0200313 e1inp_line_put2(line, "ipa_bfd");
Eric Wildef1f3272019-07-10 18:10:31 +0200314
315 e1i_ts = ipaccess_line_ts(newbfd, new_line);
316 ipaccess_bsc_keepalive_fsm_alloc(e1i_ts, newbfd, "rsl_bsc_to_bts");
Pau Espin Pedrol7edc25d2018-05-23 14:57:03 +0200317 return 1;
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200318 }
Pablo Neira Ayuso5a4b7c52011-06-07 14:07:48 +0200319 break;
Pablo Neira Ayuso466c5462011-07-07 19:17:20 +0200320 default:
Harald Weltecc2241b2011-07-19 16:06:06 +0200321 LOGP(DLINP, LOGL_ERROR, "Unknown IPA message type\n");
Pablo Neira Ayuso466c5462011-07-07 19:17:20 +0200322 goto err;
Pablo Neira Ayuso5a4b7c52011-06-07 14:07:48 +0200323 }
324 return 0;
Pablo Neira Ayuso466c5462011-07-07 19:17:20 +0200325err:
326 osmo_fd_unregister(bfd);
Harald Welteb4a7db02019-07-21 11:51:56 +0200327 if (bfd->fd != -1) {
328 close(bfd->fd);
329 bfd->fd = -1;
330 }
Pau Espin Pedrol5196cd52020-07-14 17:52:09 +0200331 e1inp_line_put2(line, "ipa_bfd");
Pau Espin Pedrol7edc25d2018-05-23 14:57:03 +0200332 return -1;
Pablo Neira Ayuso5a4b7c52011-06-07 14:07:48 +0200333}
334
Pau Espin Pedrol7edc25d2018-05-23 14:57:03 +0200335/* Returns -EBADF if bfd cannot be used by the caller anymore after return. */
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200336static int handle_ts1_read(struct osmo_fd *bfd)
337{
338 struct e1inp_line *line = bfd->data;
339 unsigned int ts_nr = bfd->priv_nr;
Pau Espin Pedrolb5cfc6b2018-10-02 21:22:18 +0200340 struct e1inp_ts *e1i_ts;
Pablo Neira Ayuso5a4b7c52011-06-07 14:07:48 +0200341 struct e1inp_sign_link *link;
342 struct ipaccess_head *hh;
Jacob Erlbeck98af3c32014-03-31 10:53:32 +0200343 struct msgb *msg = NULL;
Maxc9fa25e2017-01-09 13:23:15 +0100344 int ret, rc;
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200345
Eric Wildef1f3272019-07-10 18:10:31 +0200346 e1i_ts = ipaccess_line_ts(bfd, line);
Jacob Erlbeck98af3c32014-03-31 10:53:32 +0200347 ret = ipa_msg_recv_buffered(bfd->fd, &msg, &e1i_ts->pending_msg);
Pablo Neira Ayuso1e401942012-08-22 14:16:24 +0200348 if (ret < 0) {
Jacob Erlbeck98af3c32014-03-31 10:53:32 +0200349 if (ret == -EAGAIN)
350 return 0;
Pablo Neira Ayuso1e401942012-08-22 14:16:24 +0200351 LOGP(DLINP, LOGL_NOTICE, "Sign link problems, "
Jacob Erlbeck98af3c32014-03-31 10:53:32 +0200352 "closing socket. Reason: %s\n", strerror(-ret));
Pablo Neira Ayuso1e401942012-08-22 14:16:24 +0200353 goto err;
354 } else if (ret == 0) {
355 LOGP(DLINP, LOGL_NOTICE, "Sign link vanished, dead socket\n");
356 goto err;
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200357 }
Harald Weltecc2241b2011-07-19 16:06:06 +0200358 DEBUGP(DLMI, "RX %u: %s\n", ts_nr, osmo_hexdump(msgb_l2(msg), msgb_l2len(msg)));
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200359
Pablo Neira Ayuso5a4b7c52011-06-07 14:07:48 +0200360 hh = (struct ipaccess_head *) msg->data;
361 if (hh->proto == IPAC_PROTO_IPACCESS) {
Pau Espin Pedrol7edc25d2018-05-23 14:57:03 +0200362 ret = ipaccess_rcvmsg(line, msg, bfd);
363 /* BIG FAT WARNING: bfd might no longer exist here (ret != 0),
364 * since ipaccess_rcvmsg() might have free'd it !!! */
Pablo Neira Ayuso5a4b7c52011-06-07 14:07:48 +0200365 msgb_free(msg);
Pau Espin Pedrol7edc25d2018-05-23 14:57:03 +0200366 return ret != 0 ? -EBADF : 0;
Holger Hans Peter Freyther63ddf462013-12-28 21:19:19 +0100367 } else if (e1i_ts->type == E1INP_TS_TYPE_NONE) {
368 /* this sign link is not know yet.. complain. */
369 LOGP(DLINP, LOGL_ERROR, "Timeslot is not configured.\n");
Holger Hans Peter Freyther63ddf462013-12-28 21:19:19 +0100370 goto err_msg;
Pablo Neira Ayuso5a4b7c52011-06-07 14:07:48 +0200371 }
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200372
Pablo Neira Ayuso5a4b7c52011-06-07 14:07:48 +0200373 link = e1inp_lookup_sign_link(e1i_ts, hh->proto, 0);
374 if (!link) {
Harald Weltecc2241b2011-07-19 16:06:06 +0200375 LOGP(DLINP, LOGL_ERROR, "no matching signalling link for "
Pablo Neira Ayuso5a4b7c52011-06-07 14:07:48 +0200376 "hh->proto=0x%02x\n", hh->proto);
Pablo Neira Ayuso1e401942012-08-22 14:16:24 +0200377 goto err_msg;
Pablo Neira Ayuso5a4b7c52011-06-07 14:07:48 +0200378 }
379 msg->dst = link;
380
381 /* XXX better use e1inp_ts_rx? */
Pablo Neira Ayusof163d232011-06-25 18:42:55 +0200382 if (!e1i_ts->line->ops->sign_link) {
Harald Weltecc2241b2011-07-19 16:06:06 +0200383 LOGP(DLINP, LOGL_ERROR, "Fix your application, "
Pablo Neira Ayuso5a4b7c52011-06-07 14:07:48 +0200384 "no action set for signalling messages.\n");
Pablo Neira Ayuso1e401942012-08-22 14:16:24 +0200385 goto err_msg;
Pablo Neira Ayuso5a4b7c52011-06-07 14:07:48 +0200386 }
Maxc9fa25e2017-01-09 13:23:15 +0100387 rc = e1i_ts->line->ops->sign_link(msg);
388 if (rc < 0) {
Pablo Neira Ayusoa49c24d2012-10-16 11:24:08 +0200389 /* Don't close the signalling link if the upper layers report
390 * an error, that's too strict. BTW, the signalling layer is
391 * resposible for releasing the message.
392 */
Harald Weltecc2241b2011-07-19 16:06:06 +0200393 LOGP(DLINP, LOGL_ERROR, "Bad signalling message,"
Maxc9fa25e2017-01-09 13:23:15 +0100394 " sign_link returned error: %s.\n", strerror(-rc));
Pablo Neira Ayuso466c5462011-07-07 19:17:20 +0200395 }
Pablo Neira Ayuso1e401942012-08-22 14:16:24 +0200396
Pau Espin Pedroled122f32018-08-28 18:25:02 +0200397 return rc;
Pablo Neira Ayuso1e401942012-08-22 14:16:24 +0200398err_msg:
399 msgb_free(msg);
Pablo Neira Ayuso466c5462011-07-07 19:17:20 +0200400err:
Harald Welte10b41302013-06-30 14:05:49 +0200401 ipaccess_drop(bfd, line);
Pau Espin Pedrol7edc25d2018-05-23 14:57:03 +0200402 return -EBADF;
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200403}
404
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200405static int ts_want_write(struct e1inp_ts *e1i_ts)
406{
407 e1i_ts->driver.ipaccess.fd.when |= BSC_FD_WRITE;
408
409 return 0;
410}
411
Pablo Neira Ayusoadd3ec82011-07-05 14:45:46 +0200412static void ipaccess_close(struct e1inp_sign_link *sign_link)
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200413{
Pablo Neira Ayusoadd3ec82011-07-05 14:45:46 +0200414 struct e1inp_ts *e1i_ts = sign_link->ts;
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200415 struct osmo_fd *bfd = &e1i_ts->driver.ipaccess.fd;
Eric Wildef1f3272019-07-10 18:10:31 +0200416 struct e1inp_line *line = e1i_ts->line;
417
418 /* line might not exist if != bsc||bts */
419 if (line) {
420 /* depending on caller the fsm might be dead */
421 struct osmo_fsm_inst* ka_fsm = ipaccess_line_ts(bfd, line)->driver.ipaccess.ka_fsm;
422 if (ka_fsm)
423 ipa_keepalive_fsm_stop(ka_fsm);
424
425 }
426
Holger Hans Peter Freyther55467f02011-12-28 19:47:07 +0100427 return e1inp_close_socket(e1i_ts, sign_link, bfd);
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200428}
429
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200430static void timeout_ts1_write(void *data)
431{
432 struct e1inp_ts *e1i_ts = (struct e1inp_ts *)data;
433
434 /* trigger write of ts1, due to tx delay timer */
435 ts_want_write(e1i_ts);
436}
437
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200438static int __handle_ts1_write(struct osmo_fd *bfd, struct e1inp_line *line)
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200439{
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200440 unsigned int ts_nr = bfd->priv_nr;
Pau Espin Pedrolb5cfc6b2018-10-02 21:22:18 +0200441 struct e1inp_ts *e1i_ts;
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200442 struct e1inp_sign_link *sign_link;
443 struct msgb *msg;
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200444 int ret;
445
Eric Wildef1f3272019-07-10 18:10:31 +0200446 e1i_ts = ipaccess_line_ts(bfd, line);
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200447 bfd->when &= ~BSC_FD_WRITE;
448
449 /* get the next msg for this timeslot */
450 msg = e1inp_tx_ts(e1i_ts, &sign_link);
451 if (!msg) {
452 /* no message after tx delay timer */
453 return 0;
454 }
455
456 switch (sign_link->type) {
457 case E1INP_SIGN_OML:
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200458 case E1INP_SIGN_RSL:
Harald Welte46fc7e22014-08-18 19:04:26 +0200459 case E1INP_SIGN_OSMO:
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200460 break;
461 default:
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200462 bfd->when |= BSC_FD_WRITE; /* come back for more msg */
Pablo Neira Ayuso1e401942012-08-22 14:16:24 +0200463 ret = -EINVAL;
464 goto out;
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200465 }
466
467 msg->l2h = msg->data;
Harald Welteb65f58f2014-08-20 22:04:11 +0200468 ipa_prepend_header(msg, sign_link->tei);
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200469
Harald Weltecc2241b2011-07-19 16:06:06 +0200470 DEBUGP(DLMI, "TX %u: %s\n", ts_nr, osmo_hexdump(msg->l2h, msgb_l2len(msg)));
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200471
472 ret = send(bfd->fd, msg->data, msg->len, 0);
Pablo Neira Ayuso1e401942012-08-22 14:16:24 +0200473 if (ret != msg->len) {
474 LOGP(DLINP, LOGL_ERROR, "failed to send A-bis IPA signalling "
475 "message. Reason: %s\n", strerror(errno));
476 goto err;
477 }
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200478
479 /* set tx delay timer for next event */
Pablo Neira Ayusob26f2fd2017-06-07 18:32:13 +0200480 osmo_timer_setup(&e1i_ts->sign.tx_timer, timeout_ts1_write, e1i_ts);
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200481
482 /* Reducing this might break the nanoBTS 900 init. */
483 osmo_timer_schedule(&e1i_ts->sign.tx_timer, 0, e1i_ts->sign.delay);
484
Pablo Neira Ayuso1e401942012-08-22 14:16:24 +0200485out:
486 msgb_free(msg);
487 return ret;
488err:
Harald Welte10b41302013-06-30 14:05:49 +0200489 ipaccess_drop(bfd, line);
Pablo Neira Ayuso1e401942012-08-22 14:16:24 +0200490 msgb_free(msg);
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200491 return ret;
492}
493
Pablo Neira Ayuso88136fc2011-07-08 16:21:55 +0200494static int handle_ts1_write(struct osmo_fd *bfd)
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200495{
496 struct e1inp_line *line = bfd->data;
497
498 return __handle_ts1_write(bfd, line);
499}
500
Pablo Neira Ayusof0995672011-09-08 12:58:38 +0200501static int ipaccess_bts_write_cb(struct ipa_client_conn *link)
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200502{
503 struct e1inp_line *line = link->line;
504
505 return __handle_ts1_write(link->ofd, line);
506}
507
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200508/* callback from select.c in case one of the fd's can be read/written */
Pablo Neira Ayuso495ddb62011-07-08 21:04:11 +0200509int ipaccess_fd_cb(struct osmo_fd *bfd, unsigned int what)
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200510{
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200511 int rc = 0;
512
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200513 if (what & BSC_FD_READ)
514 rc = handle_ts1_read(bfd);
Pau Espin Pedrol7edc25d2018-05-23 14:57:03 +0200515 if (rc != -EBADF && (what & BSC_FD_WRITE))
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200516 rc = handle_ts1_write(bfd);
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200517
518 return rc;
519}
520
Pablo Neira Ayuso4e862cb2011-08-19 18:43:38 +0200521static int ipaccess_line_update(struct e1inp_line *line);
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200522
523struct e1inp_driver ipaccess_driver = {
524 .name = "ipa",
525 .want_write = ts_want_write,
526 .line_update = ipaccess_line_update,
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200527 .close = ipaccess_close,
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200528 .default_delay = 0,
Jacob Erlbeck8fe15712014-01-09 14:30:58 +0100529 .has_keepalive = 1,
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200530};
531
Jacob Erlbecka4ec51e2014-01-09 14:30:56 +0100532static void update_fd_settings(struct e1inp_line *line, int fd)
533{
534 int ret;
535 int val;
536
Jacob Erlbeck8fe15712014-01-09 14:30:58 +0100537 if (line->keepalive_num_probes) {
Jacob Erlbecka4ec51e2014-01-09 14:30:56 +0100538 /* Enable TCP keepalive to find out if the connection is gone */
539 val = 1;
540 ret = setsockopt(fd, SOL_SOCKET, SO_KEEPALIVE, &val, sizeof(val));
541 if (ret < 0)
542 LOGP(DLINP, LOGL_NOTICE, "Failed to set keepalive: %s\n",
543 strerror(errno));
544 else
545 LOGP(DLINP, LOGL_NOTICE, "Keepalive is set: %i\n", ret);
546
547#if defined(TCP_KEEPIDLE) && defined(TCP_KEEPINTVL) && defined(TCP_KEEPCNT)
548 /* The following options are not portable! */
Jacob Erlbeck8fe15712014-01-09 14:30:58 +0100549 val = line->keepalive_idle_timeout > 0 ?
550 line->keepalive_idle_timeout :
551 DEFAULT_TCP_KEEPALIVE_IDLE_TIMEOUT;
Jacob Erlbecka4ec51e2014-01-09 14:30:56 +0100552 ret = setsockopt(fd, IPPROTO_TCP, TCP_KEEPIDLE,
553 &val, sizeof(val));
554 if (ret < 0)
555 LOGP(DLINP, LOGL_NOTICE,
556 "Failed to set keepalive idle time: %s\n",
557 strerror(errno));
Jacob Erlbeck8fe15712014-01-09 14:30:58 +0100558 val = line->keepalive_probe_interval > -1 ?
559 line->keepalive_probe_interval :
560 DEFAULT_TCP_KEEPALIVE_INTERVAL;
Jacob Erlbecka4ec51e2014-01-09 14:30:56 +0100561 ret = setsockopt(fd, IPPROTO_TCP, TCP_KEEPINTVL,
562 &val, sizeof(val));
563 if (ret < 0)
564 LOGP(DLINP, LOGL_NOTICE,
565 "Failed to set keepalive interval: %s\n",
566 strerror(errno));
Jacob Erlbeck8fe15712014-01-09 14:30:58 +0100567 val = line->keepalive_num_probes > 0 ?
568 line->keepalive_num_probes :
569 DEFAULT_TCP_KEEPALIVE_RETRY_COUNT;
Jacob Erlbecka4ec51e2014-01-09 14:30:56 +0100570 ret = setsockopt(fd, IPPROTO_TCP, TCP_KEEPCNT,
571 &val, sizeof(val));
572 if (ret < 0)
573 LOGP(DLINP, LOGL_NOTICE,
574 "Failed to set keepalive count: %s\n",
575 strerror(errno));
Eric Wild6eb186c2019-06-21 15:26:25 +0200576#if defined(TCP_USER_TIMEOUT)
577 val = 1000 * line->keepalive_num_probes *
578 line->keepalive_probe_interval +
579 line->keepalive_idle_timeout;
580 ret = setsockopt(fd, IPPROTO_TCP, TCP_USER_TIMEOUT,
581 &val, sizeof(val));
582 if (ret < 0)
583 LOGP(DLINP, LOGL_NOTICE,
584 "Failed to set user timoeut: %s\n",
585 strerror(errno));
586#endif
Jacob Erlbecka4ec51e2014-01-09 14:30:56 +0100587#endif
Holger Hans Peter Freytherf465a4c2014-02-03 09:34:02 +0100588 }
Oliver Smith62725d02020-04-17 10:57:46 +0200589
590 val = 1;
591 ret = setsockopt(fd, IPPROTO_TCP, TCP_NODELAY, &val, sizeof(val));
592 if (ret < 0)
593 LOGP(DLINP, LOGL_ERROR, "Failed to set TCP_NODELAY: %s\n", strerror(errno));
Jacob Erlbecka4ec51e2014-01-09 14:30:56 +0100594}
595
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200596/* callback of the OML listening filedescriptor */
Pablo Neira Ayuso986191f2011-06-21 19:56:26 +0200597static int ipaccess_bsc_oml_cb(struct ipa_server_link *link, int fd)
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200598{
599 int ret;
Jacob Erlbecka4ec51e2014-01-09 14:30:56 +0100600 int i;
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200601 struct e1inp_line *line;
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200602 struct e1inp_ts *e1i_ts;
603 struct osmo_fd *bfd;
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200604
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200605 /* clone virtual E1 line for this new OML link. */
Pau Espin Pedrol5196cd52020-07-14 17:52:09 +0200606 line = e1inp_line_clone(tall_ipa_ctx, link->line, "ipa_bfd");
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200607 if (line == NULL) {
Harald Weltecc2241b2011-07-19 16:06:06 +0200608 LOGP(DLINP, LOGL_ERROR, "could not clone E1 line\n");
Pablo Neira Ayuso1e401942012-08-22 14:16:24 +0200609 return -ENOMEM;
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200610 }
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200611
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200612 /* create virrtual E1 timeslots for signalling */
Pau Espin Pedrolb5cfc6b2018-10-02 21:22:18 +0200613 e1inp_ts_config_sign(e1inp_line_ipa_oml_ts(line), line);
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200614
615 /* initialize the fds */
616 for (i = 0; i < ARRAY_SIZE(line->ts); ++i)
617 line->ts[i].driver.ipaccess.fd.fd = -1;
618
Pau Espin Pedrolb5cfc6b2018-10-02 21:22:18 +0200619 e1i_ts = e1inp_line_ipa_oml_ts(line);
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200620
Pablo Neira Ayuso93c62012011-06-26 19:12:47 +0200621 bfd = &e1i_ts->driver.ipaccess.fd;
Pau Espin Pedrol56ae85f2018-08-22 13:11:19 +0200622 osmo_fd_setup(bfd, fd, BSC_FD_READ, ipaccess_fd_cb, line, E1INP_SIGN_OML);
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200623 ret = osmo_fd_register(bfd);
624 if (ret < 0) {
Harald Weltecc2241b2011-07-19 16:06:06 +0200625 LOGP(DLINP, LOGL_ERROR, "could not register FD\n");
Pablo Neira Ayuso1e401942012-08-22 14:16:24 +0200626 goto err_line;
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200627 }
628
Jacob Erlbecka4ec51e2014-01-09 14:30:56 +0100629 update_fd_settings(line, bfd->fd);
Daniel Willmann85980722014-01-09 14:30:55 +0100630
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200631 /* Request ID. FIXME: request LOCATION, HW/SW VErsion, Unit Name, Serno */
Harald Welteb65f58f2014-08-20 22:04:11 +0200632 ret = ipa_ccm_send_id_req(bfd->fd);
Pablo Neira Ayuso1e401942012-08-22 14:16:24 +0200633 if (ret < 0) {
634 LOGP(DLINP, LOGL_ERROR, "could not send ID REQ. Reason: %s\n",
635 strerror(errno));
636 goto err_socket;
637 }
638 return ret;
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200639
Pablo Neira Ayuso1e401942012-08-22 14:16:24 +0200640err_socket:
641 osmo_fd_unregister(bfd);
642err_line:
643 close(bfd->fd);
644 bfd->fd = -1;
Pau Espin Pedrol5196cd52020-07-14 17:52:09 +0200645 e1inp_line_put2(line, "ipa_bfd");
Pablo Neira Ayuso1e401942012-08-22 14:16:24 +0200646 return ret;
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200647}
648
Pablo Neira Ayuso986191f2011-06-21 19:56:26 +0200649static int ipaccess_bsc_rsl_cb(struct ipa_server_link *link, int fd)
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200650{
Pablo Neira Ayuso3832c4f2011-07-07 17:47:26 +0200651 struct e1inp_line *line;
652 struct e1inp_ts *e1i_ts;
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200653 struct osmo_fd *bfd;
Pablo Neira Ayuso3832c4f2011-07-07 17:47:26 +0200654 int i, ret;
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200655
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200656 /* We don't know yet which OML link to associate it with. Thus, we
Pablo Neira Ayuso3832c4f2011-07-07 17:47:26 +0200657 * allocate a temporary E1 line until we have received ID. */
Pau Espin Pedrol5196cd52020-07-14 17:52:09 +0200658 line = e1inp_line_clone(tall_ipa_ctx, link->line, "ipa_bfd");
Pablo Neira Ayuso3832c4f2011-07-07 17:47:26 +0200659 if (line == NULL) {
Harald Weltecc2241b2011-07-19 16:06:06 +0200660 LOGP(DLINP, LOGL_ERROR, "could not clone E1 line\n");
Pablo Neira Ayuso1e401942012-08-22 14:16:24 +0200661 return -ENOMEM;
Pablo Neira Ayuso3832c4f2011-07-07 17:47:26 +0200662 }
663 /* initialize the fds */
664 for (i = 0; i < ARRAY_SIZE(line->ts); ++i)
665 line->ts[i].driver.ipaccess.fd.fd = -1;
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200666
Pablo Neira Ayuso3832c4f2011-07-07 17:47:26 +0200667 /* we need this to initialize this in case to avoid crashes in case
668 * that the socket is closed before we've seen an ID_RESP. */
Pau Espin Pedrolb5cfc6b2018-10-02 21:22:18 +0200669 e1inp_ts_config_sign(e1inp_line_ipa_oml_ts(line), line);
Pablo Neira Ayuso3832c4f2011-07-07 17:47:26 +0200670
Pau Espin Pedrolb5cfc6b2018-10-02 21:22:18 +0200671 e1i_ts = e1inp_line_ipa_rsl_ts(line, 0);
Pablo Neira Ayuso3832c4f2011-07-07 17:47:26 +0200672
673 bfd = &e1i_ts->driver.ipaccess.fd;
Pau Espin Pedrol56ae85f2018-08-22 13:11:19 +0200674 osmo_fd_setup(bfd, fd, BSC_FD_READ, ipaccess_fd_cb, line, E1INP_SIGN_RSL);
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200675 ret = osmo_fd_register(bfd);
676 if (ret < 0) {
Harald Weltecc2241b2011-07-19 16:06:06 +0200677 LOGP(DLINP, LOGL_ERROR, "could not register FD\n");
Pablo Neira Ayuso1e401942012-08-22 14:16:24 +0200678 goto err_line;
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200679 }
680 /* 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 }
Jacob Erlbecka4ec51e2014-01-09 14:30:56 +0100687 update_fd_settings(line, bfd->fd);
Pablo Neira Ayuso1e401942012-08-22 14:16:24 +0200688 return ret;
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200689
Pablo Neira Ayuso1e401942012-08-22 14:16:24 +0200690err_socket:
691 osmo_fd_unregister(bfd);
692err_line:
693 close(bfd->fd);
694 bfd->fd = -1;
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
Harald Weltee416e2e2017-05-26 13:11:59 +0200699#define IPA_STRING_MAX 64
700
701static struct msgb *
Max71393522018-01-08 15:42:00 +0100702ipa_bts_id_resp(const struct ipaccess_unit *dev, uint8_t *data, int len, int trx_nr)
Harald Weltee416e2e2017-05-26 13:11:59 +0200703{
704 struct msgb *nmsg;
705 char str[IPA_STRING_MAX];
706 uint8_t *tag;
707
708 memset(str, 0, sizeof(str));
709
710 nmsg = ipa_msg_alloc(0);
711 if (!nmsg)
712 return NULL;
713
714 *msgb_put(nmsg, 1) = IPAC_MSGT_ID_RESP;
715 while (len) {
716 if (len < 2) {
717 LOGP(DLINP, LOGL_NOTICE,
718 "Short read of ipaccess tag\n");
719 msgb_free(nmsg);
720 return NULL;
721 }
722 switch (data[1]) {
723 case IPAC_IDTAG_UNIT:
724 snprintf(str, sizeof(str), "%u/%u/%u",
725 dev->site_id, dev->bts_id, trx_nr);
726 break;
727 case IPAC_IDTAG_MACADDR:
728 snprintf(str, sizeof(str),
729 "%02x:%02x:%02x:%02x:%02x:%02x",
730 dev->mac_addr[0], dev->mac_addr[1],
731 dev->mac_addr[2], dev->mac_addr[3],
732 dev->mac_addr[4], dev->mac_addr[5]);
733 break;
734 case IPAC_IDTAG_LOCATION1:
735 if (dev->location1)
Stefan Sperling961776a2018-12-06 13:09:48 +0100736 osmo_strlcpy(str, dev->location1, sizeof(str));
Harald Weltee416e2e2017-05-26 13:11:59 +0200737 break;
738 case IPAC_IDTAG_LOCATION2:
739 if (dev->location2)
Stefan Sperling961776a2018-12-06 13:09:48 +0100740 osmo_strlcpy(str, dev->location2, sizeof(str));
Harald Weltee416e2e2017-05-26 13:11:59 +0200741 break;
742 case IPAC_IDTAG_EQUIPVERS:
743 if (dev->equipvers)
Stefan Sperling961776a2018-12-06 13:09:48 +0100744 osmo_strlcpy(str, dev->equipvers, sizeof(str));
Harald Weltee416e2e2017-05-26 13:11:59 +0200745 break;
746 case IPAC_IDTAG_SWVERSION:
747 if (dev->swversion)
Neels Hofmeyr4c57eef2018-07-26 17:28:24 +0200748 osmo_strlcpy(str, dev->swversion, sizeof(str));
Harald Weltee416e2e2017-05-26 13:11:59 +0200749 break;
750 case IPAC_IDTAG_UNITNAME:
751 snprintf(str, sizeof(str),
752 "%s-%02x-%02x-%02x-%02x-%02x-%02x",
753 dev->unit_name,
754 dev->mac_addr[0], dev->mac_addr[1],
755 dev->mac_addr[2], dev->mac_addr[3],
756 dev->mac_addr[4], dev->mac_addr[5]);
757 break;
758 case IPAC_IDTAG_SERNR:
759 if (dev->serno)
Stefan Sperling961776a2018-12-06 13:09:48 +0100760 osmo_strlcpy(str, dev->serno, sizeof(str));
Harald Weltee416e2e2017-05-26 13:11:59 +0200761 break;
762 default:
763 LOGP(DLINP, LOGL_NOTICE,
764 "Unknown ipaccess tag 0x%02x\n", *data);
765 msgb_free(nmsg);
766 return NULL;
767 }
Harald Weltee416e2e2017-05-26 13:11:59 +0200768
769 LOGP(DLINP, LOGL_INFO, " tag %d: %s\n", data[1], str);
770 tag = msgb_put(nmsg, 3 + strlen(str) + 1);
771 tag[0] = 0x00;
772 tag[1] = 1 + strlen(str) + 1;
773 tag[2] = data[1];
774 memcpy(tag + 3, str, strlen(str) + 1);
775 data += 2;
776 len -= 2;
777 }
778 ipa_msg_push_header(nmsg, IPAC_PROTO_IPACCESS);
779 return nmsg;
780}
781
Pablo Neira Ayusodfafe682011-07-02 14:32:32 +0200782static struct msgb *ipa_bts_id_ack(void)
783{
784 struct msgb *nmsg2;
785
Pablo Neira Ayuso88136fc2011-07-08 16:21:55 +0200786 nmsg2 = ipa_msg_alloc(0);
Pablo Neira Ayusodfafe682011-07-02 14:32:32 +0200787 if (!nmsg2)
788 return NULL;
789
790 *msgb_put(nmsg2, 1) = IPAC_MSGT_ID_ACK;
Pablo Neira Ayuso88136fc2011-07-08 16:21:55 +0200791 ipa_msg_push_header(nmsg2, IPAC_PROTO_IPACCESS);
Pablo Neira Ayusodfafe682011-07-02 14:32:32 +0200792
793 return nmsg2;
794}
795
Harald Welte51de9ca2013-06-30 20:13:16 +0200796static void ipaccess_bts_updown_cb(struct ipa_client_conn *link, int up)
797{
798 struct e1inp_line *line = link->line;
799
Eric Wildef1f3272019-07-10 18:10:31 +0200800 if (up) {
801 struct osmo_fsm_inst *ka_fsm = ipaccess_line_ts(link->ofd, line)->driver.ipaccess.ka_fsm;
802
803 update_fd_settings(line, link->ofd->fd);
804 if (ka_fsm && line->ipa_kap)
805 ipa_keepalive_fsm_start(ka_fsm);
806 return;
807 }
Harald Welte51de9ca2013-06-30 20:13:16 +0200808
809 if (line->ops->sign_link_down)
810 line->ops->sign_link_down(line);
811}
812
Harald Welte783715b2014-08-17 18:24:51 +0200813/* handle incoming message to BTS, check if it is an IPA CCM, and if yes,
814 * handle it accordingly (PING/PONG/ID_REQ/ID_RESP/ID_ACK) */
815int ipaccess_bts_handle_ccm(struct ipa_client_conn *link,
816 struct ipaccess_unit *dev, struct msgb *msg)
Pablo Neira Ayuso591ddad2011-06-21 18:16:42 +0200817{
818 struct ipaccess_head *hh = (struct ipaccess_head *) msg->data;
Pablo Neira Ayuso1e401942012-08-22 14:16:24 +0200819 struct msgb *rmsg;
820 int ret = 0;
Eric Wildef1f3272019-07-10 18:10:31 +0200821 /* line might not exist if != bsc||bts */
822 struct e1inp_line *line = link->line;
Pablo Neira Ayuso591ddad2011-06-21 18:16:42 +0200823
824 /* special handling for IPA CCM. */
825 if (hh->proto == IPAC_PROTO_IPACCESS) {
826 uint8_t msg_type = *(msg->l2h);
Eric Wildef1f3272019-07-10 18:10:31 +0200827 struct osmo_fsm_inst* ka_fsm = NULL;
828
829 /* peek the pong for our keepalive fsm */
830 if (line && msg_type == IPAC_MSGT_PONG) {
831 ka_fsm = ipaccess_line_ts(link->ofd, line)->driver.ipaccess.ka_fsm;
832 ipa_keepalive_fsm_pong_received(ka_fsm);
833 }
Pablo Neira Ayuso591ddad2011-06-21 18:16:42 +0200834
835 /* ping, pong and acknowledgment cases. */
Harald Welteb65f58f2014-08-20 22:04:11 +0200836 ret = ipa_ccm_rcvmsg_bts_base(msg, link->ofd);
Pablo Neira Ayuso1e401942012-08-22 14:16:24 +0200837 if (ret < 0)
838 goto err;
Pablo Neira Ayuso591ddad2011-06-21 18:16:42 +0200839
840 /* this is a request for identification from the BSC. */
841 if (msg_type == IPAC_MSGT_ID_GET) {
Pablo Neira Ayusodfafe682011-07-02 14:32:32 +0200842 uint8_t *data = msgb_l2(msg);
843 int len = msgb_l2len(msg);
Andreas Eversbergf422a752014-01-21 14:54:41 +0100844 int trx_nr = 0;
845
846 if (link->ofd->priv_nr >= E1INP_SIGN_RSL)
847 trx_nr = link->ofd->priv_nr - E1INP_SIGN_RSL;
Pablo Neira Ayusodfafe682011-07-02 14:32:32 +0200848
Vadim Yanitskiy69ae2382019-12-02 02:42:43 +0700849 LOGP(DLINP, LOGL_NOTICE, "received ID_GET for unit ID %u/%u/%u\n",
Pau Espin Pedroldd95eb62018-10-02 20:05:28 +0200850 dev->site_id, dev->bts_id, trx_nr);
Harald Weltee416e2e2017-05-26 13:11:59 +0200851 rmsg = ipa_bts_id_resp(dev, data + 1, len - 1, trx_nr);
Harald Welteb65f58f2014-08-20 22:04:11 +0200852 ret = ipa_send(link->ofd->fd, rmsg->data, rmsg->len);
Pablo Neira Ayuso1e401942012-08-22 14:16:24 +0200853 if (ret != rmsg->len) {
854 LOGP(DLINP, LOGL_ERROR, "cannot send ID_RESP "
855 "message. Reason: %s\n", strerror(errno));
856 goto err_rmsg;
857 }
Pablo Neira Ayusodfafe682011-07-02 14:32:32 +0200858 msgb_free(rmsg);
859
860 /* send ID_ACK. */
861 rmsg = ipa_bts_id_ack();
Harald Welteb65f58f2014-08-20 22:04:11 +0200862 ret = ipa_send(link->ofd->fd, rmsg->data, rmsg->len);
Pablo Neira Ayuso1e401942012-08-22 14:16:24 +0200863 if (ret != rmsg->len) {
864 LOGP(DLINP, LOGL_ERROR, "cannot send ID_ACK "
865 "message. Reason: %s\n", strerror(errno));
866 goto err_rmsg;
867 }
Pablo Neira Ayusodfafe682011-07-02 14:32:32 +0200868 msgb_free(rmsg);
Harald Welte783715b2014-08-17 18:24:51 +0200869 }
870 return 1;
871 }
Harald Welte6eddd472013-06-30 20:18:53 +0200872
Harald Welte783715b2014-08-17 18:24:51 +0200873 return 0;
874
875err_rmsg:
876 msgb_free(rmsg);
877err:
878 ipa_client_conn_close(link);
879 return -1;
880}
881
882static int ipaccess_bts_read_cb(struct ipa_client_conn *link, struct msgb *msg)
883{
884 struct ipaccess_head *hh = (struct ipaccess_head *) msg->data;
885 struct e1inp_ts *e1i_ts = NULL;
886 struct e1inp_sign_link *sign_link;
Neels Hofmeyrfe673112018-08-24 17:43:45 +0200887 uint8_t msg_type = *(msg->l2h);
Harald Welte783715b2014-08-17 18:24:51 +0200888 int ret = 0;
889
890 /* special handling for IPA CCM. */
891 if (hh->proto == IPAC_PROTO_IPACCESS) {
Harald Welte783715b2014-08-17 18:24:51 +0200892 /* this is a request for identification from the BSC. */
893 if (msg_type == IPAC_MSGT_ID_GET) {
894 if (!link->line->ops->sign_link_up) {
895 LOGP(DLINP, LOGL_ERROR,
896 "Unable to set signal link, "
897 "closing socket.\n");
Harald Welte783715b2014-08-17 18:24:51 +0200898 goto err;
899 }
900 }
901 }
902
903 /* core CCM handling */
904 ret = ipaccess_bts_handle_ccm(link, link->line->ops->cfg.ipa.dev, msg);
905 if (ret < 0)
906 goto err;
907
908 if (ret == 1 && hh->proto == IPAC_PROTO_IPACCESS) {
Harald Welte783715b2014-08-17 18:24:51 +0200909 if (msg_type == IPAC_MSGT_ID_GET) {
Harald Welte6eddd472013-06-30 20:18:53 +0200910 sign_link = link->line->ops->sign_link_up(msg,
911 link->line,
912 link->ofd->priv_nr);
913 if (sign_link == NULL) {
914 LOGP(DLINP, LOGL_ERROR,
915 "Unable to set signal link, "
916 "closing socket.\n");
Harald Welte6eddd472013-06-30 20:18:53 +0200917 goto err;
918 }
Pablo Neira Ayuso591ddad2011-06-21 18:16:42 +0200919 }
Pablo Neira Ayuso84e5cb92012-08-23 23:41:54 +0200920 msgb_free(msg);
Pablo Neira Ayuso1e401942012-08-22 14:16:24 +0200921 return ret;
Pablo Neira Ayuso591ddad2011-06-21 18:16:42 +0200922 } else if (link->port == IPA_TCP_PORT_OML)
Pau Espin Pedrolb5cfc6b2018-10-02 21:22:18 +0200923 e1i_ts = e1inp_line_ipa_oml_ts(link->line);
Pablo Neira Ayuso591ddad2011-06-21 18:16:42 +0200924 else if (link->port == IPA_TCP_PORT_RSL)
Pau Espin Pedrolb5cfc6b2018-10-02 21:22:18 +0200925 e1i_ts = e1inp_line_ipa_rsl_ts(link->line, link->ofd->priv_nr - E1INP_SIGN_RSL);
Pablo Neira Ayuso591ddad2011-06-21 18:16:42 +0200926
Pablo Neira Ayusob9487012013-07-05 14:38:43 +0200927 OSMO_ASSERT(e1i_ts != NULL);
928
Neels Hofmeyrfe673112018-08-24 17:43:45 +0200929 if (e1i_ts->type == E1INP_TS_TYPE_NONE) {
930 LOGP(DLINP, LOGL_ERROR, "Signalling link not initialized. Discarding."
931 " port=%u msg_type=%u\n", link->port, msg_type);
Neels Hofmeyrfe673112018-08-24 17:43:45 +0200932 goto err;
933 }
Pau Espin Pedrol7ad2b152018-08-28 17:37:59 +0200934
Pablo Neira Ayuso591ddad2011-06-21 18:16:42 +0200935 /* look up for some existing signaling link. */
936 sign_link = e1inp_lookup_sign_link(e1i_ts, hh->proto, 0);
937 if (sign_link == NULL) {
Harald Weltecc2241b2011-07-19 16:06:06 +0200938 LOGP(DLINP, LOGL_ERROR, "no matching signalling link for "
Pablo Neira Ayuso591ddad2011-06-21 18:16:42 +0200939 "hh->proto=0x%02x\n", hh->proto);
Pablo Neira Ayuso1e401942012-08-22 14:16:24 +0200940 goto err;
Pablo Neira Ayuso591ddad2011-06-21 18:16:42 +0200941 }
942 msg->dst = sign_link;
943
944 /* XXX better use e1inp_ts_rx? */
Pablo Neira Ayusof163d232011-06-25 18:42:55 +0200945 if (!link->line->ops->sign_link) {
Harald Weltecc2241b2011-07-19 16:06:06 +0200946 LOGP(DLINP, LOGL_ERROR, "Fix your application, "
Pablo Neira Ayuso591ddad2011-06-21 18:16:42 +0200947 "no action set for signalling messages.\n");
Pablo Neira Ayuso1e401942012-08-22 14:16:24 +0200948 goto err;
Pablo Neira Ayuso591ddad2011-06-21 18:16:42 +0200949 }
Pau Espin Pedroled122f32018-08-28 18:25:02 +0200950 return link->line->ops->sign_link(msg);
Pablo Neira Ayuso1e401942012-08-22 14:16:24 +0200951
Pablo Neira Ayuso1e401942012-08-22 14:16:24 +0200952err:
Harald Welte783715b2014-08-17 18:24:51 +0200953 ipa_client_conn_close(link);
Pablo Neira Ayuso1e401942012-08-22 14:16:24 +0200954 msgb_free(msg);
Pau Espin Pedrol7ad2b152018-08-28 17:37:59 +0200955 return -EBADF;
Pablo Neira Ayuso591ddad2011-06-21 18:16:42 +0200956}
957
Pablo Neira Ayusod6216402011-08-31 16:47:44 +0200958struct ipaccess_line {
Oliver Smith65ae42c2020-01-22 11:24:52 +0100959 bool line_already_initialized;
Pablo Neira Ayusod6216402011-08-31 16:47:44 +0200960};
961
Pablo Neira Ayuso4e862cb2011-08-19 18:43:38 +0200962static int ipaccess_line_update(struct e1inp_line *line)
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200963{
964 int ret = -ENOENT;
Pablo Neira Ayusod6216402011-08-31 16:47:44 +0200965 struct ipaccess_line *il;
966
967 if (!line->driver_data)
968 line->driver_data = talloc_zero(line, struct ipaccess_line);
969
970 if (!line->driver_data) {
971 LOGP(DLINP, LOGL_ERROR, "ipaccess: OOM in line update\n");
972 return -ENOMEM;
973 }
974 il = line->driver_data;
975
976 /* We only initialize this line once. */
977 if (il->line_already_initialized)
978 return 0;
979
Oliver Smith65ae42c2020-01-22 11:24:52 +0100980 il->line_already_initialized = true;
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200981
Pablo Neira Ayuso4e862cb2011-08-19 18:43:38 +0200982 switch(line->ops->cfg.ipa.role) {
Pablo Neira Ayuso986191f2011-06-21 19:56:26 +0200983 case E1INP_LINE_R_BSC: {
984 struct ipa_server_link *oml_link, *rsl_link;
Max4c4a1c22016-12-30 15:10:47 +0100985 const char *ipa = e1inp_ipa_get_bind_addr();
Pablo Neira Ayuso986191f2011-06-21 19:56:26 +0200986
Max4c4a1c22016-12-30 15:10:47 +0100987 LOGP(DLINP, LOGL_NOTICE, "enabling ipaccess BSC mode on %s "
988 "with OML %u and RSL %u TCP ports\n", ipa,
989 IPA_TCP_PORT_OML, IPA_TCP_PORT_RSL);
Pablo Neira Ayuso96e81282011-06-09 15:06:11 +0200990
Max4c4a1c22016-12-30 15:10:47 +0100991 oml_link = ipa_server_link_create(tall_ipa_ctx, line, ipa,
Neels Hofmeyr0db1d432016-02-22 13:29:09 +0100992 IPA_TCP_PORT_OML,
Pablo Neira Ayusoe009f4a2011-06-23 13:36:34 +0200993 ipaccess_bsc_oml_cb, NULL);
Pablo Neira Ayuso986191f2011-06-21 19:56:26 +0200994 if (oml_link == NULL) {
Harald Weltecc2241b2011-07-19 16:06:06 +0200995 LOGP(DLINP, LOGL_ERROR, "cannot create OML "
Pablo Neira Ayuso986191f2011-06-21 19:56:26 +0200996 "BSC link: %s\n", strerror(errno));
997 return -ENOMEM;
Pablo Neira Ayusof67471f2011-06-07 11:25:49 +0200998 }
Pablo Neira Ayuso986191f2011-06-21 19:56:26 +0200999 if (ipa_server_link_open(oml_link) < 0) {
Harald Weltecc2241b2011-07-19 16:06:06 +02001000 LOGP(DLINP, LOGL_ERROR, "cannot open OML BSC link: %s\n",
Pablo Neira Ayuso986191f2011-06-21 19:56:26 +02001001 strerror(errno));
Pablo Neira Ayuso986191f2011-06-21 19:56:26 +02001002 ipa_server_link_destroy(oml_link);
1003 return -EIO;
Pablo Neira Ayusof67471f2011-06-07 11:25:49 +02001004 }
Max4c4a1c22016-12-30 15:10:47 +01001005 rsl_link = ipa_server_link_create(tall_ipa_ctx, line, ipa,
Neels Hofmeyr0db1d432016-02-22 13:29:09 +01001006 IPA_TCP_PORT_RSL,
Pablo Neira Ayusoe009f4a2011-06-23 13:36:34 +02001007 ipaccess_bsc_rsl_cb, NULL);
Pablo Neira Ayuso986191f2011-06-21 19:56:26 +02001008 if (rsl_link == NULL) {
Harald Weltecc2241b2011-07-19 16:06:06 +02001009 LOGP(DLINP, LOGL_ERROR, "cannot create RSL "
Pablo Neira Ayuso986191f2011-06-21 19:56:26 +02001010 "BSC link: %s\n", strerror(errno));
1011 return -ENOMEM;
1012 }
1013 if (ipa_server_link_open(rsl_link) < 0) {
Harald Weltecc2241b2011-07-19 16:06:06 +02001014 LOGP(DLINP, LOGL_ERROR, "cannot open RSL BSC link: %s\n",
Pablo Neira Ayuso986191f2011-06-21 19:56:26 +02001015 strerror(errno));
Pablo Neira Ayuso986191f2011-06-21 19:56:26 +02001016 ipa_server_link_destroy(rsl_link);
1017 return -EIO;
1018 }
1019 ret = 0;
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +02001020 break;
Pablo Neira Ayuso986191f2011-06-21 19:56:26 +02001021 }
Pablo Neira Ayuso96e81282011-06-09 15:06:11 +02001022 case E1INP_LINE_R_BTS: {
Harald Welte84f67b22013-06-30 13:13:59 +02001023 struct ipa_client_conn *link;
Eric Wildef1f3272019-07-10 18:10:31 +02001024 struct e1inp_ts *e1i_ts;
Pablo Neira Ayuso96e81282011-06-09 15:06:11 +02001025
Max4c4a1c22016-12-30 15:10:47 +01001026 LOGP(DLINP, LOGL_NOTICE, "enabling ipaccess BTS mode, "
1027 "OML connecting to %s:%u\n", line->ops->cfg.ipa.addr,
1028 IPA_TCP_PORT_OML);
Pablo Neira Ayuso96e81282011-06-09 15:06:11 +02001029
Pau Espin Pedrolb6e28bf2019-11-08 17:30:28 +01001030 link = ipa_client_conn_create2(tall_ipa_ctx,
Pau Espin Pedrolb5cfc6b2018-10-02 21:22:18 +02001031 e1inp_line_ipa_oml_ts(line),
Pablo Neira Ayuso00af7722011-09-08 12:47:06 +02001032 E1INP_SIGN_OML,
Pau Espin Pedrolb6e28bf2019-11-08 17:30:28 +01001033 NULL, 0,
Pablo Neira Ayuso4e862cb2011-08-19 18:43:38 +02001034 line->ops->cfg.ipa.addr,
1035 IPA_TCP_PORT_OML,
Harald Welte51de9ca2013-06-30 20:13:16 +02001036 ipaccess_bts_updown_cb,
Harald Weltea3e9dd52013-06-30 14:25:07 +02001037 ipaccess_bts_read_cb,
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +02001038 ipaccess_bts_write_cb,
Harald Welte10b41302013-06-30 14:05:49 +02001039 line);
Pablo Neira Ayuso96e81282011-06-09 15:06:11 +02001040 if (link == NULL) {
Harald Weltecc2241b2011-07-19 16:06:06 +02001041 LOGP(DLINP, LOGL_ERROR, "cannot create OML "
Pablo Neira Ayuso29465d32011-06-21 14:21:33 +02001042 "BTS link: %s\n", strerror(errno));
Pablo Neira Ayuso96e81282011-06-09 15:06:11 +02001043 return -ENOMEM;
1044 }
Pablo Neira Ayusof0995672011-09-08 12:58:38 +02001045 if (ipa_client_conn_open(link) < 0) {
Harald Weltecc2241b2011-07-19 16:06:06 +02001046 LOGP(DLINP, LOGL_ERROR, "cannot open OML BTS link: %s\n",
Pablo Neira Ayuso29465d32011-06-21 14:21:33 +02001047 strerror(errno));
Pablo Neira Ayusof0995672011-09-08 12:58:38 +02001048 ipa_client_conn_close(link);
1049 ipa_client_conn_destroy(link);
Pablo Neira Ayuso96e81282011-06-09 15:06:11 +02001050 return -EIO;
1051 }
Eric Wildef1f3272019-07-10 18:10:31 +02001052
1053 e1i_ts = e1inp_line_ipa_oml_ts(line);
1054 ipaccess_bts_keepalive_fsm_alloc(e1i_ts, link, "oml_bts_to_bsc");
Pablo Neira Ayuso96e81282011-06-09 15:06:11 +02001055 ret = 0;
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +02001056 break;
Pablo Neira Ayuso96e81282011-06-09 15:06:11 +02001057 }
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +02001058 default:
1059 break;
1060 }
1061 return ret;
1062}
1063
Andreas Eversbergf422a752014-01-21 14:54:41 +01001064
1065/* backwards compatibility */
Harald Welte84f67b22013-06-30 13:13:59 +02001066int e1inp_ipa_bts_rsl_connect(struct e1inp_line *line,
1067 const char *rem_addr, uint16_t rem_port)
1068{
Andreas Eversbergf422a752014-01-21 14:54:41 +01001069 return e1inp_ipa_bts_rsl_connect_n(line, rem_addr, rem_port, 0);
1070}
1071
1072int e1inp_ipa_bts_rsl_connect_n(struct e1inp_line *line,
1073 const char *rem_addr, uint16_t rem_port,
1074 uint8_t trx_nr)
1075{
Harald Welte84f67b22013-06-30 13:13:59 +02001076 struct ipa_client_conn *rsl_link;
Eric Wildef1f3272019-07-10 18:10:31 +02001077 struct e1inp_ts *e1i_ts = e1inp_line_ipa_rsl_ts(line, trx_nr);
Harald Welte84f67b22013-06-30 13:13:59 +02001078
Andreas Eversbergf422a752014-01-21 14:54:41 +01001079 if (E1INP_SIGN_RSL+trx_nr-1 >= NUM_E1_TS) {
1080 LOGP(DLINP, LOGL_ERROR, "cannot create RSL BTS link: "
1081 "trx_nr (%d) out of range\n", trx_nr);
1082 return -EINVAL;
1083 }
Andreas Eversbergf422a752014-01-21 14:54:41 +01001084
Pau Espin Pedrolb6e28bf2019-11-08 17:30:28 +01001085 rsl_link = ipa_client_conn_create2(tall_ipa_ctx,
Pau Espin Pedrolb5cfc6b2018-10-02 21:22:18 +02001086 e1inp_line_ipa_rsl_ts(line, trx_nr),
Andreas Eversbergf422a752014-01-21 14:54:41 +01001087 E1INP_SIGN_RSL+trx_nr,
Pau Espin Pedrolb6e28bf2019-11-08 17:30:28 +01001088 NULL, 0,
Harald Welte84f67b22013-06-30 13:13:59 +02001089 rem_addr, rem_port,
Harald Welte51de9ca2013-06-30 20:13:16 +02001090 ipaccess_bts_updown_cb,
Harald Weltea3e9dd52013-06-30 14:25:07 +02001091 ipaccess_bts_read_cb,
Harald Welte84f67b22013-06-30 13:13:59 +02001092 ipaccess_bts_write_cb,
Harald Welte10b41302013-06-30 14:05:49 +02001093 line);
Harald Welte84f67b22013-06-30 13:13:59 +02001094 if (rsl_link == NULL) {
1095 LOGP(DLINP, LOGL_ERROR, "cannot create RSL "
1096 "BTS link: %s\n", strerror(errno));
1097 return -ENOMEM;
1098 }
1099 if (ipa_client_conn_open(rsl_link) < 0) {
1100 LOGP(DLINP, LOGL_ERROR, "cannot open RSL BTS link: %s\n",
1101 strerror(errno));
1102 ipa_client_conn_close(rsl_link);
1103 ipa_client_conn_destroy(rsl_link);
1104 return -EIO;
1105 }
Eric Wildef1f3272019-07-10 18:10:31 +02001106
1107 ipaccess_bts_keepalive_fsm_alloc(e1i_ts, rsl_link, "rsl_bts_to_bsc");
Harald Welte84f67b22013-06-30 13:13:59 +02001108 return 0;
1109}
1110
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +02001111void e1inp_ipaccess_init(void)
1112{
Pablo Neira Ayuso54b49792011-06-07 12:15:26 +02001113 tall_ipa_ctx = talloc_named_const(libosmo_abis_ctx, 1, "ipa");
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +02001114 e1inp_driver_register(&ipaccess_driver);
1115}
Neels Hofmeyr0db1d432016-02-22 13:29:09 +01001116
1117void e1inp_ipa_set_bind_addr(const char *ip_bind_addr)
1118{
1119 talloc_free((char*)ipaccess_driver.bind_addr);
1120 ipaccess_driver.bind_addr = NULL;
1121
1122 if (ip_bind_addr)
1123 ipaccess_driver.bind_addr = talloc_strdup(tall_ipa_ctx,
1124 ip_bind_addr);
1125}
1126
1127const char *e1inp_ipa_get_bind_addr(void)
1128{
1129 return ipaccess_driver.bind_addr?
1130 ipaccess_driver.bind_addr
1131 : "0.0.0.0";
1132}