blob: a6b9e490694e9fd0604a52f5a21384466a9cb1e4 [file] [log] [blame]
Harald Welte9f75c352010-04-30 20:26:32 +02001/* NS-over-IP proxy */
2
3/* (C) 2010 by Harald Welte <laforge@gnumonks.org>
Holger Hans Peter Freyther85531cc2010-10-06 20:37:09 +08004 * (C) 2010 by On-Waves
Harald Welte9f75c352010-04-30 20:26:32 +02005 * All Rights Reserved
6 *
7 * This program is free software; you can redistribute it and/or modify
Harald Welte9af6ddf2011-01-01 15:25:50 +01008 * it under the terms of the GNU Affero General Public License as published by
9 * the Free Software Foundation; either version 3 of the License, or
Harald Welte9f75c352010-04-30 20:26:32 +020010 * (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
Harald Welte9af6ddf2011-01-01 15:25:50 +010015 * GNU Affero General Public License for more details.
Harald Welte9f75c352010-04-30 20:26:32 +020016 *
Harald Welte9af6ddf2011-01-01 15:25:50 +010017 * You should have received a copy of the GNU Affero General Public License
18 * along with this program. If not, see <http://www.gnu.org/licenses/>.
Harald Welte9f75c352010-04-30 20:26:32 +020019 *
20 */
21
22#include <unistd.h>
23#include <stdio.h>
24#include <stdlib.h>
25#include <string.h>
26#include <getopt.h>
27#include <errno.h>
Harald Welte6df0c512010-05-12 18:40:01 +000028#include <signal.h>
Harald Welte9f75c352010-04-30 20:26:32 +020029#include <sys/fcntl.h>
30#include <sys/stat.h>
31#include <sys/types.h>
32#include <sys/socket.h>
33#include <netinet/in.h>
34#include <arpa/inet.h>
35
36#include <osmocore/talloc.h>
37#include <osmocore/select.h>
Harald Weltef2b4cd72010-05-13 11:45:07 +020038#include <osmocore/rate_ctr.h>
Harald Welte2c869ef2010-08-25 19:43:54 +020039#include <osmocore/process.h>
Harald Welte9f75c352010-04-30 20:26:32 +020040
41#include <openbsc/signal.h>
42#include <openbsc/debug.h>
43#include <openbsc/gprs_ns.h>
Harald Welte0a4050c2010-05-11 10:01:17 +020044#include <openbsc/gprs_bssgp.h>
Harald Welte9f75c352010-04-30 20:26:32 +020045#include <openbsc/vty.h>
Harald Welteb77c6972010-05-01 11:28:43 +020046#include <openbsc/gb_proxy.h>
Harald Welte9f75c352010-04-30 20:26:32 +020047
Harald Welte4b037e42010-05-19 19:45:32 +020048#include <osmocom/vty/command.h>
49#include <osmocom/vty/telnet_interface.h>
Harald Welte1353f962010-05-16 19:20:24 +020050
Harald Weltee2365962010-05-04 07:41:59 +020051#include "../../bscconfig.h"
Harald Welte9f75c352010-04-30 20:26:32 +020052
53/* this is here for the vty... it will never be called */
54void subscr_put() { abort(); }
55
56#define _GNU_SOURCE
57#include <getopt.h>
58
59void *tall_bsc_ctx;
60
Harald Welte9f75c352010-04-30 20:26:32 +020061const char *openbsc_copyright =
Holger Hans Peter Freyther5f540752010-09-11 13:32:30 +080062 "Copyright (C) 2010 Harald Welte and On-Waves\r\n"
Harald Welte9af6ddf2011-01-01 15:25:50 +010063 "License AGPLv3+: GNU AGPL version 3 or later <http://gnu.org/licenses/agpl-3.0.html>\r\n"
Holger Hans Peter Freyther5f540752010-09-11 13:32:30 +080064 "This is free software: you are free to change and redistribute it.\r\n"
65 "There is NO WARRANTY, to the extent permitted by law.\r\n";
Harald Welte9f75c352010-04-30 20:26:32 +020066
Harald Welte768f2872010-05-14 11:22:33 +000067static struct log_target *stderr_target;
Harald Welte288be162010-05-01 16:48:27 +020068static char *config_file = "osmo_gbproxy.cfg";
Harald Welte672f5c42010-05-03 18:54:58 +020069struct gbproxy_config gbcfg;
Harald Welte2c869ef2010-08-25 19:43:54 +020070static int daemonize = 0;
Harald Welte9f75c352010-04-30 20:26:32 +020071
72/* Pointer to the SGSN peer */
73extern struct gbprox_peer *gbprox_peer_sgsn;
74
75/* call-back function for the NS protocol */
76static int proxy_ns_cb(enum gprs_ns_evt event, struct gprs_nsvc *nsvc,
77 struct msgb *msg, u_int16_t bvci)
78{
79 int rc = 0;
80
81 switch (event) {
82 case GPRS_NS_EVT_UNIT_DATA:
83 rc = gbprox_rcvmsg(msg, nsvc, bvci);
84 break;
85 default:
86 LOGP(DGPRS, LOGL_ERROR, "SGSN: Unknown event %u from NS\n", event);
87 if (msg)
88 talloc_free(msg);
89 rc = -EIO;
90 break;
91 }
92 return rc;
93}
94
Harald Welte6df0c512010-05-12 18:40:01 +000095static void signal_handler(int signal)
96{
97 fprintf(stdout, "signal %u received\n", signal);
98
99 switch (signal) {
100 case SIGINT:
101 dispatch_signal(SS_GLOBAL, S_GLOBAL_SHUTDOWN, NULL);
102 sleep(1);
103 exit(0);
104 break;
105 case SIGABRT:
106 /* in case of abort, we want to obtain a talloc report
107 * and then return to the caller, who will abort the process */
108 case SIGUSR1:
109 talloc_report(tall_vty_ctx, stderr);
110 talloc_report_full(tall_bsc_ctx, stderr);
111 break;
112 case SIGUSR2:
113 talloc_report_full(tall_vty_ctx, stderr);
114 break;
115 default:
116 break;
117 }
118}
119
Harald Welte768f2872010-05-14 11:22:33 +0000120static void print_usage()
121{
122 printf("Usage: bsc_hack\n");
123}
124
125static void print_help()
126{
127 printf(" Some useful help...\n");
128 printf(" -h --help this text\n");
129 printf(" -d option --debug=DNS:DGPRS,0:0 enable debugging\n");
Harald Welte2c869ef2010-08-25 19:43:54 +0200130 printf(" -D --daemonize Fork the process into a background daemon\n");
Harald Welte768f2872010-05-14 11:22:33 +0000131 printf(" -c --config-file filename The config file to use.\n");
132 printf(" -s --disable-color\n");
133 printf(" -T --timestamp Prefix every log line with a timestamp\n");
134 printf(" -V --version. Print the version of OpenBSC.\n");
135 printf(" -e --log-level number. Set a global loglevel.\n");
136}
137
138static void handle_options(int argc, char **argv)
139{
140 while (1) {
141 int option_index = 0, c;
142 static struct option long_options[] = {
143 { "help", 0, 0, 'h' },
144 { "debug", 1, 0, 'd' },
Harald Welte2c869ef2010-08-25 19:43:54 +0200145 { "daemonize", 0, 0, 'D' },
Harald Welte768f2872010-05-14 11:22:33 +0000146 { "config-file", 1, 0, 'c' },
147 { "disable-color", 0, 0, 's' },
148 { "timestamp", 0, 0, 'T' },
149 { "version", 0, 0, 'V' },
150 { "log-level", 1, 0, 'e' },
151 { 0, 0, 0, 0 }
152 };
153
Harald Welte2c869ef2010-08-25 19:43:54 +0200154 c = getopt_long(argc, argv, "hd:Dc:sTVe:",
Harald Welte768f2872010-05-14 11:22:33 +0000155 long_options, &option_index);
156 if (c == -1)
157 break;
158
159 switch (c) {
160 case 'h':
161 print_usage();
162 print_help();
163 exit(0);
164 case 's':
165 log_set_use_color(stderr_target, 0);
166 break;
167 case 'd':
168 log_parse_category_mask(stderr_target, optarg);
169 break;
Harald Welte2c869ef2010-08-25 19:43:54 +0200170 case 'D':
171 daemonize = 1;
172 break;
Harald Welte768f2872010-05-14 11:22:33 +0000173 case 'c':
174 config_file = strdup(optarg);
175 break;
176 case 'T':
177 log_set_print_timestamp(stderr_target, 1);
178 break;
179 case 'e':
180 log_set_log_level(stderr_target, atoi(optarg));
181 break;
182 case 'V':
Harald Welte1353f962010-05-16 19:20:24 +0200183 print_version(1);
Harald Welte768f2872010-05-14 11:22:33 +0000184 exit(0);
185 break;
186 default:
187 break;
188 }
189 }
190}
191
Harald Welte6df0c512010-05-12 18:40:01 +0000192extern void *tall_msgb_ctx;
Harald Welte9f75c352010-04-30 20:26:32 +0200193
Holger Hans Peter Freyther57da4472010-06-08 16:11:06 +0800194extern enum node_type bsc_vty_go_parent(struct vty *vty);
Harald Weltec31f4802010-05-25 23:31:39 +0200195
196static struct vty_app_info vty_info = {
197 .name = "Osmocom Gb Proxy",
198 .version = PACKAGE_VERSION,
199 .go_parent_cb = bsc_vty_go_parent,
Holger Hans Peter Freyther81506b42010-09-04 11:00:01 +0800200 .is_config_node = bsc_vty_is_config_node,
Harald Weltec31f4802010-05-25 23:31:39 +0200201};
202
Harald Welte9f75c352010-04-30 20:26:32 +0200203int main(int argc, char **argv)
204{
205 struct gsm_network dummy_network;
Harald Welte9f75c352010-04-30 20:26:32 +0200206 int rc;
207
208 tall_bsc_ctx = talloc_named_const(NULL, 0, "nsip_proxy");
Harald Welte6df0c512010-05-12 18:40:01 +0000209 tall_msgb_ctx = talloc_named_const(tall_bsc_ctx, 0, "msgb");
210
211 signal(SIGINT, &signal_handler);
212 signal(SIGABRT, &signal_handler);
213 signal(SIGUSR1, &signal_handler);
214 signal(SIGUSR2, &signal_handler);
215 signal(SIGPIPE, SIG_IGN);
Harald Welte9f75c352010-04-30 20:26:32 +0200216
217 log_init(&log_info);
218 stderr_target = log_target_create_stderr();
219 log_add_target(stderr_target);
220 log_set_all_filter(stderr_target, 1);
221
Harald Weltec31f4802010-05-25 23:31:39 +0200222 vty_info.copyright = openbsc_copyright;
223 vty_init(&vty_info);
Harald Welte5bc61dc2010-05-16 22:02:16 +0200224 logging_vty_add_cmds();
Harald Welte7af49622010-05-19 14:04:23 +0200225 gbproxy_vty_init();
Harald Welte1353f962010-05-16 19:20:24 +0200226
Harald Welte768f2872010-05-14 11:22:33 +0000227 handle_options(argc, argv);
228
Harald Weltef2b4cd72010-05-13 11:45:07 +0200229 rate_ctr_init(tall_bsc_ctx);
Harald Welte9f75c352010-04-30 20:26:32 +0200230
Harald Weltedcccb182010-05-16 20:52:23 +0200231 rc = telnet_init(tall_bsc_ctx, &dummy_network, 4246);
232 if (rc < 0)
233 exit(1);
234
Harald Welte0a4050c2010-05-11 10:01:17 +0200235 bssgp_nsi = gprs_ns_instantiate(&proxy_ns_cb);
236 if (!bssgp_nsi) {
Harald Welte9f75c352010-04-30 20:26:32 +0200237 LOGP(DGPRS, LOGL_ERROR, "Unable to instantiate NS\n");
238 exit(1);
239 }
Harald Welte0a4050c2010-05-11 10:01:17 +0200240 gbcfg.nsi = bssgp_nsi;
Harald Welte1194b582010-05-12 15:55:23 +0000241 gprs_ns_vty_init(bssgp_nsi);
Harald Weltec1c1dd22010-05-11 06:34:24 +0200242 register_signal_handler(SS_NS, &gbprox_signal, NULL);
Harald Welte1194b582010-05-12 15:55:23 +0000243
244 rc = gbproxy_parse_config(config_file, &gbcfg);
245 if (rc < 0) {
246 LOGP(DGPRS, LOGL_FATAL, "Cannot parse config file\n");
247 exit(2);
248 }
249
Harald Welte7af49622010-05-19 14:04:23 +0200250 if (!nsvc_by_nsei(gbcfg.nsi, gbcfg.nsip_sgsn_nsei)) {
251 LOGP(DGPRS, LOGL_FATAL, "You cannot proxy to NSEI %u "
252 "without creating that NSEI before\n",
253 gbcfg.nsip_sgsn_nsei);
254 exit(2);
255 }
Harald Welte9f75c352010-04-30 20:26:32 +0200256
Harald Welteff3bde82010-05-19 15:09:09 +0200257 rc = gprs_ns_nsip_listen(bssgp_nsi);
Harald Welte7af49622010-05-19 14:04:23 +0200258 if (rc < 0) {
259 LOGP(DGPRS, LOGL_FATAL, "Cannot bind/listen on NSIP socket\n");
260 exit(2);
261 }
Harald Welte1ccbf442010-05-14 11:53:08 +0000262
Harald Welteff3bde82010-05-19 15:09:09 +0200263 rc = gprs_ns_frgre_listen(bssgp_nsi);
264 if (rc < 0) {
265 LOGP(DGPRS, LOGL_FATAL, "Cannot bind/listen GRE "
266 "socket. Do you have CAP_NET_RAW?\n");
267 exit(2);
Harald Welte5540c4c2010-05-19 14:38:50 +0200268 }
269
Harald Welte2c869ef2010-08-25 19:43:54 +0200270 if (daemonize) {
271 rc = osmo_daemonize();
272 if (rc < 0) {
273 perror("Error during daemonize");
274 exit(1);
275 }
276 }
277
Harald Welte1ccbf442010-05-14 11:53:08 +0000278 /* Reset all the persistent NS-VCs that we've read from the config */
279 gbprox_reset_persistent_nsvcs(bssgp_nsi);
280
Harald Welte9f75c352010-04-30 20:26:32 +0200281 while (1) {
282 rc = bsc_select_main(0);
283 if (rc < 0)
284 exit(3);
285 }
286
287 exit(0);
288}