blob: 25ee632cc77e2fd1fa228402cc6298465d456055 [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>
Max4011e722016-07-05 15:19:12 +020024#include <time.h>
Harald Welte288be162010-05-01 16:48:27 +020025#include <stdlib.h>
26#include <string.h>
27#include <getopt.h>
28#include <errno.h>
Harald Welte66f793a2010-05-13 11:50:04 +020029#include <signal.h>
Harald Welte288be162010-05-01 16:48:27 +020030#include <sys/fcntl.h>
31#include <sys/stat.h>
Harald Welte288be162010-05-01 16:48:27 +020032#include <sys/socket.h>
33#include <netinet/in.h>
34#include <arpa/inet.h>
35
Holger Hans Peter Freyther67cd75f2011-05-12 16:02:07 +020036#include <osmocom/core/application.h>
Pablo Neira Ayuso136f4532011-03-22 16:47:59 +010037#include <osmocom/core/talloc.h>
38#include <osmocom/core/select.h>
39#include <osmocom/core/rate_ctr.h>
40#include <osmocom/core/logging.h>
Jacob Erlbeck64630cc2015-10-26 16:25:37 +010041#include <osmocom/core/stats.h>
Harald Welte288be162010-05-01 16:48:27 +020042
Harald Welte7b423ed2016-06-19 18:06:02 +020043#include <osmocom/gsm/gsup.h>
44
Harald Welteea34a4e2012-06-16 14:59:56 +080045#include <osmocom/gprs/gprs_ns.h>
46#include <osmocom/gprs/gprs_bssgp.h>
47
Harald Welte4b037e42010-05-19 19:45:32 +020048#include <osmocom/vty/telnet_interface.h>
Pablo Neira Ayuso38487702011-03-23 08:49:00 +010049#include <osmocom/vty/logging.h>
Jacob Erlbeck64630cc2015-10-26 16:25:37 +010050#include <osmocom/vty/stats.h>
Harald Welte55dc31e2014-08-24 17:54:49 +020051#include <osmocom/vty/ports.h>
Harald Welte4b037e42010-05-19 19:45:32 +020052
Neels Hofmeyr73828152016-02-23 15:10:33 +010053#include <osmocom/ctrl/control_vty.h>
54
Harald Welte288be162010-05-01 16:48:27 +020055#include <openbsc/signal.h>
56#include <openbsc/debug.h>
Harald Welte288be162010-05-01 16:48:27 +020057#include <openbsc/vty.h>
58#include <openbsc/sgsn.h>
Harald Welte2e918a82010-05-18 12:20:12 +020059#include <openbsc/gprs_llc.h>
Harald Welteb1fd9022012-06-17 12:16:31 +080060#include <openbsc/gprs_gmm.h>
Daniel Willmann6292c8d2016-05-21 17:35:57 +020061
Harald Welteba874b82014-08-20 23:47:15 +020062#include <osmocom/ctrl/control_if.h>
Harald Welte55dc31e2014-08-24 17:54:49 +020063#include <osmocom/ctrl/ports.h>
Harald Welte288be162010-05-01 16:48:27 +020064
Philipp Maier4b60d072017-04-09 12:32:51 +020065#include <osmocom/sigtran/protocol/m3ua.h>
66
Harald Welte2720e732010-05-17 00:44:57 +020067#include <gtp.h>
68
Harald Weltee2365962010-05-04 07:41:59 +020069#include "../../bscconfig.h"
Harald Welte288be162010-05-01 16:48:27 +020070
Neels Hofmeyr28295b92017-07-05 15:19:52 +020071#if BUILD_IU
72#include <osmocom/ranap/iu_client.h>
73#endif
74
Harald Welte288be162010-05-01 16:48:27 +020075#define _GNU_SOURCE
76#include <getopt.h>
77
78void *tall_bsc_ctx;
79
80struct gprs_ns_inst *sgsn_nsi;
Harald Welte9ae28a12010-08-27 09:26:44 +020081static int daemonize = 0;
Harald Welte288be162010-05-01 16:48:27 +020082const char *openbsc_copyright =
Holger Hans Peter Freyther5f540752010-09-11 13:32:30 +080083 "Copyright (C) 2010 Harald Welte and On-Waves\r\n"
Harald Welte69ca8f02015-10-29 10:35:24 +010084 "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 +080085 "This is free software: you are free to change and redistribute it.\r\n"
86 "There is NO WARRANTY, to the extent permitted by law.\r\n";
Harald Welte288be162010-05-01 16:48:27 +020087
Harald Welte8fc1a462010-05-17 00:53:10 +020088static struct sgsn_instance sgsn_inst = {
Harald Welte2720e732010-05-17 00:44:57 +020089 .config_file = "osmo_sgsn.cfg",
90 .cfg = {
91 .gtp_statedir = "./",
Jacob Erlbeck106f5472014-11-04 10:08:37 +010092 .auth_policy = SGSN_AUTH_POLICY_CLOSED,
Harald Welte7b423ed2016-06-19 18:06:02 +020093 .gsup_server_port = OSMO_GSUP_PORT,
Harald Welte2720e732010-05-17 00:44:57 +020094 },
95};
Harald Welte8fc1a462010-05-17 00:53:10 +020096struct sgsn_instance *sgsn = &sgsn_inst;
Harald Welte288be162010-05-01 16:48:27 +020097
98/* call-back function for the NS protocol */
99static int sgsn_ns_cb(enum gprs_ns_evt event, struct gprs_nsvc *nsvc,
Holger Hans Peter Freytherc42ad8b2011-04-18 17:04:00 +0200100 struct msgb *msg, uint16_t bvci)
Harald Welte288be162010-05-01 16:48:27 +0200101{
102 int rc = 0;
103
104 switch (event) {
105 case GPRS_NS_EVT_UNIT_DATA:
106 /* hand the message into the BSSGP implementation */
Harald Weltece95b272012-06-17 13:04:02 +0800107 rc = bssgp_rcvmsg(msg);
Harald Welte288be162010-05-01 16:48:27 +0200108 break;
109 default:
110 LOGP(DGPRS, LOGL_ERROR, "SGSN: Unknown event %u from NS\n", event);
111 if (msg)
Holger Hans Peter Freythera8ddb082012-03-01 20:30:32 +0100112 msgb_free(msg);
Harald Welte288be162010-05-01 16:48:27 +0200113 rc = -EIO;
114 break;
115 }
116 return rc;
117}
118
Harald Welteb1fd9022012-06-17 12:16:31 +0800119/* call-back function for the BSSGP protocol */
120int bssgp_prim_cb(struct osmo_prim_hdr *oph, void *ctx)
121{
122 struct osmo_bssgp_prim *bp;
123 bp = container_of(oph, struct osmo_bssgp_prim, oph);
124
125 switch (oph->sap) {
126 case SAP_BSSGP_LL:
127 switch (oph->primitive) {
128 case PRIM_BSSGP_UL_UD:
129 return gprs_llc_rcvmsg(oph->msg, bp->tp);
130 }
131 break;
132 case SAP_BSSGP_GMM:
133 switch (oph->primitive) {
134 case PRIM_BSSGP_GMM_SUSPEND:
135 return gprs_gmm_rx_suspend(bp->ra_id, bp->tlli);
136 case PRIM_BSSGP_GMM_RESUME:
137 return gprs_gmm_rx_resume(bp->ra_id, bp->tlli,
Holger Hans Peter Freyther9b5db282012-08-03 10:01:57 +0200138 bp->u.resume.suspend_ref);
Harald Welteb1fd9022012-06-17 12:16:31 +0800139 }
140 break;
141 case SAP_BSSGP_NM:
142 break;
143 }
144 return 0;
145}
146
Harald Welte66f793a2010-05-13 11:50:04 +0200147static void signal_handler(int signal)
148{
149 fprintf(stdout, "signal %u received\n", signal);
150
151 switch (signal) {
152 case SIGINT:
Harald Welte3d24d292017-08-20 20:50:06 +0200153 case SIGTERM:
Pablo Neira Ayusoed5cacb2011-08-17 22:44:07 +0200154 osmo_signal_dispatch(SS_L_GLOBAL, S_L_GLOBAL_SHUTDOWN, NULL);
Harald Welte66f793a2010-05-13 11:50:04 +0200155 sleep(1);
156 exit(0);
157 break;
158 case SIGABRT:
159 /* in case of abort, we want to obtain a talloc report
160 * and then return to the caller, who will abort the process */
161 case SIGUSR1:
162 talloc_report(tall_vty_ctx, stderr);
163 talloc_report_full(tall_bsc_ctx, stderr);
164 break;
165 case SIGUSR2:
166 talloc_report_full(tall_vty_ctx, stderr);
167 break;
168 default:
169 break;
170 }
171}
172
Harald Welted6c74162010-05-02 21:29:17 +0200173/* NSI that BSSGP uses when transmitting on NS */
174extern struct gprs_ns_inst *bssgp_nsi;
Harald Welte288be162010-05-01 16:48:27 +0200175
Holger Hans Peter Freyther3e4e8cf2015-09-24 15:38:38 +0200176extern int bsc_vty_go_parent(struct vty *vty);
Harald Weltec31f4802010-05-25 23:31:39 +0200177
178static struct vty_app_info vty_info = {
Harald Welteec1921d2011-02-24 23:57:06 +0100179 .name = "OsmoSGSN",
Harald Weltec31f4802010-05-25 23:31:39 +0200180 .version = PACKAGE_VERSION,
181 .go_parent_cb = bsc_vty_go_parent,
Holger Hans Peter Freyther81506b42010-09-04 11:00:01 +0800182 .is_config_node = bsc_vty_is_config_node,
Harald Weltec31f4802010-05-25 23:31:39 +0200183};
184
Harald Welte9ae28a12010-08-27 09:26:44 +0200185static void print_help(void)
186{
187 printf("Some useful help...\n");
188 printf(" -h --help\tthis text\n");
189 printf(" -D --daemonize\tFork the process into a background daemon\n");
190 printf(" -d option --debug\tenable Debugging\n");
191 printf(" -s --disable-color\n");
Neels Hofmeyr130be402015-09-24 17:28:47 +0200192 printf(" -c --config-file\tThe config file to use [%s]\n", sgsn->config_file);
Harald Welte9ae28a12010-08-27 09:26:44 +0200193 printf(" -e --log-level number\tSet a global log level\n");
194}
195
196static void handle_options(int argc, char **argv)
197{
198 while (1) {
199 int option_index = 0, c;
200 static struct option long_options[] = {
201 {"help", 0, 0, 'h'},
202 {"debug", 1, 0, 'd'},
203 {"daemonize", 0, 0, 'D'},
204 {"config-file", 1, 0, 'c'},
205 {"disable-color", 0, 0, 's'},
206 {"timestamp", 0, 0, 'T'},
Philipp Maier99c97072017-03-14 17:32:35 +0100207 { "version", 0, 0, 'V' },
Harald Welte9ae28a12010-08-27 09:26:44 +0200208 {"log-level", 1, 0, 'e'},
209 {NULL, 0, 0, 0}
210 };
211
Philipp Maier99c97072017-03-14 17:32:35 +0100212 c = getopt_long(argc, argv, "hd:Dc:sTVe:",
Harald Welte9ae28a12010-08-27 09:26:44 +0200213 long_options, &option_index);
214 if (c == -1)
215 break;
216
217 switch (c) {
218 case 'h':
219 //print_usage();
220 print_help();
221 exit(0);
222 case 's':
Holger Hans Peter Freyther67cd75f2011-05-12 16:02:07 +0200223 log_set_use_color(osmo_stderr_target, 0);
Harald Welte9ae28a12010-08-27 09:26:44 +0200224 break;
225 case 'd':
Holger Hans Peter Freyther67cd75f2011-05-12 16:02:07 +0200226 log_parse_category_mask(osmo_stderr_target, optarg);
Harald Welte9ae28a12010-08-27 09:26:44 +0200227 break;
228 case 'D':
229 daemonize = 1;
230 break;
231 case 'c':
232 sgsn_inst.config_file = strdup(optarg);
233 break;
234 case 'T':
Holger Hans Peter Freyther67cd75f2011-05-12 16:02:07 +0200235 log_set_print_timestamp(osmo_stderr_target, 1);
Harald Welte9ae28a12010-08-27 09:26:44 +0200236 break;
Philipp Maier99c97072017-03-14 17:32:35 +0100237 case 'V':
238 print_version(1);
239 exit(0);
240 break;
Harald Welte9ae28a12010-08-27 09:26:44 +0200241 case 'e':
Holger Hans Peter Freyther67cd75f2011-05-12 16:02:07 +0200242 log_set_log_level(osmo_stderr_target, atoi(optarg));
Harald Welte9ae28a12010-08-27 09:26:44 +0200243 break;
244 default:
245 /* ignore */
246 break;
247 }
248 }
249}
250
Harald Welte11461a62012-06-17 12:58:46 +0800251/* default categories */
252static struct log_info_cat gprs_categories[] = {
253 [DMM] = {
254 .name = "DMM",
255 .description = "Layer3 Mobility Management (MM)",
256 .color = "\033[1;33m",
257 .enabled = 1, .loglevel = LOGL_NOTICE,
258 },
Harald Welte11461a62012-06-17 12:58:46 +0800259 [DPAG] = {
260 .name = "DPAG",
261 .description = "Paging Subsystem",
262 .color = "\033[1;38m",
263 .enabled = 1, .loglevel = LOGL_NOTICE,
264 },
265 [DMEAS] = {
266 .name = "DMEAS",
267 .description = "Radio Measurement Processing",
268 .enabled = 0, .loglevel = LOGL_NOTICE,
269 },
270 [DREF] = {
271 .name = "DREF",
272 .description = "Reference Counting",
273 .enabled = 0, .loglevel = LOGL_NOTICE,
274 },
275 [DGPRS] = {
276 .name = "DGPRS",
277 .description = "GPRS Packet Service",
278 .enabled = 1, .loglevel = LOGL_DEBUG,
279 },
280 [DNS] = {
281 .name = "DNS",
282 .description = "GPRS Network Service (NS)",
283 .enabled = 1, .loglevel = LOGL_INFO,
284 },
285 [DBSSGP] = {
286 .name = "DBSSGP",
287 .description = "GPRS BSS Gateway Protocol (BSSGP)",
288 .enabled = 1, .loglevel = LOGL_DEBUG,
289 },
290 [DLLC] = {
291 .name = "DLLC",
292 .description = "GPRS Logical Link Control Protocol (LLC)",
293 .enabled = 1, .loglevel = LOGL_DEBUG,
294 },
295 [DSNDCP] = {
296 .name = "DSNDCP",
297 .description = "GPRS Sub-Network Dependent Control Protocol (SNDCP)",
298 .enabled = 1, .loglevel = LOGL_DEBUG,
299 },
Daniel Willmann35a65ed2016-05-20 21:59:45 +0200300 [DRANAP] = {
301 .name = "DRANAP",
302 .description = "RAN Application Part (RANAP)",
303 .enabled = 1, .loglevel = LOGL_DEBUG,
304 },
Daniel Willmann3adb23c2016-05-20 21:59:35 +0200305 [DSUA] = {
306 .name = "DSUA",
307 .description = "SCCP User Adaptation (SUA)",
308 .enabled = 1, .loglevel = LOGL_DEBUG,
309 },
Philipp2c7f8372016-08-26 16:58:41 +0200310 [DSLHC] = {
311 .name = "DSLHC",
312 .description = "RFC1144 TCP/IP Header compression (SLHC)",
313 .enabled = 1, .loglevel = LOGL_DEBUG,
314 },
Philipp73f83d52016-09-02 13:38:01 +0200315 [DV42BIS] = {
316 .name = "DV42BIS",
317 .description = "V.42bis data compression (SNDCP)",
318 .enabled = 1, .loglevel = LOGL_DEBUG,
319 }
Harald Welte11461a62012-06-17 12:58:46 +0800320};
321
322static const struct log_info gprs_log_info = {
323 .filter_fn = gprs_log_filter_fn,
324 .cat = gprs_categories,
325 .num_cat = ARRAY_SIZE(gprs_categories),
326};
327
Neels Hofmeyr28295b92017-07-05 15:19:52 +0200328int sgsn_ranap_iu_event(struct ue_conn_ctx *ctx, enum ranap_iu_event_type type, void *data);
Harald Welte11461a62012-06-17 12:58:46 +0800329
Harald Welte288be162010-05-01 16:48:27 +0200330int main(int argc, char **argv)
331{
Holger Hans Peter Freythera2730302014-03-23 18:08:26 +0100332 struct ctrl_handle *ctrl;
Harald Welte288be162010-05-01 16:48:27 +0200333 struct gsm_network dummy_network;
Philipp Maier4b60d072017-04-09 12:32:51 +0200334 struct osmo_sccp_instance *sccp;
Harald Welte288be162010-05-01 16:48:27 +0200335 int rc;
336
Max4011e722016-07-05 15:19:12 +0200337 srand(time(NULL));
Harald Welte288be162010-05-01 16:48:27 +0200338 tall_bsc_ctx = talloc_named_const(NULL, 0, "osmo_sgsn");
Neels Hofmeyr39ae17f2016-09-16 01:49:08 +0200339 msgb_talloc_ctx_init(tall_bsc_ctx, 0);
Harald Welte66f793a2010-05-13 11:50:04 +0200340
341 signal(SIGINT, &signal_handler);
Harald Welte3d24d292017-08-20 20:50:06 +0200342 signal(SIGTERM, &signal_handler);
Harald Welte66f793a2010-05-13 11:50:04 +0200343 signal(SIGABRT, &signal_handler);
344 signal(SIGUSR1, &signal_handler);
345 signal(SIGUSR2, &signal_handler);
Harald Welte288be162010-05-01 16:48:27 +0200346
Holger Hans Peter Freyther67cd75f2011-05-12 16:02:07 +0200347 osmo_init_ignore_signals();
Harald Welte11461a62012-06-17 12:58:46 +0800348 osmo_init_logging(&gprs_log_info);
Jacob Erlbeck64630cc2015-10-26 16:25:37 +0100349 osmo_stats_init(tall_bsc_ctx);
Harald Welte288be162010-05-01 16:48:27 +0200350
Harald Weltec31f4802010-05-25 23:31:39 +0200351 vty_info.copyright = openbsc_copyright;
352 vty_init(&vty_info);
Maxdb0e3802017-01-12 19:35:11 +0100353 logging_vty_add_cmds(NULL);
Jacob Erlbeck64630cc2015-10-26 16:25:37 +0100354 osmo_stats_vty_add_cmds(&gprs_log_info);
Neels Hofmeyr069e53f2017-07-20 14:41:20 +0200355 sgsn_vty_init(&sgsn_inst.cfg);
Neels Hofmeyr73828152016-02-23 15:10:33 +0100356 ctrl_vty_init(tall_bsc_ctx);
Philipp Maier4b60d072017-04-09 12:32:51 +0200357 osmo_ss7_init();
Harald Weltedcccb182010-05-16 20:52:23 +0200358
Harald Welte9ae28a12010-08-27 09:26:44 +0200359 handle_options(argc, argv);
360
Harald Welte66f793a2010-05-13 11:50:04 +0200361 rate_ctr_init(tall_bsc_ctx);
Harald Welte288be162010-05-01 16:48:27 +0200362
Harald Welte68d85d52012-06-16 17:45:59 +0800363 gprs_ns_set_log_ss(DNS);
Harald Weltece95b272012-06-17 13:04:02 +0800364 bssgp_set_log_ss(DBSSGP);
Harald Welte68d85d52012-06-16 17:45:59 +0800365
Harald Weltefdd8b3b2012-06-16 16:54:06 +0800366 sgsn_nsi = gprs_ns_instantiate(&sgsn_ns_cb, tall_bsc_ctx);
Harald Welte288be162010-05-01 16:48:27 +0200367 if (!sgsn_nsi) {
368 LOGP(DGPRS, LOGL_ERROR, "Unable to instantiate NS\n");
369 exit(1);
370 }
Harald Welte2720e732010-05-17 00:44:57 +0200371 bssgp_nsi = sgsn_inst.cfg.nsi = sgsn_nsi;
Harald Welte496aee42010-06-30 19:59:55 +0200372
373 gprs_llc_init("/usr/local/lib/osmocom/crypt/");
Alexander Couzens14314bd2016-07-05 09:52:52 +0200374 sgsn_rate_ctr_init();
Jacob Erlbeck81ffb742015-01-23 11:33:51 +0100375 sgsn_inst_init();
Harald Welte496aee42010-06-30 19:59:55 +0200376
Harald Welte66f793a2010-05-13 11:50:04 +0200377 gprs_ns_vty_init(bssgp_nsi);
Harald Weltece95b272012-06-17 13:04:02 +0800378 bssgp_vty_init();
Harald Welte2e918a82010-05-18 12:20:12 +0200379 gprs_llc_vty_init();
Harald Weltef78a3b22010-06-30 17:21:19 +0200380 gprs_sndcp_vty_init();
Jacob Erlbecka0b6efb2014-11-13 10:48:39 +0100381 sgsn_auth_init();
Holger Hans Peter Freyther4f5b8232015-05-05 22:25:48 +0200382 sgsn_cdr_init(&sgsn_inst);
Harald Weltea6a20b42012-06-16 16:40:42 +0800383 /* FIXME: register signal handler for SS_L_NS */
Harald Welte66f793a2010-05-13 11:50:04 +0200384
Neels Hofmeyr069e53f2017-07-20 14:41:20 +0200385 rc = sgsn_parse_config(sgsn_inst.config_file);
Harald Welte66f793a2010-05-13 11:50:04 +0200386 if (rc < 0) {
Neels Hofmeyr27355c92017-02-24 06:28:31 +0100387 LOGP(DGPRS, LOGL_FATAL, "Error in config file\n");
Harald Welte66f793a2010-05-13 11:50:04 +0200388 exit(2);
389 }
390
Neels Hofmeyrfa0f7152016-02-23 14:09:38 +0100391 /* start telnet after reading config for vty_get_bind_addr() */
Neels Hofmeyrfa0f7152016-02-23 14:09:38 +0100392 rc = telnet_init_dynif(tall_bsc_ctx, &dummy_network,
393 vty_get_bind_addr(), OSMO_VTY_PORT_SGSN);
394 if (rc < 0)
395 exit(1);
396
Neels Hofmeyr73828152016-02-23 15:10:33 +0100397 /* start control interface after reading config for
398 * ctrl_vty_get_bind_addr() */
Neels Hofmeyr73828152016-02-23 15:10:33 +0100399 ctrl = sgsn_controlif_setup(NULL, ctrl_vty_get_bind_addr(),
400 OSMO_CTRL_PORT_SGSN);
401 if (!ctrl) {
402 LOGP(DGPRS, LOGL_ERROR, "Failed to create CTRL interface.\n");
403 exit(1);
404 }
405
406 if (sgsn_ctrl_cmds_install() != 0) {
407 LOGP(DGPRS, LOGL_ERROR, "Failed to install CTRL commands.\n");
408 exit(1);
409 }
410
411
Harald Welte2720e732010-05-17 00:44:57 +0200412 rc = sgsn_gtp_init(&sgsn_inst);
Harald Welte6efc1762010-05-19 15:46:31 +0200413 if (rc) {
414 LOGP(DGPRS, LOGL_FATAL, "Cannot bind/listen on GTP socket\n");
Harald Welte269ae752010-05-18 14:44:31 +0200415 exit(2);
Harald Welte6efc1762010-05-19 15:46:31 +0200416 }
Harald Welte269ae752010-05-18 14:44:31 +0200417
Jacob Erlbeck39f040d2014-12-18 12:46:47 +0100418 rc = gprs_subscr_init(&sgsn_inst);
419 if (rc < 0) {
420 LOGP(DGPRS, LOGL_FATAL, "Cannot set up subscriber management\n");
421 exit(2);
422 }
423
Harald Welteff3bde82010-05-19 15:09:09 +0200424 rc = gprs_ns_nsip_listen(sgsn_nsi);
Harald Welte6efc1762010-05-19 15:46:31 +0200425 if (rc < 0) {
426 LOGP(DGPRS, LOGL_FATAL, "Cannot bind/listen on NSIP socket\n");
Harald Welteff3bde82010-05-19 15:09:09 +0200427 exit(2);
Harald Welte6efc1762010-05-19 15:46:31 +0200428 }
429
430 rc = gprs_ns_frgre_listen(sgsn_nsi);
431 if (rc < 0) {
432 LOGP(DGPRS, LOGL_FATAL, "Cannot bind/listen GRE "
433 "socket. Do you have CAP_NET_RAW?\n");
434 exit(2);
435 }
Harald Welte288be162010-05-01 16:48:27 +0200436
Holger Hans Peter Freyther39c430e2015-05-25 12:26:49 +0800437 if (sgsn->cfg.dynamic_lookup) {
438 if (sgsn_ares_init(sgsn) != 0) {
439 LOGP(DGPRS, LOGL_FATAL,
440 "Failed to initialize c-ares(%d)\n", rc);
441 exit(4);
442 }
443 }
444
Daniel Willmann6292c8d2016-05-21 17:35:57 +0200445#ifdef BUILD_IU
Philipp Maier4b60d072017-04-09 12:32:51 +0200446 sccp = osmo_sccp_simple_client(tall_bsc_ctx, "OsmoSGSN",
447 2 /* FIXME: configurable */,
448 OSMO_SS7_ASP_PROT_M3UA, 0,
449 "127.0.0.4" /* FIXME: configurable */,
450 M3UA_PORT,
451 "127.0.0.1" /* FIXME: configurable */);
452 if (!sccp) {
453 printf("Setting up SCCP client failed.\n");
454 return 8;
455 }
456
Neels Hofmeyr28295b92017-07-05 15:19:52 +0200457 ranap_iu_init(tall_bsc_ctx, DRANAP, "OsmoSGSN-IuPS", sccp, gsm0408_gprs_rcvmsg_iu, sgsn_ranap_iu_event);
Daniel Willmann6292c8d2016-05-21 17:35:57 +0200458#endif
459
Harald Welte9ae28a12010-08-27 09:26:44 +0200460 if (daemonize) {
461 rc = osmo_daemonize();
462 if (rc < 0) {
463 perror("Error during daemonize");
464 exit(1);
465 }
466 }
467
Harald Welte288be162010-05-01 16:48:27 +0200468 while (1) {
Pablo Neira Ayuso4db92992011-05-06 12:11:23 +0200469 rc = osmo_select_main(0);
Harald Welte288be162010-05-01 16:48:27 +0200470 if (rc < 0)
471 exit(3);
472 }
473
Harald Weltebaf77002011-07-16 13:47:01 +0200474 /* not reached */
Harald Welte288be162010-05-01 16:48:27 +0200475 exit(0);
476}