blob: ac03a11344022fea9051cd5eda938723db15cd91 [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 Welted2fef952020-12-05 00:31:07 +01007#include <osmocom/core/hashtable.h>
Neels Hofmeyr6179f0c2018-02-21 00:39:36 +01008#include <osmocom/gsm/gsm23003.h>
Neels Hofmeyr4b4c5862017-09-04 15:13:25 +02009
Alexander Couzens951e1332020-09-22 13:21:46 +020010#include <osmocom/gprs/gprs_ns2.h>
Neels Hofmeyr4b4c5862017-09-04 15:13:25 +020011#include <osmocom/vty/command.h>
12
13#include <sys/types.h>
14#include <regex.h>
Harald Weltebec70412019-03-22 09:44:42 +010015#include <stdbool.h>
Neels Hofmeyr4b4c5862017-09-04 15:13:25 +020016
17#define GBPROXY_INIT_VU_GEN_TX 256
18
Daniel Willmann8f407b12020-12-02 19:33:50 +010019/* BVCI uses 16 bits */
20#define BVC_LOG_CTX_FLAG (1<<17)
21
Neels Hofmeyr4b4c5862017-09-04 15:13:25 +020022struct rate_ctr_group;
23struct gprs_gb_parse_context;
24struct tlv_parsed;
25
26enum gbproxy_global_ctr {
27 GBPROX_GLOB_CTR_INV_BVCI,
28 GBPROX_GLOB_CTR_INV_LAI,
29 GBPROX_GLOB_CTR_INV_RAI,
30 GBPROX_GLOB_CTR_INV_NSEI,
31 GBPROX_GLOB_CTR_PROTO_ERR_BSS,
32 GBPROX_GLOB_CTR_PROTO_ERR_SGSN,
33 GBPROX_GLOB_CTR_NOT_SUPPORTED_BSS,
34 GBPROX_GLOB_CTR_NOT_SUPPORTED_SGSN,
35 GBPROX_GLOB_CTR_RESTART_RESET_SGSN,
36 GBPROX_GLOB_CTR_TX_ERR_SGSN,
37 GBPROX_GLOB_CTR_OTHER_ERR,
Neels Hofmeyr4b4c5862017-09-04 15:13:25 +020038};
39
Harald Welte560bdb32020-12-04 22:24:47 +010040enum gbproxy_bvc_ctr {
Neels Hofmeyr4b4c5862017-09-04 15:13:25 +020041 GBPROX_PEER_CTR_BLOCKED,
42 GBPROX_PEER_CTR_UNBLOCKED,
43 GBPROX_PEER_CTR_DROPPED,
44 GBPROX_PEER_CTR_INV_NSEI,
45 GBPROX_PEER_CTR_TX_ERR,
Neels Hofmeyr4b4c5862017-09-04 15:13:25 +020046 GBPROX_PEER_CTR_LAST,
47};
48
Harald Welte4a8769a2019-03-22 08:26:45 +010049/* global gb-proxy configuration */
Neels Hofmeyr4b4c5862017-09-04 15:13:25 +020050struct gbproxy_config {
51 /* parsed from config file */
52 uint16_t nsip_sgsn_nsei;
53
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 Welte2b7b1bb2020-12-04 23:58:20 +010057 /* Linked list of all BSS side Gb peers */
Harald Welted2fef952020-12-05 00:31:07 +010058 DECLARE_HASHTABLE(bss_nses, 8);
Neels Hofmeyr4b4c5862017-09-04 15:13:25 +020059
60 /* Counter */
61 struct rate_ctr_group *ctrg;
Neels Hofmeyr4b4c5862017-09-04 15:13:25 +020062};
63
Daniel Willmanne50550e2020-11-26 18:19:21 +010064/* One BVC inside an NSE */
Harald Welte560bdb32020-12-04 22:24:47 +010065struct gbproxy_bvc {
66 /* linked to gbproxy_nse.bvcs */
Harald Welte8b4c7942020-12-05 10:14:49 +010067 struct hlist_node list;
Neels Hofmeyr4b4c5862017-09-04 15:13:25 +020068
Harald Welte560bdb32020-12-04 22:24:47 +010069 /* The NSE this BVC belongs to */
Daniel Willmanne50550e2020-11-26 18:19:21 +010070 struct gbproxy_nse *nse;
Neels Hofmeyr4b4c5862017-09-04 15:13:25 +020071
Harald Welte560bdb32020-12-04 22:24:47 +010072 /* PTP BVCI of this BVC */
Neels Hofmeyr4b4c5862017-09-04 15:13:25 +020073 uint16_t bvci;
Neels Hofmeyr4b4c5862017-09-04 15:13:25 +020074
Harald Welte560bdb32020-12-04 22:24:47 +010075 /* Routing Area that this BVC is part of (raw 04.08 encoding) */
Neels Hofmeyr4b4c5862017-09-04 15:13:25 +020076 uint8_t ra[6];
77
Daniel Willmanne50550e2020-11-26 18:19:21 +010078 /* true if this BVC is blocked */
79 bool blocked;
80
Neels Hofmeyr4b4c5862017-09-04 15:13:25 +020081 /* Counter */
82 struct rate_ctr_group *ctrg;
Neels Hofmeyr4b4c5862017-09-04 15:13:25 +020083};
84
Harald Welte560bdb32020-12-04 22:24:47 +010085/* one NS Entity that we interact with (BSS/PCU) */
Daniel Willmanne50550e2020-11-26 18:19:21 +010086struct gbproxy_nse {
Harald Welte2b7b1bb2020-12-04 23:58:20 +010087 /* linked to gbproxy_config.bss_nses */
Harald Welted2fef952020-12-05 00:31:07 +010088 struct hlist_node list;
Daniel Willmanne50550e2020-11-26 18:19:21 +010089
90 /* point back to the config */
91 struct gbproxy_config *cfg;
92
Harald Welte560bdb32020-12-04 22:24:47 +010093 /* NSEI of the NSE */
Daniel Willmanne50550e2020-11-26 18:19:21 +010094 uint16_t nsei;
95
96 /* List of all BVCs in this NSE */
Harald Welte8b4c7942020-12-05 10:14:49 +010097 DECLARE_HASHTABLE(bvcs, 10);
Daniel Willmanne50550e2020-11-26 18:19:21 +010098};
99
Daniel Willmann066c4cb2020-12-01 16:36:29 +0100100/* Convenience logging macros for NSE/BVC */
101#define LOGPNSE_CAT(NSE, SUBSYS, LEVEL, FMT, ARGS...) \
102 LOGP(SUBSYS, LEVEL, "NSE(%05u/BSS) " FMT, (NSE)->nsei, ## ARGS)
103#define LOGPNSE(NSE, LEVEL, FMT, ARGS...) \
104 LOGPNSE_CAT(NSE, DGPRS, LEVEL, FMT, ## ARGS)
105
106#define LOGPBVC_CAT(BVC, SUBSYS, LEVEL, FMT, ARGS...) \
107 LOGP(SUBSYS, LEVEL, "NSE(%05u/BSS)-BVC(%05u/%s) " FMT, (BVC)->nse->nsei, (BVC)->bvci, \
108 (BVC)->blocked ? "BLOCKED" : "UNBLOCKED", ## ARGS)
109#define LOGPBVC(BVC, LEVEL, FMT, ARGS...) \
110 LOGPBVC_CAT(BVC, DGPRS, LEVEL, FMT, ## ARGS)
Neels Hofmeyr4b4c5862017-09-04 15:13:25 +0200111
112/* gb_proxy_vty .c */
113
114int gbproxy_vty_init(void);
115int gbproxy_parse_config(const char *config_file, struct gbproxy_config *cfg);
116
Daniel Willmann13404b72018-06-01 07:21:20 +0200117/* gb_proxy_ctrl.c */
118int gb_ctrl_cmds_install(void);
119
Neels Hofmeyr4b4c5862017-09-04 15:13:25 +0200120
121/* gb_proxy.c */
122int gbproxy_init_config(struct gbproxy_config *cfg);
123
124/* Main input function for Gb proxy */
Alexander Couzens951e1332020-09-22 13:21:46 +0200125int gbprox_rcvmsg(void *ctx, struct msgb *msg);
Neels Hofmeyr4b4c5862017-09-04 15:13:25 +0200126
127int gbprox_signal(unsigned int subsys, unsigned int signal,
128 void *handler_data, void *signal_data);
129
Alexander Couzens951e1332020-09-22 13:21:46 +0200130
131int gprs_ns2_prim_cb(struct osmo_prim_hdr *oph, void *ctx);
Neels Hofmeyr4b4c5862017-09-04 15:13:25 +0200132
133void gbprox_reset(struct gbproxy_config *cfg);
134
Neels Hofmeyr4b4c5862017-09-04 15:13:25 +0200135/* Peer handling */
Harald Welte560bdb32020-12-04 22:24:47 +0100136struct gbproxy_bvc *gbproxy_bvc_by_bvci(
Neels Hofmeyr4b4c5862017-09-04 15:13:25 +0200137 struct gbproxy_config *cfg, uint16_t bvci);
Harald Welte560bdb32020-12-04 22:24:47 +0100138struct gbproxy_bvc *gbproxy_bvc_by_nsei(
Neels Hofmeyr4b4c5862017-09-04 15:13:25 +0200139 struct gbproxy_config *cfg, uint16_t nsei);
Harald Welte560bdb32020-12-04 22:24:47 +0100140struct gbproxy_bvc *gbproxy_bvc_by_rai(
Neels Hofmeyr4b4c5862017-09-04 15:13:25 +0200141 struct gbproxy_config *cfg, const uint8_t *ra);
Harald Welte560bdb32020-12-04 22:24:47 +0100142struct gbproxy_bvc *gbproxy_bvc_alloc(struct gbproxy_nse *nse, uint16_t bvci);
143void gbproxy_bvc_free(struct gbproxy_bvc *bvc);
144void gbproxy_bvc_move(struct gbproxy_bvc *bvc, struct gbproxy_nse *nse);
145int gbproxy_cleanup_bvcs(struct gbproxy_config *cfg, uint16_t nsei, uint16_t bvci);
Neels Hofmeyr4b4c5862017-09-04 15:13:25 +0200146
Daniel Willmanne50550e2020-11-26 18:19:21 +0100147/* NSE handling */
148struct gbproxy_nse *gbproxy_nse_alloc(struct gbproxy_config *cfg, uint16_t nsei);
149void gbproxy_nse_free(struct gbproxy_nse *nse);
150struct gbproxy_nse *gbproxy_nse_by_nsei(struct gbproxy_config *cfg, uint16_t nsei);
151struct gbproxy_nse *gbproxy_nse_by_nsei_or_new(struct gbproxy_config *cfg, uint16_t nsei);
152
Neels Hofmeyr4b4c5862017-09-04 15:13:25 +0200153#endif