blob: afe6b69dda265c6f4c46b6c0dba09505790904ee [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
Alexander Couzens6cf65d92021-01-18 17:55:35 +01008#include <osmocom/core/logging.h>
Alexander Couzens6a161492020-07-12 13:45:50 +02009#include <osmocom/gprs/protocol/gsm_08_16.h>
10#include <osmocom/gprs/gprs_ns2.h>
11
Harald Weltef2949742021-01-20 14:54:14 +010012#define LOGNSE(nse, lvl, fmt, args ...) \
13 LOGP(DLNS, lvl, "NSE(%05u) " fmt, (nse)->nsei, ## args)
14
15#define LOGBIND(bind, lvl, fmt, args ...) \
16 LOGP(DLNS, lvl, "BIND(%s) " fmt, (bind)->name, ## args)
17
Alexander Couzens6cf65d92021-01-18 17:55:35 +010018#define LOGNSVC_SS(ss, nsvc, lvl, fmt, args ...) \
Harald Weltef2949742021-01-20 14:54:14 +010019 do { \
20 if ((nsvc)->nsvci_is_valid) { \
Alexander Couzens6cf65d92021-01-18 17:55:35 +010021 LOGP(ss, lvl, "NSE(%05u)-NSVC(%05u) " fmt, \
Harald Weltef2949742021-01-20 14:54:14 +010022 (nsvc)->nse->nsei, (nsvc)->nsvci, ## args); \
23 } else { \
Alexander Couzens6cf65d92021-01-18 17:55:35 +010024 LOGP(ss, lvl, "NSE(%05u)-NSVC(none) " fmt, \
Harald Weltef2949742021-01-20 14:54:14 +010025 (nsvc)->nse->nsei, ## args); \
26 } \
27 } while (0)
28
Alexander Couzens6cf65d92021-01-18 17:55:35 +010029#define LOGNSVC(nsvc, lvl, fmt, args ...) \
30 LOGNSVC_SS(DLNS, nsvc, lvl, fmt, ## args)
31
32#define LOG_NS_SIGNAL(nsvc, direction, pdu_type, lvl, fmt, args ...) \
33 LOGNSVC_SS(DLNSSIGNAL, nsvc, lvl, "%s %s" fmt, direction, get_value_string(gprs_ns_pdu_strings, pdu_type), ## args)
34
35#define LOG_NS_DATA(nsvc, direction, pdu_type, lvl, fmt, args ...) \
36 LOGNSVC_SS(DLNSDATA, nsvc, lvl, "%s %s" fmt, direction, get_value_string(gprs_ns_pdu_strings, pdu_type), ## args)
37
38#define LOG_NS_RX_SIGNAL(nsvc, pdu_type) LOG_NS_SIGNAL(nsvc, "Rx", pdu_type, LOGL_INFO, "\n")
39#define LOG_NS_TX_SIGNAL(nsvc, pdu_type) LOG_NS_SIGNAL(nsvc, "Tx", pdu_type, LOGL_INFO, "\n")
40
Daniel Willmannefa64f92021-07-09 20:35:00 +020041#define RATE_CTR_INC_NS(nsvc, ctr) \
42 do { \
43 struct gprs_ns2_vc *_nsvc = (nsvc); \
44 rate_ctr_inc(rate_ctr_group_get_ctr(_nsvc->ctrg, ctr)); \
45 rate_ctr_inc(rate_ctr_group_get_ctr(_nsvc->nse->ctrg, ctr)); \
46 } while (0)
47
48#define RATE_CTR_ADD_NS(nsvc, ctr, val) \
49 do { \
50 struct gprs_ns2_vc *_nsvc = (nsvc); \
51 rate_ctr_add(rate_ctr_group_get_ctr(_nsvc->ctrg, ctr), val); \
52 rate_ctr_add(rate_ctr_group_get_ctr(_nsvc->nse->ctrg, ctr), val); \
53 } while (0)
54
Alexander Couzens6cf65d92021-01-18 17:55:35 +010055
Alexander Couzens6a161492020-07-12 13:45:50 +020056struct osmo_fsm_inst;
57struct tlv_parsed;
58struct vty;
59
60struct gprs_ns2_vc_driver;
61struct gprs_ns2_vc_bind;
62
Alexander Couzens1f3193d2021-06-05 22:08:11 +020063#define NS_TIMERS_COUNT 11
64#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|tsns-procedures-retries)"
Alexander Couzens6a161492020-07-12 13:45:50 +020065#define NS_TIMERS_HELP \
66 "(un)blocking Timer (Tns-block) timeout\n" \
67 "(un)blocking Timer (Tns-block) number of retries\n" \
68 "Reset Timer (Tns-reset) timeout\n" \
69 "Reset Timer (Tns-reset) number of retries\n" \
70 "Test Timer (Tns-test) timeout\n" \
71 "Alive Timer (Tns-alive) timeout\n" \
72 "Alive Timer (Tns-alive) number of retries\n" \
Alexander Couzens90ee9632020-12-07 06:18:32 +010073 "SNS Provision Timer (Tsns-prov) timeout\n" \
74 "SNS Size number of retries\n" \
75 "SNS Config number of retries\n" \
Alexander Couzens1f3193d2021-06-05 22:08:11 +020076 "SNS Procedures number of retries\n" \
Alexander Couzens6a161492020-07-12 13:45:50 +020077
78/* Educated guess - LLC user payload is 1500 bytes plus possible headers */
79#define NS_ALLOC_SIZE 3072
80#define NS_ALLOC_HEADROOM 20
81
82enum ns2_timeout {
83 NS_TOUT_TNS_BLOCK,
84 NS_TOUT_TNS_BLOCK_RETRIES,
85 NS_TOUT_TNS_RESET,
86 NS_TOUT_TNS_RESET_RETRIES,
87 NS_TOUT_TNS_TEST,
88 NS_TOUT_TNS_ALIVE,
89 NS_TOUT_TNS_ALIVE_RETRIES,
90 NS_TOUT_TSNS_PROV,
Alexander Couzens90ee9632020-12-07 06:18:32 +010091 NS_TOUT_TSNS_SIZE_RETRIES,
92 NS_TOUT_TSNS_CONFIG_RETRIES,
Alexander Couzens1f3193d2021-06-05 22:08:11 +020093 NS_TOUT_TSNS_PROCEDURES_RETRIES,
Alexander Couzens6a161492020-07-12 13:45:50 +020094};
95
96enum nsvc_timer_mode {
97 /* standard timers */
98 NSVC_TIMER_TNS_TEST,
99 NSVC_TIMER_TNS_ALIVE,
100 NSVC_TIMER_TNS_RESET,
101 _NSVC_TIMER_NR,
102};
103
Harald Welte76346072021-01-31 11:54:02 +0100104enum ns2_vc_stat {
Alexander Couzens6a161492020-07-12 13:45:50 +0200105 NS_STAT_ALIVE_DELAY,
106};
107
Harald Welte76346072021-01-31 11:54:02 +0100108enum ns2_bind_stat {
109 NS2_BIND_STAT_BACKLOG_LEN,
110};
111
Alexander Couzens6a161492020-07-12 13:45:50 +0200112/*! Osmocom NS2 VC create status */
Alexander Couzensba5a9922021-01-25 16:03:23 +0100113enum ns2_cs {
114 NS2_CS_CREATED, /*!< A NSVC object has been created */
115 NS2_CS_FOUND, /*!< A NSVC object has been found */
116 NS2_CS_REJECTED, /*!< Rejected and answered message */
117 NS2_CS_SKIPPED, /*!< Skipped message */
118 NS2_CS_ERROR, /*!< Failed to process message */
Alexander Couzens6a161492020-07-12 13:45:50 +0200119};
120
Harald Welte3d5eaee2021-01-30 21:33:02 +0100121enum ns_ctr {
122 NS_CTR_PKTS_IN,
123 NS_CTR_PKTS_OUT,
Harald Weltef22ae5a2021-01-30 22:01:28 +0100124 NS_CTR_PKTS_OUT_DROP,
Harald Welte3d5eaee2021-01-30 21:33:02 +0100125 NS_CTR_BYTES_IN,
126 NS_CTR_BYTES_OUT,
Harald Weltef22ae5a2021-01-30 22:01:28 +0100127 NS_CTR_BYTES_OUT_DROP,
Harald Welte3d5eaee2021-01-30 21:33:02 +0100128 NS_CTR_BLOCKED,
Harald Welteb40bf8b2021-01-30 22:43:01 +0100129 NS_CTR_UNBLOCKED,
Harald Welte3d5eaee2021-01-30 21:33:02 +0100130 NS_CTR_DEAD,
131 NS_CTR_REPLACED,
132 NS_CTR_NSEI_CHG,
133 NS_CTR_INV_VCI,
134 NS_CTR_INV_NSEI,
135 NS_CTR_LOST_ALIVE,
136 NS_CTR_LOST_RESET,
137};
Alexander Couzens6a161492020-07-12 13:45:50 +0200138
139#define NSE_S_BLOCKED 0x0001
140#define NSE_S_ALIVE 0x0002
141#define NSE_S_RESET 0x0004
142
143#define NS_DESC_B(st) ((st) & NSE_S_BLOCKED ? "BLOCKED" : "UNBLOCKED")
144#define NS_DESC_A(st) ((st) & NSE_S_ALIVE ? "ALIVE" : "DEAD")
145#define NS_DESC_R(st) ((st) & NSE_S_RESET ? "RESET" : "UNRESET")
146
147/*! An instance of the NS protocol stack */
148struct gprs_ns2_inst {
149 /*! callback to the user for incoming UNIT DATA IND */
150 osmo_prim_cb cb;
151
152 /*! callback data */
153 void *cb_data;
154
155 /*! linked lists of all NSVC binds (e.g. IPv4 bind, but could be also E1 */
156 struct llist_head binding;
157
158 /*! linked lists of all NSVC in this instance */
159 struct llist_head nse;
160
Alexander Couzens6a161492020-07-12 13:45:50 +0200161 uint16_t timeout[NS_TIMERS_COUNT];
162
163 /*! workaround for rate counter until rate counter accepts char str as index */
Harald Welte97ccbf72021-01-31 11:49:19 +0100164 uint32_t nsvc_rate_ctr_idx;
Harald Welte76346072021-01-31 11:54:02 +0100165 uint32_t bind_rate_ctr_idx;
Harald Welte53a2fde2020-12-01 22:21:14 +0100166
167 /*! libmnl netlink socket for link state monitoring */
168 struct osmo_mnl *linkmon_mnl;
Alexander Couzens6a161492020-07-12 13:45:50 +0200169};
170
Harald Welte53a2fde2020-12-01 22:21:14 +0100171
Alexander Couzens6a161492020-07-12 13:45:50 +0200172/*! Structure repesenting a NSE. The BSS/PCU will only have a single NSE, while SGSN has one for each BSS/PCU */
173struct gprs_ns2_nse {
174 uint16_t nsei;
175
176 /*! entry back to ns2_inst */
177 struct gprs_ns2_inst *nsi;
178
179 /*! llist entry for gprs_ns2_inst */
180 struct llist_head list;
181
182 /*! llist head to hold all nsvc */
183 struct llist_head nsvc;
184
Alexander Couzens8a2a1a42020-12-26 18:00:17 +0100185 /*! count all active NSVCs */
186 int nsvc_count;
Alexander Couzensfc3dd1f2020-11-19 00:41:47 +0100187
Alexander Couzens6a161492020-07-12 13:45:50 +0200188 /*! true if this NSE was created by VTY or pcu socket) */
189 bool persistent;
190
Alexander Couzensda0a2852020-10-01 23:24:07 +0200191 /*! true if this NSE wasn't yet alive at all.
192 * Will be true after the first status ind with NS_AFF_CAUSE_RECOVERY */
193 bool first;
194
Alexander Couzens6a161492020-07-12 13:45:50 +0200195 /*! true if this NSE has at least one alive VC */
196 bool alive;
197
Alexander Couzensaac90162020-11-19 02:44:04 +0100198 /*! which link-layer are we based on? */
199 enum gprs_ns2_ll ll;
200
Alexander Couzensd923cff2020-12-01 01:03:52 +0100201 /*! which dialect does this NSE speaks? */
202 enum gprs_ns2_dialect dialect;
203
Alexander Couzens6a161492020-07-12 13:45:50 +0200204 struct osmo_fsm_inst *bss_sns_fi;
Harald Welte3221f872021-01-18 14:58:51 +0100205
Alexander Couzense052c412021-02-15 02:10:57 +0100206 /*! sum of all the data weight of _alive_ NS-VCs */
Harald Welte3221f872021-01-18 14:58:51 +0100207 uint32_t sum_data_weight;
208
Alexander Couzense052c412021-02-15 02:10:57 +0100209 /*! sum of all the signalling weight of _alive_ NS-VCs */
Harald Welte3221f872021-01-18 14:58:51 +0100210 uint32_t sum_sig_weight;
Alexander Couzens4f1128f2021-01-20 17:42:48 +0100211
212 /*! MTU of a NS PDU. This is the lowest MTU of all NSVCs */
213 uint16_t mtu;
Harald Welte5b034fb2021-03-04 14:16:49 +0100214
215 /*! are we implementing the SGSN role? */
216 bool ip_sns_role_sgsn;
Daniel Willmannefa64f92021-07-09 20:35:00 +0200217
218 /*! NSE-wide statistics */
219 struct rate_ctr_group *ctrg;
Alexander Couzens41589a32021-07-19 03:40:02 +0200220
221 /*! recursive anchor */
222 bool freed;
Alexander Couzens6a161492020-07-12 13:45:50 +0200223};
224
225/*! Structure representing a single NS-VC */
226struct gprs_ns2_vc {
227 /*! list of NS-VCs within NSE */
228 struct llist_head list;
229
230 /*! list of NS-VCs within bind, bind is the owner! */
231 struct llist_head blist;
232
233 /*! pointer to NS Instance */
234 struct gprs_ns2_nse *nse;
235
236 /*! pointer to NS VL bind. bind own the memory of this instance */
237 struct gprs_ns2_vc_bind *bind;
238
239 /*! true if this NS was created by VTY or pcu socket) */
240 bool persistent;
241
242 /*! uniquely identifies NS-VC if VC contains nsvci */
243 uint16_t nsvci;
244
245 /*! signalling weight. 0 = don't use for signalling (BVCI == 0)*/
246 uint8_t sig_weight;
247
Alexander Couzensfc3dd1f2020-11-19 00:41:47 +0100248 /*! signalling packet counter for the load sharing function */
249 uint8_t sig_counter;
250
251 /*! data weight. 0 = don't use for user data (BVCI != 0) */
Alexander Couzens6a161492020-07-12 13:45:50 +0200252 uint8_t data_weight;
253
254 /*! can be used by the bind/driver of the virtual circuit. e.g. ipv4/ipv6/frgre/e1 */
255 void *priv;
256
257 bool nsvci_is_valid;
Harald Weltec962a2e2021-03-05 08:09:08 +0100258 /*! should this NS-VC only be used for SNS-SIZE and SNS-CONFIG? */
Alexander Couzens6a161492020-07-12 13:45:50 +0200259 bool sns_only;
260
261 struct rate_ctr_group *ctrg;
262 struct osmo_stat_item_group *statg;
263
Alexander Couzens6a161492020-07-12 13:45:50 +0200264 enum gprs_ns2_vc_mode mode;
265
266 struct osmo_fsm_inst *fi;
Alexander Couzens41589a32021-07-19 03:40:02 +0200267
268 /*! recursive anchor */
269 bool freed;
Alexander Couzens6a161492020-07-12 13:45:50 +0200270};
271
272/*! Structure repesenting a bind instance. E.g. IPv4 listen port. */
273struct gprs_ns2_vc_bind {
Alexander Couzensaaa55a62020-12-03 06:02:03 +0100274 /*! unique name */
275 const char *name;
Alexander Couzens6a161492020-07-12 13:45:50 +0200276 /*! list entry in nsi */
277 struct llist_head list;
278 /*! list of all VC */
279 struct llist_head nsvc;
280 /*! driver private structure */
281 void *priv;
282 /*! a pointer back to the nsi */
283 struct gprs_ns2_inst *nsi;
284 struct gprs_ns2_vc_driver *driver;
285
Alexander Couzensd923cff2020-12-01 01:03:52 +0100286 bool accept_ipaccess;
287 bool accept_sns;
Alexander Couzens6a161492020-07-12 13:45:50 +0200288
Alexander Couzens1c8785d2020-12-17 06:58:53 +0100289 /*! transfer capability in mbit */
290 int transfer_capability;
291
Alexander Couzens4f1128f2021-01-20 17:42:48 +0100292 /*! MTU of a NS PDU on this bind. */
293 uint16_t mtu;
294
Alexander Couzensaac90162020-11-19 02:44:04 +0100295 /*! which link-layer are we based on? */
296 enum gprs_ns2_ll ll;
297
Alexander Couzens6a161492020-07-12 13:45:50 +0200298 /*! send a msg over a VC */
299 int (*send_vc)(struct gprs_ns2_vc *nsvc, struct msgb *msg);
300
301 /*! free the vc priv data */
302 void (*free_vc)(struct gprs_ns2_vc *nsvc);
Alexander Couzens6a161492020-07-12 13:45:50 +0200303
Alexander Couzens22f34712020-10-02 02:34:39 +0200304 /*! allow to show information for the vty */
305 void (*dump_vty)(const struct gprs_ns2_vc_bind *bind,
306 struct vty *vty, bool stats);
Harald Welte76346072021-01-31 11:54:02 +0100307
Alexander Couzensc4704762021-02-08 23:13:12 +0100308 /*! the IP-SNS signalling weight when doing dynamic configuration */
309 uint8_t sns_sig_weight;
310 /*! the IP-SNS data weight when doing dynamic configuration */
311 uint8_t sns_data_weight;
312
Harald Welte76346072021-01-31 11:54:02 +0100313 struct osmo_stat_item_group *statg;
Alexander Couzens41589a32021-07-19 03:40:02 +0200314
315 /*! recursive anchor */
316 bool freed;
Alexander Couzens22f34712020-10-02 02:34:39 +0200317};
Alexander Couzens6a161492020-07-12 13:45:50 +0200318
319struct gprs_ns2_vc_driver {
320 const char *name;
321 void *priv;
322 void (*free_bind)(struct gprs_ns2_vc_bind *driver);
323};
324
Alexander Couzens175eb7b2021-07-20 18:41:14 +0200325enum ns2_sns_event {
326 NS2_SNS_EV_REQ_SELECT_ENDPOINT, /*!< Select a SNS endpoint from the list */
327 NS2_SNS_EV_RX_SIZE,
328 NS2_SNS_EV_RX_SIZE_ACK,
329 NS2_SNS_EV_RX_CONFIG,
330 NS2_SNS_EV_RX_CONFIG_END, /*!< SNS-CONFIG with end flag received */
331 NS2_SNS_EV_RX_CONFIG_ACK,
332 NS2_SNS_EV_RX_ADD,
333 NS2_SNS_EV_RX_DELETE,
334 NS2_SNS_EV_RX_CHANGE_WEIGHT,
335 NS2_SNS_EV_RX_ACK, /*!< Rx of SNS-ACK (response to ADD/DELETE/CHG_WEIGHT */
336 NS2_SNS_EV_REQ_NO_NSVC, /*!< no more NS-VC remaining (all dead) */
Alexander Couzens83f06ce2021-08-06 19:50:09 +0200337 NS2_SNS_EV_REQ_FREE_NSVCS, /*!< free all NS-VCs */
Alexander Couzens175eb7b2021-07-20 18:41:14 +0200338 NS2_SNS_EV_REQ_NSVC_ALIVE, /*!< a NS-VC became alive */
339 NS2_SNS_EV_REQ_ADD_BIND, /*!< add a new local bind to this NSE */
340 NS2_SNS_EV_REQ_DELETE_BIND, /*!< remove a local bind from this NSE */
Alexander Couzens1f3193d2021-06-05 22:08:11 +0200341 NS2_SNS_EV_REQ_CHANGE_WEIGHT, /*!< a bind changed its weight */
Alexander Couzens175eb7b2021-07-20 18:41:14 +0200342};
343
Alexander Couzensba5a9922021-01-25 16:03:23 +0100344enum ns2_cs ns2_create_vc(struct gprs_ns2_vc_bind *bind,
Alexander Couzens6a161492020-07-12 13:45:50 +0200345 struct msgb *msg,
Harald Welte7d0daac2021-03-02 23:08:43 +0100346 const struct osmo_sockaddr *remote,
Alexander Couzens6a161492020-07-12 13:45:50 +0200347 const char *logname,
348 struct msgb **reject,
349 struct gprs_ns2_vc **success);
350
Alexander Couzensffd49d02020-09-24 00:47:17 +0200351int ns2_recv_vc(struct gprs_ns2_vc *nsvc,
Alexander Couzens6a161492020-07-12 13:45:50 +0200352 struct msgb *msg);
353
354struct gprs_ns2_vc *ns2_vc_alloc(struct gprs_ns2_vc_bind *bind,
355 struct gprs_ns2_nse *nse,
Alexander Couzensd923cff2020-12-01 01:03:52 +0100356 bool initiater,
Harald Welte603f4042020-11-29 17:39:19 +0100357 enum gprs_ns2_vc_mode vc_mode,
358 const char *id);
Alexander Couzens6a161492020-07-12 13:45:50 +0200359
Alexander Couzensf0746592021-07-20 19:05:45 +0200360void ns2_free_nsvcs(struct gprs_ns2_nse *nse);
Harald Weltec3aa8f92021-01-31 11:41:34 +0100361int ns2_bind_alloc(struct gprs_ns2_inst *nsi, const char *name,
362 struct gprs_ns2_vc_bind **result);
363
Alexander Couzens8dfc24c2021-01-25 16:09:23 +0100364struct msgb *ns2_msgb_alloc(void);
Alexander Couzens6a161492020-07-12 13:45:50 +0200365
Alexander Couzens8dfc24c2021-01-25 16:09:23 +0100366void ns2_sns_write_vty(struct vty *vty, const struct gprs_ns2_nse *nse);
367void 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 +0200368void ns2_prim_status_ind(struct gprs_ns2_nse *nse,
Daniel Willmann15c09a82020-11-03 23:05:43 +0100369 struct gprs_ns2_vc *nsvc,
Alexander Couzensbf95f0f2020-10-01 22:56:03 +0200370 uint16_t bvci,
Alexander Couzens6a161492020-07-12 13:45:50 +0200371 enum gprs_ns2_affecting_cause cause);
372void ns2_nse_notify_alive(struct gprs_ns2_vc *nsvc, bool alive);
Alexander Couzens4f1128f2021-01-20 17:42:48 +0100373void ns2_nse_update_mtu(struct gprs_ns2_nse *nse);
Harald Welte06d9bf92021-03-05 10:20:11 +0100374int ns2_nse_set_dialect(struct gprs_ns2_nse *nse, enum gprs_ns2_dialect dialect);
Alexander Couzens6a161492020-07-12 13:45:50 +0200375
376/* message */
Alexander Couzens8dfc24c2021-01-25 16:09:23 +0100377int ns2_validate(struct gprs_ns2_vc *nsvc,
378 uint8_t pdu_type,
379 struct msgb *msg,
380 struct tlv_parsed *tp,
381 uint8_t *cause);
Alexander Couzens6a161492020-07-12 13:45:50 +0200382
383/* SNS messages */
384int ns2_tx_sns_ack(struct gprs_ns2_vc *nsvc, uint8_t trans_id, uint8_t *cause,
385 const struct gprs_ns_ie_ip4_elem *ip4_elems,
386 unsigned int num_ip4_elems,
387 const struct gprs_ns_ie_ip6_elem *ip6_elems,
388 unsigned int num_ip6_elems);
389int ns2_tx_sns_config(struct gprs_ns2_vc *nsvc, bool end_flag,
390 const struct gprs_ns_ie_ip4_elem *ip4_elems,
391 unsigned int num_ip4_elems,
392 const struct gprs_ns_ie_ip6_elem *ip6_elems,
393 unsigned int num_ip6_elems);
394int ns2_tx_sns_config_ack(struct gprs_ns2_vc *nsvc, uint8_t *cause);
395int ns2_tx_sns_size(struct gprs_ns2_vc *nsvc, bool reset_flag, uint16_t max_nr_nsvc,
396 int ip4_ep_nr, int ip6_ep_nr);
397int ns2_tx_sns_size_ack(struct gprs_ns2_vc *nsvc, uint8_t *cause);
398
Alexander Couzens27a55922021-02-27 01:08:35 +0100399int ns2_tx_sns_add(struct gprs_ns2_vc *nsvc,
400 uint8_t trans_id,
401 const struct gprs_ns_ie_ip4_elem *ip4_elems,
402 unsigned int num_ip4_elems,
403 const struct gprs_ns_ie_ip6_elem *ip6_elems,
404 unsigned int num_ip6_elems);
405int ns2_tx_sns_change_weight(struct gprs_ns2_vc *nsvc,
406 uint8_t trans_id,
407 const struct gprs_ns_ie_ip4_elem *ip4_elems,
408 unsigned int num_ip4_elems,
409 const struct gprs_ns_ie_ip6_elem *ip6_elems,
410 unsigned int num_ip6_elems);
411int ns2_tx_sns_del(struct gprs_ns2_vc *nsvc,
412 uint8_t trans_id,
413 const struct gprs_ns_ie_ip4_elem *ip4_elems,
414 unsigned int num_ip4_elems,
415 const struct gprs_ns_ie_ip6_elem *ip6_elems,
416 unsigned int num_ip6_elems);
417
Alexander Couzens6a161492020-07-12 13:45:50 +0200418/* transmit message over a VC */
419int ns2_tx_block(struct gprs_ns2_vc *nsvc, uint8_t cause);
420int ns2_tx_block_ack(struct gprs_ns2_vc *nsvc);
421
422int ns2_tx_reset(struct gprs_ns2_vc *nsvc, uint8_t cause);
423int ns2_tx_reset_ack(struct gprs_ns2_vc *nsvc);
424
425int ns2_tx_unblock(struct gprs_ns2_vc *nsvc);
426int ns2_tx_unblock_ack(struct gprs_ns2_vc *nsvc);
427
428int ns2_tx_alive(struct gprs_ns2_vc *nsvc);
429int ns2_tx_alive_ack(struct gprs_ns2_vc *nsvc);
430
431int ns2_tx_unit_data(struct gprs_ns2_vc *nsvc,
432 uint16_t bvci, uint8_t sducontrol,
433 struct msgb *msg);
434
435int ns2_tx_status(struct gprs_ns2_vc *nsvc, uint8_t cause,
436 uint16_t bvci, struct msgb *orig_msg);
437
438/* driver */
Alexander Couzens8dfc24c2021-01-25 16:09:23 +0100439struct gprs_ns2_vc *ns2_ip_bind_connect(struct gprs_ns2_vc_bind *bind,
440 struct gprs_ns2_nse *nse,
441 const struct osmo_sockaddr *remote);
Alexander Couzense769f522020-12-07 07:37:07 +0100442int ns2_ip_count_bind(struct gprs_ns2_inst *nsi, struct osmo_sockaddr *remote);
443struct gprs_ns2_vc_bind *ns2_ip_get_bind_by_index(struct gprs_ns2_inst *nsi,
444 struct osmo_sockaddr *remote,
445 int index);
Alexander Couzens6a161492020-07-12 13:45:50 +0200446
447/* sns */
Alexander Couzens8dfc24c2021-01-25 16:09:23 +0100448int ns2_sns_rx(struct gprs_ns2_vc *nsvc, struct msgb *msg, struct tlv_parsed *tp);
Alexander Couzens6a161492020-07-12 13:45:50 +0200449struct osmo_fsm_inst *ns2_sns_bss_fsm_alloc(struct gprs_ns2_nse *nse,
450 const char *id);
Harald Welte4f127462021-03-02 20:49:10 +0100451struct osmo_fsm_inst *ns2_sns_sgsn_fsm_alloc(struct gprs_ns2_nse *nse, const char *id);
Alexander Couzensbe7cecc2021-02-03 18:25:27 +0100452void ns2_sns_replace_nsvc(struct gprs_ns2_vc *nsvc);
453void ns2_sns_notify_alive(struct gprs_ns2_nse *nse, struct gprs_ns2_vc *nsvc, bool alive);
Alexander Couzensc4704762021-02-08 23:13:12 +0100454void ns2_sns_update_weights(struct gprs_ns2_vc_bind *bind);
Alexander Couzens6a161492020-07-12 13:45:50 +0200455
456/* vc */
Alexander Couzens8dfc24c2021-01-25 16:09:23 +0100457struct osmo_fsm_inst *ns2_vc_fsm_alloc(struct gprs_ns2_vc *nsvc,
Alexander Couzens6a161492020-07-12 13:45:50 +0200458 const char *id, bool initiate);
Alexander Couzens8dfc24c2021-01-25 16:09:23 +0100459int ns2_vc_fsm_start(struct gprs_ns2_vc *nsvc);
460int ns2_vc_force_unconfigured(struct gprs_ns2_vc *nsvc);
461int ns2_vc_rx(struct gprs_ns2_vc *nsvc, struct msgb *msg, struct tlv_parsed *tp);
462int ns2_vc_is_alive(struct gprs_ns2_vc *nsvc);
463int ns2_vc_is_unblocked(struct gprs_ns2_vc *nsvc);
Alexander Couzens47afc422021-01-17 20:12:46 +0100464int ns2_vc_block(struct gprs_ns2_vc *nsvc);
Alexander Couzens27e58732021-03-21 17:12:08 +0100465int ns2_vc_reset(struct gprs_ns2_vc *nsvc);
Alexander Couzens47afc422021-01-17 20:12:46 +0100466int ns2_vc_unblock(struct gprs_ns2_vc *nsvc);
Alexander Couzens75b61882021-03-21 16:18:17 +0100467void ns2_vty_dump_nsvc(struct vty *vty, struct gprs_ns2_vc *nsvc, bool stats);
Alexander Couzens6a161492020-07-12 13:45:50 +0200468
Alexander Couzens6a161492020-07-12 13:45:50 +0200469/* nse */
470void ns2_nse_notify_unblocked(struct gprs_ns2_vc *nsvc, bool unblocked);
Alexander Couzens8dfc24c2021-01-25 16:09:23 +0100471enum gprs_ns2_vc_mode ns2_dialect_to_vc_mode(enum gprs_ns2_dialect dialect);
Alexander Couzens1c8785d2020-12-17 06:58:53 +0100472int ns2_count_transfer_cap(struct gprs_ns2_nse *nse,
473 uint16_t bvci);
Harald Welted164ef82021-03-04 22:29:17 +0100474
475/* vty */
476int ns2_sns_add_sns_default_binds(struct gprs_ns2_nse *nse);