blob: d12c663693dd02af6e4dfca9342c74194f1f2655 [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
11struct osmo_fsm_inst;
12struct tlv_parsed;
13struct vty;
14
15struct gprs_ns2_vc_driver;
16struct gprs_ns2_vc_bind;
17
18
19
20#define NS_TIMERS_COUNT 8
21#define NS_TIMERS "(tns-block|tns-block-retries|tns-reset|tns-reset-retries|tns-test|tns-alive|tns-alive-retries|tsns-prov)"
22#define NS_TIMERS_HELP \
23 "(un)blocking Timer (Tns-block) timeout\n" \
24 "(un)blocking Timer (Tns-block) number of retries\n" \
25 "Reset Timer (Tns-reset) timeout\n" \
26 "Reset Timer (Tns-reset) number of retries\n" \
27 "Test Timer (Tns-test) timeout\n" \
28 "Alive Timer (Tns-alive) timeout\n" \
29 "Alive Timer (Tns-alive) number of retries\n" \
30 "SNS Provision Timer (Tsns-prov) timeout\n"
31
32/* Educated guess - LLC user payload is 1500 bytes plus possible headers */
33#define NS_ALLOC_SIZE 3072
34#define NS_ALLOC_HEADROOM 20
35
36enum ns2_timeout {
37 NS_TOUT_TNS_BLOCK,
38 NS_TOUT_TNS_BLOCK_RETRIES,
39 NS_TOUT_TNS_RESET,
40 NS_TOUT_TNS_RESET_RETRIES,
41 NS_TOUT_TNS_TEST,
42 NS_TOUT_TNS_ALIVE,
43 NS_TOUT_TNS_ALIVE_RETRIES,
44 NS_TOUT_TSNS_PROV,
45};
46
47enum nsvc_timer_mode {
48 /* standard timers */
49 NSVC_TIMER_TNS_TEST,
50 NSVC_TIMER_TNS_ALIVE,
51 NSVC_TIMER_TNS_RESET,
52 _NSVC_TIMER_NR,
53};
54
55enum ns_stat {
56 NS_STAT_ALIVE_DELAY,
57};
58
Alexander Couzens6a161492020-07-12 13:45:50 +020059/*! Osmocom NS2 VC create status */
60enum gprs_ns2_cs {
61 GPRS_NS2_CS_CREATED, /*!< A NSVC object has been created */
62 GPRS_NS2_CS_FOUND, /*!< A NSVC object has been found */
63 GPRS_NS2_CS_REJECTED, /*!< Rejected and answered message */
64 GPRS_NS2_CS_SKIPPED, /*!< Skipped message */
65 GPRS_NS2_CS_ERROR, /*!< Failed to process message */
66};
67
68
69#define NSE_S_BLOCKED 0x0001
70#define NSE_S_ALIVE 0x0002
71#define NSE_S_RESET 0x0004
72
73#define NS_DESC_B(st) ((st) & NSE_S_BLOCKED ? "BLOCKED" : "UNBLOCKED")
74#define NS_DESC_A(st) ((st) & NSE_S_ALIVE ? "ALIVE" : "DEAD")
75#define NS_DESC_R(st) ((st) & NSE_S_RESET ? "RESET" : "UNRESET")
76
77/*! An instance of the NS protocol stack */
78struct gprs_ns2_inst {
79 /*! callback to the user for incoming UNIT DATA IND */
80 osmo_prim_cb cb;
81
82 /*! callback data */
83 void *cb_data;
84
85 /*! linked lists of all NSVC binds (e.g. IPv4 bind, but could be also E1 */
86 struct llist_head binding;
87
88 /*! linked lists of all NSVC in this instance */
89 struct llist_head nse;
90
91 /*! create dynamic NSE on receiving packages */
92 bool create_nse;
93
94 uint16_t timeout[NS_TIMERS_COUNT];
95
96 /*! workaround for rate counter until rate counter accepts char str as index */
97 uint32_t rate_ctr_idx;
Harald Welte53a2fde2020-12-01 22:21:14 +010098
99 /*! libmnl netlink socket for link state monitoring */
100 struct osmo_mnl *linkmon_mnl;
Alexander Couzens6a161492020-07-12 13:45:50 +0200101};
102
Harald Welte53a2fde2020-12-01 22:21:14 +0100103
Alexander Couzens6a161492020-07-12 13:45:50 +0200104/*! Structure repesenting a NSE. The BSS/PCU will only have a single NSE, while SGSN has one for each BSS/PCU */
105struct gprs_ns2_nse {
106 uint16_t nsei;
107
108 /*! entry back to ns2_inst */
109 struct gprs_ns2_inst *nsi;
110
111 /*! llist entry for gprs_ns2_inst */
112 struct llist_head list;
113
114 /*! llist head to hold all nsvc */
115 struct llist_head nsvc;
116
Alexander Couzensfc3dd1f2020-11-19 00:41:47 +0100117 /*! count all active NSVCs with data capabilities */
118 int nsvc_data_count;
119
Alexander Couzens6a161492020-07-12 13:45:50 +0200120 /*! true if this NSE was created by VTY or pcu socket) */
121 bool persistent;
122
Alexander Couzensda0a2852020-10-01 23:24:07 +0200123 /*! true if this NSE wasn't yet alive at all.
124 * Will be true after the first status ind with NS_AFF_CAUSE_RECOVERY */
125 bool first;
126
Alexander Couzens6a161492020-07-12 13:45:50 +0200127 /*! true if this NSE has at least one alive VC */
128 bool alive;
129
Alexander Couzensaac90162020-11-19 02:44:04 +0100130 /*! which link-layer are we based on? */
131 enum gprs_ns2_ll ll;
132
Alexander Couzensd923cff2020-12-01 01:03:52 +0100133 /*! which dialect does this NSE speaks? */
134 enum gprs_ns2_dialect dialect;
135
Alexander Couzens6a161492020-07-12 13:45:50 +0200136 struct osmo_fsm_inst *bss_sns_fi;
137};
138
139/*! Structure representing a single NS-VC */
140struct gprs_ns2_vc {
141 /*! list of NS-VCs within NSE */
142 struct llist_head list;
143
144 /*! list of NS-VCs within bind, bind is the owner! */
145 struct llist_head blist;
146
147 /*! pointer to NS Instance */
148 struct gprs_ns2_nse *nse;
149
150 /*! pointer to NS VL bind. bind own the memory of this instance */
151 struct gprs_ns2_vc_bind *bind;
152
153 /*! true if this NS was created by VTY or pcu socket) */
154 bool persistent;
155
156 /*! uniquely identifies NS-VC if VC contains nsvci */
157 uint16_t nsvci;
158
159 /*! signalling weight. 0 = don't use for signalling (BVCI == 0)*/
160 uint8_t sig_weight;
161
Alexander Couzensfc3dd1f2020-11-19 00:41:47 +0100162 /*! signalling packet counter for the load sharing function */
163 uint8_t sig_counter;
164
165 /*! data weight. 0 = don't use for user data (BVCI != 0) */
Alexander Couzens6a161492020-07-12 13:45:50 +0200166 uint8_t data_weight;
167
168 /*! can be used by the bind/driver of the virtual circuit. e.g. ipv4/ipv6/frgre/e1 */
169 void *priv;
170
171 bool nsvci_is_valid;
172 bool sns_only;
173
174 struct rate_ctr_group *ctrg;
175 struct osmo_stat_item_group *statg;
176
Alexander Couzens6a161492020-07-12 13:45:50 +0200177 enum gprs_ns2_vc_mode mode;
178
179 struct osmo_fsm_inst *fi;
180};
181
182/*! Structure repesenting a bind instance. E.g. IPv4 listen port. */
183struct gprs_ns2_vc_bind {
Alexander Couzensaaa55a62020-12-03 06:02:03 +0100184 /*! unique name */
185 const char *name;
Alexander Couzens6a161492020-07-12 13:45:50 +0200186 /*! list entry in nsi */
187 struct llist_head list;
188 /*! list of all VC */
189 struct llist_head nsvc;
190 /*! driver private structure */
191 void *priv;
192 /*! a pointer back to the nsi */
193 struct gprs_ns2_inst *nsi;
194 struct gprs_ns2_vc_driver *driver;
195
Alexander Couzensd923cff2020-12-01 01:03:52 +0100196 bool accept_ipaccess;
197 bool accept_sns;
Alexander Couzens6a161492020-07-12 13:45:50 +0200198
Alexander Couzensaac90162020-11-19 02:44:04 +0100199 /*! which link-layer are we based on? */
200 enum gprs_ns2_ll ll;
201
Alexander Couzens6a161492020-07-12 13:45:50 +0200202 /*! send a msg over a VC */
203 int (*send_vc)(struct gprs_ns2_vc *nsvc, struct msgb *msg);
204
205 /*! free the vc priv data */
206 void (*free_vc)(struct gprs_ns2_vc *nsvc);
Alexander Couzens6a161492020-07-12 13:45:50 +0200207
Alexander Couzens22f34712020-10-02 02:34:39 +0200208 /*! allow to show information for the vty */
209 void (*dump_vty)(const struct gprs_ns2_vc_bind *bind,
210 struct vty *vty, bool stats);
211};
Alexander Couzens6a161492020-07-12 13:45:50 +0200212
213struct gprs_ns2_vc_driver {
214 const char *name;
215 void *priv;
216 void (*free_bind)(struct gprs_ns2_vc_bind *driver);
217};
218
219enum gprs_ns2_cs ns2_create_vc(struct gprs_ns2_vc_bind *bind,
220 struct msgb *msg,
221 const char *logname,
222 struct msgb **reject,
223 struct gprs_ns2_vc **success);
224
Alexander Couzensffd49d02020-09-24 00:47:17 +0200225int ns2_recv_vc(struct gprs_ns2_vc *nsvc,
Alexander Couzens6a161492020-07-12 13:45:50 +0200226 struct msgb *msg);
227
228struct gprs_ns2_vc *ns2_vc_alloc(struct gprs_ns2_vc_bind *bind,
229 struct gprs_ns2_nse *nse,
Alexander Couzensd923cff2020-12-01 01:03:52 +0100230 bool initiater,
231 enum gprs_ns2_vc_mode vc_mode);
Alexander Couzens6a161492020-07-12 13:45:50 +0200232
233struct msgb *gprs_ns2_msgb_alloc(void);
234
235void gprs_ns2_sns_dump_vty(struct vty *vty, const struct gprs_ns2_nse *nse, bool stats);
Alexander Couzensbf95f0f2020-10-01 22:56:03 +0200236void ns2_prim_status_ind(struct gprs_ns2_nse *nse,
Daniel Willmann15c09a82020-11-03 23:05:43 +0100237 struct gprs_ns2_vc *nsvc,
Alexander Couzensbf95f0f2020-10-01 22:56:03 +0200238 uint16_t bvci,
Alexander Couzens6a161492020-07-12 13:45:50 +0200239 enum gprs_ns2_affecting_cause cause);
240void ns2_nse_notify_alive(struct gprs_ns2_vc *nsvc, bool alive);
241
242/* message */
243int gprs_ns2_validate(struct gprs_ns2_vc *nsvc,
244 uint8_t pdu_type,
245 struct msgb *msg,
246 struct tlv_parsed *tp,
247 uint8_t *cause);
248
249/* SNS messages */
250int ns2_tx_sns_ack(struct gprs_ns2_vc *nsvc, uint8_t trans_id, uint8_t *cause,
251 const struct gprs_ns_ie_ip4_elem *ip4_elems,
252 unsigned int num_ip4_elems,
253 const struct gprs_ns_ie_ip6_elem *ip6_elems,
254 unsigned int num_ip6_elems);
255int ns2_tx_sns_config(struct gprs_ns2_vc *nsvc, bool end_flag,
256 const struct gprs_ns_ie_ip4_elem *ip4_elems,
257 unsigned int num_ip4_elems,
258 const struct gprs_ns_ie_ip6_elem *ip6_elems,
259 unsigned int num_ip6_elems);
260int ns2_tx_sns_config_ack(struct gprs_ns2_vc *nsvc, uint8_t *cause);
261int ns2_tx_sns_size(struct gprs_ns2_vc *nsvc, bool reset_flag, uint16_t max_nr_nsvc,
262 int ip4_ep_nr, int ip6_ep_nr);
263int ns2_tx_sns_size_ack(struct gprs_ns2_vc *nsvc, uint8_t *cause);
264
265/* transmit message over a VC */
266int ns2_tx_block(struct gprs_ns2_vc *nsvc, uint8_t cause);
267int ns2_tx_block_ack(struct gprs_ns2_vc *nsvc);
268
269int ns2_tx_reset(struct gprs_ns2_vc *nsvc, uint8_t cause);
270int ns2_tx_reset_ack(struct gprs_ns2_vc *nsvc);
271
272int ns2_tx_unblock(struct gprs_ns2_vc *nsvc);
273int ns2_tx_unblock_ack(struct gprs_ns2_vc *nsvc);
274
275int ns2_tx_alive(struct gprs_ns2_vc *nsvc);
276int ns2_tx_alive_ack(struct gprs_ns2_vc *nsvc);
277
278int ns2_tx_unit_data(struct gprs_ns2_vc *nsvc,
279 uint16_t bvci, uint8_t sducontrol,
280 struct msgb *msg);
281
282int ns2_tx_status(struct gprs_ns2_vc *nsvc, uint8_t cause,
283 uint16_t bvci, struct msgb *orig_msg);
284
285/* driver */
286struct gprs_ns2_vc *gprs_ns2_ip_bind_connect(struct gprs_ns2_vc_bind *bind,
287 struct gprs_ns2_nse *nse,
Vadim Yanitskiya07f25e2020-10-09 21:47:01 +0700288 const struct osmo_sockaddr *remote);
Alexander Couzense769f522020-12-07 07:37:07 +0100289int ns2_ip_count_bind(struct gprs_ns2_inst *nsi, struct osmo_sockaddr *remote);
290struct gprs_ns2_vc_bind *ns2_ip_get_bind_by_index(struct gprs_ns2_inst *nsi,
291 struct osmo_sockaddr *remote,
292 int index);
Alexander Couzens6a161492020-07-12 13:45:50 +0200293
294/* sns */
295int gprs_ns2_sns_rx(struct gprs_ns2_vc *nsvc, struct msgb *msg, struct tlv_parsed *tp);
296struct osmo_fsm_inst *ns2_sns_bss_fsm_alloc(struct gprs_ns2_nse *nse,
297 const char *id);
Alexander Couzens6a161492020-07-12 13:45:50 +0200298void ns2_sns_free_nsvc(struct gprs_ns2_vc *nsvc);
299
300/* vc */
301struct osmo_fsm_inst *gprs_ns2_vc_fsm_alloc(struct gprs_ns2_vc *nsvc,
302 const char *id, bool initiate);
303int gprs_ns2_vc_fsm_start(struct gprs_ns2_vc *nsvc);
Daniel Willmanned0c9822020-11-18 14:08:07 +0100304int gprs_ns2_vc_force_unconfigured(struct gprs_ns2_vc *nsvc);
Alexander Couzens6a161492020-07-12 13:45:50 +0200305int gprs_ns2_vc_rx(struct gprs_ns2_vc *nsvc, struct msgb *msg, struct tlv_parsed *tp);
306int gprs_ns2_vc_is_alive(struct gprs_ns2_vc *nsvc);
307int gprs_ns2_vc_is_unblocked(struct gprs_ns2_vc *nsvc);
308
Alexander Couzens6a161492020-07-12 13:45:50 +0200309/* nse */
310void ns2_nse_notify_unblocked(struct gprs_ns2_vc *nsvc, bool unblocked);
Alexander Couzensd923cff2020-12-01 01:03:52 +0100311enum gprs_ns2_vc_mode gprs_ns2_dialect_to_vc_mode(enum gprs_ns2_dialect dialect);