blob: e84c79d42be332352cfedc715d8619347d7ff66e [file] [log] [blame]
Alexander Couzens6a161492020-07-12 13:45:50 +02001/*! \file gprs_ns2_sns.c
2 * NS Sub-Network Service Protocol implementation
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) 2018 by Harald Welte <laforge@gnumonks.org>
7 * (C) 2020 by sysmocom - s.f.m.c. GmbH <info@sysmocom.de>
8 * Author: Alexander Couzens <lynxis@fe80.eu>
9 *
10 * All Rights Reserved
11 *
12 * SPDX-License-Identifier: GPL-2.0+
13 *
14 * This program is free software; you can redistribute it and/or modify
15 * it under the terms of the GNU General Public License as published by
16 * the Free Software Foundation; either version 2 of the License, or
17 * (at your option) any later version.
18 *
19 * This program is distributed in the hope that it will be useful,
20 * but WITHOUT ANY WARRANTY; without even the implied warranty of
21 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 * GNU General Public License for more details.
23 *
24 * You should have received a copy of the GNU General Public License
25 * along with this program. If not, see <http://www.gnu.org/licenses/>.
26 *
27 */
28
29/* The BSS NSE only has one SGSN IP address configured, and it will use the SNS procedures
30 * to communicated its local IPs/ports as well as all the SGSN side IPs/ports and
31 * associated weights. The BSS then uses this to establish a full mesh
32 * of NSVCs between all BSS-side IPs/ports and SGSN-side IPs/ports.
33 *
34 * Known limitation/expectation/bugs:
35 * - No concurrent dual stack. It supports either IPv4 or IPv6, but not both at the same time.
36 * - SNS Add/Change/Delete: Doesn't answer on the same NSVC as received SNS ADD/CHANGE/DELETE PDUs.
37 * - SNS Add/Change/Delete: Doesn't communicated the failed IPv4/IPv6 entries on the SNS_ACK.
38 */
39
40#include <errno.h>
41
42#include <netinet/in.h>
43#include <arpa/inet.h>
44#include <stdint.h>
45
46#include <osmocom/core/fsm.h>
47#include <osmocom/core/msgb.h>
48#include <osmocom/core/socket.h>
Alexander Couzens412bc342020-11-19 05:24:37 +010049#include <osmocom/core/sockaddr_str.h>
Alexander Couzens6a161492020-07-12 13:45:50 +020050#include <osmocom/gsm/tlv.h>
51#include <osmocom/gprs/gprs_msgb.h>
52#include <osmocom/gprs/gprs_ns2.h>
53#include <osmocom/gprs/protocol/gsm_08_16.h>
54
55#include "gprs_ns2_internal.h"
56
57#define S(x) (1 << (x))
58
59enum ns2_sns_type {
60 IPv4,
61 IPv6,
62};
63
64enum gprs_sns_bss_state {
65 GPRS_SNS_ST_UNCONFIGURED,
66 GPRS_SNS_ST_SIZE, /*!< SNS-SIZE procedure ongoing */
67 GPRS_SNS_ST_CONFIG_BSS, /*!< SNS-CONFIG procedure (BSS->SGSN) ongoing */
68 GPRS_SNS_ST_CONFIG_SGSN, /*!< SNS-CONFIG procedure (SGSN->BSS) ongoing */
69 GPRS_SNS_ST_CONFIGURED,
70};
71
72enum gprs_sns_event {
Alexander Couzense769f522020-12-07 07:37:07 +010073 GPRS_SNS_EV_SELECT_ENDPOINT, /*!< Select a SNS endpoint from the list */
Alexander Couzens6a161492020-07-12 13:45:50 +020074 GPRS_SNS_EV_SIZE,
75 GPRS_SNS_EV_SIZE_ACK,
76 GPRS_SNS_EV_CONFIG,
77 GPRS_SNS_EV_CONFIG_END, /*!< SNS-CONFIG with end flag received */
78 GPRS_SNS_EV_CONFIG_ACK,
79 GPRS_SNS_EV_ADD,
80 GPRS_SNS_EV_DELETE,
81 GPRS_SNS_EV_CHANGE_WEIGHT,
82 GPRS_SNS_EV_NO_NSVC,
Alexander Couzensbe7cecc2021-02-03 18:25:27 +010083 GPRS_SNS_EV_NSVC_ALIVE, /*!< a NS-VC became alive */
Alexander Couzens6a161492020-07-12 13:45:50 +020084};
85
86static const struct value_string gprs_sns_event_names[] = {
Alexander Couzense769f522020-12-07 07:37:07 +010087 { GPRS_SNS_EV_SELECT_ENDPOINT, "SELECT_ENDPOINT" },
Alexander Couzens6a161492020-07-12 13:45:50 +020088 { GPRS_SNS_EV_SIZE, "SIZE" },
89 { GPRS_SNS_EV_SIZE_ACK, "SIZE_ACK" },
90 { GPRS_SNS_EV_CONFIG, "CONFIG" },
91 { GPRS_SNS_EV_CONFIG_END, "CONFIG_END" },
92 { GPRS_SNS_EV_CONFIG_ACK, "CONFIG_ACK" },
93 { GPRS_SNS_EV_ADD, "ADD" },
94 { GPRS_SNS_EV_DELETE, "DELETE" },
95 { GPRS_SNS_EV_CHANGE_WEIGHT, "CHANGE_WEIGHT" },
Pau Espin Pedrol0a446a12020-10-27 13:30:08 +010096 { GPRS_SNS_EV_NO_NSVC, "NO_NSVC" },
Alexander Couzensbe7cecc2021-02-03 18:25:27 +010097 { GPRS_SNS_EV_NSVC_ALIVE, "NSVC_ALIVE"},
Alexander Couzens6a161492020-07-12 13:45:50 +020098 { 0, NULL }
99};
100
Alexander Couzense769f522020-12-07 07:37:07 +0100101struct sns_endpoint {
102 struct llist_head list;
103 struct osmo_sockaddr saddr;
104};
105
Alexander Couzens6a161492020-07-12 13:45:50 +0200106struct ns2_sns_state {
107 struct gprs_ns2_nse *nse;
108
109 enum ns2_sns_type ip;
110
Alexander Couzense769f522020-12-07 07:37:07 +0100111 /* holds the list of initial SNS endpoints */
112 struct llist_head sns_endpoints;
113 /* prevent recursive reselection */
114 bool reselection_running;
115
116 /* The current initial SNS endpoints.
117 * The initial connection will be moved into the NSE
118 * if configured via SNS. Otherwise it will be removed
119 * in configured state. */
120 struct sns_endpoint *initial;
Alexander Couzens6a161492020-07-12 13:45:50 +0200121 /* all SNS PDU will be sent over this nsvc */
122 struct gprs_ns2_vc *sns_nsvc;
Alexander Couzens81ae0aa2020-12-07 05:49:43 +0100123 /* iterate over the binds after all remote has been tested */
124 int bind_offset;
Alexander Couzens90ee9632020-12-07 06:18:32 +0100125 /* timer N */
126 int N;
Alexander Couzensbe7cecc2021-02-03 18:25:27 +0100127 /* true if at least one nsvc is alive */
128 bool alive;
Alexander Couzens6a161492020-07-12 13:45:50 +0200129
130 /* local configuration to send to the remote end */
131 struct gprs_ns_ie_ip4_elem *ip4_local;
132 size_t num_ip4_local;
133
134 /* local configuration to send to the remote end */
135 struct gprs_ns_ie_ip6_elem *ip6_local;
136 size_t num_ip6_local;
137
138 /* local configuration about our capabilities in terms of connections to
139 * remote (SGSN) side */
140 size_t num_max_nsvcs;
141 size_t num_max_ip4_remote;
142 size_t num_max_ip6_remote;
143
144 /* remote configuration as received */
145 struct gprs_ns_ie_ip4_elem *ip4_remote;
146 unsigned int num_ip4_remote;
147
148 /* remote configuration as received */
149 struct gprs_ns_ie_ip6_elem *ip6_remote;
150 unsigned int num_ip6_remote;
151};
152
153static inline struct gprs_ns2_nse *nse_inst_from_fi(struct osmo_fsm_inst *fi)
154{
155 struct ns2_sns_state *gss = (struct ns2_sns_state *) fi->priv;
156 return gss->nse;
157}
158
159/* helper function to compute the sum of all (data or signaling) weights */
160static int ip4_weight_sum(const struct gprs_ns_ie_ip4_elem *ip4, unsigned int num,
161 bool data_weight)
162{
163 unsigned int i;
164 int weight_sum = 0;
165
166 for (i = 0; i < num; i++) {
167 if (data_weight)
168 weight_sum += ip4[i].data_weight;
169 else
170 weight_sum += ip4[i].sig_weight;
171 }
172 return weight_sum;
173}
174#define ip4_weight_sum_data(x,y) ip4_weight_sum(x, y, true)
175#define ip4_weight_sum_sig(x,y) ip4_weight_sum(x, y, false)
176
177/* helper function to compute the sum of all (data or signaling) weights */
178static int ip6_weight_sum(const struct gprs_ns_ie_ip6_elem *ip6, unsigned int num,
179 bool data_weight)
180{
181 unsigned int i;
182 int weight_sum = 0;
183
184 for (i = 0; i < num; i++) {
185 if (data_weight)
186 weight_sum += ip6[i].data_weight;
187 else
188 weight_sum += ip6[i].sig_weight;
189 }
190 return weight_sum;
191}
192#define ip6_weight_sum_data(x,y) ip6_weight_sum(x, y, true)
193#define ip6_weight_sum_sig(x,y) ip6_weight_sum(x, y, false)
194
195static struct gprs_ns2_vc *nsvc_by_ip4_elem(struct gprs_ns2_nse *nse,
196 const struct gprs_ns_ie_ip4_elem *ip4)
197{
198 struct osmo_sockaddr sa;
199 /* copy over. Both data structures use network byte order */
200 sa.u.sin.sin_addr.s_addr = ip4->ip_addr;
201 sa.u.sin.sin_port = ip4->udp_port;
202 sa.u.sin.sin_family = AF_INET;
203
Alexander Couzens38b19e82020-09-23 23:56:37 +0200204 return gprs_ns2_nsvc_by_sockaddr_nse(nse, &sa);
Alexander Couzens6a161492020-07-12 13:45:50 +0200205}
206
207static struct gprs_ns2_vc *nsvc_by_ip6_elem(struct gprs_ns2_nse *nse,
208 const struct gprs_ns_ie_ip6_elem *ip6)
209{
210 struct osmo_sockaddr sa;
211 /* copy over. Both data structures use network byte order */
212 sa.u.sin6.sin6_addr = ip6->ip_addr;
213 sa.u.sin6.sin6_port = ip6->udp_port;
214 sa.u.sin6.sin6_family = AF_INET;
215
Alexander Couzens38b19e82020-09-23 23:56:37 +0200216 return gprs_ns2_nsvc_by_sockaddr_nse(nse, &sa);
Alexander Couzens6a161492020-07-12 13:45:50 +0200217}
218
Alexander Couzens125298f2020-10-11 21:22:42 +0200219/*! Return the initial SNS remote socket address
220 * \param nse NS Entity
221 * \return address of the initial SNS connection; NULL in case of error
222 */
223const struct osmo_sockaddr *gprs_ns2_nse_sns_remote(struct gprs_ns2_nse *nse)
224{
225 struct ns2_sns_state *gss;
226
227 if (!nse->bss_sns_fi)
228 return NULL;
229
230 gss = (struct ns2_sns_state *) nse->bss_sns_fi->priv;
Alexander Couzense769f522020-12-07 07:37:07 +0100231 return &gss->initial->saddr;
Alexander Couzens125298f2020-10-11 21:22:42 +0200232}
233
Alexander Couzensbe7cecc2021-02-03 18:25:27 +0100234/*! called when a nsvc is beeing freed or the nsvc became dead */
235void ns2_sns_replace_nsvc(struct gprs_ns2_vc *nsvc)
Alexander Couzens6a161492020-07-12 13:45:50 +0200236{
Alexander Couzensbe7cecc2021-02-03 18:25:27 +0100237 struct gprs_ns2_nse *nse = nsvc->nse;
Alexander Couzens6a161492020-07-12 13:45:50 +0200238 struct gprs_ns2_vc *tmp;
Alexander Couzensbe7cecc2021-02-03 18:25:27 +0100239 struct osmo_fsm_inst *fi = nse->bss_sns_fi;
Alexander Couzens6a161492020-07-12 13:45:50 +0200240 struct ns2_sns_state *gss;
Alexander Couzens6a161492020-07-12 13:45:50 +0200241
242 if (!fi)
243 return;
244
245 gss = (struct ns2_sns_state *) fi->priv;
246 if (nsvc != gss->sns_nsvc)
247 return;
248
Alexander Couzensbe7cecc2021-02-03 18:25:27 +0100249 gss->sns_nsvc = NULL;
250 if (gss->alive) {
Alexander Couzens6a161492020-07-12 13:45:50 +0200251 llist_for_each_entry(tmp, &nse->nsvc, list) {
Alexander Couzensbe7cecc2021-02-03 18:25:27 +0100252 if (ns2_vc_is_unblocked(tmp)) {
Alexander Couzens6a161492020-07-12 13:45:50 +0200253 gss->sns_nsvc = tmp;
Alexander Couzensbe7cecc2021-02-03 18:25:27 +0100254 return;
255 }
Alexander Couzens6a161492020-07-12 13:45:50 +0200256 }
257 } else {
Alexander Couzensbe7cecc2021-02-03 18:25:27 +0100258 /* the SNS is waiting for its first NS-VC to come up
259 * choose any other nsvc */
260 llist_for_each_entry(tmp, &nse->nsvc, list) {
261 if (nsvc != tmp) {
262 gss->sns_nsvc = tmp;
263 return;
264 }
265 }
Alexander Couzens6a161492020-07-12 13:45:50 +0200266 }
Alexander Couzensbe7cecc2021-02-03 18:25:27 +0100267
268 osmo_fsm_inst_dispatch(fi, GPRS_SNS_EV_NO_NSVC, NULL);
Alexander Couzens6a161492020-07-12 13:45:50 +0200269}
270
Alexander Couzens7a7b20b2021-01-18 10:47:33 +0100271static void ns2_clear_ipv46_entries(struct ns2_sns_state *gss)
272{
273 TALLOC_FREE(gss->ip4_local);
274 TALLOC_FREE(gss->ip4_remote);
275 TALLOC_FREE(gss->ip6_local);
276 TALLOC_FREE(gss->ip6_remote);
277
278 gss->num_ip4_local = 0;
279 gss->num_ip4_remote = 0;
280 gss->num_ip6_local = 0;
281 gss->num_ip6_remote = 0;
282}
283
Daniel Willmanncf8371a2021-01-16 15:13:51 +0100284static void ns2_vc_create_ip(struct osmo_fsm_inst *fi, struct gprs_ns2_nse *nse, const struct osmo_sockaddr *remote,
285 uint8_t sig_weight, uint8_t data_weight)
Alexander Couzens6a161492020-07-12 13:45:50 +0200286{
287 struct gprs_ns2_inst *nsi = nse->nsi;
288 struct gprs_ns2_vc *nsvc;
289 struct gprs_ns2_vc_bind *bind;
Daniel Willmanncf8371a2021-01-16 15:13:51 +0100290
291 /* for every bind, create a connection if bind type == IP */
292 llist_for_each_entry(bind, &nsi->binding, list) {
293 if (bind->ll != GPRS_NS2_LL_UDP)
294 continue;
295 /* ignore failed connection */
296 nsvc = gprs_ns2_ip_connect_inactive(bind,
297 remote,
298 nse, 0);
299 if (!nsvc) {
300 LOGPFSML(fi, LOGL_ERROR, "SNS-CONFIG: Failed to create NSVC\n");
301 continue;
302 }
303
304 nsvc->sig_weight = sig_weight;
305 nsvc->data_weight = data_weight;
306 }
307}
308
309static void ns2_nsvc_create_ip4(struct osmo_fsm_inst *fi,
310 struct gprs_ns2_nse *nse,
311 const struct gprs_ns_ie_ip4_elem *ip4)
312{
Alexander Couzensc068d862020-10-12 04:11:51 +0200313 struct osmo_sockaddr remote = { };
Alexander Couzens6a161492020-07-12 13:45:50 +0200314 /* copy over. Both data structures use network byte order */
315 remote.u.sin.sin_family = AF_INET;
316 remote.u.sin.sin_addr.s_addr = ip4->ip_addr;
317 remote.u.sin.sin_port = ip4->udp_port;
318
Daniel Willmanncf8371a2021-01-16 15:13:51 +0100319 ns2_vc_create_ip(fi, nse, &remote, ip4->sig_weight, ip4->data_weight);
Alexander Couzens6a161492020-07-12 13:45:50 +0200320}
321
322static void ns2_nsvc_create_ip6(struct osmo_fsm_inst *fi,
323 struct gprs_ns2_nse *nse,
324 const struct gprs_ns_ie_ip6_elem *ip6)
325{
Alexander Couzens6a161492020-07-12 13:45:50 +0200326 struct osmo_sockaddr remote = {};
327 /* copy over. Both data structures use network byte order */
328 remote.u.sin6.sin6_family = AF_INET6;
329 remote.u.sin6.sin6_addr = ip6->ip_addr;
330 remote.u.sin6.sin6_port = ip6->udp_port;
331
Daniel Willmanncf8371a2021-01-16 15:13:51 +0100332 ns2_vc_create_ip(fi, nse, &remote, ip6->sig_weight, ip6->data_weight);
Alexander Couzens6a161492020-07-12 13:45:50 +0200333}
334
335
336static int create_missing_nsvcs(struct osmo_fsm_inst *fi)
337{
338 struct ns2_sns_state *gss = (struct ns2_sns_state *) fi->priv;
339 struct gprs_ns2_nse *nse = nse_inst_from_fi(fi);
340 struct gprs_ns2_vc *nsvc;
341 struct gprs_ns2_vc_bind *bind;
342 struct osmo_sockaddr remote = { };
343 unsigned int i;
344
345 for (i = 0; i < gss->num_ip4_remote; i++) {
346 const struct gprs_ns_ie_ip4_elem *ip4 = &gss->ip4_remote[i];
347
348 remote.u.sin.sin_family = AF_INET;
349 remote.u.sin.sin_addr.s_addr = ip4->ip_addr;
350 remote.u.sin.sin_port = ip4->udp_port;
351
352 llist_for_each_entry(bind, &nse->nsi->binding, list) {
353 bool found = false;
Daniel Willmann967e2c12021-01-14 16:58:17 +0100354 if (bind->ll != GPRS_NS2_LL_UDP)
355 continue;
Alexander Couzens6a161492020-07-12 13:45:50 +0200356
357 llist_for_each_entry(nsvc, &nse->nsvc, list) {
358 if (nsvc->bind != bind)
359 continue;
360
Alexander Couzensc4229a42020-10-11 20:58:04 +0200361 if (!osmo_sockaddr_cmp(&remote, gprs_ns2_ip_vc_remote(nsvc))) {
Alexander Couzens6a161492020-07-12 13:45:50 +0200362 found = true;
363 break;
364 }
365 }
366
367 if (!found) {
368 nsvc = gprs_ns2_ip_connect_inactive(bind, &remote, nse, 0);
369 if (!nsvc) {
370 /* TODO: add to a list to send back a NS-STATUS */
371 continue;
372 }
373 }
374
375 /* update data / signalling weight */
376 nsvc->data_weight = ip4->data_weight;
377 nsvc->sig_weight = ip4->sig_weight;
378 nsvc->sns_only = false;
379 }
380 }
381
382 for (i = 0; i < gss->num_ip6_remote; i++) {
383 const struct gprs_ns_ie_ip6_elem *ip6 = &gss->ip6_remote[i];
384
385 remote.u.sin6.sin6_family = AF_INET6;
386 remote.u.sin6.sin6_addr = ip6->ip_addr;
387 remote.u.sin6.sin6_port = ip6->udp_port;
388
389 llist_for_each_entry(bind, &nse->nsi->binding, list) {
390 bool found = false;
Daniel Willmann967e2c12021-01-14 16:58:17 +0100391 if (bind->ll != GPRS_NS2_LL_UDP)
392 continue;
Alexander Couzens6a161492020-07-12 13:45:50 +0200393
394 llist_for_each_entry(nsvc, &nse->nsvc, list) {
395 if (nsvc->bind != bind)
396 continue;
397
Alexander Couzensc4229a42020-10-11 20:58:04 +0200398 if (!osmo_sockaddr_cmp(&remote, gprs_ns2_ip_vc_remote(nsvc))) {
Alexander Couzens6a161492020-07-12 13:45:50 +0200399 found = true;
400 break;
401 }
402 }
403
404 if (!found) {
405 nsvc = gprs_ns2_ip_connect_inactive(bind, &remote, nse, 0);
406 if (!nsvc) {
407 /* TODO: add to a list to send back a NS-STATUS */
408 continue;
409 }
410 }
411
412 /* update data / signalling weight */
413 nsvc->data_weight = ip6->data_weight;
414 nsvc->sig_weight = ip6->sig_weight;
415 nsvc->sns_only = false;
416 }
417 }
418
419
420 return 0;
421}
422
423/* Add a given remote IPv4 element to gprs_sns_state */
424static int add_remote_ip4_elem(struct ns2_sns_state *gss, const struct gprs_ns_ie_ip4_elem *ip4)
425{
426 unsigned int i;
427
428 if (gss->num_ip4_remote >= gss->num_max_ip4_remote)
429 return -NS_CAUSE_INVAL_NR_NS_VC;
430
431 /* check for duplicates */
432 for (i = 0; i < gss->num_ip4_remote; i++) {
433 if (memcmp(&gss->ip4_remote[i], ip4, sizeof(*ip4)))
434 continue;
435 /* TODO: log message duplicate */
436 /* TODO: check if this is the correct cause code */
437 return -NS_CAUSE_PROTO_ERR_UNSPEC;
438 }
439
440 gss->ip4_remote = talloc_realloc(gss, gss->ip4_remote, struct gprs_ns_ie_ip4_elem,
441 gss->num_ip4_remote+1);
442 gss->ip4_remote[gss->num_ip4_remote] = *ip4;
443 gss->num_ip4_remote += 1;
444 return 0;
445}
446
447/* Remove a given remote IPv4 element from gprs_sns_state */
448static int remove_remote_ip4_elem(struct ns2_sns_state *gss, const struct gprs_ns_ie_ip4_elem *ip4)
449{
450 unsigned int i;
451
452 for (i = 0; i < gss->num_ip4_remote; i++) {
453 if (memcmp(&gss->ip4_remote[i], ip4, sizeof(*ip4)))
454 continue;
455 /* all array elements < i remain as they are; all > i are shifted left by one */
456 memmove(&gss->ip4_remote[i], &gss->ip4_remote[i+1], gss->num_ip4_remote-i-1);
457 gss->num_ip4_remote -= 1;
458 return 0;
459 }
460 return -1;
461}
462
463/* update the weights for specified remote IPv4 */
464static int update_remote_ip4_elem(struct ns2_sns_state *gss, const struct gprs_ns_ie_ip4_elem *ip4)
465{
466 unsigned int i;
467
468 for (i = 0; i < gss->num_ip4_remote; i++) {
469 if (gss->ip4_remote[i].ip_addr != ip4->ip_addr ||
470 gss->ip4_remote[i].udp_port != ip4->udp_port)
471 continue;
472
473 gss->ip4_remote[i].sig_weight = ip4->sig_weight;
474 gss->ip4_remote[i].data_weight = ip4->data_weight;
475 return 0;
476 }
477 return -1;
478}
479
480/* Add a given remote IPv6 element to gprs_sns_state */
481static int add_remote_ip6_elem(struct ns2_sns_state *gss, const struct gprs_ns_ie_ip6_elem *ip6)
482{
483 if (gss->num_ip6_remote >= gss->num_max_ip6_remote)
484 return -NS_CAUSE_INVAL_NR_NS_VC;
485
486 gss->ip6_remote = talloc_realloc(gss, gss->ip6_remote, struct gprs_ns_ie_ip6_elem,
487 gss->num_ip6_remote+1);
488 gss->ip6_remote[gss->num_ip6_remote] = *ip6;
489 gss->num_ip6_remote += 1;
490 return 0;
491}
492
493/* Remove a given remote IPv6 element from gprs_sns_state */
494static int remove_remote_ip6_elem(struct ns2_sns_state *gss, const struct gprs_ns_ie_ip6_elem *ip6)
495{
496 unsigned int i;
497
498 for (i = 0; i < gss->num_ip6_remote; i++) {
499 if (memcmp(&gss->ip6_remote[i], ip6, sizeof(*ip6)))
500 continue;
501 /* all array elements < i remain as they are; all > i are shifted left by one */
502 memmove(&gss->ip6_remote[i], &gss->ip6_remote[i+1], gss->num_ip6_remote-i-1);
503 gss->num_ip6_remote -= 1;
504 return 0;
505 }
506 return -1;
507}
508
509/* update the weights for specified remote IPv6 */
510static int update_remote_ip6_elem(struct ns2_sns_state *gss, const struct gprs_ns_ie_ip6_elem *ip6)
511{
512 unsigned int i;
513
514 for (i = 0; i < gss->num_ip6_remote; i++) {
515 if (memcmp(&gss->ip6_remote[i].ip_addr, &ip6->ip_addr, sizeof(ip6->ip_addr)) ||
516 gss->ip6_remote[i].udp_port != ip6->udp_port)
517 continue;
518 gss->ip6_remote[i].sig_weight = ip6->sig_weight;
519 gss->ip6_remote[i].data_weight = ip6->data_weight;
520 return 0;
521 }
522 return -1;
523}
524
525static int do_sns_change_weight(struct osmo_fsm_inst *fi, const struct gprs_ns_ie_ip4_elem *ip4, const struct gprs_ns_ie_ip6_elem *ip6)
526{
527 struct ns2_sns_state *gss = (struct ns2_sns_state *) fi->priv;
528 struct gprs_ns2_nse *nse = nse_inst_from_fi(fi);
529 struct gprs_ns2_vc *nsvc;
530 struct osmo_sockaddr sa = {};
Alexander Couzens9a4cf272020-10-11 20:48:04 +0200531 const struct osmo_sockaddr *remote;
Alexander Couzens6a161492020-07-12 13:45:50 +0200532 uint8_t new_signal;
533 uint8_t new_data;
534
535 /* TODO: Upon receiving an SNS-CHANGEWEIGHT PDU, if the resulting sum of the
536 * signalling weights of all the peer IP endpoints configured for this NSE is
537 * equal to zero or if the resulting sum of the data weights of all the peer IP
538 * endpoints configured for this NSE is equal to zero, the BSS/SGSN shall send an
539 * SNS-ACK PDU with a cause code of "Invalid weights". */
540
541 if (ip4) {
542 if (update_remote_ip4_elem(gss, ip4))
543 return -NS_CAUSE_UNKN_IP_EP;
544
545 /* copy over. Both data structures use network byte order */
546 sa.u.sin.sin_addr.s_addr = ip4->ip_addr;
547 sa.u.sin.sin_port = ip4->udp_port;
548 sa.u.sin.sin_family = AF_INET;
549 new_signal = ip4->sig_weight;
550 new_data = ip4->data_weight;
551 } else if (ip6) {
552 if (update_remote_ip6_elem(gss, ip6))
553 return -NS_CAUSE_UNKN_IP_EP;
554
555 /* copy over. Both data structures use network byte order */
556 sa.u.sin6.sin6_addr = ip6->ip_addr;
557 sa.u.sin6.sin6_port = ip6->udp_port;
558 sa.u.sin6.sin6_family = AF_INET6;
559 new_signal = ip6->sig_weight;
560 new_data = ip6->data_weight;
561 } else {
562 OSMO_ASSERT(false);
563 }
564
565 llist_for_each_entry(nsvc, &nse->nsvc, list) {
Alexander Couzensc4229a42020-10-11 20:58:04 +0200566 remote = gprs_ns2_ip_vc_remote(nsvc);
Alexander Couzens6a161492020-07-12 13:45:50 +0200567 /* all nsvc in NSE should be IP/UDP nsvc */
568 OSMO_ASSERT(remote);
569
570 if (osmo_sockaddr_cmp(&sa, remote))
571 continue;
572
573 LOGPFSML(fi, LOGL_INFO, "CHANGE-WEIGHT NS-VC %s data_weight %u->%u, sig_weight %u->%u\n",
574 gprs_ns2_ll_str(nsvc), nsvc->data_weight, new_data,
575 nsvc->sig_weight, new_signal);
576
577 nsvc->data_weight = new_data;
578 nsvc->sig_weight = new_signal;
579 }
580
581 return 0;
582}
583
584static int do_sns_delete(struct osmo_fsm_inst *fi,
585 const struct gprs_ns_ie_ip4_elem *ip4,
586 const struct gprs_ns_ie_ip6_elem *ip6)
587{
588 struct ns2_sns_state *gss = (struct ns2_sns_state *) fi->priv;
589 struct gprs_ns2_nse *nse = nse_inst_from_fi(fi);
590 struct gprs_ns2_vc *nsvc, *tmp;
Alexander Couzens9a4cf272020-10-11 20:48:04 +0200591 const struct osmo_sockaddr *remote;
Alexander Couzens6a161492020-07-12 13:45:50 +0200592 struct osmo_sockaddr sa = {};
593
594 if (ip4) {
595 if (remove_remote_ip4_elem(gss, ip4) < 0)
596 return -NS_CAUSE_UNKN_IP_EP;
597 /* copy over. Both data structures use network byte order */
598 sa.u.sin.sin_addr.s_addr = ip4->ip_addr;
599 sa.u.sin.sin_port = ip4->udp_port;
600 sa.u.sin.sin_family = AF_INET;
601 } else if (ip6) {
602 if (remove_remote_ip6_elem(gss, ip6))
603 return -NS_CAUSE_UNKN_IP_EP;
604
605 /* copy over. Both data structures use network byte order */
606 sa.u.sin6.sin6_addr = ip6->ip_addr;
607 sa.u.sin6.sin6_port = ip6->udp_port;
608 sa.u.sin6.sin6_family = AF_INET6;
609 } else {
610 OSMO_ASSERT(false);
611 }
612
613 llist_for_each_entry_safe(nsvc, tmp, &nse->nsvc, list) {
Alexander Couzensc4229a42020-10-11 20:58:04 +0200614 remote = gprs_ns2_ip_vc_remote(nsvc);
Alexander Couzens6a161492020-07-12 13:45:50 +0200615 /* all nsvc in NSE should be IP/UDP nsvc */
616 OSMO_ASSERT(remote);
617 if (osmo_sockaddr_cmp(&sa, remote))
618 continue;
619
620 LOGPFSML(fi, LOGL_INFO, "DELETE NS-VC %s\n", gprs_ns2_ll_str(nsvc));
621 gprs_ns2_free_nsvc(nsvc);
622 }
623
624 return 0;
625}
626
627static int do_sns_add(struct osmo_fsm_inst *fi,
628 const struct gprs_ns_ie_ip4_elem *ip4,
629 const struct gprs_ns_ie_ip6_elem *ip6)
630{
631 struct ns2_sns_state *gss = (struct ns2_sns_state *) fi->priv;
632 struct gprs_ns2_nse *nse = nse_inst_from_fi(fi);
633 struct gprs_ns2_vc *nsvc;
634 int rc = 0;
635
636 /* Upon receiving an SNS-ADD PDU, if the consequent number of IPv4 endpoints
637 * exceeds the number of IPv4 endpoints supported by the NSE, the NSE shall send
638 * an SNS-ACK PDU with a cause code set to "Invalid number of IP4 Endpoints". */
639 switch (gss->ip) {
640 case IPv4:
641 rc = add_remote_ip4_elem(gss, ip4);
642 break;
643 case IPv6:
644 rc = add_remote_ip6_elem(gss, ip6);
645 break;
646 default:
647 /* the gss->ip is initialized with the bss */
648 OSMO_ASSERT(false);
649 }
650
651 if (rc)
652 return rc;
653
654 /* Upon receiving an SNS-ADD PDU containing an already configured IP endpoint the
655 * NSE shall send an SNS-ACK PDU with the cause code "Protocol error -
656 * unspecified" */
657 switch (gss->ip) {
658 case IPv4:
659 nsvc = nsvc_by_ip4_elem(nse, ip4);
660 if (nsvc) {
661 /* the nsvc should be already in sync with the ip4 / ip6 elements */
662 return -NS_CAUSE_PROTO_ERR_UNSPEC;
663 }
664
665 /* TODO: failure case */
666 ns2_nsvc_create_ip4(fi, nse, ip4);
667 break;
668 case IPv6:
669 nsvc = nsvc_by_ip6_elem(nse, ip6);
670 if (nsvc) {
671 /* the nsvc should be already in sync with the ip4 / ip6 elements */
672 return -NS_CAUSE_PROTO_ERR_UNSPEC;
673 }
674
675 /* TODO: failure case */
676 ns2_nsvc_create_ip6(fi, nse, ip6);
677 break;
678 }
679
680 gprs_ns2_start_alive_all_nsvcs(nse);
681
682 return 0;
683}
684
685
686static void ns2_sns_st_unconfigured(struct osmo_fsm_inst *fi, uint32_t event, void *data)
687{
Alexander Couzense769f522020-12-07 07:37:07 +0100688 /* empty state - SNS Select will start by ns2_sns_st_all_action() */
Alexander Couzens6a161492020-07-12 13:45:50 +0200689}
690
691static void ns2_sns_st_size(struct osmo_fsm_inst *fi, uint32_t event, void *data)
692{
693 struct gprs_ns2_nse *nse = nse_inst_from_fi(fi);
694 struct gprs_ns2_inst *nsi = nse->nsi;
695 struct tlv_parsed *tp = NULL;
696
697 switch (event) {
698 case GPRS_SNS_EV_SIZE_ACK:
699 tp = data;
700 if (TLVP_VAL_MINLEN(tp, NS_IE_CAUSE, 1)) {
701 LOGPFSML(fi, LOGL_ERROR, "SNS-SIZE-ACK with cause %s\n",
702 gprs_ns2_cause_str(*TLVP_VAL(tp, NS_IE_CAUSE)));
703 /* TODO: What to do? */
704 } else {
705 osmo_fsm_inst_state_chg(fi, GPRS_SNS_ST_CONFIG_BSS,
706 nsi->timeout[NS_TOUT_TSNS_PROV], 2);
707 }
708 break;
709 default:
710 OSMO_ASSERT(0);
711 }
712}
713
Alexander Couzense769f522020-12-07 07:37:07 +0100714/* setup all dynamic SNS settings, create a new nsvc and send the SIZE */
Alexander Couzens6a161492020-07-12 13:45:50 +0200715static void ns2_sns_st_size_onenter(struct osmo_fsm_inst *fi, uint32_t old_state)
716{
717 struct ns2_sns_state *gss = (struct ns2_sns_state *) fi->priv;
Alexander Couzense769f522020-12-07 07:37:07 +0100718 struct gprs_ns_ie_ip4_elem *ip4_elems;
719 struct gprs_ns_ie_ip6_elem *ip6_elems;
720 struct gprs_ns2_vc_bind *bind;
721 struct gprs_ns2_inst *nsi = gss->nse->nsi;
722 struct osmo_sockaddr *remote;
723 const struct osmo_sockaddr *sa;
724 struct osmo_sockaddr local;
725 int count;
Alexander Couzens6a161492020-07-12 13:45:50 +0200726
Alexander Couzense769f522020-12-07 07:37:07 +0100727 /* on a generic failure, the timer callback will recover */
Alexander Couzens6a161492020-07-12 13:45:50 +0200728 if (old_state != GPRS_SNS_ST_UNCONFIGURED)
Alexander Couzens138b96f2021-01-25 16:23:29 +0100729 ns2_prim_status_ind(gss->nse, NULL, 0, GPRS_NS2_AFF_CAUSE_SNS_FAILURE);
Alexander Couzens6a161492020-07-12 13:45:50 +0200730
Alexander Couzensbe7cecc2021-02-03 18:25:27 +0100731 gss->alive = false;
Alexander Couzens7a7b20b2021-01-18 10:47:33 +0100732 ns2_clear_ipv46_entries(gss);
733
Alexander Couzense769f522020-12-07 07:37:07 +0100734 /* no initial available */
735 if (!gss->initial)
736 return;
737
738 remote = &gss->initial->saddr;
739
740 /* count how many bindings are available (only UDP binds) */
741 count = ns2_ip_count_bind(nsi, remote);
742 if (count == 0) {
743 /* TODO: logging */
744 return;
745 }
746
Alexander Couzens81ae0aa2020-12-07 05:49:43 +0100747 bind = ns2_ip_get_bind_by_index(nsi, remote, gss->bind_offset);
Alexander Couzense769f522020-12-07 07:37:07 +0100748 if (!bind) {
Alexander Couzens81ae0aa2020-12-07 05:49:43 +0100749 if (gss->bind_offset) {
750 gss->bind_offset = 0;
751 bind = ns2_ip_get_bind_by_index(nsi, remote, gss->bind_offset);
752 }
753
754 if (!bind)
755 return;
Alexander Couzense769f522020-12-07 07:37:07 +0100756 }
757
758 /* setup the NSVC */
759 if (!gss->sns_nsvc) {
Alexander Couzens8dfc24c2021-01-25 16:09:23 +0100760 gss->sns_nsvc = ns2_ip_bind_connect(bind, gss->nse, remote);
Alexander Couzense769f522020-12-07 07:37:07 +0100761 if (!gss->sns_nsvc)
762 return;
763 gss->sns_nsvc->sns_only = true;
764 }
765
766 switch (gss->ip) {
767 case IPv4:
768 ip4_elems = talloc_zero_size(fi, sizeof(struct gprs_ns_ie_ip4_elem) * count);
769 if (!ip4_elems)
770 return;
771
772 gss->ip4_local = ip4_elems;
773
774 llist_for_each_entry(bind, &nsi->binding, list) {
775 if (!gprs_ns2_is_ip_bind(bind))
776 continue;
777
778 sa = gprs_ns2_ip_bind_sockaddr(bind);
779 if (!sa)
780 continue;
781
782 if (sa->u.sas.ss_family != AF_INET)
783 continue;
784
785 /* check if this is an specific bind */
786 if (sa->u.sin.sin_addr.s_addr == 0) {
787 if (osmo_sockaddr_local_ip(&local, remote))
788 continue;
789
790 ip4_elems->ip_addr = local.u.sin.sin_addr.s_addr;
791 } else {
792 ip4_elems->ip_addr = sa->u.sin.sin_addr.s_addr;
793 }
794
795 ip4_elems->udp_port = sa->u.sin.sin_port;
796 ip4_elems->sig_weight = 2;
797 ip4_elems->data_weight = 1;
798 ip4_elems++;
799 }
800
801 gss->num_ip4_local = count;
802 gss->num_max_ip4_remote = 4;
803 gss->num_max_nsvcs = OSMO_MAX(gss->num_max_ip4_remote * gss->num_ip4_local, 8);
804 break;
805 case IPv6:
806 /* IPv6 */
807 ip6_elems = talloc_zero_size(fi, sizeof(struct gprs_ns_ie_ip6_elem) * count);
808 if (!ip6_elems)
809 return;
810
811 gss->ip6_local = ip6_elems;
812
813 llist_for_each_entry(bind, &nsi->binding, list) {
814 if (!gprs_ns2_is_ip_bind(bind))
815 continue;
816
817 sa = gprs_ns2_ip_bind_sockaddr(bind);
818 if (!sa)
819 continue;
820
821 if (sa->u.sas.ss_family != AF_INET6)
822 continue;
823
824 /* check if this is an specific bind */
825 if (IN6_IS_ADDR_UNSPECIFIED(&sa->u.sin6.sin6_addr)) {
826 if (osmo_sockaddr_local_ip(&local, remote))
827 continue;
828
829 ip6_elems->ip_addr = local.u.sin6.sin6_addr;
830 } else {
831 ip6_elems->ip_addr = sa->u.sin6.sin6_addr;
832 }
833
834 ip6_elems->udp_port = sa->u.sin.sin_port;
835 ip6_elems->sig_weight = 2;
836 ip6_elems->data_weight = 1;
837
838 ip6_elems++;
839 }
840 gss->num_ip6_local = count;
841 gss->num_max_ip6_remote = 4;
842 gss->num_max_nsvcs = OSMO_MAX(gss->num_max_ip6_remote * gss->num_ip6_local, 8);
843 break;
844 }
845
Alexander Couzens6a161492020-07-12 13:45:50 +0200846 if (gss->num_max_ip4_remote > 0)
847 ns2_tx_sns_size(gss->sns_nsvc, true, gss->num_max_nsvcs, gss->num_max_ip4_remote, -1);
848 else
849 ns2_tx_sns_size(gss->sns_nsvc, true, gss->num_max_nsvcs, -1, gss->num_max_ip6_remote);
Alexander Couzens6a161492020-07-12 13:45:50 +0200850}
851
852static void ns2_sns_st_config_bss(struct osmo_fsm_inst *fi, uint32_t event, void *data)
853{
854 struct tlv_parsed *tp = NULL;
Alexander Couzens3df58862021-02-05 17:18:08 +0100855 struct gprs_ns2_nse *nse = nse_inst_from_fi(fi);
Alexander Couzens6a161492020-07-12 13:45:50 +0200856
857 switch (event) {
858 case GPRS_SNS_EV_CONFIG_ACK:
859 tp = (struct tlv_parsed *) data;
860 if (TLVP_VAL_MINLEN(tp, NS_IE_CAUSE, 1)) {
861 LOGPFSML(fi, LOGL_ERROR, "SNS-CONFIG-ACK with cause %s\n",
862 gprs_ns2_cause_str(*TLVP_VAL(tp, NS_IE_CAUSE)));
863 /* TODO: What to do? */
864 } else {
Alexander Couzens3df58862021-02-05 17:18:08 +0100865 osmo_fsm_inst_state_chg(fi, GPRS_SNS_ST_CONFIG_SGSN, nse->nsi->timeout[NS_TOUT_TSNS_PROV], 3);
Alexander Couzens6a161492020-07-12 13:45:50 +0200866 }
867 break;
868 default:
869 OSMO_ASSERT(0);
870 }
871}
872
873static void ns2_sns_st_config_bss_onenter(struct osmo_fsm_inst *fi, uint32_t old_state)
874{
875 struct ns2_sns_state *gss = (struct ns2_sns_state *) fi->priv;
876 /* Transmit SNS-CONFIG */
Alexander Couzens6a161492020-07-12 13:45:50 +0200877 switch (gss->ip) {
878 case IPv4:
879 ns2_tx_sns_config(gss->sns_nsvc, true,
Alexander Couzense78207f2020-12-07 06:19:29 +0100880 gss->ip4_local, gss->num_ip4_local,
881 NULL, 0);
Alexander Couzens6a161492020-07-12 13:45:50 +0200882 break;
883 case IPv6:
884 ns2_tx_sns_config(gss->sns_nsvc, true,
Alexander Couzense78207f2020-12-07 06:19:29 +0100885 NULL, 0,
886 gss->ip6_local, gss->num_ip6_local);
Alexander Couzens6a161492020-07-12 13:45:50 +0200887 break;
888 }
889}
890
Alexander Couzensbe7cecc2021-02-03 18:25:27 +0100891/* calculate the timeout of the configured state. the configured
892 * state will fail if not at least one NS-VC is alive within X second.
893 */
894static inline int ns_sns_configured_timeout(struct osmo_fsm_inst *fi)
895{
896 int secs;
897 struct gprs_ns2_inst *nsi = nse_inst_from_fi(fi)->nsi;
898 secs = nsi->timeout[NS_TOUT_TNS_ALIVE] * nsi->timeout[NS_TOUT_TNS_ALIVE_RETRIES];
899 secs += nsi->timeout[NS_TOUT_TNS_TEST];
900
901 return secs;
902}
Alexander Couzens6a161492020-07-12 13:45:50 +0200903
904static void ns_sns_st_config_sgsn_ip4(struct osmo_fsm_inst *fi, uint32_t event, void *data)
905{
906 struct ns2_sns_state *gss = (struct ns2_sns_state *) fi->priv;
907 struct gprs_ns2_nse *nse = nse_inst_from_fi(fi);
908 const struct gprs_ns_ie_ip4_elem *v4_list;
909 unsigned int num_v4;
910 struct tlv_parsed *tp = NULL;
911
912 uint8_t cause;
913
914 tp = (struct tlv_parsed *) data;
915
916 if (!TLVP_PRESENT(tp, NS_IE_IPv4_LIST)) {
917 cause = NS_CAUSE_INVAL_NR_IPv4_EP;
918 ns2_tx_sns_config_ack(gss->sns_nsvc, &cause);
919 osmo_fsm_inst_state_chg(fi, GPRS_SNS_ST_UNCONFIGURED, 0, 0);
920 return;
921 }
922 v4_list = (const struct gprs_ns_ie_ip4_elem *) TLVP_VAL(tp, NS_IE_IPv4_LIST);
923 num_v4 = TLVP_LEN(tp, NS_IE_IPv4_LIST) / sizeof(*v4_list);
924 /* realloc to the new size */
925 gss->ip4_remote = talloc_realloc(gss, gss->ip4_remote,
926 struct gprs_ns_ie_ip4_elem,
927 gss->num_ip4_remote+num_v4);
928 /* append the new entries to the end of the list */
929 memcpy(&gss->ip4_remote[gss->num_ip4_remote], v4_list, num_v4*sizeof(*v4_list));
930 gss->num_ip4_remote += num_v4;
931
932 LOGPFSML(fi, LOGL_INFO, "Rx SNS-CONFIG: Remote IPv4 list now %u entries\n",
933 gss->num_ip4_remote);
934 if (event == GPRS_SNS_EV_CONFIG_END) {
935 /* check if sum of data / sig weights == 0 */
936 if (ip4_weight_sum_data(gss->ip4_remote, gss->num_ip4_remote) == 0 ||
937 ip4_weight_sum_sig(gss->ip4_remote, gss->num_ip4_remote) == 0) {
938 cause = NS_CAUSE_INVAL_WEIGH;
939 ns2_tx_sns_config_ack(gss->sns_nsvc, &cause);
940 osmo_fsm_inst_state_chg(fi, GPRS_SNS_ST_UNCONFIGURED, 0, 0);
941 return;
942 }
943 create_missing_nsvcs(fi);
944 ns2_tx_sns_config_ack(gss->sns_nsvc, NULL);
945 /* start the test procedure on ALL NSVCs! */
946 gprs_ns2_start_alive_all_nsvcs(nse);
Alexander Couzens3df58862021-02-05 17:18:08 +0100947 osmo_fsm_inst_state_chg(fi, GPRS_SNS_ST_CONFIGURED, ns_sns_configured_timeout(fi), 4);
Alexander Couzens6a161492020-07-12 13:45:50 +0200948 } else {
949 /* just send CONFIG-ACK */
950 ns2_tx_sns_config_ack(gss->sns_nsvc, NULL);
Alexander Couzens3df58862021-02-05 17:18:08 +0100951 osmo_timer_schedule(&fi->timer, nse->nsi->timeout[NS_TOUT_TSNS_PROV], 0);
Alexander Couzens6a161492020-07-12 13:45:50 +0200952 }
953}
954
955static void ns_sns_st_config_sgsn_ip6(struct osmo_fsm_inst *fi, uint32_t event, void *data)
956{
957 struct ns2_sns_state *gss = (struct ns2_sns_state *) fi->priv;
958 struct gprs_ns2_nse *nse = nse_inst_from_fi(fi);
959 const struct gprs_ns_ie_ip6_elem *v6_list;
960 unsigned int num_v6;
961 struct tlv_parsed *tp = NULL;
962
963 uint8_t cause;
964
965 tp = (struct tlv_parsed *) data;
966
967 if (!TLVP_PRESENT(tp, NS_IE_IPv6_LIST)) {
968 cause = NS_CAUSE_INVAL_NR_IPv6_EP;
969 ns2_tx_sns_config_ack(gss->sns_nsvc, &cause);
970 osmo_fsm_inst_state_chg(fi, GPRS_SNS_ST_UNCONFIGURED, 0, 0);
971 return;
972 }
973 v6_list = (const struct gprs_ns_ie_ip6_elem *) TLVP_VAL(tp, NS_IE_IPv6_LIST);
974 num_v6 = TLVP_LEN(tp, NS_IE_IPv6_LIST) / sizeof(*v6_list);
975 /* realloc to the new size */
976 gss->ip6_remote = talloc_realloc(gss, gss->ip6_remote,
977 struct gprs_ns_ie_ip6_elem,
978 gss->num_ip6_remote+num_v6);
979 /* append the new entries to the end of the list */
980 memcpy(&gss->ip6_remote[gss->num_ip6_remote], v6_list, num_v6*sizeof(*v6_list));
981 gss->num_ip6_remote += num_v6;
982
983 LOGPFSML(fi, LOGL_INFO, "Rx SNS-CONFIG: Remote IPv6 list now %u entries\n",
984 gss->num_ip6_remote);
985 if (event == GPRS_SNS_EV_CONFIG_END) {
986 /* check if sum of data / sig weights == 0 */
987 if (ip6_weight_sum_data(gss->ip6_remote, gss->num_ip6_remote) == 0 ||
988 ip6_weight_sum_sig(gss->ip6_remote, gss->num_ip6_remote) == 0) {
989 cause = NS_CAUSE_INVAL_WEIGH;
990 ns2_tx_sns_config_ack(gss->sns_nsvc, &cause);
991 osmo_fsm_inst_state_chg(fi, GPRS_SNS_ST_UNCONFIGURED, 0, 0);
992 return;
993 }
994 create_missing_nsvcs(fi);
995 ns2_tx_sns_config_ack(gss->sns_nsvc, NULL);
996 /* start the test procedure on ALL NSVCs! */
997 gprs_ns2_start_alive_all_nsvcs(nse);
998 osmo_fsm_inst_state_chg(fi, GPRS_SNS_ST_CONFIGURED, 0, 0);
999 } else {
1000 /* just send CONFIG-ACK */
1001 ns2_tx_sns_config_ack(gss->sns_nsvc, NULL);
1002 }
1003}
1004
1005static void ns2_sns_st_config_sgsn(struct osmo_fsm_inst *fi, uint32_t event, void *data)
1006{
1007 struct ns2_sns_state *gss = (struct ns2_sns_state *) fi->priv;
1008
1009 switch (event) {
1010 case GPRS_SNS_EV_CONFIG_END:
1011 case GPRS_SNS_EV_CONFIG:
1012
1013#if 0 /* part of incoming SNS-SIZE (doesn't happen on BSS side */
1014 if (TLVP_PRESENT(tp, NS_IE_RESET_FLAG)) {
1015 /* reset all existing config */
1016 if (gss->ip4_remote)
1017 talloc_free(gss->ip4_remote);
1018 gss->num_ip4_remote = 0;
1019 }
1020#endif
1021 /* TODO: reject IPv6 elements on IPv4 mode and vice versa */
1022 switch (gss->ip) {
1023 case IPv4:
1024 ns_sns_st_config_sgsn_ip4(fi, event, data);
1025 break;
1026 case IPv6:
1027 ns_sns_st_config_sgsn_ip6(fi, event, data);
1028 break;
1029 default:
1030 OSMO_ASSERT(0);
1031 }
1032 break;
1033 default:
1034 OSMO_ASSERT(0);
1035 }
1036}
1037
1038/* called when receiving GPRS_SNS_EV_ADD in state configure */
1039static void ns2_sns_st_configured_add(struct osmo_fsm_inst *fi,
1040 struct ns2_sns_state *gss,
1041 struct tlv_parsed *tp)
1042{
1043 const struct gprs_ns_ie_ip4_elem *v4_list = NULL;
1044 const struct gprs_ns_ie_ip6_elem *v6_list = NULL;
1045 int num_v4 = 0, num_v6 = 0;
1046 uint8_t trans_id, cause = 0xff;
Harald Welte7da6ace2020-09-18 09:48:05 +02001047 unsigned int i;
Alexander Couzens6a161492020-07-12 13:45:50 +02001048 int rc = 0;
1049
1050 /* TODO: refactor EV_ADD/CHANGE/REMOVE by
1051 * check uniqueness within the lists (no doublicate entries)
1052 * check not-known-by-us and sent back a list of unknown/known values
1053 * (abnormal behaviour according to 48.016)
1054 */
1055
1056 trans_id = *TLVP_VAL(tp, NS_IE_TRANS_ID);
1057 if (gss->ip == IPv4) {
1058 if (!TLVP_PRESENT(tp, NS_IE_IPv4_LIST)) {
1059 cause = NS_CAUSE_INVAL_NR_IPv4_EP;
1060 ns2_tx_sns_ack(gss->sns_nsvc, trans_id, &cause, NULL, 0, NULL, 0);
1061 return;
1062 }
1063
1064 v4_list = (const struct gprs_ns_ie_ip4_elem *) TLVP_VAL(tp, NS_IE_IPv4_LIST);
1065 num_v4 = TLVP_LEN(tp, NS_IE_IPv4_LIST) / sizeof(*v4_list);
Harald Welte7da6ace2020-09-18 09:48:05 +02001066 for (i = 0; i < num_v4; i++) {
1067 unsigned int j;
Alexander Couzens6a161492020-07-12 13:45:50 +02001068 rc = do_sns_add(fi, &v4_list[i], NULL);
1069 if (rc < 0) {
1070 /* rollback/undo to restore previous state */
Harald Welte7da6ace2020-09-18 09:48:05 +02001071 for (j = 0; j < i; j++)
Alexander Couzens6a161492020-07-12 13:45:50 +02001072 do_sns_delete(fi, &v4_list[j], NULL);
1073 cause = -rc;
1074 ns2_tx_sns_ack(gss->sns_nsvc, trans_id, &cause, NULL, 0, NULL, 0);
1075 break;
1076 }
1077 }
1078 } else { /* IPv6 */
1079 if (!TLVP_PRESENT(tp, NS_IE_IPv6_LIST)) {
1080 cause = NS_CAUSE_INVAL_NR_IPv6_EP;
1081 ns2_tx_sns_ack(gss->sns_nsvc, trans_id, &cause, NULL, 0, NULL, 0);
1082 return;
1083 }
1084
1085 v6_list = (const struct gprs_ns_ie_ip6_elem *) TLVP_VAL(tp, NS_IE_IPv6_LIST);
1086 num_v6 = TLVP_LEN(tp, NS_IE_IPv6_LIST) / sizeof(*v6_list);
Harald Welte7da6ace2020-09-18 09:48:05 +02001087 for (i = 0; i < num_v6; i++) {
1088 unsigned int j;
Alexander Couzens6a161492020-07-12 13:45:50 +02001089 rc = do_sns_add(fi, NULL, &v6_list[i]);
1090 if (rc < 0) {
1091 /* rollback/undo to restore previous state */
Harald Welte7da6ace2020-09-18 09:48:05 +02001092 for (j = 0; j < i; j++)
Alexander Couzens6a161492020-07-12 13:45:50 +02001093 do_sns_delete(fi, NULL, &v6_list[j]);
1094 cause = -rc;
1095 ns2_tx_sns_ack(gss->sns_nsvc, trans_id, &cause, NULL, 0, NULL, 0);
1096 break;
1097 }
1098 }
1099 }
1100
1101 /* TODO: correct behaviour is to answer to the *same* NSVC from which the SNS_ADD was received */
1102 ns2_tx_sns_ack(gss->sns_nsvc, trans_id, NULL, v4_list, num_v4, v6_list, num_v6);
1103}
1104
1105static void ns2_sns_st_configured_delete(struct osmo_fsm_inst *fi,
1106 struct ns2_sns_state *gss,
1107 struct tlv_parsed *tp)
1108{
1109 const struct gprs_ns_ie_ip4_elem *v4_list = NULL;
1110 const struct gprs_ns_ie_ip6_elem *v6_list = NULL;
1111 int num_v4 = 0, num_v6 = 0;
1112 uint8_t trans_id, cause = 0xff;
Harald Welte7da6ace2020-09-18 09:48:05 +02001113 unsigned int i;
Alexander Couzens6a161492020-07-12 13:45:50 +02001114 int rc = 0;
1115
1116 /* TODO: split up delete into v4 + v6
1117 * TODO: check if IPv4_LIST or IP_ADDR(v4) is present on IPv6 and vice versa
1118 * TODO: check if IPv4_LIST/IPv6_LIST and IP_ADDR is present at the same time
1119 */
1120 trans_id = *TLVP_VAL(tp, NS_IE_TRANS_ID);
1121 if (gss->ip == IPv4) {
1122 if (TLVP_PRESENT(tp, NS_IE_IPv4_LIST)) {
1123 v4_list = (const struct gprs_ns_ie_ip4_elem *) TLVP_VAL(tp, NS_IE_IPv4_LIST);
1124 num_v4 = TLVP_LEN(tp, NS_IE_IPv4_LIST) / sizeof(*v4_list);
Harald Welte7da6ace2020-09-18 09:48:05 +02001125 for ( i = 0; i < num_v4; i++) {
Alexander Couzens6a161492020-07-12 13:45:50 +02001126 rc = do_sns_delete(fi, &v4_list[i], NULL);
1127 if (rc < 0) {
1128 cause = -rc;
1129 /* continue to delete others */
1130 }
1131 }
1132 if (cause != 0xff) {
1133 /* TODO: create list of not-deleted and return it */
1134 ns2_tx_sns_ack(gss->sns_nsvc, trans_id, &cause, NULL, 0, NULL, 0);
1135 return;
1136 }
1137
1138 } else if (TLVP_PRESENT(tp, NS_IE_IP_ADDR) && TLVP_LEN(tp, NS_IE_IP_ADDR) == 5) {
1139 /* delete all NS-VCs for given IPv4 address */
1140 const uint8_t *ie = TLVP_VAL(tp, NS_IE_IP_ADDR);
1141 struct gprs_ns_ie_ip4_elem *ip4_remote;
1142 uint32_t ip_addr = *(uint32_t *)(ie+1);
1143 if (ie[0] != 0x01) { /* Address Type != IPv4 */
1144 cause = NS_CAUSE_UNKN_IP_ADDR;
1145 ns2_tx_sns_ack(gss->sns_nsvc, trans_id, &cause, NULL, 0, NULL, 0);
1146 return;
1147 }
1148 /* make a copy as do_sns_delete() will change the array underneath us */
1149 ip4_remote = talloc_memdup(fi, gss->ip4_remote,
1150 gss->num_ip4_remote * sizeof(*v4_list));
Harald Welte7da6ace2020-09-18 09:48:05 +02001151 for (i = 0; i < gss->num_ip4_remote; i++) {
Alexander Couzens6a161492020-07-12 13:45:50 +02001152 if (ip4_remote[i].ip_addr == ip_addr) {
1153 rc = do_sns_delete(fi, &ip4_remote[i], NULL);
1154 if (rc < 0) {
1155 cause = -rc;
1156 /* continue to delete others */
1157 }
1158 }
1159 }
1160 talloc_free(ip4_remote);
1161 if (cause != 0xff) {
1162 /* TODO: create list of not-deleted and return it */
1163 ns2_tx_sns_ack(gss->sns_nsvc, trans_id, &cause, NULL, 0, NULL, 0);
1164 return;
1165 }
1166 } else {
1167 cause = NS_CAUSE_INVAL_NR_IPv4_EP;
1168 ns2_tx_sns_ack(gss->sns_nsvc, trans_id, &cause, NULL, 0, NULL, 0);
1169 return;
1170 }
1171 } else { /* IPv6 */
1172 if (TLVP_PRESENT(tp, NS_IE_IPv6_LIST)) {
1173 v6_list = (const struct gprs_ns_ie_ip6_elem *) TLVP_VAL(tp, NS_IE_IPv6_LIST);
1174 num_v6 = TLVP_LEN(tp, NS_IE_IPv6_LIST) / sizeof(*v6_list);
Harald Welte7da6ace2020-09-18 09:48:05 +02001175 for (i = 0; i < num_v6; i++) {
Alexander Couzens6a161492020-07-12 13:45:50 +02001176 rc = do_sns_delete(fi, NULL, &v6_list[i]);
1177 if (rc < 0) {
1178 cause = -rc;
1179 /* continue to delete others */
1180 }
1181 }
1182 if (cause != 0xff) {
1183 /* TODO: create list of not-deleted and return it */
1184 ns2_tx_sns_ack(gss->sns_nsvc, trans_id, &cause, NULL, 0, NULL, 0);
1185 return;
1186 }
1187 } else if (TLVP_PRES_LEN(tp, NS_IE_IP_ADDR, 17)) {
1188 /* delete all NS-VCs for given IPv4 address */
1189 const uint8_t *ie = TLVP_VAL(tp, NS_IE_IP_ADDR);
1190 struct gprs_ns_ie_ip6_elem *ip6_remote;
1191 struct in6_addr ip6_addr;
Harald Welte7da6ace2020-09-18 09:48:05 +02001192 unsigned int i;
Alexander Couzens6a161492020-07-12 13:45:50 +02001193 if (ie[0] != 0x02) { /* Address Type != IPv6 */
1194 cause = NS_CAUSE_UNKN_IP_ADDR;
1195 ns2_tx_sns_ack(gss->sns_nsvc, trans_id, &cause, NULL, 0, NULL, 0);
1196 return;
1197 }
1198 memcpy(&ip6_addr, (ie+1), sizeof(struct in6_addr));
1199 /* make a copy as do_sns_delete() will change the array underneath us */
1200 ip6_remote = talloc_memdup(fi, gss->ip6_remote,
1201 gss->num_ip6_remote * sizeof(*v4_list));
Harald Welte7da6ace2020-09-18 09:48:05 +02001202 for (i = 0; i < gss->num_ip6_remote; i++) {
Alexander Couzens6a161492020-07-12 13:45:50 +02001203 if (!memcmp(&ip6_remote[i].ip_addr, &ip6_addr, sizeof(struct in6_addr))) {
1204 rc = do_sns_delete(fi, NULL, &ip6_remote[i]);
1205 if (rc < 0) {
1206 cause = -rc;
1207 /* continue to delete others */
1208 }
1209 }
1210 }
1211
1212 talloc_free(ip6_remote);
1213 if (cause != 0xff) {
1214 /* TODO: create list of not-deleted and return it */
1215 ns2_tx_sns_ack(gss->sns_nsvc, trans_id, &cause, NULL, 0, NULL, 0);
1216 return;
1217 }
1218 } else {
1219 cause = NS_CAUSE_INVAL_NR_IPv6_EP;
1220 ns2_tx_sns_ack(gss->sns_nsvc, trans_id, &cause, NULL, 0, NULL, 0);
1221 return;
1222 }
1223 }
1224 ns2_tx_sns_ack(gss->sns_nsvc, trans_id, NULL, v4_list, num_v4, v6_list, num_v6);
1225}
1226
1227static void ns2_sns_st_configured_change(struct osmo_fsm_inst *fi,
1228 struct ns2_sns_state *gss,
1229 struct tlv_parsed *tp)
1230{
1231 const struct gprs_ns_ie_ip4_elem *v4_list = NULL;
1232 const struct gprs_ns_ie_ip6_elem *v6_list = NULL;
1233 int num_v4 = 0, num_v6 = 0;
1234 uint8_t trans_id, cause = 0xff;
1235 int rc = 0;
Harald Welte7da6ace2020-09-18 09:48:05 +02001236 unsigned int i;
Alexander Couzens6a161492020-07-12 13:45:50 +02001237
1238 trans_id = *TLVP_VAL(tp, NS_IE_TRANS_ID);
1239 if (TLVP_PRESENT(tp, NS_IE_IPv4_LIST)) {
1240 v4_list = (const struct gprs_ns_ie_ip4_elem *) TLVP_VAL(tp, NS_IE_IPv4_LIST);
1241 num_v4 = TLVP_LEN(tp, NS_IE_IPv4_LIST) / sizeof(*v4_list);
Harald Welte7da6ace2020-09-18 09:48:05 +02001242 for (i = 0; i < num_v4; i++) {
Alexander Couzens6a161492020-07-12 13:45:50 +02001243 rc = do_sns_change_weight(fi, &v4_list[i], NULL);
1244 if (rc < 0) {
1245 cause = -rc;
1246 /* continue to others */
1247 }
1248 }
1249 if (cause != 0xff) {
1250 ns2_tx_sns_ack(gss->sns_nsvc, trans_id, &cause, NULL, 0, NULL, 0);
1251 return;
1252 }
1253 } else if (TLVP_PRESENT(tp, NS_IE_IPv6_LIST)) {
1254 v6_list = (const struct gprs_ns_ie_ip6_elem *) TLVP_VAL(tp, NS_IE_IPv6_LIST);
1255 num_v6 = TLVP_LEN(tp, NS_IE_IPv6_LIST) / sizeof(*v6_list);
Harald Welte7da6ace2020-09-18 09:48:05 +02001256 for (i = 0; i < num_v6; i++) {
Alexander Couzens6a161492020-07-12 13:45:50 +02001257 rc = do_sns_change_weight(fi, NULL, &v6_list[i]);
1258 if (rc < 0) {
1259 cause = -rc;
1260 /* continue to others */
1261 }
1262 }
1263 if (cause != 0xff) {
1264 ns2_tx_sns_ack(gss->sns_nsvc, trans_id, &cause, NULL, 0, NULL, 0);
1265 return;
1266 }
1267 } else {
1268 cause = NS_CAUSE_INVAL_NR_IPv4_EP;
1269 ns2_tx_sns_ack(gss->sns_nsvc, trans_id, &cause, NULL, 0, NULL, 0);
1270 return;
1271 }
1272 ns2_tx_sns_ack(gss->sns_nsvc, trans_id, NULL, v4_list, num_v4, v6_list, num_v6);
1273}
1274
1275static void ns2_sns_st_configured(struct osmo_fsm_inst *fi, uint32_t event, void *data)
1276{
1277 struct ns2_sns_state *gss = (struct ns2_sns_state *) fi->priv;
1278 struct tlv_parsed *tp = data;
1279
1280 switch (event) {
1281 case GPRS_SNS_EV_ADD:
1282 ns2_sns_st_configured_add(fi, gss, tp);
1283 break;
1284 case GPRS_SNS_EV_DELETE:
1285 ns2_sns_st_configured_delete(fi, gss, tp);
1286 break;
1287 case GPRS_SNS_EV_CHANGE_WEIGHT:
1288 ns2_sns_st_configured_change(fi, gss, tp);
1289 break;
Alexander Couzensbe7cecc2021-02-03 18:25:27 +01001290 case GPRS_SNS_EV_NSVC_ALIVE:
1291 osmo_timer_del(&fi->timer);
1292 break;
Alexander Couzens6a161492020-07-12 13:45:50 +02001293 }
1294}
1295
1296static void ns2_sns_st_configured_onenter(struct osmo_fsm_inst *fi, uint32_t old_state)
1297{
1298 struct gprs_ns2_nse *nse = nse_inst_from_fi(fi);
Alexander Couzens138b96f2021-01-25 16:23:29 +01001299 ns2_prim_status_ind(nse, NULL, 0, GPRS_NS2_AFF_CAUSE_SNS_CONFIGURED);
Alexander Couzens6a161492020-07-12 13:45:50 +02001300}
1301
1302static const struct osmo_fsm_state ns2_sns_bss_states[] = {
1303 [GPRS_SNS_ST_UNCONFIGURED] = {
Alexander Couzense769f522020-12-07 07:37:07 +01001304 .in_event_mask = 0, /* handled by all_state_action */
Alexander Couzens6a161492020-07-12 13:45:50 +02001305 .out_state_mask = S(GPRS_SNS_ST_SIZE),
1306 .name = "UNCONFIGURED",
1307 .action = ns2_sns_st_unconfigured,
1308 },
1309 [GPRS_SNS_ST_SIZE] = {
1310 .in_event_mask = S(GPRS_SNS_EV_SIZE_ACK),
1311 .out_state_mask = S(GPRS_SNS_ST_UNCONFIGURED) |
1312 S(GPRS_SNS_ST_SIZE) |
1313 S(GPRS_SNS_ST_CONFIG_BSS),
1314 .name = "SIZE",
1315 .action = ns2_sns_st_size,
1316 .onenter = ns2_sns_st_size_onenter,
1317 },
1318 [GPRS_SNS_ST_CONFIG_BSS] = {
1319 .in_event_mask = S(GPRS_SNS_EV_CONFIG_ACK),
1320 .out_state_mask = S(GPRS_SNS_ST_UNCONFIGURED) |
1321 S(GPRS_SNS_ST_CONFIG_BSS) |
1322 S(GPRS_SNS_ST_CONFIG_SGSN) |
1323 S(GPRS_SNS_ST_SIZE),
1324 .name = "CONFIG_BSS",
1325 .action = ns2_sns_st_config_bss,
1326 .onenter = ns2_sns_st_config_bss_onenter,
1327 },
1328 [GPRS_SNS_ST_CONFIG_SGSN] = {
1329 .in_event_mask = S(GPRS_SNS_EV_CONFIG) |
1330 S(GPRS_SNS_EV_CONFIG_END),
1331 .out_state_mask = S(GPRS_SNS_ST_UNCONFIGURED) |
1332 S(GPRS_SNS_ST_CONFIG_SGSN) |
1333 S(GPRS_SNS_ST_CONFIGURED) |
1334 S(GPRS_SNS_ST_SIZE),
1335 .name = "CONFIG_SGSN",
1336 .action = ns2_sns_st_config_sgsn,
1337 },
1338 [GPRS_SNS_ST_CONFIGURED] = {
1339 .in_event_mask = S(GPRS_SNS_EV_ADD) |
1340 S(GPRS_SNS_EV_DELETE) |
Alexander Couzensbe7cecc2021-02-03 18:25:27 +01001341 S(GPRS_SNS_EV_CHANGE_WEIGHT) |
1342 S(GPRS_SNS_EV_NSVC_ALIVE),
Alexander Couzense03d8632020-12-06 03:31:44 +01001343 .out_state_mask = S(GPRS_SNS_ST_UNCONFIGURED) |
1344 S(GPRS_SNS_ST_SIZE),
Alexander Couzens6a161492020-07-12 13:45:50 +02001345 .name = "CONFIGURED",
1346 .action = ns2_sns_st_configured,
1347 .onenter = ns2_sns_st_configured_onenter,
1348 },
1349};
1350
1351static int ns2_sns_fsm_bss_timer_cb(struct osmo_fsm_inst *fi)
1352{
Alexander Couzens90ee9632020-12-07 06:18:32 +01001353 struct ns2_sns_state *gss = (struct ns2_sns_state *) fi->priv;
Alexander Couzens6a161492020-07-12 13:45:50 +02001354 struct gprs_ns2_nse *nse = nse_inst_from_fi(fi);
1355 struct gprs_ns2_inst *nsi = nse->nsi;
1356
Alexander Couzens90ee9632020-12-07 06:18:32 +01001357 gss->N++;
Alexander Couzens6a161492020-07-12 13:45:50 +02001358 switch (fi->T) {
1359 case 1:
Alexander Couzensa367d082020-12-21 14:06:24 +01001360 if (gss->N >= nsi->timeout[NS_TOUT_TSNS_SIZE_RETRIES]) {
1361 LOGPFSML(fi, LOGL_ERROR, "NSE %d: Size retries failed. Selecting next IP-SNS endpoint.\n", nse->nsei);
Alexander Couzens90ee9632020-12-07 06:18:32 +01001362 osmo_fsm_inst_dispatch(fi, GPRS_SNS_EV_SELECT_ENDPOINT, NULL);
Alexander Couzensa367d082020-12-21 14:06:24 +01001363 } else {
Alexander Couzenscc65a252020-12-21 14:03:58 +01001364 osmo_fsm_inst_state_chg(fi, GPRS_SNS_ST_SIZE, nsi->timeout[NS_TOUT_TSNS_PROV], 1);
Alexander Couzensa367d082020-12-21 14:06:24 +01001365 }
Alexander Couzens6a161492020-07-12 13:45:50 +02001366 break;
1367 case 2:
Alexander Couzensa367d082020-12-21 14:06:24 +01001368 if (gss->N >= nsi->timeout[NS_TOUT_TSNS_CONFIG_RETRIES]) {
Alexander Couzens3df58862021-02-05 17:18:08 +01001369 LOGPFSML(fi, LOGL_ERROR, "NSE %d: BSS Config retries failed. Selecting next IP-SNS endpoint.\n", nse->nsei);
Alexander Couzens90ee9632020-12-07 06:18:32 +01001370 osmo_fsm_inst_dispatch(fi, GPRS_SNS_EV_SELECT_ENDPOINT, NULL);
Alexander Couzensa367d082020-12-21 14:06:24 +01001371 } else {
Alexander Couzenscc65a252020-12-21 14:03:58 +01001372 osmo_fsm_inst_state_chg(fi, GPRS_SNS_ST_CONFIG_BSS, nsi->timeout[NS_TOUT_TSNS_PROV], 2);
Alexander Couzensa367d082020-12-21 14:06:24 +01001373 }
Alexander Couzens6a161492020-07-12 13:45:50 +02001374 break;
Alexander Couzensbe7cecc2021-02-03 18:25:27 +01001375 case 3:
Alexander Couzens3df58862021-02-05 17:18:08 +01001376 if (gss->N >= nsi->timeout[NS_TOUT_TSNS_CONFIG_RETRIES]) {
1377 LOGPFSML(fi, LOGL_ERROR, "NSE %d: SGSN Config retries failed. Selecting next IP-SNS endpoint.\n", nse->nsei);
1378 osmo_fsm_inst_dispatch(fi, GPRS_SNS_EV_SELECT_ENDPOINT, NULL);
1379 } else {
1380 osmo_fsm_inst_state_chg(fi, GPRS_SNS_ST_CONFIG_SGSN, nsi->timeout[NS_TOUT_TSNS_PROV], 3);
1381 }
1382 break;
1383 case 4:
Alexander Couzensbe7cecc2021-02-03 18:25:27 +01001384 LOGPFSML(fi, LOGL_ERROR, "NSE %d: Config succeeded but no NS-VC came online. Selecting next IP-SNS endpoint.\n", nse->nsei);
1385 osmo_fsm_inst_dispatch(fi, GPRS_SNS_EV_SELECT_ENDPOINT, NULL);
1386 break;
Alexander Couzens6a161492020-07-12 13:45:50 +02001387 }
1388 return 0;
1389}
1390
1391static void ns2_sns_st_all_action(struct osmo_fsm_inst *fi, uint32_t event, void *data)
1392{
Alexander Couzense769f522020-12-07 07:37:07 +01001393 struct ns2_sns_state *gss = (struct ns2_sns_state *) fi->priv;
Alexander Couzens6a161492020-07-12 13:45:50 +02001394 struct gprs_ns2_nse *nse = nse_inst_from_fi(fi);
1395
1396 /* reset when receiving GPRS_SNS_EV_NO_NSVC */
Alexander Couzense769f522020-12-07 07:37:07 +01001397 switch (event) {
1398 case GPRS_SNS_EV_NO_NSVC:
Alexander Couzens3ad73362020-12-21 13:53:00 +01001399 /* ignore reselection running */
1400 if (gss->reselection_running)
1401 break;
1402
1403 LOGPFSML(fi, LOGL_ERROR, "NSE %d: no remaining NSVC, resetting SNS FSM\n", nse->nsei);
1404 osmo_fsm_inst_dispatch(fi, GPRS_SNS_EV_SELECT_ENDPOINT, NULL);
Alexander Couzense769f522020-12-07 07:37:07 +01001405 break;
1406 case GPRS_SNS_EV_SELECT_ENDPOINT:
1407 /* tear down previous state
1408 * gprs_ns2_free_nsvcs() will trigger NO_NSVC, prevent this from triggering a reselection */
1409 gss->reselection_running = true;
1410 gprs_ns2_free_nsvcs(nse);
Alexander Couzens7a7b20b2021-01-18 10:47:33 +01001411 ns2_clear_ipv46_entries(gss);
Alexander Couzense769f522020-12-07 07:37:07 +01001412
1413 /* Choose the next sns endpoint. */
1414 if (llist_empty(&gss->sns_endpoints)) {
1415 gss->initial = NULL;
Alexander Couzens138b96f2021-01-25 16:23:29 +01001416 ns2_prim_status_ind(gss->nse, NULL, 0, GPRS_NS2_AFF_CAUSE_SNS_NO_ENDPOINTS);
Alexander Couzense769f522020-12-07 07:37:07 +01001417 osmo_fsm_inst_state_chg(fi, GPRS_SNS_ST_UNCONFIGURED, 0, 3);
1418 return;
1419 } else if (!gss->initial) {
1420 gss->initial = llist_first_entry(&gss->sns_endpoints, struct sns_endpoint, list);
Alexander Couzens81ae0aa2020-12-07 05:49:43 +01001421 gss->bind_offset = 0;
Alexander Couzense769f522020-12-07 07:37:07 +01001422 } else if (gss->initial->list.next == &gss->sns_endpoints) {
1423 /* last entry, continue with first */
1424 gss->initial = llist_first_entry(&gss->sns_endpoints, struct sns_endpoint, list);
Alexander Couzens81ae0aa2020-12-07 05:49:43 +01001425 gss->bind_offset++;
1426 gss->bind_offset %= ns2_ip_count_bind(nse->nsi, &gss->initial->saddr);
Alexander Couzense769f522020-12-07 07:37:07 +01001427 } else {
1428 /* next element is an entry */
1429 gss->initial = llist_entry(gss->initial->list.next, struct sns_endpoint, list);
1430 }
1431
1432 gss->reselection_running = false;
1433 osmo_fsm_inst_state_chg(fi, GPRS_SNS_ST_SIZE, nse->nsi->timeout[NS_TOUT_TSNS_PROV], 1);
1434 break;
1435 }
Alexander Couzens6a161492020-07-12 13:45:50 +02001436}
1437
1438static struct osmo_fsm gprs_ns2_sns_bss_fsm = {
1439 .name = "GPRS-NS2-SNS-BSS",
1440 .states = ns2_sns_bss_states,
1441 .num_states = ARRAY_SIZE(ns2_sns_bss_states),
Alexander Couzense769f522020-12-07 07:37:07 +01001442 .allstate_event_mask = S(GPRS_SNS_EV_NO_NSVC) |
1443 S(GPRS_SNS_EV_SELECT_ENDPOINT),
Alexander Couzens6a161492020-07-12 13:45:50 +02001444 .allstate_action = ns2_sns_st_all_action,
1445 .cleanup = NULL,
1446 .timer_cb = ns2_sns_fsm_bss_timer_cb,
1447 /* .log_subsys = DNS, "is not constant" */
1448 .event_names = gprs_sns_event_names,
1449 .pre_term = NULL,
1450 .log_subsys = DLNS,
1451};
1452
Harald Welte5bef2cc2020-09-18 22:33:24 +02001453/*! Allocate an IP-SNS FSM for the BSS side.
1454 * \param[in] nse NS Entity in which the FSM runs
1455 * \param[in] id string identifier
1456 * \retruns FSM instance on success; NULL on error */
Alexander Couzens6a161492020-07-12 13:45:50 +02001457struct osmo_fsm_inst *ns2_sns_bss_fsm_alloc(struct gprs_ns2_nse *nse,
1458 const char *id)
1459{
1460 struct osmo_fsm_inst *fi;
1461 struct ns2_sns_state *gss;
1462
1463 fi = osmo_fsm_inst_alloc(&gprs_ns2_sns_bss_fsm, nse, NULL, LOGL_DEBUG, id);
1464 if (!fi)
1465 return fi;
1466
1467 gss = talloc_zero(fi, struct ns2_sns_state);
1468 if (!gss)
1469 goto err;
1470
1471 fi->priv = gss;
1472 gss->nse = nse;
Alexander Couzense769f522020-12-07 07:37:07 +01001473 INIT_LLIST_HEAD(&gss->sns_endpoints);
Alexander Couzens6a161492020-07-12 13:45:50 +02001474
1475 return fi;
1476err:
1477 osmo_fsm_inst_term(fi, OSMO_FSM_TERM_ERROR, NULL);
1478 return NULL;
1479}
1480
Harald Welte5bef2cc2020-09-18 22:33:24 +02001481/*! main entry point for receiving SNS messages from the network.
1482 * \param[in] nsvc NS-VC on which the message was received
1483 * \param[in] msg message buffer of the IP-SNS message
1484 * \param[in] tp parsed TLV structure of message
1485 * \retruns 0 on success; negative on error */
Alexander Couzens8dfc24c2021-01-25 16:09:23 +01001486int ns2_sns_rx(struct gprs_ns2_vc *nsvc, struct msgb *msg, struct tlv_parsed *tp)
Alexander Couzens6a161492020-07-12 13:45:50 +02001487{
1488 struct gprs_ns2_nse *nse = nsvc->nse;
1489 struct gprs_ns_hdr *nsh = (struct gprs_ns_hdr *) msg->l2h;
1490 uint16_t nsei = nsvc->nse->nsei;
1491 struct osmo_fsm_inst *fi;
1492
1493 if (!nse->bss_sns_fi) {
Harald Weltef2949742021-01-20 14:54:14 +01001494 LOGNSVC(nsvc, LOGL_NOTICE, "Rx %s for NS Instance that has no SNS!\n",
1495 get_value_string(gprs_ns_pdu_strings, nsh->pdu_type));
Alexander Couzens6a161492020-07-12 13:45:50 +02001496 return -EINVAL;
1497 }
1498
Alexander Couzens6a161492020-07-12 13:45:50 +02001499 /* FIXME: how to resolve SNS FSM Instance by NSEI (SGSN)? */
1500 fi = nse->bss_sns_fi;
1501
Harald Weltef2949742021-01-20 14:54:14 +01001502 LOGPFSML(fi, LOGL_DEBUG, "NSEI=%u Rx SNS PDU type %s\n", nsei,
1503 get_value_string(gprs_ns_pdu_strings, nsh->pdu_type));
1504
Alexander Couzens6a161492020-07-12 13:45:50 +02001505 switch (nsh->pdu_type) {
1506 case SNS_PDUT_SIZE:
1507 osmo_fsm_inst_dispatch(fi, GPRS_SNS_EV_SIZE, tp);
1508 break;
1509 case SNS_PDUT_SIZE_ACK:
1510 osmo_fsm_inst_dispatch(fi, GPRS_SNS_EV_SIZE_ACK, tp);
1511 break;
1512 case SNS_PDUT_CONFIG:
1513 if (nsh->data[0] & 0x01)
1514 osmo_fsm_inst_dispatch(fi, GPRS_SNS_EV_CONFIG_END, tp);
1515 else
1516 osmo_fsm_inst_dispatch(fi, GPRS_SNS_EV_CONFIG, tp);
1517 break;
1518 case SNS_PDUT_CONFIG_ACK:
1519 osmo_fsm_inst_dispatch(fi, GPRS_SNS_EV_CONFIG_ACK, tp);
1520 break;
1521 case SNS_PDUT_ADD:
1522 osmo_fsm_inst_dispatch(fi, GPRS_SNS_EV_ADD, tp);
1523 break;
1524 case SNS_PDUT_DELETE:
1525 osmo_fsm_inst_dispatch(fi, GPRS_SNS_EV_DELETE, tp);
1526 break;
1527 case SNS_PDUT_CHANGE_WEIGHT:
1528 osmo_fsm_inst_dispatch(fi, GPRS_SNS_EV_CHANGE_WEIGHT, tp);
1529 break;
1530 case SNS_PDUT_ACK:
Harald Weltef2949742021-01-20 14:54:14 +01001531 LOGPFSML(fi, LOGL_NOTICE, "NSEI=%u Rx unsupported SNS PDU type %s\n", nsei,
1532 get_value_string(gprs_ns_pdu_strings, nsh->pdu_type));
Alexander Couzens6a161492020-07-12 13:45:50 +02001533 break;
1534 default:
Harald Weltef2949742021-01-20 14:54:14 +01001535 LOGPFSML(fi, LOGL_ERROR, "NSEI=%u Rx unknown SNS PDU type %s\n", nsei,
1536 get_value_string(gprs_ns_pdu_strings, nsh->pdu_type));
Alexander Couzens6a161492020-07-12 13:45:50 +02001537 return -EINVAL;
1538 }
1539
1540 return 0;
1541}
1542
1543#include <osmocom/vty/vty.h>
1544#include <osmocom/vty/misc.h>
1545
Harald Welte1262c4f2021-01-19 20:58:33 +01001546static void vty_dump_sns_ip4(struct vty *vty, const char *prefix, const struct gprs_ns_ie_ip4_elem *ip4)
Alexander Couzens6a161492020-07-12 13:45:50 +02001547{
1548 struct in_addr in = { .s_addr = ip4->ip_addr };
Harald Welte1262c4f2021-01-19 20:58:33 +01001549 vty_out(vty, "%s %s:%u, Signalling Weight: %u, Data Weight: %u%s", prefix,
Alexander Couzens6a161492020-07-12 13:45:50 +02001550 inet_ntoa(in), ntohs(ip4->udp_port), ip4->sig_weight, ip4->data_weight, VTY_NEWLINE);
1551}
1552
Harald Welte1262c4f2021-01-19 20:58:33 +01001553static void vty_dump_sns_ip6(struct vty *vty, const char *prefix, const struct gprs_ns_ie_ip6_elem *ip6)
Alexander Couzens6a161492020-07-12 13:45:50 +02001554{
1555 char ip_addr[INET6_ADDRSTRLEN] = {};
1556 if (!inet_ntop(AF_INET6, &ip6->ip_addr, ip_addr, (INET6_ADDRSTRLEN)))
1557 strcpy(ip_addr, "Invalid IPv6");
1558
Harald Welte1262c4f2021-01-19 20:58:33 +01001559 vty_out(vty, "%s %s:%u, Signalling Weight: %u, Data Weight: %u%s", prefix,
Alexander Couzens6a161492020-07-12 13:45:50 +02001560 ip_addr, ntohs(ip6->udp_port), ip6->sig_weight, ip6->data_weight, VTY_NEWLINE);
1561}
1562
Harald Welte5bef2cc2020-09-18 22:33:24 +02001563/*! Dump the IP-SNS state to a vty.
1564 * \param[in] vty VTY to which the state shall be printed
Harald Welte1262c4f2021-01-19 20:58:33 +01001565 * \param[in] prefix prefix to print at start of each line (typically indenting)
Harald Welte5bef2cc2020-09-18 22:33:24 +02001566 * \param[in] nse NS Entity whose IP-SNS state shall be printed
1567 * \param[in] stats Whether or not statistics shall also be printed */
Alexander Couzens8dfc24c2021-01-25 16:09:23 +01001568void ns2_sns_dump_vty(struct vty *vty, const char *prefix, const struct gprs_ns2_nse *nse, bool stats)
Alexander Couzens6a161492020-07-12 13:45:50 +02001569{
1570 struct ns2_sns_state *gss;
1571 unsigned int i;
1572
1573 if (!nse->bss_sns_fi)
1574 return;
1575
Harald Welte1262c4f2021-01-19 20:58:33 +01001576 vty_out_fsm_inst2(vty, prefix, nse->bss_sns_fi);
Alexander Couzens6a161492020-07-12 13:45:50 +02001577 gss = (struct ns2_sns_state *) nse->bss_sns_fi->priv;
1578
Harald Welte1262c4f2021-01-19 20:58:33 +01001579 vty_out(vty, "%sMaximum number of remote NS-VCs: %zu, IPv4 Endpoints: %zu, IPv6 Endpoints: %zu%s",
1580 prefix, gss->num_max_nsvcs, gss->num_max_ip4_remote, gss->num_max_ip6_remote, VTY_NEWLINE);
Alexander Couzens6a161492020-07-12 13:45:50 +02001581
1582 if (gss->num_ip4_local && gss->num_ip4_remote) {
Harald Welte1262c4f2021-01-19 20:58:33 +01001583 vty_out(vty, "%sLocal IPv4 Endpoints:%s", prefix, VTY_NEWLINE);
Alexander Couzens6a161492020-07-12 13:45:50 +02001584 for (i = 0; i < gss->num_ip4_local; i++)
Harald Welte1262c4f2021-01-19 20:58:33 +01001585 vty_dump_sns_ip4(vty, prefix, &gss->ip4_local[i]);
Alexander Couzens6a161492020-07-12 13:45:50 +02001586
Harald Welte1262c4f2021-01-19 20:58:33 +01001587 vty_out(vty, "%sRemote IPv4 Endpoints:%s", prefix, VTY_NEWLINE);
Alexander Couzens6a161492020-07-12 13:45:50 +02001588 for (i = 0; i < gss->num_ip4_remote; i++)
Harald Welte1262c4f2021-01-19 20:58:33 +01001589 vty_dump_sns_ip4(vty, prefix, &gss->ip4_remote[i]);
Alexander Couzens6a161492020-07-12 13:45:50 +02001590 }
1591
1592 if (gss->num_ip6_local && gss->num_ip6_remote) {
Harald Welte1262c4f2021-01-19 20:58:33 +01001593 vty_out(vty, "%sLocal IPv6 Endpoints:%s", prefix, VTY_NEWLINE);
Alexander Couzens6a161492020-07-12 13:45:50 +02001594 for (i = 0; i < gss->num_ip6_local; i++)
Harald Welte1262c4f2021-01-19 20:58:33 +01001595 vty_dump_sns_ip6(vty, prefix, &gss->ip6_local[i]);
Alexander Couzens6a161492020-07-12 13:45:50 +02001596
Harald Welte1262c4f2021-01-19 20:58:33 +01001597 vty_out(vty, "%sRemote IPv6 Endpoints:%s", prefix, VTY_NEWLINE);
Alexander Couzens6a161492020-07-12 13:45:50 +02001598 for (i = 0; i < gss->num_ip6_remote; i++)
Harald Welte1262c4f2021-01-19 20:58:33 +01001599 vty_dump_sns_ip6(vty, prefix, &gss->ip6_remote[i]);
Alexander Couzens6a161492020-07-12 13:45:50 +02001600 }
1601}
1602
Alexander Couzens412bc342020-11-19 05:24:37 +01001603/*! write IP-SNS to a vty
1604 * \param[in] vty VTY to which the state shall be printed
1605 * \param[in] nse NS Entity whose IP-SNS state shall be printed */
Alexander Couzens8dfc24c2021-01-25 16:09:23 +01001606void ns2_sns_write_vty(struct vty *vty, const struct gprs_ns2_nse *nse)
Alexander Couzens412bc342020-11-19 05:24:37 +01001607{
1608 struct ns2_sns_state *gss;
1609 struct osmo_sockaddr_str addr_str;
1610 struct sns_endpoint *endpoint;
1611
1612 if (!nse->bss_sns_fi)
1613 return;
1614
1615 gss = (struct ns2_sns_state *) nse->bss_sns_fi->priv;
1616 llist_for_each_entry(endpoint, &gss->sns_endpoints, list) {
Vadim Yanitskiyd8b70032021-01-05 14:24:09 +01001617 /* It's unlikely that an error happens, but let's better be safe. */
1618 if (osmo_sockaddr_str_from_sockaddr(&addr_str, &endpoint->saddr.u.sas) != 0)
1619 addr_str = (struct osmo_sockaddr_str) { .ip = "<INVALID>" };
Alexander Couzens412bc342020-11-19 05:24:37 +01001620 vty_out(vty, " ip-sns %s %u%s", addr_str.ip, addr_str.port, VTY_NEWLINE);
1621 }
1622}
1623
Alexander Couzense769f522020-12-07 07:37:07 +01001624static struct sns_endpoint *ns2_get_sns_endpoint(struct ns2_sns_state *state,
1625 const struct osmo_sockaddr *saddr)
1626{
1627 struct sns_endpoint *endpoint;
1628
1629 llist_for_each_entry(endpoint, &state->sns_endpoints, list) {
1630 if (!osmo_sockaddr_cmp(saddr, &endpoint->saddr))
1631 return endpoint;
1632 }
1633
1634 return NULL;
1635}
1636
1637/*! gprs_ns2_sns_add_endpoint
1638 * \param[in] nse
1639 * \param[in] sockaddr
1640 * \return
1641 */
1642int gprs_ns2_sns_add_endpoint(struct gprs_ns2_nse *nse,
1643 const struct osmo_sockaddr *saddr)
1644{
1645 struct ns2_sns_state *gss;
1646 struct sns_endpoint *endpoint;
1647 bool do_selection = false;
1648
1649 if (nse->ll != GPRS_NS2_LL_UDP) {
1650 return -EINVAL;
1651 }
1652
Alexander Couzens138b96f2021-01-25 16:23:29 +01001653 if (nse->dialect != GPRS_NS2_DIALECT_SNS) {
Alexander Couzense769f522020-12-07 07:37:07 +01001654 return -EINVAL;
1655 }
1656
1657 gss = nse->bss_sns_fi->priv;
1658
1659 if (ns2_get_sns_endpoint(gss, saddr))
1660 return -EADDRINUSE;
1661
1662 endpoint = talloc_zero(nse->bss_sns_fi->priv, struct sns_endpoint);
1663 if (!endpoint)
1664 return -ENOMEM;
1665
1666 endpoint->saddr = *saddr;
1667 if (llist_empty(&gss->sns_endpoints))
1668 do_selection = true;
1669
1670 llist_add_tail(&endpoint->list, &gss->sns_endpoints);
1671 if (do_selection)
1672 osmo_fsm_inst_dispatch(nse->bss_sns_fi, GPRS_SNS_EV_SELECT_ENDPOINT, NULL);
1673
1674 return 0;
1675}
1676
1677/*! gprs_ns2_sns_del_endpoint
1678 * \param[in] nse
1679 * \param[in] sockaddr
1680 * \return 0 on success, otherwise < 0
1681 */
1682int gprs_ns2_sns_del_endpoint(struct gprs_ns2_nse *nse,
1683 const struct osmo_sockaddr *saddr)
1684{
1685 struct ns2_sns_state *gss;
1686 struct sns_endpoint *endpoint;
1687
1688 if (nse->ll != GPRS_NS2_LL_UDP) {
1689 return -EINVAL;
1690 }
1691
Alexander Couzens138b96f2021-01-25 16:23:29 +01001692 if (nse->dialect != GPRS_NS2_DIALECT_SNS) {
Alexander Couzense769f522020-12-07 07:37:07 +01001693 return -EINVAL;
1694 }
1695
1696 gss = nse->bss_sns_fi->priv;
1697 endpoint = ns2_get_sns_endpoint(gss, saddr);
1698 if (!endpoint)
1699 return -ENOENT;
1700
1701 /* if this is an unused SNS endpoint it's done */
1702 if (gss->initial != endpoint) {
1703 llist_del(&endpoint->list);
1704 talloc_free(endpoint);
1705 return 0;
1706 }
1707
1708 /* gprs_ns2_free_nsvcs() will trigger GPRS_SNS_EV_NO_NSVC on the last NS-VC
1709 * and restart SNS SIZE procedure which selects a new initial */
Harald Weltef2949742021-01-20 14:54:14 +01001710 LOGNSE(nse, LOGL_INFO, "Current in-use SNS endpoint is being removed."
Alexander Couzense769f522020-12-07 07:37:07 +01001711 "Closing all NS-VC and restart SNS-SIZE procedure"
1712 "with a remaining SNS endpoint.\n");
1713
1714 /* Continue with the next endpoint in the list.
1715 * Special case if the endpoint is at the start or end of the list */
1716 if (endpoint->list.prev == &gss->sns_endpoints ||
1717 endpoint->list.next == &gss->sns_endpoints)
1718 gss->initial = NULL;
1719 else
1720 gss->initial = llist_entry(endpoint->list.next->prev,
1721 struct sns_endpoint,
1722 list);
1723
1724 llist_del(&endpoint->list);
1725 gprs_ns2_free_nsvcs(nse);
1726 talloc_free(endpoint);
1727
1728 return 0;
1729}
1730
1731/*! gprs_ns2_sns_count
1732 * \param[in] nse NS Entity whose IP-SNS endpoints shall be printed
1733 * \return the count of endpoints or < 0 if NSE doesn't contain sns.
1734 */
1735int gprs_ns2_sns_count(struct gprs_ns2_nse *nse)
1736{
1737 struct ns2_sns_state *gss;
1738 struct sns_endpoint *endpoint;
1739 int count = 0;
1740
1741 if (nse->ll != GPRS_NS2_LL_UDP) {
1742 return -EINVAL;
1743 }
1744
Alexander Couzens138b96f2021-01-25 16:23:29 +01001745 if (nse->dialect != GPRS_NS2_DIALECT_SNS) {
Alexander Couzense769f522020-12-07 07:37:07 +01001746 return -EINVAL;
1747 }
1748
1749 gss = nse->bss_sns_fi->priv;
1750 llist_for_each_entry(endpoint, &gss->sns_endpoints, list)
1751 count++;
1752
1753 return count;
1754}
1755
Alexander Couzensbe7cecc2021-02-03 18:25:27 +01001756void ns2_sns_notify_alive(struct gprs_ns2_nse *nse, struct gprs_ns2_vc *nsvc, bool alive)
1757{
1758 struct ns2_sns_state *gss;
1759 struct gprs_ns2_vc *tmp;
1760
1761 if (!nse->bss_sns_fi)
1762 return;
1763
1764 gss = nse->bss_sns_fi->priv;
1765 if(nse->bss_sns_fi->state != GPRS_SNS_ST_CONFIGURED)
1766 return;
1767
1768 if (alive == gss->alive)
1769 return;
1770
1771 /* check if this is the current SNS NS-VC */
1772 if (nsvc == gss->sns_nsvc) {
1773 /* only replace the SNS NS-VC if there are other alive NS-VC.
1774 * There aren't any other alive NS-VC when the SNS fsm just reached CONFIGURED
1775 * and couldn't confirm yet if the NS-VC comes up */
1776 if (gss->alive && !alive)
1777 ns2_sns_replace_nsvc(nsvc);
1778 }
1779
1780 if (alive) {
1781 gss->alive = true;
1782 osmo_fsm_inst_dispatch(nse->bss_sns_fi, GPRS_SNS_EV_NSVC_ALIVE, NULL);
1783 } else {
1784 /* is there at least another alive nsvc? */
1785 llist_for_each_entry(tmp, &nse->nsvc, list) {
1786 if (ns2_vc_is_unblocked(tmp))
1787 return;
1788 }
1789
1790 /* all NS-VC have failed */
1791 gss->alive = false;
1792 osmo_fsm_inst_dispatch(nse->bss_sns_fi, GPRS_SNS_EV_NO_NSVC, NULL);
1793 }
1794}
1795
Alexander Couzens6a161492020-07-12 13:45:50 +02001796/* initialize osmo_ctx on main tread */
1797static __attribute__((constructor)) void on_dso_load_ctx(void)
1798{
1799 OSMO_ASSERT(osmo_fsm_register(&gprs_ns2_sns_bss_fsm) == 0);
1800}