blob: 68f28dbaa655eaee994b1c8b39a1ab786647e0d0 [file] [log] [blame]
Alexander Couzens6a161492020-07-12 13:45:50 +02001/*! \file gprs_ns2_internal.h */
2
3#pragma once
4
5#include <stdbool.h>
6#include <stdint.h>
7
8#include <osmocom/gprs/protocol/gsm_08_16.h>
9#include <osmocom/gprs/gprs_ns2.h>
10
Harald Weltef2949742021-01-20 14:54:14 +010011#define LOGNSE(nse, lvl, fmt, args ...) \
12 LOGP(DLNS, lvl, "NSE(%05u) " fmt, (nse)->nsei, ## args)
13
14#define LOGBIND(bind, lvl, fmt, args ...) \
15 LOGP(DLNS, lvl, "BIND(%s) " fmt, (bind)->name, ## args)
16
17
18#define LOGNSVC(nsvc, lvl, fmt, args ...) \
19 do { \
20 if ((nsvc)->nsvci_is_valid) { \
21 LOGP(DLNS, lvl, "NSE(%05u)-NSVC(%05u) " fmt, \
22 (nsvc)->nse->nsei, (nsvc)->nsvci, ## args); \
23 } else { \
24 LOGP(DLNS, lvl, "NSE(%05u)-NSVC(none) " fmt, \
25 (nsvc)->nse->nsei, ## args); \
26 } \
27 } while (0)
28
Alexander Couzens6a161492020-07-12 13:45:50 +020029struct osmo_fsm_inst;
30struct tlv_parsed;
31struct vty;
32
33struct gprs_ns2_vc_driver;
34struct gprs_ns2_vc_bind;
35
Alexander Couzens90ee9632020-12-07 06:18:32 +010036#define NS_TIMERS_COUNT 10
Harald Welte3a44d172020-12-16 12:02:51 +010037#define NS_TIMERS "(tns-block|tns-block-retries|tns-reset|tns-reset-retries|tns-test|tns-alive|tns-alive-retries|tsns-prov|tsns-size-retries|tsns-config-retries)"
Alexander Couzens6a161492020-07-12 13:45:50 +020038#define NS_TIMERS_HELP \
39 "(un)blocking Timer (Tns-block) timeout\n" \
40 "(un)blocking Timer (Tns-block) number of retries\n" \
41 "Reset Timer (Tns-reset) timeout\n" \
42 "Reset Timer (Tns-reset) number of retries\n" \
43 "Test Timer (Tns-test) timeout\n" \
44 "Alive Timer (Tns-alive) timeout\n" \
45 "Alive Timer (Tns-alive) number of retries\n" \
Alexander Couzens90ee9632020-12-07 06:18:32 +010046 "SNS Provision Timer (Tsns-prov) timeout\n" \
47 "SNS Size number of retries\n" \
48 "SNS Config number of retries\n" \
Alexander Couzens6a161492020-07-12 13:45:50 +020049
50/* Educated guess - LLC user payload is 1500 bytes plus possible headers */
51#define NS_ALLOC_SIZE 3072
52#define NS_ALLOC_HEADROOM 20
53
54enum ns2_timeout {
55 NS_TOUT_TNS_BLOCK,
56 NS_TOUT_TNS_BLOCK_RETRIES,
57 NS_TOUT_TNS_RESET,
58 NS_TOUT_TNS_RESET_RETRIES,
59 NS_TOUT_TNS_TEST,
60 NS_TOUT_TNS_ALIVE,
61 NS_TOUT_TNS_ALIVE_RETRIES,
62 NS_TOUT_TSNS_PROV,
Alexander Couzens90ee9632020-12-07 06:18:32 +010063 NS_TOUT_TSNS_SIZE_RETRIES,
64 NS_TOUT_TSNS_CONFIG_RETRIES,
Alexander Couzens6a161492020-07-12 13:45:50 +020065};
66
67enum nsvc_timer_mode {
68 /* standard timers */
69 NSVC_TIMER_TNS_TEST,
70 NSVC_TIMER_TNS_ALIVE,
71 NSVC_TIMER_TNS_RESET,
72 _NSVC_TIMER_NR,
73};
74
75enum ns_stat {
76 NS_STAT_ALIVE_DELAY,
77};
78
Alexander Couzens6a161492020-07-12 13:45:50 +020079/*! Osmocom NS2 VC create status */
Alexander Couzensba5a9922021-01-25 16:03:23 +010080enum ns2_cs {
81 NS2_CS_CREATED, /*!< A NSVC object has been created */
82 NS2_CS_FOUND, /*!< A NSVC object has been found */
83 NS2_CS_REJECTED, /*!< Rejected and answered message */
84 NS2_CS_SKIPPED, /*!< Skipped message */
85 NS2_CS_ERROR, /*!< Failed to process message */
Alexander Couzens6a161492020-07-12 13:45:50 +020086};
87
Harald Welte3d5eaee2021-01-30 21:33:02 +010088enum ns_ctr {
89 NS_CTR_PKTS_IN,
90 NS_CTR_PKTS_OUT,
91 NS_CTR_BYTES_IN,
92 NS_CTR_BYTES_OUT,
93 NS_CTR_BLOCKED,
94 NS_CTR_DEAD,
95 NS_CTR_REPLACED,
96 NS_CTR_NSEI_CHG,
97 NS_CTR_INV_VCI,
98 NS_CTR_INV_NSEI,
99 NS_CTR_LOST_ALIVE,
100 NS_CTR_LOST_RESET,
101};
Alexander Couzens6a161492020-07-12 13:45:50 +0200102
103#define NSE_S_BLOCKED 0x0001
104#define NSE_S_ALIVE 0x0002
105#define NSE_S_RESET 0x0004
106
107#define NS_DESC_B(st) ((st) & NSE_S_BLOCKED ? "BLOCKED" : "UNBLOCKED")
108#define NS_DESC_A(st) ((st) & NSE_S_ALIVE ? "ALIVE" : "DEAD")
109#define NS_DESC_R(st) ((st) & NSE_S_RESET ? "RESET" : "UNRESET")
110
111/*! An instance of the NS protocol stack */
112struct gprs_ns2_inst {
113 /*! callback to the user for incoming UNIT DATA IND */
114 osmo_prim_cb cb;
115
116 /*! callback data */
117 void *cb_data;
118
119 /*! linked lists of all NSVC binds (e.g. IPv4 bind, but could be also E1 */
120 struct llist_head binding;
121
122 /*! linked lists of all NSVC in this instance */
123 struct llist_head nse;
124
Alexander Couzens6a161492020-07-12 13:45:50 +0200125 uint16_t timeout[NS_TIMERS_COUNT];
126
127 /*! workaround for rate counter until rate counter accepts char str as index */
128 uint32_t rate_ctr_idx;
Harald Welte53a2fde2020-12-01 22:21:14 +0100129
130 /*! libmnl netlink socket for link state monitoring */
131 struct osmo_mnl *linkmon_mnl;
Alexander Couzens6a161492020-07-12 13:45:50 +0200132};
133
Harald Welte53a2fde2020-12-01 22:21:14 +0100134
Alexander Couzens6a161492020-07-12 13:45:50 +0200135/*! Structure repesenting a NSE. The BSS/PCU will only have a single NSE, while SGSN has one for each BSS/PCU */
136struct gprs_ns2_nse {
137 uint16_t nsei;
138
139 /*! entry back to ns2_inst */
140 struct gprs_ns2_inst *nsi;
141
142 /*! llist entry for gprs_ns2_inst */
143 struct llist_head list;
144
145 /*! llist head to hold all nsvc */
146 struct llist_head nsvc;
147
Alexander Couzens8a2a1a42020-12-26 18:00:17 +0100148 /*! count all active NSVCs */
149 int nsvc_count;
Alexander Couzensfc3dd1f2020-11-19 00:41:47 +0100150
Alexander Couzens6a161492020-07-12 13:45:50 +0200151 /*! true if this NSE was created by VTY or pcu socket) */
152 bool persistent;
153
Alexander Couzensda0a2852020-10-01 23:24:07 +0200154 /*! true if this NSE wasn't yet alive at all.
155 * Will be true after the first status ind with NS_AFF_CAUSE_RECOVERY */
156 bool first;
157
Alexander Couzens6a161492020-07-12 13:45:50 +0200158 /*! true if this NSE has at least one alive VC */
159 bool alive;
160
Alexander Couzensaac90162020-11-19 02:44:04 +0100161 /*! which link-layer are we based on? */
162 enum gprs_ns2_ll ll;
163
Alexander Couzensd923cff2020-12-01 01:03:52 +0100164 /*! which dialect does this NSE speaks? */
165 enum gprs_ns2_dialect dialect;
166
Alexander Couzens6a161492020-07-12 13:45:50 +0200167 struct osmo_fsm_inst *bss_sns_fi;
Harald Welte3221f872021-01-18 14:58:51 +0100168
169 /*! sum of all the data weight of _active_ NS-VCs */
170 uint32_t sum_data_weight;
171
172 /*! sum of all the signalling weight of _active_ NS-VCs */
173 uint32_t sum_sig_weight;
Alexander Couzens6a161492020-07-12 13:45:50 +0200174};
175
176/*! Structure representing a single NS-VC */
177struct gprs_ns2_vc {
178 /*! list of NS-VCs within NSE */
179 struct llist_head list;
180
181 /*! list of NS-VCs within bind, bind is the owner! */
182 struct llist_head blist;
183
184 /*! pointer to NS Instance */
185 struct gprs_ns2_nse *nse;
186
187 /*! pointer to NS VL bind. bind own the memory of this instance */
188 struct gprs_ns2_vc_bind *bind;
189
190 /*! true if this NS was created by VTY or pcu socket) */
191 bool persistent;
192
193 /*! uniquely identifies NS-VC if VC contains nsvci */
194 uint16_t nsvci;
195
196 /*! signalling weight. 0 = don't use for signalling (BVCI == 0)*/
197 uint8_t sig_weight;
198
Alexander Couzensfc3dd1f2020-11-19 00:41:47 +0100199 /*! signalling packet counter for the load sharing function */
200 uint8_t sig_counter;
201
202 /*! data weight. 0 = don't use for user data (BVCI != 0) */
Alexander Couzens6a161492020-07-12 13:45:50 +0200203 uint8_t data_weight;
204
205 /*! can be used by the bind/driver of the virtual circuit. e.g. ipv4/ipv6/frgre/e1 */
206 void *priv;
207
208 bool nsvci_is_valid;
209 bool sns_only;
210
211 struct rate_ctr_group *ctrg;
212 struct osmo_stat_item_group *statg;
213
Alexander Couzens6a161492020-07-12 13:45:50 +0200214 enum gprs_ns2_vc_mode mode;
215
216 struct osmo_fsm_inst *fi;
217};
218
219/*! Structure repesenting a bind instance. E.g. IPv4 listen port. */
220struct gprs_ns2_vc_bind {
Alexander Couzensaaa55a62020-12-03 06:02:03 +0100221 /*! unique name */
222 const char *name;
Alexander Couzens6a161492020-07-12 13:45:50 +0200223 /*! list entry in nsi */
224 struct llist_head list;
225 /*! list of all VC */
226 struct llist_head nsvc;
227 /*! driver private structure */
228 void *priv;
229 /*! a pointer back to the nsi */
230 struct gprs_ns2_inst *nsi;
231 struct gprs_ns2_vc_driver *driver;
232
Alexander Couzensd923cff2020-12-01 01:03:52 +0100233 bool accept_ipaccess;
234 bool accept_sns;
Alexander Couzens6a161492020-07-12 13:45:50 +0200235
Alexander Couzens1c8785d2020-12-17 06:58:53 +0100236 /*! transfer capability in mbit */
237 int transfer_capability;
238
Alexander Couzensaac90162020-11-19 02:44:04 +0100239 /*! which link-layer are we based on? */
240 enum gprs_ns2_ll ll;
241
Alexander Couzens6a161492020-07-12 13:45:50 +0200242 /*! send a msg over a VC */
243 int (*send_vc)(struct gprs_ns2_vc *nsvc, struct msgb *msg);
244
245 /*! free the vc priv data */
246 void (*free_vc)(struct gprs_ns2_vc *nsvc);
Alexander Couzens6a161492020-07-12 13:45:50 +0200247
Alexander Couzens22f34712020-10-02 02:34:39 +0200248 /*! allow to show information for the vty */
249 void (*dump_vty)(const struct gprs_ns2_vc_bind *bind,
250 struct vty *vty, bool stats);
251};
Alexander Couzens6a161492020-07-12 13:45:50 +0200252
253struct gprs_ns2_vc_driver {
254 const char *name;
255 void *priv;
256 void (*free_bind)(struct gprs_ns2_vc_bind *driver);
257};
258
Alexander Couzensba5a9922021-01-25 16:03:23 +0100259enum ns2_cs ns2_create_vc(struct gprs_ns2_vc_bind *bind,
Alexander Couzens6a161492020-07-12 13:45:50 +0200260 struct msgb *msg,
261 const char *logname,
262 struct msgb **reject,
263 struct gprs_ns2_vc **success);
264
Alexander Couzensffd49d02020-09-24 00:47:17 +0200265int ns2_recv_vc(struct gprs_ns2_vc *nsvc,
Alexander Couzens6a161492020-07-12 13:45:50 +0200266 struct msgb *msg);
267
268struct gprs_ns2_vc *ns2_vc_alloc(struct gprs_ns2_vc_bind *bind,
269 struct gprs_ns2_nse *nse,
Alexander Couzensd923cff2020-12-01 01:03:52 +0100270 bool initiater,
Harald Welte603f4042020-11-29 17:39:19 +0100271 enum gprs_ns2_vc_mode vc_mode,
272 const char *id);
Alexander Couzens6a161492020-07-12 13:45:50 +0200273
Alexander Couzens8dfc24c2021-01-25 16:09:23 +0100274struct msgb *ns2_msgb_alloc(void);
Alexander Couzens6a161492020-07-12 13:45:50 +0200275
Alexander Couzens8dfc24c2021-01-25 16:09:23 +0100276void ns2_sns_write_vty(struct vty *vty, const struct gprs_ns2_nse *nse);
277void ns2_sns_dump_vty(struct vty *vty, const char *prefix, const struct gprs_ns2_nse *nse, bool stats);
Alexander Couzensbf95f0f2020-10-01 22:56:03 +0200278void ns2_prim_status_ind(struct gprs_ns2_nse *nse,
Daniel Willmann15c09a82020-11-03 23:05:43 +0100279 struct gprs_ns2_vc *nsvc,
Alexander Couzensbf95f0f2020-10-01 22:56:03 +0200280 uint16_t bvci,
Alexander Couzens6a161492020-07-12 13:45:50 +0200281 enum gprs_ns2_affecting_cause cause);
282void ns2_nse_notify_alive(struct gprs_ns2_vc *nsvc, bool alive);
283
284/* message */
Alexander Couzens8dfc24c2021-01-25 16:09:23 +0100285int ns2_validate(struct gprs_ns2_vc *nsvc,
286 uint8_t pdu_type,
287 struct msgb *msg,
288 struct tlv_parsed *tp,
289 uint8_t *cause);
Alexander Couzens6a161492020-07-12 13:45:50 +0200290
291/* SNS messages */
292int ns2_tx_sns_ack(struct gprs_ns2_vc *nsvc, uint8_t trans_id, uint8_t *cause,
293 const struct gprs_ns_ie_ip4_elem *ip4_elems,
294 unsigned int num_ip4_elems,
295 const struct gprs_ns_ie_ip6_elem *ip6_elems,
296 unsigned int num_ip6_elems);
297int ns2_tx_sns_config(struct gprs_ns2_vc *nsvc, bool end_flag,
298 const struct gprs_ns_ie_ip4_elem *ip4_elems,
299 unsigned int num_ip4_elems,
300 const struct gprs_ns_ie_ip6_elem *ip6_elems,
301 unsigned int num_ip6_elems);
302int ns2_tx_sns_config_ack(struct gprs_ns2_vc *nsvc, uint8_t *cause);
303int ns2_tx_sns_size(struct gprs_ns2_vc *nsvc, bool reset_flag, uint16_t max_nr_nsvc,
304 int ip4_ep_nr, int ip6_ep_nr);
305int ns2_tx_sns_size_ack(struct gprs_ns2_vc *nsvc, uint8_t *cause);
306
307/* transmit message over a VC */
308int ns2_tx_block(struct gprs_ns2_vc *nsvc, uint8_t cause);
309int ns2_tx_block_ack(struct gprs_ns2_vc *nsvc);
310
311int ns2_tx_reset(struct gprs_ns2_vc *nsvc, uint8_t cause);
312int ns2_tx_reset_ack(struct gprs_ns2_vc *nsvc);
313
314int ns2_tx_unblock(struct gprs_ns2_vc *nsvc);
315int ns2_tx_unblock_ack(struct gprs_ns2_vc *nsvc);
316
317int ns2_tx_alive(struct gprs_ns2_vc *nsvc);
318int ns2_tx_alive_ack(struct gprs_ns2_vc *nsvc);
319
320int ns2_tx_unit_data(struct gprs_ns2_vc *nsvc,
321 uint16_t bvci, uint8_t sducontrol,
322 struct msgb *msg);
323
324int ns2_tx_status(struct gprs_ns2_vc *nsvc, uint8_t cause,
325 uint16_t bvci, struct msgb *orig_msg);
326
327/* driver */
Alexander Couzens8dfc24c2021-01-25 16:09:23 +0100328struct gprs_ns2_vc *ns2_ip_bind_connect(struct gprs_ns2_vc_bind *bind,
329 struct gprs_ns2_nse *nse,
330 const struct osmo_sockaddr *remote);
Alexander Couzense769f522020-12-07 07:37:07 +0100331int ns2_ip_count_bind(struct gprs_ns2_inst *nsi, struct osmo_sockaddr *remote);
332struct gprs_ns2_vc_bind *ns2_ip_get_bind_by_index(struct gprs_ns2_inst *nsi,
333 struct osmo_sockaddr *remote,
334 int index);
Alexander Couzens6a161492020-07-12 13:45:50 +0200335
336/* sns */
Alexander Couzens8dfc24c2021-01-25 16:09:23 +0100337int ns2_sns_rx(struct gprs_ns2_vc *nsvc, struct msgb *msg, struct tlv_parsed *tp);
Alexander Couzens6a161492020-07-12 13:45:50 +0200338struct osmo_fsm_inst *ns2_sns_bss_fsm_alloc(struct gprs_ns2_nse *nse,
339 const char *id);
Alexander Couzens6a161492020-07-12 13:45:50 +0200340void ns2_sns_free_nsvc(struct gprs_ns2_vc *nsvc);
341
342/* vc */
Alexander Couzens8dfc24c2021-01-25 16:09:23 +0100343struct osmo_fsm_inst *ns2_vc_fsm_alloc(struct gprs_ns2_vc *nsvc,
Alexander Couzens6a161492020-07-12 13:45:50 +0200344 const char *id, bool initiate);
Alexander Couzens8dfc24c2021-01-25 16:09:23 +0100345int ns2_vc_fsm_start(struct gprs_ns2_vc *nsvc);
346int ns2_vc_force_unconfigured(struct gprs_ns2_vc *nsvc);
347int ns2_vc_rx(struct gprs_ns2_vc *nsvc, struct msgb *msg, struct tlv_parsed *tp);
348int ns2_vc_is_alive(struct gprs_ns2_vc *nsvc);
349int ns2_vc_is_unblocked(struct gprs_ns2_vc *nsvc);
Alexander Couzens47afc422021-01-17 20:12:46 +0100350int ns2_vc_block(struct gprs_ns2_vc *nsvc);
351int ns2_vc_unblock(struct gprs_ns2_vc *nsvc);
Alexander Couzens6a161492020-07-12 13:45:50 +0200352
Alexander Couzens6a161492020-07-12 13:45:50 +0200353/* nse */
354void ns2_nse_notify_unblocked(struct gprs_ns2_vc *nsvc, bool unblocked);
Alexander Couzens8dfc24c2021-01-25 16:09:23 +0100355enum gprs_ns2_vc_mode ns2_dialect_to_vc_mode(enum gprs_ns2_dialect dialect);
Alexander Couzens1c8785d2020-12-17 06:58:53 +0100356int ns2_count_transfer_cap(struct gprs_ns2_nse *nse,
357 uint16_t bvci);