blob: e1936af57f6197795e62ad6d1b663885fd2ade72 [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:
Harald Weltecc2241b2011-07-19 16:06:06 +0200222 DEBUGP(DLMI, "ID_RESP\n");
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);
Harald Weltecc2241b2011-07-19 16:06:06 +0200225 DEBUGP(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;
296 e1inp_line_get(new_line);
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. */
313 e1inp_line_put(line);
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 }
Pablo Neira Ayuso3832c4f2011-07-07 17:47:26 +0200331 e1inp_line_put(line);
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:
Eric Wildef1f3272019-07-10 18:10:31 +0200489 ipaccess_keepalive_fsm_cleanup(e1i_ts);
Harald Welte10b41302013-06-30 14:05:49 +0200490 ipaccess_drop(bfd, line);
Pablo Neira Ayuso1e401942012-08-22 14:16:24 +0200491 msgb_free(msg);
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200492 return ret;
493}
494
Pablo Neira Ayuso88136fc2011-07-08 16:21:55 +0200495static int handle_ts1_write(struct osmo_fd *bfd)
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200496{
497 struct e1inp_line *line = bfd->data;
498
499 return __handle_ts1_write(bfd, line);
500}
501
Pablo Neira Ayusof0995672011-09-08 12:58:38 +0200502static int ipaccess_bts_write_cb(struct ipa_client_conn *link)
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200503{
504 struct e1inp_line *line = link->line;
505
506 return __handle_ts1_write(link->ofd, line);
507}
508
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200509/* callback from select.c in case one of the fd's can be read/written */
Pablo Neira Ayuso495ddb62011-07-08 21:04:11 +0200510int ipaccess_fd_cb(struct osmo_fd *bfd, unsigned int what)
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200511{
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200512 int rc = 0;
513
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200514 if (what & BSC_FD_READ)
515 rc = handle_ts1_read(bfd);
Pau Espin Pedrol7edc25d2018-05-23 14:57:03 +0200516 if (rc != -EBADF && (what & BSC_FD_WRITE))
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200517 rc = handle_ts1_write(bfd);
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200518
519 return rc;
520}
521
Pablo Neira Ayuso4e862cb2011-08-19 18:43:38 +0200522static int ipaccess_line_update(struct e1inp_line *line);
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200523
524struct e1inp_driver ipaccess_driver = {
525 .name = "ipa",
526 .want_write = ts_want_write,
527 .line_update = ipaccess_line_update,
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200528 .close = ipaccess_close,
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200529 .default_delay = 0,
Jacob Erlbeck8fe15712014-01-09 14:30:58 +0100530 .has_keepalive = 1,
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200531};
532
Jacob Erlbecka4ec51e2014-01-09 14:30:56 +0100533static void update_fd_settings(struct e1inp_line *line, int fd)
534{
535 int ret;
536 int val;
537
Jacob Erlbeck8fe15712014-01-09 14:30:58 +0100538 if (line->keepalive_num_probes) {
Jacob Erlbecka4ec51e2014-01-09 14:30:56 +0100539 /* Enable TCP keepalive to find out if the connection is gone */
540 val = 1;
541 ret = setsockopt(fd, SOL_SOCKET, SO_KEEPALIVE, &val, sizeof(val));
542 if (ret < 0)
543 LOGP(DLINP, LOGL_NOTICE, "Failed to set keepalive: %s\n",
544 strerror(errno));
545 else
546 LOGP(DLINP, LOGL_NOTICE, "Keepalive is set: %i\n", ret);
547
548#if defined(TCP_KEEPIDLE) && defined(TCP_KEEPINTVL) && defined(TCP_KEEPCNT)
549 /* The following options are not portable! */
Jacob Erlbeck8fe15712014-01-09 14:30:58 +0100550 val = line->keepalive_idle_timeout > 0 ?
551 line->keepalive_idle_timeout :
552 DEFAULT_TCP_KEEPALIVE_IDLE_TIMEOUT;
Jacob Erlbecka4ec51e2014-01-09 14:30:56 +0100553 ret = setsockopt(fd, IPPROTO_TCP, TCP_KEEPIDLE,
554 &val, sizeof(val));
555 if (ret < 0)
556 LOGP(DLINP, LOGL_NOTICE,
557 "Failed to set keepalive idle time: %s\n",
558 strerror(errno));
Jacob Erlbeck8fe15712014-01-09 14:30:58 +0100559 val = line->keepalive_probe_interval > -1 ?
560 line->keepalive_probe_interval :
561 DEFAULT_TCP_KEEPALIVE_INTERVAL;
Jacob Erlbecka4ec51e2014-01-09 14:30:56 +0100562 ret = setsockopt(fd, IPPROTO_TCP, TCP_KEEPINTVL,
563 &val, sizeof(val));
564 if (ret < 0)
565 LOGP(DLINP, LOGL_NOTICE,
566 "Failed to set keepalive interval: %s\n",
567 strerror(errno));
Jacob Erlbeck8fe15712014-01-09 14:30:58 +0100568 val = line->keepalive_num_probes > 0 ?
569 line->keepalive_num_probes :
570 DEFAULT_TCP_KEEPALIVE_RETRY_COUNT;
Jacob Erlbecka4ec51e2014-01-09 14:30:56 +0100571 ret = setsockopt(fd, IPPROTO_TCP, TCP_KEEPCNT,
572 &val, sizeof(val));
573 if (ret < 0)
574 LOGP(DLINP, LOGL_NOTICE,
575 "Failed to set keepalive count: %s\n",
576 strerror(errno));
Eric Wild6eb186c2019-06-21 15:26:25 +0200577#if defined(TCP_USER_TIMEOUT)
578 val = 1000 * line->keepalive_num_probes *
579 line->keepalive_probe_interval +
580 line->keepalive_idle_timeout;
581 ret = setsockopt(fd, IPPROTO_TCP, TCP_USER_TIMEOUT,
582 &val, sizeof(val));
583 if (ret < 0)
584 LOGP(DLINP, LOGL_NOTICE,
585 "Failed to set user timoeut: %s\n",
586 strerror(errno));
587#endif
Jacob Erlbecka4ec51e2014-01-09 14:30:56 +0100588#endif
Holger Hans Peter Freytherf465a4c2014-02-03 09:34:02 +0100589 }
Jacob Erlbecka4ec51e2014-01-09 14:30:56 +0100590}
591
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200592/* callback of the OML listening filedescriptor */
Pablo Neira Ayuso986191f2011-06-21 19:56:26 +0200593static int ipaccess_bsc_oml_cb(struct ipa_server_link *link, int fd)
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200594{
595 int ret;
Jacob Erlbecka4ec51e2014-01-09 14:30:56 +0100596 int i;
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200597 struct e1inp_line *line;
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200598 struct e1inp_ts *e1i_ts;
599 struct osmo_fd *bfd;
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200600
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200601 /* clone virtual E1 line for this new OML link. */
Pablo Neira Ayuso3832c4f2011-07-07 17:47:26 +0200602 line = e1inp_line_clone(tall_ipa_ctx, link->line);
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200603 if (line == NULL) {
Harald Weltecc2241b2011-07-19 16:06:06 +0200604 LOGP(DLINP, LOGL_ERROR, "could not clone E1 line\n");
Pablo Neira Ayuso1e401942012-08-22 14:16:24 +0200605 return -ENOMEM;
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200606 }
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200607
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200608 /* create virrtual E1 timeslots for signalling */
Pau Espin Pedrolb5cfc6b2018-10-02 21:22:18 +0200609 e1inp_ts_config_sign(e1inp_line_ipa_oml_ts(line), line);
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200610
611 /* initialize the fds */
612 for (i = 0; i < ARRAY_SIZE(line->ts); ++i)
613 line->ts[i].driver.ipaccess.fd.fd = -1;
614
Pau Espin Pedrolb5cfc6b2018-10-02 21:22:18 +0200615 e1i_ts = e1inp_line_ipa_oml_ts(line);
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200616
Pablo Neira Ayuso93c62012011-06-26 19:12:47 +0200617 bfd = &e1i_ts->driver.ipaccess.fd;
Pau Espin Pedrol56ae85f2018-08-22 13:11:19 +0200618 osmo_fd_setup(bfd, fd, BSC_FD_READ, ipaccess_fd_cb, line, E1INP_SIGN_OML);
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200619 ret = osmo_fd_register(bfd);
620 if (ret < 0) {
Harald Weltecc2241b2011-07-19 16:06:06 +0200621 LOGP(DLINP, LOGL_ERROR, "could not register FD\n");
Pablo Neira Ayuso1e401942012-08-22 14:16:24 +0200622 goto err_line;
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200623 }
624
Jacob Erlbecka4ec51e2014-01-09 14:30:56 +0100625 update_fd_settings(line, bfd->fd);
Daniel Willmann85980722014-01-09 14:30:55 +0100626
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200627 /* Request ID. FIXME: request LOCATION, HW/SW VErsion, Unit Name, Serno */
Harald Welteb65f58f2014-08-20 22:04:11 +0200628 ret = ipa_ccm_send_id_req(bfd->fd);
Pablo Neira Ayuso1e401942012-08-22 14:16:24 +0200629 if (ret < 0) {
630 LOGP(DLINP, LOGL_ERROR, "could not send ID REQ. Reason: %s\n",
631 strerror(errno));
632 goto err_socket;
633 }
634 return ret;
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200635
Pablo Neira Ayuso1e401942012-08-22 14:16:24 +0200636err_socket:
637 osmo_fd_unregister(bfd);
638err_line:
639 close(bfd->fd);
640 bfd->fd = -1;
641 e1inp_line_put(line);
642 return ret;
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200643}
644
Pablo Neira Ayuso986191f2011-06-21 19:56:26 +0200645static int ipaccess_bsc_rsl_cb(struct ipa_server_link *link, int fd)
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200646{
Pablo Neira Ayuso3832c4f2011-07-07 17:47:26 +0200647 struct e1inp_line *line;
648 struct e1inp_ts *e1i_ts;
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200649 struct osmo_fd *bfd;
Pablo Neira Ayuso3832c4f2011-07-07 17:47:26 +0200650 int i, ret;
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200651
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +0200652 /* We don't know yet which OML link to associate it with. Thus, we
Pablo Neira Ayuso3832c4f2011-07-07 17:47:26 +0200653 * allocate a temporary E1 line until we have received ID. */
654 line = e1inp_line_clone(tall_ipa_ctx, link->line);
655 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 Ayuso3832c4f2011-07-07 17:47:26 +0200658 }
659 /* initialize the fds */
660 for (i = 0; i < ARRAY_SIZE(line->ts); ++i)
661 line->ts[i].driver.ipaccess.fd.fd = -1;
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200662
Pablo Neira Ayuso3832c4f2011-07-07 17:47:26 +0200663 /* we need this to initialize this in case to avoid crashes in case
664 * that the socket is closed before we've seen an ID_RESP. */
Pau Espin Pedrolb5cfc6b2018-10-02 21:22:18 +0200665 e1inp_ts_config_sign(e1inp_line_ipa_oml_ts(line), line);
Pablo Neira Ayuso3832c4f2011-07-07 17:47:26 +0200666
Pau Espin Pedrolb5cfc6b2018-10-02 21:22:18 +0200667 e1i_ts = e1inp_line_ipa_rsl_ts(line, 0);
Pablo Neira Ayuso3832c4f2011-07-07 17:47:26 +0200668
669 bfd = &e1i_ts->driver.ipaccess.fd;
Pau Espin Pedrol56ae85f2018-08-22 13:11:19 +0200670 osmo_fd_setup(bfd, fd, BSC_FD_READ, ipaccess_fd_cb, line, E1INP_SIGN_RSL);
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 }
676 /* Request ID. FIXME: request LOCATION, HW/SW VErsion, Unit Name, Serno */
Harald Welteb65f58f2014-08-20 22:04:11 +0200677 ret = ipa_ccm_send_id_req(bfd->fd);
Pablo Neira Ayuso1e401942012-08-22 14:16:24 +0200678 if (ret < 0) {
679 LOGP(DLINP, LOGL_ERROR, "could not send ID REQ. Reason: %s\n",
680 strerror(errno));
681 goto err_socket;
682 }
Jacob Erlbecka4ec51e2014-01-09 14:30:56 +0100683 update_fd_settings(line, bfd->fd);
Pablo Neira Ayuso1e401942012-08-22 14:16:24 +0200684 return ret;
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200685
Pablo Neira Ayuso1e401942012-08-22 14:16:24 +0200686err_socket:
687 osmo_fd_unregister(bfd);
688err_line:
689 close(bfd->fd);
690 bfd->fd = -1;
691 e1inp_line_put(line);
692 return ret;
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200693}
694
Harald Weltee416e2e2017-05-26 13:11:59 +0200695#define IPA_STRING_MAX 64
696
697static struct msgb *
Max71393522018-01-08 15:42:00 +0100698ipa_bts_id_resp(const struct ipaccess_unit *dev, uint8_t *data, int len, int trx_nr)
Harald Weltee416e2e2017-05-26 13:11:59 +0200699{
700 struct msgb *nmsg;
701 char str[IPA_STRING_MAX];
702 uint8_t *tag;
703
704 memset(str, 0, sizeof(str));
705
706 nmsg = ipa_msg_alloc(0);
707 if (!nmsg)
708 return NULL;
709
710 *msgb_put(nmsg, 1) = IPAC_MSGT_ID_RESP;
711 while (len) {
712 if (len < 2) {
713 LOGP(DLINP, LOGL_NOTICE,
714 "Short read of ipaccess tag\n");
715 msgb_free(nmsg);
716 return NULL;
717 }
718 switch (data[1]) {
719 case IPAC_IDTAG_UNIT:
720 snprintf(str, sizeof(str), "%u/%u/%u",
721 dev->site_id, dev->bts_id, trx_nr);
722 break;
723 case IPAC_IDTAG_MACADDR:
724 snprintf(str, sizeof(str),
725 "%02x:%02x:%02x:%02x:%02x:%02x",
726 dev->mac_addr[0], dev->mac_addr[1],
727 dev->mac_addr[2], dev->mac_addr[3],
728 dev->mac_addr[4], dev->mac_addr[5]);
729 break;
730 case IPAC_IDTAG_LOCATION1:
731 if (dev->location1)
Stefan Sperling961776a2018-12-06 13:09:48 +0100732 osmo_strlcpy(str, dev->location1, sizeof(str));
Harald Weltee416e2e2017-05-26 13:11:59 +0200733 break;
734 case IPAC_IDTAG_LOCATION2:
735 if (dev->location2)
Stefan Sperling961776a2018-12-06 13:09:48 +0100736 osmo_strlcpy(str, dev->location2, sizeof(str));
Harald Weltee416e2e2017-05-26 13:11:59 +0200737 break;
738 case IPAC_IDTAG_EQUIPVERS:
739 if (dev->equipvers)
Stefan Sperling961776a2018-12-06 13:09:48 +0100740 osmo_strlcpy(str, dev->equipvers, sizeof(str));
Harald Weltee416e2e2017-05-26 13:11:59 +0200741 break;
742 case IPAC_IDTAG_SWVERSION:
743 if (dev->swversion)
Neels Hofmeyr4c57eef2018-07-26 17:28:24 +0200744 osmo_strlcpy(str, dev->swversion, sizeof(str));
Harald Weltee416e2e2017-05-26 13:11:59 +0200745 break;
746 case IPAC_IDTAG_UNITNAME:
747 snprintf(str, sizeof(str),
748 "%s-%02x-%02x-%02x-%02x-%02x-%02x",
749 dev->unit_name,
750 dev->mac_addr[0], dev->mac_addr[1],
751 dev->mac_addr[2], dev->mac_addr[3],
752 dev->mac_addr[4], dev->mac_addr[5]);
753 break;
754 case IPAC_IDTAG_SERNR:
755 if (dev->serno)
Stefan Sperling961776a2018-12-06 13:09:48 +0100756 osmo_strlcpy(str, dev->serno, sizeof(str));
Harald Weltee416e2e2017-05-26 13:11:59 +0200757 break;
758 default:
759 LOGP(DLINP, LOGL_NOTICE,
760 "Unknown ipaccess tag 0x%02x\n", *data);
761 msgb_free(nmsg);
762 return NULL;
763 }
Harald Weltee416e2e2017-05-26 13:11:59 +0200764
765 LOGP(DLINP, LOGL_INFO, " tag %d: %s\n", data[1], str);
766 tag = msgb_put(nmsg, 3 + strlen(str) + 1);
767 tag[0] = 0x00;
768 tag[1] = 1 + strlen(str) + 1;
769 tag[2] = data[1];
770 memcpy(tag + 3, str, strlen(str) + 1);
771 data += 2;
772 len -= 2;
773 }
774 ipa_msg_push_header(nmsg, IPAC_PROTO_IPACCESS);
775 return nmsg;
776}
777
Pablo Neira Ayusodfafe682011-07-02 14:32:32 +0200778static struct msgb *ipa_bts_id_ack(void)
779{
780 struct msgb *nmsg2;
781
Pablo Neira Ayuso88136fc2011-07-08 16:21:55 +0200782 nmsg2 = ipa_msg_alloc(0);
Pablo Neira Ayusodfafe682011-07-02 14:32:32 +0200783 if (!nmsg2)
784 return NULL;
785
786 *msgb_put(nmsg2, 1) = IPAC_MSGT_ID_ACK;
Pablo Neira Ayuso88136fc2011-07-08 16:21:55 +0200787 ipa_msg_push_header(nmsg2, IPAC_PROTO_IPACCESS);
Pablo Neira Ayusodfafe682011-07-02 14:32:32 +0200788
789 return nmsg2;
790}
791
Harald Welte51de9ca2013-06-30 20:13:16 +0200792static void ipaccess_bts_updown_cb(struct ipa_client_conn *link, int up)
793{
794 struct e1inp_line *line = link->line;
795
Eric Wildef1f3272019-07-10 18:10:31 +0200796 if (up) {
797 struct osmo_fsm_inst *ka_fsm = ipaccess_line_ts(link->ofd, line)->driver.ipaccess.ka_fsm;
798
799 update_fd_settings(line, link->ofd->fd);
800 if (ka_fsm && line->ipa_kap)
801 ipa_keepalive_fsm_start(ka_fsm);
802 return;
803 }
Harald Welte51de9ca2013-06-30 20:13:16 +0200804
805 if (line->ops->sign_link_down)
806 line->ops->sign_link_down(line);
807}
808
Harald Welte783715b2014-08-17 18:24:51 +0200809/* handle incoming message to BTS, check if it is an IPA CCM, and if yes,
810 * handle it accordingly (PING/PONG/ID_REQ/ID_RESP/ID_ACK) */
811int ipaccess_bts_handle_ccm(struct ipa_client_conn *link,
812 struct ipaccess_unit *dev, struct msgb *msg)
Pablo Neira Ayuso591ddad2011-06-21 18:16:42 +0200813{
814 struct ipaccess_head *hh = (struct ipaccess_head *) msg->data;
Pablo Neira Ayuso1e401942012-08-22 14:16:24 +0200815 struct msgb *rmsg;
816 int ret = 0;
Eric Wildef1f3272019-07-10 18:10:31 +0200817 /* line might not exist if != bsc||bts */
818 struct e1inp_line *line = link->line;
Pablo Neira Ayuso591ddad2011-06-21 18:16:42 +0200819
820 /* special handling for IPA CCM. */
821 if (hh->proto == IPAC_PROTO_IPACCESS) {
822 uint8_t msg_type = *(msg->l2h);
Eric Wildef1f3272019-07-10 18:10:31 +0200823 struct osmo_fsm_inst* ka_fsm = NULL;
824
825 /* peek the pong for our keepalive fsm */
826 if (line && msg_type == IPAC_MSGT_PONG) {
827 ka_fsm = ipaccess_line_ts(link->ofd, line)->driver.ipaccess.ka_fsm;
828 ipa_keepalive_fsm_pong_received(ka_fsm);
829 }
Pablo Neira Ayuso591ddad2011-06-21 18:16:42 +0200830
831 /* ping, pong and acknowledgment cases. */
Harald Welteb65f58f2014-08-20 22:04:11 +0200832 ret = ipa_ccm_rcvmsg_bts_base(msg, link->ofd);
Pablo Neira Ayuso1e401942012-08-22 14:16:24 +0200833 if (ret < 0)
834 goto err;
Pablo Neira Ayuso591ddad2011-06-21 18:16:42 +0200835
836 /* this is a request for identification from the BSC. */
837 if (msg_type == IPAC_MSGT_ID_GET) {
Pablo Neira Ayusodfafe682011-07-02 14:32:32 +0200838 uint8_t *data = msgb_l2(msg);
839 int len = msgb_l2len(msg);
Andreas Eversbergf422a752014-01-21 14:54:41 +0100840 int trx_nr = 0;
841
842 if (link->ofd->priv_nr >= E1INP_SIGN_RSL)
843 trx_nr = link->ofd->priv_nr - E1INP_SIGN_RSL;
Pablo Neira Ayusodfafe682011-07-02 14:32:32 +0200844
Vadim Yanitskiy69ae2382019-12-02 02:42:43 +0700845 LOGP(DLINP, LOGL_NOTICE, "received ID_GET for unit ID %u/%u/%u\n",
Pau Espin Pedroldd95eb62018-10-02 20:05:28 +0200846 dev->site_id, dev->bts_id, trx_nr);
Harald Weltee416e2e2017-05-26 13:11:59 +0200847 rmsg = ipa_bts_id_resp(dev, data + 1, len - 1, trx_nr);
Harald Welteb65f58f2014-08-20 22:04:11 +0200848 ret = ipa_send(link->ofd->fd, rmsg->data, rmsg->len);
Pablo Neira Ayuso1e401942012-08-22 14:16:24 +0200849 if (ret != rmsg->len) {
850 LOGP(DLINP, LOGL_ERROR, "cannot send ID_RESP "
851 "message. Reason: %s\n", strerror(errno));
852 goto err_rmsg;
853 }
Pablo Neira Ayusodfafe682011-07-02 14:32:32 +0200854 msgb_free(rmsg);
855
856 /* send ID_ACK. */
857 rmsg = ipa_bts_id_ack();
Harald Welteb65f58f2014-08-20 22:04:11 +0200858 ret = ipa_send(link->ofd->fd, rmsg->data, rmsg->len);
Pablo Neira Ayuso1e401942012-08-22 14:16:24 +0200859 if (ret != rmsg->len) {
860 LOGP(DLINP, LOGL_ERROR, "cannot send ID_ACK "
861 "message. Reason: %s\n", strerror(errno));
862 goto err_rmsg;
863 }
Pablo Neira Ayusodfafe682011-07-02 14:32:32 +0200864 msgb_free(rmsg);
Harald Welte783715b2014-08-17 18:24:51 +0200865 }
866 return 1;
867 }
Harald Welte6eddd472013-06-30 20:18:53 +0200868
Harald Welte783715b2014-08-17 18:24:51 +0200869 return 0;
870
871err_rmsg:
872 msgb_free(rmsg);
873err:
874 ipa_client_conn_close(link);
875 return -1;
876}
877
878static int ipaccess_bts_read_cb(struct ipa_client_conn *link, struct msgb *msg)
879{
880 struct ipaccess_head *hh = (struct ipaccess_head *) msg->data;
881 struct e1inp_ts *e1i_ts = NULL;
882 struct e1inp_sign_link *sign_link;
Neels Hofmeyrfe673112018-08-24 17:43:45 +0200883 uint8_t msg_type = *(msg->l2h);
Harald Welte783715b2014-08-17 18:24:51 +0200884 int ret = 0;
885
886 /* special handling for IPA CCM. */
887 if (hh->proto == IPAC_PROTO_IPACCESS) {
Harald Welte783715b2014-08-17 18:24:51 +0200888 /* this is a request for identification from the BSC. */
889 if (msg_type == IPAC_MSGT_ID_GET) {
890 if (!link->line->ops->sign_link_up) {
891 LOGP(DLINP, LOGL_ERROR,
892 "Unable to set signal link, "
893 "closing socket.\n");
Harald Welte783715b2014-08-17 18:24:51 +0200894 goto err;
895 }
896 }
897 }
898
899 /* core CCM handling */
900 ret = ipaccess_bts_handle_ccm(link, link->line->ops->cfg.ipa.dev, msg);
901 if (ret < 0)
902 goto err;
903
904 if (ret == 1 && hh->proto == IPAC_PROTO_IPACCESS) {
Harald Welte783715b2014-08-17 18:24:51 +0200905 if (msg_type == IPAC_MSGT_ID_GET) {
Harald Welte6eddd472013-06-30 20:18:53 +0200906 sign_link = link->line->ops->sign_link_up(msg,
907 link->line,
908 link->ofd->priv_nr);
909 if (sign_link == NULL) {
910 LOGP(DLINP, LOGL_ERROR,
911 "Unable to set signal link, "
912 "closing socket.\n");
Harald Welte6eddd472013-06-30 20:18:53 +0200913 goto err;
914 }
Pablo Neira Ayuso591ddad2011-06-21 18:16:42 +0200915 }
Pablo Neira Ayuso84e5cb92012-08-23 23:41:54 +0200916 msgb_free(msg);
Pablo Neira Ayuso1e401942012-08-22 14:16:24 +0200917 return ret;
Pablo Neira Ayuso591ddad2011-06-21 18:16:42 +0200918 } else if (link->port == IPA_TCP_PORT_OML)
Pau Espin Pedrolb5cfc6b2018-10-02 21:22:18 +0200919 e1i_ts = e1inp_line_ipa_oml_ts(link->line);
Pablo Neira Ayuso591ddad2011-06-21 18:16:42 +0200920 else if (link->port == IPA_TCP_PORT_RSL)
Pau Espin Pedrolb5cfc6b2018-10-02 21:22:18 +0200921 e1i_ts = e1inp_line_ipa_rsl_ts(link->line, link->ofd->priv_nr - E1INP_SIGN_RSL);
Pablo Neira Ayuso591ddad2011-06-21 18:16:42 +0200922
Pablo Neira Ayusob9487012013-07-05 14:38:43 +0200923 OSMO_ASSERT(e1i_ts != NULL);
924
Neels Hofmeyrfe673112018-08-24 17:43:45 +0200925 if (e1i_ts->type == E1INP_TS_TYPE_NONE) {
926 LOGP(DLINP, LOGL_ERROR, "Signalling link not initialized. Discarding."
927 " port=%u msg_type=%u\n", link->port, msg_type);
Neels Hofmeyrfe673112018-08-24 17:43:45 +0200928 goto err;
929 }
Pau Espin Pedrol7ad2b152018-08-28 17:37:59 +0200930
Pablo Neira Ayuso591ddad2011-06-21 18:16:42 +0200931 /* look up for some existing signaling link. */
932 sign_link = e1inp_lookup_sign_link(e1i_ts, hh->proto, 0);
933 if (sign_link == NULL) {
Harald Weltecc2241b2011-07-19 16:06:06 +0200934 LOGP(DLINP, LOGL_ERROR, "no matching signalling link for "
Pablo Neira Ayuso591ddad2011-06-21 18:16:42 +0200935 "hh->proto=0x%02x\n", hh->proto);
Pablo Neira Ayuso1e401942012-08-22 14:16:24 +0200936 goto err;
Pablo Neira Ayuso591ddad2011-06-21 18:16:42 +0200937 }
938 msg->dst = sign_link;
939
940 /* XXX better use e1inp_ts_rx? */
Pablo Neira Ayusof163d232011-06-25 18:42:55 +0200941 if (!link->line->ops->sign_link) {
Harald Weltecc2241b2011-07-19 16:06:06 +0200942 LOGP(DLINP, LOGL_ERROR, "Fix your application, "
Pablo Neira Ayuso591ddad2011-06-21 18:16:42 +0200943 "no action set for signalling messages.\n");
Pablo Neira Ayuso1e401942012-08-22 14:16:24 +0200944 goto err;
Pablo Neira Ayuso591ddad2011-06-21 18:16:42 +0200945 }
Pau Espin Pedroled122f32018-08-28 18:25:02 +0200946 return link->line->ops->sign_link(msg);
Pablo Neira Ayuso1e401942012-08-22 14:16:24 +0200947
Pablo Neira Ayuso1e401942012-08-22 14:16:24 +0200948err:
Harald Welte783715b2014-08-17 18:24:51 +0200949 ipa_client_conn_close(link);
Pablo Neira Ayuso1e401942012-08-22 14:16:24 +0200950 msgb_free(msg);
Pau Espin Pedrol7ad2b152018-08-28 17:37:59 +0200951 return -EBADF;
Pablo Neira Ayuso591ddad2011-06-21 18:16:42 +0200952}
953
Pablo Neira Ayusod6216402011-08-31 16:47:44 +0200954struct ipaccess_line {
Oliver Smith65ae42c2020-01-22 11:24:52 +0100955 bool line_already_initialized;
Pablo Neira Ayusod6216402011-08-31 16:47:44 +0200956};
957
Pablo Neira Ayuso4e862cb2011-08-19 18:43:38 +0200958static int ipaccess_line_update(struct e1inp_line *line)
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200959{
960 int ret = -ENOENT;
Pablo Neira Ayusod6216402011-08-31 16:47:44 +0200961 struct ipaccess_line *il;
962
963 if (!line->driver_data)
964 line->driver_data = talloc_zero(line, struct ipaccess_line);
965
966 if (!line->driver_data) {
967 LOGP(DLINP, LOGL_ERROR, "ipaccess: OOM in line update\n");
968 return -ENOMEM;
969 }
970 il = line->driver_data;
971
972 /* We only initialize this line once. */
973 if (il->line_already_initialized)
974 return 0;
975
Oliver Smith65ae42c2020-01-22 11:24:52 +0100976 il->line_already_initialized = true;
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +0200977
Pablo Neira Ayuso4e862cb2011-08-19 18:43:38 +0200978 switch(line->ops->cfg.ipa.role) {
Pablo Neira Ayuso986191f2011-06-21 19:56:26 +0200979 case E1INP_LINE_R_BSC: {
980 struct ipa_server_link *oml_link, *rsl_link;
Max4c4a1c22016-12-30 15:10:47 +0100981 const char *ipa = e1inp_ipa_get_bind_addr();
Pablo Neira Ayuso986191f2011-06-21 19:56:26 +0200982
Max4c4a1c22016-12-30 15:10:47 +0100983 LOGP(DLINP, LOGL_NOTICE, "enabling ipaccess BSC mode on %s "
984 "with OML %u and RSL %u TCP ports\n", ipa,
985 IPA_TCP_PORT_OML, IPA_TCP_PORT_RSL);
Pablo Neira Ayuso96e81282011-06-09 15:06:11 +0200986
Max4c4a1c22016-12-30 15:10:47 +0100987 oml_link = ipa_server_link_create(tall_ipa_ctx, line, ipa,
Neels Hofmeyr0db1d432016-02-22 13:29:09 +0100988 IPA_TCP_PORT_OML,
Pablo Neira Ayusoe009f4a2011-06-23 13:36:34 +0200989 ipaccess_bsc_oml_cb, NULL);
Pablo Neira Ayuso986191f2011-06-21 19:56:26 +0200990 if (oml_link == NULL) {
Harald Weltecc2241b2011-07-19 16:06:06 +0200991 LOGP(DLINP, LOGL_ERROR, "cannot create OML "
Pablo Neira Ayuso986191f2011-06-21 19:56:26 +0200992 "BSC link: %s\n", strerror(errno));
993 return -ENOMEM;
Pablo Neira Ayusof67471f2011-06-07 11:25:49 +0200994 }
Pablo Neira Ayuso986191f2011-06-21 19:56:26 +0200995 if (ipa_server_link_open(oml_link) < 0) {
Harald Weltecc2241b2011-07-19 16:06:06 +0200996 LOGP(DLINP, LOGL_ERROR, "cannot open OML BSC link: %s\n",
Pablo Neira Ayuso986191f2011-06-21 19:56:26 +0200997 strerror(errno));
Pablo Neira Ayuso986191f2011-06-21 19:56:26 +0200998 ipa_server_link_destroy(oml_link);
999 return -EIO;
Pablo Neira Ayusof67471f2011-06-07 11:25:49 +02001000 }
Max4c4a1c22016-12-30 15:10:47 +01001001 rsl_link = ipa_server_link_create(tall_ipa_ctx, line, ipa,
Neels Hofmeyr0db1d432016-02-22 13:29:09 +01001002 IPA_TCP_PORT_RSL,
Pablo Neira Ayusoe009f4a2011-06-23 13:36:34 +02001003 ipaccess_bsc_rsl_cb, NULL);
Pablo Neira Ayuso986191f2011-06-21 19:56:26 +02001004 if (rsl_link == NULL) {
Harald Weltecc2241b2011-07-19 16:06:06 +02001005 LOGP(DLINP, LOGL_ERROR, "cannot create RSL "
Pablo Neira Ayuso986191f2011-06-21 19:56:26 +02001006 "BSC link: %s\n", strerror(errno));
1007 return -ENOMEM;
1008 }
1009 if (ipa_server_link_open(rsl_link) < 0) {
Harald Weltecc2241b2011-07-19 16:06:06 +02001010 LOGP(DLINP, LOGL_ERROR, "cannot open RSL BSC link: %s\n",
Pablo Neira Ayuso986191f2011-06-21 19:56:26 +02001011 strerror(errno));
Pablo Neira Ayuso986191f2011-06-21 19:56:26 +02001012 ipa_server_link_destroy(rsl_link);
1013 return -EIO;
1014 }
1015 ret = 0;
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +02001016 break;
Pablo Neira Ayuso986191f2011-06-21 19:56:26 +02001017 }
Pablo Neira Ayuso96e81282011-06-09 15:06:11 +02001018 case E1INP_LINE_R_BTS: {
Harald Welte84f67b22013-06-30 13:13:59 +02001019 struct ipa_client_conn *link;
Eric Wildef1f3272019-07-10 18:10:31 +02001020 struct e1inp_ts *e1i_ts;
Pablo Neira Ayuso96e81282011-06-09 15:06:11 +02001021
Max4c4a1c22016-12-30 15:10:47 +01001022 LOGP(DLINP, LOGL_NOTICE, "enabling ipaccess BTS mode, "
1023 "OML connecting to %s:%u\n", line->ops->cfg.ipa.addr,
1024 IPA_TCP_PORT_OML);
Pablo Neira Ayuso96e81282011-06-09 15:06:11 +02001025
Pau Espin Pedrolb6e28bf2019-11-08 17:30:28 +01001026 link = ipa_client_conn_create2(tall_ipa_ctx,
Pau Espin Pedrolb5cfc6b2018-10-02 21:22:18 +02001027 e1inp_line_ipa_oml_ts(line),
Pablo Neira Ayuso00af7722011-09-08 12:47:06 +02001028 E1INP_SIGN_OML,
Pau Espin Pedrolb6e28bf2019-11-08 17:30:28 +01001029 NULL, 0,
Pablo Neira Ayuso4e862cb2011-08-19 18:43:38 +02001030 line->ops->cfg.ipa.addr,
1031 IPA_TCP_PORT_OML,
Harald Welte51de9ca2013-06-30 20:13:16 +02001032 ipaccess_bts_updown_cb,
Harald Weltea3e9dd52013-06-30 14:25:07 +02001033 ipaccess_bts_read_cb,
Pablo Neira Ayusoc9c4fd32011-06-30 12:19:42 +02001034 ipaccess_bts_write_cb,
Harald Welte10b41302013-06-30 14:05:49 +02001035 line);
Pablo Neira Ayuso96e81282011-06-09 15:06:11 +02001036 if (link == NULL) {
Harald Weltecc2241b2011-07-19 16:06:06 +02001037 LOGP(DLINP, LOGL_ERROR, "cannot create OML "
Pablo Neira Ayuso29465d32011-06-21 14:21:33 +02001038 "BTS link: %s\n", strerror(errno));
Pablo Neira Ayuso96e81282011-06-09 15:06:11 +02001039 return -ENOMEM;
1040 }
Pablo Neira Ayusof0995672011-09-08 12:58:38 +02001041 if (ipa_client_conn_open(link) < 0) {
Harald Weltecc2241b2011-07-19 16:06:06 +02001042 LOGP(DLINP, LOGL_ERROR, "cannot open OML BTS link: %s\n",
Pablo Neira Ayuso29465d32011-06-21 14:21:33 +02001043 strerror(errno));
Pablo Neira Ayusof0995672011-09-08 12:58:38 +02001044 ipa_client_conn_close(link);
1045 ipa_client_conn_destroy(link);
Pablo Neira Ayuso96e81282011-06-09 15:06:11 +02001046 return -EIO;
1047 }
Eric Wildef1f3272019-07-10 18:10:31 +02001048
1049 e1i_ts = e1inp_line_ipa_oml_ts(line);
1050 ipaccess_bts_keepalive_fsm_alloc(e1i_ts, link, "oml_bts_to_bsc");
Pablo Neira Ayuso96e81282011-06-09 15:06:11 +02001051 ret = 0;
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +02001052 break;
Pablo Neira Ayuso96e81282011-06-09 15:06:11 +02001053 }
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +02001054 default:
1055 break;
1056 }
1057 return ret;
1058}
1059
Andreas Eversbergf422a752014-01-21 14:54:41 +01001060
1061/* backwards compatibility */
Harald Welte84f67b22013-06-30 13:13:59 +02001062int e1inp_ipa_bts_rsl_connect(struct e1inp_line *line,
1063 const char *rem_addr, uint16_t rem_port)
1064{
Andreas Eversbergf422a752014-01-21 14:54:41 +01001065 return e1inp_ipa_bts_rsl_connect_n(line, rem_addr, rem_port, 0);
1066}
1067
1068int e1inp_ipa_bts_rsl_connect_n(struct e1inp_line *line,
1069 const char *rem_addr, uint16_t rem_port,
1070 uint8_t trx_nr)
1071{
Harald Welte84f67b22013-06-30 13:13:59 +02001072 struct ipa_client_conn *rsl_link;
Eric Wildef1f3272019-07-10 18:10:31 +02001073 struct e1inp_ts *e1i_ts = e1inp_line_ipa_rsl_ts(line, trx_nr);
Harald Welte84f67b22013-06-30 13:13:59 +02001074
Andreas Eversbergf422a752014-01-21 14:54:41 +01001075 if (E1INP_SIGN_RSL+trx_nr-1 >= NUM_E1_TS) {
1076 LOGP(DLINP, LOGL_ERROR, "cannot create RSL BTS link: "
1077 "trx_nr (%d) out of range\n", trx_nr);
1078 return -EINVAL;
1079 }
Andreas Eversbergf422a752014-01-21 14:54:41 +01001080
Pau Espin Pedrolb6e28bf2019-11-08 17:30:28 +01001081 rsl_link = ipa_client_conn_create2(tall_ipa_ctx,
Pau Espin Pedrolb5cfc6b2018-10-02 21:22:18 +02001082 e1inp_line_ipa_rsl_ts(line, trx_nr),
Andreas Eversbergf422a752014-01-21 14:54:41 +01001083 E1INP_SIGN_RSL+trx_nr,
Pau Espin Pedrolb6e28bf2019-11-08 17:30:28 +01001084 NULL, 0,
Harald Welte84f67b22013-06-30 13:13:59 +02001085 rem_addr, rem_port,
Harald Welte51de9ca2013-06-30 20:13:16 +02001086 ipaccess_bts_updown_cb,
Harald Weltea3e9dd52013-06-30 14:25:07 +02001087 ipaccess_bts_read_cb,
Harald Welte84f67b22013-06-30 13:13:59 +02001088 ipaccess_bts_write_cb,
Harald Welte10b41302013-06-30 14:05:49 +02001089 line);
Harald Welte84f67b22013-06-30 13:13:59 +02001090 if (rsl_link == NULL) {
1091 LOGP(DLINP, LOGL_ERROR, "cannot create RSL "
1092 "BTS link: %s\n", strerror(errno));
1093 return -ENOMEM;
1094 }
1095 if (ipa_client_conn_open(rsl_link) < 0) {
1096 LOGP(DLINP, LOGL_ERROR, "cannot open RSL BTS link: %s\n",
1097 strerror(errno));
1098 ipa_client_conn_close(rsl_link);
1099 ipa_client_conn_destroy(rsl_link);
1100 return -EIO;
1101 }
Eric Wildef1f3272019-07-10 18:10:31 +02001102
1103 ipaccess_bts_keepalive_fsm_alloc(e1i_ts, rsl_link, "rsl_bts_to_bsc");
Harald Welte84f67b22013-06-30 13:13:59 +02001104 return 0;
1105}
1106
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +02001107void e1inp_ipaccess_init(void)
1108{
Pablo Neira Ayuso54b49792011-06-07 12:15:26 +02001109 tall_ipa_ctx = talloc_named_const(libosmo_abis_ctx, 1, "ipa");
Pablo Neira Ayuso0ba77d52011-06-05 18:32:44 +02001110 e1inp_driver_register(&ipaccess_driver);
1111}
Neels Hofmeyr0db1d432016-02-22 13:29:09 +01001112
1113void e1inp_ipa_set_bind_addr(const char *ip_bind_addr)
1114{
1115 talloc_free((char*)ipaccess_driver.bind_addr);
1116 ipaccess_driver.bind_addr = NULL;
1117
1118 if (ip_bind_addr)
1119 ipaccess_driver.bind_addr = talloc_strdup(tall_ipa_ctx,
1120 ip_bind_addr);
1121}
1122
1123const char *e1inp_ipa_get_bind_addr(void)
1124{
1125 return ipaccess_driver.bind_addr?
1126 ipaccess_driver.bind_addr
1127 : "0.0.0.0";
1128}