blob: 49ac3e2b4c2f00d5555ce205a1bf7fb2042e235b [file] [log] [blame]
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +08001/* OpenBSC NAT interface to quagga VTY */
2/* (C) 2010 by Holger Hans Peter Freyther
3 * (C) 2010 by On-Waves
4 * All Rights Reserved
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License along
17 * with this program; if not, write to the Free Software Foundation, Inc.,
18 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
19 *
20 */
21
Holger Hans Peter Freyther1398f132010-06-15 20:14:08 +080022#include <openbsc/vty.h>
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +080023#include <openbsc/bsc_nat.h>
Holger Hans Peter Freytheraad82ce2010-05-11 19:07:39 +080024#include <openbsc/bsc_msc.h>
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +080025#include <openbsc/gsm_04_08.h>
Holger Hans Peter Freytherf7d33352010-06-15 18:50:26 +080026#include <openbsc/mgcp.h>
Holger Hans Peter Freyther5f291d52010-04-06 12:01:15 +020027#include <openbsc/vty.h>
Holger Hans Peter Freyther6c45f2e2010-06-15 19:06:18 +080028
29#include <osmocore/talloc.h>
Holger Hans Peter Freytherb2c38eb2010-06-17 18:16:00 +080030#include <osmocore/rate_ctr.h>
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +080031
32#include <sccp/sccp.h>
33
34#include <stdlib.h>
35
36static struct bsc_nat *_nat;
37
38static struct cmd_node nat_node = {
39 NAT_NODE,
40 "%s(nat)#",
41 1,
42};
43
44static struct cmd_node bsc_node = {
Holger Hans Peter Freyther7b4a53d2010-06-17 14:42:20 +080045 NAT_BSC_NODE,
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +080046 "%s(bsc)#",
47 1,
48};
49
Holger Hans Peter Freytherd77c8172010-06-08 10:53:39 +080050static void write_acc_lst(struct vty *vty, struct bsc_nat_acc_lst *lst)
51{
52 struct bsc_nat_acc_lst_entry *entry;
53
54 llist_for_each_entry(entry, &lst->fltr_list, list) {
55 if (entry->imsi_allow)
56 vty_out(vty, " access-list %s imsi-allow %s%s",
57 lst->name, entry->imsi_allow, VTY_NEWLINE);
58 if (entry->imsi_deny)
59 vty_out(vty, " access-list %s imsi-deny %s%s",
60 lst->name, entry->imsi_deny, VTY_NEWLINE);
61 }
62}
63
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +080064static int config_write_nat(struct vty *vty)
65{
Holger Hans Peter Freyther29c67032010-06-08 10:14:44 +080066 struct bsc_nat_acc_lst *lst;
Holger Hans Peter Freyther8affef52010-06-01 01:03:13 +080067
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +080068 vty_out(vty, "nat%s", VTY_NEWLINE);
Holger Hans Peter Freythera88742c2010-06-15 18:51:04 +080069 vty_out(vty, " msc ip %s%s", _nat->msc_ip, VTY_NEWLINE);
Holger Hans Peter Freyther81395532010-04-17 07:48:45 +020070 vty_out(vty, " msc port %d%s", _nat->msc_port, VTY_NEWLINE);
Holger Hans Peter Freytherda35a8d2010-05-05 16:57:38 +080071 vty_out(vty, " timeout auth %d%s", _nat->auth_timeout, VTY_NEWLINE);
72 vty_out(vty, " timeout ping %d%s", _nat->ping_timeout, VTY_NEWLINE);
73 vty_out(vty, " timeout pong %d%s", _nat->pong_timeout, VTY_NEWLINE);
Holger Hans Peter Freythere635dab2010-05-15 00:14:58 +080074 if (_nat->token)
75 vty_out(vty, " token %s%s", _nat->token, VTY_NEWLINE);
Holger Hans Peter Freyther078321a2010-05-31 10:36:35 +080076 vty_out(vty, " ip-tos %d%s", _nat->bsc_ip_tos, VTY_NEWLINE);
Holger Hans Peter Freyther8affef52010-06-01 01:03:13 +080077 if (_nat->acc_lst_name)
78 vty_out(vty, " access-list-name %s%s", _nat->acc_lst_name, VTY_NEWLINE);
79
80 llist_for_each_entry(lst, &_nat->access_lists, list) {
Holger Hans Peter Freytherd77c8172010-06-08 10:53:39 +080081 write_acc_lst(vty, lst);
Holger Hans Peter Freyther8affef52010-06-01 01:03:13 +080082 }
83
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +080084 return CMD_SUCCESS;
85}
86
87static void config_write_bsc_single(struct vty *vty, struct bsc_config *bsc)
88{
89 vty_out(vty, " bsc %u%s", bsc->nr, VTY_NEWLINE);
90 vty_out(vty, " token %s%s", bsc->token, VTY_NEWLINE);
Holger Hans Peter Freytherd1278c12010-04-16 16:52:20 +020091 vty_out(vty, " location_area_code %u%s", bsc->lac, VTY_NEWLINE);
Holger Hans Peter Freyther62e58432010-04-21 19:05:14 +080092 vty_out(vty, " paging forbidden %d%s", bsc->forbid_paging, VTY_NEWLINE);
Holger Hans Peter Freytherb6061012010-05-14 22:06:28 +080093 if (bsc->description)
94 vty_out(vty, " description %s%s", bsc->description, VTY_NEWLINE);
Holger Hans Peter Freyther8affef52010-06-01 01:03:13 +080095 if (bsc->acc_lst_name)
Holger Hans Peter Freyther27d36de2010-06-08 11:18:26 +080096 vty_out(vty, " access-list-name %s%s", bsc->acc_lst_name, VTY_NEWLINE);
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +080097}
98
99static int config_write_bsc(struct vty *vty)
100{
101 struct bsc_config *bsc;
102
103 llist_for_each_entry(bsc, &_nat->bsc_configs, entry)
104 config_write_bsc_single(vty, bsc);
105 return CMD_SUCCESS;
106}
107
108
Holger Hans Peter Freyther01a0b1b2010-04-19 16:06:43 +0800109DEFUN(show_sccp, show_sccp_cmd, "show sccp connections",
110 SHOW_STR "Display information about current SCCP connections")
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +0800111{
112 struct sccp_connections *con;
Holger Hans Peter Freytherb9af2fa2010-04-27 15:35:14 +0800113 vty_out(vty, "Listing all opening SCCP connections%s", VTY_NEWLINE);
Holger Hans Peter Freyther4bd22942010-04-27 13:11:18 +0800114
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +0800115 llist_for_each_entry(con, &_nat->sccp_connections, list_entry) {
Holger Hans Peter Freyther234d3122010-05-16 02:06:11 +0800116 vty_out(vty, "For BSC Nr: %d lac: %d; BSC ref: 0x%x; MUX ref: 0x%x; Network has ref: %d ref: 0x%x MSC/BSC mux: 0x%x/0x%x type: %s%s",
Holger Hans Peter Freyther47dd4942010-04-06 15:11:34 +0200117 con->bsc->cfg ? con->bsc->cfg->nr : -1,
118 con->bsc->cfg ? con->bsc->cfg->lac : -1,
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +0800119 sccp_src_ref_to_int(&con->real_ref),
Holger Hans Peter Freyther32d34362010-04-05 10:10:33 +0200120 sccp_src_ref_to_int(&con->patched_ref),
Holger Hans Peter Freyther4bd22942010-04-27 13:11:18 +0800121 con->has_remote_ref,
122 sccp_src_ref_to_int(&con->remote_ref),
Holger Hans Peter Freyther32d34362010-04-05 10:10:33 +0200123 con->msc_timeslot, con->bsc_timeslot,
Holger Hans Peter Freyther234d3122010-05-16 02:06:11 +0800124 bsc_con_type_to_string(con->con_type),
Holger Hans Peter Freyther32d34362010-04-05 10:10:33 +0200125 VTY_NEWLINE);
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +0800126 }
127
128 return CMD_SUCCESS;
129}
130
Holger Hans Peter Freyther01a0b1b2010-04-19 16:06:43 +0800131DEFUN(show_bsc, show_bsc_cmd, "show bsc connections",
132 SHOW_STR "Display information about current BSCs")
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +0800133{
134 struct bsc_connection *con;
Holger Hans Peter Freyther870663a2010-04-08 10:35:20 +0200135 struct sockaddr_in sock;
136 socklen_t len = sizeof(sock);
137
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +0800138 llist_for_each_entry(con, &_nat->bsc_connections, list_entry) {
Holger Hans Peter Freyther870663a2010-04-08 10:35:20 +0200139 getpeername(con->write_queue.bfd.fd, (struct sockaddr *) &sock, &len);
Holger Hans Peter Freyther3b879812010-05-01 15:32:32 +0800140 vty_out(vty, "BSC nr: %d lac: %d auth: %d fd: %d peername: %s%s",
Holger Hans Peter Freyther47dd4942010-04-06 15:11:34 +0200141 con->cfg ? con->cfg->nr : -1,
142 con->cfg ? con->cfg->lac : -1,
Holger Hans Peter Freyther870663a2010-04-08 10:35:20 +0200143 con->authenticated, con->write_queue.bfd.fd,
144 inet_ntoa(sock.sin_addr), VTY_NEWLINE);
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +0800145 }
146
147 return CMD_SUCCESS;
148}
149
Holger Hans Peter Freytherab7539c2010-04-22 13:36:46 +0800150DEFUN(show_bsc_cfg, show_bsc_cfg_cmd, "show bsc config",
151 SHOW_STR "Display information about known BSC configs")
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +0800152{
153 struct bsc_config *conf;
154 llist_for_each_entry(conf, &_nat->bsc_configs, entry) {
155 vty_out(vty, "BSC token: '%s' lac: %u nr: %u%s",
156 conf->token, conf->lac, conf->nr, VTY_NEWLINE);
Holger Hans Peter Freyther8affef52010-06-01 01:03:13 +0800157 if (conf->acc_lst_name)
158 vty_out(vty, " access-list: %s%s",
159 conf->acc_lst_name, VTY_NEWLINE);
Holger Hans Peter Freyther62e58432010-04-21 19:05:14 +0800160 vty_out(vty, " paging forbidden: %d%s",
161 conf->forbid_paging, VTY_NEWLINE);
Holger Hans Peter Freytherb6061012010-05-14 22:06:28 +0800162 if (conf->description)
163 vty_out(vty, " description: %s%s", conf->description, VTY_NEWLINE);
164 else
165 vty_out(vty, " No description.%s", VTY_NEWLINE);
166
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +0800167 }
168
169 return CMD_SUCCESS;
170}
171
Holger Hans Peter Freytherc95cfda2010-07-22 20:26:10 +0800172static void dump_stat_total(struct vty *vty, struct bsc_nat *nat)
173{
174 vty_out(vty, "NAT statistics%s", VTY_NEWLINE);
175 vty_out(vty, " SCCP Connections %lu total, %lu calls%s",
176 counter_get(nat->stats.sccp.conn),
177 counter_get(nat->stats.sccp.calls), VTY_NEWLINE);
178 vty_out(vty, " MSC Connections %lu%s",
179 counter_get(nat->stats.msc.reconn), VTY_NEWLINE);
180 vty_out(vty, " BSC Connections %lu total, %lu auth failed.%s",
181 counter_get(nat->stats.bsc.reconn),
182 counter_get(nat->stats.bsc.auth_fail), VTY_NEWLINE);
183}
184
185static void dump_stat_bsc(struct vty *vty, struct bsc_config *conf)
186{
Holger Hans Peter Freytherf21e4532010-07-22 20:37:35 +0800187 int connected = 0;
188 struct bsc_connection *con;
189
Holger Hans Peter Freytherc95cfda2010-07-22 20:26:10 +0800190 vty_out(vty, " BSC lac: %d nr: %d%s",
191 conf->lac, conf->nr, VTY_NEWLINE);
192 vty_out_rate_ctr_group(vty, " ", conf->stats.ctrg);
Holger Hans Peter Freytherf21e4532010-07-22 20:37:35 +0800193
194 llist_for_each_entry(con, &conf->nat->bsc_connections, list_entry) {
195 if (con->cfg != conf)
196 continue;
197 connected = 1;
198 break;
199 }
200
201 vty_out(vty, " Connected: %d%s", connected, VTY_NEWLINE);
Holger Hans Peter Freytherc95cfda2010-07-22 20:26:10 +0800202}
203
Holger Hans Peter Freytherbcfebb22010-04-12 12:33:27 +0200204DEFUN(show_stats,
205 show_stats_cmd,
Holger Hans Peter Freyther314191d2010-05-02 18:59:24 +0800206 "show statistics [NR]",
Holger Hans Peter Freytherb9af2fa2010-04-27 15:35:14 +0800207 SHOW_STR "Display network statistics")
Holger Hans Peter Freytherbcfebb22010-04-12 12:33:27 +0200208{
209 struct bsc_config *conf;
210
Holger Hans Peter Freyther314191d2010-05-02 18:59:24 +0800211 int nr = -1;
212
213 if (argc == 1)
214 nr = atoi(argv[0]);
215
Holger Hans Peter Freytherc95cfda2010-07-22 20:26:10 +0800216 dump_stat_total(vty, _nat);
Holger Hans Peter Freytherbcfebb22010-04-12 12:33:27 +0200217 llist_for_each_entry(conf, &_nat->bsc_configs, entry) {
Holger Hans Peter Freyther314191d2010-05-02 18:59:24 +0800218 if (argc == 1 && nr != conf->nr)
219 continue;
Holger Hans Peter Freytherc95cfda2010-07-22 20:26:10 +0800220 dump_stat_bsc(vty, conf);
221 }
Holger Hans Peter Freyther314191d2010-05-02 18:59:24 +0800222
Holger Hans Peter Freytherc95cfda2010-07-22 20:26:10 +0800223 return CMD_SUCCESS;
224}
225
226DEFUN(show_stats_lac,
227 show_stats_lac_cmd,
228 "show statistics-by-lac <0-65535>",
229 SHOW_STR "Display network statistics by lac\n"
230 "The lac of the BSC\n")
231{
232 int lac;
233 struct bsc_config *conf;
234
235 lac = atoi(argv[0]);
236
237 dump_stat_total(vty, _nat);
238 llist_for_each_entry(conf, &_nat->bsc_configs, entry) {
239 if (conf->lac != lac)
240 continue;
241 dump_stat_bsc(vty, conf);
Holger Hans Peter Freytherbcfebb22010-04-12 12:33:27 +0200242 }
243
244 return CMD_SUCCESS;
245}
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +0800246
Holger Hans Peter Freytheraad82ce2010-05-11 19:07:39 +0800247DEFUN(show_msc,
248 show_msc_cmd,
249 "show msc connection",
250 SHOW_STR "Show the status of the MSC connection.")
251{
252 if (!_nat->msc_con) {
253 vty_out(vty, "The MSC is not yet configured.\n");
254 return CMD_WARNING;
255 }
256
257 vty_out(vty, "MSC on %s:%d is connected: %d%s\n",
258 _nat->msc_con->ip, _nat->msc_con->port,
259 _nat->msc_con->is_connected, VTY_NEWLINE);
260 return CMD_SUCCESS;
261}
262
Holger Hans Peter Freyther2f9dcf02010-04-27 13:21:39 +0800263DEFUN(close_bsc,
264 close_bsc_cmd,
265 "close bsc connection BSC_NR",
Holger Hans Peter Freytherb9af2fa2010-04-27 15:35:14 +0800266 "Close the connection with the BSC identified by the config number.")
Holger Hans Peter Freyther2f9dcf02010-04-27 13:21:39 +0800267{
268 struct bsc_connection *bsc;
269 int bsc_nr = atoi(argv[0]);
270
271 llist_for_each_entry(bsc, &_nat->bsc_connections, list_entry) {
272 if (!bsc->cfg || bsc->cfg->nr != bsc_nr)
273 continue;
274 bsc_close_connection(bsc);
275 break;
276 }
277
278 return CMD_SUCCESS;
279}
280
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +0800281DEFUN(cfg_nat, cfg_nat_cmd, "nat", "Configute the NAT")
282{
283 vty->index = _nat;
284 vty->node = NAT_NODE;
285
286 return CMD_SUCCESS;
287}
288
Holger Hans Peter Freythera88742c2010-06-15 18:51:04 +0800289DEFUN(cfg_nat_msc_ip,
290 cfg_nat_msc_ip_cmd,
Holger Hans Peter Freytherd8b82062010-05-14 02:36:42 +0800291 "msc ip A.B.C.D",
Holger Hans Peter Freythera88742c2010-06-15 18:51:04 +0800292 "Set the IP address of the MSC.")
293{
294 bsc_nat_set_msc_ip(_nat, argv[0]);
295 return CMD_SUCCESS;
296}
297
Holger Hans Peter Freyther81395532010-04-17 07:48:45 +0200298DEFUN(cfg_nat_msc_port,
299 cfg_nat_msc_port_cmd,
300 "msc port <1-65500>",
301 "Set the port of the MSC.")
302{
303 _nat->msc_port = atoi(argv[0]);
304 return CMD_SUCCESS;
305}
306
Holger Hans Peter Freytherda35a8d2010-05-05 16:57:38 +0800307DEFUN(cfg_nat_auth_time,
308 cfg_nat_auth_time_cmd,
309 "timeout auth <1-256>",
310 "The time to wait for an auth response.")
311{
312 _nat->auth_timeout = atoi(argv[0]);
313 return CMD_SUCCESS;
314}
315
316DEFUN(cfg_nat_ping_time,
317 cfg_nat_ping_time_cmd,
318 "timeout ping NR",
319 "Send a ping every NR seconds. Negative to disable.")
320{
321 _nat->ping_timeout = atoi(argv[0]);
322 return CMD_SUCCESS;
323}
324
325DEFUN(cfg_nat_pong_time,
326 cfg_nat_pong_time_cmd,
327 "timeout pong NR",
328 "Wait NR seconds for the PONG response. Should be smaller than ping.")
329{
330 _nat->pong_timeout = atoi(argv[0]);
331 return CMD_SUCCESS;
332}
333
Holger Hans Peter Freythere635dab2010-05-15 00:14:58 +0800334DEFUN(cfg_nat_token, cfg_nat_token_cmd,
335 "token TOKEN",
336 "Set a token for the NAT")
337{
338 if (_nat->token)
339 talloc_free(_nat->token);
340 _nat->token = talloc_strdup(_nat, argv[0]);
341 return CMD_SUCCESS;
342}
343
Holger Hans Peter Freyther078321a2010-05-31 10:36:35 +0800344DEFUN(cfg_nat_bsc_ip_tos, cfg_nat_bsc_ip_tos_cmd,
345 "ip-tos <0-255>",
346 "Set the IP_TOS for the BSCs to use\n" "Set the IP_TOS attribute")
347{
348 _nat->bsc_ip_tos = atoi(argv[0]);
349 return CMD_SUCCESS;
350}
351
Holger Hans Peter Freyther8affef52010-06-01 01:03:13 +0800352DEFUN(cfg_nat_acc_lst_name,
353 cfg_nat_acc_lst_name_cmd,
354 "access-list-name NAME",
355 "Set the name of the access list to use.\n"
356 "The name of the to be used access list.")
357{
358 if (_nat->acc_lst_name)
359 talloc_free(_nat->acc_lst_name);
360 _nat->acc_lst_name = talloc_strdup(_nat, argv[0]);
361 return CMD_SUCCESS;
362}
363
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +0800364/* per BSC configuration */
Holger Hans Peter Freytherb9af2fa2010-04-27 15:35:14 +0800365DEFUN(cfg_bsc, cfg_bsc_cmd, "bsc BSC_NR", "Select a BSC to configure")
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +0800366{
367 int bsc_nr = atoi(argv[0]);
368 struct bsc_config *bsc;
369
370 if (bsc_nr > _nat->num_bsc) {
371 vty_out(vty, "%% The next unused BSC number is %u%s",
372 _nat->num_bsc, VTY_NEWLINE);
373 return CMD_WARNING;
374 } else if (bsc_nr == _nat->num_bsc) {
375 /* allocate a new one */
376 bsc = bsc_config_alloc(_nat, "unknown", 0);
377 } else
378 bsc = bsc_config_num(_nat, bsc_nr);
379
380 if (!bsc)
381 return CMD_WARNING;
382
383 vty->index = bsc;
Holger Hans Peter Freyther7b4a53d2010-06-17 14:42:20 +0800384 vty->node = NAT_BSC_NODE;
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +0800385
386 return CMD_SUCCESS;
387}
388
389DEFUN(cfg_bsc_token, cfg_bsc_token_cmd, "token TOKEN", "Set the token")
390{
391 struct bsc_config *conf = vty->index;
392
393 if (conf->token)
394 talloc_free(conf->token);
395 conf->token = talloc_strdup(conf, argv[0]);
396 return CMD_SUCCESS;
397}
398
399DEFUN(cfg_bsc_lac, cfg_bsc_lac_cmd, "location_area_code <0-65535>",
Holger Hans Peter Freytherb9af2fa2010-04-27 15:35:14 +0800400 "Set the Location Area Code (LAC) of this BSC")
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +0800401{
Holger Hans Peter Freyther39ee8772010-03-30 06:08:56 +0200402 struct bsc_config *tmp;
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +0800403 struct bsc_config *conf = vty->index;
404
405 int lac = atoi(argv[0]);
406
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +0800407 if (lac == GSM_LAC_RESERVED_DETACHED || lac == GSM_LAC_RESERVED_ALL_BTS) {
408 vty_out(vty, "%% LAC %d is reserved by GSM 04.08%s",
409 lac, VTY_NEWLINE);
410 return CMD_WARNING;
411 }
412
Holger Hans Peter Freyther39ee8772010-03-30 06:08:56 +0200413 /* verify that the LACs are unique */
414 llist_for_each_entry(tmp, &_nat->bsc_configs, entry) {
415 if (tmp->lac == lac) {
416 vty_out(vty, "%% LAC %d is already used.%s", lac, VTY_NEWLINE);
417 return CMD_ERR_INCOMPLETE;
418 }
419 }
420
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +0800421 conf->lac = lac;
422
423 return CMD_SUCCESS;
424}
425
Holger Hans Peter Freyther8affef52010-06-01 01:03:13 +0800426DEFUN(cfg_lst_imsi_allow,
427 cfg_lst_imsi_allow_cmd,
428 "access-list NAME imsi-allow [REGEXP]",
429 "Allow IMSIs matching the REGEXP\n"
430 "The name of the access-list\n"
431 "The regexp of allowed IMSIs\n")
Holger Hans Peter Freytherc16cf272010-04-13 09:24:37 +0200432{
Holger Hans Peter Freyther29c67032010-06-08 10:14:44 +0800433 struct bsc_nat_acc_lst *acc;
Holger Hans Peter Freytherd77c8172010-06-08 10:53:39 +0800434 struct bsc_nat_acc_lst_entry *entry;
Holger Hans Peter Freytherc16cf272010-04-13 09:24:37 +0200435
Holger Hans Peter Freyther29c67032010-06-08 10:14:44 +0800436 acc = bsc_nat_acc_lst_get(_nat, argv[0]);
Holger Hans Peter Freyther8affef52010-06-01 01:03:13 +0800437 if (!acc)
438 return CMD_WARNING;
439
Holger Hans Peter Freytherd77c8172010-06-08 10:53:39 +0800440 entry = bsc_nat_acc_lst_entry_create(acc);
441 if (!entry)
442 return CMD_WARNING;
443
444 bsc_parse_reg(acc, &entry->imsi_allow_re, &entry->imsi_allow, argc - 1, &argv[1]);
Holger Hans Peter Freytherc16cf272010-04-13 09:24:37 +0200445 return CMD_SUCCESS;
446}
447
Holger Hans Peter Freyther8affef52010-06-01 01:03:13 +0800448DEFUN(cfg_lst_imsi_deny,
449 cfg_lst_imsi_deny_cmd,
450 "access-list NAME imsi-deny [REGEXP]",
451 "Allow IMSIs matching the REGEXP\n"
452 "The name of the access-list\n"
453 "The regexp of to be denied IMSIs\n")
454{
Holger Hans Peter Freyther29c67032010-06-08 10:14:44 +0800455 struct bsc_nat_acc_lst *acc;
Holger Hans Peter Freytherd77c8172010-06-08 10:53:39 +0800456 struct bsc_nat_acc_lst_entry *entry;
Holger Hans Peter Freyther8affef52010-06-01 01:03:13 +0800457
Holger Hans Peter Freyther29c67032010-06-08 10:14:44 +0800458 acc = bsc_nat_acc_lst_get(_nat, argv[0]);
Holger Hans Peter Freyther8affef52010-06-01 01:03:13 +0800459 if (!acc)
460 return CMD_WARNING;
461
Holger Hans Peter Freytherd77c8172010-06-08 10:53:39 +0800462 entry = bsc_nat_acc_lst_entry_create(acc);
463 if (!entry)
464 return CMD_WARNING;
465
466 bsc_parse_reg(acc, &entry->imsi_deny_re, &entry->imsi_deny, argc - 1, &argv[1]);
Holger Hans Peter Freyther8affef52010-06-01 01:03:13 +0800467 return CMD_SUCCESS;
468}
469
Holger Hans Peter Freythere4900a02010-06-03 01:44:05 +0800470/* naming to follow Zebra... */
471DEFUN(cfg_lst_no,
472 cfg_lst_no_cmd,
473 "no access-list NAME",
474 NO_STR "Remove an access-list by name\n"
475 "The access-list to remove\n")
476{
Holger Hans Peter Freyther29c67032010-06-08 10:14:44 +0800477 struct bsc_nat_acc_lst *acc;
478 acc = bsc_nat_acc_lst_find(_nat, argv[0]);
Holger Hans Peter Freythere4900a02010-06-03 01:44:05 +0800479 if (!acc)
480 return CMD_WARNING;
481
Holger Hans Peter Freyther29c67032010-06-08 10:14:44 +0800482 bsc_nat_acc_lst_delete(acc);
Holger Hans Peter Freythere4900a02010-06-03 01:44:05 +0800483 return CMD_SUCCESS;
484}
485
Holger Hans Peter Freyther8affef52010-06-01 01:03:13 +0800486DEFUN(cfg_bsc_acc_lst_name,
487 cfg_bsc_acc_lst_name_cmd,
488 "access-list-name NAME",
489 "Set the name of the access list to use.\n"
490 "The name of the to be used access list.")
Holger Hans Peter Freytherc16cf272010-04-13 09:24:37 +0200491{
492 struct bsc_config *conf = vty->index;
493
Holger Hans Peter Freyther8affef52010-06-01 01:03:13 +0800494 if (conf->acc_lst_name)
495 talloc_free(conf->acc_lst_name);
496 conf->acc_lst_name = talloc_strdup(conf, argv[0]);
Holger Hans Peter Freytherc16cf272010-04-13 09:24:37 +0200497 return CMD_SUCCESS;
498}
499
Holger Hans Peter Freyther62e58432010-04-21 19:05:14 +0800500DEFUN(cfg_bsc_paging,
501 cfg_bsc_paging_cmd,
502 "paging forbidden (0|1)",
503 "Forbid sending PAGING REQUESTS to the BSC.")
504{
505 struct bsc_config *conf = vty->index;
506
Holger Hans Peter Freyther834f1df2010-04-21 20:07:07 +0800507 if (strcmp("1", argv[0]) == 0)
Holger Hans Peter Freyther62e58432010-04-21 19:05:14 +0800508 conf->forbid_paging = 1;
509 else
510 conf->forbid_paging = 0;
511
512 return CMD_SUCCESS;
513}
514
Holger Hans Peter Freytherb6061012010-05-14 22:06:28 +0800515DEFUN(cfg_bsc_desc,
516 cfg_bsc_desc_cmd,
517 "description DESC",
518 "Provide a description for the given BSC.")
519{
520 struct bsc_config *conf = vty->index;
521
522 if (conf->description)
523 talloc_free(conf->description);
524 conf->description = talloc_strdup(conf, argv[0]);
525 return CMD_SUCCESS;
526}
527
Holger Hans Peter Freyther52c4ba02010-05-14 23:43:12 +0800528DEFUN(test_regex, test_regex_cmd,
529 "test regex PATTERN STRING",
530 "Check if the string is matching the current pattern.")
531{
532 regex_t reg;
533 char *str = NULL;
534
535 memset(&reg, 0, sizeof(reg));
536 bsc_parse_reg(_nat, &reg, &str, 1, argv);
537
538 vty_out(vty, "String matches allow pattern: %d%s",
539 regexec(&reg, argv[1], 0, NULL, 0) == 0, VTY_NEWLINE);
540
541 talloc_free(str);
542 regfree(&reg);
543 return CMD_SUCCESS;
544}
545
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +0800546int bsc_nat_vty_init(struct bsc_nat *nat)
547{
548 _nat = nat;
549
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +0800550 /* show commands */
Holger Hans Peter Freyther1398f132010-06-15 20:14:08 +0800551 install_element_ve(&show_sccp_cmd);
552 install_element_ve(&show_bsc_cmd);
553 install_element_ve(&show_bsc_cfg_cmd);
554 install_element_ve(&show_stats_cmd);
Holger Hans Peter Freytherc95cfda2010-07-22 20:26:10 +0800555 install_element_ve(&show_stats_lac_cmd);
Holger Hans Peter Freyther1398f132010-06-15 20:14:08 +0800556 install_element_ve(&close_bsc_cmd);
557 install_element_ve(&show_msc_cmd);
558 install_element_ve(&test_regex_cmd);
Holger Hans Peter Freyther5f291d52010-04-06 12:01:15 +0200559
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +0800560 /* nat group */
561 install_element(CONFIG_NODE, &cfg_nat_cmd);
562 install_node(&nat_node, config_write_nat);
563 install_default(NAT_NODE);
Holger Hans Peter Freyther9c786972010-06-17 14:39:15 +0800564 install_element(NAT_NODE, &ournode_exit_cmd);
565 install_element(NAT_NODE, &ournode_end_cmd);
Holger Hans Peter Freythera88742c2010-06-15 18:51:04 +0800566 install_element(NAT_NODE, &cfg_nat_msc_ip_cmd);
Holger Hans Peter Freyther81395532010-04-17 07:48:45 +0200567 install_element(NAT_NODE, &cfg_nat_msc_port_cmd);
Holger Hans Peter Freytherda35a8d2010-05-05 16:57:38 +0800568 install_element(NAT_NODE, &cfg_nat_auth_time_cmd);
569 install_element(NAT_NODE, &cfg_nat_ping_time_cmd);
570 install_element(NAT_NODE, &cfg_nat_pong_time_cmd);
Holger Hans Peter Freythere635dab2010-05-15 00:14:58 +0800571 install_element(NAT_NODE, &cfg_nat_token_cmd);
Holger Hans Peter Freyther078321a2010-05-31 10:36:35 +0800572 install_element(NAT_NODE, &cfg_nat_bsc_ip_tos_cmd);
Holger Hans Peter Freyther8affef52010-06-01 01:03:13 +0800573 install_element(NAT_NODE, &cfg_nat_acc_lst_name_cmd);
574
575 /* access-list */
576 install_element(NAT_NODE, &cfg_lst_imsi_allow_cmd);
577 install_element(NAT_NODE, &cfg_lst_imsi_deny_cmd);
Holger Hans Peter Freythere4900a02010-06-03 01:44:05 +0800578 install_element(NAT_NODE, &cfg_lst_no_cmd);
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +0800579
580 /* BSC subgroups */
581 install_element(NAT_NODE, &cfg_bsc_cmd);
582 install_node(&bsc_node, config_write_bsc);
Holger Hans Peter Freyther7b4a53d2010-06-17 14:42:20 +0800583 install_default(NAT_BSC_NODE);
584 install_element(NAT_BSC_NODE, &ournode_exit_cmd);
585 install_element(NAT_BSC_NODE, &ournode_end_cmd);
586 install_element(NAT_BSC_NODE, &cfg_bsc_token_cmd);
587 install_element(NAT_BSC_NODE, &cfg_bsc_lac_cmd);
588 install_element(NAT_BSC_NODE, &cfg_bsc_paging_cmd);
589 install_element(NAT_BSC_NODE, &cfg_bsc_desc_cmd);
590 install_element(NAT_BSC_NODE, &cfg_bsc_acc_lst_name_cmd);
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +0800591
Holger Hans Peter Freytherf7d33352010-06-15 18:50:26 +0800592 mgcp_vty_init();
593
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +0800594 return 0;
595}
596
597
598/* called by the telnet interface... we have our own init above */
599void bsc_vty_init()
600{}