blob: 3da0abed228d76355fb11d6d69409d4d8144f631 [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>
Harald Welte9f75c352010-04-30 20:26:32 +020031#include <sys/socket.h>
32#include <netinet/in.h>
33#include <arpa/inet.h>
34
Holger Hans Peter Freyther67cd75f2011-05-12 16:02:07 +020035#include <osmocom/core/application.h>
Pablo Neira Ayuso136f4532011-03-22 16:47:59 +010036#include <osmocom/core/talloc.h>
37#include <osmocom/core/select.h>
38#include <osmocom/core/rate_ctr.h>
Harald Welte9f75c352010-04-30 20:26:32 +020039
Harald Welteea34a4e2012-06-16 14:59:56 +080040#include <osmocom/gprs/gprs_ns.h>
41#include <osmocom/gprs/gprs_bssgp.h>
42
Harald Welte9f75c352010-04-30 20:26:32 +020043#include <openbsc/signal.h>
44#include <openbsc/debug.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>
Pablo Neira Ayuso38487702011-03-23 08:49:00 +010050#include <osmocom/vty/logging.h>
Harald Welte55dc31e2014-08-24 17:54:49 +020051#include <osmocom/vty/ports.h>
Harald Welte1353f962010-05-16 19:20:24 +020052
Harald Weltee2365962010-05-04 07:41:59 +020053#include "../../bscconfig.h"
Harald Welte9f75c352010-04-30 20:26:32 +020054
Harald Welte9f75c352010-04-30 20:26:32 +020055#define _GNU_SOURCE
56#include <getopt.h>
57
58void *tall_bsc_ctx;
59
Harald Welte9f75c352010-04-30 20:26:32 +020060const char *openbsc_copyright =
Holger Hans Peter Freyther5f540752010-09-11 13:32:30 +080061 "Copyright (C) 2010 Harald Welte and On-Waves\r\n"
Harald Welte9af6ddf2011-01-01 15:25:50 +010062 "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 +080063 "This is free software: you are free to change and redistribute it.\r\n"
64 "There is NO WARRANTY, to the extent permitted by law.\r\n";
Harald Welte9f75c352010-04-30 20:26:32 +020065
Harald Welte288be162010-05-01 16:48:27 +020066static char *config_file = "osmo_gbproxy.cfg";
Jacob Erlbeck67a44452014-05-19 10:14:58 +020067struct gbproxy_config gbcfg = {0};
Harald Welte2c869ef2010-08-25 19:43:54 +020068static int daemonize = 0;
Harald Welte9f75c352010-04-30 20:26:32 +020069
70/* Pointer to the SGSN peer */
71extern struct gbprox_peer *gbprox_peer_sgsn;
72
73/* call-back function for the NS protocol */
74static int proxy_ns_cb(enum gprs_ns_evt event, struct gprs_nsvc *nsvc,
Holger Hans Peter Freytherc42ad8b2011-04-18 17:04:00 +020075 struct msgb *msg, uint16_t bvci)
Harald Welte9f75c352010-04-30 20:26:32 +020076{
77 int rc = 0;
78
79 switch (event) {
80 case GPRS_NS_EVT_UNIT_DATA:
Holger Hans Peter Freythereece62772014-08-04 15:42:36 +020081 rc = gbprox_rcvmsg(&gbcfg, msg, nsvc->nsei, bvci, nsvc->nsvci);
Harald Welte9f75c352010-04-30 20:26:32 +020082 break;
83 default:
84 LOGP(DGPRS, LOGL_ERROR, "SGSN: Unknown event %u from NS\n", event);
85 if (msg)
Holger Hans Peter Freythera8ddb082012-03-01 20:30:32 +010086 msgb_free(msg);
Harald Welte9f75c352010-04-30 20:26:32 +020087 rc = -EIO;
88 break;
89 }
90 return rc;
91}
92
Harald Welte6df0c512010-05-12 18:40:01 +000093static void signal_handler(int signal)
94{
95 fprintf(stdout, "signal %u received\n", signal);
96
97 switch (signal) {
98 case SIGINT:
Pablo Neira Ayusoed5cacb2011-08-17 22:44:07 +020099 osmo_signal_dispatch(SS_L_GLOBAL, S_L_GLOBAL_SHUTDOWN, NULL);
Harald Welte6df0c512010-05-12 18:40:01 +0000100 sleep(1);
101 exit(0);
102 break;
103 case SIGABRT:
104 /* in case of abort, we want to obtain a talloc report
105 * and then return to the caller, who will abort the process */
106 case SIGUSR1:
107 talloc_report(tall_vty_ctx, stderr);
108 talloc_report_full(tall_bsc_ctx, stderr);
109 break;
110 case SIGUSR2:
111 talloc_report_full(tall_vty_ctx, stderr);
112 break;
113 default:
114 break;
115 }
116}
117
Harald Welte768f2872010-05-14 11:22:33 +0000118static void print_usage()
119{
120 printf("Usage: bsc_hack\n");
121}
122
123static void print_help()
124{
125 printf(" Some useful help...\n");
126 printf(" -h --help this text\n");
127 printf(" -d option --debug=DNS:DGPRS,0:0 enable debugging\n");
Harald Welte2c869ef2010-08-25 19:43:54 +0200128 printf(" -D --daemonize Fork the process into a background daemon\n");
Harald Welte768f2872010-05-14 11:22:33 +0000129 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' },
Harald Welte2c869ef2010-08-25 19:43:54 +0200143 { "daemonize", 0, 0, 'D' },
Harald Welte768f2872010-05-14 11:22:33 +0000144 { "config-file", 1, 0, 'c' },
145 { "disable-color", 0, 0, 's' },
146 { "timestamp", 0, 0, 'T' },
147 { "version", 0, 0, 'V' },
148 { "log-level", 1, 0, 'e' },
149 { 0, 0, 0, 0 }
150 };
151
Harald Welte2c869ef2010-08-25 19:43:54 +0200152 c = getopt_long(argc, argv, "hd:Dc:sTVe:",
Harald Welte768f2872010-05-14 11:22:33 +0000153 long_options, &option_index);
154 if (c == -1)
155 break;
156
157 switch (c) {
158 case 'h':
159 print_usage();
160 print_help();
161 exit(0);
162 case 's':
Holger Hans Peter Freyther67cd75f2011-05-12 16:02:07 +0200163 log_set_use_color(osmo_stderr_target, 0);
Harald Welte768f2872010-05-14 11:22:33 +0000164 break;
165 case 'd':
Holger Hans Peter Freyther67cd75f2011-05-12 16:02:07 +0200166 log_parse_category_mask(osmo_stderr_target, optarg);
Harald Welte768f2872010-05-14 11:22:33 +0000167 break;
Harald Welte2c869ef2010-08-25 19:43:54 +0200168 case 'D':
169 daemonize = 1;
170 break;
Harald Welte768f2872010-05-14 11:22:33 +0000171 case 'c':
Holger Hans Peter Freytherabb34782015-01-26 10:26:36 +0100172 config_file = optarg;
Harald Welte768f2872010-05-14 11:22:33 +0000173 break;
174 case 'T':
Holger Hans Peter Freyther67cd75f2011-05-12 16:02:07 +0200175 log_set_print_timestamp(osmo_stderr_target, 1);
Harald Welte768f2872010-05-14 11:22:33 +0000176 break;
177 case 'e':
Holger Hans Peter Freyther67cd75f2011-05-12 16:02:07 +0200178 log_set_log_level(osmo_stderr_target, atoi(optarg));
Harald Welte768f2872010-05-14 11:22:33 +0000179 break;
180 case 'V':
Harald Welte1353f962010-05-16 19:20:24 +0200181 print_version(1);
Harald Welte768f2872010-05-14 11:22:33 +0000182 exit(0);
183 break;
184 default:
185 break;
186 }
187 }
188}
189
Harald Welte6df0c512010-05-12 18:40:01 +0000190extern void *tall_msgb_ctx;
Harald Welte9f75c352010-04-30 20:26:32 +0200191
Holger Hans Peter Freyther57da4472010-06-08 16:11:06 +0800192extern enum node_type bsc_vty_go_parent(struct vty *vty);
Harald Weltec31f4802010-05-25 23:31:39 +0200193
194static struct vty_app_info vty_info = {
Harald Welteec1921d2011-02-24 23:57:06 +0100195 .name = "OsmoGbProxy",
Harald Weltec31f4802010-05-25 23:31:39 +0200196 .version = PACKAGE_VERSION,
197 .go_parent_cb = bsc_vty_go_parent,
Holger Hans Peter Freyther81506b42010-09-04 11:00:01 +0800198 .is_config_node = bsc_vty_is_config_node,
Harald Weltec31f4802010-05-25 23:31:39 +0200199};
200
Harald Welte11461a62012-06-17 12:58:46 +0800201/* default categories */
202static struct log_info_cat gprs_categories[] = {
203 [DGPRS] = {
204 .name = "DGPRS",
205 .description = "GPRS Packet Service",
206 .enabled = 1, .loglevel = LOGL_DEBUG,
207 },
208 [DNS] = {
209 .name = "DNS",
210 .description = "GPRS Network Service (NS)",
211 .enabled = 1, .loglevel = LOGL_INFO,
212 },
213 [DBSSGP] = {
214 .name = "DBSSGP",
215 .description = "GPRS BSS Gateway Protocol (BSSGP)",
216 .enabled = 1, .loglevel = LOGL_DEBUG,
217 },
218};
219
220static const struct log_info gprs_log_info = {
221 .filter_fn = gprs_log_filter_fn,
222 .cat = gprs_categories,
223 .num_cat = ARRAY_SIZE(gprs_categories),
224};
225
Harald Welte9f75c352010-04-30 20:26:32 +0200226int main(int argc, char **argv)
227{
228 struct gsm_network dummy_network;
Harald Welte9f75c352010-04-30 20:26:32 +0200229 int rc;
230
231 tall_bsc_ctx = talloc_named_const(NULL, 0, "nsip_proxy");
Harald Welte6df0c512010-05-12 18:40:01 +0000232 tall_msgb_ctx = talloc_named_const(tall_bsc_ctx, 0, "msgb");
233
234 signal(SIGINT, &signal_handler);
235 signal(SIGABRT, &signal_handler);
236 signal(SIGUSR1, &signal_handler);
237 signal(SIGUSR2, &signal_handler);
Holger Hans Peter Freyther67cd75f2011-05-12 16:02:07 +0200238 osmo_init_ignore_signals();
Harald Welte9f75c352010-04-30 20:26:32 +0200239
Harald Welte11461a62012-06-17 12:58:46 +0800240 osmo_init_logging(&gprs_log_info);
Harald Welte9f75c352010-04-30 20:26:32 +0200241
Harald Weltec31f4802010-05-25 23:31:39 +0200242 vty_info.copyright = openbsc_copyright;
243 vty_init(&vty_info);
Harald Welte11461a62012-06-17 12:58:46 +0800244 logging_vty_add_cmds(&gprs_log_info);
Harald Welte7af49622010-05-19 14:04:23 +0200245 gbproxy_vty_init();
Harald Welte1353f962010-05-16 19:20:24 +0200246
Harald Welte768f2872010-05-14 11:22:33 +0000247 handle_options(argc, argv);
248
Harald Weltef2b4cd72010-05-13 11:45:07 +0200249 rate_ctr_init(tall_bsc_ctx);
Harald Welte9f75c352010-04-30 20:26:32 +0200250
Harald Welte55dc31e2014-08-24 17:54:49 +0200251 rc = telnet_init(tall_bsc_ctx, &dummy_network, OSMO_VTY_PORT_GBPROXY);
Harald Weltedcccb182010-05-16 20:52:23 +0200252 if (rc < 0)
253 exit(1);
254
Harald Weltefdd8b3b2012-06-16 16:54:06 +0800255 bssgp_nsi = gprs_ns_instantiate(&proxy_ns_cb, tall_bsc_ctx);
Harald Welte0a4050c2010-05-11 10:01:17 +0200256 if (!bssgp_nsi) {
Harald Welte9f75c352010-04-30 20:26:32 +0200257 LOGP(DGPRS, LOGL_ERROR, "Unable to instantiate NS\n");
258 exit(1);
259 }
Holger Hans Peter Freyther18739ea2014-08-04 11:10:09 +0200260 gbproxy_init_config(&gbcfg);
Harald Welte0a4050c2010-05-11 10:01:17 +0200261 gbcfg.nsi = bssgp_nsi;
Harald Welte1194b582010-05-12 15:55:23 +0000262 gprs_ns_vty_init(bssgp_nsi);
Harald Welte68d85d52012-06-16 17:45:59 +0800263 gprs_ns_set_log_ss(DNS);
Harald Weltece95b272012-06-17 13:04:02 +0800264 bssgp_set_log_ss(DBSSGP);
Holger Hans Peter Freythereece62772014-08-04 15:42:36 +0200265 osmo_signal_register_handler(SS_L_NS, &gbprox_signal, &gbcfg);
Harald Welte1194b582010-05-12 15:55:23 +0000266
267 rc = gbproxy_parse_config(config_file, &gbcfg);
268 if (rc < 0) {
269 LOGP(DGPRS, LOGL_FATAL, "Cannot parse config file\n");
270 exit(2);
271 }
272
Harald Weltee6599ee2012-06-17 12:25:53 +0800273 if (!gprs_nsvc_by_nsei(gbcfg.nsi, gbcfg.nsip_sgsn_nsei)) {
Harald Welte7af49622010-05-19 14:04:23 +0200274 LOGP(DGPRS, LOGL_FATAL, "You cannot proxy to NSEI %u "
275 "without creating that NSEI before\n",
276 gbcfg.nsip_sgsn_nsei);
277 exit(2);
278 }
Harald Welte9f75c352010-04-30 20:26:32 +0200279
Harald Welteff3bde82010-05-19 15:09:09 +0200280 rc = gprs_ns_nsip_listen(bssgp_nsi);
Harald Welte7af49622010-05-19 14:04:23 +0200281 if (rc < 0) {
282 LOGP(DGPRS, LOGL_FATAL, "Cannot bind/listen on NSIP socket\n");
283 exit(2);
284 }
Harald Welte1ccbf442010-05-14 11:53:08 +0000285
Harald Welteff3bde82010-05-19 15:09:09 +0200286 rc = gprs_ns_frgre_listen(bssgp_nsi);
287 if (rc < 0) {
288 LOGP(DGPRS, LOGL_FATAL, "Cannot bind/listen GRE "
289 "socket. Do you have CAP_NET_RAW?\n");
290 exit(2);
Harald Welte5540c4c2010-05-19 14:38:50 +0200291 }
292
Harald Welte2c869ef2010-08-25 19:43:54 +0200293 if (daemonize) {
294 rc = osmo_daemonize();
295 if (rc < 0) {
296 perror("Error during daemonize");
297 exit(1);
298 }
299 }
300
Harald Welte1ccbf442010-05-14 11:53:08 +0000301 /* Reset all the persistent NS-VCs that we've read from the config */
302 gbprox_reset_persistent_nsvcs(bssgp_nsi);
303
Harald Welte9f75c352010-04-30 20:26:32 +0200304 while (1) {
Pablo Neira Ayuso4db92992011-05-06 12:11:23 +0200305 rc = osmo_select_main(0);
Harald Welte9f75c352010-04-30 20:26:32 +0200306 if (rc < 0)
307 exit(3);
308 }
309
310 exit(0);
311}