blob: 29d847374d41257958a2870db0925017b30149a6 [file] [log] [blame]
Pau Espin Pedrolfdd732b2017-10-13 14:32:24 +02001/*
Harald Welte632e8432017-09-05 18:12:14 +02002 * OsmoGGSN - Gateway GPRS Support Node
jjako0fe0df02004-09-17 11:30:40 +00003 * Copyright (C) 2002, 2003, 2004 Mondru AB.
Harald Weltedda21ed2017-08-12 15:07:02 +02004 * Copyright (C) 2017 by Harald Welte <laforge@gnumonks.org>
Pau Espin Pedrolfdd732b2017-10-13 14:32:24 +02005 *
jjakoa7cd2492003-04-11 09:40:12 +00006 * The contents of this file may be used under the terms of the GNU
7 * General Public License Version 2, provided that the above copyright
8 * notice and this permission notice is included in all copies or
9 * substantial portions of the software.
Pau Espin Pedrolfdd732b2017-10-13 14:32:24 +020010 *
jjako52c24142002-12-16 13:33:51 +000011 */
12
13/* ggsn.c
14 *
15 */
16
17#ifdef __linux__
18#define _GNU_SOURCE 1 /* strdup() prototype, broken arpa/inet.h */
19#endif
20
jjako0fe0df02004-09-17 11:30:40 +000021#include "../config.h"
22
23#ifdef HAVE_STDINT_H
24#include <stdint.h>
25#endif
jjako52c24142002-12-16 13:33:51 +000026
Harald Weltedda21ed2017-08-12 15:07:02 +020027#include <getopt.h>
jjako52c24142002-12-16 13:33:51 +000028#include <ctype.h>
jjako52c24142002-12-16 13:33:51 +000029#include <signal.h>
30#include <stdio.h>
31#include <string.h>
32#include <stdlib.h>
Harald Weltedda21ed2017-08-12 15:07:02 +020033#include <unistd.h>
34#include <inttypes.h>
35#include <errno.h>
jjako52c24142002-12-16 13:33:51 +000036#include <sys/types.h>
Harald Weltedda21ed2017-08-12 15:07:02 +020037#include <sys/ioctl.h>
38
39#include <net/if.h>
40#include <arpa/inet.h>
jjako52c24142002-12-16 13:33:51 +000041#include <netinet/in.h>
Harald Welte63ebccd2017-08-02 21:10:09 +020042#include <netinet/ip.h>
Harald Weltea0d281d2017-08-02 21:48:16 +020043#include <netinet/ip6.h>
jjako52c24142002-12-16 13:33:51 +000044
Harald Weltedda21ed2017-08-12 15:07:02 +020045#include <osmocom/core/application.h>
Max727417d2016-08-02 17:10:38 +020046#include <osmocom/core/select.h>
Harald Weltedda21ed2017-08-12 15:07:02 +020047#include <osmocom/core/stats.h>
48#include <osmocom/core/rate_ctr.h>
49#include <osmocom/core/timer.h>
Max727417d2016-08-02 17:10:38 +020050#include <osmocom/ctrl/control_if.h>
51#include <osmocom/ctrl/control_cmd.h>
Harald Weltedda21ed2017-08-12 15:07:02 +020052#include <osmocom/ctrl/control_vty.h>
Max727417d2016-08-02 17:10:38 +020053#include <osmocom/ctrl/ports.h>
Harald Weltedda21ed2017-08-12 15:07:02 +020054#include <osmocom/vty/telnet_interface.h>
55#include <osmocom/vty/logging.h>
56#include <osmocom/vty/stats.h>
57#include <osmocom/vty/ports.h>
58#include <osmocom/vty/command.h>
59#include <osmocom/gsm/apn.h>
Max727417d2016-08-02 17:10:38 +020060
Emmanuel Bretelle2a103682010-09-07 17:01:20 +020061#include "../lib/tun.h"
62#include "../lib/ippool.h"
63#include "../lib/syserr.h"
Harald Welted12eab92017-08-02 19:49:47 +020064#include "../lib/in46_addr.h"
jjako52c24142002-12-16 13:33:51 +000065#include "../gtp/pdp.h"
66#include "../gtp/gtp.h"
Pablo Neira Ayuso4b075b62015-11-17 12:22:42 +010067#include "gtp-kernel.h"
Harald Welted46bcd22017-08-08 23:27:22 +020068#include "icmpv6.h"
Harald Weltedda21ed2017-08-12 15:07:02 +020069#include "ggsn.h"
jjako52c24142002-12-16 13:33:51 +000070
Harald Weltedda21ed2017-08-12 15:07:02 +020071void *tall_ggsn_ctx;
jjakoa7cd2492003-04-11 09:40:12 +000072
Harald Weltedda21ed2017-08-12 15:07:02 +020073static int end = 0;
74static int daemonize = 0;
75static struct ctrl_handle *g_ctrlh;
76
jjakoa7cd2492003-04-11 09:40:12 +000077struct ul255_t qos;
78struct ul255_t apn;
79
Harald Weltedda21ed2017-08-12 15:07:02 +020080#define LOGPAPN(level, apn, fmt, args...) \
81 LOGP(DGGSN, level, "APN(%s): " fmt, (apn)->cfg.name, ## args)
jjako52c24142002-12-16 13:33:51 +000082
Harald Weltedda21ed2017-08-12 15:07:02 +020083#define LOGPGGSN(level, ggsn, fmt, args...) \
84 LOGP(DGGSN, level, "GGSN(%s): " fmt, (ggsn)->cfg.name, ## args)
85
Max6a215272017-09-25 10:35:34 +020086#define LOGPPDP(level, pdp, fmt, args...) LOGPDPX(DGGSN, level, pdp, fmt, ## args)
Harald Weltedda21ed2017-08-12 15:07:02 +020087
88static int ggsn_tun_fd_cb(struct osmo_fd *fd, unsigned int what);
89static int cb_tun_ind(struct tun_t *tun, void *pack, unsigned len);
90
91
92static void pool_close_all_pdp(struct ippool_t *pool)
Harald Weltebed35df2011-11-02 13:06:18 +010093{
Harald Weltedda21ed2017-08-12 15:07:02 +020094 unsigned int i;
jjako52c24142002-12-16 13:33:51 +000095
Harald Weltedda21ed2017-08-12 15:07:02 +020096 if (!pool)
Harald Weltebed35df2011-11-02 13:06:18 +010097 return;
Harald Weltedda21ed2017-08-12 15:07:02 +020098
99 for (i = 0; i < pool->listsize; i++) {
100 struct ippoolm_t *member = &pool->member[i];
101 struct pdp_t *pdp;
102
103 if (!member->inuse)
104 continue;
105 pdp = member->peer;
106 if (!pdp)
107 continue;
108 LOGPPDP(LOGL_DEBUG, pdp, "Sending DELETE PDP CTX due to shutdown\n");
109 gtp_delete_context_req(pdp->gsn, pdp, NULL, 1);
Harald Weltebed35df2011-11-02 13:06:18 +0100110 }
jjako52c24142002-12-16 13:33:51 +0000111}
112
Harald Weltedda21ed2017-08-12 15:07:02 +0200113int apn_stop(struct apn_ctx *apn, bool force)
Harald Weltebed35df2011-11-02 13:06:18 +0100114{
Harald Weltedda21ed2017-08-12 15:07:02 +0200115 LOGPAPN(LOGL_NOTICE, apn, "%sStopping\n", force ? "FORCED " : "");
116 /* check if pools have any active PDP contexts and bail out */
117 pool_close_all_pdp(apn->v4.pool);
118 pool_close_all_pdp(apn->v6.pool);
119
120 /* shutdown whatever old state might be left */
121 if (apn->tun.tun) {
122 /* run ip-down script */
123 if (apn->tun.cfg.ipdown_script) {
124 LOGPAPN( LOGL_INFO, apn, "Running %s\n", apn->tun.cfg.ipdown_script);
125 tun_runscript(apn->tun.tun, apn->tun.cfg.ipdown_script);
126 }
127 /* release tun device */
Harald Welteed08eb12017-10-01 18:15:56 +0800128 LOGPAPN(LOGL_INFO, apn, "Closing TUN device %s\n", apn->tun.tun->devname);
Harald Weltedda21ed2017-08-12 15:07:02 +0200129 osmo_fd_unregister(&apn->tun.fd);
130 tun_free(apn->tun.tun);
131 apn->tun.tun = NULL;
132 }
133
134 if (apn->v4.pool) {
135 LOGPAPN(LOGL_INFO, apn, "Releasing IPv4 pool\n");
136 ippool_free(apn->v4.pool);
137 apn->v4.pool = NULL;
138 }
139 if (apn->v6.pool) {
140 LOGPAPN(LOGL_INFO, apn, "Releasing IPv6 pool\n");
141 ippool_free(apn->v6.pool);
142 apn->v6.pool = NULL;
143 }
144
145 apn->started = false;
146 return 0;
147}
148
149/* actually start the APN with its current config */
150int apn_start(struct apn_ctx *apn)
151{
152 if (apn->started)
153 return 0;
154
155 LOGPAPN(LOGL_INFO, apn, "Starting\n");
156 switch (apn->cfg.gtpu_mode) {
157 case APN_GTPU_MODE_TUN:
158 LOGPAPN(LOGL_INFO, apn, "Opening TUN device %s\n", apn->tun.cfg.dev_name);
159 if (tun_new(&apn->tun.tun, apn->tun.cfg.dev_name)) {
160 LOGPAPN(LOGL_ERROR, apn, "Failed to configure tun device\n");
161 return -1;
162 }
163 LOGPAPN(LOGL_INFO, apn, "Opened TUN device %s\n", apn->tun.tun->devname);
164
165 /* Register with libosmcoore */
166 osmo_fd_setup(&apn->tun.fd, apn->tun.tun->fd, BSC_FD_READ, ggsn_tun_fd_cb, apn, 0);
167 osmo_fd_register(&apn->tun.fd);
168
169 /* Set TUN library callback */
170 tun_set_cb_ind(apn->tun.tun, cb_tun_ind);
171
172 if (apn->v4.cfg.ifconfig_prefix.addr.len) {
173 LOGPAPN(LOGL_INFO, apn, "Setting tun IP address %s\n",
174 in46p_ntoa(&apn->v4.cfg.ifconfig_prefix));
175 if (tun_setaddr(apn->tun.tun, &apn->v4.cfg.ifconfig_prefix.addr, NULL,
176 apn->v4.cfg.ifconfig_prefix.prefixlen)) {
177 LOGPAPN(LOGL_ERROR, apn, "Failed to set tun IPv4 address %s: %s\n",
178 in46p_ntoa(&apn->v4.cfg.ifconfig_prefix), strerror(errno));
179 apn_stop(apn, false);
180 return -1;
181 }
182 }
183
184 if (apn->v6.cfg.ifconfig_prefix.addr.len) {
185 LOGPAPN(LOGL_INFO, apn, "Setting tun IPv6 address %s\n",
186 in46p_ntoa(&apn->v6.cfg.ifconfig_prefix));
187 if (tun_setaddr(apn->tun.tun, &apn->v6.cfg.ifconfig_prefix.addr, NULL,
188 apn->v6.cfg.ifconfig_prefix.prefixlen)) {
Harald Welteed1ba2c2017-10-01 18:16:17 +0800189 LOGPAPN(LOGL_ERROR, apn, "Failed to set tun IPv6 address %s: %s. "
190 "Ensure you have ipv6 support and not used the disable_ipv6 sysctl?\n",
Harald Weltedda21ed2017-08-12 15:07:02 +0200191 in46p_ntoa(&apn->v6.cfg.ifconfig_prefix), strerror(errno));
192 apn_stop(apn, false);
193 return -1;
194 }
195 }
196
197 if (apn->tun.cfg.ipup_script) {
198 LOGPAPN(LOGL_INFO, apn, "Running ip-up script %s\n",
199 apn->tun.cfg.ipup_script);
200 tun_runscript(apn->tun.tun, apn->tun.cfg.ipup_script);
201 }
Harald Weltef85fe972017-09-24 20:00:34 +0800202
203 if (apn->cfg.apn_type_mask & (APN_TYPE_IPv6|APN_TYPE_IPv4v6)) {
204 if (tun_ipv6_linklocal_get(apn->tun.tun, &apn->v6_lladdr) < 0) {
205 LOGPAPN(LOGL_ERROR, apn, "Cannot obtain IPv6 link-local address of "
206 "interface: %s\n", strerror(errno));
207 apn_stop(apn, false);
208 return -1;
209 }
210 }
211
Harald Weltedda21ed2017-08-12 15:07:02 +0200212 /* set back-pointer from TUN device to APN */
213 apn->tun.tun->priv = apn;
214 break;
215 case APN_GTPU_MODE_KERNEL_GTP:
216 LOGPAPN(LOGL_ERROR, apn, "FIXME: Kernel GTP\n");
217#if 0
218 /* use GTP kernel module for data packet encapsulation */
219 if (gtp_kernel_init(gsn, &net.v4, prefixlen, net_arg) < 0)
220 goto err;
221#endif
Harald Weltebed35df2011-11-02 13:06:18 +0100222 break;
223 default:
Harald Weltedda21ed2017-08-12 15:07:02 +0200224 LOGPAPN(LOGL_ERROR, apn, "Unknown GTPU Mode %d\n", apn->cfg.gtpu_mode);
225 return -1;
Harald Weltebed35df2011-11-02 13:06:18 +0100226 }
jjako0141d202004-01-09 15:19:20 +0000227
Harald Weltedda21ed2017-08-12 15:07:02 +0200228 /* Create IPv4 pool */
229 if (apn->v4.cfg.dynamic_prefix.addr.len) {
230 LOGPAPN(LOGL_INFO, apn, "Creating IPv4 pool %s\n",
231 in46p_ntoa(&apn->v4.cfg.dynamic_prefix));
232 if (ippool_new(&apn->v4.pool, &apn->v4.cfg.dynamic_prefix,
233 &apn->v4.cfg.static_prefix, 0)) {
234 LOGPAPN(LOGL_ERROR, apn, "Failed to create IPv4 pool\n");
235 apn_stop(apn, false);
236 return -1;
237 }
Harald Weltebed35df2011-11-02 13:06:18 +0100238 }
Harald Weltedda21ed2017-08-12 15:07:02 +0200239
240 /* Create IPv6 pool */
241 if (apn->v6.cfg.dynamic_prefix.addr.len) {
242 LOGPAPN(LOGL_INFO, apn, "Creating IPv6 pool %s\n",
243 in46p_ntoa(&apn->v6.cfg.dynamic_prefix));
244 if (ippool_new(&apn->v6.pool, &apn->v6.cfg.dynamic_prefix,
245 &apn->v6.cfg.static_prefix, 0)) {
246 LOGPAPN(LOGL_ERROR, apn, "Failed to create IPv6 pool\n");
247 apn_stop(apn, false);
248 return -1;
249 }
250 }
251
252 LOGPAPN(LOGL_NOTICE, apn, "Successfully started\n");
253 apn->started = true;
254 return 0;
jjako0141d202004-01-09 15:19:20 +0000255}
jjako0141d202004-01-09 15:19:20 +0000256
Max3142d8d2017-05-04 17:45:10 +0200257static bool send_trap(const struct gsn_t *gsn, const struct pdp_t *pdp, const struct ippoolm_t *member, const char *var)
258{
Harald Welted12eab92017-08-02 19:49:47 +0200259 char addrbuf[256];
Max3142d8d2017-05-04 17:45:10 +0200260 char val[NAMESIZE];
261
Harald Welted12eab92017-08-02 19:49:47 +0200262 const char *addrstr = in46a_ntop(&member->addr, addrbuf, sizeof(addrbuf));
263
Harald Welteb10ee082017-08-12 19:29:16 +0200264 snprintf(val, sizeof(val), "%s,%s", imsi_gtp2str(&pdp->imsi), addrstr);
Max3142d8d2017-05-04 17:45:10 +0200265
Harald Weltedda21ed2017-08-12 15:07:02 +0200266 if (ctrl_cmd_send_trap(g_ctrlh, var, val) < 0) {
267 LOGPPDP(LOGL_ERROR, pdp, "Failed to create and send TRAP %s\n", var);
Max3142d8d2017-05-04 17:45:10 +0200268 return false;
269 }
270 return true;
271}
272
Harald Weltedda21ed2017-08-12 15:07:02 +0200273static int delete_context(struct pdp_t *pdp)
Harald Weltebed35df2011-11-02 13:06:18 +0100274{
Harald Weltedda21ed2017-08-12 15:07:02 +0200275 struct gsn_t *gsn = pdp->gsn;
276 struct ippoolm_t *ipp = (struct ippoolm_t *)pdp->peer;
277
278 LOGPPDP(LOGL_INFO, pdp, "Deleting PDP context\n");
Max727417d2016-08-02 17:10:38 +0200279 struct ippoolm_t *member = pdp->peer;
Maxdbd70242016-10-14 13:38:05 +0200280
281 if (pdp->peer) {
Max3142d8d2017-05-04 17:45:10 +0200282 send_trap(gsn, pdp, member, "imsi-rem-ip"); /* TRAP with IP removal */
Harald Weltedda21ed2017-08-12 15:07:02 +0200283 ippool_freeip(ipp->pool, ipp);
Maxdbd70242016-10-14 13:38:05 +0200284 } else
Harald Weltedda21ed2017-08-12 15:07:02 +0200285 LOGPPDP(LOGL_ERROR, pdp, "Cannot find/free IP Pool member\n");
Pablo Neira Ayuso4b075b62015-11-17 12:22:42 +0100286
287 if (gtp_kernel_tunnel_del(pdp)) {
Harald Weltedda21ed2017-08-12 15:07:02 +0200288 LOGPPDP(LOGL_ERROR, pdp, "Cannot delete tunnel from kernel:%s\n",
Pablo Neira Ayuso4b075b62015-11-17 12:22:42 +0100289 strerror(errno));
290 }
291
Harald Weltebed35df2011-11-02 13:06:18 +0100292 return 0;
jjako52c24142002-12-16 13:33:51 +0000293}
294
Harald Welte1ae98772017-08-09 20:28:52 +0200295#include <osmocom/gsm/tlv.h>
296
297/* 3GPP TS 24.008 10.6.5.3 */
298enum pco_protocols {
299 PCO_P_LCP = 0xC021,
300 PCO_P_PAP = 0xC023,
301 PCO_P_CHAP = 0xC223,
302 PCO_P_IPCP = 0x8021,
303 PCO_P_PCSCF_ADDR = 0x0001,
304 PCO_P_IM_CN_SS_F = 0x0002,
305 PCO_P_DNS_IPv6_ADDR = 0x0003,
306 PCO_P_POLICY_CTRL_REJ = 0x0004, /* only in Network->MS */
307 PCO_P_MS_SUP_NETREQ_BCI = 0x0005,
308 /* reserved */
309 PCO_P_DSMIPv6_HA_ADDR = 0x0007,
310 PCO_P_DSMIPv6_HN_PREF = 0x0008,
311 PCO_P_DSMIPv6_v4_HA_ADDR= 0x0009,
312 PCO_P_IP_ADDR_VIA_NAS = 0x000a, /* only MS->Network */
313 PCO_P_IPv4_ADDR_VIA_DHCP= 0x000b, /* only MS->Netowrk */
314 PCO_P_PCSCF_IPv4_ADDR = 0x000c,
315 PCO_P_DNS_IPv4_ADDR = 0x000d,
316 PCO_P_MSISDN = 0x000e,
317 PCO_P_IFOM_SUPPORT = 0x000f,
318 PCO_P_IPv4_LINK_MTU = 0x0010,
319 PCO_P_MS_SUPP_LOC_A_TFT = 0x0011,
320 PCO_P_PCSCF_RESEL_SUP = 0x0012, /* only MS->Network */
321 PCO_P_NBIFOM_REQ = 0x0013,
322 PCO_P_NBIFOM_MODE = 0x0014,
323 PCO_P_NONIP_LINK_MTU = 0x0015,
324 PCO_P_APN_RATE_CTRL_SUP = 0x0016,
325 PCO_P_PS_DATA_OFF_UE = 0x0017,
326 PCO_P_REL_DATA_SVC = 0x0018,
327};
328
329/* determine if PCO contains given protocol */
330static bool pco_contains_proto(struct ul255_t *pco, uint16_t prot)
331{
332 uint8_t *cur = pco->v + 1;
333
334 /* iterate over PCO and check if protocol contained */
Pau Espin Pedrol0ab62fe2017-08-30 15:51:24 +0200335 while (cur + 3 <= pco->v + pco->l) {
Harald Welte1ae98772017-08-09 20:28:52 +0200336 uint16_t cur_prot = osmo_load16be(cur);
337 uint8_t cur_len = cur[2];
338 if (cur_prot == prot)
339 return true;
340 if (cur_len == 0)
341 break;
Pau Espin Pedrol0ab62fe2017-08-30 15:51:24 +0200342 cur += cur_len + 3;
Harald Welte1ae98772017-08-09 20:28:52 +0200343 }
344 return false;
345}
346
347/* determine if PDP context has IPv6 support */
348static bool pdp_has_v4(struct pdp_t *pdp)
349{
350 if (pdp->eua.l == 4+2)
351 return true;
352 else
353 return false;
354}
355
Harald Weltedda21ed2017-08-12 15:07:02 +0200356/* construct an IPCP PCO from up to two given DNS addreses */
357static int build_ipcp_pco(struct msgb *msg, uint8_t id, const struct in46_addr *dns1,
358 const struct in46_addr *dns2)
359{
360 uint8_t *len1, *len2;
361 uint8_t *start = msg->tail;
362 unsigned int len_appended;
363
364 /* Three byte T16L header */
365 msgb_put_u16(msg, 0x8021); /* IPCP */
366 len1 = msgb_put(msg, 1); /* Length of contents: delay */
367
368 msgb_put_u8(msg, 0x02); /* ACK */
369 msgb_put_u8(msg, id); /* ID: Needs to match request */
370 msgb_put_u8(msg, 0x00); /* Length MSB */
371 len2 = msgb_put(msg, 1); /* Length LSB: delay */
372
373 if (dns1 && dns1->len == 4) {
374 msgb_put_u8(msg, 0x81); /* DNS1 Tag */
375 msgb_put_u8(msg, 2 + dns1->len);/* DNS1 Length, incl. TL */
376 msgb_put_u32(msg, dns1->v4.s_addr);
377 }
378
379 if (dns2 && dns2->len == 4) {
380 msgb_put_u8(msg, 0x83); /* DNS2 Tag */
381 msgb_put_u8(msg, 2 + dns2->len);/* DNS2 Length, incl. TL */
382 msgb_put_u32(msg, dns2->v4.s_addr);
383 }
384
385 /* patch in length values */
386 len_appended = msg->tail - start;
387 *len1 = len_appended - 3;
388 *len2 = len_appended - 3;
389
390 return 0;
391}
392
Harald Welte1ae98772017-08-09 20:28:52 +0200393/* process one PCO request from a MS/UE, putting together the proper responses */
Harald Weltedda21ed2017-08-12 15:07:02 +0200394static void process_pco(struct apn_ctx *apn, struct pdp_t *pdp)
Harald Welte1ae98772017-08-09 20:28:52 +0200395{
396 struct msgb *msg = msgb_alloc(256, "PCO");
Harald Weltedda21ed2017-08-12 15:07:02 +0200397 unsigned int i;
398
399 OSMO_ASSERT(msg);
Harald Welte1ae98772017-08-09 20:28:52 +0200400 msgb_put_u8(msg, 0x80); /* ext-bit + configuration protocol byte */
401
402 /* FIXME: also check if primary / secondary DNS was requested */
403 if (pdp_has_v4(pdp) && pco_contains_proto(&pdp->pco_req, PCO_P_IPCP)) {
404 /* FIXME: properly implement this for IPCP */
Harald Weltedda21ed2017-08-12 15:07:02 +0200405 build_ipcp_pco(msg, 0, &apn->v4.cfg.dns[0], &apn->v4.cfg.dns[1]);
Harald Welte1ae98772017-08-09 20:28:52 +0200406 }
407
408 if (pco_contains_proto(&pdp->pco_req, PCO_P_DNS_IPv6_ADDR)) {
Harald Weltedda21ed2017-08-12 15:07:02 +0200409 for (i = 0; i < ARRAY_SIZE(apn->v6.cfg.dns); i++) {
410 struct in46_addr *i46a = &apn->v6.cfg.dns[i];
411 if (i46a->len != 16)
412 continue;
413 msgb_t16lv_put(msg, PCO_P_DNS_IPv6_ADDR, i46a->len, i46a->v6.s6_addr);
414 }
Harald Welte1ae98772017-08-09 20:28:52 +0200415 }
416
417 if (pco_contains_proto(&pdp->pco_req, PCO_P_DNS_IPv4_ADDR)) {
Harald Weltedda21ed2017-08-12 15:07:02 +0200418 for (i = 0; i < ARRAY_SIZE(apn->v4.cfg.dns); i++) {
419 struct in46_addr *i46a = &apn->v4.cfg.dns[i];
420 if (i46a->len != 4)
421 continue;
422 msgb_t16lv_put(msg, PCO_P_DNS_IPv4_ADDR, i46a->len, (uint8_t *)&i46a->v4);
423 }
Harald Welte1ae98772017-08-09 20:28:52 +0200424 }
425
426 if (msgb_length(msg) > 1) {
427 memcpy(pdp->pco_neg.v, msgb_data(msg), msgb_length(msg));
428 pdp->pco_neg.l = msgb_length(msg);
429 } else
430 pdp->pco_neg.l = 0;
431
432 msgb_free(msg);
433}
434
Harald Welte9d9d91b2017-10-14 16:22:16 +0200435static bool apn_supports_ipv4(const struct apn_ctx *apn)
436{
437 if (apn->v4.cfg.static_prefix.addr.len || apn->v4.cfg.dynamic_prefix.addr.len)
438 return true;
439 return false;
440}
441
442static bool apn_supports_ipv6(const struct apn_ctx *apn)
443{
444 if (apn->v6.cfg.static_prefix.addr.len || apn->v6.cfg.dynamic_prefix.addr.len)
445 return true;
446 return false;
447}
448
Harald Weltebed35df2011-11-02 13:06:18 +0100449int create_context_ind(struct pdp_t *pdp)
450{
Harald Weltedda21ed2017-08-12 15:07:02 +0200451 static char name_buf[256];
452 struct gsn_t *gsn = pdp->gsn;
453 struct ggsn_ctx *ggsn = gsn->priv;
Harald Welted12eab92017-08-02 19:49:47 +0200454 struct in46_addr addr;
Harald Weltebed35df2011-11-02 13:06:18 +0100455 struct ippoolm_t *member;
Harald Weltedda21ed2017-08-12 15:07:02 +0200456 struct apn_ctx *apn;
Harald Welted1bf1e12017-08-03 00:00:23 +0200457 int rc;
jjako52c24142002-12-16 13:33:51 +0000458
Harald Weltedda21ed2017-08-12 15:07:02 +0200459 osmo_apn_to_str(name_buf, pdp->apn_req.v, pdp->apn_req.l);
460
461 LOGPPDP(LOGL_DEBUG, pdp, "Processing create PDP context request for APN '%s'\n", name_buf);
462
463 /* First find an exact APN name match */
464 apn = ggsn_find_apn(ggsn, name_buf);
Harald Welte2e84d2c2017-10-01 13:36:52 +0800465 /* ignore if the APN has not been started */
Pau Espin Pedrol958256f2017-10-11 20:32:55 +0200466 if (apn && !apn->started)
Harald Welte2e84d2c2017-10-01 13:36:52 +0800467 apn = NULL;
Harald Welteb16c46b2017-10-01 18:28:18 +0800468
Harald Weltedda21ed2017-08-12 15:07:02 +0200469 /* then try default (if any) */
470 if (!apn)
471 apn = ggsn->cfg.default_apn;
Harald Welteb16c46b2017-10-01 18:28:18 +0800472 /* ignore if the APN has not been started */
Pau Espin Pedrol958256f2017-10-11 20:32:55 +0200473 if (apn && !apn->started)
Harald Welteb16c46b2017-10-01 18:28:18 +0800474 apn = NULL;
475
Harald Weltedda21ed2017-08-12 15:07:02 +0200476 if (!apn) {
477 /* no APN found for what user requested */
478 LOGPPDP(LOGL_NOTICE, pdp, "Unknown APN '%s', rejecting\n", name_buf);
479 gtp_create_context_resp(gsn, pdp, GTPCAUSE_MISSING_APN);
480 return 0;
481 }
jjako52c24142002-12-16 13:33:51 +0000482
Harald Welted9d88622017-08-04 00:22:35 +0200483 /* FIXME: we manually force all context requests to dynamic here! */
484 if (pdp->eua.l > 2)
485 pdp->eua.l = 2;
jjako52c24142002-12-16 13:33:51 +0000486
Harald Weltebed35df2011-11-02 13:06:18 +0100487 memcpy(pdp->qos_neg0, pdp->qos_req0, sizeof(pdp->qos_req0));
jjako52c24142002-12-16 13:33:51 +0000488
Harald Weltebed35df2011-11-02 13:06:18 +0100489 memcpy(pdp->qos_neg.v, pdp->qos_req.v, pdp->qos_req.l); /* TODO */
490 pdp->qos_neg.l = pdp->qos_req.l;
jjako52c24142002-12-16 13:33:51 +0000491
Harald Weltea0d281d2017-08-02 21:48:16 +0200492 if (in46a_from_eua(&pdp->eua, &addr)) {
Harald Weltedda21ed2017-08-12 15:07:02 +0200493 LOGPPDP(LOGL_ERROR, pdp, "Cannot decode EUA from MS/SGSN: %s\n",
Harald Welted1bf1e12017-08-03 00:00:23 +0200494 osmo_hexdump(pdp->eua.v, pdp->eua.l));
495 gtp_create_context_resp(gsn, pdp, GTPCAUSE_UNKNOWN_PDP);
496 return 0;
Harald Weltebed35df2011-11-02 13:06:18 +0100497 }
jjakoa7cd2492003-04-11 09:40:12 +0000498
Harald Weltedda21ed2017-08-12 15:07:02 +0200499 if (addr.len == sizeof(struct in_addr)) {
Harald Welte9d9d91b2017-10-14 16:22:16 +0200500 /* does this APN actually have an IPv4 pool? */
501 if (!apn_supports_ipv4(apn))
502 goto err_wrong_af;
503
Harald Weltedda21ed2017-08-12 15:07:02 +0200504 rc = ippool_newip(apn->v4.pool, &member, &addr, 0);
505 if (rc < 0)
506 goto err_pool_full;
507 in46a_to_eua(&member->addr, &pdp->eua);
jjakoa7cd2492003-04-11 09:40:12 +0000508
Harald Weltedda21ed2017-08-12 15:07:02 +0200509 /* TODO: In IPv6, EUA doesn't contain the actual IP addr/prefix! */
510 if (gtp_kernel_tunnel_add(pdp) < 0) {
511 LOGPPDP(LOGL_ERROR, pdp, "Cannot add tunnel to kernel: %s\n", strerror(errno));
512 gtp_create_context_resp(gsn, pdp, GTPCAUSE_SYS_FAIL);
513 return 0;
514 }
515 } else if (addr.len == sizeof(struct in6_addr)) {
Harald Welted46bcd22017-08-08 23:27:22 +0200516 struct in46_addr tmp;
Harald Welte9d9d91b2017-10-14 16:22:16 +0200517
518 /* does this APN actually have an IPv6 pool? */
519 if (!apn_supports_ipv6(apn))
520 goto err_wrong_af;
521
Harald Weltedda21ed2017-08-12 15:07:02 +0200522 rc = ippool_newip(apn->v6.pool, &member, &addr, 0);
523 if (rc < 0)
524 goto err_pool_full;
525
Harald Welted46bcd22017-08-08 23:27:22 +0200526 /* IPv6 doesn't really send the real/allocated address at this point, but just
527 * the link-identifier which the MS shall use for router solicitation */
528 tmp.len = addr.len;
529 /* initialize upper 64 bits to prefix, they are discarded by MS anyway */
530 memcpy(tmp.v6.s6_addr, &member->addr.v6, 8);
531 /* use allocated 64bit prefix as lower 64bit, used as link id by MS */
532 memcpy(tmp.v6.s6_addr+8, &member->addr.v6, 8);
533 in46a_to_eua(&tmp, &pdp->eua);
534 } else
Harald Weltedda21ed2017-08-12 15:07:02 +0200535 OSMO_ASSERT(0);
jjako52c24142002-12-16 13:33:51 +0000536
Harald Weltedda21ed2017-08-12 15:07:02 +0200537 pdp->peer = member;
538 pdp->ipif = apn->tun.tun; /* TODO */
539 member->peer = pdp;
Max3142d8d2017-05-04 17:45:10 +0200540
541 if (!send_trap(gsn, pdp, member, "imsi-ass-ip")) { /* TRAP with IP assignment */
Max727417d2016-08-02 17:10:38 +0200542 gtp_create_context_resp(gsn, pdp, GTPCAUSE_NO_RESOURCES);
543 return 0;
544 }
Pablo Neira Ayuso4b075b62015-11-17 12:22:42 +0100545
Harald Weltedda21ed2017-08-12 15:07:02 +0200546 process_pco(apn, pdp);
Harald Welte1ae98772017-08-09 20:28:52 +0200547
Harald Welte93fed3b2017-09-24 11:43:17 +0800548 /* Transmit G-PDU sequence numbers (only) if configured in APN */
549 pdp->tx_gpdu_seq = apn->cfg.tx_gpdu_seq;
550
Harald Weltedda21ed2017-08-12 15:07:02 +0200551 LOGPPDP(LOGL_INFO, pdp, "Successful PDP Context Creation: APN=%s(%s), TEIC=%u, IP=%s\n",
552 name_buf, apn->cfg.name, pdp->teic_own, in46a_ntoa(&member->addr));
Harald Weltebed35df2011-11-02 13:06:18 +0100553 gtp_create_context_resp(gsn, pdp, GTPCAUSE_ACC_REQ);
554 return 0; /* Success */
Harald Weltedda21ed2017-08-12 15:07:02 +0200555
556err_pool_full:
557 LOGPPDP(LOGL_ERROR, pdp, "Cannot allocate IP address from pool (full!)\n");
558 gtp_create_context_resp(gsn, pdp, -rc);
559 return 0; /* Already in use, or no more available */
Harald Welte9d9d91b2017-10-14 16:22:16 +0200560
561err_wrong_af:
562 LOGPPDP(LOGL_ERROR, pdp, "APN doesn't support requested EUA / AF type\n");
563 gtp_create_context_resp(gsn, pdp, GTPCAUSE_UNKNOWN_PDP);
564 return 0;
jjako52c24142002-12-16 13:33:51 +0000565}
566
Harald Weltedda21ed2017-08-12 15:07:02 +0200567/* Internet-originated IP packet, needs to be sent via GTP towards MS */
568static int cb_tun_ind(struct tun_t *tun, void *pack, unsigned len)
Harald Weltebed35df2011-11-02 13:06:18 +0100569{
Harald Weltedda21ed2017-08-12 15:07:02 +0200570 struct apn_ctx *apn = tun->priv;
Harald Weltebed35df2011-11-02 13:06:18 +0100571 struct ippoolm_t *ipm;
Harald Welted12eab92017-08-02 19:49:47 +0200572 struct in46_addr dst;
Harald Welte63ebccd2017-08-02 21:10:09 +0200573 struct iphdr *iph = (struct iphdr *)pack;
Harald Weltea0d281d2017-08-02 21:48:16 +0200574 struct ip6_hdr *ip6h = (struct ip6_hdr *)pack;
Harald Weltedda21ed2017-08-12 15:07:02 +0200575 struct ippool_t *pool;
jjakoc6762cf2004-04-28 14:52:58 +0000576
Harald Welte63ebccd2017-08-02 21:10:09 +0200577 if (iph->version == 4) {
Harald Welted12eab92017-08-02 19:49:47 +0200578 if (len < sizeof(*iph) || len < 4*iph->ihl)
579 return -1;
580 dst.len = 4;
Harald Welte63ebccd2017-08-02 21:10:09 +0200581 dst.v4.s_addr = iph->daddr;
Harald Weltedda21ed2017-08-12 15:07:02 +0200582 pool = apn->v4.pool;
Harald Weltea0d281d2017-08-02 21:48:16 +0200583 } else if (iph->version == 6) {
Harald Welted4d6e092017-08-08 18:10:43 +0200584 /* Due to the fact that 3GPP requires an allocation of a
585 * /64 prefix to each MS, we must instruct
586 * ippool_getip() below to match only the leading /64
587 * prefix, i.e. the first 8 bytes of the address */
588 dst.len = 8;
Harald Weltea0d281d2017-08-02 21:48:16 +0200589 dst.v6 = ip6h->ip6_dst;
Harald Weltedda21ed2017-08-12 15:07:02 +0200590 pool = apn->v6.pool;
Harald Welted12eab92017-08-02 19:49:47 +0200591 } else {
Harald Weltedda21ed2017-08-12 15:07:02 +0200592 LOGP(DTUN, LOGL_NOTICE, "non-IPv packet received from tun\n");
Harald Welted12eab92017-08-02 19:49:47 +0200593 return -1;
594 }
jjakoc6762cf2004-04-28 14:52:58 +0000595
Harald Weltedda21ed2017-08-12 15:07:02 +0200596 /* IPv6 packet but no IPv6 pool, or IPv4 packet with no IPv4 pool */
597 if (!pool)
598 return 0;
Harald Weltebed35df2011-11-02 13:06:18 +0100599
Harald Weltedda21ed2017-08-12 15:07:02 +0200600 DEBUGP(DTUN, "Received packet from tun!\n");
601
602 if (ippool_getip(pool, &ipm, &dst)) {
603 DEBUGP(DTUN, "Received packet with no PDP contex!!\n");
Harald Weltebed35df2011-11-02 13:06:18 +0100604 return 0;
605 }
606
607 if (ipm->peer) /* Check if a peer protocol is defined */
Harald Weltedda21ed2017-08-12 15:07:02 +0200608 gtp_data_req(apn->ggsn->gsn, (struct pdp_t *)ipm->peer, pack, len);
Harald Weltebed35df2011-11-02 13:06:18 +0100609 return 0;
jjako52c24142002-12-16 13:33:51 +0000610}
611
Harald Welted46bcd22017-08-08 23:27:22 +0200612/* RFC3307 link-local scope multicast address */
613static const struct in6_addr all_router_mcast_addr = {
614 .s6_addr = { 0xff,0x02,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,2 }
615};
616
Harald Weltedda21ed2017-08-12 15:07:02 +0200617/* MS-originated GTP1-U packet, needs to be sent via TUN device */
618static int encaps_tun(struct pdp_t *pdp, void *pack, unsigned len)
Harald Weltebed35df2011-11-02 13:06:18 +0100619{
Harald Welted46bcd22017-08-08 23:27:22 +0200620 struct iphdr *iph = (struct iphdr *)pack;
621 struct ip6_hdr *ip6h = (struct ip6_hdr *)pack;
Harald Weltef85fe972017-09-24 20:00:34 +0800622 struct tun_t *tun = (struct tun_t *)pdp->ipif;
623 struct apn_ctx *apn = tun->priv;
624
625 OSMO_ASSERT(tun);
626 OSMO_ASSERT(apn);
Harald Welted46bcd22017-08-08 23:27:22 +0200627
Harald Weltedda21ed2017-08-12 15:07:02 +0200628 LOGPPDP(LOGL_DEBUG, pdp, "Packet received: forwarding to tun\n");
Harald Welted46bcd22017-08-08 23:27:22 +0200629
630 switch (iph->version) {
631 case 6:
632 /* daddr: all-routers multicast addr */
633 if (IN6_ARE_ADDR_EQUAL(&ip6h->ip6_dst, &all_router_mcast_addr))
Harald Weltef85fe972017-09-24 20:00:34 +0800634 return handle_router_mcast(pdp->gsn, pdp, &apn->v6_lladdr, pack, len);
Harald Welted46bcd22017-08-08 23:27:22 +0200635 break;
636 case 4:
637 break;
638 default:
Harald Weltedda21ed2017-08-12 15:07:02 +0200639 LOGPPDP(LOGL_ERROR, pdp, "Packet from MS is neither IPv4 nor IPv6: %s\n",
640 osmo_hexdump(pack, len));
Harald Welted46bcd22017-08-08 23:27:22 +0200641 return -1;
642 }
Harald Weltebed35df2011-11-02 13:06:18 +0100643 return tun_encaps((struct tun_t *)pdp->ipif, pack, len);
jjako52c24142002-12-16 13:33:51 +0000644}
645
Harald Welte632e8432017-09-05 18:12:14 +0200646static char *config_file = "osmo-ggsn.cfg";
Harald Weltedda21ed2017-08-12 15:07:02 +0200647
648/* callback for tun device osmocom select loop integration */
649static int ggsn_tun_fd_cb(struct osmo_fd *fd, unsigned int what)
650{
651 struct apn_ctx *apn = fd->data;
652
653 OSMO_ASSERT(what & BSC_FD_READ);
654
655 return tun_decaps(apn->tun.tun);
656}
657
658/* callback for libgtp osmocom select loop integration */
659static int ggsn_gtp_fd_cb(struct osmo_fd *fd, unsigned int what)
660{
661 struct ggsn_ctx *ggsn = fd->data;
662 int rc;
663
664 OSMO_ASSERT(what & BSC_FD_READ);
665
666 switch (fd->priv_nr) {
667 case 0:
668 rc = gtp_decaps0(ggsn->gsn);
669 break;
670 case 1:
671 rc = gtp_decaps1c(ggsn->gsn);
672 break;
673 case 2:
674 rc = gtp_decaps1u(ggsn->gsn);
675 break;
676 default:
677 OSMO_ASSERT(0);
678 break;
679 }
680 return rc;
681}
682
683static void ggsn_gtp_tmr_start(struct ggsn_ctx *ggsn)
684{
685 struct timeval next;
686
687 /* Retrieve next retransmission as timeval */
688 gtp_retranstimeout(ggsn->gsn, &next);
689
690 /* re-schedule the timer */
691 osmo_timer_schedule(&ggsn->gtp_timer, next.tv_sec, next.tv_usec/1000);
692}
693
694/* timer callback for libgtp retransmission and ping */
695static void ggsn_gtp_tmr_cb(void *data)
696{
697 struct ggsn_ctx *ggsn = data;
698
699 /* do all the retransmissions as needed */
700 gtp_retrans(ggsn->gsn);
701
702 ggsn_gtp_tmr_start(ggsn);
703}
704
705/* To exit gracefully. Used with GCC compilation flag -pg and gprof */
706static void signal_handler(int s)
707{
708 LOGP(DGGSN, LOGL_NOTICE, "signal %d received\n", s);
709 switch (s) {
710 case SIGINT:
Harald Weltee8049472017-08-20 12:44:21 +0200711 case SIGTERM:
Harald Weltedda21ed2017-08-12 15:07:02 +0200712 LOGP(DGGSN, LOGL_NOTICE, "SIGINT received, shutting down\n");
713 end = 1;
714 break;
715 case SIGABRT:
716 case SIGUSR1:
717 talloc_report(tall_vty_ctx, stderr);
718 talloc_report_full(tall_ggsn_ctx, stderr);
719 break;
720 case SIGUSR2:
721 talloc_report_full(tall_vty_ctx, stderr);
722 break;
723 default:
724 break;
725 }
726}
727
728
729/* Start a given GGSN */
730int ggsn_start(struct ggsn_ctx *ggsn)
731{
732 struct apn_ctx *apn;
733 int rc;
734
735 if (ggsn->started)
736 return 0;
737
738 LOGPGGSN(LOGL_INFO, ggsn, "Starting GGSN\n");
739
740 /* Start libgtp listener */
741 if (gtp_new(&ggsn->gsn, ggsn->cfg.state_dir, &ggsn->cfg.listen_addr.v4, GTP_MODE_GGSN)) {
742 LOGPGGSN(LOGL_ERROR, ggsn, "Failed to create GTP: %s\n", strerror(errno));
743 return -1;
744 }
745 ggsn->gsn->priv = ggsn;
746
Harald Welte98146772017-09-05 17:41:20 +0200747 /* patch in different addresses to use (in case we're behind NAT, the listen
748 * address is different from what we advertise externally) */
749 if (ggsn->cfg.gtpc_addr.v4.s_addr)
750 ggsn->gsn->gsnc = ggsn->cfg.gtpc_addr.v4;
751
752 if (ggsn->cfg.gtpu_addr.v4.s_addr)
753 ggsn->gsn->gsnu = ggsn->cfg.gtpu_addr.v4;
754
Harald Weltedda21ed2017-08-12 15:07:02 +0200755 /* Register File Descriptors */
756 osmo_fd_setup(&ggsn->gtp_fd0, ggsn->gsn->fd0, BSC_FD_READ, ggsn_gtp_fd_cb, ggsn, 0);
757 rc = osmo_fd_register(&ggsn->gtp_fd0);
758 OSMO_ASSERT(rc == 0);
759
760 osmo_fd_setup(&ggsn->gtp_fd1c, ggsn->gsn->fd1c, BSC_FD_READ, ggsn_gtp_fd_cb, ggsn, 1);
761 rc = osmo_fd_register(&ggsn->gtp_fd1c);
762 OSMO_ASSERT(rc == 0);
763
764 osmo_fd_setup(&ggsn->gtp_fd1u, ggsn->gsn->fd1u, BSC_FD_READ, ggsn_gtp_fd_cb, ggsn, 2);
765 rc = osmo_fd_register(&ggsn->gtp_fd1u);
766 OSMO_ASSERT(rc == 0);
767
768 /* Start GTP re-transmission timer */
769 osmo_timer_setup(&ggsn->gtp_timer, ggsn_gtp_tmr_cb, ggsn);
770
771 gtp_set_cb_data_ind(ggsn->gsn, encaps_tun);
772 gtp_set_cb_delete_context(ggsn->gsn, delete_context);
773 gtp_set_cb_create_context_ind(ggsn->gsn, create_context_ind);
774
775 LOGPGGSN(LOGL_NOTICE, ggsn, "Successfully started\n");
776 ggsn->started = true;
777
778 llist_for_each_entry(apn, &ggsn->apn_list, list)
779 apn_start(apn);
780
781 return 0;
782}
783
784/* Stop a given GGSN */
785int ggsn_stop(struct ggsn_ctx *ggsn)
786{
787 struct apn_ctx *apn;
788
789 if (!ggsn->started)
790 return 0;
791
792 /* iterate over all APNs and stop them */
793 llist_for_each_entry(apn, &ggsn->apn_list, list)
794 apn_stop(apn, true);
795
796 osmo_timer_del(&ggsn->gtp_timer);
797
798 osmo_fd_unregister(&ggsn->gtp_fd1u);
799 osmo_fd_unregister(&ggsn->gtp_fd1c);
800 osmo_fd_unregister(&ggsn->gtp_fd0);
801
802 if (ggsn->gsn) {
803 gtp_free(ggsn->gsn);
804 ggsn->gsn = NULL;
805 }
806
807 ggsn->started = false;
808 return 0;
809}
810
811static void print_usage()
812{
813 printf("Usage: osmo-ggsn [-h] [-D] [-c configfile] [-V]\n");
814}
815
816static void print_help()
817{
818 printf( " Some useful help...\n"
819 " -h --help This help text\n"
820 " -D --daemonize Fork the process into a background daemon\n"
821 " -c --config-file filename The config file to use\n"
822 " -V --version Print the version of OsmoGGSN\n"
823 );
824}
825
826static void handle_options(int argc, char **argv)
827{
828 while (1) {
829 int option_index = 0, c;
830 static struct option long_options[] = {
831 { "help", 0, 0, 'h' },
832 { "daemonize", 0, 0, 'D' },
833 { "config-file", 1, 0, 'c' },
834 { "version", 0, 0, 'V' },
835 { 0, 0, 0, 0 }
836 };
837
838 c = getopt_long(argc, argv, "hdc:V", long_options, &option_index);
839 if (c == -1)
840 break;
841
842 switch (c) {
843 case 'h':
844 print_usage();
845 print_help();
846 exit(0);
847 case 'D':
848 daemonize = 1;
849 break;
850 case 'c':
851 config_file = optarg;
852 break;
853 case 'V':
854 print_version(1);
855 exit(0);
856 break;
857 }
858 }
859}
860
jjako52c24142002-12-16 13:33:51 +0000861int main(int argc, char **argv)
862{
Harald Weltedda21ed2017-08-12 15:07:02 +0200863 struct ggsn_ctx *ggsn;
864 int rc;
jjako52c24142002-12-16 13:33:51 +0000865
Harald Welte632e8432017-09-05 18:12:14 +0200866 tall_ggsn_ctx = talloc_named_const(NULL, 0, "OsmoGGSN");
Harald Weltedda21ed2017-08-12 15:07:02 +0200867 msgb_talloc_ctx_init(tall_ggsn_ctx, 0);
jjako52c24142002-12-16 13:33:51 +0000868
Harald Weltee8049472017-08-20 12:44:21 +0200869 /* Handle keyboard interrupt SIGINT */
Harald Weltedda21ed2017-08-12 15:07:02 +0200870 signal(SIGINT, &signal_handler);
Harald Weltee8049472017-08-20 12:44:21 +0200871 signal(SIGTERM, &signal_handler);
Harald Weltedda21ed2017-08-12 15:07:02 +0200872 signal(SIGABRT, &signal_handler);
873 signal(SIGUSR1, &signal_handler);
874 signal(SIGUSR2, &signal_handler);
jjako52c24142002-12-16 13:33:51 +0000875
Harald Weltedda21ed2017-08-12 15:07:02 +0200876 osmo_init_ignore_signals();
Holger Hans Peter Freyther9c7fd8e2014-12-04 16:32:37 +0100877 osmo_init_logging(&log_info);
Harald Weltedda21ed2017-08-12 15:07:02 +0200878 osmo_stats_init(tall_ggsn_ctx);
jjako0141d202004-01-09 15:19:20 +0000879
Harald Weltedda21ed2017-08-12 15:07:02 +0200880 vty_init(&g_vty_info);
881 logging_vty_add_cmds(NULL);
882 osmo_stats_vty_add_cmds(&log_info);
883 ggsn_vty_init();
884 ctrl_vty_init(tall_ggsn_ctx);
885
886 handle_options(argc, argv);
887
888 rate_ctr_init(tall_ggsn_ctx);
889
890 rc = vty_read_config_file(config_file, NULL);
891 if (rc < 0) {
892 fprintf(stderr, "Failed to open config file: '%s'\n", config_file);
893 exit(2);
Harald Weltebed35df2011-11-02 13:06:18 +0100894 }
jjako52c24142002-12-16 13:33:51 +0000895
Harald Weltedda21ed2017-08-12 15:07:02 +0200896 rc = telnet_init_dynif(tall_ggsn_ctx, NULL, vty_get_bind_addr(), OSMO_VTY_PORT_GGSN);
897 if (rc < 0)
Harald Weltebed35df2011-11-02 13:06:18 +0100898 exit(1);
Holger Hans Peter Freyther9c0ff4f2014-03-23 10:07:26 +0100899
Harald Weltedda21ed2017-08-12 15:07:02 +0200900 g_ctrlh = ctrl_interface_setup(NULL, OSMO_CTRL_PORT_GGSN, NULL);
901 if (!g_ctrlh) {
902 LOGP(DGGSN, LOGL_ERROR, "Failed to create CTRL interface.\n");
Harald Weltebed35df2011-11-02 13:06:18 +0100903 exit(1);
904 }
jjako88c22162003-07-06 19:33:18 +0000905
Harald Weltedda21ed2017-08-12 15:07:02 +0200906 if (daemonize) {
907 rc = osmo_daemonize();
908 if (rc < 0) {
909 perror("Error during daemonize");
Harald Weltebed35df2011-11-02 13:06:18 +0100910 exit(1);
911 }
912 }
jjako1d3db972004-01-16 09:56:56 +0000913
Harald Weltedda21ed2017-08-12 15:07:02 +0200914#if 0
Harald Weltebed35df2011-11-02 13:06:18 +0100915 /* qos */
916 qos.l = 3;
917 qos.v[2] = (args_info.qos_arg) & 0xff;
918 qos.v[1] = ((args_info.qos_arg) >> 8) & 0xff;
919 qos.v[0] = ((args_info.qos_arg) >> 16) & 0xff;
Harald Weltedda21ed2017-08-12 15:07:02 +0200920#endif
jjakoa7cd2492003-04-11 09:40:12 +0000921
Harald Weltedda21ed2017-08-12 15:07:02 +0200922 /* Main select loop */
923 while (!end) {
924 osmo_select_main(0);
Harald Weltebed35df2011-11-02 13:06:18 +0100925 }
jjakoe0149782003-07-06 17:07:04 +0000926
Harald Weltedda21ed2017-08-12 15:07:02 +0200927 llist_for_each_entry(ggsn, &g_ggsn_list, list)
928 ggsn_stop(ggsn);
Harald Weltebed35df2011-11-02 13:06:18 +0100929
930 return 1;
jjako52c24142002-12-16 13:33:51 +0000931}