blob: faaebd8700f0a5e4a12a41b9af4bf7776c7c981c [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
Harald Welte601a9c72011-08-16 14:17:49 +020091DEFUN(cfg_e1line_name, cfg_e1_line_name_cmd,
92 "e1_line <0-255> name .LINE",
93 E1_LINE_HELP "Set name for this line\n" "Human readable name\n")
94{
95 struct e1inp_line *line;
96 int e1_nr = atoi(argv[0]);
97
98 line = e1inp_line_find(e1_nr);
99 if (!line) {
100 vty_out(vty, "%% Line %d doesn't exist%s", e1_nr, VTY_NEWLINE);
101 return CMD_WARNING;
102 }
103 if (line->name) {
104 talloc_free((void *)line->name);
105 line->name = NULL;
106 }
107 line->name = talloc_strdup(line, argv[1]);
108
109 return CMD_SUCCESS;
110}
111
Pablo Neira Ayuso262aee82011-07-05 19:17:08 +0200112DEFUN(cfg_e1inp, cfg_e1inp_cmd,
113 "e1_input",
114 "Configure E1/T1/J1 TDM input\n")
115{
Harald Weltecc2241b2011-07-19 16:06:06 +0200116 vty->node = L_E1INP_NODE;
Pablo Neira Ayuso262aee82011-07-05 19:17:08 +0200117
118 return CMD_SUCCESS;
119}
120
121static int e1inp_config_write(struct vty *vty)
122{
123 struct e1inp_line *line;
124
125 if (llist_empty(&e1inp_line_list))
126 return CMD_SUCCESS;
127
128 vty_out(vty, "e1_input%s", VTY_NEWLINE);
129
130 llist_for_each_entry(line, &e1inp_line_list, list) {
131 vty_out(vty, " e1_line %u driver %s%s", line->num,
132 line->driver->name, VTY_NEWLINE);
Harald Weltec2889512011-09-13 23:49:04 +0100133 vty_out(vty, " e1_line %u port %u%s", line->num,
134 line->port_nr, VTY_NEWLINE);
Harald Welte601a9c72011-08-16 14:17:49 +0200135 if (line->name)
136 vty_out(vty, " e1_line %u name %s%s", line->num,
137 line->name, VTY_NEWLINE);
Pablo Neira Ayuso262aee82011-07-05 19:17:08 +0200138 }
139 return CMD_SUCCESS;
140}
141
Harald Weltef2737fc2011-08-16 14:30:10 +0200142/* SHOW */
143
Harald Welte6e37c592011-08-11 12:43:31 +0200144static void e1drv_dump_vty(struct vty *vty, struct e1inp_driver *drv)
145{
146 vty_out(vty, "E1 Input Driver %s%s", drv->name, VTY_NEWLINE);
147}
148
149DEFUN(show_e1drv,
150 show_e1drv_cmd,
151 "show e1_driver",
152 SHOW_STR "Display information about available E1 drivers\n")
153{
154 struct e1inp_driver *drv;
155
156 llist_for_each_entry(drv, &e1inp_driver_list, list)
157 e1drv_dump_vty(vty, drv);
158
159 return CMD_SUCCESS;
160}
161
Harald Weltef2737fc2011-08-16 14:30:10 +0200162static void e1line_dump_vty(struct vty *vty, struct e1inp_line *line,
163 int stats)
Harald Welte6e37c592011-08-11 12:43:31 +0200164{
165 vty_out(vty, "E1 Line Number %u, Name %s, Driver %s%s",
166 line->num, line->name ? line->name : "",
167 line->driver->name, VTY_NEWLINE);
Harald Weltefe05cf52011-09-26 23:18:41 +0200168 if (line->driver->vty_show)
169 line->driver->vty_show(vty, line);
Harald Weltef2737fc2011-08-16 14:30:10 +0200170 if (stats)
171 vty_out_rate_ctr_group(vty, " ", line->rate_ctr);
Harald Welte6e37c592011-08-11 12:43:31 +0200172}
173
174DEFUN(show_e1line,
175 show_e1line_cmd,
Harald Weltef2737fc2011-08-16 14:30:10 +0200176 "show e1_line [line_nr] [stats]",
Harald Welte6e37c592011-08-11 12:43:31 +0200177 SHOW_STR "Display information about a E1 line\n"
Holger Hans Peter Freyther9e8f1c02012-07-21 00:09:52 +0200178 "E1 Line Number\n" "Include statistics\n")
Harald Welte6e37c592011-08-11 12:43:31 +0200179{
180 struct e1inp_line *line;
Harald Weltef2737fc2011-08-16 14:30:10 +0200181 int stats = 0;
Harald Welte6e37c592011-08-11 12:43:31 +0200182
Harald Weltef2737fc2011-08-16 14:30:10 +0200183 if (argc >= 1 && strcmp(argv[0], "stats")) {
Harald Welte6e37c592011-08-11 12:43:31 +0200184 int num = atoi(argv[0]);
Harald Weltef2737fc2011-08-16 14:30:10 +0200185 if (argc >= 2)
186 stats = 1;
Harald Welte6e37c592011-08-11 12:43:31 +0200187 llist_for_each_entry(line, &e1inp_line_list, list) {
188 if (line->num == num) {
Harald Weltef2737fc2011-08-16 14:30:10 +0200189 e1line_dump_vty(vty, line, stats);
Harald Welte6e37c592011-08-11 12:43:31 +0200190 return CMD_SUCCESS;
191 }
192 }
193 return CMD_WARNING;
194 }
195
Harald Weltef2737fc2011-08-16 14:30:10 +0200196 if (argc >= 1 && !strcmp(argv[0], "stats"))
197 stats = 1;
198
Harald Welte6e37c592011-08-11 12:43:31 +0200199 llist_for_each_entry(line, &e1inp_line_list, list)
Harald Weltef2737fc2011-08-16 14:30:10 +0200200 e1line_dump_vty(vty, line, stats);
Harald Welte6e37c592011-08-11 12:43:31 +0200201
202 return CMD_SUCCESS;
203}
204
205static void e1ts_dump_vty(struct vty *vty, struct e1inp_ts *ts)
206{
207 if (ts->type == E1INP_TS_TYPE_NONE)
208 return;
209 vty_out(vty, "E1 Timeslot %2u of Line %u is Type %s%s",
210 ts->num, ts->line->num, e1inp_tstype_name(ts->type),
211 VTY_NEWLINE);
212}
213
214DEFUN(show_e1ts,
215 show_e1ts_cmd,
216 "show e1_timeslot [line_nr] [ts_nr]",
217 SHOW_STR "Display information about a E1 timeslot\n"
218 "E1 Line Number\n" "E1 Timeslot Number\n")
219{
220 struct e1inp_line *line = NULL;
221 struct e1inp_ts *ts;
222 int ts_nr;
223
Holger Hans Peter Freyther8cbd9f42013-07-04 20:00:33 +0200224 if (argc <= 0) {
Harald Welte6e37c592011-08-11 12:43:31 +0200225 llist_for_each_entry(line, &e1inp_line_list, list) {
Harald Weltec2889512011-09-13 23:49:04 +0100226 for (ts_nr = 0; ts_nr < line->num_ts; ts_nr++) {
Harald Welte6e37c592011-08-11 12:43:31 +0200227 ts = &line->ts[ts_nr];
228 e1ts_dump_vty(vty, ts);
229 }
230 }
231 return CMD_SUCCESS;
232 }
233 if (argc >= 1) {
234 int num = atoi(argv[0]);
235 struct e1inp_line *l;
236 llist_for_each_entry(l, &e1inp_line_list, list) {
237 if (l->num == num) {
238 line = l;
239 break;
240 }
241 }
242 if (!line) {
243 vty_out(vty, "E1 line %s is invalid%s",
244 argv[0], VTY_NEWLINE);
245 return CMD_WARNING;
246 }
247 }
248 if (argc >= 2) {
249 ts_nr = atoi(argv[1]);
Harald Weltec2889512011-09-13 23:49:04 +0100250 if (ts_nr >= line->num_ts) {
Harald Welte6e37c592011-08-11 12:43:31 +0200251 vty_out(vty, "E1 timeslot %s is invalid%s",
252 argv[1], VTY_NEWLINE);
253 return CMD_WARNING;
254 }
255 ts = &line->ts[ts_nr];
256 e1ts_dump_vty(vty, ts);
257 return CMD_SUCCESS;
258 } else {
Harald Weltec2889512011-09-13 23:49:04 +0100259 for (ts_nr = 0; ts_nr < line->num_ts; ts_nr++) {
Harald Welte6e37c592011-08-11 12:43:31 +0200260 ts = &line->ts[ts_nr];
261 e1ts_dump_vty(vty, ts);
262 }
263 return CMD_SUCCESS;
264 }
265 return CMD_SUCCESS;
266}
267
268
Pablo Neira Ayuso262aee82011-07-05 19:17:08 +0200269struct cmd_node e1inp_node = {
Harald Weltecc2241b2011-07-19 16:06:06 +0200270 L_E1INP_NODE,
Pablo Neira Ayuso262aee82011-07-05 19:17:08 +0200271 "%s(e1_input)#",
272 1,
273};
274
275int e1inp_vty_init(void)
276{
277 install_element(CONFIG_NODE, &cfg_e1inp_cmd);
278 install_node(&e1inp_node, e1inp_config_write);
Jacob Erlbeck37f06952013-11-11 14:13:12 +0100279
280 vty_install_default(L_E1INP_NODE);
Harald Weltecc2241b2011-07-19 16:06:06 +0200281 install_element(L_E1INP_NODE, &cfg_e1_line_driver_cmd);
Harald Weltec2889512011-09-13 23:49:04 +0100282 install_element(L_E1INP_NODE, &cfg_e1_line_port_cmd);
Harald Welte601a9c72011-08-16 14:17:49 +0200283 install_element(L_E1INP_NODE, &cfg_e1_line_name_cmd);
Pablo Neira Ayuso262aee82011-07-05 19:17:08 +0200284
Harald Welte6e37c592011-08-11 12:43:31 +0200285 install_element_ve(&show_e1drv_cmd);
286 install_element_ve(&show_e1line_cmd);
287 install_element_ve(&show_e1ts_cmd);
288
Pablo Neira Ayuso262aee82011-07-05 19:17:08 +0200289 return 0;
290}