blob: 4ed4fefb10f7b653905ccd7fa6368c944c1c1606 [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{
Max32f99712017-10-20 12:27:49 +0200161 vty_out(vty, "NSEI %5u, NS-VC %5u, %5s %9s, Remote: %-4s, %5s %9s",
Harald Welte92883342010-05-15 23:04:03 +0200162 nsvc->nsei, nsvc->nsvci,
Max4ce24c42017-10-23 15:09:23 +0200163 NS_DESC_A(nsvc->state),
164 NS_DESC_B(nsvc->state),
Max32f99712017-10-20 12:27:49 +0200165 nsvc->remote_end_is_sgsn ? "SGSN" : "BSS",
Max4ce24c42017-10-23 15:09:23 +0200166 NS_DESC_A(nsvc->remote_state),
167 NS_DESC_B(nsvc->remote_state));
Max95308592017-10-24 15:54:28 +0200168
169 vty_out(vty, ", %s %s%s",
170 nsvc->ll == GPRS_NS_LL_UDP ? "UDP " : "FR-GRE",
171 gprs_ns_ll_str(nsvc), VTY_NEWLINE);
172
Jacob Erlbeck0a1400f2015-10-06 15:23:25 +0200173 if (stats) {
Harald Welte92883342010-05-15 23:04:03 +0200174 vty_out_rate_ctr_group(vty, " ", nsvc->ctrg);
Jacob Erlbeck0a1400f2015-10-06 15:23:25 +0200175 vty_out_stat_item_group(vty, " ", nsvc->statg);
176 }
Harald Welte92883342010-05-15 23:04:03 +0200177}
178
Harald Welteaf1d4cb2010-05-13 12:32:30 +0200179static void dump_ns(struct vty *vty, struct gprs_ns_inst *nsi, int stats)
Harald Welte144e0292010-05-13 11:45:07 +0200180{
Harald Welte144e0292010-05-13 11:45:07 +0200181 struct gprs_nsvc *nsvc;
Harald Welte7fb05232010-05-19 15:09:09 +0200182 struct in_addr ia;
183
Harald Weltebfe62e52017-05-15 12:48:30 +0200184 ia.s_addr = osmo_htonl(vty_nsi->nsip.local_ip);
Harald Weltece4ccbc2010-05-19 17:02:57 +0200185 vty_out(vty, "Encapsulation NS-UDP-IP Local IP: %s, UDP Port: %u%s",
Harald Welte7fb05232010-05-19 15:09:09 +0200186 inet_ntoa(ia), vty_nsi->nsip.local_port, VTY_NEWLINE);
187
Harald Weltebfe62e52017-05-15 12:48:30 +0200188 ia.s_addr = osmo_htonl(vty_nsi->frgre.local_ip);
Harald Weltece4ccbc2010-05-19 17:02:57 +0200189 vty_out(vty, "Encapsulation NS-FR-GRE-IP Local IP: %s%s",
Harald Welte7fb05232010-05-19 15:09:09 +0200190 inet_ntoa(ia), VTY_NEWLINE);
Harald Welte144e0292010-05-13 11:45:07 +0200191
192 llist_for_each_entry(nsvc, &nsi->gprs_nsvcs, list) {
Harald Weltedd1c83c2010-05-13 13:58:08 +0200193 if (nsvc == nsi->unknown_nsvc)
194 continue;
Harald Welte92883342010-05-15 23:04:03 +0200195 dump_nse(vty, nsvc, stats);
Harald Welte144e0292010-05-13 11:45:07 +0200196 }
Harald Welteaf1d4cb2010-05-13 12:32:30 +0200197}
Harald Welte144e0292010-05-13 11:45:07 +0200198
Harald Welteaf1d4cb2010-05-13 12:32:30 +0200199DEFUN(show_ns, show_ns_cmd, "show ns",
200 SHOW_STR "Display information about the NS protocol")
201{
202 struct gprs_ns_inst *nsi = vty_nsi;
203 dump_ns(vty, nsi, 0);
Harald Welte144e0292010-05-13 11:45:07 +0200204 return CMD_SUCCESS;
205}
206
Harald Welteaf1d4cb2010-05-13 12:32:30 +0200207DEFUN(show_ns_stats, show_ns_stats_cmd, "show ns stats",
208 SHOW_STR
209 "Display information about the NS protocol\n"
210 "Include statistics\n")
211{
212 struct gprs_ns_inst *nsi = vty_nsi;
213 dump_ns(vty, nsi, 1);
214 return CMD_SUCCESS;
215}
Harald Welte144e0292010-05-13 11:45:07 +0200216
Harald Welte92883342010-05-15 23:04:03 +0200217DEFUN(show_nse, show_nse_cmd, "show ns (nsei|nsvc) <0-65535> [stats]",
218 SHOW_STR "Display information about the NS protocol\n"
219 "Select one NSE by its NSE Identifier\n"
220 "Select one NSE by its NS-VC Identifier\n"
221 "The Identifier of selected type\n"
222 "Include Statistics\n")
223{
224 struct gprs_ns_inst *nsi = vty_nsi;
225 struct gprs_nsvc *nsvc;
226 uint16_t id = atoi(argv[1]);
227 int show_stats = 0;
228
229 if (!strcmp(argv[0], "nsei"))
Harald Weltef5430362012-06-17 12:25:53 +0800230 nsvc = gprs_nsvc_by_nsei(nsi, id);
Harald Welte92883342010-05-15 23:04:03 +0200231 else
Harald Weltef5430362012-06-17 12:25:53 +0800232 nsvc = gprs_nsvc_by_nsvci(nsi, id);
Harald Welte92883342010-05-15 23:04:03 +0200233
234 if (!nsvc) {
235 vty_out(vty, "No such NS Entity%s", VTY_NEWLINE);
236 return CMD_WARNING;
237 }
238
239 if (argc >= 3)
240 show_stats = 1;
241
242 dump_nse(vty, nsvc, show_stats);
243 return CMD_SUCCESS;
244}
245
Harald Welte24133c32010-05-15 23:06:26 +0200246#define NSE_CMD_STR "Persistent NS Entity\n" "NS Entity ID (NSEI)\n"
Harald Welte144e0292010-05-13 11:45:07 +0200247
248DEFUN(cfg_nse_nsvc, cfg_nse_nsvci_cmd,
249 "nse <0-65535> nsvci <0-65534>",
250 NSE_CMD_STR
251 "NS Virtual Connection\n"
252 "NS Virtual Connection ID (NSVCI)\n"
253 )
254{
255 uint16_t nsei = atoi(argv[0]);
256 uint16_t nsvci = atoi(argv[1]);
257 struct gprs_nsvc *nsvc;
258
Harald Weltef5430362012-06-17 12:25:53 +0800259 nsvc = gprs_nsvc_by_nsei(vty_nsi, nsei);
Harald Welte144e0292010-05-13 11:45:07 +0200260 if (!nsvc) {
Harald Weltef5430362012-06-17 12:25:53 +0800261 nsvc = gprs_nsvc_create(vty_nsi, nsvci);
Harald Welte144e0292010-05-13 11:45:07 +0200262 nsvc->nsei = nsei;
263 }
264 nsvc->nsvci = nsvci;
265 /* All NSVCs that are explicitly configured by VTY are
266 * marked as persistent so we can write them to the config
267 * file at some later point */
268 nsvc->persistent = 1;
269
270 return CMD_SUCCESS;
271}
272
273DEFUN(cfg_nse_remoteip, cfg_nse_remoteip_cmd,
274 "nse <0-65535> remote-ip A.B.C.D",
275 NSE_CMD_STR
276 "Remote IP Address\n"
277 "Remote IP Address\n")
278{
279 uint16_t nsei = atoi(argv[0]);
280 struct gprs_nsvc *nsvc;
281
Harald Weltef5430362012-06-17 12:25:53 +0800282 nsvc = gprs_nsvc_by_nsei(vty_nsi, nsei);
Harald Welte144e0292010-05-13 11:45:07 +0200283 if (!nsvc) {
284 vty_out(vty, "No such NSE (%u)%s", nsei, VTY_NEWLINE);
285 return CMD_WARNING;
286 }
287 inet_aton(argv[1], &nsvc->ip.bts_addr.sin_addr);
288
289 return CMD_SUCCESS;
290
291}
292
293DEFUN(cfg_nse_remoteport, cfg_nse_remoteport_cmd,
294 "nse <0-65535> remote-port <0-65535>",
295 NSE_CMD_STR
296 "Remote UDP Port\n"
297 "Remote UDP Port Number\n")
298{
299 uint16_t nsei = atoi(argv[0]);
300 uint16_t port = atoi(argv[1]);
301 struct gprs_nsvc *nsvc;
302
Harald Weltef5430362012-06-17 12:25:53 +0800303 nsvc = gprs_nsvc_by_nsei(vty_nsi, nsei);
Harald Welte144e0292010-05-13 11:45:07 +0200304 if (!nsvc) {
305 vty_out(vty, "No such NSE (%u)%s", nsei, VTY_NEWLINE);
306 return CMD_WARNING;
307 }
308
Harald Welteb3ee2652010-05-19 14:38:50 +0200309 if (nsvc->ll != GPRS_NS_LL_UDP) {
310 vty_out(vty, "Cannot set UDP Port on non-UDP NSE%s",
311 VTY_NEWLINE);
312 return CMD_WARNING;
313 }
314
Harald Weltebfe62e52017-05-15 12:48:30 +0200315 nsvc->ip.bts_addr.sin_port = osmo_htons(port);
Harald Welte144e0292010-05-13 11:45:07 +0200316
317 return CMD_SUCCESS;
318}
319
Harald Welteb3ee2652010-05-19 14:38:50 +0200320DEFUN(cfg_nse_fr_dlci, cfg_nse_fr_dlci_cmd,
Harald Welte188bda62010-05-28 14:11:49 +0200321 "nse <0-65535> fr-dlci <16-1007>",
Harald Welteb3ee2652010-05-19 14:38:50 +0200322 NSE_CMD_STR
323 "Frame Relay DLCI\n"
324 "Frame Relay DLCI Number\n")
325{
326 uint16_t nsei = atoi(argv[0]);
327 uint16_t dlci = atoi(argv[1]);
328 struct gprs_nsvc *nsvc;
329
Harald Weltef5430362012-06-17 12:25:53 +0800330 nsvc = gprs_nsvc_by_nsei(vty_nsi, nsei);
Harald Welteb3ee2652010-05-19 14:38:50 +0200331 if (!nsvc) {
332 vty_out(vty, "No such NSE (%u)%s", nsei, VTY_NEWLINE);
333 return CMD_WARNING;
334 }
335
336 if (nsvc->ll != GPRS_NS_LL_FR_GRE) {
337 vty_out(vty, "Cannot set FR DLCI on non-FR NSE%s",
338 VTY_NEWLINE);
339 return CMD_WARNING;
340 }
341
Harald Weltebfe62e52017-05-15 12:48:30 +0200342 nsvc->frgre.bts_addr.sin_port = osmo_htons(dlci);
Harald Welteb3ee2652010-05-19 14:38:50 +0200343
344 return CMD_SUCCESS;
345}
346
347DEFUN(cfg_nse_encaps, cfg_nse_encaps_cmd,
348 "nse <0-65535> encapsulation (udp|framerelay-gre)",
349 NSE_CMD_STR
350 "Encapsulation for NS\n"
351 "UDP/IP Encapsulation\n" "Frame-Relay/GRE/IP Encapsulation\n")
352{
353 uint16_t nsei = atoi(argv[0]);
354 struct gprs_nsvc *nsvc;
355
Harald Weltef5430362012-06-17 12:25:53 +0800356 nsvc = gprs_nsvc_by_nsei(vty_nsi, nsei);
Harald Welteb3ee2652010-05-19 14:38:50 +0200357 if (!nsvc) {
358 vty_out(vty, "No such NSE (%u)%s", nsei, VTY_NEWLINE);
359 return CMD_WARNING;
360 }
361
362 if (!strcmp(argv[1], "udp"))
363 nsvc->ll = GPRS_NS_LL_UDP;
364 else
365 nsvc->ll = GPRS_NS_LL_FR_GRE;
366
367 return CMD_SUCCESS;
368}
369
370
Harald Welte144e0292010-05-13 11:45:07 +0200371DEFUN(cfg_nse_remoterole, cfg_nse_remoterole_cmd,
372 "nse <0-65535> remote-role (sgsn|bss)",
373 NSE_CMD_STR
374 "Remote NSE Role\n"
375 "Remote Peer is SGSN\n"
376 "Remote Peer is BSS\n")
377{
378 uint16_t nsei = atoi(argv[0]);
379 struct gprs_nsvc *nsvc;
380
Harald Weltef5430362012-06-17 12:25:53 +0800381 nsvc = gprs_nsvc_by_nsei(vty_nsi, nsei);
Harald Welte144e0292010-05-13 11:45:07 +0200382 if (!nsvc) {
383 vty_out(vty, "No such NSE (%u)%s", nsei, VTY_NEWLINE);
384 return CMD_WARNING;
385 }
386
387 if (!strcmp(argv[1], "sgsn"))
388 nsvc->remote_end_is_sgsn = 1;
389 else
390 nsvc->remote_end_is_sgsn = 0;
391
392 return CMD_SUCCESS;
393}
394
395DEFUN(cfg_no_nse, cfg_no_nse_cmd,
396 "no nse <0-65535>",
Harald Welte24133c32010-05-15 23:06:26 +0200397 "Delete Persistent NS Entity\n"
Harald Welte144e0292010-05-13 11:45:07 +0200398 "Delete " NSE_CMD_STR)
399{
400 uint16_t nsei = atoi(argv[0]);
401 struct gprs_nsvc *nsvc;
402
Harald Weltef5430362012-06-17 12:25:53 +0800403 nsvc = gprs_nsvc_by_nsei(vty_nsi, nsei);
Harald Welte144e0292010-05-13 11:45:07 +0200404 if (!nsvc) {
405 vty_out(vty, "No such NSE (%u)%s", nsei, VTY_NEWLINE);
406 return CMD_WARNING;
407 }
408
Harald Welte24133c32010-05-15 23:06:26 +0200409 if (!nsvc->persistent) {
410 vty_out(vty, "NSEI %u is not a persistent NSE%s",
411 nsei, VTY_NEWLINE);
412 return CMD_WARNING;
413 }
414
415 nsvc->persistent = 0;
Harald Welte144e0292010-05-13 11:45:07 +0200416
417 return CMD_SUCCESS;
418}
419
420DEFUN(cfg_ns_timer, cfg_ns_timer_cmd,
421 "timer " NS_TIMERS " <0-65535>",
422 "Network Service Timer\n"
423 NS_TIMERS_HELP "Timer Value\n")
424{
425 int idx = get_string_value(gprs_ns_timer_strs, argv[0]);
426 int val = atoi(argv[1]);
427
428 if (idx < 0 || idx >= ARRAY_SIZE(vty_nsi->timeout))
429 return CMD_WARNING;
430
431 vty_nsi->timeout[idx] = val;
432
433 return CMD_SUCCESS;
434}
435
Harald Welte7fb05232010-05-19 15:09:09 +0200436#define ENCAPS_STR "NS encapsulation options\n"
437
438DEFUN(cfg_nsip_local_ip, cfg_nsip_local_ip_cmd,
439 "encapsulation udp local-ip A.B.C.D",
440 ENCAPS_STR "NS over UDP Encapsulation\n"
441 "Set the IP address on which we listen for NS/UDP\n"
442 "IP Address\n")
443{
444 struct in_addr ia;
445
446 inet_aton(argv[0], &ia);
Harald Weltebfe62e52017-05-15 12:48:30 +0200447 vty_nsi->nsip.local_ip = osmo_ntohl(ia.s_addr);
Harald Welte7fb05232010-05-19 15:09:09 +0200448
449 return CMD_SUCCESS;
450}
451
452DEFUN(cfg_nsip_local_port, cfg_nsip_local_port_cmd,
453 "encapsulation udp local-port <0-65535>",
454 ENCAPS_STR "NS over UDP Encapsulation\n"
455 "Set the UDP port on which we listen for NS/UDP\n"
456 "UDP port number\n")
457{
458 unsigned int port = atoi(argv[0]);
459
460 vty_nsi->nsip.local_port = port;
461
462 return CMD_SUCCESS;
463}
464
Holger Hans Peter Freyther2c3393d2013-03-25 11:59:58 +0100465DEFUN(cfg_nsip_dscp, cfg_nsip_dscp_cmd,
466 "encapsulation udp dscp <0-255>",
467 ENCAPS_STR "NS over UDP Encapsulation\n"
468 "Set DSCP/TOS on the UDP socket\n" "DSCP Value\n")
469{
470 int dscp = atoi(argv[0]);
471 vty_nsi->nsip.dscp = dscp;
472 return CMD_SUCCESS;
473}
474
Harald Welte7fb05232010-05-19 15:09:09 +0200475DEFUN(cfg_frgre_local_ip, cfg_frgre_local_ip_cmd,
476 "encapsulation framerelay-gre local-ip A.B.C.D",
477 ENCAPS_STR "NS over Frame Relay over GRE Encapsulation\n"
478 "Set the IP address on which we listen for NS/FR/GRE\n"
479 "IP Address\n")
480{
481 struct in_addr ia;
482
483 if (!vty_nsi->frgre.enabled) {
484 vty_out(vty, "FR/GRE is not enabled%s", VTY_NEWLINE);
485 return CMD_WARNING;
486 }
487 inet_aton(argv[0], &ia);
Harald Weltebfe62e52017-05-15 12:48:30 +0200488 vty_nsi->frgre.local_ip = osmo_ntohl(ia.s_addr);
Harald Welte7fb05232010-05-19 15:09:09 +0200489
490 return CMD_SUCCESS;
491}
492
493DEFUN(cfg_frgre_enable, cfg_frgre_enable_cmd,
494 "encapsulation framerelay-gre enabled (1|0)",
495 ENCAPS_STR "NS over Frame Relay over GRE Encapsulation\n"
496 "Enable or disable Frame Relay over GRE\n"
497 "Enable\n" "Disable\n")
498{
499 int enabled = atoi(argv[0]);
500
501 vty_nsi->frgre.enabled = enabled;
502
503 return CMD_SUCCESS;
504}
505
Harald Welte43f3b692010-05-14 19:36:59 +0200506DEFUN(nsvc_nsei, nsvc_nsei_cmd,
Jacob Erlbeck687b6902013-10-24 01:33:19 +0200507 "nsvc (nsei|nsvci) <0-65535> (block|unblock|reset)",
Harald Welte43f3b692010-05-14 19:36:59 +0200508 "Perform an operation on a NSVC\n"
Holger Hans Peter Freyther887934e2011-11-05 15:14:59 +0100509 "NSEI to identify NS-VC Identifier (NS-VCI)\n"
Jacob Erlbeck687b6902013-10-24 01:33:19 +0200510 "NS-VC Identifier (NS-VCI)\n"
Holger Hans Peter Freyther887934e2011-11-05 15:14:59 +0100511 "The NSEI\n"
Harald Welte43f3b692010-05-14 19:36:59 +0200512 "Initiate BLOCK procedure\n"
513 "Initiate UNBLOCK procedure\n"
514 "Initiate RESET procedure\n")
515{
Jacob Erlbeck687b6902013-10-24 01:33:19 +0200516 const char *id_type = argv[0];
517 uint16_t id = atoi(argv[1]);
518 const char *operation = argv[2];
Harald Welte43f3b692010-05-14 19:36:59 +0200519 struct gprs_nsvc *nsvc;
520
Jacob Erlbeck687b6902013-10-24 01:33:19 +0200521 if (!strcmp(id_type, "nsei"))
522 nsvc = gprs_nsvc_by_nsei(vty_nsi, id);
523 else if (!strcmp(id_type, "nsvci"))
524 nsvc = gprs_nsvc_by_nsvci(vty_nsi, id);
525 else {
526 vty_out(vty, "%%No such id_type '%s'%s", id_type, VTY_NEWLINE);
527 return CMD_WARNING;
528 }
529
Harald Welte43f3b692010-05-14 19:36:59 +0200530 if (!nsvc) {
Jacob Erlbeck687b6902013-10-24 01:33:19 +0200531 vty_out(vty, "No such %s (%u)%s", id_type, id, VTY_NEWLINE);
Harald Welte43f3b692010-05-14 19:36:59 +0200532 return CMD_WARNING;
533 }
534
535 if (!strcmp(operation, "block"))
536 gprs_ns_tx_block(nsvc, NS_CAUSE_OM_INTERVENTION);
537 else if (!strcmp(operation, "unblock"))
538 gprs_ns_tx_unblock(nsvc);
539 else if (!strcmp(operation, "reset"))
540 gprs_nsvc_reset(nsvc, NS_CAUSE_OM_INTERVENTION);
541 else
542 return CMD_WARNING;
543
544 return CMD_SUCCESS;
545}
546
Harald Welte91f7f4b2010-05-15 23:52:02 +0200547DEFUN(logging_fltr_nsvc,
548 logging_fltr_nsvc_cmd,
549 "logging filter nsvc (nsei|nsvci) <0-65535>",
Harald Welte6703bf72010-05-16 00:00:04 +0200550 LOGGING_STR FILTER_STR
Harald Welte91f7f4b2010-05-15 23:52:02 +0200551 "Filter based on NS Virtual Connection\n"
552 "Identify NS-VC by NSEI\n"
553 "Identify NS-VC by NSVCI\n"
554 "Numeric identifier\n")
555{
Harald Welte43ae94e2011-02-18 21:10:05 +0100556 struct log_target *tgt = osmo_log_vty2tgt(vty);
Harald Welte91f7f4b2010-05-15 23:52:02 +0200557 struct gprs_nsvc *nsvc;
558 uint16_t id = atoi(argv[1]);
559
Harald Welte43ae94e2011-02-18 21:10:05 +0100560 if (!tgt)
Harald Welte91f7f4b2010-05-15 23:52:02 +0200561 return CMD_WARNING;
Harald Welte91f7f4b2010-05-15 23:52:02 +0200562
563 if (!strcmp(argv[0], "nsei"))
Harald Weltef5430362012-06-17 12:25:53 +0800564 nsvc = gprs_nsvc_by_nsei(vty_nsi, id);
Harald Welte91f7f4b2010-05-15 23:52:02 +0200565 else
Harald Weltef5430362012-06-17 12:25:53 +0800566 nsvc = gprs_nsvc_by_nsvci(vty_nsi, id);
Harald Welte91f7f4b2010-05-15 23:52:02 +0200567
568 if (!nsvc) {
569 vty_out(vty, "No NS-VC by that identifier%s", VTY_NEWLINE);
570 return CMD_WARNING;
571 }
572
Harald Welte43ae94e2011-02-18 21:10:05 +0100573 log_set_nsvc_filter(tgt, nsvc);
Harald Welte91f7f4b2010-05-15 23:52:02 +0200574 return CMD_SUCCESS;
575}
Harald Welte43f3b692010-05-14 19:36:59 +0200576
Harald Welte144e0292010-05-13 11:45:07 +0200577int gprs_ns_vty_init(struct gprs_ns_inst *nsi)
578{
Neels Hofmeyrc32bfd52017-01-12 22:32:19 +0100579 static bool vty_elements_installed = false;
580
Harald Welte144e0292010-05-13 11:45:07 +0200581 vty_nsi = nsi;
582
Neels Hofmeyrc32bfd52017-01-12 22:32:19 +0100583 /* Regression test code may call this function repeatedly, so make sure
584 * that VTY elements are not duplicated, which would assert. */
585 if (vty_elements_installed)
586 return 0;
587 vty_elements_installed = true;
588
Harald Welte144e0292010-05-13 11:45:07 +0200589 install_element_ve(&show_ns_cmd);
Harald Welteaf1d4cb2010-05-13 12:32:30 +0200590 install_element_ve(&show_ns_stats_cmd);
Harald Welte92883342010-05-15 23:04:03 +0200591 install_element_ve(&show_nse_cmd);
Harald Welte91f7f4b2010-05-15 23:52:02 +0200592 install_element_ve(&logging_fltr_nsvc_cmd);
Harald Welte144e0292010-05-13 11:45:07 +0200593
Harald Welte43ae94e2011-02-18 21:10:05 +0100594 install_element(CFG_LOG_NODE, &logging_fltr_nsvc_cmd);
595
Harald Welte144e0292010-05-13 11:45:07 +0200596 install_element(CONFIG_NODE, &cfg_ns_cmd);
597 install_node(&ns_node, config_write_ns);
Harald Welte4f5883b2012-06-16 16:54:06 +0800598 install_element(L_NS_NODE, &cfg_nse_nsvci_cmd);
599 install_element(L_NS_NODE, &cfg_nse_remoteip_cmd);
600 install_element(L_NS_NODE, &cfg_nse_remoteport_cmd);
601 install_element(L_NS_NODE, &cfg_nse_fr_dlci_cmd);
602 install_element(L_NS_NODE, &cfg_nse_encaps_cmd);
603 install_element(L_NS_NODE, &cfg_nse_remoterole_cmd);
604 install_element(L_NS_NODE, &cfg_no_nse_cmd);
605 install_element(L_NS_NODE, &cfg_ns_timer_cmd);
606 install_element(L_NS_NODE, &cfg_nsip_local_ip_cmd);
607 install_element(L_NS_NODE, &cfg_nsip_local_port_cmd);
Holger Hans Peter Freyther2c3393d2013-03-25 11:59:58 +0100608 install_element(L_NS_NODE, &cfg_nsip_dscp_cmd);
Harald Welte4f5883b2012-06-16 16:54:06 +0800609 install_element(L_NS_NODE, &cfg_frgre_enable_cmd);
610 install_element(L_NS_NODE, &cfg_frgre_local_ip_cmd);
Harald Welte144e0292010-05-13 11:45:07 +0200611
Harald Welte43f3b692010-05-14 19:36:59 +0200612 install_element(ENABLE_NODE, &nsvc_nsei_cmd);
613
Harald Welte144e0292010-05-13 11:45:07 +0200614 return 0;
615}