blob: 10c46874a30e1236d4b1fd6ab44ec91f3a58cb1d [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
Harald Weltece307b42011-08-21 01:18:05 +020041#define E1_DRIVER_NAMES "(misdn|misdn_lapd|dahdi|ipa|hsl)"
42#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" \
45 "IPA TCP/IP input" \
46 "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,
73 "e1_line <0-255> port <0-255>"
74 E1_LINE_HELP, "Set physical port/span/card number\n"
75 "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 Weltef2737fc2011-08-16 14:30:10 +0200168 if (stats)
169 vty_out_rate_ctr_group(vty, " ", line->rate_ctr);
Harald Welte6e37c592011-08-11 12:43:31 +0200170}
171
172DEFUN(show_e1line,
173 show_e1line_cmd,
Harald Weltef2737fc2011-08-16 14:30:10 +0200174 "show e1_line [line_nr] [stats]",
Harald Welte6e37c592011-08-11 12:43:31 +0200175 SHOW_STR "Display information about a E1 line\n"
176 "E1 Line Number\n")
177{
178 struct e1inp_line *line;
Harald Weltef2737fc2011-08-16 14:30:10 +0200179 int stats = 0;
Harald Welte6e37c592011-08-11 12:43:31 +0200180
Harald Weltef2737fc2011-08-16 14:30:10 +0200181 if (argc >= 1 && strcmp(argv[0], "stats")) {
Harald Welte6e37c592011-08-11 12:43:31 +0200182 int num = atoi(argv[0]);
Harald Weltef2737fc2011-08-16 14:30:10 +0200183 if (argc >= 2)
184 stats = 1;
Harald Welte6e37c592011-08-11 12:43:31 +0200185 llist_for_each_entry(line, &e1inp_line_list, list) {
186 if (line->num == num) {
Harald Weltef2737fc2011-08-16 14:30:10 +0200187 e1line_dump_vty(vty, line, stats);
Harald Welte6e37c592011-08-11 12:43:31 +0200188 return CMD_SUCCESS;
189 }
190 }
191 return CMD_WARNING;
192 }
193
Harald Weltef2737fc2011-08-16 14:30:10 +0200194 if (argc >= 1 && !strcmp(argv[0], "stats"))
195 stats = 1;
196
Harald Welte6e37c592011-08-11 12:43:31 +0200197 llist_for_each_entry(line, &e1inp_line_list, list)
Harald Weltef2737fc2011-08-16 14:30:10 +0200198 e1line_dump_vty(vty, line, stats);
Harald Welte6e37c592011-08-11 12:43:31 +0200199
200 return CMD_SUCCESS;
201}
202
203static void e1ts_dump_vty(struct vty *vty, struct e1inp_ts *ts)
204{
205 if (ts->type == E1INP_TS_TYPE_NONE)
206 return;
207 vty_out(vty, "E1 Timeslot %2u of Line %u is Type %s%s",
208 ts->num, ts->line->num, e1inp_tstype_name(ts->type),
209 VTY_NEWLINE);
210}
211
212DEFUN(show_e1ts,
213 show_e1ts_cmd,
214 "show e1_timeslot [line_nr] [ts_nr]",
215 SHOW_STR "Display information about a E1 timeslot\n"
216 "E1 Line Number\n" "E1 Timeslot Number\n")
217{
218 struct e1inp_line *line = NULL;
219 struct e1inp_ts *ts;
220 int ts_nr;
221
222 if (argc == 0) {
223 llist_for_each_entry(line, &e1inp_line_list, list) {
Harald Weltec2889512011-09-13 23:49:04 +0100224 for (ts_nr = 0; ts_nr < line->num_ts; ts_nr++) {
Harald Welte6e37c592011-08-11 12:43:31 +0200225 ts = &line->ts[ts_nr];
226 e1ts_dump_vty(vty, ts);
227 }
228 }
229 return CMD_SUCCESS;
230 }
231 if (argc >= 1) {
232 int num = atoi(argv[0]);
233 struct e1inp_line *l;
234 llist_for_each_entry(l, &e1inp_line_list, list) {
235 if (l->num == num) {
236 line = l;
237 break;
238 }
239 }
240 if (!line) {
241 vty_out(vty, "E1 line %s is invalid%s",
242 argv[0], VTY_NEWLINE);
243 return CMD_WARNING;
244 }
245 }
246 if (argc >= 2) {
247 ts_nr = atoi(argv[1]);
Harald Weltec2889512011-09-13 23:49:04 +0100248 if (ts_nr >= line->num_ts) {
Harald Welte6e37c592011-08-11 12:43:31 +0200249 vty_out(vty, "E1 timeslot %s is invalid%s",
250 argv[1], VTY_NEWLINE);
251 return CMD_WARNING;
252 }
253 ts = &line->ts[ts_nr];
254 e1ts_dump_vty(vty, ts);
255 return CMD_SUCCESS;
256 } else {
Harald Weltec2889512011-09-13 23:49:04 +0100257 for (ts_nr = 0; ts_nr < line->num_ts; ts_nr++) {
Harald Welte6e37c592011-08-11 12:43:31 +0200258 ts = &line->ts[ts_nr];
259 e1ts_dump_vty(vty, ts);
260 }
261 return CMD_SUCCESS;
262 }
263 return CMD_SUCCESS;
264}
265
266
Pablo Neira Ayuso262aee82011-07-05 19:17:08 +0200267struct cmd_node e1inp_node = {
Harald Weltecc2241b2011-07-19 16:06:06 +0200268 L_E1INP_NODE,
Pablo Neira Ayuso262aee82011-07-05 19:17:08 +0200269 "%s(e1_input)#",
270 1,
271};
272
273int e1inp_vty_init(void)
274{
275 install_element(CONFIG_NODE, &cfg_e1inp_cmd);
276 install_node(&e1inp_node, e1inp_config_write);
Harald Weltecc2241b2011-07-19 16:06:06 +0200277 install_element(L_E1INP_NODE, &cfg_e1_line_driver_cmd);
Harald Weltec2889512011-09-13 23:49:04 +0100278 install_element(L_E1INP_NODE, &cfg_e1_line_port_cmd);
Harald Welte601a9c72011-08-16 14:17:49 +0200279 install_element(L_E1INP_NODE, &cfg_e1_line_name_cmd);
Pablo Neira Ayuso262aee82011-07-05 19:17:08 +0200280
Harald Welte6e37c592011-08-11 12:43:31 +0200281 install_element_ve(&show_e1drv_cmd);
282 install_element_ve(&show_e1line_cmd);
283 install_element_ve(&show_e1ts_cmd);
284
Pablo Neira Ayuso262aee82011-07-05 19:17:08 +0200285 return 0;
286}