blob: 5320bb36c85d7aecd87e91f2fcb8d3a8e106badb [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 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU Affero General Public License as published by
7 * the Free Software Foundation; either version 3 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU Affero General Public License for more details.
14 *
15 * You should have received a copy of the GNU Affero General Public License
16 * along with this program. If not, see <http://www.gnu.org/licenses/>.
17 *
18 */
19#include "internal.h"
20
21#include <stdlib.h>
22#include <unistd.h>
Harald Welted4f8f682011-08-19 13:28:48 +020023#include <string.h>
Pablo Neira Ayuso262aee82011-07-05 19:17:08 +020024
Harald Weltef2737fc2011-08-16 14:30:10 +020025#include <osmocom/core/linuxlist.h>
26#include <osmocom/core/talloc.h>
27#include <osmocom/core/utils.h>
28#include <osmocom/gsm/gsm_utils.h>
29
Pablo Neira Ayuso262aee82011-07-05 19:17:08 +020030#include <osmocom/vty/command.h>
31#include <osmocom/vty/buffer.h>
32#include <osmocom/vty/vty.h>
33#include <osmocom/vty/logging.h>
Harald Weltef2737fc2011-08-16 14:30:10 +020034#include <osmocom/vty/misc.h>
Pablo Neira Ayuso262aee82011-07-05 19:17:08 +020035#include <osmocom/vty/telnet_interface.h>
36
Pablo Neira Ayuso262aee82011-07-05 19:17:08 +020037#include <osmocom/abis/e1_input.h>
Harald Weltef2737fc2011-08-16 14:30:10 +020038
39/* CONFIG */
Pablo Neira Ayuso262aee82011-07-05 19:17:08 +020040
Holger Hans Peter Freyther9d4fe512013-07-04 19:45:34 +020041#define E1_DRIVER_NAMES "(misdn|misdn_lapd|dahdi|ipa)"
Harald Weltece307b42011-08-21 01:18:05 +020042#define E1_DRIVER_HELP "mISDN supported E1 Card (kernel LAPD)\n" \
43 "mISDN supported E1 Card (userspace LAPD)\n" \
Pablo Neira Ayuso262aee82011-07-05 19:17:08 +020044 "DAHDI supported E1/T1/J1 Card\n" \
Holger Hans Peter Freyther36bac9a2012-07-20 23:49:52 +020045 "IPA TCP/IP input\n" \
Pablo Neira Ayuso262aee82011-07-05 19:17:08 +020046 "HSL TCP/IP input"
47
Harald Welte601a9c72011-08-16 14:17:49 +020048#define E1_LINE_HELP "Configure E1/T1/J1 Line\n" "Line Number\n"
49
Pablo Neira Ayuso262aee82011-07-05 19:17:08 +020050DEFUN(cfg_e1line_driver, cfg_e1_line_driver_cmd,
51 "e1_line <0-255> driver " E1_DRIVER_NAMES,
Harald Welte601a9c72011-08-16 14:17:49 +020052 E1_LINE_HELP "Set driver for this line\n"
Pablo Neira Ayuso262aee82011-07-05 19:17:08 +020053 E1_DRIVER_HELP)
54{
55 struct e1inp_line *line;
56 int e1_nr = atoi(argv[0]);
57
Pablo Neira Ayuso3832c4f2011-07-07 17:47:26 +020058 line = e1inp_line_find(e1_nr);
Pablo Neira Ayuso262aee82011-07-05 19:17:08 +020059 if (line) {
60 vty_out(vty, "%% Line %d already exists%s", e1_nr, VTY_NEWLINE);
61 return CMD_WARNING;
62 }
63 line = e1inp_line_create(e1_nr, argv[1]);
64 if (!line) {
65 vty_out(vty, "%% Error creating line %d%s", e1_nr, VTY_NEWLINE);
66 return CMD_WARNING;
67 }
68
69 return CMD_SUCCESS;
70}
71
Harald Weltec2889512011-09-13 23:49:04 +010072DEFUN(cfg_e1line_port, cfg_e1_line_port_cmd,
Harald Welte356918f2011-09-26 22:54:51 +020073 "e1_line <0-255> port <0-255>",
74 E1_LINE_HELP "Set physical port/span/card number\n"
Harald Weltec2889512011-09-13 23:49:04 +010075 "E1/T1 Port/Span/Card number\n")
76{
77 struct e1inp_line *line;
78 int e1_nr = atoi(argv[0]);
79
80 line = e1inp_line_find(e1_nr);
81 if (!line) {
82 vty_out(vty, "%% Line %d doesn't exist%s", e1_nr, VTY_NEWLINE);
83 return CMD_WARNING;
84 }
85
86 line->port_nr = atoi(argv[1]);
87
88 return CMD_SUCCESS;
89}
90
Jacob Erlbeck86dae842014-01-16 18:10:37 +010091#define KEEPALIVE_HELP "Enable keep-alive probing\n"
92static int set_keepalive_params(struct vty *vty, int e1_nr,
93 int idle, int num_probes, int probe_interval)
94{
95 struct e1inp_line *line = e1inp_line_find(e1_nr);
96
97 if (!line) {
98 vty_out(vty, "%% Line %d doesn't exist%s", e1_nr, VTY_NEWLINE);
99 return CMD_WARNING;
100 }
101 if (!line->driver->has_keepalive && num_probes != 0) {
102 vty_out(vty, "%% Driver '%s' does not support keep alive%s",
103 line->driver->name, VTY_NEWLINE);
104 return CMD_WARNING;
105 }
106
107 line->keepalive_idle_timeout = idle;
108 line->keepalive_num_probes = num_probes;
109 line->keepalive_probe_interval = probe_interval;
110
111 return CMD_SUCCESS;
112}
113
114DEFUN(cfg_e1line_keepalive, cfg_e1_line_keepalive_cmd,
115 "e1_line <0-255> keepalive",
116 E1_LINE_HELP KEEPALIVE_HELP)
117{
118 return set_keepalive_params(vty, atoi(argv[0]),
119 E1INP_USE_DEFAULT, E1INP_USE_DEFAULT,
120 E1INP_USE_DEFAULT);
121}
122
123DEFUN(cfg_e1line_keepalive_params, cfg_e1_line_keepalive_params_cmd,
124 "e1_line <0-255> keepalive <1-300> <1-20> <1-300>",
125 E1_LINE_HELP KEEPALIVE_HELP
126 "Idle interval in seconds before probes are sent\n"
127 "Number of probes to sent\n"
128 "Delay between probe packets in seconds\n")
129{
130 return set_keepalive_params(vty, atoi(argv[0]),
131 atoi(argv[1]), atoi(argv[2]), atoi(argv[3]));
132}
133
134DEFUN(cfg_e1line_no_keepalive, cfg_e1_line_no_keepalive_cmd,
135 "no e1_line <0-255> keepalive",
136 NO_STR E1_LINE_HELP KEEPALIVE_HELP)
137{
138 return set_keepalive_params(vty, atoi(argv[0]), 0, 0, 0);
139}
140
Harald Welte601a9c72011-08-16 14:17:49 +0200141DEFUN(cfg_e1line_name, cfg_e1_line_name_cmd,
142 "e1_line <0-255> name .LINE",
143 E1_LINE_HELP "Set name for this line\n" "Human readable name\n")
144{
145 struct e1inp_line *line;
146 int e1_nr = atoi(argv[0]);
147
148 line = e1inp_line_find(e1_nr);
149 if (!line) {
150 vty_out(vty, "%% Line %d doesn't exist%s", e1_nr, VTY_NEWLINE);
151 return CMD_WARNING;
152 }
153 if (line->name) {
154 talloc_free((void *)line->name);
155 line->name = NULL;
156 }
157 line->name = talloc_strdup(line, argv[1]);
158
159 return CMD_SUCCESS;
160}
161
Pablo Neira Ayuso262aee82011-07-05 19:17:08 +0200162DEFUN(cfg_e1inp, cfg_e1inp_cmd,
163 "e1_input",
164 "Configure E1/T1/J1 TDM input\n")
165{
Harald Weltecc2241b2011-07-19 16:06:06 +0200166 vty->node = L_E1INP_NODE;
Pablo Neira Ayuso262aee82011-07-05 19:17:08 +0200167
168 return CMD_SUCCESS;
169}
170
Neels Hofmeyr0db1d432016-02-22 13:29:09 +0100171DEFUN(cfg_ipa_bind,
172 cfg_ipa_bind_cmd,
173 "ipa bind A.B.C.D",
174 "ipa driver config\n"
175 "Set ipa local bind address\n"
176 "Listen on this IP address (default 0.0.0.0)\n")
177{
178 e1inp_ipa_set_bind_addr(argv[0]);
179 return CMD_SUCCESS;
180}
181
Pablo Neira Ayuso262aee82011-07-05 19:17:08 +0200182static int e1inp_config_write(struct vty *vty)
183{
184 struct e1inp_line *line;
185
186 if (llist_empty(&e1inp_line_list))
187 return CMD_SUCCESS;
188
189 vty_out(vty, "e1_input%s", VTY_NEWLINE);
190
191 llist_for_each_entry(line, &e1inp_line_list, list) {
192 vty_out(vty, " e1_line %u driver %s%s", line->num,
193 line->driver->name, VTY_NEWLINE);
Harald Weltec2889512011-09-13 23:49:04 +0100194 vty_out(vty, " e1_line %u port %u%s", line->num,
195 line->port_nr, VTY_NEWLINE);
Harald Welte601a9c72011-08-16 14:17:49 +0200196 if (line->name)
197 vty_out(vty, " e1_line %u name %s%s", line->num,
198 line->name, VTY_NEWLINE);
Jacob Erlbeck86dae842014-01-16 18:10:37 +0100199 if (!line->keepalive_num_probes)
200 vty_out(vty, " no e1_line %u keepalive%s", line->num,
201 VTY_NEWLINE);
202 else if (line->keepalive_idle_timeout == E1INP_USE_DEFAULT &&
203 line->keepalive_num_probes == E1INP_USE_DEFAULT &&
204 line->keepalive_probe_interval == E1INP_USE_DEFAULT)
205 vty_out(vty, " e1_line %u keepalive%s", line->num,
206 VTY_NEWLINE);
207 else
208 vty_out(vty, " e1_line %u keepalive %d %d %d%s",
209 line->num,
210 line->keepalive_idle_timeout,
211 line->keepalive_num_probes,
212 line->keepalive_probe_interval,
213 VTY_NEWLINE);
214
Pablo Neira Ayuso262aee82011-07-05 19:17:08 +0200215 }
Neels Hofmeyr0db1d432016-02-22 13:29:09 +0100216
217 const char *ipa_bind = e1inp_ipa_get_bind_addr();
218 if (ipa_bind && (strcmp(ipa_bind, "0.0.0.0") != 0))
219 vty_out(vty, " ipa bind %s%s",
220 ipa_bind, VTY_NEWLINE);
221
Pablo Neira Ayuso262aee82011-07-05 19:17:08 +0200222 return CMD_SUCCESS;
223}
224
Harald Weltef2737fc2011-08-16 14:30:10 +0200225/* SHOW */
226
Harald Welte6e37c592011-08-11 12:43:31 +0200227static void e1drv_dump_vty(struct vty *vty, struct e1inp_driver *drv)
228{
229 vty_out(vty, "E1 Input Driver %s%s", drv->name, VTY_NEWLINE);
230}
231
232DEFUN(show_e1drv,
233 show_e1drv_cmd,
234 "show e1_driver",
235 SHOW_STR "Display information about available E1 drivers\n")
236{
237 struct e1inp_driver *drv;
238
239 llist_for_each_entry(drv, &e1inp_driver_list, list)
240 e1drv_dump_vty(vty, drv);
241
242 return CMD_SUCCESS;
243}
244
Harald Weltef2737fc2011-08-16 14:30:10 +0200245static void e1line_dump_vty(struct vty *vty, struct e1inp_line *line,
246 int stats)
Harald Welte6e37c592011-08-11 12:43:31 +0200247{
248 vty_out(vty, "E1 Line Number %u, Name %s, Driver %s%s",
249 line->num, line->name ? line->name : "",
250 line->driver->name, VTY_NEWLINE);
Harald Weltefe05cf52011-09-26 23:18:41 +0200251 if (line->driver->vty_show)
252 line->driver->vty_show(vty, line);
Harald Weltef2737fc2011-08-16 14:30:10 +0200253 if (stats)
254 vty_out_rate_ctr_group(vty, " ", line->rate_ctr);
Harald Welte6e37c592011-08-11 12:43:31 +0200255}
256
257DEFUN(show_e1line,
258 show_e1line_cmd,
Harald Weltef2737fc2011-08-16 14:30:10 +0200259 "show e1_line [line_nr] [stats]",
Harald Welte6e37c592011-08-11 12:43:31 +0200260 SHOW_STR "Display information about a E1 line\n"
Holger Hans Peter Freyther9e8f1c02012-07-21 00:09:52 +0200261 "E1 Line Number\n" "Include statistics\n")
Harald Welte6e37c592011-08-11 12:43:31 +0200262{
263 struct e1inp_line *line;
Harald Weltef2737fc2011-08-16 14:30:10 +0200264 int stats = 0;
Harald Welte6e37c592011-08-11 12:43:31 +0200265
Harald Weltef2737fc2011-08-16 14:30:10 +0200266 if (argc >= 1 && strcmp(argv[0], "stats")) {
Harald Welte6e37c592011-08-11 12:43:31 +0200267 int num = atoi(argv[0]);
Harald Weltef2737fc2011-08-16 14:30:10 +0200268 if (argc >= 2)
269 stats = 1;
Harald Welte6e37c592011-08-11 12:43:31 +0200270 llist_for_each_entry(line, &e1inp_line_list, list) {
271 if (line->num == num) {
Harald Weltef2737fc2011-08-16 14:30:10 +0200272 e1line_dump_vty(vty, line, stats);
Harald Welte6e37c592011-08-11 12:43:31 +0200273 return CMD_SUCCESS;
274 }
275 }
276 return CMD_WARNING;
277 }
278
Harald Weltef2737fc2011-08-16 14:30:10 +0200279 if (argc >= 1 && !strcmp(argv[0], "stats"))
280 stats = 1;
281
Harald Welte6e37c592011-08-11 12:43:31 +0200282 llist_for_each_entry(line, &e1inp_line_list, list)
Harald Weltef2737fc2011-08-16 14:30:10 +0200283 e1line_dump_vty(vty, line, stats);
Harald Welte6e37c592011-08-11 12:43:31 +0200284
285 return CMD_SUCCESS;
286}
287
288static void e1ts_dump_vty(struct vty *vty, struct e1inp_ts *ts)
289{
290 if (ts->type == E1INP_TS_TYPE_NONE)
291 return;
292 vty_out(vty, "E1 Timeslot %2u of Line %u is Type %s%s",
293 ts->num, ts->line->num, e1inp_tstype_name(ts->type),
294 VTY_NEWLINE);
295}
296
297DEFUN(show_e1ts,
298 show_e1ts_cmd,
299 "show e1_timeslot [line_nr] [ts_nr]",
300 SHOW_STR "Display information about a E1 timeslot\n"
301 "E1 Line Number\n" "E1 Timeslot Number\n")
302{
303 struct e1inp_line *line = NULL;
304 struct e1inp_ts *ts;
305 int ts_nr;
306
Holger Hans Peter Freyther8cbd9f42013-07-04 20:00:33 +0200307 if (argc <= 0) {
Harald Welte6e37c592011-08-11 12:43:31 +0200308 llist_for_each_entry(line, &e1inp_line_list, list) {
Harald Weltec2889512011-09-13 23:49:04 +0100309 for (ts_nr = 0; ts_nr < line->num_ts; ts_nr++) {
Harald Welte6e37c592011-08-11 12:43:31 +0200310 ts = &line->ts[ts_nr];
311 e1ts_dump_vty(vty, ts);
312 }
313 }
314 return CMD_SUCCESS;
315 }
316 if (argc >= 1) {
317 int num = atoi(argv[0]);
318 struct e1inp_line *l;
319 llist_for_each_entry(l, &e1inp_line_list, list) {
320 if (l->num == num) {
321 line = l;
322 break;
323 }
324 }
325 if (!line) {
326 vty_out(vty, "E1 line %s is invalid%s",
327 argv[0], VTY_NEWLINE);
328 return CMD_WARNING;
329 }
330 }
331 if (argc >= 2) {
332 ts_nr = atoi(argv[1]);
Harald Weltec2889512011-09-13 23:49:04 +0100333 if (ts_nr >= line->num_ts) {
Harald Welte6e37c592011-08-11 12:43:31 +0200334 vty_out(vty, "E1 timeslot %s is invalid%s",
335 argv[1], VTY_NEWLINE);
336 return CMD_WARNING;
337 }
338 ts = &line->ts[ts_nr];
339 e1ts_dump_vty(vty, ts);
340 return CMD_SUCCESS;
341 } else {
Harald Weltec2889512011-09-13 23:49:04 +0100342 for (ts_nr = 0; ts_nr < line->num_ts; ts_nr++) {
Harald Welte6e37c592011-08-11 12:43:31 +0200343 ts = &line->ts[ts_nr];
344 e1ts_dump_vty(vty, ts);
345 }
346 return CMD_SUCCESS;
347 }
348 return CMD_SUCCESS;
349}
350
351
Pablo Neira Ayuso262aee82011-07-05 19:17:08 +0200352struct cmd_node e1inp_node = {
Harald Weltecc2241b2011-07-19 16:06:06 +0200353 L_E1INP_NODE,
Jacob Erlbeck1c9dcc12013-11-11 14:13:13 +0100354 "%s(config-e1_input)# ",
Pablo Neira Ayuso262aee82011-07-05 19:17:08 +0200355 1,
356};
357
358int e1inp_vty_init(void)
359{
360 install_element(CONFIG_NODE, &cfg_e1inp_cmd);
361 install_node(&e1inp_node, e1inp_config_write);
Jacob Erlbeck37f06952013-11-11 14:13:12 +0100362
363 vty_install_default(L_E1INP_NODE);
Harald Weltecc2241b2011-07-19 16:06:06 +0200364 install_element(L_E1INP_NODE, &cfg_e1_line_driver_cmd);
Harald Weltec2889512011-09-13 23:49:04 +0100365 install_element(L_E1INP_NODE, &cfg_e1_line_port_cmd);
Harald Welte601a9c72011-08-16 14:17:49 +0200366 install_element(L_E1INP_NODE, &cfg_e1_line_name_cmd);
Jacob Erlbeck86dae842014-01-16 18:10:37 +0100367 install_element(L_E1INP_NODE, &cfg_e1_line_keepalive_cmd);
368 install_element(L_E1INP_NODE, &cfg_e1_line_keepalive_params_cmd);
369 install_element(L_E1INP_NODE, &cfg_e1_line_no_keepalive_cmd);
Pablo Neira Ayuso262aee82011-07-05 19:17:08 +0200370
Neels Hofmeyr0db1d432016-02-22 13:29:09 +0100371 install_element(L_E1INP_NODE, &cfg_ipa_bind_cmd);
372
Harald Welte6e37c592011-08-11 12:43:31 +0200373 install_element_ve(&show_e1drv_cmd);
374 install_element_ve(&show_e1line_cmd);
375 install_element_ve(&show_e1ts_cmd);
376
Pablo Neira Ayuso262aee82011-07-05 19:17:08 +0200377 return 0;
378}