blob: d915c19722bed26bbbb666e39a08996966fa79c7 [file] [log] [blame]
Pablo Neira Ayuso262aee82011-07-05 19:17:08 +02001/* E1 vty interface */
2/* (C) 2011 by Harald Welte <laforge@gnumonks.org>
3 * All Rights Reserved
4 *
Harald Welte323d39d2017-11-13 01:09:21 +09005 * SPDX-License-Identifier: AGPL-3.0+
6 *
Pablo Neira Ayuso262aee82011-07-05 19:17:08 +02007 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU Affero General Public License as published by
9 * the Free Software Foundation; either version 3 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU Affero General Public License for more details.
16 *
17 * You should have received a copy of the GNU Affero General Public License
18 * along with this program. If not, see <http://www.gnu.org/licenses/>.
19 *
20 */
21#include "internal.h"
22
Sylvain Munauteb55e2f2020-05-08 09:42:51 +020023#include <fcntl.h>
Pablo Neira Ayuso262aee82011-07-05 19:17:08 +020024#include <stdlib.h>
25#include <unistd.h>
Harald Welted4f8f682011-08-19 13:28:48 +020026#include <string.h>
Sylvain Munauteb55e2f2020-05-08 09:42:51 +020027#include <sys/stat.h>
28#include <sys/types.h>
Stefan Sperlingb24efa52018-08-28 14:03:41 +020029#include <sys/un.h>
Pablo Neira Ayuso262aee82011-07-05 19:17:08 +020030
Harald Weltef2737fc2011-08-16 14:30:10 +020031#include <osmocom/core/linuxlist.h>
32#include <osmocom/core/talloc.h>
33#include <osmocom/core/utils.h>
34#include <osmocom/gsm/gsm_utils.h>
35
Pablo Neira Ayuso262aee82011-07-05 19:17:08 +020036#include <osmocom/vty/command.h>
37#include <osmocom/vty/buffer.h>
38#include <osmocom/vty/vty.h>
39#include <osmocom/vty/logging.h>
Harald Weltef2737fc2011-08-16 14:30:10 +020040#include <osmocom/vty/misc.h>
Pablo Neira Ayuso262aee82011-07-05 19:17:08 +020041#include <osmocom/vty/telnet_interface.h>
42
Pablo Neira Ayuso262aee82011-07-05 19:17:08 +020043#include <osmocom/abis/e1_input.h>
Eric Wildef1f3272019-07-10 18:10:31 +020044#include <osmocom/abis/ipa.h>
Harald Weltef2737fc2011-08-16 14:30:10 +020045
Philipp Maieref5b8392020-10-08 17:35:52 +020046#define X(x) (1 << x)
47
Harald Weltef2737fc2011-08-16 14:30:10 +020048/* CONFIG */
Pablo Neira Ayuso262aee82011-07-05 19:17:08 +020049
Sylvain Munautb559a532019-05-09 11:14:26 +020050#define E1_DRIVER_NAMES "(misdn|misdn_lapd|dahdi|e1d|ipa|unixsocket)"
Harald Weltece307b42011-08-21 01:18:05 +020051#define E1_DRIVER_HELP "mISDN supported E1 Card (kernel LAPD)\n" \
52 "mISDN supported E1 Card (userspace LAPD)\n" \
Pablo Neira Ayuso262aee82011-07-05 19:17:08 +020053 "DAHDI supported E1/T1/J1 Card\n" \
Harald Welte1f922842020-07-02 11:19:15 +020054 "osmo-e1d supported E1 interface\n" \
Holger Hans Peter Freyther36bac9a2012-07-20 23:49:52 +020055 "IPA TCP/IP input\n" \
Alexander Couzensbeb10ef2016-11-01 22:05:13 +010056 "Unix socket input\n"
Pablo Neira Ayuso262aee82011-07-05 19:17:08 +020057
Harald Welte601a9c72011-08-16 14:17:49 +020058#define E1_LINE_HELP "Configure E1/T1/J1 Line\n" "Line Number\n"
59
Philipp Maieref5b8392020-10-08 17:35:52 +020060/* Note: This requires a full restart of the application, since once created
61 * an E1 line can not be destroyed again. */
Pablo Neira Ayuso262aee82011-07-05 19:17:08 +020062DEFUN(cfg_e1line_driver, cfg_e1_line_driver_cmd,
63 "e1_line <0-255> driver " E1_DRIVER_NAMES,
Harald Welte601a9c72011-08-16 14:17:49 +020064 E1_LINE_HELP "Set driver for this line\n"
Pablo Neira Ayuso262aee82011-07-05 19:17:08 +020065 E1_DRIVER_HELP)
66{
67 struct e1inp_line *line;
68 int e1_nr = atoi(argv[0]);
69
Pablo Neira Ayuso3832c4f2011-07-07 17:47:26 +020070 line = e1inp_line_find(e1_nr);
Pablo Neira Ayuso262aee82011-07-05 19:17:08 +020071 if (line) {
72 vty_out(vty, "%% Line %d already exists%s", e1_nr, VTY_NEWLINE);
73 return CMD_WARNING;
74 }
75 line = e1inp_line_create(e1_nr, argv[1]);
76 if (!line) {
77 vty_out(vty, "%% Error creating line %d%s", e1_nr, VTY_NEWLINE);
78 return CMD_WARNING;
79 }
80
81 return CMD_SUCCESS;
82}
83
Philipp Maieref5b8392020-10-08 17:35:52 +020084DEFUN_USRATTR(cfg_e1line_port, cfg_e1_line_port_cmd,
85 X(OSMO_ABIS_LIB_ATTR_LINE_UPD),
86 "e1_line <0-255> port <0-255>",
87 E1_LINE_HELP "Set physical port/span/card number\n"
88 "E1/T1 Port/Span/Card number\n")
Harald Weltec2889512011-09-13 23:49:04 +010089{
90 struct e1inp_line *line;
91 int e1_nr = atoi(argv[0]);
92
93 line = e1inp_line_find(e1_nr);
94 if (!line) {
95 vty_out(vty, "%% Line %d doesn't exist%s", e1_nr, VTY_NEWLINE);
96 return CMD_WARNING;
97 }
98
99 line->port_nr = atoi(argv[1]);
100
101 return CMD_SUCCESS;
102}
103
Philipp Maieref5b8392020-10-08 17:35:52 +0200104DEFUN_USRATTR(cfg_e1line_socket, cfg_e1_line_socket_cmd,
105 X(OSMO_ABIS_LIB_ATTR_LINE_UPD),
106 "e1_line <0-255> socket .SOCKET",
107 E1_LINE_HELP "Set socket path for unixsocket\n"
108 "socket path\n")
Alexander Couzensbeb10ef2016-11-01 22:05:13 +0100109{
110 struct e1inp_line *line;
111 int e1_nr = atoi(argv[0]);
Stefan Sperlingb24efa52018-08-28 14:03:41 +0200112 struct sockaddr_un sun;
113
Stefan Sperling0d7d0b02018-09-20 17:34:31 +0200114 /* Don't exceed the maximum unix socket path length, including a NUL byte. See the unix(7) man page.*/
115 if (strlen(argv[1]) > sizeof(sun.sun_path) - 1) {
Stefan Sperlingb24efa52018-08-28 14:03:41 +0200116 vty_out(vty, "%% Socket path length exceeds %zd bytes: '%s'%s",
Stefan Sperling0d7d0b02018-09-20 17:34:31 +0200117 sizeof(sun.sun_path) - 1, argv[1], VTY_NEWLINE);
Stefan Sperlingb24efa52018-08-28 14:03:41 +0200118 return CMD_WARNING;
119 }
Alexander Couzensbeb10ef2016-11-01 22:05:13 +0100120
121 line = e1inp_line_find(e1_nr);
122 if (!line) {
123 vty_out(vty, "%% Line %d doesn't exist%s", e1_nr, VTY_NEWLINE);
124 return CMD_WARNING;
125 }
126
127 line->sock_path = talloc_strdup(line, argv[1]);
128
129 return CMD_SUCCESS;
130}
131
Jacob Erlbeck86dae842014-01-16 18:10:37 +0100132#define KEEPALIVE_HELP "Enable keep-alive probing\n"
133static int set_keepalive_params(struct vty *vty, int e1_nr,
134 int idle, int num_probes, int probe_interval)
135{
136 struct e1inp_line *line = e1inp_line_find(e1_nr);
137
138 if (!line) {
139 vty_out(vty, "%% Line %d doesn't exist%s", e1_nr, VTY_NEWLINE);
140 return CMD_WARNING;
141 }
142 if (!line->driver->has_keepalive && num_probes != 0) {
143 vty_out(vty, "%% Driver '%s' does not support keep alive%s",
144 line->driver->name, VTY_NEWLINE);
145 return CMD_WARNING;
146 }
147
148 line->keepalive_idle_timeout = idle;
149 line->keepalive_num_probes = num_probes;
150 line->keepalive_probe_interval = probe_interval;
151
152 return CMD_SUCCESS;
153}
154
Philipp Maieref5b8392020-10-08 17:35:52 +0200155DEFUN_USRATTR(cfg_e1line_keepalive, cfg_e1_line_keepalive_cmd,
156 X(OSMO_ABIS_LIB_ATTR_IPA_NEW_LNK),
157 "e1_line <0-255> keepalive",
158 E1_LINE_HELP KEEPALIVE_HELP)
Jacob Erlbeck86dae842014-01-16 18:10:37 +0100159{
160 return set_keepalive_params(vty, atoi(argv[0]),
161 E1INP_USE_DEFAULT, E1INP_USE_DEFAULT,
162 E1INP_USE_DEFAULT);
163}
164
Philipp Maieref5b8392020-10-08 17:35:52 +0200165DEFUN_USRATTR(cfg_e1line_keepalive_params, cfg_e1_line_keepalive_params_cmd,
166 X(OSMO_ABIS_LIB_ATTR_IPA_NEW_LNK),
167 "e1_line <0-255> keepalive <1-300> <1-20> <1-300>",
168 E1_LINE_HELP KEEPALIVE_HELP
169 "Idle interval in seconds before probes are sent\n"
170 "Number of probes to sent\n"
171 "Delay between probe packets in seconds\n")
Jacob Erlbeck86dae842014-01-16 18:10:37 +0100172{
173 return set_keepalive_params(vty, atoi(argv[0]),
174 atoi(argv[1]), atoi(argv[2]), atoi(argv[3]));
175}
176
Philipp Maieref5b8392020-10-08 17:35:52 +0200177DEFUN_USRATTR(cfg_e1line_no_keepalive, cfg_e1_line_no_keepalive_cmd,
178 X(OSMO_ABIS_LIB_ATTR_IPA_NEW_LNK),
179 "no e1_line <0-255> keepalive",
180 NO_STR E1_LINE_HELP KEEPALIVE_HELP)
Jacob Erlbeck86dae842014-01-16 18:10:37 +0100181{
182 return set_keepalive_params(vty, atoi(argv[0]), 0, 0, 0);
183}
184
Eric Wildef1f3272019-07-10 18:10:31 +0200185#define IPA_KEEPALIVE_HELP "Enable IPA PING/PONG keep-alive\n"
186static int set_ipa_keepalive_params(struct vty *vty, int e1_nr, int interval, int wait_for_resp)
187{
188 struct e1inp_line *line = e1inp_line_find(e1_nr);
189
190 if (!line) {
191 vty_out(vty, "%% Line %d doesn't exist%s", e1_nr, VTY_NEWLINE);
192 return CMD_WARNING;
193 }
194
195 if (strcmp(line->driver->name, "ipa") != 0) {
196 vty_out(vty, "%% Line %d doesn't use the ipa driver%s", e1_nr, VTY_NEWLINE);
197 return CMD_WARNING;
198 }
199
200 TALLOC_FREE(line->ipa_kap);
201 if (interval) {
202 line->ipa_kap = talloc_zero(line, struct ipa_keepalive_params);
203 line->ipa_kap->wait_for_resp = wait_for_resp;
204 line->ipa_kap->interval = interval;
205 }
206
207 return CMD_SUCCESS;
208}
209
Philipp Maieref5b8392020-10-08 17:35:52 +0200210DEFUN_ATTR(cfg_e1line_ipa_keepalive, cfg_e1_line_ipa_keepalive_cmd,
211 "e1_line <0-255> ipa-keepalive <1-300> <1-300>",
212 E1_LINE_HELP IPA_KEEPALIVE_HELP
213 "Idle interval in seconds before probes are sent\n"
214 "Time to wait for PONG response\n", CMD_ATTR_IMMEDIATE)
Eric Wildef1f3272019-07-10 18:10:31 +0200215{
216 return set_ipa_keepalive_params(vty, atoi(argv[0]), atoi(argv[1]), atoi(argv[2]));
217}
218
Philipp Maieref5b8392020-10-08 17:35:52 +0200219DEFUN_ATTR(cfg_e1line_no_ipa_keepalive, cfg_e1_line_no_ipa_keepalive_cmd,
220 "no e1_line <0-255> ipa-keepalive",
221 NO_STR E1_LINE_HELP IPA_KEEPALIVE_HELP, CMD_ATTR_IMMEDIATE)
Eric Wildef1f3272019-07-10 18:10:31 +0200222{
223 return set_ipa_keepalive_params(vty, atoi(argv[0]), 0, 0);
224}
225
Philipp Maieref5b8392020-10-08 17:35:52 +0200226DEFUN_ATTR(cfg_e1line_name, cfg_e1_line_name_cmd,
227 "e1_line <0-255> name .LINE",
228 E1_LINE_HELP "Set name for this line\n" "Human readable name\n",
229 CMD_ATTR_IMMEDIATE)
Harald Welte601a9c72011-08-16 14:17:49 +0200230{
231 struct e1inp_line *line;
232 int e1_nr = atoi(argv[0]);
233
234 line = e1inp_line_find(e1_nr);
235 if (!line) {
236 vty_out(vty, "%% Line %d doesn't exist%s", e1_nr, VTY_NEWLINE);
237 return CMD_WARNING;
238 }
239 if (line->name) {
240 talloc_free((void *)line->name);
241 line->name = NULL;
242 }
243 line->name = talloc_strdup(line, argv[1]);
244
245 return CMD_SUCCESS;
246}
247
Philipp Maieref5b8392020-10-08 17:35:52 +0200248DEFUN_ATTR(cfg_e1_pcap, cfg_e1_pcap_cmd,
249 "pcap .FILE",
250 "Setup a pcap recording of all E1 traffic\n"
251 "Filename to save the packets to\n", CMD_ATTR_IMMEDIATE)
Sylvain Munauteb55e2f2020-05-08 09:42:51 +0200252{
253 int fd;
254
255 fd = open(argv[0], O_WRONLY | O_CREAT | O_TRUNC, 0660);
256 if (fd < 0) {
257 vty_out(vty, "Failed to setup E1 pcap recording to %s.%s", argv[0], VTY_NEWLINE);
258 return CMD_WARNING;
259 }
260
261 e1_set_pcap_fd(fd);
262
263 return CMD_SUCCESS;
264}
265
Philipp Maieref5b8392020-10-08 17:35:52 +0200266DEFUN_ATTR(cfg_e1_no_pcap, cfg_e1_no_pcap_cmd,
267 "no pcap",
268 NO_STR "Disable pcap recording of all E1 traffic\n",
269 CMD_ATTR_IMMEDIATE)
Sylvain Munauteb55e2f2020-05-08 09:42:51 +0200270{
271 e1_set_pcap_fd(-1);
272 return CMD_SUCCESS;
273}
274
Philipp Maieref5b8392020-10-08 17:35:52 +0200275DEFUN_ATTR(cfg_e1inp, cfg_e1inp_cmd,
276 "e1_input",
277 "Configure E1/T1/J1 TDM input\n", CMD_ATTR_IMMEDIATE)
Pablo Neira Ayuso262aee82011-07-05 19:17:08 +0200278{
Harald Weltecc2241b2011-07-19 16:06:06 +0200279 vty->node = L_E1INP_NODE;
Pablo Neira Ayuso262aee82011-07-05 19:17:08 +0200280
281 return CMD_SUCCESS;
282}
283
Philipp Maieref5b8392020-10-08 17:35:52 +0200284DEFUN_USRATTR(cfg_ipa_bind,
285 cfg_ipa_bind_cmd,
286 X(OSMO_ABIS_LIB_ATTR_LINE_UPD),
287 "ipa bind A.B.C.D",
288 "ipa driver config\n"
289 "Set ipa local bind address\n"
290 "Listen on this IP address (default 0.0.0.0)\n")
Neels Hofmeyr0db1d432016-02-22 13:29:09 +0100291{
292 e1inp_ipa_set_bind_addr(argv[0]);
293 return CMD_SUCCESS;
294}
295
Pablo Neira Ayuso262aee82011-07-05 19:17:08 +0200296static int e1inp_config_write(struct vty *vty)
297{
298 struct e1inp_line *line;
299
300 if (llist_empty(&e1inp_line_list))
301 return CMD_SUCCESS;
302
303 vty_out(vty, "e1_input%s", VTY_NEWLINE);
304
305 llist_for_each_entry(line, &e1inp_line_list, list) {
306 vty_out(vty, " e1_line %u driver %s%s", line->num,
307 line->driver->name, VTY_NEWLINE);
Harald Weltec2889512011-09-13 23:49:04 +0100308 vty_out(vty, " e1_line %u port %u%s", line->num,
309 line->port_nr, VTY_NEWLINE);
Harald Welte601a9c72011-08-16 14:17:49 +0200310 if (line->name)
311 vty_out(vty, " e1_line %u name %s%s", line->num,
312 line->name, VTY_NEWLINE);
Jacob Erlbeck86dae842014-01-16 18:10:37 +0100313 if (!line->keepalive_num_probes)
314 vty_out(vty, " no e1_line %u keepalive%s", line->num,
315 VTY_NEWLINE);
316 else if (line->keepalive_idle_timeout == E1INP_USE_DEFAULT &&
317 line->keepalive_num_probes == E1INP_USE_DEFAULT &&
318 line->keepalive_probe_interval == E1INP_USE_DEFAULT)
319 vty_out(vty, " e1_line %u keepalive%s", line->num,
320 VTY_NEWLINE);
321 else
322 vty_out(vty, " e1_line %u keepalive %d %d %d%s",
323 line->num,
324 line->keepalive_idle_timeout,
325 line->keepalive_num_probes,
326 line->keepalive_probe_interval,
327 VTY_NEWLINE);
Eric Wildef1f3272019-07-10 18:10:31 +0200328 if (line->ipa_kap)
329 vty_out(vty, " e1_line %u ipa-keepalive %d %d%s", line->num,
330 line->ipa_kap->interval, line->ipa_kap->wait_for_resp,
331 VTY_NEWLINE);
Pablo Neira Ayuso262aee82011-07-05 19:17:08 +0200332 }
Neels Hofmeyr0db1d432016-02-22 13:29:09 +0100333
334 const char *ipa_bind = e1inp_ipa_get_bind_addr();
335 if (ipa_bind && (strcmp(ipa_bind, "0.0.0.0") != 0))
336 vty_out(vty, " ipa bind %s%s",
337 ipa_bind, VTY_NEWLINE);
338
Pablo Neira Ayuso262aee82011-07-05 19:17:08 +0200339 return CMD_SUCCESS;
340}
341
Harald Weltef2737fc2011-08-16 14:30:10 +0200342/* SHOW */
343
Harald Welte6e37c592011-08-11 12:43:31 +0200344static void e1drv_dump_vty(struct vty *vty, struct e1inp_driver *drv)
345{
346 vty_out(vty, "E1 Input Driver %s%s", drv->name, VTY_NEWLINE);
347}
348
349DEFUN(show_e1drv,
350 show_e1drv_cmd,
351 "show e1_driver",
352 SHOW_STR "Display information about available E1 drivers\n")
353{
354 struct e1inp_driver *drv;
355
356 llist_for_each_entry(drv, &e1inp_driver_list, list)
357 e1drv_dump_vty(vty, drv);
358
359 return CMD_SUCCESS;
360}
361
Harald Weltef2737fc2011-08-16 14:30:10 +0200362static void e1line_dump_vty(struct vty *vty, struct e1inp_line *line,
363 int stats)
Harald Welte6e37c592011-08-11 12:43:31 +0200364{
365 vty_out(vty, "E1 Line Number %u, Name %s, Driver %s%s",
366 line->num, line->name ? line->name : "",
367 line->driver->name, VTY_NEWLINE);
Harald Weltefe05cf52011-09-26 23:18:41 +0200368 if (line->driver->vty_show)
369 line->driver->vty_show(vty, line);
Harald Weltef2737fc2011-08-16 14:30:10 +0200370 if (stats)
371 vty_out_rate_ctr_group(vty, " ", line->rate_ctr);
Harald Welte6e37c592011-08-11 12:43:31 +0200372}
373
374DEFUN(show_e1line,
375 show_e1line_cmd,
Harald Weltef2737fc2011-08-16 14:30:10 +0200376 "show e1_line [line_nr] [stats]",
Harald Welte6e37c592011-08-11 12:43:31 +0200377 SHOW_STR "Display information about a E1 line\n"
Holger Hans Peter Freyther9e8f1c02012-07-21 00:09:52 +0200378 "E1 Line Number\n" "Include statistics\n")
Harald Welte6e37c592011-08-11 12:43:31 +0200379{
380 struct e1inp_line *line;
Harald Weltef2737fc2011-08-16 14:30:10 +0200381 int stats = 0;
Harald Welte6e37c592011-08-11 12:43:31 +0200382
Harald Weltef2737fc2011-08-16 14:30:10 +0200383 if (argc >= 1 && strcmp(argv[0], "stats")) {
Harald Welte6e37c592011-08-11 12:43:31 +0200384 int num = atoi(argv[0]);
Harald Weltef2737fc2011-08-16 14:30:10 +0200385 if (argc >= 2)
386 stats = 1;
Harald Welte6e37c592011-08-11 12:43:31 +0200387 llist_for_each_entry(line, &e1inp_line_list, list) {
388 if (line->num == num) {
Harald Weltef2737fc2011-08-16 14:30:10 +0200389 e1line_dump_vty(vty, line, stats);
Harald Welte6e37c592011-08-11 12:43:31 +0200390 return CMD_SUCCESS;
391 }
392 }
393 return CMD_WARNING;
394 }
395
Harald Weltef2737fc2011-08-16 14:30:10 +0200396 if (argc >= 1 && !strcmp(argv[0], "stats"))
397 stats = 1;
398
Harald Welte6e37c592011-08-11 12:43:31 +0200399 llist_for_each_entry(line, &e1inp_line_list, list)
Harald Weltef2737fc2011-08-16 14:30:10 +0200400 e1line_dump_vty(vty, line, stats);
Harald Welte6e37c592011-08-11 12:43:31 +0200401
402 return CMD_SUCCESS;
403}
404
405static void e1ts_dump_vty(struct vty *vty, struct e1inp_ts *ts)
406{
407 if (ts->type == E1INP_TS_TYPE_NONE)
408 return;
409 vty_out(vty, "E1 Timeslot %2u of Line %u is Type %s%s",
410 ts->num, ts->line->num, e1inp_tstype_name(ts->type),
411 VTY_NEWLINE);
412}
413
414DEFUN(show_e1ts,
415 show_e1ts_cmd,
416 "show e1_timeslot [line_nr] [ts_nr]",
417 SHOW_STR "Display information about a E1 timeslot\n"
418 "E1 Line Number\n" "E1 Timeslot Number\n")
419{
420 struct e1inp_line *line = NULL;
421 struct e1inp_ts *ts;
422 int ts_nr;
423
Holger Hans Peter Freyther8cbd9f42013-07-04 20:00:33 +0200424 if (argc <= 0) {
Harald Welte6e37c592011-08-11 12:43:31 +0200425 llist_for_each_entry(line, &e1inp_line_list, list) {
Harald Weltec2889512011-09-13 23:49:04 +0100426 for (ts_nr = 0; ts_nr < line->num_ts; ts_nr++) {
Harald Welte6e37c592011-08-11 12:43:31 +0200427 ts = &line->ts[ts_nr];
428 e1ts_dump_vty(vty, ts);
429 }
430 }
431 return CMD_SUCCESS;
432 }
433 if (argc >= 1) {
434 int num = atoi(argv[0]);
435 struct e1inp_line *l;
436 llist_for_each_entry(l, &e1inp_line_list, list) {
437 if (l->num == num) {
438 line = l;
439 break;
440 }
441 }
442 if (!line) {
443 vty_out(vty, "E1 line %s is invalid%s",
444 argv[0], VTY_NEWLINE);
445 return CMD_WARNING;
446 }
447 }
448 if (argc >= 2) {
449 ts_nr = atoi(argv[1]);
Harald Weltec2889512011-09-13 23:49:04 +0100450 if (ts_nr >= line->num_ts) {
Harald Welte6e37c592011-08-11 12:43:31 +0200451 vty_out(vty, "E1 timeslot %s is invalid%s",
452 argv[1], VTY_NEWLINE);
453 return CMD_WARNING;
454 }
455 ts = &line->ts[ts_nr];
456 e1ts_dump_vty(vty, ts);
457 return CMD_SUCCESS;
458 } else {
Harald Weltec2889512011-09-13 23:49:04 +0100459 for (ts_nr = 0; ts_nr < line->num_ts; ts_nr++) {
Harald Welte6e37c592011-08-11 12:43:31 +0200460 ts = &line->ts[ts_nr];
461 e1ts_dump_vty(vty, ts);
462 }
463 return CMD_SUCCESS;
464 }
465 return CMD_SUCCESS;
466}
467
468
Pablo Neira Ayuso262aee82011-07-05 19:17:08 +0200469struct cmd_node e1inp_node = {
Harald Weltecc2241b2011-07-19 16:06:06 +0200470 L_E1INP_NODE,
Jacob Erlbeck1c9dcc12013-11-11 14:13:13 +0100471 "%s(config-e1_input)# ",
Pablo Neira Ayuso262aee82011-07-05 19:17:08 +0200472 1,
473};
474
475int e1inp_vty_init(void)
476{
Vadim Yanitskiy82ef2a22020-10-04 16:15:52 +0700477 install_lib_element(CONFIG_NODE, &cfg_e1inp_cmd);
Pablo Neira Ayuso262aee82011-07-05 19:17:08 +0200478 install_node(&e1inp_node, e1inp_config_write);
Jacob Erlbeck37f06952013-11-11 14:13:12 +0100479
Vadim Yanitskiy82ef2a22020-10-04 16:15:52 +0700480 install_lib_element(L_E1INP_NODE, &cfg_e1_pcap_cmd);
481 install_lib_element(L_E1INP_NODE, &cfg_e1_no_pcap_cmd);
Sylvain Munauteb55e2f2020-05-08 09:42:51 +0200482
Vadim Yanitskiy82ef2a22020-10-04 16:15:52 +0700483 install_lib_element(L_E1INP_NODE, &cfg_e1_line_driver_cmd);
484 install_lib_element(L_E1INP_NODE, &cfg_e1_line_port_cmd);
485 install_lib_element(L_E1INP_NODE, &cfg_e1_line_socket_cmd);
486 install_lib_element(L_E1INP_NODE, &cfg_e1_line_name_cmd);
487 install_lib_element(L_E1INP_NODE, &cfg_e1_line_keepalive_cmd);
488 install_lib_element(L_E1INP_NODE, &cfg_e1_line_keepalive_params_cmd);
489 install_lib_element(L_E1INP_NODE, &cfg_e1_line_no_keepalive_cmd);
490 install_lib_element(L_E1INP_NODE, &cfg_e1_line_ipa_keepalive_cmd);
491 install_lib_element(L_E1INP_NODE, &cfg_e1_line_no_ipa_keepalive_cmd);
Pablo Neira Ayuso262aee82011-07-05 19:17:08 +0200492
Vadim Yanitskiy82ef2a22020-10-04 16:15:52 +0700493 install_lib_element(L_E1INP_NODE, &cfg_ipa_bind_cmd);
Neels Hofmeyr0db1d432016-02-22 13:29:09 +0100494
Vadim Yanitskiy82ef2a22020-10-04 16:15:52 +0700495 install_lib_element_ve(&show_e1drv_cmd);
496 install_lib_element_ve(&show_e1line_cmd);
497 install_lib_element_ve(&show_e1ts_cmd);
Harald Welte6e37c592011-08-11 12:43:31 +0200498
Pablo Neira Ayuso262aee82011-07-05 19:17:08 +0200499 return 0;
500}