blob: e320ba29297bfdac000ed592e7feab4308c5bfe3 [file] [log] [blame]
Neels Hofmeyr17518fe2017-06-20 04:35:06 +02001/*! \file gprs_ns_vty.c
2 * VTY interface for our GPRS Networks Service (NS) implementation. */
3/*
4 * (C) 2009-2010 by Harald Welte <laforge@gnumonks.org>
Harald Welte144e0292010-05-13 11:45:07 +02005 *
6 * All Rights Reserved
7 *
8 * This program is free software; you can redistribute it and/or modify
Harald Welte7fa89c22014-10-26 20:33:09 +01009 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
Harald Welte144e0292010-05-13 11:45:07 +020011 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
Harald Welte7fa89c22014-10-26 20:33:09 +010016 * GNU General Public License for more details.
Harald Welte144e0292010-05-13 11:45:07 +020017 *
Harald Welte7fa89c22014-10-26 20:33:09 +010018 * You should have received a copy of the GNU General Public License
Harald Weltee4cbb3f2011-01-01 15:25:50 +010019 * along with this program. If not, see <http://www.gnu.org/licenses/>.
Harald Welte144e0292010-05-13 11:45:07 +020020 *
21 */
22
23#include <stdlib.h>
24#include <unistd.h>
25#include <errno.h>
26#include <stdint.h>
27
28#include <arpa/inet.h>
29
Pablo Neira Ayusoff663232011-03-22 16:47:59 +010030#include <osmocom/core/msgb.h>
Harald Weltebfe62e52017-05-15 12:48:30 +020031#include <osmocom/core/byteswap.h>
Pablo Neira Ayusoff663232011-03-22 16:47:59 +010032#include <osmocom/gsm/tlv.h>
33#include <osmocom/core/talloc.h>
34#include <osmocom/core/select.h>
35#include <osmocom/core/rate_ctr.h>
Harald Welte73952e32012-06-16 14:59:56 +080036#include <osmocom/gprs/gprs_ns.h>
37#include <osmocom/gprs/gprs_bssgp.h>
Harald Welte144e0292010-05-13 11:45:07 +020038
Harald Welteac1a7152010-05-19 19:45:32 +020039#include <osmocom/vty/vty.h>
40#include <osmocom/vty/command.h>
41#include <osmocom/vty/logging.h>
42#include <osmocom/vty/telnet_interface.h>
Pablo Neira Ayuso167281e2011-03-28 19:35:00 +020043#include <osmocom/vty/misc.h>
Harald Welte144e0292010-05-13 11:45:07 +020044
Harald Welte4f5883b2012-06-16 16:54:06 +080045#include "common_vty.h"
Harald Welte73952e32012-06-16 14:59:56 +080046
Harald Welte144e0292010-05-13 11:45:07 +020047static struct gprs_ns_inst *vty_nsi = NULL;
48
49/* FIXME: this should go to some common file as it is copied
50 * in vty_interface.c of the BSC */
51static const struct value_string gprs_ns_timer_strs[] = {
52 { 0, "tns-block" },
53 { 1, "tns-block-retries" },
54 { 2, "tns-reset" },
55 { 3, "tns-reset-retries" },
56 { 4, "tns-test" },
57 { 5, "tns-alive" },
58 { 6, "tns-alive-retries" },
59 { 0, NULL }
60};
61
Harald Weltef5430362012-06-17 12:25:53 +080062static void log_set_nsvc_filter(struct log_target *target,
63 struct gprs_nsvc *nsvc)
64{
65 if (nsvc) {
Neels Hofmeyr8b86cd72017-02-23 18:03:28 +010066 target->filter_map |= (1 << LOG_FLT_GB_NSVC);
67 target->filter_data[LOG_FLT_GB_NSVC] = nsvc;
68 } else if (target->filter_data[LOG_FLT_GB_NSVC]) {
69 target->filter_map = ~(1 << LOG_FLT_GB_NSVC);
70 target->filter_data[LOG_FLT_GB_NSVC] = NULL;
Harald Weltef5430362012-06-17 12:25:53 +080071 }
72}
73
Harald Welte144e0292010-05-13 11:45:07 +020074static struct cmd_node ns_node = {
Harald Welte4f5883b2012-06-16 16:54:06 +080075 L_NS_NODE,
Jacob Erlbeck35fe87c2013-10-24 01:33:20 +020076 "%s(config-ns)# ",
Harald Welte144e0292010-05-13 11:45:07 +020077 1,
78};
79
80static int config_write_ns(struct vty *vty)
81{
82 struct gprs_nsvc *nsvc;
83 unsigned int i;
Harald Welte7fb05232010-05-19 15:09:09 +020084 struct in_addr ia;
Harald Welte144e0292010-05-13 11:45:07 +020085
86 vty_out(vty, "ns%s", VTY_NEWLINE);
87
88 llist_for_each_entry(nsvc, &vty_nsi->gprs_nsvcs, list) {
89 if (!nsvc->persistent)
90 continue;
91 vty_out(vty, " nse %u nsvci %u%s",
92 nsvc->nsei, nsvc->nsvci, VTY_NEWLINE);
93 vty_out(vty, " nse %u remote-role %s%s",
94 nsvc->nsei, nsvc->remote_end_is_sgsn ? "sgsn" : "bss",
95 VTY_NEWLINE);
Harald Welteb3ee2652010-05-19 14:38:50 +020096 switch (nsvc->ll) {
97 case GPRS_NS_LL_UDP:
98 vty_out(vty, " nse %u encapsulation udp%s", nsvc->nsei,
99 VTY_NEWLINE);
Harald Welte144e0292010-05-13 11:45:07 +0200100 vty_out(vty, " nse %u remote-ip %s%s",
101 nsvc->nsei,
102 inet_ntoa(nsvc->ip.bts_addr.sin_addr),
103 VTY_NEWLINE);
104 vty_out(vty, " nse %u remote-port %u%s",
Harald Weltebfe62e52017-05-15 12:48:30 +0200105 nsvc->nsei, osmo_ntohs(nsvc->ip.bts_addr.sin_port),
Harald Welte144e0292010-05-13 11:45:07 +0200106 VTY_NEWLINE);
Harald Welteb3ee2652010-05-19 14:38:50 +0200107 break;
108 case GPRS_NS_LL_FR_GRE:
109 vty_out(vty, " nse %u encapsulation framerelay-gre%s",
110 nsvc->nsei, VTY_NEWLINE);
111 vty_out(vty, " nse %u remote-ip %s%s",
112 nsvc->nsei,
113 inet_ntoa(nsvc->frgre.bts_addr.sin_addr),
114 VTY_NEWLINE);
115 vty_out(vty, " nse %u fr-dlci %u%s",
Harald Weltebfe62e52017-05-15 12:48:30 +0200116 nsvc->nsei, osmo_ntohs(nsvc->frgre.bts_addr.sin_port),
Harald Welteb3ee2652010-05-19 14:38:50 +0200117 VTY_NEWLINE);
118 default:
119 break;
Harald Welte144e0292010-05-13 11:45:07 +0200120 }
121 }
122
123 for (i = 0; i < ARRAY_SIZE(vty_nsi->timeout); i++)
124 vty_out(vty, " timer %s %u%s",
125 get_value_string(gprs_ns_timer_strs, i),
126 vty_nsi->timeout[i], VTY_NEWLINE);
127
Harald Welte7fb05232010-05-19 15:09:09 +0200128 if (vty_nsi->nsip.local_ip) {
Harald Weltebfe62e52017-05-15 12:48:30 +0200129 ia.s_addr = osmo_htonl(vty_nsi->nsip.local_ip);
Harald Welte7fb05232010-05-19 15:09:09 +0200130 vty_out(vty, " encapsulation udp local-ip %s%s",
131 inet_ntoa(ia), VTY_NEWLINE);
Harald Welte7fb05232010-05-19 15:09:09 +0200132 }
Harald Weltece4ccbc2010-05-19 17:02:57 +0200133 if (vty_nsi->nsip.local_port)
134 vty_out(vty, " encapsulation udp local-port %u%s",
135 vty_nsi->nsip.local_port, VTY_NEWLINE);
Holger Hans Peter Freyther2c3393d2013-03-25 11:59:58 +0100136 if (vty_nsi->nsip.dscp)
137 vty_out(vty, " encapsulation udp dscp %d%s",
138 vty_nsi->nsip.dscp, VTY_NEWLINE);
Harald Weltece4ccbc2010-05-19 17:02:57 +0200139
Harald Welte7fb05232010-05-19 15:09:09 +0200140 vty_out(vty, " encapsulation framerelay-gre enabled %u%s",
141 vty_nsi->frgre.enabled ? 1 : 0, VTY_NEWLINE);
Harald Weltece4ccbc2010-05-19 17:02:57 +0200142 if (vty_nsi->frgre.local_ip) {
Harald Weltebfe62e52017-05-15 12:48:30 +0200143 ia.s_addr = osmo_htonl(vty_nsi->frgre.local_ip);
Harald Welte7fb05232010-05-19 15:09:09 +0200144 vty_out(vty, " encapsulation framerelay-gre local-ip %s%s",
145 inet_ntoa(ia), VTY_NEWLINE);
146 }
147
Harald Welte144e0292010-05-13 11:45:07 +0200148 return CMD_SUCCESS;
149}
150
151DEFUN(cfg_ns, cfg_ns_cmd,
152 "ns",
153 "Configure the GPRS Network Service")
154{
Harald Welte4f5883b2012-06-16 16:54:06 +0800155 vty->node = L_NS_NODE;
Harald Welte144e0292010-05-13 11:45:07 +0200156 return CMD_SUCCESS;
157}
158
Harald Welte92883342010-05-15 23:04:03 +0200159static void dump_nse(struct vty *vty, struct gprs_nsvc *nsvc, int stats)
160{
161 vty_out(vty, "NSEI %5u, NS-VC %5u, Remote: %-4s, %5s %9s",
162 nsvc->nsei, nsvc->nsvci,
163 nsvc->remote_end_is_sgsn ? "SGSN" : "BSS",
164 nsvc->state & NSE_S_ALIVE ? "ALIVE" : "DEAD",
165 nsvc->state & NSE_S_BLOCKED ? "BLOCKED" : "UNBLOCKED");
Harald Welteb3ee2652010-05-19 14:38:50 +0200166 if (nsvc->ll == GPRS_NS_LL_UDP || nsvc->ll == GPRS_NS_LL_FR_GRE)
167 vty_out(vty, ", %s %15s:%u",
Harald Weltece4ccbc2010-05-19 17:02:57 +0200168 nsvc->ll == GPRS_NS_LL_UDP ? "UDP " : "FR-GRE",
Harald Welte92883342010-05-15 23:04:03 +0200169 inet_ntoa(nsvc->ip.bts_addr.sin_addr),
Harald Weltebfe62e52017-05-15 12:48:30 +0200170 osmo_ntohs(nsvc->ip.bts_addr.sin_port));
Harald Welte92883342010-05-15 23:04:03 +0200171 vty_out(vty, "%s", VTY_NEWLINE);
Jacob Erlbeck0a1400f2015-10-06 15:23:25 +0200172 if (stats) {
Harald Welte92883342010-05-15 23:04:03 +0200173 vty_out_rate_ctr_group(vty, " ", nsvc->ctrg);
Jacob Erlbeck0a1400f2015-10-06 15:23:25 +0200174 vty_out_stat_item_group(vty, " ", nsvc->statg);
175 }
Harald Welte92883342010-05-15 23:04:03 +0200176}
177
Harald Welteaf1d4cb2010-05-13 12:32:30 +0200178static void dump_ns(struct vty *vty, struct gprs_ns_inst *nsi, int stats)
Harald Welte144e0292010-05-13 11:45:07 +0200179{
Harald Welte144e0292010-05-13 11:45:07 +0200180 struct gprs_nsvc *nsvc;
Harald Welte7fb05232010-05-19 15:09:09 +0200181 struct in_addr ia;
182
Harald Weltebfe62e52017-05-15 12:48:30 +0200183 ia.s_addr = osmo_htonl(vty_nsi->nsip.local_ip);
Harald Weltece4ccbc2010-05-19 17:02:57 +0200184 vty_out(vty, "Encapsulation NS-UDP-IP Local IP: %s, UDP Port: %u%s",
Harald Welte7fb05232010-05-19 15:09:09 +0200185 inet_ntoa(ia), vty_nsi->nsip.local_port, VTY_NEWLINE);
186
Harald Weltebfe62e52017-05-15 12:48:30 +0200187 ia.s_addr = osmo_htonl(vty_nsi->frgre.local_ip);
Harald Weltece4ccbc2010-05-19 17:02:57 +0200188 vty_out(vty, "Encapsulation NS-FR-GRE-IP Local IP: %s%s",
Harald Welte7fb05232010-05-19 15:09:09 +0200189 inet_ntoa(ia), VTY_NEWLINE);
Harald Welte144e0292010-05-13 11:45:07 +0200190
191 llist_for_each_entry(nsvc, &nsi->gprs_nsvcs, list) {
Harald Weltedd1c83c2010-05-13 13:58:08 +0200192 if (nsvc == nsi->unknown_nsvc)
193 continue;
Harald Welte92883342010-05-15 23:04:03 +0200194 dump_nse(vty, nsvc, stats);
Harald Welte144e0292010-05-13 11:45:07 +0200195 }
Harald Welteaf1d4cb2010-05-13 12:32:30 +0200196}
Harald Welte144e0292010-05-13 11:45:07 +0200197
Harald Welteaf1d4cb2010-05-13 12:32:30 +0200198DEFUN(show_ns, show_ns_cmd, "show ns",
199 SHOW_STR "Display information about the NS protocol")
200{
201 struct gprs_ns_inst *nsi = vty_nsi;
202 dump_ns(vty, nsi, 0);
Harald Welte144e0292010-05-13 11:45:07 +0200203 return CMD_SUCCESS;
204}
205
Harald Welteaf1d4cb2010-05-13 12:32:30 +0200206DEFUN(show_ns_stats, show_ns_stats_cmd, "show ns stats",
207 SHOW_STR
208 "Display information about the NS protocol\n"
209 "Include statistics\n")
210{
211 struct gprs_ns_inst *nsi = vty_nsi;
212 dump_ns(vty, nsi, 1);
213 return CMD_SUCCESS;
214}
Harald Welte144e0292010-05-13 11:45:07 +0200215
Harald Welte92883342010-05-15 23:04:03 +0200216DEFUN(show_nse, show_nse_cmd, "show ns (nsei|nsvc) <0-65535> [stats]",
217 SHOW_STR "Display information about the NS protocol\n"
218 "Select one NSE by its NSE Identifier\n"
219 "Select one NSE by its NS-VC Identifier\n"
220 "The Identifier of selected type\n"
221 "Include Statistics\n")
222{
223 struct gprs_ns_inst *nsi = vty_nsi;
224 struct gprs_nsvc *nsvc;
225 uint16_t id = atoi(argv[1]);
226 int show_stats = 0;
227
228 if (!strcmp(argv[0], "nsei"))
Harald Weltef5430362012-06-17 12:25:53 +0800229 nsvc = gprs_nsvc_by_nsei(nsi, id);
Harald Welte92883342010-05-15 23:04:03 +0200230 else
Harald Weltef5430362012-06-17 12:25:53 +0800231 nsvc = gprs_nsvc_by_nsvci(nsi, id);
Harald Welte92883342010-05-15 23:04:03 +0200232
233 if (!nsvc) {
234 vty_out(vty, "No such NS Entity%s", VTY_NEWLINE);
235 return CMD_WARNING;
236 }
237
238 if (argc >= 3)
239 show_stats = 1;
240
241 dump_nse(vty, nsvc, show_stats);
242 return CMD_SUCCESS;
243}
244
Harald Welte24133c32010-05-15 23:06:26 +0200245#define NSE_CMD_STR "Persistent NS Entity\n" "NS Entity ID (NSEI)\n"
Harald Welte144e0292010-05-13 11:45:07 +0200246
247DEFUN(cfg_nse_nsvc, cfg_nse_nsvci_cmd,
248 "nse <0-65535> nsvci <0-65534>",
249 NSE_CMD_STR
250 "NS Virtual Connection\n"
251 "NS Virtual Connection ID (NSVCI)\n"
252 )
253{
254 uint16_t nsei = atoi(argv[0]);
255 uint16_t nsvci = atoi(argv[1]);
256 struct gprs_nsvc *nsvc;
257
Harald Weltef5430362012-06-17 12:25:53 +0800258 nsvc = gprs_nsvc_by_nsei(vty_nsi, nsei);
Harald Welte144e0292010-05-13 11:45:07 +0200259 if (!nsvc) {
Harald Weltef5430362012-06-17 12:25:53 +0800260 nsvc = gprs_nsvc_create(vty_nsi, nsvci);
Harald Welte144e0292010-05-13 11:45:07 +0200261 nsvc->nsei = nsei;
262 }
263 nsvc->nsvci = nsvci;
264 /* All NSVCs that are explicitly configured by VTY are
265 * marked as persistent so we can write them to the config
266 * file at some later point */
267 nsvc->persistent = 1;
268
269 return CMD_SUCCESS;
270}
271
272DEFUN(cfg_nse_remoteip, cfg_nse_remoteip_cmd,
273 "nse <0-65535> remote-ip A.B.C.D",
274 NSE_CMD_STR
275 "Remote IP Address\n"
276 "Remote IP Address\n")
277{
278 uint16_t nsei = atoi(argv[0]);
279 struct gprs_nsvc *nsvc;
280
Harald Weltef5430362012-06-17 12:25:53 +0800281 nsvc = gprs_nsvc_by_nsei(vty_nsi, nsei);
Harald Welte144e0292010-05-13 11:45:07 +0200282 if (!nsvc) {
283 vty_out(vty, "No such NSE (%u)%s", nsei, VTY_NEWLINE);
284 return CMD_WARNING;
285 }
286 inet_aton(argv[1], &nsvc->ip.bts_addr.sin_addr);
287
288 return CMD_SUCCESS;
289
290}
291
292DEFUN(cfg_nse_remoteport, cfg_nse_remoteport_cmd,
293 "nse <0-65535> remote-port <0-65535>",
294 NSE_CMD_STR
295 "Remote UDP Port\n"
296 "Remote UDP Port Number\n")
297{
298 uint16_t nsei = atoi(argv[0]);
299 uint16_t port = atoi(argv[1]);
300 struct gprs_nsvc *nsvc;
301
Harald Weltef5430362012-06-17 12:25:53 +0800302 nsvc = gprs_nsvc_by_nsei(vty_nsi, nsei);
Harald Welte144e0292010-05-13 11:45:07 +0200303 if (!nsvc) {
304 vty_out(vty, "No such NSE (%u)%s", nsei, VTY_NEWLINE);
305 return CMD_WARNING;
306 }
307
Harald Welteb3ee2652010-05-19 14:38:50 +0200308 if (nsvc->ll != GPRS_NS_LL_UDP) {
309 vty_out(vty, "Cannot set UDP Port on non-UDP NSE%s",
310 VTY_NEWLINE);
311 return CMD_WARNING;
312 }
313
Harald Weltebfe62e52017-05-15 12:48:30 +0200314 nsvc->ip.bts_addr.sin_port = osmo_htons(port);
Harald Welte144e0292010-05-13 11:45:07 +0200315
316 return CMD_SUCCESS;
317}
318
Harald Welteb3ee2652010-05-19 14:38:50 +0200319DEFUN(cfg_nse_fr_dlci, cfg_nse_fr_dlci_cmd,
Harald Welte188bda62010-05-28 14:11:49 +0200320 "nse <0-65535> fr-dlci <16-1007>",
Harald Welteb3ee2652010-05-19 14:38:50 +0200321 NSE_CMD_STR
322 "Frame Relay DLCI\n"
323 "Frame Relay DLCI Number\n")
324{
325 uint16_t nsei = atoi(argv[0]);
326 uint16_t dlci = atoi(argv[1]);
327 struct gprs_nsvc *nsvc;
328
Harald Weltef5430362012-06-17 12:25:53 +0800329 nsvc = gprs_nsvc_by_nsei(vty_nsi, nsei);
Harald Welteb3ee2652010-05-19 14:38:50 +0200330 if (!nsvc) {
331 vty_out(vty, "No such NSE (%u)%s", nsei, VTY_NEWLINE);
332 return CMD_WARNING;
333 }
334
335 if (nsvc->ll != GPRS_NS_LL_FR_GRE) {
336 vty_out(vty, "Cannot set FR DLCI on non-FR NSE%s",
337 VTY_NEWLINE);
338 return CMD_WARNING;
339 }
340
Harald Weltebfe62e52017-05-15 12:48:30 +0200341 nsvc->frgre.bts_addr.sin_port = osmo_htons(dlci);
Harald Welteb3ee2652010-05-19 14:38:50 +0200342
343 return CMD_SUCCESS;
344}
345
346DEFUN(cfg_nse_encaps, cfg_nse_encaps_cmd,
347 "nse <0-65535> encapsulation (udp|framerelay-gre)",
348 NSE_CMD_STR
349 "Encapsulation for NS\n"
350 "UDP/IP Encapsulation\n" "Frame-Relay/GRE/IP Encapsulation\n")
351{
352 uint16_t nsei = atoi(argv[0]);
353 struct gprs_nsvc *nsvc;
354
Harald Weltef5430362012-06-17 12:25:53 +0800355 nsvc = gprs_nsvc_by_nsei(vty_nsi, nsei);
Harald Welteb3ee2652010-05-19 14:38:50 +0200356 if (!nsvc) {
357 vty_out(vty, "No such NSE (%u)%s", nsei, VTY_NEWLINE);
358 return CMD_WARNING;
359 }
360
361 if (!strcmp(argv[1], "udp"))
362 nsvc->ll = GPRS_NS_LL_UDP;
363 else
364 nsvc->ll = GPRS_NS_LL_FR_GRE;
365
366 return CMD_SUCCESS;
367}
368
369
Harald Welte144e0292010-05-13 11:45:07 +0200370DEFUN(cfg_nse_remoterole, cfg_nse_remoterole_cmd,
371 "nse <0-65535> remote-role (sgsn|bss)",
372 NSE_CMD_STR
373 "Remote NSE Role\n"
374 "Remote Peer is SGSN\n"
375 "Remote Peer is BSS\n")
376{
377 uint16_t nsei = atoi(argv[0]);
378 struct gprs_nsvc *nsvc;
379
Harald Weltef5430362012-06-17 12:25:53 +0800380 nsvc = gprs_nsvc_by_nsei(vty_nsi, nsei);
Harald Welte144e0292010-05-13 11:45:07 +0200381 if (!nsvc) {
382 vty_out(vty, "No such NSE (%u)%s", nsei, VTY_NEWLINE);
383 return CMD_WARNING;
384 }
385
386 if (!strcmp(argv[1], "sgsn"))
387 nsvc->remote_end_is_sgsn = 1;
388 else
389 nsvc->remote_end_is_sgsn = 0;
390
391 return CMD_SUCCESS;
392}
393
394DEFUN(cfg_no_nse, cfg_no_nse_cmd,
395 "no nse <0-65535>",
Harald Welte24133c32010-05-15 23:06:26 +0200396 "Delete Persistent NS Entity\n"
Harald Welte144e0292010-05-13 11:45:07 +0200397 "Delete " NSE_CMD_STR)
398{
399 uint16_t nsei = atoi(argv[0]);
400 struct gprs_nsvc *nsvc;
401
Harald Weltef5430362012-06-17 12:25:53 +0800402 nsvc = gprs_nsvc_by_nsei(vty_nsi, nsei);
Harald Welte144e0292010-05-13 11:45:07 +0200403 if (!nsvc) {
404 vty_out(vty, "No such NSE (%u)%s", nsei, VTY_NEWLINE);
405 return CMD_WARNING;
406 }
407
Harald Welte24133c32010-05-15 23:06:26 +0200408 if (!nsvc->persistent) {
409 vty_out(vty, "NSEI %u is not a persistent NSE%s",
410 nsei, VTY_NEWLINE);
411 return CMD_WARNING;
412 }
413
414 nsvc->persistent = 0;
Harald Welte144e0292010-05-13 11:45:07 +0200415
416 return CMD_SUCCESS;
417}
418
419DEFUN(cfg_ns_timer, cfg_ns_timer_cmd,
420 "timer " NS_TIMERS " <0-65535>",
421 "Network Service Timer\n"
422 NS_TIMERS_HELP "Timer Value\n")
423{
424 int idx = get_string_value(gprs_ns_timer_strs, argv[0]);
425 int val = atoi(argv[1]);
426
427 if (idx < 0 || idx >= ARRAY_SIZE(vty_nsi->timeout))
428 return CMD_WARNING;
429
430 vty_nsi->timeout[idx] = val;
431
432 return CMD_SUCCESS;
433}
434
Harald Welte7fb05232010-05-19 15:09:09 +0200435#define ENCAPS_STR "NS encapsulation options\n"
436
437DEFUN(cfg_nsip_local_ip, cfg_nsip_local_ip_cmd,
438 "encapsulation udp local-ip A.B.C.D",
439 ENCAPS_STR "NS over UDP Encapsulation\n"
440 "Set the IP address on which we listen for NS/UDP\n"
441 "IP Address\n")
442{
443 struct in_addr ia;
444
445 inet_aton(argv[0], &ia);
Harald Weltebfe62e52017-05-15 12:48:30 +0200446 vty_nsi->nsip.local_ip = osmo_ntohl(ia.s_addr);
Harald Welte7fb05232010-05-19 15:09:09 +0200447
448 return CMD_SUCCESS;
449}
450
451DEFUN(cfg_nsip_local_port, cfg_nsip_local_port_cmd,
452 "encapsulation udp local-port <0-65535>",
453 ENCAPS_STR "NS over UDP Encapsulation\n"
454 "Set the UDP port on which we listen for NS/UDP\n"
455 "UDP port number\n")
456{
457 unsigned int port = atoi(argv[0]);
458
459 vty_nsi->nsip.local_port = port;
460
461 return CMD_SUCCESS;
462}
463
Holger Hans Peter Freyther2c3393d2013-03-25 11:59:58 +0100464DEFUN(cfg_nsip_dscp, cfg_nsip_dscp_cmd,
465 "encapsulation udp dscp <0-255>",
466 ENCAPS_STR "NS over UDP Encapsulation\n"
467 "Set DSCP/TOS on the UDP socket\n" "DSCP Value\n")
468{
469 int dscp = atoi(argv[0]);
470 vty_nsi->nsip.dscp = dscp;
471 return CMD_SUCCESS;
472}
473
Harald Welte7fb05232010-05-19 15:09:09 +0200474DEFUN(cfg_frgre_local_ip, cfg_frgre_local_ip_cmd,
475 "encapsulation framerelay-gre local-ip A.B.C.D",
476 ENCAPS_STR "NS over Frame Relay over GRE Encapsulation\n"
477 "Set the IP address on which we listen for NS/FR/GRE\n"
478 "IP Address\n")
479{
480 struct in_addr ia;
481
482 if (!vty_nsi->frgre.enabled) {
483 vty_out(vty, "FR/GRE is not enabled%s", VTY_NEWLINE);
484 return CMD_WARNING;
485 }
486 inet_aton(argv[0], &ia);
Harald Weltebfe62e52017-05-15 12:48:30 +0200487 vty_nsi->frgre.local_ip = osmo_ntohl(ia.s_addr);
Harald Welte7fb05232010-05-19 15:09:09 +0200488
489 return CMD_SUCCESS;
490}
491
492DEFUN(cfg_frgre_enable, cfg_frgre_enable_cmd,
493 "encapsulation framerelay-gre enabled (1|0)",
494 ENCAPS_STR "NS over Frame Relay over GRE Encapsulation\n"
495 "Enable or disable Frame Relay over GRE\n"
496 "Enable\n" "Disable\n")
497{
498 int enabled = atoi(argv[0]);
499
500 vty_nsi->frgre.enabled = enabled;
501
502 return CMD_SUCCESS;
503}
504
Harald Welte43f3b692010-05-14 19:36:59 +0200505DEFUN(nsvc_nsei, nsvc_nsei_cmd,
Jacob Erlbeck687b6902013-10-24 01:33:19 +0200506 "nsvc (nsei|nsvci) <0-65535> (block|unblock|reset)",
Harald Welte43f3b692010-05-14 19:36:59 +0200507 "Perform an operation on a NSVC\n"
Holger Hans Peter Freyther887934e2011-11-05 15:14:59 +0100508 "NSEI to identify NS-VC Identifier (NS-VCI)\n"
Jacob Erlbeck687b6902013-10-24 01:33:19 +0200509 "NS-VC Identifier (NS-VCI)\n"
Holger Hans Peter Freyther887934e2011-11-05 15:14:59 +0100510 "The NSEI\n"
Harald Welte43f3b692010-05-14 19:36:59 +0200511 "Initiate BLOCK procedure\n"
512 "Initiate UNBLOCK procedure\n"
513 "Initiate RESET procedure\n")
514{
Jacob Erlbeck687b6902013-10-24 01:33:19 +0200515 const char *id_type = argv[0];
516 uint16_t id = atoi(argv[1]);
517 const char *operation = argv[2];
Harald Welte43f3b692010-05-14 19:36:59 +0200518 struct gprs_nsvc *nsvc;
519
Jacob Erlbeck687b6902013-10-24 01:33:19 +0200520 if (!strcmp(id_type, "nsei"))
521 nsvc = gprs_nsvc_by_nsei(vty_nsi, id);
522 else if (!strcmp(id_type, "nsvci"))
523 nsvc = gprs_nsvc_by_nsvci(vty_nsi, id);
524 else {
525 vty_out(vty, "%%No such id_type '%s'%s", id_type, VTY_NEWLINE);
526 return CMD_WARNING;
527 }
528
Harald Welte43f3b692010-05-14 19:36:59 +0200529 if (!nsvc) {
Jacob Erlbeck687b6902013-10-24 01:33:19 +0200530 vty_out(vty, "No such %s (%u)%s", id_type, id, VTY_NEWLINE);
Harald Welte43f3b692010-05-14 19:36:59 +0200531 return CMD_WARNING;
532 }
533
534 if (!strcmp(operation, "block"))
535 gprs_ns_tx_block(nsvc, NS_CAUSE_OM_INTERVENTION);
536 else if (!strcmp(operation, "unblock"))
537 gprs_ns_tx_unblock(nsvc);
538 else if (!strcmp(operation, "reset"))
539 gprs_nsvc_reset(nsvc, NS_CAUSE_OM_INTERVENTION);
540 else
541 return CMD_WARNING;
542
543 return CMD_SUCCESS;
544}
545
Harald Welte91f7f4b2010-05-15 23:52:02 +0200546DEFUN(logging_fltr_nsvc,
547 logging_fltr_nsvc_cmd,
548 "logging filter nsvc (nsei|nsvci) <0-65535>",
Harald Welte6703bf72010-05-16 00:00:04 +0200549 LOGGING_STR FILTER_STR
Harald Welte91f7f4b2010-05-15 23:52:02 +0200550 "Filter based on NS Virtual Connection\n"
551 "Identify NS-VC by NSEI\n"
552 "Identify NS-VC by NSVCI\n"
553 "Numeric identifier\n")
554{
Harald Welte43ae94e2011-02-18 21:10:05 +0100555 struct log_target *tgt = osmo_log_vty2tgt(vty);
Harald Welte91f7f4b2010-05-15 23:52:02 +0200556 struct gprs_nsvc *nsvc;
557 uint16_t id = atoi(argv[1]);
558
Harald Welte43ae94e2011-02-18 21:10:05 +0100559 if (!tgt)
Harald Welte91f7f4b2010-05-15 23:52:02 +0200560 return CMD_WARNING;
Harald Welte91f7f4b2010-05-15 23:52:02 +0200561
562 if (!strcmp(argv[0], "nsei"))
Harald Weltef5430362012-06-17 12:25:53 +0800563 nsvc = gprs_nsvc_by_nsei(vty_nsi, id);
Harald Welte91f7f4b2010-05-15 23:52:02 +0200564 else
Harald Weltef5430362012-06-17 12:25:53 +0800565 nsvc = gprs_nsvc_by_nsvci(vty_nsi, id);
Harald Welte91f7f4b2010-05-15 23:52:02 +0200566
567 if (!nsvc) {
568 vty_out(vty, "No NS-VC by that identifier%s", VTY_NEWLINE);
569 return CMD_WARNING;
570 }
571
Harald Welte43ae94e2011-02-18 21:10:05 +0100572 log_set_nsvc_filter(tgt, nsvc);
Harald Welte91f7f4b2010-05-15 23:52:02 +0200573 return CMD_SUCCESS;
574}
Harald Welte43f3b692010-05-14 19:36:59 +0200575
Harald Welte144e0292010-05-13 11:45:07 +0200576int gprs_ns_vty_init(struct gprs_ns_inst *nsi)
577{
Neels Hofmeyrc32bfd52017-01-12 22:32:19 +0100578 static bool vty_elements_installed = false;
579
Harald Welte144e0292010-05-13 11:45:07 +0200580 vty_nsi = nsi;
581
Neels Hofmeyrc32bfd52017-01-12 22:32:19 +0100582 /* Regression test code may call this function repeatedly, so make sure
583 * that VTY elements are not duplicated, which would assert. */
584 if (vty_elements_installed)
585 return 0;
586 vty_elements_installed = true;
587
Harald Welte144e0292010-05-13 11:45:07 +0200588 install_element_ve(&show_ns_cmd);
Harald Welteaf1d4cb2010-05-13 12:32:30 +0200589 install_element_ve(&show_ns_stats_cmd);
Harald Welte92883342010-05-15 23:04:03 +0200590 install_element_ve(&show_nse_cmd);
Harald Welte91f7f4b2010-05-15 23:52:02 +0200591 install_element_ve(&logging_fltr_nsvc_cmd);
Harald Welte144e0292010-05-13 11:45:07 +0200592
Harald Welte43ae94e2011-02-18 21:10:05 +0100593 install_element(CFG_LOG_NODE, &logging_fltr_nsvc_cmd);
594
Harald Welte144e0292010-05-13 11:45:07 +0200595 install_element(CONFIG_NODE, &cfg_ns_cmd);
596 install_node(&ns_node, config_write_ns);
Harald Welte4f5883b2012-06-16 16:54:06 +0800597 install_default(L_NS_NODE);
598 install_element(L_NS_NODE, &libgb_exit_cmd);
599 install_element(L_NS_NODE, &libgb_end_cmd);
600 install_element(L_NS_NODE, &cfg_nse_nsvci_cmd);
601 install_element(L_NS_NODE, &cfg_nse_remoteip_cmd);
602 install_element(L_NS_NODE, &cfg_nse_remoteport_cmd);
603 install_element(L_NS_NODE, &cfg_nse_fr_dlci_cmd);
604 install_element(L_NS_NODE, &cfg_nse_encaps_cmd);
605 install_element(L_NS_NODE, &cfg_nse_remoterole_cmd);
606 install_element(L_NS_NODE, &cfg_no_nse_cmd);
607 install_element(L_NS_NODE, &cfg_ns_timer_cmd);
608 install_element(L_NS_NODE, &cfg_nsip_local_ip_cmd);
609 install_element(L_NS_NODE, &cfg_nsip_local_port_cmd);
Holger Hans Peter Freyther2c3393d2013-03-25 11:59:58 +0100610 install_element(L_NS_NODE, &cfg_nsip_dscp_cmd);
Harald Welte4f5883b2012-06-16 16:54:06 +0800611 install_element(L_NS_NODE, &cfg_frgre_enable_cmd);
612 install_element(L_NS_NODE, &cfg_frgre_local_ip_cmd);
Harald Welte144e0292010-05-13 11:45:07 +0200613
Harald Welte43f3b692010-05-14 19:36:59 +0200614 install_element(ENABLE_NODE, &nsvc_nsei_cmd);
615
Harald Welte144e0292010-05-13 11:45:07 +0200616 return 0;
617}