blob: 05118b21dbdc4dc87495ca524414753700a2c0cc [file] [log] [blame]
Alexander Couzens6a161492020-07-12 13:45:50 +02001/*! \file gprs_ns2_vc_fsm.c
2 * NS virtual circuit FSM 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) 2020 sysmocom - s.f.m.c. GmbH
7 * Author: Alexander Couzens <lynxis@fe80.eu>
8 *
9 * All Rights Reserved
10 *
11 * SPDX-License-Identifier: GPL-2.0+
12 *
13 * This program is free software; you can redistribute it and/or modify
14 * it under the terms of the GNU General Public License as published by
15 * the Free Software Foundation; either version 2 of the License, or
16 * (at your option) any later version.
17 *
18 * This program is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU General Public License for more details.
22 *
23 * You should have received a copy of the GNU General Public License
24 * along with this program. If not, see <http://www.gnu.org/licenses/>.
25 *
26 */
27
28/* The BSS NSE only has one SGSN IP address configured, and it will use the SNS procedures
29 * to communicated its local IPs/ports as well as all the SGSN side IPs/ports and
30 * associated weights. In theory, the BSS then uses this to establish a full mesh
31 * of NSVCs between all BSS-side IPs/ports and SGSN-side IPs/ports */
32
33#include <errno.h>
34
35#include <netinet/in.h>
36#include <arpa/inet.h>
37
38#include <osmocom/core/fsm.h>
39#include <osmocom/core/msgb.h>
40#include <osmocom/core/rate_ctr.h>
41#include <osmocom/core/socket.h>
42#include <osmocom/core/stat_item.h>
43#include <osmocom/gsm/prim.h>
44#include <osmocom/gsm/tlv.h>
45#include <osmocom/gprs/gprs_msgb.h>
46#include <osmocom/gprs/protocol/gsm_08_16.h>
47
48#include "gprs_ns2_internal.h"
49
50#define S(x) (1 << (x))
51
Alexander Couzens6a161492020-07-12 13:45:50 +020052struct gprs_ns2_vc_priv {
53 struct gprs_ns2_vc *nsvc;
54 /* how often the timer was triggered */
55 int N;
Daniel Willmannf5b2e282020-11-18 18:51:25 +010056 /* The initiator is responsible to UNBLOCK the VC. The BSS is usually the initiator.
57 * It can change during runtime. The side which blocks an unblocked side.*/
Alexander Couzensea01bf22021-01-18 14:01:01 +010058 bool initiator;
Daniel Willmannf5b2e282020-11-18 18:51:25 +010059 bool initiate_block;
60 bool initiate_reset;
Alexander Couzens47afc422021-01-17 20:12:46 +010061 /* if blocked by O&M/vty */
62 bool om_blocked;
63 /* if unitdata is forwarded to the user */
64 bool accept_unitdata;
Alexander Couzens6a161492020-07-12 13:45:50 +020065
66 /* the alive counter is present in all states */
67 struct {
68 struct osmo_timer_list timer;
69 enum ns2_timeout mode;
70 int N;
Alexander Couzensab0e8642021-02-12 02:50:44 +010071 struct timespec timer_started;
Alexander Couzens6a161492020-07-12 13:45:50 +020072 } alive;
73};
74
75
76/* The FSM covers both the VC with RESET/BLOCK and without RESET/BLOCK procedure..
77 *
78 * With RESET/BLOCK, the state should follow:
79 * - UNCONFIGURED -> RESET -> BLOCK -> UNBLOCKED
80 *
81 * Without RESET/BLOCK, the state should follow:
Alexander Couzensd3e31102021-02-03 11:15:07 +010082 * - UNCONFIGURED -> RECOVERY -> UNBLOCKED
Alexander Couzens6a161492020-07-12 13:45:50 +020083 *
84 * The UNBLOCKED and TEST states are used to send ALIVE PDU using the timeout Tns-test and Tns-alive.
85 * UNBLOCKED -> TEST: on expire of Tns-Test, send Alive PDU.
86 * TEST -> UNBLOCKED: on receive of Alive_Ack PDU, go into UNBLOCKED.
87 *
Alexander Couzensd3e31102021-02-03 11:15:07 +010088 * The RECOVERY state is used as intermediate, because a VC is only valid if it received an Alive ACK when
Alexander Couzens6a161492020-07-12 13:45:50 +020089 * not using RESET/BLOCK procedure.
90 */
91
92enum gprs_ns2_vc_state {
93 GPRS_NS2_ST_UNCONFIGURED,
94 GPRS_NS2_ST_RESET,
95 GPRS_NS2_ST_BLOCKED,
96 GPRS_NS2_ST_UNBLOCKED, /* allows sending NS_UNITDATA */
97
Alexander Couzensd3e31102021-02-03 11:15:07 +010098 GPRS_NS2_ST_RECOVERING, /* only used when not using RESET/BLOCK procedure */
Alexander Couzens6a161492020-07-12 13:45:50 +020099};
100
101enum gprs_ns2_vc_event {
Alexander Couzensf5775432021-01-18 13:49:00 +0100102 GPRS_NS2_EV_REQ_START,
Alexander Couzens6a161492020-07-12 13:45:50 +0200103
104 /* received messages */
Alexander Couzensf5775432021-01-18 13:49:00 +0100105 GPRS_NS2_EV_RX_RESET,
106 GPRS_NS2_EV_RX_RESET_ACK,
107 GPRS_NS2_EV_RX_UNBLOCK,
108 GPRS_NS2_EV_RX_UNBLOCK_ACK,
109 GPRS_NS2_EV_RX_BLOCK,
110 GPRS_NS2_EV_RX_BLOCK_ACK,
111 GPRS_NS2_EV_RX_ALIVE,
112 GPRS_NS2_EV_RX_ALIVE_ACK,
113 GPRS_NS2_EV_RX_STATUS,
Alexander Couzens6a161492020-07-12 13:45:50 +0200114
Alexander Couzensf5775432021-01-18 13:49:00 +0100115 GPRS_NS2_EV_RX_UNITDATA,
Daniel Willmanned0c9822020-11-18 14:08:07 +0100116
Alexander Couzensf5775432021-01-18 13:49:00 +0100117 GPRS_NS2_EV_REQ_FORCE_UNCONFIGURED, /* called via vty for tests */
Alexander Couzens27e58732021-03-21 17:12:08 +0100118 GPRS_NS2_EV_REQ_OM_RESET, /* vty cmd: reset */
Alexander Couzensf5775432021-01-18 13:49:00 +0100119 GPRS_NS2_EV_REQ_OM_BLOCK, /* vty cmd: block */
120 GPRS_NS2_EV_REQ_OM_UNBLOCK, /* vty cmd: unblock*/
Alexander Couzens6a161492020-07-12 13:45:50 +0200121};
122
Alexander Couzensf7e2cac2021-01-25 16:18:21 +0100123static const struct value_string ns2_vc_event_names[] = {
Harald Welteb339cbb2021-02-05 14:49:21 +0100124 { GPRS_NS2_EV_REQ_START, "REQ-START" },
125 { GPRS_NS2_EV_RX_RESET, "RX-RESET" },
126 { GPRS_NS2_EV_RX_RESET_ACK, "RX-RESET_ACK" },
127 { GPRS_NS2_EV_RX_UNBLOCK, "RX-UNBLOCK" },
128 { GPRS_NS2_EV_RX_UNBLOCK_ACK, "RX-UNBLOCK_ACK" },
129 { GPRS_NS2_EV_RX_BLOCK, "RX-BLOCK" },
130 { GPRS_NS2_EV_RX_BLOCK_ACK, "RX-BLOCK_ACK" },
131 { GPRS_NS2_EV_RX_ALIVE, "RX-ALIVE" },
132 { GPRS_NS2_EV_RX_ALIVE_ACK, "RX-ALIVE_ACK" },
133 { GPRS_NS2_EV_RX_STATUS, "RX-STATUS" },
134 { GPRS_NS2_EV_RX_UNITDATA, "RX-UNITDATA" },
135 { GPRS_NS2_EV_REQ_FORCE_UNCONFIGURED, "REQ-FORCE_UNCONFIGURED" },
Alexander Couzens27e58732021-03-21 17:12:08 +0100136 { GPRS_NS2_EV_REQ_OM_RESET, "REQ-O&M-RESET"},
Alexander Couzens47afc422021-01-17 20:12:46 +0100137 { GPRS_NS2_EV_REQ_OM_BLOCK, "REQ-O&M-BLOCK"},
138 { GPRS_NS2_EV_REQ_OM_UNBLOCK, "REQ-O&M-UNBLOCK"},
Alexander Couzens6a161492020-07-12 13:45:50 +0200139 { 0, NULL }
140};
141
142static inline struct gprs_ns2_inst *ns_inst_from_fi(struct osmo_fsm_inst *fi)
143{
144 struct gprs_ns2_vc_priv *priv = fi->priv;
145 return priv->nsvc->nse->nsi;
146}
147
Harald Welte5e408312021-03-23 18:16:30 +0100148/* Start the NS-TEST procedure, either with transmitting a tx_alive,
149 * (start_tx_alive==true) or with starting tns-test */
150static void start_test_procedure(struct osmo_fsm_inst *fi, bool start_tx_alive)
Alexander Couzens6a161492020-07-12 13:45:50 +0200151{
Harald Welte5e408312021-03-23 18:16:30 +0100152 struct gprs_ns2_vc_priv *priv = fi->priv;
Alexander Couzens6a161492020-07-12 13:45:50 +0200153 struct gprs_ns2_inst *nsi = priv->nsvc->nse->nsi;
Harald Welte5e408312021-03-23 18:16:30 +0100154 unsigned int tout_idx;
Alexander Couzens6a161492020-07-12 13:45:50 +0200155
Harald Welte5e408312021-03-23 18:16:30 +0100156 if (osmo_timer_pending(&priv->alive.timer)) {
157 if (start_tx_alive) {
158 if (priv->alive.mode == NS_TOUT_TNS_ALIVE)
159 return;
160 } else {
161 if (priv->alive.mode == NS_TOUT_TNS_TEST)
162 return;
163 }
164 }
Alexander Couzens6a161492020-07-12 13:45:50 +0200165
Alexander Couzens6a161492020-07-12 13:45:50 +0200166 priv->alive.N = 0;
167
Harald Welte5e408312021-03-23 18:16:30 +0100168 if (start_tx_alive) {
169 priv->alive.mode = NS_TOUT_TNS_ALIVE;
170 osmo_clock_gettime(CLOCK_MONOTONIC, &priv->alive.timer_started);
171 ns2_tx_alive(priv->nsvc);
172 tout_idx = NS_TOUT_TNS_ALIVE;
173 } else {
174 priv->alive.mode = NS_TOUT_TNS_TEST;
175 tout_idx = NS_TOUT_TNS_TEST;
176 }
177 LOGPFSML(fi, LOGL_DEBUG, "Starting Tns-%s of %u seconds\n",
178 tout_idx == NS_TOUT_TNS_ALIVE ? "alive" : "test", nsi->timeout[tout_idx]);
179 osmo_timer_schedule(&priv->alive.timer, nsi->timeout[tout_idx], 0);
Alexander Couzens6a161492020-07-12 13:45:50 +0200180}
181
182static void stop_test_procedure(struct gprs_ns2_vc_priv *priv)
183{
Alexander Couzens8138c532021-06-15 22:11:40 +0200184 osmo_stat_item_set(osmo_stat_item_group_get_item(priv->nsvc->statg, NS_STAT_ALIVE_DELAY), 0);
Alexander Couzens6a161492020-07-12 13:45:50 +0200185 osmo_timer_del(&priv->alive.timer);
186}
187
Harald Welte5e408312021-03-23 18:16:30 +0100188/* how many milliseconds have expired since the last alive timer start? */
Alexander Couzens6a161492020-07-12 13:45:50 +0200189static int alive_timer_elapsed_ms(struct gprs_ns2_vc_priv *priv)
190{
Alexander Couzensab0e8642021-02-12 02:50:44 +0100191 struct timespec now, elapsed;
Alexander Couzens6a161492020-07-12 13:45:50 +0200192
Alexander Couzensab0e8642021-02-12 02:50:44 +0100193 if (osmo_clock_gettime(CLOCK_MONOTONIC, &now) != 0)
194 return 0;
195
196 timespecsub(&now, &priv->alive.timer_started, &elapsed);
Alexander Couzensab0e8642021-02-12 02:50:44 +0100197 return elapsed.tv_sec * 1000 + (elapsed.tv_nsec / 1000000);
Alexander Couzens6a161492020-07-12 13:45:50 +0200198}
199
Harald Welte5e408312021-03-23 18:16:30 +0100200/* we just received a NS-ALIVE-ACK; re-schedule after Tns-test */
Alexander Couzens6a161492020-07-12 13:45:50 +0200201static void recv_test_procedure(struct osmo_fsm_inst *fi)
202{
203 struct gprs_ns2_vc_priv *priv = fi->priv;
204 struct gprs_ns2_inst *nsi = ns_inst_from_fi(fi);
205 struct gprs_ns2_vc *nsvc = priv->nsvc;
206
207 /* ignoring ACKs without sending an ALIVE */
208 if (priv->alive.mode != NS_TOUT_TNS_ALIVE)
209 return;
210
211 priv->alive.mode = NS_TOUT_TNS_TEST;
212 osmo_timer_schedule(&priv->alive.timer, nsi->timeout[NS_TOUT_TNS_TEST], 0);
Pau Espin Pedrol7b894a72021-06-04 18:17:12 +0200213 osmo_stat_item_set(osmo_stat_item_group_get_item(nsvc->statg, NS_STAT_ALIVE_DELAY),
Alexander Couzens6a161492020-07-12 13:45:50 +0200214 alive_timer_elapsed_ms(priv));
215}
216
217
218static void alive_timeout_handler(void *data)
219{
220 struct osmo_fsm_inst *fi = data;
221 struct gprs_ns2_inst *nsi = ns_inst_from_fi(fi);
222 struct gprs_ns2_vc_priv *priv = fi->priv;
223
224 switch (priv->alive.mode) {
225 case NS_TOUT_TNS_TEST:
226 priv->alive.mode = NS_TOUT_TNS_ALIVE;
Alexander Couzens2f8f7b62021-02-03 11:04:22 +0100227 priv->alive.N = 0;
Alexander Couzensfa4121d2021-02-12 02:54:46 +0100228 osmo_clock_gettime(CLOCK_MONOTONIC, &priv->alive.timer_started);
Alexander Couzens6a161492020-07-12 13:45:50 +0200229 ns2_tx_alive(priv->nsvc);
230 osmo_timer_schedule(&priv->alive.timer, nsi->timeout[NS_TOUT_TNS_ALIVE], 0);
231 break;
232 case NS_TOUT_TNS_ALIVE:
Pau Espin Pedrol7b894a72021-06-04 18:17:12 +0200233 rate_ctr_inc(rate_ctr_group_get_ctr(priv->nsvc->ctrg, NS_CTR_LOST_ALIVE));
Alexander Couzens6a161492020-07-12 13:45:50 +0200234 priv->alive.N++;
235
236 if (priv->alive.N <= nsi->timeout[NS_TOUT_TNS_ALIVE_RETRIES]) {
237 /* retransmission */
238 ns2_tx_alive(priv->nsvc);
239 osmo_timer_schedule(&priv->alive.timer, nsi->timeout[NS_TOUT_TNS_ALIVE], 0);
240 } else {
241 /* lost connection */
Alexander Couzens138b96f2021-01-25 16:23:29 +0100242 if (priv->nsvc->mode == GPRS_NS2_VC_MODE_BLOCKRESET) {
Alexander Couzens6a161492020-07-12 13:45:50 +0200243 osmo_fsm_inst_state_chg(fi, GPRS_NS2_ST_RESET, nsi->timeout[NS_TOUT_TNS_RESET], 0);
244 } else {
Alexander Couzensd3e31102021-02-03 11:15:07 +0100245 osmo_fsm_inst_state_chg(fi, GPRS_NS2_ST_RECOVERING, nsi->timeout[NS_TOUT_TNS_ALIVE], 0);
Alexander Couzens6a161492020-07-12 13:45:50 +0200246 }
247 }
248 break;
249 default:
250 break;
251 }
252}
253
Harald Welte6a9ec422021-01-31 18:56:29 +0100254
255static void ns2_st_unconfigured_onenter(struct osmo_fsm_inst *fi, uint32_t old_state)
256{
257 stop_test_procedure(fi->priv);
258}
259
Alexander Couzensf7e2cac2021-01-25 16:18:21 +0100260static void ns2_st_unconfigured(struct osmo_fsm_inst *fi, uint32_t event, void *data)
Alexander Couzens6a161492020-07-12 13:45:50 +0200261{
262 struct gprs_ns2_vc_priv *priv = fi->priv;
263 struct gprs_ns2_inst *nsi = priv->nsvc->nse->nsi;
264
Alexander Couzensea01bf22021-01-18 14:01:01 +0100265 priv->initiate_reset = priv->initiate_block = priv->initiator;
266 priv->om_blocked = false;
267
Alexander Couzens6a161492020-07-12 13:45:50 +0200268 switch (event) {
Alexander Couzensf5775432021-01-18 13:49:00 +0100269 case GPRS_NS2_EV_REQ_START:
Alexander Couzens6a161492020-07-12 13:45:50 +0200270 switch (priv->nsvc->mode) {
Alexander Couzens138b96f2021-01-25 16:23:29 +0100271 case GPRS_NS2_VC_MODE_ALIVE:
Harald Weltec51ddf22021-03-05 09:48:18 +0100272 if (priv->nsvc->nse->dialect == GPRS_NS2_DIALECT_SNS) {
273 /* In IP-SNS, the NS-VC are assumed initially alive, until the alive
274 * procedure should fail at some future point */
275 osmo_fsm_inst_state_chg(fi, GPRS_NS2_ST_UNBLOCKED, 0, 0);
276 } else {
277 osmo_fsm_inst_state_chg(fi, GPRS_NS2_ST_RECOVERING, nsi->timeout[NS_TOUT_TNS_ALIVE], NS_TOUT_TNS_ALIVE);
278 }
Alexander Couzens6a161492020-07-12 13:45:50 +0200279 break;
Alexander Couzens138b96f2021-01-25 16:23:29 +0100280 case GPRS_NS2_VC_MODE_BLOCKRESET:
Alexander Couzens6a161492020-07-12 13:45:50 +0200281 osmo_fsm_inst_state_chg(fi, GPRS_NS2_ST_RESET, nsi->timeout[NS_TOUT_TNS_RESET], NS_TOUT_TNS_RESET);
282 break;
283 }
Alexander Couzens6a161492020-07-12 13:45:50 +0200284 break;
285 default:
286 OSMO_ASSERT(0);
287 }
288}
289
290
Alexander Couzensf7e2cac2021-01-25 16:18:21 +0100291static void ns2_st_reset_onenter(struct osmo_fsm_inst *fi, uint32_t old_state)
Alexander Couzens6a161492020-07-12 13:45:50 +0200292{
293 struct gprs_ns2_vc_priv *priv = fi->priv;
294
295 if (old_state != GPRS_NS2_ST_RESET)
296 priv->N = 0;
297
Alexander Couzens47afc422021-01-17 20:12:46 +0100298 priv->accept_unitdata = false;
Daniel Willmannf5b2e282020-11-18 18:51:25 +0100299 if (priv->initiate_reset)
Alexander Couzens6a161492020-07-12 13:45:50 +0200300 ns2_tx_reset(priv->nsvc, NS_CAUSE_OM_INTERVENTION);
301
302 stop_test_procedure(priv);
303 ns2_nse_notify_unblocked(priv->nsvc, false);
304}
305
Alexander Couzensf7e2cac2021-01-25 16:18:21 +0100306static void ns2_st_reset(struct osmo_fsm_inst *fi, uint32_t event, void *data)
Alexander Couzens6a161492020-07-12 13:45:50 +0200307{
308 struct gprs_ns2_inst *nsi = ns_inst_from_fi(fi);
309 struct gprs_ns2_vc_priv *priv = fi->priv;
310
Daniel Willmannf5b2e282020-11-18 18:51:25 +0100311 if (priv->initiate_reset) {
Alexander Couzens6a161492020-07-12 13:45:50 +0200312 switch (event) {
Alexander Couzens273f0632021-01-20 13:11:26 +0100313 case GPRS_NS2_EV_RX_RESET:
314 ns2_tx_reset_ack(priv->nsvc);
315 /* fall-through */
Alexander Couzensf5775432021-01-18 13:49:00 +0100316 case GPRS_NS2_EV_RX_RESET_ACK:
Alexander Couzens6a161492020-07-12 13:45:50 +0200317 osmo_fsm_inst_state_chg(fi, GPRS_NS2_ST_BLOCKED,
318 nsi->timeout[NS_TOUT_TNS_BLOCK], NS_TOUT_TNS_BLOCK);
319 break;
320 }
321 } else {
322 /* we are on the receiving end */
323 switch (event) {
Alexander Couzensf5775432021-01-18 13:49:00 +0100324 case GPRS_NS2_EV_RX_RESET:
Alexander Couzens6a161492020-07-12 13:45:50 +0200325 ns2_tx_reset_ack(priv->nsvc);
326 osmo_fsm_inst_state_chg(fi, GPRS_NS2_ST_BLOCKED,
327 0, 0);
328 break;
329 }
330 }
331}
332
Alexander Couzensf7e2cac2021-01-25 16:18:21 +0100333static void ns2_st_blocked_onenter(struct osmo_fsm_inst *fi, uint32_t old_state)
Alexander Couzens6a161492020-07-12 13:45:50 +0200334{
335 struct gprs_ns2_vc_priv *priv = fi->priv;
336
Harald Welte4c54f592021-01-30 22:42:15 +0100337 if (old_state != GPRS_NS2_ST_BLOCKED) {
Alexander Couzens6a161492020-07-12 13:45:50 +0200338 priv->N = 0;
Pau Espin Pedrol7b894a72021-06-04 18:17:12 +0200339 rate_ctr_inc(rate_ctr_group_get_ctr(priv->nsvc->ctrg, NS_CTR_BLOCKED));
Harald Welte4c54f592021-01-30 22:42:15 +0100340 }
Alexander Couzens6a161492020-07-12 13:45:50 +0200341
Alexander Couzense09deb62021-06-15 21:35:45 +0200342 ns2_nse_notify_unblocked(priv->nsvc, false);
Alexander Couzens47afc422021-01-17 20:12:46 +0100343 if (priv->om_blocked) {
344 /* we are already blocked after a RESET */
345 if (old_state == GPRS_NS2_ST_RESET) {
346 osmo_timer_del(&fi->timer);
347 } else {
348 ns2_tx_block(priv->nsvc, NS_CAUSE_OM_INTERVENTION);
349 }
350 } else if (priv->initiate_block) {
Alexander Couzens6a161492020-07-12 13:45:50 +0200351 ns2_tx_unblock(priv->nsvc);
Alexander Couzens47afc422021-01-17 20:12:46 +0100352 }
Alexander Couzens6a161492020-07-12 13:45:50 +0200353
Harald Welte5e408312021-03-23 18:16:30 +0100354 start_test_procedure(fi, true);
Alexander Couzens6a161492020-07-12 13:45:50 +0200355}
356
Alexander Couzensf7e2cac2021-01-25 16:18:21 +0100357static void ns2_st_blocked(struct osmo_fsm_inst *fi, uint32_t event, void *data)
Alexander Couzens6a161492020-07-12 13:45:50 +0200358{
359 struct gprs_ns2_vc_priv *priv = fi->priv;
360
Alexander Couzens47afc422021-01-17 20:12:46 +0100361 if (priv->om_blocked) {
362 switch (event) {
Alexander Couzensf5775432021-01-18 13:49:00 +0100363 case GPRS_NS2_EV_RX_BLOCK_ACK:
Alexander Couzens47afc422021-01-17 20:12:46 +0100364 priv->accept_unitdata = false;
365 osmo_timer_del(&fi->timer);
366 break;
Alexander Couzensf5775432021-01-18 13:49:00 +0100367 case GPRS_NS2_EV_RX_BLOCK:
Alexander Couzens47afc422021-01-17 20:12:46 +0100368 priv->accept_unitdata = false;
369 ns2_tx_block_ack(priv->nsvc);
370 osmo_timer_del(&fi->timer);
371 break;
Alexander Couzensf5775432021-01-18 13:49:00 +0100372 case GPRS_NS2_EV_RX_UNBLOCK:
Alexander Couzens47afc422021-01-17 20:12:46 +0100373 priv->accept_unitdata = false;
374 ns2_tx_block(priv->nsvc, NS_CAUSE_OM_INTERVENTION);
375 osmo_timer_add(&fi->timer);
376 break;
377 }
378 } else if (priv->initiate_block) {
Alexander Couzens6a161492020-07-12 13:45:50 +0200379 switch (event) {
Alexander Couzensf5775432021-01-18 13:49:00 +0100380 case GPRS_NS2_EV_RX_BLOCK:
Alexander Couzens6a161492020-07-12 13:45:50 +0200381 /* TODO: BLOCK is a UNBLOCK_NACK */
382 ns2_tx_block_ack(priv->nsvc);
383 break;
Alexander Couzensf5775432021-01-18 13:49:00 +0100384 case GPRS_NS2_EV_RX_UNBLOCK:
Alexander Couzens6a161492020-07-12 13:45:50 +0200385 ns2_tx_unblock_ack(priv->nsvc);
386 /* fall through */
Alexander Couzensf5775432021-01-18 13:49:00 +0100387 case GPRS_NS2_EV_RX_UNBLOCK_ACK:
Alexander Couzens47afc422021-01-17 20:12:46 +0100388 priv->accept_unitdata = true;
Alexander Couzens6a161492020-07-12 13:45:50 +0200389 osmo_fsm_inst_state_chg(fi, GPRS_NS2_ST_UNBLOCKED,
390 0, NS_TOUT_TNS_TEST);
391 break;
392 }
393 } else {
394 /* we are on the receiving end. The initiator who sent RESET is responsible to UNBLOCK! */
395 switch (event) {
Alexander Couzensf5775432021-01-18 13:49:00 +0100396 case GPRS_NS2_EV_RX_BLOCK:
Alexander Couzens856b94c2021-01-19 19:42:17 +0100397 ns2_tx_block_ack(priv->nsvc);
398 break;
Alexander Couzensf5775432021-01-18 13:49:00 +0100399 case GPRS_NS2_EV_RX_UNBLOCK:
Alexander Couzens6a161492020-07-12 13:45:50 +0200400 ns2_tx_unblock_ack(priv->nsvc);
401 osmo_fsm_inst_state_chg(fi, GPRS_NS2_ST_UNBLOCKED,
402 0, 0);
403 break;
404 }
405 }
406}
407
Alexander Couzensf7e2cac2021-01-25 16:18:21 +0100408static void ns2_st_unblocked_on_enter(struct osmo_fsm_inst *fi, uint32_t old_state)
Alexander Couzens6a161492020-07-12 13:45:50 +0200409{
410 struct gprs_ns2_vc_priv *priv = fi->priv;
Daniel Willmann15c09a82020-11-03 23:05:43 +0100411 struct gprs_ns2_vc *nsvc = priv->nsvc;
412 struct gprs_ns2_nse *nse = nsvc->nse;
Alexander Couzens6a161492020-07-12 13:45:50 +0200413
Harald Welteb40bf8b2021-01-30 22:43:01 +0100414 if (old_state != GPRS_NS2_ST_UNBLOCKED)
Pau Espin Pedrol7b894a72021-06-04 18:17:12 +0200415 rate_ctr_inc(rate_ctr_group_get_ctr(nsvc->ctrg, NS_CTR_UNBLOCKED));
Harald Welteb40bf8b2021-01-30 22:43:01 +0100416
Alexander Couzens47afc422021-01-17 20:12:46 +0100417 priv->accept_unitdata = true;
Daniel Willmann15c09a82020-11-03 23:05:43 +0100418 ns2_nse_notify_unblocked(nsvc, true);
Alexander Couzens138b96f2021-01-25 16:23:29 +0100419 ns2_prim_status_ind(nse, nsvc, 0, GPRS_NS2_AFF_CAUSE_VC_RECOVERY);
Harald Welte5e408312021-03-23 18:16:30 +0100420
421 /* the closest interpretation of the spec would start Tns-test here first,
422 * and only send a NS-ALIVE after Tns-test has expired (i.e. setting the
423 * second argument to 'false'. However, being quick in detecting unavailability
424 * of a NS-VC seems like a good idea */
425 start_test_procedure(fi, true);
Alexander Couzens6a161492020-07-12 13:45:50 +0200426}
427
Alexander Couzensf7e2cac2021-01-25 16:18:21 +0100428static void ns2_st_unblocked(struct osmo_fsm_inst *fi, uint32_t event, void *data)
Alexander Couzens6a161492020-07-12 13:45:50 +0200429{
430 struct gprs_ns2_vc_priv *priv = fi->priv;
431
432 switch (event) {
Alexander Couzensf5775432021-01-18 13:49:00 +0100433 case GPRS_NS2_EV_RX_UNBLOCK:
Alexander Couzensc4b74622021-01-10 20:44:26 +0100434 ns2_tx_unblock_ack(priv->nsvc);
435 break;
Alexander Couzensf5775432021-01-18 13:49:00 +0100436 case GPRS_NS2_EV_RX_BLOCK:
Daniel Willmannf5b2e282020-11-18 18:51:25 +0100437 priv->initiate_block = false;
Alexander Couzens6a161492020-07-12 13:45:50 +0200438 ns2_tx_block_ack(priv->nsvc);
439 osmo_fsm_inst_state_chg(fi, GPRS_NS2_ST_BLOCKED,
440 0, 2);
441 break;
442 }
443}
444
Alexander Couzensf7e2cac2021-01-25 16:18:21 +0100445static void ns2_st_alive(struct osmo_fsm_inst *fi, uint32_t event, void *data)
Alexander Couzens6a161492020-07-12 13:45:50 +0200446{
447 switch (event) {
Alexander Couzensf5775432021-01-18 13:49:00 +0100448 case GPRS_NS2_EV_RX_ALIVE_ACK:
Alexander Couzens6a161492020-07-12 13:45:50 +0200449 osmo_fsm_inst_state_chg(fi, GPRS_NS2_ST_UNBLOCKED, 0, 0);
450 break;
451 }
452}
453
Alexander Couzensf7e2cac2021-01-25 16:18:21 +0100454static void ns2_st_alive_onenter(struct osmo_fsm_inst *fi, uint32_t old_state)
Alexander Couzens6a161492020-07-12 13:45:50 +0200455{
456 struct gprs_ns2_vc_priv *priv = fi->priv;
457 struct gprs_ns2_inst *nsi = ns_inst_from_fi(fi);
458
459 priv->alive.mode = NS_TOUT_TNS_TEST;
460 osmo_timer_schedule(&priv->alive.timer, nsi->timeout[NS_TOUT_TNS_TEST], 0);
461
Alexander Couzensd3e31102021-02-03 11:15:07 +0100462 if (old_state != GPRS_NS2_ST_RECOVERING)
Alexander Couzens6a161492020-07-12 13:45:50 +0200463 priv->N = 0;
464
Harald Welte5e408312021-03-23 18:16:30 +0100465 start_test_procedure(fi, true);
Alexander Couzens5b722472021-04-01 15:36:54 +0200466 ns2_nse_notify_unblocked(priv->nsvc, false);
Alexander Couzens6a161492020-07-12 13:45:50 +0200467}
468
Alexander Couzensf7e2cac2021-01-25 16:18:21 +0100469static const struct osmo_fsm_state ns2_vc_states[] = {
Alexander Couzens6a161492020-07-12 13:45:50 +0200470 [GPRS_NS2_ST_UNCONFIGURED] = {
Alexander Couzensf5775432021-01-18 13:49:00 +0100471 .in_event_mask = S(GPRS_NS2_EV_REQ_START),
Harald Weltec51ddf22021-03-05 09:48:18 +0100472 .out_state_mask = S(GPRS_NS2_ST_RESET) |
473 S(GPRS_NS2_ST_RECOVERING) |
474 S(GPRS_NS2_ST_UNBLOCKED),
Alexander Couzens6a161492020-07-12 13:45:50 +0200475 .name = "UNCONFIGURED",
Alexander Couzensf7e2cac2021-01-25 16:18:21 +0100476 .action = ns2_st_unconfigured,
Harald Welte6a9ec422021-01-31 18:56:29 +0100477 .onenter = ns2_st_unconfigured_onenter,
Alexander Couzens6a161492020-07-12 13:45:50 +0200478 },
479 [GPRS_NS2_ST_RESET] = {
Alexander Couzensf5775432021-01-18 13:49:00 +0100480 .in_event_mask = S(GPRS_NS2_EV_RX_RESET_ACK) | S(GPRS_NS2_EV_RX_RESET),
Alexander Couzens6a161492020-07-12 13:45:50 +0200481 .out_state_mask = S(GPRS_NS2_ST_RESET) |
Daniel Willmanned0c9822020-11-18 14:08:07 +0100482 S(GPRS_NS2_ST_BLOCKED) |
483 S(GPRS_NS2_ST_UNCONFIGURED),
Alexander Couzens6a161492020-07-12 13:45:50 +0200484 .name = "RESET",
Alexander Couzensf7e2cac2021-01-25 16:18:21 +0100485 .action = ns2_st_reset,
486 .onenter = ns2_st_reset_onenter,
Alexander Couzens6a161492020-07-12 13:45:50 +0200487 },
488 [GPRS_NS2_ST_BLOCKED] = {
Alexander Couzensf5775432021-01-18 13:49:00 +0100489 .in_event_mask = S(GPRS_NS2_EV_RX_BLOCK) | S(GPRS_NS2_EV_RX_BLOCK_ACK) |
490 S(GPRS_NS2_EV_RX_UNBLOCK) | S(GPRS_NS2_EV_RX_UNBLOCK_ACK),
Alexander Couzens6a161492020-07-12 13:45:50 +0200491 .out_state_mask = S(GPRS_NS2_ST_RESET) |
492 S(GPRS_NS2_ST_UNBLOCKED) |
Daniel Willmanned0c9822020-11-18 14:08:07 +0100493 S(GPRS_NS2_ST_BLOCKED) |
494 S(GPRS_NS2_ST_UNCONFIGURED),
Alexander Couzens6a161492020-07-12 13:45:50 +0200495 .name = "BLOCKED",
Alexander Couzensf7e2cac2021-01-25 16:18:21 +0100496 .action = ns2_st_blocked,
497 .onenter = ns2_st_blocked_onenter,
Alexander Couzens6a161492020-07-12 13:45:50 +0200498 },
499 [GPRS_NS2_ST_UNBLOCKED] = {
Alexander Couzensf5775432021-01-18 13:49:00 +0100500 .in_event_mask = S(GPRS_NS2_EV_RX_BLOCK) | S(GPRS_NS2_EV_RX_UNBLOCK_ACK) |
501 S(GPRS_NS2_EV_RX_UNBLOCK),
Alexander Couzensd3e31102021-02-03 11:15:07 +0100502 .out_state_mask = S(GPRS_NS2_ST_RESET) | S(GPRS_NS2_ST_RECOVERING) |
Daniel Willmanned0c9822020-11-18 14:08:07 +0100503 S(GPRS_NS2_ST_BLOCKED) |
504 S(GPRS_NS2_ST_UNCONFIGURED),
Alexander Couzens6a161492020-07-12 13:45:50 +0200505 .name = "UNBLOCKED",
Alexander Couzensf7e2cac2021-01-25 16:18:21 +0100506 .action = ns2_st_unblocked,
507 .onenter = ns2_st_unblocked_on_enter,
Alexander Couzens6a161492020-07-12 13:45:50 +0200508 },
509
Alexander Couzensd3e31102021-02-03 11:15:07 +0100510 /* ST_RECOVERING is only used on VC without RESET/BLOCK */
511 [GPRS_NS2_ST_RECOVERING] = {
Alexander Couzensf5775432021-01-18 13:49:00 +0100512 .in_event_mask = S(GPRS_NS2_EV_RX_ALIVE_ACK),
Alexander Couzensd3e31102021-02-03 11:15:07 +0100513 .out_state_mask = S(GPRS_NS2_ST_RECOVERING) |
Daniel Willmanned0c9822020-11-18 14:08:07 +0100514 S(GPRS_NS2_ST_UNBLOCKED) |
515 S(GPRS_NS2_ST_UNCONFIGURED),
Alexander Couzensd3e31102021-02-03 11:15:07 +0100516 .name = "RECOVERING",
Alexander Couzensf7e2cac2021-01-25 16:18:21 +0100517 .action = ns2_st_alive,
518 .onenter = ns2_st_alive_onenter,
Alexander Couzens6a161492020-07-12 13:45:50 +0200519 },
520};
521
Alexander Couzensf7e2cac2021-01-25 16:18:21 +0100522static int ns2_vc_fsm_timer_cb(struct osmo_fsm_inst *fi)
Alexander Couzens6a161492020-07-12 13:45:50 +0200523{
524 struct gprs_ns2_inst *nsi = ns_inst_from_fi(fi);
525 struct gprs_ns2_vc_priv *priv = fi->priv;
526
Daniel Willmannf5b2e282020-11-18 18:51:25 +0100527 switch (fi->state) {
528 case GPRS_NS2_ST_RESET:
529 if (priv->initiate_reset) {
Pau Espin Pedrol7b894a72021-06-04 18:17:12 +0200530 rate_ctr_inc(rate_ctr_group_get_ctr(priv->nsvc->ctrg, NS_CTR_LOST_RESET));
Alexander Couzens6a161492020-07-12 13:45:50 +0200531 priv->N++;
532 if (priv->N <= nsi->timeout[NS_TOUT_TNS_RESET_RETRIES]) {
533 osmo_fsm_inst_state_chg(fi, GPRS_NS2_ST_RESET, nsi->timeout[NS_TOUT_TNS_RESET], 0);
534 } else {
535 priv->N = 0;
536 osmo_fsm_inst_state_chg(fi, GPRS_NS2_ST_RESET, nsi->timeout[NS_TOUT_TNS_RESET], 0);
537 }
Daniel Willmannf5b2e282020-11-18 18:51:25 +0100538 }
539 break;
540 case GPRS_NS2_ST_BLOCKED:
541 if (priv->initiate_block) {
Alexander Couzens6a161492020-07-12 13:45:50 +0200542 priv->N++;
Alexander Couzens47afc422021-01-17 20:12:46 +0100543 if (priv->om_blocked) {
544 if (priv->N <= nsi->timeout[NS_TOUT_TNS_BLOCK_RETRIES]) {
545 osmo_fsm_inst_state_chg(fi, GPRS_NS2_ST_BLOCKED, nsi->timeout[NS_TOUT_TNS_BLOCK], 0);
546 } else {
547 /* 7.2 stop accepting data when BLOCK PDU not responded */
548 priv->accept_unitdata = false;
549 }
Alexander Couzens6a161492020-07-12 13:45:50 +0200550 } else {
Alexander Couzens47afc422021-01-17 20:12:46 +0100551 if (priv->N <= nsi->timeout[NS_TOUT_TNS_BLOCK_RETRIES]) {
552 osmo_fsm_inst_state_chg(fi, GPRS_NS2_ST_BLOCKED, nsi->timeout[NS_TOUT_TNS_BLOCK], 0);
553 } else {
554 osmo_fsm_inst_state_chg(fi, GPRS_NS2_ST_RESET, nsi->timeout[NS_TOUT_TNS_RESET], 0);
555 }
Alexander Couzens6a161492020-07-12 13:45:50 +0200556 }
Daniel Willmannf5b2e282020-11-18 18:51:25 +0100557 }
558 break;
Alexander Couzensd3e31102021-02-03 11:15:07 +0100559 case GPRS_NS2_ST_RECOVERING:
Daniel Willmannf5b2e282020-11-18 18:51:25 +0100560 if (priv->initiate_reset) {
Alexander Couzens6a161492020-07-12 13:45:50 +0200561 priv->N++;
562 if (priv->N <= nsi->timeout[NS_TOUT_TNS_ALIVE_RETRIES]) {
Alexander Couzensd3e31102021-02-03 11:15:07 +0100563 osmo_fsm_inst_state_chg(fi, GPRS_NS2_ST_RECOVERING, 0, 0);
Alexander Couzens6a161492020-07-12 13:45:50 +0200564 } else {
565 priv->N = 0;
Alexander Couzensd3e31102021-02-03 11:15:07 +0100566 osmo_fsm_inst_state_chg(fi, GPRS_NS2_ST_RECOVERING, 0, 0);
Alexander Couzens6a161492020-07-12 13:45:50 +0200567 }
568 break;
569 }
Daniel Willmannf5b2e282020-11-18 18:51:25 +0100570 break;
Alexander Couzens6a161492020-07-12 13:45:50 +0200571 }
572 return 0;
573}
574
Alexander Couzensf7e2cac2021-01-25 16:18:21 +0100575static void ns2_recv_unitdata(struct osmo_fsm_inst *fi,
Alexander Couzens6a161492020-07-12 13:45:50 +0200576 struct msgb *msg)
577{
578 struct gprs_ns2_vc_priv *priv = fi->priv;
579 struct gprs_ns2_inst *nsi = ns_inst_from_fi(fi);
580 struct gprs_ns_hdr *nsh = (struct gprs_ns_hdr *) msg->l2h;
581 struct osmo_gprs_ns2_prim nsp = {};
582 uint16_t bvci;
583
Alexander Couzenscce88282020-10-26 00:25:50 +0100584 if (msgb_l2len(msg) < sizeof(*nsh) + 3) {
585 msgb_free(msg);
Alexander Couzens6a161492020-07-12 13:45:50 +0200586 return;
Alexander Couzenscce88282020-10-26 00:25:50 +0100587 }
Alexander Couzens6a161492020-07-12 13:45:50 +0200588
589 /* TODO: 7.1: For an IP sub-network, an NS-UNITDATA PDU
590 * for a PTP BVC may indicate a request to change the IP endpoint
591 * and/or a response to a change in the IP endpoint. */
592
593 /* TODO: nsh->data[0] -> C/R only valid in IP SNS */
594 bvci = nsh->data[1] << 8 | nsh->data[2];
595
Alexander Couzens89acdef2020-09-23 18:22:31 +0200596 msg->l3h = &nsh->data[3];
597 nsp.bvci = bvci;
598 nsp.nsei = priv->nsvc->nse->nsei;
Alexander Couzens6a161492020-07-12 13:45:50 +0200599
Alexander Couzensc1cd3332020-09-23 23:24:02 +0200600 /* 10.3.9 NS SDU Control Bits */
601 if (nsh->data[0] & 0x1)
Alexander Couzens138b96f2021-01-25 16:23:29 +0100602 nsp.u.unitdata.change = GPRS_NS2_ENDPOINT_REQUEST_CHANGE;
Alexander Couzens6a161492020-07-12 13:45:50 +0200603
Alexander Couzens138b96f2021-01-25 16:23:29 +0100604 osmo_prim_init(&nsp.oph, SAP_NS, GPRS_NS2_PRIM_UNIT_DATA,
Alexander Couzens6a161492020-07-12 13:45:50 +0200605 PRIM_OP_INDICATION, msg);
606 nsi->cb(&nsp.oph, nsi->cb_data);
607}
608
Alexander Couzensf7e2cac2021-01-25 16:18:21 +0100609static void ns2_vc_fsm_allstate_action(struct osmo_fsm_inst *fi,
Alexander Couzens6a161492020-07-12 13:45:50 +0200610 uint32_t event,
611 void *data)
612{
613 struct gprs_ns2_vc_priv *priv = fi->priv;
614 struct gprs_ns2_inst *nsi = ns_inst_from_fi(fi);
Alexander Couzenscce88282020-10-26 00:25:50 +0100615 struct msgb *msg = data;
Alexander Couzens6a161492020-07-12 13:45:50 +0200616
617 switch (event) {
Alexander Couzens27e58732021-03-21 17:12:08 +0100618 case GPRS_NS2_EV_REQ_OM_RESET:
619 if (priv->nsvc->mode != GPRS_NS2_VC_MODE_BLOCKRESET)
620 break;
621 /* move the FSM into reset */
622 if (fi->state != GPRS_NS2_ST_RESET) {
623 priv->initiate_reset = true;
624 osmo_fsm_inst_state_chg(fi, GPRS_NS2_ST_RESET, nsi->timeout[NS_TOUT_TNS_RESET], NS_TOUT_TNS_RESET);
625 }
626 break;
Alexander Couzensf5775432021-01-18 13:49:00 +0100627 case GPRS_NS2_EV_RX_RESET:
Alexander Couzens138b96f2021-01-25 16:23:29 +0100628 if (priv->nsvc->mode != GPRS_NS2_VC_MODE_BLOCKRESET)
Alexander Couzens6a161492020-07-12 13:45:50 +0200629 break;
630
631 /* move the FSM into reset */
632 if (fi->state != GPRS_NS2_ST_RESET) {
Daniel Willmannf5b2e282020-11-18 18:51:25 +0100633 priv->initiate_reset = false;
Alexander Couzens6a161492020-07-12 13:45:50 +0200634 osmo_fsm_inst_state_chg(fi, GPRS_NS2_ST_RESET, nsi->timeout[NS_TOUT_TNS_RESET], NS_TOUT_TNS_RESET);
635 }
636 /* pass the event down into FSM action */
Alexander Couzensf7e2cac2021-01-25 16:18:21 +0100637 ns2_st_reset(fi, event, data);
Alexander Couzens6a161492020-07-12 13:45:50 +0200638 break;
Alexander Couzensf5775432021-01-18 13:49:00 +0100639 case GPRS_NS2_EV_RX_ALIVE:
Alexander Couzens6a161492020-07-12 13:45:50 +0200640 switch (fi->state) {
641 case GPRS_NS2_ST_UNCONFIGURED:
642 case GPRS_NS2_ST_RESET:
643 /* ignore ALIVE */
644 break;
645 default:
646 ns2_tx_alive_ack(priv->nsvc);
647 }
648 break;
Alexander Couzensf5775432021-01-18 13:49:00 +0100649 case GPRS_NS2_EV_RX_ALIVE_ACK:
Alexander Couzens6a161492020-07-12 13:45:50 +0200650 /* for VCs without RESET/BLOCK/UNBLOCK, the connections comes after ALIVE_ACK unblocked */
Alexander Couzensd3e31102021-02-03 11:15:07 +0100651 if (fi->state == GPRS_NS2_ST_RECOVERING)
Alexander Couzensf7e2cac2021-01-25 16:18:21 +0100652 ns2_st_alive(fi, event, data);
Alexander Couzens6a161492020-07-12 13:45:50 +0200653 else
654 recv_test_procedure(fi);
655 break;
Alexander Couzensf5775432021-01-18 13:49:00 +0100656 case GPRS_NS2_EV_RX_UNITDATA:
Alexander Couzenscce88282020-10-26 00:25:50 +0100657 /* UNITDATA has to handle the release of msg.
658 * If send upwards (gprs_ns2_recv_unitdata) it must NOT free
659 * the msg, the upper layer has to do it.
660 * Otherwise the msg must be freed.
661 */
Alexander Couzens6cf65d92021-01-18 17:55:35 +0100662
663 LOG_NS_DATA(priv->nsvc, "Rx", NS_PDUT_UNITDATA, LOGL_INFO, "\n");
Alexander Couzens6a161492020-07-12 13:45:50 +0200664 switch (fi->state) {
665 case GPRS_NS2_ST_BLOCKED:
666 /* 7.2.1: the BLOCKED_ACK might be lost */
Alexander Couzens47afc422021-01-17 20:12:46 +0100667 if (priv->accept_unitdata) {
Alexander Couzensf7e2cac2021-01-25 16:18:21 +0100668 ns2_recv_unitdata(fi, msg);
Alexander Couzenscce88282020-10-26 00:25:50 +0100669 return;
670 }
671
672 ns2_tx_status(priv->nsvc,
673 NS_CAUSE_NSVC_BLOCKED,
674 0, msg);
Alexander Couzens6a161492020-07-12 13:45:50 +0200675 break;
676 /* ALIVE can receive UNITDATA if the ALIVE_ACK is lost */
Alexander Couzensd3e31102021-02-03 11:15:07 +0100677 case GPRS_NS2_ST_RECOVERING:
Alexander Couzens6a161492020-07-12 13:45:50 +0200678 case GPRS_NS2_ST_UNBLOCKED:
Alexander Couzensf7e2cac2021-01-25 16:18:21 +0100679 ns2_recv_unitdata(fi, msg);
Alexander Couzenscce88282020-10-26 00:25:50 +0100680 return;
Alexander Couzens6a161492020-07-12 13:45:50 +0200681 }
Alexander Couzenscce88282020-10-26 00:25:50 +0100682
683 msgb_free(msg);
Alexander Couzens6a161492020-07-12 13:45:50 +0200684 break;
Alexander Couzensf5775432021-01-18 13:49:00 +0100685 case GPRS_NS2_EV_REQ_FORCE_UNCONFIGURED:
Alexander Couzens6f3b7382020-12-21 15:57:04 +0100686 if (fi->state != GPRS_NS2_ST_UNCONFIGURED) {
687 /* Force the NSVC back to its initial state */
688 osmo_fsm_inst_state_chg(fi, GPRS_NS2_ST_UNCONFIGURED, 0, 0);
Alexander Couzens6f3b7382020-12-21 15:57:04 +0100689 return;
690 }
Daniel Willmanned0c9822020-11-18 14:08:07 +0100691 break;
Alexander Couzens47afc422021-01-17 20:12:46 +0100692 case GPRS_NS2_EV_REQ_OM_BLOCK:
693 /* vty cmd: block */
694 priv->initiate_block = true;
695 priv->om_blocked = true;
696 osmo_fsm_inst_state_chg(fi, GPRS_NS2_ST_BLOCKED, nsi->timeout[NS_TOUT_TNS_BLOCK], 0);
697 break;
698 case GPRS_NS2_EV_REQ_OM_UNBLOCK:
699 /* vty cmd: unblock*/
700 if (!priv->om_blocked)
701 return;
702 priv->om_blocked = false;
703 if (fi->state == GPRS_NS2_ST_BLOCKED)
704 osmo_fsm_inst_state_chg(fi, GPRS_NS2_ST_BLOCKED, nsi->timeout[NS_TOUT_TNS_BLOCK], 0);
705 break;
Alexander Couzens6a161492020-07-12 13:45:50 +0200706 }
707}
708
Alexander Couzensf7e2cac2021-01-25 16:18:21 +0100709static void ns2_vc_fsm_clean(struct osmo_fsm_inst *fi,
Alexander Couzens0346b642020-10-27 13:05:56 +0100710 enum osmo_fsm_term_cause cause)
711{
712 struct gprs_ns2_vc_priv *priv = fi->priv;
713
714 osmo_timer_del(&priv->alive.timer);
715}
716
Alexander Couzensf7e2cac2021-01-25 16:18:21 +0100717static struct osmo_fsm ns2_vc_fsm = {
Alexander Couzens6a161492020-07-12 13:45:50 +0200718 .name = "GPRS-NS2-VC",
Alexander Couzensf7e2cac2021-01-25 16:18:21 +0100719 .states = ns2_vc_states,
720 .num_states = ARRAY_SIZE(ns2_vc_states),
Alexander Couzensf5775432021-01-18 13:49:00 +0100721 .allstate_event_mask = S(GPRS_NS2_EV_RX_UNITDATA) |
722 S(GPRS_NS2_EV_RX_RESET) |
723 S(GPRS_NS2_EV_RX_ALIVE) |
724 S(GPRS_NS2_EV_RX_ALIVE_ACK) |
725 S(GPRS_NS2_EV_REQ_FORCE_UNCONFIGURED) |
Alexander Couzens27e58732021-03-21 17:12:08 +0100726 S(GPRS_NS2_EV_REQ_OM_RESET) |
Alexander Couzens47afc422021-01-17 20:12:46 +0100727 S(GPRS_NS2_EV_REQ_OM_BLOCK) |
728 S(GPRS_NS2_EV_REQ_OM_UNBLOCK),
Alexander Couzensf7e2cac2021-01-25 16:18:21 +0100729 .allstate_action = ns2_vc_fsm_allstate_action,
730 .cleanup = ns2_vc_fsm_clean,
731 .timer_cb = ns2_vc_fsm_timer_cb,
Alexander Couzensf7e2cac2021-01-25 16:18:21 +0100732 .event_names = ns2_vc_event_names,
Alexander Couzens6a161492020-07-12 13:45:50 +0200733 .pre_term = NULL,
734 .log_subsys = DLNS,
735};
736
737/*!
738 * \brief gprs_ns2_vc_fsm_alloc
739 * \param ctx
740 * \param vc
741 * \param id a char representation of the virtual curcuit
Daniel Willmannf5b2e282020-11-18 18:51:25 +0100742 * \param initiator initiator is the site which starts the connection. Usually the BSS.
Alexander Couzens6a161492020-07-12 13:45:50 +0200743 * \return NULL on error, otherwise the fsm
744 */
Alexander Couzens8dfc24c2021-01-25 16:09:23 +0100745struct osmo_fsm_inst *ns2_vc_fsm_alloc(struct gprs_ns2_vc *nsvc,
Daniel Willmannf5b2e282020-11-18 18:51:25 +0100746 const char *id, bool initiator)
Alexander Couzens6a161492020-07-12 13:45:50 +0200747{
748 struct osmo_fsm_inst *fi;
749 struct gprs_ns2_vc_priv *priv;
750
Alexander Couzensf7e2cac2021-01-25 16:18:21 +0100751 fi = osmo_fsm_inst_alloc(&ns2_vc_fsm, nsvc, NULL, LOGL_DEBUG, id);
Alexander Couzens6a161492020-07-12 13:45:50 +0200752 if (!fi)
753 return fi;
754
755 nsvc->fi = fi;
756 priv = fi->priv = talloc_zero(fi, struct gprs_ns2_vc_priv);
757 priv->nsvc = nsvc;
Alexander Couzensea01bf22021-01-18 14:01:01 +0100758 priv->initiator = initiator;
Alexander Couzens6a161492020-07-12 13:45:50 +0200759
760 osmo_timer_setup(&priv->alive.timer, alive_timeout_handler, fi);
761
762 return fi;
763}
764
Harald Welte5bef2cc2020-09-18 22:33:24 +0200765/*! Start a NS-VC FSM.
766 * \param nsvc the virtual circuit
767 * \return 0 on success; negative on error */
Alexander Couzens8dfc24c2021-01-25 16:09:23 +0100768int ns2_vc_fsm_start(struct gprs_ns2_vc *nsvc)
Alexander Couzens6a161492020-07-12 13:45:50 +0200769{
770 /* allows to call this function even for started nsvc by gprs_ns2_start_alive_all_nsvcs */
771 if (nsvc->fi->state == GPRS_NS2_ST_UNCONFIGURED)
Alexander Couzensf5775432021-01-18 13:49:00 +0100772 return osmo_fsm_inst_dispatch(nsvc->fi, GPRS_NS2_EV_REQ_START, NULL);
Alexander Couzens6a161492020-07-12 13:45:50 +0200773 return 0;
774}
775
Daniel Willmanned0c9822020-11-18 14:08:07 +0100776/*! Reset a NS-VC FSM.
777 * \param nsvc the virtual circuit
778 * \return 0 on success; negative on error */
Alexander Couzens8dfc24c2021-01-25 16:09:23 +0100779int ns2_vc_force_unconfigured(struct gprs_ns2_vc *nsvc)
Daniel Willmanned0c9822020-11-18 14:08:07 +0100780{
Alexander Couzensf5775432021-01-18 13:49:00 +0100781 return osmo_fsm_inst_dispatch(nsvc->fi, GPRS_NS2_EV_REQ_FORCE_UNCONFIGURED, NULL);
Daniel Willmanned0c9822020-11-18 14:08:07 +0100782}
783
Alexander Couzens47afc422021-01-17 20:12:46 +0100784/*! Block a NS-VC.
785 * \param nsvc the virtual circuit
786 * \return 0 on success; negative on error */
787int ns2_vc_block(struct gprs_ns2_vc *nsvc)
788{
Alexander Couzense7dfeac2021-03-21 17:28:36 +0100789 struct gprs_ns2_vc_priv *priv = nsvc->fi->priv;
Alexander Couzens79a3a842021-04-13 12:26:57 +0200790 if (priv->om_blocked)
Alexander Couzense7dfeac2021-03-21 17:28:36 +0100791 return -EALREADY;
792
Alexander Couzens47afc422021-01-17 20:12:46 +0100793 return osmo_fsm_inst_dispatch(nsvc->fi, GPRS_NS2_EV_REQ_OM_BLOCK, NULL);
794}
795
796/*! Unblock a NS-VC.
797 * \param nsvc the virtual circuit
798 * \return 0 on success; negative on error */
799int ns2_vc_unblock(struct gprs_ns2_vc *nsvc)
800{
Alexander Couzense7dfeac2021-03-21 17:28:36 +0100801 struct gprs_ns2_vc_priv *priv = nsvc->fi->priv;
Alexander Couzens79a3a842021-04-13 12:26:57 +0200802 if (!priv->om_blocked)
Alexander Couzense7dfeac2021-03-21 17:28:36 +0100803 return -EALREADY;
804
Alexander Couzens47afc422021-01-17 20:12:46 +0100805 return osmo_fsm_inst_dispatch(nsvc->fi, GPRS_NS2_EV_REQ_OM_UNBLOCK, NULL);
806}
807
Alexander Couzens27e58732021-03-21 17:12:08 +0100808/*! Reset a NS-VC.
809 * \param nsvc the virtual circuit
810 * \return 0 on success; negative on error */
811int ns2_vc_reset(struct gprs_ns2_vc *nsvc)
812{
813 return osmo_fsm_inst_dispatch(nsvc->fi, GPRS_NS2_EV_REQ_OM_RESET, NULL);
814}
815
Harald Welte5bef2cc2020-09-18 22:33:24 +0200816/*! entry point for messages from the driver/VL
817 * \param nsvc virtual circuit on which the message was received
818 * \param msg message that was received
819 * \param tp parsed TLVs of the received message
820 * \return 0 on success; negative on error */
Alexander Couzens8dfc24c2021-01-25 16:09:23 +0100821int ns2_vc_rx(struct gprs_ns2_vc *nsvc, struct msgb *msg, struct tlv_parsed *tp)
Alexander Couzens6a161492020-07-12 13:45:50 +0200822{
823 struct gprs_ns_hdr *nsh = (struct gprs_ns_hdr *) msg->l2h;
824 struct osmo_fsm_inst *fi = nsvc->fi;
Alexander Couzenscce88282020-10-26 00:25:50 +0100825 int rc = 0;
Alexander Couzens6a161492020-07-12 13:45:50 +0200826 uint8_t cause;
Alexander Couzens3f576ab2021-01-20 14:50:31 +0100827 uint16_t nsei, nsvci;
Alexander Couzens6a161492020-07-12 13:45:50 +0200828
829 /* TODO: 7.2: on UNBLOCK/BLOCK: check if NS-VCI is correct,
830 * if not answer STATUS with "NS-VC unknown" */
Alexander Couzens6a161492020-07-12 13:45:50 +0200831 /* TODO: handle BLOCK/UNBLOCK/ALIVE with different VCI */
832
Alexander Couzens8dfc24c2021-01-25 16:09:23 +0100833 if (ns2_validate(nsvc, nsh->pdu_type, msg, tp, &cause)) {
Alexander Couzens6a161492020-07-12 13:45:50 +0200834 if (nsh->pdu_type != NS_PDUT_STATUS) {
Alexander Couzenscce88282020-10-26 00:25:50 +0100835 rc = ns2_tx_status(nsvc, cause, 0, msg);
836 goto out;
Alexander Couzens6a161492020-07-12 13:45:50 +0200837 }
838 }
839
Alexander Couzens43771df2021-01-20 13:03:03 +0100840 if (TLVP_PRESENT(tp, NS_IE_NSEI)) {
841 nsei = tlvp_val16be(tp, NS_IE_NSEI);
842 if (nsei != nsvc->nse->nsei) {
843 /* 48.016 § 7.3.1 send, RESET_ACK to wrong NSVCI + ignore */
844 if (nsh->pdu_type == NS_PDUT_RESET)
845 ns2_tx_reset_ack(nsvc);
846
Alexander Couzens6cf65d92021-01-18 17:55:35 +0100847 LOG_NS_SIGNAL(nsvc, "Rx", nsh->pdu_type, LOGL_ERROR, " with wrong NSEI=%05u. Ignoring PDU.\n", nsei);
Alexander Couzens43771df2021-01-20 13:03:03 +0100848 goto out;
849 }
850 }
851
Alexander Couzens3f576ab2021-01-20 14:50:31 +0100852 if (nsvc->nsvci_is_valid && TLVP_PRESENT(tp, NS_IE_VCI)) {
853 nsvci = tlvp_val16be(tp, NS_IE_VCI);
854 if (nsvci != nsvc->nsvci) {
855 /* 48.016 § 7.3.1 send RESET_ACK to wrong NSVCI + ignore */
856 if (nsh->pdu_type == NS_PDUT_RESET)
857 ns2_tx_reset_ack(nsvc);
858
Alexander Couzens6cf65d92021-01-18 17:55:35 +0100859 LOG_NS_SIGNAL(nsvc, "Rx", nsh->pdu_type, LOGL_ERROR, " with wrong NSVCI=%05u. Ignoring PDU.\n", nsvci);
Alexander Couzens3f576ab2021-01-20 14:50:31 +0100860 goto out;
861 }
862 }
863
Alexander Couzens6a161492020-07-12 13:45:50 +0200864 switch (nsh->pdu_type) {
865 case NS_PDUT_RESET:
Alexander Couzensf5775432021-01-18 13:49:00 +0100866 osmo_fsm_inst_dispatch(fi, GPRS_NS2_EV_RX_RESET, tp);
Alexander Couzens6a161492020-07-12 13:45:50 +0200867 break;
868 case NS_PDUT_RESET_ACK:
Alexander Couzensf5775432021-01-18 13:49:00 +0100869 osmo_fsm_inst_dispatch(fi, GPRS_NS2_EV_RX_RESET_ACK, tp);
Alexander Couzens6a161492020-07-12 13:45:50 +0200870 break;
871 case NS_PDUT_BLOCK:
Alexander Couzensf5775432021-01-18 13:49:00 +0100872 osmo_fsm_inst_dispatch(fi, GPRS_NS2_EV_RX_BLOCK, tp);
Alexander Couzens6a161492020-07-12 13:45:50 +0200873 break;
874 case NS_PDUT_BLOCK_ACK:
Alexander Couzensf5775432021-01-18 13:49:00 +0100875 osmo_fsm_inst_dispatch(fi, GPRS_NS2_EV_RX_BLOCK_ACK, tp);
Alexander Couzens6a161492020-07-12 13:45:50 +0200876 break;
877 case NS_PDUT_UNBLOCK:
Alexander Couzensf5775432021-01-18 13:49:00 +0100878 osmo_fsm_inst_dispatch(fi, GPRS_NS2_EV_RX_UNBLOCK, tp);
Alexander Couzens6a161492020-07-12 13:45:50 +0200879 break;
880 case NS_PDUT_UNBLOCK_ACK:
Alexander Couzensf5775432021-01-18 13:49:00 +0100881 osmo_fsm_inst_dispatch(fi, GPRS_NS2_EV_RX_UNBLOCK_ACK, tp);
Alexander Couzens6a161492020-07-12 13:45:50 +0200882 break;
883 case NS_PDUT_ALIVE:
Alexander Couzensf5775432021-01-18 13:49:00 +0100884 osmo_fsm_inst_dispatch(fi, GPRS_NS2_EV_RX_ALIVE, tp);
Alexander Couzens6a161492020-07-12 13:45:50 +0200885 break;
886 case NS_PDUT_ALIVE_ACK:
Alexander Couzensf5775432021-01-18 13:49:00 +0100887 osmo_fsm_inst_dispatch(fi, GPRS_NS2_EV_RX_ALIVE_ACK, tp);
Alexander Couzens6a161492020-07-12 13:45:50 +0200888 break;
889 case NS_PDUT_UNITDATA:
Alexander Couzenscce88282020-10-26 00:25:50 +0100890 /* UNITDATA have to free msg because it might send the msg layer upwards */
Alexander Couzensf5775432021-01-18 13:49:00 +0100891 osmo_fsm_inst_dispatch(fi, GPRS_NS2_EV_RX_UNITDATA, msg);
Alexander Couzenscce88282020-10-26 00:25:50 +0100892 return 0;
Alexander Couzens6a161492020-07-12 13:45:50 +0200893 default:
Harald Weltef2949742021-01-20 14:54:14 +0100894 LOGPFSML(fi, LOGL_ERROR, "NSEI=%u Rx unknown NS PDU type %s\n", nsvc->nse->nsei,
895 get_value_string(gprs_ns_pdu_strings, nsh->pdu_type));
Alexander Couzens7619ed42021-03-24 17:44:03 +0100896 rc = -EINVAL;
897 break;
Alexander Couzens6a161492020-07-12 13:45:50 +0200898 }
899
Alexander Couzenscce88282020-10-26 00:25:50 +0100900out:
901 msgb_free(msg);
902
903 return rc;
Alexander Couzens6a161492020-07-12 13:45:50 +0200904}
905
Harald Welte5bef2cc2020-09-18 22:33:24 +0200906/*! is the given NS-VC unblocked? */
Alexander Couzens8dfc24c2021-01-25 16:09:23 +0100907int ns2_vc_is_unblocked(struct gprs_ns2_vc *nsvc)
Alexander Couzens6a161492020-07-12 13:45:50 +0200908{
909 return (nsvc->fi->state == GPRS_NS2_ST_UNBLOCKED);
910}
911
912/* initialize osmo_ctx on main tread */
913static __attribute__((constructor)) void on_dso_load_ctx(void)
914{
Alexander Couzensf7e2cac2021-01-25 16:18:21 +0100915 OSMO_ASSERT(osmo_fsm_register(&ns2_vc_fsm) == 0);
Alexander Couzens6a161492020-07-12 13:45:50 +0200916}