blob: 8892cf4dfd0871fb85595f97362319176c786e74 [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>
Neels Hofmeyr4b4c5862017-09-04 15:13:25 +020010
Alexander Couzens951e1332020-09-22 13:21:46 +020011#include <osmocom/gprs/gprs_ns2.h>
Neels Hofmeyr4b4c5862017-09-04 15:13:25 +020012#include <osmocom/vty/command.h>
13
14#include <sys/types.h>
15#include <regex.h>
Harald Weltebec70412019-03-22 09:44:42 +010016#include <stdbool.h>
Neels Hofmeyr4b4c5862017-09-04 15:13:25 +020017
18#define GBPROXY_INIT_VU_GEN_TX 256
19
Daniel Willmann8f407b12020-12-02 19:33:50 +010020/* BVCI uses 16 bits */
21#define BVC_LOG_CTX_FLAG (1<<17)
22
Neels Hofmeyr4b4c5862017-09-04 15:13:25 +020023struct rate_ctr_group;
24struct gprs_gb_parse_context;
25struct tlv_parsed;
26
27enum gbproxy_global_ctr {
28 GBPROX_GLOB_CTR_INV_BVCI,
29 GBPROX_GLOB_CTR_INV_LAI,
30 GBPROX_GLOB_CTR_INV_RAI,
31 GBPROX_GLOB_CTR_INV_NSEI,
32 GBPROX_GLOB_CTR_PROTO_ERR_BSS,
33 GBPROX_GLOB_CTR_PROTO_ERR_SGSN,
34 GBPROX_GLOB_CTR_NOT_SUPPORTED_BSS,
35 GBPROX_GLOB_CTR_NOT_SUPPORTED_SGSN,
36 GBPROX_GLOB_CTR_RESTART_RESET_SGSN,
37 GBPROX_GLOB_CTR_TX_ERR_SGSN,
38 GBPROX_GLOB_CTR_OTHER_ERR,
Neels Hofmeyr4b4c5862017-09-04 15:13:25 +020039};
40
Harald Welte560bdb32020-12-04 22:24:47 +010041enum gbproxy_bvc_ctr {
Neels Hofmeyr4b4c5862017-09-04 15:13:25 +020042 GBPROX_PEER_CTR_BLOCKED,
43 GBPROX_PEER_CTR_UNBLOCKED,
44 GBPROX_PEER_CTR_DROPPED,
45 GBPROX_PEER_CTR_INV_NSEI,
46 GBPROX_PEER_CTR_TX_ERR,
Neels Hofmeyr4b4c5862017-09-04 15:13:25 +020047 GBPROX_PEER_CTR_LAST,
48};
49
Harald Welte4a8769a2019-03-22 08:26:45 +010050/* global gb-proxy configuration */
Neels Hofmeyr4b4c5862017-09-04 15:13:25 +020051struct gbproxy_config {
Harald Welte4a8769a2019-03-22 08:26:45 +010052 /* NS instance of libosmogb */
Alexander Couzens951e1332020-09-22 13:21:46 +020053 struct gprs_ns2_inst *nsi;
Neels Hofmeyr4b4c5862017-09-04 15:13:25 +020054
Harald Welte2b7b1bb2020-12-04 23:58:20 +010055 /* Linked list of all BSS side Gb peers */
Harald Welted2fef952020-12-05 00:31:07 +010056 DECLARE_HASHTABLE(bss_nses, 8);
Neels Hofmeyr4b4c5862017-09-04 15:13:25 +020057
Harald Weltee5209642020-12-05 19:59:45 +010058 /* hash table of all SGSN-side Gb peers */
59 DECLARE_HASHTABLE(sgsn_nses, 8);
60
61 /* hash table of all gbproxy_cell */
62 DECLARE_HASHTABLE(cells, 8);
63
Neels Hofmeyr4b4c5862017-09-04 15:13:25 +020064 /* Counter */
65 struct rate_ctr_group *ctrg;
Neels Hofmeyr4b4c5862017-09-04 15:13:25 +020066};
67
Harald Weltee5209642020-12-05 19:59:45 +010068/* One Cell within the BSS: Links BSS-side BVC to SGSN-side BVCs */
69struct gbproxy_cell {
70 /* linked to gbproxy_config.cells hashtable */
71 struct hlist_node list;
72
73 /* point back to the config */
74 struct gbproxy_config *cfg;
75
76 /* BVCI of PTP BVCs associated to this cell */
77 uint16_t bvci;
78
79 /* Routing Area that this BVC is part of (raw 04.08 encoding) */
80 uint8_t ra[6];
81
82 /* pointer to the BSS-side BVC */
83 struct gbproxy_bvc *bss_bvc;
84
85 /* pointers to SGSN-side BVC (one for each pool member) */
86 struct gbproxy_bvc *sgsn_bvc[16];
87};
88
Daniel Willmanne50550e2020-11-26 18:19:21 +010089/* One BVC inside an NSE */
Harald Welte560bdb32020-12-04 22:24:47 +010090struct gbproxy_bvc {
91 /* linked to gbproxy_nse.bvcs */
Harald Welte8b4c7942020-12-05 10:14:49 +010092 struct hlist_node list;
Neels Hofmeyr4b4c5862017-09-04 15:13:25 +020093
Harald Welte560bdb32020-12-04 22:24:47 +010094 /* The NSE this BVC belongs to */
Daniel Willmanne50550e2020-11-26 18:19:21 +010095 struct gbproxy_nse *nse;
Neels Hofmeyr4b4c5862017-09-04 15:13:25 +020096
Harald Welte560bdb32020-12-04 22:24:47 +010097 /* PTP BVCI of this BVC */
Neels Hofmeyr4b4c5862017-09-04 15:13:25 +020098 uint16_t bvci;
Neels Hofmeyr4b4c5862017-09-04 15:13:25 +020099
Harald Welte560bdb32020-12-04 22:24:47 +0100100 /* Routing Area that this BVC is part of (raw 04.08 encoding) */
Neels Hofmeyr4b4c5862017-09-04 15:13:25 +0200101 uint8_t ra[6];
102
103 /* Counter */
104 struct rate_ctr_group *ctrg;
Harald Weltee5209642020-12-05 19:59:45 +0100105
106 /* the cell to which this BVC belongs */
107 struct gbproxy_cell *cell;
108
109 /* per-BVC FSM instance */
110 struct osmo_fsm_inst *fi;
Neels Hofmeyr4b4c5862017-09-04 15:13:25 +0200111};
112
Harald Welte560bdb32020-12-04 22:24:47 +0100113/* one NS Entity that we interact with (BSS/PCU) */
Daniel Willmanne50550e2020-11-26 18:19:21 +0100114struct gbproxy_nse {
Harald Welte2b7b1bb2020-12-04 23:58:20 +0100115 /* linked to gbproxy_config.bss_nses */
Harald Welted2fef952020-12-05 00:31:07 +0100116 struct hlist_node list;
Daniel Willmanne50550e2020-11-26 18:19:21 +0100117
118 /* point back to the config */
119 struct gbproxy_config *cfg;
120
Harald Welte560bdb32020-12-04 22:24:47 +0100121 /* NSEI of the NSE */
Daniel Willmanne50550e2020-11-26 18:19:21 +0100122 uint16_t nsei;
123
Harald Weltee5209642020-12-05 19:59:45 +0100124 /* Are we facing towards a SGSN (true) or BSS (false) */
125 bool sgsn_facing;
126
Daniel Willmanne50550e2020-11-26 18:19:21 +0100127 /* List of all BVCs in this NSE */
Harald Welte8b4c7942020-12-05 10:14:49 +0100128 DECLARE_HASHTABLE(bvcs, 10);
Daniel Willmanne50550e2020-11-26 18:19:21 +0100129};
130
Daniel Willmann066c4cb2020-12-01 16:36:29 +0100131/* Convenience logging macros for NSE/BVC */
132#define LOGPNSE_CAT(NSE, SUBSYS, LEVEL, FMT, ARGS...) \
Harald Weltee5209642020-12-05 19:59:45 +0100133 LOGP(SUBSYS, LEVEL, "NSE(%05u/%s) " FMT, (NSE)->nsei, \
134 (NSE)->sgsn_facing ? "SGSN" : "BSS", ## ARGS)
Daniel Willmann066c4cb2020-12-01 16:36:29 +0100135#define LOGPNSE(NSE, LEVEL, FMT, ARGS...) \
136 LOGPNSE_CAT(NSE, DGPRS, LEVEL, FMT, ## ARGS)
137
138#define LOGPBVC_CAT(BVC, SUBSYS, LEVEL, FMT, ARGS...) \
Harald Weltee5209642020-12-05 19:59:45 +0100139 LOGP(SUBSYS, LEVEL, "NSE(%05u/%s)-BVC(%05u/%s) " FMT, (BVC)->nse->nsei, \
140 (BVC)->nse->sgsn_facing ? "SGSN" : "BSS", (BVC)->bvci, \
141 osmo_fsm_inst_state_name((BVC)->fi), ## ARGS)
Daniel Willmann066c4cb2020-12-01 16:36:29 +0100142#define LOGPBVC(BVC, LEVEL, FMT, ARGS...) \
143 LOGPBVC_CAT(BVC, DGPRS, LEVEL, FMT, ## ARGS)
Neels Hofmeyr4b4c5862017-09-04 15:13:25 +0200144
Harald Weltecfc7e8e2020-12-07 12:03:10 +0100145#define LOGPCELL_CAT(CELL, SUBSYS, LEVEL, FMT, ARGS...) \
146 LOGP(SUBSYS, LEVEL, "CELL(%05u) " FMT, (CELL)->bvci, ## ARGS)
147#define LOGPCELL(CELL, LEVEL, FMT, ARGS...) \
148 LOGPCELL_CAT(CELL, DGPRS, LEVEL, FMT, ## ARGS)
149
Neels Hofmeyr4b4c5862017-09-04 15:13:25 +0200150/* gb_proxy_vty .c */
151
152int gbproxy_vty_init(void);
153int gbproxy_parse_config(const char *config_file, struct gbproxy_config *cfg);
154
Daniel Willmann13404b72018-06-01 07:21:20 +0200155/* gb_proxy_ctrl.c */
156int gb_ctrl_cmds_install(void);
157
Neels Hofmeyr4b4c5862017-09-04 15:13:25 +0200158
159/* gb_proxy.c */
160int gbproxy_init_config(struct gbproxy_config *cfg);
161
162/* Main input function for Gb proxy */
Alexander Couzens951e1332020-09-22 13:21:46 +0200163int gbprox_rcvmsg(void *ctx, struct msgb *msg);
Neels Hofmeyr4b4c5862017-09-04 15:13:25 +0200164
165int gbprox_signal(unsigned int subsys, unsigned int signal,
166 void *handler_data, void *signal_data);
167
Alexander Couzens951e1332020-09-22 13:21:46 +0200168
169int gprs_ns2_prim_cb(struct osmo_prim_hdr *oph, void *ctx);
Neels Hofmeyr4b4c5862017-09-04 15:13:25 +0200170
171void gbprox_reset(struct gbproxy_config *cfg);
172
Neels Hofmeyr4b4c5862017-09-04 15:13:25 +0200173/* Peer handling */
Harald Weltee5209642020-12-05 19:59:45 +0100174#define NSE_F_SGSN 0x0001
175#define NSE_F_BSS 0x0002
176
177struct gbproxy_bvc *gbproxy_bvc_by_bvci(struct gbproxy_nse *nse, uint16_t bvci);
Harald Welte560bdb32020-12-04 22:24:47 +0100178struct gbproxy_bvc *gbproxy_bvc_alloc(struct gbproxy_nse *nse, uint16_t bvci);
179void gbproxy_bvc_free(struct gbproxy_bvc *bvc);
Harald Weltee5209642020-12-05 19:59:45 +0100180int gbproxy_cleanup_bvcs(struct gbproxy_nse *nse, uint16_t bvci);
181
182struct gbproxy_cell *gbproxy_cell_alloc(struct gbproxy_config *cfg, uint16_t bvci);
183struct gbproxy_cell *gbproxy_cell_by_bvci(struct gbproxy_config *cfg, uint16_t bvci);
184void gbproxy_cell_free(struct gbproxy_cell *cell);
185bool gbproxy_cell_add_sgsn_bvc(struct gbproxy_cell *cell, struct gbproxy_bvc *bvc);
Neels Hofmeyr4b4c5862017-09-04 15:13:25 +0200186
Daniel Willmanne50550e2020-11-26 18:19:21 +0100187/* NSE handling */
Harald Weltee5209642020-12-05 19:59:45 +0100188struct gbproxy_nse *gbproxy_nse_alloc(struct gbproxy_config *cfg, uint16_t nsei, bool sgsn_facing);
Daniel Willmanne50550e2020-11-26 18:19:21 +0100189void gbproxy_nse_free(struct gbproxy_nse *nse);
Harald Weltee5209642020-12-05 19:59:45 +0100190struct gbproxy_nse *gbproxy_nse_by_nsei(struct gbproxy_config *cfg, uint16_t nsei, uint32_t flags);
191struct gbproxy_nse *gbproxy_nse_by_nsei_or_new(struct gbproxy_config *cfg, uint16_t nsei, bool sgsn_facing);
Daniel Willmanne50550e2020-11-26 18:19:21 +0100192
Neels Hofmeyr4b4c5862017-09-04 15:13:25 +0200193#endif