blob: 0eb9261d3424677735d615c6aecf20237a9230bc [file] [log] [blame]
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02001/* (C) 2015 by sysmocom s.f.m.c. GmbH
2 * All Rights Reserved
3 *
4 * Author: Neels Hofmeyr
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
21#include <string.h>
22
Neels Hofmeyrb6c2db52015-11-18 18:11:32 +010023#include <ares.h>
24#include <sys/socket.h>
25#include <netinet/in.h>
26#include <arpa/inet.h>
27
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +020028#include <osmocom/core/talloc.h>
29#include <osmocom/vty/command.h>
Neels Hofmeyr4b2cbda2015-11-20 03:16:19 +010030#include <osmocom/vty/misc.h>
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +020031
32#include <openbsc/vty.h>
33#include <openbsc/gtphub.h>
34
Neels Hofmeyrb6c2db52015-11-18 18:11:32 +010035/* TODO split GRX ares from sgsn into a separate struct and allow use without
36 * globals. */
37#include <openbsc/sgsn.h>
38extern struct sgsn_instance *sgsn;
39
Neels Hofmeyr4b2cbda2015-11-20 03:16:19 +010040static struct gtphub *g_hub = 0;
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +020041static struct gtphub_cfg *g_cfg = 0;
42
43static struct cmd_node gtphub_node = {
44 GTPHUB_NODE,
45 "%s(config-gtphub)# ",
46 1,
47};
48
49#define GTPH_DEFAULT_CONTROL_PORT 2123
50#define GTPH_DEFAULT_USER_PORT 2152
51
52static void write_addrs(struct vty *vty, const char *name,
53 struct gtphub_cfg_addr *c, struct gtphub_cfg_addr *u)
54{
55 if ((c->port == GTPH_DEFAULT_CONTROL_PORT)
56 && (u->port == GTPH_DEFAULT_USER_PORT)
57 && (strcmp(c->addr_str, u->addr_str) == 0)) {
58 /* Default port numbers and same IP address: write "short"
59 * variant. */
60 vty_out(vty, " %s %s%s",
61 name,
62 c->addr_str,
63 VTY_NEWLINE);
64 return;
65 }
66
67 vty_out(vty, " %s ctrl %s %d user %s %d%s",
68 name,
69 c->addr_str, (int)c->port,
70 u->addr_str, (int)u->port,
71 VTY_NEWLINE);
Neels Hofmeyrb6c2db52015-11-18 18:11:32 +010072
73 struct ares_addr_node *server;
74 for (server = sgsn->ares_servers; server; server = server->next)
75 vty_out(vty, " grx-dns-add %s%s", inet_ntoa(server->addr.addr4), VTY_NEWLINE);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +020076}
77
78static int config_write_gtphub(struct vty *vty)
79{
80 vty_out(vty, "gtphub%s", VTY_NEWLINE);
81
82 write_addrs(vty, "bind-to-sgsns",
Neels Hofmeyra9905a52015-11-29 23:49:48 +010083 &g_cfg->to_gsns[GTPH_SIDE_SGSN][GTPH_PLANE_CTRL].bind,
84 &g_cfg->to_gsns[GTPH_SIDE_SGSN][GTPH_PLANE_USER].bind);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +020085
86 write_addrs(vty, "bind-to-ggsns",
Neels Hofmeyra9905a52015-11-29 23:49:48 +010087 &g_cfg->to_gsns[GTPH_SIDE_GGSN][GTPH_PLANE_CTRL].bind,
88 &g_cfg->to_gsns[GTPH_SIDE_GGSN][GTPH_PLANE_USER].bind);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +020089
Neels Hofmeyrca2361c2015-12-03 14:12:44 +010090 if (g_cfg->sgsn_use_sender) {
91 vty_out(vty, "sgsn-use-sender%s", VTY_NEWLINE);
92 }
93
Neels Hofmeyr817bc322015-11-29 23:50:45 +010094 if (g_cfg->proxy[GTPH_SIDE_SGSN][GTPH_PLANE_CTRL].addr_str) {
95 write_addrs(vty, "sgsn-proxy",
96 &g_cfg->proxy[GTPH_SIDE_SGSN][GTPH_PLANE_CTRL],
97 &g_cfg->proxy[GTPH_SIDE_SGSN][GTPH_PLANE_USER]);
98 }
99
Neels Hofmeyra9905a52015-11-29 23:49:48 +0100100 if (g_cfg->proxy[GTPH_SIDE_GGSN][GTPH_PLANE_CTRL].addr_str) {
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200101 write_addrs(vty, "ggsn-proxy",
Neels Hofmeyra9905a52015-11-29 23:49:48 +0100102 &g_cfg->proxy[GTPH_SIDE_GGSN][GTPH_PLANE_CTRL],
103 &g_cfg->proxy[GTPH_SIDE_GGSN][GTPH_PLANE_USER]);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200104 }
105
106 return CMD_SUCCESS;
107}
108
109DEFUN(cfg_gtphub, cfg_gtphub_cmd,
110 "gtphub",
111 "Configure the GTP hub")
112{
113 vty->node = GTPHUB_NODE;
114 return CMD_SUCCESS;
115}
116
117#define BIND_ARGS "ctrl ADDR <0-65535> user ADDR <0-65535>"
118#define BIND_DOCS \
119 "Set GTP-C bind\n" \
120 "GTP-C local IP address (v4 or v6)\n" \
121 "GTP-C local port\n" \
122 "Set GTP-U bind\n" \
123 "GTP-U local IP address (v4 or v6)\n" \
124 "GTP-U local port\n"
125
126
127DEFUN(cfg_gtphub_bind_to_sgsns_short, cfg_gtphub_bind_to_sgsns_short_cmd,
128 "bind-to-sgsns ADDR",
129 "GTP Hub Parameters\n"
130 "Set the local bind address to listen for SGSNs, for both GTP-C and GTP-U\n"
131 "Local IP address (v4 or v6)\n"
132 )
133{
134 int i;
Neels Hofmeyrf9773202015-11-27 00:05:56 +0100135 for_each_plane(i)
Neels Hofmeyra9905a52015-11-29 23:49:48 +0100136 g_cfg->to_gsns[GTPH_SIDE_SGSN][i].bind.addr_str = talloc_strdup(tall_vty_ctx, argv[0]);
137 g_cfg->to_gsns[GTPH_SIDE_SGSN][GTPH_PLANE_CTRL].bind.port = GTPH_DEFAULT_CONTROL_PORT;
138 g_cfg->to_gsns[GTPH_SIDE_SGSN][GTPH_PLANE_USER].bind.port = GTPH_DEFAULT_USER_PORT;
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200139 return CMD_SUCCESS;
140}
141
142DEFUN(cfg_gtphub_bind_to_ggsns_short, cfg_gtphub_bind_to_ggsns_short_cmd,
143 "bind-to-ggsns ADDR",
144 "GTP Hub Parameters\n"
145 "Set the local bind address to listen for GGSNs, for both GTP-C and GTP-U\n"
146 "Local IP address (v4 or v6)\n"
147 )
148{
149 int i;
Neels Hofmeyrf9773202015-11-27 00:05:56 +0100150 for_each_plane(i)
Neels Hofmeyra9905a52015-11-29 23:49:48 +0100151 g_cfg->to_gsns[GTPH_SIDE_GGSN][i].bind.addr_str = talloc_strdup(tall_vty_ctx, argv[0]);
152 g_cfg->to_gsns[GTPH_SIDE_GGSN][GTPH_PLANE_CTRL].bind.port = GTPH_DEFAULT_CONTROL_PORT;
153 g_cfg->to_gsns[GTPH_SIDE_GGSN][GTPH_PLANE_USER].bind.port = GTPH_DEFAULT_USER_PORT;
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200154 return CMD_SUCCESS;
155}
156
157
158static int handle_binds(struct gtphub_cfg_bind *b, const char **argv)
159{
160 b[GTPH_PLANE_CTRL].bind.addr_str = talloc_strdup(tall_vty_ctx, argv[0]);
161 b[GTPH_PLANE_CTRL].bind.port = atoi(argv[1]);
162 b[GTPH_PLANE_USER].bind.addr_str = talloc_strdup(tall_vty_ctx, argv[2]);
163 b[GTPH_PLANE_USER].bind.port = atoi(argv[3]);
164 return CMD_SUCCESS;
165}
166
167DEFUN(cfg_gtphub_bind_to_sgsns, cfg_gtphub_bind_to_sgsns_cmd,
168 "bind-to-sgsns " BIND_ARGS,
169 "GTP Hub Parameters\n"
170 "Set the local bind addresses and ports to listen for SGSNs\n"
171 BIND_DOCS
172 )
173{
Neels Hofmeyra9905a52015-11-29 23:49:48 +0100174 return handle_binds(g_cfg->to_gsns[GTPH_SIDE_SGSN], argv);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200175}
176
177DEFUN(cfg_gtphub_bind_to_ggsns, cfg_gtphub_bind_to_ggsns_cmd,
178 "bind-to-ggsns " BIND_ARGS,
179 "GTP Hub Parameters\n"
180 "Set the local bind addresses and ports to listen for GGSNs\n"
181 BIND_DOCS
182 )
183{
Neels Hofmeyra9905a52015-11-29 23:49:48 +0100184 return handle_binds(g_cfg->to_gsns[GTPH_SIDE_GGSN], argv);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200185}
186
187DEFUN(cfg_gtphub_ggsn_proxy_short, cfg_gtphub_ggsn_proxy_short_cmd,
188 "ggsn-proxy ADDR",
189 "GTP Hub Parameters\n"
190 "Redirect all GGSN bound traffic to default ports on this address (another gtphub)\n"
191 "Remote IP address (v4 or v6)\n"
192 )
193{
Neels Hofmeyra9905a52015-11-29 23:49:48 +0100194 g_cfg->proxy[GTPH_SIDE_GGSN][GTPH_PLANE_CTRL].addr_str = talloc_strdup(tall_vty_ctx, argv[0]);
195 g_cfg->proxy[GTPH_SIDE_GGSN][GTPH_PLANE_CTRL].port = GTPH_DEFAULT_CONTROL_PORT;
196 g_cfg->proxy[GTPH_SIDE_GGSN][GTPH_PLANE_USER].addr_str = talloc_strdup(tall_vty_ctx, argv[0]);
197 g_cfg->proxy[GTPH_SIDE_GGSN][GTPH_PLANE_USER].port = GTPH_DEFAULT_USER_PORT;
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200198 return CMD_SUCCESS;
199}
200
201DEFUN(cfg_gtphub_ggsn_proxy, cfg_gtphub_ggsn_proxy_cmd,
202 "ggsn-proxy " BIND_ARGS,
203 "GTP Hub Parameters\n"
204 "Redirect all GGSN bound traffic to these addresses and ports (another gtphub)\n"
205 BIND_DOCS
206 )
207{
Neels Hofmeyra9905a52015-11-29 23:49:48 +0100208 g_cfg->proxy[GTPH_SIDE_GGSN][GTPH_PLANE_CTRL].addr_str = talloc_strdup(tall_vty_ctx, argv[0]);
209 g_cfg->proxy[GTPH_SIDE_GGSN][GTPH_PLANE_CTRL].port = atoi(argv[1]);
210 g_cfg->proxy[GTPH_SIDE_GGSN][GTPH_PLANE_USER].addr_str = talloc_strdup(tall_vty_ctx, argv[2]);
211 g_cfg->proxy[GTPH_SIDE_GGSN][GTPH_PLANE_USER].port = atoi(argv[3]);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200212 return CMD_SUCCESS;
213}
214
215DEFUN(cfg_gtphub_sgsn_proxy_short, cfg_gtphub_sgsn_proxy_short_cmd,
216 "sgsn-proxy ADDR",
217 "GTP Hub Parameters\n"
218 "Redirect all SGSN bound traffic to default ports on this address (another gtphub)\n"
219 "Remote IP address (v4 or v6)\n"
220 )
221{
Neels Hofmeyra9905a52015-11-29 23:49:48 +0100222 g_cfg->proxy[GTPH_SIDE_SGSN][GTPH_PLANE_CTRL].addr_str = talloc_strdup(tall_vty_ctx, argv[0]);
223 g_cfg->proxy[GTPH_SIDE_SGSN][GTPH_PLANE_CTRL].port = GTPH_DEFAULT_CONTROL_PORT;
224 g_cfg->proxy[GTPH_SIDE_SGSN][GTPH_PLANE_USER].addr_str = talloc_strdup(tall_vty_ctx, argv[0]);
225 g_cfg->proxy[GTPH_SIDE_SGSN][GTPH_PLANE_USER].port = GTPH_DEFAULT_USER_PORT;
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200226 return CMD_SUCCESS;
227}
228
229DEFUN(cfg_gtphub_sgsn_proxy, cfg_gtphub_sgsn_proxy_cmd,
230 "sgsn-proxy " BIND_ARGS,
231 "GTP Hub Parameters\n"
232 "Redirect all SGSN bound traffic to these addresses and ports (another gtphub)\n"
233 BIND_DOCS
234 )
235{
Neels Hofmeyra9905a52015-11-29 23:49:48 +0100236 g_cfg->proxy[GTPH_SIDE_SGSN][GTPH_PLANE_CTRL].addr_str = talloc_strdup(tall_vty_ctx, argv[0]);
237 g_cfg->proxy[GTPH_SIDE_SGSN][GTPH_PLANE_CTRL].port = atoi(argv[1]);
238 g_cfg->proxy[GTPH_SIDE_SGSN][GTPH_PLANE_USER].addr_str = talloc_strdup(tall_vty_ctx, argv[2]);
239 g_cfg->proxy[GTPH_SIDE_SGSN][GTPH_PLANE_USER].port = atoi(argv[3]);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200240 return CMD_SUCCESS;
241}
242
Neels Hofmeyrb6c2db52015-11-18 18:11:32 +0100243
Neels Hofmeyrca2361c2015-12-03 14:12:44 +0100244#define SGSN_USE_SENDER_STR \
245 "Ignore SGSN's Address IEs, use sender address and port (useful over NAT)\n"
246
247DEFUN(cfg_gtphub_sgsn_use_sender,
248 cfg_gtphub_sgsn_use_sender_cmd,
249 "sgsn-use-sender",
250 SGSN_USE_SENDER_STR)
251{
252 g_cfg->sgsn_use_sender = 1;
253 return CMD_SUCCESS;
254}
255
256DEFUN(cfg_gtphub_no_sgsn_use_sender,
257 cfg_gtphub_no_sgsn_use_sender_cmd,
258 "no sgsn-use-sender",
259 NO_STR SGSN_USE_SENDER_STR)
260{
261 g_cfg->sgsn_use_sender = 0;
262 return CMD_SUCCESS;
263}
264
265
Neels Hofmeyrb6c2db52015-11-18 18:11:32 +0100266/* Copied from sgsn_vty.h */
267DEFUN(cfg_grx_ggsn, cfg_grx_ggsn_cmd,
268 "grx-dns-add A.B.C.D",
269 "Add DNS server\nIPv4 address\n")
270{
271 struct ares_addr_node *node = talloc_zero(tall_bsc_ctx, struct ares_addr_node);
272 node->family = AF_INET;
273 inet_aton(argv[0], &node->addr.addr4);
274
275 node->next = sgsn->ares_servers;
276 sgsn->ares_servers = node;
277 return CMD_SUCCESS;
278}
279
280
Neels Hofmeyr4b2cbda2015-11-20 03:16:19 +0100281/*
282(show gtphub all, show gtphub stats, show gtphub teidmap,
283 show gtphub peers, ...)
284*/
285
286static void show_bind_stats_all(struct vty *vty)
287{
288 int plane_idx;
Neels Hofmeyrf9773202015-11-27 00:05:56 +0100289 for_each_plane(plane_idx) {
Neels Hofmeyr4b2cbda2015-11-20 03:16:19 +0100290 vty_out(vty, "- %s Plane:%s",
291 gtphub_plane_idx_names[plane_idx], VTY_NEWLINE);
292
Neels Hofmeyrba0525e2015-12-06 16:39:23 +0100293 int side_idx;
294 for_each_side(side_idx) {
295 struct gtphub_bind *b = &g_hub->to_gsns[side_idx][plane_idx];
296 vty_out(vty, " - to/from %ss: %s port %d%s",
297 gtphub_side_idx_names[side_idx],
298 gsn_addr_to_str(&b->local_addr), (int)b->local_port,
299 VTY_NEWLINE);
300 vty_out_rate_ctr_group(vty, " ", b->counters_io);
301 }
Neels Hofmeyr4b2cbda2015-11-20 03:16:19 +0100302 }
303}
304
305/*
306static void show_peers_summary(struct vty *vty)
307{
308 int c
309 int plane_idx;
310}
311*/
312
Neels Hofmeyre54cd152015-11-24 13:31:06 +0100313static void show_tunnels_summary(struct vty *vty)
Neels Hofmeyr4b2cbda2015-11-20 03:16:19 +0100314{
315 time_t now = gtphub_now();
316
Neels Hofmeyr4b2cbda2015-11-20 03:16:19 +0100317 const int w = 36;
Neels Hofmeyre54cd152015-11-24 13:31:06 +0100318 int max_expiry = g_hub->expire_slowly.expiry_in_seconds;
Neels Hofmeyr4b2cbda2015-11-20 03:16:19 +0100319 float seconds_per_step = ((float)max_expiry) / w;
320
321 /* Print TEI mapping expiry in an ASCII histogram, like:
322 TEI map summary
323 Legend: '_'=0 '.'<=1% ':'<=2% '|'<=10% '#'>10% (10.0 m/step)
Neels Hofmeyre54cd152015-11-24 13:31:06 +0100324 CTRL: 30 mappings, valid for 360m[# :. | . : . ]1m
325 USER: 30 mappings, valid for 360m[# :. | . : . ]1m
Neels Hofmeyr4b2cbda2015-11-20 03:16:19 +0100326 4 TEI mappings in total, last expiry in 359.4 min
327 */
328 vty_out(vty,
Neels Hofmeyre54cd152015-11-24 13:31:06 +0100329 "Tunnels summary%s"
330 " Legend: ' '=0 '.'<=1%% ':'<=2%% '|'<=10%% '#'>10%% (%.1f m/step)%s",
Neels Hofmeyr4b2cbda2015-11-20 03:16:19 +0100331 VTY_NEWLINE,
332 seconds_per_step / 60.,
333 VTY_NEWLINE);
334
335 int last_expiry = 0;
Neels Hofmeyr4b2cbda2015-11-20 03:16:19 +0100336
Neels Hofmeyre54cd152015-11-24 13:31:06 +0100337 unsigned int count = 0;
Neels Hofmeyr4b2cbda2015-11-20 03:16:19 +0100338
Neels Hofmeyre54cd152015-11-24 13:31:06 +0100339 int histogram[w];
340 memset(histogram, 0, sizeof(histogram));
Neels Hofmeyr4b2cbda2015-11-20 03:16:19 +0100341
Neels Hofmeyre54cd152015-11-24 13:31:06 +0100342 struct gtphub_tunnel *t;
343 llist_for_each_entry(t, &g_hub->tunnels, entry) {
344 count ++;
345 int expiry = t->expiry_entry.expiry - now;
346 last_expiry = (last_expiry > expiry) ? last_expiry : expiry;
Neels Hofmeyr4b2cbda2015-11-20 03:16:19 +0100347
Neels Hofmeyre54cd152015-11-24 13:31:06 +0100348 int hi = ((float)expiry) / seconds_per_step;
349 if (hi < 0)
350 hi = 0;
351 if (hi > (w - 1))
352 hi = w - 1;
353 histogram[hi] ++;
Neels Hofmeyr4b2cbda2015-11-20 03:16:19 +0100354 }
Neels Hofmeyre54cd152015-11-24 13:31:06 +0100355
356 vty_out(vty,
357 " %u tunnels, valid for %dm[",
358 count, max_expiry / 60);
359
360 int i;
361 for (i = w - 1; i >= 0; i--) {
362 char c;
363 int val = histogram[i];
364 int percent = 100. * val / count;
365 if (!val)
366 c = ' ';
367 else if (percent <= 1)
368 c = '.';
369 else if (percent <= 2)
370 c = ':';
371 else if (percent <= 10)
372 c = '|';
373 else c = '#';
374 vty_out(vty, "%c", c);
375 }
376 vty_out(vty, "]1m%s", VTY_NEWLINE);
377
378 vty_out(vty, " last expiry in %.1f min%s",
Neels Hofmeyr4b2cbda2015-11-20 03:16:19 +0100379 ((float)last_expiry) / 60.,
380 VTY_NEWLINE);
381}
382
Neels Hofmeyre54cd152015-11-24 13:31:06 +0100383static void show_tunnels_all(struct vty *vty)
Neels Hofmeyr4b2cbda2015-11-20 03:16:19 +0100384{
385 time_t now = gtphub_now();
386
Neels Hofmeyre54cd152015-11-24 13:31:06 +0100387 vty_out(vty, "All tunnels:%s"
Neels Hofmeyrba0525e2015-12-06 16:39:23 +0100388 "Legend: (expiry in minutes) SGSN <-> GGSN, with each:%s"
Neels Hofmeyre54cd152015-11-24 13:31:06 +0100389 " <IP-Ctrl>[/<IP-User>] (<TEI-Ctrl>=<mapped>/<TEI-User>=<mapped>)%s",
390 VTY_NEWLINE, VTY_NEWLINE, VTY_NEWLINE);
Neels Hofmeyr4b2cbda2015-11-20 03:16:19 +0100391
Neels Hofmeyre54cd152015-11-24 13:31:06 +0100392 unsigned int count = 0;
393 unsigned int incomplete = 0;
394 struct gtphub_tunnel *t;
395 llist_for_each_entry(t, &g_hub->tunnels, entry) {
Neels Hofmeyr4b2cbda2015-11-20 03:16:19 +0100396 vty_out(vty,
Neels Hofmeyre54cd152015-11-24 13:31:06 +0100397 "(%4dm) %s%s",
Neels Hofmeyrba0525e2015-12-06 16:39:23 +0100398 (int)((t->expiry_entry.expiry - now) / 60),
Neels Hofmeyre54cd152015-11-24 13:31:06 +0100399 gtphub_tunnel_str(t),
400 VTY_NEWLINE);
401 count ++;
402 if (!gtphub_tunnel_complete(t))
403 incomplete ++;
Neels Hofmeyr4b2cbda2015-11-20 03:16:19 +0100404 }
Neels Hofmeyre54cd152015-11-24 13:31:06 +0100405 vty_out(vty, "Total: %u tunnels%s", count, VTY_NEWLINE);
Neels Hofmeyr4b2cbda2015-11-20 03:16:19 +0100406}
407
Neels Hofmeyre54cd152015-11-24 13:31:06 +0100408DEFUN(show_gtphub_tunnels_summary, show_gtphub_tunnels_summary_cmd, "show gtphub tunnels summary",
409 SHOW_STR "Summary of all tunnels")
Neels Hofmeyr4b2cbda2015-11-20 03:16:19 +0100410{
Neels Hofmeyre54cd152015-11-24 13:31:06 +0100411 show_tunnels_summary(vty);
Neels Hofmeyr4b2cbda2015-11-20 03:16:19 +0100412 return CMD_SUCCESS;
413}
414
Neels Hofmeyre54cd152015-11-24 13:31:06 +0100415DEFUN(show_gtphub_tunnels_list, show_gtphub_tunnels_list_cmd, "show gtphub tunnels list",
416 SHOW_STR "List all tunnels")
Neels Hofmeyr4b2cbda2015-11-20 03:16:19 +0100417{
Neels Hofmeyre54cd152015-11-24 13:31:06 +0100418 show_tunnels_all(vty);
Neels Hofmeyr4b2cbda2015-11-20 03:16:19 +0100419 return CMD_SUCCESS;
420}
421
422DEFUN(show_gtphub, show_gtphub_cmd, "show gtphub all",
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200423 SHOW_STR "Display information about the GTP hub")
424{
Neels Hofmeyr4b2cbda2015-11-20 03:16:19 +0100425 show_bind_stats_all(vty);
Neels Hofmeyre54cd152015-11-24 13:31:06 +0100426 show_tunnels_summary(vty);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200427 return CMD_SUCCESS;
428}
429
430
Neels Hofmeyr4b2cbda2015-11-20 03:16:19 +0100431int gtphub_vty_init(struct gtphub *global_hub, struct gtphub_cfg *global_cfg)
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200432{
Neels Hofmeyr4b2cbda2015-11-20 03:16:19 +0100433 g_hub = global_hub;
434 g_cfg = global_cfg;
435
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200436 install_element_ve(&show_gtphub_cmd);
Neels Hofmeyre54cd152015-11-24 13:31:06 +0100437 install_element_ve(&show_gtphub_tunnels_summary_cmd);
438 install_element_ve(&show_gtphub_tunnels_list_cmd);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200439
440 install_element(CONFIG_NODE, &cfg_gtphub_cmd);
441 install_node(&gtphub_node, config_write_gtphub);
442 vty_install_default(GTPHUB_NODE);
443
444 install_element(GTPHUB_NODE, &cfg_gtphub_bind_to_sgsns_short_cmd);
445 install_element(GTPHUB_NODE, &cfg_gtphub_bind_to_sgsns_cmd);
446 install_element(GTPHUB_NODE, &cfg_gtphub_bind_to_ggsns_short_cmd);
447 install_element(GTPHUB_NODE, &cfg_gtphub_bind_to_ggsns_cmd);
448 install_element(GTPHUB_NODE, &cfg_gtphub_ggsn_proxy_short_cmd);
449 install_element(GTPHUB_NODE, &cfg_gtphub_ggsn_proxy_cmd);
450 install_element(GTPHUB_NODE, &cfg_gtphub_sgsn_proxy_short_cmd);
451 install_element(GTPHUB_NODE, &cfg_gtphub_sgsn_proxy_cmd);
Neels Hofmeyrca2361c2015-12-03 14:12:44 +0100452 install_element(GTPHUB_NODE, &cfg_gtphub_sgsn_use_sender_cmd);
453 install_element(GTPHUB_NODE, &cfg_gtphub_no_sgsn_use_sender_cmd);
Neels Hofmeyrb6c2db52015-11-18 18:11:32 +0100454 install_element(GTPHUB_NODE, &cfg_grx_ggsn_cmd);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200455
456 return 0;
457}
458
459int gtphub_cfg_read(struct gtphub_cfg *cfg, const char *config_file)
460{
461 int rc;
462
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200463 rc = vty_read_config_file(config_file, NULL);
464 if (rc < 0) {
465 fprintf(stderr, "Failed to parse the config file: '%s'\n", config_file);
466 return rc;
467 }
468
469 return 0;
470}