blob: e8ef2a210169f2a75bc6e6e7b841d8c732f44691 [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>
Max37f465e2017-10-24 16:04:55 +020038#include <osmocom/core/socket.h>
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
Maxcbf5cdf2017-10-24 18:18:55 +0200159static void dump_nse(struct vty *vty, const struct gprs_nsvc *nsvc, bool stats, bool persistent_only)
Harald Welte92883342010-05-15 23:04:03 +0200160{
Max296511b2017-10-24 18:05:35 +0200161 if (persistent_only)
162 if (!nsvc->persistent)
163 return;
164
Max37f465e2017-10-24 16:04:55 +0200165 vty_out(vty, "NSEI %5u, NS-VC %5u, %5s %9s, ",
Harald Welte92883342010-05-15 23:04:03 +0200166 nsvc->nsei, nsvc->nsvci,
Max4ce24c42017-10-23 15:09:23 +0200167 NS_DESC_A(nsvc->state),
Max37f465e2017-10-24 16:04:55 +0200168 NS_DESC_B(nsvc->state));
169
170 if (nsvc->ll == GPRS_NS_LL_UDP) {
171 char local[INET6_ADDRSTRLEN + 1];
172 int rc = osmo_sock_local_ip((char *)&local, inet_ntoa(nsvc->ip.bts_addr.sin_addr));
173 vty_out(vty, "%s:%u ", (rc < 0) ? "unknown" : local, nsvc->nsi->nsip.local_port);
174 }
175
176 vty_out(vty, "Remote: %-4s, %5s %9s, %s ",
Max32f99712017-10-20 12:27:49 +0200177 nsvc->remote_end_is_sgsn ? "SGSN" : "BSS",
Max4ce24c42017-10-23 15:09:23 +0200178 NS_DESC_A(nsvc->remote_state),
Max37f465e2017-10-24 16:04:55 +0200179 NS_DESC_B(nsvc->remote_state), gprs_ns_ll_str(nsvc));
Max95308592017-10-24 15:54:28 +0200180
Max37f465e2017-10-24 16:04:55 +0200181 vty_out(vty, "%s%s", nsvc->ll == GPRS_NS_LL_UDP ? "UDP" : "FR-GRE", VTY_NEWLINE);
Max95308592017-10-24 15:54:28 +0200182
Jacob Erlbeck0a1400f2015-10-06 15:23:25 +0200183 if (stats) {
Harald Welte92883342010-05-15 23:04:03 +0200184 vty_out_rate_ctr_group(vty, " ", nsvc->ctrg);
Jacob Erlbeck0a1400f2015-10-06 15:23:25 +0200185 vty_out_stat_item_group(vty, " ", nsvc->statg);
186 }
Harald Welte92883342010-05-15 23:04:03 +0200187}
188
Maxcbf5cdf2017-10-24 18:18:55 +0200189static void dump_ns(struct vty *vty, const struct gprs_ns_inst *nsi, bool stats, bool persistent_only)
Harald Welte144e0292010-05-13 11:45:07 +0200190{
Harald Welte144e0292010-05-13 11:45:07 +0200191 struct gprs_nsvc *nsvc;
Harald Welte7fb05232010-05-19 15:09:09 +0200192 struct in_addr ia;
193
Harald Weltebfe62e52017-05-15 12:48:30 +0200194 ia.s_addr = osmo_htonl(vty_nsi->nsip.local_ip);
Harald Weltece4ccbc2010-05-19 17:02:57 +0200195 vty_out(vty, "Encapsulation NS-UDP-IP Local IP: %s, UDP Port: %u%s",
Harald Welte7fb05232010-05-19 15:09:09 +0200196 inet_ntoa(ia), vty_nsi->nsip.local_port, VTY_NEWLINE);
197
Harald Weltebfe62e52017-05-15 12:48:30 +0200198 ia.s_addr = osmo_htonl(vty_nsi->frgre.local_ip);
Harald Weltece4ccbc2010-05-19 17:02:57 +0200199 vty_out(vty, "Encapsulation NS-FR-GRE-IP Local IP: %s%s",
Harald Welte7fb05232010-05-19 15:09:09 +0200200 inet_ntoa(ia), VTY_NEWLINE);
Harald Welte144e0292010-05-13 11:45:07 +0200201
202 llist_for_each_entry(nsvc, &nsi->gprs_nsvcs, list) {
Harald Weltedd1c83c2010-05-13 13:58:08 +0200203 if (nsvc == nsi->unknown_nsvc)
204 continue;
Max296511b2017-10-24 18:05:35 +0200205 dump_nse(vty, nsvc, stats, persistent_only);
Harald Welte144e0292010-05-13 11:45:07 +0200206 }
Harald Welteaf1d4cb2010-05-13 12:32:30 +0200207}
Harald Welte144e0292010-05-13 11:45:07 +0200208
Harald Welteaf1d4cb2010-05-13 12:32:30 +0200209DEFUN(show_ns, show_ns_cmd, "show ns",
210 SHOW_STR "Display information about the NS protocol")
211{
212 struct gprs_ns_inst *nsi = vty_nsi;
Max296511b2017-10-24 18:05:35 +0200213 dump_ns(vty, nsi, false, false);
Harald Welte144e0292010-05-13 11:45:07 +0200214 return CMD_SUCCESS;
215}
216
Harald Welteaf1d4cb2010-05-13 12:32:30 +0200217DEFUN(show_ns_stats, show_ns_stats_cmd, "show ns stats",
218 SHOW_STR
219 "Display information about the NS protocol\n"
220 "Include statistics\n")
221{
222 struct gprs_ns_inst *nsi = vty_nsi;
Max296511b2017-10-24 18:05:35 +0200223 dump_ns(vty, nsi, true, false);
224 return CMD_SUCCESS;
225}
226
227DEFUN(show_ns_pers, show_ns_pers_cmd, "show ns persistent",
228 SHOW_STR
229 "Display information about the NS protocol\n"
230 "Show only persistent NS\n")
231{
232 struct gprs_ns_inst *nsi = vty_nsi;
233 dump_ns(vty, nsi, true, true);
Harald Welteaf1d4cb2010-05-13 12:32:30 +0200234 return CMD_SUCCESS;
235}
Harald Welte144e0292010-05-13 11:45:07 +0200236
Harald Welte92883342010-05-15 23:04:03 +0200237DEFUN(show_nse, show_nse_cmd, "show ns (nsei|nsvc) <0-65535> [stats]",
238 SHOW_STR "Display information about the NS protocol\n"
239 "Select one NSE by its NSE Identifier\n"
240 "Select one NSE by its NS-VC Identifier\n"
241 "The Identifier of selected type\n"
242 "Include Statistics\n")
243{
244 struct gprs_ns_inst *nsi = vty_nsi;
245 struct gprs_nsvc *nsvc;
246 uint16_t id = atoi(argv[1]);
Max296511b2017-10-24 18:05:35 +0200247 bool show_stats = false;
Harald Welte92883342010-05-15 23:04:03 +0200248
249 if (!strcmp(argv[0], "nsei"))
Harald Weltef5430362012-06-17 12:25:53 +0800250 nsvc = gprs_nsvc_by_nsei(nsi, id);
Harald Welte92883342010-05-15 23:04:03 +0200251 else
Harald Weltef5430362012-06-17 12:25:53 +0800252 nsvc = gprs_nsvc_by_nsvci(nsi, id);
Harald Welte92883342010-05-15 23:04:03 +0200253
254 if (!nsvc) {
255 vty_out(vty, "No such NS Entity%s", VTY_NEWLINE);
256 return CMD_WARNING;
257 }
258
259 if (argc >= 3)
Max296511b2017-10-24 18:05:35 +0200260 show_stats = true;
Harald Welte92883342010-05-15 23:04:03 +0200261
Max296511b2017-10-24 18:05:35 +0200262 dump_nse(vty, nsvc, show_stats, false);
Harald Welte92883342010-05-15 23:04:03 +0200263 return CMD_SUCCESS;
264}
265
Harald Welte24133c32010-05-15 23:06:26 +0200266#define NSE_CMD_STR "Persistent NS Entity\n" "NS Entity ID (NSEI)\n"
Harald Welte144e0292010-05-13 11:45:07 +0200267
268DEFUN(cfg_nse_nsvc, cfg_nse_nsvci_cmd,
269 "nse <0-65535> nsvci <0-65534>",
270 NSE_CMD_STR
271 "NS Virtual Connection\n"
272 "NS Virtual Connection ID (NSVCI)\n"
273 )
274{
275 uint16_t nsei = atoi(argv[0]);
276 uint16_t nsvci = atoi(argv[1]);
277 struct gprs_nsvc *nsvc;
278
Harald Weltef5430362012-06-17 12:25:53 +0800279 nsvc = gprs_nsvc_by_nsei(vty_nsi, nsei);
Harald Welte144e0292010-05-13 11:45:07 +0200280 if (!nsvc) {
Harald Weltef5430362012-06-17 12:25:53 +0800281 nsvc = gprs_nsvc_create(vty_nsi, nsvci);
Harald Welte144e0292010-05-13 11:45:07 +0200282 nsvc->nsei = nsei;
283 }
284 nsvc->nsvci = nsvci;
285 /* All NSVCs that are explicitly configured by VTY are
286 * marked as persistent so we can write them to the config
287 * file at some later point */
288 nsvc->persistent = 1;
289
290 return CMD_SUCCESS;
291}
292
293DEFUN(cfg_nse_remoteip, cfg_nse_remoteip_cmd,
294 "nse <0-65535> remote-ip A.B.C.D",
295 NSE_CMD_STR
296 "Remote IP Address\n"
297 "Remote IP Address\n")
298{
299 uint16_t nsei = atoi(argv[0]);
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 inet_aton(argv[1], &nsvc->ip.bts_addr.sin_addr);
308
309 return CMD_SUCCESS;
310
311}
312
313DEFUN(cfg_nse_remoteport, cfg_nse_remoteport_cmd,
314 "nse <0-65535> remote-port <0-65535>",
315 NSE_CMD_STR
316 "Remote UDP Port\n"
317 "Remote UDP Port Number\n")
318{
319 uint16_t nsei = atoi(argv[0]);
320 uint16_t port = atoi(argv[1]);
321 struct gprs_nsvc *nsvc;
322
Harald Weltef5430362012-06-17 12:25:53 +0800323 nsvc = gprs_nsvc_by_nsei(vty_nsi, nsei);
Harald Welte144e0292010-05-13 11:45:07 +0200324 if (!nsvc) {
325 vty_out(vty, "No such NSE (%u)%s", nsei, VTY_NEWLINE);
326 return CMD_WARNING;
327 }
328
Harald Welteb3ee2652010-05-19 14:38:50 +0200329 if (nsvc->ll != GPRS_NS_LL_UDP) {
330 vty_out(vty, "Cannot set UDP Port on non-UDP NSE%s",
331 VTY_NEWLINE);
332 return CMD_WARNING;
333 }
334
Harald Weltebfe62e52017-05-15 12:48:30 +0200335 nsvc->ip.bts_addr.sin_port = osmo_htons(port);
Harald Welte144e0292010-05-13 11:45:07 +0200336
337 return CMD_SUCCESS;
338}
339
Harald Welteb3ee2652010-05-19 14:38:50 +0200340DEFUN(cfg_nse_fr_dlci, cfg_nse_fr_dlci_cmd,
Harald Welte188bda62010-05-28 14:11:49 +0200341 "nse <0-65535> fr-dlci <16-1007>",
Harald Welteb3ee2652010-05-19 14:38:50 +0200342 NSE_CMD_STR
343 "Frame Relay DLCI\n"
344 "Frame Relay DLCI Number\n")
345{
346 uint16_t nsei = atoi(argv[0]);
347 uint16_t dlci = atoi(argv[1]);
348 struct gprs_nsvc *nsvc;
349
Harald Weltef5430362012-06-17 12:25:53 +0800350 nsvc = gprs_nsvc_by_nsei(vty_nsi, nsei);
Harald Welteb3ee2652010-05-19 14:38:50 +0200351 if (!nsvc) {
352 vty_out(vty, "No such NSE (%u)%s", nsei, VTY_NEWLINE);
353 return CMD_WARNING;
354 }
355
356 if (nsvc->ll != GPRS_NS_LL_FR_GRE) {
357 vty_out(vty, "Cannot set FR DLCI on non-FR NSE%s",
358 VTY_NEWLINE);
359 return CMD_WARNING;
360 }
361
Harald Weltebfe62e52017-05-15 12:48:30 +0200362 nsvc->frgre.bts_addr.sin_port = osmo_htons(dlci);
Harald Welteb3ee2652010-05-19 14:38:50 +0200363
364 return CMD_SUCCESS;
365}
366
367DEFUN(cfg_nse_encaps, cfg_nse_encaps_cmd,
368 "nse <0-65535> encapsulation (udp|framerelay-gre)",
369 NSE_CMD_STR
370 "Encapsulation for NS\n"
371 "UDP/IP Encapsulation\n" "Frame-Relay/GRE/IP Encapsulation\n")
372{
373 uint16_t nsei = atoi(argv[0]);
374 struct gprs_nsvc *nsvc;
375
Harald Weltef5430362012-06-17 12:25:53 +0800376 nsvc = gprs_nsvc_by_nsei(vty_nsi, nsei);
Harald Welteb3ee2652010-05-19 14:38:50 +0200377 if (!nsvc) {
378 vty_out(vty, "No such NSE (%u)%s", nsei, VTY_NEWLINE);
379 return CMD_WARNING;
380 }
381
382 if (!strcmp(argv[1], "udp"))
383 nsvc->ll = GPRS_NS_LL_UDP;
384 else
385 nsvc->ll = GPRS_NS_LL_FR_GRE;
386
387 return CMD_SUCCESS;
388}
389
390
Harald Welte144e0292010-05-13 11:45:07 +0200391DEFUN(cfg_nse_remoterole, cfg_nse_remoterole_cmd,
392 "nse <0-65535> remote-role (sgsn|bss)",
393 NSE_CMD_STR
394 "Remote NSE Role\n"
395 "Remote Peer is SGSN\n"
396 "Remote Peer is BSS\n")
397{
398 uint16_t nsei = atoi(argv[0]);
399 struct gprs_nsvc *nsvc;
400
Harald Weltef5430362012-06-17 12:25:53 +0800401 nsvc = gprs_nsvc_by_nsei(vty_nsi, nsei);
Harald Welte144e0292010-05-13 11:45:07 +0200402 if (!nsvc) {
403 vty_out(vty, "No such NSE (%u)%s", nsei, VTY_NEWLINE);
404 return CMD_WARNING;
405 }
406
407 if (!strcmp(argv[1], "sgsn"))
408 nsvc->remote_end_is_sgsn = 1;
409 else
410 nsvc->remote_end_is_sgsn = 0;
411
412 return CMD_SUCCESS;
413}
414
415DEFUN(cfg_no_nse, cfg_no_nse_cmd,
416 "no nse <0-65535>",
Harald Welte24133c32010-05-15 23:06:26 +0200417 "Delete Persistent NS Entity\n"
Harald Welte144e0292010-05-13 11:45:07 +0200418 "Delete " NSE_CMD_STR)
419{
420 uint16_t nsei = atoi(argv[0]);
421 struct gprs_nsvc *nsvc;
422
Harald Weltef5430362012-06-17 12:25:53 +0800423 nsvc = gprs_nsvc_by_nsei(vty_nsi, nsei);
Harald Welte144e0292010-05-13 11:45:07 +0200424 if (!nsvc) {
425 vty_out(vty, "No such NSE (%u)%s", nsei, VTY_NEWLINE);
426 return CMD_WARNING;
427 }
428
Harald Welte24133c32010-05-15 23:06:26 +0200429 if (!nsvc->persistent) {
430 vty_out(vty, "NSEI %u is not a persistent NSE%s",
431 nsei, VTY_NEWLINE);
432 return CMD_WARNING;
433 }
434
435 nsvc->persistent = 0;
Harald Welte144e0292010-05-13 11:45:07 +0200436
437 return CMD_SUCCESS;
438}
439
440DEFUN(cfg_ns_timer, cfg_ns_timer_cmd,
441 "timer " NS_TIMERS " <0-65535>",
442 "Network Service Timer\n"
443 NS_TIMERS_HELP "Timer Value\n")
444{
445 int idx = get_string_value(gprs_ns_timer_strs, argv[0]);
446 int val = atoi(argv[1]);
447
448 if (idx < 0 || idx >= ARRAY_SIZE(vty_nsi->timeout))
449 return CMD_WARNING;
450
451 vty_nsi->timeout[idx] = val;
452
453 return CMD_SUCCESS;
454}
455
Harald Welte7fb05232010-05-19 15:09:09 +0200456#define ENCAPS_STR "NS encapsulation options\n"
457
458DEFUN(cfg_nsip_local_ip, cfg_nsip_local_ip_cmd,
459 "encapsulation udp local-ip A.B.C.D",
460 ENCAPS_STR "NS over UDP Encapsulation\n"
461 "Set the IP address on which we listen for NS/UDP\n"
462 "IP Address\n")
463{
464 struct in_addr ia;
465
466 inet_aton(argv[0], &ia);
Harald Weltebfe62e52017-05-15 12:48:30 +0200467 vty_nsi->nsip.local_ip = osmo_ntohl(ia.s_addr);
Harald Welte7fb05232010-05-19 15:09:09 +0200468
469 return CMD_SUCCESS;
470}
471
472DEFUN(cfg_nsip_local_port, cfg_nsip_local_port_cmd,
473 "encapsulation udp local-port <0-65535>",
474 ENCAPS_STR "NS over UDP Encapsulation\n"
475 "Set the UDP port on which we listen for NS/UDP\n"
476 "UDP port number\n")
477{
478 unsigned int port = atoi(argv[0]);
479
480 vty_nsi->nsip.local_port = port;
481
482 return CMD_SUCCESS;
483}
484
Holger Hans Peter Freyther2c3393d2013-03-25 11:59:58 +0100485DEFUN(cfg_nsip_dscp, cfg_nsip_dscp_cmd,
486 "encapsulation udp dscp <0-255>",
487 ENCAPS_STR "NS over UDP Encapsulation\n"
488 "Set DSCP/TOS on the UDP socket\n" "DSCP Value\n")
489{
490 int dscp = atoi(argv[0]);
491 vty_nsi->nsip.dscp = dscp;
492 return CMD_SUCCESS;
493}
494
Harald Welte7fb05232010-05-19 15:09:09 +0200495DEFUN(cfg_frgre_local_ip, cfg_frgre_local_ip_cmd,
496 "encapsulation framerelay-gre local-ip A.B.C.D",
497 ENCAPS_STR "NS over Frame Relay over GRE Encapsulation\n"
498 "Set the IP address on which we listen for NS/FR/GRE\n"
499 "IP Address\n")
500{
501 struct in_addr ia;
502
503 if (!vty_nsi->frgre.enabled) {
504 vty_out(vty, "FR/GRE is not enabled%s", VTY_NEWLINE);
505 return CMD_WARNING;
506 }
507 inet_aton(argv[0], &ia);
Harald Weltebfe62e52017-05-15 12:48:30 +0200508 vty_nsi->frgre.local_ip = osmo_ntohl(ia.s_addr);
Harald Welte7fb05232010-05-19 15:09:09 +0200509
510 return CMD_SUCCESS;
511}
512
513DEFUN(cfg_frgre_enable, cfg_frgre_enable_cmd,
514 "encapsulation framerelay-gre enabled (1|0)",
515 ENCAPS_STR "NS over Frame Relay over GRE Encapsulation\n"
516 "Enable or disable Frame Relay over GRE\n"
517 "Enable\n" "Disable\n")
518{
519 int enabled = atoi(argv[0]);
520
521 vty_nsi->frgre.enabled = enabled;
522
523 return CMD_SUCCESS;
524}
525
Harald Welte43f3b692010-05-14 19:36:59 +0200526DEFUN(nsvc_nsei, nsvc_nsei_cmd,
Jacob Erlbeck687b6902013-10-24 01:33:19 +0200527 "nsvc (nsei|nsvci) <0-65535> (block|unblock|reset)",
Harald Welte43f3b692010-05-14 19:36:59 +0200528 "Perform an operation on a NSVC\n"
Holger Hans Peter Freyther887934e2011-11-05 15:14:59 +0100529 "NSEI to identify NS-VC Identifier (NS-VCI)\n"
Jacob Erlbeck687b6902013-10-24 01:33:19 +0200530 "NS-VC Identifier (NS-VCI)\n"
Holger Hans Peter Freyther887934e2011-11-05 15:14:59 +0100531 "The NSEI\n"
Harald Welte43f3b692010-05-14 19:36:59 +0200532 "Initiate BLOCK procedure\n"
533 "Initiate UNBLOCK procedure\n"
534 "Initiate RESET procedure\n")
535{
Jacob Erlbeck687b6902013-10-24 01:33:19 +0200536 const char *id_type = argv[0];
537 uint16_t id = atoi(argv[1]);
538 const char *operation = argv[2];
Harald Welte43f3b692010-05-14 19:36:59 +0200539 struct gprs_nsvc *nsvc;
540
Jacob Erlbeck687b6902013-10-24 01:33:19 +0200541 if (!strcmp(id_type, "nsei"))
542 nsvc = gprs_nsvc_by_nsei(vty_nsi, id);
543 else if (!strcmp(id_type, "nsvci"))
544 nsvc = gprs_nsvc_by_nsvci(vty_nsi, id);
545 else {
546 vty_out(vty, "%%No such id_type '%s'%s", id_type, VTY_NEWLINE);
547 return CMD_WARNING;
548 }
549
Harald Welte43f3b692010-05-14 19:36:59 +0200550 if (!nsvc) {
Jacob Erlbeck687b6902013-10-24 01:33:19 +0200551 vty_out(vty, "No such %s (%u)%s", id_type, id, VTY_NEWLINE);
Harald Welte43f3b692010-05-14 19:36:59 +0200552 return CMD_WARNING;
553 }
554
555 if (!strcmp(operation, "block"))
556 gprs_ns_tx_block(nsvc, NS_CAUSE_OM_INTERVENTION);
557 else if (!strcmp(operation, "unblock"))
558 gprs_ns_tx_unblock(nsvc);
559 else if (!strcmp(operation, "reset"))
560 gprs_nsvc_reset(nsvc, NS_CAUSE_OM_INTERVENTION);
561 else
562 return CMD_WARNING;
563
564 return CMD_SUCCESS;
565}
566
Harald Welte91f7f4b2010-05-15 23:52:02 +0200567DEFUN(logging_fltr_nsvc,
568 logging_fltr_nsvc_cmd,
569 "logging filter nsvc (nsei|nsvci) <0-65535>",
Harald Welte6703bf72010-05-16 00:00:04 +0200570 LOGGING_STR FILTER_STR
Harald Welte91f7f4b2010-05-15 23:52:02 +0200571 "Filter based on NS Virtual Connection\n"
572 "Identify NS-VC by NSEI\n"
573 "Identify NS-VC by NSVCI\n"
574 "Numeric identifier\n")
575{
Harald Welte43ae94e2011-02-18 21:10:05 +0100576 struct log_target *tgt = osmo_log_vty2tgt(vty);
Harald Welte91f7f4b2010-05-15 23:52:02 +0200577 struct gprs_nsvc *nsvc;
578 uint16_t id = atoi(argv[1]);
579
Harald Welte43ae94e2011-02-18 21:10:05 +0100580 if (!tgt)
Harald Welte91f7f4b2010-05-15 23:52:02 +0200581 return CMD_WARNING;
Harald Welte91f7f4b2010-05-15 23:52:02 +0200582
583 if (!strcmp(argv[0], "nsei"))
Harald Weltef5430362012-06-17 12:25:53 +0800584 nsvc = gprs_nsvc_by_nsei(vty_nsi, id);
Harald Welte91f7f4b2010-05-15 23:52:02 +0200585 else
Harald Weltef5430362012-06-17 12:25:53 +0800586 nsvc = gprs_nsvc_by_nsvci(vty_nsi, id);
Harald Welte91f7f4b2010-05-15 23:52:02 +0200587
588 if (!nsvc) {
589 vty_out(vty, "No NS-VC by that identifier%s", VTY_NEWLINE);
590 return CMD_WARNING;
591 }
592
Harald Welte43ae94e2011-02-18 21:10:05 +0100593 log_set_nsvc_filter(tgt, nsvc);
Harald Welte91f7f4b2010-05-15 23:52:02 +0200594 return CMD_SUCCESS;
595}
Harald Welte43f3b692010-05-14 19:36:59 +0200596
Harald Welte144e0292010-05-13 11:45:07 +0200597int gprs_ns_vty_init(struct gprs_ns_inst *nsi)
598{
Neels Hofmeyrc32bfd52017-01-12 22:32:19 +0100599 static bool vty_elements_installed = false;
600
Harald Welte144e0292010-05-13 11:45:07 +0200601 vty_nsi = nsi;
602
Neels Hofmeyrc32bfd52017-01-12 22:32:19 +0100603 /* Regression test code may call this function repeatedly, so make sure
604 * that VTY elements are not duplicated, which would assert. */
605 if (vty_elements_installed)
606 return 0;
607 vty_elements_installed = true;
608
Harald Welte144e0292010-05-13 11:45:07 +0200609 install_element_ve(&show_ns_cmd);
Harald Welteaf1d4cb2010-05-13 12:32:30 +0200610 install_element_ve(&show_ns_stats_cmd);
Max296511b2017-10-24 18:05:35 +0200611 install_element_ve(&show_ns_pers_cmd);
Harald Welte92883342010-05-15 23:04:03 +0200612 install_element_ve(&show_nse_cmd);
Harald Welte91f7f4b2010-05-15 23:52:02 +0200613 install_element_ve(&logging_fltr_nsvc_cmd);
Harald Welte144e0292010-05-13 11:45:07 +0200614
Harald Welte43ae94e2011-02-18 21:10:05 +0100615 install_element(CFG_LOG_NODE, &logging_fltr_nsvc_cmd);
616
Harald Welte144e0292010-05-13 11:45:07 +0200617 install_element(CONFIG_NODE, &cfg_ns_cmd);
618 install_node(&ns_node, config_write_ns);
Harald Welte4f5883b2012-06-16 16:54:06 +0800619 install_element(L_NS_NODE, &cfg_nse_nsvci_cmd);
620 install_element(L_NS_NODE, &cfg_nse_remoteip_cmd);
621 install_element(L_NS_NODE, &cfg_nse_remoteport_cmd);
622 install_element(L_NS_NODE, &cfg_nse_fr_dlci_cmd);
623 install_element(L_NS_NODE, &cfg_nse_encaps_cmd);
624 install_element(L_NS_NODE, &cfg_nse_remoterole_cmd);
625 install_element(L_NS_NODE, &cfg_no_nse_cmd);
626 install_element(L_NS_NODE, &cfg_ns_timer_cmd);
627 install_element(L_NS_NODE, &cfg_nsip_local_ip_cmd);
628 install_element(L_NS_NODE, &cfg_nsip_local_port_cmd);
Holger Hans Peter Freyther2c3393d2013-03-25 11:59:58 +0100629 install_element(L_NS_NODE, &cfg_nsip_dscp_cmd);
Harald Welte4f5883b2012-06-16 16:54:06 +0800630 install_element(L_NS_NODE, &cfg_frgre_enable_cmd);
631 install_element(L_NS_NODE, &cfg_frgre_local_ip_cmd);
Harald Welte144e0292010-05-13 11:45:07 +0200632
Harald Welte43f3b692010-05-14 19:36:59 +0200633 install_element(ENABLE_NODE, &nsvc_nsei_cmd);
634
Harald Welte144e0292010-05-13 11:45:07 +0200635 return 0;
636}