blob: 4e512e4da91cfe16094dacc38a99ce2e44cdbed3 [file] [log] [blame]
Neels Hofmeyr4d8eb4c2016-08-18 01:03:44 +02001/* HNB-GW interface to quagga VTY */
2
3/* (C) 2016 by sysmocom s.f.m.c. GmbH <info@sysmocom.de>
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 Affero General Public License as published by
8 * the Free Software Foundation; either version 3 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 Affero General Public License for more details.
15 *
16 * 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/>.
18 *
19 */
20
Harald Welteda86fe52017-11-21 08:14:37 +010021#include <string.h>
22
Neels Hofmeyr140f38c2017-12-20 23:48:02 +010023#include <osmocom/core/socket.h>
Neels Hofmeyr4d8eb4c2016-08-18 01:03:44 +020024#include <osmocom/vty/command.h>
25
Neels Hofmeyr926153b2016-08-18 02:15:56 +020026#include <osmocom/iuh/vty.h>
27
Neels Hofmeyrdf63de22016-08-18 13:13:55 +020028#include <osmocom/iuh/hnbgw.h>
29#include <osmocom/iuh/context_map.h>
Neels Hofmeyr5ee050c2016-10-13 15:12:18 +020030#include <osmocom/sigtran/protocol/sua.h>
Neels Hofmeyr140f38c2017-12-20 23:48:02 +010031#include <osmocom/sigtran/sccp_helpers.h>
32#include <osmocom/netif/stream.h>
Neels Hofmeyr4d8eb4c2016-08-18 01:03:44 +020033
34static void *tall_hnb_ctx = NULL;
35static struct hnb_gw *g_hnb_gw = NULL;
36
Neels Hofmeyr926153b2016-08-18 02:15:56 +020037static struct cmd_node hnbgw_node = {
38 HNBGW_NODE,
39 "%s(config-hnbgw)# ",
40 1,
41};
42
43DEFUN(cfg_hnbgw, cfg_hnbgw_cmd,
44 "hnbgw", "Configure HNBGW options")
45{
46 vty->node = HNBGW_NODE;
47 return CMD_SUCCESS;
48}
49
50static struct cmd_node iuh_node = {
51 IUH_NODE,
52 "%s(config-hnbgw-iuh)# ",
53 1,
54};
55
56DEFUN(cfg_hnbgw_iuh, cfg_hnbgw_iuh_cmd,
57 "iuh", "Configure Iuh options")
58{
59 vty->node = IUH_NODE;
60 return CMD_SUCCESS;
61}
62
Neels Hofmeyr5ee050c2016-10-13 15:12:18 +020063static struct cmd_node iucs_node = {
64 IUCS_NODE,
65 "%s(config-hnbgw-iucs)# ",
66 1,
67};
68
69DEFUN(cfg_hnbgw_iucs, cfg_hnbgw_iucs_cmd,
70 "iucs", "Configure IuCS options")
71{
72 vty->node = IUCS_NODE;
73 return CMD_SUCCESS;
74}
75
76static struct cmd_node iups_node = {
77 IUPS_NODE,
78 "%s(config-hnbgw-iups)# ",
79 1,
80};
81
82DEFUN(cfg_hnbgw_iups, cfg_hnbgw_iups_cmd,
83 "iups", "Configure IuPS options")
84{
85 vty->node = IUPS_NODE;
86 return CMD_SUCCESS;
87}
88
Neels Hofmeyrc510fc22016-10-13 16:58:04 +020089int hnbgw_vty_go_parent(struct vty *vty)
90{
91 switch (vty->node) {
92 case IUH_NODE:
Neels Hofmeyr5ee050c2016-10-13 15:12:18 +020093 case IUCS_NODE:
94 case IUPS_NODE:
Neels Hofmeyrc510fc22016-10-13 16:58:04 +020095 vty->node = HNBGW_NODE;
96 vty->index = NULL;
97 break;
Neels Hofmeyrc510fc22016-10-13 16:58:04 +020098 case HNBGW_NODE:
99 vty->node = CONFIG_NODE;
100 vty->index = NULL;
101 break;
102 case CONFIG_NODE:
103 vty->node = ENABLE_NODE;
104 vty->index = NULL;
105 break;
Neels Hofmeyrecbdc5c2017-07-31 13:13:24 +0200106 default:
107 osmo_ss7_vty_go_parent(vty);
108 break;
Neels Hofmeyrc510fc22016-10-13 16:58:04 +0200109 }
110
111 return vty->node;
112}
113
Neels Hofmeyr140f38c2017-12-20 23:48:02 +0100114DEFUN(show_cnlink, show_cnlink_cmd, "show cnlink",
115 SHOW_STR "Display information on core network link\n")
116{
117 struct osmo_ss7_route *rt;
118 struct osmo_ss7_instance *ss7 = osmo_sccp_get_ss7(g_hnb_gw->sccp.client);
119 int i;
120#define GUARD(STR) \
121 STR ? STR : "", \
122 STR ? ":" : ""
123
124 vty_out(vty, "IuCS: %s <->",
125 osmo_sccp_user_name(g_hnb_gw->sccp.cnlink->sccp_user));
126 vty_out(vty, " %s%s%s%s",
127 GUARD(g_hnb_gw->config.iucs_remote_addr_name),
128 osmo_sccp_inst_addr_name(g_hnb_gw->sccp.client, &g_hnb_gw->sccp.iucs_remote_addr),
129 VTY_NEWLINE);
130
131 rt = osmo_ss7_route_lookup(ss7, g_hnb_gw->sccp.iucs_remote_addr.pc);
132 vty_out(vty, " SS7 route: %s%s", osmo_ss7_route_name(rt, true), VTY_NEWLINE);
133
134 vty_out(vty, "IuPS: %s <->",
135 osmo_sccp_user_name(g_hnb_gw->sccp.cnlink->sccp_user));
136 vty_out(vty, " %s%s%s%s",
137 GUARD(g_hnb_gw->config.iups_remote_addr_name),
138 osmo_sccp_inst_addr_name(g_hnb_gw->sccp.client, &g_hnb_gw->sccp.iups_remote_addr),
139 VTY_NEWLINE);
140
141 rt = osmo_ss7_route_lookup(ss7, g_hnb_gw->sccp.iups_remote_addr.pc);
142 vty_out(vty, " SS7 route: %s%s", osmo_ss7_route_name(rt, true), VTY_NEWLINE);
143
144#undef GUARD
145 return CMD_SUCCESS;
146}
147
148static void vty_out_ofd_addr(struct vty *vty, struct osmo_fd *ofd)
149{
150 char *name;
151 if (!ofd || ofd->fd < 0
152 || !(name = osmo_sock_get_name(vty, ofd->fd))) {
153 vty_out(vty, "(no addr)");
154 return;
155 }
156 vty_out(vty, name);
157 talloc_free(name);
158}
159
Neels Hofmeyr9e17e052017-12-25 00:35:05 +0100160static void vty_dump_hnb_info__map_states(struct vty *vty, const char *name, unsigned int count,
161 unsigned int state_count[])
162{
163 unsigned int i;
164 if (!count)
165 return;
166 vty_out(vty, " %s: %u contexts:", name, count);
167 for (i = 0; i <= MAP_S_NUM_STATES; i++) {
168 if (!state_count[i])
169 continue;
170 vty_out(vty, " %s:%u", hnbgw_context_map_state_name(i), state_count[i]);
171 }
172 vty_out(vty, VTY_NEWLINE);
173}
174
Neels Hofmeyr4d8eb4c2016-08-18 01:03:44 +0200175static void vty_dump_hnb_info(struct vty *vty, struct hnb_context *hnb)
176{
177 struct hnbgw_context_map *map;
Neels Hofmeyr9e17e052017-12-25 00:35:05 +0100178 unsigned int map_count[2] = {};
179 unsigned int state_count[2][MAP_S_NUM_STATES + 1] = {};
Neels Hofmeyr4d8eb4c2016-08-18 01:03:44 +0200180
Neels Hofmeyr140f38c2017-12-20 23:48:02 +0100181 vty_out(vty, "HNB ");
182 vty_out_ofd_addr(vty, hnb->conn? osmo_stream_srv_get_ofd(hnb->conn) : NULL);
183 vty_out(vty, " \"%s\"%s", hnb->identity_info, VTY_NEWLINE);
184 vty_out(vty, " MCC %u MNC %u LAC %u RAC %u SAC %u CID %u SCCP-stream:HNBAP=%u,RUA=%u%s",
185 hnb->id.mcc, hnb->id.mnc, hnb->id.lac, hnb->id.rac, hnb->id.sac, hnb->id.cid,
186 hnb->hnbap_stream, hnb->rua_stream, VTY_NEWLINE);
Neels Hofmeyr4d8eb4c2016-08-18 01:03:44 +0200187
188 llist_for_each_entry(map, &hnb->map_list, hnb_list) {
Neels Hofmeyr9e17e052017-12-25 00:35:05 +0100189 map_count[map->is_ps? 1 : 0]++;
190 state_count[map->is_ps? 1 : 0]
191 [(map->state >= 0 && map->state < MAP_S_NUM_STATES)?
192 map->state : MAP_S_NUM_STATES]++;
Neels Hofmeyr4d8eb4c2016-08-18 01:03:44 +0200193 }
Neels Hofmeyr9e17e052017-12-25 00:35:05 +0100194 vty_dump_hnb_info__map_states(vty, "IuCS", map_count[0], state_count[0]);
195 vty_dump_hnb_info__map_states(vty, "IuPS", map_count[1], state_count[1]);
Neels Hofmeyr4d8eb4c2016-08-18 01:03:44 +0200196}
197
198static void vty_dump_ue_info(struct vty *vty, struct ue_context *ue)
199{
200 vty_out(vty, "UE IMSI \"%s\" context ID %u%s", ue->imsi, ue->context_id, VTY_NEWLINE);
201}
202
203DEFUN(show_hnb, show_hnb_cmd, "show hnb all", SHOW_STR "Display information about a HNB")
204{
205 struct hnb_context *hnb;
Neels Hofmeyr9e17e052017-12-25 00:35:05 +0100206 unsigned int count = 0;
Neels Hofmeyr4d8eb4c2016-08-18 01:03:44 +0200207
Neels Hofmeyr140f38c2017-12-20 23:48:02 +0100208 if (llist_empty(&g_hnb_gw->hnb_list)) {
209 vty_out(vty, "No HNB connected%s", VTY_NEWLINE);
210 return CMD_SUCCESS;
211 }
212
Neels Hofmeyr4d8eb4c2016-08-18 01:03:44 +0200213 llist_for_each_entry(hnb, &g_hnb_gw->hnb_list, list) {
214 vty_dump_hnb_info(vty, hnb);
Neels Hofmeyr9e17e052017-12-25 00:35:05 +0100215 count++;
Neels Hofmeyr4d8eb4c2016-08-18 01:03:44 +0200216 }
217
Neels Hofmeyr9e17e052017-12-25 00:35:05 +0100218 vty_out(vty, "%u HNB connected%s", count, VTY_NEWLINE);
219
Neels Hofmeyr4d8eb4c2016-08-18 01:03:44 +0200220 return CMD_SUCCESS;
221}
222
223DEFUN(show_ue, show_ue_cmd, "show ue all", SHOW_STR "Display information about a UE")
224{
225 struct ue_context *ue;
226
227 llist_for_each_entry(ue, &g_hnb_gw->ue_list, list) {
228 vty_dump_ue_info(vty, ue);
229 }
230
231 return CMD_SUCCESS;
232}
233
234DEFUN(show_talloc, show_talloc_cmd, "show talloc", SHOW_STR "Display talloc info")
235{
236 talloc_report_full(tall_hnb_ctx, stderr);
237 talloc_report_full(talloc_asn1_ctx, stderr);
238
239 return CMD_SUCCESS;
240}
241
Neels Hofmeyr39ee9262016-09-26 01:07:19 +0200242DEFUN(cfg_hnbgw_iuh_local_ip, cfg_hnbgw_iuh_local_ip_cmd, "local-ip A.B.C.D",
Neels Hofmeyrf495b232016-08-18 02:18:00 +0200243 "Accept Iuh connections on local interface\n"
Neels Hofmeyrc7ccdd42016-10-13 14:43:49 +0200244 "Local interface IP address (default: " HNBGW_LOCAL_IP_DEFAULT ")")
Neels Hofmeyrf495b232016-08-18 02:18:00 +0200245{
Neels Hofmeyrc7ccdd42016-10-13 14:43:49 +0200246 talloc_free((void*)g_hnb_gw->config.iuh_local_ip);
247 g_hnb_gw->config.iuh_local_ip = talloc_strdup(tall_hnb_ctx, argv[0]);
Neels Hofmeyrf495b232016-08-18 02:18:00 +0200248 return CMD_SUCCESS;
249}
250
Neels Hofmeyr9153de62016-10-13 15:11:07 +0200251DEFUN(cfg_hnbgw_iuh_local_port, cfg_hnbgw_iuh_local_port_cmd, "local-port <1-65535>",
252 "Accept Iuh connections on local port\n"
253 "Local interface port (default: 29169)")
254{
255 g_hnb_gw->config.iuh_local_port = atoi(argv[0]);
256 return CMD_SUCCESS;
257}
258
Neels Hofmeyr12181a92016-04-25 15:05:32 +0200259DEFUN(cfg_hnbgw_iuh_hnbap_allow_tmsi, cfg_hnbgw_iuh_hnbap_allow_tmsi_cmd,
260 "hnbap-allow-tmsi (0|1)",
261 "Allow HNBAP UE Register messages with TMSI or PTMSI identity\n"
262 "Only accept IMSI identity, reject TMSI or PTMSI\n"
263 "Accept IMSI, TMSI or PTMSI as UE identity\n")
264{
265 g_hnb_gw->config.hnbap_allow_tmsi = (*argv[0] == '1');
266 return CMD_SUCCESS;
267}
268
Neels Hofmeyrecbdc5c2017-07-31 13:13:24 +0200269DEFUN(cfg_hnbgw_iucs_remote_addr,
270 cfg_hnbgw_iucs_remote_addr_cmd,
271 "remote-addr NAME",
272 "SCCP address to send IuCS to (MSC)\n"
273 "SCCP address book entry name (see 'cs7-instance')\n")
Neels Hofmeyr5ee050c2016-10-13 15:12:18 +0200274{
Neels Hofmeyrecbdc5c2017-07-31 13:13:24 +0200275 g_hnb_gw->config.iucs_remote_addr_name = talloc_strdup(g_hnb_gw, argv[0]);
Neels Hofmeyr5ee050c2016-10-13 15:12:18 +0200276 return CMD_SUCCESS;
277}
278
Neels Hofmeyrecbdc5c2017-07-31 13:13:24 +0200279DEFUN(cfg_hnbgw_iups_remote_addr,
280 cfg_hnbgw_iups_remote_addr_cmd,
281 "remote-addr NAME",
282 "SCCP address to send IuPS to (SGSN)\n"
283 "SCCP address book entry name (see 'cs7-instance')\n")
Neels Hofmeyr5ee050c2016-10-13 15:12:18 +0200284{
Neels Hofmeyrecbdc5c2017-07-31 13:13:24 +0200285 g_hnb_gw->config.iups_remote_addr_name = talloc_strdup(g_hnb_gw, argv[0]);
Neels Hofmeyr5ee050c2016-10-13 15:12:18 +0200286 return CMD_SUCCESS;
287}
288
Neels Hofmeyr926153b2016-08-18 02:15:56 +0200289static int config_write_hnbgw(struct vty *vty)
290{
291 vty_out(vty, "hnbgw%s", VTY_NEWLINE);
292 return CMD_SUCCESS;
293}
294
295static int config_write_hnbgw_iuh(struct vty *vty)
296{
Neels Hofmeyrf495b232016-08-18 02:18:00 +0200297 const char *addr;
Neels Hofmeyr9153de62016-10-13 15:11:07 +0200298 uint16_t port;
Neels Hofmeyrf495b232016-08-18 02:18:00 +0200299
Neels Hofmeyr926153b2016-08-18 02:15:56 +0200300 vty_out(vty, " iuh%s", VTY_NEWLINE);
Neels Hofmeyrf495b232016-08-18 02:18:00 +0200301
Neels Hofmeyrc7ccdd42016-10-13 14:43:49 +0200302 addr = g_hnb_gw->config.iuh_local_ip;
303 if (addr && (strcmp(addr, HNBGW_LOCAL_IP_DEFAULT) != 0))
Neels Hofmeyr39ee9262016-09-26 01:07:19 +0200304 vty_out(vty, " local-ip %s%s", addr, VTY_NEWLINE);
Neels Hofmeyrf495b232016-08-18 02:18:00 +0200305
Neels Hofmeyr9153de62016-10-13 15:11:07 +0200306 port = g_hnb_gw->config.iuh_local_port;
307 if (port && port != IUH_DEFAULT_SCTP_PORT)
308 vty_out(vty, " local-port %u%s", port, VTY_NEWLINE);
309
Neels Hofmeyr12181a92016-04-25 15:05:32 +0200310 if (g_hnb_gw->config.hnbap_allow_tmsi)
311 vty_out(vty, " hnbap-allow-tmsi 1%s", VTY_NEWLINE);
312
Neels Hofmeyr926153b2016-08-18 02:15:56 +0200313 return CMD_SUCCESS;
314}
315
Neels Hofmeyr5ee050c2016-10-13 15:12:18 +0200316static int config_write_hnbgw_iucs(struct vty *vty)
317{
Neels Hofmeyrecbdc5c2017-07-31 13:13:24 +0200318 if (!g_hnb_gw->config.iucs_remote_addr_name)
319 return CMD_SUCCESS;
320
Neels Hofmeyr5ee050c2016-10-13 15:12:18 +0200321 vty_out(vty, " iucs%s", VTY_NEWLINE);
Neels Hofmeyrecbdc5c2017-07-31 13:13:24 +0200322 vty_out(vty, " remote-addr %s%s", g_hnb_gw->config.iucs_remote_addr_name,
323 VTY_NEWLINE);
Neels Hofmeyr5ee050c2016-10-13 15:12:18 +0200324
325 return CMD_SUCCESS;
326}
327
328static int config_write_hnbgw_iups(struct vty *vty)
329{
Neels Hofmeyrecbdc5c2017-07-31 13:13:24 +0200330 if (!g_hnb_gw->config.iups_remote_addr_name)
331 return CMD_SUCCESS;
332
Neels Hofmeyr5ee050c2016-10-13 15:12:18 +0200333 vty_out(vty, " iups%s", VTY_NEWLINE);
Neels Hofmeyrecbdc5c2017-07-31 13:13:24 +0200334 vty_out(vty, " remote-addr %s%s", g_hnb_gw->config.iups_remote_addr_name,
335 VTY_NEWLINE);
Neels Hofmeyr5ee050c2016-10-13 15:12:18 +0200336
337 return CMD_SUCCESS;
338}
339
Neels Hofmeyr4d8eb4c2016-08-18 01:03:44 +0200340void hnbgw_vty_init(struct hnb_gw *gw, void *tall_ctx)
341{
342 g_hnb_gw = gw;
343 tall_hnb_ctx = tall_ctx;
Neels Hofmeyr926153b2016-08-18 02:15:56 +0200344
345 install_element(CONFIG_NODE, &cfg_hnbgw_cmd);
346 install_node(&hnbgw_node, config_write_hnbgw);
Neels Hofmeyr926153b2016-08-18 02:15:56 +0200347
348 install_element(HNBGW_NODE, &cfg_hnbgw_iuh_cmd);
349 install_node(&iuh_node, config_write_hnbgw_iuh);
Neels Hofmeyr12181a92016-04-25 15:05:32 +0200350
Neels Hofmeyr39ee9262016-09-26 01:07:19 +0200351 install_element(IUH_NODE, &cfg_hnbgw_iuh_local_ip_cmd);
Neels Hofmeyr9153de62016-10-13 15:11:07 +0200352 install_element(IUH_NODE, &cfg_hnbgw_iuh_local_port_cmd);
Neels Hofmeyr12181a92016-04-25 15:05:32 +0200353 install_element(IUH_NODE, &cfg_hnbgw_iuh_hnbap_allow_tmsi_cmd);
Neels Hofmeyr926153b2016-08-18 02:15:56 +0200354
Neels Hofmeyr5ee050c2016-10-13 15:12:18 +0200355 install_element(HNBGW_NODE, &cfg_hnbgw_iucs_cmd);
356 install_node(&iucs_node, config_write_hnbgw_iucs);
Neels Hofmeyr5ee050c2016-10-13 15:12:18 +0200357
Neels Hofmeyrecbdc5c2017-07-31 13:13:24 +0200358 install_element(IUCS_NODE, &cfg_hnbgw_iucs_remote_addr_cmd);
Neels Hofmeyr5ee050c2016-10-13 15:12:18 +0200359
360 install_element(HNBGW_NODE, &cfg_hnbgw_iups_cmd);
361 install_node(&iups_node, config_write_hnbgw_iups);
Neels Hofmeyr5ee050c2016-10-13 15:12:18 +0200362
Neels Hofmeyrecbdc5c2017-07-31 13:13:24 +0200363 install_element(IUPS_NODE, &cfg_hnbgw_iups_remote_addr_cmd);
Neels Hofmeyr5ee050c2016-10-13 15:12:18 +0200364
Neels Hofmeyr140f38c2017-12-20 23:48:02 +0100365 install_element_ve(&show_cnlink_cmd);
Neels Hofmeyr4d8eb4c2016-08-18 01:03:44 +0200366 install_element_ve(&show_hnb_cmd);
367 install_element_ve(&show_ue_cmd);
368 install_element_ve(&show_talloc_cmd);
369}