blob: 5366dd38459a40dabe81146baba0b49487b0f2e9 [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]);
Holger Hans Peter Freythera9e93312011-02-26 11:38:00 +0100173 int i, j, endp;
Holger Hans Peter Freyther0d8330c2010-08-28 18:33:34 +0800174
175 llist_for_each_entry(con, &_nat->bsc_connections, list_entry) {
176 if (!con->cfg)
177 continue;
178 if (con->cfg->nr != nr)
179 continue;
180
Holger Hans Peter Freythered500e32011-02-25 17:09:07 +0100181 /* this bsc has no audio endpoints yet */
182 if (!con->_endpoint_status)
183 continue;
184
Holger Hans Peter Freyther0d8330c2010-08-28 18:33:34 +0800185 vty_out(vty, "MGCP Status for %d%s", con->cfg->nr, VTY_NEWLINE);
Holger Hans Peter Freythera9e93312011-02-26 11:38:00 +0100186 for (i = 0; i < con->number_multiplexes; ++i) {
187 for (j = 0; j < 32; ++j) {
188 endp = mgcp_timeslot_to_endpoint(i, j);
189 vty_out(vty, " Endpoint 0x%x %s%s", endp,
190 con->_endpoint_status[endp] == 0
191 ? "free" : "allocated",
Holger Hans Peter Freyther0d8330c2010-08-28 18:33:34 +0800192 VTY_NEWLINE);
Holger Hans Peter Freythera9e93312011-02-26 11:38:00 +0100193 }
194 }
Holger Hans Peter Freyther0d8330c2010-08-28 18:33:34 +0800195 break;
196 }
197
198 return CMD_SUCCESS;
199}
200
Holger Hans Peter Freytherab7539c2010-04-22 13:36:46 +0800201DEFUN(show_bsc_cfg, show_bsc_cfg_cmd, "show bsc config",
202 SHOW_STR "Display information about known BSC configs")
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +0800203{
204 struct bsc_config *conf;
205 llist_for_each_entry(conf, &_nat->bsc_configs, entry) {
Holger Hans Peter Freyther0bd60f32010-10-08 22:08:29 +0800206 vty_out(vty, "BSC token: '%s' nr: %u%s",
207 conf->token, conf->nr, VTY_NEWLINE);
Holger Hans Peter Freyther8affef52010-06-01 01:03:13 +0800208 if (conf->acc_lst_name)
209 vty_out(vty, " access-list: %s%s",
210 conf->acc_lst_name, VTY_NEWLINE);
Holger Hans Peter Freyther62e58432010-04-21 19:05:14 +0800211 vty_out(vty, " paging forbidden: %d%s",
212 conf->forbid_paging, VTY_NEWLINE);
Holger Hans Peter Freytherb6061012010-05-14 22:06:28 +0800213 if (conf->description)
214 vty_out(vty, " description: %s%s", conf->description, VTY_NEWLINE);
215 else
216 vty_out(vty, " No description.%s", VTY_NEWLINE);
217
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +0800218 }
219
220 return CMD_SUCCESS;
221}
222
Holger Hans Peter Freytherc95cfda2010-07-22 20:26:10 +0800223static void dump_stat_total(struct vty *vty, struct bsc_nat *nat)
224{
225 vty_out(vty, "NAT statistics%s", VTY_NEWLINE);
226 vty_out(vty, " SCCP Connections %lu total, %lu calls%s",
227 counter_get(nat->stats.sccp.conn),
228 counter_get(nat->stats.sccp.calls), VTY_NEWLINE);
229 vty_out(vty, " MSC Connections %lu%s",
230 counter_get(nat->stats.msc.reconn), VTY_NEWLINE);
Holger Hans Peter Freythercbfd0982010-08-04 02:34:10 +0800231 vty_out(vty, " MSC Connected: %d%s",
232 nat->msc_con->is_connected, VTY_NEWLINE);
Holger Hans Peter Freytherc95cfda2010-07-22 20:26:10 +0800233 vty_out(vty, " BSC Connections %lu total, %lu auth failed.%s",
234 counter_get(nat->stats.bsc.reconn),
235 counter_get(nat->stats.bsc.auth_fail), VTY_NEWLINE);
236}
237
238static void dump_stat_bsc(struct vty *vty, struct bsc_config *conf)
239{
Holger Hans Peter Freytherf21e4532010-07-22 20:37:35 +0800240 int connected = 0;
241 struct bsc_connection *con;
242
Holger Hans Peter Freyther0bd60f32010-10-08 22:08:29 +0800243 vty_out(vty, " BSC nr: %d%s",
244 conf->nr, VTY_NEWLINE);
Holger Hans Peter Freytherc95cfda2010-07-22 20:26:10 +0800245 vty_out_rate_ctr_group(vty, " ", conf->stats.ctrg);
Holger Hans Peter Freytherf21e4532010-07-22 20:37:35 +0800246
247 llist_for_each_entry(con, &conf->nat->bsc_connections, list_entry) {
248 if (con->cfg != conf)
249 continue;
250 connected = 1;
251 break;
252 }
253
Holger Hans Peter Freyther03a0ad02010-08-04 02:29:03 +0800254 vty_out(vty, " Connected: %d%s", connected, VTY_NEWLINE);
Holger Hans Peter Freytherc95cfda2010-07-22 20:26:10 +0800255}
256
Holger Hans Peter Freytherbcfebb22010-04-12 12:33:27 +0200257DEFUN(show_stats,
258 show_stats_cmd,
Holger Hans Peter Freyther314191d2010-05-02 18:59:24 +0800259 "show statistics [NR]",
Holger Hans Peter Freytherb9af2fa2010-04-27 15:35:14 +0800260 SHOW_STR "Display network statistics")
Holger Hans Peter Freytherbcfebb22010-04-12 12:33:27 +0200261{
262 struct bsc_config *conf;
263
Holger Hans Peter Freyther314191d2010-05-02 18:59:24 +0800264 int nr = -1;
265
266 if (argc == 1)
267 nr = atoi(argv[0]);
268
Holger Hans Peter Freytherc95cfda2010-07-22 20:26:10 +0800269 dump_stat_total(vty, _nat);
Holger Hans Peter Freytherbcfebb22010-04-12 12:33:27 +0200270 llist_for_each_entry(conf, &_nat->bsc_configs, entry) {
Holger Hans Peter Freyther314191d2010-05-02 18:59:24 +0800271 if (argc == 1 && nr != conf->nr)
272 continue;
Holger Hans Peter Freytherc95cfda2010-07-22 20:26:10 +0800273 dump_stat_bsc(vty, conf);
274 }
Holger Hans Peter Freyther314191d2010-05-02 18:59:24 +0800275
Holger Hans Peter Freytherc95cfda2010-07-22 20:26:10 +0800276 return CMD_SUCCESS;
277}
278
279DEFUN(show_stats_lac,
280 show_stats_lac_cmd,
281 "show statistics-by-lac <0-65535>",
282 SHOW_STR "Display network statistics by lac\n"
283 "The lac of the BSC\n")
284{
285 int lac;
286 struct bsc_config *conf;
287
288 lac = atoi(argv[0]);
289
290 dump_stat_total(vty, _nat);
291 llist_for_each_entry(conf, &_nat->bsc_configs, entry) {
Holger Hans Peter Freyther0bd60f32010-10-08 22:08:29 +0800292 if (!bsc_config_handles_lac(conf, lac))
Holger Hans Peter Freytherc95cfda2010-07-22 20:26:10 +0800293 continue;
294 dump_stat_bsc(vty, conf);
Holger Hans Peter Freytherbcfebb22010-04-12 12:33:27 +0200295 }
296
297 return CMD_SUCCESS;
298}
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +0800299
Holger Hans Peter Freytheraad82ce2010-05-11 19:07:39 +0800300DEFUN(show_msc,
301 show_msc_cmd,
302 "show msc connection",
303 SHOW_STR "Show the status of the MSC connection.")
304{
305 if (!_nat->msc_con) {
306 vty_out(vty, "The MSC is not yet configured.\n");
307 return CMD_WARNING;
308 }
309
310 vty_out(vty, "MSC on %s:%d is connected: %d%s\n",
311 _nat->msc_con->ip, _nat->msc_con->port,
312 _nat->msc_con->is_connected, VTY_NEWLINE);
313 return CMD_SUCCESS;
314}
315
Holger Hans Peter Freyther2f9dcf02010-04-27 13:21:39 +0800316DEFUN(close_bsc,
317 close_bsc_cmd,
318 "close bsc connection BSC_NR",
Holger Hans Peter Freytherb9af2fa2010-04-27 15:35:14 +0800319 "Close the connection with the BSC identified by the config number.")
Holger Hans Peter Freyther2f9dcf02010-04-27 13:21:39 +0800320{
321 struct bsc_connection *bsc;
322 int bsc_nr = atoi(argv[0]);
323
324 llist_for_each_entry(bsc, &_nat->bsc_connections, list_entry) {
325 if (!bsc->cfg || bsc->cfg->nr != bsc_nr)
326 continue;
327 bsc_close_connection(bsc);
328 break;
329 }
330
331 return CMD_SUCCESS;
332}
333
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +0800334DEFUN(cfg_nat, cfg_nat_cmd, "nat", "Configute the NAT")
335{
336 vty->index = _nat;
337 vty->node = NAT_NODE;
338
339 return CMD_SUCCESS;
340}
341
Holger Hans Peter Freythera88742c2010-06-15 18:51:04 +0800342DEFUN(cfg_nat_msc_ip,
343 cfg_nat_msc_ip_cmd,
Holger Hans Peter Freytherd8b82062010-05-14 02:36:42 +0800344 "msc ip A.B.C.D",
Holger Hans Peter Freythera88742c2010-06-15 18:51:04 +0800345 "Set the IP address of the MSC.")
346{
347 bsc_nat_set_msc_ip(_nat, argv[0]);
348 return CMD_SUCCESS;
349}
350
Holger Hans Peter Freyther81395532010-04-17 07:48:45 +0200351DEFUN(cfg_nat_msc_port,
352 cfg_nat_msc_port_cmd,
353 "msc port <1-65500>",
354 "Set the port of the MSC.")
355{
356 _nat->msc_port = atoi(argv[0]);
357 return CMD_SUCCESS;
358}
359
Holger Hans Peter Freytherda35a8d2010-05-05 16:57:38 +0800360DEFUN(cfg_nat_auth_time,
361 cfg_nat_auth_time_cmd,
362 "timeout auth <1-256>",
363 "The time to wait for an auth response.")
364{
365 _nat->auth_timeout = atoi(argv[0]);
366 return CMD_SUCCESS;
367}
368
369DEFUN(cfg_nat_ping_time,
370 cfg_nat_ping_time_cmd,
371 "timeout ping NR",
372 "Send a ping every NR seconds. Negative to disable.")
373{
374 _nat->ping_timeout = atoi(argv[0]);
375 return CMD_SUCCESS;
376}
377
378DEFUN(cfg_nat_pong_time,
379 cfg_nat_pong_time_cmd,
380 "timeout pong NR",
381 "Wait NR seconds for the PONG response. Should be smaller than ping.")
382{
383 _nat->pong_timeout = atoi(argv[0]);
384 return CMD_SUCCESS;
385}
386
Holger Hans Peter Freythere635dab2010-05-15 00:14:58 +0800387DEFUN(cfg_nat_token, cfg_nat_token_cmd,
388 "token TOKEN",
389 "Set a token for the NAT")
390{
Holger Hans Peter Freyther3e9a7f82010-10-12 23:21:54 +0200391 bsc_replace_string(_nat, &_nat->token, argv[0]);
Holger Hans Peter Freythere635dab2010-05-15 00:14:58 +0800392 return CMD_SUCCESS;
393}
394
Holger Hans Peter Freyther6b771072010-07-27 19:21:53 +0800395DEFUN(cfg_nat_bsc_ip_dscp, cfg_nat_bsc_ip_dscp_cmd,
396 "ip-dscp <0-255>",
397 "Set the IP DSCP for the BSCs to use\n" "Set the IP_TOS attribute")
Holger Hans Peter Freyther078321a2010-05-31 10:36:35 +0800398{
Holger Hans Peter Freyther6b771072010-07-27 19:21:53 +0800399 _nat->bsc_ip_dscp = atoi(argv[0]);
Holger Hans Peter Freyther078321a2010-05-31 10:36:35 +0800400 return CMD_SUCCESS;
401}
402
Holger Hans Peter Freyther6b771072010-07-27 19:21:53 +0800403ALIAS_DEPRECATED(cfg_nat_bsc_ip_dscp, cfg_nat_bsc_ip_tos_cmd,
404 "ip-tos <0-255>",
405 "Use ip-dscp in the future.\n" "Set the DSCP\n")
406
407
Holger Hans Peter Freyther8affef52010-06-01 01:03:13 +0800408DEFUN(cfg_nat_acc_lst_name,
409 cfg_nat_acc_lst_name_cmd,
410 "access-list-name NAME",
411 "Set the name of the access list to use.\n"
412 "The name of the to be used access list.")
413{
Holger Hans Peter Freyther3e9a7f82010-10-12 23:21:54 +0200414 bsc_replace_string(_nat, &_nat->acc_lst_name, argv[0]);
Holger Hans Peter Freyther8affef52010-06-01 01:03:13 +0800415 return CMD_SUCCESS;
416}
417
Holger Hans Peter Freyther76424392010-10-21 10:59:54 +0200418DEFUN(cfg_nat_number_rewrite,
419 cfg_nat_number_rewrite_cmd,
420 "number-rewrite FILENAME",
421 "Set the file with rewriting rules.\n" "Filename")
422{
423 bsc_replace_string(_nat, &_nat->num_rewr_name, argv[0]);
424 if (_nat->num_rewr_name) {
425 if (_nat->num_rewr)
426 talloc_free(_nat->num_rewr);
427 _nat->num_rewr = msg_entry_parse(_nat, _nat->num_rewr_name);
428 return _nat->num_rewr == NULL ? CMD_WARNING : CMD_SUCCESS;
429 } else {
430 if (_nat->num_rewr)
431 talloc_free(_nat->num_rewr);
432 _nat->num_rewr = NULL;
433 return CMD_SUCCESS;
434 }
435}
436
Holger Hans Peter Freytherd1effd82010-10-10 17:29:20 +0200437DEFUN(cfg_nat_ussd_lst_name,
438 cfg_nat_ussd_lst_name_cmd,
439 "ussd-list-name NAME",
440 "Set the name of the access list to check for IMSIs for USSD message\n"
441 "The name of the access list for HLR USSD handling")
442{
Holger Hans Peter Freyther64b12922010-10-12 21:31:02 +0200443 bsc_replace_string(_nat, &_nat->ussd_lst_name, argv[0]);
Holger Hans Peter Freytherd1effd82010-10-10 17:29:20 +0200444 return CMD_SUCCESS;
445}
446
Holger Hans Peter Freytherc1578bc2010-10-11 10:06:39 +0200447DEFUN(cfg_nat_ussd_query,
448 cfg_nat_ussd_query_cmd,
449 "ussd-query QUERY",
450 "Set the USSD query to match with the ussd-list-name\n"
451 "The query to match")
452{
Holger Hans Peter Freyther64b12922010-10-12 21:31:02 +0200453 bsc_replace_string(_nat, &_nat->ussd_query, argv[0]);
Holger Hans Peter Freytherc1578bc2010-10-11 10:06:39 +0200454 return CMD_SUCCESS;
455}
456
Holger Hans Peter Freythere393f272010-10-12 18:25:52 +0200457DEFUN(cfg_nat_ussd_token,
458 cfg_nat_ussd_token_cmd,
459 "ussd-token TOKEN",
460 "Set the token used to identify the USSD module\n" "Secret key\n")
461{
Holger Hans Peter Freyther64b12922010-10-12 21:31:02 +0200462 bsc_replace_string(_nat, &_nat->ussd_token, argv[0]);
Holger Hans Peter Freythere393f272010-10-12 18:25:52 +0200463 return CMD_SUCCESS;
464}
465
466DEFUN(cfg_nat_ussd_local,
467 cfg_nat_ussd_local_cmd,
468 "ussd-local-ip A.B.C.D",
469 "Set the IP to listen for the USSD Provider\n" "IP Address\n")
470{
Holger Hans Peter Freyther64b12922010-10-12 21:31:02 +0200471 bsc_replace_string(_nat, &_nat->ussd_local, argv[0]);
Holger Hans Peter Freythere393f272010-10-12 18:25:52 +0200472 return CMD_SUCCESS;
473}
474
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +0800475/* per BSC configuration */
Holger Hans Peter Freytherb9af2fa2010-04-27 15:35:14 +0800476DEFUN(cfg_bsc, cfg_bsc_cmd, "bsc BSC_NR", "Select a BSC to configure")
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +0800477{
478 int bsc_nr = atoi(argv[0]);
479 struct bsc_config *bsc;
480
481 if (bsc_nr > _nat->num_bsc) {
482 vty_out(vty, "%% The next unused BSC number is %u%s",
483 _nat->num_bsc, VTY_NEWLINE);
484 return CMD_WARNING;
485 } else if (bsc_nr == _nat->num_bsc) {
486 /* allocate a new one */
Holger Hans Peter Freyther0bd60f32010-10-08 22:08:29 +0800487 bsc = bsc_config_alloc(_nat, "unknown");
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +0800488 } else
489 bsc = bsc_config_num(_nat, bsc_nr);
490
491 if (!bsc)
492 return CMD_WARNING;
493
494 vty->index = bsc;
Holger Hans Peter Freyther7b4a53d2010-06-17 14:42:20 +0800495 vty->node = NAT_BSC_NODE;
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +0800496
497 return CMD_SUCCESS;
498}
499
500DEFUN(cfg_bsc_token, cfg_bsc_token_cmd, "token TOKEN", "Set the token")
501{
502 struct bsc_config *conf = vty->index;
503
Holger Hans Peter Freyther3e9a7f82010-10-12 23:21:54 +0200504 bsc_replace_string(conf, &conf->token, argv[0]);
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +0800505 return CMD_SUCCESS;
506}
507
508DEFUN(cfg_bsc_lac, cfg_bsc_lac_cmd, "location_area_code <0-65535>",
Holger Hans Peter Freytherb9af2fa2010-04-27 15:35:14 +0800509 "Set the Location Area Code (LAC) of this BSC")
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +0800510{
Holger Hans Peter Freyther39ee8772010-03-30 06:08:56 +0200511 struct bsc_config *tmp;
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +0800512 struct bsc_config *conf = vty->index;
513
514 int lac = atoi(argv[0]);
515
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +0800516 if (lac == GSM_LAC_RESERVED_DETACHED || lac == GSM_LAC_RESERVED_ALL_BTS) {
517 vty_out(vty, "%% LAC %d is reserved by GSM 04.08%s",
518 lac, VTY_NEWLINE);
519 return CMD_WARNING;
520 }
521
Holger Hans Peter Freyther39ee8772010-03-30 06:08:56 +0200522 /* verify that the LACs are unique */
523 llist_for_each_entry(tmp, &_nat->bsc_configs, entry) {
Holger Hans Peter Freyther0bd60f32010-10-08 22:08:29 +0800524 if (bsc_config_handles_lac(tmp, lac)) {
Holger Hans Peter Freyther39ee8772010-03-30 06:08:56 +0200525 vty_out(vty, "%% LAC %d is already used.%s", lac, VTY_NEWLINE);
526 return CMD_ERR_INCOMPLETE;
527 }
528 }
529
Holger Hans Peter Freyther0bd60f32010-10-08 22:08:29 +0800530 bsc_config_add_lac(conf, lac);
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +0800531
532 return CMD_SUCCESS;
533}
534
Holger Hans Peter Freyther0bd60f32010-10-08 22:08:29 +0800535DEFUN(cfg_bsc_no_lac, cfg_bsc_no_lac_cmd,
536 "no location_area_code <0-65535>",
537 NO_STR "Set the Location Area Code (LAC) of this BSC")
538{
539 int lac = atoi(argv[0]);
540 struct bsc_config *conf = vty->index;
541
542 bsc_config_del_lac(conf, lac);
543 return CMD_SUCCESS;
544}
545
546
547
Holger Hans Peter Freyther8affef52010-06-01 01:03:13 +0800548DEFUN(cfg_lst_imsi_allow,
549 cfg_lst_imsi_allow_cmd,
550 "access-list NAME imsi-allow [REGEXP]",
551 "Allow IMSIs matching the REGEXP\n"
552 "The name of the access-list\n"
553 "The regexp of allowed IMSIs\n")
Holger Hans Peter Freytherc16cf272010-04-13 09:24:37 +0200554{
Holger Hans Peter Freyther29c67032010-06-08 10:14:44 +0800555 struct bsc_nat_acc_lst *acc;
Holger Hans Peter Freytherd77c8172010-06-08 10:53:39 +0800556 struct bsc_nat_acc_lst_entry *entry;
Holger Hans Peter Freytherc16cf272010-04-13 09:24:37 +0200557
Holger Hans Peter Freyther29c67032010-06-08 10:14:44 +0800558 acc = bsc_nat_acc_lst_get(_nat, argv[0]);
Holger Hans Peter Freyther8affef52010-06-01 01:03:13 +0800559 if (!acc)
560 return CMD_WARNING;
561
Holger Hans Peter Freytherd77c8172010-06-08 10:53:39 +0800562 entry = bsc_nat_acc_lst_entry_create(acc);
563 if (!entry)
564 return CMD_WARNING;
565
566 bsc_parse_reg(acc, &entry->imsi_allow_re, &entry->imsi_allow, argc - 1, &argv[1]);
Holger Hans Peter Freytherc16cf272010-04-13 09:24:37 +0200567 return CMD_SUCCESS;
568}
569
Holger Hans Peter Freyther8affef52010-06-01 01:03:13 +0800570DEFUN(cfg_lst_imsi_deny,
571 cfg_lst_imsi_deny_cmd,
572 "access-list NAME imsi-deny [REGEXP]",
573 "Allow IMSIs matching the REGEXP\n"
574 "The name of the access-list\n"
575 "The regexp of to be denied IMSIs\n")
576{
Holger Hans Peter Freyther29c67032010-06-08 10:14:44 +0800577 struct bsc_nat_acc_lst *acc;
Holger Hans Peter Freytherd77c8172010-06-08 10:53:39 +0800578 struct bsc_nat_acc_lst_entry *entry;
Holger Hans Peter Freyther8affef52010-06-01 01:03:13 +0800579
Holger Hans Peter Freyther29c67032010-06-08 10:14:44 +0800580 acc = bsc_nat_acc_lst_get(_nat, argv[0]);
Holger Hans Peter Freyther8affef52010-06-01 01:03:13 +0800581 if (!acc)
582 return CMD_WARNING;
583
Holger Hans Peter Freytherd77c8172010-06-08 10:53:39 +0800584 entry = bsc_nat_acc_lst_entry_create(acc);
585 if (!entry)
586 return CMD_WARNING;
587
588 bsc_parse_reg(acc, &entry->imsi_deny_re, &entry->imsi_deny, argc - 1, &argv[1]);
Holger Hans Peter Freyther8affef52010-06-01 01:03:13 +0800589 return CMD_SUCCESS;
590}
591
Holger Hans Peter Freythere4900a02010-06-03 01:44:05 +0800592/* naming to follow Zebra... */
593DEFUN(cfg_lst_no,
594 cfg_lst_no_cmd,
595 "no access-list NAME",
596 NO_STR "Remove an access-list by name\n"
597 "The access-list to remove\n")
598{
Holger Hans Peter Freyther29c67032010-06-08 10:14:44 +0800599 struct bsc_nat_acc_lst *acc;
600 acc = bsc_nat_acc_lst_find(_nat, argv[0]);
Holger Hans Peter Freythere4900a02010-06-03 01:44:05 +0800601 if (!acc)
602 return CMD_WARNING;
603
Holger Hans Peter Freyther29c67032010-06-08 10:14:44 +0800604 bsc_nat_acc_lst_delete(acc);
Holger Hans Peter Freythere4900a02010-06-03 01:44:05 +0800605 return CMD_SUCCESS;
606}
607
Holger Hans Peter Freyther520c1f12010-09-25 16:25:47 +0800608DEFUN(show_acc_lst,
609 show_acc_lst_cmd,
610 "show access-list NAME",
611 SHOW_STR "The name of the access list\n")
612{
613 struct bsc_nat_acc_lst *acc;
614 acc = bsc_nat_acc_lst_find(_nat, argv[0]);
615 if (!acc)
616 return CMD_WARNING;
617
618 vty_out(vty, "access-list %s%s", acc->name, VTY_NEWLINE);
619 vty_out_rate_ctr_group(vty, " ", acc->stats);
620
621 return CMD_SUCCESS;
622}
623
624
Holger Hans Peter Freyther8affef52010-06-01 01:03:13 +0800625DEFUN(cfg_bsc_acc_lst_name,
626 cfg_bsc_acc_lst_name_cmd,
627 "access-list-name NAME",
628 "Set the name of the access list to use.\n"
629 "The name of the to be used access list.")
Holger Hans Peter Freytherc16cf272010-04-13 09:24:37 +0200630{
631 struct bsc_config *conf = vty->index;
632
Holger Hans Peter Freyther3e9a7f82010-10-12 23:21:54 +0200633 bsc_replace_string(conf, &conf->acc_lst_name, argv[0]);
Holger Hans Peter Freytherc16cf272010-04-13 09:24:37 +0200634 return CMD_SUCCESS;
635}
636
Holger Hans Peter Freyther7b07b2d2011-02-25 20:38:15 +0100637DEFUN(cfg_bsc_nr_multip, cfg_bsc_nr_multip_cmd,
Holger Hans Peter Freythera9e93312011-02-26 11:38:00 +0100638 "number-multiplexes <1-64>",
Holger Hans Peter Freyther7b07b2d2011-02-25 20:38:15 +0100639 "Number of multiplexes on a BSC\n" "Number of ports\n")
640{
641 struct bsc_config *conf = vty->index;
642
643 conf->number_multiplexes = atoi(argv[0]);
644 return CMD_SUCCESS;
645}
646
Holger Hans Peter Freyther62e58432010-04-21 19:05:14 +0800647DEFUN(cfg_bsc_paging,
648 cfg_bsc_paging_cmd,
649 "paging forbidden (0|1)",
650 "Forbid sending PAGING REQUESTS to the BSC.")
651{
652 struct bsc_config *conf = vty->index;
653
Holger Hans Peter Freyther834f1df2010-04-21 20:07:07 +0800654 if (strcmp("1", argv[0]) == 0)
Holger Hans Peter Freyther62e58432010-04-21 19:05:14 +0800655 conf->forbid_paging = 1;
656 else
657 conf->forbid_paging = 0;
658
659 return CMD_SUCCESS;
660}
661
Holger Hans Peter Freytherb6061012010-05-14 22:06:28 +0800662DEFUN(cfg_bsc_desc,
663 cfg_bsc_desc_cmd,
664 "description DESC",
665 "Provide a description for the given BSC.")
666{
667 struct bsc_config *conf = vty->index;
668
Holger Hans Peter Freyther3e9a7f82010-10-12 23:21:54 +0200669 bsc_replace_string(conf, &conf->description, argv[0]);
Holger Hans Peter Freytherb6061012010-05-14 22:06:28 +0800670 return CMD_SUCCESS;
671}
672
Holger Hans Peter Freyther52c4ba02010-05-14 23:43:12 +0800673DEFUN(test_regex, test_regex_cmd,
674 "test regex PATTERN STRING",
675 "Check if the string is matching the current pattern.")
676{
677 regex_t reg;
678 char *str = NULL;
679
680 memset(&reg, 0, sizeof(reg));
681 bsc_parse_reg(_nat, &reg, &str, 1, argv);
682
683 vty_out(vty, "String matches allow pattern: %d%s",
684 regexec(&reg, argv[1], 0, NULL, 0) == 0, VTY_NEWLINE);
685
686 talloc_free(str);
687 regfree(&reg);
688 return CMD_SUCCESS;
689}
690
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +0800691int bsc_nat_vty_init(struct bsc_nat *nat)
692{
693 _nat = nat;
694
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +0800695 /* show commands */
Holger Hans Peter Freyther1398f132010-06-15 20:14:08 +0800696 install_element_ve(&show_sccp_cmd);
697 install_element_ve(&show_bsc_cmd);
698 install_element_ve(&show_bsc_cfg_cmd);
699 install_element_ve(&show_stats_cmd);
Holger Hans Peter Freytherc95cfda2010-07-22 20:26:10 +0800700 install_element_ve(&show_stats_lac_cmd);
Holger Hans Peter Freyther1398f132010-06-15 20:14:08 +0800701 install_element_ve(&close_bsc_cmd);
702 install_element_ve(&show_msc_cmd);
703 install_element_ve(&test_regex_cmd);
Holger Hans Peter Freyther0d8330c2010-08-28 18:33:34 +0800704 install_element_ve(&show_bsc_mgcp_cmd);
Holger Hans Peter Freyther520c1f12010-09-25 16:25:47 +0800705 install_element_ve(&show_acc_lst_cmd);
Holger Hans Peter Freyther5f291d52010-04-06 12:01:15 +0200706
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +0800707 /* nat group */
708 install_element(CONFIG_NODE, &cfg_nat_cmd);
709 install_node(&nat_node, config_write_nat);
710 install_default(NAT_NODE);
Holger Hans Peter Freyther9c786972010-06-17 14:39:15 +0800711 install_element(NAT_NODE, &ournode_exit_cmd);
712 install_element(NAT_NODE, &ournode_end_cmd);
Holger Hans Peter Freythera88742c2010-06-15 18:51:04 +0800713 install_element(NAT_NODE, &cfg_nat_msc_ip_cmd);
Holger Hans Peter Freyther81395532010-04-17 07:48:45 +0200714 install_element(NAT_NODE, &cfg_nat_msc_port_cmd);
Holger Hans Peter Freytherda35a8d2010-05-05 16:57:38 +0800715 install_element(NAT_NODE, &cfg_nat_auth_time_cmd);
716 install_element(NAT_NODE, &cfg_nat_ping_time_cmd);
717 install_element(NAT_NODE, &cfg_nat_pong_time_cmd);
Holger Hans Peter Freythere635dab2010-05-15 00:14:58 +0800718 install_element(NAT_NODE, &cfg_nat_token_cmd);
Holger Hans Peter Freyther6b771072010-07-27 19:21:53 +0800719 install_element(NAT_NODE, &cfg_nat_bsc_ip_dscp_cmd);
Holger Hans Peter Freyther078321a2010-05-31 10:36:35 +0800720 install_element(NAT_NODE, &cfg_nat_bsc_ip_tos_cmd);
Holger Hans Peter Freyther8affef52010-06-01 01:03:13 +0800721 install_element(NAT_NODE, &cfg_nat_acc_lst_name_cmd);
Holger Hans Peter Freytherd1effd82010-10-10 17:29:20 +0200722 install_element(NAT_NODE, &cfg_nat_ussd_lst_name_cmd);
Holger Hans Peter Freytherc1578bc2010-10-11 10:06:39 +0200723 install_element(NAT_NODE, &cfg_nat_ussd_query_cmd);
Holger Hans Peter Freythere393f272010-10-12 18:25:52 +0200724 install_element(NAT_NODE, &cfg_nat_ussd_token_cmd);
725 install_element(NAT_NODE, &cfg_nat_ussd_local_cmd);
Holger Hans Peter Freyther8affef52010-06-01 01:03:13 +0800726
727 /* access-list */
728 install_element(NAT_NODE, &cfg_lst_imsi_allow_cmd);
729 install_element(NAT_NODE, &cfg_lst_imsi_deny_cmd);
Holger Hans Peter Freythere4900a02010-06-03 01:44:05 +0800730 install_element(NAT_NODE, &cfg_lst_no_cmd);
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +0800731
Holger Hans Peter Freyther76424392010-10-21 10:59:54 +0200732 /* number rewriting */
733 install_element(NAT_NODE, &cfg_nat_number_rewrite_cmd);
734
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +0800735 /* BSC subgroups */
736 install_element(NAT_NODE, &cfg_bsc_cmd);
737 install_node(&bsc_node, config_write_bsc);
Holger Hans Peter Freyther7b4a53d2010-06-17 14:42:20 +0800738 install_default(NAT_BSC_NODE);
739 install_element(NAT_BSC_NODE, &ournode_exit_cmd);
740 install_element(NAT_BSC_NODE, &ournode_end_cmd);
741 install_element(NAT_BSC_NODE, &cfg_bsc_token_cmd);
742 install_element(NAT_BSC_NODE, &cfg_bsc_lac_cmd);
Holger Hans Peter Freyther0bd60f32010-10-08 22:08:29 +0800743 install_element(NAT_BSC_NODE, &cfg_bsc_no_lac_cmd);
Holger Hans Peter Freyther7b4a53d2010-06-17 14:42:20 +0800744 install_element(NAT_BSC_NODE, &cfg_bsc_paging_cmd);
745 install_element(NAT_BSC_NODE, &cfg_bsc_desc_cmd);
746 install_element(NAT_BSC_NODE, &cfg_bsc_acc_lst_name_cmd);
Holger Hans Peter Freyther7b07b2d2011-02-25 20:38:15 +0100747 install_element(NAT_BSC_NODE, &cfg_bsc_nr_multip_cmd);
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +0800748
Holger Hans Peter Freytherf7d33352010-06-15 18:50:26 +0800749 mgcp_vty_init();
750
Holger Hans Peter Freyther9a85ef32010-06-15 18:46:11 +0800751 return 0;
752}
753
754
755/* called by the telnet interface... we have our own init above */
Holger Hans Peter Freyther6c79a682011-02-24 14:33:09 +0100756int bsc_vty_init(void)
757{
758 return 0;
759}