blob: 2aefe9b25e9c1063f82ba4e07aa426d02abb7b4a [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
Harald Welte9af6ddf2011-01-01 15:25:50 +01007 * it under the terms of the GNU Affero General Public License as published by
8 * the Free Software Foundation; either version 3 of the License, or
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +08009 * (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
Harald Welte9af6ddf2011-01-01 15:25:50 +010014 * GNU Affero General Public License for more details.
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +080015 *
Harald Welte9af6ddf2011-01-01 15:25:50 +010016 * You should have received a copy of the GNU Affero General Public License
17 * along with this program. If not, see <http://www.gnu.org/licenses/>.
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +080018 *
19 */
20
Holger Hans Peter Freyther1398f132010-06-15 20:14:08 +080021#include <openbsc/vty.h>
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +080022#include <openbsc/bsc_nat.h>
Holger Hans Peter Freytherc2b31ed2010-07-31 05:17:17 +080023#include <openbsc/bsc_nat_sccp.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 Freyther0d8330c2010-08-28 18:33:34 +080031#include <osmocore/utils.h>
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +080032
Harald Welted5db12c2010-08-03 15:11:51 +020033#include <osmocom/sccp/sccp.h>
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +080034
35#include <stdlib.h>
36
37static struct bsc_nat *_nat;
38
39static struct cmd_node nat_node = {
40 NAT_NODE,
41 "%s(nat)#",
42 1,
43};
44
45static struct cmd_node bsc_node = {
Holger Hans Peter Freyther7b4a53d2010-06-17 14:42:20 +080046 NAT_BSC_NODE,
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +080047 "%s(bsc)#",
48 1,
49};
50
Holger Hans Peter Freytherd77c8172010-06-08 10:53:39 +080051static void write_acc_lst(struct vty *vty, struct bsc_nat_acc_lst *lst)
52{
53 struct bsc_nat_acc_lst_entry *entry;
54
55 llist_for_each_entry(entry, &lst->fltr_list, list) {
56 if (entry->imsi_allow)
57 vty_out(vty, " access-list %s imsi-allow %s%s",
58 lst->name, entry->imsi_allow, VTY_NEWLINE);
59 if (entry->imsi_deny)
60 vty_out(vty, " access-list %s imsi-deny %s%s",
61 lst->name, entry->imsi_deny, VTY_NEWLINE);
62 }
63}
64
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +080065static int config_write_nat(struct vty *vty)
66{
Holger Hans Peter Freyther29c67032010-06-08 10:14:44 +080067 struct bsc_nat_acc_lst *lst;
Holger Hans Peter Freyther8affef52010-06-01 01:03:13 +080068
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +080069 vty_out(vty, "nat%s", VTY_NEWLINE);
Holger Hans Peter Freythera88742c2010-06-15 18:51:04 +080070 vty_out(vty, " msc ip %s%s", _nat->msc_ip, VTY_NEWLINE);
Holger Hans Peter Freyther81395532010-04-17 07:48:45 +020071 vty_out(vty, " msc port %d%s", _nat->msc_port, VTY_NEWLINE);
Holger Hans Peter Freytherda35a8d2010-05-05 16:57:38 +080072 vty_out(vty, " timeout auth %d%s", _nat->auth_timeout, VTY_NEWLINE);
73 vty_out(vty, " timeout ping %d%s", _nat->ping_timeout, VTY_NEWLINE);
74 vty_out(vty, " timeout pong %d%s", _nat->pong_timeout, VTY_NEWLINE);
Holger Hans Peter Freythere635dab2010-05-15 00:14:58 +080075 if (_nat->token)
76 vty_out(vty, " token %s%s", _nat->token, VTY_NEWLINE);
Holger Hans Peter Freyther6b771072010-07-27 19:21:53 +080077 vty_out(vty, " ip-dscp %d%s", _nat->bsc_ip_dscp, VTY_NEWLINE);
Holger Hans Peter Freyther8affef52010-06-01 01:03:13 +080078 if (_nat->acc_lst_name)
79 vty_out(vty, " access-list-name %s%s", _nat->acc_lst_name, VTY_NEWLINE);
Holger Hans Peter Freytherd1effd82010-10-10 17:29:20 +020080 if (_nat->ussd_lst_name)
81 vty_out(vty, " ussd-list-name %s%s", _nat->ussd_lst_name, VTY_NEWLINE);
Holger Hans Peter Freytherc1578bc2010-10-11 10:06:39 +020082 if (_nat->ussd_query)
83 vty_out(vty, " ussd-query %s%s", _nat->ussd_query, VTY_NEWLINE);
Holger Hans Peter Freythere393f272010-10-12 18:25:52 +020084 if (_nat->ussd_token)
85 vty_out(vty, " ussd-token %s%s", _nat->ussd_token, VTY_NEWLINE);
86 if (_nat->ussd_local)
87 vty_out(vty, " ussd-local-ip %s%s", _nat->ussd_local, VTY_NEWLINE);
Holger Hans Peter Freyther8affef52010-06-01 01:03:13 +080088
Holger Hans Peter Freyther76424392010-10-21 10:59:54 +020089 if (_nat->num_rewr_name)
90 vty_out(vty, " number-rewrite %s%s", _nat->num_rewr_name, VTY_NEWLINE);
91
Holger Hans Peter Freyther8affef52010-06-01 01:03:13 +080092 llist_for_each_entry(lst, &_nat->access_lists, list) {
Holger Hans Peter Freytherd77c8172010-06-08 10:53:39 +080093 write_acc_lst(vty, lst);
Holger Hans Peter Freyther8affef52010-06-01 01:03:13 +080094 }
95
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +080096 return CMD_SUCCESS;
97}
98
Holger Hans Peter Freyther0bd60f32010-10-08 22:08:29 +080099static void dump_lac(struct vty *vty, struct bsc_config *cfg)
100{
101 struct bsc_lac_entry *lac;
102 llist_for_each_entry(lac, &cfg->lac_list, entry)
103 vty_out(vty, " location_area_code %u%s", lac->lac, VTY_NEWLINE);
104}
105
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +0800106static void config_write_bsc_single(struct vty *vty, struct bsc_config *bsc)
107{
108 vty_out(vty, " bsc %u%s", bsc->nr, VTY_NEWLINE);
109 vty_out(vty, " token %s%s", bsc->token, VTY_NEWLINE);
Holger Hans Peter Freyther0bd60f32010-10-08 22:08:29 +0800110 dump_lac(vty, bsc);
Holger Hans Peter Freyther62e58432010-04-21 19:05:14 +0800111 vty_out(vty, " paging forbidden %d%s", bsc->forbid_paging, VTY_NEWLINE);
Holger Hans Peter Freytherb6061012010-05-14 22:06:28 +0800112 if (bsc->description)
113 vty_out(vty, " description %s%s", bsc->description, VTY_NEWLINE);
Holger Hans Peter Freyther8affef52010-06-01 01:03:13 +0800114 if (bsc->acc_lst_name)
Holger Hans Peter Freyther27d36de2010-06-08 11:18:26 +0800115 vty_out(vty, " access-list-name %s%s", bsc->acc_lst_name, VTY_NEWLINE);
Holger Hans Peter Freyther7b07b2d2011-02-25 20:38:15 +0100116 vty_out(vty, " number-multiplexes %d%s", bsc->number_multiplexes, VTY_NEWLINE);
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +0800117}
118
119static int config_write_bsc(struct vty *vty)
120{
121 struct bsc_config *bsc;
122
123 llist_for_each_entry(bsc, &_nat->bsc_configs, entry)
124 config_write_bsc_single(vty, bsc);
125 return CMD_SUCCESS;
126}
127
128
Holger Hans Peter Freyther01a0b1b2010-04-19 16:06:43 +0800129DEFUN(show_sccp, show_sccp_cmd, "show sccp connections",
130 SHOW_STR "Display information about current SCCP connections")
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +0800131{
132 struct sccp_connections *con;
Holger Hans Peter Freyther85804a82010-09-15 19:01:31 +0800133 vty_out(vty, "Listing all open SCCP connections%s", VTY_NEWLINE);
Holger Hans Peter Freyther4bd22942010-04-27 13:11:18 +0800134
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +0800135 llist_for_each_entry(con, &_nat->sccp_connections, list_entry) {
Holger Hans Peter Freyther0bd60f32010-10-08 22:08:29 +0800136 vty_out(vty, "For BSC Nr: %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 +0200137 con->bsc->cfg ? con->bsc->cfg->nr : -1,
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +0800138 sccp_src_ref_to_int(&con->real_ref),
Holger Hans Peter Freyther32d34362010-04-05 10:10:33 +0200139 sccp_src_ref_to_int(&con->patched_ref),
Holger Hans Peter Freyther4bd22942010-04-27 13:11:18 +0800140 con->has_remote_ref,
141 sccp_src_ref_to_int(&con->remote_ref),
Holger Hans Peter Freytherf4b34392010-08-28 16:08:39 +0800142 con->msc_endp, con->bsc_endp,
Holger Hans Peter Freyther234d3122010-05-16 02:06:11 +0800143 bsc_con_type_to_string(con->con_type),
Holger Hans Peter Freyther32d34362010-04-05 10:10:33 +0200144 VTY_NEWLINE);
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +0800145 }
146
147 return CMD_SUCCESS;
148}
149
Holger Hans Peter Freyther01a0b1b2010-04-19 16:06:43 +0800150DEFUN(show_bsc, show_bsc_cmd, "show bsc connections",
151 SHOW_STR "Display information about current BSCs")
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +0800152{
153 struct bsc_connection *con;
Holger Hans Peter Freyther870663a2010-04-08 10:35:20 +0200154 struct sockaddr_in sock;
155 socklen_t len = sizeof(sock);
156
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +0800157 llist_for_each_entry(con, &_nat->bsc_connections, list_entry) {
Holger Hans Peter Freyther870663a2010-04-08 10:35:20 +0200158 getpeername(con->write_queue.bfd.fd, (struct sockaddr *) &sock, &len);
Holger Hans Peter Freyther0bd60f32010-10-08 22:08:29 +0800159 vty_out(vty, "BSC nr: %d auth: %d fd: %d peername: %s%s",
Holger Hans Peter Freyther47dd4942010-04-06 15:11:34 +0200160 con->cfg ? con->cfg->nr : -1,
Holger Hans Peter Freyther870663a2010-04-08 10:35:20 +0200161 con->authenticated, con->write_queue.bfd.fd,
162 inet_ntoa(sock.sin_addr), VTY_NEWLINE);
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +0800163 }
164
165 return CMD_SUCCESS;
166}
167
Holger Hans Peter Freyther0d8330c2010-08-28 18:33:34 +0800168DEFUN(show_bsc_mgcp, show_bsc_mgcp_cmd, "show bsc mgcp NR",
169 SHOW_STR "Display the MGCP status for a given BSC")
170{
171 struct bsc_connection *con;
172 int nr = atoi(argv[0]);
173 int i;
174
175 llist_for_each_entry(con, &_nat->bsc_connections, list_entry) {
Holger Hans Peter Freythered500e32011-02-25 17:09:07 +0100176 int endpoints;
Holger Hans Peter Freyther0d8330c2010-08-28 18:33:34 +0800177 if (!con->cfg)
178 continue;
179 if (con->cfg->nr != nr)
180 continue;
181
Holger Hans Peter Freythered500e32011-02-25 17:09:07 +0100182 /* this bsc has no audio endpoints yet */
183 if (!con->_endpoint_status)
184 continue;
185
Holger Hans Peter Freyther0d8330c2010-08-28 18:33:34 +0800186 vty_out(vty, "MGCP Status for %d%s", con->cfg->nr, VTY_NEWLINE);
Holger Hans Peter Freyther7b07b2d2011-02-25 20:38:15 +0100187 endpoints = con->number_endpoints;
Holger Hans Peter Freythered500e32011-02-25 17:09:07 +0100188 for (i = 1; i <= endpoints; ++i)
Holger Hans Peter Freyther0d8330c2010-08-28 18:33:34 +0800189 vty_out(vty, " Endpoint 0x%x %s%s", i,
Holger Hans Peter Freythered500e32011-02-25 17:09:07 +0100190 con->_endpoint_status[i] == 0 ? "free" : "allocated",
Holger Hans Peter Freyther0d8330c2010-08-28 18:33:34 +0800191 VTY_NEWLINE);
192 break;
193 }
194
195 return CMD_SUCCESS;
196}
197
Holger Hans Peter Freytherab7539c2010-04-22 13:36:46 +0800198DEFUN(show_bsc_cfg, show_bsc_cfg_cmd, "show bsc config",
199 SHOW_STR "Display information about known BSC configs")
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +0800200{
201 struct bsc_config *conf;
202 llist_for_each_entry(conf, &_nat->bsc_configs, entry) {
Holger Hans Peter Freyther0bd60f32010-10-08 22:08:29 +0800203 vty_out(vty, "BSC token: '%s' nr: %u%s",
204 conf->token, conf->nr, VTY_NEWLINE);
Holger Hans Peter Freyther8affef52010-06-01 01:03:13 +0800205 if (conf->acc_lst_name)
206 vty_out(vty, " access-list: %s%s",
207 conf->acc_lst_name, VTY_NEWLINE);
Holger Hans Peter Freyther62e58432010-04-21 19:05:14 +0800208 vty_out(vty, " paging forbidden: %d%s",
209 conf->forbid_paging, VTY_NEWLINE);
Holger Hans Peter Freytherb6061012010-05-14 22:06:28 +0800210 if (conf->description)
211 vty_out(vty, " description: %s%s", conf->description, VTY_NEWLINE);
212 else
213 vty_out(vty, " No description.%s", VTY_NEWLINE);
214
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +0800215 }
216
217 return CMD_SUCCESS;
218}
219
Holger Hans Peter Freytherc95cfda2010-07-22 20:26:10 +0800220static void dump_stat_total(struct vty *vty, struct bsc_nat *nat)
221{
222 vty_out(vty, "NAT statistics%s", VTY_NEWLINE);
223 vty_out(vty, " SCCP Connections %lu total, %lu calls%s",
224 counter_get(nat->stats.sccp.conn),
225 counter_get(nat->stats.sccp.calls), VTY_NEWLINE);
226 vty_out(vty, " MSC Connections %lu%s",
227 counter_get(nat->stats.msc.reconn), VTY_NEWLINE);
Holger Hans Peter Freythercbfd0982010-08-04 02:34:10 +0800228 vty_out(vty, " MSC Connected: %d%s",
229 nat->msc_con->is_connected, VTY_NEWLINE);
Holger Hans Peter Freytherc95cfda2010-07-22 20:26:10 +0800230 vty_out(vty, " BSC Connections %lu total, %lu auth failed.%s",
231 counter_get(nat->stats.bsc.reconn),
232 counter_get(nat->stats.bsc.auth_fail), VTY_NEWLINE);
233}
234
235static void dump_stat_bsc(struct vty *vty, struct bsc_config *conf)
236{
Holger Hans Peter Freytherf21e4532010-07-22 20:37:35 +0800237 int connected = 0;
238 struct bsc_connection *con;
239
Holger Hans Peter Freyther0bd60f32010-10-08 22:08:29 +0800240 vty_out(vty, " BSC nr: %d%s",
241 conf->nr, VTY_NEWLINE);
Holger Hans Peter Freytherc95cfda2010-07-22 20:26:10 +0800242 vty_out_rate_ctr_group(vty, " ", conf->stats.ctrg);
Holger Hans Peter Freytherf21e4532010-07-22 20:37:35 +0800243
244 llist_for_each_entry(con, &conf->nat->bsc_connections, list_entry) {
245 if (con->cfg != conf)
246 continue;
247 connected = 1;
248 break;
249 }
250
Holger Hans Peter Freyther03a0ad02010-08-04 02:29:03 +0800251 vty_out(vty, " Connected: %d%s", connected, VTY_NEWLINE);
Holger Hans Peter Freytherc95cfda2010-07-22 20:26:10 +0800252}
253
Holger Hans Peter Freytherbcfebb22010-04-12 12:33:27 +0200254DEFUN(show_stats,
255 show_stats_cmd,
Holger Hans Peter Freyther314191d2010-05-02 18:59:24 +0800256 "show statistics [NR]",
Holger Hans Peter Freytherb9af2fa2010-04-27 15:35:14 +0800257 SHOW_STR "Display network statistics")
Holger Hans Peter Freytherbcfebb22010-04-12 12:33:27 +0200258{
259 struct bsc_config *conf;
260
Holger Hans Peter Freyther314191d2010-05-02 18:59:24 +0800261 int nr = -1;
262
263 if (argc == 1)
264 nr = atoi(argv[0]);
265
Holger Hans Peter Freytherc95cfda2010-07-22 20:26:10 +0800266 dump_stat_total(vty, _nat);
Holger Hans Peter Freytherbcfebb22010-04-12 12:33:27 +0200267 llist_for_each_entry(conf, &_nat->bsc_configs, entry) {
Holger Hans Peter Freyther314191d2010-05-02 18:59:24 +0800268 if (argc == 1 && nr != conf->nr)
269 continue;
Holger Hans Peter Freytherc95cfda2010-07-22 20:26:10 +0800270 dump_stat_bsc(vty, conf);
271 }
Holger Hans Peter Freyther314191d2010-05-02 18:59:24 +0800272
Holger Hans Peter Freytherc95cfda2010-07-22 20:26:10 +0800273 return CMD_SUCCESS;
274}
275
276DEFUN(show_stats_lac,
277 show_stats_lac_cmd,
278 "show statistics-by-lac <0-65535>",
279 SHOW_STR "Display network statistics by lac\n"
280 "The lac of the BSC\n")
281{
282 int lac;
283 struct bsc_config *conf;
284
285 lac = atoi(argv[0]);
286
287 dump_stat_total(vty, _nat);
288 llist_for_each_entry(conf, &_nat->bsc_configs, entry) {
Holger Hans Peter Freyther0bd60f32010-10-08 22:08:29 +0800289 if (!bsc_config_handles_lac(conf, lac))
Holger Hans Peter Freytherc95cfda2010-07-22 20:26:10 +0800290 continue;
291 dump_stat_bsc(vty, conf);
Holger Hans Peter Freytherbcfebb22010-04-12 12:33:27 +0200292 }
293
294 return CMD_SUCCESS;
295}
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +0800296
Holger Hans Peter Freytheraad82ce2010-05-11 19:07:39 +0800297DEFUN(show_msc,
298 show_msc_cmd,
299 "show msc connection",
300 SHOW_STR "Show the status of the MSC connection.")
301{
302 if (!_nat->msc_con) {
303 vty_out(vty, "The MSC is not yet configured.\n");
304 return CMD_WARNING;
305 }
306
307 vty_out(vty, "MSC on %s:%d is connected: %d%s\n",
308 _nat->msc_con->ip, _nat->msc_con->port,
309 _nat->msc_con->is_connected, VTY_NEWLINE);
310 return CMD_SUCCESS;
311}
312
Holger Hans Peter Freyther2f9dcf02010-04-27 13:21:39 +0800313DEFUN(close_bsc,
314 close_bsc_cmd,
315 "close bsc connection BSC_NR",
Holger Hans Peter Freytherb9af2fa2010-04-27 15:35:14 +0800316 "Close the connection with the BSC identified by the config number.")
Holger Hans Peter Freyther2f9dcf02010-04-27 13:21:39 +0800317{
318 struct bsc_connection *bsc;
319 int bsc_nr = atoi(argv[0]);
320
321 llist_for_each_entry(bsc, &_nat->bsc_connections, list_entry) {
322 if (!bsc->cfg || bsc->cfg->nr != bsc_nr)
323 continue;
324 bsc_close_connection(bsc);
325 break;
326 }
327
328 return CMD_SUCCESS;
329}
330
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +0800331DEFUN(cfg_nat, cfg_nat_cmd, "nat", "Configute the NAT")
332{
333 vty->index = _nat;
334 vty->node = NAT_NODE;
335
336 return CMD_SUCCESS;
337}
338
Holger Hans Peter Freythera88742c2010-06-15 18:51:04 +0800339DEFUN(cfg_nat_msc_ip,
340 cfg_nat_msc_ip_cmd,
Holger Hans Peter Freytherd8b82062010-05-14 02:36:42 +0800341 "msc ip A.B.C.D",
Holger Hans Peter Freythera88742c2010-06-15 18:51:04 +0800342 "Set the IP address of the MSC.")
343{
344 bsc_nat_set_msc_ip(_nat, argv[0]);
345 return CMD_SUCCESS;
346}
347
Holger Hans Peter Freyther81395532010-04-17 07:48:45 +0200348DEFUN(cfg_nat_msc_port,
349 cfg_nat_msc_port_cmd,
350 "msc port <1-65500>",
351 "Set the port of the MSC.")
352{
353 _nat->msc_port = atoi(argv[0]);
354 return CMD_SUCCESS;
355}
356
Holger Hans Peter Freytherda35a8d2010-05-05 16:57:38 +0800357DEFUN(cfg_nat_auth_time,
358 cfg_nat_auth_time_cmd,
359 "timeout auth <1-256>",
360 "The time to wait for an auth response.")
361{
362 _nat->auth_timeout = atoi(argv[0]);
363 return CMD_SUCCESS;
364}
365
366DEFUN(cfg_nat_ping_time,
367 cfg_nat_ping_time_cmd,
368 "timeout ping NR",
369 "Send a ping every NR seconds. Negative to disable.")
370{
371 _nat->ping_timeout = atoi(argv[0]);
372 return CMD_SUCCESS;
373}
374
375DEFUN(cfg_nat_pong_time,
376 cfg_nat_pong_time_cmd,
377 "timeout pong NR",
378 "Wait NR seconds for the PONG response. Should be smaller than ping.")
379{
380 _nat->pong_timeout = atoi(argv[0]);
381 return CMD_SUCCESS;
382}
383
Holger Hans Peter Freythere635dab2010-05-15 00:14:58 +0800384DEFUN(cfg_nat_token, cfg_nat_token_cmd,
385 "token TOKEN",
386 "Set a token for the NAT")
387{
Holger Hans Peter Freyther3e9a7f82010-10-12 23:21:54 +0200388 bsc_replace_string(_nat, &_nat->token, argv[0]);
Holger Hans Peter Freythere635dab2010-05-15 00:14:58 +0800389 return CMD_SUCCESS;
390}
391
Holger Hans Peter Freyther6b771072010-07-27 19:21:53 +0800392DEFUN(cfg_nat_bsc_ip_dscp, cfg_nat_bsc_ip_dscp_cmd,
393 "ip-dscp <0-255>",
394 "Set the IP DSCP for the BSCs to use\n" "Set the IP_TOS attribute")
Holger Hans Peter Freyther078321a2010-05-31 10:36:35 +0800395{
Holger Hans Peter Freyther6b771072010-07-27 19:21:53 +0800396 _nat->bsc_ip_dscp = atoi(argv[0]);
Holger Hans Peter Freyther078321a2010-05-31 10:36:35 +0800397 return CMD_SUCCESS;
398}
399
Holger Hans Peter Freyther6b771072010-07-27 19:21:53 +0800400ALIAS_DEPRECATED(cfg_nat_bsc_ip_dscp, cfg_nat_bsc_ip_tos_cmd,
401 "ip-tos <0-255>",
402 "Use ip-dscp in the future.\n" "Set the DSCP\n")
403
404
Holger Hans Peter Freyther8affef52010-06-01 01:03:13 +0800405DEFUN(cfg_nat_acc_lst_name,
406 cfg_nat_acc_lst_name_cmd,
407 "access-list-name NAME",
408 "Set the name of the access list to use.\n"
409 "The name of the to be used access list.")
410{
Holger Hans Peter Freyther3e9a7f82010-10-12 23:21:54 +0200411 bsc_replace_string(_nat, &_nat->acc_lst_name, argv[0]);
Holger Hans Peter Freyther8affef52010-06-01 01:03:13 +0800412 return CMD_SUCCESS;
413}
414
Holger Hans Peter Freyther76424392010-10-21 10:59:54 +0200415DEFUN(cfg_nat_number_rewrite,
416 cfg_nat_number_rewrite_cmd,
417 "number-rewrite FILENAME",
418 "Set the file with rewriting rules.\n" "Filename")
419{
420 bsc_replace_string(_nat, &_nat->num_rewr_name, argv[0]);
421 if (_nat->num_rewr_name) {
422 if (_nat->num_rewr)
423 talloc_free(_nat->num_rewr);
424 _nat->num_rewr = msg_entry_parse(_nat, _nat->num_rewr_name);
425 return _nat->num_rewr == NULL ? CMD_WARNING : CMD_SUCCESS;
426 } else {
427 if (_nat->num_rewr)
428 talloc_free(_nat->num_rewr);
429 _nat->num_rewr = NULL;
430 return CMD_SUCCESS;
431 }
432}
433
Holger Hans Peter Freytherd1effd82010-10-10 17:29:20 +0200434DEFUN(cfg_nat_ussd_lst_name,
435 cfg_nat_ussd_lst_name_cmd,
436 "ussd-list-name NAME",
437 "Set the name of the access list to check for IMSIs for USSD message\n"
438 "The name of the access list for HLR USSD handling")
439{
Holger Hans Peter Freyther64b12922010-10-12 21:31:02 +0200440 bsc_replace_string(_nat, &_nat->ussd_lst_name, argv[0]);
Holger Hans Peter Freytherd1effd82010-10-10 17:29:20 +0200441 return CMD_SUCCESS;
442}
443
Holger Hans Peter Freytherc1578bc2010-10-11 10:06:39 +0200444DEFUN(cfg_nat_ussd_query,
445 cfg_nat_ussd_query_cmd,
446 "ussd-query QUERY",
447 "Set the USSD query to match with the ussd-list-name\n"
448 "The query to match")
449{
Holger Hans Peter Freyther64b12922010-10-12 21:31:02 +0200450 bsc_replace_string(_nat, &_nat->ussd_query, argv[0]);
Holger Hans Peter Freytherc1578bc2010-10-11 10:06:39 +0200451 return CMD_SUCCESS;
452}
453
Holger Hans Peter Freythere393f272010-10-12 18:25:52 +0200454DEFUN(cfg_nat_ussd_token,
455 cfg_nat_ussd_token_cmd,
456 "ussd-token TOKEN",
457 "Set the token used to identify the USSD module\n" "Secret key\n")
458{
Holger Hans Peter Freyther64b12922010-10-12 21:31:02 +0200459 bsc_replace_string(_nat, &_nat->ussd_token, argv[0]);
Holger Hans Peter Freythere393f272010-10-12 18:25:52 +0200460 return CMD_SUCCESS;
461}
462
463DEFUN(cfg_nat_ussd_local,
464 cfg_nat_ussd_local_cmd,
465 "ussd-local-ip A.B.C.D",
466 "Set the IP to listen for the USSD Provider\n" "IP Address\n")
467{
Holger Hans Peter Freyther64b12922010-10-12 21:31:02 +0200468 bsc_replace_string(_nat, &_nat->ussd_local, argv[0]);
Holger Hans Peter Freythere393f272010-10-12 18:25:52 +0200469 return CMD_SUCCESS;
470}
471
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +0800472/* per BSC configuration */
Holger Hans Peter Freytherb9af2fa2010-04-27 15:35:14 +0800473DEFUN(cfg_bsc, cfg_bsc_cmd, "bsc BSC_NR", "Select a BSC to configure")
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +0800474{
475 int bsc_nr = atoi(argv[0]);
476 struct bsc_config *bsc;
477
478 if (bsc_nr > _nat->num_bsc) {
479 vty_out(vty, "%% The next unused BSC number is %u%s",
480 _nat->num_bsc, VTY_NEWLINE);
481 return CMD_WARNING;
482 } else if (bsc_nr == _nat->num_bsc) {
483 /* allocate a new one */
Holger Hans Peter Freyther0bd60f32010-10-08 22:08:29 +0800484 bsc = bsc_config_alloc(_nat, "unknown");
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +0800485 } else
486 bsc = bsc_config_num(_nat, bsc_nr);
487
488 if (!bsc)
489 return CMD_WARNING;
490
491 vty->index = bsc;
Holger Hans Peter Freyther7b4a53d2010-06-17 14:42:20 +0800492 vty->node = NAT_BSC_NODE;
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +0800493
494 return CMD_SUCCESS;
495}
496
497DEFUN(cfg_bsc_token, cfg_bsc_token_cmd, "token TOKEN", "Set the token")
498{
499 struct bsc_config *conf = vty->index;
500
Holger Hans Peter Freyther3e9a7f82010-10-12 23:21:54 +0200501 bsc_replace_string(conf, &conf->token, argv[0]);
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +0800502 return CMD_SUCCESS;
503}
504
505DEFUN(cfg_bsc_lac, cfg_bsc_lac_cmd, "location_area_code <0-65535>",
Holger Hans Peter Freytherb9af2fa2010-04-27 15:35:14 +0800506 "Set the Location Area Code (LAC) of this BSC")
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +0800507{
Holger Hans Peter Freyther39ee8772010-03-30 06:08:56 +0200508 struct bsc_config *tmp;
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +0800509 struct bsc_config *conf = vty->index;
510
511 int lac = atoi(argv[0]);
512
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +0800513 if (lac == GSM_LAC_RESERVED_DETACHED || lac == GSM_LAC_RESERVED_ALL_BTS) {
514 vty_out(vty, "%% LAC %d is reserved by GSM 04.08%s",
515 lac, VTY_NEWLINE);
516 return CMD_WARNING;
517 }
518
Holger Hans Peter Freyther39ee8772010-03-30 06:08:56 +0200519 /* verify that the LACs are unique */
520 llist_for_each_entry(tmp, &_nat->bsc_configs, entry) {
Holger Hans Peter Freyther0bd60f32010-10-08 22:08:29 +0800521 if (bsc_config_handles_lac(tmp, lac)) {
Holger Hans Peter Freyther39ee8772010-03-30 06:08:56 +0200522 vty_out(vty, "%% LAC %d is already used.%s", lac, VTY_NEWLINE);
523 return CMD_ERR_INCOMPLETE;
524 }
525 }
526
Holger Hans Peter Freyther0bd60f32010-10-08 22:08:29 +0800527 bsc_config_add_lac(conf, lac);
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +0800528
529 return CMD_SUCCESS;
530}
531
Holger Hans Peter Freyther0bd60f32010-10-08 22:08:29 +0800532DEFUN(cfg_bsc_no_lac, cfg_bsc_no_lac_cmd,
533 "no location_area_code <0-65535>",
534 NO_STR "Set the Location Area Code (LAC) of this BSC")
535{
536 int lac = atoi(argv[0]);
537 struct bsc_config *conf = vty->index;
538
539 bsc_config_del_lac(conf, lac);
540 return CMD_SUCCESS;
541}
542
543
544
Holger Hans Peter Freyther8affef52010-06-01 01:03:13 +0800545DEFUN(cfg_lst_imsi_allow,
546 cfg_lst_imsi_allow_cmd,
547 "access-list NAME imsi-allow [REGEXP]",
548 "Allow IMSIs matching the REGEXP\n"
549 "The name of the access-list\n"
550 "The regexp of allowed IMSIs\n")
Holger Hans Peter Freytherc16cf272010-04-13 09:24:37 +0200551{
Holger Hans Peter Freyther29c67032010-06-08 10:14:44 +0800552 struct bsc_nat_acc_lst *acc;
Holger Hans Peter Freytherd77c8172010-06-08 10:53:39 +0800553 struct bsc_nat_acc_lst_entry *entry;
Holger Hans Peter Freytherc16cf272010-04-13 09:24:37 +0200554
Holger Hans Peter Freyther29c67032010-06-08 10:14:44 +0800555 acc = bsc_nat_acc_lst_get(_nat, argv[0]);
Holger Hans Peter Freyther8affef52010-06-01 01:03:13 +0800556 if (!acc)
557 return CMD_WARNING;
558
Holger Hans Peter Freytherd77c8172010-06-08 10:53:39 +0800559 entry = bsc_nat_acc_lst_entry_create(acc);
560 if (!entry)
561 return CMD_WARNING;
562
563 bsc_parse_reg(acc, &entry->imsi_allow_re, &entry->imsi_allow, argc - 1, &argv[1]);
Holger Hans Peter Freytherc16cf272010-04-13 09:24:37 +0200564 return CMD_SUCCESS;
565}
566
Holger Hans Peter Freyther8affef52010-06-01 01:03:13 +0800567DEFUN(cfg_lst_imsi_deny,
568 cfg_lst_imsi_deny_cmd,
569 "access-list NAME imsi-deny [REGEXP]",
570 "Allow IMSIs matching the REGEXP\n"
571 "The name of the access-list\n"
572 "The regexp of to be denied IMSIs\n")
573{
Holger Hans Peter Freyther29c67032010-06-08 10:14:44 +0800574 struct bsc_nat_acc_lst *acc;
Holger Hans Peter Freytherd77c8172010-06-08 10:53:39 +0800575 struct bsc_nat_acc_lst_entry *entry;
Holger Hans Peter Freyther8affef52010-06-01 01:03:13 +0800576
Holger Hans Peter Freyther29c67032010-06-08 10:14:44 +0800577 acc = bsc_nat_acc_lst_get(_nat, argv[0]);
Holger Hans Peter Freyther8affef52010-06-01 01:03:13 +0800578 if (!acc)
579 return CMD_WARNING;
580
Holger Hans Peter Freytherd77c8172010-06-08 10:53:39 +0800581 entry = bsc_nat_acc_lst_entry_create(acc);
582 if (!entry)
583 return CMD_WARNING;
584
585 bsc_parse_reg(acc, &entry->imsi_deny_re, &entry->imsi_deny, argc - 1, &argv[1]);
Holger Hans Peter Freyther8affef52010-06-01 01:03:13 +0800586 return CMD_SUCCESS;
587}
588
Holger Hans Peter Freythere4900a02010-06-03 01:44:05 +0800589/* naming to follow Zebra... */
590DEFUN(cfg_lst_no,
591 cfg_lst_no_cmd,
592 "no access-list NAME",
593 NO_STR "Remove an access-list by name\n"
594 "The access-list to remove\n")
595{
Holger Hans Peter Freyther29c67032010-06-08 10:14:44 +0800596 struct bsc_nat_acc_lst *acc;
597 acc = bsc_nat_acc_lst_find(_nat, argv[0]);
Holger Hans Peter Freythere4900a02010-06-03 01:44:05 +0800598 if (!acc)
599 return CMD_WARNING;
600
Holger Hans Peter Freyther29c67032010-06-08 10:14:44 +0800601 bsc_nat_acc_lst_delete(acc);
Holger Hans Peter Freythere4900a02010-06-03 01:44:05 +0800602 return CMD_SUCCESS;
603}
604
Holger Hans Peter Freyther520c1f12010-09-25 16:25:47 +0800605DEFUN(show_acc_lst,
606 show_acc_lst_cmd,
607 "show access-list NAME",
608 SHOW_STR "The name of the access list\n")
609{
610 struct bsc_nat_acc_lst *acc;
611 acc = bsc_nat_acc_lst_find(_nat, argv[0]);
612 if (!acc)
613 return CMD_WARNING;
614
615 vty_out(vty, "access-list %s%s", acc->name, VTY_NEWLINE);
616 vty_out_rate_ctr_group(vty, " ", acc->stats);
617
618 return CMD_SUCCESS;
619}
620
621
Holger Hans Peter Freyther8affef52010-06-01 01:03:13 +0800622DEFUN(cfg_bsc_acc_lst_name,
623 cfg_bsc_acc_lst_name_cmd,
624 "access-list-name NAME",
625 "Set the name of the access list to use.\n"
626 "The name of the to be used access list.")
Holger Hans Peter Freytherc16cf272010-04-13 09:24:37 +0200627{
628 struct bsc_config *conf = vty->index;
629
Holger Hans Peter Freyther3e9a7f82010-10-12 23:21:54 +0200630 bsc_replace_string(conf, &conf->acc_lst_name, argv[0]);
Holger Hans Peter Freytherc16cf272010-04-13 09:24:37 +0200631 return CMD_SUCCESS;
632}
633
Holger Hans Peter Freyther7b07b2d2011-02-25 20:38:15 +0100634DEFUN(cfg_bsc_nr_multip, cfg_bsc_nr_multip_cmd,
635 "number-multiplexes <1-1>",
636 "Number of multiplexes on a BSC\n" "Number of ports\n")
637{
638 struct bsc_config *conf = vty->index;
639
640 conf->number_multiplexes = atoi(argv[0]);
641 return CMD_SUCCESS;
642}
643
Holger Hans Peter Freyther62e58432010-04-21 19:05:14 +0800644DEFUN(cfg_bsc_paging,
645 cfg_bsc_paging_cmd,
646 "paging forbidden (0|1)",
647 "Forbid sending PAGING REQUESTS to the BSC.")
648{
649 struct bsc_config *conf = vty->index;
650
Holger Hans Peter Freyther834f1df2010-04-21 20:07:07 +0800651 if (strcmp("1", argv[0]) == 0)
Holger Hans Peter Freyther62e58432010-04-21 19:05:14 +0800652 conf->forbid_paging = 1;
653 else
654 conf->forbid_paging = 0;
655
656 return CMD_SUCCESS;
657}
658
Holger Hans Peter Freytherb6061012010-05-14 22:06:28 +0800659DEFUN(cfg_bsc_desc,
660 cfg_bsc_desc_cmd,
661 "description DESC",
662 "Provide a description for the given BSC.")
663{
664 struct bsc_config *conf = vty->index;
665
Holger Hans Peter Freyther3e9a7f82010-10-12 23:21:54 +0200666 bsc_replace_string(conf, &conf->description, argv[0]);
Holger Hans Peter Freytherb6061012010-05-14 22:06:28 +0800667 return CMD_SUCCESS;
668}
669
Holger Hans Peter Freyther52c4ba02010-05-14 23:43:12 +0800670DEFUN(test_regex, test_regex_cmd,
671 "test regex PATTERN STRING",
672 "Check if the string is matching the current pattern.")
673{
674 regex_t reg;
675 char *str = NULL;
676
677 memset(&reg, 0, sizeof(reg));
678 bsc_parse_reg(_nat, &reg, &str, 1, argv);
679
680 vty_out(vty, "String matches allow pattern: %d%s",
681 regexec(&reg, argv[1], 0, NULL, 0) == 0, VTY_NEWLINE);
682
683 talloc_free(str);
684 regfree(&reg);
685 return CMD_SUCCESS;
686}
687
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +0800688int bsc_nat_vty_init(struct bsc_nat *nat)
689{
690 _nat = nat;
691
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +0800692 /* show commands */
Holger Hans Peter Freyther1398f132010-06-15 20:14:08 +0800693 install_element_ve(&show_sccp_cmd);
694 install_element_ve(&show_bsc_cmd);
695 install_element_ve(&show_bsc_cfg_cmd);
696 install_element_ve(&show_stats_cmd);
Holger Hans Peter Freytherc95cfda2010-07-22 20:26:10 +0800697 install_element_ve(&show_stats_lac_cmd);
Holger Hans Peter Freyther1398f132010-06-15 20:14:08 +0800698 install_element_ve(&close_bsc_cmd);
699 install_element_ve(&show_msc_cmd);
700 install_element_ve(&test_regex_cmd);
Holger Hans Peter Freyther0d8330c2010-08-28 18:33:34 +0800701 install_element_ve(&show_bsc_mgcp_cmd);
Holger Hans Peter Freyther520c1f12010-09-25 16:25:47 +0800702 install_element_ve(&show_acc_lst_cmd);
Holger Hans Peter Freyther5f291d52010-04-06 12:01:15 +0200703
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +0800704 /* nat group */
705 install_element(CONFIG_NODE, &cfg_nat_cmd);
706 install_node(&nat_node, config_write_nat);
707 install_default(NAT_NODE);
Holger Hans Peter Freyther9c786972010-06-17 14:39:15 +0800708 install_element(NAT_NODE, &ournode_exit_cmd);
709 install_element(NAT_NODE, &ournode_end_cmd);
Holger Hans Peter Freythera88742c2010-06-15 18:51:04 +0800710 install_element(NAT_NODE, &cfg_nat_msc_ip_cmd);
Holger Hans Peter Freyther81395532010-04-17 07:48:45 +0200711 install_element(NAT_NODE, &cfg_nat_msc_port_cmd);
Holger Hans Peter Freytherda35a8d2010-05-05 16:57:38 +0800712 install_element(NAT_NODE, &cfg_nat_auth_time_cmd);
713 install_element(NAT_NODE, &cfg_nat_ping_time_cmd);
714 install_element(NAT_NODE, &cfg_nat_pong_time_cmd);
Holger Hans Peter Freythere635dab2010-05-15 00:14:58 +0800715 install_element(NAT_NODE, &cfg_nat_token_cmd);
Holger Hans Peter Freyther6b771072010-07-27 19:21:53 +0800716 install_element(NAT_NODE, &cfg_nat_bsc_ip_dscp_cmd);
Holger Hans Peter Freyther078321a2010-05-31 10:36:35 +0800717 install_element(NAT_NODE, &cfg_nat_bsc_ip_tos_cmd);
Holger Hans Peter Freyther8affef52010-06-01 01:03:13 +0800718 install_element(NAT_NODE, &cfg_nat_acc_lst_name_cmd);
Holger Hans Peter Freytherd1effd82010-10-10 17:29:20 +0200719 install_element(NAT_NODE, &cfg_nat_ussd_lst_name_cmd);
Holger Hans Peter Freytherc1578bc2010-10-11 10:06:39 +0200720 install_element(NAT_NODE, &cfg_nat_ussd_query_cmd);
Holger Hans Peter Freythere393f272010-10-12 18:25:52 +0200721 install_element(NAT_NODE, &cfg_nat_ussd_token_cmd);
722 install_element(NAT_NODE, &cfg_nat_ussd_local_cmd);
Holger Hans Peter Freyther8affef52010-06-01 01:03:13 +0800723
724 /* access-list */
725 install_element(NAT_NODE, &cfg_lst_imsi_allow_cmd);
726 install_element(NAT_NODE, &cfg_lst_imsi_deny_cmd);
Holger Hans Peter Freythere4900a02010-06-03 01:44:05 +0800727 install_element(NAT_NODE, &cfg_lst_no_cmd);
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +0800728
Holger Hans Peter Freyther76424392010-10-21 10:59:54 +0200729 /* number rewriting */
730 install_element(NAT_NODE, &cfg_nat_number_rewrite_cmd);
731
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +0800732 /* BSC subgroups */
733 install_element(NAT_NODE, &cfg_bsc_cmd);
734 install_node(&bsc_node, config_write_bsc);
Holger Hans Peter Freyther7b4a53d2010-06-17 14:42:20 +0800735 install_default(NAT_BSC_NODE);
736 install_element(NAT_BSC_NODE, &ournode_exit_cmd);
737 install_element(NAT_BSC_NODE, &ournode_end_cmd);
738 install_element(NAT_BSC_NODE, &cfg_bsc_token_cmd);
739 install_element(NAT_BSC_NODE, &cfg_bsc_lac_cmd);
Holger Hans Peter Freyther0bd60f32010-10-08 22:08:29 +0800740 install_element(NAT_BSC_NODE, &cfg_bsc_no_lac_cmd);
Holger Hans Peter Freyther7b4a53d2010-06-17 14:42:20 +0800741 install_element(NAT_BSC_NODE, &cfg_bsc_paging_cmd);
742 install_element(NAT_BSC_NODE, &cfg_bsc_desc_cmd);
743 install_element(NAT_BSC_NODE, &cfg_bsc_acc_lst_name_cmd);
Holger Hans Peter Freyther7b07b2d2011-02-25 20:38:15 +0100744 install_element(NAT_BSC_NODE, &cfg_bsc_nr_multip_cmd);
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +0800745
Holger Hans Peter Freytherf7d33352010-06-15 18:50:26 +0800746 mgcp_vty_init();
747
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +0800748 return 0;
749}
750
751
752/* called by the telnet interface... we have our own init above */
Holger Hans Peter Freyther6c79a682011-02-24 14:33:09 +0100753int bsc_vty_init(void)
754{
755 return 0;
756}