blob: 5eff404adb4669252ac2f3acd3f7442c6070f370 [file] [log] [blame]
Harald Welte9b455bf2010-03-14 15:45:01 +08001/* GPRS SGSN functionality */
2
3/* (C) 2009 by Harald Welte <laforge@gnumonks.org>
4 *
5 * 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 Welte9b455bf2010-03-14 15:45:01 +080010 * (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 Welte9b455bf2010-03-14 15:45:01 +080016 *
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 Welte9b455bf2010-03-14 15:45:01 +080019 *
20 */
21
Harald Welteeaa614c2010-05-02 11:26:34 +020022#include <stdint.h>
Harald Welte9b455bf2010-03-14 15:45:01 +080023
Pablo Neira Ayuso136f4532011-03-22 16:47:59 +010024#include <osmocom/core/linuxlist.h>
25#include <osmocom/core/talloc.h>
26#include <osmocom/core/timer.h>
27#include <osmocom/core/rate_ctr.h>
Jacob Erlbeck46caed82015-11-02 15:15:38 +010028#include <osmocom/core/stats.h>
Harald Weltefdf453c2012-07-14 12:15:19 +020029#include <osmocom/core/backtrace.h>
Harald Welteea34a4e2012-06-16 14:59:56 +080030#include <osmocom/gprs/gprs_ns.h>
31#include <osmocom/gprs/gprs_bssgp.h>
Harald Welte53373bc2016-04-20 17:11:43 +020032#include <osmocom/gsm/protocol/gsm_04_08_gprs.h>
Harald Welte7e82b742017-08-12 13:43:54 +020033#include <osmocom/gsm/apn.h>
Neels Hofmeyree6cfdc2017-07-13 02:03:50 +020034#include <osmocom/gsm/gsm_utils.h>
Harald Welteea34a4e2012-06-16 14:59:56 +080035
Neels Hofmeyr396f2e62017-09-04 15:13:25 +020036#include <osmocom/sgsn/gprs_subscriber.h>
37#include <osmocom/sgsn/debug.h>
38#include <osmocom/sgsn/gprs_sgsn.h>
39#include <osmocom/sgsn/sgsn.h>
40#include <osmocom/sgsn/gprs_gmm.h>
41#include <osmocom/sgsn/gprs_utils.h>
42#include <osmocom/sgsn/signal.h>
43#include <osmocom/sgsn/gprs_llc.h>
Harald Welteab1d5622010-05-18 19:58:38 +020044
Neels Hofmeyrf4daf162016-05-21 00:44:50 +020045#include <pdp.h>
46
Jacob Erlbeck81ffb742015-01-23 11:33:51 +010047#include <time.h>
48
Daniel Willmann044ce5f2015-10-12 19:36:33 +020049#include <openssl/rand.h>
50
Neels Hofmeyra7a39472017-07-05 15:19:52 +020051#include "../../bscconfig.h"
52
53#if BUILD_IU
54#include <osmocom/ranap/iu_client.h>
55#endif
56
Jacob Erlbeck81ffb742015-01-23 11:33:51 +010057#define GPRS_LLME_CHECK_TICK 30
58
Harald Welteab1d5622010-05-18 19:58:38 +020059extern struct sgsn_instance *sgsn;
Neels Hofmeyree6cfdc2017-07-13 02:03:50 +020060extern void *tall_bsc_ctx;
Harald Welte9b455bf2010-03-14 15:45:01 +080061
Harald Welted193cb32010-05-17 22:58:03 +020062LLIST_HEAD(sgsn_mm_ctxts);
63LLIST_HEAD(sgsn_ggsn_ctxts);
64LLIST_HEAD(sgsn_apn_ctxts);
65LLIST_HEAD(sgsn_pdp_ctxts);
Harald Welte9b455bf2010-03-14 15:45:01 +080066
Harald Welte8acd88f2010-05-18 10:57:45 +020067static const struct rate_ctr_desc mmctx_ctr_description[] = {
68 { "sign.packets.in", "Signalling Messages ( In)" },
69 { "sign.packets.out", "Signalling Messages (Out)" },
70 { "udata.packets.in", "User Data Messages ( In)" },
71 { "udata.packets.out", "User Data Messages (Out)" },
72 { "udata.bytes.in", "User Data Bytes ( In)" },
73 { "udata.bytes.out", "User Data Bytes (Out)" },
74 { "pdp_ctx_act", "PDP Context Activations " },
75 { "suspend", "SUSPEND Count " },
76 { "paging.ps", "Paging Packet Switched " },
77 { "paging.cs", "Paging Circuit Switched " },
78 { "ra_update", "Routing Area Update " },
79};
80
81static const struct rate_ctr_group_desc mmctx_ctrg_desc = {
82 .group_name_prefix = "sgsn.mmctx",
83 .group_description = "SGSN MM Context Statistics",
84 .num_ctr = ARRAY_SIZE(mmctx_ctr_description),
85 .ctr_desc = mmctx_ctr_description,
Jacob Erlbeck46caed82015-11-02 15:15:38 +010086 .class_id = OSMO_STATS_CLASS_SUBSCRIBER,
Harald Welte8acd88f2010-05-18 10:57:45 +020087};
88
Harald Welteefbdee92010-06-10 00:20:12 +020089static const struct rate_ctr_desc pdpctx_ctr_description[] = {
90 { "udata.packets.in", "User Data Messages ( In)" },
91 { "udata.packets.out", "User Data Messages (Out)" },
92 { "udata.bytes.in", "User Data Bytes ( In)" },
93 { "udata.bytes.out", "User Data Bytes (Out)" },
94};
95
96static const struct rate_ctr_group_desc pdpctx_ctrg_desc = {
97 .group_name_prefix = "sgsn.pdpctx",
98 .group_description = "SGSN PDP Context Statistics",
99 .num_ctr = ARRAY_SIZE(pdpctx_ctr_description),
100 .ctr_desc = pdpctx_ctr_description,
Jacob Erlbeck46caed82015-11-02 15:15:38 +0100101 .class_id = OSMO_STATS_CLASS_SUBSCRIBER,
Harald Welteefbdee92010-06-10 00:20:12 +0200102};
103
Alexander Couzens14314bd2016-07-05 09:52:52 +0200104static const struct rate_ctr_desc sgsn_ctr_description[] = {
Harald Welteb68413b2017-11-21 08:51:47 +0100105 { "llc:dl_bytes", "Count sent LLC bytes before giving it to the bssgp layer" },
106 { "llc:ul_bytes", "Count sucessful received LLC bytes (encrypt & fcs correct)" },
107 { "llc:dl_packets", "Count sucessful sent LLC packets before giving it to the bssgp layer" },
108 { "llc:ul_packets", "Count sucessful received LLC packets (encrypt & fcs correct)" },
109 { "gprs:attach_requested", "Received attach requests" },
110 { "gprs:attach_accepted", "Sent attach accepts" },
111 { "gprs:attach_rejected", "Sent attach rejects" },
112 { "gprs:detach_requested", "Received detach requests" },
113 { "gprs:detach_acked", "Sent detach acks" },
114 { "gprs:routing_area_requested", "Received routing area requests" },
115 { "gprs:routing_area_requested", "Sent routing area acks" },
116 { "gprs:routing_area_requested", "Sent routing area rejects" },
117 { "pdp:activate_requested", "Received activate requests" },
118 { "pdp:activate_rejected", "Sent activate rejects" },
119 { "pdp:activate_accepted", "Sent activate accepts" },
120 { "pdp:request_activated", "unused" },
121 { "pdp:request_activate_rejected", "unused" },
122 { "pdp:modify_requested", "unused" },
123 { "pdp:modify_accepted", "unused" },
124 { "pdp:dl_deactivate_requested", "Sent deactivate requests" },
125 { "pdp:dl_deactivate_accepted", "Sent deactivate accepted" },
126 { "pdp:ul_deactivate_requested", "Received deactivate requests" },
127 { "pdp:ul_deactivate_accepted", "Received deactivate accepts" },
Alexander Couzens14314bd2016-07-05 09:52:52 +0200128};
129
130static const struct rate_ctr_group_desc sgsn_ctrg_desc = {
131 "sgsn",
132 "SGSN Overall Statistics",
133 OSMO_STATS_CLASS_GLOBAL,
134 ARRAY_SIZE(sgsn_ctr_description),
135 sgsn_ctr_description,
136};
137
138void sgsn_rate_ctr_init() {
139 sgsn->rate_ctrs = rate_ctr_group_alloc(tall_bsc_ctx, &sgsn_ctrg_desc, 0);
Harald Welte26c14652017-07-12 00:25:51 +0200140 OSMO_ASSERT(sgsn->rate_ctrs);
Alexander Couzens14314bd2016-07-05 09:52:52 +0200141}
142
Daniel Willmann6292c8d2016-05-21 17:35:57 +0200143/* look-up an SGSN MM context based on Iu UE context (struct ue_conn_ctx)*/
144struct sgsn_mm_ctx *sgsn_mm_ctx_by_ue_ctx(const void *uectx)
145{
146 struct sgsn_mm_ctx *ctx;
147
148 llist_for_each_entry(ctx, &sgsn_mm_ctxts, list) {
149 if (ctx->ran_type == MM_CTX_T_UTRAN_Iu
150 && uectx == ctx->iu.ue_ctx)
151 return ctx;
152 }
153
154 return NULL;
155}
156
Harald Welte9b455bf2010-03-14 15:45:01 +0800157/* look-up a SGSN MM context based on TLLI + RAI */
Harald Welteeaa614c2010-05-02 11:26:34 +0200158struct sgsn_mm_ctx *sgsn_mm_ctx_by_tlli(uint32_t tlli,
Harald Welte9b455bf2010-03-14 15:45:01 +0800159 const struct gprs_ra_id *raid)
160{
161 struct sgsn_mm_ctx *ctx;
162
163 llist_for_each_entry(ctx, &sgsn_mm_ctxts, list) {
Harald Weltef97ee042015-12-25 19:12:21 +0100164 if ((tlli == ctx->gb.tlli || tlli == ctx->gb.tlli_new) &&
Jacob Erlbecke7bcdc32016-01-04 18:43:34 +0100165 gprs_ra_id_equals(raid, &ctx->ra))
Harald Welte9b455bf2010-03-14 15:45:01 +0800166 return ctx;
167 }
Harald Welteab1d5622010-05-18 19:58:38 +0200168
Harald Welte9b455bf2010-03-14 15:45:01 +0800169 return NULL;
170}
171
Jacob Erlbeck5ac4aad2016-01-04 18:43:38 +0100172struct sgsn_mm_ctx *sgsn_mm_ctx_by_tlli_and_ptmsi(uint32_t tlli,
173 const struct gprs_ra_id *raid)
174{
175 struct sgsn_mm_ctx *ctx;
176 int tlli_type;
177
178 /* TODO: Also check the P_TMSI signature to be safe. That signature
179 * should be different (at least with a sufficiently high probability)
180 * after SGSN restarts and for multiple SGSN instances.
181 */
182
183 tlli_type = gprs_tlli_type(tlli);
184 if (tlli_type != TLLI_FOREIGN && tlli_type != TLLI_LOCAL)
185 return NULL;
186
187 llist_for_each_entry(ctx, &sgsn_mm_ctxts, list) {
188 if ((gprs_tmsi2tlli(ctx->p_tmsi, tlli_type) == tlli ||
189 gprs_tmsi2tlli(ctx->p_tmsi_old, tlli_type) == tlli) &&
190 gprs_ra_id_equals(raid, &ctx->ra))
191 return ctx;
192 }
193
194 return NULL;
195}
196
Harald Welteeaa614c2010-05-02 11:26:34 +0200197struct sgsn_mm_ctx *sgsn_mm_ctx_by_ptmsi(uint32_t p_tmsi)
Harald Welte9b455bf2010-03-14 15:45:01 +0800198{
199 struct sgsn_mm_ctx *ctx;
200
201 llist_for_each_entry(ctx, &sgsn_mm_ctxts, list) {
Harald Weltec2e8cc42010-05-31 20:23:38 +0200202 if (p_tmsi == ctx->p_tmsi ||
203 (ctx->p_tmsi_old && ctx->p_tmsi_old == p_tmsi))
Harald Welte9b455bf2010-03-14 15:45:01 +0800204 return ctx;
205 }
206 return NULL;
207}
208
209struct sgsn_mm_ctx *sgsn_mm_ctx_by_imsi(const char *imsi)
210{
211 struct sgsn_mm_ctx *ctx;
212
213 llist_for_each_entry(ctx, &sgsn_mm_ctxts, list) {
214 if (!strcmp(imsi, ctx->imsi))
215 return ctx;
216 }
217 return NULL;
218
219}
220
Alexander Couzens2b5fb8e2017-02-04 06:01:00 +0100221/* Allocate a new SGSN MM context for GERAN_Gb */
222struct sgsn_mm_ctx *sgsn_mm_ctx_alloc_gb(uint32_t tlli,
Harald Welte9b455bf2010-03-14 15:45:01 +0800223 const struct gprs_ra_id *raid)
224{
Harald Welte2720e732010-05-17 00:44:57 +0200225 struct sgsn_mm_ctx *ctx;
Harald Welte9b455bf2010-03-14 15:45:01 +0800226
Harald Welte2720e732010-05-17 00:44:57 +0200227 ctx = talloc_zero(tall_bsc_ctx, struct sgsn_mm_ctx);
Harald Welte9b455bf2010-03-14 15:45:01 +0800228 if (!ctx)
229 return NULL;
230
231 memcpy(&ctx->ra, raid, sizeof(ctx->ra));
Harald Weltef97ee042015-12-25 19:12:21 +0100232 ctx->ran_type = MM_CTX_T_GERAN_Gb;
233 ctx->gb.tlli = tlli;
Alexander Couzens4f8da6d2017-01-31 15:34:26 +0100234 ctx->gmm_state = GMM_DEREGISTERED;
Alexander Couzens10135502017-02-04 05:53:07 +0100235 ctx->pmm_state = MM_IDLE;
Jacob Erlbeckbd0cf112014-12-01 12:33:33 +0100236 ctx->auth_triplet.key_seq = GSM_KEY_SEQ_INVAL;
Maxb997f842016-07-06 15:57:01 +0200237 ctx->ciph_algo = sgsn->cfg.cipher;
Max549ebc72016-11-18 14:07:04 +0100238 LOGMMCTXP(LOGL_DEBUG, ctx, "Allocated with %s cipher.\n",
239 get_value_string(gprs_cipher_names, ctx->ciph_algo));
Harald Welte8acd88f2010-05-18 10:57:45 +0200240 ctx->ctrg = rate_ctr_group_alloc(ctx, &mmctx_ctrg_desc, tlli);
Harald Welte26c14652017-07-12 00:25:51 +0200241 if (!ctx->ctrg) {
242 LOGMMCTXP(LOGL_ERROR, ctx, "Cannot allocate counter group\n");
243 talloc_free(ctx);
244 return NULL;
245 }
Harald Welte6ffbaab2010-05-18 12:44:45 +0200246 INIT_LLIST_HEAD(&ctx->pdp_list);
Harald Welte9b455bf2010-03-14 15:45:01 +0800247
248 llist_add(&ctx->list, &sgsn_mm_ctxts);
249
250 return ctx;
251}
Harald Welted193cb32010-05-17 22:58:03 +0200252
Daniel Willmann6292c8d2016-05-21 17:35:57 +0200253/* Allocate a new SGSN MM context */
254struct sgsn_mm_ctx *sgsn_mm_ctx_alloc_iu(void *uectx)
255{
Neels Hofmeyra7a39472017-07-05 15:19:52 +0200256#if BUILD_IU
Daniel Willmann6292c8d2016-05-21 17:35:57 +0200257 struct sgsn_mm_ctx *ctx;
258
259 ctx = talloc_zero(tall_bsc_ctx, struct sgsn_mm_ctx);
260 if (!ctx)
261 return NULL;
262
263 ctx->ran_type = MM_CTX_T_UTRAN_Iu;
264 ctx->iu.ue_ctx = uectx;
Neels Hofmeyr2188a772016-05-20 21:59:55 +0200265 ctx->iu.ue_ctx->rab_assign_addr_enc = sgsn->cfg.iu.rab_assign_addr_enc;
Daniel Willmann3ecfbbb2016-05-21 00:16:55 +0200266 ctx->iu.new_key = 1;
Alexander Couzens4f8da6d2017-01-31 15:34:26 +0100267 ctx->gmm_state = GMM_DEREGISTERED;
Daniel Willmann5b2363e2016-05-21 00:01:21 +0200268 ctx->pmm_state = PMM_DETACHED;
Daniel Willmann6292c8d2016-05-21 17:35:57 +0200269 ctx->auth_triplet.key_seq = GSM_KEY_SEQ_INVAL;
270 ctx->ctrg = rate_ctr_group_alloc(ctx, &mmctx_ctrg_desc, 0);
Harald Welte26c14652017-07-12 00:25:51 +0200271 if (!ctx->ctrg) {
272 LOGMMCTXP(LOGL_ERROR, ctx, "Cannot allocate counter group\n");
273 talloc_free(ctx);
274 return NULL;
275 }
Daniel Willmann6292c8d2016-05-21 17:35:57 +0200276
277 /* Need to get RAID from IU conn */
278 ctx->ra = ctx->iu.ue_ctx->ra_id;
279
280 INIT_LLIST_HEAD(&ctx->pdp_list);
281
282 llist_add(&ctx->list, &sgsn_mm_ctxts);
283
284 return ctx;
Neels Hofmeyra7a39472017-07-05 15:19:52 +0200285#else
286 return NULL;
287#endif
Daniel Willmann6292c8d2016-05-21 17:35:57 +0200288}
289
290
Harald Welte7b022ee2012-07-14 12:04:04 +0200291/* this is a hard _free_ function, it doesn't clean up the PDP contexts
292 * in libgtp! */
Holger Hans Peter Freytherb448dd82015-05-03 11:46:58 +0200293static void sgsn_mm_ctx_free(struct sgsn_mm_ctx *mm)
Harald Weltec728eea2010-12-24 23:07:18 +0100294{
295 struct sgsn_pdp_ctx *pdp, *pdp2;
296
Jacob Erlbecke671d252015-01-26 14:43:07 +0100297 /* Unlink from global list of MM contexts */
298 llist_del(&mm->list);
299
300 /* Free all PDP contexts */
301 llist_for_each_entry_safe(pdp, pdp2, &mm->pdp_list, list)
302 sgsn_pdp_ctx_free(pdp);
303
304 rate_ctr_group_free(mm->ctrg);
305
306 talloc_free(mm);
307}
308
309void sgsn_mm_ctx_cleanup_free(struct sgsn_mm_ctx *mm)
310{
Daniel Willmann7ec8ca42016-05-21 00:48:49 +0200311 struct gprs_llc_llme *llme = NULL;
Harald Weltef97ee042015-12-25 19:12:21 +0100312 uint32_t tlli = mm->gb.tlli;
Jacob Erlbecke671d252015-01-26 14:43:07 +0100313 struct sgsn_pdp_ctx *pdp, *pdp2;
Holger Hans Peter Freytherb1008952015-05-02 19:55:38 +0200314 struct sgsn_signal_data sig_data;
Jacob Erlbecke671d252015-01-26 14:43:07 +0100315
Daniel Willmann7ec8ca42016-05-21 00:48:49 +0200316 if (mm->ran_type == MM_CTX_T_GERAN_Gb)
317 llme = mm->gb.llme;
318 else
319 OSMO_ASSERT(mm->gb.llme == NULL);
320
Holger Hans Peter Freyther39c430e2015-05-25 12:26:49 +0800321 /* Forget about ongoing look-ups */
322 if (mm->ggsn_lookup) {
323 LOGMMCTXP(LOGL_NOTICE, mm,
324 "Cleaning mmctx with on-going query.\n");
325 mm->ggsn_lookup->mmctx = NULL;
326 mm->ggsn_lookup = NULL;
327 }
328
Jacob Erlbecke671d252015-01-26 14:43:07 +0100329 /* delete all existing PDP contexts for this MS */
330 llist_for_each_entry_safe(pdp, pdp2, &mm->pdp_list, list) {
331 LOGMMCTXP(LOGL_NOTICE, mm,
332 "Dropping PDP context for NSAPI=%u\n", pdp->nsapi);
333 sgsn_pdp_ctx_terminate(pdp);
334 }
335
Jacob Erlbeckae20b4b2014-10-20 16:05:55 +0200336 if (osmo_timer_pending(&mm->timer)) {
337 LOGMMCTXP(LOGL_INFO, mm, "Cancelling MM timer %u\n", mm->T);
338 osmo_timer_del(&mm->timer);
339 }
340
Holger Hans Peter Freytherb1008952015-05-02 19:55:38 +0200341 memset(&sig_data, 0, sizeof(sig_data));
342 sig_data.mm = mm;
343 osmo_signal_dispatch(SS_SGSN, S_SGSN_MM_FREE, &sig_data);
344
345
Jacob Erlbeckbe2c8d92014-11-12 10:18:09 +0100346 /* Detach from subscriber which is possibly freed then */
347 if (mm->subscr) {
Neels Hofmeyr0e5d8072017-01-10 00:49:56 +0100348 struct gprs_subscr *subscr = gprs_subscr_get(mm->subscr);
Jacob Erlbeck3e4e58f2015-01-26 11:07:24 +0100349 gprs_subscr_cleanup(subscr);
Neels Hofmeyr0e5d8072017-01-10 00:49:56 +0100350 gprs_subscr_put(subscr);
Jacob Erlbeckbe2c8d92014-11-12 10:18:09 +0100351 }
352
Jacob Erlbecke671d252015-01-26 14:43:07 +0100353 sgsn_mm_ctx_free(mm);
354 mm = NULL;
Harald Weltec728eea2010-12-24 23:07:18 +0100355
Daniel Willmann7ec8ca42016-05-21 00:48:49 +0200356 if (llme) {
357 /* TLLI unassignment, must be called after sgsn_mm_ctx_free */
Max5aa51962016-07-06 11:33:04 +0200358 gprs_llgmm_assign(llme, tlli, 0xffffffff);
Daniel Willmann7ec8ca42016-05-21 00:48:49 +0200359 }
Harald Weltec728eea2010-12-24 23:07:18 +0100360}
Harald Welte77289c22010-05-18 14:32:29 +0200361
Jacob Erlbecke671d252015-01-26 14:43:07 +0100362
Harald Welte96df6062010-06-03 06:37:26 +0200363/* look up PDP context by MM context and NSAPI */
Harald Welted193cb32010-05-17 22:58:03 +0200364struct sgsn_pdp_ctx *sgsn_pdp_ctx_by_nsapi(const struct sgsn_mm_ctx *mm,
365 uint8_t nsapi)
366{
367 struct sgsn_pdp_ctx *pdp;
368
369 llist_for_each_entry(pdp, &mm->pdp_list, list) {
370 if (pdp->nsapi == nsapi)
371 return pdp;
372 }
373 return NULL;
374}
375
Harald Welte96df6062010-06-03 06:37:26 +0200376/* look up PDP context by MM context and transaction ID */
Harald Welte77289c22010-05-18 14:32:29 +0200377struct sgsn_pdp_ctx *sgsn_pdp_ctx_by_tid(const struct sgsn_mm_ctx *mm,
378 uint8_t tid)
379{
380 struct sgsn_pdp_ctx *pdp;
381
382 llist_for_each_entry(pdp, &mm->pdp_list, list) {
383 if (pdp->ti == tid)
384 return pdp;
385 }
386 return NULL;
387}
388
Harald Welte7b022ee2012-07-14 12:04:04 +0200389/* you don't want to use this directly, call sgsn_create_pdp_ctx() */
Harald Welted193cb32010-05-17 22:58:03 +0200390struct sgsn_pdp_ctx *sgsn_pdp_ctx_alloc(struct sgsn_mm_ctx *mm,
391 uint8_t nsapi)
392{
393 struct sgsn_pdp_ctx *pdp;
394
395 pdp = sgsn_pdp_ctx_by_nsapi(mm, nsapi);
396 if (pdp)
397 return NULL;
398
399 pdp = talloc_zero(tall_bsc_ctx, struct sgsn_pdp_ctx);
400 if (!pdp)
401 return NULL;
402
403 pdp->mm = mm;
404 pdp->nsapi = nsapi;
Harald Welteefbdee92010-06-10 00:20:12 +0200405 pdp->ctrg = rate_ctr_group_alloc(pdp, &pdpctx_ctrg_desc, nsapi);
Harald Welte26c14652017-07-12 00:25:51 +0200406 if (!pdp->ctrg) {
407 LOGPDPCTXP(LOGL_ERROR, pdp, "Error allocation counter group\n");
408 talloc_free(pdp);
409 return NULL;
410 }
Harald Welted193cb32010-05-17 22:58:03 +0200411 llist_add(&pdp->list, &mm->pdp_list);
412 llist_add(&pdp->g_list, &sgsn_pdp_ctxts);
413
414 return pdp;
415}
416
Jacob Erlbeck99985b52014-10-13 10:32:00 +0200417/*
418 * This function will not trigger any GSM DEACT PDP ACK messages, so you
419 * probably want to call sgsn_delete_pdp_ctx() instead if the connection
420 * isn't detached already.
421 */
422void sgsn_pdp_ctx_terminate(struct sgsn_pdp_ctx *pdp)
423{
Holger Hans Peter Freytherb1008952015-05-02 19:55:38 +0200424 struct sgsn_signal_data sig_data;
425
Jacob Erlbeck99985b52014-10-13 10:32:00 +0200426 OSMO_ASSERT(pdp->mm != NULL);
427
428 /* There might still be pending callbacks in libgtp. So the parts of
429 * this object relevant to GTP need to remain intact in this case. */
430
431 LOGPDPCTXP(LOGL_INFO, pdp, "Forcing release of PDP context\n");
432
Daniel Willmannf9f43872016-05-20 22:36:23 +0200433 if (pdp->mm->ran_type == MM_CTX_T_GERAN_Gb) {
434 /* Force the deactivation of the SNDCP layer */
435 sndcp_sm_deactivate_ind(&pdp->mm->gb.llme->lle[pdp->sapi], pdp->nsapi);
436 }
Jacob Erlbeck99985b52014-10-13 10:32:00 +0200437
Holger Hans Peter Freytherb1008952015-05-02 19:55:38 +0200438 memset(&sig_data, 0, sizeof(sig_data));
439 sig_data.pdp = pdp;
440 osmo_signal_dispatch(SS_SGSN, S_SGSN_PDP_TERMINATE, &sig_data);
441
Jacob Erlbeck99985b52014-10-13 10:32:00 +0200442 /* Detach from MM context */
443 llist_del(&pdp->list);
444 pdp->mm = NULL;
445
446 sgsn_delete_pdp_ctx(pdp);
447}
448
449/*
450 * Don't call this function directly unless you know what you are doing.
451 * In normal conditions use sgsn_delete_pdp_ctx and in unspecified or
452 * implementation dependent abnormal ones sgsn_pdp_ctx_terminate.
453 */
Harald Welted193cb32010-05-17 22:58:03 +0200454void sgsn_pdp_ctx_free(struct sgsn_pdp_ctx *pdp)
455{
Holger Hans Peter Freytherb1008952015-05-02 19:55:38 +0200456 struct sgsn_signal_data sig_data;
457
458 memset(&sig_data, 0, sizeof(sig_data));
459 sig_data.pdp = pdp;
460 osmo_signal_dispatch(SS_SGSN, S_SGSN_PDP_FREE, &sig_data);
461
Harald Welte376d5e52010-06-28 18:57:21 +0200462 rate_ctr_group_free(pdp->ctrg);
Jacob Erlbeck99985b52014-10-13 10:32:00 +0200463 if (pdp->mm)
464 llist_del(&pdp->list);
Harald Welted193cb32010-05-17 22:58:03 +0200465 llist_del(&pdp->g_list);
Harald Weltefdf453c2012-07-14 12:15:19 +0200466
467 /* _if_ we still have a library handle, at least set it to NULL
468 * to avoid any dereferences of the now-deleted PDP context from
469 * sgsn_libgtp:cb_data_ind() */
470 if (pdp->lib) {
471 struct pdp_t *lib = pdp->lib;
Daniel Willmann46553142014-09-03 17:46:44 +0200472 LOGPDPCTXP(LOGL_NOTICE, pdp, "freeing PDP context that still "
Harald Weltefdf453c2012-07-14 12:15:19 +0200473 "has a libgtp handle attached to it, this shouldn't "
474 "happen!\n");
475 osmo_generate_backtrace();
476 lib->priv = NULL;
477 }
478
Holger Hans Peter Freyther39c430e2015-05-25 12:26:49 +0800479 if (pdp->destroy_ggsn)
480 sgsn_ggsn_ctx_free(pdp->ggsn);
Harald Welted193cb32010-05-17 22:58:03 +0200481 talloc_free(pdp);
482}
483
484/* GGSN contexts */
485
Harald Welte77289c22010-05-18 14:32:29 +0200486struct sgsn_ggsn_ctx *sgsn_ggsn_ctx_alloc(uint32_t id)
Harald Welted193cb32010-05-17 22:58:03 +0200487{
Harald Welte77289c22010-05-18 14:32:29 +0200488 struct sgsn_ggsn_ctx *ggc;
Harald Welted193cb32010-05-17 22:58:03 +0200489
Harald Welte77289c22010-05-18 14:32:29 +0200490 ggc = talloc_zero(tall_bsc_ctx, struct sgsn_ggsn_ctx);
Harald Welted193cb32010-05-17 22:58:03 +0200491 if (!ggc)
492 return NULL;
493
494 ggc->id = id;
495 ggc->gtp_version = 1;
Harald Weltea9b473a2010-12-24 21:13:26 +0100496 ggc->remote_restart_ctr = -1;
Harald Welteab1d5622010-05-18 19:58:38 +0200497 /* if we are called from config file parse, this gsn doesn't exist yet */
498 ggc->gsn = sgsn->gsn;
Harald Welte119c2ba2010-05-18 18:39:00 +0200499 llist_add(&ggc->list, &sgsn_ggsn_ctxts);
Harald Welted193cb32010-05-17 22:58:03 +0200500
501 return ggc;
502}
503
Jacob Erlbeckf3456122015-02-03 19:53:15 +0100504void sgsn_ggsn_ctx_free(struct sgsn_ggsn_ctx *ggc)
505{
506 llist_del(&ggc->list);
507 talloc_free(ggc);
508}
509
Harald Welte77289c22010-05-18 14:32:29 +0200510struct sgsn_ggsn_ctx *sgsn_ggsn_ctx_by_id(uint32_t id)
Harald Welted193cb32010-05-17 22:58:03 +0200511{
Harald Welte77289c22010-05-18 14:32:29 +0200512 struct sgsn_ggsn_ctx *ggc;
Harald Welted193cb32010-05-17 22:58:03 +0200513
514 llist_for_each_entry(ggc, &sgsn_ggsn_ctxts, list) {
515 if (id == ggc->id)
516 return ggc;
517 }
518 return NULL;
519}
520
Harald Weltea9b473a2010-12-24 21:13:26 +0100521struct sgsn_ggsn_ctx *sgsn_ggsn_ctx_by_addr(struct in_addr *addr)
522{
523 struct sgsn_ggsn_ctx *ggc;
524
525 llist_for_each_entry(ggc, &sgsn_ggsn_ctxts, list) {
526 if (!memcmp(addr, &ggc->remote_addr, sizeof(*addr)))
527 return ggc;
528 }
529 return NULL;
530}
531
532
Harald Welte77289c22010-05-18 14:32:29 +0200533struct sgsn_ggsn_ctx *sgsn_ggsn_ctx_find_alloc(uint32_t id)
Harald Welted193cb32010-05-17 22:58:03 +0200534{
Harald Welte77289c22010-05-18 14:32:29 +0200535 struct sgsn_ggsn_ctx *ggc;
Harald Welted193cb32010-05-17 22:58:03 +0200536
Harald Welte77289c22010-05-18 14:32:29 +0200537 ggc = sgsn_ggsn_ctx_by_id(id);
Harald Welted193cb32010-05-17 22:58:03 +0200538 if (!ggc)
Harald Welte77289c22010-05-18 14:32:29 +0200539 ggc = sgsn_ggsn_ctx_alloc(id);
Harald Welted193cb32010-05-17 22:58:03 +0200540 return ggc;
541}
542
543/* APN contexts */
544
Jacob Erlbeckcb1db8b2015-02-03 13:47:53 +0100545static struct apn_ctx *sgsn_apn_ctx_alloc(const char *ap_name, const char *imsi_prefix)
Harald Welted193cb32010-05-17 22:58:03 +0200546{
547 struct apn_ctx *actx;
548
Jacob Erlbeckcb1db8b2015-02-03 13:47:53 +0100549 actx = talloc_zero(tall_bsc_ctx, struct apn_ctx);
Harald Welted193cb32010-05-17 22:58:03 +0200550 if (!actx)
551 return NULL;
552 actx->name = talloc_strdup(actx, ap_name);
Jacob Erlbeckcb1db8b2015-02-03 13:47:53 +0100553 actx->imsi_prefix = talloc_strdup(actx, imsi_prefix);
554
555 llist_add_tail(&actx->list, &sgsn_apn_ctxts);
Harald Welted193cb32010-05-17 22:58:03 +0200556
557 return actx;
558}
559
Jacob Erlbeckcb1db8b2015-02-03 13:47:53 +0100560void sgsn_apn_ctx_free(struct apn_ctx *actx)
561{
562 llist_del(&actx->list);
563 talloc_free(actx);
564}
565
566struct apn_ctx *sgsn_apn_ctx_match(const char *name, const char *imsi)
567{
568 struct apn_ctx *actx;
569 struct apn_ctx *found_actx = NULL;
570 size_t imsi_prio = 0;
571 size_t name_prio = 0;
572 size_t name_req_len = strlen(name);
573
574 llist_for_each_entry(actx, &sgsn_apn_ctxts, list) {
575 size_t name_ref_len, imsi_ref_len;
576 const char *name_ref_start, *name_match_start;
577
578 imsi_ref_len = strlen(actx->imsi_prefix);
579 if (strncmp(actx->imsi_prefix, imsi, imsi_ref_len) != 0)
580 continue;
581
582 if (imsi_ref_len < imsi_prio)
583 continue;
584
585 /* IMSI matches */
586
587 name_ref_start = &actx->name[0];
588 if (name_ref_start[0] == '*') {
589 /* Suffix match */
590 name_ref_start += 1;
591 name_ref_len = strlen(name_ref_start);
592 if (name_ref_len > name_req_len)
593 continue;
594 } else {
595 name_ref_len = strlen(name_ref_start);
596 if (name_ref_len != name_req_len)
597 continue;
598 }
599
600 name_match_start = name + (name_req_len - name_ref_len);
601 if (strcasecmp(name_match_start, name_ref_start) != 0)
602 continue;
603
604 /* IMSI and name match */
605
606 if (imsi_ref_len == imsi_prio && name_ref_len < name_prio)
607 /* Lower priority, skip */
608 continue;
609
610 imsi_prio = imsi_ref_len;
611 name_prio = name_ref_len;
612 found_actx = actx;
613 }
614 return found_actx;
615}
616
617struct apn_ctx *sgsn_apn_ctx_by_name(const char *name, const char *imsi_prefix)
Harald Welted193cb32010-05-17 22:58:03 +0200618{
619 struct apn_ctx *actx;
620
621 llist_for_each_entry(actx, &sgsn_apn_ctxts, list) {
Jacob Erlbeckcb1db8b2015-02-03 13:47:53 +0100622 if (strcasecmp(name, actx->name) == 0 &&
623 strcasecmp(imsi_prefix, actx->imsi_prefix) == 0)
Harald Welted193cb32010-05-17 22:58:03 +0200624 return actx;
625 }
626 return NULL;
627}
628
Jacob Erlbeckcb1db8b2015-02-03 13:47:53 +0100629struct apn_ctx *sgsn_apn_ctx_find_alloc(const char *name, const char *imsi_prefix)
Harald Welted193cb32010-05-17 22:58:03 +0200630{
631 struct apn_ctx *actx;
632
Jacob Erlbeckcb1db8b2015-02-03 13:47:53 +0100633 actx = sgsn_apn_ctx_by_name(name, imsi_prefix);
Harald Welted193cb32010-05-17 22:58:03 +0200634 if (!actx)
Jacob Erlbeckcb1db8b2015-02-03 13:47:53 +0100635 actx = sgsn_apn_ctx_alloc(name, imsi_prefix);
Harald Welted193cb32010-05-17 22:58:03 +0200636
637 return actx;
638}
Harald Welte6463c072010-05-18 17:04:55 +0200639
640uint32_t sgsn_alloc_ptmsi(void)
641{
642 struct sgsn_mm_ctx *mm;
Alexander Couzens8a215c32017-02-03 23:22:18 +0100643 uint32_t ptmsi = 0xdeadbeef;
Jacob Erlbeckd8a65532015-01-15 18:51:31 +0100644 int max_retries = 100;
Harald Welte6463c072010-05-18 17:04:55 +0200645
646restart:
Daniel Willmann044ce5f2015-10-12 19:36:33 +0200647 if (RAND_bytes((uint8_t *) &ptmsi, sizeof(ptmsi)) != 1)
648 goto failed;
649
Jacob Erlbeckd8a65532015-01-15 18:51:31 +0100650 /* Enforce that the 2 MSB are set without loosing the distance between
651 * identical values. Since rand() has no duplicate values within a
652 * period (because the size of the state is the same like the size of
653 * the random value), this leads to a distance of period/4 when the
654 * distribution of the 2 MSB is uniform. This approach fails with a
655 * probability of (3/4)^max_retries, only 1% of the approaches will
656 * need more than 16 numbers (even distribution assumed).
657 *
658 * Alternatively, a freeze list could be used if another PRNG is used
659 * or when this approach proves to be not sufficient.
660 */
661 if (ptmsi >= 0xC0000000) {
662 if (!max_retries--)
663 goto failed;
664 goto restart;
665 }
666 ptmsi |= 0xC0000000;
667
668 if (ptmsi == GSM_RESERVED_TMSI) {
669 if (!max_retries--)
670 goto failed;
671 goto restart;
672 }
673
Harald Welte6463c072010-05-18 17:04:55 +0200674 llist_for_each_entry(mm, &sgsn_mm_ctxts, list) {
Jacob Erlbeck08fbeb82014-09-19 09:28:42 +0200675 if (mm->p_tmsi == ptmsi) {
676 if (!max_retries--)
677 goto failed;
Harald Welte6463c072010-05-18 17:04:55 +0200678 goto restart;
Jacob Erlbeck08fbeb82014-09-19 09:28:42 +0200679 }
Harald Welte6463c072010-05-18 17:04:55 +0200680 }
681
682 return ptmsi;
Jacob Erlbeck08fbeb82014-09-19 09:28:42 +0200683
684failed:
685 LOGP(DGPRS, LOGL_ERROR, "Failed to allocate a P-TMSI\n");
686 return GSM_RESERVED_TMSI;
Harald Welte6463c072010-05-18 17:04:55 +0200687}
Harald Weltea9b473a2010-12-24 21:13:26 +0100688
689static void drop_one_pdp(struct sgsn_pdp_ctx *pdp)
690{
Alexander Couzens4f8da6d2017-01-31 15:34:26 +0100691 if (pdp->mm->gmm_state == GMM_REGISTERED_NORMAL)
Harald Weltea9b473a2010-12-24 21:13:26 +0100692 gsm48_tx_gsm_deact_pdp_req(pdp, GSM_CAUSE_NET_FAIL);
693 else {
694 /* FIXME: GPRS paging in case MS is SUSPENDED */
Daniel Willmann46553142014-09-03 17:46:44 +0200695 LOGPDPCTXP(LOGL_NOTICE, pdp, "Hard-dropping PDP ctx due to GGSN "
Harald Weltea9b473a2010-12-24 21:13:26 +0100696 "recovery\n");
Harald Welte7b022ee2012-07-14 12:04:04 +0200697 /* FIXME: how to tell this to libgtp? */
Harald Weltea9b473a2010-12-24 21:13:26 +0100698 sgsn_pdp_ctx_free(pdp);
699 }
700}
701
702/* High-level function to be called in case a GGSN has disappeared or
Holger Hans Peter Freyther19e990d2014-10-27 10:24:37 +0100703 * otherwise lost state (recovery procedure) */
Harald Weltea9b473a2010-12-24 21:13:26 +0100704int drop_all_pdp_for_ggsn(struct sgsn_ggsn_ctx *ggsn)
705{
706 struct sgsn_mm_ctx *mm;
707 int num = 0;
708
709 llist_for_each_entry(mm, &sgsn_mm_ctxts, list) {
710 struct sgsn_pdp_ctx *pdp;
711 llist_for_each_entry(pdp, &mm->pdp_list, list) {
712 if (pdp->ggsn == ggsn) {
713 drop_one_pdp(pdp);
714 num++;
715 }
716 }
717 }
718
719 return num;
720}
Jacob Erlbeck78ecaf02014-09-05 14:32:36 +0200721
Jacob Erlbeck555b2e52015-01-26 13:52:42 +0100722void sgsn_update_subscriber_data(struct sgsn_mm_ctx *mmctx)
Jacob Erlbeck423f8bf2014-10-24 18:09:54 +0200723{
Jacob Erlbeck555b2e52015-01-26 13:52:42 +0100724 OSMO_ASSERT(mmctx != NULL);
Jacob Erlbeckc9391962014-12-18 09:53:07 +0100725 LOGMMCTXP(LOGL_INFO, mmctx, "Subscriber data update\n");
Jacob Erlbeckbe2c8d92014-11-12 10:18:09 +0100726
Jacob Erlbecka0b6efb2014-11-13 10:48:39 +0100727 sgsn_auth_update(mmctx);
Jacob Erlbeck423f8bf2014-10-24 18:09:54 +0200728}
Jacob Erlbeck81ffb742015-01-23 11:33:51 +0100729
Holger Hans Peter Freyther5db68572017-07-09 13:18:17 +0200730static void insert_extra(struct tlv_parsed *tp,
731 struct sgsn_subscriber_data *data,
732 struct sgsn_subscriber_pdp_data *pdp)
Holger Hans Peter Freyther8cedded2015-04-23 11:33:35 -0400733{
734 tp->lv[OSMO_IE_GSM_SUB_QOS].len = pdp->qos_subscribed_len;
735 tp->lv[OSMO_IE_GSM_SUB_QOS].val = pdp->qos_subscribed;
Holger Hans Peter Freyther5db68572017-07-09 13:18:17 +0200736
737 /* Prefer PDP charging characteristics of per subscriber one */
738 if (pdp->has_pdp_charg) {
739 tp->lv[OSMO_IE_GSM_CHARG_CHAR].len = sizeof(pdp->pdp_charg);
740 tp->lv[OSMO_IE_GSM_CHARG_CHAR].val = &pdp->pdp_charg[0];
741 } else if (data->has_pdp_charg) {
742 tp->lv[OSMO_IE_GSM_CHARG_CHAR].len = sizeof(data->pdp_charg);
743 tp->lv[OSMO_IE_GSM_CHARG_CHAR].val = &data->pdp_charg[0];
744 }
Holger Hans Peter Freyther8cedded2015-04-23 11:33:35 -0400745}
746
747/**
748 * The tlv_parsed tp parameter will be modified to insert a
749 * OSMO_IE_GSM_SUB_QOS in case the data is available in the
750 * PDP context handling.
751 */
Jacob Erlbeck277b71e2015-02-02 18:03:05 +0100752struct sgsn_ggsn_ctx *sgsn_mm_ctx_find_ggsn_ctx(struct sgsn_mm_ctx *mmctx,
753 struct tlv_parsed *tp,
Holger Hans Peter Freyther39c430e2015-05-25 12:26:49 +0800754 enum gsm48_gsm_cause *gsm_cause,
755 char *out_apn_str)
Jacob Erlbeck277b71e2015-02-02 18:03:05 +0100756{
757 char req_apn_str[GSM_APN_LENGTH] = {0};
758 const struct apn_ctx *apn_ctx = NULL;
759 const char *selected_apn_str = NULL;
760 struct sgsn_subscriber_pdp_data *pdp;
761 struct sgsn_ggsn_ctx *ggsn = NULL;
762 int allow_any_apn = 0;
763
Holger Hans Peter Freyther39c430e2015-05-25 12:26:49 +0800764 out_apn_str[0] = '\0';
765
Jacob Erlbeck277b71e2015-02-02 18:03:05 +0100766 if (TLVP_PRESENT(tp, GSM48_IE_GSM_APN)) {
767 if (TLVP_LEN(tp, GSM48_IE_GSM_APN) >= GSM_APN_LENGTH - 1) {
768 LOGMMCTXP(LOGL_ERROR, mmctx, "APN IE too long\n");
769 *gsm_cause = GSM_CAUSE_INV_MAND_INFO;
770 return NULL;
771 }
772
Harald Welte7e82b742017-08-12 13:43:54 +0200773 osmo_apn_to_str(req_apn_str,
Jacob Erlbeck277b71e2015-02-02 18:03:05 +0100774 TLVP_VAL(tp, GSM48_IE_GSM_APN),
775 TLVP_LEN(tp, GSM48_IE_GSM_APN));
776
777 if (strcmp(req_apn_str, "*") == 0)
778 req_apn_str[0] = 0;
779 }
780
Holger Hans Peter Freyther9270d992015-05-24 20:51:17 +0800781 if (mmctx->subscr == NULL)
Jacob Erlbeck277b71e2015-02-02 18:03:05 +0100782 allow_any_apn = 1;
783
784 if (strlen(req_apn_str) == 0 && !allow_any_apn) {
785 /* No specific APN requested, check for an APN that is both
786 * granted and configured */
787
788 llist_for_each_entry(pdp, &mmctx->subscr->sgsn_data->pdp_list, list) {
789 if (strcmp(pdp->apn_str, "*") == 0)
790 {
791 allow_any_apn = 1;
792 selected_apn_str = "";
Holger Hans Peter Freyther5db68572017-07-09 13:18:17 +0200793 insert_extra(tp, mmctx->subscr->sgsn_data, pdp);
Jacob Erlbeck277b71e2015-02-02 18:03:05 +0100794 continue;
795 }
796 if (!llist_empty(&sgsn_apn_ctxts)) {
797 apn_ctx = sgsn_apn_ctx_match(req_apn_str, mmctx->imsi);
798 /* Not configured */
799 if (apn_ctx == NULL)
800 continue;
801 }
Holger Hans Peter Freyther5db68572017-07-09 13:18:17 +0200802 insert_extra(tp, mmctx->subscr->sgsn_data, pdp);
Jacob Erlbeck277b71e2015-02-02 18:03:05 +0100803 selected_apn_str = pdp->apn_str;
804 break;
805 }
806 } else if (!allow_any_apn) {
807 /* Check whether the given APN is granted */
808 llist_for_each_entry(pdp, &mmctx->subscr->sgsn_data->pdp_list, list) {
809 if (strcmp(pdp->apn_str, "*") == 0) {
Holger Hans Peter Freyther5db68572017-07-09 13:18:17 +0200810 insert_extra(tp, mmctx->subscr->sgsn_data, pdp);
Jacob Erlbeck277b71e2015-02-02 18:03:05 +0100811 selected_apn_str = req_apn_str;
812 allow_any_apn = 1;
813 continue;
814 }
815 if (strcasecmp(pdp->apn_str, req_apn_str) == 0) {
Holger Hans Peter Freyther5db68572017-07-09 13:18:17 +0200816 insert_extra(tp, mmctx->subscr->sgsn_data, pdp);
Jacob Erlbeck277b71e2015-02-02 18:03:05 +0100817 selected_apn_str = req_apn_str;
818 break;
819 }
820 }
821 } else if (strlen(req_apn_str) != 0) {
822 /* Any APN is allowed */
823 selected_apn_str = req_apn_str;
824 } else {
825 /* Prefer the GGSN associated with the wildcard APN */
826 selected_apn_str = "";
827 }
828
829 if (!allow_any_apn && selected_apn_str == NULL) {
830 /* Access not granted */
831 LOGMMCTXP(LOGL_NOTICE, mmctx,
832 "The requested APN '%s' is not allowed\n",
833 req_apn_str);
834 *gsm_cause = GSM_CAUSE_REQ_SERV_OPT_NOTSUB;
835 return NULL;
836 }
837
Holger Hans Peter Freyther39c430e2015-05-25 12:26:49 +0800838 /* copy the selected apn_str */
Holger Hans Peter Freytherf2e114a2015-06-02 09:33:31 +0200839 if (selected_apn_str)
840 strcpy(out_apn_str, selected_apn_str);
841 else
842 out_apn_str[0] = '\0';
Holger Hans Peter Freyther39c430e2015-05-25 12:26:49 +0800843
Jacob Erlbeck277b71e2015-02-02 18:03:05 +0100844 if (apn_ctx == NULL && selected_apn_str)
845 apn_ctx = sgsn_apn_ctx_match(selected_apn_str, mmctx->imsi);
846
847 if (apn_ctx != NULL) {
848 ggsn = apn_ctx->ggsn;
849 } else if (llist_empty(&sgsn_apn_ctxts)) {
850 /* No configuration -> use GGSN 0 */
851 ggsn = sgsn_ggsn_ctx_by_id(0);
852 } else if (allow_any_apn &&
853 (selected_apn_str == NULL || strlen(selected_apn_str) == 0)) {
854 /* No APN given and no default configuration -> Use GGSN 0 */
855 ggsn = sgsn_ggsn_ctx_by_id(0);
856 } else {
857 /* No matching configuration found */
858 LOGMMCTXP(LOGL_NOTICE, mmctx,
859 "The selected APN '%s' has not been configured\n",
860 selected_apn_str);
861 *gsm_cause = GSM_CAUSE_MISSING_APN;
862 return NULL;
863 }
864
Holger Hans Peter Freyther08bb84b2015-05-25 14:35:10 +0800865 if (!ggsn) {
866 LOGMMCTXP(LOGL_NOTICE, mmctx,
867 "No static GGSN configured. Selected APN '%s'\n",
868 selected_apn_str);
869 return NULL;
870 }
871
Jacob Erlbeck277b71e2015-02-02 18:03:05 +0100872 LOGMMCTXP(LOGL_INFO, mmctx,
873 "Found GGSN %d for APN '%s' (requested '%s')\n",
874 ggsn->id, selected_apn_str ? selected_apn_str : "---",
875 req_apn_str);
876
877 return ggsn;
878}
879
Jacob Erlbeck81ffb742015-01-23 11:33:51 +0100880static void sgsn_llme_cleanup_free(struct gprs_llc_llme *llme)
881{
882 struct sgsn_mm_ctx *mmctx = NULL;
883
884 llist_for_each_entry(mmctx, &sgsn_mm_ctxts, list) {
Harald Weltef97ee042015-12-25 19:12:21 +0100885 if (llme == mmctx->gb.llme) {
Jacob Erlbeck81ffb742015-01-23 11:33:51 +0100886 gsm0408_gprs_access_cancelled(mmctx, SGSN_ERROR_CAUSE_NONE);
887 return;
888 }
889 }
890
891 /* No MM context found */
892 LOGP(DGPRS, LOGL_INFO, "Deleting orphaned LLME, TLLI 0x%08x\n",
893 llme->tlli);
Max39550252016-06-28 17:39:20 +0200894 gprs_llgmm_unassign(llme);
Jacob Erlbeck81ffb742015-01-23 11:33:51 +0100895}
896
897static void sgsn_llme_check_cb(void *data_)
898{
899 struct gprs_llc_llme *llme, *llme_tmp;
900 struct timespec now_tp;
901 time_t now, age;
902 time_t max_age = gprs_max_time_to_idle();
903
904 int rc;
905
906 rc = clock_gettime(CLOCK_MONOTONIC, &now_tp);
907 OSMO_ASSERT(rc >= 0);
908 now = now_tp.tv_sec;
909
910 LOGP(DGPRS, LOGL_DEBUG,
911 "Checking for inactive LLMEs, time = %u\n", (unsigned)now);
912
913 llist_for_each_entry_safe(llme, llme_tmp, &gprs_llc_llmes, list) {
914 if (llme->age_timestamp == GPRS_LLME_RESET_AGE)
915 llme->age_timestamp = now;
916
917 age = now - llme->age_timestamp;
918
919 if (age > max_age || age < 0) {
920 LOGP(DGPRS, LOGL_INFO,
921 "Inactivity timeout for TLLI 0x%08x, age %d\n",
922 llme->tlli, (int)age);
923 sgsn_llme_cleanup_free(llme);
924 }
925 }
926
927 osmo_timer_schedule(&sgsn->llme_timer, GPRS_LLME_CHECK_TICK, 0);
928}
929
930void sgsn_inst_init()
931{
Pablo Neira Ayuso51215762017-05-08 20:57:52 +0200932 osmo_timer_setup(&sgsn->llme_timer, sgsn_llme_check_cb, NULL);
Jacob Erlbeck81ffb742015-01-23 11:33:51 +0100933 osmo_timer_schedule(&sgsn->llme_timer, GPRS_LLME_CHECK_TICK, 0);
934}
935