blob: b0f8d6c3f37cee247e98a8038fafc6b389976ac8 [file] [log] [blame]
Harald Welte59b04682009-06-10 05:40:52 +08001/* A hackish minimal BSC (+MSC +HLR) implementation */
2
3/* (C) 2008-2009 by Harald Welte <laforge@gnumonks.org>
4 * (C) 2009 by Holger Hans Peter Freyther <zecke@selfish.org>
5 * All Rights Reserved
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License along
18 * with this program; if not, write to the Free Software Foundation, Inc.,
19 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
20 *
21 */
22
23#include <unistd.h>
Harald Welte59b04682009-06-10 05:40:52 +080024#include <time.h>
Harald Welte59b04682009-06-10 05:40:52 +080025#include <errno.h>
26#include <signal.h>
27#include <fcntl.h>
28#include <sys/stat.h>
29
30#define _GNU_SOURCE
31#include <getopt.h>
32
33#include <openbsc/db.h>
Harald Welte59b04682009-06-10 05:40:52 +080034#include <openbsc/select.h>
Harald Welte59b04682009-06-10 05:40:52 +080035#include <openbsc/debug.h>
Harald Welte59b04682009-06-10 05:40:52 +080036#include <openbsc/e1_input.h>
Harald Weltea8379772009-06-20 22:36:41 +020037#include <openbsc/talloc.h>
Harald Welted21adfe2009-11-30 19:37:18 +010038#include <openbsc/signal.h>
Harald Weltea8379772009-06-20 22:36:41 +020039
Harald Welte59b04682009-06-10 05:40:52 +080040/* MCC and MNC for the Location Area Identifier */
Holger Hans Peter Freythercad370f2009-08-17 06:55:10 +020041struct gsm_network *bsc_gsmnet = 0;
Harald Welte59b04682009-06-10 05:40:52 +080042static const char *database_name = "hlr.sqlite3";
Holger Hans Peter Freyther4fa91d02009-08-10 08:39:27 +020043static const char *config_file = "openbsc.cfg";
Harald Welte3c062072009-07-28 18:25:29 +020044extern int ipacc_rtp_direct;
Harald Welte59b04682009-06-10 05:40:52 +080045
Holger Hans Peter Freythercad370f2009-08-17 06:55:10 +020046extern int bsc_bootstrap_network(int (*mmc_rev)(struct gsm_network *, int, void *),
47 const char *cfg_file);
48extern int bsc_shutdown_net(struct gsm_network *net);
Harald Welte59b04682009-06-10 05:40:52 +080049
50static void create_pcap_file(char *file)
51{
52 mode_t mode = S_IRUSR | S_IWUSR | S_IRGRP | S_IROTH;
53 int fd = open(file, O_WRONLY|O_TRUNC|O_CREAT, mode);
54
55 if (fd < 0) {
56 perror("Failed to open file for pcap");
57 return;
58 }
59
60 e1_set_pcap_fd(fd);
61}
62
63static void print_usage()
64{
65 printf("Usage: bsc_hack\n");
66}
67
68static void print_help()
69{
70 printf(" Some useful help...\n");
Harald Welte62868882009-08-08 16:12:58 +020071 printf(" -h --help this text\n");
Harald Welte59b04682009-06-10 05:40:52 +080072 printf(" -d option --debug=DRLL:DCC:DMM:DRR:DRSL:DNM enable debugging\n");
73 printf(" -s --disable-color\n");
Holger Hans Peter Freyther4fa91d02009-08-10 08:39:27 +020074 printf(" -c --config-file filename The config file to use.\n");
Harald Welte59b04682009-06-10 05:40:52 +080075 printf(" -l --database db-name The database to use\n");
Harald Welte59b04682009-06-10 05:40:52 +080076 printf(" -p --pcap file The filename of the pcap file\n");
Harald Weltebea12fe2009-08-12 21:52:11 +020077 printf(" -T --timestamp Prefix every log line with a timestamp\n");
Harald Welte59b04682009-06-10 05:40:52 +080078}
79
80static void handle_options(int argc, char** argv)
81{
82 while (1) {
Harald Weltea8379772009-06-20 22:36:41 +020083 int option_index = 0, c;
Harald Welte59b04682009-06-10 05:40:52 +080084 static struct option long_options[] = {
85 {"help", 0, 0, 'h'},
86 {"debug", 1, 0, 'd'},
Holger Hans Peter Freyther4fa91d02009-08-10 08:39:27 +020087 {"config-file", 1, 0, 'c'},
Harald Welte59b04682009-06-10 05:40:52 +080088 {"disable-color", 0, 0, 's'},
Harald Welte59b04682009-06-10 05:40:52 +080089 {"database", 1, 0, 'l'},
90 {"authorize-everyone", 0, 0, 'a'},
Harald Welte59b04682009-06-10 05:40:52 +080091 {"pcap", 1, 0, 'p'},
Harald Welte59b04682009-06-10 05:40:52 +080092 {"timestamp", 0, 0, 'T'},
Harald Welte3c062072009-07-28 18:25:29 +020093 {"rtp-proxy", 0, 0, 'P'},
Harald Welte59b04682009-06-10 05:40:52 +080094 {0, 0, 0, 0}
95 };
96
Holger Hans Peter Freythercad370f2009-08-17 06:55:10 +020097 c = getopt_long(argc, argv, "hd:sl:ar:p:TPc:",
Harald Welte59b04682009-06-10 05:40:52 +080098 long_options, &option_index);
99 if (c == -1)
100 break;
101
102 switch (c) {
103 case 'h':
104 print_usage();
105 print_help();
106 exit(0);
107 case 's':
108 debug_use_color(0);
109 break;
110 case 'd':
111 debug_parse_category_mask(optarg);
112 break;
Harald Welte59b04682009-06-10 05:40:52 +0800113 case 'l':
114 database_name = strdup(optarg);
115 break;
Holger Hans Peter Freyther4fa91d02009-08-10 08:39:27 +0200116 case 'c':
117 config_file = strdup(optarg);
118 break;
Harald Welte59b04682009-06-10 05:40:52 +0800119 case 'p':
120 create_pcap_file(optarg);
121 break;
Harald Welte59b04682009-06-10 05:40:52 +0800122 case 'T':
123 debug_timestamp(1);
124 break;
Harald Welte3c062072009-07-28 18:25:29 +0200125 case 'P':
126 ipacc_rtp_direct = 0;
127 break;
Harald Welte59b04682009-06-10 05:40:52 +0800128 default:
129 /* ignore */
130 break;
131 }
132 }
133}
134
135static void signal_handler(int signal)
136{
137 fprintf(stdout, "signal %u received\n", signal);
138
139 switch (signal) {
Harald Welte3b714502009-08-06 17:43:50 +0200140 case SIGINT:
Holger Hans Peter Freythercad370f2009-08-17 06:55:10 +0200141 bsc_shutdown_net(bsc_gsmnet);
Harald Welted21adfe2009-11-30 19:37:18 +0100142 dispatch_signal(SS_GLOBAL, S_GLOBAL_SHUTDOWN, NULL);
Harald Welte3b714502009-08-06 17:43:50 +0200143 sleep(3);
144 exit(0);
Harald Welte59b04682009-06-10 05:40:52 +0800145 break;
Harald Welte4d5e6d52009-08-07 00:29:44 +0200146 case SIGABRT:
147 /* in case of abort, we want to obtain a talloc report
148 * and then return to the caller, who will abort the process */
Harald Weltea8379772009-06-20 22:36:41 +0200149 case SIGUSR1:
150 talloc_report_full(tall_bsc_ctx, stderr);
151 break;
Harald Welte59b04682009-06-10 05:40:52 +0800152 default:
153 break;
154 }
155}
156
157int main(int argc, char **argv)
158{
159 int rc;
160
Harald Weltea8379772009-06-20 22:36:41 +0200161 tall_bsc_ctx = talloc_named_const(NULL, 1, "openbsc");
Harald Welte (local)8751ee92009-08-15 02:30:58 +0200162 talloc_ctx_init();
Harald Welte (local)bd931f12009-08-13 13:52:14 +0200163 on_dso_load_token();
Harald Welte (local)95713782009-08-16 13:18:51 +0200164 on_dso_load_rrlp();
Harald Welteb90d7bd2009-12-17 00:31:10 +0100165 on_dso_load_ho_dec();
Harald Weltea8379772009-06-20 22:36:41 +0200166
Harald Welte59b04682009-06-10 05:40:52 +0800167 /* parse options */
168 handle_options(argc, argv);
169
170 /* seed the PRNG */
171 srand(time(NULL));
172
Holger Hans Peter Freythercad370f2009-08-17 06:55:10 +0200173 if (db_init(database_name)) {
174 printf("DB: Failed to init database. Please check the option settings.\n");
175 return -1;
176 }
177 printf("DB: Database initialized.\n");
178
179 if (db_prepare()) {
180 printf("DB: Failed to prepare database.\n");
181 return -1;
182 }
183 printf("DB: Database prepared.\n");
184
185 rc = bsc_bootstrap_network(mncc_recv, config_file);
Harald Welte59b04682009-06-10 05:40:52 +0800186 if (rc < 0)
187 exit(1);
188
Harald Welte3b714502009-08-06 17:43:50 +0200189 signal(SIGINT, &signal_handler);
Harald Welte59b04682009-06-10 05:40:52 +0800190 signal(SIGABRT, &signal_handler);
Harald Weltea8379772009-06-20 22:36:41 +0200191 signal(SIGUSR1, &signal_handler);
Holger Hans Peter Freyther49b05d32009-11-24 20:06:41 +0100192 signal(SIGPIPE, SIG_IGN);
Harald Welte59b04682009-06-10 05:40:52 +0800193
194 while (1) {
Holger Hans Peter Freythercad370f2009-08-17 06:55:10 +0200195 bsc_upqueue(bsc_gsmnet);
Harald Welte59b04682009-06-10 05:40:52 +0800196 bsc_select_main(0);
197 }
198}