blob: 356bec89ac81cb6c816bc8d6d507a63e4d1ae8ef [file] [log] [blame]
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +02001/* NS-over-IP proxy */
2
Harald Weltee5209642020-12-05 19:59:45 +01003/* (C) 2010-2020 by Harald Welte <laforge@gnumonks.org>
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +02004 * (C) 2010-2013 by On-Waves
5 * (C) 2013 by Holger Hans Peter Freyther
6 * All Rights Reserved
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * 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
11 * (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
16 * GNU Affero General Public License for more details.
17 *
18 * 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/>.
20 *
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>
31#include <arpa/inet.h>
32#include <time.h>
33
Harald Welted2fef952020-12-05 00:31:07 +010034#include <osmocom/core/hashtable.h>
Daniel Willmann8f407b12020-12-02 19:33:50 +010035#include <osmocom/core/logging.h>
Daniel Willmannee834af2020-12-14 16:22:39 +010036#include <osmocom/core/linuxlist.h>
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +020037#include <osmocom/core/talloc.h>
38#include <osmocom/core/select.h>
39#include <osmocom/core/rate_ctr.h>
Daniel Willmann1ac920b2021-02-11 23:51:49 +010040#include <osmocom/core/signal.h>
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +020041#include <osmocom/core/stats.h>
Daniel Willmannd4ab1f92020-12-21 18:53:55 +010042#include <osmocom/core/utils.h>
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +020043
Alexander Couzens951e1332020-09-22 13:21:46 +020044#include <osmocom/gprs/gprs_ns2.h>
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +020045#include <osmocom/gprs/gprs_bssgp.h>
Harald Welte209dc9f2020-12-12 19:02:16 +010046#include <osmocom/gprs/gprs_bssgp2.h>
Alexander Couzens951e1332020-09-22 13:21:46 +020047#include <osmocom/gprs/gprs_bssgp_bss.h>
Harald Weltee5209642020-12-05 19:59:45 +010048#include <osmocom/gprs/bssgp_bvc_fsm.h>
Philipp Maier1c5766b2021-02-09 17:03:03 +010049#include <osmocom/gprs/protocol/gsm_08_18.h>
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +020050
Daniel Willmannd4ab1f92020-12-21 18:53:55 +010051#include <osmocom/gsm/gsm23236.h>
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +020052#include <osmocom/gsm/gsm_utils.h>
53
Oliver Smith29532c22021-01-29 11:13:00 +010054#include "debug.h"
Daniel Willmanna16ecc32021-03-10 09:57:12 +010055#include <osmocom/gbproxy/gb_proxy.h>
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +020056
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +020057#include <osmocom/gsm/protocol/gsm_04_08_gprs.h>
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +020058
59extern void *tall_sgsn_ctx;
60
61static const struct rate_ctr_desc global_ctr_description[] = {
Daniel Willmann99a46ff2021-09-27 15:39:44 +020062 [GBPROX_GLOB_CTR_INV_BVCI] = { "inv-bvci", "Invalid BVC Identifier " },
63 [GBPROX_GLOB_CTR_INV_LAI] = { "inv-lai", "Invalid Location Area Identifier" },
64 [GBPROX_GLOB_CTR_INV_RAI] = { "inv-rai", "Invalid Routing Area Identifier " },
65 [GBPROX_GLOB_CTR_INV_NSEI] = { "inv-nsei", "No BVC established for NSEI " },
66 [GBPROX_GLOB_CTR_PROTO_ERR_BSS] = { "proto-err:bss", "BSSGP protocol error (BSS )" },
67 [GBPROX_GLOB_CTR_PROTO_ERR_SGSN] = { "proto-err:sgsn", "BSSGP protocol error (SGSN)" },
68 [GBPROX_GLOB_CTR_NOT_SUPPORTED_BSS] = { "not-supp:bss", "Feature not supported (BSS )" },
69 [GBPROX_GLOB_CTR_NOT_SUPPORTED_SGSN] = { "not-supp:sgsn", "Feature not supported (SGSN)" },
70 [GBPROX_GLOB_CTR_RESTART_RESET_SGSN] = { "restart:sgsn", "Restarted RESET procedure (SGSN)" },
71 [GBPROX_GLOB_CTR_TX_ERR_SGSN] = { "tx-err:sgsn", "NS Transmission error (SGSN)" },
72 [GBPROX_GLOB_CTR_OTHER_ERR] = { "error", "Other error " },
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +020073};
74
75static const struct rate_ctr_group_desc global_ctrg_desc = {
76 .group_name_prefix = "gbproxy:global",
77 .group_description = "GBProxy Global Statistics",
78 .num_ctr = ARRAY_SIZE(global_ctr_description),
79 .ctr_desc = global_ctr_description,
80 .class_id = OSMO_STATS_CLASS_GLOBAL,
81};
82
Daniel Willmannf8cba652021-02-12 04:59:47 +010083int tx_status(struct gbproxy_nse *nse, uint16_t ns_bvci, enum gprs_bssgp_cause cause, const uint16_t *bvci, const struct msgb *old_msg)
84{
85 int rc;
Harald Weltea0f70732020-12-05 17:50:23 +010086
Daniel Willmannf8cba652021-02-12 04:59:47 +010087 struct msgb *msg = bssgp2_enc_status(cause, bvci, old_msg, nse->max_sdu_len);
88 if (!msg) {
89 LOGPNSE(nse, LOGL_NOTICE, "Unable to encode STATUS message\n");
90 return -ENOMEM;
91 }
92
93 rc = bssgp2_nsi_tx_ptp(nse->cfg->nsi, nse->nsei, ns_bvci, msg, 0);
94 if (rc < 0)
95 LOGPNSE(nse, LOGL_NOTICE, "Unable to send STATUS message\n");
96 return rc;
97}
98
99/* generate BVC-STATUS mess
100age with cause value derived from TLV-parser error */
101static int tx_status_from_tlvp(struct gbproxy_nse *nse, enum osmo_tlv_parser_error tlv_p_err, struct msgb *orig_msg)
Harald Welteec0f8012020-12-06 16:32:01 +0100102{
103 uint8_t bssgp_cause;
104 switch (tlv_p_err) {
105 case OSMO_TLVP_ERR_MAND_IE_MISSING:
106 bssgp_cause = BSSGP_CAUSE_MISSING_MAND_IE;
107 break;
108 default:
109 bssgp_cause = BSSGP_CAUSE_PROTO_ERR_UNSPEC;
110 }
Daniel Willmannf8cba652021-02-12 04:59:47 +0100111 return tx_status(nse, msgb_bvci(orig_msg), bssgp_cause, NULL, orig_msg);
Harald Welteec0f8012020-12-06 16:32:01 +0100112}
113
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +0200114/* strip off the NS header */
115static void strip_ns_hdr(struct msgb *msg)
116{
117 int strip_len = msgb_bssgph(msg) - msg->data;
118 msgb_pull(msg, strip_len);
119}
120
Harald Weltee5209642020-12-05 19:59:45 +0100121#if 0
Harald Welte560bdb32020-12-04 22:24:47 +0100122/* feed a message down the NS-VC associated with the specified bvc */
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +0200123static int gbprox_relay2sgsn(struct gbproxy_config *cfg, struct msgb *old_msg,
124 uint16_t ns_bvci, uint16_t sgsn_nsei)
125{
126 /* create a copy of the message so the old one can
127 * be free()d safely when we return from gbprox_rcvmsg() */
Alexander Couzens951e1332020-09-22 13:21:46 +0200128 struct gprs_ns2_inst *nsi = cfg->nsi;
129 struct osmo_gprs_ns2_prim nsp = {};
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +0200130 struct msgb *msg = bssgp_msgb_copy(old_msg, "msgb_relay2sgsn");
131 int rc;
132
Daniel Willmann3696dce2020-12-02 16:08:02 +0100133 DEBUGP(DGPRS, "NSE(%05u/BSS)-BVC(%05u) proxying BTS->SGSN NSE(%05u/SGSN)\n",
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +0200134 msgb_nsei(msg), ns_bvci, sgsn_nsei);
135
Alexander Couzens951e1332020-09-22 13:21:46 +0200136 nsp.bvci = ns_bvci;
137 nsp.nsei = sgsn_nsei;
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +0200138
139 strip_ns_hdr(msg);
Alexander Couzens951e1332020-09-22 13:21:46 +0200140 osmo_prim_init(&nsp.oph, SAP_NS, PRIM_NS_UNIT_DATA,
141 PRIM_OP_REQUEST, msg);
142 rc = gprs_ns2_recv_prim(nsi, &nsp.oph);
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +0200143 if (rc < 0)
Pau Espin Pedrol56438362021-06-04 18:03:44 +0200144 rate_ctr_inc(rate_ctr_group_get_ctr(cfg->ctrg, GBPROX_GLOB_CTR_TX_ERR_SGSN));
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +0200145 return rc;
146}
Harald Weltee5209642020-12-05 19:59:45 +0100147#endif
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +0200148
Harald Weltee30985e2021-01-28 19:13:19 +0100149/*! Determine the TLLI from the given BSSGP message.
150 * \param[in] bssgp pointer to start of BSSGP header
151 * \param[in] bssgp_len length of BSSGP message in octets
152 * \param[out] tlli TLLI (if any) in host byte order
153 * \returns 1 if TLLI found; 0 if none found; negative on parse error */
154int gprs_gb_parse_tlli(const uint8_t *bssgp, size_t bssgp_len, uint32_t *tlli)
155{
156 const struct bssgp_normal_hdr *bgph;
157 uint8_t pdu_type;
158
159 if (bssgp_len < sizeof(struct bssgp_normal_hdr))
160 return -EINVAL;
161
162 bgph = (struct bssgp_normal_hdr *)bssgp;
163 pdu_type = bgph->pdu_type;
164
165 if (pdu_type == BSSGP_PDUT_UL_UNITDATA ||
166 pdu_type == BSSGP_PDUT_DL_UNITDATA) {
167 const struct bssgp_ud_hdr *budh = (struct bssgp_ud_hdr *)bssgp;
168 if (bssgp_len < sizeof(struct bssgp_ud_hdr))
169 return -EINVAL;
170 *tlli = osmo_load32be((const uint8_t *)&budh->tlli);
171 return 1;
172 } else {
173 const uint8_t *data = bgph->data;
174 size_t data_len = bssgp_len - sizeof(*bgph);
175 struct tlv_parsed tp;
176
177 if (bssgp_tlv_parse(&tp, data, data_len) < 0)
178 return -EINVAL;
179
180 if (TLVP_PRESENT(&tp, BSSGP_IE_TLLI)) {
181 *tlli = osmo_load32be(TLVP_VAL(&tp, BSSGP_IE_TLLI));
182 return 1;
183 }
184 }
185
186 /* No TLLI present in message */
187 return 0;
188}
189
Daniel Willmann76205712020-11-30 17:08:58 +0100190/* feed a message down the NSE */
191static int gbprox_relay2nse(struct msgb *old_msg, struct gbproxy_nse *nse,
Daniel Willmann35f7d332020-11-03 21:11:45 +0100192 uint16_t ns_bvci)
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +0200193{
Daniel Willmanne50550e2020-11-26 18:19:21 +0100194 OSMO_ASSERT(nse);
195 OSMO_ASSERT(nse->cfg);
196
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +0200197 /* create a copy of the message so the old one can
198 * be free()d safely when we return from gbprox_rcvmsg() */
Daniel Willmanne50550e2020-11-26 18:19:21 +0100199 struct gprs_ns2_inst *nsi = nse->cfg->nsi;
Daniel Willmann76205712020-11-30 17:08:58 +0100200 struct msgb *msg = bssgp_msgb_copy(old_msg, "msgb_relay2nse");
Daniel Willmann44fa2012021-02-12 04:55:40 +0100201 uint32_t tlli = 0;
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +0200202 int rc;
203
Daniel Willmann98b1b452020-12-21 10:40:27 +0100204 DEBUGP(DGPRS, "NSE(%05u/%s)-BVC(%05u/??) proxying to NSE(%05u/%s)\n", msgb_nsei(msg),
205 !nse->sgsn_facing ? "SGSN" : "BSS", ns_bvci, nse->nsei, nse->sgsn_facing ? "SGSN" : "BSS");
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +0200206
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +0200207 /* Strip the old NS header, it will be replaced with a new one */
208 strip_ns_hdr(msg);
209
Harald Weltefe059582020-11-18 12:01:46 +0100210 /* TS 48.018 Section 5.4.2: The link selector parameter is
211 * defined in 3GPP TS 48.016. At one side of the Gb interface,
212 * all BSSGP UNITDATA PDUs related to an MS shall be passed with
213 * the same LSP, e.g. the LSP contains the MS's TLLI, to the
214 * underlying network service. */
Daniel Willmann44fa2012021-02-12 04:55:40 +0100215 gprs_gb_parse_tlli(msgb_data(msg), msgb_length(msg), &tlli);
Harald Weltefe059582020-11-18 12:01:46 +0100216
Daniel Willmann44fa2012021-02-12 04:55:40 +0100217 rc = bssgp2_nsi_tx_ptp(nsi, nse->nsei, ns_bvci, msg, tlli);
Daniel Willmann76205712020-11-30 17:08:58 +0100218 /* FIXME: We need a counter group for gbproxy_nse */
219 //if (rc < 0)
Pau Espin Pedrol56438362021-06-04 18:03:44 +0200220 // rate_ctr_inc(rate_ctr_group_get_ctr(bvc->ctrg, GBPROX_PEER_CTR_TX_ERR));
Daniel Willmann76205712020-11-30 17:08:58 +0100221
222 return rc;
223}
224
Harald Welte560bdb32020-12-04 22:24:47 +0100225/* feed a message down the NS-VC associated with the specified bvc */
226static int gbprox_relay2peer(struct msgb *old_msg, struct gbproxy_bvc *bvc,
Daniel Willmann76205712020-11-30 17:08:58 +0100227 uint16_t ns_bvci)
228{
229 int rc;
Harald Welte560bdb32020-12-04 22:24:47 +0100230 struct gbproxy_nse *nse = bvc->nse;
Daniel Willmann76205712020-11-30 17:08:58 +0100231 OSMO_ASSERT(nse);
232
233 rc = gbprox_relay2nse(old_msg, nse, ns_bvci);
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +0200234 if (rc < 0)
Pau Espin Pedrol56438362021-06-04 18:03:44 +0200235 rate_ctr_inc(rate_ctr_group_get_ctr(bvc->ctrg, GBPROX_PEER_CTR_TX_ERR));
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +0200236
237 return rc;
238}
239
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +0200240int bssgp_prim_cb(struct osmo_prim_hdr *oph, void *ctx)
241{
242 return 0;
243}
244
Harald Weltee5209642020-12-05 19:59:45 +0100245
246/***********************************************************************
247 * PTP BVC handling
248 ***********************************************************************/
249
Daniel Willmannd4ab1f92020-12-21 18:53:55 +0100250/* FIXME: Handle the tlli NULL case correctly,
251 * This function should take a generic selector
252 * and choose an sgsn based on that
253 */
254static struct gbproxy_sgsn *gbproxy_select_sgsn(struct gbproxy_config *cfg, const uint32_t *tlli)
255{
256 struct gbproxy_sgsn *sgsn = NULL;
257 struct gbproxy_sgsn *sgsn_avoid = NULL;
258
259 int tlli_type;
260 int16_t nri;
261 bool null_nri = false;
262
263 if (!tlli) {
Daniel Willmann37518b32021-05-27 18:13:36 +0200264 sgsn = gbproxy_sgsn_by_available(cfg);
Daniel Willmannd4ab1f92020-12-21 18:53:55 +0100265 if (!sgsn) {
Daniel Willmann37518b32021-05-27 18:13:36 +0200266 LOGP(DGPRS, LOGL_ERROR, "Could not find any available SGSN\n");
Daniel Willmannd4ab1f92020-12-21 18:53:55 +0100267 return NULL;
268 }
Daniel Willmann37518b32021-05-27 18:13:36 +0200269 LOGPSGSN(sgsn, LOGL_INFO, "Could not get TLLI, using first available SGSN\n");
Daniel Willmannd4ab1f92020-12-21 18:53:55 +0100270 return sgsn;
271 }
272
273 if (cfg->pool.nri_bitlen == 0) {
274 /* Pooling is disabled */
Daniel Willmann37518b32021-05-27 18:13:36 +0200275 sgsn = gbproxy_sgsn_by_available(cfg);
Daniel Willmannd4ab1f92020-12-21 18:53:55 +0100276 if (!sgsn) {
Daniel Willmann37518b32021-05-27 18:13:36 +0200277 LOGP(DGPRS, LOGL_ERROR, "Could not find any available SGSN\n");
Daniel Willmannd4ab1f92020-12-21 18:53:55 +0100278 return NULL;
279 }
280
Daniel Willmann33dcdad2022-10-10 16:29:52 +0200281 LOGPSGSN(sgsn, LOGL_DEBUG, "Pooling disabled, using first available SGSN\n");
Daniel Willmannd4ab1f92020-12-21 18:53:55 +0100282 } else {
283 /* Pooling is enabled, try to use the NRI for routing to an SGSN
284 * See 3GPP TS 23.236 Ch. 5.3.2 */
285 tlli_type = gprs_tlli_type(*tlli);
286 if (tlli_type == TLLI_LOCAL || tlli_type == TLLI_FOREIGN) {
287 /* Only get/use the NRI if tlli type is local */
288 osmo_tmsi_nri_v_get(&nri, *tlli, cfg->pool.nri_bitlen);
289 if (nri >= 0) {
290 /* Get the SGSN for the NRI */
291 sgsn = gbproxy_sgsn_by_nri(cfg, nri, &null_nri);
292 if (sgsn && !null_nri)
293 return sgsn;
294 /* If the NRI is the null NRI, we need to avoid the chosen SGSN */
295 if (null_nri && sgsn) {
296 sgsn_avoid = sgsn;
297 }
298 } else {
299 /* We couldn't get the NRI from the TLLI */
Daniel Willmanncd21afe2021-01-21 18:44:51 +0100300 LOGP(DGPRS, LOGL_ERROR, "Could not extract NRI from local TLLI %08x\n", *tlli);
Daniel Willmannd4ab1f92020-12-21 18:53:55 +0100301 }
Daniel Willmanncd21afe2021-01-21 18:44:51 +0100302 } else {
303 LOGP(DGPRS, LOGL_INFO, "TLLI %08x is neither local nor foreign, not routing by NRI\n", *tlli);
Daniel Willmannd4ab1f92020-12-21 18:53:55 +0100304 }
305 }
306
307 /* If we haven't found an SGSN yet we need to choose one, but avoid the one in sgsn_avoid
308 * NOTE: This function is not stable if the number of SGSNs or allow_attach changes
309 * We could implement TLLI tracking here, but 3GPP TS 23.236 Ch. 5.3.2 (see NOTE) argues that
310 * we can just wait for the MS to reattempt the procedure.
311 */
312 if (!sgsn)
313 sgsn = gbproxy_sgsn_by_tlli(cfg, sgsn_avoid, *tlli);
314
315 if (!sgsn) {
316 LOGP(DGPRS, LOGL_ERROR, "No suitable SGSN found for TLLI %u\n", *tlli);
317 return NULL;
318 }
319
320 return sgsn;
321}
322
323/*! Find the correct gbproxy_bvc given a cell and an SGSN
324 * \param[in] cfg The gbproxy configuration
325 * \param[in] cell The cell the message belongs to
326 * \param[in] tlli An optional TLLI used for tracking
327 * \return Returns 0 on success, otherwise a negative value
328 */
329static struct gbproxy_bvc *gbproxy_select_sgsn_bvc(struct gbproxy_config *cfg, struct gbproxy_cell *cell, const uint32_t *tlli)
330{
331 struct gbproxy_sgsn *sgsn;
332 struct gbproxy_bvc *sgsn_bvc = NULL;
Harald Welte02d7c482020-12-30 12:13:36 +0100333 int i;
Daniel Willmannd4ab1f92020-12-21 18:53:55 +0100334
335 sgsn = gbproxy_select_sgsn(cfg, tlli);
336 if (!sgsn) {
337 LOGPCELL(cell, LOGL_ERROR, "Could not find any SGSN, dropping message!\n");
338 return NULL;
339 }
340
341 /* Get the BVC for this SGSN/NSE */
Harald Welte02d7c482020-12-30 12:13:36 +0100342 for (i = 0; i < ARRAY_SIZE(cell->sgsn_bvc); i++) {
Daniel Willmannd4ab1f92020-12-21 18:53:55 +0100343 sgsn_bvc = cell->sgsn_bvc[i];
344 if (!sgsn_bvc)
345 continue;
346 if (sgsn->nse != sgsn_bvc->nse)
347 continue;
Daniel Willmann5ceeb2b2022-02-23 18:00:48 +0100348 if (!bssgp_bvc_fsm_is_unblocked(sgsn_bvc->fi))
349 continue;
Daniel Willmannd4ab1f92020-12-21 18:53:55 +0100350
351 return sgsn_bvc;
352 }
353
354 /* This shouldn't happen */
Daniel Willmanna648f3c2020-12-28 18:07:27 +0100355 LOGPCELL(cell, LOGL_ERROR, "Could not find matching BVC for SGSN %s, dropping message!\n", sgsn->name);
Daniel Willmannd4ab1f92020-12-21 18:53:55 +0100356 return NULL;
357}
358
359/*! Send a message to the next SGSN, possibly ignoring the null SGSN
360 * route an uplink message on a PTP-BVC to a SGSN using the TLLI
361 * \param[in] cell The cell the message belongs to
362 * \param[in] msg The BSSGP message
363 * \param[in] null_sgsn If not NULL then avoid this SGSN (because this message contains its null NRI)
364 * \param[in] tlli An optional TLLI used for tracking
365 * \return Returns 0 on success, otherwise a negative value
366 */
367static int gbprox_bss2sgsn_tlli(struct gbproxy_cell *cell, struct msgb *msg, const uint32_t *tlli,
Harald Weltee5209642020-12-05 19:59:45 +0100368 bool sig_bvci)
369{
Daniel Willmannd4ab1f92020-12-21 18:53:55 +0100370 struct gbproxy_config *cfg = cell->cfg;
Harald Weltee5209642020-12-05 19:59:45 +0100371 struct gbproxy_bvc *sgsn_bvc;
Harald Weltee5209642020-12-05 19:59:45 +0100372
Daniel Willmannd4ab1f92020-12-21 18:53:55 +0100373 sgsn_bvc = gbproxy_select_sgsn_bvc(cfg, cell, tlli);
374 if (!sgsn_bvc) {
375 LOGPCELL(cell, LOGL_NOTICE, "Could not find any SGSN for TLLI %u, dropping message!\n", *tlli);
376 return -EINVAL;
Harald Weltee5209642020-12-05 19:59:45 +0100377 }
Daniel Willmannd4ab1f92020-12-21 18:53:55 +0100378
379 return gbprox_relay2peer(msg, sgsn_bvc, sig_bvci ? 0 : sgsn_bvc->bvci);
Harald Weltee5209642020-12-05 19:59:45 +0100380}
381
Daniel Willmann22311802021-11-02 11:54:27 +0100382static int gbproxy_decode_bssgp(const struct bssgp_normal_hdr *bgph, int msg_len, struct tlv_parsed *tp, const char *log_pfx)
383{
384 int rc;
385
386 /* UNITDATA PDUs have a different header than the other PDUs */
387 if (bgph->pdu_type == BSSGP_PDUT_UL_UNITDATA || bgph->pdu_type == BSSGP_PDUT_DL_UNITDATA) {
388 const struct bssgp_ud_hdr *budh = (struct bssgp_ud_hdr *) bgph;
389 if (msg_len < sizeof(*budh))
Daniel Willmannf689a8a2021-11-18 15:27:37 +0100390 return OSMO_TLVP_ERR_MAND_IE_MISSING;
Daniel Willmann22311802021-11-02 11:54:27 +0100391 rc = osmo_tlv_prot_parse(&osmo_pdef_bssgp, tp, 1, budh->pdu_type, budh->data,
392 msg_len - sizeof(*budh), 0, 0, DGPRS, log_pfx);
393 /* populate TLLI from the fixed headser into the TLV-parsed array so later code
394 * doesn't have to worry where the TLLI came from */
395 tp->lv[BSSGP_IE_TLLI].len = 4;
396 tp->lv[BSSGP_IE_TLLI].val = (const uint8_t *) &budh->tlli;
397 } else {
398 rc = osmo_tlv_prot_parse(&osmo_pdef_bssgp, tp, 1, bgph->pdu_type, bgph->data,
399 msg_len - sizeof(*bgph), 0, 0, DGPRS, log_pfx);
400 }
401
402 return rc;
403}
404
Daniel Willmann5a148372021-10-29 18:28:13 +0200405static int gbproxy_tlli_from_status_pdu(struct tlv_parsed *tp, uint32_t *tlli, char *log_pfx);
406
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +0200407/* Receive an incoming PTP message from a BSS-side NS-VC */
Harald Weltee5209642020-12-05 19:59:45 +0100408static int gbprox_rx_ptp_from_bss(struct gbproxy_nse *nse, struct msgb *msg, uint16_t ns_bvci)
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +0200409{
Harald Welte278dd272020-12-06 13:35:24 +0100410 struct bssgp_normal_hdr *bgph = (struct bssgp_normal_hdr *) msgb_bssgph(msg);
Harald Weltee5209642020-12-05 19:59:45 +0100411 const char *pdut_name = osmo_tlv_prot_msg_name(&osmo_pdef_bssgp, bgph->pdu_type);
412 struct gbproxy_bvc *bss_bvc;
413 struct tlv_parsed tp;
414 char log_pfx[32];
415 uint32_t tlli;
416 int rc;
417
418 snprintf(log_pfx, sizeof(log_pfx), "NSE(%05u/BSS)-BVC(%05u/??)", nse->nsei, ns_bvci);
419
420 LOGP(DGPRS, LOGL_DEBUG, "%s Rx %s\n", log_pfx, pdut_name);
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +0200421
Daniel Willmann06331ac2020-12-10 17:59:46 +0100422 if (ns_bvci == 0 || ns_bvci == 1) {
Harald Weltee5209642020-12-05 19:59:45 +0100423 LOGP(DGPRS, LOGL_NOTICE, "%s BVCI=%05u is not PTP\n", log_pfx, ns_bvci);
Daniel Willmannf8cba652021-02-12 04:59:47 +0100424 return tx_status(nse, ns_bvci, BSSGP_CAUSE_PROTO_ERR_UNSPEC, NULL, msg);
Harald Welte278dd272020-12-06 13:35:24 +0100425 }
426
427 if (!(bssgp_pdu_type_flags(bgph->pdu_type) & BSSGP_PDUF_PTP)) {
Harald Weltee5209642020-12-05 19:59:45 +0100428 LOGP(DGPRS, LOGL_NOTICE, "%s %s not allowed in PTP BVC\n", log_pfx, pdut_name);
Daniel Willmannf8cba652021-02-12 04:59:47 +0100429 return tx_status(nse, ns_bvci, BSSGP_CAUSE_PROTO_ERR_UNSPEC, NULL, msg);
Harald Welte278dd272020-12-06 13:35:24 +0100430 }
431
432 if (!(bssgp_pdu_type_flags(bgph->pdu_type) & BSSGP_PDUF_UL)) {
Harald Weltee5209642020-12-05 19:59:45 +0100433 LOGP(DGPRS, LOGL_NOTICE, "%s %s not allowed in uplink direction\n", log_pfx, pdut_name);
Daniel Willmannf8cba652021-02-12 04:59:47 +0100434 return tx_status(nse, ns_bvci, BSSGP_CAUSE_PROTO_ERR_UNSPEC, NULL, msg);
Harald Welte278dd272020-12-06 13:35:24 +0100435 }
436
Harald Weltee5209642020-12-05 19:59:45 +0100437 bss_bvc = gbproxy_bvc_by_bvci(nse, ns_bvci);
438 if (!bss_bvc) {
439 LOGP(DGPRS, LOGL_NOTICE, "%s %s - Didn't find BVC for PTP message, discarding\n",
440 log_pfx, pdut_name);
Daniel Willmannf8cba652021-02-12 04:59:47 +0100441 return tx_status(nse, ns_bvci, BSSGP_CAUSE_UNKNOWN_BVCI, &ns_bvci, msg);
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +0200442 }
443
Daniel Willmann22311802021-11-02 11:54:27 +0100444 rc = gbproxy_decode_bssgp(bgph, msgb_bssgp_len(msg), &tp, log_pfx);
Harald Weltee5209642020-12-05 19:59:45 +0100445 if (rc < 0) {
Pau Espin Pedrol56438362021-06-04 18:03:44 +0200446 rate_ctr_inc(rate_ctr_group_get_ctr(nse->cfg->ctrg, GBPROX_GLOB_CTR_PROTO_ERR_BSS));
Daniel Willmannf8cba652021-02-12 04:59:47 +0100447 return tx_status_from_tlvp(nse, rc, msg);
Harald Weltee5209642020-12-05 19:59:45 +0100448 }
Harald Welte85a40272020-12-08 21:43:22 +0100449 /* hack to get both msg + tlv_parsed passed via osmo_fsm_inst_dispatch */
450 msgb_bcid(msg) = (void *)&tp;
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +0200451
Harald Weltee5209642020-12-05 19:59:45 +0100452 switch (bgph->pdu_type) {
453 case BSSGP_PDUT_UL_UNITDATA:
454 case BSSGP_PDUT_RA_CAPA_UPDATE:
455 case BSSGP_PDUT_FLOW_CONTROL_MS:
456 case BSSGP_PDUT_DOWNLOAD_BSS_PFC:
457 case BSSGP_PDUT_CREATE_BSS_PFC_ACK:
458 case BSSGP_PDUT_CREATE_BSS_PFC_NACK:
459 case BSSGP_PDUT_MODIFY_BSS_PFC_ACK:
460 case BSSGP_PDUT_DELETE_BSS_PFC_ACK:
461 case BSSGP_PDUT_FLOW_CONTROL_PFC:
462 case BSSGP_PDUT_DELETE_BSS_PFC_REQ:
463 case BSSGP_PDUT_PS_HO_REQUIRED:
464 case BSSGP_PDUT_PS_HO_REQUEST_ACK:
465 case BSSGP_PDUT_PS_HO_REQUEST_NACK:
466 case BSSGP_PDUT_PS_HO_COMPLETE:
467 case BSSGP_PDUT_PS_HO_CANCEL:
468 /* We can route based on TLLI-NRI */
469 tlli = osmo_load32be(TLVP_VAL(&tp, BSSGP_IE_TLLI));
Daniel Willmannd4ab1f92020-12-21 18:53:55 +0100470 rc = gbprox_bss2sgsn_tlli(bss_bvc->cell, msg, &tlli, false);
Harald Weltee5209642020-12-05 19:59:45 +0100471 break;
472 case BSSGP_PDUT_RADIO_STATUS:
473 if (TLVP_PRESENT(&tp, BSSGP_IE_TLLI)) {
474 tlli = osmo_load32be(TLVP_VAL(&tp, BSSGP_IE_TLLI));
Daniel Willmannd4ab1f92020-12-21 18:53:55 +0100475 rc = gbprox_bss2sgsn_tlli(bss_bvc->cell, msg, &tlli, false);
Harald Weltee5209642020-12-05 19:59:45 +0100476 } else if (TLVP_PRESENT(&tp, BSSGP_IE_TMSI)) {
477 /* we treat the TMSI like a TLLI and extract the NRI from it */
478 tlli = osmo_load32be(TLVP_VAL(&tp, BSSGP_IE_TMSI));
Daniel Willmann8b3ed292021-01-21 18:46:51 +0100479 /* Convert the TMSI into a FOREIGN TLLI so it is routed appropriately */
480 tlli = gprs_tmsi2tlli(tlli, TLLI_FOREIGN);
Daniel Willmannd4ab1f92020-12-21 18:53:55 +0100481 rc = gbprox_bss2sgsn_tlli(bss_bvc->cell, msg, &tlli, false);
Harald Weltee5209642020-12-05 19:59:45 +0100482 } else if (TLVP_PRESENT(&tp, BSSGP_IE_IMSI)) {
Daniel Willmann5193f222021-01-11 05:00:46 +0100483 /* FIXME: Use the IMSI as selector? */
Daniel Willmannd4ab1f92020-12-21 18:53:55 +0100484 rc = gbprox_bss2sgsn_tlli(bss_bvc->cell, msg, NULL, false);
Harald Weltee5209642020-12-05 19:59:45 +0100485 } else
486 LOGPBVC(bss_bvc, LOGL_ERROR, "Rx RADIO-STATUS without any of the conditional IEs\n");
487 break;
488 case BSSGP_PDUT_DUMMY_PAGING_PS_RESP:
489 case BSSGP_PDUT_PAGING_PS_REJECT:
Daniel Willmann5614e572021-01-18 18:38:27 +0100490 {
491 /* Route according to IMSI<->NSE cache entry */
492 struct osmo_mobile_identity mi;
493 const uint8_t *mi_data = TLVP_VAL(&tp, BSSGP_IE_IMSI);
494 uint8_t mi_len = TLVP_LEN(&tp, BSSGP_IE_IMSI);
495 osmo_mobile_identity_decode(&mi, mi_data, mi_len, false);
Daniel Willmann361d0b52021-07-09 17:44:30 +0200496 nse = gbproxy_nse_by_imsi(nse->cfg, mi.imsi, CACHE_USAGE_PAGING);
Daniel Willmann5614e572021-01-18 18:38:27 +0100497 if (nse) {
498 OSMO_ASSERT(nse->sgsn_facing);
499 rc = gbprox_relay2nse(msg, nse, ns_bvci);
500 } else {
Daniel Willmann82669182021-01-19 11:37:55 +0100501 LOGPBVC(bss_bvc, LOGL_ERROR, "Rx unmatched %s with IMSI %s\n", pdut_name, mi.imsi);
Daniel Willmann5614e572021-01-18 18:38:27 +0100502 }
Harald Weltee5209642020-12-05 19:59:45 +0100503 break;
Daniel Willmann5614e572021-01-18 18:38:27 +0100504 }
Harald Weltee5209642020-12-05 19:59:45 +0100505 case BSSGP_PDUT_FLOW_CONTROL_BVC:
Harald Welte85a40272020-12-08 21:43:22 +0100506 osmo_fsm_inst_dispatch(bss_bvc->fi, BSSGP_BVCFSM_E_RX_FC_BVC, msg);
Harald Weltee5209642020-12-05 19:59:45 +0100507 break;
508 case BSSGP_PDUT_STATUS:
Daniel Willmann5a148372021-10-29 18:28:13 +0200509 {
510 struct gbproxy_sgsn *sgsn;
511 /* Check if the status needs to be terminated locally */
512 uint8_t cause = *TLVP_VAL(&tp, BSSGP_IE_CAUSE);
513
514 LOGPNSE(nse, LOGL_NOTICE, "Rx STATUS cause=0x%02x(%s)\n", cause,
515 bssgp_cause_str(cause));
516
517 if (gbproxy_tlli_from_status_pdu(&tp, &tlli, log_pfx) == 0)
518 sgsn = gbproxy_select_sgsn(nse->cfg, &tlli);
519 else
520 sgsn = gbproxy_select_sgsn(nse->cfg, NULL);
521
522 if (!sgsn) {
523 rc = -EINVAL;
Harald Weltee5209642020-12-05 19:59:45 +0100524 break;
Daniel Willmann5a148372021-10-29 18:28:13 +0200525 }
526
527 rc = gbprox_relay2nse(msg, sgsn->nse, ns_bvci);
Harald Weltee5209642020-12-05 19:59:45 +0100528 break;
529 }
Daniel Willmann5a148372021-10-29 18:28:13 +0200530 }
Harald Weltee5209642020-12-05 19:59:45 +0100531
Daniel Willmannd71aa6b2022-02-28 18:19:27 +0100532 if (rc < 0)
533 rate_ctr_inc(rate_ctr_group_get_ctr(bss_bvc->ctrg, GBPROX_PEER_CTR_FWD_FROM_BSS_ERR));
534
Oliver Smithc44b50c2023-07-13 13:23:27 +0200535 /* avoid a dangling pointer from heap to stack (see above "hack" to set it to &tp) */
536 msgb_bcid(msg) = 0;
Harald Weltee5209642020-12-05 19:59:45 +0100537 return 0;
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +0200538}
539
540/* Receive an incoming PTP message from a SGSN-side NS-VC */
Harald Weltee5209642020-12-05 19:59:45 +0100541static int gbprox_rx_ptp_from_sgsn(struct gbproxy_nse *nse, struct msgb *msg, uint16_t ns_bvci)
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +0200542{
Harald Welte278dd272020-12-06 13:35:24 +0100543 struct bssgp_normal_hdr *bgph = (struct bssgp_normal_hdr *) msgb_bssgph(msg);
Harald Weltee5209642020-12-05 19:59:45 +0100544 const char *pdut_name = osmo_tlv_prot_msg_name(&osmo_pdef_bssgp, bgph->pdu_type);
545 struct gbproxy_bvc *sgsn_bvc, *bss_bvc;
Harald Welte85a40272020-12-08 21:43:22 +0100546 struct tlv_parsed tp;
Harald Weltee5209642020-12-05 19:59:45 +0100547 char log_pfx[32];
Harald Welte85a40272020-12-08 21:43:22 +0100548 int rc;
Harald Weltee5209642020-12-05 19:59:45 +0100549
550 snprintf(log_pfx, sizeof(log_pfx), "NSE(%05u/SGSN)-BVC(%05u/??)", nse->nsei, ns_bvci);
551
552 LOGP(DGPRS, LOGL_DEBUG, "%s Rx %s\n", log_pfx, pdut_name);
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +0200553
Daniel Willmann06331ac2020-12-10 17:59:46 +0100554 if (ns_bvci == 0 || ns_bvci == 1) {
Harald Weltee5209642020-12-05 19:59:45 +0100555 LOGP(DGPRS, LOGL_NOTICE, "%s BVCI is not PTP\n", log_pfx);
Daniel Willmannf8cba652021-02-12 04:59:47 +0100556 return tx_status(nse, ns_bvci, BSSGP_CAUSE_PROTO_ERR_UNSPEC, NULL, msg);
Harald Welte278dd272020-12-06 13:35:24 +0100557 }
558
559 if (!(bssgp_pdu_type_flags(bgph->pdu_type) & BSSGP_PDUF_PTP)) {
Harald Weltee5209642020-12-05 19:59:45 +0100560 LOGP(DGPRS, LOGL_NOTICE, "%s %s not allowed in PTP BVC\n", log_pfx, pdut_name);
Daniel Willmannf8cba652021-02-12 04:59:47 +0100561 return tx_status(nse, ns_bvci, BSSGP_CAUSE_PROTO_ERR_UNSPEC, NULL, msg);
Harald Welte278dd272020-12-06 13:35:24 +0100562 }
563
564 if (!(bssgp_pdu_type_flags(bgph->pdu_type) & BSSGP_PDUF_DL)) {
Harald Weltee5209642020-12-05 19:59:45 +0100565 LOGP(DGPRS, LOGL_NOTICE, "%s %s not allowed in downlink direction\n", log_pfx, pdut_name);
Daniel Willmannf8cba652021-02-12 04:59:47 +0100566 return tx_status(nse, ns_bvci, BSSGP_CAUSE_PROTO_ERR_UNSPEC, NULL, msg);
Harald Welte278dd272020-12-06 13:35:24 +0100567 }
568
Harald Weltee5209642020-12-05 19:59:45 +0100569 sgsn_bvc = gbproxy_bvc_by_bvci(nse, ns_bvci);
570 if (!sgsn_bvc) {
571 LOGP(DGPRS, LOGL_NOTICE, "%s %s - Didn't find BVC for for PTP message, discarding\n",
572 log_pfx, pdut_name);
Pau Espin Pedrol56438362021-06-04 18:03:44 +0200573 rate_ctr_inc(rate_ctr_group_get_ctr(nse->cfg->ctrg, GBPROX_GLOB_CTR_INV_BVCI));
Daniel Willmannf8cba652021-02-12 04:59:47 +0100574 return tx_status(nse, ns_bvci, BSSGP_CAUSE_UNKNOWN_BVCI, &ns_bvci, msg);
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +0200575 }
576
Harald Weltee5209642020-12-05 19:59:45 +0100577 if (!bssgp_bvc_fsm_is_unblocked(sgsn_bvc->fi)) {
578 LOGPBVC(sgsn_bvc, LOGL_NOTICE, "Rx %s: Dropping on blocked BVC\n", pdut_name);
Pau Espin Pedrol56438362021-06-04 18:03:44 +0200579 rate_ctr_inc(rate_ctr_group_get_ctr(sgsn_bvc->ctrg, GBPROX_PEER_CTR_DROPPED));
Daniel Willmannf8cba652021-02-12 04:59:47 +0100580 return tx_status(nse, ns_bvci, BSSGP_CAUSE_BVCI_BLOCKED, &ns_bvci, msg);
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +0200581 }
Harald Welte85a40272020-12-08 21:43:22 +0100582
Daniel Willmann22311802021-11-02 11:54:27 +0100583 rc = gbproxy_decode_bssgp(bgph, msgb_bssgp_len(msg), &tp, log_pfx);
Harald Welte85a40272020-12-08 21:43:22 +0100584 if (rc < 0) {
Daniel Willmanncfb6f172021-11-02 11:55:06 +0100585 rate_ctr_inc(rate_ctr_group_get_ctr(nse->cfg->ctrg, GBPROX_GLOB_CTR_PROTO_ERR_SGSN));
Daniel Willmannf8cba652021-02-12 04:59:47 +0100586 return tx_status_from_tlvp(nse, rc, msg);
Harald Welte85a40272020-12-08 21:43:22 +0100587 }
588 /* hack to get both msg + tlv_parsed passed via osmo_fsm_inst_dispatch */
589 msgb_bcid(msg) = (void *)&tp;
590
Harald Weltee5209642020-12-05 19:59:45 +0100591 OSMO_ASSERT(sgsn_bvc->cell);
592 bss_bvc = sgsn_bvc->cell->bss_bvc;
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +0200593
Harald Welte85a40272020-12-08 21:43:22 +0100594 switch (bgph->pdu_type) {
595 case BSSGP_PDUT_FLOW_CONTROL_BVC_ACK:
596 return osmo_fsm_inst_dispatch(sgsn_bvc->fi, BSSGP_BVCFSM_E_RX_FC_BVC_ACK, msg);
Daniel Willmann5614e572021-01-18 18:38:27 +0100597 case BSSGP_PDUT_DUMMY_PAGING_PS:
598 case BSSGP_PDUT_PAGING_PS:
599 {
600 /* Cache the IMSI<->NSE to route PAGING REJECT */
601 struct osmo_mobile_identity mi;
602 const uint8_t *mi_data = TLVP_VAL(&tp, BSSGP_IE_IMSI);
603 uint8_t mi_len = TLVP_LEN(&tp, BSSGP_IE_IMSI);
604 osmo_mobile_identity_decode(&mi, mi_data, mi_len, false);
Daniel Willmann361d0b52021-07-09 17:44:30 +0200605 gbproxy_imsi_cache_update(nse, mi.imsi, CACHE_USAGE_PAGING);
Daniel Willmann5614e572021-01-18 18:38:27 +0100606 break;
Harald Welte85a40272020-12-08 21:43:22 +0100607 }
Daniel Willmann5614e572021-01-18 18:38:27 +0100608 default:
609 break;
610 }
Daniel Willmannd71aa6b2022-02-28 18:19:27 +0100611 rc = gbprox_relay2peer(msg, bss_bvc, bss_bvc->bvci);
Harald Welte85a40272020-12-08 21:43:22 +0100612
Daniel Willmannd71aa6b2022-02-28 18:19:27 +0100613 if (rc < 0)
614 rate_ctr_inc(rate_ctr_group_get_ctr(bss_bvc->ctrg, GBPROX_PEER_CTR_FWD_FROM_SGSN_ERR));
615
616 return rc;
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +0200617}
618
Harald Weltee5209642020-12-05 19:59:45 +0100619/***********************************************************************
620 * BVC FSM call-backs
621 ***********************************************************************/
Harald Welte7df1e5a2020-12-02 22:53:26 +0100622
Harald Weltee5209642020-12-05 19:59:45 +0100623/* helper function to dispatch a FSM event to all SGSN-side BVC FSMs of a cell */
624static void dispatch_to_all_sgsn_bvc(struct gbproxy_cell *cell, uint32_t event, void *priv)
625{
626 unsigned int i;
627
628 for (i = 0; i < ARRAY_SIZE(cell->sgsn_bvc); i++) {
629 struct gbproxy_bvc *sgsn_bvc = cell->sgsn_bvc[i];
630 if (!sgsn_bvc)
631 continue;
632 osmo_fsm_inst_dispatch(sgsn_bvc->fi, event, priv);
633 }
634}
635
636/* BVC FSM informs us about a BSS-side reset of the signaling BVC */
637static void bss_sig_bvc_reset_notif(uint16_t nsei, uint16_t bvci, const struct gprs_ra_id *ra_id,
638 uint16_t cell_id, uint8_t cause, void *priv)
639{
640 struct gbproxy_bvc *sig_bvc = priv;
641 struct gbproxy_nse *nse = sig_bvc->nse;
642 struct gbproxy_bvc *ptp_bvc;
643 unsigned int i;
644
645 /* BLOCK all SGSN-side PTP BVC within this NSE */
646 hash_for_each(nse->bvcs, i, ptp_bvc, list) {
647 if (ptp_bvc == sig_bvc)
648 continue;
649 OSMO_ASSERT(ptp_bvc->cell);
650
651 dispatch_to_all_sgsn_bvc(ptp_bvc->cell, BSSGP_BVCFSM_E_REQ_BLOCK, &cause);
Harald Weltef9e149b2020-12-02 23:29:38 +0100652 }
Harald Welte7df1e5a2020-12-02 22:53:26 +0100653
Harald Weltee5209642020-12-05 19:59:45 +0100654 /* Delete all BSS-side PTP BVC within this NSE */
655 gbproxy_cleanup_bvcs(nse, 0);
656
657 /* TODO: we keep the "CELL" around for now, re-connecting it to
658 * any (later) new PTP-BVC for that BVCI. Not sure if that's the
659 * best idea ? */
660}
661
662/* forward declaration */
663static const struct bssgp_bvc_fsm_ops sgsn_ptp_bvc_fsm_ops;
664
665static const struct bssgp_bvc_fsm_ops bss_sig_bvc_fsm_ops = {
666 .reset_notification = bss_sig_bvc_reset_notif,
667};
668
669/* BVC FSM informs us about a BSS-side reset of a PTP BVC */
670static void bss_ptp_bvc_reset_notif(uint16_t nsei, uint16_t bvci, const struct gprs_ra_id *ra_id,
671 uint16_t cell_id, uint8_t cause, void *priv)
672{
673 struct gbproxy_bvc *bvc = priv;
674 struct gbproxy_config *cfg = bvc->nse->cfg;
Harald Welte664c24e2020-12-12 15:01:17 +0100675 struct gbproxy_nse *sgsn_nse;
Harald Weltee5209642020-12-05 19:59:45 +0100676 unsigned int i;
677
678 OSMO_ASSERT(bvci != 0);
679
680 if (!bvc->cell) {
681 /* see if we have a CELL dangling around */
682 bvc->cell = gbproxy_cell_by_bvci(cfg, bvci);
683 if (bvc->cell) {
684 /* the CELL already exists. This means either it * was created before at an
685 * earlier PTP BVC-RESET, or that there are non-unique BVCIs and hence a
686 * malconfiguration */
687 if (bvc->cell->bss_bvc) {
688 LOGPBVC(bvc, LOGL_NOTICE, "Rx BVC-RESET via this NSE, but CELL already "
689 "has BVC on NSEI=%05u\n", bvc->cell->bss_bvc->nse->nsei);
690 LOGPBVC(bvc->cell->bss_bvc, LOGL_NOTICE, "Destroying due to conflicting "
691 "BVCI configuration (new NSEI=%05u)!\n", bvc->nse->nsei);
692 gbproxy_bvc_free(bvc->cell->bss_bvc);
Daniel Willmann28ec0e32021-12-06 16:47:22 +0100693 bvc->cell = NULL;
694 } else {
695 LOGPBVC(bvc, LOGL_ERROR, "Found cell without BSS BVC, this should not happen!");
Harald Weltee5209642020-12-05 19:59:45 +0100696 }
Harald Weltee5209642020-12-05 19:59:45 +0100697 }
698 }
699
700 if (!bvc->cell) {
Harald Weltee5209642020-12-05 19:59:45 +0100701 /* if we end up here, it means this is the first time we received a BVC-RESET
702 * for this BVC. We need to create the 'cell' data structure and the SGSN-side
703 * BVC counterparts */
704
Philipp Maiere4597ec2021-02-09 16:02:00 +0100705 bvc->cell = gbproxy_cell_alloc(cfg, bvci, ra_id, cell_id);
Harald Weltee5209642020-12-05 19:59:45 +0100706 OSMO_ASSERT(bvc->cell);
707
708 /* link us to the cell and vice-versa */
709 bvc->cell->bss_bvc = bvc;
Harald Welte664c24e2020-12-12 15:01:17 +0100710 }
Harald Weltee5209642020-12-05 19:59:45 +0100711
Daniel Willmann6701d272021-04-08 08:39:12 +0200712 /* Ensure we have the correct RA/CELL ID */
713 if (!gsm48_ra_equal(&bvc->cell->id.raid, ra_id)) {
714 LOGPBVC(bvc, LOGL_NOTICE, "RAID changed from %s to %s, updating cell\n", osmo_rai_name(&bvc->cell->id.raid), osmo_rai_name(ra_id));
715 memcpy(&bvc->cell->id.raid, ra_id, sizeof(*ra_id));
716 }
717 if (bvc->cell->id.cid != cell_id) {
718 LOGPBVC(bvc, LOGL_NOTICE, "CellID changed from %05d to %05d, updating cell\n", bvc->cell->id.cid, cell_id);
719 bvc->cell->id.cid = cell_id;
720 }
721
722 /* Reallocate SGSN-side BVCs of the cell, and reset them
Daniel Willmannf9902c52021-11-12 15:52:03 +0100723 * Removing and reallocating is needed because the ra_id/cell_id might have changed */
Harald Welte664c24e2020-12-12 15:01:17 +0100724 hash_for_each(cfg->sgsn_nses, i, sgsn_nse, list) {
725 struct gbproxy_bvc *sgsn_bvc = gbproxy_bvc_by_bvci(sgsn_nse, bvci);
Daniel Willmanndc763fd2021-09-24 16:45:38 +0200726 if (!sgsn_bvc)
727 sgsn_bvc = gbproxy_bvc_by_bvci_inactive(sgsn_nse, bvci);
Harald Welte664c24e2020-12-12 15:01:17 +0100728 if (sgsn_bvc)
Daniel Willmann6701d272021-04-08 08:39:12 +0200729 gbproxy_bvc_free(sgsn_bvc);
Harald Weltee5209642020-12-05 19:59:45 +0100730
Daniel Willmann6701d272021-04-08 08:39:12 +0200731 sgsn_bvc = gbproxy_bvc_alloc(sgsn_nse, bvci);
732 OSMO_ASSERT(sgsn_bvc);
733 sgsn_bvc->cell = bvc->cell;
Daniel Willmann6701d272021-04-08 08:39:12 +0200734 sgsn_bvc->fi = bssgp_bvc_fsm_alloc_ptp_bss(sgsn_bvc, cfg->nsi, sgsn_nse->nsei,
735 bvci, ra_id, cell_id);
736 OSMO_ASSERT(sgsn_bvc->fi);
737 bssgp_bvc_fsm_set_max_pdu_len(sgsn_bvc->fi, sgsn_nse->max_sdu_len);
738 bssgp_bvc_fsm_set_ops(sgsn_bvc->fi, &sgsn_ptp_bvc_fsm_ops, sgsn_bvc);
739 gbproxy_cell_add_sgsn_bvc(bvc->cell, sgsn_bvc);
Harald Weltee5209642020-12-05 19:59:45 +0100740 }
741
742 /* Trigger outbound BVC-RESET procedure toward each SGSN */
743 dispatch_to_all_sgsn_bvc(bvc->cell, BSSGP_BVCFSM_E_REQ_RESET, &cause);
744}
745
746/* BVC FSM informs us about a BSS-side FSM state change */
747static void bss_ptp_bvc_state_chg_notif(uint16_t nsei, uint16_t bvci, int old_state, int state, void *priv)
748{
749 struct gbproxy_bvc *bvc = priv;
750 struct gbproxy_cell *cell = bvc->cell;
751 uint8_t cause = bssgp_bvc_fsm_get_block_cause(bvc->fi);
752
753 /* we have just been created but due to callback ordering the cell is not associated */
754 if (!cell)
755 return;
756
757 switch (state) {
758 case BSSGP_BVCFSM_S_BLOCKED:
759 /* block the corresponding SGSN-side PTP BVCs */
760 dispatch_to_all_sgsn_bvc(cell, BSSGP_BVCFSM_E_REQ_BLOCK, &cause);
761 break;
762 case BSSGP_BVCFSM_S_UNBLOCKED:
763 /* unblock the corresponding SGSN-side PTP BVCs */
764 dispatch_to_all_sgsn_bvc(cell, BSSGP_BVCFSM_E_REQ_UNBLOCK, NULL);
765 break;
766 }
767}
768
Harald Welte85a40272020-12-08 21:43:22 +0100769/* BVC FSM informs us about BVC-FC PDU receive */
770static void bss_ptp_bvc_fc_bvc(uint16_t nsei, uint16_t bvci, const struct bssgp2_flow_ctrl *fc, void *priv)
771{
Harald Welte209dc9f2020-12-12 19:02:16 +0100772 struct bssgp2_flow_ctrl fc_reduced;
Harald Welte85a40272020-12-08 21:43:22 +0100773 struct gbproxy_bvc *bss_bvc = priv;
Harald Welte209dc9f2020-12-12 19:02:16 +0100774 struct gbproxy_cell *cell;
775 struct gbproxy_config *cfg;
Harald Welte85a40272020-12-08 21:43:22 +0100776
Harald Welte209dc9f2020-12-12 19:02:16 +0100777 OSMO_ASSERT(bss_bvc);
778 OSMO_ASSERT(fc);
779
780 cell = bss_bvc->cell;
Harald Welte85a40272020-12-08 21:43:22 +0100781 if (!cell)
782 return;
783
Harald Welte209dc9f2020-12-12 19:02:16 +0100784 cfg = cell->cfg;
Harald Welte85a40272020-12-08 21:43:22 +0100785
Harald Welte209dc9f2020-12-12 19:02:16 +0100786 /* reduce / scale according to configuration to make sure we only advertise a fraction
787 * of the capacity to each of the SGSNs in the pool */
788 fc_reduced = *fc;
789 fc_reduced.bucket_size_max = (fc->bucket_size_max * cfg->pool.bvc_fc_ratio) / 100;
790 fc_reduced.bucket_leak_rate = (fc->bucket_leak_rate * cfg->pool.bvc_fc_ratio) / 100;
791 /* we don't modify the per-MS related values as any single MS is only served by one SGSN */
792
793 dispatch_to_all_sgsn_bvc(cell, BSSGP_BVCFSM_E_REQ_FC_BVC, (void *) &fc_reduced);
Harald Welte85a40272020-12-08 21:43:22 +0100794}
795
Harald Weltee5209642020-12-05 19:59:45 +0100796static const struct bssgp_bvc_fsm_ops bss_ptp_bvc_fsm_ops = {
797 .reset_notification = bss_ptp_bvc_reset_notif,
798 .state_chg_notification = bss_ptp_bvc_state_chg_notif,
Harald Welte85a40272020-12-08 21:43:22 +0100799 .rx_fc_bvc = bss_ptp_bvc_fc_bvc,
Harald Weltee5209642020-12-05 19:59:45 +0100800};
801
802/* BVC FSM informs us about a SGSN-side reset of a PTP BVC */
803static void sgsn_ptp_bvc_reset_notif(uint16_t nsei, uint16_t bvci, const struct gprs_ra_id *ra_id,
804 uint16_t cell_id, uint8_t cause, void *priv)
805{
806 struct gbproxy_bvc *bvc = priv;
807
808 if (!bvc->cell) {
809 LOGPBVC(bvc, LOGL_ERROR, "RESET of PTP BVC on SGSN side for which we have no BSS?\n");
810 return;
811 }
812
813 OSMO_ASSERT(bvc->cell->bss_bvc);
814
815 /* request reset of BSS-facing PTP-BVC */
816 osmo_fsm_inst_dispatch(bvc->cell->bss_bvc->fi, BSSGP_BVCFSM_E_REQ_RESET, &cause);
817}
818
819static const struct bssgp_bvc_fsm_ops sgsn_ptp_bvc_fsm_ops = {
820 .reset_notification = sgsn_ptp_bvc_reset_notif,
821};
822
823/* BVC FSM informs us about a SGSN-side reset of the signaling BVC */
824static void sgsn_sig_bvc_reset_notif(uint16_t nsei, uint16_t bvci, const struct gprs_ra_id *ra_id,
825 uint16_t cell_id, uint8_t cause, void *priv)
826{
827 struct gbproxy_bvc *bvc = priv;
828 struct gbproxy_config *cfg = bvc->nse->cfg;
829 struct gbproxy_nse *bss_nse;
830 unsigned int i;
831
832 /* delete all SGSN-side PTP BVC for this SGSN */
833 gbproxy_cleanup_bvcs(bvc->nse, 0);
834 /* FIXME: what to do about the cells? */
835 /* FIXME: do we really want to RESET all signaling BVC on the BSS and affect all other SGSN? */
836
837 /* we need to trigger generating a reset procedure towards each BSS side signaling BVC */
838 hash_for_each(cfg->bss_nses, i, bss_nse, list) {
839 struct gbproxy_bvc *bss_bvc = gbproxy_bvc_by_bvci(bss_nse, 0);
840 if (!bss_bvc) {
841 LOGPNSE(bss_nse, LOGL_ERROR, "Doesn't have BVC with BVCI=0 ?!?\n");
842 continue;
843 }
844 osmo_fsm_inst_dispatch(bss_bvc->fi, BSSGP_BVCFSM_E_REQ_RESET, &cause);
845 }
846}
847
848const struct bssgp_bvc_fsm_ops sgsn_sig_bvc_fsm_ops = {
849 .reset_notification = sgsn_sig_bvc_reset_notif,
Daniel Willmann2f30a0c2022-03-30 11:31:48 +0200850 .reset_ack_notification = sgsn_sig_bvc_reset_notif,
Harald Weltee5209642020-12-05 19:59:45 +0100851};
852
853/***********************************************************************
854 * Signaling BVC handling
855 ***********************************************************************/
856
857/* process a BVC-RESET message from the BSS side */
858static int rx_bvc_reset_from_bss(struct gbproxy_nse *nse, struct msgb *msg, struct tlv_parsed *tp)
859{
860 struct gbproxy_bvc *from_bvc = NULL;
861 uint16_t bvci = ntohs(tlvp_val16_unal(tp, BSSGP_IE_BVCI));
862 uint32_t features = 0; // FIXME: make configurable
863
864 LOGPNSE(nse, LOGL_INFO, "Rx BVC-RESET (BVCI=%05u)\n", bvci);
865
Harald Welte314647b2020-12-02 23:03:22 +0100866 if (bvci == 0) {
867 /* If we receive a BVC reset on the signalling endpoint, we
868 * don't want the SGSN to reset, as the signalling endpoint
869 * is common for all point-to-point BVCs (and thus all BTS) */
Harald Welte324f0652020-12-02 23:06:37 +0100870
Harald Weltee5209642020-12-05 19:59:45 +0100871 from_bvc = gbproxy_bvc_by_bvci(nse, 0);
Harald Welte560bdb32020-12-04 22:24:47 +0100872 if (!from_bvc) {
Harald Weltee5209642020-12-05 19:59:45 +0100873 from_bvc = gbproxy_bvc_alloc(nse, 0);
874 OSMO_ASSERT(from_bvc);
875 from_bvc->fi = bssgp_bvc_fsm_alloc_sig_sgsn(from_bvc, nse->cfg->nsi, nse->nsei, features);
876 if (!from_bvc->fi) {
877 LOGPNSE(nse, LOGL_ERROR, "Cannot allocate SIG-BVC FSM\n");
878 gbproxy_bvc_free(from_bvc);
879 return -ENOMEM;
Harald Welte7df1e5a2020-12-02 22:53:26 +0100880 }
Daniel Willmanna8b61652021-02-12 05:05:14 +0100881 bssgp_bvc_fsm_set_max_pdu_len(from_bvc->fi, nse->max_sdu_len);
Harald Weltee5209642020-12-05 19:59:45 +0100882 bssgp_bvc_fsm_set_ops(from_bvc->fi, &bss_sig_bvc_fsm_ops, from_bvc);
883 }
884 } else {
885 from_bvc = gbproxy_bvc_by_bvci(nse, bvci);
886 if (!from_bvc) {
Harald Welte7df1e5a2020-12-02 22:53:26 +0100887 /* if a PTP-BVC is reset, and we don't know that
Harald Welte560bdb32020-12-04 22:24:47 +0100888 * PTP-BVCI yet, we should allocate a new bvc */
889 from_bvc = gbproxy_bvc_alloc(nse, bvci);
890 OSMO_ASSERT(from_bvc);
Harald Weltee5209642020-12-05 19:59:45 +0100891 from_bvc->fi = bssgp_bvc_fsm_alloc_ptp_sgsn(from_bvc, nse->cfg->nsi,
892 nse->nsei, bvci);
893 if (!from_bvc->fi) {
894 LOGPNSE(nse, LOGL_ERROR, "Cannot allocate SIG-BVC FSM\n");
895 gbproxy_bvc_free(from_bvc);
896 return -ENOMEM;
897 }
Daniel Willmanna8b61652021-02-12 05:05:14 +0100898 bssgp_bvc_fsm_set_max_pdu_len(from_bvc->fi, nse->max_sdu_len);
Harald Weltee5209642020-12-05 19:59:45 +0100899 bssgp_bvc_fsm_set_ops(from_bvc->fi, &bss_ptp_bvc_fsm_ops, from_bvc);
Harald Welte7df1e5a2020-12-02 22:53:26 +0100900 }
Harald Welte7df1e5a2020-12-02 22:53:26 +0100901 }
Harald Weltee5209642020-12-05 19:59:45 +0100902 /* hand into FSM for further processing */
903 osmo_fsm_inst_dispatch(from_bvc->fi, BSSGP_BVCFSM_E_RX_RESET, msg);
904 return 0;
Harald Welte7df1e5a2020-12-02 22:53:26 +0100905}
906
Philipp Maier1c5766b2021-02-09 17:03:03 +0100907/* Receive an incoming RIM message from a BSS-side NS-VC */
908static int gbprox_rx_rim_from_bss(struct tlv_parsed *tp, struct gbproxy_nse *nse, struct msgb *msg, char *log_pfx,
909 const char *pdut_name)
910{
911 struct gbproxy_sgsn *sgsn;
912 struct gbproxy_cell *dest_cell;
913 struct gbproxy_cell *src_cell;
914 struct bssgp_rim_routing_info dest_ri;
915 struct bssgp_rim_routing_info src_ri;
916 int rc;
Philipp Maier4499cf42021-02-10 17:54:44 +0100917 char ri_src_str[64];
918 char ri_dest_str[64];
Daniel Willmannf8cba652021-02-12 04:59:47 +0100919 uint16_t ns_bvci = msgb_bvci(msg);
Philipp Maier1c5766b2021-02-09 17:03:03 +0100920
921 rc = bssgp_parse_rim_ri(&dest_ri, TLVP_VAL(&tp[0], BSSGP_IE_RIM_ROUTING_INFO),
922 TLVP_LEN(&tp[0], BSSGP_IE_RIM_ROUTING_INFO));
923 if (rc < 0) {
924 LOGP(DGPRS, LOGL_ERROR, "%s %s cannot parse destination RIM routing info\n", log_pfx, pdut_name);
Daniel Willmannf8cba652021-02-12 04:59:47 +0100925 return tx_status(nse, ns_bvci, BSSGP_CAUSE_INV_MAND_INF, NULL, msg);
Philipp Maier1c5766b2021-02-09 17:03:03 +0100926 }
927 rc = bssgp_parse_rim_ri(&src_ri, TLVP_VAL(&tp[1], BSSGP_IE_RIM_ROUTING_INFO),
928 TLVP_LEN(&tp[1], BSSGP_IE_RIM_ROUTING_INFO));
929 if (rc < 0) {
930 LOGP(DGPRS, LOGL_ERROR, "%s %s cannot parse source RIM routing info\n", log_pfx, pdut_name);
Daniel Willmannf8cba652021-02-12 04:59:47 +0100931 return tx_status(nse, ns_bvci, BSSGP_CAUSE_INV_MAND_INF, NULL, msg);
Philipp Maier1c5766b2021-02-09 17:03:03 +0100932 }
933
934 /* Since gbproxy is 2G only we do not expect to get RIM messages only from GERAN cells. */
935 if (src_ri.discr != BSSGP_RIM_ROUTING_INFO_GERAN) {
936 LOGP(DGPRS, LOGL_ERROR, "%s %s source RIM routing info is not GERAN (%s)\n", log_pfx, pdut_name,
937 bssgp_rim_ri_name(&src_ri));
Daniel Willmannf8cba652021-02-12 04:59:47 +0100938 return tx_status(nse, ns_bvci, BSSGP_CAUSE_UNKN_RIM_AI, NULL, msg);
Philipp Maier1c5766b2021-02-09 17:03:03 +0100939 }
940
941 /* Lookup source cell to make sure that the source RIM routing information actually belongs
942 * to a valid cell that we know */
943 src_cell = gbproxy_cell_by_cellid(nse->cfg, &src_ri.geran.raid, src_ri.geran.cid);
944 if (!src_cell) {
945 LOGP(DGPRS, LOGL_NOTICE, "%s %s cannot find cell for source RIM routing info (%s)\n", log_pfx,
946 pdut_name, bssgp_rim_ri_name(&src_ri));
Daniel Willmannf8cba652021-02-12 04:59:47 +0100947 return tx_status(nse, ns_bvci, BSSGP_CAUSE_UNKN_RIM_AI, NULL, msg);
Philipp Maier1c5766b2021-02-09 17:03:03 +0100948 }
949
950 /* TODO: Use bssgp_bvc_get_features_negotiated(src_cell->bss_bvc->fi) to check if the the BSS sided BVC actually
951 * did negotiate RIM support. If not we should respond with a BSSGP STATUS message. The cause code should be
952 * BSSGP_CAUSE_PDU_INCOMP_FEAT. */
953
954 /* If Destination is known by gbproxy, route directly */
955 if (dest_ri.discr == BSSGP_RIM_ROUTING_INFO_GERAN) {
956 dest_cell = gbproxy_cell_by_cellid(nse->cfg, &dest_ri.geran.raid, dest_ri.geran.cid);
957 if (dest_cell) {
958 /* TODO: Also check if dest_cell->bss_bvc is RIM-capable (see also above). If not we should
959 * respond with a BSSGP STATUS message as well because it also would make no sense to try
960 * routing the RIM message to the next RIM-capable SGSN. */
Philipp Maier4499cf42021-02-10 17:54:44 +0100961 LOGP(DLBSSGP, LOGL_DEBUG, "%s %s relaying to peer (nsei=%u) RIM-PDU: src=%s, dest=%s\n",
962 log_pfx, pdut_name, dest_cell->bss_bvc->nse->nsei,
963 bssgp_rim_ri_name_buf(ri_src_str, sizeof(ri_src_str), &src_ri),
964 bssgp_rim_ri_name_buf(ri_dest_str, sizeof(ri_dest_str), &dest_ri));
Philipp Maier1c5766b2021-02-09 17:03:03 +0100965 return gbprox_relay2peer(msg, dest_cell->bss_bvc, 0);
966 }
967 }
968
969 /* Otherwise pass on to a RIM-capable SGSN */
970 /* TODO: We need to extend gbproxy_select_sgsn() so that it selects a RIM-capable SGSN, at the moment we just
971 * get any SGSN and just assume that it is RIM-capable. */
972 sgsn = gbproxy_select_sgsn(nse->cfg, NULL);
973 if (!sgsn) {
974 LOGP(DGPRS, LOGL_NOTICE,
975 "%s %s cannot route RIM message (%s to %s) since no RIM capable SGSN is found!\n", log_pfx,
976 pdut_name, bssgp_rim_ri_name(&src_ri), bssgp_rim_ri_name(&dest_ri));
Daniel Willmannf8cba652021-02-12 04:59:47 +0100977 return tx_status(nse, ns_bvci, BSSGP_CAUSE_UNKN_RIM_AI, NULL, msg);
Philipp Maier1c5766b2021-02-09 17:03:03 +0100978 }
Philipp Maier4499cf42021-02-10 17:54:44 +0100979 LOGP(DLBSSGP, LOGL_DEBUG, "%s %s relaying to SGSN(%05u/%s) RIM-PDU: src=%s, dest=%s\n",
980 log_pfx, pdut_name, sgsn->nse->nsei, sgsn->name,
981 bssgp_rim_ri_name_buf(ri_src_str, sizeof(ri_src_str), &src_ri),
982 bssgp_rim_ri_name_buf(ri_dest_str, sizeof(ri_dest_str), &dest_ri));
Philipp Maier1c5766b2021-02-09 17:03:03 +0100983
984 return gbprox_relay2nse(msg, sgsn->nse, 0);
985}
986
Daniel Willmann6ec5f952021-10-28 16:13:03 +0200987/* Extract the TLLI from the PDU-in-error of the STATUS PDU (if available) */
988static int gbproxy_tlli_from_status_pdu(struct tlv_parsed *tp, uint32_t *tlli, char *log_pfx)
Daniel Willmann7d37cbb2021-09-29 11:51:51 +0200989{
990 int rc;
991 int pdu_len = TLVP_LEN(&tp[0], BSSGP_IE_PDU_IN_ERROR);
992 const uint8_t *pdu_data = TLVP_VAL(&tp[0], BSSGP_IE_PDU_IN_ERROR);
993 struct bssgp_normal_hdr *bgph = (struct bssgp_normal_hdr *)pdu_data;
Daniel Willmann01416282021-11-02 11:55:57 +0100994 struct tlv_parsed tp_inner;
Daniel Willmann7d37cbb2021-09-29 11:51:51 +0200995
Daniel Willmann01416282021-11-02 11:55:57 +0100996 rc = gbproxy_decode_bssgp(bgph, pdu_len, &tp_inner, log_pfx);
Daniel Willmannaf2e9b32021-11-18 15:27:49 +0100997 /* Ignore decode failure due to truncated message */
998 if (rc < 0 && rc != OSMO_TLVP_ERR_OFS_BEYOND_BUFFER)
Daniel Willmann7d37cbb2021-09-29 11:51:51 +0200999 return rc;
1000
Daniel Willmann01416282021-11-02 11:55:57 +01001001 if (TLVP_PRESENT(&tp_inner, BSSGP_IE_TLLI)) {
1002 *tlli = osmo_load32be(TLVP_VAL(&tp_inner, BSSGP_IE_TLLI));
1003 } else if (TLVP_PRESENT(&tp_inner, BSSGP_IE_TMSI)) {
Daniel Willmanncbfc7cf2021-09-29 11:51:56 +02001004 /* we treat the TMSI like a TLLI and extract the NRI from it */
Daniel Willmann01416282021-11-02 11:55:57 +01001005 *tlli = osmo_load32be(TLVP_VAL(&tp_inner, BSSGP_IE_TMSI));
Daniel Willmanncbfc7cf2021-09-29 11:51:56 +02001006 /* Convert the TMSI into a FOREIGN TLLI so it is routed appropriately */
1007 *tlli = gprs_tmsi2tlli(*tlli, TLLI_FOREIGN);
1008 } else {
Daniel Willmann7d37cbb2021-09-29 11:51:51 +02001009 return -ENOENT;
Daniel Willmanncbfc7cf2021-09-29 11:51:56 +02001010 }
Daniel Willmann7d37cbb2021-09-29 11:51:51 +02001011
1012 return 0;
1013}
1014
Daniel Willmann3d8f5992021-10-27 16:05:37 +02001015/* Extract the BVCI from the PDU-in-error of the STATUS PDU (if available) */
1016static int gbproxy_bvci_from_status_pdu(struct tlv_parsed *tp, uint16_t *bvci, char *log_pfx)
1017{
1018 int rc;
1019 int pdu_len = TLVP_LEN(&tp[0], BSSGP_IE_PDU_IN_ERROR);
1020 const uint8_t *pdu_data = TLVP_VAL(&tp[0], BSSGP_IE_PDU_IN_ERROR);
1021 struct bssgp_normal_hdr *bgph = (struct bssgp_normal_hdr *)pdu_data;
Daniel Willmann01416282021-11-02 11:55:57 +01001022 struct tlv_parsed tp_inner;
Daniel Willmann3d8f5992021-10-27 16:05:37 +02001023
Daniel Willmann01416282021-11-02 11:55:57 +01001024 rc = gbproxy_decode_bssgp(bgph, pdu_len, &tp_inner, log_pfx);
Daniel Willmannaf2e9b32021-11-18 15:27:49 +01001025 /* Ignore decode failure due to truncated message */
1026 if (rc < 0 && rc != OSMO_TLVP_ERR_OFS_BEYOND_BUFFER)
Daniel Willmann3d8f5992021-10-27 16:05:37 +02001027 return rc;
1028
Daniel Willmann01416282021-11-02 11:55:57 +01001029 if (TLVP_PRESENT(&tp_inner, BSSGP_IE_BVCI))
1030 *bvci = ntohs(tlvp_val16_unal(&tp_inner, BSSGP_IE_BVCI));
Daniel Willmann3d8f5992021-10-27 16:05:37 +02001031 else
1032 return -ENOENT;
1033
1034 return 0;
1035}
1036
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +02001037/* Receive an incoming signalling message from a BSS-side NS-VC */
Harald Weltee5209642020-12-05 19:59:45 +01001038static int gbprox_rx_sig_from_bss(struct gbproxy_nse *nse, struct msgb *msg, uint16_t ns_bvci)
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +02001039{
1040 struct bssgp_normal_hdr *bgph = (struct bssgp_normal_hdr *) msgb_bssgph(msg);
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +02001041 uint8_t pdu_type = bgph->pdu_type;
Harald Weltee5209642020-12-05 19:59:45 +01001042 const char *pdut_name = osmo_tlv_prot_msg_name(&osmo_pdef_bssgp, bgph->pdu_type);
Philipp Maier74882dc2021-02-04 16:31:46 +01001043 struct tlv_parsed tp[2];
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +02001044 int data_len = msgb_bssgp_len(msg) - sizeof(*bgph);
Harald Welte560bdb32020-12-04 22:24:47 +01001045 struct gbproxy_bvc *from_bvc = NULL;
Harald Welteec0f8012020-12-06 16:32:01 +01001046 char log_pfx[32];
Harald Weltee5209642020-12-05 19:59:45 +01001047 uint16_t ptp_bvci;
1048 uint32_t tlli;
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +02001049 int rc;
1050
Harald Weltee5209642020-12-05 19:59:45 +01001051 snprintf(log_pfx, sizeof(log_pfx), "NSE(%05u/BSS)-BVC(%05u/??)", nse->nsei, ns_bvci);
1052
1053 LOGP(DGPRS, LOGL_DEBUG, "%s Rx %s\n", log_pfx, pdut_name);
Harald Welteec0f8012020-12-06 16:32:01 +01001054
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +02001055 if (ns_bvci != 0 && ns_bvci != 1) {
Harald Weltee5209642020-12-05 19:59:45 +01001056 LOGP(DGPRS, LOGL_NOTICE, "%s %s BVCI=%05u is not signalling\n", log_pfx, pdut_name, ns_bvci);
Daniel Willmannf8cba652021-02-12 04:59:47 +01001057 return tx_status(nse, ns_bvci, BSSGP_CAUSE_PROTO_ERR_UNSPEC, NULL, msg);
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +02001058 }
1059
Harald Welte278dd272020-12-06 13:35:24 +01001060 if (!(bssgp_pdu_type_flags(pdu_type) & BSSGP_PDUF_SIG)) {
Harald Weltee5209642020-12-05 19:59:45 +01001061 LOGP(DGPRS, LOGL_NOTICE, "%s %s not allowed in signalling BVC\n", log_pfx, pdut_name);
Daniel Willmannf8cba652021-02-12 04:59:47 +01001062 return tx_status(nse, ns_bvci, BSSGP_CAUSE_PROTO_ERR_UNSPEC, NULL, msg);
Harald Welte278dd272020-12-06 13:35:24 +01001063 }
1064
1065 if (!(bssgp_pdu_type_flags(pdu_type) & BSSGP_PDUF_UL)) {
Harald Weltee5209642020-12-05 19:59:45 +01001066 LOGP(DGPRS, LOGL_NOTICE, "%s %s not allowed in uplink direction\n", log_pfx, pdut_name);
Daniel Willmannf8cba652021-02-12 04:59:47 +01001067 return tx_status(nse, ns_bvci, BSSGP_CAUSE_PROTO_ERR_UNSPEC, NULL, msg);
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +02001068 }
1069
Philipp Maier74882dc2021-02-04 16:31:46 +01001070 rc = osmo_tlv_prot_parse(&osmo_pdef_bssgp, tp, ARRAY_SIZE(tp), pdu_type, bgph->data, data_len, 0, 0,
Harald Welteec0f8012020-12-06 16:32:01 +01001071 DGPRS, log_pfx);
1072 if (rc < 0) {
Pau Espin Pedrol56438362021-06-04 18:03:44 +02001073 rate_ctr_inc(rate_ctr_group_get_ctr(nse->cfg->ctrg, GBPROX_GLOB_CTR_PROTO_ERR_BSS));
Daniel Willmannf8cba652021-02-12 04:59:47 +01001074 return tx_status_from_tlvp(nse, rc, msg);
Harald Welteec0f8012020-12-06 16:32:01 +01001075 }
Harald Weltee5209642020-12-05 19:59:45 +01001076 /* hack to get both msg + tlv_parsed passed via osmo_fsm_inst_dispatch */
Philipp Maier74882dc2021-02-04 16:31:46 +01001077 msgb_bcid(msg) = (void *)tp;
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +02001078
Harald Weltee5209642020-12-05 19:59:45 +01001079 /* special case handling for some PDU types */
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +02001080 switch (pdu_type) {
Harald Weltee5209642020-12-05 19:59:45 +01001081 case BSSGP_PDUT_BVC_RESET:
1082 /* resolve or create gbproxy_bvc + handlei n BVC-FSM */
Philipp Maier74882dc2021-02-04 16:31:46 +01001083 return rx_bvc_reset_from_bss(nse, msg, &tp[0]);
Harald Weltee5209642020-12-05 19:59:45 +01001084 case BSSGP_PDUT_BVC_RESET_ACK:
Philipp Maier74882dc2021-02-04 16:31:46 +01001085 ptp_bvci = ntohs(tlvp_val16_unal(&tp[0], BSSGP_IE_BVCI));
Harald Weltee5209642020-12-05 19:59:45 +01001086 from_bvc = gbproxy_bvc_by_bvci(nse, ptp_bvci);
Harald Welte560bdb32020-12-04 22:24:47 +01001087 if (!from_bvc)
1088 goto err_no_bvc;
Harald Weltee5209642020-12-05 19:59:45 +01001089 return osmo_fsm_inst_dispatch(from_bvc->fi, BSSGP_BVCFSM_E_RX_RESET_ACK, msg);
1090 case BSSGP_PDUT_BVC_BLOCK:
Philipp Maier74882dc2021-02-04 16:31:46 +01001091 ptp_bvci = ntohs(tlvp_val16_unal(&tp[0], BSSGP_IE_BVCI));
Harald Weltee5209642020-12-05 19:59:45 +01001092 from_bvc = gbproxy_bvc_by_bvci(nse, ptp_bvci);
1093 if (!from_bvc)
1094 goto err_no_bvc;
1095 return osmo_fsm_inst_dispatch(from_bvc->fi, BSSGP_BVCFSM_E_RX_BLOCK, msg);
1096 case BSSGP_PDUT_BVC_UNBLOCK:
Philipp Maier74882dc2021-02-04 16:31:46 +01001097 ptp_bvci = ntohs(tlvp_val16_unal(&tp[0], BSSGP_IE_BVCI));
Harald Weltee5209642020-12-05 19:59:45 +01001098 from_bvc = gbproxy_bvc_by_bvci(nse, ptp_bvci);
1099 if (!from_bvc)
1100 goto err_no_bvc;
1101 return osmo_fsm_inst_dispatch(from_bvc->fi, BSSGP_BVCFSM_E_RX_UNBLOCK, msg);
1102 case BSSGP_PDUT_SUSPEND:
1103 case BSSGP_PDUT_RESUME:
Daniel Willmann77493b12020-12-29 21:13:31 +01001104 {
1105 struct gbproxy_sgsn *sgsn;
1106
Philipp Maier74882dc2021-02-04 16:31:46 +01001107 tlli = osmo_load32be(TLVP_VAL(&tp[0], BSSGP_IE_TLLI));
Daniel Willmann77493b12020-12-29 21:13:31 +01001108 sgsn = gbproxy_select_sgsn(nse->cfg, &tlli);
1109 if (!sgsn) {
1110 LOGP(DGPRS, LOGL_ERROR, "Could not find any SGSN for TLLI, dropping message!\n");
1111 rc = -EINVAL;
1112 break;
1113 }
1114
1115 gbproxy_tlli_cache_update(nse, tlli);
1116
1117 rc = gbprox_relay2nse(msg, sgsn->nse, 0);
Harald Weltee5209642020-12-05 19:59:45 +01001118#if 0
1119 /* TODO: Validate the RAI for consistency with the RAI
1120 * we expect for any of the BVC within this BSS side NSE */
Philipp Maier74882dc2021-02-04 16:31:46 +01001121 memcpy(ra, TLVP_VAL(&tp[0], BSSGP_IE_ROUTEING_AREA), sizeof(from_bvc->ra));
Harald Welte560bdb32020-12-04 22:24:47 +01001122 gsm48_parse_ra(&raid, from_bvc->ra);
Harald Weltee5209642020-12-05 19:59:45 +01001123#endif
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +02001124 break;
Daniel Willmann77493b12020-12-29 21:13:31 +01001125 }
Harald Weltee5209642020-12-05 19:59:45 +01001126 case BSSGP_PDUT_STATUS:
Daniel Willmann7d37cbb2021-09-29 11:51:51 +02001127 {
1128 struct gbproxy_sgsn *sgsn;
1129 /* Check if the status needs to be terminated locally */
1130 uint8_t cause = *TLVP_VAL(&tp[0], BSSGP_IE_CAUSE);
Daniel Willmannc5dcebd2021-09-30 16:57:51 +02001131
Daniel Willmann7d37cbb2021-09-29 11:51:51 +02001132 if (cause == BSSGP_CAUSE_UNKNOWN_BVCI || cause == BSSGP_CAUSE_BVCI_BLOCKED) {
1133 /* Log and handle locally */
1134 ptp_bvci = ntohs(tlvp_val16_unal(&tp[0], BSSGP_IE_BVCI));
Daniel Willmannc5dcebd2021-09-30 16:57:51 +02001135 LOGPNSE(nse, LOGL_ERROR, "Rx STATUS cause=0x%02x(%s) for PtP-BVC %05u\n", cause,
Daniel Willmann7d37cbb2021-09-29 11:51:51 +02001136 bssgp_cause_str(cause), ptp_bvci);
1137 /* FIXME: Remove/block our BVC if present? */
1138 break;
1139 }
1140
Daniel Willmannc5dcebd2021-09-30 16:57:51 +02001141 LOGPNSE(nse, LOGL_NOTICE, "Rx STATUS cause=0x%02x(%s) ", cause,
1142 bssgp_cause_str(cause));
1143
Daniel Willmann6ec5f952021-10-28 16:13:03 +02001144 if (gbproxy_tlli_from_status_pdu(tp, &tlli, log_pfx) == 0)
Daniel Willmann7d37cbb2021-09-29 11:51:51 +02001145 sgsn = gbproxy_select_sgsn(nse->cfg, &tlli);
1146 else
1147 sgsn = gbproxy_select_sgsn(nse->cfg, NULL);
1148
1149 if (!sgsn) {
1150 rc = -EINVAL;
1151 break;
1152 }
1153
1154 rc = gbprox_relay2nse(msg, sgsn->nse, 0);
Harald Weltee5209642020-12-05 19:59:45 +01001155 break;
Daniel Willmann7d37cbb2021-09-29 11:51:51 +02001156 }
Harald Weltee5209642020-12-05 19:59:45 +01001157 case BSSGP_PDUT_RAN_INFO:
1158 case BSSGP_PDUT_RAN_INFO_REQ:
1159 case BSSGP_PDUT_RAN_INFO_ACK:
1160 case BSSGP_PDUT_RAN_INFO_ERROR:
1161 case BSSGP_PDUT_RAN_INFO_APP_ERROR:
Philipp Maier1c5766b2021-02-09 17:03:03 +01001162 rc = gbprox_rx_rim_from_bss(tp, nse, msg, log_pfx, pdut_name);
Harald Weltee5209642020-12-05 19:59:45 +01001163 break;
1164 case BSSGP_PDUT_LLC_DISCARD:
Harald Weltee5209642020-12-05 19:59:45 +01001165 /* route based on BVCI + TLLI */
Philipp Maier74882dc2021-02-04 16:31:46 +01001166 ptp_bvci = ntohs(tlvp_val16_unal(&tp[0], BSSGP_IE_BVCI));
1167 tlli = osmo_load32be(TLVP_VAL(&tp[0], BSSGP_IE_TLLI));
Harald Weltee5209642020-12-05 19:59:45 +01001168 from_bvc = gbproxy_bvc_by_bvci(nse, ptp_bvci);
1169 if (!from_bvc)
1170 goto err_no_bvc;
Daniel Willmanne705b3f2021-11-25 22:04:56 +01001171 rc = gbprox_bss2sgsn_tlli(from_bvc->cell, msg, &tlli, true);
Harald Weltee5209642020-12-05 19:59:45 +01001172 break;
Daniel Willmanne705b3f2021-11-25 22:04:56 +01001173 case BSSGP_PDUT_FLUSH_LL_ACK:
1174 {
1175 /* Route based on TLLI */
1176 tlli = osmo_load32be(TLVP_VAL(&tp[0], BSSGP_IE_TLLI));
1177 struct gbproxy_sgsn *sgsn = gbproxy_select_sgsn(nse->cfg, &tlli);
1178 if (!sgsn) {
1179 rc = -EINVAL;
1180 break;
1181 }
1182
1183 rc = gbprox_relay2nse(msg, sgsn->nse, 0);
1184 break;
1185 }
Daniel Willmann8613c9d2021-01-17 13:40:38 +01001186 case BSSGP_PDUT_PAGING_PS_REJECT:
Daniel Willmann5614e572021-01-18 18:38:27 +01001187 case BSSGP_PDUT_DUMMY_PAGING_PS_RESP:
Daniel Willmann8613c9d2021-01-17 13:40:38 +01001188 {
1189 /* Route according to IMSI<->NSE cache entry */
1190 struct osmo_mobile_identity mi;
Philipp Maier74882dc2021-02-04 16:31:46 +01001191 const uint8_t *mi_data = TLVP_VAL(&tp[0], BSSGP_IE_IMSI);
1192 uint8_t mi_len = TLVP_LEN(&tp[0], BSSGP_IE_IMSI);
Daniel Willmann8613c9d2021-01-17 13:40:38 +01001193 osmo_mobile_identity_decode(&mi, mi_data, mi_len, false);
Daniel Willmann361d0b52021-07-09 17:44:30 +02001194 nse = gbproxy_nse_by_imsi(nse->cfg, mi.imsi, CACHE_USAGE_PAGING);
Daniel Willmann8613c9d2021-01-17 13:40:38 +01001195 if (!nse) {
Daniel Willmannf8cba652021-02-12 04:59:47 +01001196 return tx_status(nse, ns_bvci, BSSGP_CAUSE_INV_MAND_INF, NULL, msg);
Daniel Willmann8613c9d2021-01-17 13:40:38 +01001197 }
Daniel Willmann5614e572021-01-18 18:38:27 +01001198 OSMO_ASSERT(nse->sgsn_facing);
Daniel Willmann8613c9d2021-01-17 13:40:38 +01001199 rc = gbprox_relay2nse(msg, nse, 0);
1200 break;
1201 }
Daniel Willmannf024eeb2021-07-06 14:02:41 +02001202 case BSSGP_PDUT_MS_REGISTR_ENQ:
1203 {
1204 struct gbproxy_sgsn *sgsn;
1205 struct osmo_mobile_identity mi;
1206 const uint8_t *mi_data = TLVP_VAL(&tp[0], BSSGP_IE_IMSI);
1207 uint8_t mi_len = TLVP_LEN(&tp[0], BSSGP_IE_IMSI);
1208 osmo_mobile_identity_decode(&mi, mi_data, mi_len, false);
1209
1210 sgsn = gbproxy_select_sgsn(nse->cfg, NULL);
1211 if (!sgsn) {
1212 LOGP(DGPRS, LOGL_ERROR, "Could not find any SGSN, dropping message!\n");
1213 rc = -EINVAL;
1214 break;
1215 }
1216
1217 gbproxy_imsi_cache_update(nse, mi.imsi, CACHE_USAGE_MS_REG_ENQ);
1218
1219 rc = gbprox_relay2nse(msg, sgsn->nse, 0);
1220 break;
1221 }
Harald Weltee5209642020-12-05 19:59:45 +01001222 default:
1223 LOGPNSE(nse, LOGL_ERROR, "Rx %s: Implementation missing\n", pdut_name);
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +02001224 break;
1225 }
1226
Harald Weltee5209642020-12-05 19:59:45 +01001227 return rc;
Harald Welte560bdb32020-12-04 22:24:47 +01001228err_no_bvc:
Harald Weltee5209642020-12-05 19:59:45 +01001229 LOGPNSE(nse, LOGL_ERROR, "Rx %s: cannot find BVC for BVCI=%05u\n", pdut_name, ptp_bvci);
Pau Espin Pedrol56438362021-06-04 18:03:44 +02001230 rate_ctr_inc(rate_ctr_group_get_ctr(nse->cfg->ctrg, GBPROX_GLOB_CTR_INV_NSEI));
Daniel Willmannf8cba652021-02-12 04:59:47 +01001231 return tx_status(nse, ns_bvci, BSSGP_CAUSE_INV_MAND_INF, NULL, msg);
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +02001232}
1233
1234/* Receive paging request from SGSN, we need to relay to proper BSS */
Harald Weltedf690e82020-12-12 15:58:28 +01001235static int gbprox_rx_paging(struct gbproxy_nse *sgsn_nse, struct msgb *msg, const char *pdut_name,
Daniel Willmann5614e572021-01-18 18:38:27 +01001236 struct tlv_parsed *tp, uint16_t ns_bvci, bool broadcast)
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +02001237{
Harald Weltedf690e82020-12-12 15:58:28 +01001238 struct gbproxy_config *cfg = sgsn_nse->cfg;
Harald Weltee5209642020-12-05 19:59:45 +01001239 struct gbproxy_bvc *sgsn_bvc, *bss_bvc;
Harald Weltedf690e82020-12-12 15:58:28 +01001240 struct gbproxy_nse *nse;
Daniel Willmann76205712020-11-30 17:08:58 +01001241 unsigned int n_nses = 0;
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +02001242 int errctr = GBPROX_GLOB_CTR_PROTO_ERR_SGSN;
Harald Welte8b4c7942020-12-05 10:14:49 +01001243 int i, j;
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +02001244
Harald Welte173a1822020-12-03 15:36:59 +01001245 if (TLVP_PRES_LEN(tp, BSSGP_IE_BVCI, 2)) {
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +02001246 uint16_t bvci = ntohs(tlvp_val16_unal(tp, BSSGP_IE_BVCI));
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +02001247 errctr = GBPROX_GLOB_CTR_OTHER_ERR;
Harald Weltedf690e82020-12-12 15:58:28 +01001248 sgsn_bvc = gbproxy_bvc_by_bvci(sgsn_nse, bvci);
Harald Weltee5209642020-12-05 19:59:45 +01001249 if (!sgsn_bvc) {
Harald Weltedf690e82020-12-12 15:58:28 +01001250 LOGPNSE(sgsn_nse, LOGL_NOTICE, "Rx %s: unable to route: BVCI=%05u unknown\n",
Harald Weltee5209642020-12-05 19:59:45 +01001251 pdut_name, bvci);
Pau Espin Pedrol56438362021-06-04 18:03:44 +02001252 rate_ctr_inc(rate_ctr_group_get_ctr(cfg->ctrg, errctr));
Harald Welte3d1bd4d2020-11-23 15:14:20 +01001253 return -EINVAL;
1254 }
Harald Weltee5209642020-12-05 19:59:45 +01001255 LOGPBVC(sgsn_bvc, LOGL_INFO, "Rx %s: routing by BVCI\n", pdut_name);
1256 return gbprox_relay2peer(msg, sgsn_bvc->cell->bss_bvc, ns_bvci);
Harald Welte173a1822020-12-03 15:36:59 +01001257 } else if (TLVP_PRES_LEN(tp, BSSGP_IE_ROUTEING_AREA, 6)) {
Philipp Maierda3af942021-02-04 21:54:09 +01001258 struct gprs_ra_id raid;
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +02001259 errctr = GBPROX_GLOB_CTR_INV_RAI;
Philipp Maierda3af942021-02-04 21:54:09 +01001260 gsm48_parse_ra(&raid, TLVP_VAL(tp, BSSGP_IE_ROUTEING_AREA));
Harald Welte560bdb32020-12-04 22:24:47 +01001261 /* iterate over all bvcs and dispatch the paging to each matching one */
Harald Welted2fef952020-12-05 00:31:07 +01001262 hash_for_each(cfg->bss_nses, i, nse, list) {
Harald Weltee5209642020-12-05 19:59:45 +01001263 hash_for_each(nse->bvcs, j, bss_bvc, list) {
Daniel Willmannf9902c52021-11-12 15:52:03 +01001264 /* Skip BVCs without a cell (e.g. signalling) */
1265 if (!bss_bvc->cell)
1266 continue;
1267
1268 if (gsm48_ra_equal(&bss_bvc->cell->id.raid, &raid)) {
Harald Weltee5209642020-12-05 19:59:45 +01001269 LOGPNSE(nse, LOGL_INFO, "Rx %s: routing to NSE (RAI match)\n",
1270 pdut_name);
1271 gbprox_relay2peer(msg, bss_bvc, ns_bvci);
Daniel Willmann76205712020-11-30 17:08:58 +01001272 n_nses++;
1273 /* Only send it once to each NSE */
1274 break;
Daniel Willmanne50550e2020-11-26 18:19:21 +01001275 }
Harald Welte3d1bd4d2020-11-23 15:14:20 +01001276 }
1277 }
Harald Welte173a1822020-12-03 15:36:59 +01001278 } else if (TLVP_PRES_LEN(tp, BSSGP_IE_LOCATION_AREA, 5)) {
Philipp Maierda3af942021-02-04 21:54:09 +01001279 struct gsm48_ra_id lac;
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +02001280 errctr = GBPROX_GLOB_CTR_INV_LAI;
Harald Welte560bdb32020-12-04 22:24:47 +01001281 /* iterate over all bvcs and dispatch the paging to each matching one */
Harald Welted2fef952020-12-05 00:31:07 +01001282 hash_for_each(cfg->bss_nses, i, nse, list) {
Harald Weltee5209642020-12-05 19:59:45 +01001283 hash_for_each(nse->bvcs, j, bss_bvc, list) {
Daniel Willmannf9902c52021-11-12 15:52:03 +01001284 /* Skip BVCs without a cell (e.g. signalling) */
1285 if (!bss_bvc->cell)
1286 continue;
1287
1288 gsm48_encode_ra(&lac, &bss_bvc->cell->id.raid);
Philipp Maierda3af942021-02-04 21:54:09 +01001289 if (!memcmp(&lac, TLVP_VAL(tp, BSSGP_IE_LOCATION_AREA), 5)) {
Harald Weltee5209642020-12-05 19:59:45 +01001290 LOGPNSE(nse, LOGL_INFO, "Rx %s: routing to NSE (LAI match)\n",
1291 pdut_name);
1292 gbprox_relay2peer(msg, bss_bvc, ns_bvci);
Daniel Willmann76205712020-11-30 17:08:58 +01001293 n_nses++;
1294 /* Only send it once to each NSE */
1295 break;
Daniel Willmanne50550e2020-11-26 18:19:21 +01001296 }
Harald Welte3d1bd4d2020-11-23 15:14:20 +01001297 }
1298 }
Daniel Willmann5614e572021-01-18 18:38:27 +01001299 } else if (TLVP_PRES_LEN(tp, BSSGP_IE_BSS_AREA_ID, 1) || broadcast) {
Harald Welte560bdb32020-12-04 22:24:47 +01001300 /* iterate over all bvcs and dispatch the paging to each matching one */
Harald Welted2fef952020-12-05 00:31:07 +01001301 hash_for_each(cfg->bss_nses, i, nse, list) {
Harald Weltee5209642020-12-05 19:59:45 +01001302 hash_for_each(nse->bvcs, j, bss_bvc, list) {
1303 LOGPNSE(nse, LOGL_INFO, "Rx %s:routing to NSE (broadcast)\n", pdut_name);
1304 gbprox_relay2peer(msg, bss_bvc, ns_bvci);
Daniel Willmann76205712020-11-30 17:08:58 +01001305 n_nses++;
1306 /* Only send it once to each NSE */
1307 break;
Daniel Willmanne50550e2020-11-26 18:19:21 +01001308 }
Harald Welte53ee2062020-11-24 11:31:13 +01001309 }
1310 } else {
Harald Weltedf690e82020-12-12 15:58:28 +01001311 LOGPNSE(sgsn_nse, LOGL_ERROR, "BSSGP PAGING: unable to route, missing IE\n");
Pau Espin Pedrol56438362021-06-04 18:03:44 +02001312 rate_ctr_inc(rate_ctr_group_get_ctr(cfg->ctrg, errctr));
Harald Welte53ee2062020-11-24 11:31:13 +01001313 }
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +02001314
Daniel Willmann76205712020-11-30 17:08:58 +01001315 if (n_nses == 0) {
Harald Weltedf690e82020-12-12 15:58:28 +01001316 LOGPNSE(sgsn_nse, LOGL_ERROR, "BSSGP PAGING: unable to route, no destination found\n");
Pau Espin Pedrol56438362021-06-04 18:03:44 +02001317 rate_ctr_inc(rate_ctr_group_get_ctr(cfg->ctrg, errctr));
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +02001318 return -EINVAL;
1319 }
Harald Welte3d1bd4d2020-11-23 15:14:20 +01001320 return 0;
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +02001321}
1322
1323/* Receive an incoming BVC-RESET message from the SGSN */
Harald Weltee5209642020-12-05 19:59:45 +01001324static int rx_bvc_reset_from_sgsn(struct gbproxy_nse *nse, struct msgb *msg, struct tlv_parsed *tp,
1325 uint16_t ns_bvci)
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +02001326{
Harald Weltee5209642020-12-05 19:59:45 +01001327 uint16_t ptp_bvci = ntohs(tlvp_val16_unal(tp, BSSGP_IE_BVCI));
1328 struct gbproxy_bvc *from_bvc;
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +02001329
Harald Weltee5209642020-12-05 19:59:45 +01001330 LOGPNSE(nse, LOGL_INFO, "Rx BVC-RESET (BVCI=%05u)\n", ptp_bvci);
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +02001331
Harald Weltee5209642020-12-05 19:59:45 +01001332 if (ptp_bvci == 0) {
1333 from_bvc = gbproxy_bvc_by_bvci(nse, 0);
1334 OSMO_ASSERT(from_bvc);
1335 osmo_fsm_inst_dispatch(from_bvc->fi, BSSGP_BVCFSM_E_RX_RESET, msg);
1336 } else {
1337 from_bvc = gbproxy_bvc_by_bvci(nse, ptp_bvci);
1338 if (!from_bvc) {
1339 LOGPNSE(nse, LOGL_ERROR, "Rx BVC-RESET BVCI=%05u: Cannot find BVC\n", ptp_bvci);
Pau Espin Pedrol56438362021-06-04 18:03:44 +02001340 rate_ctr_inc(rate_ctr_group_get_ctr(nse->cfg->ctrg, GBPROX_GLOB_CTR_INV_BVCI));
Daniel Willmannf8cba652021-02-12 04:59:47 +01001341 return tx_status(nse, ns_bvci, BSSGP_CAUSE_UNKNOWN_BVCI, &ptp_bvci, msg);
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +02001342 }
Harald Weltee5209642020-12-05 19:59:45 +01001343 osmo_fsm_inst_dispatch(from_bvc->fi, BSSGP_BVCFSM_E_RX_RESET, msg);
Daniel Willmanne50550e2020-11-26 18:19:21 +01001344 }
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +02001345
1346 return 0;
1347}
1348
Philipp Maier1c5766b2021-02-09 17:03:03 +01001349/* Receive an incoming RIM message from the SGSN-side NS-VC */
1350static int gbprox_rx_rim_from_sgsn(struct tlv_parsed *tp, struct gbproxy_nse *nse, struct msgb *msg, char *log_pfx,
1351 const char *pdut_name)
1352{
1353 struct gbproxy_sgsn *sgsn;
1354 struct gbproxy_cell *dest_cell;
1355 struct bssgp_rim_routing_info dest_ri;
1356 struct bssgp_rim_routing_info src_ri;
1357 int rc;
Philipp Maier4499cf42021-02-10 17:54:44 +01001358 char ri_src_str[64];
1359 char ri_dest_str[64];
Daniel Willmannf8cba652021-02-12 04:59:47 +01001360 uint16_t ns_bvci = msgb_bvci(msg);
Philipp Maier1c5766b2021-02-09 17:03:03 +01001361
1362 /* TODO: Reply with STATUS if BSSGP didn't negotiate RIM feature, see also comments in
1363 gbprox_rx_rim_from_bss() */
1364
1365 rc = bssgp_parse_rim_ri(&dest_ri, TLVP_VAL(&tp[0], BSSGP_IE_RIM_ROUTING_INFO),
1366 TLVP_LEN(&tp[0], BSSGP_IE_RIM_ROUTING_INFO));
1367 if (rc < 0) {
1368 LOGP(DGPRS, LOGL_ERROR, "%s %s cannot parse destination RIM routing info\n", log_pfx, pdut_name);
Daniel Willmannf8cba652021-02-12 04:59:47 +01001369 return tx_status(nse, ns_bvci, BSSGP_CAUSE_INV_MAND_INF, NULL, msg);
Philipp Maier1c5766b2021-02-09 17:03:03 +01001370 }
1371 rc = bssgp_parse_rim_ri(&src_ri, TLVP_VAL(&tp[1], BSSGP_IE_RIM_ROUTING_INFO),
1372 TLVP_LEN(&tp[1], BSSGP_IE_RIM_ROUTING_INFO));
1373 if (rc < 0) {
1374 LOGP(DGPRS, LOGL_ERROR, "%s %s cannot parse source RIM routing info\n", log_pfx, pdut_name);
Daniel Willmannf8cba652021-02-12 04:59:47 +01001375 return tx_status(nse, ns_bvci, BSSGP_CAUSE_INV_MAND_INF, NULL, msg);
Philipp Maier1c5766b2021-02-09 17:03:03 +01001376 }
1377
1378 /* Since gbproxy is 2G only we do not expect to get RIM messages that target non-GERAN cells. */
1379 if (dest_ri.discr != BSSGP_RIM_ROUTING_INFO_GERAN) {
1380 LOGP(DGPRS, LOGL_ERROR, "%s %s destination RIM routing info is not GERAN (%s)\n", log_pfx, pdut_name,
1381 bssgp_rim_ri_name(&dest_ri));
Daniel Willmannf8cba652021-02-12 04:59:47 +01001382 return tx_status(nse, ns_bvci, BSSGP_CAUSE_UNKN_RIM_AI, NULL, msg);
Philipp Maier1c5766b2021-02-09 17:03:03 +01001383 }
1384
1385 /* Lookup destination cell */
1386 dest_cell = gbproxy_cell_by_cellid(nse->cfg, &dest_ri.geran.raid, dest_ri.geran.cid);
1387 if (!dest_cell) {
1388 LOGP(DGPRS, LOGL_NOTICE, "%s %s cannot find cell for destination RIM routing info (%s)\n", log_pfx,
1389 pdut_name, bssgp_rim_ri_name(&dest_ri));
Daniel Willmannf8cba652021-02-12 04:59:47 +01001390 return tx_status(nse, ns_bvci, BSSGP_CAUSE_UNKN_RIM_AI, NULL, msg);
Philipp Maier1c5766b2021-02-09 17:03:03 +01001391 }
1392
1393 /* TODO: Check if the BVC of the destination cell actually did negotiate RIM support, see also comments
1394 * in gbprox_rx_rim_from_bss() */
1395 sgsn = gbproxy_sgsn_by_nsei(nse->cfg, nse->nsei);
1396 OSMO_ASSERT(sgsn);
1397
Philipp Maier4499cf42021-02-10 17:54:44 +01001398 LOGP(DLBSSGP, LOGL_DEBUG, "%s %s relaying from SGSN(%05u/%s) RIM-PDU: src=%s, dest=%s\n",
1399 log_pfx, pdut_name, sgsn->nse->nsei, sgsn->name,
1400 bssgp_rim_ri_name_buf(ri_src_str, sizeof(ri_src_str), &src_ri),
1401 bssgp_rim_ri_name_buf(ri_dest_str, sizeof(ri_dest_str), &dest_ri));
Philipp Maier1c5766b2021-02-09 17:03:03 +01001402
1403 return gbprox_relay2peer(msg, dest_cell->bss_bvc, 0);
1404}
1405
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +02001406/* Receive an incoming signalling message from the SGSN-side NS-VC */
Harald Weltedbef0aa2020-12-07 17:48:11 +01001407static int gbprox_rx_sig_from_sgsn(struct gbproxy_nse *nse, struct msgb *msg, uint16_t ns_bvci)
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +02001408{
Harald Weltedbef0aa2020-12-07 17:48:11 +01001409 struct bssgp_normal_hdr *bgph = (struct bssgp_normal_hdr *) msgb_bssgph(msg);
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +02001410 uint8_t pdu_type = bgph->pdu_type;
Harald Weltee5209642020-12-05 19:59:45 +01001411 const char *pdut_name = osmo_tlv_prot_msg_name(&osmo_pdef_bssgp, bgph->pdu_type);
1412 struct gbproxy_config *cfg = nse->cfg;
1413 struct gbproxy_bvc *sgsn_bvc;
Philipp Maier74882dc2021-02-04 16:31:46 +01001414 struct tlv_parsed tp[2];
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +02001415 int data_len;
Alexander Couzens96a44272022-09-28 16:28:46 +02001416 uint16_t bvci, bvci2;
1417 uint32_t tlli;
Harald Welteec0f8012020-12-06 16:32:01 +01001418 char log_pfx[32];
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +02001419 int rc = 0;
Harald Welted2fef952020-12-05 00:31:07 +01001420 int i;
Daniel Willmann5614e572021-01-18 18:38:27 +01001421 bool paging_bc = false;
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +02001422
Harald Weltee5209642020-12-05 19:59:45 +01001423 snprintf(log_pfx, sizeof(log_pfx), "NSE(%05u/SGSN)-BVC(%05u/??)", nse->nsei, ns_bvci);
1424
1425 LOGP(DGPRS, LOGL_DEBUG, "%s Rx %s\n", log_pfx, pdut_name);
Harald Welteec0f8012020-12-06 16:32:01 +01001426
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +02001427 if (ns_bvci != 0 && ns_bvci != 1) {
Harald Welteec0f8012020-12-06 16:32:01 +01001428 LOGP(DGPRS, LOGL_NOTICE, "%s BVCI=%05u is not signalling\n", log_pfx, ns_bvci);
Daniel Willmannf8cba652021-02-12 04:59:47 +01001429 return tx_status(nse, ns_bvci, BSSGP_CAUSE_PROTO_ERR_UNSPEC, NULL, msg);
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +02001430 }
1431
Harald Welte278dd272020-12-06 13:35:24 +01001432 if (!(bssgp_pdu_type_flags(pdu_type) & BSSGP_PDUF_SIG)) {
Harald Weltee5209642020-12-05 19:59:45 +01001433 LOGP(DGPRS, LOGL_NOTICE, "%s %s not allowed in signalling BVC\n", log_pfx, pdut_name);
Daniel Willmannf8cba652021-02-12 04:59:47 +01001434 return tx_status(nse, ns_bvci, BSSGP_CAUSE_PROTO_ERR_UNSPEC, NULL, msg);
Harald Welte278dd272020-12-06 13:35:24 +01001435 }
1436
1437 if (!(bssgp_pdu_type_flags(pdu_type) & BSSGP_PDUF_DL)) {
Harald Weltee5209642020-12-05 19:59:45 +01001438 LOGP(DGPRS, LOGL_NOTICE, "%s %s not allowed in downlink direction\n", log_pfx, pdut_name);
Daniel Willmannf8cba652021-02-12 04:59:47 +01001439 return tx_status(nse, ns_bvci, BSSGP_CAUSE_PROTO_ERR_UNSPEC, NULL, msg);
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +02001440 }
1441
Harald Weltedbef0aa2020-12-07 17:48:11 +01001442 data_len = msgb_bssgp_len(msg) - sizeof(*bgph);
Harald Welteec0f8012020-12-06 16:32:01 +01001443
Philipp Maier74882dc2021-02-04 16:31:46 +01001444 rc = osmo_tlv_prot_parse(&osmo_pdef_bssgp, tp, ARRAY_SIZE(tp), pdu_type, bgph->data, data_len, 0, 0,
Harald Welteec0f8012020-12-06 16:32:01 +01001445 DGPRS, log_pfx);
1446 if (rc < 0) {
Daniel Willmannf8cba652021-02-12 04:59:47 +01001447 rc = tx_status_from_tlvp(nse, rc, msg);
Pau Espin Pedrol56438362021-06-04 18:03:44 +02001448 rate_ctr_inc(rate_ctr_group_get_ctr(cfg->ctrg, GBPROX_GLOB_CTR_PROTO_ERR_SGSN));
Harald Welteec0f8012020-12-06 16:32:01 +01001449 return rc;
1450 }
Harald Weltee5209642020-12-05 19:59:45 +01001451 /* hack to get both msg + tlv_parsed passed via osmo_fsm_inst_dispatch */
Philipp Maier74882dc2021-02-04 16:31:46 +01001452 msgb_bcid(msg) = (void *)tp;
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +02001453
1454 switch (pdu_type) {
1455 case BSSGP_PDUT_BVC_RESET:
Harald Weltee5209642020-12-05 19:59:45 +01001456 /* resolve or create ggbproxy_bvc + handle in BVC-FSM */
Philipp Maier74882dc2021-02-04 16:31:46 +01001457 bvci = ntohs(tlvp_val16_unal(&tp[0], BSSGP_IE_BVCI));
1458 rc = rx_bvc_reset_from_sgsn(nse, msg, &tp[0], ns_bvci);
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +02001459 break;
1460 case BSSGP_PDUT_BVC_RESET_ACK:
Philipp Maier74882dc2021-02-04 16:31:46 +01001461 bvci = ntohs(tlvp_val16_unal(&tp[0], BSSGP_IE_BVCI));
Harald Weltee5209642020-12-05 19:59:45 +01001462 sgsn_bvc = gbproxy_bvc_by_bvci(nse, bvci);
1463 if (!sgsn_bvc)
1464 goto err_no_bvc;
1465 rc = osmo_fsm_inst_dispatch(sgsn_bvc->fi, BSSGP_BVCFSM_E_RX_RESET_ACK, msg);
1466 break;
1467 case BSSGP_PDUT_BVC_BLOCK_ACK:
Philipp Maier74882dc2021-02-04 16:31:46 +01001468 bvci = ntohs(tlvp_val16_unal(&tp[0], BSSGP_IE_BVCI));
Harald Weltee5209642020-12-05 19:59:45 +01001469 sgsn_bvc = gbproxy_bvc_by_bvci(nse, bvci);
Daniel Willmanndc763fd2021-09-24 16:45:38 +02001470 if (!sgsn_bvc) {
1471 /* Check if BVC was blocked before */
1472 sgsn_bvc = gbproxy_bvc_by_bvci_inactive(nse, bvci);
1473 if (!sgsn_bvc)
1474 goto err_no_bvc;
1475 }
Harald Weltee5209642020-12-05 19:59:45 +01001476 rc = osmo_fsm_inst_dispatch(sgsn_bvc->fi, BSSGP_BVCFSM_E_RX_BLOCK_ACK, msg);
1477 break;
1478 case BSSGP_PDUT_BVC_UNBLOCK_ACK:
Philipp Maier74882dc2021-02-04 16:31:46 +01001479 bvci = ntohs(tlvp_val16_unal(&tp[0], BSSGP_IE_BVCI));
Harald Weltee5209642020-12-05 19:59:45 +01001480 sgsn_bvc = gbproxy_bvc_by_bvci(nse, bvci);
1481 if (!sgsn_bvc)
1482 goto err_no_bvc;
1483 rc = osmo_fsm_inst_dispatch(sgsn_bvc->fi, BSSGP_BVCFSM_E_RX_UNBLOCK_ACK, msg);
Daniel Willmann8489e7a2020-11-03 21:12:42 +01001484 break;
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +02001485 case BSSGP_PDUT_FLUSH_LL:
Alexander Couzens96a44272022-09-28 16:28:46 +02001486 /* TODO: If we negotiate Inter-NSE re-routing or LCS-procedures we can also
Daniel Willmanne705b3f2021-11-25 22:04:56 +01001487 * add the NSEI TLV to trigger re-routing the PDUs */
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +02001488 /* simple case: BVCI IE is mandatory */
Philipp Maier74882dc2021-02-04 16:31:46 +01001489 bvci = ntohs(tlvp_val16_unal(&tp[0], BSSGP_IE_BVCI));
Harald Weltee5209642020-12-05 19:59:45 +01001490 sgsn_bvc = gbproxy_bvc_by_bvci(nse, bvci);
1491 if (!sgsn_bvc)
1492 goto err_no_bvc;
Alexander Couzens96a44272022-09-28 16:28:46 +02001493
1494 /* bvc is not valid */
1495 if (!sgsn_bvc->cell || !sgsn_bvc->cell->bss_bvc) {
1496 rc = -EINVAL;
1497 break;
1498 }
1499
1500 /* When both the old and new BVCI is present:
1501 * If old & new BVCI is on the same NSEI, forward message as is,
1502 * otherwise remove new BVCI. */
1503 if (TLVP_PRESENT(&tp[1], BSSGP_IE_BVCI)) {
1504 struct gbproxy_bvc *bvc2;
1505 struct msgb *flush;
1506
1507 bvci2 = ntohs(tlvp_val16_unal(&tp[1], BSSGP_IE_BVCI));
1508 bvc2 = gbproxy_bvc_by_bvci(nse, bvci2);
1509
1510 /* it's the same NSEI, we can pass the message as is */
1511 if (bvc2->nse == sgsn_bvc->nse) {
1512 rc = gbprox_relay2peer(msg, sgsn_bvc->cell->bss_bvc, ns_bvci);
1513 break;
1514 }
1515
1516 tlli = osmo_load32be(TLVP_VAL(&tp[0], BSSGP_IE_TLLI));
1517 /* build a new message in order to drop the old one */
1518 flush = bssgp2_enc_flush_ll(tlli, bvci, NULL, NULL);
1519 if (!flush) {
1520 /* TODO: error message */
1521 rc = -ENOMEM;
1522 break;
1523 }
1524
1525 DEBUGP(DGPRS, "NSE(%05u/%s)-BVC(%05u/??) proxying to NSE(%05u/%s)\n", msgb_nsei(msg),
1526 !nse->sgsn_facing ? "SGSN" : "BSS", ns_bvci, nse->nsei, nse->sgsn_facing ? "SGSN" : "BSS");
1527 rc = bssgp2_nsi_tx_ptp(nse->cfg->nsi, nse->nsei, ns_bvci, flush, tlli);
1528 } else {
Harald Weltee5209642020-12-05 19:59:45 +01001529 rc = gbprox_relay2peer(msg, sgsn_bvc->cell->bss_bvc, ns_bvci);
Alexander Couzens96a44272022-09-28 16:28:46 +02001530 }
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +02001531 break;
Daniel Willmann5614e572021-01-18 18:38:27 +01001532 case BSSGP_PDUT_DUMMY_PAGING_PS:
1533 /* Routing area is optional in dummy paging and we have nothing else to go by
1534 * so in case it is missing we need to broadcast the paging */
1535 paging_bc = true;
1536 /* fall through */
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +02001537 case BSSGP_PDUT_PAGING_PS:
Daniel Willmann8613c9d2021-01-17 13:40:38 +01001538 {
1539 /* Cache the IMSI<->NSE to route PAGING REJECT */
1540 struct osmo_mobile_identity mi;
Philipp Maier74882dc2021-02-04 16:31:46 +01001541 const uint8_t *mi_data = TLVP_VAL(&tp[0], BSSGP_IE_IMSI);
1542 uint8_t mi_len = TLVP_LEN(&tp[0], BSSGP_IE_IMSI);
Daniel Willmann8613c9d2021-01-17 13:40:38 +01001543 osmo_mobile_identity_decode(&mi, mi_data, mi_len, false);
Daniel Willmann361d0b52021-07-09 17:44:30 +02001544 gbproxy_imsi_cache_update(nse, mi.imsi, CACHE_USAGE_PAGING);
Daniel Willmann8613c9d2021-01-17 13:40:38 +01001545 /* fall through */
1546 }
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +02001547 case BSSGP_PDUT_PAGING_CS:
1548 /* process the paging request (LAI/RAI lookup) */
Philipp Maier74882dc2021-02-04 16:31:46 +01001549 rc = gbprox_rx_paging(nse, msg, pdut_name, &tp[0], ns_bvci, paging_bc);
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +02001550 break;
1551 case BSSGP_PDUT_STATUS:
Daniel Willmann885f4302021-09-30 16:58:46 +02001552 {
1553 struct gbproxy_nse *nse_peer;
1554 uint32_t tlli;
1555
1556 /* Check if the status needs to be terminated locally */
1557 uint8_t cause = *TLVP_VAL(&tp[0], BSSGP_IE_CAUSE);
1558
1559 if (cause == BSSGP_CAUSE_UNKNOWN_BVCI || cause == BSSGP_CAUSE_BVCI_BLOCKED) {
1560 /* Log and handle locally, BVCI should be present for these causes */
1561 if (!TLVP_PRESENT(&tp[0], BSSGP_IE_BVCI)) {
1562 LOGPNSE(nse, LOGL_ERROR, "Rx STATUS cause=0x%02x(%s), but BVCI is missing\n", cause,
1563 bssgp_cause_str(cause));
1564 break;
1565 }
1566 uint16_t ptp_bvci = ntohs(tlvp_val16_unal(&tp[0], BSSGP_IE_BVCI));
1567 LOGPNSE(nse, LOGL_ERROR, "Rx STATUS cause=0x%02x(%s) for PtP-BVC %05u\n", cause,
1568 bssgp_cause_str(cause), ptp_bvci);
1569 /* FIXME: Remove/block the other BSS/SGSN BVCs if present? */
1570 break;
1571 }
1572
1573 LOGPNSE(nse, LOGL_NOTICE, "Rx STATUS cause=0x%02x(%s)\n", cause,
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +02001574 bssgp_cause_str(cause));
Daniel Willmann885f4302021-09-30 16:58:46 +02001575
Daniel Willmann3d8f5992021-10-27 16:05:37 +02001576
1577 if (gbproxy_bvci_from_status_pdu(tp, &bvci, log_pfx) == 0 && bvci != 0) {
1578 struct gbproxy_cell *cell = gbproxy_cell_by_bvci(cfg, bvci);
1579
1580 if ((!cell || !cell->bss_bvc || !cell->bss_bvc->nse)) {
1581 LOGPNSE(nse, LOGL_ERROR, "Rx STATUS cause=0x%02x(%s), but can't find NSE for cell\n",
1582 cause, bssgp_cause_str(cause));
1583 break;
1584 }
1585
1586 return gbprox_relay2nse(msg, cell->bss_bvc->nse, 0);
1587 }
1588
Daniel Willmann6ec5f952021-10-28 16:13:03 +02001589 /* We can only forward this TLLI if it's in the cache (which only happens on suspend/resume) */
1590 if (gbproxy_tlli_from_status_pdu(tp, &tlli, log_pfx) == 0) {
Daniel Willmann885f4302021-09-30 16:58:46 +02001591 nse_peer = gbproxy_nse_by_tlli(cfg, tlli);
1592 if (nse_peer)
1593 return gbprox_relay2nse(msg, nse_peer, 0);
1594 }
1595
1596 LOGPNSE(nse, LOGL_ERROR, "Unable to handle STATUS cause=0x%02x(%s)\n", cause,
1597 bssgp_cause_str(cause));
1598
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +02001599 break;
Daniel Willmann885f4302021-09-30 16:58:46 +02001600 }
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +02001601 /* those only exist in the SGSN -> BSS direction */
1602 case BSSGP_PDUT_SUSPEND_ACK:
1603 case BSSGP_PDUT_SUSPEND_NACK:
1604 case BSSGP_PDUT_RESUME_ACK:
1605 case BSSGP_PDUT_RESUME_NACK:
Daniel Willmann77493b12020-12-29 21:13:31 +01001606 {
1607 struct gbproxy_nse *nse_peer;
Philipp Maier74882dc2021-02-04 16:31:46 +01001608 uint32_t tlli = osmo_load32be(TLVP_VAL(&tp[0], BSSGP_IE_TLLI));
Daniel Willmann77493b12020-12-29 21:13:31 +01001609
1610 nse_peer = gbproxy_nse_by_tlli(cfg, tlli);
1611 if (!nse_peer) {
1612 LOGPNSE(nse, LOGL_ERROR, "Rx %s: Cannot find NSE\n", pdut_name);
1613 /* TODO: Counter */
Daniel Willmannf8cba652021-02-12 04:59:47 +01001614 return tx_status(nse, ns_bvci, BSSGP_CAUSE_INV_MAND_INF, NULL, msg);
Daniel Willmann77493b12020-12-29 21:13:31 +01001615 }
1616 /* Delete the entry after we're done */
1617 gbproxy_tlli_cache_remove(cfg, tlli);
1618 LOGPNSE(nse_peer, LOGL_DEBUG, "Rx %s: forwarding\n", pdut_name);
1619 gbprox_relay2nse(msg, nse_peer, ns_bvci);
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +02001620 break;
Daniel Willmann77493b12020-12-29 21:13:31 +01001621 }
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +02001622 case BSSGP_PDUT_SGSN_INVOKE_TRACE:
Harald Welte7479c4d2020-12-02 20:06:04 +01001623 case BSSGP_PDUT_OVERLOAD:
Harald Weltee5209642020-12-05 19:59:45 +01001624 LOGPNSE(nse, LOGL_DEBUG, "Rx %s: broadcasting\n", pdut_name);
Harald Welte560bdb32020-12-04 22:24:47 +01001625 /* broadcast to all BSS-side bvcs */
Harald Welted2fef952020-12-05 00:31:07 +01001626 hash_for_each(cfg->bss_nses, i, nse, list) {
Harald Welte7479c4d2020-12-02 20:06:04 +01001627 gbprox_relay2nse(msg, nse, 0);
1628 }
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +02001629 break;
Harald Weltee5209642020-12-05 19:59:45 +01001630 case BSSGP_PDUT_RAN_INFO:
1631 case BSSGP_PDUT_RAN_INFO_REQ:
1632 case BSSGP_PDUT_RAN_INFO_ACK:
1633 case BSSGP_PDUT_RAN_INFO_ERROR:
1634 case BSSGP_PDUT_RAN_INFO_APP_ERROR:
Philipp Maier1c5766b2021-02-09 17:03:03 +01001635 rc = gbprox_rx_rim_from_sgsn(tp, nse, msg, log_pfx, pdut_name);
Pau Espin Pedrola4296342021-05-07 13:33:34 +02001636 break;
Daniel Willmannf024eeb2021-07-06 14:02:41 +02001637 case BSSGP_PDUT_MS_REGISTR_ENQ_RESP:
1638 {
1639 struct gbproxy_nse *nse_peer;
1640 struct osmo_mobile_identity mi;
1641 const uint8_t *mi_data = TLVP_VAL(&tp[0], BSSGP_IE_IMSI);
1642 uint8_t mi_len = TLVP_LEN(&tp[0], BSSGP_IE_IMSI);
1643 osmo_mobile_identity_decode(&mi, mi_data, mi_len, false);
1644 nse_peer = gbproxy_nse_by_imsi(cfg, mi.imsi, CACHE_USAGE_MS_REG_ENQ);
1645 if (!nse_peer) {
1646 LOGPNSE(nse, LOGL_ERROR, "Rx %s: Cannot find NSE\n", pdut_name);
1647 return tx_status(nse, ns_bvci, BSSGP_CAUSE_INV_MAND_INF, NULL, msg);
1648 } else if (nse_peer->sgsn_facing) {
1649 LOGPNSE(nse, LOGL_ERROR, "Forwarding %s failed: IMSI cache contains SGSN NSE", pdut_name);
1650 return tx_status(nse, ns_bvci, BSSGP_CAUSE_PROTO_ERR_UNSPEC, NULL, msg);
1651 }
1652 gbproxy_imsi_cache_remove(cfg, mi.imsi, CACHE_USAGE_MS_REG_ENQ);
1653 gbprox_relay2nse(msg, nse_peer, ns_bvci);
1654 break;
1655 }
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +02001656 default:
Harald Weltee5209642020-12-05 19:59:45 +01001657 LOGPNSE(nse, LOGL_NOTICE, "Rx %s: Not supported\n", pdut_name);
Pau Espin Pedrol56438362021-06-04 18:03:44 +02001658 rate_ctr_inc(rate_ctr_group_get_ctr(cfg->ctrg, GBPROX_GLOB_CTR_PROTO_ERR_SGSN));
Daniel Willmannf8cba652021-02-12 04:59:47 +01001659 rc = tx_status(nse, ns_bvci, BSSGP_CAUSE_PROTO_ERR_UNSPEC, NULL, msg);
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +02001660 break;
1661 }
1662
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +02001663 return rc;
Harald Weltee5209642020-12-05 19:59:45 +01001664
Harald Welte560bdb32020-12-04 22:24:47 +01001665err_no_bvc:
Daniel Willmann723bb362021-09-28 18:51:47 +02001666 LOGPNSE(nse, LOGL_ERROR, "Rx %s: Cannot find BVC %05u\n", pdut_name, bvci);
Daniel Willmannc4b913b2021-09-24 16:43:42 +02001667 rate_ctr_inc(rate_ctr_group_get_ctr(cfg->ctrg, GBPROX_GLOB_CTR_INV_BVCI));
Daniel Willmannf8cba652021-02-12 04:59:47 +01001668 return tx_status(nse, ns_bvci, BSSGP_CAUSE_INV_MAND_INF, NULL, msg);
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +02001669}
1670
Harald Weltee5209642020-12-05 19:59:45 +01001671
1672/***********************************************************************
1673 * libosmogb NS/BSSGP integration
1674 ***********************************************************************/
1675
Alexander Couzens951e1332020-09-22 13:21:46 +02001676int gbprox_bssgp_send_cb(void *ctx, struct msgb *msg)
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +02001677{
1678 int rc;
Alexander Couzens951e1332020-09-22 13:21:46 +02001679 struct gbproxy_config *cfg = (struct gbproxy_config *) ctx;
1680 struct gprs_ns2_inst *nsi = cfg->nsi;
1681 struct osmo_gprs_ns2_prim nsp = {};
1682
1683 nsp.bvci = msgb_bvci(msg);
1684 nsp.nsei = msgb_nsei(msg);
1685
Alexander Couzens55c36f92021-01-27 20:56:55 +01001686 osmo_prim_init(&nsp.oph, SAP_NS, GPRS_NS2_PRIM_UNIT_DATA, PRIM_OP_REQUEST, msg);
Alexander Couzens951e1332020-09-22 13:21:46 +02001687 rc = gprs_ns2_recv_prim(nsi, &nsp.oph);
1688
1689 return rc;
1690}
1691
1692/* Main input function for Gb proxy */
1693int gbprox_rcvmsg(void *ctx, struct msgb *msg)
1694{
Alexander Couzens951e1332020-09-22 13:21:46 +02001695 struct gbproxy_config *cfg = (struct gbproxy_config *) ctx;
Harald Weltee5209642020-12-05 19:59:45 +01001696 uint16_t ns_bvci = msgb_bvci(msg);
1697 uint16_t nsei = msgb_nsei(msg);
1698 struct gbproxy_nse *nse;
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +02001699
Harald Weltee5209642020-12-05 19:59:45 +01001700 nse = gbproxy_nse_by_nsei(cfg, nsei, NSE_F_SGSN);
1701 if (nse) {
Daniel Willmannf8cba652021-02-12 04:59:47 +01001702 /* ensure minimum length to decode PDU type */
1703 if (msgb_bssgp_len(msg) < sizeof(struct bssgp_normal_hdr))
1704 return tx_status(nse, ns_bvci, BSSGP_CAUSE_SEM_INCORR_PDU, NULL, msg);
1705
Harald Weltee5209642020-12-05 19:59:45 +01001706 if (ns_bvci == 0 || ns_bvci == 1)
1707 return gbprox_rx_sig_from_sgsn(nse, msg, ns_bvci);
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +02001708 else
Harald Weltee5209642020-12-05 19:59:45 +01001709 return gbprox_rx_ptp_from_sgsn(nse, msg, ns_bvci);
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +02001710 }
1711
Harald Weltee5209642020-12-05 19:59:45 +01001712 nse = gbproxy_nse_by_nsei(cfg, nsei, NSE_F_BSS);
1713 if (!nse) {
1714 LOGP(DGPRS, LOGL_NOTICE, "NSE(%05u/BSS) not known -> allocating\n", nsei);
1715 nse = gbproxy_nse_alloc(cfg, nsei, false);
1716 }
1717 if (nse) {
Daniel Willmannf8cba652021-02-12 04:59:47 +01001718 /* ensure minimum length to decode PDU type */
1719 if (msgb_bssgp_len(msg) < sizeof(struct bssgp_normal_hdr))
1720 return tx_status(nse, ns_bvci, BSSGP_CAUSE_SEM_INCORR_PDU, NULL, msg);
1721
Harald Weltee5209642020-12-05 19:59:45 +01001722 if (ns_bvci == 0 || ns_bvci == 1)
1723 return gbprox_rx_sig_from_bss(nse, msg, ns_bvci);
1724 else
1725 return gbprox_rx_ptp_from_bss(nse, msg, ns_bvci);
1726 }
1727
1728 return 0;
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +02001729}
1730
Alexander Couzens951e1332020-09-22 13:21:46 +02001731/* TODO: What about handling:
Alexander Couzens55c36f92021-01-27 20:56:55 +01001732 * GPRS_NS2_AFF_CAUSE_VC_FAILURE,
1733 GPRS_NS2_AFF_CAUSE_VC_RECOVERY,
Alexander Couzens951e1332020-09-22 13:21:46 +02001734 osmocom own causes
Alexander Couzens55c36f92021-01-27 20:56:55 +01001735 GPRS_NS2_AFF_CAUSE_SNS_CONFIGURED,
1736 GPRS_NS2_AFF_CAUSE_SNS_FAILURE,
Alexander Couzens951e1332020-09-22 13:21:46 +02001737 */
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +02001738
Alexander Couzens951e1332020-09-22 13:21:46 +02001739void gprs_ns_prim_status_cb(struct gbproxy_config *cfg, struct osmo_gprs_ns2_prim *nsp)
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +02001740{
Daniel Willmann1f3470f2021-03-11 09:53:42 +01001741 int i;
Harald Welte560bdb32020-12-04 22:24:47 +01001742 struct gbproxy_bvc *bvc;
Daniel Willmannf96cac52021-03-09 16:14:18 +01001743 struct gbproxy_nse *nse;
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +02001744
Alexander Couzens951e1332020-09-22 13:21:46 +02001745 switch (nsp->u.status.cause) {
Alexander Couzens55c36f92021-01-27 20:56:55 +01001746 case GPRS_NS2_AFF_CAUSE_SNS_FAILURE:
1747 case GPRS_NS2_AFF_CAUSE_SNS_CONFIGURED:
Alexander Couzens951e1332020-09-22 13:21:46 +02001748 break;
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +02001749
Alexander Couzens55c36f92021-01-27 20:56:55 +01001750 case GPRS_NS2_AFF_CAUSE_RECOVERY:
Harald Welte9b367d22021-01-18 13:55:51 +01001751 LOGP(DGPRS, LOGL_NOTICE, "NS-NSE %d became available\n", nsp->nsei);
Daniel Willmannf96cac52021-03-09 16:14:18 +01001752 nse = gbproxy_nse_by_nsei(cfg, nsp->nsei, NSE_F_SGSN);
1753 if (nse) {
Daniel Willmann37518b32021-05-27 18:13:36 +02001754 nse->alive = true;
Daniel Willmann38b9c9a2021-03-09 15:54:44 +01001755 // Update the NSE max SDU len
Daniel Willmannf96cac52021-03-09 16:14:18 +01001756 nse->max_sdu_len = nsp->u.status.mtu;
Daniel Willmann38b9c9a2021-03-09 15:54:44 +01001757
Harald Weltee5209642020-12-05 19:59:45 +01001758 uint8_t cause = BSSGP_CAUSE_OML_INTERV;
Daniel Willmannf96cac52021-03-09 16:14:18 +01001759 bvc = gbproxy_bvc_by_bvci(nse, 0);
Daniel Willmann38b9c9a2021-03-09 15:54:44 +01001760 if (bvc) {
Daniel Willmannf96cac52021-03-09 16:14:18 +01001761 bssgp_bvc_fsm_set_max_pdu_len(bvc->fi, nse->max_sdu_len);
Daniel Willmann3ea37932021-02-10 13:41:14 +01001762 osmo_fsm_inst_dispatch(bvc->fi, BSSGP_BVCFSM_E_REQ_RESET, &cause);
Daniel Willmann38b9c9a2021-03-09 15:54:44 +01001763 }
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +02001764 }
Alexander Couzens951e1332020-09-22 13:21:46 +02001765 break;
Alexander Couzens55c36f92021-01-27 20:56:55 +01001766 case GPRS_NS2_AFF_CAUSE_FAILURE:
Daniel Willmannf96cac52021-03-09 16:14:18 +01001767 nse = gbproxy_nse_by_nsei(cfg, nsp->nsei, NSE_F_BSS | NSE_F_SGSN);
1768 if (!nse) {
1769 LOGP(DGPRS, LOGL_ERROR, "Unknown NSE(%05d) became unavailable\n", nsp->nsei);
1770 break;
1771 }
Daniel Willmann37518b32021-05-27 18:13:36 +02001772
1773 nse->alive = false;
Daniel Willmannf96cac52021-03-09 16:14:18 +01001774 if (nse->sgsn_facing) {
Daniel Willmann1f3470f2021-03-11 09:53:42 +01001775 struct hlist_node *ntmp;
Daniel Willmannf96cac52021-03-09 16:14:18 +01001776 /* SGSN */
1777 /* TODO: When to block all PtP towards bss? Only if all SGSN are down? */
Daniel Willmann1f3470f2021-03-11 09:53:42 +01001778 hash_for_each_safe(nse->bvcs, i, ntmp, bvc, list) {
1779 if (bvc->bvci == 0)
1780 continue;
1781 gbproxy_bvc_free(bvc);
1782 }
Pau Espin Pedrol56438362021-06-04 18:03:44 +02001783 rate_ctr_inc(rate_ctr_group_get_ctr(cfg->ctrg, GBPROX_GLOB_CTR_RESTART_RESET_SGSN));
Alexander Couzens951e1332020-09-22 13:21:46 +02001784 } else {
Daniel Willmannf96cac52021-03-09 16:14:18 +01001785 /* BSS became unavailable
1786 * Block matching PtP-BVCs on SGSN-side */
1787 hash_for_each(nse->bvcs, i, bvc, list) {
1788 if (bvc->bvci == 0)
1789 continue;
1790 /* Get BVC for each SGSN and send block request */
1791 struct gbproxy_cell *cell = bvc->cell;
1792 for (int j = 0; j < GBPROXY_MAX_NR_SGSN; j++) {
1793 struct gbproxy_bvc *sgsn_bvc = cell->sgsn_bvc[j];
1794 if (!sgsn_bvc)
1795 continue;
1796
1797 /* Block BVC, indicate BSS equipment failure */
1798 uint8_t cause = BSSGP_CAUSE_EQUIP_FAIL;
1799 osmo_fsm_inst_dispatch(sgsn_bvc->fi, BSSGP_BVCFSM_E_REQ_BLOCK, &cause);
Daniel Willmanndc763fd2021-09-24 16:45:38 +02001800 sgsn_bvc->inactive = true;
Daniel Willmannf96cac52021-03-09 16:14:18 +01001801 }
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +02001802 }
Alexander Couzens951e1332020-09-22 13:21:46 +02001803
Daniel Willmann1f3470f2021-03-11 09:53:42 +01001804 /* This frees the BVCs for us as well */
1805 gbproxy_nse_free(nse);
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +02001806 }
Harald Welte9b367d22021-01-18 13:55:51 +01001807 LOGP(DGPRS, LOGL_NOTICE, "NS-NSE %d became unavailable\n", nsp->nsei);
Alexander Couzens951e1332020-09-22 13:21:46 +02001808 break;
1809 default:
Harald Welte9b367d22021-01-18 13:55:51 +01001810 LOGP(DGPRS, LOGL_NOTICE, "NS: Unknown NS-STATUS.ind cause=%s from NS\n",
Harald Welte95cf9fb2020-11-30 10:55:22 +01001811 gprs_ns2_aff_cause_prim_str(nsp->u.status.cause));
Alexander Couzens951e1332020-09-22 13:21:46 +02001812 break;
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +02001813 }
Alexander Couzens951e1332020-09-22 13:21:46 +02001814}
1815
Alexander Couzens951e1332020-09-22 13:21:46 +02001816/* called by the ns layer */
1817int gprs_ns2_prim_cb(struct osmo_prim_hdr *oph, void *ctx)
1818{
1819 struct osmo_gprs_ns2_prim *nsp;
1820 struct gbproxy_config *cfg = (struct gbproxy_config *) ctx;
Daniel Willmann8f407b12020-12-02 19:33:50 +01001821 uintptr_t bvci;
Alexander Couzens951e1332020-09-22 13:21:46 +02001822 int rc = 0;
1823
1824 if (oph->sap != SAP_NS)
1825 return 0;
1826
1827 nsp = container_of(oph, struct osmo_gprs_ns2_prim, oph);
1828
1829 if (oph->operation != PRIM_OP_INDICATION) {
Harald Welte9b367d22021-01-18 13:55:51 +01001830 LOGP(DGPRS, LOGL_NOTICE, "NS: Unexpected primitive operation %s from NS\n",
Harald Welte95cf9fb2020-11-30 10:55:22 +01001831 get_value_string(osmo_prim_op_names, oph->operation));
Alexander Couzens951e1332020-09-22 13:21:46 +02001832 return 0;
1833 }
1834
1835 switch (oph->primitive) {
Alexander Couzens55c36f92021-01-27 20:56:55 +01001836 case GPRS_NS2_PRIM_UNIT_DATA:
Daniel Willmann8f407b12020-12-02 19:33:50 +01001837
Alexander Couzens951e1332020-09-22 13:21:46 +02001838 /* hand the message into the BSSGP implementation */
1839 msgb_bssgph(oph->msg) = oph->msg->l3h;
1840 msgb_bvci(oph->msg) = nsp->bvci;
1841 msgb_nsei(oph->msg) = nsp->nsei;
Daniel Willmann8f407b12020-12-02 19:33:50 +01001842 bvci = nsp->bvci | BVC_LOG_CTX_FLAG;
Alexander Couzens951e1332020-09-22 13:21:46 +02001843
Daniel Willmann8f407b12020-12-02 19:33:50 +01001844 log_set_context(LOG_CTX_GB_BVC, (void *)bvci);
Alexander Couzens951e1332020-09-22 13:21:46 +02001845 rc = gbprox_rcvmsg(cfg, oph->msg);
Daniel Willmannb6550102020-11-04 17:32:56 +01001846 msgb_free(oph->msg);
Alexander Couzens951e1332020-09-22 13:21:46 +02001847 break;
Alexander Couzens55c36f92021-01-27 20:56:55 +01001848 case GPRS_NS2_PRIM_STATUS:
Alexander Couzens951e1332020-09-22 13:21:46 +02001849 gprs_ns_prim_status_cb(cfg, nsp);
1850 break;
1851 default:
Harald Welte9b367d22021-01-18 13:55:51 +01001852 LOGP(DGPRS, LOGL_NOTICE, "NS: Unknown prim %s %s from NS\n",
Harald Welte95cf9fb2020-11-30 10:55:22 +01001853 gprs_ns2_prim_str(oph->primitive),
1854 get_value_string(osmo_prim_op_names, oph->operation));
Alexander Couzens951e1332020-09-22 13:21:46 +02001855 break;
1856 }
1857
1858 return rc;
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +02001859}
1860
1861void gbprox_reset(struct gbproxy_config *cfg)
1862{
Harald Welted2fef952020-12-05 00:31:07 +01001863 struct gbproxy_nse *nse;
1864 struct hlist_node *ntmp;
Harald Welte8b4c7942020-12-05 10:14:49 +01001865 int i, j;
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +02001866
Harald Welted2fef952020-12-05 00:31:07 +01001867 hash_for_each_safe(cfg->bss_nses, i, ntmp, nse, list) {
Harald Welte8b4c7942020-12-05 10:14:49 +01001868 struct gbproxy_bvc *bvc;
1869 struct hlist_node *tmp;
1870 hash_for_each_safe(nse->bvcs, j, tmp, bvc, list)
Harald Welte560bdb32020-12-04 22:24:47 +01001871 gbproxy_bvc_free(bvc);
Daniel Willmanne50550e2020-11-26 18:19:21 +01001872
1873 gbproxy_nse_free(nse);
1874 }
Harald Weltee5209642020-12-05 19:59:45 +01001875 /* FIXME: cells */
1876 /* FIXME: SGSN side BVCs (except signaling) */
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +02001877
1878 rate_ctr_group_free(cfg->ctrg);
1879 gbproxy_init_config(cfg);
1880}
1881
Daniel Willmann77493b12020-12-29 21:13:31 +01001882static void tlli_cache_cleanup(void *data)
1883{
1884 struct gbproxy_config *cfg = data;
1885 gbproxy_tlli_cache_cleanup(cfg);
1886
1887 /* TODO: Disable timer when cache is empty */
1888 osmo_timer_schedule(&cfg->tlli_cache.timer, 2, 0);
1889}
1890
Daniel Willmannc8a50092021-01-17 13:11:41 +01001891static void imsi_cache_cleanup(void *data)
1892{
1893 struct gbproxy_config *cfg = data;
1894 gbproxy_imsi_cache_cleanup(cfg);
1895
1896 /* TODO: Disable timer when cache is empty */
1897 osmo_timer_schedule(&cfg->imsi_cache.timer, 2, 0);
1898}
1899
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +02001900int gbproxy_init_config(struct gbproxy_config *cfg)
1901{
1902 struct timespec tp;
1903
Harald Welte209dc9f2020-12-12 19:02:16 +01001904 /* by default we advertise 100% of the BSS-side capacity to _each_ SGSN */
1905 cfg->pool.bvc_fc_ratio = 100;
Daniel Willmannee834af2020-12-14 16:22:39 +01001906 cfg->pool.null_nri_ranges = osmo_nri_ranges_alloc(cfg);
Daniel Willmann77493b12020-12-29 21:13:31 +01001907 /* TODO: Make configurable */
Daniel Willmannbd12f3f2021-01-13 18:16:04 +01001908 cfg->tlli_cache.timeout = 10;
Daniel Willmannc8a50092021-01-17 13:11:41 +01001909 cfg->imsi_cache.timeout = 10;
Daniel Willmannee834af2020-12-14 16:22:39 +01001910
Harald Welted2fef952020-12-05 00:31:07 +01001911 hash_init(cfg->bss_nses);
Daniel Willmann1e7be5d2020-12-21 18:08:21 +01001912 hash_init(cfg->sgsn_nses);
1913 hash_init(cfg->cells);
Daniel Willmann77493b12020-12-29 21:13:31 +01001914 hash_init(cfg->tlli_cache.entries);
Daniel Willmannee834af2020-12-14 16:22:39 +01001915 INIT_LLIST_HEAD(&cfg->sgsns);
1916
Daniel Willmann77493b12020-12-29 21:13:31 +01001917 osmo_timer_setup(&cfg->tlli_cache.timer, tlli_cache_cleanup, cfg);
1918 osmo_timer_schedule(&cfg->tlli_cache.timer, 2, 0);
1919
Daniel Willmannc8a50092021-01-17 13:11:41 +01001920 /* We could also combine both timers */
1921 osmo_timer_setup(&cfg->imsi_cache.timer, imsi_cache_cleanup, cfg);
1922 osmo_timer_schedule(&cfg->imsi_cache.timer, 2, 0);
1923
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +02001924 cfg->ctrg = rate_ctr_group_alloc(tall_sgsn_ctx, &global_ctrg_desc, 0);
1925 if (!cfg->ctrg) {
1926 LOGP(DGPRS, LOGL_ERROR, "Cannot allocate global counter group!\n");
1927 return -1;
1928 }
1929 osmo_clock_gettime(CLOCK_REALTIME, &tp);
Harald Weltec169de42020-12-07 13:12:13 +01001930 osmo_fsm_log_timeouts(true);
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +02001931
1932 return 0;
Oliver Smith29532c22021-01-29 11:13:00 +01001933}