blob: 98cc600d7048e532090ec5a2db55db8782e945fb [file] [log] [blame]
Harald Welte288be162010-05-01 16:48:27 +02001/* GPRS SGSN Implementation */
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 Welte288be162010-05-01 16:48:27 +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 Welte288be162010-05-01 16:48:27 +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 Welte288be162010-05-01 16:48:27 +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 Welte288be162010-05-01 16:48:27 +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 Welte66f793a2010-05-13 11:50:04 +020028#include <signal.h>
Harald Welte288be162010-05-01 16:48:27 +020029#include <sys/fcntl.h>
30#include <sys/stat.h>
Harald Welte288be162010-05-01 16:48:27 +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>
39#include <osmocom/core/logging.h>
Harald Welte288be162010-05-01 16:48:27 +020040
Harald Welteea34a4e2012-06-16 14:59:56 +080041#include <osmocom/gprs/gprs_ns.h>
42#include <osmocom/gprs/gprs_bssgp.h>
43
Harald Welte4b037e42010-05-19 19:45:32 +020044#include <osmocom/vty/telnet_interface.h>
Pablo Neira Ayuso38487702011-03-23 08:49:00 +010045#include <osmocom/vty/logging.h>
Harald Welte4b037e42010-05-19 19:45:32 +020046
Harald Welte288be162010-05-01 16:48:27 +020047#include <openbsc/signal.h>
48#include <openbsc/debug.h>
Harald Welte288be162010-05-01 16:48:27 +020049#include <openbsc/vty.h>
50#include <openbsc/sgsn.h>
Harald Welte2e918a82010-05-18 12:20:12 +020051#include <openbsc/gprs_llc.h>
Harald Welte288be162010-05-01 16:48:27 +020052
Harald Welte2720e732010-05-17 00:44:57 +020053#include <gtp.h>
54
Harald Weltee2365962010-05-04 07:41:59 +020055#include "../../bscconfig.h"
Harald Welte288be162010-05-01 16:48:27 +020056
57/* this is here for the vty... it will never be called */
58void subscr_put() { abort(); }
59
60#define _GNU_SOURCE
61#include <getopt.h>
62
63void *tall_bsc_ctx;
64
65struct gprs_ns_inst *sgsn_nsi;
Harald Welte9ae28a12010-08-27 09:26:44 +020066static int daemonize = 0;
Harald Welte288be162010-05-01 16:48:27 +020067const char *openbsc_copyright =
Holger Hans Peter Freyther5f540752010-09-11 13:32:30 +080068 "Copyright (C) 2010 Harald Welte and On-Waves\r\n"
Harald Welte9af6ddf2011-01-01 15:25:50 +010069 "License AGPLv3+: GNU AGPL version 2 or later <http://gnu.org/licenses/agpl-3.0.html>\r\n"
Holger Hans Peter Freyther5f540752010-09-11 13:32:30 +080070 "This is free software: you are free to change and redistribute it.\r\n"
71 "There is NO WARRANTY, to the extent permitted by law.\r\n";
Harald Welte288be162010-05-01 16:48:27 +020072
Harald Welte8fc1a462010-05-17 00:53:10 +020073static struct sgsn_instance sgsn_inst = {
Harald Welte2720e732010-05-17 00:44:57 +020074 .config_file = "osmo_sgsn.cfg",
75 .cfg = {
76 .gtp_statedir = "./",
77 },
78};
Harald Welte8fc1a462010-05-17 00:53:10 +020079struct sgsn_instance *sgsn = &sgsn_inst;
Harald Welte288be162010-05-01 16:48:27 +020080
81/* call-back function for the NS protocol */
82static int sgsn_ns_cb(enum gprs_ns_evt event, struct gprs_nsvc *nsvc,
Holger Hans Peter Freytherc42ad8b2011-04-18 17:04:00 +020083 struct msgb *msg, uint16_t bvci)
Harald Welte288be162010-05-01 16:48:27 +020084{
85 int rc = 0;
86
87 switch (event) {
88 case GPRS_NS_EVT_UNIT_DATA:
89 /* hand the message into the BSSGP implementation */
Harald Weltee6afd602010-05-02 11:19:37 +020090 rc = gprs_bssgp_rcvmsg(msg);
Harald Welte288be162010-05-01 16:48:27 +020091 break;
92 default:
93 LOGP(DGPRS, LOGL_ERROR, "SGSN: Unknown event %u from NS\n", event);
94 if (msg)
Holger Hans Peter Freythera8ddb082012-03-01 20:30:32 +010095 msgb_free(msg);
Harald Welte288be162010-05-01 16:48:27 +020096 rc = -EIO;
97 break;
98 }
99 return rc;
100}
101
Harald Welte66f793a2010-05-13 11:50:04 +0200102static void signal_handler(int signal)
103{
104 fprintf(stdout, "signal %u received\n", signal);
105
106 switch (signal) {
107 case SIGINT:
Pablo Neira Ayusoed5cacb2011-08-17 22:44:07 +0200108 osmo_signal_dispatch(SS_L_GLOBAL, S_L_GLOBAL_SHUTDOWN, NULL);
Harald Welte66f793a2010-05-13 11:50:04 +0200109 sleep(1);
110 exit(0);
111 break;
112 case SIGABRT:
113 /* in case of abort, we want to obtain a talloc report
114 * and then return to the caller, who will abort the process */
115 case SIGUSR1:
116 talloc_report(tall_vty_ctx, stderr);
117 talloc_report_full(tall_bsc_ctx, stderr);
118 break;
119 case SIGUSR2:
120 talloc_report_full(tall_vty_ctx, stderr);
121 break;
122 default:
123 break;
124 }
125}
126
Harald Welted6c74162010-05-02 21:29:17 +0200127/* NSI that BSSGP uses when transmitting on NS */
128extern struct gprs_ns_inst *bssgp_nsi;
Harald Welte66f793a2010-05-13 11:50:04 +0200129extern void *tall_msgb_ctx;
Harald Welte288be162010-05-01 16:48:27 +0200130
Holger Hans Peter Freyther57da4472010-06-08 16:11:06 +0800131extern enum node_type bsc_vty_go_parent(struct vty *vty);
Harald Weltec31f4802010-05-25 23:31:39 +0200132
133static struct vty_app_info vty_info = {
Harald Welteec1921d2011-02-24 23:57:06 +0100134 .name = "OsmoSGSN",
Harald Weltec31f4802010-05-25 23:31:39 +0200135 .version = PACKAGE_VERSION,
136 .go_parent_cb = bsc_vty_go_parent,
Holger Hans Peter Freyther81506b42010-09-04 11:00:01 +0800137 .is_config_node = bsc_vty_is_config_node,
Harald Weltec31f4802010-05-25 23:31:39 +0200138};
139
Harald Welte9ae28a12010-08-27 09:26:44 +0200140static void print_help(void)
141{
142 printf("Some useful help...\n");
143 printf(" -h --help\tthis text\n");
144 printf(" -D --daemonize\tFork the process into a background daemon\n");
145 printf(" -d option --debug\tenable Debugging\n");
146 printf(" -s --disable-color\n");
147 printf(" -c --config-file\tThe config file to use\n");
148 printf(" -e --log-level number\tSet a global log level\n");
149}
150
151static void handle_options(int argc, char **argv)
152{
153 while (1) {
154 int option_index = 0, c;
155 static struct option long_options[] = {
156 {"help", 0, 0, 'h'},
157 {"debug", 1, 0, 'd'},
158 {"daemonize", 0, 0, 'D'},
159 {"config-file", 1, 0, 'c'},
160 {"disable-color", 0, 0, 's'},
161 {"timestamp", 0, 0, 'T'},
162 {"log-level", 1, 0, 'e'},
163 {NULL, 0, 0, 0}
164 };
165
166 c = getopt_long(argc, argv, "hd:Dc:sTe:",
167 long_options, &option_index);
168 if (c == -1)
169 break;
170
171 switch (c) {
172 case 'h':
173 //print_usage();
174 print_help();
175 exit(0);
176 case 's':
Holger Hans Peter Freyther67cd75f2011-05-12 16:02:07 +0200177 log_set_use_color(osmo_stderr_target, 0);
Harald Welte9ae28a12010-08-27 09:26:44 +0200178 break;
179 case 'd':
Holger Hans Peter Freyther67cd75f2011-05-12 16:02:07 +0200180 log_parse_category_mask(osmo_stderr_target, optarg);
Harald Welte9ae28a12010-08-27 09:26:44 +0200181 break;
182 case 'D':
183 daemonize = 1;
184 break;
185 case 'c':
186 sgsn_inst.config_file = strdup(optarg);
187 break;
188 case 'T':
Holger Hans Peter Freyther67cd75f2011-05-12 16:02:07 +0200189 log_set_print_timestamp(osmo_stderr_target, 1);
Harald Welte9ae28a12010-08-27 09:26:44 +0200190 break;
191 case 'e':
Holger Hans Peter Freyther67cd75f2011-05-12 16:02:07 +0200192 log_set_log_level(osmo_stderr_target, atoi(optarg));
Harald Welte9ae28a12010-08-27 09:26:44 +0200193 break;
194 default:
195 /* ignore */
196 break;
197 }
198 }
199}
200
Harald Welte288be162010-05-01 16:48:27 +0200201int main(int argc, char **argv)
202{
203 struct gsm_network dummy_network;
Harald Welte288be162010-05-01 16:48:27 +0200204 int rc;
205
206 tall_bsc_ctx = talloc_named_const(NULL, 0, "osmo_sgsn");
Harald Welte66f793a2010-05-13 11:50:04 +0200207 tall_msgb_ctx = talloc_named_const(tall_bsc_ctx, 0, "msgb");
208
209 signal(SIGINT, &signal_handler);
210 signal(SIGABRT, &signal_handler);
211 signal(SIGUSR1, &signal_handler);
212 signal(SIGUSR2, &signal_handler);
Harald Welte288be162010-05-01 16:48:27 +0200213
Holger Hans Peter Freyther67cd75f2011-05-12 16:02:07 +0200214 osmo_init_ignore_signals();
215 osmo_init_logging(&log_info);
Harald Welte288be162010-05-01 16:48:27 +0200216
Harald Weltec31f4802010-05-25 23:31:39 +0200217 vty_info.copyright = openbsc_copyright;
218 vty_init(&vty_info);
Pablo Neira Ayuso38487702011-03-23 08:49:00 +0100219 logging_vty_add_cmds(&log_info);
Harald Weltedcccb182010-05-16 20:52:23 +0200220 sgsn_vty_init();
221
Harald Welte9ae28a12010-08-27 09:26:44 +0200222 handle_options(argc, argv);
223
Harald Welte66f793a2010-05-13 11:50:04 +0200224 rate_ctr_init(tall_bsc_ctx);
Harald Weltedcccb182010-05-16 20:52:23 +0200225 rc = telnet_init(tall_bsc_ctx, &dummy_network, 4245);
226 if (rc < 0)
227 exit(1);
Harald Welte288be162010-05-01 16:48:27 +0200228
Harald Weltefdd8b3b2012-06-16 16:54:06 +0800229 sgsn_nsi = gprs_ns_instantiate(&sgsn_ns_cb, tall_bsc_ctx);
Harald Welte288be162010-05-01 16:48:27 +0200230 if (!sgsn_nsi) {
231 LOGP(DGPRS, LOGL_ERROR, "Unable to instantiate NS\n");
232 exit(1);
233 }
Harald Welte2720e732010-05-17 00:44:57 +0200234 bssgp_nsi = sgsn_inst.cfg.nsi = sgsn_nsi;
Harald Welte496aee42010-06-30 19:59:55 +0200235
236 gprs_llc_init("/usr/local/lib/osmocom/crypt/");
237
Harald Welte66f793a2010-05-13 11:50:04 +0200238 gprs_ns_vty_init(bssgp_nsi);
Harald Welted2a9ed22010-05-18 08:02:36 +0200239 gprs_bssgp_vty_init();
Harald Welte2e918a82010-05-18 12:20:12 +0200240 gprs_llc_vty_init();
Harald Weltef78a3b22010-06-30 17:21:19 +0200241 gprs_sndcp_vty_init();
Harald Weltea6a20b42012-06-16 16:40:42 +0800242 /* FIXME: register signal handler for SS_L_NS */
Harald Welte66f793a2010-05-13 11:50:04 +0200243
Harald Welte2720e732010-05-17 00:44:57 +0200244 rc = sgsn_parse_config(sgsn_inst.config_file, &sgsn_inst.cfg);
Harald Welte66f793a2010-05-13 11:50:04 +0200245 if (rc < 0) {
246 LOGP(DGPRS, LOGL_FATAL, "Cannot parse config file\n");
247 exit(2);
248 }
249
Harald Welte2720e732010-05-17 00:44:57 +0200250 rc = sgsn_gtp_init(&sgsn_inst);
Harald Welte6efc1762010-05-19 15:46:31 +0200251 if (rc) {
252 LOGP(DGPRS, LOGL_FATAL, "Cannot bind/listen on GTP socket\n");
Harald Welte269ae752010-05-18 14:44:31 +0200253 exit(2);
Harald Welte6efc1762010-05-19 15:46:31 +0200254 }
Harald Welte269ae752010-05-18 14:44:31 +0200255
Harald Welteff3bde82010-05-19 15:09:09 +0200256 rc = gprs_ns_nsip_listen(sgsn_nsi);
Harald Welte6efc1762010-05-19 15:46:31 +0200257 if (rc < 0) {
258 LOGP(DGPRS, LOGL_FATAL, "Cannot bind/listen on NSIP socket\n");
Harald Welteff3bde82010-05-19 15:09:09 +0200259 exit(2);
Harald Welte6efc1762010-05-19 15:46:31 +0200260 }
261
262 rc = gprs_ns_frgre_listen(sgsn_nsi);
263 if (rc < 0) {
264 LOGP(DGPRS, LOGL_FATAL, "Cannot bind/listen GRE "
265 "socket. Do you have CAP_NET_RAW?\n");
266 exit(2);
267 }
Harald Welte288be162010-05-01 16:48:27 +0200268
Harald Welte9ae28a12010-08-27 09:26:44 +0200269 if (daemonize) {
270 rc = osmo_daemonize();
271 if (rc < 0) {
272 perror("Error during daemonize");
273 exit(1);
274 }
275 }
276
Harald Welte288be162010-05-01 16:48:27 +0200277 while (1) {
Pablo Neira Ayuso4db92992011-05-06 12:11:23 +0200278 rc = osmo_select_main(0);
Harald Welte288be162010-05-01 16:48:27 +0200279 if (rc < 0)
280 exit(3);
281 }
282
Harald Weltebaf77002011-07-16 13:47:01 +0200283 /* not reached */
Harald Welte288be162010-05-01 16:48:27 +0200284 exit(0);
285}