blob: 1b39a2e7239e4d5a295b3ebf31bd1409d9a61d67 [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>
4 * (C) 2010 by On Waves
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>
24#include <stdio.h>
25#include <stdlib.h>
26#include <string.h>
27#include <getopt.h>
28#include <errno.h>
Harald Welte6df0c512010-05-12 18:40:01 +000029#include <signal.h>
Harald Welte9f75c352010-04-30 20:26:32 +020030#include <sys/fcntl.h>
31#include <sys/stat.h>
32#include <sys/types.h>
33#include <sys/socket.h>
34#include <netinet/in.h>
35#include <arpa/inet.h>
36
37#include <osmocore/talloc.h>
38#include <osmocore/select.h>
Harald Weltef2b4cd72010-05-13 11:45:07 +020039#include <osmocore/rate_ctr.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/telnet_interface.h>
46#include <openbsc/vty.h>
Harald Welteb77c6972010-05-01 11:28:43 +020047#include <openbsc/gb_proxy.h>
Harald Welte9f75c352010-04-30 20:26:32 +020048
Harald Welte1353f962010-05-16 19:20:24 +020049#include <vty/command.h>
50
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 =
62 "Copyright (C) 2010 Harald Welte and On-Waves\n"
Harald Welte9f75c352010-04-30 20:26:32 +020063 "License GPLv2+: GNU GPL version 2 or later <http://gnu.org/licenses/gpl.html>\n"
64 "This is free software: you are free to change and redistribute it.\n"
65 "There is NO WARRANTY, to the extent permitted by law.\n";
66
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 Welte9f75c352010-04-30 20:26:32 +020070
71/* Pointer to the SGSN peer */
72extern struct gbprox_peer *gbprox_peer_sgsn;
73
74/* call-back function for the NS protocol */
75static int proxy_ns_cb(enum gprs_ns_evt event, struct gprs_nsvc *nsvc,
76 struct msgb *msg, u_int16_t bvci)
77{
78 int rc = 0;
79
80 switch (event) {
81 case GPRS_NS_EVT_UNIT_DATA:
82 rc = gbprox_rcvmsg(msg, nsvc, bvci);
83 break;
84 default:
85 LOGP(DGPRS, LOGL_ERROR, "SGSN: Unknown event %u from NS\n", event);
86 if (msg)
87 talloc_free(msg);
88 rc = -EIO;
89 break;
90 }
91 return rc;
92}
93
Harald Welte6df0c512010-05-12 18:40:01 +000094static void signal_handler(int signal)
95{
96 fprintf(stdout, "signal %u received\n", signal);
97
98 switch (signal) {
99 case SIGINT:
100 dispatch_signal(SS_GLOBAL, S_GLOBAL_SHUTDOWN, NULL);
101 sleep(1);
102 exit(0);
103 break;
104 case SIGABRT:
105 /* in case of abort, we want to obtain a talloc report
106 * and then return to the caller, who will abort the process */
107 case SIGUSR1:
108 talloc_report(tall_vty_ctx, stderr);
109 talloc_report_full(tall_bsc_ctx, stderr);
110 break;
111 case SIGUSR2:
112 talloc_report_full(tall_vty_ctx, stderr);
113 break;
114 default:
115 break;
116 }
117}
118
Harald Welte768f2872010-05-14 11:22:33 +0000119static void print_usage()
120{
121 printf("Usage: bsc_hack\n");
122}
123
124static void print_help()
125{
126 printf(" Some useful help...\n");
127 printf(" -h --help this text\n");
128 printf(" -d option --debug=DNS:DGPRS,0:0 enable debugging\n");
129 printf(" -c --config-file filename The config file to use.\n");
130 printf(" -s --disable-color\n");
131 printf(" -T --timestamp Prefix every log line with a timestamp\n");
132 printf(" -V --version. Print the version of OpenBSC.\n");
133 printf(" -e --log-level number. Set a global loglevel.\n");
134}
135
136static void handle_options(int argc, char **argv)
137{
138 while (1) {
139 int option_index = 0, c;
140 static struct option long_options[] = {
141 { "help", 0, 0, 'h' },
142 { "debug", 1, 0, 'd' },
143 { "config-file", 1, 0, 'c' },
144 { "disable-color", 0, 0, 's' },
145 { "timestamp", 0, 0, 'T' },
146 { "version", 0, 0, 'V' },
147 { "log-level", 1, 0, 'e' },
148 { 0, 0, 0, 0 }
149 };
150
151 c = getopt_long(argc, argv, "hd:c:sTVe:",
152 long_options, &option_index);
153 if (c == -1)
154 break;
155
156 switch (c) {
157 case 'h':
158 print_usage();
159 print_help();
160 exit(0);
161 case 's':
162 log_set_use_color(stderr_target, 0);
163 break;
164 case 'd':
165 log_parse_category_mask(stderr_target, optarg);
166 break;
167 case 'c':
168 config_file = strdup(optarg);
169 break;
170 case 'T':
171 log_set_print_timestamp(stderr_target, 1);
172 break;
173 case 'e':
174 log_set_log_level(stderr_target, atoi(optarg));
175 break;
176 case 'V':
Harald Welte1353f962010-05-16 19:20:24 +0200177 print_version(1);
Harald Welte768f2872010-05-14 11:22:33 +0000178 exit(0);
179 break;
180 default:
181 break;
182 }
183 }
184}
185
Harald Welte6df0c512010-05-12 18:40:01 +0000186extern void *tall_msgb_ctx;
Harald Welte9f75c352010-04-30 20:26:32 +0200187
188int main(int argc, char **argv)
189{
190 struct gsm_network dummy_network;
Harald Welte9f75c352010-04-30 20:26:32 +0200191 int rc;
192
193 tall_bsc_ctx = talloc_named_const(NULL, 0, "nsip_proxy");
Harald Welte6df0c512010-05-12 18:40:01 +0000194 tall_msgb_ctx = talloc_named_const(tall_bsc_ctx, 0, "msgb");
195
196 signal(SIGINT, &signal_handler);
197 signal(SIGABRT, &signal_handler);
198 signal(SIGUSR1, &signal_handler);
199 signal(SIGUSR2, &signal_handler);
200 signal(SIGPIPE, SIG_IGN);
Harald Welte9f75c352010-04-30 20:26:32 +0200201
202 log_init(&log_info);
203 stderr_target = log_target_create_stderr();
204 log_add_target(stderr_target);
205 log_set_all_filter(stderr_target, 1);
206
Harald Weltedcccb182010-05-16 20:52:23 +0200207 vty_init("Osmocom Gb Proxy", PACKAGE_VERSION, openbsc_copyright);
Harald Welte5bc61dc2010-05-16 22:02:16 +0200208 logging_vty_add_cmds();
Harald Welte7af49622010-05-19 14:04:23 +0200209 gbproxy_vty_init();
Harald Welte1353f962010-05-16 19:20:24 +0200210
Harald Welte768f2872010-05-14 11:22:33 +0000211 handle_options(argc, argv);
212
Harald Weltef2b4cd72010-05-13 11:45:07 +0200213 rate_ctr_init(tall_bsc_ctx);
Harald Welte9f75c352010-04-30 20:26:32 +0200214
Harald Weltedcccb182010-05-16 20:52:23 +0200215 rc = telnet_init(tall_bsc_ctx, &dummy_network, 4246);
216 if (rc < 0)
217 exit(1);
218
Harald Welte0a4050c2010-05-11 10:01:17 +0200219 bssgp_nsi = gprs_ns_instantiate(&proxy_ns_cb);
220 if (!bssgp_nsi) {
Harald Welte9f75c352010-04-30 20:26:32 +0200221 LOGP(DGPRS, LOGL_ERROR, "Unable to instantiate NS\n");
222 exit(1);
223 }
Harald Welte0a4050c2010-05-11 10:01:17 +0200224 gbcfg.nsi = bssgp_nsi;
Harald Welte1194b582010-05-12 15:55:23 +0000225 gprs_ns_vty_init(bssgp_nsi);
Harald Weltec1c1dd22010-05-11 06:34:24 +0200226 register_signal_handler(SS_NS, &gbprox_signal, NULL);
Harald Welte1194b582010-05-12 15:55:23 +0000227
228 rc = gbproxy_parse_config(config_file, &gbcfg);
229 if (rc < 0) {
230 LOGP(DGPRS, LOGL_FATAL, "Cannot parse config file\n");
231 exit(2);
232 }
233
Harald Welte7af49622010-05-19 14:04:23 +0200234 if (!nsvc_by_nsei(gbcfg.nsi, gbcfg.nsip_sgsn_nsei)) {
235 LOGP(DGPRS, LOGL_FATAL, "You cannot proxy to NSEI %u "
236 "without creating that NSEI before\n",
237 gbcfg.nsip_sgsn_nsei);
238 exit(2);
239 }
Harald Welte9f75c352010-04-30 20:26:32 +0200240
Harald Welte5540c4c2010-05-19 14:38:50 +0200241 rc = nsip_listen(bssgp_nsi, gbcfg.nsip_listen_ip,
242 gbcfg.nsip_listen_port);
Harald Welte7af49622010-05-19 14:04:23 +0200243 if (rc < 0) {
244 LOGP(DGPRS, LOGL_FATAL, "Cannot bind/listen on NSIP socket\n");
245 exit(2);
246 }
Harald Welte1ccbf442010-05-14 11:53:08 +0000247
Harald Welte5540c4c2010-05-19 14:38:50 +0200248 if (gbcfg.frgre_enabled) {
249 rc = gprs_ns_frgre_listen(bssgp_nsi, gbcfg.nsip_listen_ip);
250 if (rc < 0) {
251 LOGP(DGPRS, LOGL_FATAL, "Cannot bind/listen GRE "
252 "socket. Do you have CAP_NET_RAW?\n");
253 exit(2);
254 }
255 }
256
Harald Welte1ccbf442010-05-14 11:53:08 +0000257 /* Reset all the persistent NS-VCs that we've read from the config */
258 gbprox_reset_persistent_nsvcs(bssgp_nsi);
259
Harald Welte9f75c352010-04-30 20:26:32 +0200260 while (1) {
261 rc = bsc_select_main(0);
262 if (rc < 0)
263 exit(3);
264 }
265
266 exit(0);
267}