blob: c882eb0685bb0e2d46eb1fb549cfda04b0719621 [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>
40#include <osmocom/core/stats.h>
Daniel Willmannd4ab1f92020-12-21 18:53:55 +010041#include <osmocom/core/utils.h>
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +020042
Alexander Couzens951e1332020-09-22 13:21:46 +020043#include <osmocom/gprs/gprs_ns2.h>
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +020044#include <osmocom/gprs/gprs_bssgp.h>
Harald Welte209dc9f2020-12-12 19:02:16 +010045#include <osmocom/gprs/gprs_bssgp2.h>
Alexander Couzens951e1332020-09-22 13:21:46 +020046#include <osmocom/gprs/gprs_bssgp_bss.h>
Harald Weltee5209642020-12-05 19:59:45 +010047#include <osmocom/gprs/bssgp_bvc_fsm.h>
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +020048
Daniel Willmannd4ab1f92020-12-21 18:53:55 +010049#include <osmocom/gsm/gsm23236.h>
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +020050#include <osmocom/gsm/gsm_utils.h>
51
52#include <osmocom/sgsn/signal.h>
53#include <osmocom/sgsn/debug.h>
54#include <osmocom/sgsn/gprs_gb_parse.h>
55#include <osmocom/sgsn/gb_proxy.h>
56
57#include <osmocom/sgsn/gprs_llc.h>
58#include <osmocom/gsm/protocol/gsm_04_08_gprs.h>
59#include <osmocom/sgsn/gprs_utils.h>
60
61extern void *tall_sgsn_ctx;
62
63static const struct rate_ctr_desc global_ctr_description[] = {
64 { "inv-bvci", "Invalid BVC Identifier " },
65 { "inv-lai", "Invalid Location Area Identifier" },
66 { "inv-rai", "Invalid Routing Area Identifier " },
67 { "inv-nsei", "No BVC established for NSEI " },
68 { "proto-err:bss", "BSSGP protocol error (BSS )" },
69 { "proto-err:sgsn", "BSSGP protocol error (SGSN)" },
70 { "not-supp:bss", "Feature not supported (BSS )" },
71 { "not-supp:sgsn", "Feature not supported (SGSN)" },
72 { "restart:sgsn", "Restarted RESET procedure (SGSN)" },
73 { "tx-err:sgsn", "NS Transmission error (SGSN)" },
74 { "error", "Other error " },
75 { "mod-peer-err", "Patch error: no peer " },
76};
77
78static const struct rate_ctr_group_desc global_ctrg_desc = {
79 .group_name_prefix = "gbproxy:global",
80 .group_description = "GBProxy Global Statistics",
81 .num_ctr = ARRAY_SIZE(global_ctr_description),
82 .ctr_desc = global_ctr_description,
83 .class_id = OSMO_STATS_CLASS_GLOBAL,
84};
85
Harald Welte560bdb32020-12-04 22:24:47 +010086static int gbprox_relay2peer(struct msgb *old_msg, struct gbproxy_bvc *bvc,
Daniel Willmann35f7d332020-11-03 21:11:45 +010087 uint16_t ns_bvci);
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +020088
Harald Weltea0f70732020-12-05 17:50:23 +010089
Harald Welteec0f8012020-12-06 16:32:01 +010090/* generate BVC-STATUS message with cause value derived from TLV-parser error */
91static int tx_status_from_tlvp(enum osmo_tlv_parser_error tlv_p_err, struct msgb *orig_msg)
92{
93 uint8_t bssgp_cause;
94 switch (tlv_p_err) {
95 case OSMO_TLVP_ERR_MAND_IE_MISSING:
96 bssgp_cause = BSSGP_CAUSE_MISSING_MAND_IE;
97 break;
98 default:
99 bssgp_cause = BSSGP_CAUSE_PROTO_ERR_UNSPEC;
100 }
101 return bssgp_tx_status(bssgp_cause, NULL, orig_msg);
102}
103
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +0200104/* strip off the NS header */
105static void strip_ns_hdr(struct msgb *msg)
106{
107 int strip_len = msgb_bssgph(msg) - msg->data;
108 msgb_pull(msg, strip_len);
109}
110
Harald Weltee5209642020-12-05 19:59:45 +0100111#if 0
Harald Welte560bdb32020-12-04 22:24:47 +0100112/* feed a message down the NS-VC associated with the specified bvc */
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +0200113static int gbprox_relay2sgsn(struct gbproxy_config *cfg, struct msgb *old_msg,
114 uint16_t ns_bvci, uint16_t sgsn_nsei)
115{
116 /* create a copy of the message so the old one can
117 * be free()d safely when we return from gbprox_rcvmsg() */
Alexander Couzens951e1332020-09-22 13:21:46 +0200118 struct gprs_ns2_inst *nsi = cfg->nsi;
119 struct osmo_gprs_ns2_prim nsp = {};
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +0200120 struct msgb *msg = bssgp_msgb_copy(old_msg, "msgb_relay2sgsn");
121 int rc;
122
Daniel Willmann3696dce2020-12-02 16:08:02 +0100123 DEBUGP(DGPRS, "NSE(%05u/BSS)-BVC(%05u) proxying BTS->SGSN NSE(%05u/SGSN)\n",
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +0200124 msgb_nsei(msg), ns_bvci, sgsn_nsei);
125
Alexander Couzens951e1332020-09-22 13:21:46 +0200126 nsp.bvci = ns_bvci;
127 nsp.nsei = sgsn_nsei;
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +0200128
129 strip_ns_hdr(msg);
Alexander Couzens951e1332020-09-22 13:21:46 +0200130 osmo_prim_init(&nsp.oph, SAP_NS, PRIM_NS_UNIT_DATA,
131 PRIM_OP_REQUEST, msg);
132 rc = gprs_ns2_recv_prim(nsi, &nsp.oph);
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +0200133 if (rc < 0)
134 rate_ctr_inc(&cfg->ctrg->ctr[GBPROX_GLOB_CTR_TX_ERR_SGSN]);
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +0200135 return rc;
136}
Harald Weltee5209642020-12-05 19:59:45 +0100137#endif
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +0200138
Harald Weltee30985e2021-01-28 19:13:19 +0100139/*! Determine the TLLI from the given BSSGP message.
140 * \param[in] bssgp pointer to start of BSSGP header
141 * \param[in] bssgp_len length of BSSGP message in octets
142 * \param[out] tlli TLLI (if any) in host byte order
143 * \returns 1 if TLLI found; 0 if none found; negative on parse error */
144int gprs_gb_parse_tlli(const uint8_t *bssgp, size_t bssgp_len, uint32_t *tlli)
145{
146 const struct bssgp_normal_hdr *bgph;
147 uint8_t pdu_type;
148
149 if (bssgp_len < sizeof(struct bssgp_normal_hdr))
150 return -EINVAL;
151
152 bgph = (struct bssgp_normal_hdr *)bssgp;
153 pdu_type = bgph->pdu_type;
154
155 if (pdu_type == BSSGP_PDUT_UL_UNITDATA ||
156 pdu_type == BSSGP_PDUT_DL_UNITDATA) {
157 const struct bssgp_ud_hdr *budh = (struct bssgp_ud_hdr *)bssgp;
158 if (bssgp_len < sizeof(struct bssgp_ud_hdr))
159 return -EINVAL;
160 *tlli = osmo_load32be((const uint8_t *)&budh->tlli);
161 return 1;
162 } else {
163 const uint8_t *data = bgph->data;
164 size_t data_len = bssgp_len - sizeof(*bgph);
165 struct tlv_parsed tp;
166
167 if (bssgp_tlv_parse(&tp, data, data_len) < 0)
168 return -EINVAL;
169
170 if (TLVP_PRESENT(&tp, BSSGP_IE_TLLI)) {
171 *tlli = osmo_load32be(TLVP_VAL(&tp, BSSGP_IE_TLLI));
172 return 1;
173 }
174 }
175
176 /* No TLLI present in message */
177 return 0;
178}
179
Daniel Willmann76205712020-11-30 17:08:58 +0100180/* feed a message down the NSE */
181static int gbprox_relay2nse(struct msgb *old_msg, struct gbproxy_nse *nse,
Daniel Willmann35f7d332020-11-03 21:11:45 +0100182 uint16_t ns_bvci)
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +0200183{
Daniel Willmanne50550e2020-11-26 18:19:21 +0100184 OSMO_ASSERT(nse);
185 OSMO_ASSERT(nse->cfg);
186
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +0200187 /* create a copy of the message so the old one can
188 * be free()d safely when we return from gbprox_rcvmsg() */
Daniel Willmanne50550e2020-11-26 18:19:21 +0100189 struct gprs_ns2_inst *nsi = nse->cfg->nsi;
Alexander Couzens951e1332020-09-22 13:21:46 +0200190 struct osmo_gprs_ns2_prim nsp = {};
Daniel Willmann76205712020-11-30 17:08:58 +0100191 struct msgb *msg = bssgp_msgb_copy(old_msg, "msgb_relay2nse");
Harald Weltefe059582020-11-18 12:01:46 +0100192 uint32_t tlli;
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +0200193 int rc;
194
Daniel Willmann98b1b452020-12-21 10:40:27 +0100195 DEBUGP(DGPRS, "NSE(%05u/%s)-BVC(%05u/??) proxying to NSE(%05u/%s)\n", msgb_nsei(msg),
196 !nse->sgsn_facing ? "SGSN" : "BSS", ns_bvci, nse->nsei, nse->sgsn_facing ? "SGSN" : "BSS");
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +0200197
Alexander Couzens951e1332020-09-22 13:21:46 +0200198 nsp.bvci = ns_bvci;
Daniel Willmanne50550e2020-11-26 18:19:21 +0100199 nsp.nsei = nse->nsei;
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +0200200
201 /* Strip the old NS header, it will be replaced with a new one */
202 strip_ns_hdr(msg);
203
Harald Weltefe059582020-11-18 12:01:46 +0100204 /* TS 48.018 Section 5.4.2: The link selector parameter is
205 * defined in 3GPP TS 48.016. At one side of the Gb interface,
206 * all BSSGP UNITDATA PDUs related to an MS shall be passed with
207 * the same LSP, e.g. the LSP contains the MS's TLLI, to the
208 * underlying network service. */
209 if (gprs_gb_parse_tlli(msgb_data(msg), msgb_length(msg), &tlli) == 1)
210 nsp.u.unitdata.link_selector = tlli;
211
Alexander Couzens55c36f92021-01-27 20:56:55 +0100212 osmo_prim_init(&nsp.oph, SAP_NS, GPRS_NS2_PRIM_UNIT_DATA,
Alexander Couzens951e1332020-09-22 13:21:46 +0200213 PRIM_OP_REQUEST, msg);
214 rc = gprs_ns2_recv_prim(nsi, &nsp.oph);
Daniel Willmann76205712020-11-30 17:08:58 +0100215 /* FIXME: We need a counter group for gbproxy_nse */
216 //if (rc < 0)
Harald Welte560bdb32020-12-04 22:24:47 +0100217 // rate_ctr_inc(&bvc->ctrg->ctr[GBPROX_PEER_CTR_TX_ERR]);
Daniel Willmann76205712020-11-30 17:08:58 +0100218
219 return rc;
220}
221
Harald Welte560bdb32020-12-04 22:24:47 +0100222/* feed a message down the NS-VC associated with the specified bvc */
223static int gbprox_relay2peer(struct msgb *old_msg, struct gbproxy_bvc *bvc,
Daniel Willmann76205712020-11-30 17:08:58 +0100224 uint16_t ns_bvci)
225{
226 int rc;
Harald Welte560bdb32020-12-04 22:24:47 +0100227 struct gbproxy_nse *nse = bvc->nse;
Daniel Willmann76205712020-11-30 17:08:58 +0100228 OSMO_ASSERT(nse);
229
230 rc = gbprox_relay2nse(old_msg, nse, ns_bvci);
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +0200231 if (rc < 0)
Harald Welte560bdb32020-12-04 22:24:47 +0100232 rate_ctr_inc(&bvc->ctrg->ctr[GBPROX_PEER_CTR_TX_ERR]);
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +0200233
234 return rc;
235}
236
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +0200237int bssgp_prim_cb(struct osmo_prim_hdr *oph, void *ctx)
238{
239 return 0;
240}
241
Harald Weltee5209642020-12-05 19:59:45 +0100242
243/***********************************************************************
244 * PTP BVC handling
245 ***********************************************************************/
246
Daniel Willmannd4ab1f92020-12-21 18:53:55 +0100247/* FIXME: Handle the tlli NULL case correctly,
248 * This function should take a generic selector
249 * and choose an sgsn based on that
250 */
251static struct gbproxy_sgsn *gbproxy_select_sgsn(struct gbproxy_config *cfg, const uint32_t *tlli)
252{
253 struct gbproxy_sgsn *sgsn = NULL;
254 struct gbproxy_sgsn *sgsn_avoid = NULL;
255
256 int tlli_type;
257 int16_t nri;
258 bool null_nri = false;
259
260 if (!tlli) {
261 sgsn = llist_first_entry(&cfg->sgsns, struct gbproxy_sgsn, list);
262 if (!sgsn) {
263 return NULL;
264 }
265 LOGPSGSN(sgsn, LOGL_INFO, "Could not get TLLI, using first SGSN\n");
266 return sgsn;
267 }
268
269 if (cfg->pool.nri_bitlen == 0) {
270 /* Pooling is disabled */
271 sgsn = llist_first_entry(&cfg->sgsns, struct gbproxy_sgsn, list);
272 if (!sgsn) {
273 return NULL;
274 }
275
276 LOGPSGSN(sgsn, LOGL_INFO, "Pooling disabled, using first configured SGSN\n");
277 } else {
278 /* Pooling is enabled, try to use the NRI for routing to an SGSN
279 * See 3GPP TS 23.236 Ch. 5.3.2 */
280 tlli_type = gprs_tlli_type(*tlli);
281 if (tlli_type == TLLI_LOCAL || tlli_type == TLLI_FOREIGN) {
282 /* Only get/use the NRI if tlli type is local */
283 osmo_tmsi_nri_v_get(&nri, *tlli, cfg->pool.nri_bitlen);
284 if (nri >= 0) {
285 /* Get the SGSN for the NRI */
286 sgsn = gbproxy_sgsn_by_nri(cfg, nri, &null_nri);
287 if (sgsn && !null_nri)
288 return sgsn;
289 /* If the NRI is the null NRI, we need to avoid the chosen SGSN */
290 if (null_nri && sgsn) {
291 sgsn_avoid = sgsn;
292 }
293 } else {
294 /* We couldn't get the NRI from the TLLI */
Daniel Willmanncd21afe2021-01-21 18:44:51 +0100295 LOGP(DGPRS, LOGL_ERROR, "Could not extract NRI from local TLLI %08x\n", *tlli);
Daniel Willmannd4ab1f92020-12-21 18:53:55 +0100296 }
Daniel Willmanncd21afe2021-01-21 18:44:51 +0100297 } else {
298 LOGP(DGPRS, LOGL_INFO, "TLLI %08x is neither local nor foreign, not routing by NRI\n", *tlli);
Daniel Willmannd4ab1f92020-12-21 18:53:55 +0100299 }
300 }
301
302 /* If we haven't found an SGSN yet we need to choose one, but avoid the one in sgsn_avoid
303 * NOTE: This function is not stable if the number of SGSNs or allow_attach changes
304 * We could implement TLLI tracking here, but 3GPP TS 23.236 Ch. 5.3.2 (see NOTE) argues that
305 * we can just wait for the MS to reattempt the procedure.
306 */
307 if (!sgsn)
308 sgsn = gbproxy_sgsn_by_tlli(cfg, sgsn_avoid, *tlli);
309
310 if (!sgsn) {
311 LOGP(DGPRS, LOGL_ERROR, "No suitable SGSN found for TLLI %u\n", *tlli);
312 return NULL;
313 }
314
315 return sgsn;
316}
317
318/*! Find the correct gbproxy_bvc given a cell and an SGSN
319 * \param[in] cfg The gbproxy configuration
320 * \param[in] cell The cell the message belongs to
321 * \param[in] tlli An optional TLLI used for tracking
322 * \return Returns 0 on success, otherwise a negative value
323 */
324static struct gbproxy_bvc *gbproxy_select_sgsn_bvc(struct gbproxy_config *cfg, struct gbproxy_cell *cell, const uint32_t *tlli)
325{
326 struct gbproxy_sgsn *sgsn;
327 struct gbproxy_bvc *sgsn_bvc = NULL;
Harald Welte02d7c482020-12-30 12:13:36 +0100328 int i;
Daniel Willmannd4ab1f92020-12-21 18:53:55 +0100329
330 sgsn = gbproxy_select_sgsn(cfg, tlli);
331 if (!sgsn) {
332 LOGPCELL(cell, LOGL_ERROR, "Could not find any SGSN, dropping message!\n");
333 return NULL;
334 }
335
336 /* Get the BVC for this SGSN/NSE */
Harald Welte02d7c482020-12-30 12:13:36 +0100337 for (i = 0; i < ARRAY_SIZE(cell->sgsn_bvc); i++) {
Daniel Willmannd4ab1f92020-12-21 18:53:55 +0100338 sgsn_bvc = cell->sgsn_bvc[i];
339 if (!sgsn_bvc)
340 continue;
341 if (sgsn->nse != sgsn_bvc->nse)
342 continue;
343
344 return sgsn_bvc;
345 }
346
347 /* This shouldn't happen */
Daniel Willmanna648f3c2020-12-28 18:07:27 +0100348 LOGPCELL(cell, LOGL_ERROR, "Could not find matching BVC for SGSN %s, dropping message!\n", sgsn->name);
Daniel Willmannd4ab1f92020-12-21 18:53:55 +0100349 return NULL;
350}
351
352/*! Send a message to the next SGSN, possibly ignoring the null SGSN
353 * route an uplink message on a PTP-BVC to a SGSN using the TLLI
354 * \param[in] cell The cell the message belongs to
355 * \param[in] msg The BSSGP message
356 * \param[in] null_sgsn If not NULL then avoid this SGSN (because this message contains its null NRI)
357 * \param[in] tlli An optional TLLI used for tracking
358 * \return Returns 0 on success, otherwise a negative value
359 */
360static int gbprox_bss2sgsn_tlli(struct gbproxy_cell *cell, struct msgb *msg, const uint32_t *tlli,
Harald Weltee5209642020-12-05 19:59:45 +0100361 bool sig_bvci)
362{
Daniel Willmannd4ab1f92020-12-21 18:53:55 +0100363 struct gbproxy_config *cfg = cell->cfg;
Harald Weltee5209642020-12-05 19:59:45 +0100364 struct gbproxy_bvc *sgsn_bvc;
Harald Weltee5209642020-12-05 19:59:45 +0100365
Daniel Willmannd4ab1f92020-12-21 18:53:55 +0100366 sgsn_bvc = gbproxy_select_sgsn_bvc(cfg, cell, tlli);
367 if (!sgsn_bvc) {
368 LOGPCELL(cell, LOGL_NOTICE, "Could not find any SGSN for TLLI %u, dropping message!\n", *tlli);
369 return -EINVAL;
Harald Weltee5209642020-12-05 19:59:45 +0100370 }
Daniel Willmannd4ab1f92020-12-21 18:53:55 +0100371
372 return gbprox_relay2peer(msg, sgsn_bvc, sig_bvci ? 0 : sgsn_bvc->bvci);
Harald Weltee5209642020-12-05 19:59:45 +0100373}
374
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +0200375/* Receive an incoming PTP message from a BSS-side NS-VC */
Harald Weltee5209642020-12-05 19:59:45 +0100376static 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 +0200377{
Harald Welte278dd272020-12-06 13:35:24 +0100378 struct bssgp_normal_hdr *bgph = (struct bssgp_normal_hdr *) msgb_bssgph(msg);
Harald Weltee5209642020-12-05 19:59:45 +0100379 const char *pdut_name = osmo_tlv_prot_msg_name(&osmo_pdef_bssgp, bgph->pdu_type);
380 struct gbproxy_bvc *bss_bvc;
381 struct tlv_parsed tp;
382 char log_pfx[32];
383 uint32_t tlli;
384 int rc;
385
386 snprintf(log_pfx, sizeof(log_pfx), "NSE(%05u/BSS)-BVC(%05u/??)", nse->nsei, ns_bvci);
387
388 LOGP(DGPRS, LOGL_DEBUG, "%s Rx %s\n", log_pfx, pdut_name);
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +0200389
Daniel Willmann06331ac2020-12-10 17:59:46 +0100390 if (ns_bvci == 0 || ns_bvci == 1) {
Harald Weltee5209642020-12-05 19:59:45 +0100391 LOGP(DGPRS, LOGL_NOTICE, "%s BVCI=%05u is not PTP\n", log_pfx, ns_bvci);
Harald Welte278dd272020-12-06 13:35:24 +0100392 return bssgp_tx_status(BSSGP_CAUSE_PROTO_ERR_UNSPEC, NULL, msg);
393 }
394
395 if (!(bssgp_pdu_type_flags(bgph->pdu_type) & BSSGP_PDUF_PTP)) {
Harald Weltee5209642020-12-05 19:59:45 +0100396 LOGP(DGPRS, LOGL_NOTICE, "%s %s not allowed in PTP BVC\n", log_pfx, pdut_name);
Harald Welte278dd272020-12-06 13:35:24 +0100397 return bssgp_tx_status(BSSGP_CAUSE_PROTO_ERR_UNSPEC, NULL, msg);
398 }
399
400 if (!(bssgp_pdu_type_flags(bgph->pdu_type) & BSSGP_PDUF_UL)) {
Harald Weltee5209642020-12-05 19:59:45 +0100401 LOGP(DGPRS, LOGL_NOTICE, "%s %s not allowed in uplink direction\n", log_pfx, pdut_name);
Harald Welte278dd272020-12-06 13:35:24 +0100402 return bssgp_tx_status(BSSGP_CAUSE_PROTO_ERR_UNSPEC, NULL, msg);
403 }
404
Harald Weltee5209642020-12-05 19:59:45 +0100405 bss_bvc = gbproxy_bvc_by_bvci(nse, ns_bvci);
406 if (!bss_bvc) {
407 LOGP(DGPRS, LOGL_NOTICE, "%s %s - Didn't find BVC for PTP message, discarding\n",
408 log_pfx, pdut_name);
409 return bssgp_tx_status(BSSGP_CAUSE_UNKNOWN_BVCI, &ns_bvci, msg);
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +0200410 }
411
Harald Weltee5209642020-12-05 19:59:45 +0100412 /* UL_UNITDATA has a different header than all other uplink PDUs */
413 if (bgph->pdu_type == BSSGP_PDUT_UL_UNITDATA) {
414 const struct bssgp_ud_hdr *budh = (struct bssgp_ud_hdr *) msgb_bssgph(msg);
415 if (msgb_bssgp_len(msg) < sizeof(*budh))
416 return bssgp_tx_status(BSSGP_CAUSE_INV_MAND_INF, NULL, msg);
417 rc = osmo_tlv_prot_parse(&osmo_pdef_bssgp, &tp, 1, bgph->pdu_type, budh->data,
418 msgb_bssgp_len(msg) - sizeof(*budh), 0, 0, DGPRS, log_pfx);
419 /* populate TLLI from the fixed headser into the TLV-parsed array so later code
420 * doesn't have to worry where the TLLI came from */
421 tp.lv[BSSGP_IE_TLLI].len = 4;
422 tp.lv[BSSGP_IE_TLLI].val = (const uint8_t *) &budh->tlli;
423 } else {
424 rc = osmo_tlv_prot_parse(&osmo_pdef_bssgp, &tp, 1, bgph->pdu_type, bgph->data,
425 msgb_bssgp_len(msg) - sizeof(*bgph), 0, 0, DGPRS, log_pfx);
426 }
427 if (rc < 0) {
428 rate_ctr_inc(&nse->cfg->ctrg->ctr[GBPROX_GLOB_CTR_PROTO_ERR_BSS]);
429 return tx_status_from_tlvp(rc, msg);
430 }
Harald Welte85a40272020-12-08 21:43:22 +0100431 /* hack to get both msg + tlv_parsed passed via osmo_fsm_inst_dispatch */
432 msgb_bcid(msg) = (void *)&tp;
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +0200433
Harald Weltee5209642020-12-05 19:59:45 +0100434 switch (bgph->pdu_type) {
435 case BSSGP_PDUT_UL_UNITDATA:
436 case BSSGP_PDUT_RA_CAPA_UPDATE:
437 case BSSGP_PDUT_FLOW_CONTROL_MS:
438 case BSSGP_PDUT_DOWNLOAD_BSS_PFC:
439 case BSSGP_PDUT_CREATE_BSS_PFC_ACK:
440 case BSSGP_PDUT_CREATE_BSS_PFC_NACK:
441 case BSSGP_PDUT_MODIFY_BSS_PFC_ACK:
442 case BSSGP_PDUT_DELETE_BSS_PFC_ACK:
443 case BSSGP_PDUT_FLOW_CONTROL_PFC:
444 case BSSGP_PDUT_DELETE_BSS_PFC_REQ:
445 case BSSGP_PDUT_PS_HO_REQUIRED:
446 case BSSGP_PDUT_PS_HO_REQUEST_ACK:
447 case BSSGP_PDUT_PS_HO_REQUEST_NACK:
448 case BSSGP_PDUT_PS_HO_COMPLETE:
449 case BSSGP_PDUT_PS_HO_CANCEL:
450 /* We can route based on TLLI-NRI */
451 tlli = osmo_load32be(TLVP_VAL(&tp, BSSGP_IE_TLLI));
Daniel Willmannd4ab1f92020-12-21 18:53:55 +0100452 rc = gbprox_bss2sgsn_tlli(bss_bvc->cell, msg, &tlli, false);
Harald Weltee5209642020-12-05 19:59:45 +0100453 break;
454 case BSSGP_PDUT_RADIO_STATUS:
455 if (TLVP_PRESENT(&tp, BSSGP_IE_TLLI)) {
456 tlli = osmo_load32be(TLVP_VAL(&tp, BSSGP_IE_TLLI));
Daniel Willmannd4ab1f92020-12-21 18:53:55 +0100457 rc = gbprox_bss2sgsn_tlli(bss_bvc->cell, msg, &tlli, false);
Harald Weltee5209642020-12-05 19:59:45 +0100458 } else if (TLVP_PRESENT(&tp, BSSGP_IE_TMSI)) {
459 /* we treat the TMSI like a TLLI and extract the NRI from it */
460 tlli = osmo_load32be(TLVP_VAL(&tp, BSSGP_IE_TMSI));
Daniel Willmann8b3ed292021-01-21 18:46:51 +0100461 /* Convert the TMSI into a FOREIGN TLLI so it is routed appropriately */
462 tlli = gprs_tmsi2tlli(tlli, TLLI_FOREIGN);
Daniel Willmannd4ab1f92020-12-21 18:53:55 +0100463 rc = gbprox_bss2sgsn_tlli(bss_bvc->cell, msg, &tlli, false);
Harald Weltee5209642020-12-05 19:59:45 +0100464 } else if (TLVP_PRESENT(&tp, BSSGP_IE_IMSI)) {
Daniel Willmann5193f222021-01-11 05:00:46 +0100465 /* FIXME: Use the IMSI as selector? */
Daniel Willmannd4ab1f92020-12-21 18:53:55 +0100466 rc = gbprox_bss2sgsn_tlli(bss_bvc->cell, msg, NULL, false);
Daniel Willmann5193f222021-01-11 05:00:46 +0100467 /* rc = gbprox_bss2sgsn_hashed(bss_bvc->cell, msg, NULL); */
Harald Weltee5209642020-12-05 19:59:45 +0100468 } else
469 LOGPBVC(bss_bvc, LOGL_ERROR, "Rx RADIO-STATUS without any of the conditional IEs\n");
470 break;
471 case BSSGP_PDUT_DUMMY_PAGING_PS_RESP:
472 case BSSGP_PDUT_PAGING_PS_REJECT:
Daniel Willmann5614e572021-01-18 18:38:27 +0100473 {
474 /* Route according to IMSI<->NSE cache entry */
475 struct osmo_mobile_identity mi;
476 const uint8_t *mi_data = TLVP_VAL(&tp, BSSGP_IE_IMSI);
477 uint8_t mi_len = TLVP_LEN(&tp, BSSGP_IE_IMSI);
478 osmo_mobile_identity_decode(&mi, mi_data, mi_len, false);
479 nse = gbproxy_nse_by_imsi(nse->cfg, mi.imsi);
480 if (nse) {
481 OSMO_ASSERT(nse->sgsn_facing);
482 rc = gbprox_relay2nse(msg, nse, ns_bvci);
483 } else {
Daniel Willmann82669182021-01-19 11:37:55 +0100484 LOGPBVC(bss_bvc, LOGL_ERROR, "Rx unmatched %s with IMSI %s\n", pdut_name, mi.imsi);
Daniel Willmann5614e572021-01-18 18:38:27 +0100485 }
Harald Weltee5209642020-12-05 19:59:45 +0100486 break;
Daniel Willmann5614e572021-01-18 18:38:27 +0100487 }
Harald Weltee5209642020-12-05 19:59:45 +0100488 case BSSGP_PDUT_FLOW_CONTROL_BVC:
Harald Welte85a40272020-12-08 21:43:22 +0100489 osmo_fsm_inst_dispatch(bss_bvc->fi, BSSGP_BVCFSM_E_RX_FC_BVC, msg);
Harald Weltee5209642020-12-05 19:59:45 +0100490 break;
491 case BSSGP_PDUT_STATUS:
492 /* TODO: Implement by inspecting the contained PDU */
493 if (!TLVP_PRESENT(&tp, BSSGP_IE_PDU_IN_ERROR))
494 break;
495 LOGPBVC(bss_bvc, LOGL_ERROR, "Rx %s: Implementation missing\n", pdut_name);
496 break;
497 }
498
499 return 0;
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +0200500}
501
502/* Receive an incoming PTP message from a SGSN-side NS-VC */
Harald Weltee5209642020-12-05 19:59:45 +0100503static 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 +0200504{
Harald Welte278dd272020-12-06 13:35:24 +0100505 struct bssgp_normal_hdr *bgph = (struct bssgp_normal_hdr *) msgb_bssgph(msg);
Harald Weltee5209642020-12-05 19:59:45 +0100506 const char *pdut_name = osmo_tlv_prot_msg_name(&osmo_pdef_bssgp, bgph->pdu_type);
507 struct gbproxy_bvc *sgsn_bvc, *bss_bvc;
Harald Welte85a40272020-12-08 21:43:22 +0100508 struct tlv_parsed tp;
Harald Weltee5209642020-12-05 19:59:45 +0100509 char log_pfx[32];
Harald Welte85a40272020-12-08 21:43:22 +0100510 int rc;
Harald Weltee5209642020-12-05 19:59:45 +0100511
512 snprintf(log_pfx, sizeof(log_pfx), "NSE(%05u/SGSN)-BVC(%05u/??)", nse->nsei, ns_bvci);
513
514 LOGP(DGPRS, LOGL_DEBUG, "%s Rx %s\n", log_pfx, pdut_name);
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +0200515
Daniel Willmann06331ac2020-12-10 17:59:46 +0100516 if (ns_bvci == 0 || ns_bvci == 1) {
Harald Weltee5209642020-12-05 19:59:45 +0100517 LOGP(DGPRS, LOGL_NOTICE, "%s BVCI is not PTP\n", log_pfx);
Harald Welte278dd272020-12-06 13:35:24 +0100518 return bssgp_tx_status(BSSGP_CAUSE_PROTO_ERR_UNSPEC, NULL, msg);
519 }
520
521 if (!(bssgp_pdu_type_flags(bgph->pdu_type) & BSSGP_PDUF_PTP)) {
Harald Weltee5209642020-12-05 19:59:45 +0100522 LOGP(DGPRS, LOGL_NOTICE, "%s %s not allowed in PTP BVC\n", log_pfx, pdut_name);
Harald Welte278dd272020-12-06 13:35:24 +0100523 return bssgp_tx_status(BSSGP_CAUSE_PROTO_ERR_UNSPEC, NULL, msg);
524 }
525
526 if (!(bssgp_pdu_type_flags(bgph->pdu_type) & BSSGP_PDUF_DL)) {
Harald Weltee5209642020-12-05 19:59:45 +0100527 LOGP(DGPRS, LOGL_NOTICE, "%s %s not allowed in downlink direction\n", log_pfx, pdut_name);
Harald Welte278dd272020-12-06 13:35:24 +0100528 return bssgp_tx_status(BSSGP_CAUSE_PROTO_ERR_UNSPEC, NULL, msg);
529 }
530
Harald Weltee5209642020-12-05 19:59:45 +0100531 sgsn_bvc = gbproxy_bvc_by_bvci(nse, ns_bvci);
532 if (!sgsn_bvc) {
533 LOGP(DGPRS, LOGL_NOTICE, "%s %s - Didn't find BVC for for PTP message, discarding\n",
534 log_pfx, pdut_name);
535 rate_ctr_inc(&nse->cfg->ctrg-> ctr[GBPROX_GLOB_CTR_INV_BVCI]);
536 return bssgp_tx_status(BSSGP_CAUSE_UNKNOWN_BVCI, &ns_bvci, msg);
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +0200537 }
538
Harald Weltee5209642020-12-05 19:59:45 +0100539 if (!bssgp_bvc_fsm_is_unblocked(sgsn_bvc->fi)) {
540 LOGPBVC(sgsn_bvc, LOGL_NOTICE, "Rx %s: Dropping on blocked BVC\n", pdut_name);
541 rate_ctr_inc(&sgsn_bvc->ctrg->ctr[GBPROX_PEER_CTR_DROPPED]);
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +0200542 return bssgp_tx_status(BSSGP_CAUSE_BVCI_BLOCKED, &ns_bvci, msg);
543 }
Harald Welte85a40272020-12-08 21:43:22 +0100544
545 /* DL_UNITDATA has a different header than all other uplink PDUs */
546 if (bgph->pdu_type == BSSGP_PDUT_DL_UNITDATA) {
547 const struct bssgp_ud_hdr *budh = (struct bssgp_ud_hdr *) msgb_bssgph(msg);
548 if (msgb_bssgp_len(msg) < sizeof(*budh))
549 return bssgp_tx_status(BSSGP_CAUSE_INV_MAND_INF, NULL, msg);
550 rc = osmo_tlv_prot_parse(&osmo_pdef_bssgp, &tp, 1, bgph->pdu_type, budh->data,
551 msgb_bssgp_len(msg) - sizeof(*budh), 0, 0, DGPRS, log_pfx);
552 /* populate TLLI from the fixed headser into the TLV-parsed array so later code
553 * doesn't have to worry where the TLLI came from */
554 tp.lv[BSSGP_IE_TLLI].len = 4;
555 tp.lv[BSSGP_IE_TLLI].val = (const uint8_t *) &budh->tlli;
556 } else {
557 rc = osmo_tlv_prot_parse(&osmo_pdef_bssgp, &tp, 1, bgph->pdu_type, bgph->data,
558 msgb_bssgp_len(msg) - sizeof(*bgph), 0, 0, DGPRS, log_pfx);
559 }
560 if (rc < 0) {
561 rate_ctr_inc(&nse->cfg->ctrg->ctr[GBPROX_GLOB_CTR_PROTO_ERR_BSS]);
562 return tx_status_from_tlvp(rc, msg);
563 }
564 /* hack to get both msg + tlv_parsed passed via osmo_fsm_inst_dispatch */
565 msgb_bcid(msg) = (void *)&tp;
566
Harald Weltee5209642020-12-05 19:59:45 +0100567 OSMO_ASSERT(sgsn_bvc->cell);
568 bss_bvc = sgsn_bvc->cell->bss_bvc;
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +0200569
Harald Welte85a40272020-12-08 21:43:22 +0100570 switch (bgph->pdu_type) {
571 case BSSGP_PDUT_FLOW_CONTROL_BVC_ACK:
572 return osmo_fsm_inst_dispatch(sgsn_bvc->fi, BSSGP_BVCFSM_E_RX_FC_BVC_ACK, msg);
Daniel Willmann5614e572021-01-18 18:38:27 +0100573 case BSSGP_PDUT_DUMMY_PAGING_PS:
574 case BSSGP_PDUT_PAGING_PS:
575 {
576 /* Cache the IMSI<->NSE to route PAGING REJECT */
577 struct osmo_mobile_identity mi;
578 const uint8_t *mi_data = TLVP_VAL(&tp, BSSGP_IE_IMSI);
579 uint8_t mi_len = TLVP_LEN(&tp, BSSGP_IE_IMSI);
580 osmo_mobile_identity_decode(&mi, mi_data, mi_len, false);
581 gbproxy_imsi_cache_update(nse, mi.imsi);
582 break;
Harald Welte85a40272020-12-08 21:43:22 +0100583 }
Daniel Willmann5614e572021-01-18 18:38:27 +0100584 default:
585 break;
586 }
587 return gbprox_relay2peer(msg, bss_bvc, bss_bvc->bvci);
Harald Welte85a40272020-12-08 21:43:22 +0100588
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +0200589}
590
Harald Weltee5209642020-12-05 19:59:45 +0100591/***********************************************************************
592 * BVC FSM call-backs
593 ***********************************************************************/
Harald Welte7df1e5a2020-12-02 22:53:26 +0100594
Harald Weltee5209642020-12-05 19:59:45 +0100595/* helper function to dispatch a FSM event to all SGSN-side BVC FSMs of a cell */
596static void dispatch_to_all_sgsn_bvc(struct gbproxy_cell *cell, uint32_t event, void *priv)
597{
598 unsigned int i;
599
600 for (i = 0; i < ARRAY_SIZE(cell->sgsn_bvc); i++) {
601 struct gbproxy_bvc *sgsn_bvc = cell->sgsn_bvc[i];
602 if (!sgsn_bvc)
603 continue;
604 osmo_fsm_inst_dispatch(sgsn_bvc->fi, event, priv);
605 }
606}
607
608/* BVC FSM informs us about a BSS-side reset of the signaling BVC */
609static void bss_sig_bvc_reset_notif(uint16_t nsei, uint16_t bvci, const struct gprs_ra_id *ra_id,
610 uint16_t cell_id, uint8_t cause, void *priv)
611{
612 struct gbproxy_bvc *sig_bvc = priv;
613 struct gbproxy_nse *nse = sig_bvc->nse;
614 struct gbproxy_bvc *ptp_bvc;
615 unsigned int i;
616
617 /* BLOCK all SGSN-side PTP BVC within this NSE */
618 hash_for_each(nse->bvcs, i, ptp_bvc, list) {
619 if (ptp_bvc == sig_bvc)
620 continue;
621 OSMO_ASSERT(ptp_bvc->cell);
622
623 dispatch_to_all_sgsn_bvc(ptp_bvc->cell, BSSGP_BVCFSM_E_REQ_BLOCK, &cause);
Harald Weltef9e149b2020-12-02 23:29:38 +0100624 }
Harald Welte7df1e5a2020-12-02 22:53:26 +0100625
Harald Weltee5209642020-12-05 19:59:45 +0100626 /* Delete all BSS-side PTP BVC within this NSE */
627 gbproxy_cleanup_bvcs(nse, 0);
628
629 /* TODO: we keep the "CELL" around for now, re-connecting it to
630 * any (later) new PTP-BVC for that BVCI. Not sure if that's the
631 * best idea ? */
632}
633
634/* forward declaration */
635static const struct bssgp_bvc_fsm_ops sgsn_ptp_bvc_fsm_ops;
636
637static const struct bssgp_bvc_fsm_ops bss_sig_bvc_fsm_ops = {
638 .reset_notification = bss_sig_bvc_reset_notif,
639};
640
641/* BVC FSM informs us about a BSS-side reset of a PTP BVC */
642static void bss_ptp_bvc_reset_notif(uint16_t nsei, uint16_t bvci, const struct gprs_ra_id *ra_id,
643 uint16_t cell_id, uint8_t cause, void *priv)
644{
645 struct gbproxy_bvc *bvc = priv;
646 struct gbproxy_config *cfg = bvc->nse->cfg;
Harald Welte664c24e2020-12-12 15:01:17 +0100647 struct gbproxy_nse *sgsn_nse;
Harald Weltee5209642020-12-05 19:59:45 +0100648 unsigned int i;
649
650 OSMO_ASSERT(bvci != 0);
651
652 if (!bvc->cell) {
653 /* see if we have a CELL dangling around */
654 bvc->cell = gbproxy_cell_by_bvci(cfg, bvci);
655 if (bvc->cell) {
656 /* the CELL already exists. This means either it * was created before at an
657 * earlier PTP BVC-RESET, or that there are non-unique BVCIs and hence a
658 * malconfiguration */
659 if (bvc->cell->bss_bvc) {
660 LOGPBVC(bvc, LOGL_NOTICE, "Rx BVC-RESET via this NSE, but CELL already "
661 "has BVC on NSEI=%05u\n", bvc->cell->bss_bvc->nse->nsei);
662 LOGPBVC(bvc->cell->bss_bvc, LOGL_NOTICE, "Destroying due to conflicting "
663 "BVCI configuration (new NSEI=%05u)!\n", bvc->nse->nsei);
664 gbproxy_bvc_free(bvc->cell->bss_bvc);
665 }
666 bvc->cell->bss_bvc = bvc;
667 }
668 }
669
670 if (!bvc->cell) {
Harald Weltee5209642020-12-05 19:59:45 +0100671 /* if we end up here, it means this is the first time we received a BVC-RESET
672 * for this BVC. We need to create the 'cell' data structure and the SGSN-side
673 * BVC counterparts */
674
675 bvc->cell = gbproxy_cell_alloc(cfg, bvci);
676 OSMO_ASSERT(bvc->cell);
Harald Welteee0cc812020-12-12 14:22:32 +0100677 memcpy(bvc->cell->ra, bvc->ra, sizeof(bvc->cell->ra));
Harald Weltee5209642020-12-05 19:59:45 +0100678
679 /* link us to the cell and vice-versa */
680 bvc->cell->bss_bvc = bvc;
Harald Welte664c24e2020-12-12 15:01:17 +0100681 }
Harald Weltee5209642020-12-05 19:59:45 +0100682
Harald Welte664c24e2020-12-12 15:01:17 +0100683 /* allocate (any missing) SGSN-side BVCs within the cell, and reset them */
684 hash_for_each(cfg->sgsn_nses, i, sgsn_nse, list) {
685 struct gbproxy_bvc *sgsn_bvc = gbproxy_bvc_by_bvci(sgsn_nse, bvci);
686 if (sgsn_bvc)
687 OSMO_ASSERT(sgsn_bvc->cell == bvc->cell || !sgsn_bvc->cell);
Harald Weltee5209642020-12-05 19:59:45 +0100688
Harald Welte664c24e2020-12-12 15:01:17 +0100689 if (!sgsn_bvc) {
690 sgsn_bvc = gbproxy_bvc_alloc(sgsn_nse, bvci);
691 OSMO_ASSERT(sgsn_bvc);
Harald Weltee5209642020-12-05 19:59:45 +0100692
Harald Welte664c24e2020-12-12 15:01:17 +0100693 sgsn_bvc->cell = bvc->cell;
694 memcpy(sgsn_bvc->ra, bvc->cell->ra, sizeof(sgsn_bvc->ra));
695 sgsn_bvc->fi = bssgp_bvc_fsm_alloc_ptp_bss(sgsn_bvc, cfg->nsi, sgsn_nse->nsei,
696 bvci, ra_id, cell_id);
697 OSMO_ASSERT(sgsn_bvc->fi);
698 bssgp_bvc_fsm_set_ops(sgsn_bvc->fi, &sgsn_ptp_bvc_fsm_ops, sgsn_bvc);
Harald Weltee5209642020-12-05 19:59:45 +0100699
Harald Welte664c24e2020-12-12 15:01:17 +0100700 gbproxy_cell_add_sgsn_bvc(bvc->cell, sgsn_bvc);
Harald Weltee5209642020-12-05 19:59:45 +0100701 }
702 }
703
704 /* Trigger outbound BVC-RESET procedure toward each SGSN */
705 dispatch_to_all_sgsn_bvc(bvc->cell, BSSGP_BVCFSM_E_REQ_RESET, &cause);
706}
707
708/* BVC FSM informs us about a BSS-side FSM state change */
709static void bss_ptp_bvc_state_chg_notif(uint16_t nsei, uint16_t bvci, int old_state, int state, void *priv)
710{
711 struct gbproxy_bvc *bvc = priv;
712 struct gbproxy_cell *cell = bvc->cell;
713 uint8_t cause = bssgp_bvc_fsm_get_block_cause(bvc->fi);
714
715 /* we have just been created but due to callback ordering the cell is not associated */
716 if (!cell)
717 return;
718
719 switch (state) {
720 case BSSGP_BVCFSM_S_BLOCKED:
721 /* block the corresponding SGSN-side PTP BVCs */
722 dispatch_to_all_sgsn_bvc(cell, BSSGP_BVCFSM_E_REQ_BLOCK, &cause);
723 break;
724 case BSSGP_BVCFSM_S_UNBLOCKED:
725 /* unblock the corresponding SGSN-side PTP BVCs */
726 dispatch_to_all_sgsn_bvc(cell, BSSGP_BVCFSM_E_REQ_UNBLOCK, NULL);
727 break;
728 }
729}
730
Harald Welte85a40272020-12-08 21:43:22 +0100731/* BVC FSM informs us about BVC-FC PDU receive */
732static void bss_ptp_bvc_fc_bvc(uint16_t nsei, uint16_t bvci, const struct bssgp2_flow_ctrl *fc, void *priv)
733{
Harald Welte209dc9f2020-12-12 19:02:16 +0100734 struct bssgp2_flow_ctrl fc_reduced;
Harald Welte85a40272020-12-08 21:43:22 +0100735 struct gbproxy_bvc *bss_bvc = priv;
Harald Welte209dc9f2020-12-12 19:02:16 +0100736 struct gbproxy_cell *cell;
737 struct gbproxy_config *cfg;
Harald Welte85a40272020-12-08 21:43:22 +0100738
Harald Welte209dc9f2020-12-12 19:02:16 +0100739 OSMO_ASSERT(bss_bvc);
740 OSMO_ASSERT(fc);
741
742 cell = bss_bvc->cell;
Harald Welte85a40272020-12-08 21:43:22 +0100743 if (!cell)
744 return;
745
Harald Welte209dc9f2020-12-12 19:02:16 +0100746 cfg = cell->cfg;
Harald Welte85a40272020-12-08 21:43:22 +0100747
Harald Welte209dc9f2020-12-12 19:02:16 +0100748 /* reduce / scale according to configuration to make sure we only advertise a fraction
749 * of the capacity to each of the SGSNs in the pool */
750 fc_reduced = *fc;
751 fc_reduced.bucket_size_max = (fc->bucket_size_max * cfg->pool.bvc_fc_ratio) / 100;
752 fc_reduced.bucket_leak_rate = (fc->bucket_leak_rate * cfg->pool.bvc_fc_ratio) / 100;
753 /* we don't modify the per-MS related values as any single MS is only served by one SGSN */
754
755 dispatch_to_all_sgsn_bvc(cell, BSSGP_BVCFSM_E_REQ_FC_BVC, (void *) &fc_reduced);
Harald Welte85a40272020-12-08 21:43:22 +0100756}
757
Harald Weltee5209642020-12-05 19:59:45 +0100758static const struct bssgp_bvc_fsm_ops bss_ptp_bvc_fsm_ops = {
759 .reset_notification = bss_ptp_bvc_reset_notif,
760 .state_chg_notification = bss_ptp_bvc_state_chg_notif,
Harald Welte85a40272020-12-08 21:43:22 +0100761 .rx_fc_bvc = bss_ptp_bvc_fc_bvc,
Harald Weltee5209642020-12-05 19:59:45 +0100762};
763
764/* BVC FSM informs us about a SGSN-side reset of a PTP BVC */
765static void sgsn_ptp_bvc_reset_notif(uint16_t nsei, uint16_t bvci, const struct gprs_ra_id *ra_id,
766 uint16_t cell_id, uint8_t cause, void *priv)
767{
768 struct gbproxy_bvc *bvc = priv;
769
770 if (!bvc->cell) {
771 LOGPBVC(bvc, LOGL_ERROR, "RESET of PTP BVC on SGSN side for which we have no BSS?\n");
772 return;
773 }
774
775 OSMO_ASSERT(bvc->cell->bss_bvc);
776
777 /* request reset of BSS-facing PTP-BVC */
778 osmo_fsm_inst_dispatch(bvc->cell->bss_bvc->fi, BSSGP_BVCFSM_E_REQ_RESET, &cause);
779}
780
781static const struct bssgp_bvc_fsm_ops sgsn_ptp_bvc_fsm_ops = {
782 .reset_notification = sgsn_ptp_bvc_reset_notif,
783};
784
785/* BVC FSM informs us about a SGSN-side reset of the signaling BVC */
786static void sgsn_sig_bvc_reset_notif(uint16_t nsei, uint16_t bvci, const struct gprs_ra_id *ra_id,
787 uint16_t cell_id, uint8_t cause, void *priv)
788{
789 struct gbproxy_bvc *bvc = priv;
790 struct gbproxy_config *cfg = bvc->nse->cfg;
791 struct gbproxy_nse *bss_nse;
792 unsigned int i;
793
794 /* delete all SGSN-side PTP BVC for this SGSN */
795 gbproxy_cleanup_bvcs(bvc->nse, 0);
796 /* FIXME: what to do about the cells? */
797 /* FIXME: do we really want to RESET all signaling BVC on the BSS and affect all other SGSN? */
798
799 /* we need to trigger generating a reset procedure towards each BSS side signaling BVC */
800 hash_for_each(cfg->bss_nses, i, bss_nse, list) {
801 struct gbproxy_bvc *bss_bvc = gbproxy_bvc_by_bvci(bss_nse, 0);
802 if (!bss_bvc) {
803 LOGPNSE(bss_nse, LOGL_ERROR, "Doesn't have BVC with BVCI=0 ?!?\n");
804 continue;
805 }
806 osmo_fsm_inst_dispatch(bss_bvc->fi, BSSGP_BVCFSM_E_REQ_RESET, &cause);
807 }
808}
809
810const struct bssgp_bvc_fsm_ops sgsn_sig_bvc_fsm_ops = {
811 .reset_notification = sgsn_sig_bvc_reset_notif,
812};
813
814/***********************************************************************
815 * Signaling BVC handling
816 ***********************************************************************/
817
818/* process a BVC-RESET message from the BSS side */
819static int rx_bvc_reset_from_bss(struct gbproxy_nse *nse, struct msgb *msg, struct tlv_parsed *tp)
820{
821 struct gbproxy_bvc *from_bvc = NULL;
822 uint16_t bvci = ntohs(tlvp_val16_unal(tp, BSSGP_IE_BVCI));
823 uint32_t features = 0; // FIXME: make configurable
824
825 LOGPNSE(nse, LOGL_INFO, "Rx BVC-RESET (BVCI=%05u)\n", bvci);
826
Harald Welte314647b2020-12-02 23:03:22 +0100827 if (bvci == 0) {
828 /* If we receive a BVC reset on the signalling endpoint, we
829 * don't want the SGSN to reset, as the signalling endpoint
830 * is common for all point-to-point BVCs (and thus all BTS) */
Harald Welte324f0652020-12-02 23:06:37 +0100831
Harald Weltee5209642020-12-05 19:59:45 +0100832 from_bvc = gbproxy_bvc_by_bvci(nse, 0);
Harald Welte560bdb32020-12-04 22:24:47 +0100833 if (!from_bvc) {
Harald Weltee5209642020-12-05 19:59:45 +0100834 from_bvc = gbproxy_bvc_alloc(nse, 0);
835 OSMO_ASSERT(from_bvc);
836 from_bvc->fi = bssgp_bvc_fsm_alloc_sig_sgsn(from_bvc, nse->cfg->nsi, nse->nsei, features);
837 if (!from_bvc->fi) {
838 LOGPNSE(nse, LOGL_ERROR, "Cannot allocate SIG-BVC FSM\n");
839 gbproxy_bvc_free(from_bvc);
840 return -ENOMEM;
Harald Welte7df1e5a2020-12-02 22:53:26 +0100841 }
Harald Weltee5209642020-12-05 19:59:45 +0100842 bssgp_bvc_fsm_set_ops(from_bvc->fi, &bss_sig_bvc_fsm_ops, from_bvc);
843 }
844 } else {
845 from_bvc = gbproxy_bvc_by_bvci(nse, bvci);
846 if (!from_bvc) {
Harald Welte7df1e5a2020-12-02 22:53:26 +0100847 /* if a PTP-BVC is reset, and we don't know that
Harald Welte560bdb32020-12-04 22:24:47 +0100848 * PTP-BVCI yet, we should allocate a new bvc */
849 from_bvc = gbproxy_bvc_alloc(nse, bvci);
850 OSMO_ASSERT(from_bvc);
Harald Weltee5209642020-12-05 19:59:45 +0100851 from_bvc->fi = bssgp_bvc_fsm_alloc_ptp_sgsn(from_bvc, nse->cfg->nsi,
852 nse->nsei, bvci);
853 if (!from_bvc->fi) {
854 LOGPNSE(nse, LOGL_ERROR, "Cannot allocate SIG-BVC FSM\n");
855 gbproxy_bvc_free(from_bvc);
856 return -ENOMEM;
857 }
858 bssgp_bvc_fsm_set_ops(from_bvc->fi, &bss_ptp_bvc_fsm_ops, from_bvc);
Harald Welte7df1e5a2020-12-02 22:53:26 +0100859 }
Harald Weltee5209642020-12-05 19:59:45 +0100860#if 0
Harald Welte7df1e5a2020-12-02 22:53:26 +0100861 /* Could have moved to a different NSE */
Harald Welte560bdb32020-12-04 22:24:47 +0100862 if (!check_bvc_nsei(from_bvc, nsei)) {
863 LOGPBVC(from_bvc, LOGL_NOTICE, "moving bvc to NSE(%05u)\n", nsei);
Harald Welte7df1e5a2020-12-02 22:53:26 +0100864
Harald Weltee5209642020-12-05 19:59:45 +0100865 struct gbproxy_nse *nse_new = gbproxy_nse_by_nsei(cfg, nsei, false);
Harald Welte7df1e5a2020-12-02 22:53:26 +0100866 if (!nse_new) {
867 LOGP(DGPRS, LOGL_NOTICE, "NSE(%05u) Got PtP BVC reset before signalling reset for "
868 "BVCI=%05u\n", bvci, nsei);
869 bssgp_tx_status(BSSGP_CAUSE_PDU_INCOMP_STATE, NULL, msg);
870 return 0;
871 }
872
Harald Welte560bdb32020-12-04 22:24:47 +0100873 /* Move bvc to different NSE */
874 gbproxy_bvc_move(from_bvc, nse_new);
Harald Welte7df1e5a2020-12-02 22:53:26 +0100875 }
Harald Weltee5209642020-12-05 19:59:45 +0100876#endif
877 /* FIXME: do we need this, if it happens within FSM? */
Harald Welte173a1822020-12-03 15:36:59 +0100878 if (TLVP_PRES_LEN(tp, BSSGP_IE_CELL_ID, 8)) {
Harald Welte7df1e5a2020-12-02 22:53:26 +0100879 struct gprs_ra_id raid;
880 /* We have a Cell Identifier present in this
881 * PDU, this means we can extend our local
882 * state information about this particular cell
883 * */
Harald Welte560bdb32020-12-04 22:24:47 +0100884 memcpy(from_bvc->ra, TLVP_VAL(tp, BSSGP_IE_CELL_ID), sizeof(from_bvc->ra));
885 gsm48_parse_ra(&raid, from_bvc->ra);
886 LOGPBVC(from_bvc, LOGL_INFO, "Cell ID %s\n", osmo_rai_name(&raid));
Harald Welte7df1e5a2020-12-02 22:53:26 +0100887 }
Harald Welte7df1e5a2020-12-02 22:53:26 +0100888 }
Harald Weltee5209642020-12-05 19:59:45 +0100889 /* hand into FSM for further processing */
890 osmo_fsm_inst_dispatch(from_bvc->fi, BSSGP_BVCFSM_E_RX_RESET, msg);
891 return 0;
Harald Welte7df1e5a2020-12-02 22:53:26 +0100892}
893
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +0200894/* Receive an incoming signalling message from a BSS-side NS-VC */
Harald Weltee5209642020-12-05 19:59:45 +0100895static 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 +0200896{
897 struct bssgp_normal_hdr *bgph = (struct bssgp_normal_hdr *) msgb_bssgph(msg);
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +0200898 uint8_t pdu_type = bgph->pdu_type;
Harald Weltee5209642020-12-05 19:59:45 +0100899 const char *pdut_name = osmo_tlv_prot_msg_name(&osmo_pdef_bssgp, bgph->pdu_type);
900 struct tlv_parsed tp;
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +0200901 int data_len = msgb_bssgp_len(msg) - sizeof(*bgph);
Harald Welte560bdb32020-12-04 22:24:47 +0100902 struct gbproxy_bvc *from_bvc = NULL;
Harald Welteec0f8012020-12-06 16:32:01 +0100903 char log_pfx[32];
Harald Weltee5209642020-12-05 19:59:45 +0100904 uint16_t ptp_bvci;
905 uint32_t tlli;
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +0200906 int rc;
907
Harald Weltee5209642020-12-05 19:59:45 +0100908 snprintf(log_pfx, sizeof(log_pfx), "NSE(%05u/BSS)-BVC(%05u/??)", nse->nsei, ns_bvci);
909
910 LOGP(DGPRS, LOGL_DEBUG, "%s Rx %s\n", log_pfx, pdut_name);
Harald Welteec0f8012020-12-06 16:32:01 +0100911
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +0200912 if (ns_bvci != 0 && ns_bvci != 1) {
Harald Weltee5209642020-12-05 19:59:45 +0100913 LOGP(DGPRS, LOGL_NOTICE, "%s %s BVCI=%05u is not signalling\n", log_pfx, pdut_name, ns_bvci);
Harald Welte278dd272020-12-06 13:35:24 +0100914 return bssgp_tx_status(BSSGP_CAUSE_PROTO_ERR_UNSPEC, NULL, msg);
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +0200915 }
916
Harald Welte278dd272020-12-06 13:35:24 +0100917 if (!(bssgp_pdu_type_flags(pdu_type) & BSSGP_PDUF_SIG)) {
Harald Weltee5209642020-12-05 19:59:45 +0100918 LOGP(DGPRS, LOGL_NOTICE, "%s %s not allowed in signalling BVC\n", log_pfx, pdut_name);
Harald Welte278dd272020-12-06 13:35:24 +0100919 return bssgp_tx_status(BSSGP_CAUSE_PROTO_ERR_UNSPEC, NULL, msg);
920 }
921
922 if (!(bssgp_pdu_type_flags(pdu_type) & BSSGP_PDUF_UL)) {
Harald Weltee5209642020-12-05 19:59:45 +0100923 LOGP(DGPRS, LOGL_NOTICE, "%s %s not allowed in uplink direction\n", log_pfx, pdut_name);
Harald Welte278dd272020-12-06 13:35:24 +0100924 return bssgp_tx_status(BSSGP_CAUSE_PROTO_ERR_UNSPEC, NULL, msg);
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +0200925 }
926
Harald Welteec0f8012020-12-06 16:32:01 +0100927 rc = osmo_tlv_prot_parse(&osmo_pdef_bssgp, &tp, 1, pdu_type, bgph->data, data_len, 0, 0,
928 DGPRS, log_pfx);
929 if (rc < 0) {
Harald Weltee5209642020-12-05 19:59:45 +0100930 rate_ctr_inc(&nse->cfg->ctrg->ctr[GBPROX_GLOB_CTR_PROTO_ERR_BSS]);
Harald Welteec0f8012020-12-06 16:32:01 +0100931 return tx_status_from_tlvp(rc, msg);
932 }
Harald Weltee5209642020-12-05 19:59:45 +0100933 /* hack to get both msg + tlv_parsed passed via osmo_fsm_inst_dispatch */
934 msgb_bcid(msg) = (void *)&tp;
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +0200935
Harald Weltee5209642020-12-05 19:59:45 +0100936 /* special case handling for some PDU types */
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +0200937 switch (pdu_type) {
Harald Weltee5209642020-12-05 19:59:45 +0100938 case BSSGP_PDUT_BVC_RESET:
939 /* resolve or create gbproxy_bvc + handlei n BVC-FSM */
Harald Weltee5209642020-12-05 19:59:45 +0100940 return rx_bvc_reset_from_bss(nse, msg, &tp);
941 case BSSGP_PDUT_BVC_RESET_ACK:
942 ptp_bvci = ntohs(tlvp_val16_unal(&tp, BSSGP_IE_BVCI));
943 from_bvc = gbproxy_bvc_by_bvci(nse, ptp_bvci);
Harald Welte560bdb32020-12-04 22:24:47 +0100944 if (!from_bvc)
945 goto err_no_bvc;
Harald Weltee5209642020-12-05 19:59:45 +0100946 return osmo_fsm_inst_dispatch(from_bvc->fi, BSSGP_BVCFSM_E_RX_RESET_ACK, msg);
947 case BSSGP_PDUT_BVC_BLOCK:
948 ptp_bvci = ntohs(tlvp_val16_unal(&tp, BSSGP_IE_BVCI));
949 from_bvc = gbproxy_bvc_by_bvci(nse, ptp_bvci);
950 if (!from_bvc)
951 goto err_no_bvc;
952 return osmo_fsm_inst_dispatch(from_bvc->fi, BSSGP_BVCFSM_E_RX_BLOCK, msg);
953 case BSSGP_PDUT_BVC_UNBLOCK:
954 ptp_bvci = ntohs(tlvp_val16_unal(&tp, BSSGP_IE_BVCI));
955 from_bvc = gbproxy_bvc_by_bvci(nse, ptp_bvci);
956 if (!from_bvc)
957 goto err_no_bvc;
958 return osmo_fsm_inst_dispatch(from_bvc->fi, BSSGP_BVCFSM_E_RX_UNBLOCK, msg);
959 case BSSGP_PDUT_SUSPEND:
960 case BSSGP_PDUT_RESUME:
Daniel Willmann77493b12020-12-29 21:13:31 +0100961 {
962 struct gbproxy_sgsn *sgsn;
963
964 tlli = osmo_load32be(TLVP_VAL(&tp, BSSGP_IE_TLLI));
965 sgsn = gbproxy_select_sgsn(nse->cfg, &tlli);
966 if (!sgsn) {
967 LOGP(DGPRS, LOGL_ERROR, "Could not find any SGSN for TLLI, dropping message!\n");
968 rc = -EINVAL;
969 break;
970 }
971
972 gbproxy_tlli_cache_update(nse, tlli);
973
974 rc = gbprox_relay2nse(msg, sgsn->nse, 0);
Harald Weltee5209642020-12-05 19:59:45 +0100975#if 0
976 /* TODO: Validate the RAI for consistency with the RAI
977 * we expect for any of the BVC within this BSS side NSE */
978 memcpy(ra, TLVP_VAL(&tp, BSSGP_IE_ROUTEING_AREA), sizeof(from_bvc->ra));
Harald Welte560bdb32020-12-04 22:24:47 +0100979 gsm48_parse_ra(&raid, from_bvc->ra);
Harald Weltee5209642020-12-05 19:59:45 +0100980#endif
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +0200981 break;
Daniel Willmann77493b12020-12-29 21:13:31 +0100982 }
Harald Weltee5209642020-12-05 19:59:45 +0100983 case BSSGP_PDUT_STATUS:
984 /* FIXME: inspect the erroneous PDU IE (if any) and check
985 * if we can extract a TLLI/RNI to route it to the correct SGSN */
986 break;
987 case BSSGP_PDUT_RAN_INFO:
988 case BSSGP_PDUT_RAN_INFO_REQ:
989 case BSSGP_PDUT_RAN_INFO_ACK:
990 case BSSGP_PDUT_RAN_INFO_ERROR:
991 case BSSGP_PDUT_RAN_INFO_APP_ERROR:
992 /* FIXME: route based in RIM Routing IE */
993 rc = bssgp_tx_status(BSSGP_CAUSE_PDU_INCOMP_FEAT, NULL, msg);
994 break;
995 case BSSGP_PDUT_LLC_DISCARD:
996 case BSSGP_PDUT_FLUSH_LL_ACK:
997 /* route based on BVCI + TLLI */
998 ptp_bvci = ntohs(tlvp_val16_unal(&tp, BSSGP_IE_BVCI));
999 tlli = osmo_load32be(TLVP_VAL(&tp, BSSGP_IE_TLLI));
1000 from_bvc = gbproxy_bvc_by_bvci(nse, ptp_bvci);
1001 if (!from_bvc)
1002 goto err_no_bvc;
Daniel Willmannd4ab1f92020-12-21 18:53:55 +01001003 gbprox_bss2sgsn_tlli(from_bvc->cell, msg, &tlli, true);
Harald Weltee5209642020-12-05 19:59:45 +01001004 break;
Daniel Willmann8613c9d2021-01-17 13:40:38 +01001005 case BSSGP_PDUT_PAGING_PS_REJECT:
Daniel Willmann5614e572021-01-18 18:38:27 +01001006 case BSSGP_PDUT_DUMMY_PAGING_PS_RESP:
Daniel Willmann8613c9d2021-01-17 13:40:38 +01001007 {
1008 /* Route according to IMSI<->NSE cache entry */
1009 struct osmo_mobile_identity mi;
1010 const uint8_t *mi_data = TLVP_VAL(&tp, BSSGP_IE_IMSI);
1011 uint8_t mi_len = TLVP_LEN(&tp, BSSGP_IE_IMSI);
1012 osmo_mobile_identity_decode(&mi, mi_data, mi_len, false);
1013 nse = gbproxy_nse_by_imsi(nse->cfg, mi.imsi);
1014 if (!nse) {
1015 return bssgp_tx_status(BSSGP_CAUSE_INV_MAND_INF, NULL, msg);
1016 }
Daniel Willmann5614e572021-01-18 18:38:27 +01001017 OSMO_ASSERT(nse->sgsn_facing);
Daniel Willmann8613c9d2021-01-17 13:40:38 +01001018 rc = gbprox_relay2nse(msg, nse, 0);
1019 break;
1020 }
Harald Weltee5209642020-12-05 19:59:45 +01001021 default:
1022 LOGPNSE(nse, LOGL_ERROR, "Rx %s: Implementation missing\n", pdut_name);
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +02001023 break;
1024 }
1025
Harald Weltee5209642020-12-05 19:59:45 +01001026 return rc;
Harald Welte560bdb32020-12-04 22:24:47 +01001027err_no_bvc:
Harald Weltee5209642020-12-05 19:59:45 +01001028 LOGPNSE(nse, LOGL_ERROR, "Rx %s: cannot find BVC for BVCI=%05u\n", pdut_name, ptp_bvci);
1029 rate_ctr_inc(&nse->cfg->ctrg->ctr[GBPROX_GLOB_CTR_INV_NSEI]);
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +02001030 return bssgp_tx_status(BSSGP_CAUSE_INV_MAND_INF, NULL, msg);
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +02001031}
1032
1033/* Receive paging request from SGSN, we need to relay to proper BSS */
Harald Weltedf690e82020-12-12 15:58:28 +01001034static int gbprox_rx_paging(struct gbproxy_nse *sgsn_nse, struct msgb *msg, const char *pdut_name,
Daniel Willmann5614e572021-01-18 18:38:27 +01001035 struct tlv_parsed *tp, uint16_t ns_bvci, bool broadcast)
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +02001036{
Harald Weltedf690e82020-12-12 15:58:28 +01001037 struct gbproxy_config *cfg = sgsn_nse->cfg;
Harald Weltee5209642020-12-05 19:59:45 +01001038 struct gbproxy_bvc *sgsn_bvc, *bss_bvc;
Harald Weltedf690e82020-12-12 15:58:28 +01001039 struct gbproxy_nse *nse;
Daniel Willmann76205712020-11-30 17:08:58 +01001040 unsigned int n_nses = 0;
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +02001041 int errctr = GBPROX_GLOB_CTR_PROTO_ERR_SGSN;
Harald Welte8b4c7942020-12-05 10:14:49 +01001042 int i, j;
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +02001043
Daniel Willmanne50550e2020-11-26 18:19:21 +01001044 /* FIXME: Handle paging logic to only page each matching NSE */
1045
Harald Welte173a1822020-12-03 15:36:59 +01001046 if (TLVP_PRES_LEN(tp, BSSGP_IE_BVCI, 2)) {
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +02001047 uint16_t bvci = ntohs(tlvp_val16_unal(tp, BSSGP_IE_BVCI));
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +02001048 errctr = GBPROX_GLOB_CTR_OTHER_ERR;
Harald Weltedf690e82020-12-12 15:58:28 +01001049 sgsn_bvc = gbproxy_bvc_by_bvci(sgsn_nse, bvci);
Harald Weltee5209642020-12-05 19:59:45 +01001050 if (!sgsn_bvc) {
Harald Weltedf690e82020-12-12 15:58:28 +01001051 LOGPNSE(sgsn_nse, LOGL_NOTICE, "Rx %s: unable to route: BVCI=%05u unknown\n",
Harald Weltee5209642020-12-05 19:59:45 +01001052 pdut_name, bvci);
Harald Welte3d1bd4d2020-11-23 15:14:20 +01001053 rate_ctr_inc(&cfg->ctrg->ctr[errctr]);
1054 return -EINVAL;
1055 }
Harald Weltee5209642020-12-05 19:59:45 +01001056 LOGPBVC(sgsn_bvc, LOGL_INFO, "Rx %s: routing by BVCI\n", pdut_name);
1057 return gbprox_relay2peer(msg, sgsn_bvc->cell->bss_bvc, ns_bvci);
Harald Welte173a1822020-12-03 15:36:59 +01001058 } else if (TLVP_PRES_LEN(tp, BSSGP_IE_ROUTEING_AREA, 6)) {
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +02001059 errctr = GBPROX_GLOB_CTR_INV_RAI;
Harald Welte560bdb32020-12-04 22:24:47 +01001060 /* iterate over all bvcs and dispatch the paging to each matching one */
Harald Welted2fef952020-12-05 00:31:07 +01001061 hash_for_each(cfg->bss_nses, i, nse, list) {
Harald Weltee5209642020-12-05 19:59:45 +01001062 hash_for_each(nse->bvcs, j, bss_bvc, list) {
1063 if (!memcmp(bss_bvc->ra, TLVP_VAL(tp, BSSGP_IE_ROUTEING_AREA), 6)) {
1064 LOGPNSE(nse, LOGL_INFO, "Rx %s: routing to NSE (RAI match)\n",
1065 pdut_name);
1066 gbprox_relay2peer(msg, bss_bvc, ns_bvci);
Daniel Willmann76205712020-11-30 17:08:58 +01001067 n_nses++;
1068 /* Only send it once to each NSE */
1069 break;
Daniel Willmanne50550e2020-11-26 18:19:21 +01001070 }
Harald Welte3d1bd4d2020-11-23 15:14:20 +01001071 }
1072 }
Harald Welte173a1822020-12-03 15:36:59 +01001073 } else if (TLVP_PRES_LEN(tp, BSSGP_IE_LOCATION_AREA, 5)) {
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +02001074 errctr = GBPROX_GLOB_CTR_INV_LAI;
Harald Welte560bdb32020-12-04 22:24:47 +01001075 /* iterate over all bvcs and dispatch the paging to each matching one */
Harald Welted2fef952020-12-05 00:31:07 +01001076 hash_for_each(cfg->bss_nses, i, nse, list) {
Harald Weltee5209642020-12-05 19:59:45 +01001077 hash_for_each(nse->bvcs, j, bss_bvc, list) {
1078 if (!memcmp(bss_bvc->ra, TLVP_VAL(tp, BSSGP_IE_LOCATION_AREA), 5)) {
1079 LOGPNSE(nse, LOGL_INFO, "Rx %s: routing to NSE (LAI match)\n",
1080 pdut_name);
1081 gbprox_relay2peer(msg, bss_bvc, ns_bvci);
Daniel Willmann76205712020-11-30 17:08:58 +01001082 n_nses++;
1083 /* Only send it once to each NSE */
1084 break;
Daniel Willmanne50550e2020-11-26 18:19:21 +01001085 }
Harald Welte3d1bd4d2020-11-23 15:14:20 +01001086 }
1087 }
Daniel Willmann5614e572021-01-18 18:38:27 +01001088 } else if (TLVP_PRES_LEN(tp, BSSGP_IE_BSS_AREA_ID, 1) || broadcast) {
Harald Welte560bdb32020-12-04 22:24:47 +01001089 /* iterate over all bvcs and dispatch the paging to each matching one */
Harald Welted2fef952020-12-05 00:31:07 +01001090 hash_for_each(cfg->bss_nses, i, nse, list) {
Harald Weltee5209642020-12-05 19:59:45 +01001091 hash_for_each(nse->bvcs, j, bss_bvc, list) {
1092 LOGPNSE(nse, LOGL_INFO, "Rx %s:routing to NSE (broadcast)\n", pdut_name);
1093 gbprox_relay2peer(msg, bss_bvc, ns_bvci);
Daniel Willmann76205712020-11-30 17:08:58 +01001094 n_nses++;
1095 /* Only send it once to each NSE */
1096 break;
Daniel Willmanne50550e2020-11-26 18:19:21 +01001097 }
Harald Welte53ee2062020-11-24 11:31:13 +01001098 }
1099 } else {
Harald Weltedf690e82020-12-12 15:58:28 +01001100 LOGPNSE(sgsn_nse, LOGL_ERROR, "BSSGP PAGING: unable to route, missing IE\n");
Harald Welte53ee2062020-11-24 11:31:13 +01001101 rate_ctr_inc(&cfg->ctrg->ctr[errctr]);
1102 }
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +02001103
Daniel Willmann76205712020-11-30 17:08:58 +01001104 if (n_nses == 0) {
Harald Weltedf690e82020-12-12 15:58:28 +01001105 LOGPNSE(sgsn_nse, LOGL_ERROR, "BSSGP PAGING: unable to route, no destination found\n");
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +02001106 rate_ctr_inc(&cfg->ctrg->ctr[errctr]);
1107 return -EINVAL;
1108 }
Harald Welte3d1bd4d2020-11-23 15:14:20 +01001109 return 0;
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +02001110}
1111
1112/* Receive an incoming BVC-RESET message from the SGSN */
Harald Weltee5209642020-12-05 19:59:45 +01001113static int rx_bvc_reset_from_sgsn(struct gbproxy_nse *nse, struct msgb *msg, struct tlv_parsed *tp,
1114 uint16_t ns_bvci)
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +02001115{
Harald Weltee5209642020-12-05 19:59:45 +01001116 uint16_t ptp_bvci = ntohs(tlvp_val16_unal(tp, BSSGP_IE_BVCI));
1117 struct gbproxy_bvc *from_bvc;
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +02001118
Harald Weltee5209642020-12-05 19:59:45 +01001119 LOGPNSE(nse, LOGL_INFO, "Rx BVC-RESET (BVCI=%05u)\n", ptp_bvci);
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +02001120
Harald Weltee5209642020-12-05 19:59:45 +01001121 if (ptp_bvci == 0) {
1122 from_bvc = gbproxy_bvc_by_bvci(nse, 0);
1123 OSMO_ASSERT(from_bvc);
1124 osmo_fsm_inst_dispatch(from_bvc->fi, BSSGP_BVCFSM_E_RX_RESET, msg);
1125 } else {
1126 from_bvc = gbproxy_bvc_by_bvci(nse, ptp_bvci);
1127 if (!from_bvc) {
1128 LOGPNSE(nse, LOGL_ERROR, "Rx BVC-RESET BVCI=%05u: Cannot find BVC\n", ptp_bvci);
1129 rate_ctr_inc(&nse->cfg->ctrg->ctr[GBPROX_GLOB_CTR_INV_BVCI]);
1130 return bssgp_tx_status(BSSGP_CAUSE_UNKNOWN_BVCI, &ptp_bvci, msg);
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +02001131 }
Harald Weltee5209642020-12-05 19:59:45 +01001132 osmo_fsm_inst_dispatch(from_bvc->fi, BSSGP_BVCFSM_E_RX_RESET, msg);
Daniel Willmanne50550e2020-11-26 18:19:21 +01001133 }
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +02001134
1135 return 0;
1136}
1137
1138/* Receive an incoming signalling message from the SGSN-side NS-VC */
Harald Weltedbef0aa2020-12-07 17:48:11 +01001139static 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 +02001140{
Harald Weltedbef0aa2020-12-07 17:48:11 +01001141 struct bssgp_normal_hdr *bgph = (struct bssgp_normal_hdr *) msgb_bssgph(msg);
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +02001142 uint8_t pdu_type = bgph->pdu_type;
Harald Weltee5209642020-12-05 19:59:45 +01001143 const char *pdut_name = osmo_tlv_prot_msg_name(&osmo_pdef_bssgp, bgph->pdu_type);
1144 struct gbproxy_config *cfg = nse->cfg;
1145 struct gbproxy_bvc *sgsn_bvc;
1146 struct tlv_parsed tp;
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +02001147 int data_len;
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +02001148 uint16_t bvci;
Harald Welteec0f8012020-12-06 16:32:01 +01001149 char log_pfx[32];
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +02001150 int rc = 0;
1151 int cause;
Harald Welted2fef952020-12-05 00:31:07 +01001152 int i;
Daniel Willmann5614e572021-01-18 18:38:27 +01001153 bool paging_bc = false;
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +02001154
Harald Weltee5209642020-12-05 19:59:45 +01001155 snprintf(log_pfx, sizeof(log_pfx), "NSE(%05u/SGSN)-BVC(%05u/??)", nse->nsei, ns_bvci);
1156
1157 LOGP(DGPRS, LOGL_DEBUG, "%s Rx %s\n", log_pfx, pdut_name);
Harald Welteec0f8012020-12-06 16:32:01 +01001158
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +02001159 if (ns_bvci != 0 && ns_bvci != 1) {
Harald Welteec0f8012020-12-06 16:32:01 +01001160 LOGP(DGPRS, LOGL_NOTICE, "%s BVCI=%05u is not signalling\n", log_pfx, ns_bvci);
Harald Weltedbef0aa2020-12-07 17:48:11 +01001161 return bssgp_tx_status(BSSGP_CAUSE_PROTO_ERR_UNSPEC, NULL, msg);
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +02001162 }
1163
Harald Welte278dd272020-12-06 13:35:24 +01001164 if (!(bssgp_pdu_type_flags(pdu_type) & BSSGP_PDUF_SIG)) {
Harald Weltee5209642020-12-05 19:59:45 +01001165 LOGP(DGPRS, LOGL_NOTICE, "%s %s not allowed in signalling BVC\n", log_pfx, pdut_name);
Harald Weltedbef0aa2020-12-07 17:48:11 +01001166 return bssgp_tx_status(BSSGP_CAUSE_PROTO_ERR_UNSPEC, NULL, msg);
Harald Welte278dd272020-12-06 13:35:24 +01001167 }
1168
1169 if (!(bssgp_pdu_type_flags(pdu_type) & BSSGP_PDUF_DL)) {
Harald Weltee5209642020-12-05 19:59:45 +01001170 LOGP(DGPRS, LOGL_NOTICE, "%s %s not allowed in downlink direction\n", log_pfx, pdut_name);
Harald Weltedbef0aa2020-12-07 17:48:11 +01001171 return bssgp_tx_status(BSSGP_CAUSE_PROTO_ERR_UNSPEC, NULL, msg);
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +02001172 }
1173
Harald Weltedbef0aa2020-12-07 17:48:11 +01001174 data_len = msgb_bssgp_len(msg) - sizeof(*bgph);
Harald Welteec0f8012020-12-06 16:32:01 +01001175
1176 rc = osmo_tlv_prot_parse(&osmo_pdef_bssgp, &tp, 1, pdu_type, bgph->data, data_len, 0, 0,
1177 DGPRS, log_pfx);
1178 if (rc < 0) {
1179 rc = tx_status_from_tlvp(rc, msg);
Harald Welteec0f8012020-12-06 16:32:01 +01001180 rate_ctr_inc(&cfg->ctrg->ctr[GBPROX_GLOB_CTR_PROTO_ERR_SGSN]);
1181 return rc;
1182 }
Harald Weltee5209642020-12-05 19:59:45 +01001183 /* hack to get both msg + tlv_parsed passed via osmo_fsm_inst_dispatch */
1184 msgb_bcid(msg) = (void *)&tp;
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +02001185
1186 switch (pdu_type) {
1187 case BSSGP_PDUT_BVC_RESET:
Harald Weltee5209642020-12-05 19:59:45 +01001188 /* resolve or create ggbproxy_bvc + handle in BVC-FSM */
1189 bvci = ntohs(tlvp_val16_unal(&tp, BSSGP_IE_BVCI));
1190 rc = rx_bvc_reset_from_sgsn(nse, msg, &tp, ns_bvci);
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +02001191 break;
1192 case BSSGP_PDUT_BVC_RESET_ACK:
Daniel Willmann8489e7a2020-11-03 21:12:42 +01001193 bvci = ntohs(tlvp_val16_unal(&tp, BSSGP_IE_BVCI));
Harald Weltee5209642020-12-05 19:59:45 +01001194 sgsn_bvc = gbproxy_bvc_by_bvci(nse, bvci);
1195 if (!sgsn_bvc)
1196 goto err_no_bvc;
1197 rc = osmo_fsm_inst_dispatch(sgsn_bvc->fi, BSSGP_BVCFSM_E_RX_RESET_ACK, msg);
1198 break;
1199 case BSSGP_PDUT_BVC_BLOCK_ACK:
1200 bvci = ntohs(tlvp_val16_unal(&tp, BSSGP_IE_BVCI));
1201 sgsn_bvc = gbproxy_bvc_by_bvci(nse, bvci);
1202 if (!sgsn_bvc)
1203 goto err_no_bvc;
1204 rc = osmo_fsm_inst_dispatch(sgsn_bvc->fi, BSSGP_BVCFSM_E_RX_BLOCK_ACK, msg);
1205 break;
1206 case BSSGP_PDUT_BVC_UNBLOCK_ACK:
1207 bvci = ntohs(tlvp_val16_unal(&tp, BSSGP_IE_BVCI));
1208 sgsn_bvc = gbproxy_bvc_by_bvci(nse, bvci);
1209 if (!sgsn_bvc)
1210 goto err_no_bvc;
1211 rc = osmo_fsm_inst_dispatch(sgsn_bvc->fi, BSSGP_BVCFSM_E_RX_UNBLOCK_ACK, msg);
Daniel Willmann8489e7a2020-11-03 21:12:42 +01001212 break;
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +02001213 case BSSGP_PDUT_FLUSH_LL:
1214 /* simple case: BVCI IE is mandatory */
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +02001215 bvci = ntohs(tlvp_val16_unal(&tp, BSSGP_IE_BVCI));
Harald Weltee5209642020-12-05 19:59:45 +01001216 sgsn_bvc = gbproxy_bvc_by_bvci(nse, bvci);
1217 if (!sgsn_bvc)
1218 goto err_no_bvc;
1219 if (sgsn_bvc->cell && sgsn_bvc->cell->bss_bvc)
1220 rc = gbprox_relay2peer(msg, sgsn_bvc->cell->bss_bvc, ns_bvci);
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +02001221 break;
Daniel Willmann5614e572021-01-18 18:38:27 +01001222 case BSSGP_PDUT_DUMMY_PAGING_PS:
1223 /* Routing area is optional in dummy paging and we have nothing else to go by
1224 * so in case it is missing we need to broadcast the paging */
1225 paging_bc = true;
1226 /* fall through */
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +02001227 case BSSGP_PDUT_PAGING_PS:
Daniel Willmann8613c9d2021-01-17 13:40:38 +01001228 {
1229 /* Cache the IMSI<->NSE to route PAGING REJECT */
1230 struct osmo_mobile_identity mi;
1231 const uint8_t *mi_data = TLVP_VAL(&tp, BSSGP_IE_IMSI);
1232 uint8_t mi_len = TLVP_LEN(&tp, BSSGP_IE_IMSI);
1233 osmo_mobile_identity_decode(&mi, mi_data, mi_len, false);
1234 gbproxy_imsi_cache_update(nse, mi.imsi);
1235 /* fall through */
1236 }
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +02001237 case BSSGP_PDUT_PAGING_CS:
1238 /* process the paging request (LAI/RAI lookup) */
Daniel Willmann5614e572021-01-18 18:38:27 +01001239 rc = gbprox_rx_paging(nse, msg, pdut_name, &tp, ns_bvci, paging_bc);
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +02001240 break;
1241 case BSSGP_PDUT_STATUS:
1242 /* Some exception has occurred */
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +02001243 cause = *TLVP_VAL(&tp, BSSGP_IE_CAUSE);
Harald Weltee5209642020-12-05 19:59:45 +01001244 LOGPNSE(nse, LOGL_NOTICE, "Rx STATUS cause=0x%02x(%s) ", cause,
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +02001245 bssgp_cause_str(cause));
Harald Welte173a1822020-12-03 15:36:59 +01001246 if (TLVP_PRES_LEN(&tp, BSSGP_IE_BVCI, 2)) {
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +02001247 bvci = ntohs(tlvp_val16_unal(&tp, BSSGP_IE_BVCI));
Daniel Willmann3696dce2020-12-02 16:08:02 +01001248 LOGPC(DGPRS, LOGL_NOTICE, "BVCI=%05u\n", bvci);
Harald Weltee5209642020-12-05 19:59:45 +01001249 sgsn_bvc = gbproxy_bvc_by_bvci(nse, bvci);
1250 /* don't send STATUS in response to STATUS if !bvc */
1251 if (sgsn_bvc && sgsn_bvc->cell && sgsn_bvc->cell->bss_bvc)
1252 rc = gbprox_relay2peer(msg, sgsn_bvc->cell->bss_bvc, ns_bvci);
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +02001253 } else
1254 LOGPC(DGPRS, LOGL_NOTICE, "\n");
1255 break;
1256 /* those only exist in the SGSN -> BSS direction */
1257 case BSSGP_PDUT_SUSPEND_ACK:
1258 case BSSGP_PDUT_SUSPEND_NACK:
1259 case BSSGP_PDUT_RESUME_ACK:
1260 case BSSGP_PDUT_RESUME_NACK:
Daniel Willmann77493b12020-12-29 21:13:31 +01001261 {
1262 struct gbproxy_nse *nse_peer;
1263 uint32_t tlli = osmo_load32be(TLVP_VAL(&tp, BSSGP_IE_TLLI));
1264
1265 nse_peer = gbproxy_nse_by_tlli(cfg, tlli);
1266 if (!nse_peer) {
1267 LOGPNSE(nse, LOGL_ERROR, "Rx %s: Cannot find NSE\n", pdut_name);
1268 /* TODO: Counter */
1269 return bssgp_tx_status(BSSGP_CAUSE_INV_MAND_INF, NULL, msg);
1270 }
1271 /* Delete the entry after we're done */
1272 gbproxy_tlli_cache_remove(cfg, tlli);
1273 LOGPNSE(nse_peer, LOGL_DEBUG, "Rx %s: forwarding\n", pdut_name);
1274 gbprox_relay2nse(msg, nse_peer, ns_bvci);
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +02001275 break;
Daniel Willmann77493b12020-12-29 21:13:31 +01001276 }
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +02001277 case BSSGP_PDUT_SGSN_INVOKE_TRACE:
Harald Welte7479c4d2020-12-02 20:06:04 +01001278 case BSSGP_PDUT_OVERLOAD:
Harald Weltee5209642020-12-05 19:59:45 +01001279 LOGPNSE(nse, LOGL_DEBUG, "Rx %s: broadcasting\n", pdut_name);
Harald Welte560bdb32020-12-04 22:24:47 +01001280 /* broadcast to all BSS-side bvcs */
Harald Welted2fef952020-12-05 00:31:07 +01001281 hash_for_each(cfg->bss_nses, i, nse, list) {
Harald Welte7479c4d2020-12-02 20:06:04 +01001282 gbprox_relay2nse(msg, nse, 0);
1283 }
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +02001284 break;
Harald Weltee5209642020-12-05 19:59:45 +01001285 case BSSGP_PDUT_RAN_INFO:
1286 case BSSGP_PDUT_RAN_INFO_REQ:
1287 case BSSGP_PDUT_RAN_INFO_ACK:
1288 case BSSGP_PDUT_RAN_INFO_ERROR:
1289 case BSSGP_PDUT_RAN_INFO_APP_ERROR:
1290 /* FIXME: route based in RIM Routing IE */
Harald Weltedbef0aa2020-12-07 17:48:11 +01001291 rc = bssgp_tx_status(BSSGP_CAUSE_PDU_INCOMP_FEAT, NULL, msg);
Harald Weltee5209642020-12-05 19:59:45 +01001292 break;
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +02001293 default:
Harald Weltee5209642020-12-05 19:59:45 +01001294 LOGPNSE(nse, LOGL_NOTICE, "Rx %s: Not supported\n", pdut_name);
1295 rate_ctr_inc(&cfg->ctrg->ctr[GBPROX_GLOB_CTR_PROTO_ERR_SGSN]);
Harald Weltedbef0aa2020-12-07 17:48:11 +01001296 rc = bssgp_tx_status(BSSGP_CAUSE_PROTO_ERR_UNSPEC, NULL, msg);
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +02001297 break;
1298 }
1299
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +02001300 return rc;
Harald Weltee5209642020-12-05 19:59:45 +01001301
Harald Welte560bdb32020-12-04 22:24:47 +01001302err_no_bvc:
Harald Weltee5209642020-12-05 19:59:45 +01001303 LOGPNSE(nse, LOGL_ERROR, "Rx %s: Cannot find BVC\n", pdut_name);
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +02001304 rate_ctr_inc(&cfg->ctrg-> ctr[GBPROX_GLOB_CTR_INV_RAI]);
Harald Weltedbef0aa2020-12-07 17:48:11 +01001305 return bssgp_tx_status(BSSGP_CAUSE_INV_MAND_INF, NULL, msg);
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +02001306}
1307
Harald Weltee5209642020-12-05 19:59:45 +01001308
1309/***********************************************************************
1310 * libosmogb NS/BSSGP integration
1311 ***********************************************************************/
1312
Alexander Couzens951e1332020-09-22 13:21:46 +02001313int gbprox_bssgp_send_cb(void *ctx, struct msgb *msg)
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +02001314{
1315 int rc;
Alexander Couzens951e1332020-09-22 13:21:46 +02001316 struct gbproxy_config *cfg = (struct gbproxy_config *) ctx;
1317 struct gprs_ns2_inst *nsi = cfg->nsi;
1318 struct osmo_gprs_ns2_prim nsp = {};
1319
1320 nsp.bvci = msgb_bvci(msg);
1321 nsp.nsei = msgb_nsei(msg);
1322
Alexander Couzens55c36f92021-01-27 20:56:55 +01001323 osmo_prim_init(&nsp.oph, SAP_NS, GPRS_NS2_PRIM_UNIT_DATA, PRIM_OP_REQUEST, msg);
Alexander Couzens951e1332020-09-22 13:21:46 +02001324 rc = gprs_ns2_recv_prim(nsi, &nsp.oph);
1325
1326 return rc;
1327}
1328
1329/* Main input function for Gb proxy */
1330int gbprox_rcvmsg(void *ctx, struct msgb *msg)
1331{
Alexander Couzens951e1332020-09-22 13:21:46 +02001332 struct gbproxy_config *cfg = (struct gbproxy_config *) ctx;
Harald Weltee5209642020-12-05 19:59:45 +01001333 uint16_t ns_bvci = msgb_bvci(msg);
1334 uint16_t nsei = msgb_nsei(msg);
1335 struct gbproxy_nse *nse;
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +02001336
Harald Welte278dd272020-12-06 13:35:24 +01001337 /* ensure minimum length to decode PCU type */
1338 if (msgb_bssgp_len(msg) < sizeof(struct bssgp_normal_hdr))
1339 return bssgp_tx_status(BSSGP_CAUSE_SEM_INCORR_PDU, NULL, msg);
1340
Harald Weltee5209642020-12-05 19:59:45 +01001341 nse = gbproxy_nse_by_nsei(cfg, nsei, NSE_F_SGSN);
1342 if (nse) {
1343 if (ns_bvci == 0 || ns_bvci == 1)
1344 return gbprox_rx_sig_from_sgsn(nse, msg, ns_bvci);
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +02001345 else
Harald Weltee5209642020-12-05 19:59:45 +01001346 return gbprox_rx_ptp_from_sgsn(nse, msg, ns_bvci);
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +02001347 }
1348
Harald Weltee5209642020-12-05 19:59:45 +01001349 nse = gbproxy_nse_by_nsei(cfg, nsei, NSE_F_BSS);
1350 if (!nse) {
1351 LOGP(DGPRS, LOGL_NOTICE, "NSE(%05u/BSS) not known -> allocating\n", nsei);
1352 nse = gbproxy_nse_alloc(cfg, nsei, false);
1353 }
1354 if (nse) {
1355 if (ns_bvci == 0 || ns_bvci == 1)
1356 return gbprox_rx_sig_from_bss(nse, msg, ns_bvci);
1357 else
1358 return gbprox_rx_ptp_from_bss(nse, msg, ns_bvci);
1359 }
1360
1361 return 0;
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +02001362}
1363
Alexander Couzens951e1332020-09-22 13:21:46 +02001364/* TODO: What about handling:
Alexander Couzens55c36f92021-01-27 20:56:55 +01001365 * GPRS_NS2_AFF_CAUSE_VC_FAILURE,
1366 GPRS_NS2_AFF_CAUSE_VC_RECOVERY,
1367 GPRS_NS2_AFF_CAUSE_FAILURE,
1368 GPRS_NS2_AFF_CAUSE_RECOVERY,
Alexander Couzens951e1332020-09-22 13:21:46 +02001369 osmocom own causes
Alexander Couzens55c36f92021-01-27 20:56:55 +01001370 GPRS_NS2_AFF_CAUSE_SNS_CONFIGURED,
1371 GPRS_NS2_AFF_CAUSE_SNS_FAILURE,
Alexander Couzens951e1332020-09-22 13:21:46 +02001372 */
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +02001373
Alexander Couzens951e1332020-09-22 13:21:46 +02001374void gprs_ns_prim_status_cb(struct gbproxy_config *cfg, struct osmo_gprs_ns2_prim *nsp)
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +02001375{
Harald Welte560bdb32020-12-04 22:24:47 +01001376 /* TODO: bss nsei available/unavailable bssgp_tx_simple_bvci(BSSGP_PDUT_BVC_BLOCK, nsvc->nsei, bvc->bvci, 0);
Alexander Couzens951e1332020-09-22 13:21:46 +02001377 * TODO: sgsn nsei available/unavailable
1378 */
Harald Weltee5209642020-12-05 19:59:45 +01001379
Harald Welte560bdb32020-12-04 22:24:47 +01001380 struct gbproxy_bvc *bvc;
Harald Weltee5209642020-12-05 19:59:45 +01001381 struct gbproxy_nse *sgsn_nse;
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +02001382
Alexander Couzens951e1332020-09-22 13:21:46 +02001383 switch (nsp->u.status.cause) {
Alexander Couzens55c36f92021-01-27 20:56:55 +01001384 case GPRS_NS2_AFF_CAUSE_SNS_FAILURE:
1385 case GPRS_NS2_AFF_CAUSE_SNS_CONFIGURED:
Alexander Couzens951e1332020-09-22 13:21:46 +02001386 break;
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +02001387
Alexander Couzens55c36f92021-01-27 20:56:55 +01001388 case GPRS_NS2_AFF_CAUSE_RECOVERY:
Harald Welte9b367d22021-01-18 13:55:51 +01001389 LOGP(DGPRS, LOGL_NOTICE, "NS-NSE %d became available\n", nsp->nsei);
Harald Weltee5209642020-12-05 19:59:45 +01001390 sgsn_nse = gbproxy_nse_by_nsei(cfg, nsp->nsei, NSE_F_SGSN);
1391 if (sgsn_nse) {
1392 uint8_t cause = BSSGP_CAUSE_OML_INTERV;
1393 bvc = gbproxy_bvc_by_bvci(sgsn_nse, 0);
1394 if (bvc)
1395 osmo_fsm_inst_dispatch(bvc->fi, BSSGP_BVCFSM_E_REQ_RESET, &cause);
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +02001396 }
Alexander Couzens951e1332020-09-22 13:21:46 +02001397 break;
Alexander Couzens55c36f92021-01-27 20:56:55 +01001398 case GPRS_NS2_AFF_CAUSE_FAILURE:
Harald Weltee5209642020-12-05 19:59:45 +01001399#if 0
Harald Weltea0f70732020-12-05 17:50:23 +01001400 if (gbproxy_is_sgsn_nsei(cfg, nsp->nsei)) {
Alexander Couzens951e1332020-09-22 13:21:46 +02001401 /* sgsn */
1402 /* TODO: BSVC: block all PtP towards bss */
1403 rate_ctr_inc(&cfg->ctrg->
1404 ctr[GBPROX_GLOB_CTR_RESTART_RESET_SGSN]);
1405 } else {
Daniel Willmanne50550e2020-11-26 18:19:21 +01001406 /* bss became unavailable
1407 * TODO: Block all BVC belonging to that NSE */
Harald Welte560bdb32020-12-04 22:24:47 +01001408 bvc = gbproxy_bvc_by_nsei(cfg, nsp->nsei);
1409 if (!bvc) {
Alexander Couzens951e1332020-09-22 13:21:46 +02001410 /* TODO: use primitive name + status cause name */
Harald Welte560bdb32020-12-04 22:24:47 +01001411 LOGP(DGPRS, LOGL_NOTICE, "Received ns2 primitive %d for unknown bvc NSEI=%u\n",
Alexander Couzens951e1332020-09-22 13:21:46 +02001412 nsp->u.status.cause, nsp->nsei);
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +02001413 break;
1414 }
Alexander Couzens951e1332020-09-22 13:21:46 +02001415
Harald Welte560bdb32020-12-04 22:24:47 +01001416 if (!bvc->blocked)
Alexander Couzens951e1332020-09-22 13:21:46 +02001417 break;
Harald Weltee5209642020-12-05 19:59:45 +01001418 hash_for_each(cfg->sgsn_nses, _sgsn, sgsn_nse, list) {
1419 bssgp_tx_simple_bvci(BSSGP_PDUT_BVC_BLOCK, sgsn_nse->nsei, bvc->bvci, 0);
1420 }
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +02001421 }
Harald Weltee5209642020-12-05 19:59:45 +01001422#endif
Harald Welte9b367d22021-01-18 13:55:51 +01001423 LOGP(DGPRS, LOGL_NOTICE, "NS-NSE %d became unavailable\n", nsp->nsei);
Alexander Couzens951e1332020-09-22 13:21:46 +02001424 break;
1425 default:
Harald Welte9b367d22021-01-18 13:55:51 +01001426 LOGP(DGPRS, LOGL_NOTICE, "NS: Unknown NS-STATUS.ind cause=%s from NS\n",
Harald Welte95cf9fb2020-11-30 10:55:22 +01001427 gprs_ns2_aff_cause_prim_str(nsp->u.status.cause));
Alexander Couzens951e1332020-09-22 13:21:46 +02001428 break;
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +02001429 }
Alexander Couzens951e1332020-09-22 13:21:46 +02001430}
1431
Alexander Couzens951e1332020-09-22 13:21:46 +02001432/* called by the ns layer */
1433int gprs_ns2_prim_cb(struct osmo_prim_hdr *oph, void *ctx)
1434{
1435 struct osmo_gprs_ns2_prim *nsp;
1436 struct gbproxy_config *cfg = (struct gbproxy_config *) ctx;
Daniel Willmann8f407b12020-12-02 19:33:50 +01001437 uintptr_t bvci;
Alexander Couzens951e1332020-09-22 13:21:46 +02001438 int rc = 0;
1439
1440 if (oph->sap != SAP_NS)
1441 return 0;
1442
1443 nsp = container_of(oph, struct osmo_gprs_ns2_prim, oph);
1444
1445 if (oph->operation != PRIM_OP_INDICATION) {
Harald Welte9b367d22021-01-18 13:55:51 +01001446 LOGP(DGPRS, LOGL_NOTICE, "NS: Unexpected primitive operation %s from NS\n",
Harald Welte95cf9fb2020-11-30 10:55:22 +01001447 get_value_string(osmo_prim_op_names, oph->operation));
Alexander Couzens951e1332020-09-22 13:21:46 +02001448 return 0;
1449 }
1450
1451 switch (oph->primitive) {
Alexander Couzens55c36f92021-01-27 20:56:55 +01001452 case GPRS_NS2_PRIM_UNIT_DATA:
Daniel Willmann8f407b12020-12-02 19:33:50 +01001453
Alexander Couzens951e1332020-09-22 13:21:46 +02001454 /* hand the message into the BSSGP implementation */
1455 msgb_bssgph(oph->msg) = oph->msg->l3h;
1456 msgb_bvci(oph->msg) = nsp->bvci;
1457 msgb_nsei(oph->msg) = nsp->nsei;
Daniel Willmann8f407b12020-12-02 19:33:50 +01001458 bvci = nsp->bvci | BVC_LOG_CTX_FLAG;
Alexander Couzens951e1332020-09-22 13:21:46 +02001459
Daniel Willmann8f407b12020-12-02 19:33:50 +01001460 log_set_context(LOG_CTX_GB_BVC, (void *)bvci);
Alexander Couzens951e1332020-09-22 13:21:46 +02001461 rc = gbprox_rcvmsg(cfg, oph->msg);
Daniel Willmannb6550102020-11-04 17:32:56 +01001462 msgb_free(oph->msg);
Alexander Couzens951e1332020-09-22 13:21:46 +02001463 break;
Alexander Couzens55c36f92021-01-27 20:56:55 +01001464 case GPRS_NS2_PRIM_STATUS:
Alexander Couzens951e1332020-09-22 13:21:46 +02001465 gprs_ns_prim_status_cb(cfg, nsp);
1466 break;
1467 default:
Harald Welte9b367d22021-01-18 13:55:51 +01001468 LOGP(DGPRS, LOGL_NOTICE, "NS: Unknown prim %s %s from NS\n",
Harald Welte95cf9fb2020-11-30 10:55:22 +01001469 gprs_ns2_prim_str(oph->primitive),
1470 get_value_string(osmo_prim_op_names, oph->operation));
Alexander Couzens951e1332020-09-22 13:21:46 +02001471 break;
1472 }
1473
1474 return rc;
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +02001475}
1476
1477void gbprox_reset(struct gbproxy_config *cfg)
1478{
Harald Welted2fef952020-12-05 00:31:07 +01001479 struct gbproxy_nse *nse;
1480 struct hlist_node *ntmp;
Harald Welte8b4c7942020-12-05 10:14:49 +01001481 int i, j;
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +02001482
Harald Welted2fef952020-12-05 00:31:07 +01001483 hash_for_each_safe(cfg->bss_nses, i, ntmp, nse, list) {
Harald Welte8b4c7942020-12-05 10:14:49 +01001484 struct gbproxy_bvc *bvc;
1485 struct hlist_node *tmp;
1486 hash_for_each_safe(nse->bvcs, j, tmp, bvc, list)
Harald Welte560bdb32020-12-04 22:24:47 +01001487 gbproxy_bvc_free(bvc);
Daniel Willmanne50550e2020-11-26 18:19:21 +01001488
1489 gbproxy_nse_free(nse);
1490 }
Harald Weltee5209642020-12-05 19:59:45 +01001491 /* FIXME: cells */
1492 /* FIXME: SGSN side BVCs (except signaling) */
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +02001493
1494 rate_ctr_group_free(cfg->ctrg);
1495 gbproxy_init_config(cfg);
1496}
1497
Daniel Willmann77493b12020-12-29 21:13:31 +01001498static void tlli_cache_cleanup(void *data)
1499{
1500 struct gbproxy_config *cfg = data;
1501 gbproxy_tlli_cache_cleanup(cfg);
1502
1503 /* TODO: Disable timer when cache is empty */
1504 osmo_timer_schedule(&cfg->tlli_cache.timer, 2, 0);
1505}
1506
Daniel Willmannc8a50092021-01-17 13:11:41 +01001507static void imsi_cache_cleanup(void *data)
1508{
1509 struct gbproxy_config *cfg = data;
1510 gbproxy_imsi_cache_cleanup(cfg);
1511
1512 /* TODO: Disable timer when cache is empty */
1513 osmo_timer_schedule(&cfg->imsi_cache.timer, 2, 0);
1514}
1515
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +02001516int gbproxy_init_config(struct gbproxy_config *cfg)
1517{
1518 struct timespec tp;
1519
Harald Welte209dc9f2020-12-12 19:02:16 +01001520 /* by default we advertise 100% of the BSS-side capacity to _each_ SGSN */
1521 cfg->pool.bvc_fc_ratio = 100;
Daniel Willmannee834af2020-12-14 16:22:39 +01001522 cfg->pool.null_nri_ranges = osmo_nri_ranges_alloc(cfg);
Daniel Willmann77493b12020-12-29 21:13:31 +01001523 /* TODO: Make configurable */
Daniel Willmannbd12f3f2021-01-13 18:16:04 +01001524 cfg->tlli_cache.timeout = 10;
Daniel Willmannc8a50092021-01-17 13:11:41 +01001525 cfg->imsi_cache.timeout = 10;
Daniel Willmannee834af2020-12-14 16:22:39 +01001526
Harald Welted2fef952020-12-05 00:31:07 +01001527 hash_init(cfg->bss_nses);
Daniel Willmann1e7be5d2020-12-21 18:08:21 +01001528 hash_init(cfg->sgsn_nses);
1529 hash_init(cfg->cells);
Daniel Willmann77493b12020-12-29 21:13:31 +01001530 hash_init(cfg->tlli_cache.entries);
Daniel Willmannee834af2020-12-14 16:22:39 +01001531 INIT_LLIST_HEAD(&cfg->sgsns);
1532
Daniel Willmann77493b12020-12-29 21:13:31 +01001533 osmo_timer_setup(&cfg->tlli_cache.timer, tlli_cache_cleanup, cfg);
1534 osmo_timer_schedule(&cfg->tlli_cache.timer, 2, 0);
1535
Daniel Willmannc8a50092021-01-17 13:11:41 +01001536 /* We could also combine both timers */
1537 osmo_timer_setup(&cfg->imsi_cache.timer, imsi_cache_cleanup, cfg);
1538 osmo_timer_schedule(&cfg->imsi_cache.timer, 2, 0);
1539
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +02001540 cfg->ctrg = rate_ctr_group_alloc(tall_sgsn_ctx, &global_ctrg_desc, 0);
1541 if (!cfg->ctrg) {
1542 LOGP(DGPRS, LOGL_ERROR, "Cannot allocate global counter group!\n");
1543 return -1;
1544 }
1545 osmo_clock_gettime(CLOCK_REALTIME, &tp);
Harald Weltec169de42020-12-07 13:12:13 +01001546 osmo_fsm_log_timeouts(true);
Pau Espin Pedrol1ddefb12019-08-30 19:48:34 +02001547
1548 return 0;
Daniel Willmann77493b12020-12-29 21:13:31 +01001549}