blob: 4eb9d37ab93c7f8a96de207278f195c1a10ef3f2 [file] [log] [blame]
Alexander Couzens6a161492020-07-12 13:45:50 +02001/*! \file gprs_ns2_vty.c
2 * VTY interface for our GPRS Networks Service (NS) implementation. */
3
4/* (C) 2009-2014 by Harald Welte <laforge@gnumonks.org>
5 * (C) 2016-2017 by sysmocom - s.f.m.c. GmbH
6 * (C) 2020 by sysmocom - s.f.m.c. GmbH <info@sysmocom.de>
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#include <stdlib.h>
29#include <unistd.h>
30#include <errno.h>
31#include <stdint.h>
32
33#include <arpa/inet.h>
Alexander Couzens841817e2020-11-19 00:41:29 +010034#include <net/if.h>
Alexander Couzens6a161492020-07-12 13:45:50 +020035
36#include <osmocom/core/msgb.h>
37#include <osmocom/core/byteswap.h>
Daniel Willmanndbab7142020-11-18 14:19:56 +010038#include <osmocom/core/fsm.h>
Alexander Couzens6a161492020-07-12 13:45:50 +020039#include <osmocom/core/talloc.h>
40#include <osmocom/core/select.h>
41#include <osmocom/core/rate_ctr.h>
42#include <osmocom/core/socket.h>
43#include <osmocom/core/sockaddr_str.h>
44#include <osmocom/core/linuxlist.h>
45#include <osmocom/core/socket.h>
Alexander Couzens841817e2020-11-19 00:41:29 +010046#include <osmocom/gprs/frame_relay.h>
Alexander Couzens6a161492020-07-12 13:45:50 +020047#include <osmocom/gprs/gprs_ns2.h>
48#include <osmocom/gsm/tlv.h>
49#include <osmocom/vty/vty.h>
50#include <osmocom/vty/command.h>
51#include <osmocom/vty/logging.h>
52#include <osmocom/vty/telnet_interface.h>
53#include <osmocom/vty/misc.h>
54
55#include "gprs_ns2_internal.h"
56
57struct ns2_vty_priv {
58 /* global listen */
59 struct osmo_sockaddr_str udp;
60 struct osmo_sockaddr_str frgreaddr;
61 int dscp;
62 enum gprs_ns2_vc_mode vc_mode;
63 /* force vc mode if another configuration forces
64 * the vc mode. E.g. SNS configuration */
65 bool force_vc_mode;
Daniel Willmann4fb27a82020-09-25 15:39:46 +020066 const char *force_vc_mode_reason;
Alexander Couzens6a161492020-07-12 13:45:50 +020067 bool frgre;
68
69 struct llist_head vtyvc;
70};
71
72struct ns2_vty_vc {
73 struct llist_head list;
74
75 struct osmo_sockaddr_str remote;
76 enum gprs_ns_ll ll;
77
78 /* old vty code doesnt support multiple NSVCI per NSEI */
79 uint16_t nsei;
80 uint16_t nsvci;
81 uint16_t frdlci;
82
Alexander Couzens841817e2020-11-19 00:41:29 +010083 struct {
84 enum osmo_fr_role role;
85 } fr;
86
87 char netif[IF_NAMESIZE];
88
Alexander Couzens6a161492020-07-12 13:45:50 +020089 bool remote_end_is_sgsn;
90 bool configured;
91};
92
93static struct gprs_ns2_inst *vty_nsi = NULL;
94static struct ns2_vty_priv priv;
Alexander Couzens841817e2020-11-19 00:41:29 +010095static struct osmo_fr_network *vty_fr_network = NULL;
Alexander Couzens6a161492020-07-12 13:45:50 +020096
97/* FIXME: this should go to some common file as it is copied
98 * in vty_interface.c of the BSC */
99static const struct value_string gprs_ns_timer_strs[] = {
100 { 0, "tns-block" },
101 { 1, "tns-block-retries" },
102 { 2, "tns-reset" },
103 { 3, "tns-reset-retries" },
104 { 4, "tns-test" },
105 { 5, "tns-alive" },
106 { 6, "tns-alive-retries" },
107 { 7, "tsns-prov" },
108 { 0, NULL }
109};
110
111static void log_set_nsvc_filter(struct log_target *target,
112 struct gprs_ns2_vc *nsvc)
113{
114 if (nsvc) {
115 target->filter_map |= (1 << LOG_FLT_GB_NSVC);
116 target->filter_data[LOG_FLT_GB_NSVC] = nsvc;
117 } else if (target->filter_data[LOG_FLT_GB_NSVC]) {
118 target->filter_map = ~(1 << LOG_FLT_GB_NSVC);
119 target->filter_data[LOG_FLT_GB_NSVC] = NULL;
120 }
121}
122
123static struct cmd_node ns_node = {
124 L_NS_NODE,
125 "%s(config-ns)# ",
126 1,
127};
128
129static struct ns2_vty_vc *vtyvc_alloc(uint16_t nsei) {
130 struct ns2_vty_vc *vtyvc = talloc_zero(vty_nsi, struct ns2_vty_vc);
131 if (!vtyvc)
132 return vtyvc;
133
134 vtyvc->nsei = nsei;
135
136 llist_add(&vtyvc->list, &priv.vtyvc);
137
138 return vtyvc;
139}
140
141static void ns2_vc_free(struct ns2_vty_vc *vtyvc) {
142 if (!vtyvc)
143 return;
144
145 llist_del(&vtyvc->list);
146 talloc_free(vtyvc);
147}
148
149static struct ns2_vty_vc *vtyvc_by_nsei(uint16_t nsei, bool alloc_missing) {
150 struct ns2_vty_vc *vtyvc;
Alexander Couzens1f0625f2020-09-23 18:22:20 +0200151
Alexander Couzens6a161492020-07-12 13:45:50 +0200152 llist_for_each_entry(vtyvc, &priv.vtyvc, list) {
153 if (vtyvc->nsei == nsei)
154 return vtyvc;
155 }
156
Alexander Couzens1f0625f2020-09-23 18:22:20 +0200157 if (!alloc_missing)
158 return NULL;
Alexander Couzens6a161492020-07-12 13:45:50 +0200159
Alexander Couzens1f0625f2020-09-23 18:22:20 +0200160 vtyvc = vtyvc_alloc(nsei);
161 if (!vtyvc)
162 return vtyvc;
Alexander Couzens6a161492020-07-12 13:45:50 +0200163
Alexander Couzens1f0625f2020-09-23 18:22:20 +0200164 vtyvc->nsei = nsei;
165 return vtyvc;
Alexander Couzens6a161492020-07-12 13:45:50 +0200166}
167
168static int config_write_ns(struct vty *vty)
169{
170 struct ns2_vty_vc *vtyvc;
171 unsigned int i;
172 struct osmo_sockaddr_str sockstr;
173
174 vty_out(vty, "ns%s", VTY_NEWLINE);
175
176 /* global configuration must be written first, as some of it may be
177 * relevant when creating the NSE/NSVC later below */
178
179 vty_out(vty, " encapsulation framerelay-gre enabled %u%s",
180 priv.frgre ? 1 : 0, VTY_NEWLINE);
181
182 if (priv.frgre) {
183 if (strlen(priv.frgreaddr.ip)) {
184 vty_out(vty, " encapsulation framerelay-gre local-ip %s%s",
185 sockstr.ip, VTY_NEWLINE);
186 }
187 } else {
188 if (strlen(priv.udp.ip)) {
189 vty_out(vty, " encapsulation udp local-ip %s%s",
190 priv.udp.ip, VTY_NEWLINE);
191 }
192
193 if (priv.udp.port)
194 vty_out(vty, " encapsulation udp local-port %u%s",
195 priv.udp.port, VTY_NEWLINE);
196 }
197
198 if (priv.dscp)
199 vty_out(vty, " encapsulation udp dscp %d%s",
200 priv.dscp, VTY_NEWLINE);
201
202 vty_out(vty, " encapsulation udp use-reset-block-unblock %s%s",
203 priv.vc_mode == NS2_VC_MODE_BLOCKRESET ? "enabled" : "disabled", VTY_NEWLINE);
204
205 llist_for_each_entry(vtyvc, &priv.vtyvc, list) {
206 vty_out(vty, " nse %u nsvci %u%s",
207 vtyvc->nsei, vtyvc->nsvci, VTY_NEWLINE);
208
209 vty_out(vty, " nse %u remote-role %s%s",
210 vtyvc->nsei, vtyvc->remote_end_is_sgsn ? "sgsn" : "bss",
211 VTY_NEWLINE);
212
213 switch (vtyvc->ll) {
214 case GPRS_NS_LL_UDP:
215 vty_out(vty, " nse %u encapsulation udp%s", vtyvc->nsei, VTY_NEWLINE);
216 vty_out(vty, " nse %u remote-ip %s%s",
217 vtyvc->nsei,
218 vtyvc->remote.ip,
219 VTY_NEWLINE);
220 vty_out(vty, " nse %u remote-port %u%s",
221 vtyvc->nsei, vtyvc->remote.port,
222 VTY_NEWLINE);
223 break;
224 case GPRS_NS_LL_FR_GRE:
225 vty_out(vty, " nse %u encapsulation framerelay-gre%s",
226 vtyvc->nsei, VTY_NEWLINE);
227 vty_out(vty, " nse %u remote-ip %s%s",
228 vtyvc->nsei,
229 vtyvc->remote.ip,
230 VTY_NEWLINE);
231 vty_out(vty, " nse %u fr-dlci %u%s",
232 vtyvc->nsei, vtyvc->frdlci,
233 VTY_NEWLINE);
234 break;
Alexander Couzens841817e2020-11-19 00:41:29 +0100235 case GPRS_NS_LL_FR:
236 vty_out(vty, " nse %u fr %s dlci %u%s",
237 vtyvc->nsei, vtyvc->netif, vtyvc->frdlci,
238 VTY_NEWLINE);
239 break;
Alexander Couzens6a161492020-07-12 13:45:50 +0200240 default:
241 break;
242 }
243 }
244
245 for (i = 0; i < ARRAY_SIZE(vty_nsi->timeout); i++)
246 vty_out(vty, " timer %s %u%s",
247 get_value_string(gprs_ns_timer_strs, i),
248 vty_nsi->timeout[i], VTY_NEWLINE);
249
250 return CMD_SUCCESS;
251}
252
253DEFUN(cfg_ns, cfg_ns_cmd,
254 "ns",
255 "Configure the GPRS Network Service")
256{
257 vty->node = L_NS_NODE;
258 return CMD_SUCCESS;
259}
260
261static void dump_nsvc(struct vty *vty, struct gprs_ns2_vc *nsvc, bool stats)
262{
Daniel Willmanned1fa012020-11-06 15:40:27 +0100263 vty_out(vty, " %s%s", gprs_ns2_ll_str(nsvc), VTY_NEWLINE);
Alexander Couzens6a161492020-07-12 13:45:50 +0200264
265 if (stats) {
266 vty_out_rate_ctr_group(vty, " ", nsvc->ctrg);
267 vty_out_stat_item_group(vty, " ", nsvc->statg);
268 }
269}
270
271static void dump_nse(struct vty *vty, const struct gprs_ns2_nse *nse, bool stats, bool persistent_only)
272{
273 struct gprs_ns2_vc *nsvc;
274
275 vty_out(vty, "NSEI %5u%s",
276 nse->nsei, VTY_NEWLINE);
277
278 gprs_ns2_sns_dump_vty(vty, nse, stats);
279 llist_for_each_entry(nsvc, &nse->nsvc, list) {
280 if (persistent_only) {
281 if (nsvc->persistent)
282 dump_nsvc(vty, nsvc, stats);
283 } else {
284 dump_nsvc(vty, nsvc, stats);
285 }
286 }
287}
288
Alexander Couzens22f34712020-10-02 02:34:39 +0200289static void dump_bind(struct vty *vty, const struct gprs_ns2_vc_bind *bind, bool stats)
290{
291 if (bind->dump_vty)
292 bind->dump_vty(bind, vty, stats);
293}
294
Alexander Couzens6a161492020-07-12 13:45:50 +0200295static void dump_ns(struct vty *vty, const struct gprs_ns2_inst *nsi, bool stats, bool persistent_only)
296{
Alexander Couzens22f34712020-10-02 02:34:39 +0200297 struct gprs_ns2_vc_bind *bind;
Alexander Couzens6a161492020-07-12 13:45:50 +0200298 struct gprs_ns2_nse *nse;
299
Alexander Couzens22f34712020-10-02 02:34:39 +0200300 llist_for_each_entry(bind, &nsi->binding, list) {
301 dump_bind(vty, bind, stats);
302 }
303
Alexander Couzens6a161492020-07-12 13:45:50 +0200304 llist_for_each_entry(nse, &nsi->nse, list) {
305 dump_nse(vty, nse, stats, persistent_only);
Alexander Couzens6a161492020-07-12 13:45:50 +0200306 }
307
308}
309
310DEFUN(show_ns, show_ns_cmd, "show ns",
311 SHOW_STR "Display information about the NS protocol")
312{
313 dump_ns(vty, vty_nsi, false, false);
314 return CMD_SUCCESS;
315}
316
317DEFUN(show_ns_stats, show_ns_stats_cmd, "show ns stats",
318 SHOW_STR
319 "Display information about the NS protocol\n"
320 "Include statistics\n")
321{
322 dump_ns(vty, vty_nsi, true, false);
323 return CMD_SUCCESS;
324}
325
326DEFUN(show_ns_pers, show_ns_pers_cmd, "show ns persistent",
327 SHOW_STR
328 "Display information about the NS protocol\n"
329 "Show only persistent NS\n")
330{
331 dump_ns(vty, vty_nsi, true, true);
332 return CMD_SUCCESS;
333}
334
335DEFUN(show_nse, show_nse_cmd, "show ns (nsei|nsvc) <0-65535> [stats]",
336 SHOW_STR "Display information about the NS protocol\n"
337 "Select one NSE by its NSE Identifier\n"
338 "Select one NSE by its NS-VC Identifier\n"
339 "The Identifier of selected type\n"
340 "Include Statistics\n")
341{
342 struct gprs_ns2_inst *nsi = vty_nsi;
343 struct gprs_ns2_nse *nse;
344 struct gprs_ns2_vc *nsvc;
345 uint16_t id = atoi(argv[1]);
346 bool show_stats = false;
347
348 if (argc >= 3)
349 show_stats = true;
350
351 if (!strcmp(argv[0], "nsei")) {
352 nse = gprs_ns2_nse_by_nsei(nsi, id);
353 if (!nse) {
354 return CMD_WARNING;
355 }
356
357 dump_nse(vty, nse, show_stats, false);
358 } else {
359 nsvc = gprs_ns2_nsvc_by_nsvci(nsi, id);
360
361 if (!nsvc) {
362 vty_out(vty, "No such NS Entity%s", VTY_NEWLINE);
363 return CMD_WARNING;
364 }
365
366 dump_nsvc(vty, nsvc, show_stats);
367 }
368
369 return CMD_SUCCESS;
370}
371
Daniel Willmanndbab7142020-11-18 14:19:56 +0100372static int nsvc_force_unconf_cb(struct gprs_ns2_vc *nsvc, void *ctx)
373{
374 gprs_ns2_vc_force_unconfigured(nsvc);
375 return 0;
376}
377
378DEFUN_HIDDEN(nsvc_force_unconf, nsvc_force_unconf_cmd,
379 "nsvc nsei <0-65535> force-unconfigured",
380 "NS Virtual Connection\n"
381 "The NSEI\n"
382 "Reset the NSVCs back to initial state\n"
383 )
384{
385 struct gprs_ns2_inst *nsi = vty_nsi;
386 struct gprs_ns2_nse *nse;
387
388 uint16_t id = atoi(argv[0]);
389
390 nse = gprs_ns2_nse_by_nsei(nsi, id);
391 if (!nse) {
392 vty_out(vty, "Could not find NSE for NSEI %u%s", id, VTY_NEWLINE);
393 return CMD_WARNING;
394 }
395
396 /* Perform the operation for all nsvc */
397 gprs_ns2_nse_foreach_nsvc(nse, nsvc_force_unconf_cb, NULL);
398
399 return CMD_SUCCESS;
400}
401
Alexander Couzens6a161492020-07-12 13:45:50 +0200402#define NSE_CMD_STR "Persistent NS Entity\n" "NS Entity ID (NSEI)\n"
403
Alexander Couzens841817e2020-11-19 00:41:29 +0100404DEFUN(cfg_nse_fr, cfg_nse_fr_cmd,
405 "nse <0-65535> nsvci <0-65535> (fr|frnet) NETIF dlci <0-1023>",
406 NSE_CMD_STR
407 "NS Virtual Connection\n"
408 "NS Virtual Connection ID (NSVCI)\n"
409 "frame relay\n"
410 IFNAME_STR
411 "Data Link connection identifier\n"
412 "Data Link connection identifier\n"
413 )
414{
415 struct ns2_vty_vc *vtyvc;
416
417 uint16_t nsei = atoi(argv[0]);
418 uint16_t nsvci = atoi(argv[1]);
419 const char *role = argv[2];
420 const char *name = argv[3];
421 uint16_t dlci = atoi(argv[4]);
422
423 vtyvc = vtyvc_by_nsei(nsei, true);
424 if (!vtyvc) {
425 vty_out(vty, "Can not allocate space %s", VTY_NEWLINE);
426 return CMD_WARNING;
427 }
428
429 if (!strcmp(role, "fr"))
430 vtyvc->fr.role = FR_ROLE_USER_EQUIPMENT;
431 else if (!strcmp(role, "frnet"))
432 vtyvc->fr.role = FR_ROLE_NETWORK_EQUIPMENT;
433
434 osmo_strlcpy(vtyvc->netif, name, sizeof(vtyvc->netif));
435 vtyvc->frdlci = dlci;
436 vtyvc->nsvci = nsvci;
437 vtyvc->ll = GPRS_NS_LL_FR;
438
439 return CMD_SUCCESS;
440}
441
Alexander Couzens6a161492020-07-12 13:45:50 +0200442DEFUN(cfg_nse_nsvc, cfg_nse_nsvci_cmd,
443 "nse <0-65535> nsvci <0-65535>",
444 NSE_CMD_STR
445 "NS Virtual Connection\n"
446 "NS Virtual Connection ID (NSVCI)\n"
447 )
448{
449 struct ns2_vty_vc *vtyvc;
450
451 uint16_t nsei = atoi(argv[0]);
452 uint16_t nsvci = atoi(argv[1]);
453
454 vtyvc = vtyvc_by_nsei(nsei, true);
455 if (!vtyvc) {
456 vty_out(vty, "Can not allocate space %s", VTY_NEWLINE);
457 return CMD_WARNING;
458 }
459
460 vtyvc->nsvci = nsvci;
461
462 return CMD_SUCCESS;
463}
464
465DEFUN(cfg_nse_remoteip, cfg_nse_remoteip_cmd,
466 "nse <0-65535> remote-ip " VTY_IPV46_CMD,
467 NSE_CMD_STR
468 "Remote IP Address\n"
Alexander Couzensc82c40a2020-09-24 05:55:48 +0200469 "Remote IPv4 Address\n"
470 "Remote IPv6 Address\n")
Alexander Couzens6a161492020-07-12 13:45:50 +0200471{
472 uint16_t nsei = atoi(argv[0]);
473 struct ns2_vty_vc *vtyvc;
474
475 vtyvc = vtyvc_by_nsei(nsei, true);
476 if (!vtyvc) {
477 vty_out(vty, "Can not allocate space %s", VTY_NEWLINE);
478 return CMD_WARNING;
479 }
480
481 osmo_sockaddr_str_from_str2(&vtyvc->remote, argv[1]);
482
483 return CMD_SUCCESS;
484}
485
486DEFUN(cfg_nse_remoteport, cfg_nse_remoteport_cmd,
487 "nse <0-65535> remote-port <0-65535>",
488 NSE_CMD_STR
489 "Remote UDP Port\n"
490 "Remote UDP Port Number\n")
491{
492 uint16_t nsei = atoi(argv[0]);
493 uint16_t port = atoi(argv[1]);
494 struct ns2_vty_vc *vtyvc;
495
496 vtyvc = vtyvc_by_nsei(nsei, true);
497 if (!vtyvc) {
498 vty_out(vty, "Can not allocate space %s", VTY_NEWLINE);
499 return CMD_WARNING;
500 }
501
502 vtyvc->remote.port = port;
503
504 return CMD_SUCCESS;
505}
506
507DEFUN(cfg_nse_fr_dlci, cfg_nse_fr_dlci_cmd,
Alexander Couzens841817e2020-11-19 00:41:29 +0100508 "nse <0-65535> nsvci <0-65535> fr-dlci <16-1007>",
Alexander Couzens6a161492020-07-12 13:45:50 +0200509 NSE_CMD_STR
510 "Frame Relay DLCI\n"
511 "Frame Relay DLCI Number\n")
512{
513 uint16_t nsei = atoi(argv[0]);
Alexander Couzens841817e2020-11-19 00:41:29 +0100514 uint16_t nsvci = atoi(argv[1]);
515 uint16_t dlci = atoi(argv[2]);
Alexander Couzens6a161492020-07-12 13:45:50 +0200516 struct ns2_vty_vc *vtyvc;
517
518 vtyvc = vtyvc_by_nsei(nsei, true);
519 if (!vtyvc) {
520 vty_out(vty, "Can not allocate space %s", VTY_NEWLINE);
521 return CMD_WARNING;
522 }
523
524 if (vtyvc->ll != GPRS_NS_LL_FR_GRE) {
525 vty_out(vty, "Warning: seting FR DLCI on non-FR NSE%s",
526 VTY_NEWLINE);
527 }
528
529 vtyvc->frdlci = dlci;
Alexander Couzens841817e2020-11-19 00:41:29 +0100530 vtyvc->nsvci = nsvci;
Alexander Couzens6a161492020-07-12 13:45:50 +0200531
532 return CMD_SUCCESS;
533}
534
535DEFUN(cfg_nse_encaps, cfg_nse_encaps_cmd,
536 "nse <0-65535> encapsulation (udp|framerelay-gre)",
537 NSE_CMD_STR
538 "Encapsulation for NS\n"
539 "UDP/IP Encapsulation\n" "Frame-Relay/GRE/IP Encapsulation\n")
540{
541 uint16_t nsei = atoi(argv[0]);
542 struct ns2_vty_vc *vtyvc;
543
544 vtyvc = vtyvc_by_nsei(nsei, true);
545 if (!vtyvc) {
546 vty_out(vty, "Can not allocate space %s", VTY_NEWLINE);
547 return CMD_WARNING;
548 }
549
550 if (!strcmp(argv[1], "udp"))
551 vtyvc->ll = GPRS_NS_LL_UDP;
552 else
553 vtyvc->ll = GPRS_NS_LL_FR_GRE;
554
555 return CMD_SUCCESS;
556}
557
558DEFUN(cfg_nse_remoterole, cfg_nse_remoterole_cmd,
559 "nse <0-65535> remote-role (sgsn|bss)",
560 NSE_CMD_STR
561 "Remote NSE Role\n"
562 "Remote Peer is SGSN\n"
563 "Remote Peer is BSS\n")
564{
565 uint16_t nsei = atoi(argv[0]);
566 struct ns2_vty_vc *vtyvc;
567
568 vtyvc = vtyvc_by_nsei(nsei, true);
569 if (!vtyvc) {
570 vty_out(vty, "Can not allocate space %s", VTY_NEWLINE);
571 return CMD_WARNING;
572 }
573
574 if (!strcmp(argv[1], "sgsn"))
575 vtyvc->remote_end_is_sgsn = 1;
576 else
577 vtyvc->remote_end_is_sgsn = 0;
578
579 return CMD_SUCCESS;
580}
581
582DEFUN(cfg_no_nse, cfg_no_nse_cmd,
583 "no nse <0-65535>",
584 "Delete Persistent NS Entity\n"
585 "Delete " NSE_CMD_STR)
586{
587 uint16_t nsei = atoi(argv[0]);
588 struct ns2_vty_vc *vtyvc;
589
590 vtyvc = vtyvc_by_nsei(nsei, false);
591 if (!vtyvc) {
592 vty_out(vty, "The NSE %d does not exists.%s", nsei, VTY_NEWLINE);
593 return CMD_WARNING;
594 }
595
596 ns2_vc_free(vtyvc);
597
598 return CMD_SUCCESS;
599}
600
601DEFUN(cfg_ns_timer, cfg_ns_timer_cmd,
602 "timer " NS_TIMERS " <0-65535>",
603 "Network Service Timer\n"
604 NS_TIMERS_HELP "Timer Value\n")
605{
606 int idx = get_string_value(gprs_ns_timer_strs, argv[0]);
607 int val = atoi(argv[1]);
608
609 if (idx < 0 || idx >= ARRAY_SIZE(vty_nsi->timeout))
610 return CMD_WARNING;
611
612 vty_nsi->timeout[idx] = val;
613
614 return CMD_SUCCESS;
615}
616
617#define ENCAPS_STR "NS encapsulation options\n"
618
619DEFUN(cfg_nsip_local_ip, cfg_nsip_local_ip_cmd,
620 "encapsulation udp local-ip " VTY_IPV46_CMD,
621 ENCAPS_STR "NS over UDP Encapsulation\n"
622 "Set the IP address on which we listen for NS/UDP\n"
Alexander Couzensc82c40a2020-09-24 05:55:48 +0200623 "IPv4 Address\n"
624 "IPv6 Address\n")
Alexander Couzens6a161492020-07-12 13:45:50 +0200625{
626 osmo_sockaddr_str_from_str2(&priv.udp, argv[0]);
627
628 return CMD_SUCCESS;
629}
630
631DEFUN(cfg_nsip_local_port, cfg_nsip_local_port_cmd,
632 "encapsulation udp local-port <0-65535>",
633 ENCAPS_STR "NS over UDP Encapsulation\n"
634 "Set the UDP port on which we listen for NS/UDP\n"
635 "UDP port number\n")
636{
637 unsigned int port = atoi(argv[0]);
638
639 priv.udp.port = port;
640
641 return CMD_SUCCESS;
642}
643
644DEFUN(cfg_nsip_dscp, cfg_nsip_dscp_cmd,
645 "encapsulation udp dscp <0-255>",
646 ENCAPS_STR "NS over UDP Encapsulation\n"
647 "Set DSCP/TOS on the UDP socket\n" "DSCP Value\n")
648{
649 int dscp = atoi(argv[0]);
650 struct gprs_ns2_vc_bind *bind;
651
652 priv.dscp = dscp;
653
654 llist_for_each_entry(bind, &vty_nsi->binding, list) {
655 if (gprs_ns2_is_ip_bind(bind))
656 gprs_ns2_ip_bind_set_dscp(bind, dscp);
657 }
658
659 return CMD_SUCCESS;
660}
661
662DEFUN(cfg_nsip_res_block_unblock, cfg_nsip_res_block_unblock_cmd,
663 "encapsulation udp use-reset-block-unblock (enabled|disabled)",
664 ENCAPS_STR "NS over UDP Encapsulation\n"
665 "Use NS-{RESET,BLOCK,UNBLOCK} procedures in violation of 3GPP TS 48.016\n"
666 "Enable NS-{RESET,BLOCK,UNBLOCK}\n"
667 "Disable NS-{RESET,BLOCK,UNBLOCK}\n")
668{
669 enum gprs_ns2_vc_mode vc_mode;
670 struct gprs_ns2_vc_bind *bind;
671
672 if (!strcmp(argv[0], "enabled"))
673 vc_mode = NS2_VC_MODE_BLOCKRESET;
674 else
675 vc_mode = NS2_VC_MODE_ALIVE;
676
677 if (priv.force_vc_mode) {
678 if (priv.vc_mode != vc_mode)
679 {
680 vty_out(vty, "Ignoring use-reset-block because it's already set by %s.%s",
681 priv.force_vc_mode_reason, VTY_NEWLINE);
682 return CMD_WARNING;
683 }
684
685 return CMD_SUCCESS;
686 }
687
688 priv.vc_mode = vc_mode;
689
690 llist_for_each_entry(bind, &vty_nsi->binding, list) {
691 gprs_ns2_bind_set_mode(bind, priv.vc_mode);
692 }
693
694 return CMD_SUCCESS;
695}
696
697DEFUN(cfg_frgre_local_ip, cfg_frgre_local_ip_cmd,
698 "encapsulation framerelay-gre local-ip " VTY_IPV46_CMD,
699 ENCAPS_STR "NS over Frame Relay over GRE Encapsulation\n"
700 "Set the IP address on which we listen for NS/FR/GRE\n"
Alexander Couzensc82c40a2020-09-24 05:55:48 +0200701 "IPv4 Address\n"
702 "IPv6 Address\n")
Alexander Couzens6a161492020-07-12 13:45:50 +0200703{
704 osmo_sockaddr_str_from_str2(&priv.frgreaddr, argv[0]);
705
706 return CMD_SUCCESS;
707}
708
709DEFUN(cfg_frgre_enable, cfg_frgre_enable_cmd,
710 "encapsulation framerelay-gre enabled (1|0)",
711 ENCAPS_STR "NS over Frame Relay over GRE Encapsulation\n"
712 "Enable or disable Frame Relay over GRE\n"
713 "Enable\n" "Disable\n")
714{
715 int enabled = atoi(argv[0]);
716
717 priv.frgre = enabled;
718
719 return CMD_SUCCESS;
720}
721
722/* TODO: allow vty to reset/block/unblock nsvc/nsei */
723
724/* TODO: add filter for NSEI as ns1 code does */
725/* TODO: add filter for single connection by description */
726DEFUN(logging_fltr_nsvc,
727 logging_fltr_nsvc_cmd,
728 "logging filter nsvc nsvci <0-65535>",
729 LOGGING_STR FILTER_STR
730 "Filter based on NS Virtual Connection\n"
731 "Identify NS-VC by NSVCI\n"
732 "Numeric identifier\n")
733{
734 struct log_target *tgt;
735 struct gprs_ns2_vc *nsvc;
736 uint16_t id = atoi(argv[1]);
737
738 log_tgt_mutex_lock();
739 tgt = osmo_log_vty2tgt(vty);
740 if (!tgt) {
741 log_tgt_mutex_unlock();
742 return CMD_WARNING;
743 }
744
745 nsvc = gprs_ns2_nsvc_by_nsvci(vty_nsi, id);
746 if (!nsvc) {
747 vty_out(vty, "No NS-VC by that identifier%s", VTY_NEWLINE);
748 log_tgt_mutex_unlock();
749 return CMD_WARNING;
750 }
751
752 log_set_nsvc_filter(tgt, nsvc);
753 log_tgt_mutex_unlock();
754 return CMD_SUCCESS;
755}
756
Alexander Couzens1fac6f72020-10-01 19:08:38 +0200757/**
758 * gprs_ns2_vty_init initialize the vty
759 * \param[inout] nsi
760 * \param[in] default_bind set the default address to bind to. Can be NULL.
761 * \return 0 on success
762 */
Vadim Yanitskiya07f25e2020-10-09 21:47:01 +0700763int gprs_ns2_vty_init(struct gprs_ns2_inst *nsi,
764 const struct osmo_sockaddr_str *default_bind)
Alexander Couzens6a161492020-07-12 13:45:50 +0200765{
766 static bool vty_elements_installed = false;
767
768 vty_nsi = nsi;
769 memset(&priv, 0, sizeof(struct ns2_vty_priv));
770 INIT_LLIST_HEAD(&priv.vtyvc);
771 priv.vc_mode = NS2_VC_MODE_BLOCKRESET;
Alexander Couzens1fac6f72020-10-01 19:08:38 +0200772 if (default_bind)
773 memcpy(&priv.udp, default_bind, sizeof(*default_bind));
Alexander Couzens6a161492020-07-12 13:45:50 +0200774
775 /* Regression test code may call this function repeatedly, so make sure
776 * that VTY elements are not duplicated, which would assert. */
777 if (vty_elements_installed)
778 return 0;
779 vty_elements_installed = true;
780
Vadim Yanitskiy8e7c4962020-10-04 15:37:31 +0700781 install_lib_element_ve(&show_ns_cmd);
782 install_lib_element_ve(&show_ns_stats_cmd);
783 install_lib_element_ve(&show_ns_pers_cmd);
784 install_lib_element_ve(&show_nse_cmd);
785 install_lib_element_ve(&logging_fltr_nsvc_cmd);
Alexander Couzens6a161492020-07-12 13:45:50 +0200786
Daniel Willmanndbab7142020-11-18 14:19:56 +0100787 install_lib_element(ENABLE_NODE, &nsvc_force_unconf_cmd);
788
Vadim Yanitskiy8e7c4962020-10-04 15:37:31 +0700789 install_lib_element(CFG_LOG_NODE, &logging_fltr_nsvc_cmd);
Alexander Couzens6a161492020-07-12 13:45:50 +0200790
Vadim Yanitskiy8e7c4962020-10-04 15:37:31 +0700791 install_lib_element(CONFIG_NODE, &cfg_ns_cmd);
Alexander Couzens6a161492020-07-12 13:45:50 +0200792 install_node(&ns_node, config_write_ns);
Alexander Couzens841817e2020-11-19 00:41:29 +0100793 install_lib_element(L_NS_NODE, &cfg_nse_fr_cmd);
Vadim Yanitskiy8e7c4962020-10-04 15:37:31 +0700794 install_lib_element(L_NS_NODE, &cfg_nse_nsvci_cmd);
795 install_lib_element(L_NS_NODE, &cfg_nse_remoteip_cmd);
796 install_lib_element(L_NS_NODE, &cfg_nse_remoteport_cmd);
797 install_lib_element(L_NS_NODE, &cfg_nse_fr_dlci_cmd);
798 install_lib_element(L_NS_NODE, &cfg_nse_encaps_cmd);
799 install_lib_element(L_NS_NODE, &cfg_nse_remoterole_cmd);
800 install_lib_element(L_NS_NODE, &cfg_no_nse_cmd);
801 install_lib_element(L_NS_NODE, &cfg_ns_timer_cmd);
802 install_lib_element(L_NS_NODE, &cfg_nsip_local_ip_cmd);
803 install_lib_element(L_NS_NODE, &cfg_nsip_local_port_cmd);
804 install_lib_element(L_NS_NODE, &cfg_nsip_dscp_cmd);
805 install_lib_element(L_NS_NODE, &cfg_nsip_res_block_unblock_cmd);
806 install_lib_element(L_NS_NODE, &cfg_frgre_enable_cmd);
807 install_lib_element(L_NS_NODE, &cfg_frgre_local_ip_cmd);
Alexander Couzens6a161492020-07-12 13:45:50 +0200808
809 /* TODO: nsvc/nsei command to reset states or reset/block/unblock nsei/nsvcs */
810
811 return 0;
812}
813
814/*!
815 * \brief gprs_ns2_vty_create parse the vty tree into ns nodes
816 * It has to be in different steps to ensure the bind is created before creating VCs.
817 * \return 0 on success
818 */
819int gprs_ns2_vty_create() {
820 struct ns2_vty_vc *vtyvc;
Alexander Couzens841817e2020-11-19 00:41:29 +0100821 struct gprs_ns2_vc_bind *bind, *fr;
Alexander Couzens6a161492020-07-12 13:45:50 +0200822 struct gprs_ns2_nse *nse;
823 struct gprs_ns2_vc *nsvc;
824 struct osmo_sockaddr sockaddr;
Alexander Couzens841817e2020-11-19 00:41:29 +0100825 int rc = 0;
Alexander Couzens6a161492020-07-12 13:45:50 +0200826
827 if (!vty_nsi)
828 return -1;
829
830 /* create binds, only support a single bind. either FR or UDP */
831 if (priv.frgre) {
832 /* TODO not yet supported !*/
833 return -1;
834 } else {
835 /* UDP */
836 osmo_sockaddr_str_to_sockaddr(&priv.udp, &sockaddr.u.sas);
Alexander Couzens477ffb02020-10-01 19:05:28 +0200837 if (gprs_ns2_ip_bind(vty_nsi, &sockaddr, priv.dscp, &bind)) {
Alexander Couzens6a161492020-07-12 13:45:50 +0200838 /* TODO: could not bind on the specific address */
839 return -1;
840 }
841 gprs_ns2_bind_set_mode(bind, priv.vc_mode);
842 }
843
844 /* create vcs */
845 llist_for_each_entry(vtyvc, &priv.vtyvc, list) {
Alexander Couzens841817e2020-11-19 00:41:29 +0100846 /* validate settings */
847 switch (vtyvc->ll) {
848 case GPRS_NS_LL_UDP:
849 if (strlen(vtyvc->remote.ip) == 0) {
850 /* Invalid IP for VC */
851 continue;
852 }
Alexander Couzens6a161492020-07-12 13:45:50 +0200853
Alexander Couzens841817e2020-11-19 00:41:29 +0100854 if (!vtyvc->remote.port) {
855 /* Invalid port for VC */
856 continue;
857 }
Alexander Couzens6a161492020-07-12 13:45:50 +0200858
Alexander Couzens841817e2020-11-19 00:41:29 +0100859 if (osmo_sockaddr_str_to_sockaddr(&vtyvc->remote, &sockaddr.u.sas)) {
860 /* Invalid sockaddr for VC */
861 continue;
862 }
863 break;
864 case GPRS_NS_LL_FR:
865 break;
866 case GPRS_NS_LL_FR_GRE:
867 case GPRS_NS_LL_E1:
Alexander Couzens6a161492020-07-12 13:45:50 +0200868 continue;
869 }
870
871 nse = gprs_ns2_nse_by_nsei(vty_nsi, vtyvc->nsei);
872 if (!nse) {
873 nse = gprs_ns2_create_nse(vty_nsi, vtyvc->nsei);
874 if (!nse) {
875 /* Could not create NSE for VTY */
876 continue;
877 }
878 }
879 nse->persistent = true;
880
Alexander Couzens841817e2020-11-19 00:41:29 +0100881 switch (vtyvc->ll) {
882 case GPRS_NS_LL_UDP:
883 nsvc = gprs_ns2_ip_connect(bind,
884 &sockaddr,
885 nse,
886 vtyvc->nsvci);
887 if (!nsvc) {
888 /* Could not create NSVC, connect failed */
889 continue;
890 }
891 nsvc->persistent = true;
892 break;
893 case GPRS_NS_LL_FR: {
894 if (vty_fr_network == NULL) {
895 /* TODO: add a switch for BSS/SGSN/gbproxy */
896 vty_fr_network = osmo_fr_network_alloc(vty_nsi);
897 }
898 fr = gprs_ns2_fr_bind_by_netif(
899 vty_nsi,
900 vtyvc->netif);
901 if (!fr) {
902 rc = gprs_ns2_fr_bind(vty_nsi, vtyvc->netif, vty_fr_network, vtyvc->fr.role, &fr);
903 if (rc < 0) {
904 LOGP(DLNS, LOGL_ERROR, "Can not create fr bind on device %s err: %d\n", vtyvc->netif, rc);
905 return rc;
906 }
907 }
908
909 nsvc = gprs_ns2_fr_connect(fr, vtyvc->nsei, vtyvc->nsvci, vtyvc->frdlci);
910 if (!nsvc) {
911 /* Could not create NSVC, connect failed */
912 continue;
913 }
914 nsvc->persistent = true;
915 break;
916 }
917 case GPRS_NS_LL_FR_GRE:
918 case GPRS_NS_LL_E1:
Alexander Couzensd745a0e2020-10-07 00:50:00 +0200919 continue;
Alexander Couzens6a161492020-07-12 13:45:50 +0200920 }
921 }
922
923
924 return 0;
925}
926
927/*!
928 * \brief ns2_vty_bind_apply will be called when a new bind is created to apply vty settings
929 * \param bind
930 * \return
931 */
932void ns2_vty_bind_apply(struct gprs_ns2_vc_bind *bind)
933{
934 gprs_ns2_bind_set_mode(bind, priv.vc_mode);
935}
936
937/*!
938 * \brief ns2_vty_force_vc_mode force a mode and prevents the vty from overwriting it.
939 * \param force if true mode and reason will be set. false to allow modification via vty.
940 * \param mode
941 * \param reason A description shown to the user when a vty command wants to change the mode.
942 */
Daniel Willmann4fb27a82020-09-25 15:39:46 +0200943void gprs_ns2_vty_force_vc_mode(bool force, enum gprs_ns2_vc_mode mode, const char *reason)
Alexander Couzens6a161492020-07-12 13:45:50 +0200944{
945 priv.force_vc_mode = force;
946
947 if (force) {
948 priv.vc_mode = mode;
949 priv.force_vc_mode_reason = reason;
950 }
951}