blob: 04a3c4b495db096fe4936ab1352ee58844fda0d7 [file] [log] [blame]
Neels Hofmeyr4b4c5862017-09-04 15:13:25 +02001#ifndef _GB_PROXY_H
2#define _GB_PROXY_H
3
4
5#include <osmocom/core/msgb.h>
Alexander Couzens951e1332020-09-22 13:21:46 +02006#include <osmocom/core/timer.h>
Harald Weltee5209642020-12-05 19:59:45 +01007#include <osmocom/core/fsm.h>
Harald Welted2fef952020-12-05 00:31:07 +01008#include <osmocom/core/hashtable.h>
Neels Hofmeyr6179f0c2018-02-21 00:39:36 +01009#include <osmocom/gsm/gsm23003.h>
Daniel Willmannee834af2020-12-14 16:22:39 +010010#include <osmocom/gsm/gsm23236.h>
Neels Hofmeyr4b4c5862017-09-04 15:13:25 +020011
Alexander Couzens951e1332020-09-22 13:21:46 +020012#include <osmocom/gprs/gprs_ns2.h>
Neels Hofmeyr4b4c5862017-09-04 15:13:25 +020013#include <osmocom/vty/command.h>
14
15#include <sys/types.h>
16#include <regex.h>
Harald Weltebec70412019-03-22 09:44:42 +010017#include <stdbool.h>
Neels Hofmeyr4b4c5862017-09-04 15:13:25 +020018
19#define GBPROXY_INIT_VU_GEN_TX 256
Daniel Willmannee834af2020-12-14 16:22:39 +010020#define GBPROXY_MAX_NR_SGSN 16
Neels Hofmeyr4b4c5862017-09-04 15:13:25 +020021
Daniel Willmann8f407b12020-12-02 19:33:50 +010022/* BVCI uses 16 bits */
23#define BVC_LOG_CTX_FLAG (1<<17)
24
Neels Hofmeyr4b4c5862017-09-04 15:13:25 +020025struct rate_ctr_group;
26struct gprs_gb_parse_context;
27struct tlv_parsed;
28
29enum gbproxy_global_ctr {
30 GBPROX_GLOB_CTR_INV_BVCI,
31 GBPROX_GLOB_CTR_INV_LAI,
32 GBPROX_GLOB_CTR_INV_RAI,
33 GBPROX_GLOB_CTR_INV_NSEI,
34 GBPROX_GLOB_CTR_PROTO_ERR_BSS,
35 GBPROX_GLOB_CTR_PROTO_ERR_SGSN,
36 GBPROX_GLOB_CTR_NOT_SUPPORTED_BSS,
37 GBPROX_GLOB_CTR_NOT_SUPPORTED_SGSN,
38 GBPROX_GLOB_CTR_RESTART_RESET_SGSN,
39 GBPROX_GLOB_CTR_TX_ERR_SGSN,
40 GBPROX_GLOB_CTR_OTHER_ERR,
Neels Hofmeyr4b4c5862017-09-04 15:13:25 +020041};
42
Harald Welte560bdb32020-12-04 22:24:47 +010043enum gbproxy_bvc_ctr {
Neels Hofmeyr4b4c5862017-09-04 15:13:25 +020044 GBPROX_PEER_CTR_BLOCKED,
45 GBPROX_PEER_CTR_UNBLOCKED,
46 GBPROX_PEER_CTR_DROPPED,
47 GBPROX_PEER_CTR_INV_NSEI,
48 GBPROX_PEER_CTR_TX_ERR,
Neels Hofmeyr4b4c5862017-09-04 15:13:25 +020049 GBPROX_PEER_CTR_LAST,
50};
51
Harald Welte4a8769a2019-03-22 08:26:45 +010052/* global gb-proxy configuration */
Neels Hofmeyr4b4c5862017-09-04 15:13:25 +020053struct gbproxy_config {
Harald Welte4a8769a2019-03-22 08:26:45 +010054 /* NS instance of libosmogb */
Alexander Couzens951e1332020-09-22 13:21:46 +020055 struct gprs_ns2_inst *nsi;
Neels Hofmeyr4b4c5862017-09-04 15:13:25 +020056
Harald Welte209dc9f2020-12-12 19:02:16 +010057 struct {
58 /* percentage of BVC flow control advertised to each SGSN in the pool */
59 uint8_t bvc_fc_ratio;
Daniel Willmannee834af2020-12-14 16:22:39 +010060 /* NRI bitlen and usable NULL-NRI ranges */
61 uint8_t nri_bitlen;
62 struct osmo_nri_ranges *null_nri_ranges;
Daniel Willmannb387c1e2020-12-27 18:14:39 +010063
64 /* Used for testing: If not NULL then this SGSN is returned by
65 * gbproxy_sgsn_by_tlli() */
66 struct gbproxy_sgsn *nsf_override;
Harald Welte209dc9f2020-12-12 19:02:16 +010067 } pool;
68
Daniel Willmannee834af2020-12-14 16:22:39 +010069 /* hash table of all BSS side Gb peers */
Harald Welted2fef952020-12-05 00:31:07 +010070 DECLARE_HASHTABLE(bss_nses, 8);
Neels Hofmeyr4b4c5862017-09-04 15:13:25 +020071
Harald Weltee5209642020-12-05 19:59:45 +010072 /* hash table of all SGSN-side Gb peers */
73 DECLARE_HASHTABLE(sgsn_nses, 8);
74
75 /* hash table of all gbproxy_cell */
76 DECLARE_HASHTABLE(cells, 8);
77
Daniel Willmann77493b12020-12-29 21:13:31 +010078 /* tlli<->nse cache used to map SUSPEND/RESUME (N)ACKS */
79 struct {
80 DECLARE_HASHTABLE(entries, 10);
81 struct osmo_timer_list timer;
82 /* Time in seconds that the entries should be valid */
83 uint8_t timeout;
84 } tlli_cache;
85
Daniel Willmannee834af2020-12-14 16:22:39 +010086 /* List of all SGSNs */
87 struct llist_head sgsns;
88
Neels Hofmeyr4b4c5862017-09-04 15:13:25 +020089 /* Counter */
90 struct rate_ctr_group *ctrg;
Neels Hofmeyr4b4c5862017-09-04 15:13:25 +020091};
92
Harald Weltee5209642020-12-05 19:59:45 +010093/* One Cell within the BSS: Links BSS-side BVC to SGSN-side BVCs */
94struct gbproxy_cell {
95 /* linked to gbproxy_config.cells hashtable */
96 struct hlist_node list;
97
98 /* point back to the config */
99 struct gbproxy_config *cfg;
100
101 /* BVCI of PTP BVCs associated to this cell */
102 uint16_t bvci;
103
104 /* Routing Area that this BVC is part of (raw 04.08 encoding) */
105 uint8_t ra[6];
106
107 /* pointer to the BSS-side BVC */
108 struct gbproxy_bvc *bss_bvc;
109
110 /* pointers to SGSN-side BVC (one for each pool member) */
Daniel Willmannee834af2020-12-14 16:22:39 +0100111 struct gbproxy_bvc *sgsn_bvc[GBPROXY_MAX_NR_SGSN];
Harald Weltee5209642020-12-05 19:59:45 +0100112};
113
Daniel Willmanne50550e2020-11-26 18:19:21 +0100114/* One BVC inside an NSE */
Harald Welte560bdb32020-12-04 22:24:47 +0100115struct gbproxy_bvc {
116 /* linked to gbproxy_nse.bvcs */
Harald Welte8b4c7942020-12-05 10:14:49 +0100117 struct hlist_node list;
Neels Hofmeyr4b4c5862017-09-04 15:13:25 +0200118
Harald Welte560bdb32020-12-04 22:24:47 +0100119 /* The NSE this BVC belongs to */
Daniel Willmanne50550e2020-11-26 18:19:21 +0100120 struct gbproxy_nse *nse;
Neels Hofmeyr4b4c5862017-09-04 15:13:25 +0200121
Harald Welte560bdb32020-12-04 22:24:47 +0100122 /* PTP BVCI of this BVC */
Neels Hofmeyr4b4c5862017-09-04 15:13:25 +0200123 uint16_t bvci;
Neels Hofmeyr4b4c5862017-09-04 15:13:25 +0200124
Harald Welte560bdb32020-12-04 22:24:47 +0100125 /* Routing Area that this BVC is part of (raw 04.08 encoding) */
Neels Hofmeyr4b4c5862017-09-04 15:13:25 +0200126 uint8_t ra[6];
127
128 /* Counter */
129 struct rate_ctr_group *ctrg;
Harald Weltee5209642020-12-05 19:59:45 +0100130
131 /* the cell to which this BVC belongs */
132 struct gbproxy_cell *cell;
133
134 /* per-BVC FSM instance */
135 struct osmo_fsm_inst *fi;
Neels Hofmeyr4b4c5862017-09-04 15:13:25 +0200136};
137
Harald Welte560bdb32020-12-04 22:24:47 +0100138/* one NS Entity that we interact with (BSS/PCU) */
Daniel Willmanne50550e2020-11-26 18:19:21 +0100139struct gbproxy_nse {
Harald Welte2b7b1bb2020-12-04 23:58:20 +0100140 /* linked to gbproxy_config.bss_nses */
Harald Welted2fef952020-12-05 00:31:07 +0100141 struct hlist_node list;
Daniel Willmanne50550e2020-11-26 18:19:21 +0100142
143 /* point back to the config */
144 struct gbproxy_config *cfg;
145
Harald Welte560bdb32020-12-04 22:24:47 +0100146 /* NSEI of the NSE */
Daniel Willmanne50550e2020-11-26 18:19:21 +0100147 uint16_t nsei;
148
Harald Weltee5209642020-12-05 19:59:45 +0100149 /* Are we facing towards a SGSN (true) or BSS (false) */
150 bool sgsn_facing;
151
Daniel Willmanne50550e2020-11-26 18:19:21 +0100152 /* List of all BVCs in this NSE */
Harald Welte8b4c7942020-12-05 10:14:49 +0100153 DECLARE_HASHTABLE(bvcs, 10);
Daniel Willmanne50550e2020-11-26 18:19:21 +0100154};
155
Daniel Willmannee834af2020-12-14 16:22:39 +0100156/* SGSN configuration such as pool options (only for NSE where sgsn_facing == true) */
157struct gbproxy_sgsn {
158 /* linked to gbproxy_config.sgsns */
159 struct llist_head list;
160
161 /* The NSE belonging to this SGSN */
162 struct gbproxy_nse *nse;
163
Daniel Willmanna648f3c2020-12-28 18:07:27 +0100164 /* Name of the SGSN */
165 char *name;
166
Daniel Willmannee834af2020-12-14 16:22:39 +0100167 /* Pool configuration for the sgsn (only valid if sgsn_facing == true) */
168 struct {
169 bool allow_attach;
170 struct osmo_nri_ranges *nri_ranges;
171 } pool;
172};
173
Daniel Willmann77493b12020-12-29 21:13:31 +0100174/* TLLI cache */
175struct gbproxy_tlli_cache_entry {
176 /* linked to gbproxy_config.tlli_cache */
177 struct hlist_node list;
178
179 /* TLLI of the entry */
180 uint32_t tlli;
181 /* When was this entry last seen */
182 time_t tstamp;
183 /* The Cell this TLLI was last seen */
184 struct gbproxy_nse *nse;
185};
186
Daniel Willmann066c4cb2020-12-01 16:36:29 +0100187/* Convenience logging macros for NSE/BVC */
188#define LOGPNSE_CAT(NSE, SUBSYS, LEVEL, FMT, ARGS...) \
Harald Weltee5209642020-12-05 19:59:45 +0100189 LOGP(SUBSYS, LEVEL, "NSE(%05u/%s) " FMT, (NSE)->nsei, \
190 (NSE)->sgsn_facing ? "SGSN" : "BSS", ## ARGS)
Daniel Willmann066c4cb2020-12-01 16:36:29 +0100191#define LOGPNSE(NSE, LEVEL, FMT, ARGS...) \
192 LOGPNSE_CAT(NSE, DGPRS, LEVEL, FMT, ## ARGS)
193
194#define LOGPBVC_CAT(BVC, SUBSYS, LEVEL, FMT, ARGS...) \
Harald Weltee5209642020-12-05 19:59:45 +0100195 LOGP(SUBSYS, LEVEL, "NSE(%05u/%s)-BVC(%05u/%s) " FMT, (BVC)->nse->nsei, \
196 (BVC)->nse->sgsn_facing ? "SGSN" : "BSS", (BVC)->bvci, \
197 osmo_fsm_inst_state_name((BVC)->fi), ## ARGS)
Daniel Willmann066c4cb2020-12-01 16:36:29 +0100198#define LOGPBVC(BVC, LEVEL, FMT, ARGS...) \
199 LOGPBVC_CAT(BVC, DGPRS, LEVEL, FMT, ## ARGS)
Neels Hofmeyr4b4c5862017-09-04 15:13:25 +0200200
Harald Weltecfc7e8e2020-12-07 12:03:10 +0100201#define LOGPCELL_CAT(CELL, SUBSYS, LEVEL, FMT, ARGS...) \
202 LOGP(SUBSYS, LEVEL, "CELL(%05u) " FMT, (CELL)->bvci, ## ARGS)
203#define LOGPCELL(CELL, LEVEL, FMT, ARGS...) \
204 LOGPCELL_CAT(CELL, DGPRS, LEVEL, FMT, ## ARGS)
205
Daniel Willmannee834af2020-12-14 16:22:39 +0100206#define LOGPSGSN_CAT(SGSN, SUBSYS, LEVEL, FMT, ARGS...) \
Daniel Willmanna648f3c2020-12-28 18:07:27 +0100207 LOGP(SUBSYS, LEVEL, "NSE(%05u)-SGSN(%s) " FMT, (SGSN)->nse->nsei, (SGSN)->name, ## ARGS)
Daniel Willmannee834af2020-12-14 16:22:39 +0100208#define LOGPSGSN(SGSN, LEVEL, FMT, ARGS...) \
209 LOGPSGSN_CAT(SGSN, DGPRS, LEVEL, FMT, ## ARGS)
210
Neels Hofmeyr4b4c5862017-09-04 15:13:25 +0200211/* gb_proxy_vty .c */
212
213int gbproxy_vty_init(void);
214int gbproxy_parse_config(const char *config_file, struct gbproxy_config *cfg);
215
Daniel Willmann13404b72018-06-01 07:21:20 +0200216/* gb_proxy_ctrl.c */
217int gb_ctrl_cmds_install(void);
218
Neels Hofmeyr4b4c5862017-09-04 15:13:25 +0200219
220/* gb_proxy.c */
221int gbproxy_init_config(struct gbproxy_config *cfg);
222
223/* Main input function for Gb proxy */
Alexander Couzens951e1332020-09-22 13:21:46 +0200224int gbprox_rcvmsg(void *ctx, struct msgb *msg);
Neels Hofmeyr4b4c5862017-09-04 15:13:25 +0200225
226int gbprox_signal(unsigned int subsys, unsigned int signal,
227 void *handler_data, void *signal_data);
228
Alexander Couzens951e1332020-09-22 13:21:46 +0200229
230int gprs_ns2_prim_cb(struct osmo_prim_hdr *oph, void *ctx);
Neels Hofmeyr4b4c5862017-09-04 15:13:25 +0200231
232void gbprox_reset(struct gbproxy_config *cfg);
233
Neels Hofmeyr4b4c5862017-09-04 15:13:25 +0200234/* Peer handling */
Harald Weltee5209642020-12-05 19:59:45 +0100235#define NSE_F_SGSN 0x0001
236#define NSE_F_BSS 0x0002
237
238struct gbproxy_bvc *gbproxy_bvc_by_bvci(struct gbproxy_nse *nse, uint16_t bvci);
Harald Welte560bdb32020-12-04 22:24:47 +0100239struct gbproxy_bvc *gbproxy_bvc_alloc(struct gbproxy_nse *nse, uint16_t bvci);
240void gbproxy_bvc_free(struct gbproxy_bvc *bvc);
Harald Weltee5209642020-12-05 19:59:45 +0100241int gbproxy_cleanup_bvcs(struct gbproxy_nse *nse, uint16_t bvci);
242
243struct gbproxy_cell *gbproxy_cell_alloc(struct gbproxy_config *cfg, uint16_t bvci);
244struct gbproxy_cell *gbproxy_cell_by_bvci(struct gbproxy_config *cfg, uint16_t bvci);
245void gbproxy_cell_free(struct gbproxy_cell *cell);
246bool gbproxy_cell_add_sgsn_bvc(struct gbproxy_cell *cell, struct gbproxy_bvc *bvc);
Neels Hofmeyr4b4c5862017-09-04 15:13:25 +0200247
Daniel Willmanne50550e2020-11-26 18:19:21 +0100248/* NSE handling */
Harald Weltee5209642020-12-05 19:59:45 +0100249struct gbproxy_nse *gbproxy_nse_alloc(struct gbproxy_config *cfg, uint16_t nsei, bool sgsn_facing);
Daniel Willmanne50550e2020-11-26 18:19:21 +0100250void gbproxy_nse_free(struct gbproxy_nse *nse);
Harald Weltee5209642020-12-05 19:59:45 +0100251struct gbproxy_nse *gbproxy_nse_by_nsei(struct gbproxy_config *cfg, uint16_t nsei, uint32_t flags);
252struct gbproxy_nse *gbproxy_nse_by_nsei_or_new(struct gbproxy_config *cfg, uint16_t nsei, bool sgsn_facing);
Daniel Willmann77493b12020-12-29 21:13:31 +0100253struct gbproxy_nse *gbproxy_nse_by_tlli(struct gbproxy_config *cfg, uint32_t tlli);
254
255/* TLLI cache */
256void gbproxy_tlli_cache_update(struct gbproxy_nse *nse, uint32_t tlli);
257void gbproxy_tlli_cache_remove(struct gbproxy_config *cfg, uint32_t tlli);
258int gbproxy_tlli_cache_cleanup(struct gbproxy_config *cfg);
Daniel Willmanne50550e2020-11-26 18:19:21 +0100259
Daniel Willmannee834af2020-12-14 16:22:39 +0100260/* SGSN handling */
Daniel Willmanna648f3c2020-12-28 18:07:27 +0100261struct gbproxy_sgsn *gbproxy_sgsn_alloc(struct gbproxy_config *cfg, uint16_t nsei, const char *name);
Daniel Willmannee834af2020-12-14 16:22:39 +0100262void gbproxy_sgsn_free(struct gbproxy_sgsn *sgsn);
Daniel Willmanna648f3c2020-12-28 18:07:27 +0100263struct gbproxy_sgsn *gbproxy_sgsn_by_name(struct gbproxy_config *cfg, const char *name);
Daniel Willmannee834af2020-12-14 16:22:39 +0100264struct gbproxy_sgsn *gbproxy_sgsn_by_nsei(struct gbproxy_config *cfg, uint16_t nsei);
265struct gbproxy_sgsn *gbproxy_sgsn_by_nsei_or_new(struct gbproxy_config *cfg, uint16_t nsei);
266struct gbproxy_sgsn *gbproxy_sgsn_by_nri(struct gbproxy_config *cfg, uint16_t nri, bool *null_nri);
Daniel Willmannd4ab1f92020-12-21 18:53:55 +0100267struct gbproxy_sgsn *gbproxy_sgsn_by_tlli(struct gbproxy_config *cfg, struct gbproxy_sgsn *sgsn_avoid,
268 uint32_t tlli);
Daniel Willmannee834af2020-12-14 16:22:39 +0100269
Neels Hofmeyr4b4c5862017-09-04 15:13:25 +0200270#endif