blob: 8e4ba9e0b75763ed2bf417e042142137b5592dfd [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
41
Alexander Couzens6a161492020-07-12 13:45:50 +020042struct osmo_fsm_inst;
43struct tlv_parsed;
44struct vty;
45
46struct gprs_ns2_vc_driver;
47struct gprs_ns2_vc_bind;
48
Alexander Couzens90ee9632020-12-07 06:18:32 +010049#define NS_TIMERS_COUNT 10
Harald Welte3a44d172020-12-16 12:02:51 +010050#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 +020051#define NS_TIMERS_HELP \
52 "(un)blocking Timer (Tns-block) timeout\n" \
53 "(un)blocking Timer (Tns-block) number of retries\n" \
54 "Reset Timer (Tns-reset) timeout\n" \
55 "Reset Timer (Tns-reset) number of retries\n" \
56 "Test Timer (Tns-test) timeout\n" \
57 "Alive Timer (Tns-alive) timeout\n" \
58 "Alive Timer (Tns-alive) number of retries\n" \
Alexander Couzens90ee9632020-12-07 06:18:32 +010059 "SNS Provision Timer (Tsns-prov) timeout\n" \
60 "SNS Size number of retries\n" \
61 "SNS Config number of retries\n" \
Alexander Couzens6a161492020-07-12 13:45:50 +020062
63/* Educated guess - LLC user payload is 1500 bytes plus possible headers */
64#define NS_ALLOC_SIZE 3072
65#define NS_ALLOC_HEADROOM 20
66
67enum ns2_timeout {
68 NS_TOUT_TNS_BLOCK,
69 NS_TOUT_TNS_BLOCK_RETRIES,
70 NS_TOUT_TNS_RESET,
71 NS_TOUT_TNS_RESET_RETRIES,
72 NS_TOUT_TNS_TEST,
73 NS_TOUT_TNS_ALIVE,
74 NS_TOUT_TNS_ALIVE_RETRIES,
75 NS_TOUT_TSNS_PROV,
Alexander Couzens90ee9632020-12-07 06:18:32 +010076 NS_TOUT_TSNS_SIZE_RETRIES,
77 NS_TOUT_TSNS_CONFIG_RETRIES,
Alexander Couzens6a161492020-07-12 13:45:50 +020078};
79
80enum nsvc_timer_mode {
81 /* standard timers */
82 NSVC_TIMER_TNS_TEST,
83 NSVC_TIMER_TNS_ALIVE,
84 NSVC_TIMER_TNS_RESET,
85 _NSVC_TIMER_NR,
86};
87
Harald Welte76346072021-01-31 11:54:02 +010088enum ns2_vc_stat {
Alexander Couzens6a161492020-07-12 13:45:50 +020089 NS_STAT_ALIVE_DELAY,
90};
91
Harald Welte76346072021-01-31 11:54:02 +010092enum ns2_bind_stat {
93 NS2_BIND_STAT_BACKLOG_LEN,
94};
95
Alexander Couzens6a161492020-07-12 13:45:50 +020096/*! Osmocom NS2 VC create status */
Alexander Couzensba5a9922021-01-25 16:03:23 +010097enum ns2_cs {
98 NS2_CS_CREATED, /*!< A NSVC object has been created */
99 NS2_CS_FOUND, /*!< A NSVC object has been found */
100 NS2_CS_REJECTED, /*!< Rejected and answered message */
101 NS2_CS_SKIPPED, /*!< Skipped message */
102 NS2_CS_ERROR, /*!< Failed to process message */
Alexander Couzens6a161492020-07-12 13:45:50 +0200103};
104
Harald Welte3d5eaee2021-01-30 21:33:02 +0100105enum ns_ctr {
106 NS_CTR_PKTS_IN,
107 NS_CTR_PKTS_OUT,
Harald Weltef22ae5a2021-01-30 22:01:28 +0100108 NS_CTR_PKTS_OUT_DROP,
Harald Welte3d5eaee2021-01-30 21:33:02 +0100109 NS_CTR_BYTES_IN,
110 NS_CTR_BYTES_OUT,
Harald Weltef22ae5a2021-01-30 22:01:28 +0100111 NS_CTR_BYTES_OUT_DROP,
Harald Welte3d5eaee2021-01-30 21:33:02 +0100112 NS_CTR_BLOCKED,
Harald Welteb40bf8b2021-01-30 22:43:01 +0100113 NS_CTR_UNBLOCKED,
Harald Welte3d5eaee2021-01-30 21:33:02 +0100114 NS_CTR_DEAD,
115 NS_CTR_REPLACED,
116 NS_CTR_NSEI_CHG,
117 NS_CTR_INV_VCI,
118 NS_CTR_INV_NSEI,
119 NS_CTR_LOST_ALIVE,
120 NS_CTR_LOST_RESET,
121};
Alexander Couzens6a161492020-07-12 13:45:50 +0200122
123#define NSE_S_BLOCKED 0x0001
124#define NSE_S_ALIVE 0x0002
125#define NSE_S_RESET 0x0004
126
127#define NS_DESC_B(st) ((st) & NSE_S_BLOCKED ? "BLOCKED" : "UNBLOCKED")
128#define NS_DESC_A(st) ((st) & NSE_S_ALIVE ? "ALIVE" : "DEAD")
129#define NS_DESC_R(st) ((st) & NSE_S_RESET ? "RESET" : "UNRESET")
130
131/*! An instance of the NS protocol stack */
132struct gprs_ns2_inst {
133 /*! callback to the user for incoming UNIT DATA IND */
134 osmo_prim_cb cb;
135
136 /*! callback data */
137 void *cb_data;
138
139 /*! linked lists of all NSVC binds (e.g. IPv4 bind, but could be also E1 */
140 struct llist_head binding;
141
142 /*! linked lists of all NSVC in this instance */
143 struct llist_head nse;
144
Alexander Couzens6a161492020-07-12 13:45:50 +0200145 uint16_t timeout[NS_TIMERS_COUNT];
146
147 /*! workaround for rate counter until rate counter accepts char str as index */
Harald Welte97ccbf72021-01-31 11:49:19 +0100148 uint32_t nsvc_rate_ctr_idx;
Harald Welte76346072021-01-31 11:54:02 +0100149 uint32_t bind_rate_ctr_idx;
Harald Welte53a2fde2020-12-01 22:21:14 +0100150
151 /*! libmnl netlink socket for link state monitoring */
152 struct osmo_mnl *linkmon_mnl;
Alexander Couzens6a161492020-07-12 13:45:50 +0200153};
154
Harald Welte53a2fde2020-12-01 22:21:14 +0100155
Alexander Couzens6a161492020-07-12 13:45:50 +0200156/*! Structure repesenting a NSE. The BSS/PCU will only have a single NSE, while SGSN has one for each BSS/PCU */
157struct gprs_ns2_nse {
158 uint16_t nsei;
159
160 /*! entry back to ns2_inst */
161 struct gprs_ns2_inst *nsi;
162
163 /*! llist entry for gprs_ns2_inst */
164 struct llist_head list;
165
166 /*! llist head to hold all nsvc */
167 struct llist_head nsvc;
168
Alexander Couzens8a2a1a42020-12-26 18:00:17 +0100169 /*! count all active NSVCs */
170 int nsvc_count;
Alexander Couzensfc3dd1f2020-11-19 00:41:47 +0100171
Alexander Couzens6a161492020-07-12 13:45:50 +0200172 /*! true if this NSE was created by VTY or pcu socket) */
173 bool persistent;
174
Alexander Couzensda0a2852020-10-01 23:24:07 +0200175 /*! true if this NSE wasn't yet alive at all.
176 * Will be true after the first status ind with NS_AFF_CAUSE_RECOVERY */
177 bool first;
178
Alexander Couzens6a161492020-07-12 13:45:50 +0200179 /*! true if this NSE has at least one alive VC */
180 bool alive;
181
Alexander Couzensaac90162020-11-19 02:44:04 +0100182 /*! which link-layer are we based on? */
183 enum gprs_ns2_ll ll;
184
Alexander Couzensd923cff2020-12-01 01:03:52 +0100185 /*! which dialect does this NSE speaks? */
186 enum gprs_ns2_dialect dialect;
187
Alexander Couzens6a161492020-07-12 13:45:50 +0200188 struct osmo_fsm_inst *bss_sns_fi;
Harald Welte3221f872021-01-18 14:58:51 +0100189
Alexander Couzense052c412021-02-15 02:10:57 +0100190 /*! sum of all the data weight of _alive_ NS-VCs */
Harald Welte3221f872021-01-18 14:58:51 +0100191 uint32_t sum_data_weight;
192
Alexander Couzense052c412021-02-15 02:10:57 +0100193 /*! sum of all the signalling weight of _alive_ NS-VCs */
Harald Welte3221f872021-01-18 14:58:51 +0100194 uint32_t sum_sig_weight;
Alexander Couzens4f1128f2021-01-20 17:42:48 +0100195
196 /*! MTU of a NS PDU. This is the lowest MTU of all NSVCs */
197 uint16_t mtu;
Harald Welte5b034fb2021-03-04 14:16:49 +0100198
199 /*! are we implementing the SGSN role? */
200 bool ip_sns_role_sgsn;
Alexander Couzens6a161492020-07-12 13:45:50 +0200201};
202
203/*! Structure representing a single NS-VC */
204struct gprs_ns2_vc {
205 /*! list of NS-VCs within NSE */
206 struct llist_head list;
207
208 /*! list of NS-VCs within bind, bind is the owner! */
209 struct llist_head blist;
210
211 /*! pointer to NS Instance */
212 struct gprs_ns2_nse *nse;
213
214 /*! pointer to NS VL bind. bind own the memory of this instance */
215 struct gprs_ns2_vc_bind *bind;
216
217 /*! true if this NS was created by VTY or pcu socket) */
218 bool persistent;
219
220 /*! uniquely identifies NS-VC if VC contains nsvci */
221 uint16_t nsvci;
222
223 /*! signalling weight. 0 = don't use for signalling (BVCI == 0)*/
224 uint8_t sig_weight;
225
Alexander Couzensfc3dd1f2020-11-19 00:41:47 +0100226 /*! signalling packet counter for the load sharing function */
227 uint8_t sig_counter;
228
229 /*! data weight. 0 = don't use for user data (BVCI != 0) */
Alexander Couzens6a161492020-07-12 13:45:50 +0200230 uint8_t data_weight;
231
232 /*! can be used by the bind/driver of the virtual circuit. e.g. ipv4/ipv6/frgre/e1 */
233 void *priv;
234
235 bool nsvci_is_valid;
Harald Weltec962a2e2021-03-05 08:09:08 +0100236 /*! should this NS-VC only be used for SNS-SIZE and SNS-CONFIG? */
Alexander Couzens6a161492020-07-12 13:45:50 +0200237 bool sns_only;
238
239 struct rate_ctr_group *ctrg;
240 struct osmo_stat_item_group *statg;
241
Alexander Couzens6a161492020-07-12 13:45:50 +0200242 enum gprs_ns2_vc_mode mode;
243
244 struct osmo_fsm_inst *fi;
245};
246
247/*! Structure repesenting a bind instance. E.g. IPv4 listen port. */
248struct gprs_ns2_vc_bind {
Alexander Couzensaaa55a62020-12-03 06:02:03 +0100249 /*! unique name */
250 const char *name;
Alexander Couzens6a161492020-07-12 13:45:50 +0200251 /*! list entry in nsi */
252 struct llist_head list;
253 /*! list of all VC */
254 struct llist_head nsvc;
255 /*! driver private structure */
256 void *priv;
257 /*! a pointer back to the nsi */
258 struct gprs_ns2_inst *nsi;
259 struct gprs_ns2_vc_driver *driver;
260
Alexander Couzensd923cff2020-12-01 01:03:52 +0100261 bool accept_ipaccess;
262 bool accept_sns;
Alexander Couzens6a161492020-07-12 13:45:50 +0200263
Alexander Couzens1c8785d2020-12-17 06:58:53 +0100264 /*! transfer capability in mbit */
265 int transfer_capability;
266
Alexander Couzens4f1128f2021-01-20 17:42:48 +0100267 /*! MTU of a NS PDU on this bind. */
268 uint16_t mtu;
269
Alexander Couzensaac90162020-11-19 02:44:04 +0100270 /*! which link-layer are we based on? */
271 enum gprs_ns2_ll ll;
272
Alexander Couzens6a161492020-07-12 13:45:50 +0200273 /*! send a msg over a VC */
274 int (*send_vc)(struct gprs_ns2_vc *nsvc, struct msgb *msg);
275
276 /*! free the vc priv data */
277 void (*free_vc)(struct gprs_ns2_vc *nsvc);
Alexander Couzens6a161492020-07-12 13:45:50 +0200278
Alexander Couzens22f34712020-10-02 02:34:39 +0200279 /*! allow to show information for the vty */
280 void (*dump_vty)(const struct gprs_ns2_vc_bind *bind,
281 struct vty *vty, bool stats);
Harald Welte76346072021-01-31 11:54:02 +0100282
Alexander Couzensc4704762021-02-08 23:13:12 +0100283 /*! the IP-SNS signalling weight when doing dynamic configuration */
284 uint8_t sns_sig_weight;
285 /*! the IP-SNS data weight when doing dynamic configuration */
286 uint8_t sns_data_weight;
287
Harald Welte76346072021-01-31 11:54:02 +0100288 struct osmo_stat_item_group *statg;
Alexander Couzens22f34712020-10-02 02:34:39 +0200289};
Alexander Couzens6a161492020-07-12 13:45:50 +0200290
291struct gprs_ns2_vc_driver {
292 const char *name;
293 void *priv;
294 void (*free_bind)(struct gprs_ns2_vc_bind *driver);
295};
296
Alexander Couzensba5a9922021-01-25 16:03:23 +0100297enum ns2_cs ns2_create_vc(struct gprs_ns2_vc_bind *bind,
Alexander Couzens6a161492020-07-12 13:45:50 +0200298 struct msgb *msg,
Harald Welte7d0daac2021-03-02 23:08:43 +0100299 const struct osmo_sockaddr *remote,
Alexander Couzens6a161492020-07-12 13:45:50 +0200300 const char *logname,
301 struct msgb **reject,
302 struct gprs_ns2_vc **success);
303
Alexander Couzensffd49d02020-09-24 00:47:17 +0200304int ns2_recv_vc(struct gprs_ns2_vc *nsvc,
Alexander Couzens6a161492020-07-12 13:45:50 +0200305 struct msgb *msg);
306
307struct gprs_ns2_vc *ns2_vc_alloc(struct gprs_ns2_vc_bind *bind,
308 struct gprs_ns2_nse *nse,
Alexander Couzensd923cff2020-12-01 01:03:52 +0100309 bool initiater,
Harald Welte603f4042020-11-29 17:39:19 +0100310 enum gprs_ns2_vc_mode vc_mode,
311 const char *id);
Alexander Couzens6a161492020-07-12 13:45:50 +0200312
Harald Weltec3aa8f92021-01-31 11:41:34 +0100313int ns2_bind_alloc(struct gprs_ns2_inst *nsi, const char *name,
314 struct gprs_ns2_vc_bind **result);
315
Alexander Couzens8dfc24c2021-01-25 16:09:23 +0100316struct msgb *ns2_msgb_alloc(void);
Alexander Couzens6a161492020-07-12 13:45:50 +0200317
Alexander Couzens8dfc24c2021-01-25 16:09:23 +0100318void ns2_sns_write_vty(struct vty *vty, const struct gprs_ns2_nse *nse);
319void 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 +0200320void ns2_prim_status_ind(struct gprs_ns2_nse *nse,
Daniel Willmann15c09a82020-11-03 23:05:43 +0100321 struct gprs_ns2_vc *nsvc,
Alexander Couzensbf95f0f2020-10-01 22:56:03 +0200322 uint16_t bvci,
Alexander Couzens6a161492020-07-12 13:45:50 +0200323 enum gprs_ns2_affecting_cause cause);
324void ns2_nse_notify_alive(struct gprs_ns2_vc *nsvc, bool alive);
Alexander Couzens4f1128f2021-01-20 17:42:48 +0100325void ns2_nse_update_mtu(struct gprs_ns2_nse *nse);
Harald Welte06d9bf92021-03-05 10:20:11 +0100326int ns2_nse_set_dialect(struct gprs_ns2_nse *nse, enum gprs_ns2_dialect dialect);
Alexander Couzens6a161492020-07-12 13:45:50 +0200327
328/* message */
Alexander Couzens8dfc24c2021-01-25 16:09:23 +0100329int ns2_validate(struct gprs_ns2_vc *nsvc,
330 uint8_t pdu_type,
331 struct msgb *msg,
332 struct tlv_parsed *tp,
333 uint8_t *cause);
Alexander Couzens6a161492020-07-12 13:45:50 +0200334
335/* SNS messages */
336int ns2_tx_sns_ack(struct gprs_ns2_vc *nsvc, uint8_t trans_id, uint8_t *cause,
337 const struct gprs_ns_ie_ip4_elem *ip4_elems,
338 unsigned int num_ip4_elems,
339 const struct gprs_ns_ie_ip6_elem *ip6_elems,
340 unsigned int num_ip6_elems);
341int ns2_tx_sns_config(struct gprs_ns2_vc *nsvc, bool end_flag,
342 const struct gprs_ns_ie_ip4_elem *ip4_elems,
343 unsigned int num_ip4_elems,
344 const struct gprs_ns_ie_ip6_elem *ip6_elems,
345 unsigned int num_ip6_elems);
346int ns2_tx_sns_config_ack(struct gprs_ns2_vc *nsvc, uint8_t *cause);
347int ns2_tx_sns_size(struct gprs_ns2_vc *nsvc, bool reset_flag, uint16_t max_nr_nsvc,
348 int ip4_ep_nr, int ip6_ep_nr);
349int ns2_tx_sns_size_ack(struct gprs_ns2_vc *nsvc, uint8_t *cause);
350
351/* transmit message over a VC */
352int ns2_tx_block(struct gprs_ns2_vc *nsvc, uint8_t cause);
353int ns2_tx_block_ack(struct gprs_ns2_vc *nsvc);
354
355int ns2_tx_reset(struct gprs_ns2_vc *nsvc, uint8_t cause);
356int ns2_tx_reset_ack(struct gprs_ns2_vc *nsvc);
357
358int ns2_tx_unblock(struct gprs_ns2_vc *nsvc);
359int ns2_tx_unblock_ack(struct gprs_ns2_vc *nsvc);
360
361int ns2_tx_alive(struct gprs_ns2_vc *nsvc);
362int ns2_tx_alive_ack(struct gprs_ns2_vc *nsvc);
363
364int ns2_tx_unit_data(struct gprs_ns2_vc *nsvc,
365 uint16_t bvci, uint8_t sducontrol,
366 struct msgb *msg);
367
368int ns2_tx_status(struct gprs_ns2_vc *nsvc, uint8_t cause,
369 uint16_t bvci, struct msgb *orig_msg);
370
371/* driver */
Alexander Couzens8dfc24c2021-01-25 16:09:23 +0100372struct gprs_ns2_vc *ns2_ip_bind_connect(struct gprs_ns2_vc_bind *bind,
373 struct gprs_ns2_nse *nse,
374 const struct osmo_sockaddr *remote);
Alexander Couzense769f522020-12-07 07:37:07 +0100375int ns2_ip_count_bind(struct gprs_ns2_inst *nsi, struct osmo_sockaddr *remote);
376struct gprs_ns2_vc_bind *ns2_ip_get_bind_by_index(struct gprs_ns2_inst *nsi,
377 struct osmo_sockaddr *remote,
378 int index);
Alexander Couzens6a161492020-07-12 13:45:50 +0200379
380/* sns */
Alexander Couzens8dfc24c2021-01-25 16:09:23 +0100381int ns2_sns_rx(struct gprs_ns2_vc *nsvc, struct msgb *msg, struct tlv_parsed *tp);
Alexander Couzens6a161492020-07-12 13:45:50 +0200382struct osmo_fsm_inst *ns2_sns_bss_fsm_alloc(struct gprs_ns2_nse *nse,
383 const char *id);
Harald Welte4f127462021-03-02 20:49:10 +0100384struct osmo_fsm_inst *ns2_sns_sgsn_fsm_alloc(struct gprs_ns2_nse *nse, const char *id);
Alexander Couzensbe7cecc2021-02-03 18:25:27 +0100385void ns2_sns_replace_nsvc(struct gprs_ns2_vc *nsvc);
386void ns2_sns_notify_alive(struct gprs_ns2_nse *nse, struct gprs_ns2_vc *nsvc, bool alive);
Alexander Couzensc4704762021-02-08 23:13:12 +0100387void ns2_sns_update_weights(struct gprs_ns2_vc_bind *bind);
Alexander Couzens6a161492020-07-12 13:45:50 +0200388
389/* vc */
Alexander Couzens8dfc24c2021-01-25 16:09:23 +0100390struct osmo_fsm_inst *ns2_vc_fsm_alloc(struct gprs_ns2_vc *nsvc,
Alexander Couzens6a161492020-07-12 13:45:50 +0200391 const char *id, bool initiate);
Alexander Couzens8dfc24c2021-01-25 16:09:23 +0100392int ns2_vc_fsm_start(struct gprs_ns2_vc *nsvc);
393int ns2_vc_force_unconfigured(struct gprs_ns2_vc *nsvc);
394int ns2_vc_rx(struct gprs_ns2_vc *nsvc, struct msgb *msg, struct tlv_parsed *tp);
395int ns2_vc_is_alive(struct gprs_ns2_vc *nsvc);
396int ns2_vc_is_unblocked(struct gprs_ns2_vc *nsvc);
Alexander Couzens47afc422021-01-17 20:12:46 +0100397int ns2_vc_block(struct gprs_ns2_vc *nsvc);
Alexander Couzens27e58732021-03-21 17:12:08 +0100398int ns2_vc_reset(struct gprs_ns2_vc *nsvc);
Alexander Couzens47afc422021-01-17 20:12:46 +0100399int ns2_vc_unblock(struct gprs_ns2_vc *nsvc);
Alexander Couzens75b61882021-03-21 16:18:17 +0100400void ns2_vty_dump_nsvc(struct vty *vty, struct gprs_ns2_vc *nsvc, bool stats);
Alexander Couzens6a161492020-07-12 13:45:50 +0200401
Alexander Couzens6a161492020-07-12 13:45:50 +0200402/* nse */
403void ns2_nse_notify_unblocked(struct gprs_ns2_vc *nsvc, bool unblocked);
Alexander Couzens8dfc24c2021-01-25 16:09:23 +0100404enum gprs_ns2_vc_mode ns2_dialect_to_vc_mode(enum gprs_ns2_dialect dialect);
Alexander Couzens1c8785d2020-12-17 06:58:53 +0100405int ns2_count_transfer_cap(struct gprs_ns2_nse *nse,
406 uint16_t bvci);
Harald Welted164ef82021-03-04 22:29:17 +0100407
408/* vty */
409int ns2_sns_add_sns_default_binds(struct gprs_ns2_nse *nse);