blob: 06023c4b7f96716ebb4db824e309bf6bf040b028 [file] [log] [blame]
Harald Welte9f75c352010-04-30 20:26:32 +02001/* NS-over-IP proxy */
2
Harald Welte5687ae62020-12-05 19:59:45 +01003/* (C) 2010-2020 by Harald Welte <laforge@gnumonks.org>
Holger Hans Peter Freyther90267a92013-10-23 11:24:17 +02004 * (C) 2010-2013 by On-Waves
5 * (C) 2013 by Holger Hans Peter Freyther
Harald Welte9f75c352010-04-30 20:26:32 +02006 * All Rights Reserved
7 *
8 * This program is free software; you can redistribute it and/or modify
Harald Welte9af6ddf2011-01-01 15:25:50 +01009 * it under the terms of the GNU Affero General Public License as published by
10 * the Free Software Foundation; either version 3 of the License, or
Harald Welte9f75c352010-04-30 20:26:32 +020011 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
Harald Welte9af6ddf2011-01-01 15:25:50 +010016 * GNU Affero General Public License for more details.
Harald Welte9f75c352010-04-30 20:26:32 +020017 *
Harald Welte9af6ddf2011-01-01 15:25:50 +010018 * You should have received a copy of the GNU Affero General Public License
19 * along with this program. If not, see <http://www.gnu.org/licenses/>.
Harald Welte9f75c352010-04-30 20:26:32 +020020 *
21 */
22
23#include <unistd.h>
24#include <stdio.h>
25#include <stdlib.h>
26#include <string.h>
27#include <getopt.h>
28#include <errno.h>
29#include <sys/fcntl.h>
30#include <sys/stat.h>
Harald Welte7fc98222010-05-11 10:15:42 +020031#include <arpa/inet.h>
Jacob Erlbeck7c101d92014-06-06 18:49:23 +020032#include <time.h>
Harald Welte9f75c352010-04-30 20:26:32 +020033
Harald Welte78db2442020-12-05 00:31:07 +010034#include <osmocom/core/hashtable.h>
Daniel Willmanne8c8ec92020-12-02 19:33:50 +010035#include <osmocom/core/logging.h>
Pablo Neira Ayuso136f4532011-03-22 16:47:59 +010036#include <osmocom/core/talloc.h>
37#include <osmocom/core/select.h>
Jacob Erlbeckbc555742013-10-18 14:34:55 +020038#include <osmocom/core/rate_ctr.h>
Jacob Erlbeck46caed82015-11-02 15:15:38 +010039#include <osmocom/core/stats.h>
Jacob Erlbeckbc555742013-10-18 14:34:55 +020040
Alexander Couzens82182d02020-09-22 13:21:46 +020041#include <osmocom/gprs/gprs_ns2.h>
Harald Welteea34a4e2012-06-16 14:59:56 +080042#include <osmocom/gprs/gprs_bssgp.h>
Alexander Couzens82182d02020-09-22 13:21:46 +020043#include <osmocom/gprs/gprs_bssgp_bss.h>
Harald Welte5687ae62020-12-05 19:59:45 +010044#include <osmocom/gprs/bssgp_bvc_fsm.h>
Harald Welteea34a4e2012-06-16 14:59:56 +080045
Jacob Erlbeck7c101d92014-06-06 18:49:23 +020046#include <osmocom/gsm/gsm_utils.h>
47
Neels Hofmeyr396f2e62017-09-04 15:13:25 +020048#include <osmocom/sgsn/signal.h>
49#include <osmocom/sgsn/debug.h>
50#include <osmocom/sgsn/gprs_gb_parse.h>
51#include <osmocom/sgsn/gb_proxy.h>
Harald Welte9f75c352010-04-30 20:26:32 +020052
Neels Hofmeyr396f2e62017-09-04 15:13:25 +020053#include <osmocom/sgsn/gprs_llc.h>
Harald Welte53373bc2016-04-20 17:11:43 +020054#include <osmocom/gsm/protocol/gsm_04_08_gprs.h>
Neels Hofmeyr396f2e62017-09-04 15:13:25 +020055#include <osmocom/sgsn/gprs_utils.h>
Jacob Erlbeck67a44452014-05-19 10:14:58 +020056
Pau Espin Pedrolb1d1c242018-10-30 17:27:59 +010057extern void *tall_sgsn_ctx;
Neels Hofmeyree6cfdc2017-07-13 02:03:50 +020058
Jacob Erlbeckbc555742013-10-18 14:34:55 +020059static const struct rate_ctr_desc global_ctr_description[] = {
60 { "inv-bvci", "Invalid BVC Identifier " },
Jacob Erlbeck8f503592014-06-02 10:49:00 +020061 { "inv-lai", "Invalid Location Area Identifier" },
62 { "inv-rai", "Invalid Routing Area Identifier " },
Jacob Erlbeckbc555742013-10-18 14:34:55 +020063 { "inv-nsei", "No BVC established for NSEI " },
Pau Espin Pedrol437e2092018-07-24 12:41:26 +020064 { "proto-err:bss", "BSSGP protocol error (BSS )" },
65 { "proto-err:sgsn", "BSSGP protocol error (SGSN)" },
66 { "not-supp:bss", "Feature not supported (BSS )" },
67 { "not-supp:sgsn", "Feature not supported (SGSN)" },
68 { "restart:sgsn", "Restarted RESET procedure (SGSN)" },
69 { "tx-err:sgsn", "NS Transmission error (SGSN)" },
Jacob Erlbeckbc555742013-10-18 14:34:55 +020070 { "error", "Other error " },
Jacob Erlbeck006c0382014-05-27 13:49:04 +020071 { "mod-peer-err", "Patch error: no peer " },
Jacob Erlbeckbc555742013-10-18 14:34:55 +020072};
73
74static const struct rate_ctr_group_desc global_ctrg_desc = {
Max8a01a802017-12-20 13:10:11 +010075 .group_name_prefix = "gbproxy:global",
Jacob Erlbeckbc555742013-10-18 14:34:55 +020076 .group_description = "GBProxy Global Statistics",
77 .num_ctr = ARRAY_SIZE(global_ctr_description),
78 .ctr_desc = global_ctr_description,
Jacob Erlbeck46caed82015-11-02 15:15:38 +010079 .class_id = OSMO_STATS_CLASS_GLOBAL,
Jacob Erlbeckbc555742013-10-18 14:34:55 +020080};
81
Harald Welte8cd74402020-12-04 22:24:47 +010082static int gbprox_relay2peer(struct msgb *old_msg, struct gbproxy_bvc *bvc,
Daniel Willmann8bca8de2020-11-03 21:11:45 +010083 uint16_t ns_bvci);
Jacob Erlbeck5f4ef322014-08-22 17:10:01 +020084
Harald Welte4bf53ef2020-12-05 17:50:23 +010085
Harald Welte052d8552020-12-06 16:32:01 +010086/* generate BVC-STATUS message with cause value derived from TLV-parser error */
87static int tx_status_from_tlvp(enum osmo_tlv_parser_error tlv_p_err, struct msgb *orig_msg)
88{
89 uint8_t bssgp_cause;
90 switch (tlv_p_err) {
91 case OSMO_TLVP_ERR_MAND_IE_MISSING:
92 bssgp_cause = BSSGP_CAUSE_MISSING_MAND_IE;
93 break;
94 default:
95 bssgp_cause = BSSGP_CAUSE_PROTO_ERR_UNSPEC;
96 }
97 return bssgp_tx_status(bssgp_cause, NULL, orig_msg);
98}
99
Harald Welte69619e32010-05-03 19:05:10 +0200100/* strip off the NS header */
101static void strip_ns_hdr(struct msgb *msg)
102{
103 int strip_len = msgb_bssgph(msg) - msg->data;
104 msgb_pull(msg, strip_len);
105}
106
Harald Welte5687ae62020-12-05 19:59:45 +0100107#if 0
Harald Welte8cd74402020-12-04 22:24:47 +0100108/* feed a message down the NS-VC associated with the specified bvc */
Holger Hans Peter Freythereece6272014-08-04 15:42:36 +0200109static int gbprox_relay2sgsn(struct gbproxy_config *cfg, struct msgb *old_msg,
Jacob Erlbeckf4d60c82014-08-26 14:47:15 +0200110 uint16_t ns_bvci, uint16_t sgsn_nsei)
Harald Welte672f5c42010-05-03 18:54:58 +0200111{
Harald Welte39d0bb52010-05-12 18:10:25 +0000112 /* create a copy of the message so the old one can
113 * be free()d safely when we return from gbprox_rcvmsg() */
Alexander Couzens82182d02020-09-22 13:21:46 +0200114 struct gprs_ns2_inst *nsi = cfg->nsi;
115 struct osmo_gprs_ns2_prim nsp = {};
Pau Espin Pedrol816a67d2018-08-15 13:53:48 +0200116 struct msgb *msg = bssgp_msgb_copy(old_msg, "msgb_relay2sgsn");
Jacob Erlbeckbc555742013-10-18 14:34:55 +0200117 int rc;
Harald Welte39d0bb52010-05-12 18:10:25 +0000118
Daniel Willmann103a7ec2020-12-02 16:08:02 +0100119 DEBUGP(DGPRS, "NSE(%05u/BSS)-BVC(%05u) proxying BTS->SGSN NSE(%05u/SGSN)\n",
Jacob Erlbeckf4d60c82014-08-26 14:47:15 +0200120 msgb_nsei(msg), ns_bvci, sgsn_nsei);
Harald Welte44c48302010-05-03 19:22:32 +0200121
Alexander Couzens82182d02020-09-22 13:21:46 +0200122 nsp.bvci = ns_bvci;
123 nsp.nsei = sgsn_nsei;
Harald Welte672f5c42010-05-03 18:54:58 +0200124
Harald Welte69619e32010-05-03 19:05:10 +0200125 strip_ns_hdr(msg);
Alexander Couzens82182d02020-09-22 13:21:46 +0200126 osmo_prim_init(&nsp.oph, SAP_NS, PRIM_NS_UNIT_DATA,
127 PRIM_OP_REQUEST, msg);
128 rc = gprs_ns2_recv_prim(nsi, &nsp.oph);
Jacob Erlbeckbc555742013-10-18 14:34:55 +0200129 if (rc < 0)
Holger Hans Peter Freythereece6272014-08-04 15:42:36 +0200130 rate_ctr_inc(&cfg->ctrg->ctr[GBPROX_GLOB_CTR_TX_ERR_SGSN]);
Jacob Erlbeckbc555742013-10-18 14:34:55 +0200131 return rc;
Harald Welte672f5c42010-05-03 18:54:58 +0200132}
Harald Welte5687ae62020-12-05 19:59:45 +0100133#endif
Harald Welte672f5c42010-05-03 18:54:58 +0200134
Daniel Willmann5937dfd2020-11-30 17:08:58 +0100135/* feed a message down the NSE */
136static int gbprox_relay2nse(struct msgb *old_msg, struct gbproxy_nse *nse,
Daniel Willmann8bca8de2020-11-03 21:11:45 +0100137 uint16_t ns_bvci)
Harald Welte9f75c352010-04-30 20:26:32 +0200138{
Daniel Willmann447ad442020-11-26 18:19:21 +0100139 OSMO_ASSERT(nse);
140 OSMO_ASSERT(nse->cfg);
141
Harald Welte39d0bb52010-05-12 18:10:25 +0000142 /* create a copy of the message so the old one can
143 * be free()d safely when we return from gbprox_rcvmsg() */
Daniel Willmann447ad442020-11-26 18:19:21 +0100144 struct gprs_ns2_inst *nsi = nse->cfg->nsi;
Alexander Couzens82182d02020-09-22 13:21:46 +0200145 struct osmo_gprs_ns2_prim nsp = {};
Daniel Willmann5937dfd2020-11-30 17:08:58 +0100146 struct msgb *msg = bssgp_msgb_copy(old_msg, "msgb_relay2nse");
Harald Welte2636e892020-11-18 12:01:46 +0100147 uint32_t tlli;
Jacob Erlbeckbc555742013-10-18 14:34:55 +0200148 int rc;
Harald Welte39d0bb52010-05-12 18:10:25 +0000149
Daniel Willmann103a7ec2020-12-02 16:08:02 +0100150 DEBUGP(DGPRS, "NSE(%05u/SGSN)-BVC(%05u) proxying SGSN->BSS NSE(%05u/BSS)\n",
Daniel Willmann447ad442020-11-26 18:19:21 +0100151 msgb_nsei(msg), ns_bvci, nse->nsei);
Harald Welte44c48302010-05-03 19:22:32 +0200152
Alexander Couzens82182d02020-09-22 13:21:46 +0200153 nsp.bvci = ns_bvci;
Daniel Willmann447ad442020-11-26 18:19:21 +0100154 nsp.nsei = nse->nsei;
Harald Welte9f75c352010-04-30 20:26:32 +0200155
Harald Welte0ab535b2010-05-13 10:34:56 +0200156 /* Strip the old NS header, it will be replaced with a new one */
Harald Welte69619e32010-05-03 19:05:10 +0200157 strip_ns_hdr(msg);
158
Harald Welte2636e892020-11-18 12:01:46 +0100159 /* TS 48.018 Section 5.4.2: The link selector parameter is
160 * defined in 3GPP TS 48.016. At one side of the Gb interface,
161 * all BSSGP UNITDATA PDUs related to an MS shall be passed with
162 * the same LSP, e.g. the LSP contains the MS's TLLI, to the
163 * underlying network service. */
164 if (gprs_gb_parse_tlli(msgb_data(msg), msgb_length(msg), &tlli) == 1)
165 nsp.u.unitdata.link_selector = tlli;
166
Alexander Couzens82182d02020-09-22 13:21:46 +0200167 osmo_prim_init(&nsp.oph, SAP_NS, PRIM_NS_UNIT_DATA,
168 PRIM_OP_REQUEST, msg);
169 rc = gprs_ns2_recv_prim(nsi, &nsp.oph);
Daniel Willmann5937dfd2020-11-30 17:08:58 +0100170 /* FIXME: We need a counter group for gbproxy_nse */
171 //if (rc < 0)
Harald Welte8cd74402020-12-04 22:24:47 +0100172 // rate_ctr_inc(&bvc->ctrg->ctr[GBPROX_PEER_CTR_TX_ERR]);
Daniel Willmann5937dfd2020-11-30 17:08:58 +0100173
174 return rc;
175}
176
Harald Welte8cd74402020-12-04 22:24:47 +0100177/* feed a message down the NS-VC associated with the specified bvc */
178static int gbprox_relay2peer(struct msgb *old_msg, struct gbproxy_bvc *bvc,
Daniel Willmann5937dfd2020-11-30 17:08:58 +0100179 uint16_t ns_bvci)
180{
181 int rc;
Harald Welte8cd74402020-12-04 22:24:47 +0100182 struct gbproxy_nse *nse = bvc->nse;
Daniel Willmann5937dfd2020-11-30 17:08:58 +0100183 OSMO_ASSERT(nse);
184
185 rc = gbprox_relay2nse(old_msg, nse, ns_bvci);
Jacob Erlbeckbc555742013-10-18 14:34:55 +0200186 if (rc < 0)
Harald Welte8cd74402020-12-04 22:24:47 +0100187 rate_ctr_inc(&bvc->ctrg->ctr[GBPROX_PEER_CTR_TX_ERR]);
Jacob Erlbeckbc555742013-10-18 14:34:55 +0200188
189 return rc;
Harald Welte9f75c352010-04-30 20:26:32 +0200190}
191
Harald Welteb1fd9022012-06-17 12:16:31 +0800192int bssgp_prim_cb(struct osmo_prim_hdr *oph, void *ctx)
193{
194 return 0;
195}
196
Harald Welte5687ae62020-12-05 19:59:45 +0100197
198/***********************************************************************
199 * PTP BVC handling
200 ***********************************************************************/
201
202/* route an uplink message on a PTP-BVC to a SGSN using the TLLI */
203static int gbprox_bss2sgsn_tlli(struct gbproxy_cell *cell, struct msgb *msg, uint32_t tlli,
204 bool sig_bvci)
205{
206 struct gbproxy_bvc *sgsn_bvc;
207 unsigned int i;
208
209 /* FIXME: derive NRI from TLLI */
210 /* FIXME: find the SGSN for that NRI */
211
212 /* HACK: we currently simply pick the first SGSN we find */
213 for (i = 0; i < ARRAY_SIZE(cell->sgsn_bvc); i++) {
214 sgsn_bvc = cell->sgsn_bvc[i];
215 if (sgsn_bvc)
216 return gbprox_relay2peer(msg, sgsn_bvc, sig_bvci ? 0 : sgsn_bvc->bvci);
217 }
218 return 0;
219}
220
221static int gbprox_bss2sgsn_null_nri(struct gbproxy_cell *cell, struct msgb *msg)
222{
223 struct gbproxy_bvc *sgsn_bvc;
224 unsigned int i;
225
226 /* FIXME: find the SGSN for that NRI */
227
228 /* HACK: we currently simply pick the first SGSN we find */
229 for (i = 0; i < ARRAY_SIZE(cell->sgsn_bvc); i++) {
230 sgsn_bvc = cell->sgsn_bvc[i];
231 if (sgsn_bvc)
232 return gbprox_relay2peer(msg, sgsn_bvc, sgsn_bvc->bvci);
233 }
234 return 0;
235}
236
237
Jacob Erlbeck46f1d6f2014-08-21 13:45:04 +0200238/* Receive an incoming PTP message from a BSS-side NS-VC */
Harald Welte5687ae62020-12-05 19:59:45 +0100239static int gbprox_rx_ptp_from_bss(struct gbproxy_nse *nse, struct msgb *msg, uint16_t ns_bvci)
Jacob Erlbeck46f1d6f2014-08-21 13:45:04 +0200240{
Harald Welted651edc2020-12-06 13:35:24 +0100241 struct bssgp_normal_hdr *bgph = (struct bssgp_normal_hdr *) msgb_bssgph(msg);
Harald Welte5687ae62020-12-05 19:59:45 +0100242 const char *pdut_name = osmo_tlv_prot_msg_name(&osmo_pdef_bssgp, bgph->pdu_type);
243 struct gbproxy_bvc *bss_bvc;
244 struct tlv_parsed tp;
245 char log_pfx[32];
246 uint32_t tlli;
247 int rc;
248
249 snprintf(log_pfx, sizeof(log_pfx), "NSE(%05u/BSS)-BVC(%05u/??)", nse->nsei, ns_bvci);
250
251 LOGP(DGPRS, LOGL_DEBUG, "%s Rx %s\n", log_pfx, pdut_name);
Jacob Erlbeck46f1d6f2014-08-21 13:45:04 +0200252
Harald Welted651edc2020-12-06 13:35:24 +0100253 if (ns_bvci == 0 && ns_bvci == 1) {
Harald Welte5687ae62020-12-05 19:59:45 +0100254 LOGP(DGPRS, LOGL_NOTICE, "%s BVCI=%05u is not PTP\n", log_pfx, ns_bvci);
Harald Welted651edc2020-12-06 13:35:24 +0100255 return bssgp_tx_status(BSSGP_CAUSE_PROTO_ERR_UNSPEC, NULL, msg);
256 }
257
258 if (!(bssgp_pdu_type_flags(bgph->pdu_type) & BSSGP_PDUF_PTP)) {
Harald Welte5687ae62020-12-05 19:59:45 +0100259 LOGP(DGPRS, LOGL_NOTICE, "%s %s not allowed in PTP BVC\n", log_pfx, pdut_name);
Harald Welted651edc2020-12-06 13:35:24 +0100260 return bssgp_tx_status(BSSGP_CAUSE_PROTO_ERR_UNSPEC, NULL, msg);
261 }
262
263 if (!(bssgp_pdu_type_flags(bgph->pdu_type) & BSSGP_PDUF_UL)) {
Harald Welte5687ae62020-12-05 19:59:45 +0100264 LOGP(DGPRS, LOGL_NOTICE, "%s %s not allowed in uplink direction\n", log_pfx, pdut_name);
Harald Welted651edc2020-12-06 13:35:24 +0100265 return bssgp_tx_status(BSSGP_CAUSE_PROTO_ERR_UNSPEC, NULL, msg);
266 }
267
Harald Welte5687ae62020-12-05 19:59:45 +0100268 bss_bvc = gbproxy_bvc_by_bvci(nse, ns_bvci);
269 if (!bss_bvc) {
270 LOGP(DGPRS, LOGL_NOTICE, "%s %s - Didn't find BVC for PTP message, discarding\n",
271 log_pfx, pdut_name);
272 return bssgp_tx_status(BSSGP_CAUSE_UNKNOWN_BVCI, &ns_bvci, msg);
Jacob Erlbeck058ae122014-10-10 09:07:04 +0200273 }
Jacob Erlbeck46f1d6f2014-08-21 13:45:04 +0200274
Harald Welte5687ae62020-12-05 19:59:45 +0100275 /* UL_UNITDATA has a different header than all other uplink PDUs */
276 if (bgph->pdu_type == BSSGP_PDUT_UL_UNITDATA) {
277 const struct bssgp_ud_hdr *budh = (struct bssgp_ud_hdr *) msgb_bssgph(msg);
278 if (msgb_bssgp_len(msg) < sizeof(*budh))
279 return bssgp_tx_status(BSSGP_CAUSE_INV_MAND_INF, NULL, msg);
280 rc = osmo_tlv_prot_parse(&osmo_pdef_bssgp, &tp, 1, bgph->pdu_type, budh->data,
281 msgb_bssgp_len(msg) - sizeof(*budh), 0, 0, DGPRS, log_pfx);
282 /* populate TLLI from the fixed headser into the TLV-parsed array so later code
283 * doesn't have to worry where the TLLI came from */
284 tp.lv[BSSGP_IE_TLLI].len = 4;
285 tp.lv[BSSGP_IE_TLLI].val = (const uint8_t *) &budh->tlli;
286 } else {
287 rc = osmo_tlv_prot_parse(&osmo_pdef_bssgp, &tp, 1, bgph->pdu_type, bgph->data,
288 msgb_bssgp_len(msg) - sizeof(*bgph), 0, 0, DGPRS, log_pfx);
289 }
290 if (rc < 0) {
291 rate_ctr_inc(&nse->cfg->ctrg->ctr[GBPROX_GLOB_CTR_PROTO_ERR_BSS]);
292 return tx_status_from_tlvp(rc, msg);
293 }
Harald Welte61ff2732020-12-08 21:43:22 +0100294 /* hack to get both msg + tlv_parsed passed via osmo_fsm_inst_dispatch */
295 msgb_bcid(msg) = (void *)&tp;
Jacob Erlbeck43b8f9f2014-10-02 14:56:44 +0200296
Harald Welte5687ae62020-12-05 19:59:45 +0100297 switch (bgph->pdu_type) {
298 case BSSGP_PDUT_UL_UNITDATA:
299 case BSSGP_PDUT_RA_CAPA_UPDATE:
300 case BSSGP_PDUT_FLOW_CONTROL_MS:
301 case BSSGP_PDUT_DOWNLOAD_BSS_PFC:
302 case BSSGP_PDUT_CREATE_BSS_PFC_ACK:
303 case BSSGP_PDUT_CREATE_BSS_PFC_NACK:
304 case BSSGP_PDUT_MODIFY_BSS_PFC_ACK:
305 case BSSGP_PDUT_DELETE_BSS_PFC_ACK:
306 case BSSGP_PDUT_FLOW_CONTROL_PFC:
307 case BSSGP_PDUT_DELETE_BSS_PFC_REQ:
308 case BSSGP_PDUT_PS_HO_REQUIRED:
309 case BSSGP_PDUT_PS_HO_REQUEST_ACK:
310 case BSSGP_PDUT_PS_HO_REQUEST_NACK:
311 case BSSGP_PDUT_PS_HO_COMPLETE:
312 case BSSGP_PDUT_PS_HO_CANCEL:
313 /* We can route based on TLLI-NRI */
314 tlli = osmo_load32be(TLVP_VAL(&tp, BSSGP_IE_TLLI));
315 rc = gbprox_bss2sgsn_tlli(bss_bvc->cell, msg, tlli, false);
316 break;
317 case BSSGP_PDUT_RADIO_STATUS:
318 if (TLVP_PRESENT(&tp, BSSGP_IE_TLLI)) {
319 tlli = osmo_load32be(TLVP_VAL(&tp, BSSGP_IE_TLLI));
320 rc = gbprox_bss2sgsn_tlli(bss_bvc->cell, msg, tlli, false);
321 } else if (TLVP_PRESENT(&tp, BSSGP_IE_TMSI)) {
322 /* we treat the TMSI like a TLLI and extract the NRI from it */
323 tlli = osmo_load32be(TLVP_VAL(&tp, BSSGP_IE_TMSI));
324 rc = gbprox_bss2sgsn_tlli(bss_bvc->cell, msg, tlli, false);
325 } else if (TLVP_PRESENT(&tp, BSSGP_IE_IMSI)) {
326 rc = gbprox_bss2sgsn_null_nri(bss_bvc->cell, msg);
327 } else
328 LOGPBVC(bss_bvc, LOGL_ERROR, "Rx RADIO-STATUS without any of the conditional IEs\n");
329 break;
330 case BSSGP_PDUT_DUMMY_PAGING_PS_RESP:
331 case BSSGP_PDUT_PAGING_PS_REJECT:
332 /* TODO: Implement via state tracking of PAGING-PS + DUMMY_PAGING_PS */
333 LOGPBVC(bss_bvc, LOGL_ERROR, "Rx %s: Implementation missing\n", pdut_name);
334 break;
335 case BSSGP_PDUT_FLOW_CONTROL_BVC:
Harald Welte61ff2732020-12-08 21:43:22 +0100336 osmo_fsm_inst_dispatch(bss_bvc->fi, BSSGP_BVCFSM_E_RX_FC_BVC, msg);
Harald Welte5687ae62020-12-05 19:59:45 +0100337 break;
338 case BSSGP_PDUT_STATUS:
339 /* TODO: Implement by inspecting the contained PDU */
340 if (!TLVP_PRESENT(&tp, BSSGP_IE_PDU_IN_ERROR))
341 break;
342 LOGPBVC(bss_bvc, LOGL_ERROR, "Rx %s: Implementation missing\n", pdut_name);
343 break;
344 }
345
346 return 0;
Jacob Erlbeck46f1d6f2014-08-21 13:45:04 +0200347}
348
349/* Receive an incoming PTP message from a SGSN-side NS-VC */
Harald Welte5687ae62020-12-05 19:59:45 +0100350static int gbprox_rx_ptp_from_sgsn(struct gbproxy_nse *nse, struct msgb *msg, uint16_t ns_bvci)
Jacob Erlbeck46f1d6f2014-08-21 13:45:04 +0200351{
Harald Welted651edc2020-12-06 13:35:24 +0100352 struct bssgp_normal_hdr *bgph = (struct bssgp_normal_hdr *) msgb_bssgph(msg);
Harald Welte5687ae62020-12-05 19:59:45 +0100353 const char *pdut_name = osmo_tlv_prot_msg_name(&osmo_pdef_bssgp, bgph->pdu_type);
354 struct gbproxy_bvc *sgsn_bvc, *bss_bvc;
Harald Welte61ff2732020-12-08 21:43:22 +0100355 struct tlv_parsed tp;
Harald Welte5687ae62020-12-05 19:59:45 +0100356 char log_pfx[32];
Harald Welte61ff2732020-12-08 21:43:22 +0100357 int rc;
Harald Welte5687ae62020-12-05 19:59:45 +0100358
359 snprintf(log_pfx, sizeof(log_pfx), "NSE(%05u/SGSN)-BVC(%05u/??)", nse->nsei, ns_bvci);
360
361 LOGP(DGPRS, LOGL_DEBUG, "%s Rx %s\n", log_pfx, pdut_name);
Jacob Erlbeck46f1d6f2014-08-21 13:45:04 +0200362
Harald Welted651edc2020-12-06 13:35:24 +0100363 if (ns_bvci == 0 && ns_bvci == 1) {
Harald Welte5687ae62020-12-05 19:59:45 +0100364 LOGP(DGPRS, LOGL_NOTICE, "%s BVCI is not PTP\n", log_pfx);
Harald Welted651edc2020-12-06 13:35:24 +0100365 return bssgp_tx_status(BSSGP_CAUSE_PROTO_ERR_UNSPEC, NULL, msg);
366 }
367
368 if (!(bssgp_pdu_type_flags(bgph->pdu_type) & BSSGP_PDUF_PTP)) {
Harald Welte5687ae62020-12-05 19:59:45 +0100369 LOGP(DGPRS, LOGL_NOTICE, "%s %s not allowed in PTP BVC\n", log_pfx, pdut_name);
Harald Welted651edc2020-12-06 13:35:24 +0100370 return bssgp_tx_status(BSSGP_CAUSE_PROTO_ERR_UNSPEC, NULL, msg);
371 }
372
373 if (!(bssgp_pdu_type_flags(bgph->pdu_type) & BSSGP_PDUF_DL)) {
Harald Welte5687ae62020-12-05 19:59:45 +0100374 LOGP(DGPRS, LOGL_NOTICE, "%s %s not allowed in downlink direction\n", log_pfx, pdut_name);
Harald Welted651edc2020-12-06 13:35:24 +0100375 return bssgp_tx_status(BSSGP_CAUSE_PROTO_ERR_UNSPEC, NULL, msg);
376 }
377
Harald Welte5687ae62020-12-05 19:59:45 +0100378 sgsn_bvc = gbproxy_bvc_by_bvci(nse, ns_bvci);
379 if (!sgsn_bvc) {
380 LOGP(DGPRS, LOGL_NOTICE, "%s %s - Didn't find BVC for for PTP message, discarding\n",
381 log_pfx, pdut_name);
382 rate_ctr_inc(&nse->cfg->ctrg-> ctr[GBPROX_GLOB_CTR_INV_BVCI]);
383 return bssgp_tx_status(BSSGP_CAUSE_UNKNOWN_BVCI, &ns_bvci, msg);
Jacob Erlbeck46f1d6f2014-08-21 13:45:04 +0200384 }
385
Harald Welte5687ae62020-12-05 19:59:45 +0100386 if (!bssgp_bvc_fsm_is_unblocked(sgsn_bvc->fi)) {
387 LOGPBVC(sgsn_bvc, LOGL_NOTICE, "Rx %s: Dropping on blocked BVC\n", pdut_name);
388 rate_ctr_inc(&sgsn_bvc->ctrg->ctr[GBPROX_PEER_CTR_DROPPED]);
Jacob Erlbeck17b42b82014-08-29 12:20:15 +0200389 return bssgp_tx_status(BSSGP_CAUSE_BVCI_BLOCKED, &ns_bvci, msg);
Jacob Erlbeck46f1d6f2014-08-21 13:45:04 +0200390 }
Harald Welte61ff2732020-12-08 21:43:22 +0100391
392 /* DL_UNITDATA has a different header than all other uplink PDUs */
393 if (bgph->pdu_type == BSSGP_PDUT_DL_UNITDATA) {
394 const struct bssgp_ud_hdr *budh = (struct bssgp_ud_hdr *) msgb_bssgph(msg);
395 if (msgb_bssgp_len(msg) < sizeof(*budh))
396 return bssgp_tx_status(BSSGP_CAUSE_INV_MAND_INF, NULL, msg);
397 rc = osmo_tlv_prot_parse(&osmo_pdef_bssgp, &tp, 1, bgph->pdu_type, budh->data,
398 msgb_bssgp_len(msg) - sizeof(*budh), 0, 0, DGPRS, log_pfx);
399 /* populate TLLI from the fixed headser into the TLV-parsed array so later code
400 * doesn't have to worry where the TLLI came from */
401 tp.lv[BSSGP_IE_TLLI].len = 4;
402 tp.lv[BSSGP_IE_TLLI].val = (const uint8_t *) &budh->tlli;
403 } else {
404 rc = osmo_tlv_prot_parse(&osmo_pdef_bssgp, &tp, 1, bgph->pdu_type, bgph->data,
405 msgb_bssgp_len(msg) - sizeof(*bgph), 0, 0, DGPRS, log_pfx);
406 }
407 if (rc < 0) {
408 rate_ctr_inc(&nse->cfg->ctrg->ctr[GBPROX_GLOB_CTR_PROTO_ERR_BSS]);
409 return tx_status_from_tlvp(rc, msg);
410 }
411 /* hack to get both msg + tlv_parsed passed via osmo_fsm_inst_dispatch */
412 msgb_bcid(msg) = (void *)&tp;
413
Harald Welte5687ae62020-12-05 19:59:45 +0100414 OSMO_ASSERT(sgsn_bvc->cell);
415 bss_bvc = sgsn_bvc->cell->bss_bvc;
Jacob Erlbeck46f1d6f2014-08-21 13:45:04 +0200416
Harald Welte61ff2732020-12-08 21:43:22 +0100417 switch (bgph->pdu_type) {
418 case BSSGP_PDUT_FLOW_CONTROL_BVC_ACK:
419 return osmo_fsm_inst_dispatch(sgsn_bvc->fi, BSSGP_BVCFSM_E_RX_FC_BVC_ACK, msg);
420 default:
421 return gbprox_relay2peer(msg, bss_bvc, bss_bvc->bvci);
422 }
423
Jacob Erlbeck46f1d6f2014-08-21 13:45:04 +0200424}
425
Harald Welte5687ae62020-12-05 19:59:45 +0100426/***********************************************************************
427 * BVC FSM call-backs
428 ***********************************************************************/
Harald Welteac44d6b2020-12-02 22:53:26 +0100429
Harald Welte5687ae62020-12-05 19:59:45 +0100430/* helper function to dispatch a FSM event to all SGSN-side BVC FSMs of a cell */
431static void dispatch_to_all_sgsn_bvc(struct gbproxy_cell *cell, uint32_t event, void *priv)
432{
433 unsigned int i;
434
435 for (i = 0; i < ARRAY_SIZE(cell->sgsn_bvc); i++) {
436 struct gbproxy_bvc *sgsn_bvc = cell->sgsn_bvc[i];
437 if (!sgsn_bvc)
438 continue;
439 osmo_fsm_inst_dispatch(sgsn_bvc->fi, event, priv);
440 }
441}
442
443/* BVC FSM informs us about a BSS-side reset of the signaling BVC */
444static void bss_sig_bvc_reset_notif(uint16_t nsei, uint16_t bvci, const struct gprs_ra_id *ra_id,
445 uint16_t cell_id, uint8_t cause, void *priv)
446{
447 struct gbproxy_bvc *sig_bvc = priv;
448 struct gbproxy_nse *nse = sig_bvc->nse;
449 struct gbproxy_bvc *ptp_bvc;
450 unsigned int i;
451
452 /* BLOCK all SGSN-side PTP BVC within this NSE */
453 hash_for_each(nse->bvcs, i, ptp_bvc, list) {
454 if (ptp_bvc == sig_bvc)
455 continue;
456 OSMO_ASSERT(ptp_bvc->cell);
457
458 dispatch_to_all_sgsn_bvc(ptp_bvc->cell, BSSGP_BVCFSM_E_REQ_BLOCK, &cause);
Harald Weltefb7f8c52020-12-02 23:29:38 +0100459 }
Harald Welteac44d6b2020-12-02 22:53:26 +0100460
Harald Welte5687ae62020-12-05 19:59:45 +0100461 /* Delete all BSS-side PTP BVC within this NSE */
462 gbproxy_cleanup_bvcs(nse, 0);
463
464 /* TODO: we keep the "CELL" around for now, re-connecting it to
465 * any (later) new PTP-BVC for that BVCI. Not sure if that's the
466 * best idea ? */
467}
468
469/* forward declaration */
470static const struct bssgp_bvc_fsm_ops sgsn_ptp_bvc_fsm_ops;
471
472static const struct bssgp_bvc_fsm_ops bss_sig_bvc_fsm_ops = {
473 .reset_notification = bss_sig_bvc_reset_notif,
474};
475
476/* BVC FSM informs us about a BSS-side reset of a PTP BVC */
477static void bss_ptp_bvc_reset_notif(uint16_t nsei, uint16_t bvci, const struct gprs_ra_id *ra_id,
478 uint16_t cell_id, uint8_t cause, void *priv)
479{
480 struct gbproxy_bvc *bvc = priv;
481 struct gbproxy_config *cfg = bvc->nse->cfg;
482 unsigned int i;
483
484 OSMO_ASSERT(bvci != 0);
485
486 if (!bvc->cell) {
487 /* see if we have a CELL dangling around */
488 bvc->cell = gbproxy_cell_by_bvci(cfg, bvci);
489 if (bvc->cell) {
490 /* the CELL already exists. This means either it * was created before at an
491 * earlier PTP BVC-RESET, or that there are non-unique BVCIs and hence a
492 * malconfiguration */
493 if (bvc->cell->bss_bvc) {
494 LOGPBVC(bvc, LOGL_NOTICE, "Rx BVC-RESET via this NSE, but CELL already "
495 "has BVC on NSEI=%05u\n", bvc->cell->bss_bvc->nse->nsei);
496 LOGPBVC(bvc->cell->bss_bvc, LOGL_NOTICE, "Destroying due to conflicting "
497 "BVCI configuration (new NSEI=%05u)!\n", bvc->nse->nsei);
498 gbproxy_bvc_free(bvc->cell->bss_bvc);
499 }
500 bvc->cell->bss_bvc = bvc;
501 }
502 }
503
504 if (!bvc->cell) {
505 struct gbproxy_nse *sgsn_nse;
506 /* if we end up here, it means this is the first time we received a BVC-RESET
507 * for this BVC. We need to create the 'cell' data structure and the SGSN-side
508 * BVC counterparts */
509
510 bvc->cell = gbproxy_cell_alloc(cfg, bvci);
511 OSMO_ASSERT(bvc->cell);
512
513 /* link us to the cell and vice-versa */
514 bvc->cell->bss_bvc = bvc;
515
516 /* allocate the SGSN-side BVCs within the cell, and reset them */
517 hash_for_each(cfg->sgsn_nses, i, sgsn_nse, list) {
518 struct gbproxy_bvc *sgsn_bvc = gbproxy_bvc_by_bvci(sgsn_nse, bvci);
519 if (sgsn_bvc)
520 OSMO_ASSERT(!sgsn_bvc->cell);
521
522 if (!sgsn_bvc) {
523 sgsn_bvc = gbproxy_bvc_alloc(sgsn_nse, bvci);
524 OSMO_ASSERT(sgsn_bvc);
525
526 sgsn_bvc->cell = bvc->cell;
527 sgsn_bvc->fi = bssgp_bvc_fsm_alloc_ptp_bss(sgsn_bvc, cfg->nsi, sgsn_nse->nsei,
528 bvci, ra_id, cell_id);
529 OSMO_ASSERT(sgsn_bvc->fi);
530 bssgp_bvc_fsm_set_ops(sgsn_bvc->fi, &sgsn_ptp_bvc_fsm_ops, sgsn_bvc);
531
532 gbproxy_cell_add_sgsn_bvc(bvc->cell, sgsn_bvc);
533 } else {
534 OSMO_ASSERT(sgsn_bvc->cell == bvc->cell);
535 }
536 }
537 }
538
539 /* Trigger outbound BVC-RESET procedure toward each SGSN */
540 dispatch_to_all_sgsn_bvc(bvc->cell, BSSGP_BVCFSM_E_REQ_RESET, &cause);
541}
542
543/* BVC FSM informs us about a BSS-side FSM state change */
544static void bss_ptp_bvc_state_chg_notif(uint16_t nsei, uint16_t bvci, int old_state, int state, void *priv)
545{
546 struct gbproxy_bvc *bvc = priv;
547 struct gbproxy_cell *cell = bvc->cell;
548 uint8_t cause = bssgp_bvc_fsm_get_block_cause(bvc->fi);
549
550 /* we have just been created but due to callback ordering the cell is not associated */
551 if (!cell)
552 return;
553
554 switch (state) {
555 case BSSGP_BVCFSM_S_BLOCKED:
556 /* block the corresponding SGSN-side PTP BVCs */
557 dispatch_to_all_sgsn_bvc(cell, BSSGP_BVCFSM_E_REQ_BLOCK, &cause);
558 break;
559 case BSSGP_BVCFSM_S_UNBLOCKED:
560 /* unblock the corresponding SGSN-side PTP BVCs */
561 dispatch_to_all_sgsn_bvc(cell, BSSGP_BVCFSM_E_REQ_UNBLOCK, NULL);
562 break;
563 }
564}
565
Harald Welte61ff2732020-12-08 21:43:22 +0100566/* BVC FSM informs us about BVC-FC PDU receive */
567static void bss_ptp_bvc_fc_bvc(uint16_t nsei, uint16_t bvci, const struct bssgp2_flow_ctrl *fc, void *priv)
568{
569 struct gbproxy_bvc *bss_bvc = priv;
570 struct gbproxy_cell *cell = bss_bvc->cell;
571
572 if (!cell)
573 return;
574
575 /* FIXME: actually split the bandwidth among the SGSNs! */
576
577 dispatch_to_all_sgsn_bvc(cell, BSSGP_BVCFSM_E_REQ_FC_BVC, (void *) fc);
578}
579
Harald Welte5687ae62020-12-05 19:59:45 +0100580static const struct bssgp_bvc_fsm_ops bss_ptp_bvc_fsm_ops = {
581 .reset_notification = bss_ptp_bvc_reset_notif,
582 .state_chg_notification = bss_ptp_bvc_state_chg_notif,
Harald Welte61ff2732020-12-08 21:43:22 +0100583 .rx_fc_bvc = bss_ptp_bvc_fc_bvc,
Harald Welte5687ae62020-12-05 19:59:45 +0100584};
585
586/* BVC FSM informs us about a SGSN-side reset of a PTP BVC */
587static void sgsn_ptp_bvc_reset_notif(uint16_t nsei, uint16_t bvci, const struct gprs_ra_id *ra_id,
588 uint16_t cell_id, uint8_t cause, void *priv)
589{
590 struct gbproxy_bvc *bvc = priv;
591
592 if (!bvc->cell) {
593 LOGPBVC(bvc, LOGL_ERROR, "RESET of PTP BVC on SGSN side for which we have no BSS?\n");
594 return;
595 }
596
597 OSMO_ASSERT(bvc->cell->bss_bvc);
598
599 /* request reset of BSS-facing PTP-BVC */
600 osmo_fsm_inst_dispatch(bvc->cell->bss_bvc->fi, BSSGP_BVCFSM_E_REQ_RESET, &cause);
601}
602
603static const struct bssgp_bvc_fsm_ops sgsn_ptp_bvc_fsm_ops = {
604 .reset_notification = sgsn_ptp_bvc_reset_notif,
605};
606
607/* BVC FSM informs us about a SGSN-side reset of the signaling BVC */
608static void sgsn_sig_bvc_reset_notif(uint16_t nsei, uint16_t bvci, const struct gprs_ra_id *ra_id,
609 uint16_t cell_id, uint8_t cause, void *priv)
610{
611 struct gbproxy_bvc *bvc = priv;
612 struct gbproxy_config *cfg = bvc->nse->cfg;
613 struct gbproxy_nse *bss_nse;
614 unsigned int i;
615
616 /* delete all SGSN-side PTP BVC for this SGSN */
617 gbproxy_cleanup_bvcs(bvc->nse, 0);
618 /* FIXME: what to do about the cells? */
619 /* FIXME: do we really want to RESET all signaling BVC on the BSS and affect all other SGSN? */
620
621 /* we need to trigger generating a reset procedure towards each BSS side signaling BVC */
622 hash_for_each(cfg->bss_nses, i, bss_nse, list) {
623 struct gbproxy_bvc *bss_bvc = gbproxy_bvc_by_bvci(bss_nse, 0);
624 if (!bss_bvc) {
625 LOGPNSE(bss_nse, LOGL_ERROR, "Doesn't have BVC with BVCI=0 ?!?\n");
626 continue;
627 }
628 osmo_fsm_inst_dispatch(bss_bvc->fi, BSSGP_BVCFSM_E_REQ_RESET, &cause);
629 }
630}
631
632const struct bssgp_bvc_fsm_ops sgsn_sig_bvc_fsm_ops = {
633 .reset_notification = sgsn_sig_bvc_reset_notif,
634};
635
636/***********************************************************************
637 * Signaling BVC handling
638 ***********************************************************************/
639
640/* process a BVC-RESET message from the BSS side */
641static int rx_bvc_reset_from_bss(struct gbproxy_nse *nse, struct msgb *msg, struct tlv_parsed *tp)
642{
643 struct gbproxy_bvc *from_bvc = NULL;
644 uint16_t bvci = ntohs(tlvp_val16_unal(tp, BSSGP_IE_BVCI));
645 uint32_t features = 0; // FIXME: make configurable
646
647 LOGPNSE(nse, LOGL_INFO, "Rx BVC-RESET (BVCI=%05u)\n", bvci);
648
Harald Welte1239cf42020-12-02 23:03:22 +0100649 if (bvci == 0) {
650 /* If we receive a BVC reset on the signalling endpoint, we
651 * don't want the SGSN to reset, as the signalling endpoint
652 * is common for all point-to-point BVCs (and thus all BTS) */
Harald Welte55253712020-12-02 23:06:37 +0100653
Harald Welte5687ae62020-12-05 19:59:45 +0100654 from_bvc = gbproxy_bvc_by_bvci(nse, 0);
Harald Welte8cd74402020-12-04 22:24:47 +0100655 if (!from_bvc) {
Harald Welte5687ae62020-12-05 19:59:45 +0100656 from_bvc = gbproxy_bvc_alloc(nse, 0);
657 OSMO_ASSERT(from_bvc);
658 from_bvc->fi = bssgp_bvc_fsm_alloc_sig_sgsn(from_bvc, nse->cfg->nsi, nse->nsei, features);
659 if (!from_bvc->fi) {
660 LOGPNSE(nse, LOGL_ERROR, "Cannot allocate SIG-BVC FSM\n");
661 gbproxy_bvc_free(from_bvc);
662 return -ENOMEM;
Harald Welteac44d6b2020-12-02 22:53:26 +0100663 }
Harald Welte5687ae62020-12-05 19:59:45 +0100664 bssgp_bvc_fsm_set_ops(from_bvc->fi, &bss_sig_bvc_fsm_ops, from_bvc);
665 }
666 } else {
667 from_bvc = gbproxy_bvc_by_bvci(nse, bvci);
668 if (!from_bvc) {
Harald Welteac44d6b2020-12-02 22:53:26 +0100669 /* if a PTP-BVC is reset, and we don't know that
Harald Welte8cd74402020-12-04 22:24:47 +0100670 * PTP-BVCI yet, we should allocate a new bvc */
671 from_bvc = gbproxy_bvc_alloc(nse, bvci);
672 OSMO_ASSERT(from_bvc);
Harald Welte5687ae62020-12-05 19:59:45 +0100673 from_bvc->fi = bssgp_bvc_fsm_alloc_ptp_sgsn(from_bvc, nse->cfg->nsi,
674 nse->nsei, bvci);
675 if (!from_bvc->fi) {
676 LOGPNSE(nse, LOGL_ERROR, "Cannot allocate SIG-BVC FSM\n");
677 gbproxy_bvc_free(from_bvc);
678 return -ENOMEM;
679 }
680 bssgp_bvc_fsm_set_ops(from_bvc->fi, &bss_ptp_bvc_fsm_ops, from_bvc);
Harald Welteac44d6b2020-12-02 22:53:26 +0100681 }
Harald Welte5687ae62020-12-05 19:59:45 +0100682#if 0
Harald Welteac44d6b2020-12-02 22:53:26 +0100683 /* Could have moved to a different NSE */
Harald Welte8cd74402020-12-04 22:24:47 +0100684 if (!check_bvc_nsei(from_bvc, nsei)) {
685 LOGPBVC(from_bvc, LOGL_NOTICE, "moving bvc to NSE(%05u)\n", nsei);
Harald Welteac44d6b2020-12-02 22:53:26 +0100686
Harald Welte5687ae62020-12-05 19:59:45 +0100687 struct gbproxy_nse *nse_new = gbproxy_nse_by_nsei(cfg, nsei, false);
Harald Welteac44d6b2020-12-02 22:53:26 +0100688 if (!nse_new) {
689 LOGP(DGPRS, LOGL_NOTICE, "NSE(%05u) Got PtP BVC reset before signalling reset for "
690 "BVCI=%05u\n", bvci, nsei);
691 bssgp_tx_status(BSSGP_CAUSE_PDU_INCOMP_STATE, NULL, msg);
692 return 0;
693 }
694
Harald Welte8cd74402020-12-04 22:24:47 +0100695 /* Move bvc to different NSE */
696 gbproxy_bvc_move(from_bvc, nse_new);
Harald Welteac44d6b2020-12-02 22:53:26 +0100697 }
Harald Welte5687ae62020-12-05 19:59:45 +0100698#endif
699 /* FIXME: do we need this, if it happens within FSM? */
Harald Welte6c4c6f02020-12-03 15:36:59 +0100700 if (TLVP_PRES_LEN(tp, BSSGP_IE_CELL_ID, 8)) {
Harald Welteac44d6b2020-12-02 22:53:26 +0100701 struct gprs_ra_id raid;
702 /* We have a Cell Identifier present in this
703 * PDU, this means we can extend our local
704 * state information about this particular cell
705 * */
Harald Welte8cd74402020-12-04 22:24:47 +0100706 memcpy(from_bvc->ra, TLVP_VAL(tp, BSSGP_IE_CELL_ID), sizeof(from_bvc->ra));
707 gsm48_parse_ra(&raid, from_bvc->ra);
708 LOGPBVC(from_bvc, LOGL_INFO, "Cell ID %s\n", osmo_rai_name(&raid));
Harald Welteac44d6b2020-12-02 22:53:26 +0100709 }
Harald Welteac44d6b2020-12-02 22:53:26 +0100710 }
Harald Welte5687ae62020-12-05 19:59:45 +0100711 /* hand into FSM for further processing */
712 osmo_fsm_inst_dispatch(from_bvc->fi, BSSGP_BVCFSM_E_RX_RESET, msg);
713 return 0;
Harald Welteac44d6b2020-12-02 22:53:26 +0100714}
715
Harald Welte9f75c352010-04-30 20:26:32 +0200716/* Receive an incoming signalling message from a BSS-side NS-VC */
Harald Welte5687ae62020-12-05 19:59:45 +0100717static int gbprox_rx_sig_from_bss(struct gbproxy_nse *nse, struct msgb *msg, uint16_t ns_bvci)
Harald Welte9f75c352010-04-30 20:26:32 +0200718{
Harald Welteca3620a2010-05-03 16:30:59 +0200719 struct bssgp_normal_hdr *bgph = (struct bssgp_normal_hdr *) msgb_bssgph(msg);
Harald Welte9f75c352010-04-30 20:26:32 +0200720 uint8_t pdu_type = bgph->pdu_type;
Harald Welte5687ae62020-12-05 19:59:45 +0100721 const char *pdut_name = osmo_tlv_prot_msg_name(&osmo_pdef_bssgp, bgph->pdu_type);
722 struct tlv_parsed tp;
Harald Welteca3620a2010-05-03 16:30:59 +0200723 int data_len = msgb_bssgp_len(msg) - sizeof(*bgph);
Harald Welte8cd74402020-12-04 22:24:47 +0100724 struct gbproxy_bvc *from_bvc = NULL;
Harald Welte052d8552020-12-06 16:32:01 +0100725 char log_pfx[32];
Harald Welte5687ae62020-12-05 19:59:45 +0100726 uint16_t ptp_bvci;
727 uint32_t tlli;
Jacob Erlbeck59300642014-09-08 09:04:01 +0200728 int rc;
Harald Welte9f75c352010-04-30 20:26:32 +0200729
Harald Welte5687ae62020-12-05 19:59:45 +0100730 snprintf(log_pfx, sizeof(log_pfx), "NSE(%05u/BSS)-BVC(%05u/??)", nse->nsei, ns_bvci);
731
732 LOGP(DGPRS, LOGL_DEBUG, "%s Rx %s\n", log_pfx, pdut_name);
Harald Welte052d8552020-12-06 16:32:01 +0100733
Harald Weltec471d3d2011-02-06 17:13:12 +0100734 if (ns_bvci != 0 && ns_bvci != 1) {
Harald Welte5687ae62020-12-05 19:59:45 +0100735 LOGP(DGPRS, LOGL_NOTICE, "%s %s BVCI=%05u is not signalling\n", log_pfx, pdut_name, ns_bvci);
Harald Welted651edc2020-12-06 13:35:24 +0100736 return bssgp_tx_status(BSSGP_CAUSE_PROTO_ERR_UNSPEC, NULL, msg);
Harald Welte9f75c352010-04-30 20:26:32 +0200737 }
738
Harald Welted651edc2020-12-06 13:35:24 +0100739 if (!(bssgp_pdu_type_flags(pdu_type) & BSSGP_PDUF_SIG)) {
Harald Welte5687ae62020-12-05 19:59:45 +0100740 LOGP(DGPRS, LOGL_NOTICE, "%s %s not allowed in signalling BVC\n", log_pfx, pdut_name);
Harald Welted651edc2020-12-06 13:35:24 +0100741 return bssgp_tx_status(BSSGP_CAUSE_PROTO_ERR_UNSPEC, NULL, msg);
742 }
743
744 if (!(bssgp_pdu_type_flags(pdu_type) & BSSGP_PDUF_UL)) {
Harald Welte5687ae62020-12-05 19:59:45 +0100745 LOGP(DGPRS, LOGL_NOTICE, "%s %s not allowed in uplink direction\n", log_pfx, pdut_name);
Harald Welted651edc2020-12-06 13:35:24 +0100746 return bssgp_tx_status(BSSGP_CAUSE_PROTO_ERR_UNSPEC, NULL, msg);
Harald Welte9f75c352010-04-30 20:26:32 +0200747 }
748
Harald Welte052d8552020-12-06 16:32:01 +0100749 rc = osmo_tlv_prot_parse(&osmo_pdef_bssgp, &tp, 1, pdu_type, bgph->data, data_len, 0, 0,
750 DGPRS, log_pfx);
751 if (rc < 0) {
Harald Welte5687ae62020-12-05 19:59:45 +0100752 rate_ctr_inc(&nse->cfg->ctrg->ctr[GBPROX_GLOB_CTR_PROTO_ERR_BSS]);
Harald Welte052d8552020-12-06 16:32:01 +0100753 return tx_status_from_tlvp(rc, msg);
754 }
Harald Welte5687ae62020-12-05 19:59:45 +0100755 /* hack to get both msg + tlv_parsed passed via osmo_fsm_inst_dispatch */
756 msgb_bcid(msg) = (void *)&tp;
Harald Welte9f75c352010-04-30 20:26:32 +0200757
Harald Welte5687ae62020-12-05 19:59:45 +0100758 /* special case handling for some PDU types */
Harald Welte9f75c352010-04-30 20:26:32 +0200759 switch (pdu_type) {
Harald Welte5687ae62020-12-05 19:59:45 +0100760 case BSSGP_PDUT_BVC_RESET:
761 /* resolve or create gbproxy_bvc + handlei n BVC-FSM */
762 ptp_bvci = ntohs(tlvp_val16_unal(&tp, BSSGP_IE_BVCI));
763 return rx_bvc_reset_from_bss(nse, msg, &tp);
764 case BSSGP_PDUT_BVC_RESET_ACK:
765 ptp_bvci = ntohs(tlvp_val16_unal(&tp, BSSGP_IE_BVCI));
766 from_bvc = gbproxy_bvc_by_bvci(nse, ptp_bvci);
Harald Welte8cd74402020-12-04 22:24:47 +0100767 if (!from_bvc)
768 goto err_no_bvc;
Harald Welte5687ae62020-12-05 19:59:45 +0100769 return osmo_fsm_inst_dispatch(from_bvc->fi, BSSGP_BVCFSM_E_RX_RESET_ACK, msg);
770 case BSSGP_PDUT_BVC_BLOCK:
771 ptp_bvci = ntohs(tlvp_val16_unal(&tp, BSSGP_IE_BVCI));
772 from_bvc = gbproxy_bvc_by_bvci(nse, ptp_bvci);
773 if (!from_bvc)
774 goto err_no_bvc;
775 return osmo_fsm_inst_dispatch(from_bvc->fi, BSSGP_BVCFSM_E_RX_BLOCK, msg);
776 case BSSGP_PDUT_BVC_UNBLOCK:
777 ptp_bvci = ntohs(tlvp_val16_unal(&tp, BSSGP_IE_BVCI));
778 from_bvc = gbproxy_bvc_by_bvci(nse, ptp_bvci);
779 if (!from_bvc)
780 goto err_no_bvc;
781 return osmo_fsm_inst_dispatch(from_bvc->fi, BSSGP_BVCFSM_E_RX_UNBLOCK, msg);
782 case BSSGP_PDUT_SUSPEND:
783 case BSSGP_PDUT_RESUME:
784 /* FIXME: Implement TLLI Cache. Every SUSPEND/RESUME we must
785 * take record of the TLLI->BVC mapping so we can map
786 * back from TLLI->BVC when the SUSPEND/RESUME-ACK
787 * arrives. Cache should have a timeout of 1-3 seconds
788 * and the ACK should explicitly delete entries. */
789#if 0
790 /* TODO: Validate the RAI for consistency with the RAI
791 * we expect for any of the BVC within this BSS side NSE */
792 memcpy(ra, TLVP_VAL(&tp, BSSGP_IE_ROUTEING_AREA), sizeof(from_bvc->ra));
Harald Welte8cd74402020-12-04 22:24:47 +0100793 gsm48_parse_ra(&raid, from_bvc->ra);
Harald Welte5687ae62020-12-05 19:59:45 +0100794#endif
Harald Welte9f75c352010-04-30 20:26:32 +0200795 break;
Harald Welte5687ae62020-12-05 19:59:45 +0100796 case BSSGP_PDUT_STATUS:
797 /* FIXME: inspect the erroneous PDU IE (if any) and check
798 * if we can extract a TLLI/RNI to route it to the correct SGSN */
799 break;
800 case BSSGP_PDUT_RAN_INFO:
801 case BSSGP_PDUT_RAN_INFO_REQ:
802 case BSSGP_PDUT_RAN_INFO_ACK:
803 case BSSGP_PDUT_RAN_INFO_ERROR:
804 case BSSGP_PDUT_RAN_INFO_APP_ERROR:
805 /* FIXME: route based in RIM Routing IE */
806 rc = bssgp_tx_status(BSSGP_CAUSE_PDU_INCOMP_FEAT, NULL, msg);
807 break;
808 case BSSGP_PDUT_LLC_DISCARD:
809 case BSSGP_PDUT_FLUSH_LL_ACK:
810 /* route based on BVCI + TLLI */
811 ptp_bvci = ntohs(tlvp_val16_unal(&tp, BSSGP_IE_BVCI));
812 tlli = osmo_load32be(TLVP_VAL(&tp, BSSGP_IE_TLLI));
813 from_bvc = gbproxy_bvc_by_bvci(nse, ptp_bvci);
814 if (!from_bvc)
815 goto err_no_bvc;
816 gbprox_bss2sgsn_tlli(from_bvc->cell, msg, tlli, true);
817 break;
818 default:
819 LOGPNSE(nse, LOGL_ERROR, "Rx %s: Implementation missing\n", pdut_name);
Harald Welte44c48302010-05-03 19:22:32 +0200820 break;
Harald Welte9f75c352010-04-30 20:26:32 +0200821 }
822
Harald Welte5687ae62020-12-05 19:59:45 +0100823 return rc;
Harald Welte8cd74402020-12-04 22:24:47 +0100824err_no_bvc:
Harald Welte5687ae62020-12-05 19:59:45 +0100825 LOGPNSE(nse, LOGL_ERROR, "Rx %s: cannot find BVC for BVCI=%05u\n", pdut_name, ptp_bvci);
826 rate_ctr_inc(&nse->cfg->ctrg->ctr[GBPROX_GLOB_CTR_INV_NSEI]);
Jacob Erlbeck17b42b82014-08-29 12:20:15 +0200827 return bssgp_tx_status(BSSGP_CAUSE_INV_MAND_INF, NULL, msg);
Harald Welte9f75c352010-04-30 20:26:32 +0200828}
829
830/* Receive paging request from SGSN, we need to relay to proper BSS */
Harald Welte5687ae62020-12-05 19:59:45 +0100831static int gbprox_rx_paging(struct gbproxy_nse *nse, struct msgb *msg, const char *pdut_name,
832 struct tlv_parsed *tp, uint16_t ns_bvci)
Harald Welte9f75c352010-04-30 20:26:32 +0200833{
Harald Welte5687ae62020-12-05 19:59:45 +0100834 struct gbproxy_config *cfg = nse->cfg;
835 struct gbproxy_bvc *sgsn_bvc, *bss_bvc;
Daniel Willmann5937dfd2020-11-30 17:08:58 +0100836 unsigned int n_nses = 0;
Jacob Erlbeckbc555742013-10-18 14:34:55 +0200837 int errctr = GBPROX_GLOB_CTR_PROTO_ERR_SGSN;
Harald Welte993d3f42020-12-05 10:14:49 +0100838 int i, j;
Harald Welte9f75c352010-04-30 20:26:32 +0200839
Daniel Willmann447ad442020-11-26 18:19:21 +0100840 /* FIXME: Handle paging logic to only page each matching NSE */
841
Harald Welte6c4c6f02020-12-03 15:36:59 +0100842 if (TLVP_PRES_LEN(tp, BSSGP_IE_BVCI, 2)) {
Holger Hans Peter Freytherffd68562012-09-04 20:42:20 +0200843 uint16_t bvci = ntohs(tlvp_val16_unal(tp, BSSGP_IE_BVCI));
Jacob Erlbeckbc555742013-10-18 14:34:55 +0200844 errctr = GBPROX_GLOB_CTR_OTHER_ERR;
Harald Welte5687ae62020-12-05 19:59:45 +0100845 sgsn_bvc = gbproxy_bvc_by_bvci(nse, bvci);
846 if (!sgsn_bvc) {
847 LOGPNSE(nse, LOGL_NOTICE, "Rx %s: unable to route: BVCI=%05u unknown\n",
848 pdut_name, bvci);
Harald Welte3375fa42020-11-23 15:14:20 +0100849 rate_ctr_inc(&cfg->ctrg->ctr[errctr]);
850 return -EINVAL;
851 }
Harald Welte5687ae62020-12-05 19:59:45 +0100852 LOGPBVC(sgsn_bvc, LOGL_INFO, "Rx %s: routing by BVCI\n", pdut_name);
853 return gbprox_relay2peer(msg, sgsn_bvc->cell->bss_bvc, ns_bvci);
Harald Welte6c4c6f02020-12-03 15:36:59 +0100854 } else if (TLVP_PRES_LEN(tp, BSSGP_IE_ROUTEING_AREA, 6)) {
Jacob Erlbeck8f503592014-06-02 10:49:00 +0200855 errctr = GBPROX_GLOB_CTR_INV_RAI;
Harald Welte8cd74402020-12-04 22:24:47 +0100856 /* iterate over all bvcs and dispatch the paging to each matching one */
Harald Welte78db2442020-12-05 00:31:07 +0100857 hash_for_each(cfg->bss_nses, i, nse, list) {
Harald Welte5687ae62020-12-05 19:59:45 +0100858 hash_for_each(nse->bvcs, j, bss_bvc, list) {
859 if (!memcmp(bss_bvc->ra, TLVP_VAL(tp, BSSGP_IE_ROUTEING_AREA), 6)) {
860 LOGPNSE(nse, LOGL_INFO, "Rx %s: routing to NSE (RAI match)\n",
861 pdut_name);
862 gbprox_relay2peer(msg, bss_bvc, ns_bvci);
Daniel Willmann5937dfd2020-11-30 17:08:58 +0100863 n_nses++;
864 /* Only send it once to each NSE */
865 break;
Daniel Willmann447ad442020-11-26 18:19:21 +0100866 }
Harald Welte3375fa42020-11-23 15:14:20 +0100867 }
868 }
Harald Welte6c4c6f02020-12-03 15:36:59 +0100869 } else if (TLVP_PRES_LEN(tp, BSSGP_IE_LOCATION_AREA, 5)) {
Jacob Erlbeck8f503592014-06-02 10:49:00 +0200870 errctr = GBPROX_GLOB_CTR_INV_LAI;
Harald Welte8cd74402020-12-04 22:24:47 +0100871 /* iterate over all bvcs and dispatch the paging to each matching one */
Harald Welte78db2442020-12-05 00:31:07 +0100872 hash_for_each(cfg->bss_nses, i, nse, list) {
Harald Welte5687ae62020-12-05 19:59:45 +0100873 hash_for_each(nse->bvcs, j, bss_bvc, list) {
874 if (!memcmp(bss_bvc->ra, TLVP_VAL(tp, BSSGP_IE_LOCATION_AREA), 5)) {
875 LOGPNSE(nse, LOGL_INFO, "Rx %s: routing to NSE (LAI match)\n",
876 pdut_name);
877 gbprox_relay2peer(msg, bss_bvc, ns_bvci);
Daniel Willmann5937dfd2020-11-30 17:08:58 +0100878 n_nses++;
879 /* Only send it once to each NSE */
880 break;
Daniel Willmann447ad442020-11-26 18:19:21 +0100881 }
Harald Welte3375fa42020-11-23 15:14:20 +0100882 }
883 }
Harald Welte6c4c6f02020-12-03 15:36:59 +0100884 } else if (TLVP_PRES_LEN(tp, BSSGP_IE_BSS_AREA_ID, 1)) {
Harald Welte8cd74402020-12-04 22:24:47 +0100885 /* iterate over all bvcs and dispatch the paging to each matching one */
Harald Welte78db2442020-12-05 00:31:07 +0100886 hash_for_each(cfg->bss_nses, i, nse, list) {
Harald Welte5687ae62020-12-05 19:59:45 +0100887 hash_for_each(nse->bvcs, j, bss_bvc, list) {
888 LOGPNSE(nse, LOGL_INFO, "Rx %s:routing to NSE (broadcast)\n", pdut_name);
889 gbprox_relay2peer(msg, bss_bvc, ns_bvci);
Daniel Willmann5937dfd2020-11-30 17:08:58 +0100890 n_nses++;
891 /* Only send it once to each NSE */
892 break;
Daniel Willmann447ad442020-11-26 18:19:21 +0100893 }
Harald Welte8553f552020-11-24 11:31:13 +0100894 }
895 } else {
Harald Welte5687ae62020-12-05 19:59:45 +0100896 LOGPNSE(nse, LOGL_ERROR, "BSSGP PAGING: unable to route, missing IE\n");
Harald Welte8553f552020-11-24 11:31:13 +0100897 rate_ctr_inc(&cfg->ctrg->ctr[errctr]);
898 }
Harald Welte4cf12e92010-05-13 14:14:56 +0200899
Daniel Willmann5937dfd2020-11-30 17:08:58 +0100900 if (n_nses == 0) {
Harald Welte5687ae62020-12-05 19:59:45 +0100901 LOGPNSE(nse, LOGL_ERROR, "BSSGP PAGING: unable to route, no destination found\n");
Holger Hans Peter Freythereece6272014-08-04 15:42:36 +0200902 rate_ctr_inc(&cfg->ctrg->ctr[errctr]);
Harald Welte9f75c352010-04-30 20:26:32 +0200903 return -EINVAL;
Harald Welte4cf12e92010-05-13 14:14:56 +0200904 }
Harald Welte3375fa42020-11-23 15:14:20 +0100905 return 0;
Harald Welte9f75c352010-04-30 20:26:32 +0200906}
907
Harald Welte0a4050c2010-05-11 10:01:17 +0200908/* Receive an incoming BVC-RESET message from the SGSN */
Harald Welte5687ae62020-12-05 19:59:45 +0100909static int rx_bvc_reset_from_sgsn(struct gbproxy_nse *nse, struct msgb *msg, struct tlv_parsed *tp,
910 uint16_t ns_bvci)
Harald Welte0a4050c2010-05-11 10:01:17 +0200911{
Harald Welte5687ae62020-12-05 19:59:45 +0100912 uint16_t ptp_bvci = ntohs(tlvp_val16_unal(tp, BSSGP_IE_BVCI));
913 struct gbproxy_bvc *from_bvc;
Harald Welte0a4050c2010-05-11 10:01:17 +0200914
Harald Welte5687ae62020-12-05 19:59:45 +0100915 LOGPNSE(nse, LOGL_INFO, "Rx BVC-RESET (BVCI=%05u)\n", ptp_bvci);
Harald Welte0a4050c2010-05-11 10:01:17 +0200916
Harald Welte5687ae62020-12-05 19:59:45 +0100917 if (ptp_bvci == 0) {
918 from_bvc = gbproxy_bvc_by_bvci(nse, 0);
919 OSMO_ASSERT(from_bvc);
920 osmo_fsm_inst_dispatch(from_bvc->fi, BSSGP_BVCFSM_E_RX_RESET, msg);
921 } else {
922 from_bvc = gbproxy_bvc_by_bvci(nse, ptp_bvci);
923 if (!from_bvc) {
924 LOGPNSE(nse, LOGL_ERROR, "Rx BVC-RESET BVCI=%05u: Cannot find BVC\n", ptp_bvci);
925 rate_ctr_inc(&nse->cfg->ctrg->ctr[GBPROX_GLOB_CTR_INV_BVCI]);
926 return bssgp_tx_status(BSSGP_CAUSE_UNKNOWN_BVCI, &ptp_bvci, msg);
Harald Welte0a4050c2010-05-11 10:01:17 +0200927 }
Harald Welte5687ae62020-12-05 19:59:45 +0100928 osmo_fsm_inst_dispatch(from_bvc->fi, BSSGP_BVCFSM_E_RX_RESET, msg);
Daniel Willmann447ad442020-11-26 18:19:21 +0100929 }
Harald Welte0a4050c2010-05-11 10:01:17 +0200930
931 return 0;
932}
933
Harald Welte9f75c352010-04-30 20:26:32 +0200934/* Receive an incoming signalling message from the SGSN-side NS-VC */
Harald Weltebf698332020-12-07 17:48:11 +0100935static int gbprox_rx_sig_from_sgsn(struct gbproxy_nse *nse, struct msgb *msg, uint16_t ns_bvci)
Harald Welte9f75c352010-04-30 20:26:32 +0200936{
Harald Weltebf698332020-12-07 17:48:11 +0100937 struct bssgp_normal_hdr *bgph = (struct bssgp_normal_hdr *) msgb_bssgph(msg);
Harald Welte9f75c352010-04-30 20:26:32 +0200938 uint8_t pdu_type = bgph->pdu_type;
Harald Welte5687ae62020-12-05 19:59:45 +0100939 const char *pdut_name = osmo_tlv_prot_msg_name(&osmo_pdef_bssgp, bgph->pdu_type);
940 struct gbproxy_config *cfg = nse->cfg;
941 struct gbproxy_bvc *sgsn_bvc;
942 struct tlv_parsed tp;
Jacob Erlbeck4b663ac2014-08-21 15:07:11 +0200943 int data_len;
Harald Welte9f75c352010-04-30 20:26:32 +0200944 uint16_t bvci;
Harald Welte052d8552020-12-06 16:32:01 +0100945 char log_pfx[32];
Harald Welte9f75c352010-04-30 20:26:32 +0200946 int rc = 0;
Jacob Erlbeck1e65b0e2014-08-29 13:32:17 +0200947 int cause;
Harald Welte78db2442020-12-05 00:31:07 +0100948 int i;
Harald Welte9f75c352010-04-30 20:26:32 +0200949
Harald Welte5687ae62020-12-05 19:59:45 +0100950 snprintf(log_pfx, sizeof(log_pfx), "NSE(%05u/SGSN)-BVC(%05u/??)", nse->nsei, ns_bvci);
951
952 LOGP(DGPRS, LOGL_DEBUG, "%s Rx %s\n", log_pfx, pdut_name);
Harald Welte052d8552020-12-06 16:32:01 +0100953
Harald Weltec471d3d2011-02-06 17:13:12 +0100954 if (ns_bvci != 0 && ns_bvci != 1) {
Harald Welte052d8552020-12-06 16:32:01 +0100955 LOGP(DGPRS, LOGL_NOTICE, "%s BVCI=%05u is not signalling\n", log_pfx, ns_bvci);
Harald Weltebf698332020-12-07 17:48:11 +0100956 return bssgp_tx_status(BSSGP_CAUSE_PROTO_ERR_UNSPEC, NULL, msg);
Harald Welte9f75c352010-04-30 20:26:32 +0200957 }
958
Harald Welted651edc2020-12-06 13:35:24 +0100959 if (!(bssgp_pdu_type_flags(pdu_type) & BSSGP_PDUF_SIG)) {
Harald Welte5687ae62020-12-05 19:59:45 +0100960 LOGP(DGPRS, LOGL_NOTICE, "%s %s not allowed in signalling BVC\n", log_pfx, pdut_name);
Harald Weltebf698332020-12-07 17:48:11 +0100961 return bssgp_tx_status(BSSGP_CAUSE_PROTO_ERR_UNSPEC, NULL, msg);
Harald Welted651edc2020-12-06 13:35:24 +0100962 }
963
964 if (!(bssgp_pdu_type_flags(pdu_type) & BSSGP_PDUF_DL)) {
Harald Welte5687ae62020-12-05 19:59:45 +0100965 LOGP(DGPRS, LOGL_NOTICE, "%s %s not allowed in downlink direction\n", log_pfx, pdut_name);
Harald Weltebf698332020-12-07 17:48:11 +0100966 return bssgp_tx_status(BSSGP_CAUSE_PROTO_ERR_UNSPEC, NULL, msg);
Harald Welte9f75c352010-04-30 20:26:32 +0200967 }
968
Harald Weltebf698332020-12-07 17:48:11 +0100969 data_len = msgb_bssgp_len(msg) - sizeof(*bgph);
Harald Welte052d8552020-12-06 16:32:01 +0100970
971 rc = osmo_tlv_prot_parse(&osmo_pdef_bssgp, &tp, 1, pdu_type, bgph->data, data_len, 0, 0,
972 DGPRS, log_pfx);
973 if (rc < 0) {
974 rc = tx_status_from_tlvp(rc, msg);
Harald Welte052d8552020-12-06 16:32:01 +0100975 rate_ctr_inc(&cfg->ctrg->ctr[GBPROX_GLOB_CTR_PROTO_ERR_SGSN]);
976 return rc;
977 }
Harald Welte5687ae62020-12-05 19:59:45 +0100978 /* hack to get both msg + tlv_parsed passed via osmo_fsm_inst_dispatch */
979 msgb_bcid(msg) = (void *)&tp;
Harald Welte9f75c352010-04-30 20:26:32 +0200980
981 switch (pdu_type) {
Harald Welte0a4050c2010-05-11 10:01:17 +0200982 case BSSGP_PDUT_BVC_RESET:
Harald Welte5687ae62020-12-05 19:59:45 +0100983 /* resolve or create ggbproxy_bvc + handle in BVC-FSM */
984 bvci = ntohs(tlvp_val16_unal(&tp, BSSGP_IE_BVCI));
985 rc = rx_bvc_reset_from_sgsn(nse, msg, &tp, ns_bvci);
Harald Welte0a4050c2010-05-11 10:01:17 +0200986 break;
Harald Welte9f75c352010-04-30 20:26:32 +0200987 case BSSGP_PDUT_BVC_RESET_ACK:
Daniel Willmann15c9da22020-11-03 21:12:42 +0100988 bvci = ntohs(tlvp_val16_unal(&tp, BSSGP_IE_BVCI));
Harald Welte5687ae62020-12-05 19:59:45 +0100989 sgsn_bvc = gbproxy_bvc_by_bvci(nse, bvci);
990 if (!sgsn_bvc)
991 goto err_no_bvc;
992 rc = osmo_fsm_inst_dispatch(sgsn_bvc->fi, BSSGP_BVCFSM_E_RX_RESET_ACK, msg);
993 break;
994 case BSSGP_PDUT_BVC_BLOCK_ACK:
995 bvci = ntohs(tlvp_val16_unal(&tp, BSSGP_IE_BVCI));
996 sgsn_bvc = gbproxy_bvc_by_bvci(nse, bvci);
997 if (!sgsn_bvc)
998 goto err_no_bvc;
999 rc = osmo_fsm_inst_dispatch(sgsn_bvc->fi, BSSGP_BVCFSM_E_RX_BLOCK_ACK, msg);
1000 break;
1001 case BSSGP_PDUT_BVC_UNBLOCK_ACK:
1002 bvci = ntohs(tlvp_val16_unal(&tp, BSSGP_IE_BVCI));
1003 sgsn_bvc = gbproxy_bvc_by_bvci(nse, bvci);
1004 if (!sgsn_bvc)
1005 goto err_no_bvc;
1006 rc = osmo_fsm_inst_dispatch(sgsn_bvc->fi, BSSGP_BVCFSM_E_RX_UNBLOCK_ACK, msg);
Daniel Willmann15c9da22020-11-03 21:12:42 +01001007 break;
Jacob Erlbeckc1c57d32014-08-28 13:20:39 +02001008 case BSSGP_PDUT_FLUSH_LL:
Harald Welte9f75c352010-04-30 20:26:32 +02001009 /* simple case: BVCI IE is mandatory */
Holger Hans Peter Freytherffd68562012-09-04 20:42:20 +02001010 bvci = ntohs(tlvp_val16_unal(&tp, BSSGP_IE_BVCI));
Harald Welte5687ae62020-12-05 19:59:45 +01001011 sgsn_bvc = gbproxy_bvc_by_bvci(nse, bvci);
1012 if (!sgsn_bvc)
1013 goto err_no_bvc;
1014 if (sgsn_bvc->cell && sgsn_bvc->cell->bss_bvc)
1015 rc = gbprox_relay2peer(msg, sgsn_bvc->cell->bss_bvc, ns_bvci);
Harald Welte9f75c352010-04-30 20:26:32 +02001016 break;
1017 case BSSGP_PDUT_PAGING_PS:
1018 case BSSGP_PDUT_PAGING_CS:
Jacob Erlbeck8f503592014-06-02 10:49:00 +02001019 /* process the paging request (LAI/RAI lookup) */
Harald Welte5687ae62020-12-05 19:59:45 +01001020 rc = gbprox_rx_paging(nse, msg, pdut_name, &tp, ns_bvci);
Harald Welte9f75c352010-04-30 20:26:32 +02001021 break;
1022 case BSSGP_PDUT_STATUS:
Harald Welte0a4050c2010-05-11 10:01:17 +02001023 /* Some exception has occurred */
Jacob Erlbeck1e65b0e2014-08-29 13:32:17 +02001024 cause = *TLVP_VAL(&tp, BSSGP_IE_CAUSE);
Harald Welte5687ae62020-12-05 19:59:45 +01001025 LOGPNSE(nse, LOGL_NOTICE, "Rx STATUS cause=0x%02x(%s) ", cause,
Jacob Erlbeck1e65b0e2014-08-29 13:32:17 +02001026 bssgp_cause_str(cause));
Harald Welte6c4c6f02020-12-03 15:36:59 +01001027 if (TLVP_PRES_LEN(&tp, BSSGP_IE_BVCI, 2)) {
Jacob Erlbeck1e65b0e2014-08-29 13:32:17 +02001028 bvci = ntohs(tlvp_val16_unal(&tp, BSSGP_IE_BVCI));
Daniel Willmann103a7ec2020-12-02 16:08:02 +01001029 LOGPC(DGPRS, LOGL_NOTICE, "BVCI=%05u\n", bvci);
Harald Welte5687ae62020-12-05 19:59:45 +01001030 sgsn_bvc = gbproxy_bvc_by_bvci(nse, bvci);
1031 /* don't send STATUS in response to STATUS if !bvc */
1032 if (sgsn_bvc && sgsn_bvc->cell && sgsn_bvc->cell->bss_bvc)
1033 rc = gbprox_relay2peer(msg, sgsn_bvc->cell->bss_bvc, ns_bvci);
Harald Welte0a4050c2010-05-11 10:01:17 +02001034 } else
1035 LOGPC(DGPRS, LOGL_NOTICE, "\n");
Harald Welte9f75c352010-04-30 20:26:32 +02001036 break;
1037 /* those only exist in the SGSN -> BSS direction */
1038 case BSSGP_PDUT_SUSPEND_ACK:
1039 case BSSGP_PDUT_SUSPEND_NACK:
1040 case BSSGP_PDUT_RESUME_ACK:
1041 case BSSGP_PDUT_RESUME_NACK:
Harald Welte5687ae62020-12-05 19:59:45 +01001042 /* FIXME: handle based on TLLI cache. The RA-ID is not a unique
1043 * criterion, so we have to rely on the TLLI->BVC state created
1044 * while processing the SUSPEND/RESUME in uplink */
1045 /* FIXME: route to SGSN baed on NRI derived from TLLI */
Harald Welte36f98d92011-02-06 13:09:29 +01001046 break;
Harald Welte9f75c352010-04-30 20:26:32 +02001047 case BSSGP_PDUT_SGSN_INVOKE_TRACE:
Harald Weltec8d98ac2020-12-02 20:06:04 +01001048 case BSSGP_PDUT_OVERLOAD:
Harald Welte5687ae62020-12-05 19:59:45 +01001049 LOGPNSE(nse, LOGL_DEBUG, "Rx %s: broadcasting\n", pdut_name);
Harald Welte8cd74402020-12-04 22:24:47 +01001050 /* broadcast to all BSS-side bvcs */
Harald Welte78db2442020-12-05 00:31:07 +01001051 hash_for_each(cfg->bss_nses, i, nse, list) {
Harald Weltec8d98ac2020-12-02 20:06:04 +01001052 gbprox_relay2nse(msg, nse, 0);
1053 }
Harald Welte9f75c352010-04-30 20:26:32 +02001054 break;
Harald Welte5687ae62020-12-05 19:59:45 +01001055 case BSSGP_PDUT_RAN_INFO:
1056 case BSSGP_PDUT_RAN_INFO_REQ:
1057 case BSSGP_PDUT_RAN_INFO_ACK:
1058 case BSSGP_PDUT_RAN_INFO_ERROR:
1059 case BSSGP_PDUT_RAN_INFO_APP_ERROR:
1060 /* FIXME: route based in RIM Routing IE */
Harald Weltebf698332020-12-07 17:48:11 +01001061 rc = bssgp_tx_status(BSSGP_CAUSE_PDU_INCOMP_FEAT, NULL, msg);
Harald Welte5687ae62020-12-05 19:59:45 +01001062 break;
Harald Welte9f75c352010-04-30 20:26:32 +02001063 default:
Harald Welte5687ae62020-12-05 19:59:45 +01001064 LOGPNSE(nse, LOGL_NOTICE, "Rx %s: Not supported\n", pdut_name);
1065 rate_ctr_inc(&cfg->ctrg->ctr[GBPROX_GLOB_CTR_PROTO_ERR_SGSN]);
Harald Weltebf698332020-12-07 17:48:11 +01001066 rc = bssgp_tx_status(BSSGP_CAUSE_PROTO_ERR_UNSPEC, NULL, msg);
Harald Welte9f75c352010-04-30 20:26:32 +02001067 break;
1068 }
1069
1070 return rc;
Harald Welte5687ae62020-12-05 19:59:45 +01001071
Harald Welte8cd74402020-12-04 22:24:47 +01001072err_no_bvc:
Harald Welte5687ae62020-12-05 19:59:45 +01001073 LOGPNSE(nse, LOGL_ERROR, "Rx %s: Cannot find BVC\n", pdut_name);
Holger Hans Peter Freythereece6272014-08-04 15:42:36 +02001074 rate_ctr_inc(&cfg->ctrg-> ctr[GBPROX_GLOB_CTR_INV_RAI]);
Harald Weltebf698332020-12-07 17:48:11 +01001075 return bssgp_tx_status(BSSGP_CAUSE_INV_MAND_INF, NULL, msg);
Harald Welte9f75c352010-04-30 20:26:32 +02001076}
1077
Harald Welte5687ae62020-12-05 19:59:45 +01001078
1079/***********************************************************************
1080 * libosmogb NS/BSSGP integration
1081 ***********************************************************************/
1082
Alexander Couzens82182d02020-09-22 13:21:46 +02001083int gbprox_bssgp_send_cb(void *ctx, struct msgb *msg)
Harald Welte9f75c352010-04-30 20:26:32 +02001084{
Harald Welte672f5c42010-05-03 18:54:58 +02001085 int rc;
Alexander Couzens82182d02020-09-22 13:21:46 +02001086 struct gbproxy_config *cfg = (struct gbproxy_config *) ctx;
1087 struct gprs_ns2_inst *nsi = cfg->nsi;
1088 struct osmo_gprs_ns2_prim nsp = {};
1089
1090 nsp.bvci = msgb_bvci(msg);
1091 nsp.nsei = msgb_nsei(msg);
1092
1093 osmo_prim_init(&nsp.oph, SAP_NS, PRIM_NS_UNIT_DATA, PRIM_OP_REQUEST, msg);
1094 rc = gprs_ns2_recv_prim(nsi, &nsp.oph);
1095
1096 return rc;
1097}
1098
1099/* Main input function for Gb proxy */
1100int gbprox_rcvmsg(void *ctx, struct msgb *msg)
1101{
Alexander Couzens82182d02020-09-22 13:21:46 +02001102 struct gbproxy_config *cfg = (struct gbproxy_config *) ctx;
Harald Welte5687ae62020-12-05 19:59:45 +01001103 uint16_t ns_bvci = msgb_bvci(msg);
1104 uint16_t nsei = msgb_nsei(msg);
1105 struct gbproxy_nse *nse;
Harald Welte9f75c352010-04-30 20:26:32 +02001106
Harald Welted651edc2020-12-06 13:35:24 +01001107 /* ensure minimum length to decode PCU type */
1108 if (msgb_bssgp_len(msg) < sizeof(struct bssgp_normal_hdr))
1109 return bssgp_tx_status(BSSGP_CAUSE_SEM_INCORR_PDU, NULL, msg);
1110
Harald Welte5687ae62020-12-05 19:59:45 +01001111 nse = gbproxy_nse_by_nsei(cfg, nsei, NSE_F_SGSN);
1112 if (nse) {
1113 if (ns_bvci == 0 || ns_bvci == 1)
1114 return gbprox_rx_sig_from_sgsn(nse, msg, ns_bvci);
Harald Welte9f75c352010-04-30 20:26:32 +02001115 else
Harald Welte5687ae62020-12-05 19:59:45 +01001116 return gbprox_rx_ptp_from_sgsn(nse, msg, ns_bvci);
Harald Welte9f75c352010-04-30 20:26:32 +02001117 }
1118
Harald Welte5687ae62020-12-05 19:59:45 +01001119 nse = gbproxy_nse_by_nsei(cfg, nsei, NSE_F_BSS);
1120 if (!nse) {
1121 LOGP(DGPRS, LOGL_NOTICE, "NSE(%05u/BSS) not known -> allocating\n", nsei);
1122 nse = gbproxy_nse_alloc(cfg, nsei, false);
1123 }
1124 if (nse) {
1125 if (ns_bvci == 0 || ns_bvci == 1)
1126 return gbprox_rx_sig_from_bss(nse, msg, ns_bvci);
1127 else
1128 return gbprox_rx_ptp_from_bss(nse, msg, ns_bvci);
1129 }
1130
1131 return 0;
Harald Welte9f75c352010-04-30 20:26:32 +02001132}
Harald Welte85801d02010-05-11 05:49:43 +02001133
Alexander Couzens82182d02020-09-22 13:21:46 +02001134/* TODO: What about handling:
1135 * NS_AFF_CAUSE_VC_FAILURE,
1136 NS_AFF_CAUSE_VC_RECOVERY,
1137 NS_AFF_CAUSE_FAILURE,
1138 NS_AFF_CAUSE_RECOVERY,
1139 osmocom own causes
1140 NS_AFF_CAUSE_SNS_CONFIGURED,
1141 NS_AFF_CAUSE_SNS_FAILURE,
1142 */
Harald Welte1ccbf442010-05-14 11:53:08 +00001143
Alexander Couzens82182d02020-09-22 13:21:46 +02001144void gprs_ns_prim_status_cb(struct gbproxy_config *cfg, struct osmo_gprs_ns2_prim *nsp)
Harald Weltec1c1dd22010-05-11 06:34:24 +02001145{
Harald Welte8cd74402020-12-04 22:24:47 +01001146 /* TODO: bss nsei available/unavailable bssgp_tx_simple_bvci(BSSGP_PDUT_BVC_BLOCK, nsvc->nsei, bvc->bvci, 0);
Alexander Couzens82182d02020-09-22 13:21:46 +02001147 * TODO: sgsn nsei available/unavailable
1148 */
Harald Welte5687ae62020-12-05 19:59:45 +01001149
Harald Welte8cd74402020-12-04 22:24:47 +01001150 struct gbproxy_bvc *bvc;
Harald Welte5687ae62020-12-05 19:59:45 +01001151 struct gbproxy_nse *sgsn_nse;
Harald Weltec1c1dd22010-05-11 06:34:24 +02001152
Alexander Couzens82182d02020-09-22 13:21:46 +02001153 switch (nsp->u.status.cause) {
1154 case NS_AFF_CAUSE_SNS_FAILURE:
1155 case NS_AFF_CAUSE_SNS_CONFIGURED:
1156 break;
Harald Weltec1c1dd22010-05-11 06:34:24 +02001157
Alexander Couzens82182d02020-09-22 13:21:46 +02001158 case NS_AFF_CAUSE_RECOVERY:
1159 LOGP(DPCU, LOGL_NOTICE, "NS-NSE %d became available\n", nsp->nsei);
Harald Welte5687ae62020-12-05 19:59:45 +01001160 sgsn_nse = gbproxy_nse_by_nsei(cfg, nsp->nsei, NSE_F_SGSN);
1161 if (sgsn_nse) {
1162 uint8_t cause = BSSGP_CAUSE_OML_INTERV;
1163 bvc = gbproxy_bvc_by_bvci(sgsn_nse, 0);
1164 if (bvc)
1165 osmo_fsm_inst_dispatch(bvc->fi, BSSGP_BVCFSM_E_REQ_RESET, &cause);
Harald Welte5e106d72011-02-06 16:33:29 +01001166 }
Alexander Couzens82182d02020-09-22 13:21:46 +02001167 break;
1168 case NS_AFF_CAUSE_FAILURE:
Harald Welte5687ae62020-12-05 19:59:45 +01001169#if 0
Harald Welte4bf53ef2020-12-05 17:50:23 +01001170 if (gbproxy_is_sgsn_nsei(cfg, nsp->nsei)) {
Alexander Couzens82182d02020-09-22 13:21:46 +02001171 /* sgsn */
1172 /* TODO: BSVC: block all PtP towards bss */
1173 rate_ctr_inc(&cfg->ctrg->
1174 ctr[GBPROX_GLOB_CTR_RESTART_RESET_SGSN]);
1175 } else {
Daniel Willmann447ad442020-11-26 18:19:21 +01001176 /* bss became unavailable
1177 * TODO: Block all BVC belonging to that NSE */
Harald Welte8cd74402020-12-04 22:24:47 +01001178 bvc = gbproxy_bvc_by_nsei(cfg, nsp->nsei);
1179 if (!bvc) {
Alexander Couzens82182d02020-09-22 13:21:46 +02001180 /* TODO: use primitive name + status cause name */
Harald Welte8cd74402020-12-04 22:24:47 +01001181 LOGP(DGPRS, LOGL_NOTICE, "Received ns2 primitive %d for unknown bvc NSEI=%u\n",
Alexander Couzens82182d02020-09-22 13:21:46 +02001182 nsp->u.status.cause, nsp->nsei);
Harald Welte5e106d72011-02-06 16:33:29 +01001183 break;
1184 }
Alexander Couzens82182d02020-09-22 13:21:46 +02001185
Harald Welte8cd74402020-12-04 22:24:47 +01001186 if (!bvc->blocked)
Alexander Couzens82182d02020-09-22 13:21:46 +02001187 break;
Harald Welte5687ae62020-12-05 19:59:45 +01001188 hash_for_each(cfg->sgsn_nses, _sgsn, sgsn_nse, list) {
1189 bssgp_tx_simple_bvci(BSSGP_PDUT_BVC_BLOCK, sgsn_nse->nsei, bvc->bvci, 0);
1190 }
Harald Weltec1c1dd22010-05-11 06:34:24 +02001191 }
Harald Welte5687ae62020-12-05 19:59:45 +01001192#endif
Alexander Couzens82182d02020-09-22 13:21:46 +02001193 LOGP(DPCU, LOGL_NOTICE, "NS-NSE %d became unavailable\n", nsp->nsei);
1194 break;
1195 default:
Harald Welted97ff682020-11-30 10:55:22 +01001196 LOGP(DPCU, LOGL_NOTICE, "NS: Unknown NS-STATUS.ind cause=%s from NS\n",
1197 gprs_ns2_aff_cause_prim_str(nsp->u.status.cause));
Alexander Couzens82182d02020-09-22 13:21:46 +02001198 break;
Harald Weltec1c1dd22010-05-11 06:34:24 +02001199 }
Alexander Couzens82182d02020-09-22 13:21:46 +02001200}
1201
Alexander Couzens82182d02020-09-22 13:21:46 +02001202/* called by the ns layer */
1203int gprs_ns2_prim_cb(struct osmo_prim_hdr *oph, void *ctx)
1204{
1205 struct osmo_gprs_ns2_prim *nsp;
1206 struct gbproxy_config *cfg = (struct gbproxy_config *) ctx;
Daniel Willmanne8c8ec92020-12-02 19:33:50 +01001207 uintptr_t bvci;
Alexander Couzens82182d02020-09-22 13:21:46 +02001208 int rc = 0;
1209
1210 if (oph->sap != SAP_NS)
1211 return 0;
1212
1213 nsp = container_of(oph, struct osmo_gprs_ns2_prim, oph);
1214
1215 if (oph->operation != PRIM_OP_INDICATION) {
Harald Welted97ff682020-11-30 10:55:22 +01001216 LOGP(DPCU, LOGL_NOTICE, "NS: Unexpected primitive operation %s from NS\n",
1217 get_value_string(osmo_prim_op_names, oph->operation));
Alexander Couzens82182d02020-09-22 13:21:46 +02001218 return 0;
1219 }
1220
1221 switch (oph->primitive) {
1222 case PRIM_NS_UNIT_DATA:
Daniel Willmanne8c8ec92020-12-02 19:33:50 +01001223
Alexander Couzens82182d02020-09-22 13:21:46 +02001224 /* hand the message into the BSSGP implementation */
1225 msgb_bssgph(oph->msg) = oph->msg->l3h;
1226 msgb_bvci(oph->msg) = nsp->bvci;
1227 msgb_nsei(oph->msg) = nsp->nsei;
Daniel Willmanne8c8ec92020-12-02 19:33:50 +01001228 bvci = nsp->bvci | BVC_LOG_CTX_FLAG;
Alexander Couzens82182d02020-09-22 13:21:46 +02001229
Daniel Willmanne8c8ec92020-12-02 19:33:50 +01001230 log_set_context(LOG_CTX_GB_BVC, (void *)bvci);
Alexander Couzens82182d02020-09-22 13:21:46 +02001231 rc = gbprox_rcvmsg(cfg, oph->msg);
Daniel Willmann02f2c342020-11-04 17:32:56 +01001232 msgb_free(oph->msg);
Alexander Couzens82182d02020-09-22 13:21:46 +02001233 break;
1234 case PRIM_NS_STATUS:
1235 gprs_ns_prim_status_cb(cfg, nsp);
1236 break;
1237 default:
Harald Welted97ff682020-11-30 10:55:22 +01001238 LOGP(DPCU, LOGL_NOTICE, "NS: Unknown prim %s %s from NS\n",
1239 gprs_ns2_prim_str(oph->primitive),
1240 get_value_string(osmo_prim_op_names, oph->operation));
Alexander Couzens82182d02020-09-22 13:21:46 +02001241 break;
1242 }
1243
1244 return rc;
Harald Weltec1c1dd22010-05-11 06:34:24 +02001245}
1246
Holger Hans Peter Freythereece6272014-08-04 15:42:36 +02001247void gbprox_reset(struct gbproxy_config *cfg)
Jacob Erlbeck72b401f2013-10-24 12:48:55 +02001248{
Harald Welte78db2442020-12-05 00:31:07 +01001249 struct gbproxy_nse *nse;
1250 struct hlist_node *ntmp;
Harald Welte993d3f42020-12-05 10:14:49 +01001251 int i, j;
Jacob Erlbeck72b401f2013-10-24 12:48:55 +02001252
Harald Welte78db2442020-12-05 00:31:07 +01001253 hash_for_each_safe(cfg->bss_nses, i, ntmp, nse, list) {
Harald Welte993d3f42020-12-05 10:14:49 +01001254 struct gbproxy_bvc *bvc;
1255 struct hlist_node *tmp;
1256 hash_for_each_safe(nse->bvcs, j, tmp, bvc, list)
Harald Welte8cd74402020-12-04 22:24:47 +01001257 gbproxy_bvc_free(bvc);
Daniel Willmann447ad442020-11-26 18:19:21 +01001258
1259 gbproxy_nse_free(nse);
1260 }
Harald Welte5687ae62020-12-05 19:59:45 +01001261 /* FIXME: cells */
1262 /* FIXME: SGSN side BVCs (except signaling) */
Jacob Erlbeck72b401f2013-10-24 12:48:55 +02001263
Holger Hans Peter Freythereece6272014-08-04 15:42:36 +02001264 rate_ctr_group_free(cfg->ctrg);
1265 gbproxy_init_config(cfg);
Jacob Erlbeck72b401f2013-10-24 12:48:55 +02001266}
1267
Holger Hans Peter Freyther18739ea2014-08-04 11:10:09 +02001268int gbproxy_init_config(struct gbproxy_config *cfg)
Jacob Erlbeck4211d792013-10-24 12:48:23 +02001269{
Jacob Erlbeck0d376712014-08-11 19:12:24 +02001270 struct timespec tp;
Jacob Erlbeck9a83d7a2014-09-25 11:17:31 +02001271
Harald Welte78db2442020-12-05 00:31:07 +01001272 hash_init(cfg->bss_nses);
Pau Espin Pedrolb1d1c242018-10-30 17:27:59 +01001273 cfg->ctrg = rate_ctr_group_alloc(tall_sgsn_ctx, &global_ctrg_desc, 0);
Harald Welte26c14652017-07-12 00:25:51 +02001274 if (!cfg->ctrg) {
1275 LOGP(DGPRS, LOGL_ERROR, "Cannot allocate global counter group!\n");
1276 return -1;
1277 }
Pau Espin Pedrol36abead2018-08-17 13:27:20 +02001278 osmo_clock_gettime(CLOCK_REALTIME, &tp);
Harald Weltea54ed462020-12-07 13:12:13 +01001279 osmo_fsm_log_timeouts(true);
Jacob Erlbeck9a83d7a2014-09-25 11:17:31 +02001280
Holger Hans Peter Freyther18739ea2014-08-04 11:10:09 +02001281 return 0;
Jacob Erlbeck4211d792013-10-24 12:48:23 +02001282}