blob: 99a7415c8cf0061639239434d702f0c676c99677 [file] [log] [blame]
Alexander Couzens6a161492020-07-12 13:45:50 +02001/*! \file gprs_ns2.c
2 * GPRS Networks Service (NS) messages on the Gb interface.
3 * 3GPP TS 08.16 version 8.0.1 Release 1999 / ETSI TS 101 299 V8.0.1 (2002-05)
4 * as well as its successor 3GPP TS 48.016 */
5
6/* (C) 2009-2018 by Harald Welte <laforge@gnumonks.org>
7 * (C) 2016-2017,2020 sysmocom - s.f.m.c. GmbH
8 * Author: Alexander Couzens <lynxis@fe80.eu>
9 *
10 *
11 * All Rights Reserved
12 *
13 * SPDX-License-Identifier: GPL-2.0+
14 *
15 * This program is free software; you can redistribute it and/or modify
16 * it under the terms of the GNU General Public License as published by
17 * the Free Software Foundation; either version 2 of the License, or
18 * (at your option) any later version.
19 *
20 * This program is distributed in the hope that it will be useful,
21 * but WITHOUT ANY WARRANTY; without even the implied warranty of
22 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23 * GNU General Public License for more details.
24 *
25 * You should have received a copy of the GNU General Public License
26 * along with this program. If not, see <http://www.gnu.org/licenses/>.
27 *
28 */
29
30/*! \addtogroup libgb
31 * @{
32 *
33 * GPRS Networks Service (NS) messages on the Gb interface
34 * 3GPP TS 08.16 version 8.0.1 Release 1999 / ETSI TS 101 299 V8.0.1 (2002-05)
35 *
36 * Some introduction into NS: NS is used typically on top of frame relay,
37 * but in the ip.access world it is encapsulated in UDP packets. It serves
38 * as an intermediate shim betwen BSSGP and the underlying medium. It doesn't
39 * do much, apart from providing congestion notification and status indication.
40 *
41 * Terms:
42 *
43 * NS Network Service
44 * NSVC NS Virtual Connection
45 * NSEI NS Entity Identifier
46 * NSVL NS Virtual Link
47 * NSVLI NS Virtual Link Identifier
48 * BVC BSSGP Virtual Connection
49 * BVCI BSSGP Virtual Connection Identifier
50 * NSVCG NS Virtual Connection Goup
51 * Blocked NS-VC cannot be used for user traffic
52 * Alive Ability of a NS-VC to provide communication
53 *
54 * There can be multiple BSSGP virtual connections over one (group of) NSVC's. BSSGP will
55 * therefore identify the BSSGP virtual connection by a BVCI passed down to NS.
56 * NS then has to figure out which NSVC's are responsible for this BVCI.
57 * Those mappings are administratively configured.
58 *
59 * This implementation has the following limitations:
Alexander Couzens6a161492020-07-12 13:45:50 +020060 * - NSVCI 65535 and 65534 are reserved for internal use
Alexander Couzens6a161492020-07-12 13:45:50 +020061 * - There are no BLOCK and UNBLOCK timers (yet?)
62 *
63 * \file gprs_ns2.c */
64
65#include <stdlib.h>
66#include <unistd.h>
67#include <errno.h>
68#include <stdint.h>
69
70#include <sys/types.h>
71#include <sys/socket.h>
72#include <arpa/inet.h>
73
74#include <osmocom/core/fsm.h>
Daniel Willmann751977b2020-12-02 18:59:44 +010075#include <osmocom/core/logging.h>
Alexander Couzens6a161492020-07-12 13:45:50 +020076#include <osmocom/core/msgb.h>
77#include <osmocom/core/rate_ctr.h>
78#include <osmocom/core/socket.h>
79#include <osmocom/core/sockaddr_str.h>
80#include <osmocom/core/stats.h>
81#include <osmocom/core/stat_item.h>
82#include <osmocom/core/talloc.h>
83#include <osmocom/gprs/gprs_msgb.h>
84#include <osmocom/gsm/prim.h>
85#include <osmocom/gsm/tlv.h>
86
87#include "gprs_ns2_internal.h"
88
89#define ns_set_state(ns_, st_) ns_set_state_with_log(ns_, st_, false, __FILE__, __LINE__)
90#define ns_set_remote_state(ns_, st_) ns_set_state_with_log(ns_, st_, true, __FILE__, __LINE__)
91#define ns_mark_blocked(ns_) ns_set_state(ns_, (ns_)->state | NSE_S_BLOCKED)
92#define ns_mark_unblocked(ns_) ns_set_state(ns_, (ns_)->state & (~NSE_S_BLOCKED));
93#define ns_mark_alive(ns_) ns_set_state(ns_, (ns_)->state | NSE_S_ALIVE)
94#define ns_mark_dead(ns_) ns_set_state(ns_, (ns_)->state & (~NSE_S_ALIVE));
95
96/* HACK: The NS_IE_IP_ADDR does not follow any known TLV rules.
97 * Since it's a hard ABI break to implement 16 bit tag with fixed length entries to workaround it,
98 * the parser will be called with ns_att_tlvdef1 and if it's failed with ns_att_tlvdef2.
99 * The TLV parser depends on 8bit tag in many places.
100 * The NS_IE_IP_ADDR is only valid for SNS_ACK SNS_ADD and SNS_DELETE.
101 */
102static const struct tlv_definition ns_att_tlvdef1 = {
103 .def = {
104 [NS_IE_CAUSE] = { TLV_TYPE_TvLV, 0 },
105 [NS_IE_VCI] = { TLV_TYPE_TvLV, 0 },
106 [NS_IE_PDU] = { TLV_TYPE_TvLV, 0 },
107 [NS_IE_BVCI] = { TLV_TYPE_TvLV, 0 },
108 [NS_IE_NSEI] = { TLV_TYPE_TvLV, 0 },
109 [NS_IE_IPv4_LIST] = { TLV_TYPE_TvLV, 0 },
110 [NS_IE_IPv6_LIST] = { TLV_TYPE_TvLV, 0 },
111 [NS_IE_MAX_NR_NSVC] = { TLV_TYPE_FIXED, 2 },
112 [NS_IE_IPv4_EP_NR] = { TLV_TYPE_FIXED, 2 },
113 [NS_IE_IPv6_EP_NR] = { TLV_TYPE_FIXED, 2 },
114 [NS_IE_RESET_FLAG] = { TLV_TYPE_TV, 0 },
115 /* NS_IE_IP_ADDR in the IPv4 version */
116 [NS_IE_IP_ADDR] = { TLV_TYPE_FIXED, 5 },
117 },
118};
119
120static const struct tlv_definition ns_att_tlvdef2 = {
121 .def = {
122 [NS_IE_CAUSE] = { TLV_TYPE_TvLV, 0 },
123 [NS_IE_VCI] = { TLV_TYPE_TvLV, 0 },
124 [NS_IE_PDU] = { TLV_TYPE_TvLV, 0 },
125 [NS_IE_BVCI] = { TLV_TYPE_TvLV, 0 },
126 [NS_IE_NSEI] = { TLV_TYPE_TvLV, 0 },
127 [NS_IE_IPv4_LIST] = { TLV_TYPE_TvLV, 0 },
128 [NS_IE_IPv6_LIST] = { TLV_TYPE_TvLV, 0 },
129 [NS_IE_MAX_NR_NSVC] = { TLV_TYPE_FIXED, 2 },
130 [NS_IE_IPv4_EP_NR] = { TLV_TYPE_FIXED, 2 },
131 [NS_IE_IPv6_EP_NR] = { TLV_TYPE_FIXED, 2 },
132 [NS_IE_RESET_FLAG] = { TLV_TYPE_TV, 0 },
133 /* NS_IE_IP_ADDR in the IPv6 version */
134 [NS_IE_IP_ADDR] = { TLV_TYPE_FIXED, 17 },
135 },
136};
137
138
139/* Section 10.3.2, Table 13 */
Alexander Couzensb3b837c2020-10-27 15:12:25 +0100140const struct value_string gprs_ns2_cause_strs[] = {
Alexander Couzens6a161492020-07-12 13:45:50 +0200141 { NS_CAUSE_TRANSIT_FAIL, "Transit network failure" },
142 { NS_CAUSE_OM_INTERVENTION, "O&M intervention" },
143 { NS_CAUSE_EQUIP_FAIL, "Equipment failure" },
144 { NS_CAUSE_NSVC_BLOCKED, "NS-VC blocked" },
145 { NS_CAUSE_NSVC_UNKNOWN, "NS-VC unknown" },
146 { NS_CAUSE_BVCI_UNKNOWN, "BVCI unknown" },
147 { NS_CAUSE_SEM_INCORR_PDU, "Semantically incorrect PDU" },
148 { NS_CAUSE_PDU_INCOMP_PSTATE, "PDU not compatible with protocol state" },
149 { NS_CAUSE_PROTO_ERR_UNSPEC, "Protocol error, unspecified" },
150 { NS_CAUSE_INVAL_ESSENT_IE, "Invalid essential IE" },
151 { NS_CAUSE_MISSING_ESSENT_IE, "Missing essential IE" },
152 { NS_CAUSE_INVAL_NR_IPv4_EP, "Invalid Number of IPv4 Endpoints" },
153 { NS_CAUSE_INVAL_NR_IPv6_EP, "Invalid Number of IPv6 Endpoints" },
154 { NS_CAUSE_INVAL_NR_NS_VC, "Invalid Number of NS-VCs" },
155 { NS_CAUSE_INVAL_WEIGH, "Invalid Weights" },
156 { NS_CAUSE_UNKN_IP_EP, "Unknown IP Endpoint" },
157 { NS_CAUSE_UNKN_IP_ADDR, "Unknown IP Address" },
158 { NS_CAUSE_UNKN_IP_TEST_FAILED, "IP Test Failed" },
159 { 0, NULL }
160};
161
Alexander Couzens6a161492020-07-12 13:45:50 +0200162static const struct rate_ctr_desc nsvc_ctr_description[] = {
Harald Welte3d5eaee2021-01-30 21:33:02 +0100163 [NS_CTR_PKTS_IN] = { "packets:in", "Packets at NS Level ( In)" },
164 [NS_CTR_PKTS_OUT] = { "packets:out", "Packets at NS Level (Out)" },
Harald Weltef22ae5a2021-01-30 22:01:28 +0100165 [NS_CTR_PKTS_OUT_DROP] = { "packets:out:drop", "Dropped Packets (Out)" },
Harald Welte3d5eaee2021-01-30 21:33:02 +0100166 [NS_CTR_BYTES_IN] = { "bytes:in", "Bytes at NS Level ( In)" },
167 [NS_CTR_BYTES_OUT] = { "bytes:out", "Bytes at NS Level (Out)" },
Harald Weltef22ae5a2021-01-30 22:01:28 +0100168 [NS_CTR_BYTES_OUT_DROP] = { "bytes:out:drop", "Dropped Bytes (Out)" },
Harald Welte3d5eaee2021-01-30 21:33:02 +0100169 [NS_CTR_BLOCKED] = { "blocked", "NS-VC Block count " },
Harald Welteb40bf8b2021-01-30 22:43:01 +0100170 [NS_CTR_UNBLOCKED] = { "unblocked", "NS-VC Unblock count " },
Harald Welte3d5eaee2021-01-30 21:33:02 +0100171 [NS_CTR_DEAD] = { "dead", "NS-VC gone dead count " },
172 [NS_CTR_REPLACED] = { "replaced", "NS-VC replaced other count" },
173 [NS_CTR_NSEI_CHG] = { "nsei-chg", "NS-VC changed NSEI count " },
174 [NS_CTR_INV_VCI] = { "inv-nsvci", "NS-VCI was invalid count " },
175 [NS_CTR_INV_NSEI] = { "inv-nsei", "NSEI was invalid count " },
176 [NS_CTR_LOST_ALIVE] = { "lost:alive", "ALIVE ACK missing count " },
177 [NS_CTR_LOST_RESET] = { "lost:reset", "RESET ACK missing count " },
Alexander Couzens6a161492020-07-12 13:45:50 +0200178};
179
180static const struct rate_ctr_group_desc nsvc_ctrg_desc = {
181 .group_name_prefix = "ns:nsvc",
182 .group_description = "NSVC Peer Statistics",
183 .num_ctr = ARRAY_SIZE(nsvc_ctr_description),
184 .ctr_desc = nsvc_ctr_description,
185 .class_id = OSMO_STATS_CLASS_PEER,
186};
187
188
189static const struct osmo_stat_item_desc nsvc_stat_description[] = {
Harald Welte3d5eaee2021-01-30 21:33:02 +0100190 [NS_STAT_ALIVE_DELAY] = { "alive.delay", "ALIVE response time ", "ms", 16, 0 },
Alexander Couzens6a161492020-07-12 13:45:50 +0200191};
192
193static const struct osmo_stat_item_group_desc nsvc_statg_desc = {
194 .group_name_prefix = "ns.nsvc",
195 .group_description = "NSVC Peer Statistics",
196 .num_items = ARRAY_SIZE(nsvc_stat_description),
197 .item_desc = nsvc_stat_description,
198 .class_id = OSMO_STATS_CLASS_PEER,
199};
200
Harald Welte76346072021-01-31 11:54:02 +0100201const struct osmo_stat_item_desc nsbind_stat_description[] = {
202 [NS2_BIND_STAT_BACKLOG_LEN] = { "tx_backlog_length", "Transmit backlog length", "packets", 16, 0 },
203};
204
205static const struct osmo_stat_item_group_desc nsbind_statg_desc = {
206 .group_name_prefix = "ns.bind",
207 .group_description = "NS Bind Statistics",
208 .num_items = ARRAY_SIZE(nsbind_stat_description),
209 .item_desc = nsbind_stat_description,
210 .class_id = OSMO_STATS_CLASS_PEER,
211};
212
Alexander Couzens2498f1d2020-10-27 01:09:01 +0100213const struct value_string gprs_ns2_aff_cause_prim_strs[] = {
Alexander Couzens138b96f2021-01-25 16:23:29 +0100214 { GPRS_NS2_AFF_CAUSE_VC_FAILURE, "NSVC failure" },
215 { GPRS_NS2_AFF_CAUSE_VC_RECOVERY, "NSVC recovery" },
216 { GPRS_NS2_AFF_CAUSE_FAILURE, "NSE failure" },
217 { GPRS_NS2_AFF_CAUSE_RECOVERY, "NSE recovery" },
218 { GPRS_NS2_AFF_CAUSE_SNS_CONFIGURED, "NSE SNS configured" },
219 { GPRS_NS2_AFF_CAUSE_SNS_FAILURE, "NSE SNS failure" },
Alexander Couzens2498f1d2020-10-27 01:09:01 +0100220 { 0, NULL }
221};
222
Alexander Couzens0ab028c2020-11-04 02:41:44 +0100223const struct value_string gprs_ns2_prim_strs[] = {
Alexander Couzens138b96f2021-01-25 16:23:29 +0100224 { GPRS_NS2_PRIM_UNIT_DATA, "UNIT DATA" },
225 { GPRS_NS2_PRIM_CONGESTION, "CONGESTION" },
226 { GPRS_NS2_PRIM_STATUS, "STATUS" },
Alexander Couzens2498f1d2020-10-27 01:09:01 +0100227 { 0, NULL }
228};
229
Harald Weltea24e7ee2020-11-29 17:38:48 +0100230const struct value_string gprs_ns2_lltype_strs[] = {
231 { GPRS_NS2_LL_UDP, "UDP" },
232 { GPRS_NS2_LL_FR_GRE, "FR_GRE" },
233 { GPRS_NS2_LL_FR, "FR" },
234 { 0, NULL }
235};
236
Harald Welte5bef2cc2020-09-18 22:33:24 +0200237/*! string-format a given NS-VC into a user-supplied buffer.
238 * \param[in] buf user-allocated output buffer
239 * \param[in] buf_len size of user-allocated output buffer in bytes
240 * \param[in] nsvc NS-VC to be string-formatted
241 * \return pointer to buf on success; NULL on error */
Alexander Couzens6a161492020-07-12 13:45:50 +0200242char *gprs_ns2_ll_str_buf(char *buf, size_t buf_len, struct gprs_ns2_vc *nsvc)
243{
Alexander Couzens9a4cf272020-10-11 20:48:04 +0200244 const struct osmo_sockaddr *local;
245 const struct osmo_sockaddr *remote;
Alexander Couzens6a161492020-07-12 13:45:50 +0200246 struct osmo_sockaddr_str local_str;
247 struct osmo_sockaddr_str remote_str;
248
249 if (!buf_len)
Harald Welte92ad0292020-09-18 22:34:24 +0200250 return NULL;
Alexander Couzens6a161492020-07-12 13:45:50 +0200251
Alexander Couzensaac90162020-11-19 02:44:04 +0100252 switch (nsvc->nse->ll) {
Alexander Couzens24a14ac2020-11-19 02:34:49 +0100253 case GPRS_NS2_LL_UDP:
Alexander Couzens6a161492020-07-12 13:45:50 +0200254 if (!gprs_ns2_is_ip_bind(nsvc->bind)) {
255 buf[0] = '\0';
256 return buf;
257 }
258
259 local = gprs_ns2_ip_bind_sockaddr(nsvc->bind);
Alexander Couzensc4229a42020-10-11 20:58:04 +0200260 remote = gprs_ns2_ip_vc_remote(nsvc);
Alexander Couzens6a161492020-07-12 13:45:50 +0200261 if (osmo_sockaddr_str_from_sockaddr(&local_str, &local->u.sas))
262 strcpy(local_str.ip, "invalid");
263 if (osmo_sockaddr_str_from_sockaddr(&remote_str, &remote->u.sas))
264 strcpy(remote_str.ip, "invalid");
265
266 if (nsvc->nsvci_is_valid)
267 snprintf(buf, buf_len, "udp)[%s]:%u<%u>[%s]:%u",
268 local_str.ip, local_str.port,
269 nsvc->nsvci,
270 remote_str.ip, remote_str.port);
271 else
272 snprintf(buf, buf_len, "udp)[%s]:%u<>[%s]:%u",
273 local_str.ip, local_str.port,
274 remote_str.ip, remote_str.port);
275 break;
Alexander Couzens24a14ac2020-11-19 02:34:49 +0100276 case GPRS_NS2_LL_FR_GRE:
Alexander Couzens6a161492020-07-12 13:45:50 +0200277 snprintf(buf, buf_len, "frgre)");
278 break;
Alexander Couzens24a14ac2020-11-19 02:34:49 +0100279 case GPRS_NS2_LL_FR:
Alexander Couzens841817e2020-11-19 00:41:29 +0100280 snprintf(buf, buf_len, "fr)netif: %s dlci: %u", gprs_ns2_fr_bind_netif(nsvc->bind),
281 gprs_ns2_fr_nsvc_dlci(nsvc));
282 break;
Alexander Couzens6a161492020-07-12 13:45:50 +0200283 default:
Harald Welte6188e002020-12-01 17:20:07 +0100284 snprintf(buf, buf_len, "unknown)");
Alexander Couzens6a161492020-07-12 13:45:50 +0200285 break;
286 }
287
288 buf[buf_len - 1] = '\0';
289
290 return buf;
291}
292
293/* udp is the longest: udp)[IP6]:65536<65536>[IP6]:65536 */
294#define NS2_LL_MAX_STR 4+2*(INET6_ADDRSTRLEN+9)+8
295
Harald Welte5bef2cc2020-09-18 22:33:24 +0200296/*! string-format a given NS-VC to a thread-local static buffer.
297 * \param[in] nsvc NS-VC to be string-formatted
298 * \return pointer to the string on success; NULL on error */
Alexander Couzens6a161492020-07-12 13:45:50 +0200299const char *gprs_ns2_ll_str(struct gprs_ns2_vc *nsvc)
300{
301 static __thread char buf[NS2_LL_MAX_STR];
302 return gprs_ns2_ll_str_buf(buf, sizeof(buf), nsvc);
303}
304
Harald Welte5bef2cc2020-09-18 22:33:24 +0200305/*! string-format a given NS-VC to a dynamically allocated string.
306 * \param[in] ctx talloc context from which to allocate
307 * \param[in] nsvc NS-VC to be string-formatted
308 * \return pointer to the string on success; NULL on error */
Alexander Couzens6a161492020-07-12 13:45:50 +0200309char *gprs_ns2_ll_str_c(const void *ctx, struct gprs_ns2_vc *nsvc)
310{
311 char *buf = talloc_size(ctx, NS2_LL_MAX_STR);
312 if (!buf)
313 return buf;
314 return gprs_ns2_ll_str_buf(buf, NS2_LL_MAX_STR, nsvc);
315}
316
Daniel Willmannf1286542020-11-03 23:03:33 +0100317/*! Return the current state name of a given NS-VC to a thread-local static buffer.
318 * \param[in] nsvc NS-VC to return the state of
319 * \return pointer to the string on success; NULL on error */
320const char *gprs_ns2_nsvc_state_name(struct gprs_ns2_vc *nsvc)
321{
322 return osmo_fsm_inst_state_name(nsvc->fi);
323}
324
Alexander Couzensfc3dd1f2020-11-19 00:41:47 +0100325/* select a signalling NSVC and respect sig_counter
326 * param[out] reset_counter - all counter has to be resetted to their signal weight
327 * return the chosen nsvc or NULL
328 */
329static struct gprs_ns2_vc *ns2_load_sharing_signal(struct gprs_ns2_nse *nse)
330{
331 struct gprs_ns2_vc *nsvc = NULL, *last = NULL, *tmp;
332
333 llist_for_each_entry(tmp, &nse->nsvc, list) {
334 if (tmp->sig_weight == 0)
335 continue;
Alexander Couzens8dfc24c2021-01-25 16:09:23 +0100336 if (!ns2_vc_is_unblocked(tmp))
Alexander Couzensfc3dd1f2020-11-19 00:41:47 +0100337 continue;
338 if (tmp->sig_counter == 0) {
339 last = tmp;
340 continue;
341 }
342
343 tmp->sig_counter--;
344 nsvc = tmp;
345 break;
346 }
347
348 /* all counter were zero, but there are valid nsvc */
349 if (!nsvc && last) {
350 llist_for_each_entry(tmp, &nse->nsvc, list) {
351 tmp->sig_counter = tmp->sig_weight;
352 }
353
354 last->sig_counter--;
355 return last;
356 } else {
357 return nsvc;
358 }
359}
360
361/* 4.4.1 Load Sharing function for the Frame Relay Sub-Network */
362static struct gprs_ns2_vc *ns2_load_sharing_modulor(
363 struct gprs_ns2_nse *nse,
364 uint16_t bvci,
365 uint32_t load_selector)
366{
367 struct gprs_ns2_vc *tmp;
Alexander Couzens265a5eb2021-02-02 11:26:17 +0100368 uint32_t mod;
Alexander Couzensfc3dd1f2020-11-19 00:41:47 +0100369 uint32_t i = 0;
370
Alexander Couzens265a5eb2021-02-02 11:26:17 +0100371 if (nse->nsvc_count == 0)
372 return NULL;
373
374 mod = (bvci + load_selector) % nse->nsvc_count;
Alexander Couzensfc3dd1f2020-11-19 00:41:47 +0100375 llist_for_each_entry(tmp, &nse->nsvc, list) {
Alexander Couzens8dfc24c2021-01-25 16:09:23 +0100376 if (!ns2_vc_is_unblocked(tmp))
Alexander Couzensfc3dd1f2020-11-19 00:41:47 +0100377 continue;
Alexander Couzensfc3dd1f2020-11-19 00:41:47 +0100378 if (i == mod)
379 return tmp;
380 i++;
381 }
382
383 return NULL;
384}
385
386/* pick the first available data NSVC - no load sharing */
387struct gprs_ns2_vc *ns2_load_sharing_first(struct gprs_ns2_nse *nse)
388{
389 struct gprs_ns2_vc *nsvc = NULL, *tmp;
390
391 llist_for_each_entry(tmp, &nse->nsvc, list) {
Alexander Couzens8dfc24c2021-01-25 16:09:23 +0100392 if (!ns2_vc_is_unblocked(tmp))
Alexander Couzensfc3dd1f2020-11-19 00:41:47 +0100393 continue;
394 if (tmp->data_weight == 0)
395 continue;
396
397 nsvc = tmp;
398 break;
399 }
400
401 return nsvc;
402}
403
404
405static struct gprs_ns2_vc *ns2_load_sharing(
406 struct gprs_ns2_nse *nse,
407 uint16_t bvci,
408 uint32_t link_selector)
409{
410 struct gprs_ns2_vc *nsvc = NULL;
411
Alexander Couzens8a2a1a42020-12-26 18:00:17 +0100412 switch (nse->ll) {
413 case GPRS_NS2_LL_FR:
414 nsvc = ns2_load_sharing_modulor(nse, bvci, link_selector);
415 break;
416 case GPRS_NS2_LL_UDP:
417 default:
418 if (bvci == 0) {
419 /* signalling */
420 nsvc = ns2_load_sharing_signal(nse);
421 } else {
422 /* data with load sharing parameter */
Alexander Couzensfc3dd1f2020-11-19 00:41:47 +0100423 nsvc = ns2_load_sharing_first(nse);
Alexander Couzensfc3dd1f2020-11-19 00:41:47 +0100424 }
Alexander Couzens8a2a1a42020-12-26 18:00:17 +0100425 break;
Alexander Couzensfc3dd1f2020-11-19 00:41:47 +0100426 }
427
428 return nsvc;
429}
430
Harald Welte5bef2cc2020-09-18 22:33:24 +0200431/*! Receive a primitive from the NS User (Gb).
432 * \param[in] nsi NS instance to which the primitive is issued
433 * \param[in] oph The primitive
434 * \return 0 on success; negative on error */
Alexander Couzens6a161492020-07-12 13:45:50 +0200435int gprs_ns2_recv_prim(struct gprs_ns2_inst *nsi, struct osmo_prim_hdr *oph)
436{
Alexander Couzens6a161492020-07-12 13:45:50 +0200437 /* TODO: implement resource distribution */
438 /* TODO: check for empty PDUs which can be sent to Request/Confirm
439 * the IP endpoint */
440 struct osmo_gprs_ns2_prim *nsp;
441 struct gprs_ns2_nse *nse = NULL;
Alexander Couzensfc3dd1f2020-11-19 00:41:47 +0100442 struct gprs_ns2_vc *nsvc = NULL;
Alexander Couzens6a161492020-07-12 13:45:50 +0200443 uint16_t bvci, nsei;
444 uint8_t sducontrol = 0;
445
446 if (oph->sap != SAP_NS)
447 return -EINVAL;
448
449 nsp = container_of(oph, struct osmo_gprs_ns2_prim, oph);
450
Alexander Couzens138b96f2021-01-25 16:23:29 +0100451 if (oph->operation != PRIM_OP_REQUEST || oph->primitive != GPRS_NS2_PRIM_UNIT_DATA)
Alexander Couzens6a161492020-07-12 13:45:50 +0200452 return -EINVAL;
453
454 if (!oph->msg)
455 return -EINVAL;
456
457 bvci = nsp->bvci;
458 nsei = nsp->nsei;
459
460 nse = gprs_ns2_nse_by_nsei(nsi, nsei);
461 if (!nse)
462 return -EINVAL;
463
Alexander Couzens265a5eb2021-02-02 11:26:17 +0100464 if (!nse->alive)
465 return 0;
466
Alexander Couzensfc3dd1f2020-11-19 00:41:47 +0100467 nsvc = ns2_load_sharing(nse, bvci, nsp->u.unitdata.link_selector);
Alexander Couzens6a161492020-07-12 13:45:50 +0200468
469 /* TODO: send a status primitive back */
470 if (!nsvc)
471 return 0;
472
Alexander Couzens138b96f2021-01-25 16:23:29 +0100473 if (nsp->u.unitdata.change == GPRS_NS2_ENDPOINT_REQUEST_CHANGE)
Alexander Couzens6a161492020-07-12 13:45:50 +0200474 sducontrol = 1;
Alexander Couzens138b96f2021-01-25 16:23:29 +0100475 else if (nsp->u.unitdata.change == GPRS_NS2_ENDPOINT_CONFIRM_CHANGE)
Alexander Couzens6a161492020-07-12 13:45:50 +0200476 sducontrol = 2;
477
478 return ns2_tx_unit_data(nsvc, bvci, sducontrol, oph->msg);
479}
480
Harald Welte5bef2cc2020-09-18 22:33:24 +0200481/*! Send a STATUS.ind primitive to the specified NS instance user.
482 * \param[in] nsi NS instance on which we operate
483 * \param[in] nsei NSEI to which the statue relates
484 * \param[in] bvci BVCI to which the status relates
485 * \param[in] cause The cause of the status */
Alexander Couzensbf95f0f2020-10-01 22:56:03 +0200486void ns2_prim_status_ind(struct gprs_ns2_nse *nse,
Daniel Willmann15c09a82020-11-03 23:05:43 +0100487 struct gprs_ns2_vc *nsvc,
Alexander Couzensbf95f0f2020-10-01 22:56:03 +0200488 uint16_t bvci,
Alexander Couzens6a161492020-07-12 13:45:50 +0200489 enum gprs_ns2_affecting_cause cause)
490{
Daniel Willmann15c09a82020-11-03 23:05:43 +0100491 char nsvc_str[NS2_LL_MAX_STR];
Alexander Couzens6a161492020-07-12 13:45:50 +0200492 struct osmo_gprs_ns2_prim nsp = {};
Alexander Couzensbf95f0f2020-10-01 22:56:03 +0200493 nsp.nsei = nse->nsei;
Alexander Couzens6a161492020-07-12 13:45:50 +0200494 nsp.bvci = bvci;
495 nsp.u.status.cause = cause;
Alexander Couzens1c8785d2020-12-17 06:58:53 +0100496 nsp.u.status.transfer = ns2_count_transfer_cap(nse, bvci);
Alexander Couzensda0a2852020-10-01 23:24:07 +0200497 nsp.u.status.first = nse->first;
498 nsp.u.status.persistent = nse->persistent;
Harald Welte86690432021-01-31 16:09:19 +0100499 if (nsvc) {
Daniel Willmann15c09a82020-11-03 23:05:43 +0100500 nsp.u.status.nsvc = gprs_ns2_ll_str_buf(nsvc_str, sizeof(nsvc_str), nsvc);
Harald Welte86690432021-01-31 16:09:19 +0100501 LOGNSVC(nsvc, LOGL_NOTICE, "NS-STATUS.ind(bvci=%05u): cause=%s, transfer=%d, first=%d\n",
502 nsp.bvci, gprs_ns2_aff_cause_prim_str(nsp.u.status.cause),
503 nsp.u.status.transfer, nsp.u.status.first);
504 } else {
505 LOGNSE(nse, LOGL_NOTICE, "NS-STATUS.ind(bvci=%05u): cause=%s, transfer=%d, first=%d\n",
506 nsp.bvci, gprs_ns2_aff_cause_prim_str(nsp.u.status.cause),
507 nsp.u.status.transfer, nsp.u.status.first);
508 }
Daniel Willmann15c09a82020-11-03 23:05:43 +0100509
Harald Welte86690432021-01-31 16:09:19 +0100510 osmo_prim_init(&nsp.oph, SAP_NS, GPRS_NS2_PRIM_STATUS, PRIM_OP_INDICATION, NULL);
Alexander Couzensbf95f0f2020-10-01 22:56:03 +0200511 nse->nsi->cb(&nsp.oph, nse->nsi->cb_data);
Alexander Couzens6a161492020-07-12 13:45:50 +0200512}
513
Harald Welte5bef2cc2020-09-18 22:33:24 +0200514/*! Allocate a NS-VC within the given bind + NSE.
515 * \param[in] bind The 'bind' on which we operate
516 * \param[in] nse The NS Entity on which we operate
517 * \param[in] initiater - if this is an incoming remote (!initiater) or a local outgoing connection (initater)
Harald Welte603f4042020-11-29 17:39:19 +0100518 * \param[in] id - human-readable identifier
Harald Welte5bef2cc2020-09-18 22:33:24 +0200519 * \return newly allocated NS-VC on success; NULL on error */
Alexander Couzensd923cff2020-12-01 01:03:52 +0100520struct gprs_ns2_vc *ns2_vc_alloc(struct gprs_ns2_vc_bind *bind, struct gprs_ns2_nse *nse, bool initiater,
Harald Welte603f4042020-11-29 17:39:19 +0100521 enum gprs_ns2_vc_mode vc_mode, const char *id)
Alexander Couzens6a161492020-07-12 13:45:50 +0200522{
Daniel Willmannbb899052021-01-16 14:02:45 +0100523 /* Sanity check */
524 OSMO_ASSERT(bind->ll == nse->ll);
525
Alexander Couzens6a161492020-07-12 13:45:50 +0200526 struct gprs_ns2_vc *nsvc = talloc_zero(bind, struct gprs_ns2_vc);
527
528 if (!nsvc)
529 return NULL;
530
531 nsvc->bind = bind;
532 nsvc->nse = nse;
Alexander Couzensd923cff2020-12-01 01:03:52 +0100533 nsvc->mode = vc_mode;
Alexander Couzens6a161492020-07-12 13:45:50 +0200534 nsvc->sig_weight = 1;
535 nsvc->data_weight = 1;
536
Harald Welte97ccbf72021-01-31 11:49:19 +0100537 nsvc->ctrg = rate_ctr_group_alloc(nsvc, &nsvc_ctrg_desc, bind->nsi->nsvc_rate_ctr_idx);
Alexander Couzens6a161492020-07-12 13:45:50 +0200538 if (!nsvc->ctrg) {
539 goto err;
540 }
Harald Welte97ccbf72021-01-31 11:49:19 +0100541 nsvc->statg = osmo_stat_item_group_alloc(nsvc, &nsvc_statg_desc, bind->nsi->nsvc_rate_ctr_idx);
Alexander Couzens6a161492020-07-12 13:45:50 +0200542 if (!nsvc->statg)
543 goto err_group;
Alexander Couzens8dfc24c2021-01-25 16:09:23 +0100544 if (!ns2_vc_fsm_alloc(nsvc, id, initiater))
Alexander Couzens6a161492020-07-12 13:45:50 +0200545 goto err_statg;
546
Harald Welte97ccbf72021-01-31 11:49:19 +0100547 bind->nsi->nsvc_rate_ctr_idx++;
Alexander Couzens6a161492020-07-12 13:45:50 +0200548
549 llist_add(&nsvc->list, &nse->nsvc);
550 llist_add(&nsvc->blist, &bind->nsvc);
551
552 return nsvc;
553
554err_statg:
555 osmo_stat_item_group_free(nsvc->statg);
556err_group:
557 rate_ctr_group_free(nsvc->ctrg);
558err:
559 talloc_free(nsvc);
560
561 return NULL;
562}
563
Harald Welte5bef2cc2020-09-18 22:33:24 +0200564/*! Destroy/release given NS-VC.
565 * \param[in] nsvc NS-VC to destroy */
Alexander Couzens6a161492020-07-12 13:45:50 +0200566void gprs_ns2_free_nsvc(struct gprs_ns2_vc *nsvc)
567{
568 if (!nsvc)
569 return;
570
Alexander Couzens138b96f2021-01-25 16:23:29 +0100571 ns2_prim_status_ind(nsvc->nse, nsvc, 0, GPRS_NS2_AFF_CAUSE_VC_FAILURE);
Alexander Couzens6a161492020-07-12 13:45:50 +0200572
573 llist_del(&nsvc->list);
574 llist_del(&nsvc->blist);
575
576 /* notify nse this nsvc is unavailable */
577 ns2_nse_notify_unblocked(nsvc, false);
578
579 /* check if sns is using this VC */
Alexander Couzensbe7cecc2021-02-03 18:25:27 +0100580 ns2_sns_replace_nsvc(nsvc);
Alexander Couzens6a161492020-07-12 13:45:50 +0200581 osmo_fsm_inst_term(nsvc->fi, OSMO_FSM_TERM_REQUEST, NULL);
582
583 /* let the driver/bind clean up it's internal state */
584 if (nsvc->priv && nsvc->bind->free_vc)
585 nsvc->bind->free_vc(nsvc);
586
587 osmo_stat_item_group_free(nsvc->statg);
588 rate_ctr_group_free(nsvc->ctrg);
589
590 talloc_free(nsvc);
591}
592
Alexander Couzens47558792020-12-06 03:16:11 +0100593/*! Destroy/release all NS-VC of given NSE
594 * \param[in] nse NSE
595 */
596void gprs_ns2_free_nsvcs(struct gprs_ns2_nse *nse)
597{
598 struct gprs_ns2_vc *nsvc, *tmp;
599
600 if (!nse)
601 return;
602
603 llist_for_each_entry_safe(nsvc, tmp, &nse->nsvc, list) {
604 gprs_ns2_free_nsvc(nsvc);
605 }
606}
607
Harald Welte5bef2cc2020-09-18 22:33:24 +0200608/*! Allocate a message buffer for use with the NS2 stack. */
Alexander Couzens8dfc24c2021-01-25 16:09:23 +0100609struct msgb *ns2_msgb_alloc(void)
Alexander Couzens6a161492020-07-12 13:45:50 +0200610{
611 struct msgb *msg = msgb_alloc_headroom(NS_ALLOC_SIZE, NS_ALLOC_HEADROOM,
612 "GPRS/NS");
613 if (!msg) {
614 LOGP(DLNS, LOGL_ERROR, "Failed to allocate NS message of size %d\n",
615 NS_ALLOC_SIZE);
616 }
617 return msg;
618}
619
Harald Welte5bef2cc2020-09-18 22:33:24 +0200620/*! Create a status message to be sent over a new connection.
621 * \param[in] orig_msg the original message
622 * \param[in] tp TLVP parsed of the original message
623 * \param[out] reject callee-allocated message buffer of the generated NS-STATUS
624 * \param[in] cause Cause for the rejection
625 * \return 0 on success */
Alexander Couzens6a161492020-07-12 13:45:50 +0200626static int reject_status_msg(struct msgb *orig_msg, struct tlv_parsed *tp, struct msgb **reject, enum ns_cause cause)
627{
Alexander Couzens8dfc24c2021-01-25 16:09:23 +0100628 struct msgb *msg = ns2_msgb_alloc();
Alexander Couzens6a161492020-07-12 13:45:50 +0200629 struct gprs_ns_hdr *nsh;
630 bool have_vci = false;
631 uint8_t _cause = cause;
632 uint16_t nsei = 0;
633
634 if (!msg)
635 return -ENOMEM;
636
Harald Welte798efea2020-12-03 16:01:02 +0100637 if (TLVP_PRES_LEN(tp, NS_IE_NSEI, 2)) {
Alexander Couzens6a161492020-07-12 13:45:50 +0200638 nsei = tlvp_val16be(tp, NS_IE_NSEI);
639
640 LOGP(DLNS, LOGL_NOTICE, "NSEI=%u Rejecting message without NSVCI. Tx NS STATUS (cause=%s)\n",
641 nsei, gprs_ns2_cause_str(cause));
642 }
643
644 msg->l2h = msgb_put(msg, sizeof(*nsh));
645 nsh = (struct gprs_ns_hdr *) msg->l2h;
646 nsh->pdu_type = NS_PDUT_STATUS;
647
648 msgb_tvlv_put(msg, NS_IE_CAUSE, 1, &_cause);
Harald Welte798efea2020-12-03 16:01:02 +0100649 have_vci = TLVP_PRES_LEN(tp, NS_IE_VCI, 2);
Alexander Couzens6a161492020-07-12 13:45:50 +0200650
651 /* Section 9.2.7.1: Static conditions for NS-VCI */
652 if (cause == NS_CAUSE_NSVC_BLOCKED ||
653 cause == NS_CAUSE_NSVC_UNKNOWN) {
654 if (!have_vci) {
655 msgb_free(msg);
656 return -EINVAL;
657 }
658
659 msgb_tvlv_put(msg, NS_IE_VCI, 2, TLVP_VAL(tp, NS_IE_VCI));
660 }
661
662 /* Section 9.2.7.2: Static conditions for NS PDU */
663 switch (cause) {
664 case NS_CAUSE_SEM_INCORR_PDU:
665 case NS_CAUSE_PDU_INCOMP_PSTATE:
666 case NS_CAUSE_PROTO_ERR_UNSPEC:
667 case NS_CAUSE_INVAL_ESSENT_IE:
668 case NS_CAUSE_MISSING_ESSENT_IE:
669 msgb_tvlv_put(msg, NS_IE_PDU, msgb_l2len(orig_msg),
670 orig_msg->l2h);
671 break;
672 default:
673 break;
674 }
675
676 *reject = msg;
677 return 0;
678}
679
Harald Welte5bef2cc2020-09-18 22:33:24 +0200680/*! Resolve a NS Entity based on its NSEI.
681 * \param[in] nsi NS Instance in which we do the look-up
682 * \param[in] nsei NSEI to look up
683 * \return NS Entity in successful case; NULL if none found */
Alexander Couzens6a161492020-07-12 13:45:50 +0200684struct gprs_ns2_nse *gprs_ns2_nse_by_nsei(struct gprs_ns2_inst *nsi, uint16_t nsei)
685{
686 struct gprs_ns2_nse *nse;
687
688 llist_for_each_entry(nse, &nsi->nse, list) {
689 if (nse->nsei == nsei)
690 return nse;
691 }
692
693 return NULL;
694}
695
Harald Welte5bef2cc2020-09-18 22:33:24 +0200696/*! Resolve a NS-VC Entity based on its NS-VCI.
697 * \param[in] nsi NS Instance in which we do the look-up
698 * \param[in] nsvci NS-VCI to look up
699 * \return NS-VC Entity in successful case; NULL if none found */
Alexander Couzens6a161492020-07-12 13:45:50 +0200700struct gprs_ns2_vc *gprs_ns2_nsvc_by_nsvci(struct gprs_ns2_inst *nsi, uint16_t nsvci)
701{
702 struct gprs_ns2_nse *nse;
703 struct gprs_ns2_vc *nsvc;
704
705 llist_for_each_entry(nse, &nsi->nse, list) {
706 llist_for_each_entry(nsvc, &nse->nsvc, list) {
707 if (nsvc->nsvci_is_valid && nsvc->nsvci == nsvci)
708 return nsvc;
709 }
710 }
711
712 return NULL;
713}
714
Harald Welte5bef2cc2020-09-18 22:33:24 +0200715/*! Create a NS Entity within given NS instance.
716 * \param[in] nsi NS instance in which to create NS Entity
717 * \param[in] nsei NS Entity Identifier of to-be-created NSE
718 * \returns newly-allocated NS-E in successful case; NULL on error */
Alexander Couzensd923cff2020-12-01 01:03:52 +0100719struct gprs_ns2_nse *gprs_ns2_create_nse(struct gprs_ns2_inst *nsi, uint16_t nsei,
720 enum gprs_ns2_ll linklayer, enum gprs_ns2_dialect dialect)
Alexander Couzens6a161492020-07-12 13:45:50 +0200721{
722 struct gprs_ns2_nse *nse;
Alexander Couzens93ad4992020-12-06 03:03:03 +0100723 char sns[16];
Alexander Couzens6a161492020-07-12 13:45:50 +0200724
725 nse = gprs_ns2_nse_by_nsei(nsi, nsei);
726 if (nse) {
Harald Weltef2949742021-01-20 14:54:14 +0100727 LOGNSE(nse, LOGL_ERROR, "Can not create a NSE with already taken NSEI\n");
Alexander Couzens6a161492020-07-12 13:45:50 +0200728 return nse;
729 }
730
731 nse = talloc_zero(nsi, struct gprs_ns2_nse);
732 if (!nse)
733 return NULL;
734
Alexander Couzens138b96f2021-01-25 16:23:29 +0100735 if (dialect == GPRS_NS2_DIALECT_SNS) {
Alexander Couzens93ad4992020-12-06 03:03:03 +0100736 snprintf(sns, sizeof(sns), "NSE%05u-SNS", nsei);
737 nse->bss_sns_fi = ns2_sns_bss_fsm_alloc(nse, sns);
738 if (!nse->bss_sns_fi) {
739 talloc_free(nse);
740 return NULL;
741 }
742 }
743
Alexander Couzensd923cff2020-12-01 01:03:52 +0100744 nse->dialect = dialect;
Alexander Couzensaac90162020-11-19 02:44:04 +0100745 nse->ll = linklayer;
Alexander Couzens6a161492020-07-12 13:45:50 +0200746 nse->nsei = nsei;
747 nse->nsi = nsi;
Alexander Couzensda0a2852020-10-01 23:24:07 +0200748 nse->first = true;
Alexander Couzens6a161492020-07-12 13:45:50 +0200749 llist_add(&nse->list, &nsi->nse);
750 INIT_LLIST_HEAD(&nse->nsvc);
751
752 return nse;
753}
754
Alexander Couzens05e7f7d2020-10-11 19:51:46 +0200755/*! Return the NSEI
756 * \param[in] nse NS Entity
757 * \return the nsei.
758 */
759uint16_t gprs_ns2_nse_nsei(struct gprs_ns2_nse *nse)
760{
761 return nse->nsei;
762}
763
Harald Welte5bef2cc2020-09-18 22:33:24 +0200764/*! Destroy given NS Entity.
765 * \param[in] nse NS Entity to destroy */
Alexander Couzens6a161492020-07-12 13:45:50 +0200766void gprs_ns2_free_nse(struct gprs_ns2_nse *nse)
767{
Alexander Couzens6a161492020-07-12 13:45:50 +0200768 if (!nse)
769 return;
770
Alexander Couzensd1cd6502021-01-15 02:16:23 +0100771 nse->alive = false;
Alexander Couzens47558792020-12-06 03:16:11 +0100772 gprs_ns2_free_nsvcs(nse);
Alexander Couzens138b96f2021-01-25 16:23:29 +0100773 ns2_prim_status_ind(nse, NULL, 0, GPRS_NS2_AFF_CAUSE_FAILURE);
Alexander Couzens6a161492020-07-12 13:45:50 +0200774
775 llist_del(&nse->list);
776 if (nse->bss_sns_fi)
777 osmo_fsm_inst_term(nse->bss_sns_fi, OSMO_FSM_TERM_REQUEST, NULL);
778 talloc_free(nse);
779}
780
Alexander Couzens4b6c8af2020-10-11 20:15:25 +0200781void gprs_ns2_free_nses(struct gprs_ns2_inst *nsi)
782{
783 struct gprs_ns2_nse *nse, *ntmp;
784
785 llist_for_each_entry_safe(nse, ntmp, &nsi->nse, list) {
786 gprs_ns2_free_nse(nse);
787 }
788}
789
Alexander Couzens6a161492020-07-12 13:45:50 +0200790static inline int ns2_tlv_parse(struct tlv_parsed *dec,
791 const uint8_t *buf, int buf_len, uint8_t lv_tag,
792 uint8_t lv_tag2)
793{
794 /* workaround for NS_IE_IP_ADDR not following any known TLV rules.
795 * See comment of ns_att_tlvdef1. */
796 int rc = tlv_parse(dec, &ns_att_tlvdef1, buf, buf_len, lv_tag, lv_tag2);
797 if (rc < 0)
798 return tlv_parse(dec, &ns_att_tlvdef2, buf, buf_len, lv_tag, lv_tag2);
799 return rc;
800}
801
802
Harald Welte5bef2cc2020-09-18 22:33:24 +0200803/*! Create a new NS-VC based on a [received] message. Depending on the bind it might create a NSE.
804 * \param[in] bind the bind through which msg was received
805 * \param[in] msg the actual received message
806 * \param[in] logname A name to describe the VC. E.g. ip address pair
807 * \param[out] reject A message filled to be sent back. Only used in failure cases.
808 * \param[out] success A pointer which will be set to the new VC on success
809 * \return enum value indicating the status, e.g. GPRS_NS2_CS_CREATED */
Alexander Couzensba5a9922021-01-25 16:03:23 +0100810enum ns2_cs ns2_create_vc(struct gprs_ns2_vc_bind *bind,
811 struct msgb *msg,
812 const char *logname,
813 struct msgb **reject,
814 struct gprs_ns2_vc **success)
Alexander Couzens6a161492020-07-12 13:45:50 +0200815{
816 struct gprs_ns_hdr *nsh = (struct gprs_ns_hdr *)msg->l2h;
817 struct tlv_parsed tp;
818 struct gprs_ns2_vc *nsvc;
819 struct gprs_ns2_nse *nse;
Alexander Couzensd923cff2020-12-01 01:03:52 +0100820 enum gprs_ns2_dialect dialect;
821 enum gprs_ns2_vc_mode vc_mode;
Alexander Couzens6a161492020-07-12 13:45:50 +0200822 uint16_t nsvci;
823 uint16_t nsei;
Harald Welte603f4042020-11-29 17:39:19 +0100824 char idbuf[32];
Alexander Couzens6a161492020-07-12 13:45:50 +0200825
Alexander Couzens12e5e6b2020-12-10 00:18:17 +0100826 int rc, tlv;
Alexander Couzens6a161492020-07-12 13:45:50 +0200827
828 if (msg->len < sizeof(struct gprs_ns_hdr))
Alexander Couzensba5a9922021-01-25 16:03:23 +0100829 return NS2_CS_ERROR;
Alexander Couzens6a161492020-07-12 13:45:50 +0200830
Alexander Couzens12e5e6b2020-12-10 00:18:17 +0100831 /* parse the tlv early to allow reject status msg to
832 * work with valid tp.
833 * Ignore the return code until the pdu type is parsed because
834 * an unknown pdu type should be ignored */
835 tlv = ns2_tlv_parse(&tp, nsh->data,
Alexander Couzensbac5b012020-12-09 23:32:22 +0100836 msgb_l2len(msg) - sizeof(*nsh), 0, 0);
Alexander Couzensbac5b012020-12-09 23:32:22 +0100837
Alexander Couzensd87a2f12020-11-30 22:20:20 +0100838 switch (nsh->pdu_type) {
839 case NS_PDUT_STATUS:
Alexander Couzens6a161492020-07-12 13:45:50 +0200840 /* Do not respond, see 3GPP TS 08.16, 7.5.1 */
841 LOGP(DLNS, LOGL_INFO, "Ignoring NS STATUS from %s "
842 "for non-existing NS-VC\n",
843 logname);
Alexander Couzensba5a9922021-01-25 16:03:23 +0100844 return NS2_CS_SKIPPED;
Alexander Couzensd87a2f12020-11-30 22:20:20 +0100845 case NS_PDUT_ALIVE_ACK:
Alexander Couzens6a161492020-07-12 13:45:50 +0200846 /* Ignore this, see 3GPP TS 08.16, 7.4.1 */
847 LOGP(DLNS, LOGL_INFO, "Ignoring NS ALIVE ACK from %s "
848 "for non-existing NS-VC\n",
849 logname);
Alexander Couzensba5a9922021-01-25 16:03:23 +0100850 return NS2_CS_SKIPPED;
Alexander Couzensd87a2f12020-11-30 22:20:20 +0100851 case NS_PDUT_RESET_ACK:
Alexander Couzens6a161492020-07-12 13:45:50 +0200852 /* Ignore this, see 3GPP TS 08.16, 7.3.1 */
853 LOGP(DLNS, LOGL_INFO, "Ignoring NS RESET ACK from %s "
854 "for non-existing NS-VC\n",
855 logname);
Alexander Couzensba5a9922021-01-25 16:03:23 +0100856 return NS2_CS_SKIPPED;
Alexander Couzensd87a2f12020-11-30 22:20:20 +0100857 case NS_PDUT_RESET:
858 /* accept PDU RESET when vc_mode matches */
Alexander Couzensd923cff2020-12-01 01:03:52 +0100859 if (bind->accept_ipaccess) {
Alexander Couzens138b96f2021-01-25 16:23:29 +0100860 dialect = GPRS_NS2_DIALECT_IPACCESS;
Alexander Couzensd87a2f12020-11-30 22:20:20 +0100861 break;
Alexander Couzensd923cff2020-12-01 01:03:52 +0100862 }
Alexander Couzens6a161492020-07-12 13:45:50 +0200863
Alexander Couzensd87a2f12020-11-30 22:20:20 +0100864 rc = reject_status_msg(msg, &tp, reject, NS_CAUSE_PDU_INCOMP_PSTATE);
Alexander Couzens3c22f912020-12-10 00:20:18 +0100865 if (rc < 0)
Alexander Couzensd87a2f12020-11-30 22:20:20 +0100866 LOGP(DLNS, LOGL_ERROR, "Failed to generate reject message (%d)\n", rc);
Alexander Couzensba5a9922021-01-25 16:03:23 +0100867 return NS2_CS_REJECTED;
Alexander Couzensd87a2f12020-11-30 22:20:20 +0100868 default:
Alexander Couzens8ebc1ac2020-10-12 03:57:26 +0200869 rc = reject_status_msg(msg, &tp, reject, NS_CAUSE_PDU_INCOMP_PSTATE);
Alexander Couzens3c22f912020-12-10 00:20:18 +0100870 if (rc < 0)
Alexander Couzens8ebc1ac2020-10-12 03:57:26 +0200871 LOGP(DLNS, LOGL_ERROR, "Failed to generate reject message (%d)\n", rc);
Alexander Couzensba5a9922021-01-25 16:03:23 +0100872 return NS2_CS_REJECTED;
Alexander Couzens6a161492020-07-12 13:45:50 +0200873 }
874
Alexander Couzens12e5e6b2020-12-10 00:18:17 +0100875 if (tlv < 0) {
876 /* TODO: correct behaviour would checking what's wrong.
877 * If it's an essential TLV for the PDU return NS_CAUSE_INVAL_ESSENT_IE.
878 * Otherwise ignore the non-essential TLV. */
879 LOGP(DLNS, LOGL_ERROR, "Rx NS RESET Error %d during "
880 "TLV Parse\n", tlv);
881 rc = reject_status_msg(msg, &tp, reject, NS_CAUSE_PROTO_ERR_UNSPEC);
Alexander Couzens3c22f912020-12-10 00:20:18 +0100882 if (rc < 0)
Alexander Couzens12e5e6b2020-12-10 00:18:17 +0100883 LOGP(DLNS, LOGL_ERROR, "Failed to generate reject message (%d)\n", rc);
Alexander Couzensba5a9922021-01-25 16:03:23 +0100884 return NS2_CS_REJECTED;
Alexander Couzens12e5e6b2020-12-10 00:18:17 +0100885 }
886
Harald Welte798efea2020-12-03 16:01:02 +0100887 if (!TLVP_PRES_LEN(&tp, NS_IE_CAUSE, 1) ||
888 !TLVP_PRES_LEN(&tp, NS_IE_VCI, 2) || !TLVP_PRES_LEN(&tp, NS_IE_NSEI, 2)) {
Alexander Couzens8ebc1ac2020-10-12 03:57:26 +0200889 LOGP(DLNS, LOGL_ERROR, "NS RESET Missing mandatory IE\n");
890 rc = reject_status_msg(msg, &tp, reject, NS_CAUSE_MISSING_ESSENT_IE);
Alexander Couzens3c22f912020-12-10 00:20:18 +0100891 if (rc < 0)
892 LOGP(DLNS, LOGL_ERROR, "Failed to generate reject message (%d)\n", rc);
Alexander Couzensba5a9922021-01-25 16:03:23 +0100893 return NS2_CS_REJECTED;
Alexander Couzens6a161492020-07-12 13:45:50 +0200894 }
895
Alexander Couzens6a161492020-07-12 13:45:50 +0200896 nsei = tlvp_val16be(&tp, NS_IE_NSEI);
Alexander Couzens05ac4e52021-01-04 19:07:05 +0100897 nsvci = tlvp_val16be(&tp, NS_IE_VCI);
898
899 /* find or create NSE */
Alexander Couzens6a161492020-07-12 13:45:50 +0200900 nse = gprs_ns2_nse_by_nsei(bind->nsi, nsei);
901 if (!nse) {
Alexander Couzens05ac4e52021-01-04 19:07:05 +0100902 /* only create nse for udp & ipaccess */
Alexander Couzens138b96f2021-01-25 16:23:29 +0100903 if (bind->ll != GPRS_NS2_LL_UDP || dialect != GPRS_NS2_DIALECT_IPACCESS)
Alexander Couzensba5a9922021-01-25 16:03:23 +0100904 return NS2_CS_SKIPPED;
Alexander Couzens05ac4e52021-01-04 19:07:05 +0100905
Alexander Couzens2e1a3a92021-01-27 20:44:41 +0100906 if (!bind->accept_ipaccess)
Alexander Couzensba5a9922021-01-25 16:03:23 +0100907 return NS2_CS_SKIPPED;
Alexander Couzens6a161492020-07-12 13:45:50 +0200908
Alexander Couzensd923cff2020-12-01 01:03:52 +0100909 nse = gprs_ns2_create_nse(bind->nsi, nsei, bind->ll, dialect);
Alexander Couzens6a161492020-07-12 13:45:50 +0200910 if (!nse) {
Alexander Couzens05ac4e52021-01-04 19:07:05 +0100911 LOGP(DLNS, LOGL_ERROR, "Failed to create NSE(%05u)\n", nsei);
Alexander Couzensba5a9922021-01-25 16:03:23 +0100912 return NS2_CS_ERROR;
Alexander Couzens6a161492020-07-12 13:45:50 +0200913 }
Alexander Couzens05ac4e52021-01-04 19:07:05 +0100914 } else {
915 /* nsei already known */
916 if (nse->ll != bind->ll) {
Harald Weltef2949742021-01-20 14:54:14 +0100917 LOGNSE(nse, LOGL_ERROR, "Received NS-RESET NS-VCI(%05u) with wrong linklayer(%s)"
918 " for already known NSE(%s)\n", nsvci, gprs_ns2_lltype_str(bind->ll),
919 gprs_ns2_lltype_str(nse->ll));
Alexander Couzensba5a9922021-01-25 16:03:23 +0100920 return NS2_CS_SKIPPED;
Alexander Couzens05ac4e52021-01-04 19:07:05 +0100921 }
922 }
923
924 nsvc = gprs_ns2_nsvc_by_nsvci(bind->nsi, nsvci);
925 if (nsvc) {
926 if (nsvc->persistent) {
Harald Weltef2949742021-01-20 14:54:14 +0100927 LOGNSVC(nsvc, LOGL_ERROR, "Received NS-RESET for a persistent NSE over wrong connection.\n");
Alexander Couzensba5a9922021-01-25 16:03:23 +0100928 return NS2_CS_SKIPPED;
Alexander Couzens05ac4e52021-01-04 19:07:05 +0100929 }
930 /* destroy old dynamic nsvc */
931 gprs_ns2_free_nsvc(nsvc);
932 }
933
934 /* do nse persistent check late to be more precise on the error message */
935 if (nse->persistent) {
Harald Weltef2949742021-01-20 14:54:14 +0100936 LOGNSE(nse, LOGL_ERROR, "Received NS-RESET for a persistent NSE but the unknown "
937 "NS-VCI(%05u)\n", nsvci);
Alexander Couzensba5a9922021-01-25 16:03:23 +0100938 return NS2_CS_SKIPPED;
Alexander Couzens6a161492020-07-12 13:45:50 +0200939 }
940
Harald Welte603f4042020-11-29 17:39:19 +0100941 nsvci = tlvp_val16be(&tp, NS_IE_VCI);
Alexander Couzens8dfc24c2021-01-25 16:09:23 +0100942 vc_mode = ns2_dialect_to_vc_mode(dialect);
Harald Welte603f4042020-11-29 17:39:19 +0100943 snprintf(idbuf, sizeof(idbuf), "%s-NSE%05u-NSVC%05u", gprs_ns2_lltype_str(nse->ll),
944 nse->nsei, nsvci);
945 nsvc = ns2_vc_alloc(bind, nse, false, vc_mode, idbuf);
Alexander Couzens6a161492020-07-12 13:45:50 +0200946 if (!nsvc)
Alexander Couzensba5a9922021-01-25 16:03:23 +0100947 return NS2_CS_SKIPPED;
Alexander Couzens6a161492020-07-12 13:45:50 +0200948
Alexander Couzens6a161492020-07-12 13:45:50 +0200949 nsvc->nsvci = nsvci;
950 nsvc->nsvci_is_valid = true;
951
952 *success = nsvc;
953
Alexander Couzensba5a9922021-01-25 16:03:23 +0100954 return NS2_CS_CREATED;
Alexander Couzens6a161492020-07-12 13:45:50 +0200955}
956
Harald Welte5bef2cc2020-09-18 22:33:24 +0200957/*! Create, and connect an inactive, new IP-based NS-VC
958 * \param[in] bind bind in which the new NS-VC is to be created
959 * \param[in] remote remote address to which to connect
960 * \param[in] nse NS Entity in which the NS-VC is to be created
961 * \param[in] nsvci is only required when bind->vc_mode == NS2_VC_MODE_BLOCKRESET
962 * \return pointer to newly-allocated, connected and inactive NS-VC; NULL on error */
Alexander Couzens6a161492020-07-12 13:45:50 +0200963struct gprs_ns2_vc *gprs_ns2_ip_connect_inactive(struct gprs_ns2_vc_bind *bind,
Vadim Yanitskiya07f25e2020-10-09 21:47:01 +0700964 const struct osmo_sockaddr *remote,
Alexander Couzens6a161492020-07-12 13:45:50 +0200965 struct gprs_ns2_nse *nse,
966 uint16_t nsvci)
967{
968 struct gprs_ns2_vc *nsvc;
969
Alexander Couzens8dfc24c2021-01-25 16:09:23 +0100970 nsvc = ns2_ip_bind_connect(bind, nse, remote);
Alexander Couzens6a161492020-07-12 13:45:50 +0200971 if (!nsvc)
972 return NULL;
973
Alexander Couzens138b96f2021-01-25 16:23:29 +0100974 if (nsvc->mode == GPRS_NS2_VC_MODE_BLOCKRESET) {
Alexander Couzens6a161492020-07-12 13:45:50 +0200975 nsvc->nsvci = nsvci;
976 nsvc->nsvci_is_valid = true;
977 }
978
979 return nsvc;
980}
981
Harald Welte5bef2cc2020-09-18 22:33:24 +0200982/*! Create, connect and activate a new IP-based NS-VC
983 * \param[in] bind bind in which the new NS-VC is to be created
984 * \param[in] remote remote address to which to connect
985 * \param[in] nse NS Entity in which the NS-VC is to be created
986 * \param[in] nsvci is only required when bind->vc_mode == NS2_VC_MODE_BLOCKRESET
987 * \return pointer to newly-allocated, connected and activated NS-VC; NULL on error */
Alexander Couzens6a161492020-07-12 13:45:50 +0200988struct gprs_ns2_vc *gprs_ns2_ip_connect(struct gprs_ns2_vc_bind *bind,
Vadim Yanitskiya07f25e2020-10-09 21:47:01 +0700989 const struct osmo_sockaddr *remote,
Alexander Couzens6a161492020-07-12 13:45:50 +0200990 struct gprs_ns2_nse *nse,
991 uint16_t nsvci)
992{
993 struct gprs_ns2_vc *nsvc;
994 nsvc = gprs_ns2_ip_connect_inactive(bind, remote, nse, nsvci);
995 if (!nsvc)
996 return NULL;
997
Alexander Couzens8dfc24c2021-01-25 16:09:23 +0100998 ns2_vc_fsm_start(nsvc);
Alexander Couzens6a161492020-07-12 13:45:50 +0200999
1000 return nsvc;
1001}
1002
Harald Welte5bef2cc2020-09-18 22:33:24 +02001003/*! Create, connect and activate a new IP-based NS-VC
1004 * \param[in] bind bind in which the new NS-VC is to be created
1005 * \param[in] remote remote address to which to connect
1006 * \param[in] nsei NSEI of the NS Entity in which the NS-VC is to be created
1007 * \param[in] nsvci is only required when bind->vc_mode == NS2_VC_MODE_BLOCKRESET
1008 * \return pointer to newly-allocated, connected and activated NS-VC; NULL on error */
Alexander Couzens6a161492020-07-12 13:45:50 +02001009struct gprs_ns2_vc *gprs_ns2_ip_connect2(struct gprs_ns2_vc_bind *bind,
Vadim Yanitskiya07f25e2020-10-09 21:47:01 +07001010 const struct osmo_sockaddr *remote,
Alexander Couzens6a161492020-07-12 13:45:50 +02001011 uint16_t nsei,
Alexander Couzensd923cff2020-12-01 01:03:52 +01001012 uint16_t nsvci,
1013 enum gprs_ns2_dialect dialect)
Alexander Couzens6a161492020-07-12 13:45:50 +02001014{
1015 struct gprs_ns2_nse *nse = gprs_ns2_nse_by_nsei(bind->nsi, nsei);
1016
1017 if (!nse) {
Alexander Couzensd923cff2020-12-01 01:03:52 +01001018 nse = gprs_ns2_create_nse(bind->nsi, nsei, GPRS_NS2_LL_UDP, dialect);
Alexander Couzens6a161492020-07-12 13:45:50 +02001019 if (!nse)
1020 return NULL;
1021 }
1022
1023 return gprs_ns2_ip_connect(bind, remote, nse, nsvci);
1024}
1025
Harald Welte5bef2cc2020-09-18 22:33:24 +02001026/*! Find NS-VC for given socket address.
1027 * \param[in] nse NS Entity in which to search
1028 * \param[in] sockaddr socket address to search for
1029 * \return NS-VC matching sockaddr; NULL if none found */
Alexander Couzens38b19e82020-09-23 23:56:37 +02001030struct gprs_ns2_vc *gprs_ns2_nsvc_by_sockaddr_nse(struct gprs_ns2_nse *nse,
Vadim Yanitskiya07f25e2020-10-09 21:47:01 +07001031 const struct osmo_sockaddr *sockaddr)
Alexander Couzens6a161492020-07-12 13:45:50 +02001032{
1033 struct gprs_ns2_vc *nsvc;
Alexander Couzens9a4cf272020-10-11 20:48:04 +02001034 const struct osmo_sockaddr *remote;
Alexander Couzens6a161492020-07-12 13:45:50 +02001035
1036 OSMO_ASSERT(nse);
1037 OSMO_ASSERT(sockaddr);
1038
1039 llist_for_each_entry(nsvc, &nse->nsvc, list) {
Alexander Couzensc4229a42020-10-11 20:58:04 +02001040 remote = gprs_ns2_ip_vc_remote(nsvc);
Alexander Couzens6a161492020-07-12 13:45:50 +02001041 if (!osmo_sockaddr_cmp(sockaddr, remote))
1042 return nsvc;
1043 }
1044
1045 return NULL;
1046}
1047
Alexander Couzens6cb5d5f2020-10-11 23:23:31 +02001048/*!
1049 * Iterate over all nsvc of a NS Entity and call the callback.
1050 * If the callback returns < 0 it aborts the loop and returns the callback return code.
1051 * \param[in] nse NS Entity to iterate over all nsvcs
1052 * \param[in] cb the callback to call
1053 * \param[inout] cb_data the private data of the callback
1054 * \return 0 if the loop completes. If a callback returns < 0 it will returns this value.
1055 */
1056int gprs_ns2_nse_foreach_nsvc(struct gprs_ns2_nse *nse, gprs_ns2_foreach_nsvc_cb cb, void *cb_data)
1057{
1058 struct gprs_ns2_vc *nsvc, *tmp;
1059 int rc = 0;
1060 llist_for_each_entry_safe(nsvc, tmp, &nse->nsvc, list) {
1061 rc = cb(nsvc, cb_data);
1062 if (rc < 0)
1063 return rc;
1064 }
1065
1066 return 0;
1067}
1068
1069
Alexander Couzens6a161492020-07-12 13:45:50 +02001070
Harald Welte5bef2cc2020-09-18 22:33:24 +02001071/*! Bottom-side entry-point for received NS PDU from the driver/bind
Harald Welte5bef2cc2020-09-18 22:33:24 +02001072 * \param[in] nsvc NS-VC for which the message was received
1073 * \param msg the received message. Ownership is trasnferred, caller must not free it!
1074 * \return 0 on success; negative on error */
Alexander Couzensffd49d02020-09-24 00:47:17 +02001075int ns2_recv_vc(struct gprs_ns2_vc *nsvc,
Alexander Couzens6a161492020-07-12 13:45:50 +02001076 struct msgb *msg)
1077{
1078 struct gprs_ns_hdr *nsh = (struct gprs_ns_hdr *) msg->l2h;
Alexander Couzensba634532021-01-25 13:46:38 +01001079 struct tlv_parsed tp = { };
Alexander Couzens6a161492020-07-12 13:45:50 +02001080 int rc = 0;
1081
Daniel Willmann751977b2020-12-02 18:59:44 +01001082 log_set_context(LOG_CTX_GB_NSE, nsvc->nse);
1083 log_set_context(LOG_CTX_GB_NSVC, nsvc);
1084
Harald Weltee5f55f72021-01-30 21:51:15 +01001085 rate_ctr_inc(&nsvc->ctrg->ctr[NS_CTR_PKTS_IN]);
1086 rate_ctr_add(&nsvc->ctrg->ctr[NS_CTR_BYTES_IN], msg->len);
1087
Alexander Couzens6a161492020-07-12 13:45:50 +02001088 if (msg->len < sizeof(struct gprs_ns_hdr))
1089 return -EINVAL;
1090
1091 switch (nsh->pdu_type) {
1092 case SNS_PDUT_CONFIG:
1093 /* one additional byte ('end flag') before the TLV part starts */
1094 rc = ns2_tlv_parse(&tp, nsh->data+1,
1095 msgb_l2len(msg) - sizeof(*nsh)-1, 0, 0);
1096 if (rc < 0) {
Alexander Couzensbb0a53b2020-10-12 04:18:03 +02001097 LOGP(DLNS, LOGL_NOTICE, "Error during TLV Parse in %s\n", msgb_hexdump(msg));
Alexander Couzens6a161492020-07-12 13:45:50 +02001098 return rc;
1099 }
1100 /* All sub-network service related message types */
Alexander Couzens8dfc24c2021-01-25 16:09:23 +01001101 rc = ns2_sns_rx(nsvc, msg, &tp);
Alexander Couzens6a161492020-07-12 13:45:50 +02001102 break;
1103 case SNS_PDUT_ACK:
1104 case SNS_PDUT_ADD:
1105 case SNS_PDUT_CHANGE_WEIGHT:
1106 case SNS_PDUT_DELETE:
1107 /* weird layout: NSEI TLV, then value-only transaction IE, then TLV again */
Harald Welte36be9d82020-10-09 15:39:25 +02001108 rc = ns2_tlv_parse(&tp, nsh->data+5,
1109 msgb_l2len(msg) - sizeof(*nsh)-5, 0, 0);
Alexander Couzens6a161492020-07-12 13:45:50 +02001110 if (rc < 0) {
Alexander Couzensbb0a53b2020-10-12 04:18:03 +02001111 LOGP(DLNS, LOGL_NOTICE, "Error during TLV Parse in %s\n", msgb_hexdump(msg));
Alexander Couzens6a161492020-07-12 13:45:50 +02001112 return rc;
1113 }
1114 tp.lv[NS_IE_NSEI].val = nsh->data+2;
1115 tp.lv[NS_IE_NSEI].len = 2;
1116 tp.lv[NS_IE_TRANS_ID].val = nsh->data+4;
1117 tp.lv[NS_IE_TRANS_ID].len = 1;
Alexander Couzens8dfc24c2021-01-25 16:09:23 +01001118 rc = ns2_sns_rx(nsvc, msg, &tp);
Alexander Couzens6a161492020-07-12 13:45:50 +02001119 break;
1120 case SNS_PDUT_CONFIG_ACK:
1121 case SNS_PDUT_SIZE:
1122 case SNS_PDUT_SIZE_ACK:
1123 rc = ns2_tlv_parse(&tp, nsh->data,
1124 msgb_l2len(msg) - sizeof(*nsh), 0, 0);
1125 if (rc < 0) {
Alexander Couzensbb0a53b2020-10-12 04:18:03 +02001126 LOGP(DLNS, LOGL_NOTICE, "Error during TLV Parse in %s\n", msgb_hexdump(msg));
Alexander Couzens6a161492020-07-12 13:45:50 +02001127 return rc;
1128 }
1129 /* All sub-network service related message types */
Alexander Couzens8dfc24c2021-01-25 16:09:23 +01001130 rc = ns2_sns_rx(nsvc, msg, &tp);
Alexander Couzens6a161492020-07-12 13:45:50 +02001131 break;
1132
1133 case NS_PDUT_UNITDATA:
Alexander Couzens8dfc24c2021-01-25 16:09:23 +01001134 rc = ns2_vc_rx(nsvc, msg, &tp);
Alexander Couzens6a161492020-07-12 13:45:50 +02001135 break;
1136 default:
1137 rc = ns2_tlv_parse(&tp, nsh->data,
1138 msgb_l2len(msg) - sizeof(*nsh), 0, 0);
1139 if (rc < 0) {
Alexander Couzensbb0a53b2020-10-12 04:18:03 +02001140 LOGP(DLNS, LOGL_NOTICE, "Error during TLV Parse\n");
Alexander Couzens6a161492020-07-12 13:45:50 +02001141 if (nsh->pdu_type != NS_PDUT_STATUS)
1142 ns2_tx_status(nsvc, NS_CAUSE_PROTO_ERR_UNSPEC, 0, msg);
1143 return rc;
1144 }
Alexander Couzens8dfc24c2021-01-25 16:09:23 +01001145 rc = ns2_vc_rx(nsvc, msg, &tp);
Alexander Couzens6a161492020-07-12 13:45:50 +02001146 break;
1147 }
1148
1149 return rc;
1150}
1151
Alexander Couzensfc3dd1f2020-11-19 00:41:47 +01001152/* summarize all active data nsvcs */
1153void ns2_nse_data_sum(struct gprs_ns2_nse *nse)
1154{
1155 struct gprs_ns2_vc *nsvc;
Harald Welte3221f872021-01-18 14:58:51 +01001156
Alexander Couzens8a2a1a42020-12-26 18:00:17 +01001157 nse->nsvc_count = 0;
Harald Welte3221f872021-01-18 14:58:51 +01001158 nse->sum_data_weight = 0;
1159 nse->sum_sig_weight = 0;
Alexander Couzensfc3dd1f2020-11-19 00:41:47 +01001160
1161 llist_for_each_entry(nsvc, &nse->nsvc, list) {
Alexander Couzens8dfc24c2021-01-25 16:09:23 +01001162 if (!ns2_vc_is_unblocked(nsvc))
Alexander Couzensfc3dd1f2020-11-19 00:41:47 +01001163 continue;
Alexander Couzens8a2a1a42020-12-26 18:00:17 +01001164
1165 nse->nsvc_count++;
Harald Welte3221f872021-01-18 14:58:51 +01001166 nse->sum_data_weight += nsvc->data_weight;
1167 nse->sum_sig_weight += nsvc->sig_weight;
Alexander Couzensfc3dd1f2020-11-19 00:41:47 +01001168 }
1169}
1170
Harald Welte5bef2cc2020-09-18 22:33:24 +02001171/*! Notify a nse about the change of a NS-VC.
1172 * \param[in] nsvc NS-VC which has detected the change (and shall not be notified).
1173 * \param[in] unblocked whether the NSE should be marked as unblocked (true) or blocked (false) */
Alexander Couzens6a161492020-07-12 13:45:50 +02001174void ns2_nse_notify_unblocked(struct gprs_ns2_vc *nsvc, bool unblocked)
1175{
1176 struct gprs_ns2_nse *nse = nsvc->nse;
Alexander Couzens6a161492020-07-12 13:45:50 +02001177
Alexander Couzensbe7cecc2021-02-03 18:25:27 +01001178 ns2_sns_notify_alive(nse, nsvc, unblocked);
Alexander Couzensfc3dd1f2020-11-19 00:41:47 +01001179 ns2_nse_data_sum(nse);
1180
Alexander Couzens6a161492020-07-12 13:45:50 +02001181 if (unblocked == nse->alive)
1182 return;
1183
Harald Welte3221f872021-01-18 14:58:51 +01001184 /* wait until both data_weight and sig_weight are != 0 before declaring NSE as alive */
1185 if (unblocked && nse->sum_data_weight && nse->sum_sig_weight) {
Alexander Couzens6a161492020-07-12 13:45:50 +02001186 nse->alive = true;
Alexander Couzens138b96f2021-01-25 16:23:29 +01001187 ns2_prim_status_ind(nse, NULL, 0, GPRS_NS2_AFF_CAUSE_RECOVERY);
Alexander Couzensda0a2852020-10-01 23:24:07 +02001188 nse->first = false;
Alexander Couzens6a161492020-07-12 13:45:50 +02001189 return;
1190 }
1191
Harald Welte3221f872021-01-18 14:58:51 +01001192 if (nse->alive && (nse->sum_data_weight == 0 || nse->sum_sig_weight == 0)) {
1193 /* nse became unavailable */
1194 nse->alive = false;
Alexander Couzens138b96f2021-01-25 16:23:29 +01001195 ns2_prim_status_ind(nse, NULL, 0, GPRS_NS2_AFF_CAUSE_FAILURE);
Alexander Couzens6a161492020-07-12 13:45:50 +02001196 }
Alexander Couzens6a161492020-07-12 13:45:50 +02001197}
1198
1199/*! Create a new GPRS NS instance
Harald Welte5bef2cc2020-09-18 22:33:24 +02001200 * \param[in] ctx a talloc context to allocate NS instance from
Alexander Couzenscce88282020-10-26 00:25:50 +01001201 * \param[in] cb Call-back function for dispatching primitives to the user. The Call-back must free all msgb* given in the primitive.
Harald Welte5bef2cc2020-09-18 22:33:24 +02001202 * \param[in] cb_data transparent user data passed to Call-back
1203 * \returns dynamically allocated gprs_ns_inst; NULL on error */
Alexander Couzens6a161492020-07-12 13:45:50 +02001204struct gprs_ns2_inst *gprs_ns2_instantiate(void *ctx, osmo_prim_cb cb, void *cb_data)
1205{
1206 struct gprs_ns2_inst *nsi;
1207
1208 nsi = talloc_zero(ctx, struct gprs_ns2_inst);
1209 if (!nsi)
1210 return NULL;
1211
1212 nsi->cb = cb;
1213 nsi->cb_data = cb_data;
1214 INIT_LLIST_HEAD(&nsi->binding);
1215 INIT_LLIST_HEAD(&nsi->nse);
1216
1217 nsi->timeout[NS_TOUT_TNS_BLOCK] = 3;
1218 nsi->timeout[NS_TOUT_TNS_BLOCK_RETRIES] = 3;
1219 nsi->timeout[NS_TOUT_TNS_RESET] = 3;
1220 nsi->timeout[NS_TOUT_TNS_RESET_RETRIES] = 3;
1221 nsi->timeout[NS_TOUT_TNS_TEST] = 30;
1222 nsi->timeout[NS_TOUT_TNS_ALIVE] = 3;
1223 nsi->timeout[NS_TOUT_TNS_ALIVE_RETRIES] = 10;
1224 nsi->timeout[NS_TOUT_TSNS_PROV] = 3; /* 1..10 */
Alexander Couzens90ee9632020-12-07 06:18:32 +01001225 nsi->timeout[NS_TOUT_TSNS_SIZE_RETRIES] = 3;
1226 nsi->timeout[NS_TOUT_TSNS_CONFIG_RETRIES] = 3;
Alexander Couzens6a161492020-07-12 13:45:50 +02001227
1228 return nsi;
1229}
1230
Harald Welte5bef2cc2020-09-18 22:33:24 +02001231/*! Destroy a NS Instance (including all its NSEs, binds, ...).
1232 * \param[in] nsi NS instance to destroy */
Alexander Couzens6a161492020-07-12 13:45:50 +02001233void gprs_ns2_free(struct gprs_ns2_inst *nsi)
1234{
Alexander Couzens6a161492020-07-12 13:45:50 +02001235 if (!nsi)
1236 return;
1237
Alexander Couzens4b6c8af2020-10-11 20:15:25 +02001238 gprs_ns2_free_nses(nsi);
Alexander Couzens896fcd52020-10-11 19:52:36 +02001239 gprs_ns2_free_binds(nsi);
Alexander Couzens35315042020-10-10 03:28:17 +02001240
1241 talloc_free(nsi);
Alexander Couzens6a161492020-07-12 13:45:50 +02001242}
1243
Harald Welte5bef2cc2020-09-18 22:33:24 +02001244/*! Start the NS-ALIVE FSM in all NS-VCs of given NSE.
1245 * \param[in] nse NS Entity in whihc to start NS-ALIVE FSMs */
Alexander Couzens6a161492020-07-12 13:45:50 +02001246void gprs_ns2_start_alive_all_nsvcs(struct gprs_ns2_nse *nse)
1247{
1248 struct gprs_ns2_vc *nsvc;
1249 OSMO_ASSERT(nse);
1250
1251 llist_for_each_entry(nsvc, &nse->nsvc, list) {
1252 if (nsvc->sns_only)
1253 continue;
1254
Alexander Couzens8dfc24c2021-01-25 16:09:23 +01001255 ns2_vc_fsm_start(nsvc);
Alexander Couzens6a161492020-07-12 13:45:50 +02001256 }
1257}
1258
Harald Welte5bef2cc2020-09-18 22:33:24 +02001259/*! Destroy a given bind.
1260 * \param[in] bind the bind we want to destroy */
Alexander Couzens6a161492020-07-12 13:45:50 +02001261void gprs_ns2_free_bind(struct gprs_ns2_vc_bind *bind)
1262{
1263 struct gprs_ns2_vc *nsvc, *tmp;
1264 if (!bind)
1265 return;
1266
1267 llist_for_each_entry_safe(nsvc, tmp, &bind->nsvc, blist) {
1268 gprs_ns2_free_nsvc(nsvc);
1269 }
1270
1271 if (bind->driver->free_bind)
1272 bind->driver->free_bind(bind);
1273
1274 llist_del(&bind->list);
Harald Welte76346072021-01-31 11:54:02 +01001275 osmo_stat_item_group_free(bind->statg);
Alexander Couzensaaa55a62020-12-03 06:02:03 +01001276 talloc_free((char *)bind->name);
Alexander Couzens6a161492020-07-12 13:45:50 +02001277 talloc_free(bind);
1278}
Alexander Couzens896fcd52020-10-11 19:52:36 +02001279
1280void gprs_ns2_free_binds(struct gprs_ns2_inst *nsi)
1281{
1282 struct gprs_ns2_vc_bind *bind, *tbind;
1283
1284 llist_for_each_entry_safe(bind, tbind, &nsi->binding, list) {
1285 gprs_ns2_free_bind(bind);
1286 }
1287}
Alexander Couzensd923cff2020-12-01 01:03:52 +01001288
Alexander Couzensaaa55a62020-12-03 06:02:03 +01001289/*! Search for a bind with a unique name
1290 * \param[in] nsi NS instance on which we operate
1291 * \param[in] name The unique bind name to search for
1292 * \return the bind or NULL if not found
1293 */
Alexander Couzens8dfc24c2021-01-25 16:09:23 +01001294struct gprs_ns2_vc_bind *gprs_ns2_bind_by_name(struct gprs_ns2_inst *nsi, const char *name)
Alexander Couzensaaa55a62020-12-03 06:02:03 +01001295{
1296 struct gprs_ns2_vc_bind *bind;
1297
1298 llist_for_each_entry(bind, &nsi->binding, list) {
1299 if (!strcmp(bind->name, name))
1300 return bind;
1301 }
1302
1303 return NULL;
1304}
1305
Alexander Couzens8dfc24c2021-01-25 16:09:23 +01001306enum gprs_ns2_vc_mode ns2_dialect_to_vc_mode(enum gprs_ns2_dialect dialect)
Alexander Couzensd923cff2020-12-01 01:03:52 +01001307{
1308 switch (dialect) {
Alexander Couzens138b96f2021-01-25 16:23:29 +01001309 case GPRS_NS2_DIALECT_SNS:
1310 case GPRS_NS2_DIALECT_STATIC_ALIVE:
1311 return GPRS_NS2_VC_MODE_ALIVE;
1312 case GPRS_NS2_DIALECT_STATIC_RESETBLOCK:
1313 case GPRS_NS2_DIALECT_IPACCESS:
1314 return GPRS_NS2_VC_MODE_BLOCKRESET;
Alexander Couzensd923cff2020-12-01 01:03:52 +01001315 default:
1316 return -1;
1317 }
1318}
1319
Alexander Couzens1c8785d2020-12-17 06:58:53 +01001320static void add_bind_array(struct gprs_ns2_vc_bind **array,
1321 struct gprs_ns2_vc_bind *bind, int size)
1322{
1323 int i;
1324 for (i=0; i < size; i++) {
1325 if (array[i] == bind)
1326 return;
1327 if (!array[i])
1328 break;
1329 }
1330
1331 if (i == size)
1332 return;
1333
1334 array[i] = bind;
1335}
1336
1337/*! calculate the transfer capabilities for a nse
1338 * \param nse the nse to count the transfer capability
1339 * \param bvci a bvci - unused
1340 * \return the transfer capability in mbit. On error < 0.
1341 */
1342int ns2_count_transfer_cap(struct gprs_ns2_nse *nse,
1343 uint16_t bvci)
1344{
1345 struct gprs_ns2_vc *nsvc;
1346 struct gprs_ns2_vc_bind **active_binds;
1347 int i, active_nsvcs = 0, transfer_cap = 0;
1348
1349 /* calculate the transfer capabilities based on the binds.
1350 * A bind has a transfer capability which is shared across all NSVCs.
1351 * Take care the bind cap is not counted twice within a NSE.
1352 * This should be accurate for FR and UDP but not for FR/GRE. */
1353
1354 if (!nse->alive)
1355 return 0;
1356
1357 llist_for_each_entry(nsvc, &nse->nsvc, list) {
Alexander Couzens8dfc24c2021-01-25 16:09:23 +01001358 if (ns2_vc_is_unblocked(nsvc))
Alexander Couzens1c8785d2020-12-17 06:58:53 +01001359 active_nsvcs++;
1360 }
1361 /* an alive nse should always have active_nsvcs */
1362 OSMO_ASSERT(active_nsvcs);
1363
1364 active_binds = talloc_zero_array(nse, struct gprs_ns2_vc_bind*, active_nsvcs);
1365 if (!active_binds)
1366 return -ENOMEM;
1367
1368 llist_for_each_entry(nsvc, &nse->nsvc, list) {
Alexander Couzens8dfc24c2021-01-25 16:09:23 +01001369 if (!ns2_vc_is_unblocked(nsvc))
Alexander Couzens1c8785d2020-12-17 06:58:53 +01001370 continue;
1371 add_bind_array(active_binds, nsvc->bind, active_nsvcs);
1372 }
1373
1374 /* TODO: change calcuation for FR/GRE */
1375 for (i = 0; i < active_nsvcs; i++) {
1376 if (active_binds[i])
1377 transfer_cap += active_binds[i]->transfer_capability;
1378 }
1379
1380 talloc_free(active_binds);
1381 return transfer_cap;
1382}
1383
Harald Weltec3aa8f92021-01-31 11:41:34 +01001384/*! common allocation + low-level initialization of a bind. Called by vc-drivers */
1385int ns2_bind_alloc(struct gprs_ns2_inst *nsi, const char *name,
1386 struct gprs_ns2_vc_bind **result)
1387{
1388 struct gprs_ns2_vc_bind *bind;
1389
1390 if (!name)
1391 return -EINVAL;
1392
1393 if (gprs_ns2_bind_by_name(nsi, name))
1394 return -EALREADY;
1395
1396 bind = talloc_zero(nsi, struct gprs_ns2_vc_bind);
1397 if (!bind)
Harald Weltebdfb8b92021-01-31 11:44:57 +01001398 return -ENOMEM;
Harald Weltec3aa8f92021-01-31 11:41:34 +01001399
1400 bind->name = talloc_strdup(bind, name);
1401 if (!bind->name) {
1402 talloc_free(bind);
Harald Weltebdfb8b92021-01-31 11:44:57 +01001403 return -ENOMEM;
Harald Weltec3aa8f92021-01-31 11:41:34 +01001404 }
1405
Harald Welte76346072021-01-31 11:54:02 +01001406 bind->statg = osmo_stat_item_group_alloc(bind, &nsbind_statg_desc, nsi->bind_rate_ctr_idx);
1407 if (!bind->statg) {
1408 talloc_free(bind);
1409 return -ENOMEM;
1410 }
1411
Alexander Couzensc4704762021-02-08 23:13:12 +01001412 bind->sns_sig_weight = 1;
1413 bind->sns_data_weight = 1;
Harald Weltec3aa8f92021-01-31 11:41:34 +01001414 bind->nsi = nsi;
1415 INIT_LLIST_HEAD(&bind->nsvc);
1416 llist_add(&bind->list, &nsi->binding);
1417
Harald Welte76346072021-01-31 11:54:02 +01001418 nsi->bind_rate_ctr_idx++;
1419
Harald Weltec3aa8f92021-01-31 11:41:34 +01001420 if (result)
1421 *result = bind;
1422
1423 return 0;
1424}
1425
Alexander Couzens6a161492020-07-12 13:45:50 +02001426/*! @} */