blob: a976d252f85c73fdd1e5c833a111537365f3f288 [file] [log] [blame]
Harald Welte9f75c352010-04-30 20:26:32 +02001/* NS-over-IP proxy */
2
Harald Welte5687ae62020-12-05 19:59:45 +01003/* (C) 2010-2020 by Harald Welte <laforge@gnumonks.org>
Holger Hans Peter Freyther90267a92013-10-23 11:24:17 +02004 * (C) 2010-2013 by On-Waves
5 * (C) 2013 by Holger Hans Peter Freyther
Harald Welte9f75c352010-04-30 20:26:32 +02006 * All Rights Reserved
7 *
8 * This program is free software; you can redistribute it and/or modify
Harald Welte9af6ddf2011-01-01 15:25:50 +01009 * it under the terms of the GNU Affero General Public License as published by
10 * the Free Software Foundation; either version 3 of the License, or
Harald Welte9f75c352010-04-30 20:26:32 +020011 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
Harald Welte9af6ddf2011-01-01 15:25:50 +010016 * GNU Affero General Public License for more details.
Harald Welte9f75c352010-04-30 20:26:32 +020017 *
Harald Welte9af6ddf2011-01-01 15:25:50 +010018 * You should have received a copy of the GNU Affero General Public License
19 * along with this program. If not, see <http://www.gnu.org/licenses/>.
Harald Welte9f75c352010-04-30 20:26:32 +020020 *
21 */
22
23#include <unistd.h>
24#include <stdio.h>
25#include <stdlib.h>
26#include <string.h>
27#include <getopt.h>
28#include <errno.h>
29#include <sys/fcntl.h>
30#include <sys/stat.h>
Harald Welte7fc98222010-05-11 10:15:42 +020031#include <arpa/inet.h>
Jacob Erlbeck7c101d92014-06-06 18:49:23 +020032#include <time.h>
Harald Welte9f75c352010-04-30 20:26:32 +020033
Harald Welte78db2442020-12-05 00:31:07 +010034#include <osmocom/core/hashtable.h>
Daniel Willmanne8c8ec92020-12-02 19:33:50 +010035#include <osmocom/core/logging.h>
Pablo Neira Ayuso136f4532011-03-22 16:47:59 +010036#include <osmocom/core/talloc.h>
37#include <osmocom/core/select.h>
Jacob Erlbeckbc555742013-10-18 14:34:55 +020038#include <osmocom/core/rate_ctr.h>
Jacob Erlbeck46caed82015-11-02 15:15:38 +010039#include <osmocom/core/stats.h>
Jacob Erlbeckbc555742013-10-18 14:34:55 +020040
Alexander Couzens82182d02020-09-22 13:21:46 +020041#include <osmocom/gprs/gprs_ns2.h>
Harald Welteea34a4e2012-06-16 14:59:56 +080042#include <osmocom/gprs/gprs_bssgp.h>
Alexander Couzens82182d02020-09-22 13:21:46 +020043#include <osmocom/gprs/gprs_bssgp_bss.h>
Harald Welte5687ae62020-12-05 19:59:45 +010044#include <osmocom/gprs/bssgp_bvc_fsm.h>
Harald Welteea34a4e2012-06-16 14:59:56 +080045
Jacob Erlbeck7c101d92014-06-06 18:49:23 +020046#include <osmocom/gsm/gsm_utils.h>
47
Neels Hofmeyr396f2e62017-09-04 15:13:25 +020048#include <osmocom/sgsn/signal.h>
49#include <osmocom/sgsn/debug.h>
50#include <osmocom/sgsn/gprs_gb_parse.h>
51#include <osmocom/sgsn/gb_proxy.h>
Harald Welte9f75c352010-04-30 20:26:32 +020052
Neels Hofmeyr396f2e62017-09-04 15:13:25 +020053#include <osmocom/sgsn/gprs_llc.h>
Harald Welte53373bc2016-04-20 17:11:43 +020054#include <osmocom/gsm/protocol/gsm_04_08_gprs.h>
Neels Hofmeyr396f2e62017-09-04 15:13:25 +020055#include <osmocom/sgsn/gprs_utils.h>
Jacob Erlbeck67a44452014-05-19 10:14:58 +020056
Pau Espin Pedrolb1d1c242018-10-30 17:27:59 +010057extern void *tall_sgsn_ctx;
Neels Hofmeyree6cfdc2017-07-13 02:03:50 +020058
Jacob Erlbeckbc555742013-10-18 14:34:55 +020059static const struct rate_ctr_desc global_ctr_description[] = {
60 { "inv-bvci", "Invalid BVC Identifier " },
Jacob Erlbeck8f503592014-06-02 10:49:00 +020061 { "inv-lai", "Invalid Location Area Identifier" },
62 { "inv-rai", "Invalid Routing Area Identifier " },
Jacob Erlbeckbc555742013-10-18 14:34:55 +020063 { "inv-nsei", "No BVC established for NSEI " },
Pau Espin Pedrol437e2092018-07-24 12:41:26 +020064 { "proto-err:bss", "BSSGP protocol error (BSS )" },
65 { "proto-err:sgsn", "BSSGP protocol error (SGSN)" },
66 { "not-supp:bss", "Feature not supported (BSS )" },
67 { "not-supp:sgsn", "Feature not supported (SGSN)" },
68 { "restart:sgsn", "Restarted RESET procedure (SGSN)" },
69 { "tx-err:sgsn", "NS Transmission error (SGSN)" },
Jacob Erlbeckbc555742013-10-18 14:34:55 +020070 { "error", "Other error " },
Jacob Erlbeck006c0382014-05-27 13:49:04 +020071 { "mod-peer-err", "Patch error: no peer " },
Jacob Erlbeckbc555742013-10-18 14:34:55 +020072};
73
74static const struct rate_ctr_group_desc global_ctrg_desc = {
Max8a01a802017-12-20 13:10:11 +010075 .group_name_prefix = "gbproxy:global",
Jacob Erlbeckbc555742013-10-18 14:34:55 +020076 .group_description = "GBProxy Global Statistics",
77 .num_ctr = ARRAY_SIZE(global_ctr_description),
78 .ctr_desc = global_ctr_description,
Jacob Erlbeck46caed82015-11-02 15:15:38 +010079 .class_id = OSMO_STATS_CLASS_GLOBAL,
Jacob Erlbeckbc555742013-10-18 14:34:55 +020080};
81
Harald Welte8cd74402020-12-04 22:24:47 +010082static int gbprox_relay2peer(struct msgb *old_msg, struct gbproxy_bvc *bvc,
Daniel Willmann8bca8de2020-11-03 21:11:45 +010083 uint16_t ns_bvci);
Jacob Erlbeck5f4ef322014-08-22 17:10:01 +020084
Harald Welte4bf53ef2020-12-05 17:50:23 +010085
Harald Welte052d8552020-12-06 16:32:01 +010086/* generate BVC-STATUS message with cause value derived from TLV-parser error */
87static int tx_status_from_tlvp(enum osmo_tlv_parser_error tlv_p_err, struct msgb *orig_msg)
88{
89 uint8_t bssgp_cause;
90 switch (tlv_p_err) {
91 case OSMO_TLVP_ERR_MAND_IE_MISSING:
92 bssgp_cause = BSSGP_CAUSE_MISSING_MAND_IE;
93 break;
94 default:
95 bssgp_cause = BSSGP_CAUSE_PROTO_ERR_UNSPEC;
96 }
97 return bssgp_tx_status(bssgp_cause, NULL, orig_msg);
98}
99
Harald Welte69619e32010-05-03 19:05:10 +0200100/* strip off the NS header */
101static void strip_ns_hdr(struct msgb *msg)
102{
103 int strip_len = msgb_bssgph(msg) - msg->data;
104 msgb_pull(msg, strip_len);
105}
106
Harald Welte5687ae62020-12-05 19:59:45 +0100107#if 0
Harald Welte8cd74402020-12-04 22:24:47 +0100108/* feed a message down the NS-VC associated with the specified bvc */
Holger Hans Peter Freythereece6272014-08-04 15:42:36 +0200109static int gbprox_relay2sgsn(struct gbproxy_config *cfg, struct msgb *old_msg,
Jacob Erlbeckf4d60c82014-08-26 14:47:15 +0200110 uint16_t ns_bvci, uint16_t sgsn_nsei)
Harald Welte672f5c42010-05-03 18:54:58 +0200111{
Harald Welte39d0bb52010-05-12 18:10:25 +0000112 /* create a copy of the message so the old one can
113 * be free()d safely when we return from gbprox_rcvmsg() */
Alexander Couzens82182d02020-09-22 13:21:46 +0200114 struct gprs_ns2_inst *nsi = cfg->nsi;
115 struct osmo_gprs_ns2_prim nsp = {};
Pau Espin Pedrol816a67d2018-08-15 13:53:48 +0200116 struct msgb *msg = bssgp_msgb_copy(old_msg, "msgb_relay2sgsn");
Jacob Erlbeckbc555742013-10-18 14:34:55 +0200117 int rc;
Harald Welte39d0bb52010-05-12 18:10:25 +0000118
Daniel Willmann103a7ec2020-12-02 16:08:02 +0100119 DEBUGP(DGPRS, "NSE(%05u/BSS)-BVC(%05u) proxying BTS->SGSN NSE(%05u/SGSN)\n",
Jacob Erlbeckf4d60c82014-08-26 14:47:15 +0200120 msgb_nsei(msg), ns_bvci, sgsn_nsei);
Harald Welte44c48302010-05-03 19:22:32 +0200121
Alexander Couzens82182d02020-09-22 13:21:46 +0200122 nsp.bvci = ns_bvci;
123 nsp.nsei = sgsn_nsei;
Harald Welte672f5c42010-05-03 18:54:58 +0200124
Harald Welte69619e32010-05-03 19:05:10 +0200125 strip_ns_hdr(msg);
Alexander Couzens82182d02020-09-22 13:21:46 +0200126 osmo_prim_init(&nsp.oph, SAP_NS, PRIM_NS_UNIT_DATA,
127 PRIM_OP_REQUEST, msg);
128 rc = gprs_ns2_recv_prim(nsi, &nsp.oph);
Jacob Erlbeckbc555742013-10-18 14:34:55 +0200129 if (rc < 0)
Holger Hans Peter Freythereece6272014-08-04 15:42:36 +0200130 rate_ctr_inc(&cfg->ctrg->ctr[GBPROX_GLOB_CTR_TX_ERR_SGSN]);
Jacob Erlbeckbc555742013-10-18 14:34:55 +0200131 return rc;
Harald Welte672f5c42010-05-03 18:54:58 +0200132}
Harald Welte5687ae62020-12-05 19:59:45 +0100133#endif
Harald Welte672f5c42010-05-03 18:54:58 +0200134
Daniel Willmann5937dfd2020-11-30 17:08:58 +0100135/* feed a message down the NSE */
136static int gbprox_relay2nse(struct msgb *old_msg, struct gbproxy_nse *nse,
Daniel Willmann8bca8de2020-11-03 21:11:45 +0100137 uint16_t ns_bvci)
Harald Welte9f75c352010-04-30 20:26:32 +0200138{
Daniel Willmann447ad442020-11-26 18:19:21 +0100139 OSMO_ASSERT(nse);
140 OSMO_ASSERT(nse->cfg);
141
Harald Welte39d0bb52010-05-12 18:10:25 +0000142 /* create a copy of the message so the old one can
143 * be free()d safely when we return from gbprox_rcvmsg() */
Daniel Willmann447ad442020-11-26 18:19:21 +0100144 struct gprs_ns2_inst *nsi = nse->cfg->nsi;
Alexander Couzens82182d02020-09-22 13:21:46 +0200145 struct osmo_gprs_ns2_prim nsp = {};
Daniel Willmann5937dfd2020-11-30 17:08:58 +0100146 struct msgb *msg = bssgp_msgb_copy(old_msg, "msgb_relay2nse");
Harald Welte2636e892020-11-18 12:01:46 +0100147 uint32_t tlli;
Jacob Erlbeckbc555742013-10-18 14:34:55 +0200148 int rc;
Harald Welte39d0bb52010-05-12 18:10:25 +0000149
Daniel Willmann103a7ec2020-12-02 16:08:02 +0100150 DEBUGP(DGPRS, "NSE(%05u/SGSN)-BVC(%05u) proxying SGSN->BSS NSE(%05u/BSS)\n",
Daniel Willmann447ad442020-11-26 18:19:21 +0100151 msgb_nsei(msg), ns_bvci, nse->nsei);
Harald Welte44c48302010-05-03 19:22:32 +0200152
Alexander Couzens82182d02020-09-22 13:21:46 +0200153 nsp.bvci = ns_bvci;
Daniel Willmann447ad442020-11-26 18:19:21 +0100154 nsp.nsei = nse->nsei;
Harald Welte9f75c352010-04-30 20:26:32 +0200155
Harald Welte0ab535b2010-05-13 10:34:56 +0200156 /* Strip the old NS header, it will be replaced with a new one */
Harald Welte69619e32010-05-03 19:05:10 +0200157 strip_ns_hdr(msg);
158
Harald Welte2636e892020-11-18 12:01:46 +0100159 /* TS 48.018 Section 5.4.2: The link selector parameter is
160 * defined in 3GPP TS 48.016. At one side of the Gb interface,
161 * all BSSGP UNITDATA PDUs related to an MS shall be passed with
162 * the same LSP, e.g. the LSP contains the MS's TLLI, to the
163 * underlying network service. */
164 if (gprs_gb_parse_tlli(msgb_data(msg), msgb_length(msg), &tlli) == 1)
165 nsp.u.unitdata.link_selector = tlli;
166
Alexander Couzens82182d02020-09-22 13:21:46 +0200167 osmo_prim_init(&nsp.oph, SAP_NS, PRIM_NS_UNIT_DATA,
168 PRIM_OP_REQUEST, msg);
169 rc = gprs_ns2_recv_prim(nsi, &nsp.oph);
Daniel Willmann5937dfd2020-11-30 17:08:58 +0100170 /* FIXME: We need a counter group for gbproxy_nse */
171 //if (rc < 0)
Harald Welte8cd74402020-12-04 22:24:47 +0100172 // rate_ctr_inc(&bvc->ctrg->ctr[GBPROX_PEER_CTR_TX_ERR]);
Daniel Willmann5937dfd2020-11-30 17:08:58 +0100173
174 return rc;
175}
176
Harald Welte8cd74402020-12-04 22:24:47 +0100177/* feed a message down the NS-VC associated with the specified bvc */
178static int gbprox_relay2peer(struct msgb *old_msg, struct gbproxy_bvc *bvc,
Daniel Willmann5937dfd2020-11-30 17:08:58 +0100179 uint16_t ns_bvci)
180{
181 int rc;
Harald Welte8cd74402020-12-04 22:24:47 +0100182 struct gbproxy_nse *nse = bvc->nse;
Daniel Willmann5937dfd2020-11-30 17:08:58 +0100183 OSMO_ASSERT(nse);
184
185 rc = gbprox_relay2nse(old_msg, nse, ns_bvci);
Jacob Erlbeckbc555742013-10-18 14:34:55 +0200186 if (rc < 0)
Harald Welte8cd74402020-12-04 22:24:47 +0100187 rate_ctr_inc(&bvc->ctrg->ctr[GBPROX_PEER_CTR_TX_ERR]);
Jacob Erlbeckbc555742013-10-18 14:34:55 +0200188
189 return rc;
Harald Welte9f75c352010-04-30 20:26:32 +0200190}
191
Harald Welteb1fd9022012-06-17 12:16:31 +0800192int bssgp_prim_cb(struct osmo_prim_hdr *oph, void *ctx)
193{
194 return 0;
195}
196
Harald Welte5687ae62020-12-05 19:59:45 +0100197
198/***********************************************************************
199 * PTP BVC handling
200 ***********************************************************************/
201
202/* route an uplink message on a PTP-BVC to a SGSN using the TLLI */
203static int gbprox_bss2sgsn_tlli(struct gbproxy_cell *cell, struct msgb *msg, uint32_t tlli,
204 bool sig_bvci)
205{
206 struct gbproxy_bvc *sgsn_bvc;
207 unsigned int i;
208
209 /* FIXME: derive NRI from TLLI */
210 /* FIXME: find the SGSN for that NRI */
211
212 /* HACK: we currently simply pick the first SGSN we find */
213 for (i = 0; i < ARRAY_SIZE(cell->sgsn_bvc); i++) {
214 sgsn_bvc = cell->sgsn_bvc[i];
215 if (sgsn_bvc)
216 return gbprox_relay2peer(msg, sgsn_bvc, sig_bvci ? 0 : sgsn_bvc->bvci);
217 }
218 return 0;
219}
220
221static int gbprox_bss2sgsn_null_nri(struct gbproxy_cell *cell, struct msgb *msg)
222{
223 struct gbproxy_bvc *sgsn_bvc;
224 unsigned int i;
225
226 /* FIXME: find the SGSN for that NRI */
227
228 /* HACK: we currently simply pick the first SGSN we find */
229 for (i = 0; i < ARRAY_SIZE(cell->sgsn_bvc); i++) {
230 sgsn_bvc = cell->sgsn_bvc[i];
231 if (sgsn_bvc)
232 return gbprox_relay2peer(msg, sgsn_bvc, sgsn_bvc->bvci);
233 }
234 return 0;
235}
236
237
Jacob Erlbeck46f1d6f2014-08-21 13:45:04 +0200238/* Receive an incoming PTP message from a BSS-side NS-VC */
Harald Welte5687ae62020-12-05 19:59:45 +0100239static int gbprox_rx_ptp_from_bss(struct gbproxy_nse *nse, struct msgb *msg, uint16_t ns_bvci)
Jacob Erlbeck46f1d6f2014-08-21 13:45:04 +0200240{
Harald Welted651edc2020-12-06 13:35:24 +0100241 struct bssgp_normal_hdr *bgph = (struct bssgp_normal_hdr *) msgb_bssgph(msg);
Harald Welte5687ae62020-12-05 19:59:45 +0100242 const char *pdut_name = osmo_tlv_prot_msg_name(&osmo_pdef_bssgp, bgph->pdu_type);
243 struct gbproxy_bvc *bss_bvc;
244 struct tlv_parsed tp;
245 char log_pfx[32];
246 uint32_t tlli;
247 int rc;
248
249 snprintf(log_pfx, sizeof(log_pfx), "NSE(%05u/BSS)-BVC(%05u/??)", nse->nsei, ns_bvci);
250
251 LOGP(DGPRS, LOGL_DEBUG, "%s Rx %s\n", log_pfx, pdut_name);
Jacob Erlbeck46f1d6f2014-08-21 13:45:04 +0200252
Daniel Willmannc4c1db92020-12-10 17:59:46 +0100253 if (ns_bvci == 0 || ns_bvci == 1) {
Harald Welte5687ae62020-12-05 19:59:45 +0100254 LOGP(DGPRS, LOGL_NOTICE, "%s BVCI=%05u is not PTP\n", log_pfx, ns_bvci);
Harald Welted651edc2020-12-06 13:35:24 +0100255 return bssgp_tx_status(BSSGP_CAUSE_PROTO_ERR_UNSPEC, NULL, msg);
256 }
257
258 if (!(bssgp_pdu_type_flags(bgph->pdu_type) & BSSGP_PDUF_PTP)) {
Harald Welte5687ae62020-12-05 19:59:45 +0100259 LOGP(DGPRS, LOGL_NOTICE, "%s %s not allowed in PTP BVC\n", log_pfx, pdut_name);
Harald Welted651edc2020-12-06 13:35:24 +0100260 return bssgp_tx_status(BSSGP_CAUSE_PROTO_ERR_UNSPEC, NULL, msg);
261 }
262
263 if (!(bssgp_pdu_type_flags(bgph->pdu_type) & BSSGP_PDUF_UL)) {
Harald Welte5687ae62020-12-05 19:59:45 +0100264 LOGP(DGPRS, LOGL_NOTICE, "%s %s not allowed in uplink direction\n", log_pfx, pdut_name);
Harald Welted651edc2020-12-06 13:35:24 +0100265 return bssgp_tx_status(BSSGP_CAUSE_PROTO_ERR_UNSPEC, NULL, msg);
266 }
267
Harald Welte5687ae62020-12-05 19:59:45 +0100268 bss_bvc = gbproxy_bvc_by_bvci(nse, ns_bvci);
269 if (!bss_bvc) {
270 LOGP(DGPRS, LOGL_NOTICE, "%s %s - Didn't find BVC for PTP message, discarding\n",
271 log_pfx, pdut_name);
272 return bssgp_tx_status(BSSGP_CAUSE_UNKNOWN_BVCI, &ns_bvci, msg);
Jacob Erlbeck058ae122014-10-10 09:07:04 +0200273 }
Jacob Erlbeck46f1d6f2014-08-21 13:45:04 +0200274
Harald Welte5687ae62020-12-05 19:59:45 +0100275 /* UL_UNITDATA has a different header than all other uplink PDUs */
276 if (bgph->pdu_type == BSSGP_PDUT_UL_UNITDATA) {
277 const struct bssgp_ud_hdr *budh = (struct bssgp_ud_hdr *) msgb_bssgph(msg);
278 if (msgb_bssgp_len(msg) < sizeof(*budh))
279 return bssgp_tx_status(BSSGP_CAUSE_INV_MAND_INF, NULL, msg);
280 rc = osmo_tlv_prot_parse(&osmo_pdef_bssgp, &tp, 1, bgph->pdu_type, budh->data,
281 msgb_bssgp_len(msg) - sizeof(*budh), 0, 0, DGPRS, log_pfx);
282 /* populate TLLI from the fixed headser into the TLV-parsed array so later code
283 * doesn't have to worry where the TLLI came from */
284 tp.lv[BSSGP_IE_TLLI].len = 4;
285 tp.lv[BSSGP_IE_TLLI].val = (const uint8_t *) &budh->tlli;
286 } else {
287 rc = osmo_tlv_prot_parse(&osmo_pdef_bssgp, &tp, 1, bgph->pdu_type, bgph->data,
288 msgb_bssgp_len(msg) - sizeof(*bgph), 0, 0, DGPRS, log_pfx);
289 }
290 if (rc < 0) {
291 rate_ctr_inc(&nse->cfg->ctrg->ctr[GBPROX_GLOB_CTR_PROTO_ERR_BSS]);
292 return tx_status_from_tlvp(rc, msg);
293 }
Harald Welte61ff2732020-12-08 21:43:22 +0100294 /* hack to get both msg + tlv_parsed passed via osmo_fsm_inst_dispatch */
295 msgb_bcid(msg) = (void *)&tp;
Jacob Erlbeck43b8f9f2014-10-02 14:56:44 +0200296
Harald Welte5687ae62020-12-05 19:59:45 +0100297 switch (bgph->pdu_type) {
298 case BSSGP_PDUT_UL_UNITDATA:
299 case BSSGP_PDUT_RA_CAPA_UPDATE:
300 case BSSGP_PDUT_FLOW_CONTROL_MS:
301 case BSSGP_PDUT_DOWNLOAD_BSS_PFC:
302 case BSSGP_PDUT_CREATE_BSS_PFC_ACK:
303 case BSSGP_PDUT_CREATE_BSS_PFC_NACK:
304 case BSSGP_PDUT_MODIFY_BSS_PFC_ACK:
305 case BSSGP_PDUT_DELETE_BSS_PFC_ACK:
306 case BSSGP_PDUT_FLOW_CONTROL_PFC:
307 case BSSGP_PDUT_DELETE_BSS_PFC_REQ:
308 case BSSGP_PDUT_PS_HO_REQUIRED:
309 case BSSGP_PDUT_PS_HO_REQUEST_ACK:
310 case BSSGP_PDUT_PS_HO_REQUEST_NACK:
311 case BSSGP_PDUT_PS_HO_COMPLETE:
312 case BSSGP_PDUT_PS_HO_CANCEL:
313 /* We can route based on TLLI-NRI */
314 tlli = osmo_load32be(TLVP_VAL(&tp, BSSGP_IE_TLLI));
315 rc = gbprox_bss2sgsn_tlli(bss_bvc->cell, msg, tlli, false);
316 break;
317 case BSSGP_PDUT_RADIO_STATUS:
318 if (TLVP_PRESENT(&tp, BSSGP_IE_TLLI)) {
319 tlli = osmo_load32be(TLVP_VAL(&tp, BSSGP_IE_TLLI));
320 rc = gbprox_bss2sgsn_tlli(bss_bvc->cell, msg, tlli, false);
321 } else if (TLVP_PRESENT(&tp, BSSGP_IE_TMSI)) {
322 /* we treat the TMSI like a TLLI and extract the NRI from it */
323 tlli = osmo_load32be(TLVP_VAL(&tp, BSSGP_IE_TMSI));
324 rc = gbprox_bss2sgsn_tlli(bss_bvc->cell, msg, tlli, false);
325 } else if (TLVP_PRESENT(&tp, BSSGP_IE_IMSI)) {
326 rc = gbprox_bss2sgsn_null_nri(bss_bvc->cell, msg);
327 } else
328 LOGPBVC(bss_bvc, LOGL_ERROR, "Rx RADIO-STATUS without any of the conditional IEs\n");
329 break;
330 case BSSGP_PDUT_DUMMY_PAGING_PS_RESP:
331 case BSSGP_PDUT_PAGING_PS_REJECT:
332 /* TODO: Implement via state tracking of PAGING-PS + DUMMY_PAGING_PS */
333 LOGPBVC(bss_bvc, LOGL_ERROR, "Rx %s: Implementation missing\n", pdut_name);
334 break;
335 case BSSGP_PDUT_FLOW_CONTROL_BVC:
Harald Welte61ff2732020-12-08 21:43:22 +0100336 osmo_fsm_inst_dispatch(bss_bvc->fi, BSSGP_BVCFSM_E_RX_FC_BVC, msg);
Harald Welte5687ae62020-12-05 19:59:45 +0100337 break;
338 case BSSGP_PDUT_STATUS:
339 /* TODO: Implement by inspecting the contained PDU */
340 if (!TLVP_PRESENT(&tp, BSSGP_IE_PDU_IN_ERROR))
341 break;
342 LOGPBVC(bss_bvc, LOGL_ERROR, "Rx %s: Implementation missing\n", pdut_name);
343 break;
344 }
345
346 return 0;
Jacob Erlbeck46f1d6f2014-08-21 13:45:04 +0200347}
348
349/* Receive an incoming PTP message from a SGSN-side NS-VC */
Harald Welte5687ae62020-12-05 19:59:45 +0100350static int gbprox_rx_ptp_from_sgsn(struct gbproxy_nse *nse, struct msgb *msg, uint16_t ns_bvci)
Jacob Erlbeck46f1d6f2014-08-21 13:45:04 +0200351{
Harald Welted651edc2020-12-06 13:35:24 +0100352 struct bssgp_normal_hdr *bgph = (struct bssgp_normal_hdr *) msgb_bssgph(msg);
Harald Welte5687ae62020-12-05 19:59:45 +0100353 const char *pdut_name = osmo_tlv_prot_msg_name(&osmo_pdef_bssgp, bgph->pdu_type);
354 struct gbproxy_bvc *sgsn_bvc, *bss_bvc;
Harald Welte61ff2732020-12-08 21:43:22 +0100355 struct tlv_parsed tp;
Harald Welte5687ae62020-12-05 19:59:45 +0100356 char log_pfx[32];
Harald Welte61ff2732020-12-08 21:43:22 +0100357 int rc;
Harald Welte5687ae62020-12-05 19:59:45 +0100358
359 snprintf(log_pfx, sizeof(log_pfx), "NSE(%05u/SGSN)-BVC(%05u/??)", nse->nsei, ns_bvci);
360
361 LOGP(DGPRS, LOGL_DEBUG, "%s Rx %s\n", log_pfx, pdut_name);
Jacob Erlbeck46f1d6f2014-08-21 13:45:04 +0200362
Daniel Willmannc4c1db92020-12-10 17:59:46 +0100363 if (ns_bvci == 0 || ns_bvci == 1) {
Harald Welte5687ae62020-12-05 19:59:45 +0100364 LOGP(DGPRS, LOGL_NOTICE, "%s BVCI is not PTP\n", log_pfx);
Harald Welted651edc2020-12-06 13:35:24 +0100365 return bssgp_tx_status(BSSGP_CAUSE_PROTO_ERR_UNSPEC, NULL, msg);
366 }
367
368 if (!(bssgp_pdu_type_flags(bgph->pdu_type) & BSSGP_PDUF_PTP)) {
Harald Welte5687ae62020-12-05 19:59:45 +0100369 LOGP(DGPRS, LOGL_NOTICE, "%s %s not allowed in PTP BVC\n", log_pfx, pdut_name);
Harald Welted651edc2020-12-06 13:35:24 +0100370 return bssgp_tx_status(BSSGP_CAUSE_PROTO_ERR_UNSPEC, NULL, msg);
371 }
372
373 if (!(bssgp_pdu_type_flags(bgph->pdu_type) & BSSGP_PDUF_DL)) {
Harald Welte5687ae62020-12-05 19:59:45 +0100374 LOGP(DGPRS, LOGL_NOTICE, "%s %s not allowed in downlink direction\n", log_pfx, pdut_name);
Harald Welted651edc2020-12-06 13:35:24 +0100375 return bssgp_tx_status(BSSGP_CAUSE_PROTO_ERR_UNSPEC, NULL, msg);
376 }
377
Harald Welte5687ae62020-12-05 19:59:45 +0100378 sgsn_bvc = gbproxy_bvc_by_bvci(nse, ns_bvci);
379 if (!sgsn_bvc) {
380 LOGP(DGPRS, LOGL_NOTICE, "%s %s - Didn't find BVC for for PTP message, discarding\n",
381 log_pfx, pdut_name);
382 rate_ctr_inc(&nse->cfg->ctrg-> ctr[GBPROX_GLOB_CTR_INV_BVCI]);
383 return bssgp_tx_status(BSSGP_CAUSE_UNKNOWN_BVCI, &ns_bvci, msg);
Jacob Erlbeck46f1d6f2014-08-21 13:45:04 +0200384 }
385
Harald Welte5687ae62020-12-05 19:59:45 +0100386 if (!bssgp_bvc_fsm_is_unblocked(sgsn_bvc->fi)) {
387 LOGPBVC(sgsn_bvc, LOGL_NOTICE, "Rx %s: Dropping on blocked BVC\n", pdut_name);
388 rate_ctr_inc(&sgsn_bvc->ctrg->ctr[GBPROX_PEER_CTR_DROPPED]);
Jacob Erlbeck17b42b82014-08-29 12:20:15 +0200389 return bssgp_tx_status(BSSGP_CAUSE_BVCI_BLOCKED, &ns_bvci, msg);
Jacob Erlbeck46f1d6f2014-08-21 13:45:04 +0200390 }
Harald Welte61ff2732020-12-08 21:43:22 +0100391
392 /* DL_UNITDATA has a different header than all other uplink PDUs */
393 if (bgph->pdu_type == BSSGP_PDUT_DL_UNITDATA) {
394 const struct bssgp_ud_hdr *budh = (struct bssgp_ud_hdr *) msgb_bssgph(msg);
395 if (msgb_bssgp_len(msg) < sizeof(*budh))
396 return bssgp_tx_status(BSSGP_CAUSE_INV_MAND_INF, NULL, msg);
397 rc = osmo_tlv_prot_parse(&osmo_pdef_bssgp, &tp, 1, bgph->pdu_type, budh->data,
398 msgb_bssgp_len(msg) - sizeof(*budh), 0, 0, DGPRS, log_pfx);
399 /* populate TLLI from the fixed headser into the TLV-parsed array so later code
400 * doesn't have to worry where the TLLI came from */
401 tp.lv[BSSGP_IE_TLLI].len = 4;
402 tp.lv[BSSGP_IE_TLLI].val = (const uint8_t *) &budh->tlli;
403 } else {
404 rc = osmo_tlv_prot_parse(&osmo_pdef_bssgp, &tp, 1, bgph->pdu_type, bgph->data,
405 msgb_bssgp_len(msg) - sizeof(*bgph), 0, 0, DGPRS, log_pfx);
406 }
407 if (rc < 0) {
408 rate_ctr_inc(&nse->cfg->ctrg->ctr[GBPROX_GLOB_CTR_PROTO_ERR_BSS]);
409 return tx_status_from_tlvp(rc, msg);
410 }
411 /* hack to get both msg + tlv_parsed passed via osmo_fsm_inst_dispatch */
412 msgb_bcid(msg) = (void *)&tp;
413
Harald Welte5687ae62020-12-05 19:59:45 +0100414 OSMO_ASSERT(sgsn_bvc->cell);
415 bss_bvc = sgsn_bvc->cell->bss_bvc;
Jacob Erlbeck46f1d6f2014-08-21 13:45:04 +0200416
Harald Welte61ff2732020-12-08 21:43:22 +0100417 switch (bgph->pdu_type) {
418 case BSSGP_PDUT_FLOW_CONTROL_BVC_ACK:
419 return osmo_fsm_inst_dispatch(sgsn_bvc->fi, BSSGP_BVCFSM_E_RX_FC_BVC_ACK, msg);
420 default:
421 return gbprox_relay2peer(msg, bss_bvc, bss_bvc->bvci);
422 }
423
Jacob Erlbeck46f1d6f2014-08-21 13:45:04 +0200424}
425
Harald Welte5687ae62020-12-05 19:59:45 +0100426/***********************************************************************
427 * BVC FSM call-backs
428 ***********************************************************************/
Harald Welteac44d6b2020-12-02 22:53:26 +0100429
Harald Welte5687ae62020-12-05 19:59:45 +0100430/* helper function to dispatch a FSM event to all SGSN-side BVC FSMs of a cell */
431static void dispatch_to_all_sgsn_bvc(struct gbproxy_cell *cell, uint32_t event, void *priv)
432{
433 unsigned int i;
434
435 for (i = 0; i < ARRAY_SIZE(cell->sgsn_bvc); i++) {
436 struct gbproxy_bvc *sgsn_bvc = cell->sgsn_bvc[i];
437 if (!sgsn_bvc)
438 continue;
439 osmo_fsm_inst_dispatch(sgsn_bvc->fi, event, priv);
440 }
441}
442
443/* BVC FSM informs us about a BSS-side reset of the signaling BVC */
444static void bss_sig_bvc_reset_notif(uint16_t nsei, uint16_t bvci, const struct gprs_ra_id *ra_id,
445 uint16_t cell_id, uint8_t cause, void *priv)
446{
447 struct gbproxy_bvc *sig_bvc = priv;
448 struct gbproxy_nse *nse = sig_bvc->nse;
449 struct gbproxy_bvc *ptp_bvc;
450 unsigned int i;
451
452 /* BLOCK all SGSN-side PTP BVC within this NSE */
453 hash_for_each(nse->bvcs, i, ptp_bvc, list) {
454 if (ptp_bvc == sig_bvc)
455 continue;
456 OSMO_ASSERT(ptp_bvc->cell);
457
458 dispatch_to_all_sgsn_bvc(ptp_bvc->cell, BSSGP_BVCFSM_E_REQ_BLOCK, &cause);
Harald Weltefb7f8c52020-12-02 23:29:38 +0100459 }
Harald Welteac44d6b2020-12-02 22:53:26 +0100460
Harald Welte5687ae62020-12-05 19:59:45 +0100461 /* Delete all BSS-side PTP BVC within this NSE */
462 gbproxy_cleanup_bvcs(nse, 0);
463
464 /* TODO: we keep the "CELL" around for now, re-connecting it to
465 * any (later) new PTP-BVC for that BVCI. Not sure if that's the
466 * best idea ? */
467}
468
469/* forward declaration */
470static const struct bssgp_bvc_fsm_ops sgsn_ptp_bvc_fsm_ops;
471
472static const struct bssgp_bvc_fsm_ops bss_sig_bvc_fsm_ops = {
473 .reset_notification = bss_sig_bvc_reset_notif,
474};
475
476/* BVC FSM informs us about a BSS-side reset of a PTP BVC */
477static void bss_ptp_bvc_reset_notif(uint16_t nsei, uint16_t bvci, const struct gprs_ra_id *ra_id,
478 uint16_t cell_id, uint8_t cause, void *priv)
479{
480 struct gbproxy_bvc *bvc = priv;
481 struct gbproxy_config *cfg = bvc->nse->cfg;
Harald Weltecab85882020-12-12 15:01:17 +0100482 struct gbproxy_nse *sgsn_nse;
Harald Welte5687ae62020-12-05 19:59:45 +0100483 unsigned int i;
484
485 OSMO_ASSERT(bvci != 0);
486
487 if (!bvc->cell) {
488 /* see if we have a CELL dangling around */
489 bvc->cell = gbproxy_cell_by_bvci(cfg, bvci);
490 if (bvc->cell) {
491 /* the CELL already exists. This means either it * was created before at an
492 * earlier PTP BVC-RESET, or that there are non-unique BVCIs and hence a
493 * malconfiguration */
494 if (bvc->cell->bss_bvc) {
495 LOGPBVC(bvc, LOGL_NOTICE, "Rx BVC-RESET via this NSE, but CELL already "
496 "has BVC on NSEI=%05u\n", bvc->cell->bss_bvc->nse->nsei);
497 LOGPBVC(bvc->cell->bss_bvc, LOGL_NOTICE, "Destroying due to conflicting "
498 "BVCI configuration (new NSEI=%05u)!\n", bvc->nse->nsei);
499 gbproxy_bvc_free(bvc->cell->bss_bvc);
500 }
501 bvc->cell->bss_bvc = bvc;
502 }
503 }
504
505 if (!bvc->cell) {
Harald Welte5687ae62020-12-05 19:59:45 +0100506 /* if we end up here, it means this is the first time we received a BVC-RESET
507 * for this BVC. We need to create the 'cell' data structure and the SGSN-side
508 * BVC counterparts */
509
510 bvc->cell = gbproxy_cell_alloc(cfg, bvci);
511 OSMO_ASSERT(bvc->cell);
Harald Welte4b4c9972020-12-12 14:22:32 +0100512 memcpy(bvc->cell->ra, bvc->ra, sizeof(bvc->cell->ra));
Harald Welte5687ae62020-12-05 19:59:45 +0100513
514 /* link us to the cell and vice-versa */
515 bvc->cell->bss_bvc = bvc;
Harald Weltecab85882020-12-12 15:01:17 +0100516 }
Harald Welte5687ae62020-12-05 19:59:45 +0100517
Harald Weltecab85882020-12-12 15:01:17 +0100518 /* allocate (any missing) SGSN-side BVCs within the cell, and reset them */
519 hash_for_each(cfg->sgsn_nses, i, sgsn_nse, list) {
520 struct gbproxy_bvc *sgsn_bvc = gbproxy_bvc_by_bvci(sgsn_nse, bvci);
521 if (sgsn_bvc)
522 OSMO_ASSERT(sgsn_bvc->cell == bvc->cell || !sgsn_bvc->cell);
Harald Welte5687ae62020-12-05 19:59:45 +0100523
Harald Weltecab85882020-12-12 15:01:17 +0100524 if (!sgsn_bvc) {
525 sgsn_bvc = gbproxy_bvc_alloc(sgsn_nse, bvci);
526 OSMO_ASSERT(sgsn_bvc);
Harald Welte5687ae62020-12-05 19:59:45 +0100527
Harald Weltecab85882020-12-12 15:01:17 +0100528 sgsn_bvc->cell = bvc->cell;
529 memcpy(sgsn_bvc->ra, bvc->cell->ra, sizeof(sgsn_bvc->ra));
530 sgsn_bvc->fi = bssgp_bvc_fsm_alloc_ptp_bss(sgsn_bvc, cfg->nsi, sgsn_nse->nsei,
531 bvci, ra_id, cell_id);
532 OSMO_ASSERT(sgsn_bvc->fi);
533 bssgp_bvc_fsm_set_ops(sgsn_bvc->fi, &sgsn_ptp_bvc_fsm_ops, sgsn_bvc);
Harald Welte5687ae62020-12-05 19:59:45 +0100534
Harald Weltecab85882020-12-12 15:01:17 +0100535 gbproxy_cell_add_sgsn_bvc(bvc->cell, sgsn_bvc);
Harald Welte5687ae62020-12-05 19:59:45 +0100536 }
537 }
538
539 /* Trigger outbound BVC-RESET procedure toward each SGSN */
540 dispatch_to_all_sgsn_bvc(bvc->cell, BSSGP_BVCFSM_E_REQ_RESET, &cause);
541}
542
543/* BVC FSM informs us about a BSS-side FSM state change */
544static void bss_ptp_bvc_state_chg_notif(uint16_t nsei, uint16_t bvci, int old_state, int state, void *priv)
545{
546 struct gbproxy_bvc *bvc = priv;
547 struct gbproxy_cell *cell = bvc->cell;
548 uint8_t cause = bssgp_bvc_fsm_get_block_cause(bvc->fi);
549
550 /* we have just been created but due to callback ordering the cell is not associated */
551 if (!cell)
552 return;
553
554 switch (state) {
555 case BSSGP_BVCFSM_S_BLOCKED:
556 /* block the corresponding SGSN-side PTP BVCs */
557 dispatch_to_all_sgsn_bvc(cell, BSSGP_BVCFSM_E_REQ_BLOCK, &cause);
558 break;
559 case BSSGP_BVCFSM_S_UNBLOCKED:
560 /* unblock the corresponding SGSN-side PTP BVCs */
561 dispatch_to_all_sgsn_bvc(cell, BSSGP_BVCFSM_E_REQ_UNBLOCK, NULL);
562 break;
563 }
564}
565
Harald Welte61ff2732020-12-08 21:43:22 +0100566/* BVC FSM informs us about BVC-FC PDU receive */
567static void bss_ptp_bvc_fc_bvc(uint16_t nsei, uint16_t bvci, const struct bssgp2_flow_ctrl *fc, void *priv)
568{
569 struct gbproxy_bvc *bss_bvc = priv;
570 struct gbproxy_cell *cell = bss_bvc->cell;
571
572 if (!cell)
573 return;
574
575 /* FIXME: actually split the bandwidth among the SGSNs! */
576
577 dispatch_to_all_sgsn_bvc(cell, BSSGP_BVCFSM_E_REQ_FC_BVC, (void *) fc);
578}
579
Harald Welte5687ae62020-12-05 19:59:45 +0100580static const struct bssgp_bvc_fsm_ops bss_ptp_bvc_fsm_ops = {
581 .reset_notification = bss_ptp_bvc_reset_notif,
582 .state_chg_notification = bss_ptp_bvc_state_chg_notif,
Harald Welte61ff2732020-12-08 21:43:22 +0100583 .rx_fc_bvc = bss_ptp_bvc_fc_bvc,
Harald Welte5687ae62020-12-05 19:59:45 +0100584};
585
586/* BVC FSM informs us about a SGSN-side reset of a PTP BVC */
587static void sgsn_ptp_bvc_reset_notif(uint16_t nsei, uint16_t bvci, const struct gprs_ra_id *ra_id,
588 uint16_t cell_id, uint8_t cause, void *priv)
589{
590 struct gbproxy_bvc *bvc = priv;
591
592 if (!bvc->cell) {
593 LOGPBVC(bvc, LOGL_ERROR, "RESET of PTP BVC on SGSN side for which we have no BSS?\n");
594 return;
595 }
596
597 OSMO_ASSERT(bvc->cell->bss_bvc);
598
599 /* request reset of BSS-facing PTP-BVC */
600 osmo_fsm_inst_dispatch(bvc->cell->bss_bvc->fi, BSSGP_BVCFSM_E_REQ_RESET, &cause);
601}
602
603static const struct bssgp_bvc_fsm_ops sgsn_ptp_bvc_fsm_ops = {
604 .reset_notification = sgsn_ptp_bvc_reset_notif,
605};
606
607/* BVC FSM informs us about a SGSN-side reset of the signaling BVC */
608static void sgsn_sig_bvc_reset_notif(uint16_t nsei, uint16_t bvci, const struct gprs_ra_id *ra_id,
609 uint16_t cell_id, uint8_t cause, void *priv)
610{
611 struct gbproxy_bvc *bvc = priv;
612 struct gbproxy_config *cfg = bvc->nse->cfg;
613 struct gbproxy_nse *bss_nse;
614 unsigned int i;
615
616 /* delete all SGSN-side PTP BVC for this SGSN */
617 gbproxy_cleanup_bvcs(bvc->nse, 0);
618 /* FIXME: what to do about the cells? */
619 /* FIXME: do we really want to RESET all signaling BVC on the BSS and affect all other SGSN? */
620
621 /* we need to trigger generating a reset procedure towards each BSS side signaling BVC */
622 hash_for_each(cfg->bss_nses, i, bss_nse, list) {
623 struct gbproxy_bvc *bss_bvc = gbproxy_bvc_by_bvci(bss_nse, 0);
624 if (!bss_bvc) {
625 LOGPNSE(bss_nse, LOGL_ERROR, "Doesn't have BVC with BVCI=0 ?!?\n");
626 continue;
627 }
628 osmo_fsm_inst_dispatch(bss_bvc->fi, BSSGP_BVCFSM_E_REQ_RESET, &cause);
629 }
630}
631
632const struct bssgp_bvc_fsm_ops sgsn_sig_bvc_fsm_ops = {
633 .reset_notification = sgsn_sig_bvc_reset_notif,
634};
635
636/***********************************************************************
637 * Signaling BVC handling
638 ***********************************************************************/
639
640/* process a BVC-RESET message from the BSS side */
641static int rx_bvc_reset_from_bss(struct gbproxy_nse *nse, struct msgb *msg, struct tlv_parsed *tp)
642{
643 struct gbproxy_bvc *from_bvc = NULL;
644 uint16_t bvci = ntohs(tlvp_val16_unal(tp, BSSGP_IE_BVCI));
645 uint32_t features = 0; // FIXME: make configurable
646
647 LOGPNSE(nse, LOGL_INFO, "Rx BVC-RESET (BVCI=%05u)\n", bvci);
648
Harald Welte1239cf42020-12-02 23:03:22 +0100649 if (bvci == 0) {
650 /* If we receive a BVC reset on the signalling endpoint, we
651 * don't want the SGSN to reset, as the signalling endpoint
652 * is common for all point-to-point BVCs (and thus all BTS) */
Harald Welte55253712020-12-02 23:06:37 +0100653
Harald Welte5687ae62020-12-05 19:59:45 +0100654 from_bvc = gbproxy_bvc_by_bvci(nse, 0);
Harald Welte8cd74402020-12-04 22:24:47 +0100655 if (!from_bvc) {
Harald Welte5687ae62020-12-05 19:59:45 +0100656 from_bvc = gbproxy_bvc_alloc(nse, 0);
657 OSMO_ASSERT(from_bvc);
658 from_bvc->fi = bssgp_bvc_fsm_alloc_sig_sgsn(from_bvc, nse->cfg->nsi, nse->nsei, features);
659 if (!from_bvc->fi) {
660 LOGPNSE(nse, LOGL_ERROR, "Cannot allocate SIG-BVC FSM\n");
661 gbproxy_bvc_free(from_bvc);
662 return -ENOMEM;
Harald Welteac44d6b2020-12-02 22:53:26 +0100663 }
Harald Welte5687ae62020-12-05 19:59:45 +0100664 bssgp_bvc_fsm_set_ops(from_bvc->fi, &bss_sig_bvc_fsm_ops, from_bvc);
665 }
666 } else {
667 from_bvc = gbproxy_bvc_by_bvci(nse, bvci);
668 if (!from_bvc) {
Harald Welteac44d6b2020-12-02 22:53:26 +0100669 /* if a PTP-BVC is reset, and we don't know that
Harald Welte8cd74402020-12-04 22:24:47 +0100670 * PTP-BVCI yet, we should allocate a new bvc */
671 from_bvc = gbproxy_bvc_alloc(nse, bvci);
672 OSMO_ASSERT(from_bvc);
Harald Welte5687ae62020-12-05 19:59:45 +0100673 from_bvc->fi = bssgp_bvc_fsm_alloc_ptp_sgsn(from_bvc, nse->cfg->nsi,
674 nse->nsei, bvci);
675 if (!from_bvc->fi) {
676 LOGPNSE(nse, LOGL_ERROR, "Cannot allocate SIG-BVC FSM\n");
677 gbproxy_bvc_free(from_bvc);
678 return -ENOMEM;
679 }
680 bssgp_bvc_fsm_set_ops(from_bvc->fi, &bss_ptp_bvc_fsm_ops, from_bvc);
Harald Welteac44d6b2020-12-02 22:53:26 +0100681 }
Harald Welte5687ae62020-12-05 19:59:45 +0100682#if 0
Harald Welteac44d6b2020-12-02 22:53:26 +0100683 /* Could have moved to a different NSE */
Harald Welte8cd74402020-12-04 22:24:47 +0100684 if (!check_bvc_nsei(from_bvc, nsei)) {
685 LOGPBVC(from_bvc, LOGL_NOTICE, "moving bvc to NSE(%05u)\n", nsei);
Harald Welteac44d6b2020-12-02 22:53:26 +0100686
Harald Welte5687ae62020-12-05 19:59:45 +0100687 struct gbproxy_nse *nse_new = gbproxy_nse_by_nsei(cfg, nsei, false);
Harald Welteac44d6b2020-12-02 22:53:26 +0100688 if (!nse_new) {
689 LOGP(DGPRS, LOGL_NOTICE, "NSE(%05u) Got PtP BVC reset before signalling reset for "
690 "BVCI=%05u\n", bvci, nsei);
691 bssgp_tx_status(BSSGP_CAUSE_PDU_INCOMP_STATE, NULL, msg);
692 return 0;
693 }
694
Harald Welte8cd74402020-12-04 22:24:47 +0100695 /* Move bvc to different NSE */
696 gbproxy_bvc_move(from_bvc, nse_new);
Harald Welteac44d6b2020-12-02 22:53:26 +0100697 }
Harald Welte5687ae62020-12-05 19:59:45 +0100698#endif
699 /* FIXME: do we need this, if it happens within FSM? */
Harald Welte6c4c6f02020-12-03 15:36:59 +0100700 if (TLVP_PRES_LEN(tp, BSSGP_IE_CELL_ID, 8)) {
Harald Welteac44d6b2020-12-02 22:53:26 +0100701 struct gprs_ra_id raid;
702 /* We have a Cell Identifier present in this
703 * PDU, this means we can extend our local
704 * state information about this particular cell
705 * */
Harald Welte8cd74402020-12-04 22:24:47 +0100706 memcpy(from_bvc->ra, TLVP_VAL(tp, BSSGP_IE_CELL_ID), sizeof(from_bvc->ra));
707 gsm48_parse_ra(&raid, from_bvc->ra);
708 LOGPBVC(from_bvc, LOGL_INFO, "Cell ID %s\n", osmo_rai_name(&raid));
Harald Welteac44d6b2020-12-02 22:53:26 +0100709 }
Harald Welteac44d6b2020-12-02 22:53:26 +0100710 }
Harald Welte5687ae62020-12-05 19:59:45 +0100711 /* hand into FSM for further processing */
712 osmo_fsm_inst_dispatch(from_bvc->fi, BSSGP_BVCFSM_E_RX_RESET, msg);
713 return 0;
Harald Welteac44d6b2020-12-02 22:53:26 +0100714}
715
Harald Welte9f75c352010-04-30 20:26:32 +0200716/* Receive an incoming signalling message from a BSS-side NS-VC */
Harald Welte5687ae62020-12-05 19:59:45 +0100717static int gbprox_rx_sig_from_bss(struct gbproxy_nse *nse, struct msgb *msg, uint16_t ns_bvci)
Harald Welte9f75c352010-04-30 20:26:32 +0200718{
Harald Welteca3620a2010-05-03 16:30:59 +0200719 struct bssgp_normal_hdr *bgph = (struct bssgp_normal_hdr *) msgb_bssgph(msg);
Harald Welte9f75c352010-04-30 20:26:32 +0200720 uint8_t pdu_type = bgph->pdu_type;
Harald Welte5687ae62020-12-05 19:59:45 +0100721 const char *pdut_name = osmo_tlv_prot_msg_name(&osmo_pdef_bssgp, bgph->pdu_type);
722 struct tlv_parsed tp;
Harald Welteca3620a2010-05-03 16:30:59 +0200723 int data_len = msgb_bssgp_len(msg) - sizeof(*bgph);
Harald Welte8cd74402020-12-04 22:24:47 +0100724 struct gbproxy_bvc *from_bvc = NULL;
Harald Welte052d8552020-12-06 16:32:01 +0100725 char log_pfx[32];
Harald Welte5687ae62020-12-05 19:59:45 +0100726 uint16_t ptp_bvci;
727 uint32_t tlli;
Jacob Erlbeck59300642014-09-08 09:04:01 +0200728 int rc;
Harald Welte9f75c352010-04-30 20:26:32 +0200729
Harald Welte5687ae62020-12-05 19:59:45 +0100730 snprintf(log_pfx, sizeof(log_pfx), "NSE(%05u/BSS)-BVC(%05u/??)", nse->nsei, ns_bvci);
731
732 LOGP(DGPRS, LOGL_DEBUG, "%s Rx %s\n", log_pfx, pdut_name);
Harald Welte052d8552020-12-06 16:32:01 +0100733
Harald Weltec471d3d2011-02-06 17:13:12 +0100734 if (ns_bvci != 0 && ns_bvci != 1) {
Harald Welte5687ae62020-12-05 19:59:45 +0100735 LOGP(DGPRS, LOGL_NOTICE, "%s %s BVCI=%05u is not signalling\n", log_pfx, pdut_name, ns_bvci);
Harald Welted651edc2020-12-06 13:35:24 +0100736 return bssgp_tx_status(BSSGP_CAUSE_PROTO_ERR_UNSPEC, NULL, msg);
Harald Welte9f75c352010-04-30 20:26:32 +0200737 }
738
Harald Welted651edc2020-12-06 13:35:24 +0100739 if (!(bssgp_pdu_type_flags(pdu_type) & BSSGP_PDUF_SIG)) {
Harald Welte5687ae62020-12-05 19:59:45 +0100740 LOGP(DGPRS, LOGL_NOTICE, "%s %s not allowed in signalling BVC\n", log_pfx, pdut_name);
Harald Welted651edc2020-12-06 13:35:24 +0100741 return bssgp_tx_status(BSSGP_CAUSE_PROTO_ERR_UNSPEC, NULL, msg);
742 }
743
744 if (!(bssgp_pdu_type_flags(pdu_type) & BSSGP_PDUF_UL)) {
Harald Welte5687ae62020-12-05 19:59:45 +0100745 LOGP(DGPRS, LOGL_NOTICE, "%s %s not allowed in uplink direction\n", log_pfx, pdut_name);
Harald Welted651edc2020-12-06 13:35:24 +0100746 return bssgp_tx_status(BSSGP_CAUSE_PROTO_ERR_UNSPEC, NULL, msg);
Harald Welte9f75c352010-04-30 20:26:32 +0200747 }
748
Harald Welte052d8552020-12-06 16:32:01 +0100749 rc = osmo_tlv_prot_parse(&osmo_pdef_bssgp, &tp, 1, pdu_type, bgph->data, data_len, 0, 0,
750 DGPRS, log_pfx);
751 if (rc < 0) {
Harald Welte5687ae62020-12-05 19:59:45 +0100752 rate_ctr_inc(&nse->cfg->ctrg->ctr[GBPROX_GLOB_CTR_PROTO_ERR_BSS]);
Harald Welte052d8552020-12-06 16:32:01 +0100753 return tx_status_from_tlvp(rc, msg);
754 }
Harald Welte5687ae62020-12-05 19:59:45 +0100755 /* hack to get both msg + tlv_parsed passed via osmo_fsm_inst_dispatch */
756 msgb_bcid(msg) = (void *)&tp;
Harald Welte9f75c352010-04-30 20:26:32 +0200757
Harald Welte5687ae62020-12-05 19:59:45 +0100758 /* special case handling for some PDU types */
Harald Welte9f75c352010-04-30 20:26:32 +0200759 switch (pdu_type) {
Harald Welte5687ae62020-12-05 19:59:45 +0100760 case BSSGP_PDUT_BVC_RESET:
761 /* resolve or create gbproxy_bvc + handlei n BVC-FSM */
762 ptp_bvci = ntohs(tlvp_val16_unal(&tp, BSSGP_IE_BVCI));
763 return rx_bvc_reset_from_bss(nse, msg, &tp);
764 case BSSGP_PDUT_BVC_RESET_ACK:
765 ptp_bvci = ntohs(tlvp_val16_unal(&tp, BSSGP_IE_BVCI));
766 from_bvc = gbproxy_bvc_by_bvci(nse, ptp_bvci);
Harald Welte8cd74402020-12-04 22:24:47 +0100767 if (!from_bvc)
768 goto err_no_bvc;
Harald Welte5687ae62020-12-05 19:59:45 +0100769 return osmo_fsm_inst_dispatch(from_bvc->fi, BSSGP_BVCFSM_E_RX_RESET_ACK, msg);
770 case BSSGP_PDUT_BVC_BLOCK:
771 ptp_bvci = ntohs(tlvp_val16_unal(&tp, BSSGP_IE_BVCI));
772 from_bvc = gbproxy_bvc_by_bvci(nse, ptp_bvci);
773 if (!from_bvc)
774 goto err_no_bvc;
775 return osmo_fsm_inst_dispatch(from_bvc->fi, BSSGP_BVCFSM_E_RX_BLOCK, msg);
776 case BSSGP_PDUT_BVC_UNBLOCK:
777 ptp_bvci = ntohs(tlvp_val16_unal(&tp, BSSGP_IE_BVCI));
778 from_bvc = gbproxy_bvc_by_bvci(nse, ptp_bvci);
779 if (!from_bvc)
780 goto err_no_bvc;
781 return osmo_fsm_inst_dispatch(from_bvc->fi, BSSGP_BVCFSM_E_RX_UNBLOCK, msg);
782 case BSSGP_PDUT_SUSPEND:
783 case BSSGP_PDUT_RESUME:
784 /* FIXME: Implement TLLI Cache. Every SUSPEND/RESUME we must
785 * take record of the TLLI->BVC mapping so we can map
786 * back from TLLI->BVC when the SUSPEND/RESUME-ACK
787 * arrives. Cache should have a timeout of 1-3 seconds
788 * and the ACK should explicitly delete entries. */
789#if 0
790 /* TODO: Validate the RAI for consistency with the RAI
791 * we expect for any of the BVC within this BSS side NSE */
792 memcpy(ra, TLVP_VAL(&tp, BSSGP_IE_ROUTEING_AREA), sizeof(from_bvc->ra));
Harald Welte8cd74402020-12-04 22:24:47 +0100793 gsm48_parse_ra(&raid, from_bvc->ra);
Harald Welte5687ae62020-12-05 19:59:45 +0100794#endif
Harald Welte9f75c352010-04-30 20:26:32 +0200795 break;
Harald Welte5687ae62020-12-05 19:59:45 +0100796 case BSSGP_PDUT_STATUS:
797 /* FIXME: inspect the erroneous PDU IE (if any) and check
798 * if we can extract a TLLI/RNI to route it to the correct SGSN */
799 break;
800 case BSSGP_PDUT_RAN_INFO:
801 case BSSGP_PDUT_RAN_INFO_REQ:
802 case BSSGP_PDUT_RAN_INFO_ACK:
803 case BSSGP_PDUT_RAN_INFO_ERROR:
804 case BSSGP_PDUT_RAN_INFO_APP_ERROR:
805 /* FIXME: route based in RIM Routing IE */
806 rc = bssgp_tx_status(BSSGP_CAUSE_PDU_INCOMP_FEAT, NULL, msg);
807 break;
808 case BSSGP_PDUT_LLC_DISCARD:
809 case BSSGP_PDUT_FLUSH_LL_ACK:
810 /* route based on BVCI + TLLI */
811 ptp_bvci = ntohs(tlvp_val16_unal(&tp, BSSGP_IE_BVCI));
812 tlli = osmo_load32be(TLVP_VAL(&tp, BSSGP_IE_TLLI));
813 from_bvc = gbproxy_bvc_by_bvci(nse, ptp_bvci);
814 if (!from_bvc)
815 goto err_no_bvc;
816 gbprox_bss2sgsn_tlli(from_bvc->cell, msg, tlli, true);
817 break;
818 default:
819 LOGPNSE(nse, LOGL_ERROR, "Rx %s: Implementation missing\n", pdut_name);
Harald Welte44c48302010-05-03 19:22:32 +0200820 break;
Harald Welte9f75c352010-04-30 20:26:32 +0200821 }
822
Harald Welte5687ae62020-12-05 19:59:45 +0100823 return rc;
Harald Welte8cd74402020-12-04 22:24:47 +0100824err_no_bvc:
Harald Welte5687ae62020-12-05 19:59:45 +0100825 LOGPNSE(nse, LOGL_ERROR, "Rx %s: cannot find BVC for BVCI=%05u\n", pdut_name, ptp_bvci);
826 rate_ctr_inc(&nse->cfg->ctrg->ctr[GBPROX_GLOB_CTR_INV_NSEI]);
Jacob Erlbeck17b42b82014-08-29 12:20:15 +0200827 return bssgp_tx_status(BSSGP_CAUSE_INV_MAND_INF, NULL, msg);
Harald Welte9f75c352010-04-30 20:26:32 +0200828}
829
830/* Receive paging request from SGSN, we need to relay to proper BSS */
Harald Welte1aa0ae92020-12-12 15:58:28 +0100831static int gbprox_rx_paging(struct gbproxy_nse *sgsn_nse, struct msgb *msg, const char *pdut_name,
Harald Welte5687ae62020-12-05 19:59:45 +0100832 struct tlv_parsed *tp, uint16_t ns_bvci)
Harald Welte9f75c352010-04-30 20:26:32 +0200833{
Harald Welte1aa0ae92020-12-12 15:58:28 +0100834 struct gbproxy_config *cfg = sgsn_nse->cfg;
Harald Welte5687ae62020-12-05 19:59:45 +0100835 struct gbproxy_bvc *sgsn_bvc, *bss_bvc;
Harald Welte1aa0ae92020-12-12 15:58:28 +0100836 struct gbproxy_nse *nse;
Daniel Willmann5937dfd2020-11-30 17:08:58 +0100837 unsigned int n_nses = 0;
Jacob Erlbeckbc555742013-10-18 14:34:55 +0200838 int errctr = GBPROX_GLOB_CTR_PROTO_ERR_SGSN;
Harald Welte993d3f42020-12-05 10:14:49 +0100839 int i, j;
Harald Welte9f75c352010-04-30 20:26:32 +0200840
Daniel Willmann447ad442020-11-26 18:19:21 +0100841 /* FIXME: Handle paging logic to only page each matching NSE */
842
Harald Welte6c4c6f02020-12-03 15:36:59 +0100843 if (TLVP_PRES_LEN(tp, BSSGP_IE_BVCI, 2)) {
Holger Hans Peter Freytherffd68562012-09-04 20:42:20 +0200844 uint16_t bvci = ntohs(tlvp_val16_unal(tp, BSSGP_IE_BVCI));
Jacob Erlbeckbc555742013-10-18 14:34:55 +0200845 errctr = GBPROX_GLOB_CTR_OTHER_ERR;
Harald Welte1aa0ae92020-12-12 15:58:28 +0100846 sgsn_bvc = gbproxy_bvc_by_bvci(sgsn_nse, bvci);
Harald Welte5687ae62020-12-05 19:59:45 +0100847 if (!sgsn_bvc) {
Harald Welte1aa0ae92020-12-12 15:58:28 +0100848 LOGPNSE(sgsn_nse, LOGL_NOTICE, "Rx %s: unable to route: BVCI=%05u unknown\n",
Harald Welte5687ae62020-12-05 19:59:45 +0100849 pdut_name, bvci);
Harald Welte3375fa42020-11-23 15:14:20 +0100850 rate_ctr_inc(&cfg->ctrg->ctr[errctr]);
851 return -EINVAL;
852 }
Harald Welte5687ae62020-12-05 19:59:45 +0100853 LOGPBVC(sgsn_bvc, LOGL_INFO, "Rx %s: routing by BVCI\n", pdut_name);
854 return gbprox_relay2peer(msg, sgsn_bvc->cell->bss_bvc, ns_bvci);
Harald Welte6c4c6f02020-12-03 15:36:59 +0100855 } else if (TLVP_PRES_LEN(tp, BSSGP_IE_ROUTEING_AREA, 6)) {
Jacob Erlbeck8f503592014-06-02 10:49:00 +0200856 errctr = GBPROX_GLOB_CTR_INV_RAI;
Harald Welte8cd74402020-12-04 22:24:47 +0100857 /* iterate over all bvcs and dispatch the paging to each matching one */
Harald Welte78db2442020-12-05 00:31:07 +0100858 hash_for_each(cfg->bss_nses, i, nse, list) {
Harald Welte5687ae62020-12-05 19:59:45 +0100859 hash_for_each(nse->bvcs, j, bss_bvc, list) {
860 if (!memcmp(bss_bvc->ra, TLVP_VAL(tp, BSSGP_IE_ROUTEING_AREA), 6)) {
861 LOGPNSE(nse, LOGL_INFO, "Rx %s: routing to NSE (RAI match)\n",
862 pdut_name);
863 gbprox_relay2peer(msg, bss_bvc, ns_bvci);
Daniel Willmann5937dfd2020-11-30 17:08:58 +0100864 n_nses++;
865 /* Only send it once to each NSE */
866 break;
Daniel Willmann447ad442020-11-26 18:19:21 +0100867 }
Harald Welte3375fa42020-11-23 15:14:20 +0100868 }
869 }
Harald Welte6c4c6f02020-12-03 15:36:59 +0100870 } else if (TLVP_PRES_LEN(tp, BSSGP_IE_LOCATION_AREA, 5)) {
Jacob Erlbeck8f503592014-06-02 10:49:00 +0200871 errctr = GBPROX_GLOB_CTR_INV_LAI;
Harald Welte8cd74402020-12-04 22:24:47 +0100872 /* iterate over all bvcs and dispatch the paging to each matching one */
Harald Welte78db2442020-12-05 00:31:07 +0100873 hash_for_each(cfg->bss_nses, i, nse, list) {
Harald Welte5687ae62020-12-05 19:59:45 +0100874 hash_for_each(nse->bvcs, j, bss_bvc, list) {
875 if (!memcmp(bss_bvc->ra, TLVP_VAL(tp, BSSGP_IE_LOCATION_AREA), 5)) {
876 LOGPNSE(nse, LOGL_INFO, "Rx %s: routing to NSE (LAI match)\n",
877 pdut_name);
878 gbprox_relay2peer(msg, bss_bvc, ns_bvci);
Daniel Willmann5937dfd2020-11-30 17:08:58 +0100879 n_nses++;
880 /* Only send it once to each NSE */
881 break;
Daniel Willmann447ad442020-11-26 18:19:21 +0100882 }
Harald Welte3375fa42020-11-23 15:14:20 +0100883 }
884 }
Harald Welte6c4c6f02020-12-03 15:36:59 +0100885 } else if (TLVP_PRES_LEN(tp, BSSGP_IE_BSS_AREA_ID, 1)) {
Harald Welte8cd74402020-12-04 22:24:47 +0100886 /* iterate over all bvcs and dispatch the paging to each matching one */
Harald Welte78db2442020-12-05 00:31:07 +0100887 hash_for_each(cfg->bss_nses, i, nse, list) {
Harald Welte5687ae62020-12-05 19:59:45 +0100888 hash_for_each(nse->bvcs, j, bss_bvc, list) {
889 LOGPNSE(nse, LOGL_INFO, "Rx %s:routing to NSE (broadcast)\n", pdut_name);
890 gbprox_relay2peer(msg, bss_bvc, ns_bvci);
Daniel Willmann5937dfd2020-11-30 17:08:58 +0100891 n_nses++;
892 /* Only send it once to each NSE */
893 break;
Daniel Willmann447ad442020-11-26 18:19:21 +0100894 }
Harald Welte8553f552020-11-24 11:31:13 +0100895 }
896 } else {
Harald Welte1aa0ae92020-12-12 15:58:28 +0100897 LOGPNSE(sgsn_nse, LOGL_ERROR, "BSSGP PAGING: unable to route, missing IE\n");
Harald Welte8553f552020-11-24 11:31:13 +0100898 rate_ctr_inc(&cfg->ctrg->ctr[errctr]);
899 }
Harald Welte4cf12e92010-05-13 14:14:56 +0200900
Daniel Willmann5937dfd2020-11-30 17:08:58 +0100901 if (n_nses == 0) {
Harald Welte1aa0ae92020-12-12 15:58:28 +0100902 LOGPNSE(sgsn_nse, LOGL_ERROR, "BSSGP PAGING: unable to route, no destination found\n");
Holger Hans Peter Freythereece6272014-08-04 15:42:36 +0200903 rate_ctr_inc(&cfg->ctrg->ctr[errctr]);
Harald Welte9f75c352010-04-30 20:26:32 +0200904 return -EINVAL;
Harald Welte4cf12e92010-05-13 14:14:56 +0200905 }
Harald Welte3375fa42020-11-23 15:14:20 +0100906 return 0;
Harald Welte9f75c352010-04-30 20:26:32 +0200907}
908
Harald Welte0a4050c2010-05-11 10:01:17 +0200909/* Receive an incoming BVC-RESET message from the SGSN */
Harald Welte5687ae62020-12-05 19:59:45 +0100910static int rx_bvc_reset_from_sgsn(struct gbproxy_nse *nse, struct msgb *msg, struct tlv_parsed *tp,
911 uint16_t ns_bvci)
Harald Welte0a4050c2010-05-11 10:01:17 +0200912{
Harald Welte5687ae62020-12-05 19:59:45 +0100913 uint16_t ptp_bvci = ntohs(tlvp_val16_unal(tp, BSSGP_IE_BVCI));
914 struct gbproxy_bvc *from_bvc;
Harald Welte0a4050c2010-05-11 10:01:17 +0200915
Harald Welte5687ae62020-12-05 19:59:45 +0100916 LOGPNSE(nse, LOGL_INFO, "Rx BVC-RESET (BVCI=%05u)\n", ptp_bvci);
Harald Welte0a4050c2010-05-11 10:01:17 +0200917
Harald Welte5687ae62020-12-05 19:59:45 +0100918 if (ptp_bvci == 0) {
919 from_bvc = gbproxy_bvc_by_bvci(nse, 0);
920 OSMO_ASSERT(from_bvc);
921 osmo_fsm_inst_dispatch(from_bvc->fi, BSSGP_BVCFSM_E_RX_RESET, msg);
922 } else {
923 from_bvc = gbproxy_bvc_by_bvci(nse, ptp_bvci);
924 if (!from_bvc) {
925 LOGPNSE(nse, LOGL_ERROR, "Rx BVC-RESET BVCI=%05u: Cannot find BVC\n", ptp_bvci);
926 rate_ctr_inc(&nse->cfg->ctrg->ctr[GBPROX_GLOB_CTR_INV_BVCI]);
927 return bssgp_tx_status(BSSGP_CAUSE_UNKNOWN_BVCI, &ptp_bvci, msg);
Harald Welte0a4050c2010-05-11 10:01:17 +0200928 }
Harald Welte5687ae62020-12-05 19:59:45 +0100929 osmo_fsm_inst_dispatch(from_bvc->fi, BSSGP_BVCFSM_E_RX_RESET, msg);
Daniel Willmann447ad442020-11-26 18:19:21 +0100930 }
Harald Welte0a4050c2010-05-11 10:01:17 +0200931
932 return 0;
933}
934
Harald Welte9f75c352010-04-30 20:26:32 +0200935/* Receive an incoming signalling message from the SGSN-side NS-VC */
Harald Weltebf698332020-12-07 17:48:11 +0100936static int gbprox_rx_sig_from_sgsn(struct gbproxy_nse *nse, struct msgb *msg, uint16_t ns_bvci)
Harald Welte9f75c352010-04-30 20:26:32 +0200937{
Harald Weltebf698332020-12-07 17:48:11 +0100938 struct bssgp_normal_hdr *bgph = (struct bssgp_normal_hdr *) msgb_bssgph(msg);
Harald Welte9f75c352010-04-30 20:26:32 +0200939 uint8_t pdu_type = bgph->pdu_type;
Harald Welte5687ae62020-12-05 19:59:45 +0100940 const char *pdut_name = osmo_tlv_prot_msg_name(&osmo_pdef_bssgp, bgph->pdu_type);
941 struct gbproxy_config *cfg = nse->cfg;
942 struct gbproxy_bvc *sgsn_bvc;
943 struct tlv_parsed tp;
Jacob Erlbeck4b663ac2014-08-21 15:07:11 +0200944 int data_len;
Harald Welte9f75c352010-04-30 20:26:32 +0200945 uint16_t bvci;
Harald Welte052d8552020-12-06 16:32:01 +0100946 char log_pfx[32];
Harald Welte9f75c352010-04-30 20:26:32 +0200947 int rc = 0;
Jacob Erlbeck1e65b0e2014-08-29 13:32:17 +0200948 int cause;
Harald Welte78db2442020-12-05 00:31:07 +0100949 int i;
Harald Welte9f75c352010-04-30 20:26:32 +0200950
Harald Welte5687ae62020-12-05 19:59:45 +0100951 snprintf(log_pfx, sizeof(log_pfx), "NSE(%05u/SGSN)-BVC(%05u/??)", nse->nsei, ns_bvci);
952
953 LOGP(DGPRS, LOGL_DEBUG, "%s Rx %s\n", log_pfx, pdut_name);
Harald Welte052d8552020-12-06 16:32:01 +0100954
Harald Weltec471d3d2011-02-06 17:13:12 +0100955 if (ns_bvci != 0 && ns_bvci != 1) {
Harald Welte052d8552020-12-06 16:32:01 +0100956 LOGP(DGPRS, LOGL_NOTICE, "%s BVCI=%05u is not signalling\n", log_pfx, ns_bvci);
Harald Weltebf698332020-12-07 17:48:11 +0100957 return bssgp_tx_status(BSSGP_CAUSE_PROTO_ERR_UNSPEC, NULL, msg);
Harald Welte9f75c352010-04-30 20:26:32 +0200958 }
959
Harald Welted651edc2020-12-06 13:35:24 +0100960 if (!(bssgp_pdu_type_flags(pdu_type) & BSSGP_PDUF_SIG)) {
Harald Welte5687ae62020-12-05 19:59:45 +0100961 LOGP(DGPRS, LOGL_NOTICE, "%s %s not allowed in signalling BVC\n", log_pfx, pdut_name);
Harald Weltebf698332020-12-07 17:48:11 +0100962 return bssgp_tx_status(BSSGP_CAUSE_PROTO_ERR_UNSPEC, NULL, msg);
Harald Welted651edc2020-12-06 13:35:24 +0100963 }
964
965 if (!(bssgp_pdu_type_flags(pdu_type) & BSSGP_PDUF_DL)) {
Harald Welte5687ae62020-12-05 19:59:45 +0100966 LOGP(DGPRS, LOGL_NOTICE, "%s %s not allowed in downlink direction\n", log_pfx, pdut_name);
Harald Weltebf698332020-12-07 17:48:11 +0100967 return bssgp_tx_status(BSSGP_CAUSE_PROTO_ERR_UNSPEC, NULL, msg);
Harald Welte9f75c352010-04-30 20:26:32 +0200968 }
969
Harald Weltebf698332020-12-07 17:48:11 +0100970 data_len = msgb_bssgp_len(msg) - sizeof(*bgph);
Harald Welte052d8552020-12-06 16:32:01 +0100971
972 rc = osmo_tlv_prot_parse(&osmo_pdef_bssgp, &tp, 1, pdu_type, bgph->data, data_len, 0, 0,
973 DGPRS, log_pfx);
974 if (rc < 0) {
975 rc = tx_status_from_tlvp(rc, msg);
Harald Welte052d8552020-12-06 16:32:01 +0100976 rate_ctr_inc(&cfg->ctrg->ctr[GBPROX_GLOB_CTR_PROTO_ERR_SGSN]);
977 return rc;
978 }
Harald Welte5687ae62020-12-05 19:59:45 +0100979 /* hack to get both msg + tlv_parsed passed via osmo_fsm_inst_dispatch */
980 msgb_bcid(msg) = (void *)&tp;
Harald Welte9f75c352010-04-30 20:26:32 +0200981
982 switch (pdu_type) {
Harald Welte0a4050c2010-05-11 10:01:17 +0200983 case BSSGP_PDUT_BVC_RESET:
Harald Welte5687ae62020-12-05 19:59:45 +0100984 /* resolve or create ggbproxy_bvc + handle in BVC-FSM */
985 bvci = ntohs(tlvp_val16_unal(&tp, BSSGP_IE_BVCI));
986 rc = rx_bvc_reset_from_sgsn(nse, msg, &tp, ns_bvci);
Harald Welte0a4050c2010-05-11 10:01:17 +0200987 break;
Harald Welte9f75c352010-04-30 20:26:32 +0200988 case BSSGP_PDUT_BVC_RESET_ACK:
Daniel Willmann15c9da22020-11-03 21:12:42 +0100989 bvci = ntohs(tlvp_val16_unal(&tp, BSSGP_IE_BVCI));
Harald Welte5687ae62020-12-05 19:59:45 +0100990 sgsn_bvc = gbproxy_bvc_by_bvci(nse, bvci);
991 if (!sgsn_bvc)
992 goto err_no_bvc;
993 rc = osmo_fsm_inst_dispatch(sgsn_bvc->fi, BSSGP_BVCFSM_E_RX_RESET_ACK, msg);
994 break;
995 case BSSGP_PDUT_BVC_BLOCK_ACK:
996 bvci = ntohs(tlvp_val16_unal(&tp, BSSGP_IE_BVCI));
997 sgsn_bvc = gbproxy_bvc_by_bvci(nse, bvci);
998 if (!sgsn_bvc)
999 goto err_no_bvc;
1000 rc = osmo_fsm_inst_dispatch(sgsn_bvc->fi, BSSGP_BVCFSM_E_RX_BLOCK_ACK, msg);
1001 break;
1002 case BSSGP_PDUT_BVC_UNBLOCK_ACK:
1003 bvci = ntohs(tlvp_val16_unal(&tp, BSSGP_IE_BVCI));
1004 sgsn_bvc = gbproxy_bvc_by_bvci(nse, bvci);
1005 if (!sgsn_bvc)
1006 goto err_no_bvc;
1007 rc = osmo_fsm_inst_dispatch(sgsn_bvc->fi, BSSGP_BVCFSM_E_RX_UNBLOCK_ACK, msg);
Daniel Willmann15c9da22020-11-03 21:12:42 +01001008 break;
Jacob Erlbeckc1c57d32014-08-28 13:20:39 +02001009 case BSSGP_PDUT_FLUSH_LL:
Harald Welte9f75c352010-04-30 20:26:32 +02001010 /* simple case: BVCI IE is mandatory */
Holger Hans Peter Freytherffd68562012-09-04 20:42:20 +02001011 bvci = ntohs(tlvp_val16_unal(&tp, BSSGP_IE_BVCI));
Harald Welte5687ae62020-12-05 19:59:45 +01001012 sgsn_bvc = gbproxy_bvc_by_bvci(nse, bvci);
1013 if (!sgsn_bvc)
1014 goto err_no_bvc;
1015 if (sgsn_bvc->cell && sgsn_bvc->cell->bss_bvc)
1016 rc = gbprox_relay2peer(msg, sgsn_bvc->cell->bss_bvc, ns_bvci);
Harald Welte9f75c352010-04-30 20:26:32 +02001017 break;
1018 case BSSGP_PDUT_PAGING_PS:
1019 case BSSGP_PDUT_PAGING_CS:
Jacob Erlbeck8f503592014-06-02 10:49:00 +02001020 /* process the paging request (LAI/RAI lookup) */
Harald Welte5687ae62020-12-05 19:59:45 +01001021 rc = gbprox_rx_paging(nse, msg, pdut_name, &tp, ns_bvci);
Harald Welte9f75c352010-04-30 20:26:32 +02001022 break;
1023 case BSSGP_PDUT_STATUS:
Harald Welte0a4050c2010-05-11 10:01:17 +02001024 /* Some exception has occurred */
Jacob Erlbeck1e65b0e2014-08-29 13:32:17 +02001025 cause = *TLVP_VAL(&tp, BSSGP_IE_CAUSE);
Harald Welte5687ae62020-12-05 19:59:45 +01001026 LOGPNSE(nse, LOGL_NOTICE, "Rx STATUS cause=0x%02x(%s) ", cause,
Jacob Erlbeck1e65b0e2014-08-29 13:32:17 +02001027 bssgp_cause_str(cause));
Harald Welte6c4c6f02020-12-03 15:36:59 +01001028 if (TLVP_PRES_LEN(&tp, BSSGP_IE_BVCI, 2)) {
Jacob Erlbeck1e65b0e2014-08-29 13:32:17 +02001029 bvci = ntohs(tlvp_val16_unal(&tp, BSSGP_IE_BVCI));
Daniel Willmann103a7ec2020-12-02 16:08:02 +01001030 LOGPC(DGPRS, LOGL_NOTICE, "BVCI=%05u\n", bvci);
Harald Welte5687ae62020-12-05 19:59:45 +01001031 sgsn_bvc = gbproxy_bvc_by_bvci(nse, bvci);
1032 /* don't send STATUS in response to STATUS if !bvc */
1033 if (sgsn_bvc && sgsn_bvc->cell && sgsn_bvc->cell->bss_bvc)
1034 rc = gbprox_relay2peer(msg, sgsn_bvc->cell->bss_bvc, ns_bvci);
Harald Welte0a4050c2010-05-11 10:01:17 +02001035 } else
1036 LOGPC(DGPRS, LOGL_NOTICE, "\n");
Harald Welte9f75c352010-04-30 20:26:32 +02001037 break;
1038 /* those only exist in the SGSN -> BSS direction */
1039 case BSSGP_PDUT_SUSPEND_ACK:
1040 case BSSGP_PDUT_SUSPEND_NACK:
1041 case BSSGP_PDUT_RESUME_ACK:
1042 case BSSGP_PDUT_RESUME_NACK:
Harald Welte5687ae62020-12-05 19:59:45 +01001043 /* FIXME: handle based on TLLI cache. The RA-ID is not a unique
1044 * criterion, so we have to rely on the TLLI->BVC state created
1045 * while processing the SUSPEND/RESUME in uplink */
1046 /* FIXME: route to SGSN baed on NRI derived from TLLI */
Harald Welte36f98d92011-02-06 13:09:29 +01001047 break;
Harald Welte9f75c352010-04-30 20:26:32 +02001048 case BSSGP_PDUT_SGSN_INVOKE_TRACE:
Harald Weltec8d98ac2020-12-02 20:06:04 +01001049 case BSSGP_PDUT_OVERLOAD:
Harald Welte5687ae62020-12-05 19:59:45 +01001050 LOGPNSE(nse, LOGL_DEBUG, "Rx %s: broadcasting\n", pdut_name);
Harald Welte8cd74402020-12-04 22:24:47 +01001051 /* broadcast to all BSS-side bvcs */
Harald Welte78db2442020-12-05 00:31:07 +01001052 hash_for_each(cfg->bss_nses, i, nse, list) {
Harald Weltec8d98ac2020-12-02 20:06:04 +01001053 gbprox_relay2nse(msg, nse, 0);
1054 }
Harald Welte9f75c352010-04-30 20:26:32 +02001055 break;
Harald Welte5687ae62020-12-05 19:59:45 +01001056 case BSSGP_PDUT_RAN_INFO:
1057 case BSSGP_PDUT_RAN_INFO_REQ:
1058 case BSSGP_PDUT_RAN_INFO_ACK:
1059 case BSSGP_PDUT_RAN_INFO_ERROR:
1060 case BSSGP_PDUT_RAN_INFO_APP_ERROR:
1061 /* FIXME: route based in RIM Routing IE */
Harald Weltebf698332020-12-07 17:48:11 +01001062 rc = bssgp_tx_status(BSSGP_CAUSE_PDU_INCOMP_FEAT, NULL, msg);
Harald Welte5687ae62020-12-05 19:59:45 +01001063 break;
Harald Welte9f75c352010-04-30 20:26:32 +02001064 default:
Harald Welte5687ae62020-12-05 19:59:45 +01001065 LOGPNSE(nse, LOGL_NOTICE, "Rx %s: Not supported\n", pdut_name);
1066 rate_ctr_inc(&cfg->ctrg->ctr[GBPROX_GLOB_CTR_PROTO_ERR_SGSN]);
Harald Weltebf698332020-12-07 17:48:11 +01001067 rc = bssgp_tx_status(BSSGP_CAUSE_PROTO_ERR_UNSPEC, NULL, msg);
Harald Welte9f75c352010-04-30 20:26:32 +02001068 break;
1069 }
1070
1071 return rc;
Harald Welte5687ae62020-12-05 19:59:45 +01001072
Harald Welte8cd74402020-12-04 22:24:47 +01001073err_no_bvc:
Harald Welte5687ae62020-12-05 19:59:45 +01001074 LOGPNSE(nse, LOGL_ERROR, "Rx %s: Cannot find BVC\n", pdut_name);
Holger Hans Peter Freythereece6272014-08-04 15:42:36 +02001075 rate_ctr_inc(&cfg->ctrg-> ctr[GBPROX_GLOB_CTR_INV_RAI]);
Harald Weltebf698332020-12-07 17:48:11 +01001076 return bssgp_tx_status(BSSGP_CAUSE_INV_MAND_INF, NULL, msg);
Harald Welte9f75c352010-04-30 20:26:32 +02001077}
1078
Harald Welte5687ae62020-12-05 19:59:45 +01001079
1080/***********************************************************************
1081 * libosmogb NS/BSSGP integration
1082 ***********************************************************************/
1083
Alexander Couzens82182d02020-09-22 13:21:46 +02001084int gbprox_bssgp_send_cb(void *ctx, struct msgb *msg)
Harald Welte9f75c352010-04-30 20:26:32 +02001085{
Harald Welte672f5c42010-05-03 18:54:58 +02001086 int rc;
Alexander Couzens82182d02020-09-22 13:21:46 +02001087 struct gbproxy_config *cfg = (struct gbproxy_config *) ctx;
1088 struct gprs_ns2_inst *nsi = cfg->nsi;
1089 struct osmo_gprs_ns2_prim nsp = {};
1090
1091 nsp.bvci = msgb_bvci(msg);
1092 nsp.nsei = msgb_nsei(msg);
1093
1094 osmo_prim_init(&nsp.oph, SAP_NS, PRIM_NS_UNIT_DATA, PRIM_OP_REQUEST, msg);
1095 rc = gprs_ns2_recv_prim(nsi, &nsp.oph);
1096
1097 return rc;
1098}
1099
1100/* Main input function for Gb proxy */
1101int gbprox_rcvmsg(void *ctx, struct msgb *msg)
1102{
Alexander Couzens82182d02020-09-22 13:21:46 +02001103 struct gbproxy_config *cfg = (struct gbproxy_config *) ctx;
Harald Welte5687ae62020-12-05 19:59:45 +01001104 uint16_t ns_bvci = msgb_bvci(msg);
1105 uint16_t nsei = msgb_nsei(msg);
1106 struct gbproxy_nse *nse;
Harald Welte9f75c352010-04-30 20:26:32 +02001107
Harald Welted651edc2020-12-06 13:35:24 +01001108 /* ensure minimum length to decode PCU type */
1109 if (msgb_bssgp_len(msg) < sizeof(struct bssgp_normal_hdr))
1110 return bssgp_tx_status(BSSGP_CAUSE_SEM_INCORR_PDU, NULL, msg);
1111
Harald Welte5687ae62020-12-05 19:59:45 +01001112 nse = gbproxy_nse_by_nsei(cfg, nsei, NSE_F_SGSN);
1113 if (nse) {
1114 if (ns_bvci == 0 || ns_bvci == 1)
1115 return gbprox_rx_sig_from_sgsn(nse, msg, ns_bvci);
Harald Welte9f75c352010-04-30 20:26:32 +02001116 else
Harald Welte5687ae62020-12-05 19:59:45 +01001117 return gbprox_rx_ptp_from_sgsn(nse, msg, ns_bvci);
Harald Welte9f75c352010-04-30 20:26:32 +02001118 }
1119
Harald Welte5687ae62020-12-05 19:59:45 +01001120 nse = gbproxy_nse_by_nsei(cfg, nsei, NSE_F_BSS);
1121 if (!nse) {
1122 LOGP(DGPRS, LOGL_NOTICE, "NSE(%05u/BSS) not known -> allocating\n", nsei);
1123 nse = gbproxy_nse_alloc(cfg, nsei, false);
1124 }
1125 if (nse) {
1126 if (ns_bvci == 0 || ns_bvci == 1)
1127 return gbprox_rx_sig_from_bss(nse, msg, ns_bvci);
1128 else
1129 return gbprox_rx_ptp_from_bss(nse, msg, ns_bvci);
1130 }
1131
1132 return 0;
Harald Welte9f75c352010-04-30 20:26:32 +02001133}
Harald Welte85801d02010-05-11 05:49:43 +02001134
Alexander Couzens82182d02020-09-22 13:21:46 +02001135/* TODO: What about handling:
1136 * NS_AFF_CAUSE_VC_FAILURE,
1137 NS_AFF_CAUSE_VC_RECOVERY,
1138 NS_AFF_CAUSE_FAILURE,
1139 NS_AFF_CAUSE_RECOVERY,
1140 osmocom own causes
1141 NS_AFF_CAUSE_SNS_CONFIGURED,
1142 NS_AFF_CAUSE_SNS_FAILURE,
1143 */
Harald Welte1ccbf442010-05-14 11:53:08 +00001144
Alexander Couzens82182d02020-09-22 13:21:46 +02001145void gprs_ns_prim_status_cb(struct gbproxy_config *cfg, struct osmo_gprs_ns2_prim *nsp)
Harald Weltec1c1dd22010-05-11 06:34:24 +02001146{
Harald Welte8cd74402020-12-04 22:24:47 +01001147 /* TODO: bss nsei available/unavailable bssgp_tx_simple_bvci(BSSGP_PDUT_BVC_BLOCK, nsvc->nsei, bvc->bvci, 0);
Alexander Couzens82182d02020-09-22 13:21:46 +02001148 * TODO: sgsn nsei available/unavailable
1149 */
Harald Welte5687ae62020-12-05 19:59:45 +01001150
Harald Welte8cd74402020-12-04 22:24:47 +01001151 struct gbproxy_bvc *bvc;
Harald Welte5687ae62020-12-05 19:59:45 +01001152 struct gbproxy_nse *sgsn_nse;
Harald Weltec1c1dd22010-05-11 06:34:24 +02001153
Alexander Couzens82182d02020-09-22 13:21:46 +02001154 switch (nsp->u.status.cause) {
1155 case NS_AFF_CAUSE_SNS_FAILURE:
1156 case NS_AFF_CAUSE_SNS_CONFIGURED:
1157 break;
Harald Weltec1c1dd22010-05-11 06:34:24 +02001158
Alexander Couzens82182d02020-09-22 13:21:46 +02001159 case NS_AFF_CAUSE_RECOVERY:
1160 LOGP(DPCU, LOGL_NOTICE, "NS-NSE %d became available\n", nsp->nsei);
Harald Welte5687ae62020-12-05 19:59:45 +01001161 sgsn_nse = gbproxy_nse_by_nsei(cfg, nsp->nsei, NSE_F_SGSN);
1162 if (sgsn_nse) {
1163 uint8_t cause = BSSGP_CAUSE_OML_INTERV;
1164 bvc = gbproxy_bvc_by_bvci(sgsn_nse, 0);
1165 if (bvc)
1166 osmo_fsm_inst_dispatch(bvc->fi, BSSGP_BVCFSM_E_REQ_RESET, &cause);
Harald Welte5e106d72011-02-06 16:33:29 +01001167 }
Alexander Couzens82182d02020-09-22 13:21:46 +02001168 break;
1169 case NS_AFF_CAUSE_FAILURE:
Harald Welte5687ae62020-12-05 19:59:45 +01001170#if 0
Harald Welte4bf53ef2020-12-05 17:50:23 +01001171 if (gbproxy_is_sgsn_nsei(cfg, nsp->nsei)) {
Alexander Couzens82182d02020-09-22 13:21:46 +02001172 /* sgsn */
1173 /* TODO: BSVC: block all PtP towards bss */
1174 rate_ctr_inc(&cfg->ctrg->
1175 ctr[GBPROX_GLOB_CTR_RESTART_RESET_SGSN]);
1176 } else {
Daniel Willmann447ad442020-11-26 18:19:21 +01001177 /* bss became unavailable
1178 * TODO: Block all BVC belonging to that NSE */
Harald Welte8cd74402020-12-04 22:24:47 +01001179 bvc = gbproxy_bvc_by_nsei(cfg, nsp->nsei);
1180 if (!bvc) {
Alexander Couzens82182d02020-09-22 13:21:46 +02001181 /* TODO: use primitive name + status cause name */
Harald Welte8cd74402020-12-04 22:24:47 +01001182 LOGP(DGPRS, LOGL_NOTICE, "Received ns2 primitive %d for unknown bvc NSEI=%u\n",
Alexander Couzens82182d02020-09-22 13:21:46 +02001183 nsp->u.status.cause, nsp->nsei);
Harald Welte5e106d72011-02-06 16:33:29 +01001184 break;
1185 }
Alexander Couzens82182d02020-09-22 13:21:46 +02001186
Harald Welte8cd74402020-12-04 22:24:47 +01001187 if (!bvc->blocked)
Alexander Couzens82182d02020-09-22 13:21:46 +02001188 break;
Harald Welte5687ae62020-12-05 19:59:45 +01001189 hash_for_each(cfg->sgsn_nses, _sgsn, sgsn_nse, list) {
1190 bssgp_tx_simple_bvci(BSSGP_PDUT_BVC_BLOCK, sgsn_nse->nsei, bvc->bvci, 0);
1191 }
Harald Weltec1c1dd22010-05-11 06:34:24 +02001192 }
Harald Welte5687ae62020-12-05 19:59:45 +01001193#endif
Alexander Couzens82182d02020-09-22 13:21:46 +02001194 LOGP(DPCU, LOGL_NOTICE, "NS-NSE %d became unavailable\n", nsp->nsei);
1195 break;
1196 default:
Harald Welted97ff682020-11-30 10:55:22 +01001197 LOGP(DPCU, LOGL_NOTICE, "NS: Unknown NS-STATUS.ind cause=%s from NS\n",
1198 gprs_ns2_aff_cause_prim_str(nsp->u.status.cause));
Alexander Couzens82182d02020-09-22 13:21:46 +02001199 break;
Harald Weltec1c1dd22010-05-11 06:34:24 +02001200 }
Alexander Couzens82182d02020-09-22 13:21:46 +02001201}
1202
Alexander Couzens82182d02020-09-22 13:21:46 +02001203/* called by the ns layer */
1204int gprs_ns2_prim_cb(struct osmo_prim_hdr *oph, void *ctx)
1205{
1206 struct osmo_gprs_ns2_prim *nsp;
1207 struct gbproxy_config *cfg = (struct gbproxy_config *) ctx;
Daniel Willmanne8c8ec92020-12-02 19:33:50 +01001208 uintptr_t bvci;
Alexander Couzens82182d02020-09-22 13:21:46 +02001209 int rc = 0;
1210
1211 if (oph->sap != SAP_NS)
1212 return 0;
1213
1214 nsp = container_of(oph, struct osmo_gprs_ns2_prim, oph);
1215
1216 if (oph->operation != PRIM_OP_INDICATION) {
Harald Welted97ff682020-11-30 10:55:22 +01001217 LOGP(DPCU, LOGL_NOTICE, "NS: Unexpected primitive operation %s from NS\n",
1218 get_value_string(osmo_prim_op_names, oph->operation));
Alexander Couzens82182d02020-09-22 13:21:46 +02001219 return 0;
1220 }
1221
1222 switch (oph->primitive) {
1223 case PRIM_NS_UNIT_DATA:
Daniel Willmanne8c8ec92020-12-02 19:33:50 +01001224
Alexander Couzens82182d02020-09-22 13:21:46 +02001225 /* hand the message into the BSSGP implementation */
1226 msgb_bssgph(oph->msg) = oph->msg->l3h;
1227 msgb_bvci(oph->msg) = nsp->bvci;
1228 msgb_nsei(oph->msg) = nsp->nsei;
Daniel Willmanne8c8ec92020-12-02 19:33:50 +01001229 bvci = nsp->bvci | BVC_LOG_CTX_FLAG;
Alexander Couzens82182d02020-09-22 13:21:46 +02001230
Daniel Willmanne8c8ec92020-12-02 19:33:50 +01001231 log_set_context(LOG_CTX_GB_BVC, (void *)bvci);
Alexander Couzens82182d02020-09-22 13:21:46 +02001232 rc = gbprox_rcvmsg(cfg, oph->msg);
Daniel Willmann02f2c342020-11-04 17:32:56 +01001233 msgb_free(oph->msg);
Alexander Couzens82182d02020-09-22 13:21:46 +02001234 break;
1235 case PRIM_NS_STATUS:
1236 gprs_ns_prim_status_cb(cfg, nsp);
1237 break;
1238 default:
Harald Welted97ff682020-11-30 10:55:22 +01001239 LOGP(DPCU, LOGL_NOTICE, "NS: Unknown prim %s %s from NS\n",
1240 gprs_ns2_prim_str(oph->primitive),
1241 get_value_string(osmo_prim_op_names, oph->operation));
Alexander Couzens82182d02020-09-22 13:21:46 +02001242 break;
1243 }
1244
1245 return rc;
Harald Weltec1c1dd22010-05-11 06:34:24 +02001246}
1247
Holger Hans Peter Freythereece6272014-08-04 15:42:36 +02001248void gbprox_reset(struct gbproxy_config *cfg)
Jacob Erlbeck72b401f2013-10-24 12:48:55 +02001249{
Harald Welte78db2442020-12-05 00:31:07 +01001250 struct gbproxy_nse *nse;
1251 struct hlist_node *ntmp;
Harald Welte993d3f42020-12-05 10:14:49 +01001252 int i, j;
Jacob Erlbeck72b401f2013-10-24 12:48:55 +02001253
Harald Welte78db2442020-12-05 00:31:07 +01001254 hash_for_each_safe(cfg->bss_nses, i, ntmp, nse, list) {
Harald Welte993d3f42020-12-05 10:14:49 +01001255 struct gbproxy_bvc *bvc;
1256 struct hlist_node *tmp;
1257 hash_for_each_safe(nse->bvcs, j, tmp, bvc, list)
Harald Welte8cd74402020-12-04 22:24:47 +01001258 gbproxy_bvc_free(bvc);
Daniel Willmann447ad442020-11-26 18:19:21 +01001259
1260 gbproxy_nse_free(nse);
1261 }
Harald Welte5687ae62020-12-05 19:59:45 +01001262 /* FIXME: cells */
1263 /* FIXME: SGSN side BVCs (except signaling) */
Jacob Erlbeck72b401f2013-10-24 12:48:55 +02001264
Holger Hans Peter Freythereece6272014-08-04 15:42:36 +02001265 rate_ctr_group_free(cfg->ctrg);
1266 gbproxy_init_config(cfg);
Jacob Erlbeck72b401f2013-10-24 12:48:55 +02001267}
1268
Holger Hans Peter Freyther18739ea2014-08-04 11:10:09 +02001269int gbproxy_init_config(struct gbproxy_config *cfg)
Jacob Erlbeck4211d792013-10-24 12:48:23 +02001270{
Jacob Erlbeck0d376712014-08-11 19:12:24 +02001271 struct timespec tp;
Jacob Erlbeck9a83d7a2014-09-25 11:17:31 +02001272
Harald Welte78db2442020-12-05 00:31:07 +01001273 hash_init(cfg->bss_nses);
Pau Espin Pedrolb1d1c242018-10-30 17:27:59 +01001274 cfg->ctrg = rate_ctr_group_alloc(tall_sgsn_ctx, &global_ctrg_desc, 0);
Harald Welte26c14652017-07-12 00:25:51 +02001275 if (!cfg->ctrg) {
1276 LOGP(DGPRS, LOGL_ERROR, "Cannot allocate global counter group!\n");
1277 return -1;
1278 }
Pau Espin Pedrol36abead2018-08-17 13:27:20 +02001279 osmo_clock_gettime(CLOCK_REALTIME, &tp);
Harald Weltea54ed462020-12-07 13:12:13 +01001280 osmo_fsm_log_timeouts(true);
Jacob Erlbeck9a83d7a2014-09-25 11:17:31 +02001281
Holger Hans Peter Freyther18739ea2014-08-04 11:10:09 +02001282 return 0;
Jacob Erlbeck4211d792013-10-24 12:48:23 +02001283}