blob: f824016cdc615a5c2b3071ad8cdede25e5368491 [file] [log] [blame]
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +02001/* GTP Hub main program */
2
3/* (C) 2015 by sysmocom s.f.m.c. GmbH <info@sysmocom.de>
4 * All Rights Reserved
5 *
6 * Author: Neels Hofmeyr
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU Affero General Public License as published by
10 * the Free Software Foundation; either version 3 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU Affero General Public License for more details.
17 *
18 * You should have received a copy of the GNU Affero General Public License
19 * along with this program. If not, see <http://www.gnu.org/licenses/>.
20 */
21
22#include <unistd.h>
23#include <signal.h>
24#include <string.h>
25#include <errno.h>
Neels Hofmeyrba9e9f62015-11-26 22:19:22 +010026#include <inttypes.h>
27#include <sys/stat.h>
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +020028
29#define _GNU_SOURCE
30#include <getopt.h>
31
32#include <osmocom/core/signal.h>
33#include <osmocom/core/application.h>
34#include <osmocom/core/logging.h>
35#include <osmocom/core/utils.h>
36#include <osmocom/core/rate_ctr.h>
37
38#include <osmocom/vty/logging.h>
39#include <osmocom/vty/telnet_interface.h>
Neels Hofmeyr03933a42016-02-23 13:26:02 +010040#include <osmocom/vty/ports.h>
Harald Welte731930b2018-02-14 01:02:22 +010041#include <osmocom/vty/misc.h>
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +020042
Neels Hofmeyr396f2e62017-09-04 15:13:25 +020043#include <osmocom/sgsn/debug.h>
44#include <osmocom/sgsn/gtphub.h>
45#include <osmocom/sgsn/vty.h>
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +020046
47#include "../../bscconfig.h"
48
Max095de012017-10-26 15:27:12 +020049#if BUILD_IU
50#include <osmocom/sigtran/osmo_ss7.h>
51#endif
52
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +020053extern void *osmo_gtphub_ctx;
Neels Hofmeyree6cfdc2017-07-13 02:03:50 +020054void *tall_bsc_ctx;
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +020055
56const char *gtphub_copyright =
57 "Copyright (C) 2015 sysmocom s.f.m.c GmbH <info@sysmocom.de>\r\n"
58 "License AGPLv3+: GNU AGPL version 2 or later <http://gnu.org/licenses/agpl-3.0.html>\r\n"
59 "This is free software: you are free to change and redistribute it.\r\n"
60 "There is NO WARRANTY, to the extent permitted by law.\r\n";
61
62static struct log_info_cat gtphub_categories[] = {
63 [DGTPHUB] = {
64 .name = "DGTPHUB",
65 .description = "GTP Hub",
66 .color = "\033[1;33m",
Neels Hofmeyrd9b1d492015-11-18 18:11:09 +010067 .enabled = 1,
Neels Hofmeyr69da1d42016-02-23 13:28:04 +010068 .loglevel = LOGL_INFO,
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +020069 },
70};
71
72int gtphub_log_filter_fn(const struct log_context *ctx,
73 struct log_target *tar)
74{
75 return 0;
76}
77
78static const struct log_info gtphub_log_info = {
79 .filter_fn = gtphub_log_filter_fn,
80 .cat = gtphub_categories,
81 .num_cat = ARRAY_SIZE(gtphub_categories),
82};
83
84void log_cfg(struct gtphub_cfg *cfg)
85{
Neels Hofmeyra9905a52015-11-29 23:49:48 +010086 int side_idx, plane_idx;
87 for_each_side_and_plane(side_idx, plane_idx) {
Neels Hofmeyr08550082015-11-30 12:19:50 +010088 struct gtphub_cfg_addr *a;
Neels Hofmeyra9905a52015-11-29 23:49:48 +010089 a = &cfg->to_gsns[side_idx][plane_idx].bind;
90 LOGP(DGTPHUB, LOGL_NOTICE,
91 "to-%ss bind, %s: %s port %d\n",
92 gtphub_side_idx_names[side_idx],
93 gtphub_plane_idx_names[plane_idx],
94 a->addr_str, a->port);
95 }
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +020096}
97
98static void signal_handler(int signal)
99{
Neels Hofmeyr08550082015-11-30 12:19:50 +0100100 fprintf(stdout, "signal %d received\n", signal);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200101
102 switch (signal) {
103 case SIGINT:
Harald Welte6f750e62017-08-20 20:50:06 +0200104 case SIGTERM:
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200105 osmo_signal_dispatch(SS_L_GLOBAL, S_L_GLOBAL_SHUTDOWN, NULL);
106 sleep(1);
107 exit(0);
108 break;
109 case SIGABRT:
110 /* in case of abort, we want to obtain a talloc report
111 * and then return to the caller, who will abort the process */
112 case SIGUSR1:
113 case SIGUSR2:
114 talloc_report_full(osmo_gtphub_ctx, stderr);
115 break;
116 default:
117 break;
118 }
119}
120
Philipp Maier4a547a12017-10-20 11:27:26 +0200121#if BUILD_IU
Neels Hofmeyree6cfdc2017-07-13 02:03:50 +0200122int gtphub_vty_go_parent(struct vty *vty)
123{
124 switch (vty->node) {
125 default:
126 osmo_ss7_vty_go_parent(vty);
127 }
128
129 return vty->node;
130}
Philipp Maier4a547a12017-10-20 11:27:26 +0200131#endif
Neels Hofmeyree6cfdc2017-07-13 02:03:50 +0200132
133int gtphub_vty_is_config_node(struct vty *vty, int node)
134{
135 /* Check if libosmo-sccp declares the node in
136 * question as config node */
Philipp Maier4a547a12017-10-20 11:27:26 +0200137#if BUILD_IU
Neels Hofmeyree6cfdc2017-07-13 02:03:50 +0200138 if (osmo_ss7_is_config_node(vty, node))
139 return 1;
Philipp Maier4a547a12017-10-20 11:27:26 +0200140#endif
Neels Hofmeyree6cfdc2017-07-13 02:03:50 +0200141
142 switch (node) {
143 /* add items that are not config */
144 case CONFIG_NODE:
145 return 0;
146
147 default:
148 return 1;
149 }
150}
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200151
152static struct vty_app_info vty_info = {
153 .name = "OsmoGTPhub",
154 .version = PACKAGE_VERSION,
Philipp Maier4a547a12017-10-20 11:27:26 +0200155#if BUILD_IU
Neels Hofmeyree6cfdc2017-07-13 02:03:50 +0200156 .go_parent_cb = gtphub_vty_go_parent,
Philipp Maier4a547a12017-10-20 11:27:26 +0200157#endif
Neels Hofmeyree6cfdc2017-07-13 02:03:50 +0200158 .is_config_node = gtphub_vty_is_config_node,
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200159};
160
161struct cmdline_cfg {
162 const char *config_file;
Neels Hofmeyrba9e9f62015-11-26 22:19:22 +0100163 const char *restart_counter_file;
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200164 int daemonize;
165};
166
Neels Hofmeyrba9e9f62015-11-26 22:19:22 +0100167static uint8_t next_restart_count(const char *path)
168{
169 int umask_was = umask(022);
170
171 uint8_t counter = 0;
172
173 FILE *f = fopen(path, "r");
174 if (f) {
175 int rc = fscanf(f, "%hhu", &counter);
176
177 if (rc != 1)
178 goto failed_to_read;
179
180 char c;
181 while (fread(&c, 1, 1, f) > 0) {
182 switch (c) {
183 case ' ':
184 case '\t':
185 case '\n':
186 case '\r':
187 break;
188 default:
189 goto failed_to_read;
190 }
191 }
192 fclose(f);
193 }
194
195 counter ++;
196
197 f = fopen(path, "w");
198 if (!f)
199 goto failed_to_write;
200 if (fprintf(f, "%" PRIu8 "\n", counter) < 2)
201 goto failed_to_write;
Holger Hans Peter Freytherde766612016-01-23 10:28:09 +0100202 if (fclose(f)) {
203 f = NULL;
Neels Hofmeyrba9e9f62015-11-26 22:19:22 +0100204 goto failed_to_write;
Holger Hans Peter Freytherde766612016-01-23 10:28:09 +0100205 }
Neels Hofmeyrba9e9f62015-11-26 22:19:22 +0100206
207 umask(umask_was);
208
209 LOGP(DGTPHUB, LOGL_NOTICE, "Restarted with counter %hhu\n", counter);
210 return counter;
211
212failed_to_read:
213 fclose(f);
214 umask(umask_was);
215 LOGP(DGTPHUB, LOGL_FATAL, "Restart counter file cannot be parsed:"
216 " %s\n", path);
217 exit(1);
218
219failed_to_write:
220 if (f)
221 fclose(f);
222 umask(umask_was);
223 LOGP(DGTPHUB, LOGL_FATAL, "Restart counter file cannot be written:"
224 " %s\n", path);
225 exit(1);
226}
227
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200228static void print_help(struct cmdline_cfg *ccfg)
229{
230 printf("gtphub commandline options\n");
Neels Hofmeyrba9e9f62015-11-26 22:19:22 +0100231 printf(" -h,--help This text.\n");
232 printf(" -D,--daemonize Fork the process into a background daemon.\n");
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200233 printf(" -d,--debug <cat> Enable Debugging for this category.\n");
234 printf(" Pass '-d list' to get a category listing.\n");
Neels Hofmeyrba9e9f62015-11-26 22:19:22 +0100235 printf(" -s,--disable-color\n");
236 printf(" -c,--config-file <path> The config file to use [%s].\n",
237 ccfg->config_file);
238 printf(" -e,--log-level <nr> Set a global log level.\n");
239 printf(" -r,--restart-file <path> File for counting restarts [%s].\n",
240 ccfg->restart_counter_file);
Oliver Smithe64f0ef2018-10-16 17:09:18 +0200241 printf(" -V,--version Print the version number.\n");
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200242}
243
244static void list_categories(void)
245{
246 printf("Avaliable debug categories:\n");
247 int i;
248 for (i = 0; i < gtphub_log_info.num_cat; ++i) {
249 if (!gtphub_log_info.cat[i].name)
250 continue;
251
252 printf("%s\n", gtphub_log_info.cat[i].name);
253 }
254}
255
256static void handle_options(struct cmdline_cfg *ccfg, int argc, char **argv)
257{
258 while (1) {
259 int option_index = 0, c;
260 static struct option long_options[] = {
261 {"help", 0, 0, 'h'},
262 {"debug", 1, 0, 'd'},
263 {"daemonize", 0, 0, 'D'},
264 {"config-file", 1, 0, 'c'},
265 {"disable-color", 0, 0, 's'},
266 {"timestamp", 0, 0, 'T'},
267 {"log-level", 1, 0, 'e'},
Neels Hofmeyrba9e9f62015-11-26 22:19:22 +0100268 {"restart-file", 1, 0, 'r'},
Oliver Smithe64f0ef2018-10-16 17:09:18 +0200269 { "version", 0, 0, 'V' },
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200270 {NULL, 0, 0, 0}
271 };
272
Oliver Smithe64f0ef2018-10-16 17:09:18 +0200273 c = getopt_long(argc, argv, "hd:Dc:sTe:r:V",
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200274 long_options, &option_index);
Neels Hofmeyr8d1ffbd2015-11-26 05:20:18 +0100275 if (c == -1) {
276 if (optind < argc) {
277 LOGP(DGTPHUB, LOGL_FATAL,
278 "Excess commandline arguments ('%s').\n",
279 argv[optind]);
280 exit(2);
281 }
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200282 break;
Neels Hofmeyr8d1ffbd2015-11-26 05:20:18 +0100283 }
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200284
285 switch (c) {
286 case 'h':
287 //print_usage();
288 print_help(ccfg);
289 exit(0);
290 case 's':
291 log_set_use_color(osmo_stderr_target, 0);
292 break;
293 case 'd':
294 if (strcmp("list", optarg) == 0) {
295 list_categories();
296 exit(0);
297 } else
298 log_parse_category_mask(osmo_stderr_target, optarg);
299 break;
300 case 'D':
301 ccfg->daemonize = 1;
302 break;
303 case 'c':
304 ccfg->config_file = optarg;
305 break;
306 case 'T':
307 log_set_print_timestamp(osmo_stderr_target, 1);
308 break;
309 case 'e':
310 log_set_log_level(osmo_stderr_target, atoi(optarg));
311 break;
Neels Hofmeyrba9e9f62015-11-26 22:19:22 +0100312 case 'r':
313 ccfg->restart_counter_file = optarg;
314 break;
Oliver Smithe64f0ef2018-10-16 17:09:18 +0200315 case 'V':
316 print_version(1);
317 exit(EXIT_SUCCESS);
318 break;
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200319 default:
Neels Hofmeyr956d8562015-12-06 16:40:24 +0100320 LOGP(DGTPHUB, LOGL_FATAL, "Invalid command line argument, abort.\n");
321 exit(1);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200322 break;
323 }
324 }
325}
326
327int main(int argc, char **argv)
328{
329 int rc;
330
Neels Hofmeyr4b2cbda2015-11-20 03:16:19 +0100331 struct cmdline_cfg _ccfg;
332 struct cmdline_cfg *ccfg = &_ccfg;
333 memset(ccfg, '\0', sizeof(*ccfg));
334 ccfg->config_file = "./gtphub.conf";
Neels Hofmeyrba9e9f62015-11-26 22:19:22 +0100335 ccfg->restart_counter_file = "./gtphub_restart_count";
Neels Hofmeyr4b2cbda2015-11-20 03:16:19 +0100336
337 struct gtphub_cfg _cfg;
338 struct gtphub_cfg *cfg = &_cfg;
339 memset(cfg, '\0', sizeof(*cfg));
340
341 struct gtphub _hub;
342 struct gtphub *hub = &_hub;
343
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200344 osmo_gtphub_ctx = talloc_named_const(NULL, 0, "osmo_gtphub");
Neels Hofmeyr4c2d4ab2016-09-16 02:31:17 +0200345 msgb_talloc_ctx_init(osmo_gtphub_ctx, 0);
Harald Welte731930b2018-02-14 01:02:22 +0100346 vty_info.tall_ctx = osmo_gtphub_ctx;
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200347
348 signal(SIGINT, &signal_handler);
Harald Welte6f750e62017-08-20 20:50:06 +0200349 signal(SIGTERM, &signal_handler);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200350 signal(SIGABRT, &signal_handler);
351 signal(SIGUSR1, &signal_handler);
352 signal(SIGUSR2, &signal_handler);
353 osmo_init_ignore_signals();
354
Neels Hofmeyr5bd340e2018-04-16 00:57:10 +0200355 osmo_init_logging2(osmo_gtphub_ctx, &gtphub_log_info);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200356
357 vty_info.copyright = gtphub_copyright;
358 vty_init(&vty_info);
Maxdb0e3802017-01-12 19:35:11 +0100359 logging_vty_add_cmds(NULL);
Harald Welte731930b2018-02-14 01:02:22 +0100360 osmo_talloc_vty_add_cmds();
Neels Hofmeyr4b2cbda2015-11-20 03:16:19 +0100361 gtphub_vty_init(hub, cfg);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200362
363 rate_ctr_init(osmo_gtphub_ctx);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200364
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200365 handle_options(ccfg, argc, argv);
366
367 rc = gtphub_cfg_read(cfg, ccfg->config_file);
368 if (rc < 0) {
Neels Hofmeyrd9b1d492015-11-18 18:11:09 +0100369 LOGP(DGTPHUB, LOGL_FATAL, "Cannot parse config file '%s'\n",
370 ccfg->config_file);
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200371 exit(2);
372 }
373
Neels Hofmeyrfa0f7152016-02-23 14:09:38 +0100374 /* start telnet after reading config for vty_get_bind_addr() */
Neels Hofmeyrfa0f7152016-02-23 14:09:38 +0100375 rc = telnet_init_dynif(osmo_gtphub_ctx, 0, vty_get_bind_addr(),
376 OSMO_VTY_PORT_GTPHUB);
377 if (rc < 0)
378 exit(1);
379
Neels Hofmeyrba9e9f62015-11-26 22:19:22 +0100380 if (gtphub_start(hub, cfg,
381 next_restart_count(ccfg->restart_counter_file))
382 != 0)
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200383 return -1;
384
385 log_cfg(cfg);
386
387 if (ccfg->daemonize) {
388 rc = osmo_daemonize();
389 if (rc < 0) {
Neels Hofmeyrd9b1d492015-11-18 18:11:09 +0100390 LOGP(DGTPHUB, LOGL_FATAL, "Error during daemonize");
Neels Hofmeyrc8a614d2015-09-24 17:32:30 +0200391 exit(1);
392 }
393 }
394
395 while (1) {
396 rc = osmo_select_main(0);
397 if (rc < 0)
398 exit(3);
399 }
400
401 /* not reached */
402 exit(0);
403}