blob: 4e496c1fee05d0cbb6d1401a97e5bbd48cce6a2f [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
Daniel Willmannefa64f92021-07-09 20:35:00 +0200162static const struct rate_ctr_desc ns_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
Daniel Willmannefa64f92021-07-09 20:35:00 +0200180static const struct rate_ctr_group_desc nse_ctrg_desc = {
181 .group_name_prefix = "ns:nse",
182 .group_description = "NSE Peer Statistics",
183 .num_ctr = ARRAY_SIZE(ns_ctr_description),
184 .ctr_desc = ns_ctr_description,
185 .class_id = OSMO_STATS_CLASS_PEER,
186};
187
Alexander Couzens6a161492020-07-12 13:45:50 +0200188static const struct rate_ctr_group_desc nsvc_ctrg_desc = {
189 .group_name_prefix = "ns:nsvc",
190 .group_description = "NSVC Peer Statistics",
Daniel Willmannefa64f92021-07-09 20:35:00 +0200191 .num_ctr = ARRAY_SIZE(ns_ctr_description),
192 .ctr_desc = ns_ctr_description,
Alexander Couzens6a161492020-07-12 13:45:50 +0200193 .class_id = OSMO_STATS_CLASS_PEER,
194};
195
196
197static const struct osmo_stat_item_desc nsvc_stat_description[] = {
Harald Welte3d5eaee2021-01-30 21:33:02 +0100198 [NS_STAT_ALIVE_DELAY] = { "alive.delay", "ALIVE response time ", "ms", 16, 0 },
Alexander Couzens6a161492020-07-12 13:45:50 +0200199};
200
201static const struct osmo_stat_item_group_desc nsvc_statg_desc = {
202 .group_name_prefix = "ns.nsvc",
203 .group_description = "NSVC Peer Statistics",
204 .num_items = ARRAY_SIZE(nsvc_stat_description),
205 .item_desc = nsvc_stat_description,
206 .class_id = OSMO_STATS_CLASS_PEER,
207};
208
Harald Welte76346072021-01-31 11:54:02 +0100209const struct osmo_stat_item_desc nsbind_stat_description[] = {
210 [NS2_BIND_STAT_BACKLOG_LEN] = { "tx_backlog_length", "Transmit backlog length", "packets", 16, 0 },
211};
212
213static const struct osmo_stat_item_group_desc nsbind_statg_desc = {
214 .group_name_prefix = "ns.bind",
215 .group_description = "NS Bind Statistics",
216 .num_items = ARRAY_SIZE(nsbind_stat_description),
217 .item_desc = nsbind_stat_description,
218 .class_id = OSMO_STATS_CLASS_PEER,
219};
220
Alexander Couzens2498f1d2020-10-27 01:09:01 +0100221const struct value_string gprs_ns2_aff_cause_prim_strs[] = {
Alexander Couzens138b96f2021-01-25 16:23:29 +0100222 { GPRS_NS2_AFF_CAUSE_VC_FAILURE, "NSVC failure" },
223 { GPRS_NS2_AFF_CAUSE_VC_RECOVERY, "NSVC recovery" },
224 { GPRS_NS2_AFF_CAUSE_FAILURE, "NSE failure" },
225 { GPRS_NS2_AFF_CAUSE_RECOVERY, "NSE recovery" },
226 { GPRS_NS2_AFF_CAUSE_SNS_CONFIGURED, "NSE SNS configured" },
227 { GPRS_NS2_AFF_CAUSE_SNS_FAILURE, "NSE SNS failure" },
Alexander Couzensb2de5462021-02-16 16:24:30 +0100228 { GPRS_NS2_AFF_CAUSE_SNS_NO_ENDPOINTS, "NSE SNS no endpoints"},
Alexander Couzens4f1128f2021-01-20 17:42:48 +0100229 { GPRS_NS2_AFF_CAUSE_MTU_CHANGE, "NSE MTU changed" },
Alexander Couzens2498f1d2020-10-27 01:09:01 +0100230 { 0, NULL }
231};
232
Alexander Couzens0ab028c2020-11-04 02:41:44 +0100233const struct value_string gprs_ns2_prim_strs[] = {
Alexander Couzens138b96f2021-01-25 16:23:29 +0100234 { GPRS_NS2_PRIM_UNIT_DATA, "UNIT DATA" },
235 { GPRS_NS2_PRIM_CONGESTION, "CONGESTION" },
236 { GPRS_NS2_PRIM_STATUS, "STATUS" },
Alexander Couzens2498f1d2020-10-27 01:09:01 +0100237 { 0, NULL }
238};
239
Harald Weltea24e7ee2020-11-29 17:38:48 +0100240const struct value_string gprs_ns2_lltype_strs[] = {
241 { GPRS_NS2_LL_UDP, "UDP" },
242 { GPRS_NS2_LL_FR_GRE, "FR_GRE" },
243 { GPRS_NS2_LL_FR, "FR" },
244 { 0, NULL }
245};
246
Harald Welte5bef2cc2020-09-18 22:33:24 +0200247/*! string-format a given NS-VC into a user-supplied buffer.
248 * \param[in] buf user-allocated output buffer
249 * \param[in] buf_len size of user-allocated output buffer in bytes
250 * \param[in] nsvc NS-VC to be string-formatted
251 * \return pointer to buf on success; NULL on error */
Alexander Couzens6a161492020-07-12 13:45:50 +0200252char *gprs_ns2_ll_str_buf(char *buf, size_t buf_len, struct gprs_ns2_vc *nsvc)
253{
Alexander Couzens9a4cf272020-10-11 20:48:04 +0200254 const struct osmo_sockaddr *local;
255 const struct osmo_sockaddr *remote;
Alexander Couzens6a161492020-07-12 13:45:50 +0200256 struct osmo_sockaddr_str local_str;
257 struct osmo_sockaddr_str remote_str;
258
259 if (!buf_len)
Harald Welte92ad0292020-09-18 22:34:24 +0200260 return NULL;
Alexander Couzens6a161492020-07-12 13:45:50 +0200261
Alexander Couzensaac90162020-11-19 02:44:04 +0100262 switch (nsvc->nse->ll) {
Alexander Couzens24a14ac2020-11-19 02:34:49 +0100263 case GPRS_NS2_LL_UDP:
Alexander Couzens6a161492020-07-12 13:45:50 +0200264 if (!gprs_ns2_is_ip_bind(nsvc->bind)) {
265 buf[0] = '\0';
266 return buf;
267 }
268
269 local = gprs_ns2_ip_bind_sockaddr(nsvc->bind);
Alexander Couzensc4229a42020-10-11 20:58:04 +0200270 remote = gprs_ns2_ip_vc_remote(nsvc);
Alexander Couzens6a161492020-07-12 13:45:50 +0200271 if (osmo_sockaddr_str_from_sockaddr(&local_str, &local->u.sas))
272 strcpy(local_str.ip, "invalid");
273 if (osmo_sockaddr_str_from_sockaddr(&remote_str, &remote->u.sas))
274 strcpy(remote_str.ip, "invalid");
275
276 if (nsvc->nsvci_is_valid)
277 snprintf(buf, buf_len, "udp)[%s]:%u<%u>[%s]:%u",
278 local_str.ip, local_str.port,
279 nsvc->nsvci,
280 remote_str.ip, remote_str.port);
281 else
282 snprintf(buf, buf_len, "udp)[%s]:%u<>[%s]:%u",
283 local_str.ip, local_str.port,
284 remote_str.ip, remote_str.port);
285 break;
Alexander Couzens24a14ac2020-11-19 02:34:49 +0100286 case GPRS_NS2_LL_FR_GRE:
Alexander Couzens6a161492020-07-12 13:45:50 +0200287 snprintf(buf, buf_len, "frgre)");
288 break;
Alexander Couzens24a14ac2020-11-19 02:34:49 +0100289 case GPRS_NS2_LL_FR:
Alexander Couzens841817e2020-11-19 00:41:29 +0100290 snprintf(buf, buf_len, "fr)netif: %s dlci: %u", gprs_ns2_fr_bind_netif(nsvc->bind),
291 gprs_ns2_fr_nsvc_dlci(nsvc));
292 break;
Alexander Couzens6a161492020-07-12 13:45:50 +0200293 default:
Harald Welte6188e002020-12-01 17:20:07 +0100294 snprintf(buf, buf_len, "unknown)");
Alexander Couzens6a161492020-07-12 13:45:50 +0200295 break;
296 }
297
298 buf[buf_len - 1] = '\0';
299
300 return buf;
301}
302
303/* udp is the longest: udp)[IP6]:65536<65536>[IP6]:65536 */
304#define NS2_LL_MAX_STR 4+2*(INET6_ADDRSTRLEN+9)+8
305
Harald Welte5bef2cc2020-09-18 22:33:24 +0200306/*! string-format a given NS-VC to a thread-local static buffer.
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 +0200309const char *gprs_ns2_ll_str(struct gprs_ns2_vc *nsvc)
310{
311 static __thread char buf[NS2_LL_MAX_STR];
312 return gprs_ns2_ll_str_buf(buf, sizeof(buf), nsvc);
313}
314
Harald Welte5bef2cc2020-09-18 22:33:24 +0200315/*! string-format a given NS-VC to a dynamically allocated string.
316 * \param[in] ctx talloc context from which to allocate
317 * \param[in] nsvc NS-VC to be string-formatted
318 * \return pointer to the string on success; NULL on error */
Alexander Couzens6a161492020-07-12 13:45:50 +0200319char *gprs_ns2_ll_str_c(const void *ctx, struct gprs_ns2_vc *nsvc)
320{
321 char *buf = talloc_size(ctx, NS2_LL_MAX_STR);
322 if (!buf)
323 return buf;
324 return gprs_ns2_ll_str_buf(buf, NS2_LL_MAX_STR, nsvc);
325}
326
Daniel Willmannf1286542020-11-03 23:03:33 +0100327/*! Return the current state name of a given NS-VC to a thread-local static buffer.
328 * \param[in] nsvc NS-VC to return the state of
329 * \return pointer to the string on success; NULL on error */
330const char *gprs_ns2_nsvc_state_name(struct gprs_ns2_vc *nsvc)
331{
332 return osmo_fsm_inst_state_name(nsvc->fi);
333}
334
Alexander Couzensfc3dd1f2020-11-19 00:41:47 +0100335/* select a signalling NSVC and respect sig_counter
336 * param[out] reset_counter - all counter has to be resetted to their signal weight
337 * return the chosen nsvc or NULL
338 */
339static struct gprs_ns2_vc *ns2_load_sharing_signal(struct gprs_ns2_nse *nse)
340{
341 struct gprs_ns2_vc *nsvc = NULL, *last = NULL, *tmp;
342
343 llist_for_each_entry(tmp, &nse->nsvc, list) {
344 if (tmp->sig_weight == 0)
345 continue;
Alexander Couzens8dfc24c2021-01-25 16:09:23 +0100346 if (!ns2_vc_is_unblocked(tmp))
Alexander Couzensfc3dd1f2020-11-19 00:41:47 +0100347 continue;
348 if (tmp->sig_counter == 0) {
349 last = tmp;
350 continue;
351 }
352
353 tmp->sig_counter--;
354 nsvc = tmp;
355 break;
356 }
357
358 /* all counter were zero, but there are valid nsvc */
359 if (!nsvc && last) {
360 llist_for_each_entry(tmp, &nse->nsvc, list) {
361 tmp->sig_counter = tmp->sig_weight;
362 }
363
364 last->sig_counter--;
365 return last;
366 } else {
367 return nsvc;
368 }
369}
370
371/* 4.4.1 Load Sharing function for the Frame Relay Sub-Network */
Alexander Couzens9e81a322021-02-16 17:36:25 +0100372static struct gprs_ns2_vc *ns2_load_sharing_modulo(
Alexander Couzensfc3dd1f2020-11-19 00:41:47 +0100373 struct gprs_ns2_nse *nse,
374 uint16_t bvci,
375 uint32_t load_selector)
376{
377 struct gprs_ns2_vc *tmp;
Alexander Couzens265a5eb2021-02-02 11:26:17 +0100378 uint32_t mod;
Alexander Couzensfc3dd1f2020-11-19 00:41:47 +0100379 uint32_t i = 0;
380
Alexander Couzens265a5eb2021-02-02 11:26:17 +0100381 if (nse->nsvc_count == 0)
382 return NULL;
383
384 mod = (bvci + load_selector) % nse->nsvc_count;
Alexander Couzensfc3dd1f2020-11-19 00:41:47 +0100385 llist_for_each_entry(tmp, &nse->nsvc, list) {
Alexander Couzens8dfc24c2021-01-25 16:09:23 +0100386 if (!ns2_vc_is_unblocked(tmp))
Alexander Couzensfc3dd1f2020-11-19 00:41:47 +0100387 continue;
Alexander Couzensfc3dd1f2020-11-19 00:41:47 +0100388 if (i == mod)
389 return tmp;
390 i++;
391 }
392
393 return NULL;
394}
395
Alexander Couzensd8a8d982021-02-15 01:07:45 +0100396/* 4.4.2 Load Sharing function for the IP Sub-Network
397 *
398 * Implement a simple approach for UDP load sharing of data weight based on the modulo of the lsp.
399 *
400 * E.g. 3 NSVC: 1st weight 5, 2nd weight 3, 3rd weight 1, lsp = 3.
401 * sum all weights = 9
402 * target_weight = lsp % sum = 3
403 *
404 * 1st NSVC will be the target for 0-4
405 * 2nd NSVC will be the target for 5-7
406 * 3rd NSVC will be the target for 8
407 *
408 * The 1st NSVC will be used.
409 * E.g. lsp = 7. The 2nd NSVC will used.
410 */
411static struct gprs_ns2_vc *ns2_load_sharing_weight_modulo(
412 struct gprs_ns2_nse *nse,
413 uint16_t bvci,
414 uint32_t load_selector)
415{
416 struct gprs_ns2_vc *tmp;
417 uint32_t mod;
418 uint32_t i = 0;
419
420 if (nse->nsvc_count == 0)
421 return NULL;
422
423 mod = (bvci + load_selector) % nse->sum_data_weight;
424 llist_for_each_entry(tmp, &nse->nsvc, list) {
Daniel Willmannc7f547f2021-06-29 13:18:42 +0200425 if (tmp->data_weight == 0)
426 continue;
Alexander Couzensd8a8d982021-02-15 01:07:45 +0100427 if (!ns2_vc_is_unblocked(tmp))
428 continue;
429 if (i == mod || mod < i + tmp->data_weight)
430 return tmp;
431 i += tmp->data_weight;
432 }
433
434 return NULL;
435}
436
Alexander Couzensfc3dd1f2020-11-19 00:41:47 +0100437/* pick the first available data NSVC - no load sharing */
438struct gprs_ns2_vc *ns2_load_sharing_first(struct gprs_ns2_nse *nse)
439{
440 struct gprs_ns2_vc *nsvc = NULL, *tmp;
441
442 llist_for_each_entry(tmp, &nse->nsvc, list) {
Alexander Couzens8dfc24c2021-01-25 16:09:23 +0100443 if (!ns2_vc_is_unblocked(tmp))
Alexander Couzensfc3dd1f2020-11-19 00:41:47 +0100444 continue;
445 if (tmp->data_weight == 0)
446 continue;
447
448 nsvc = tmp;
449 break;
450 }
451
452 return nsvc;
453}
454
455
456static struct gprs_ns2_vc *ns2_load_sharing(
457 struct gprs_ns2_nse *nse,
458 uint16_t bvci,
459 uint32_t link_selector)
460{
461 struct gprs_ns2_vc *nsvc = NULL;
462
Alexander Couzens8a2a1a42020-12-26 18:00:17 +0100463 switch (nse->ll) {
464 case GPRS_NS2_LL_FR:
Alexander Couzens9e81a322021-02-16 17:36:25 +0100465 nsvc = ns2_load_sharing_modulo(nse, bvci, link_selector);
Alexander Couzens8a2a1a42020-12-26 18:00:17 +0100466 break;
467 case GPRS_NS2_LL_UDP:
468 default:
469 if (bvci == 0) {
470 /* signalling */
471 nsvc = ns2_load_sharing_signal(nse);
472 } else {
473 /* data with load sharing parameter */
Alexander Couzensd8a8d982021-02-15 01:07:45 +0100474 nsvc = ns2_load_sharing_weight_modulo(nse, bvci, link_selector);
Alexander Couzensfc3dd1f2020-11-19 00:41:47 +0100475 }
Alexander Couzens8a2a1a42020-12-26 18:00:17 +0100476 break;
Alexander Couzensfc3dd1f2020-11-19 00:41:47 +0100477 }
478
479 return nsvc;
480}
481
Harald Welte5bef2cc2020-09-18 22:33:24 +0200482/*! Receive a primitive from the NS User (Gb).
483 * \param[in] nsi NS instance to which the primitive is issued
484 * \param[in] oph The primitive
485 * \return 0 on success; negative on error */
Alexander Couzens6a161492020-07-12 13:45:50 +0200486int gprs_ns2_recv_prim(struct gprs_ns2_inst *nsi, struct osmo_prim_hdr *oph)
487{
Alexander Couzens6a161492020-07-12 13:45:50 +0200488 /* TODO: implement resource distribution */
489 /* TODO: check for empty PDUs which can be sent to Request/Confirm
490 * the IP endpoint */
491 struct osmo_gprs_ns2_prim *nsp;
492 struct gprs_ns2_nse *nse = NULL;
Alexander Couzensfc3dd1f2020-11-19 00:41:47 +0100493 struct gprs_ns2_vc *nsvc = NULL;
Alexander Couzens6a161492020-07-12 13:45:50 +0200494 uint16_t bvci, nsei;
495 uint8_t sducontrol = 0;
Alexander Couzens6df11602021-02-14 23:39:40 +0100496 int rc = 0;
Alexander Couzens6a161492020-07-12 13:45:50 +0200497
Alexander Couzens6df11602021-02-14 23:39:40 +0100498 if (oph->sap != SAP_NS) {
499 rc = -EINVAL;
500 goto out;
501 }
Alexander Couzens6a161492020-07-12 13:45:50 +0200502
503 nsp = container_of(oph, struct osmo_gprs_ns2_prim, oph);
504
Alexander Couzens6df11602021-02-14 23:39:40 +0100505 if (oph->operation != PRIM_OP_REQUEST || oph->primitive != GPRS_NS2_PRIM_UNIT_DATA) {
506 rc = -EINVAL;
507 goto out;
508 }
Alexander Couzens6a161492020-07-12 13:45:50 +0200509
Alexander Couzens6df11602021-02-14 23:39:40 +0100510 if (!oph->msg) {
511 rc = -EINVAL;
512 goto out;
513 }
Alexander Couzens6a161492020-07-12 13:45:50 +0200514
515 bvci = nsp->bvci;
516 nsei = nsp->nsei;
517
518 nse = gprs_ns2_nse_by_nsei(nsi, nsei);
Alexander Couzens6df11602021-02-14 23:39:40 +0100519 if (!nse) {
520 rc = -EINVAL;
521 goto out;
522 }
Alexander Couzens6a161492020-07-12 13:45:50 +0200523
Alexander Couzens6df11602021-02-14 23:39:40 +0100524 if (!nse->alive) {
525 goto out;
526 }
Alexander Couzens265a5eb2021-02-02 11:26:17 +0100527
Alexander Couzensfc3dd1f2020-11-19 00:41:47 +0100528 nsvc = ns2_load_sharing(nse, bvci, nsp->u.unitdata.link_selector);
Alexander Couzens6a161492020-07-12 13:45:50 +0200529
530 /* TODO: send a status primitive back */
531 if (!nsvc)
Alexander Couzens6df11602021-02-14 23:39:40 +0100532 goto out;
Alexander Couzens6a161492020-07-12 13:45:50 +0200533
Alexander Couzens138b96f2021-01-25 16:23:29 +0100534 if (nsp->u.unitdata.change == GPRS_NS2_ENDPOINT_REQUEST_CHANGE)
Alexander Couzens6a161492020-07-12 13:45:50 +0200535 sducontrol = 1;
Alexander Couzens138b96f2021-01-25 16:23:29 +0100536 else if (nsp->u.unitdata.change == GPRS_NS2_ENDPOINT_CONFIRM_CHANGE)
Alexander Couzens6a161492020-07-12 13:45:50 +0200537 sducontrol = 2;
538
539 return ns2_tx_unit_data(nsvc, bvci, sducontrol, oph->msg);
Alexander Couzens6df11602021-02-14 23:39:40 +0100540
541out:
542 msgb_free(oph->msg);
543 return rc;
Alexander Couzens6a161492020-07-12 13:45:50 +0200544}
545
Harald Welte5bef2cc2020-09-18 22:33:24 +0200546/*! Send a STATUS.ind primitive to the specified NS instance user.
547 * \param[in] nsi NS instance on which we operate
548 * \param[in] nsei NSEI to which the statue relates
549 * \param[in] bvci BVCI to which the status relates
550 * \param[in] cause The cause of the status */
Alexander Couzensbf95f0f2020-10-01 22:56:03 +0200551void ns2_prim_status_ind(struct gprs_ns2_nse *nse,
Daniel Willmann15c09a82020-11-03 23:05:43 +0100552 struct gprs_ns2_vc *nsvc,
Alexander Couzensbf95f0f2020-10-01 22:56:03 +0200553 uint16_t bvci,
Alexander Couzens6a161492020-07-12 13:45:50 +0200554 enum gprs_ns2_affecting_cause cause)
555{
Daniel Willmann15c09a82020-11-03 23:05:43 +0100556 char nsvc_str[NS2_LL_MAX_STR];
Alexander Couzens6a161492020-07-12 13:45:50 +0200557 struct osmo_gprs_ns2_prim nsp = {};
Alexander Couzensbf95f0f2020-10-01 22:56:03 +0200558 nsp.nsei = nse->nsei;
Alexander Couzens6a161492020-07-12 13:45:50 +0200559 nsp.bvci = bvci;
560 nsp.u.status.cause = cause;
Alexander Couzens1c8785d2020-12-17 06:58:53 +0100561 nsp.u.status.transfer = ns2_count_transfer_cap(nse, bvci);
Alexander Couzensda0a2852020-10-01 23:24:07 +0200562 nsp.u.status.first = nse->first;
563 nsp.u.status.persistent = nse->persistent;
Alexander Couzens4f1128f2021-01-20 17:42:48 +0100564 if (nse->mtu < 4)
565 nsp.u.status.mtu = 0;
566 else
567 nsp.u.status.mtu = nse->mtu - 4; /* 1 Byte NS PDU type, 1 Byte NS SDU control, 2 Byte BVCI */
568
Harald Welte86690432021-01-31 16:09:19 +0100569 if (nsvc) {
Daniel Willmann15c09a82020-11-03 23:05:43 +0100570 nsp.u.status.nsvc = gprs_ns2_ll_str_buf(nsvc_str, sizeof(nsvc_str), nsvc);
Alexander Couzens4f1128f2021-01-20 17:42:48 +0100571 LOGNSVC(nsvc, LOGL_NOTICE, "NS-STATUS.ind(bvci=%05u): cause=%s, transfer=%d, first=%d, mtu=%d\n",
Harald Welte86690432021-01-31 16:09:19 +0100572 nsp.bvci, gprs_ns2_aff_cause_prim_str(nsp.u.status.cause),
Alexander Couzens31cf1662021-07-02 17:36:17 +0200573 nsp.u.status.transfer, nsp.u.status.first, nsp.u.status.mtu);
Harald Welte86690432021-01-31 16:09:19 +0100574 } else {
Alexander Couzens4f1128f2021-01-20 17:42:48 +0100575 LOGNSE(nse, LOGL_NOTICE, "NS-STATUS.ind(bvci=%05u): cause=%s, transfer=%d, first=%d, mtu=%d\n",
Harald Welte86690432021-01-31 16:09:19 +0100576 nsp.bvci, gprs_ns2_aff_cause_prim_str(nsp.u.status.cause),
Alexander Couzens31cf1662021-07-02 17:36:17 +0200577 nsp.u.status.transfer, nsp.u.status.first, nsp.u.status.mtu);
Harald Welte86690432021-01-31 16:09:19 +0100578 }
Daniel Willmann15c09a82020-11-03 23:05:43 +0100579
Harald Welte86690432021-01-31 16:09:19 +0100580 osmo_prim_init(&nsp.oph, SAP_NS, GPRS_NS2_PRIM_STATUS, PRIM_OP_INDICATION, NULL);
Alexander Couzensbf95f0f2020-10-01 22:56:03 +0200581 nse->nsi->cb(&nsp.oph, nse->nsi->cb_data);
Alexander Couzens6a161492020-07-12 13:45:50 +0200582}
583
Harald Welte5bef2cc2020-09-18 22:33:24 +0200584/*! Allocate a NS-VC within the given bind + NSE.
585 * \param[in] bind The 'bind' on which we operate
586 * \param[in] nse The NS Entity on which we operate
587 * \param[in] initiater - if this is an incoming remote (!initiater) or a local outgoing connection (initater)
Harald Welte603f4042020-11-29 17:39:19 +0100588 * \param[in] id - human-readable identifier
Harald Welte5bef2cc2020-09-18 22:33:24 +0200589 * \return newly allocated NS-VC on success; NULL on error */
Alexander Couzensd923cff2020-12-01 01:03:52 +0100590struct 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 +0100591 enum gprs_ns2_vc_mode vc_mode, const char *id)
Alexander Couzens6a161492020-07-12 13:45:50 +0200592{
Daniel Willmannbb899052021-01-16 14:02:45 +0100593 /* Sanity check */
594 OSMO_ASSERT(bind->ll == nse->ll);
595
Alexander Couzens6a161492020-07-12 13:45:50 +0200596 struct gprs_ns2_vc *nsvc = talloc_zero(bind, struct gprs_ns2_vc);
597
598 if (!nsvc)
599 return NULL;
600
601 nsvc->bind = bind;
602 nsvc->nse = nse;
Alexander Couzensd923cff2020-12-01 01:03:52 +0100603 nsvc->mode = vc_mode;
Alexander Couzens6a161492020-07-12 13:45:50 +0200604 nsvc->sig_weight = 1;
605 nsvc->data_weight = 1;
606
Harald Welte97ccbf72021-01-31 11:49:19 +0100607 nsvc->ctrg = rate_ctr_group_alloc(nsvc, &nsvc_ctrg_desc, bind->nsi->nsvc_rate_ctr_idx);
Alexander Couzens6a161492020-07-12 13:45:50 +0200608 if (!nsvc->ctrg) {
609 goto err;
610 }
Harald Welte97ccbf72021-01-31 11:49:19 +0100611 nsvc->statg = osmo_stat_item_group_alloc(nsvc, &nsvc_statg_desc, bind->nsi->nsvc_rate_ctr_idx);
Alexander Couzens6a161492020-07-12 13:45:50 +0200612 if (!nsvc->statg)
613 goto err_group;
Alexander Couzens8dfc24c2021-01-25 16:09:23 +0100614 if (!ns2_vc_fsm_alloc(nsvc, id, initiater))
Alexander Couzens6a161492020-07-12 13:45:50 +0200615 goto err_statg;
616
Harald Welte97ccbf72021-01-31 11:49:19 +0100617 bind->nsi->nsvc_rate_ctr_idx++;
Alexander Couzens6a161492020-07-12 13:45:50 +0200618
Michael Iedemaa667d852021-06-09 10:04:57 +0000619 rate_ctr_group_set_name(nsvc->ctrg, id);
Pau Espin Pedrol05047b72021-05-31 13:19:13 +0200620 osmo_stat_item_group_set_name(nsvc->statg, id);
621
Alexander Couzensd5cd8c62021-06-15 20:59:03 +0200622 llist_add_tail(&nsvc->list, &nse->nsvc);
623 llist_add_tail(&nsvc->blist, &bind->nsvc);
Alexander Couzensca5ce0d2021-09-05 23:15:56 +0200624 osmo_clock_gettime(CLOCK_MONOTONIC, &nsvc->ts_alive_change);
Alexander Couzens4f1128f2021-01-20 17:42:48 +0100625 ns2_nse_update_mtu(nse);
Alexander Couzens6a161492020-07-12 13:45:50 +0200626
627 return nsvc;
628
629err_statg:
630 osmo_stat_item_group_free(nsvc->statg);
631err_group:
632 rate_ctr_group_free(nsvc->ctrg);
633err:
634 talloc_free(nsvc);
635
636 return NULL;
637}
638
Harald Welte5bef2cc2020-09-18 22:33:24 +0200639/*! Destroy/release given NS-VC.
640 * \param[in] nsvc NS-VC to destroy */
Alexander Couzens6a161492020-07-12 13:45:50 +0200641void gprs_ns2_free_nsvc(struct gprs_ns2_vc *nsvc)
642{
Alexander Couzens41589a32021-07-19 03:40:02 +0200643 if (!nsvc || nsvc->freed)
Alexander Couzens6a161492020-07-12 13:45:50 +0200644 return;
Alexander Couzens41589a32021-07-19 03:40:02 +0200645 nsvc->freed = true;
Alexander Couzens138b96f2021-01-25 16:23:29 +0100646 ns2_prim_status_ind(nsvc->nse, nsvc, 0, GPRS_NS2_AFF_CAUSE_VC_FAILURE);
Alexander Couzens6a161492020-07-12 13:45:50 +0200647
648 llist_del(&nsvc->list);
649 llist_del(&nsvc->blist);
650
651 /* notify nse this nsvc is unavailable */
652 ns2_nse_notify_unblocked(nsvc, false);
653
654 /* check if sns is using this VC */
Alexander Couzensbe7cecc2021-02-03 18:25:27 +0100655 ns2_sns_replace_nsvc(nsvc);
Alexander Couzens6a161492020-07-12 13:45:50 +0200656 osmo_fsm_inst_term(nsvc->fi, OSMO_FSM_TERM_REQUEST, NULL);
657
658 /* let the driver/bind clean up it's internal state */
659 if (nsvc->priv && nsvc->bind->free_vc)
660 nsvc->bind->free_vc(nsvc);
661
662 osmo_stat_item_group_free(nsvc->statg);
663 rate_ctr_group_free(nsvc->ctrg);
664
665 talloc_free(nsvc);
666}
667
Alexander Couzensf0746592021-07-20 19:05:45 +0200668void ns2_free_nsvcs(struct gprs_ns2_nse *nse)
669{
670 struct gprs_ns2_vc *nsvc;
671
672 /* prevent recursive free() when the user reacts on a down event and free() a second time */
673 while (!llist_empty(&nse->nsvc)) {
674 nsvc = llist_first_entry(&nse->nsvc, struct gprs_ns2_vc, list);
675 gprs_ns2_free_nsvc(nsvc);
676 }
677}
678
Alexander Couzens47558792020-12-06 03:16:11 +0100679/*! Destroy/release all NS-VC of given NSE
680 * \param[in] nse NSE
681 */
682void gprs_ns2_free_nsvcs(struct gprs_ns2_nse *nse)
683{
Alexander Couzens41589a32021-07-19 03:40:02 +0200684 if (!nse || nse->freed)
Alexander Couzens47558792020-12-06 03:16:11 +0100685 return;
686
Alexander Couzens83f06ce2021-08-06 19:50:09 +0200687 if (nse->bss_sns_fi) {
688 osmo_fsm_inst_dispatch(nse->bss_sns_fi, NS2_SNS_EV_REQ_FREE_NSVCS, NULL);
689 } else {
Alexander Couzensf0746592021-07-20 19:05:45 +0200690 ns2_free_nsvcs(nse);
Alexander Couzens47558792020-12-06 03:16:11 +0100691 }
692}
693
Harald Welte5bef2cc2020-09-18 22:33:24 +0200694/*! Allocate a message buffer for use with the NS2 stack. */
Alexander Couzens8dfc24c2021-01-25 16:09:23 +0100695struct msgb *ns2_msgb_alloc(void)
Alexander Couzens6a161492020-07-12 13:45:50 +0200696{
697 struct msgb *msg = msgb_alloc_headroom(NS_ALLOC_SIZE, NS_ALLOC_HEADROOM,
698 "GPRS/NS");
699 if (!msg) {
700 LOGP(DLNS, LOGL_ERROR, "Failed to allocate NS message of size %d\n",
701 NS_ALLOC_SIZE);
702 }
703 return msg;
704}
705
Harald Welte5bef2cc2020-09-18 22:33:24 +0200706/*! Create a status message to be sent over a new connection.
707 * \param[in] orig_msg the original message
708 * \param[in] tp TLVP parsed of the original message
709 * \param[out] reject callee-allocated message buffer of the generated NS-STATUS
710 * \param[in] cause Cause for the rejection
711 * \return 0 on success */
Alexander Couzens6a161492020-07-12 13:45:50 +0200712static int reject_status_msg(struct msgb *orig_msg, struct tlv_parsed *tp, struct msgb **reject, enum ns_cause cause)
713{
Alexander Couzens8dfc24c2021-01-25 16:09:23 +0100714 struct msgb *msg = ns2_msgb_alloc();
Alexander Couzens6a161492020-07-12 13:45:50 +0200715 struct gprs_ns_hdr *nsh;
716 bool have_vci = false;
717 uint8_t _cause = cause;
718 uint16_t nsei = 0;
719
720 if (!msg)
721 return -ENOMEM;
722
Harald Welte798efea2020-12-03 16:01:02 +0100723 if (TLVP_PRES_LEN(tp, NS_IE_NSEI, 2)) {
Alexander Couzens6a161492020-07-12 13:45:50 +0200724 nsei = tlvp_val16be(tp, NS_IE_NSEI);
725
726 LOGP(DLNS, LOGL_NOTICE, "NSEI=%u Rejecting message without NSVCI. Tx NS STATUS (cause=%s)\n",
727 nsei, gprs_ns2_cause_str(cause));
728 }
729
730 msg->l2h = msgb_put(msg, sizeof(*nsh));
731 nsh = (struct gprs_ns_hdr *) msg->l2h;
732 nsh->pdu_type = NS_PDUT_STATUS;
733
734 msgb_tvlv_put(msg, NS_IE_CAUSE, 1, &_cause);
Harald Welte798efea2020-12-03 16:01:02 +0100735 have_vci = TLVP_PRES_LEN(tp, NS_IE_VCI, 2);
Alexander Couzens6a161492020-07-12 13:45:50 +0200736
737 /* Section 9.2.7.1: Static conditions for NS-VCI */
738 if (cause == NS_CAUSE_NSVC_BLOCKED ||
739 cause == NS_CAUSE_NSVC_UNKNOWN) {
740 if (!have_vci) {
741 msgb_free(msg);
742 return -EINVAL;
743 }
744
745 msgb_tvlv_put(msg, NS_IE_VCI, 2, TLVP_VAL(tp, NS_IE_VCI));
746 }
747
748 /* Section 9.2.7.2: Static conditions for NS PDU */
749 switch (cause) {
750 case NS_CAUSE_SEM_INCORR_PDU:
751 case NS_CAUSE_PDU_INCOMP_PSTATE:
752 case NS_CAUSE_PROTO_ERR_UNSPEC:
753 case NS_CAUSE_INVAL_ESSENT_IE:
754 case NS_CAUSE_MISSING_ESSENT_IE:
755 msgb_tvlv_put(msg, NS_IE_PDU, msgb_l2len(orig_msg),
756 orig_msg->l2h);
757 break;
758 default:
759 break;
760 }
761
762 *reject = msg;
763 return 0;
764}
765
Harald Welte5bef2cc2020-09-18 22:33:24 +0200766/*! Resolve a NS Entity based on its NSEI.
767 * \param[in] nsi NS Instance in which we do the look-up
768 * \param[in] nsei NSEI to look up
769 * \return NS Entity in successful case; NULL if none found */
Alexander Couzens6a161492020-07-12 13:45:50 +0200770struct gprs_ns2_nse *gprs_ns2_nse_by_nsei(struct gprs_ns2_inst *nsi, uint16_t nsei)
771{
772 struct gprs_ns2_nse *nse;
773
774 llist_for_each_entry(nse, &nsi->nse, list) {
775 if (nse->nsei == nsei)
776 return nse;
777 }
778
779 return NULL;
780}
781
Harald Welte5bef2cc2020-09-18 22:33:24 +0200782/*! Resolve a NS-VC Entity based on its NS-VCI.
783 * \param[in] nsi NS Instance in which we do the look-up
784 * \param[in] nsvci NS-VCI to look up
785 * \return NS-VC Entity in successful case; NULL if none found */
Alexander Couzens6a161492020-07-12 13:45:50 +0200786struct gprs_ns2_vc *gprs_ns2_nsvc_by_nsvci(struct gprs_ns2_inst *nsi, uint16_t nsvci)
787{
788 struct gprs_ns2_nse *nse;
789 struct gprs_ns2_vc *nsvc;
790
791 llist_for_each_entry(nse, &nsi->nse, list) {
792 llist_for_each_entry(nsvc, &nse->nsvc, list) {
793 if (nsvc->nsvci_is_valid && nsvc->nsvci == nsvci)
794 return nsvc;
795 }
796 }
797
798 return NULL;
799}
800
Harald Welte5bef2cc2020-09-18 22:33:24 +0200801/*! Create a NS Entity within given NS instance.
802 * \param[in] nsi NS instance in which to create NS Entity
803 * \param[in] nsei NS Entity Identifier of to-be-created NSE
Harald Welte5b034fb2021-03-04 14:16:49 +0100804 * \param[in] ip_sns_role_sgsn Does local side implement SGSN role?
Harald Welte5bef2cc2020-09-18 22:33:24 +0200805 * \returns newly-allocated NS-E in successful case; NULL on error */
Harald Welte5b034fb2021-03-04 14:16:49 +0100806struct gprs_ns2_nse *gprs_ns2_create_nse2(struct gprs_ns2_inst *nsi, uint16_t nsei,
807 enum gprs_ns2_ll linklayer, enum gprs_ns2_dialect dialect,
808 bool ip_sns_role_sgsn)
Alexander Couzens6a161492020-07-12 13:45:50 +0200809{
810 struct gprs_ns2_nse *nse;
811
812 nse = gprs_ns2_nse_by_nsei(nsi, nsei);
813 if (nse) {
Harald Weltef2949742021-01-20 14:54:14 +0100814 LOGNSE(nse, LOGL_ERROR, "Can not create a NSE with already taken NSEI\n");
Alexander Couzens6a161492020-07-12 13:45:50 +0200815 return nse;
816 }
817
818 nse = talloc_zero(nsi, struct gprs_ns2_nse);
819 if (!nse)
820 return NULL;
Harald Welte06d9bf92021-03-05 10:20:11 +0100821 nse->dialect = GPRS_NS2_DIALECT_UNDEF;
Harald Welte5b034fb2021-03-04 14:16:49 +0100822 nse->ip_sns_role_sgsn = ip_sns_role_sgsn;
Alexander Couzens6a161492020-07-12 13:45:50 +0200823
Harald Welte06d9bf92021-03-05 10:20:11 +0100824 if (ns2_nse_set_dialect(nse, dialect) < 0) {
825 talloc_free(nse);
826 return NULL;
Alexander Couzens93ad4992020-12-06 03:03:03 +0100827 }
828
Daniel Willmannefa64f92021-07-09 20:35:00 +0200829 nse->ctrg = rate_ctr_group_alloc(nse, &nse_ctrg_desc, nsei);
830 if (!nse->ctrg) {
831 talloc_free(nse);
832 return NULL;
833 }
834
Alexander Couzensaac90162020-11-19 02:44:04 +0100835 nse->ll = linklayer;
Alexander Couzens6a161492020-07-12 13:45:50 +0200836 nse->nsei = nsei;
837 nse->nsi = nsi;
Alexander Couzensda0a2852020-10-01 23:24:07 +0200838 nse->first = true;
Alexander Couzens4f1128f2021-01-20 17:42:48 +0100839 nse->mtu = 0;
Alexander Couzensd5cd8c62021-06-15 20:59:03 +0200840 llist_add_tail(&nse->list, &nsi->nse);
Alexander Couzens6a161492020-07-12 13:45:50 +0200841 INIT_LLIST_HEAD(&nse->nsvc);
Alexander Couzens2c64c252021-09-05 23:15:29 +0200842 osmo_clock_gettime(CLOCK_MONOTONIC, &nse->ts_alive_change);
Alexander Couzens6a161492020-07-12 13:45:50 +0200843
844 return nse;
845}
846
Harald Welte06d9bf92021-03-05 10:20:11 +0100847int ns2_nse_set_dialect(struct gprs_ns2_nse *nse, enum gprs_ns2_dialect dialect)
848{
849 char sns[16];
850
851 if (nse->dialect == dialect)
852 return 0;
853
854 switch (nse->dialect) {
855 case GPRS_NS2_DIALECT_UNDEF:
856 if (dialect == GPRS_NS2_DIALECT_SNS) {
857 snprintf(sns, sizeof(sns), "NSE%05u-SNS", nse->nsei);
Harald Welte5b034fb2021-03-04 14:16:49 +0100858 if (nse->ip_sns_role_sgsn)
859 nse->bss_sns_fi = ns2_sns_sgsn_fsm_alloc(nse, sns);
860 else
861 nse->bss_sns_fi = ns2_sns_bss_fsm_alloc(nse, sns);
Harald Welte06d9bf92021-03-05 10:20:11 +0100862 if (!nse->bss_sns_fi)
863 return -1;
864 }
865 nse->dialect = dialect;
866 break;
867 default:
868 if (dialect == GPRS_NS2_DIALECT_UNDEF) {
869 if (nse->bss_sns_fi)
870 osmo_fsm_inst_term(nse->bss_sns_fi, OSMO_FSM_TERM_REQUEST, NULL);
871 nse->bss_sns_fi = NULL;
872 nse->dialect = GPRS_NS2_DIALECT_UNDEF;
873 } else {
874 /* we don't support arbitrary changes without going through UNDEF first */
875 return -EPERM;
876 }
877 }
878
879 return 0;
880}
881
Harald Welte5b034fb2021-03-04 14:16:49 +0100882/*! Create a NS Entity within given NS instance.
883 * \param[in] nsi NS instance in which to create NS Entity
884 * \param[in] nsei NS Entity Identifier of to-be-created NSE
885 * \returns newly-allocated NS-E in successful case; NULL on error */
886struct gprs_ns2_nse *gprs_ns2_create_nse(struct gprs_ns2_inst *nsi, uint16_t nsei,
887 enum gprs_ns2_ll linklayer, enum gprs_ns2_dialect dialect)
888{
889 return gprs_ns2_create_nse2(nsi, nsei, linklayer, dialect, false);
890}
891
Alexander Couzens05e7f7d2020-10-11 19:51:46 +0200892/*! Return the NSEI
893 * \param[in] nse NS Entity
894 * \return the nsei.
895 */
896uint16_t gprs_ns2_nse_nsei(struct gprs_ns2_nse *nse)
897{
898 return nse->nsei;
899}
900
Harald Welte5bef2cc2020-09-18 22:33:24 +0200901/*! Destroy given NS Entity.
902 * \param[in] nse NS Entity to destroy */
Alexander Couzens6a161492020-07-12 13:45:50 +0200903void gprs_ns2_free_nse(struct gprs_ns2_nse *nse)
904{
Alexander Couzens41589a32021-07-19 03:40:02 +0200905 if (!nse || nse->freed)
Alexander Couzens6a161492020-07-12 13:45:50 +0200906 return;
907
Alexander Couzens41589a32021-07-19 03:40:02 +0200908 nse->freed = true;
Alexander Couzensd1cd6502021-01-15 02:16:23 +0100909 nse->alive = false;
Alexander Couzens26653882021-02-19 12:56:35 +0100910 if (nse->bss_sns_fi) {
911 osmo_fsm_inst_term(nse->bss_sns_fi, OSMO_FSM_TERM_REQUEST, NULL);
912 nse->bss_sns_fi = NULL;
913 }
914
Alexander Couzens47558792020-12-06 03:16:11 +0100915 gprs_ns2_free_nsvcs(nse);
Alexander Couzens138b96f2021-01-25 16:23:29 +0100916 ns2_prim_status_ind(nse, NULL, 0, GPRS_NS2_AFF_CAUSE_FAILURE);
Daniel Willmannefa64f92021-07-09 20:35:00 +0200917 rate_ctr_group_free(nse->ctrg);
Alexander Couzensf0746592021-07-20 19:05:45 +0200918 ns2_free_nsvcs(nse);
Alexander Couzens6a161492020-07-12 13:45:50 +0200919
920 llist_del(&nse->list);
Alexander Couzens6a161492020-07-12 13:45:50 +0200921 talloc_free(nse);
922}
923
Alexander Couzens4b6c8af2020-10-11 20:15:25 +0200924void gprs_ns2_free_nses(struct gprs_ns2_inst *nsi)
925{
Alexander Couzensf0746592021-07-20 19:05:45 +0200926 struct gprs_ns2_nse *nse;
Alexander Couzens4b6c8af2020-10-11 20:15:25 +0200927
Alexander Couzensf0746592021-07-20 19:05:45 +0200928 /* prevent recursive free() when the user reacts on a down event and free() a second time */
929 while (!llist_empty(&nsi->nse)) {
930 nse = llist_first_entry(&nsi->nse, struct gprs_ns2_nse, list);
Alexander Couzens4b6c8af2020-10-11 20:15:25 +0200931 gprs_ns2_free_nse(nse);
932 }
933}
934
Alexander Couzens6a161492020-07-12 13:45:50 +0200935static inline int ns2_tlv_parse(struct tlv_parsed *dec,
936 const uint8_t *buf, int buf_len, uint8_t lv_tag,
937 uint8_t lv_tag2)
938{
939 /* workaround for NS_IE_IP_ADDR not following any known TLV rules.
940 * See comment of ns_att_tlvdef1. */
941 int rc = tlv_parse(dec, &ns_att_tlvdef1, buf, buf_len, lv_tag, lv_tag2);
942 if (rc < 0)
943 return tlv_parse(dec, &ns_att_tlvdef2, buf, buf_len, lv_tag, lv_tag2);
944 return rc;
945}
946
Harald Weltefe0266e2021-03-03 18:12:31 +0100947static enum ns2_cs ns2_create_vc_sns(struct gprs_ns2_vc_bind *bind,
948 const struct osmo_sockaddr *remote,
949 struct gprs_ns2_vc **success, uint16_t nsei)
950{
951 struct gprs_ns2_vc *nsvc;
952 struct gprs_ns2_nse *nse;
953
954 nsvc = gprs_ns2_nsvc_by_sockaddr_bind(bind, remote);
955 /* ns2_create_vc() is only called if no NS-VC could be found */
956 OSMO_ASSERT(!nsvc);
957
958 nse = gprs_ns2_nse_by_nsei(bind->nsi, nsei);
959 if (!nse) {
960 if (!bind->accept_sns) {
961 struct osmo_sockaddr_str remote_str;
962 osmo_sockaddr_str_from_sockaddr(&remote_str, &remote->u.sas);
963 /* no dynamic creation of IP-SNS NSE permitted */
964 LOGP(DLNS, LOGL_ERROR, "[%s]:%u: Dynamic creation of NSE(%05u) via IP-SNS not "
965 "permitted. Check your config.\n", remote_str.ip, remote_str.port, nsei);
966 return NS2_CS_ERROR;
967 }
968 nse = gprs_ns2_create_nse2(bind->nsi, nsei, bind->ll, GPRS_NS2_DIALECT_SNS, true);
969 if (!nse) {
970 LOGP(DLNS, LOGL_ERROR, "Failed to create NSE(%05u)\n", nsei);
971 return NS2_CS_ERROR;
972 }
Harald Welted164ef82021-03-04 22:29:17 +0100973 /* add configured list of default binds; if that fails, use only current bind */
974 if (!ns2_sns_add_sns_default_binds(nse))
975 gprs_ns2_sns_add_bind(nse, bind);
Harald Weltefe0266e2021-03-03 18:12:31 +0100976 } else {
977 /* nsei already known */
978 if (nse->ll != bind->ll) {
979 LOGNSE(nse, LOGL_ERROR, "Received NS-RESET with wrong linklayer(%s)"
980 " for already known NSE(%s)\n", gprs_ns2_lltype_str(bind->ll),
981 gprs_ns2_lltype_str(nse->ll));
982 return NS2_CS_SKIPPED;
983 }
984 }
985
986 nsvc = ns2_ip_bind_connect(bind, nse, remote);
987 if (!nsvc)
988 return NS2_CS_SKIPPED;
989
990 nsvc->nsvci_is_valid = false;
991
992 *success = nsvc;
993
994 return NS2_CS_CREATED;
995}
Alexander Couzens6a161492020-07-12 13:45:50 +0200996
Harald Welte5bef2cc2020-09-18 22:33:24 +0200997/*! Create a new NS-VC based on a [received] message. Depending on the bind it might create a NSE.
998 * \param[in] bind the bind through which msg was received
999 * \param[in] msg the actual received message
Harald Welte7d0daac2021-03-02 23:08:43 +01001000 * \param[in] remote address of remote peer sending message
Harald Welte5bef2cc2020-09-18 22:33:24 +02001001 * \param[in] logname A name to describe the VC. E.g. ip address pair
1002 * \param[out] reject A message filled to be sent back. Only used in failure cases.
1003 * \param[out] success A pointer which will be set to the new VC on success
1004 * \return enum value indicating the status, e.g. GPRS_NS2_CS_CREATED */
Alexander Couzensba5a9922021-01-25 16:03:23 +01001005enum ns2_cs ns2_create_vc(struct gprs_ns2_vc_bind *bind,
1006 struct msgb *msg,
Harald Welte7d0daac2021-03-02 23:08:43 +01001007 const struct osmo_sockaddr *remote,
Alexander Couzensba5a9922021-01-25 16:03:23 +01001008 const char *logname,
1009 struct msgb **reject,
1010 struct gprs_ns2_vc **success)
Alexander Couzens6a161492020-07-12 13:45:50 +02001011{
1012 struct gprs_ns_hdr *nsh = (struct gprs_ns_hdr *)msg->l2h;
1013 struct tlv_parsed tp;
1014 struct gprs_ns2_vc *nsvc;
1015 struct gprs_ns2_nse *nse;
Alexander Couzensd923cff2020-12-01 01:03:52 +01001016 enum gprs_ns2_dialect dialect;
1017 enum gprs_ns2_vc_mode vc_mode;
Alexander Couzens6a161492020-07-12 13:45:50 +02001018 uint16_t nsvci;
1019 uint16_t nsei;
Alexander Couzensd7948062021-06-03 20:35:47 +02001020 const struct osmo_sockaddr *local;
1021 char idbuf[256], tmp[INET6_ADDRSTRLEN + 8];
Alexander Couzens6a161492020-07-12 13:45:50 +02001022
Alexander Couzens12e5e6b2020-12-10 00:18:17 +01001023 int rc, tlv;
Alexander Couzens6a161492020-07-12 13:45:50 +02001024
1025 if (msg->len < sizeof(struct gprs_ns_hdr))
Alexander Couzensba5a9922021-01-25 16:03:23 +01001026 return NS2_CS_ERROR;
Alexander Couzens6a161492020-07-12 13:45:50 +02001027
Alexander Couzens12e5e6b2020-12-10 00:18:17 +01001028 /* parse the tlv early to allow reject status msg to
1029 * work with valid tp.
1030 * Ignore the return code until the pdu type is parsed because
1031 * an unknown pdu type should be ignored */
1032 tlv = ns2_tlv_parse(&tp, nsh->data,
Alexander Couzensbac5b012020-12-09 23:32:22 +01001033 msgb_l2len(msg) - sizeof(*nsh), 0, 0);
Alexander Couzensbac5b012020-12-09 23:32:22 +01001034
Harald Weltefe0266e2021-03-03 18:12:31 +01001035 if (bind->ll == GPRS_NS2_LL_UDP && nsh->pdu_type == SNS_PDUT_SIZE && tlv >= 0) {
1036 uint16_t nsei;
1037
1038 if (!TLVP_PRES_LEN(&tp, NS_IE_NSEI, 2)) {
1039 rc = reject_status_msg(msg, &tp, reject, NS_CAUSE_MISSING_ESSENT_IE);
1040 if (rc < 0)
1041 LOGP(DLNS, LOGL_ERROR, "Failed to generate reject message (%d)\n", rc);
1042 return NS2_CS_REJECTED;
1043 }
1044 nsei = tlvp_val16be(&tp, NS_IE_NSEI);
1045 /* Create NS-VC, and if required, even NSE dynamically */
1046 return ns2_create_vc_sns(bind, remote, success, nsei);
1047 }
1048
Alexander Couzensd87a2f12020-11-30 22:20:20 +01001049 switch (nsh->pdu_type) {
1050 case NS_PDUT_STATUS:
Alexander Couzens6a161492020-07-12 13:45:50 +02001051 /* Do not respond, see 3GPP TS 08.16, 7.5.1 */
1052 LOGP(DLNS, LOGL_INFO, "Ignoring NS STATUS from %s "
1053 "for non-existing NS-VC\n",
1054 logname);
Alexander Couzensba5a9922021-01-25 16:03:23 +01001055 return NS2_CS_SKIPPED;
Alexander Couzensd87a2f12020-11-30 22:20:20 +01001056 case NS_PDUT_ALIVE_ACK:
Alexander Couzens6a161492020-07-12 13:45:50 +02001057 /* Ignore this, see 3GPP TS 08.16, 7.4.1 */
1058 LOGP(DLNS, LOGL_INFO, "Ignoring NS ALIVE ACK from %s "
1059 "for non-existing NS-VC\n",
1060 logname);
Alexander Couzensba5a9922021-01-25 16:03:23 +01001061 return NS2_CS_SKIPPED;
Alexander Couzensd87a2f12020-11-30 22:20:20 +01001062 case NS_PDUT_RESET_ACK:
Alexander Couzens6a161492020-07-12 13:45:50 +02001063 /* Ignore this, see 3GPP TS 08.16, 7.3.1 */
1064 LOGP(DLNS, LOGL_INFO, "Ignoring NS RESET ACK from %s "
1065 "for non-existing NS-VC\n",
1066 logname);
Alexander Couzensba5a9922021-01-25 16:03:23 +01001067 return NS2_CS_SKIPPED;
Alexander Couzensd87a2f12020-11-30 22:20:20 +01001068 case NS_PDUT_RESET:
1069 /* accept PDU RESET when vc_mode matches */
Alexander Couzensd923cff2020-12-01 01:03:52 +01001070 if (bind->accept_ipaccess) {
Alexander Couzens138b96f2021-01-25 16:23:29 +01001071 dialect = GPRS_NS2_DIALECT_IPACCESS;
Alexander Couzensd87a2f12020-11-30 22:20:20 +01001072 break;
Alexander Couzensd923cff2020-12-01 01:03:52 +01001073 }
Alexander Couzens6a161492020-07-12 13:45:50 +02001074
Alexander Couzensd87a2f12020-11-30 22:20:20 +01001075 rc = reject_status_msg(msg, &tp, reject, NS_CAUSE_PDU_INCOMP_PSTATE);
Alexander Couzens3c22f912020-12-10 00:20:18 +01001076 if (rc < 0)
Alexander Couzensd87a2f12020-11-30 22:20:20 +01001077 LOGP(DLNS, LOGL_ERROR, "Failed to generate reject message (%d)\n", rc);
Alexander Couzensba5a9922021-01-25 16:03:23 +01001078 return NS2_CS_REJECTED;
Alexander Couzensd87a2f12020-11-30 22:20:20 +01001079 default:
Alexander Couzens8ebc1ac2020-10-12 03:57:26 +02001080 rc = reject_status_msg(msg, &tp, reject, NS_CAUSE_PDU_INCOMP_PSTATE);
Alexander Couzens3c22f912020-12-10 00:20:18 +01001081 if (rc < 0)
Alexander Couzens8ebc1ac2020-10-12 03:57:26 +02001082 LOGP(DLNS, LOGL_ERROR, "Failed to generate reject message (%d)\n", rc);
Alexander Couzensba5a9922021-01-25 16:03:23 +01001083 return NS2_CS_REJECTED;
Alexander Couzens6a161492020-07-12 13:45:50 +02001084 }
1085
Alexander Couzens12e5e6b2020-12-10 00:18:17 +01001086 if (tlv < 0) {
1087 /* TODO: correct behaviour would checking what's wrong.
1088 * If it's an essential TLV for the PDU return NS_CAUSE_INVAL_ESSENT_IE.
1089 * Otherwise ignore the non-essential TLV. */
1090 LOGP(DLNS, LOGL_ERROR, "Rx NS RESET Error %d during "
1091 "TLV Parse\n", tlv);
1092 rc = reject_status_msg(msg, &tp, reject, NS_CAUSE_PROTO_ERR_UNSPEC);
Alexander Couzens3c22f912020-12-10 00:20:18 +01001093 if (rc < 0)
Alexander Couzens12e5e6b2020-12-10 00:18:17 +01001094 LOGP(DLNS, LOGL_ERROR, "Failed to generate reject message (%d)\n", rc);
Alexander Couzensba5a9922021-01-25 16:03:23 +01001095 return NS2_CS_REJECTED;
Alexander Couzens12e5e6b2020-12-10 00:18:17 +01001096 }
1097
Harald Welte798efea2020-12-03 16:01:02 +01001098 if (!TLVP_PRES_LEN(&tp, NS_IE_CAUSE, 1) ||
1099 !TLVP_PRES_LEN(&tp, NS_IE_VCI, 2) || !TLVP_PRES_LEN(&tp, NS_IE_NSEI, 2)) {
Alexander Couzens8ebc1ac2020-10-12 03:57:26 +02001100 LOGP(DLNS, LOGL_ERROR, "NS RESET Missing mandatory IE\n");
1101 rc = reject_status_msg(msg, &tp, reject, NS_CAUSE_MISSING_ESSENT_IE);
Alexander Couzens3c22f912020-12-10 00:20:18 +01001102 if (rc < 0)
1103 LOGP(DLNS, LOGL_ERROR, "Failed to generate reject message (%d)\n", rc);
Alexander Couzensba5a9922021-01-25 16:03:23 +01001104 return NS2_CS_REJECTED;
Alexander Couzens6a161492020-07-12 13:45:50 +02001105 }
1106
Alexander Couzens6a161492020-07-12 13:45:50 +02001107 nsei = tlvp_val16be(&tp, NS_IE_NSEI);
Alexander Couzens05ac4e52021-01-04 19:07:05 +01001108 nsvci = tlvp_val16be(&tp, NS_IE_VCI);
1109
1110 /* find or create NSE */
Alexander Couzens6a161492020-07-12 13:45:50 +02001111 nse = gprs_ns2_nse_by_nsei(bind->nsi, nsei);
1112 if (!nse) {
Alexander Couzens05ac4e52021-01-04 19:07:05 +01001113 /* only create nse for udp & ipaccess */
Alexander Couzens138b96f2021-01-25 16:23:29 +01001114 if (bind->ll != GPRS_NS2_LL_UDP || dialect != GPRS_NS2_DIALECT_IPACCESS)
Alexander Couzensba5a9922021-01-25 16:03:23 +01001115 return NS2_CS_SKIPPED;
Alexander Couzens05ac4e52021-01-04 19:07:05 +01001116
Alexander Couzens2e1a3a92021-01-27 20:44:41 +01001117 if (!bind->accept_ipaccess)
Alexander Couzensba5a9922021-01-25 16:03:23 +01001118 return NS2_CS_SKIPPED;
Alexander Couzens6a161492020-07-12 13:45:50 +02001119
Alexander Couzensd923cff2020-12-01 01:03:52 +01001120 nse = gprs_ns2_create_nse(bind->nsi, nsei, bind->ll, dialect);
Alexander Couzens6a161492020-07-12 13:45:50 +02001121 if (!nse) {
Alexander Couzens05ac4e52021-01-04 19:07:05 +01001122 LOGP(DLNS, LOGL_ERROR, "Failed to create NSE(%05u)\n", nsei);
Alexander Couzensba5a9922021-01-25 16:03:23 +01001123 return NS2_CS_ERROR;
Alexander Couzens6a161492020-07-12 13:45:50 +02001124 }
Alexander Couzens05ac4e52021-01-04 19:07:05 +01001125 } else {
1126 /* nsei already known */
1127 if (nse->ll != bind->ll) {
Harald Weltef2949742021-01-20 14:54:14 +01001128 LOGNSE(nse, LOGL_ERROR, "Received NS-RESET NS-VCI(%05u) with wrong linklayer(%s)"
1129 " for already known NSE(%s)\n", nsvci, gprs_ns2_lltype_str(bind->ll),
1130 gprs_ns2_lltype_str(nse->ll));
Alexander Couzensba5a9922021-01-25 16:03:23 +01001131 return NS2_CS_SKIPPED;
Alexander Couzens05ac4e52021-01-04 19:07:05 +01001132 }
1133 }
1134
1135 nsvc = gprs_ns2_nsvc_by_nsvci(bind->nsi, nsvci);
1136 if (nsvc) {
1137 if (nsvc->persistent) {
Harald Weltef2949742021-01-20 14:54:14 +01001138 LOGNSVC(nsvc, LOGL_ERROR, "Received NS-RESET for a persistent NSE over wrong connection.\n");
Alexander Couzensba5a9922021-01-25 16:03:23 +01001139 return NS2_CS_SKIPPED;
Alexander Couzens05ac4e52021-01-04 19:07:05 +01001140 }
1141 /* destroy old dynamic nsvc */
1142 gprs_ns2_free_nsvc(nsvc);
1143 }
1144
1145 /* do nse persistent check late to be more precise on the error message */
1146 if (nse->persistent) {
Harald Weltef2949742021-01-20 14:54:14 +01001147 LOGNSE(nse, LOGL_ERROR, "Received NS-RESET for a persistent NSE but the unknown "
1148 "NS-VCI(%05u)\n", nsvci);
Alexander Couzensba5a9922021-01-25 16:03:23 +01001149 return NS2_CS_SKIPPED;
Alexander Couzens6a161492020-07-12 13:45:50 +02001150 }
1151
Harald Welte603f4042020-11-29 17:39:19 +01001152 nsvci = tlvp_val16be(&tp, NS_IE_VCI);
Alexander Couzens8dfc24c2021-01-25 16:09:23 +01001153 vc_mode = ns2_dialect_to_vc_mode(dialect);
Alexander Couzensd7948062021-06-03 20:35:47 +02001154
1155 local = gprs_ns2_ip_bind_sockaddr(bind);
1156 osmo_sockaddr_to_str_buf(tmp, sizeof(tmp), local);
1157 snprintf(idbuf, sizeof(idbuf), "%s-NSE%05u-NSVC%05u-%s-%s", gprs_ns2_lltype_str(nse->ll),
1158 nse->nsei, nsvci, tmp, osmo_sockaddr_to_str(remote));
1159 osmo_identifier_sanitize_buf(idbuf, NULL, '_');
Harald Welte603f4042020-11-29 17:39:19 +01001160 nsvc = ns2_vc_alloc(bind, nse, false, vc_mode, idbuf);
Alexander Couzens6a161492020-07-12 13:45:50 +02001161 if (!nsvc)
Alexander Couzensba5a9922021-01-25 16:03:23 +01001162 return NS2_CS_SKIPPED;
Alexander Couzens6a161492020-07-12 13:45:50 +02001163
Alexander Couzens6a161492020-07-12 13:45:50 +02001164 nsvc->nsvci = nsvci;
1165 nsvc->nsvci_is_valid = true;
1166
1167 *success = nsvc;
1168
Alexander Couzensba5a9922021-01-25 16:03:23 +01001169 return NS2_CS_CREATED;
Alexander Couzens6a161492020-07-12 13:45:50 +02001170}
1171
Harald Welte5bef2cc2020-09-18 22:33:24 +02001172/*! Create, and connect an inactive, new IP-based NS-VC
1173 * \param[in] bind bind in which the new NS-VC is to be created
1174 * \param[in] remote remote address to which to connect
1175 * \param[in] nse NS Entity in which the NS-VC is to be created
1176 * \param[in] nsvci is only required when bind->vc_mode == NS2_VC_MODE_BLOCKRESET
1177 * \return pointer to newly-allocated, connected and inactive NS-VC; NULL on error */
Alexander Couzens6a161492020-07-12 13:45:50 +02001178struct gprs_ns2_vc *gprs_ns2_ip_connect_inactive(struct gprs_ns2_vc_bind *bind,
Vadim Yanitskiya07f25e2020-10-09 21:47:01 +07001179 const struct osmo_sockaddr *remote,
Alexander Couzens6a161492020-07-12 13:45:50 +02001180 struct gprs_ns2_nse *nse,
1181 uint16_t nsvci)
1182{
1183 struct gprs_ns2_vc *nsvc;
1184
Alexander Couzens8dfc24c2021-01-25 16:09:23 +01001185 nsvc = ns2_ip_bind_connect(bind, nse, remote);
Alexander Couzens6a161492020-07-12 13:45:50 +02001186 if (!nsvc)
1187 return NULL;
1188
Alexander Couzens138b96f2021-01-25 16:23:29 +01001189 if (nsvc->mode == GPRS_NS2_VC_MODE_BLOCKRESET) {
Alexander Couzens6a161492020-07-12 13:45:50 +02001190 nsvc->nsvci = nsvci;
1191 nsvc->nsvci_is_valid = true;
1192 }
1193
1194 return nsvc;
1195}
1196
Harald Welte5bef2cc2020-09-18 22:33:24 +02001197/*! Create, connect and activate a new IP-based NS-VC
1198 * \param[in] bind bind in which the new NS-VC is to be created
1199 * \param[in] remote remote address to which to connect
1200 * \param[in] nse NS Entity in which the NS-VC is to be created
1201 * \param[in] nsvci is only required when bind->vc_mode == NS2_VC_MODE_BLOCKRESET
1202 * \return pointer to newly-allocated, connected and activated NS-VC; NULL on error */
Alexander Couzens6a161492020-07-12 13:45:50 +02001203struct gprs_ns2_vc *gprs_ns2_ip_connect(struct gprs_ns2_vc_bind *bind,
Vadim Yanitskiya07f25e2020-10-09 21:47:01 +07001204 const struct osmo_sockaddr *remote,
Alexander Couzens6a161492020-07-12 13:45:50 +02001205 struct gprs_ns2_nse *nse,
1206 uint16_t nsvci)
1207{
1208 struct gprs_ns2_vc *nsvc;
1209 nsvc = gprs_ns2_ip_connect_inactive(bind, remote, nse, nsvci);
1210 if (!nsvc)
1211 return NULL;
1212
Alexander Couzens8dfc24c2021-01-25 16:09:23 +01001213 ns2_vc_fsm_start(nsvc);
Alexander Couzens6a161492020-07-12 13:45:50 +02001214
1215 return nsvc;
1216}
1217
Harald Welte5bef2cc2020-09-18 22:33:24 +02001218/*! Create, connect and activate a new IP-based NS-VC
1219 * \param[in] bind bind in which the new NS-VC is to be created
1220 * \param[in] remote remote address to which to connect
1221 * \param[in] nsei NSEI of the NS Entity in which the NS-VC is to be created
1222 * \param[in] nsvci is only required when bind->vc_mode == NS2_VC_MODE_BLOCKRESET
1223 * \return pointer to newly-allocated, connected and activated NS-VC; NULL on error */
Alexander Couzens6a161492020-07-12 13:45:50 +02001224struct gprs_ns2_vc *gprs_ns2_ip_connect2(struct gprs_ns2_vc_bind *bind,
Vadim Yanitskiya07f25e2020-10-09 21:47:01 +07001225 const struct osmo_sockaddr *remote,
Alexander Couzens6a161492020-07-12 13:45:50 +02001226 uint16_t nsei,
Alexander Couzensd923cff2020-12-01 01:03:52 +01001227 uint16_t nsvci,
1228 enum gprs_ns2_dialect dialect)
Alexander Couzens6a161492020-07-12 13:45:50 +02001229{
1230 struct gprs_ns2_nse *nse = gprs_ns2_nse_by_nsei(bind->nsi, nsei);
1231
1232 if (!nse) {
Alexander Couzensd923cff2020-12-01 01:03:52 +01001233 nse = gprs_ns2_create_nse(bind->nsi, nsei, GPRS_NS2_LL_UDP, dialect);
Alexander Couzens6a161492020-07-12 13:45:50 +02001234 if (!nse)
1235 return NULL;
1236 }
1237
1238 return gprs_ns2_ip_connect(bind, remote, nse, nsvci);
1239}
1240
Harald Welte5bef2cc2020-09-18 22:33:24 +02001241/*! Find NS-VC for given socket address.
1242 * \param[in] nse NS Entity in which to search
1243 * \param[in] sockaddr socket address to search for
1244 * \return NS-VC matching sockaddr; NULL if none found */
Alexander Couzens38b19e82020-09-23 23:56:37 +02001245struct gprs_ns2_vc *gprs_ns2_nsvc_by_sockaddr_nse(struct gprs_ns2_nse *nse,
Vadim Yanitskiya07f25e2020-10-09 21:47:01 +07001246 const struct osmo_sockaddr *sockaddr)
Alexander Couzens6a161492020-07-12 13:45:50 +02001247{
1248 struct gprs_ns2_vc *nsvc;
Alexander Couzens9a4cf272020-10-11 20:48:04 +02001249 const struct osmo_sockaddr *remote;
Alexander Couzens6a161492020-07-12 13:45:50 +02001250
1251 OSMO_ASSERT(nse);
1252 OSMO_ASSERT(sockaddr);
1253
1254 llist_for_each_entry(nsvc, &nse->nsvc, list) {
Alexander Couzensc4229a42020-10-11 20:58:04 +02001255 remote = gprs_ns2_ip_vc_remote(nsvc);
Alexander Couzens6a161492020-07-12 13:45:50 +02001256 if (!osmo_sockaddr_cmp(sockaddr, remote))
1257 return nsvc;
1258 }
1259
1260 return NULL;
1261}
1262
Alexander Couzens6cb5d5f2020-10-11 23:23:31 +02001263/*!
1264 * Iterate over all nsvc of a NS Entity and call the callback.
1265 * If the callback returns < 0 it aborts the loop and returns the callback return code.
1266 * \param[in] nse NS Entity to iterate over all nsvcs
1267 * \param[in] cb the callback to call
1268 * \param[inout] cb_data the private data of the callback
1269 * \return 0 if the loop completes. If a callback returns < 0 it will returns this value.
1270 */
1271int gprs_ns2_nse_foreach_nsvc(struct gprs_ns2_nse *nse, gprs_ns2_foreach_nsvc_cb cb, void *cb_data)
1272{
1273 struct gprs_ns2_vc *nsvc, *tmp;
1274 int rc = 0;
1275 llist_for_each_entry_safe(nsvc, tmp, &nse->nsvc, list) {
1276 rc = cb(nsvc, cb_data);
1277 if (rc < 0)
1278 return rc;
1279 }
1280
1281 return 0;
1282}
1283
1284
Alexander Couzens6a161492020-07-12 13:45:50 +02001285
Harald Welte5bef2cc2020-09-18 22:33:24 +02001286/*! Bottom-side entry-point for received NS PDU from the driver/bind
Harald Welte5bef2cc2020-09-18 22:33:24 +02001287 * \param[in] nsvc NS-VC for which the message was received
Alexander Couzens7619ed42021-03-24 17:44:03 +01001288 * \param msg the received message. Ownership is transferred, caller must not free it!
Harald Welte5bef2cc2020-09-18 22:33:24 +02001289 * \return 0 on success; negative on error */
Alexander Couzensffd49d02020-09-24 00:47:17 +02001290int ns2_recv_vc(struct gprs_ns2_vc *nsvc,
Alexander Couzens6a161492020-07-12 13:45:50 +02001291 struct msgb *msg)
1292{
1293 struct gprs_ns_hdr *nsh = (struct gprs_ns_hdr *) msg->l2h;
Alexander Couzensba634532021-01-25 13:46:38 +01001294 struct tlv_parsed tp = { };
Alexander Couzens6a161492020-07-12 13:45:50 +02001295 int rc = 0;
1296
Daniel Willmann751977b2020-12-02 18:59:44 +01001297 log_set_context(LOG_CTX_GB_NSE, nsvc->nse);
1298 log_set_context(LOG_CTX_GB_NSVC, nsvc);
1299
Daniel Willmannefa64f92021-07-09 20:35:00 +02001300 RATE_CTR_INC_NS(nsvc, NS_CTR_PKTS_IN);
1301 RATE_CTR_ADD_NS(nsvc, NS_CTR_BYTES_IN, msg->len);
Harald Weltee5f55f72021-01-30 21:51:15 +01001302
Alexander Couzens7619ed42021-03-24 17:44:03 +01001303 if (msg->len < sizeof(struct gprs_ns_hdr)) {
1304 rc = -EINVAL;
1305 goto freemsg;
1306 }
Alexander Couzens6a161492020-07-12 13:45:50 +02001307
Alexander Couzens6cf65d92021-01-18 17:55:35 +01001308 if (nsh->pdu_type != NS_PDUT_UNITDATA)
1309 LOG_NS_RX_SIGNAL(nsvc, nsh->pdu_type);
1310 else
1311 LOG_NS_DATA(nsvc, "Rx", nsh->pdu_type, LOGL_INFO, "\n");
1312
Alexander Couzens6a161492020-07-12 13:45:50 +02001313 switch (nsh->pdu_type) {
1314 case SNS_PDUT_CONFIG:
1315 /* one additional byte ('end flag') before the TLV part starts */
1316 rc = ns2_tlv_parse(&tp, nsh->data+1,
1317 msgb_l2len(msg) - sizeof(*nsh)-1, 0, 0);
1318 if (rc < 0) {
Alexander Couzensbb0a53b2020-10-12 04:18:03 +02001319 LOGP(DLNS, LOGL_NOTICE, "Error during TLV Parse in %s\n", msgb_hexdump(msg));
Alexander Couzens7619ed42021-03-24 17:44:03 +01001320 goto freemsg;
Alexander Couzens6a161492020-07-12 13:45:50 +02001321 }
1322 /* All sub-network service related message types */
Alexander Couzens7619ed42021-03-24 17:44:03 +01001323 return ns2_sns_rx(nsvc, msg, &tp);
Alexander Couzens6a161492020-07-12 13:45:50 +02001324 case SNS_PDUT_ACK:
1325 case SNS_PDUT_ADD:
1326 case SNS_PDUT_CHANGE_WEIGHT:
1327 case SNS_PDUT_DELETE:
1328 /* weird layout: NSEI TLV, then value-only transaction IE, then TLV again */
Harald Welte36be9d82020-10-09 15:39:25 +02001329 rc = ns2_tlv_parse(&tp, nsh->data+5,
1330 msgb_l2len(msg) - sizeof(*nsh)-5, 0, 0);
Alexander Couzens6a161492020-07-12 13:45:50 +02001331 if (rc < 0) {
Alexander Couzensbb0a53b2020-10-12 04:18:03 +02001332 LOGP(DLNS, LOGL_NOTICE, "Error during TLV Parse in %s\n", msgb_hexdump(msg));
Alexander Couzens7619ed42021-03-24 17:44:03 +01001333 goto freemsg;
Alexander Couzens6a161492020-07-12 13:45:50 +02001334 }
1335 tp.lv[NS_IE_NSEI].val = nsh->data+2;
1336 tp.lv[NS_IE_NSEI].len = 2;
1337 tp.lv[NS_IE_TRANS_ID].val = nsh->data+4;
1338 tp.lv[NS_IE_TRANS_ID].len = 1;
Alexander Couzens7619ed42021-03-24 17:44:03 +01001339 return ns2_sns_rx(nsvc, msg, &tp);
Alexander Couzens6a161492020-07-12 13:45:50 +02001340 case SNS_PDUT_CONFIG_ACK:
1341 case SNS_PDUT_SIZE:
1342 case SNS_PDUT_SIZE_ACK:
1343 rc = ns2_tlv_parse(&tp, nsh->data,
1344 msgb_l2len(msg) - sizeof(*nsh), 0, 0);
1345 if (rc < 0) {
Alexander Couzensbb0a53b2020-10-12 04:18:03 +02001346 LOGP(DLNS, LOGL_NOTICE, "Error during TLV Parse in %s\n", msgb_hexdump(msg));
Alexander Couzens7619ed42021-03-24 17:44:03 +01001347 goto freemsg;
Alexander Couzens6a161492020-07-12 13:45:50 +02001348 }
1349 /* All sub-network service related message types */
Alexander Couzens7619ed42021-03-24 17:44:03 +01001350 return ns2_sns_rx(nsvc, msg, &tp);
Alexander Couzens6a161492020-07-12 13:45:50 +02001351 case NS_PDUT_UNITDATA:
Alexander Couzens7619ed42021-03-24 17:44:03 +01001352 return ns2_vc_rx(nsvc, msg, &tp);
Alexander Couzens6a161492020-07-12 13:45:50 +02001353 default:
1354 rc = ns2_tlv_parse(&tp, nsh->data,
1355 msgb_l2len(msg) - sizeof(*nsh), 0, 0);
1356 if (rc < 0) {
Alexander Couzensbb0a53b2020-10-12 04:18:03 +02001357 LOGP(DLNS, LOGL_NOTICE, "Error during TLV Parse\n");
Alexander Couzens6a161492020-07-12 13:45:50 +02001358 if (nsh->pdu_type != NS_PDUT_STATUS)
Alexander Couzensd802f9a2021-09-23 16:19:32 +02001359 ns2_tx_status(nsvc, NS_CAUSE_PROTO_ERR_UNSPEC, 0, msg, NULL);
Alexander Couzens6a161492020-07-12 13:45:50 +02001360 return rc;
1361 }
Alexander Couzens7619ed42021-03-24 17:44:03 +01001362 return ns2_vc_rx(nsvc, msg, &tp);
Alexander Couzens6a161492020-07-12 13:45:50 +02001363 }
Alexander Couzens7619ed42021-03-24 17:44:03 +01001364freemsg:
1365 msgb_free(msg);
Alexander Couzens6a161492020-07-12 13:45:50 +02001366
1367 return rc;
1368}
1369
Alexander Couzensfc3dd1f2020-11-19 00:41:47 +01001370/* summarize all active data nsvcs */
1371void ns2_nse_data_sum(struct gprs_ns2_nse *nse)
1372{
1373 struct gprs_ns2_vc *nsvc;
Harald Welte3221f872021-01-18 14:58:51 +01001374
Alexander Couzens8a2a1a42020-12-26 18:00:17 +01001375 nse->nsvc_count = 0;
Harald Welte3221f872021-01-18 14:58:51 +01001376 nse->sum_data_weight = 0;
1377 nse->sum_sig_weight = 0;
Alexander Couzensfc3dd1f2020-11-19 00:41:47 +01001378
1379 llist_for_each_entry(nsvc, &nse->nsvc, list) {
Alexander Couzens8dfc24c2021-01-25 16:09:23 +01001380 if (!ns2_vc_is_unblocked(nsvc))
Alexander Couzensfc3dd1f2020-11-19 00:41:47 +01001381 continue;
Alexander Couzens8a2a1a42020-12-26 18:00:17 +01001382
1383 nse->nsvc_count++;
Harald Welte3221f872021-01-18 14:58:51 +01001384 nse->sum_data_weight += nsvc->data_weight;
1385 nse->sum_sig_weight += nsvc->sig_weight;
Alexander Couzensfc3dd1f2020-11-19 00:41:47 +01001386 }
1387}
1388
Harald Welte5bef2cc2020-09-18 22:33:24 +02001389/*! Notify a nse about the change of a NS-VC.
1390 * \param[in] nsvc NS-VC which has detected the change (and shall not be notified).
1391 * \param[in] unblocked whether the NSE should be marked as unblocked (true) or blocked (false) */
Alexander Couzens6a161492020-07-12 13:45:50 +02001392void ns2_nse_notify_unblocked(struct gprs_ns2_vc *nsvc, bool unblocked)
1393{
1394 struct gprs_ns2_nse *nse = nsvc->nse;
Daniel Willmann334cf872021-11-10 16:44:56 +01001395 struct gprs_ns2_inst *nsi = nse->nsi;
1396 uint16_t nsei = nse->nsei;
Alexander Couzens6a161492020-07-12 13:45:50 +02001397
Alexander Couzensfc3dd1f2020-11-19 00:41:47 +01001398 ns2_nse_data_sum(nse);
Alexander Couzens616a9492021-07-20 22:14:35 +02001399 ns2_sns_notify_alive(nse, nsvc, unblocked);
Alexander Couzensfc3dd1f2020-11-19 00:41:47 +01001400
Daniel Willmann334cf872021-11-10 16:44:56 +01001401 /* NSE could have been freed, try to get it again */
1402 nse = gprs_ns2_nse_by_nsei(nsi, nsei);
1403
1404 if (!nse || unblocked == nse->alive)
Alexander Couzens6a161492020-07-12 13:45:50 +02001405 return;
1406
Harald Welte3221f872021-01-18 14:58:51 +01001407 /* wait until both data_weight and sig_weight are != 0 before declaring NSE as alive */
1408 if (unblocked && nse->sum_data_weight && nse->sum_sig_weight) {
Alexander Couzens6a161492020-07-12 13:45:50 +02001409 nse->alive = true;
Alexander Couzens2c64c252021-09-05 23:15:29 +02001410 osmo_clock_gettime(CLOCK_MONOTONIC, &nse->ts_alive_change);
Alexander Couzens138b96f2021-01-25 16:23:29 +01001411 ns2_prim_status_ind(nse, NULL, 0, GPRS_NS2_AFF_CAUSE_RECOVERY);
Alexander Couzensda0a2852020-10-01 23:24:07 +02001412 nse->first = false;
Alexander Couzens6a161492020-07-12 13:45:50 +02001413 return;
1414 }
1415
Harald Welte3221f872021-01-18 14:58:51 +01001416 if (nse->alive && (nse->sum_data_weight == 0 || nse->sum_sig_weight == 0)) {
1417 /* nse became unavailable */
1418 nse->alive = false;
Alexander Couzens2c64c252021-09-05 23:15:29 +02001419 osmo_clock_gettime(CLOCK_MONOTONIC, &nse->ts_alive_change);
Alexander Couzens138b96f2021-01-25 16:23:29 +01001420 ns2_prim_status_ind(nse, NULL, 0, GPRS_NS2_AFF_CAUSE_FAILURE);
Alexander Couzens6a161492020-07-12 13:45:50 +02001421 }
Alexander Couzens6a161492020-07-12 13:45:50 +02001422}
1423
1424/*! Create a new GPRS NS instance
Harald Welte5bef2cc2020-09-18 22:33:24 +02001425 * \param[in] ctx a talloc context to allocate NS instance from
Alexander Couzenscce88282020-10-26 00:25:50 +01001426 * \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 +02001427 * \param[in] cb_data transparent user data passed to Call-back
1428 * \returns dynamically allocated gprs_ns_inst; NULL on error */
Alexander Couzens6a161492020-07-12 13:45:50 +02001429struct gprs_ns2_inst *gprs_ns2_instantiate(void *ctx, osmo_prim_cb cb, void *cb_data)
1430{
1431 struct gprs_ns2_inst *nsi;
1432
1433 nsi = talloc_zero(ctx, struct gprs_ns2_inst);
1434 if (!nsi)
1435 return NULL;
1436
1437 nsi->cb = cb;
1438 nsi->cb_data = cb_data;
1439 INIT_LLIST_HEAD(&nsi->binding);
1440 INIT_LLIST_HEAD(&nsi->nse);
1441
1442 nsi->timeout[NS_TOUT_TNS_BLOCK] = 3;
1443 nsi->timeout[NS_TOUT_TNS_BLOCK_RETRIES] = 3;
1444 nsi->timeout[NS_TOUT_TNS_RESET] = 3;
1445 nsi->timeout[NS_TOUT_TNS_RESET_RETRIES] = 3;
1446 nsi->timeout[NS_TOUT_TNS_TEST] = 30;
1447 nsi->timeout[NS_TOUT_TNS_ALIVE] = 3;
1448 nsi->timeout[NS_TOUT_TNS_ALIVE_RETRIES] = 10;
1449 nsi->timeout[NS_TOUT_TSNS_PROV] = 3; /* 1..10 */
Alexander Couzens90ee9632020-12-07 06:18:32 +01001450 nsi->timeout[NS_TOUT_TSNS_SIZE_RETRIES] = 3;
1451 nsi->timeout[NS_TOUT_TSNS_CONFIG_RETRIES] = 3;
Alexander Couzens1f3193d2021-06-05 22:08:11 +02001452 nsi->timeout[NS_TOUT_TSNS_PROCEDURES_RETRIES] = 3;
Alexander Couzens6a161492020-07-12 13:45:50 +02001453
Daniel Willmann3236fdf2023-08-29 16:24:56 +02001454 nsi->txqueue_max_length = NS_DEFAULT_TXQUEUE_MAX_LENGTH;
1455
Alexander Couzens6a161492020-07-12 13:45:50 +02001456 return nsi;
1457}
1458
Harald Welte5bef2cc2020-09-18 22:33:24 +02001459/*! Destroy a NS Instance (including all its NSEs, binds, ...).
1460 * \param[in] nsi NS instance to destroy */
Alexander Couzens6a161492020-07-12 13:45:50 +02001461void gprs_ns2_free(struct gprs_ns2_inst *nsi)
1462{
Alexander Couzens6a161492020-07-12 13:45:50 +02001463 if (!nsi)
1464 return;
1465
Alexander Couzens4b6c8af2020-10-11 20:15:25 +02001466 gprs_ns2_free_nses(nsi);
Alexander Couzens896fcd52020-10-11 19:52:36 +02001467 gprs_ns2_free_binds(nsi);
Alexander Couzens35315042020-10-10 03:28:17 +02001468
1469 talloc_free(nsi);
Alexander Couzens6a161492020-07-12 13:45:50 +02001470}
1471
Harald Welte5bef2cc2020-09-18 22:33:24 +02001472/*! Start the NS-ALIVE FSM in all NS-VCs of given NSE.
1473 * \param[in] nse NS Entity in whihc to start NS-ALIVE FSMs */
Alexander Couzens6a161492020-07-12 13:45:50 +02001474void gprs_ns2_start_alive_all_nsvcs(struct gprs_ns2_nse *nse)
1475{
1476 struct gprs_ns2_vc *nsvc;
1477 OSMO_ASSERT(nse);
1478
1479 llist_for_each_entry(nsvc, &nse->nsvc, list) {
Harald Weltec962a2e2021-03-05 08:09:08 +01001480 /* A pre-configured endpoint shall not be used for NSE data or signalling traffic
1481 * (with the exception of Size and Configuration procedures) unless it is
1482 * configured by the SGSN using the auto-configuration procedures */
Alexander Couzens6a161492020-07-12 13:45:50 +02001483 if (nsvc->sns_only)
1484 continue;
1485
Alexander Couzens8dfc24c2021-01-25 16:09:23 +01001486 ns2_vc_fsm_start(nsvc);
Alexander Couzens6a161492020-07-12 13:45:50 +02001487 }
1488}
1489
Harald Welte5bef2cc2020-09-18 22:33:24 +02001490/*! Destroy a given bind.
1491 * \param[in] bind the bind we want to destroy */
Alexander Couzens6a161492020-07-12 13:45:50 +02001492void gprs_ns2_free_bind(struct gprs_ns2_vc_bind *bind)
1493{
Alexander Couzensf0746592021-07-20 19:05:45 +02001494 struct gprs_ns2_vc *nsvc;
Alexander Couzens6b9d2322021-02-12 03:17:59 +01001495 struct gprs_ns2_nse *nse;
Alexander Couzens41589a32021-07-19 03:40:02 +02001496 if (!bind || bind->freed)
Alexander Couzens6a161492020-07-12 13:45:50 +02001497 return;
Alexander Couzens41589a32021-07-19 03:40:02 +02001498 bind->freed = true;
Alexander Couzensf0746592021-07-20 19:05:45 +02001499
Alexander Couzens6b9d2322021-02-12 03:17:59 +01001500 if (gprs_ns2_is_ip_bind(bind)) {
1501 llist_for_each_entry(nse, &bind->nsi->nse, list) {
1502 gprs_ns2_sns_del_bind(nse, bind);
1503 }
1504 }
1505
Alexander Couzensf0746592021-07-20 19:05:45 +02001506 /* prevent recursive free() when the user reacts on a down event and free() a second time */
1507 while (!llist_empty(&bind->nsvc)) {
1508 nsvc = llist_first_entry(&bind->nsvc, struct gprs_ns2_vc, blist);
Alexander Couzens4bfcce62021-09-03 22:22:39 +02001509 gprs_ns2_free_nsvc(nsvc);
1510 }
1511
Alexander Couzens6a161492020-07-12 13:45:50 +02001512 if (bind->driver->free_bind)
1513 bind->driver->free_bind(bind);
1514
1515 llist_del(&bind->list);
Harald Welte76346072021-01-31 11:54:02 +01001516 osmo_stat_item_group_free(bind->statg);
Alexander Couzensaaa55a62020-12-03 06:02:03 +01001517 talloc_free((char *)bind->name);
Alexander Couzens6a161492020-07-12 13:45:50 +02001518 talloc_free(bind);
1519}
Alexander Couzens896fcd52020-10-11 19:52:36 +02001520
1521void gprs_ns2_free_binds(struct gprs_ns2_inst *nsi)
1522{
Alexander Couzensf0746592021-07-20 19:05:45 +02001523 struct gprs_ns2_vc_bind *bind;
Alexander Couzens896fcd52020-10-11 19:52:36 +02001524
Alexander Couzensf0746592021-07-20 19:05:45 +02001525 /* prevent recursive free() when the user reacts on a down event and free() a second time */
1526 while (!llist_empty(&nsi->binding)) {
1527 bind = llist_first_entry(&nsi->binding, struct gprs_ns2_vc_bind, list);
Alexander Couzens896fcd52020-10-11 19:52:36 +02001528 gprs_ns2_free_bind(bind);
1529 }
1530}
Alexander Couzensd923cff2020-12-01 01:03:52 +01001531
Alexander Couzensaaa55a62020-12-03 06:02:03 +01001532/*! Search for a bind with a unique name
1533 * \param[in] nsi NS instance on which we operate
1534 * \param[in] name The unique bind name to search for
1535 * \return the bind or NULL if not found
1536 */
Alexander Couzens8dfc24c2021-01-25 16:09:23 +01001537struct gprs_ns2_vc_bind *gprs_ns2_bind_by_name(struct gprs_ns2_inst *nsi, const char *name)
Alexander Couzensaaa55a62020-12-03 06:02:03 +01001538{
1539 struct gprs_ns2_vc_bind *bind;
1540
1541 llist_for_each_entry(bind, &nsi->binding, list) {
1542 if (!strcmp(bind->name, name))
1543 return bind;
1544 }
1545
1546 return NULL;
1547}
1548
Alexander Couzens8dfc24c2021-01-25 16:09:23 +01001549enum gprs_ns2_vc_mode ns2_dialect_to_vc_mode(enum gprs_ns2_dialect dialect)
Alexander Couzensd923cff2020-12-01 01:03:52 +01001550{
1551 switch (dialect) {
Alexander Couzens138b96f2021-01-25 16:23:29 +01001552 case GPRS_NS2_DIALECT_SNS:
1553 case GPRS_NS2_DIALECT_STATIC_ALIVE:
1554 return GPRS_NS2_VC_MODE_ALIVE;
1555 case GPRS_NS2_DIALECT_STATIC_RESETBLOCK:
1556 case GPRS_NS2_DIALECT_IPACCESS:
1557 return GPRS_NS2_VC_MODE_BLOCKRESET;
Alexander Couzensd923cff2020-12-01 01:03:52 +01001558 default:
1559 return -1;
1560 }
1561}
1562
Alexander Couzens1c8785d2020-12-17 06:58:53 +01001563static void add_bind_array(struct gprs_ns2_vc_bind **array,
1564 struct gprs_ns2_vc_bind *bind, int size)
1565{
1566 int i;
1567 for (i=0; i < size; i++) {
1568 if (array[i] == bind)
1569 return;
1570 if (!array[i])
1571 break;
1572 }
1573
1574 if (i == size)
1575 return;
1576
1577 array[i] = bind;
1578}
1579
Alexander Couzens4f1128f2021-01-20 17:42:48 +01001580void ns2_nse_update_mtu(struct gprs_ns2_nse *nse)
1581{
1582 struct gprs_ns2_vc *nsvc;
1583 int mtu = 0;
1584
1585 if (llist_empty(&nse->nsvc)) {
1586 nse->mtu = 0;
1587 return;
1588 }
1589
1590 llist_for_each_entry(nsvc, &nse->nsvc, list) {
1591 if (mtu == 0)
1592 mtu = nsvc->bind->mtu;
1593 else if (mtu > nsvc->bind->mtu)
1594 mtu = nsvc->bind->mtu;
1595 }
1596
1597 if (nse->mtu == mtu)
1598 return;
1599
1600 nse->mtu = mtu;
1601 if (nse->alive)
Alexander Couzensdb7b2ab2021-07-02 16:12:28 +02001602 ns2_prim_status_ind(nse, NULL, 0, GPRS_NS2_AFF_CAUSE_MTU_CHANGE);
Alexander Couzens4f1128f2021-01-20 17:42:48 +01001603}
1604
Alexander Couzens1c8785d2020-12-17 06:58:53 +01001605/*! calculate the transfer capabilities for a nse
1606 * \param nse the nse to count the transfer capability
1607 * \param bvci a bvci - unused
1608 * \return the transfer capability in mbit. On error < 0.
1609 */
1610int ns2_count_transfer_cap(struct gprs_ns2_nse *nse,
1611 uint16_t bvci)
1612{
1613 struct gprs_ns2_vc *nsvc;
1614 struct gprs_ns2_vc_bind **active_binds;
1615 int i, active_nsvcs = 0, transfer_cap = 0;
1616
1617 /* calculate the transfer capabilities based on the binds.
1618 * A bind has a transfer capability which is shared across all NSVCs.
1619 * Take care the bind cap is not counted twice within a NSE.
1620 * This should be accurate for FR and UDP but not for FR/GRE. */
1621
1622 if (!nse->alive)
1623 return 0;
1624
1625 llist_for_each_entry(nsvc, &nse->nsvc, list) {
Alexander Couzens8dfc24c2021-01-25 16:09:23 +01001626 if (ns2_vc_is_unblocked(nsvc))
Alexander Couzens1c8785d2020-12-17 06:58:53 +01001627 active_nsvcs++;
1628 }
Alexander Couzens32556682021-02-28 23:42:53 +01001629
1630 if (!active_nsvcs)
1631 return 0;
Alexander Couzens1c8785d2020-12-17 06:58:53 +01001632
1633 active_binds = talloc_zero_array(nse, struct gprs_ns2_vc_bind*, active_nsvcs);
1634 if (!active_binds)
1635 return -ENOMEM;
1636
1637 llist_for_each_entry(nsvc, &nse->nsvc, list) {
Alexander Couzens8dfc24c2021-01-25 16:09:23 +01001638 if (!ns2_vc_is_unblocked(nsvc))
Alexander Couzens1c8785d2020-12-17 06:58:53 +01001639 continue;
1640 add_bind_array(active_binds, nsvc->bind, active_nsvcs);
1641 }
1642
1643 /* TODO: change calcuation for FR/GRE */
1644 for (i = 0; i < active_nsvcs; i++) {
1645 if (active_binds[i])
1646 transfer_cap += active_binds[i]->transfer_capability;
1647 }
1648
1649 talloc_free(active_binds);
1650 return transfer_cap;
1651}
1652
Harald Weltec3aa8f92021-01-31 11:41:34 +01001653/*! common allocation + low-level initialization of a bind. Called by vc-drivers */
1654int ns2_bind_alloc(struct gprs_ns2_inst *nsi, const char *name,
1655 struct gprs_ns2_vc_bind **result)
1656{
1657 struct gprs_ns2_vc_bind *bind;
1658
1659 if (!name)
1660 return -EINVAL;
1661
1662 if (gprs_ns2_bind_by_name(nsi, name))
1663 return -EALREADY;
1664
1665 bind = talloc_zero(nsi, struct gprs_ns2_vc_bind);
1666 if (!bind)
Harald Weltebdfb8b92021-01-31 11:44:57 +01001667 return -ENOMEM;
Harald Weltec3aa8f92021-01-31 11:41:34 +01001668
1669 bind->name = talloc_strdup(bind, name);
1670 if (!bind->name) {
1671 talloc_free(bind);
Harald Weltebdfb8b92021-01-31 11:44:57 +01001672 return -ENOMEM;
Harald Weltec3aa8f92021-01-31 11:41:34 +01001673 }
1674
Harald Welte76346072021-01-31 11:54:02 +01001675 bind->statg = osmo_stat_item_group_alloc(bind, &nsbind_statg_desc, nsi->bind_rate_ctr_idx);
1676 if (!bind->statg) {
1677 talloc_free(bind);
1678 return -ENOMEM;
1679 }
1680
Alexander Couzensc4704762021-02-08 23:13:12 +01001681 bind->sns_sig_weight = 1;
1682 bind->sns_data_weight = 1;
Harald Weltec3aa8f92021-01-31 11:41:34 +01001683 bind->nsi = nsi;
1684 INIT_LLIST_HEAD(&bind->nsvc);
Alexander Couzensd5cd8c62021-06-15 20:59:03 +02001685 llist_add_tail(&bind->list, &nsi->binding);
Harald Weltec3aa8f92021-01-31 11:41:34 +01001686
Harald Welte76346072021-01-31 11:54:02 +01001687 nsi->bind_rate_ctr_idx++;
1688
Harald Weltec3aa8f92021-01-31 11:41:34 +01001689 if (result)
1690 *result = bind;
1691
1692 return 0;
1693}
1694
Alexander Couzens6a161492020-07-12 13:45:50 +02001695/*! @} */