blob: db01c2eea1df7f01bc26c4e7075ad7b9b5e4da69 [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 Couzens90ee9632020-12-07 06:18:32 +010063#define NS_TIMERS_COUNT 10
Harald Welte3a44d172020-12-16 12:02:51 +010064#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 +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 Couzens6a161492020-07-12 13:45:50 +020076
77/* Educated guess - LLC user payload is 1500 bytes plus possible headers */
78#define NS_ALLOC_SIZE 3072
79#define NS_ALLOC_HEADROOM 20
80
81enum ns2_timeout {
82 NS_TOUT_TNS_BLOCK,
83 NS_TOUT_TNS_BLOCK_RETRIES,
84 NS_TOUT_TNS_RESET,
85 NS_TOUT_TNS_RESET_RETRIES,
86 NS_TOUT_TNS_TEST,
87 NS_TOUT_TNS_ALIVE,
88 NS_TOUT_TNS_ALIVE_RETRIES,
89 NS_TOUT_TSNS_PROV,
Alexander Couzens90ee9632020-12-07 06:18:32 +010090 NS_TOUT_TSNS_SIZE_RETRIES,
91 NS_TOUT_TSNS_CONFIG_RETRIES,
Alexander Couzens6a161492020-07-12 13:45:50 +020092};
93
94enum nsvc_timer_mode {
95 /* standard timers */
96 NSVC_TIMER_TNS_TEST,
97 NSVC_TIMER_TNS_ALIVE,
98 NSVC_TIMER_TNS_RESET,
99 _NSVC_TIMER_NR,
100};
101
Harald Welte76346072021-01-31 11:54:02 +0100102enum ns2_vc_stat {
Alexander Couzens6a161492020-07-12 13:45:50 +0200103 NS_STAT_ALIVE_DELAY,
104};
105
Harald Welte76346072021-01-31 11:54:02 +0100106enum ns2_bind_stat {
107 NS2_BIND_STAT_BACKLOG_LEN,
108};
109
Alexander Couzens6a161492020-07-12 13:45:50 +0200110/*! Osmocom NS2 VC create status */
Alexander Couzensba5a9922021-01-25 16:03:23 +0100111enum ns2_cs {
112 NS2_CS_CREATED, /*!< A NSVC object has been created */
113 NS2_CS_FOUND, /*!< A NSVC object has been found */
114 NS2_CS_REJECTED, /*!< Rejected and answered message */
115 NS2_CS_SKIPPED, /*!< Skipped message */
116 NS2_CS_ERROR, /*!< Failed to process message */
Alexander Couzens6a161492020-07-12 13:45:50 +0200117};
118
Harald Welte3d5eaee2021-01-30 21:33:02 +0100119enum ns_ctr {
120 NS_CTR_PKTS_IN,
121 NS_CTR_PKTS_OUT,
Harald Weltef22ae5a2021-01-30 22:01:28 +0100122 NS_CTR_PKTS_OUT_DROP,
Harald Welte3d5eaee2021-01-30 21:33:02 +0100123 NS_CTR_BYTES_IN,
124 NS_CTR_BYTES_OUT,
Harald Weltef22ae5a2021-01-30 22:01:28 +0100125 NS_CTR_BYTES_OUT_DROP,
Harald Welte3d5eaee2021-01-30 21:33:02 +0100126 NS_CTR_BLOCKED,
Harald Welteb40bf8b2021-01-30 22:43:01 +0100127 NS_CTR_UNBLOCKED,
Harald Welte3d5eaee2021-01-30 21:33:02 +0100128 NS_CTR_DEAD,
129 NS_CTR_REPLACED,
130 NS_CTR_NSEI_CHG,
131 NS_CTR_INV_VCI,
132 NS_CTR_INV_NSEI,
133 NS_CTR_LOST_ALIVE,
134 NS_CTR_LOST_RESET,
135};
Alexander Couzens6a161492020-07-12 13:45:50 +0200136
137#define NSE_S_BLOCKED 0x0001
138#define NSE_S_ALIVE 0x0002
139#define NSE_S_RESET 0x0004
140
141#define NS_DESC_B(st) ((st) & NSE_S_BLOCKED ? "BLOCKED" : "UNBLOCKED")
142#define NS_DESC_A(st) ((st) & NSE_S_ALIVE ? "ALIVE" : "DEAD")
143#define NS_DESC_R(st) ((st) & NSE_S_RESET ? "RESET" : "UNRESET")
144
145/*! An instance of the NS protocol stack */
146struct gprs_ns2_inst {
147 /*! callback to the user for incoming UNIT DATA IND */
148 osmo_prim_cb cb;
149
150 /*! callback data */
151 void *cb_data;
152
153 /*! linked lists of all NSVC binds (e.g. IPv4 bind, but could be also E1 */
154 struct llist_head binding;
155
156 /*! linked lists of all NSVC in this instance */
157 struct llist_head nse;
158
Alexander Couzens6a161492020-07-12 13:45:50 +0200159 uint16_t timeout[NS_TIMERS_COUNT];
160
161 /*! workaround for rate counter until rate counter accepts char str as index */
Harald Welte97ccbf72021-01-31 11:49:19 +0100162 uint32_t nsvc_rate_ctr_idx;
Harald Welte76346072021-01-31 11:54:02 +0100163 uint32_t bind_rate_ctr_idx;
Harald Welte53a2fde2020-12-01 22:21:14 +0100164
165 /*! libmnl netlink socket for link state monitoring */
166 struct osmo_mnl *linkmon_mnl;
Alexander Couzens6a161492020-07-12 13:45:50 +0200167};
168
Harald Welte53a2fde2020-12-01 22:21:14 +0100169
Alexander Couzens6a161492020-07-12 13:45:50 +0200170/*! Structure repesenting a NSE. The BSS/PCU will only have a single NSE, while SGSN has one for each BSS/PCU */
171struct gprs_ns2_nse {
172 uint16_t nsei;
173
174 /*! entry back to ns2_inst */
175 struct gprs_ns2_inst *nsi;
176
177 /*! llist entry for gprs_ns2_inst */
178 struct llist_head list;
179
180 /*! llist head to hold all nsvc */
181 struct llist_head nsvc;
182
Alexander Couzens8a2a1a42020-12-26 18:00:17 +0100183 /*! count all active NSVCs */
184 int nsvc_count;
Alexander Couzensfc3dd1f2020-11-19 00:41:47 +0100185
Alexander Couzens6a161492020-07-12 13:45:50 +0200186 /*! true if this NSE was created by VTY or pcu socket) */
187 bool persistent;
188
Alexander Couzensda0a2852020-10-01 23:24:07 +0200189 /*! true if this NSE wasn't yet alive at all.
190 * Will be true after the first status ind with NS_AFF_CAUSE_RECOVERY */
191 bool first;
192
Alexander Couzens6a161492020-07-12 13:45:50 +0200193 /*! true if this NSE has at least one alive VC */
194 bool alive;
195
Alexander Couzensaac90162020-11-19 02:44:04 +0100196 /*! which link-layer are we based on? */
197 enum gprs_ns2_ll ll;
198
Alexander Couzensd923cff2020-12-01 01:03:52 +0100199 /*! which dialect does this NSE speaks? */
200 enum gprs_ns2_dialect dialect;
201
Alexander Couzens6a161492020-07-12 13:45:50 +0200202 struct osmo_fsm_inst *bss_sns_fi;
Harald Welte3221f872021-01-18 14:58:51 +0100203
Alexander Couzense052c412021-02-15 02:10:57 +0100204 /*! sum of all the data weight of _alive_ NS-VCs */
Harald Welte3221f872021-01-18 14:58:51 +0100205 uint32_t sum_data_weight;
206
Alexander Couzense052c412021-02-15 02:10:57 +0100207 /*! sum of all the signalling weight of _alive_ NS-VCs */
Harald Welte3221f872021-01-18 14:58:51 +0100208 uint32_t sum_sig_weight;
Alexander Couzens4f1128f2021-01-20 17:42:48 +0100209
210 /*! MTU of a NS PDU. This is the lowest MTU of all NSVCs */
211 uint16_t mtu;
Harald Welte5b034fb2021-03-04 14:16:49 +0100212
213 /*! are we implementing the SGSN role? */
214 bool ip_sns_role_sgsn;
Daniel Willmannefa64f92021-07-09 20:35:00 +0200215
216 /*! NSE-wide statistics */
217 struct rate_ctr_group *ctrg;
Alexander Couzens6a161492020-07-12 13:45:50 +0200218};
219
220/*! Structure representing a single NS-VC */
221struct gprs_ns2_vc {
222 /*! list of NS-VCs within NSE */
223 struct llist_head list;
224
225 /*! list of NS-VCs within bind, bind is the owner! */
226 struct llist_head blist;
227
228 /*! pointer to NS Instance */
229 struct gprs_ns2_nse *nse;
230
231 /*! pointer to NS VL bind. bind own the memory of this instance */
232 struct gprs_ns2_vc_bind *bind;
233
234 /*! true if this NS was created by VTY or pcu socket) */
235 bool persistent;
236
237 /*! uniquely identifies NS-VC if VC contains nsvci */
238 uint16_t nsvci;
239
240 /*! signalling weight. 0 = don't use for signalling (BVCI == 0)*/
241 uint8_t sig_weight;
242
Alexander Couzensfc3dd1f2020-11-19 00:41:47 +0100243 /*! signalling packet counter for the load sharing function */
244 uint8_t sig_counter;
245
246 /*! data weight. 0 = don't use for user data (BVCI != 0) */
Alexander Couzens6a161492020-07-12 13:45:50 +0200247 uint8_t data_weight;
248
249 /*! can be used by the bind/driver of the virtual circuit. e.g. ipv4/ipv6/frgre/e1 */
250 void *priv;
251
252 bool nsvci_is_valid;
Harald Weltec962a2e2021-03-05 08:09:08 +0100253 /*! should this NS-VC only be used for SNS-SIZE and SNS-CONFIG? */
Alexander Couzens6a161492020-07-12 13:45:50 +0200254 bool sns_only;
255
256 struct rate_ctr_group *ctrg;
257 struct osmo_stat_item_group *statg;
258
Alexander Couzens6a161492020-07-12 13:45:50 +0200259 enum gprs_ns2_vc_mode mode;
260
261 struct osmo_fsm_inst *fi;
262};
263
264/*! Structure repesenting a bind instance. E.g. IPv4 listen port. */
265struct gprs_ns2_vc_bind {
Alexander Couzensaaa55a62020-12-03 06:02:03 +0100266 /*! unique name */
267 const char *name;
Alexander Couzens6a161492020-07-12 13:45:50 +0200268 /*! list entry in nsi */
269 struct llist_head list;
270 /*! list of all VC */
271 struct llist_head nsvc;
272 /*! driver private structure */
273 void *priv;
274 /*! a pointer back to the nsi */
275 struct gprs_ns2_inst *nsi;
276 struct gprs_ns2_vc_driver *driver;
277
Alexander Couzensd923cff2020-12-01 01:03:52 +0100278 bool accept_ipaccess;
279 bool accept_sns;
Alexander Couzens6a161492020-07-12 13:45:50 +0200280
Alexander Couzens1c8785d2020-12-17 06:58:53 +0100281 /*! transfer capability in mbit */
282 int transfer_capability;
283
Alexander Couzens4f1128f2021-01-20 17:42:48 +0100284 /*! MTU of a NS PDU on this bind. */
285 uint16_t mtu;
286
Alexander Couzensaac90162020-11-19 02:44:04 +0100287 /*! which link-layer are we based on? */
288 enum gprs_ns2_ll ll;
289
Alexander Couzens6a161492020-07-12 13:45:50 +0200290 /*! send a msg over a VC */
291 int (*send_vc)(struct gprs_ns2_vc *nsvc, struct msgb *msg);
292
293 /*! free the vc priv data */
294 void (*free_vc)(struct gprs_ns2_vc *nsvc);
Alexander Couzens6a161492020-07-12 13:45:50 +0200295
Alexander Couzens22f34712020-10-02 02:34:39 +0200296 /*! allow to show information for the vty */
297 void (*dump_vty)(const struct gprs_ns2_vc_bind *bind,
298 struct vty *vty, bool stats);
Harald Welte76346072021-01-31 11:54:02 +0100299
Alexander Couzensc4704762021-02-08 23:13:12 +0100300 /*! the IP-SNS signalling weight when doing dynamic configuration */
301 uint8_t sns_sig_weight;
302 /*! the IP-SNS data weight when doing dynamic configuration */
303 uint8_t sns_data_weight;
304
Harald Welte76346072021-01-31 11:54:02 +0100305 struct osmo_stat_item_group *statg;
Alexander Couzens22f34712020-10-02 02:34:39 +0200306};
Alexander Couzens6a161492020-07-12 13:45:50 +0200307
308struct gprs_ns2_vc_driver {
309 const char *name;
310 void *priv;
311 void (*free_bind)(struct gprs_ns2_vc_bind *driver);
312};
313
Alexander Couzensba5a9922021-01-25 16:03:23 +0100314enum ns2_cs ns2_create_vc(struct gprs_ns2_vc_bind *bind,
Alexander Couzens6a161492020-07-12 13:45:50 +0200315 struct msgb *msg,
Harald Welte7d0daac2021-03-02 23:08:43 +0100316 const struct osmo_sockaddr *remote,
Alexander Couzens6a161492020-07-12 13:45:50 +0200317 const char *logname,
318 struct msgb **reject,
319 struct gprs_ns2_vc **success);
320
Alexander Couzensffd49d02020-09-24 00:47:17 +0200321int ns2_recv_vc(struct gprs_ns2_vc *nsvc,
Alexander Couzens6a161492020-07-12 13:45:50 +0200322 struct msgb *msg);
323
324struct gprs_ns2_vc *ns2_vc_alloc(struct gprs_ns2_vc_bind *bind,
325 struct gprs_ns2_nse *nse,
Alexander Couzensd923cff2020-12-01 01:03:52 +0100326 bool initiater,
Harald Welte603f4042020-11-29 17:39:19 +0100327 enum gprs_ns2_vc_mode vc_mode,
328 const char *id);
Alexander Couzens6a161492020-07-12 13:45:50 +0200329
Harald Weltec3aa8f92021-01-31 11:41:34 +0100330int ns2_bind_alloc(struct gprs_ns2_inst *nsi, const char *name,
331 struct gprs_ns2_vc_bind **result);
332
Alexander Couzens8dfc24c2021-01-25 16:09:23 +0100333struct msgb *ns2_msgb_alloc(void);
Alexander Couzens6a161492020-07-12 13:45:50 +0200334
Alexander Couzens8dfc24c2021-01-25 16:09:23 +0100335void ns2_sns_write_vty(struct vty *vty, const struct gprs_ns2_nse *nse);
336void 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 +0200337void ns2_prim_status_ind(struct gprs_ns2_nse *nse,
Daniel Willmann15c09a82020-11-03 23:05:43 +0100338 struct gprs_ns2_vc *nsvc,
Alexander Couzensbf95f0f2020-10-01 22:56:03 +0200339 uint16_t bvci,
Alexander Couzens6a161492020-07-12 13:45:50 +0200340 enum gprs_ns2_affecting_cause cause);
341void ns2_nse_notify_alive(struct gprs_ns2_vc *nsvc, bool alive);
Alexander Couzens4f1128f2021-01-20 17:42:48 +0100342void ns2_nse_update_mtu(struct gprs_ns2_nse *nse);
Harald Welte06d9bf92021-03-05 10:20:11 +0100343int ns2_nse_set_dialect(struct gprs_ns2_nse *nse, enum gprs_ns2_dialect dialect);
Alexander Couzens6a161492020-07-12 13:45:50 +0200344
345/* message */
Alexander Couzens8dfc24c2021-01-25 16:09:23 +0100346int ns2_validate(struct gprs_ns2_vc *nsvc,
347 uint8_t pdu_type,
348 struct msgb *msg,
349 struct tlv_parsed *tp,
350 uint8_t *cause);
Alexander Couzens6a161492020-07-12 13:45:50 +0200351
352/* SNS messages */
353int ns2_tx_sns_ack(struct gprs_ns2_vc *nsvc, uint8_t trans_id, uint8_t *cause,
354 const struct gprs_ns_ie_ip4_elem *ip4_elems,
355 unsigned int num_ip4_elems,
356 const struct gprs_ns_ie_ip6_elem *ip6_elems,
357 unsigned int num_ip6_elems);
358int ns2_tx_sns_config(struct gprs_ns2_vc *nsvc, bool end_flag,
359 const struct gprs_ns_ie_ip4_elem *ip4_elems,
360 unsigned int num_ip4_elems,
361 const struct gprs_ns_ie_ip6_elem *ip6_elems,
362 unsigned int num_ip6_elems);
363int ns2_tx_sns_config_ack(struct gprs_ns2_vc *nsvc, uint8_t *cause);
364int ns2_tx_sns_size(struct gprs_ns2_vc *nsvc, bool reset_flag, uint16_t max_nr_nsvc,
365 int ip4_ep_nr, int ip6_ep_nr);
366int ns2_tx_sns_size_ack(struct gprs_ns2_vc *nsvc, uint8_t *cause);
367
Alexander Couzens27a55922021-02-27 01:08:35 +0100368int ns2_tx_sns_add(struct gprs_ns2_vc *nsvc,
369 uint8_t trans_id,
370 const struct gprs_ns_ie_ip4_elem *ip4_elems,
371 unsigned int num_ip4_elems,
372 const struct gprs_ns_ie_ip6_elem *ip6_elems,
373 unsigned int num_ip6_elems);
374int ns2_tx_sns_change_weight(struct gprs_ns2_vc *nsvc,
375 uint8_t trans_id,
376 const struct gprs_ns_ie_ip4_elem *ip4_elems,
377 unsigned int num_ip4_elems,
378 const struct gprs_ns_ie_ip6_elem *ip6_elems,
379 unsigned int num_ip6_elems);
380int ns2_tx_sns_del(struct gprs_ns2_vc *nsvc,
381 uint8_t trans_id,
382 const struct gprs_ns_ie_ip4_elem *ip4_elems,
383 unsigned int num_ip4_elems,
384 const struct gprs_ns_ie_ip6_elem *ip6_elems,
385 unsigned int num_ip6_elems);
386
Alexander Couzens6a161492020-07-12 13:45:50 +0200387/* transmit message over a VC */
388int ns2_tx_block(struct gprs_ns2_vc *nsvc, uint8_t cause);
389int ns2_tx_block_ack(struct gprs_ns2_vc *nsvc);
390
391int ns2_tx_reset(struct gprs_ns2_vc *nsvc, uint8_t cause);
392int ns2_tx_reset_ack(struct gprs_ns2_vc *nsvc);
393
394int ns2_tx_unblock(struct gprs_ns2_vc *nsvc);
395int ns2_tx_unblock_ack(struct gprs_ns2_vc *nsvc);
396
397int ns2_tx_alive(struct gprs_ns2_vc *nsvc);
398int ns2_tx_alive_ack(struct gprs_ns2_vc *nsvc);
399
400int ns2_tx_unit_data(struct gprs_ns2_vc *nsvc,
401 uint16_t bvci, uint8_t sducontrol,
402 struct msgb *msg);
403
404int ns2_tx_status(struct gprs_ns2_vc *nsvc, uint8_t cause,
405 uint16_t bvci, struct msgb *orig_msg);
406
407/* driver */
Alexander Couzens8dfc24c2021-01-25 16:09:23 +0100408struct gprs_ns2_vc *ns2_ip_bind_connect(struct gprs_ns2_vc_bind *bind,
409 struct gprs_ns2_nse *nse,
410 const struct osmo_sockaddr *remote);
Alexander Couzense769f522020-12-07 07:37:07 +0100411int ns2_ip_count_bind(struct gprs_ns2_inst *nsi, struct osmo_sockaddr *remote);
412struct gprs_ns2_vc_bind *ns2_ip_get_bind_by_index(struct gprs_ns2_inst *nsi,
413 struct osmo_sockaddr *remote,
414 int index);
Alexander Couzens6a161492020-07-12 13:45:50 +0200415
416/* sns */
Alexander Couzens8dfc24c2021-01-25 16:09:23 +0100417int ns2_sns_rx(struct gprs_ns2_vc *nsvc, struct msgb *msg, struct tlv_parsed *tp);
Alexander Couzens6a161492020-07-12 13:45:50 +0200418struct osmo_fsm_inst *ns2_sns_bss_fsm_alloc(struct gprs_ns2_nse *nse,
419 const char *id);
Harald Welte4f127462021-03-02 20:49:10 +0100420struct osmo_fsm_inst *ns2_sns_sgsn_fsm_alloc(struct gprs_ns2_nse *nse, const char *id);
Alexander Couzensbe7cecc2021-02-03 18:25:27 +0100421void ns2_sns_replace_nsvc(struct gprs_ns2_vc *nsvc);
422void ns2_sns_notify_alive(struct gprs_ns2_nse *nse, struct gprs_ns2_vc *nsvc, bool alive);
Alexander Couzensc4704762021-02-08 23:13:12 +0100423void ns2_sns_update_weights(struct gprs_ns2_vc_bind *bind);
Alexander Couzens6a161492020-07-12 13:45:50 +0200424
425/* vc */
Alexander Couzens8dfc24c2021-01-25 16:09:23 +0100426struct osmo_fsm_inst *ns2_vc_fsm_alloc(struct gprs_ns2_vc *nsvc,
Alexander Couzens6a161492020-07-12 13:45:50 +0200427 const char *id, bool initiate);
Alexander Couzens8dfc24c2021-01-25 16:09:23 +0100428int ns2_vc_fsm_start(struct gprs_ns2_vc *nsvc);
429int ns2_vc_force_unconfigured(struct gprs_ns2_vc *nsvc);
430int ns2_vc_rx(struct gprs_ns2_vc *nsvc, struct msgb *msg, struct tlv_parsed *tp);
431int ns2_vc_is_alive(struct gprs_ns2_vc *nsvc);
432int ns2_vc_is_unblocked(struct gprs_ns2_vc *nsvc);
Alexander Couzens47afc422021-01-17 20:12:46 +0100433int ns2_vc_block(struct gprs_ns2_vc *nsvc);
Alexander Couzens27e58732021-03-21 17:12:08 +0100434int ns2_vc_reset(struct gprs_ns2_vc *nsvc);
Alexander Couzens47afc422021-01-17 20:12:46 +0100435int ns2_vc_unblock(struct gprs_ns2_vc *nsvc);
Alexander Couzens75b61882021-03-21 16:18:17 +0100436void ns2_vty_dump_nsvc(struct vty *vty, struct gprs_ns2_vc *nsvc, bool stats);
Alexander Couzens6a161492020-07-12 13:45:50 +0200437
Alexander Couzens6a161492020-07-12 13:45:50 +0200438/* nse */
439void ns2_nse_notify_unblocked(struct gprs_ns2_vc *nsvc, bool unblocked);
Alexander Couzens8dfc24c2021-01-25 16:09:23 +0100440enum gprs_ns2_vc_mode ns2_dialect_to_vc_mode(enum gprs_ns2_dialect dialect);
Alexander Couzens1c8785d2020-12-17 06:58:53 +0100441int ns2_count_transfer_cap(struct gprs_ns2_nse *nse,
442 uint16_t bvci);
Harald Welted164ef82021-03-04 22:29:17 +0100443
444/* vty */
445int ns2_sns_add_sns_default_binds(struct gprs_ns2_nse *nse);