blob: 11225ddb0d210a46f586485ab43edbf8ccb6ebd3 [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 Welteea34a4e2012-06-16 14:59:56 +080033
Neels Hofmeyr0e5d8072017-01-10 00:49:56 +010034#include <openbsc/gprs_subscriber.h>
Harald Weltecb991632010-04-26 19:18:54 +020035#include <openbsc/debug.h>
Harald Welte9b455bf2010-03-14 15:45:01 +080036#include <openbsc/gprs_sgsn.h>
Harald Welteab1d5622010-05-18 19:58:38 +020037#include <openbsc/sgsn.h>
Harald Weltea9b473a2010-12-24 21:13:26 +010038#include <openbsc/gprs_gmm.h>
Jacob Erlbeck277b71e2015-02-02 18:03:05 +010039#include <openbsc/gprs_utils.h>
Holger Hans Peter Freytherb1008952015-05-02 19:55:38 +020040#include <openbsc/signal.h>
Jacob Erlbeck99985b52014-10-13 10:32:00 +020041#include "openbsc/gprs_llc.h"
Daniel Willmann6292c8d2016-05-21 17:35:57 +020042#include <openbsc/iu.h>
Harald Welteab1d5622010-05-18 19:58:38 +020043
Neels Hofmeyrf4daf162016-05-21 00:44:50 +020044#include <pdp.h>
45
Jacob Erlbeck81ffb742015-01-23 11:33:51 +010046#include <time.h>
47
Daniel Willmann044ce5f2015-10-12 19:36:33 +020048#include <openssl/rand.h>
49
Jacob Erlbeck81ffb742015-01-23 11:33:51 +010050#define GPRS_LLME_CHECK_TICK 30
51
Harald Welteab1d5622010-05-18 19:58:38 +020052extern struct sgsn_instance *sgsn;
Harald Welte9b455bf2010-03-14 15:45:01 +080053
Harald Welted193cb32010-05-17 22:58:03 +020054LLIST_HEAD(sgsn_mm_ctxts);
55LLIST_HEAD(sgsn_ggsn_ctxts);
56LLIST_HEAD(sgsn_apn_ctxts);
57LLIST_HEAD(sgsn_pdp_ctxts);
Harald Welte9b455bf2010-03-14 15:45:01 +080058
Harald Welte8acd88f2010-05-18 10:57:45 +020059static const struct rate_ctr_desc mmctx_ctr_description[] = {
60 { "sign.packets.in", "Signalling Messages ( In)" },
61 { "sign.packets.out", "Signalling Messages (Out)" },
62 { "udata.packets.in", "User Data Messages ( In)" },
63 { "udata.packets.out", "User Data Messages (Out)" },
64 { "udata.bytes.in", "User Data Bytes ( In)" },
65 { "udata.bytes.out", "User Data Bytes (Out)" },
66 { "pdp_ctx_act", "PDP Context Activations " },
67 { "suspend", "SUSPEND Count " },
68 { "paging.ps", "Paging Packet Switched " },
69 { "paging.cs", "Paging Circuit Switched " },
70 { "ra_update", "Routing Area Update " },
71};
72
73static const struct rate_ctr_group_desc mmctx_ctrg_desc = {
74 .group_name_prefix = "sgsn.mmctx",
75 .group_description = "SGSN MM Context Statistics",
76 .num_ctr = ARRAY_SIZE(mmctx_ctr_description),
77 .ctr_desc = mmctx_ctr_description,
Jacob Erlbeck46caed82015-11-02 15:15:38 +010078 .class_id = OSMO_STATS_CLASS_SUBSCRIBER,
Harald Welte8acd88f2010-05-18 10:57:45 +020079};
80
Harald Welteefbdee92010-06-10 00:20:12 +020081static const struct rate_ctr_desc pdpctx_ctr_description[] = {
82 { "udata.packets.in", "User Data Messages ( In)" },
83 { "udata.packets.out", "User Data Messages (Out)" },
84 { "udata.bytes.in", "User Data Bytes ( In)" },
85 { "udata.bytes.out", "User Data Bytes (Out)" },
86};
87
88static const struct rate_ctr_group_desc pdpctx_ctrg_desc = {
89 .group_name_prefix = "sgsn.pdpctx",
90 .group_description = "SGSN PDP Context Statistics",
91 .num_ctr = ARRAY_SIZE(pdpctx_ctr_description),
92 .ctr_desc = pdpctx_ctr_description,
Jacob Erlbeck46caed82015-11-02 15:15:38 +010093 .class_id = OSMO_STATS_CLASS_SUBSCRIBER,
Harald Welteefbdee92010-06-10 00:20:12 +020094};
95
Alexander Couzens14314bd2016-07-05 09:52:52 +020096static const struct rate_ctr_desc sgsn_ctr_description[] = {
Alexander Couzens4e699a92016-07-05 11:04:27 +020097 { "llc.dl_bytes", "Count sent LLC bytes before giving it to the bssgp layer" },
98 { "llc.ul_bytes", "Count sucessful received LLC bytes (encrypt & fcs correct)" },
99 { "llc.dl_packets", "Count sucessful sent LLC packets before giving it to the bssgp layer" },
100 { "llc.ul_packets", "Count sucessful received LLC packets (encrypt & fcs correct)" },
Alexander Couzens14314bd2016-07-05 09:52:52 +0200101 { "gprs.attach_requested", "Received attach requests" },
102 { "gprs.attach_accepted", "Sent attach accepts" },
103 { "gprs.attach_rejected", "Sent attach rejects" },
104 { "gprs.detach_requested", "Received detach requests" },
105 { "gprs.detach_acked", "Sent detach acks" },
106 { "gprs.routing_area_requested", "Received routing area requests" },
107 { "gprs.routing_area_requested", "Sent routing area acks" },
108 { "gprs.routing_area_requested", "Sent routing area rejects" },
109 { "pdp.activate_requested", "Received activate requests" },
110 { "pdp.activate_rejected", "Sent activate rejects" },
111 { "pdp.activate_accepted", "Sent activate accepts" },
112 { "pdp.request_activated", "unused" },
113 { "pdp.request_activate_rejected", "unused" },
114 { "pdp.modify_requested", "unused" },
115 { "pdp.modify_accepted", "unused" },
116 { "pdp.dl_deactivate_requested", "Sent deactivate requests" },
117 { "pdp.dl_deactivate_accepted", "Sent deactivate accepted" },
118 { "pdp.ul_deactivate_requested", "Received deactivate requests" },
119 { "pdp.ul_deactivate_accepted", "Received deactivate accepts" },
120};
121
122static const struct rate_ctr_group_desc sgsn_ctrg_desc = {
123 "sgsn",
124 "SGSN Overall Statistics",
125 OSMO_STATS_CLASS_GLOBAL,
126 ARRAY_SIZE(sgsn_ctr_description),
127 sgsn_ctr_description,
128};
129
130void sgsn_rate_ctr_init() {
131 sgsn->rate_ctrs = rate_ctr_group_alloc(tall_bsc_ctx, &sgsn_ctrg_desc, 0);
132}
133
Daniel Willmann6292c8d2016-05-21 17:35:57 +0200134/* look-up an SGSN MM context based on Iu UE context (struct ue_conn_ctx)*/
135struct sgsn_mm_ctx *sgsn_mm_ctx_by_ue_ctx(const void *uectx)
136{
137 struct sgsn_mm_ctx *ctx;
138
139 llist_for_each_entry(ctx, &sgsn_mm_ctxts, list) {
140 if (ctx->ran_type == MM_CTX_T_UTRAN_Iu
141 && uectx == ctx->iu.ue_ctx)
142 return ctx;
143 }
144
145 return NULL;
146}
147
Harald Welte9b455bf2010-03-14 15:45:01 +0800148/* look-up a SGSN MM context based on TLLI + RAI */
Harald Welteeaa614c2010-05-02 11:26:34 +0200149struct sgsn_mm_ctx *sgsn_mm_ctx_by_tlli(uint32_t tlli,
Harald Welte9b455bf2010-03-14 15:45:01 +0800150 const struct gprs_ra_id *raid)
151{
152 struct sgsn_mm_ctx *ctx;
153
154 llist_for_each_entry(ctx, &sgsn_mm_ctxts, list) {
Harald Weltef97ee042015-12-25 19:12:21 +0100155 if ((tlli == ctx->gb.tlli || tlli == ctx->gb.tlli_new) &&
Jacob Erlbecke7bcdc32016-01-04 18:43:34 +0100156 gprs_ra_id_equals(raid, &ctx->ra))
Harald Welte9b455bf2010-03-14 15:45:01 +0800157 return ctx;
158 }
Harald Welteab1d5622010-05-18 19:58:38 +0200159
Harald Welte9b455bf2010-03-14 15:45:01 +0800160 return NULL;
161}
162
Jacob Erlbeck5ac4aad2016-01-04 18:43:38 +0100163struct sgsn_mm_ctx *sgsn_mm_ctx_by_tlli_and_ptmsi(uint32_t tlli,
164 const struct gprs_ra_id *raid)
165{
166 struct sgsn_mm_ctx *ctx;
167 int tlli_type;
168
169 /* TODO: Also check the P_TMSI signature to be safe. That signature
170 * should be different (at least with a sufficiently high probability)
171 * after SGSN restarts and for multiple SGSN instances.
172 */
173
174 tlli_type = gprs_tlli_type(tlli);
175 if (tlli_type != TLLI_FOREIGN && tlli_type != TLLI_LOCAL)
176 return NULL;
177
178 llist_for_each_entry(ctx, &sgsn_mm_ctxts, list) {
179 if ((gprs_tmsi2tlli(ctx->p_tmsi, tlli_type) == tlli ||
180 gprs_tmsi2tlli(ctx->p_tmsi_old, tlli_type) == tlli) &&
181 gprs_ra_id_equals(raid, &ctx->ra))
182 return ctx;
183 }
184
185 return NULL;
186}
187
Harald Welteeaa614c2010-05-02 11:26:34 +0200188struct sgsn_mm_ctx *sgsn_mm_ctx_by_ptmsi(uint32_t p_tmsi)
Harald Welte9b455bf2010-03-14 15:45:01 +0800189{
190 struct sgsn_mm_ctx *ctx;
191
192 llist_for_each_entry(ctx, &sgsn_mm_ctxts, list) {
Harald Weltec2e8cc42010-05-31 20:23:38 +0200193 if (p_tmsi == ctx->p_tmsi ||
194 (ctx->p_tmsi_old && ctx->p_tmsi_old == p_tmsi))
Harald Welte9b455bf2010-03-14 15:45:01 +0800195 return ctx;
196 }
197 return NULL;
198}
199
200struct sgsn_mm_ctx *sgsn_mm_ctx_by_imsi(const char *imsi)
201{
202 struct sgsn_mm_ctx *ctx;
203
204 llist_for_each_entry(ctx, &sgsn_mm_ctxts, list) {
205 if (!strcmp(imsi, ctx->imsi))
206 return ctx;
207 }
208 return NULL;
209
210}
211
Alexander Couzens2b5fb8e2017-02-04 06:01:00 +0100212/* Allocate a new SGSN MM context for GERAN_Gb */
213struct sgsn_mm_ctx *sgsn_mm_ctx_alloc_gb(uint32_t tlli,
Harald Welte9b455bf2010-03-14 15:45:01 +0800214 const struct gprs_ra_id *raid)
215{
Harald Welte2720e732010-05-17 00:44:57 +0200216 struct sgsn_mm_ctx *ctx;
Harald Welte9b455bf2010-03-14 15:45:01 +0800217
Harald Welte2720e732010-05-17 00:44:57 +0200218 ctx = talloc_zero(tall_bsc_ctx, struct sgsn_mm_ctx);
Harald Welte9b455bf2010-03-14 15:45:01 +0800219 if (!ctx)
220 return NULL;
221
222 memcpy(&ctx->ra, raid, sizeof(ctx->ra));
Harald Weltef97ee042015-12-25 19:12:21 +0100223 ctx->ran_type = MM_CTX_T_GERAN_Gb;
224 ctx->gb.tlli = tlli;
Alexander Couzens4f8da6d2017-01-31 15:34:26 +0100225 ctx->gmm_state = GMM_DEREGISTERED;
Alexander Couzens10135502017-02-04 05:53:07 +0100226 ctx->pmm_state = MM_IDLE;
Jacob Erlbeckbd0cf112014-12-01 12:33:33 +0100227 ctx->auth_triplet.key_seq = GSM_KEY_SEQ_INVAL;
Maxb997f842016-07-06 15:57:01 +0200228 ctx->ciph_algo = sgsn->cfg.cipher;
Max549ebc72016-11-18 14:07:04 +0100229 LOGMMCTXP(LOGL_DEBUG, ctx, "Allocated with %s cipher.\n",
230 get_value_string(gprs_cipher_names, ctx->ciph_algo));
Harald Welte8acd88f2010-05-18 10:57:45 +0200231 ctx->ctrg = rate_ctr_group_alloc(ctx, &mmctx_ctrg_desc, tlli);
Harald Welte6ffbaab2010-05-18 12:44:45 +0200232 INIT_LLIST_HEAD(&ctx->pdp_list);
Harald Welte9b455bf2010-03-14 15:45:01 +0800233
234 llist_add(&ctx->list, &sgsn_mm_ctxts);
235
236 return ctx;
237}
Harald Welted193cb32010-05-17 22:58:03 +0200238
Daniel Willmann6292c8d2016-05-21 17:35:57 +0200239/* Allocate a new SGSN MM context */
240struct sgsn_mm_ctx *sgsn_mm_ctx_alloc_iu(void *uectx)
241{
242 struct sgsn_mm_ctx *ctx;
243
244 ctx = talloc_zero(tall_bsc_ctx, struct sgsn_mm_ctx);
245 if (!ctx)
246 return NULL;
247
248 ctx->ran_type = MM_CTX_T_UTRAN_Iu;
249 ctx->iu.ue_ctx = uectx;
Neels Hofmeyr84da6b12016-05-20 21:59:55 +0200250 ctx->iu.ue_ctx->rab_assign_addr_enc = sgsn->cfg.iu.rab_assign_addr_enc;
Daniel Willmann3ecfbbb2016-05-21 00:16:55 +0200251 ctx->iu.new_key = 1;
Alexander Couzens4f8da6d2017-01-31 15:34:26 +0100252 ctx->gmm_state = GMM_DEREGISTERED;
Daniel Willmann5b2363e2016-05-21 00:01:21 +0200253 ctx->pmm_state = PMM_DETACHED;
Daniel Willmann6292c8d2016-05-21 17:35:57 +0200254 ctx->auth_triplet.key_seq = GSM_KEY_SEQ_INVAL;
255 ctx->ctrg = rate_ctr_group_alloc(ctx, &mmctx_ctrg_desc, 0);
256
257 /* Need to get RAID from IU conn */
258 ctx->ra = ctx->iu.ue_ctx->ra_id;
259
260 INIT_LLIST_HEAD(&ctx->pdp_list);
261
262 llist_add(&ctx->list, &sgsn_mm_ctxts);
263
264 return ctx;
265}
266
267
Harald Welte7b022ee2012-07-14 12:04:04 +0200268/* this is a hard _free_ function, it doesn't clean up the PDP contexts
269 * in libgtp! */
Holger Hans Peter Freytherb448dd82015-05-03 11:46:58 +0200270static void sgsn_mm_ctx_free(struct sgsn_mm_ctx *mm)
Harald Weltec728eea2010-12-24 23:07:18 +0100271{
272 struct sgsn_pdp_ctx *pdp, *pdp2;
273
Jacob Erlbecke671d252015-01-26 14:43:07 +0100274 /* Unlink from global list of MM contexts */
275 llist_del(&mm->list);
276
277 /* Free all PDP contexts */
278 llist_for_each_entry_safe(pdp, pdp2, &mm->pdp_list, list)
279 sgsn_pdp_ctx_free(pdp);
280
281 rate_ctr_group_free(mm->ctrg);
282
283 talloc_free(mm);
284}
285
286void sgsn_mm_ctx_cleanup_free(struct sgsn_mm_ctx *mm)
287{
Daniel Willmann7ec8ca42016-05-21 00:48:49 +0200288 struct gprs_llc_llme *llme = NULL;
Harald Weltef97ee042015-12-25 19:12:21 +0100289 uint32_t tlli = mm->gb.tlli;
Jacob Erlbecke671d252015-01-26 14:43:07 +0100290 struct sgsn_pdp_ctx *pdp, *pdp2;
Holger Hans Peter Freytherb1008952015-05-02 19:55:38 +0200291 struct sgsn_signal_data sig_data;
Jacob Erlbecke671d252015-01-26 14:43:07 +0100292
Daniel Willmann7ec8ca42016-05-21 00:48:49 +0200293 if (mm->ran_type == MM_CTX_T_GERAN_Gb)
294 llme = mm->gb.llme;
295 else
296 OSMO_ASSERT(mm->gb.llme == NULL);
297
Holger Hans Peter Freyther39c430e2015-05-25 12:26:49 +0800298 /* Forget about ongoing look-ups */
299 if (mm->ggsn_lookup) {
300 LOGMMCTXP(LOGL_NOTICE, mm,
301 "Cleaning mmctx with on-going query.\n");
302 mm->ggsn_lookup->mmctx = NULL;
303 mm->ggsn_lookup = NULL;
304 }
305
Jacob Erlbecke671d252015-01-26 14:43:07 +0100306 /* delete all existing PDP contexts for this MS */
307 llist_for_each_entry_safe(pdp, pdp2, &mm->pdp_list, list) {
308 LOGMMCTXP(LOGL_NOTICE, mm,
309 "Dropping PDP context for NSAPI=%u\n", pdp->nsapi);
310 sgsn_pdp_ctx_terminate(pdp);
311 }
312
Jacob Erlbeckae20b4b2014-10-20 16:05:55 +0200313 if (osmo_timer_pending(&mm->timer)) {
314 LOGMMCTXP(LOGL_INFO, mm, "Cancelling MM timer %u\n", mm->T);
315 osmo_timer_del(&mm->timer);
316 }
317
Holger Hans Peter Freytherb1008952015-05-02 19:55:38 +0200318 memset(&sig_data, 0, sizeof(sig_data));
319 sig_data.mm = mm;
320 osmo_signal_dispatch(SS_SGSN, S_SGSN_MM_FREE, &sig_data);
321
322
Jacob Erlbeckbe2c8d92014-11-12 10:18:09 +0100323 /* Detach from subscriber which is possibly freed then */
324 if (mm->subscr) {
Neels Hofmeyr0e5d8072017-01-10 00:49:56 +0100325 struct gprs_subscr *subscr = gprs_subscr_get(mm->subscr);
Jacob Erlbeck3e4e58f2015-01-26 11:07:24 +0100326 gprs_subscr_cleanup(subscr);
Neels Hofmeyr0e5d8072017-01-10 00:49:56 +0100327 gprs_subscr_put(subscr);
Jacob Erlbeckbe2c8d92014-11-12 10:18:09 +0100328 }
329
Jacob Erlbecke671d252015-01-26 14:43:07 +0100330 sgsn_mm_ctx_free(mm);
331 mm = NULL;
Harald Weltec728eea2010-12-24 23:07:18 +0100332
Daniel Willmann7ec8ca42016-05-21 00:48:49 +0200333 if (llme) {
334 /* TLLI unassignment, must be called after sgsn_mm_ctx_free */
Max5aa51962016-07-06 11:33:04 +0200335 gprs_llgmm_assign(llme, tlli, 0xffffffff);
Daniel Willmann7ec8ca42016-05-21 00:48:49 +0200336 }
Harald Weltec728eea2010-12-24 23:07:18 +0100337}
Harald Welte77289c22010-05-18 14:32:29 +0200338
Jacob Erlbecke671d252015-01-26 14:43:07 +0100339
Harald Welte96df6062010-06-03 06:37:26 +0200340/* look up PDP context by MM context and NSAPI */
Harald Welted193cb32010-05-17 22:58:03 +0200341struct sgsn_pdp_ctx *sgsn_pdp_ctx_by_nsapi(const struct sgsn_mm_ctx *mm,
342 uint8_t nsapi)
343{
344 struct sgsn_pdp_ctx *pdp;
345
346 llist_for_each_entry(pdp, &mm->pdp_list, list) {
347 if (pdp->nsapi == nsapi)
348 return pdp;
349 }
350 return NULL;
351}
352
Harald Welte96df6062010-06-03 06:37:26 +0200353/* look up PDP context by MM context and transaction ID */
Harald Welte77289c22010-05-18 14:32:29 +0200354struct sgsn_pdp_ctx *sgsn_pdp_ctx_by_tid(const struct sgsn_mm_ctx *mm,
355 uint8_t tid)
356{
357 struct sgsn_pdp_ctx *pdp;
358
359 llist_for_each_entry(pdp, &mm->pdp_list, list) {
360 if (pdp->ti == tid)
361 return pdp;
362 }
363 return NULL;
364}
365
Harald Welte7b022ee2012-07-14 12:04:04 +0200366/* you don't want to use this directly, call sgsn_create_pdp_ctx() */
Harald Welted193cb32010-05-17 22:58:03 +0200367struct sgsn_pdp_ctx *sgsn_pdp_ctx_alloc(struct sgsn_mm_ctx *mm,
368 uint8_t nsapi)
369{
370 struct sgsn_pdp_ctx *pdp;
371
372 pdp = sgsn_pdp_ctx_by_nsapi(mm, nsapi);
373 if (pdp)
374 return NULL;
375
376 pdp = talloc_zero(tall_bsc_ctx, struct sgsn_pdp_ctx);
377 if (!pdp)
378 return NULL;
379
380 pdp->mm = mm;
381 pdp->nsapi = nsapi;
Harald Welteefbdee92010-06-10 00:20:12 +0200382 pdp->ctrg = rate_ctr_group_alloc(pdp, &pdpctx_ctrg_desc, nsapi);
Harald Welted193cb32010-05-17 22:58:03 +0200383 llist_add(&pdp->list, &mm->pdp_list);
384 llist_add(&pdp->g_list, &sgsn_pdp_ctxts);
385
386 return pdp;
387}
388
Jacob Erlbeck99985b52014-10-13 10:32:00 +0200389/*
390 * This function will not trigger any GSM DEACT PDP ACK messages, so you
391 * probably want to call sgsn_delete_pdp_ctx() instead if the connection
392 * isn't detached already.
393 */
394void sgsn_pdp_ctx_terminate(struct sgsn_pdp_ctx *pdp)
395{
Holger Hans Peter Freytherb1008952015-05-02 19:55:38 +0200396 struct sgsn_signal_data sig_data;
397
Jacob Erlbeck99985b52014-10-13 10:32:00 +0200398 OSMO_ASSERT(pdp->mm != NULL);
399
400 /* There might still be pending callbacks in libgtp. So the parts of
401 * this object relevant to GTP need to remain intact in this case. */
402
403 LOGPDPCTXP(LOGL_INFO, pdp, "Forcing release of PDP context\n");
404
Daniel Willmannf9f43872016-05-20 22:36:23 +0200405 if (pdp->mm->ran_type == MM_CTX_T_GERAN_Gb) {
406 /* Force the deactivation of the SNDCP layer */
407 sndcp_sm_deactivate_ind(&pdp->mm->gb.llme->lle[pdp->sapi], pdp->nsapi);
408 }
Jacob Erlbeck99985b52014-10-13 10:32:00 +0200409
Holger Hans Peter Freytherb1008952015-05-02 19:55:38 +0200410 memset(&sig_data, 0, sizeof(sig_data));
411 sig_data.pdp = pdp;
412 osmo_signal_dispatch(SS_SGSN, S_SGSN_PDP_TERMINATE, &sig_data);
413
Jacob Erlbeck99985b52014-10-13 10:32:00 +0200414 /* Detach from MM context */
415 llist_del(&pdp->list);
416 pdp->mm = NULL;
417
418 sgsn_delete_pdp_ctx(pdp);
419}
420
421/*
422 * Don't call this function directly unless you know what you are doing.
423 * In normal conditions use sgsn_delete_pdp_ctx and in unspecified or
424 * implementation dependent abnormal ones sgsn_pdp_ctx_terminate.
425 */
Harald Welted193cb32010-05-17 22:58:03 +0200426void sgsn_pdp_ctx_free(struct sgsn_pdp_ctx *pdp)
427{
Holger Hans Peter Freytherb1008952015-05-02 19:55:38 +0200428 struct sgsn_signal_data sig_data;
429
430 memset(&sig_data, 0, sizeof(sig_data));
431 sig_data.pdp = pdp;
432 osmo_signal_dispatch(SS_SGSN, S_SGSN_PDP_FREE, &sig_data);
433
Harald Welte376d5e52010-06-28 18:57:21 +0200434 rate_ctr_group_free(pdp->ctrg);
Jacob Erlbeck99985b52014-10-13 10:32:00 +0200435 if (pdp->mm)
436 llist_del(&pdp->list);
Harald Welted193cb32010-05-17 22:58:03 +0200437 llist_del(&pdp->g_list);
Harald Weltefdf453c2012-07-14 12:15:19 +0200438
439 /* _if_ we still have a library handle, at least set it to NULL
440 * to avoid any dereferences of the now-deleted PDP context from
441 * sgsn_libgtp:cb_data_ind() */
442 if (pdp->lib) {
443 struct pdp_t *lib = pdp->lib;
Daniel Willmann46553142014-09-03 17:46:44 +0200444 LOGPDPCTXP(LOGL_NOTICE, pdp, "freeing PDP context that still "
Harald Weltefdf453c2012-07-14 12:15:19 +0200445 "has a libgtp handle attached to it, this shouldn't "
446 "happen!\n");
447 osmo_generate_backtrace();
448 lib->priv = NULL;
449 }
450
Holger Hans Peter Freyther39c430e2015-05-25 12:26:49 +0800451 if (pdp->destroy_ggsn)
452 sgsn_ggsn_ctx_free(pdp->ggsn);
Harald Welted193cb32010-05-17 22:58:03 +0200453 talloc_free(pdp);
454}
455
456/* GGSN contexts */
457
Harald Welte77289c22010-05-18 14:32:29 +0200458struct sgsn_ggsn_ctx *sgsn_ggsn_ctx_alloc(uint32_t id)
Harald Welted193cb32010-05-17 22:58:03 +0200459{
Harald Welte77289c22010-05-18 14:32:29 +0200460 struct sgsn_ggsn_ctx *ggc;
Harald Welted193cb32010-05-17 22:58:03 +0200461
Harald Welte77289c22010-05-18 14:32:29 +0200462 ggc = talloc_zero(tall_bsc_ctx, struct sgsn_ggsn_ctx);
Harald Welted193cb32010-05-17 22:58:03 +0200463 if (!ggc)
464 return NULL;
465
466 ggc->id = id;
467 ggc->gtp_version = 1;
Harald Weltea9b473a2010-12-24 21:13:26 +0100468 ggc->remote_restart_ctr = -1;
Harald Welteab1d5622010-05-18 19:58:38 +0200469 /* if we are called from config file parse, this gsn doesn't exist yet */
470 ggc->gsn = sgsn->gsn;
Harald Welte119c2ba2010-05-18 18:39:00 +0200471 llist_add(&ggc->list, &sgsn_ggsn_ctxts);
Harald Welted193cb32010-05-17 22:58:03 +0200472
473 return ggc;
474}
475
Jacob Erlbeckf3456122015-02-03 19:53:15 +0100476void sgsn_ggsn_ctx_free(struct sgsn_ggsn_ctx *ggc)
477{
478 llist_del(&ggc->list);
479 talloc_free(ggc);
480}
481
Harald Welte77289c22010-05-18 14:32:29 +0200482struct sgsn_ggsn_ctx *sgsn_ggsn_ctx_by_id(uint32_t id)
Harald Welted193cb32010-05-17 22:58:03 +0200483{
Harald Welte77289c22010-05-18 14:32:29 +0200484 struct sgsn_ggsn_ctx *ggc;
Harald Welted193cb32010-05-17 22:58:03 +0200485
486 llist_for_each_entry(ggc, &sgsn_ggsn_ctxts, list) {
487 if (id == ggc->id)
488 return ggc;
489 }
490 return NULL;
491}
492
Harald Weltea9b473a2010-12-24 21:13:26 +0100493struct sgsn_ggsn_ctx *sgsn_ggsn_ctx_by_addr(struct in_addr *addr)
494{
495 struct sgsn_ggsn_ctx *ggc;
496
497 llist_for_each_entry(ggc, &sgsn_ggsn_ctxts, list) {
498 if (!memcmp(addr, &ggc->remote_addr, sizeof(*addr)))
499 return ggc;
500 }
501 return NULL;
502}
503
504
Harald Welte77289c22010-05-18 14:32:29 +0200505struct sgsn_ggsn_ctx *sgsn_ggsn_ctx_find_alloc(uint32_t id)
Harald Welted193cb32010-05-17 22:58:03 +0200506{
Harald Welte77289c22010-05-18 14:32:29 +0200507 struct sgsn_ggsn_ctx *ggc;
Harald Welted193cb32010-05-17 22:58:03 +0200508
Harald Welte77289c22010-05-18 14:32:29 +0200509 ggc = sgsn_ggsn_ctx_by_id(id);
Harald Welted193cb32010-05-17 22:58:03 +0200510 if (!ggc)
Harald Welte77289c22010-05-18 14:32:29 +0200511 ggc = sgsn_ggsn_ctx_alloc(id);
Harald Welted193cb32010-05-17 22:58:03 +0200512 return ggc;
513}
514
515/* APN contexts */
516
Jacob Erlbeckcb1db8b2015-02-03 13:47:53 +0100517static struct apn_ctx *sgsn_apn_ctx_alloc(const char *ap_name, const char *imsi_prefix)
Harald Welted193cb32010-05-17 22:58:03 +0200518{
519 struct apn_ctx *actx;
520
Jacob Erlbeckcb1db8b2015-02-03 13:47:53 +0100521 actx = talloc_zero(tall_bsc_ctx, struct apn_ctx);
Harald Welted193cb32010-05-17 22:58:03 +0200522 if (!actx)
523 return NULL;
524 actx->name = talloc_strdup(actx, ap_name);
Jacob Erlbeckcb1db8b2015-02-03 13:47:53 +0100525 actx->imsi_prefix = talloc_strdup(actx, imsi_prefix);
526
527 llist_add_tail(&actx->list, &sgsn_apn_ctxts);
Harald Welted193cb32010-05-17 22:58:03 +0200528
529 return actx;
530}
531
Jacob Erlbeckcb1db8b2015-02-03 13:47:53 +0100532void sgsn_apn_ctx_free(struct apn_ctx *actx)
533{
534 llist_del(&actx->list);
535 talloc_free(actx);
536}
537
538struct apn_ctx *sgsn_apn_ctx_match(const char *name, const char *imsi)
539{
540 struct apn_ctx *actx;
541 struct apn_ctx *found_actx = NULL;
542 size_t imsi_prio = 0;
543 size_t name_prio = 0;
544 size_t name_req_len = strlen(name);
545
546 llist_for_each_entry(actx, &sgsn_apn_ctxts, list) {
547 size_t name_ref_len, imsi_ref_len;
548 const char *name_ref_start, *name_match_start;
549
550 imsi_ref_len = strlen(actx->imsi_prefix);
551 if (strncmp(actx->imsi_prefix, imsi, imsi_ref_len) != 0)
552 continue;
553
554 if (imsi_ref_len < imsi_prio)
555 continue;
556
557 /* IMSI matches */
558
559 name_ref_start = &actx->name[0];
560 if (name_ref_start[0] == '*') {
561 /* Suffix match */
562 name_ref_start += 1;
563 name_ref_len = strlen(name_ref_start);
564 if (name_ref_len > name_req_len)
565 continue;
566 } else {
567 name_ref_len = strlen(name_ref_start);
568 if (name_ref_len != name_req_len)
569 continue;
570 }
571
572 name_match_start = name + (name_req_len - name_ref_len);
573 if (strcasecmp(name_match_start, name_ref_start) != 0)
574 continue;
575
576 /* IMSI and name match */
577
578 if (imsi_ref_len == imsi_prio && name_ref_len < name_prio)
579 /* Lower priority, skip */
580 continue;
581
582 imsi_prio = imsi_ref_len;
583 name_prio = name_ref_len;
584 found_actx = actx;
585 }
586 return found_actx;
587}
588
589struct apn_ctx *sgsn_apn_ctx_by_name(const char *name, const char *imsi_prefix)
Harald Welted193cb32010-05-17 22:58:03 +0200590{
591 struct apn_ctx *actx;
592
593 llist_for_each_entry(actx, &sgsn_apn_ctxts, list) {
Jacob Erlbeckcb1db8b2015-02-03 13:47:53 +0100594 if (strcasecmp(name, actx->name) == 0 &&
595 strcasecmp(imsi_prefix, actx->imsi_prefix) == 0)
Harald Welted193cb32010-05-17 22:58:03 +0200596 return actx;
597 }
598 return NULL;
599}
600
Jacob Erlbeckcb1db8b2015-02-03 13:47:53 +0100601struct apn_ctx *sgsn_apn_ctx_find_alloc(const char *name, const char *imsi_prefix)
Harald Welted193cb32010-05-17 22:58:03 +0200602{
603 struct apn_ctx *actx;
604
Jacob Erlbeckcb1db8b2015-02-03 13:47:53 +0100605 actx = sgsn_apn_ctx_by_name(name, imsi_prefix);
Harald Welted193cb32010-05-17 22:58:03 +0200606 if (!actx)
Jacob Erlbeckcb1db8b2015-02-03 13:47:53 +0100607 actx = sgsn_apn_ctx_alloc(name, imsi_prefix);
Harald Welted193cb32010-05-17 22:58:03 +0200608
609 return actx;
610}
Harald Welte6463c072010-05-18 17:04:55 +0200611
612uint32_t sgsn_alloc_ptmsi(void)
613{
614 struct sgsn_mm_ctx *mm;
Alexander Couzens8a215c32017-02-03 23:22:18 +0100615 uint32_t ptmsi = 0xdeadbeef;
Jacob Erlbeckd8a65532015-01-15 18:51:31 +0100616 int max_retries = 100;
Harald Welte6463c072010-05-18 17:04:55 +0200617
618restart:
Daniel Willmann044ce5f2015-10-12 19:36:33 +0200619 if (RAND_bytes((uint8_t *) &ptmsi, sizeof(ptmsi)) != 1)
620 goto failed;
621
Jacob Erlbeckd8a65532015-01-15 18:51:31 +0100622 /* Enforce that the 2 MSB are set without loosing the distance between
623 * identical values. Since rand() has no duplicate values within a
624 * period (because the size of the state is the same like the size of
625 * the random value), this leads to a distance of period/4 when the
626 * distribution of the 2 MSB is uniform. This approach fails with a
627 * probability of (3/4)^max_retries, only 1% of the approaches will
628 * need more than 16 numbers (even distribution assumed).
629 *
630 * Alternatively, a freeze list could be used if another PRNG is used
631 * or when this approach proves to be not sufficient.
632 */
633 if (ptmsi >= 0xC0000000) {
634 if (!max_retries--)
635 goto failed;
636 goto restart;
637 }
638 ptmsi |= 0xC0000000;
639
640 if (ptmsi == GSM_RESERVED_TMSI) {
641 if (!max_retries--)
642 goto failed;
643 goto restart;
644 }
645
Harald Welte6463c072010-05-18 17:04:55 +0200646 llist_for_each_entry(mm, &sgsn_mm_ctxts, list) {
Jacob Erlbeck08fbeb82014-09-19 09:28:42 +0200647 if (mm->p_tmsi == ptmsi) {
648 if (!max_retries--)
649 goto failed;
Harald Welte6463c072010-05-18 17:04:55 +0200650 goto restart;
Jacob Erlbeck08fbeb82014-09-19 09:28:42 +0200651 }
Harald Welte6463c072010-05-18 17:04:55 +0200652 }
653
654 return ptmsi;
Jacob Erlbeck08fbeb82014-09-19 09:28:42 +0200655
656failed:
657 LOGP(DGPRS, LOGL_ERROR, "Failed to allocate a P-TMSI\n");
658 return GSM_RESERVED_TMSI;
Harald Welte6463c072010-05-18 17:04:55 +0200659}
Harald Weltea9b473a2010-12-24 21:13:26 +0100660
661static void drop_one_pdp(struct sgsn_pdp_ctx *pdp)
662{
Alexander Couzens4f8da6d2017-01-31 15:34:26 +0100663 if (pdp->mm->gmm_state == GMM_REGISTERED_NORMAL)
Harald Weltea9b473a2010-12-24 21:13:26 +0100664 gsm48_tx_gsm_deact_pdp_req(pdp, GSM_CAUSE_NET_FAIL);
665 else {
666 /* FIXME: GPRS paging in case MS is SUSPENDED */
Daniel Willmann46553142014-09-03 17:46:44 +0200667 LOGPDPCTXP(LOGL_NOTICE, pdp, "Hard-dropping PDP ctx due to GGSN "
Harald Weltea9b473a2010-12-24 21:13:26 +0100668 "recovery\n");
Harald Welte7b022ee2012-07-14 12:04:04 +0200669 /* FIXME: how to tell this to libgtp? */
Harald Weltea9b473a2010-12-24 21:13:26 +0100670 sgsn_pdp_ctx_free(pdp);
671 }
672}
673
674/* High-level function to be called in case a GGSN has disappeared or
Holger Hans Peter Freyther19e990d2014-10-27 10:24:37 +0100675 * otherwise lost state (recovery procedure) */
Harald Weltea9b473a2010-12-24 21:13:26 +0100676int drop_all_pdp_for_ggsn(struct sgsn_ggsn_ctx *ggsn)
677{
678 struct sgsn_mm_ctx *mm;
679 int num = 0;
680
681 llist_for_each_entry(mm, &sgsn_mm_ctxts, list) {
682 struct sgsn_pdp_ctx *pdp;
683 llist_for_each_entry(pdp, &mm->pdp_list, list) {
684 if (pdp->ggsn == ggsn) {
685 drop_one_pdp(pdp);
686 num++;
687 }
688 }
689 }
690
691 return num;
692}
Jacob Erlbeck78ecaf02014-09-05 14:32:36 +0200693
Jacob Erlbeck555b2e52015-01-26 13:52:42 +0100694void sgsn_update_subscriber_data(struct sgsn_mm_ctx *mmctx)
Jacob Erlbeck423f8bf2014-10-24 18:09:54 +0200695{
Jacob Erlbeck555b2e52015-01-26 13:52:42 +0100696 OSMO_ASSERT(mmctx != NULL);
Jacob Erlbeckc9391962014-12-18 09:53:07 +0100697 LOGMMCTXP(LOGL_INFO, mmctx, "Subscriber data update\n");
Jacob Erlbeckbe2c8d92014-11-12 10:18:09 +0100698
Jacob Erlbecka0b6efb2014-11-13 10:48:39 +0100699 sgsn_auth_update(mmctx);
Jacob Erlbeck423f8bf2014-10-24 18:09:54 +0200700}
Jacob Erlbeck81ffb742015-01-23 11:33:51 +0100701
Holger Hans Peter Freyther9d6f0622017-07-09 13:18:17 +0200702static void insert_extra(struct tlv_parsed *tp,
703 struct sgsn_subscriber_data *data,
704 struct sgsn_subscriber_pdp_data *pdp)
Holger Hans Peter Freyther8cedded2015-04-23 11:33:35 -0400705{
706 tp->lv[OSMO_IE_GSM_SUB_QOS].len = pdp->qos_subscribed_len;
707 tp->lv[OSMO_IE_GSM_SUB_QOS].val = pdp->qos_subscribed;
Holger Hans Peter Freyther9d6f0622017-07-09 13:18:17 +0200708
709 /* Prefer PDP charging characteristics of per subscriber one */
710 if (pdp->has_pdp_charg) {
711 tp->lv[OSMO_IE_GSM_CHARG_CHAR].len = sizeof(pdp->pdp_charg);
712 tp->lv[OSMO_IE_GSM_CHARG_CHAR].val = &pdp->pdp_charg[0];
713 } else if (data->has_pdp_charg) {
714 tp->lv[OSMO_IE_GSM_CHARG_CHAR].len = sizeof(data->pdp_charg);
715 tp->lv[OSMO_IE_GSM_CHARG_CHAR].val = &data->pdp_charg[0];
716 }
Holger Hans Peter Freyther8cedded2015-04-23 11:33:35 -0400717}
718
719/**
720 * The tlv_parsed tp parameter will be modified to insert a
721 * OSMO_IE_GSM_SUB_QOS in case the data is available in the
722 * PDP context handling.
723 */
Jacob Erlbeck277b71e2015-02-02 18:03:05 +0100724struct sgsn_ggsn_ctx *sgsn_mm_ctx_find_ggsn_ctx(struct sgsn_mm_ctx *mmctx,
725 struct tlv_parsed *tp,
Holger Hans Peter Freyther39c430e2015-05-25 12:26:49 +0800726 enum gsm48_gsm_cause *gsm_cause,
727 char *out_apn_str)
Jacob Erlbeck277b71e2015-02-02 18:03:05 +0100728{
729 char req_apn_str[GSM_APN_LENGTH] = {0};
730 const struct apn_ctx *apn_ctx = NULL;
731 const char *selected_apn_str = NULL;
732 struct sgsn_subscriber_pdp_data *pdp;
733 struct sgsn_ggsn_ctx *ggsn = NULL;
734 int allow_any_apn = 0;
735
Holger Hans Peter Freyther39c430e2015-05-25 12:26:49 +0800736 out_apn_str[0] = '\0';
737
Jacob Erlbeck277b71e2015-02-02 18:03:05 +0100738 if (TLVP_PRESENT(tp, GSM48_IE_GSM_APN)) {
739 if (TLVP_LEN(tp, GSM48_IE_GSM_APN) >= GSM_APN_LENGTH - 1) {
740 LOGMMCTXP(LOGL_ERROR, mmctx, "APN IE too long\n");
741 *gsm_cause = GSM_CAUSE_INV_MAND_INFO;
742 return NULL;
743 }
744
745 gprs_apn_to_str(req_apn_str,
746 TLVP_VAL(tp, GSM48_IE_GSM_APN),
747 TLVP_LEN(tp, GSM48_IE_GSM_APN));
748
749 if (strcmp(req_apn_str, "*") == 0)
750 req_apn_str[0] = 0;
751 }
752
Holger Hans Peter Freyther9270d992015-05-24 20:51:17 +0800753 if (mmctx->subscr == NULL)
Jacob Erlbeck277b71e2015-02-02 18:03:05 +0100754 allow_any_apn = 1;
755
756 if (strlen(req_apn_str) == 0 && !allow_any_apn) {
757 /* No specific APN requested, check for an APN that is both
758 * granted and configured */
759
760 llist_for_each_entry(pdp, &mmctx->subscr->sgsn_data->pdp_list, list) {
761 if (strcmp(pdp->apn_str, "*") == 0)
762 {
763 allow_any_apn = 1;
764 selected_apn_str = "";
Holger Hans Peter Freyther9d6f0622017-07-09 13:18:17 +0200765 insert_extra(tp, mmctx->subscr->sgsn_data, pdp);
Jacob Erlbeck277b71e2015-02-02 18:03:05 +0100766 continue;
767 }
768 if (!llist_empty(&sgsn_apn_ctxts)) {
769 apn_ctx = sgsn_apn_ctx_match(req_apn_str, mmctx->imsi);
770 /* Not configured */
771 if (apn_ctx == NULL)
772 continue;
773 }
Holger Hans Peter Freyther9d6f0622017-07-09 13:18:17 +0200774 insert_extra(tp, mmctx->subscr->sgsn_data, pdp);
Jacob Erlbeck277b71e2015-02-02 18:03:05 +0100775 selected_apn_str = pdp->apn_str;
776 break;
777 }
778 } else if (!allow_any_apn) {
779 /* Check whether the given APN is granted */
780 llist_for_each_entry(pdp, &mmctx->subscr->sgsn_data->pdp_list, list) {
781 if (strcmp(pdp->apn_str, "*") == 0) {
Holger Hans Peter Freyther9d6f0622017-07-09 13:18:17 +0200782 insert_extra(tp, mmctx->subscr->sgsn_data, pdp);
Jacob Erlbeck277b71e2015-02-02 18:03:05 +0100783 selected_apn_str = req_apn_str;
784 allow_any_apn = 1;
785 continue;
786 }
787 if (strcasecmp(pdp->apn_str, req_apn_str) == 0) {
Holger Hans Peter Freyther9d6f0622017-07-09 13:18:17 +0200788 insert_extra(tp, mmctx->subscr->sgsn_data, pdp);
Jacob Erlbeck277b71e2015-02-02 18:03:05 +0100789 selected_apn_str = req_apn_str;
790 break;
791 }
792 }
793 } else if (strlen(req_apn_str) != 0) {
794 /* Any APN is allowed */
795 selected_apn_str = req_apn_str;
796 } else {
797 /* Prefer the GGSN associated with the wildcard APN */
798 selected_apn_str = "";
799 }
800
801 if (!allow_any_apn && selected_apn_str == NULL) {
802 /* Access not granted */
803 LOGMMCTXP(LOGL_NOTICE, mmctx,
804 "The requested APN '%s' is not allowed\n",
805 req_apn_str);
806 *gsm_cause = GSM_CAUSE_REQ_SERV_OPT_NOTSUB;
807 return NULL;
808 }
809
Holger Hans Peter Freyther39c430e2015-05-25 12:26:49 +0800810 /* copy the selected apn_str */
Holger Hans Peter Freytherf2e114a2015-06-02 09:33:31 +0200811 if (selected_apn_str)
812 strcpy(out_apn_str, selected_apn_str);
813 else
814 out_apn_str[0] = '\0';
Holger Hans Peter Freyther39c430e2015-05-25 12:26:49 +0800815
Jacob Erlbeck277b71e2015-02-02 18:03:05 +0100816 if (apn_ctx == NULL && selected_apn_str)
817 apn_ctx = sgsn_apn_ctx_match(selected_apn_str, mmctx->imsi);
818
819 if (apn_ctx != NULL) {
820 ggsn = apn_ctx->ggsn;
821 } else if (llist_empty(&sgsn_apn_ctxts)) {
822 /* No configuration -> use GGSN 0 */
823 ggsn = sgsn_ggsn_ctx_by_id(0);
824 } else if (allow_any_apn &&
825 (selected_apn_str == NULL || strlen(selected_apn_str) == 0)) {
826 /* No APN given and no default configuration -> Use GGSN 0 */
827 ggsn = sgsn_ggsn_ctx_by_id(0);
828 } else {
829 /* No matching configuration found */
830 LOGMMCTXP(LOGL_NOTICE, mmctx,
831 "The selected APN '%s' has not been configured\n",
832 selected_apn_str);
833 *gsm_cause = GSM_CAUSE_MISSING_APN;
834 return NULL;
835 }
836
Holger Hans Peter Freyther08bb84b2015-05-25 14:35:10 +0800837 if (!ggsn) {
838 LOGMMCTXP(LOGL_NOTICE, mmctx,
839 "No static GGSN configured. Selected APN '%s'\n",
840 selected_apn_str);
841 return NULL;
842 }
843
Jacob Erlbeck277b71e2015-02-02 18:03:05 +0100844 LOGMMCTXP(LOGL_INFO, mmctx,
845 "Found GGSN %d for APN '%s' (requested '%s')\n",
846 ggsn->id, selected_apn_str ? selected_apn_str : "---",
847 req_apn_str);
848
849 return ggsn;
850}
851
Jacob Erlbeck81ffb742015-01-23 11:33:51 +0100852static void sgsn_llme_cleanup_free(struct gprs_llc_llme *llme)
853{
854 struct sgsn_mm_ctx *mmctx = NULL;
855
856 llist_for_each_entry(mmctx, &sgsn_mm_ctxts, list) {
Harald Weltef97ee042015-12-25 19:12:21 +0100857 if (llme == mmctx->gb.llme) {
Jacob Erlbeck81ffb742015-01-23 11:33:51 +0100858 gsm0408_gprs_access_cancelled(mmctx, SGSN_ERROR_CAUSE_NONE);
859 return;
860 }
861 }
862
863 /* No MM context found */
864 LOGP(DGPRS, LOGL_INFO, "Deleting orphaned LLME, TLLI 0x%08x\n",
865 llme->tlli);
Max39550252016-06-28 17:39:20 +0200866 gprs_llgmm_unassign(llme);
Jacob Erlbeck81ffb742015-01-23 11:33:51 +0100867}
868
869static void sgsn_llme_check_cb(void *data_)
870{
871 struct gprs_llc_llme *llme, *llme_tmp;
872 struct timespec now_tp;
873 time_t now, age;
874 time_t max_age = gprs_max_time_to_idle();
875
876 int rc;
877
878 rc = clock_gettime(CLOCK_MONOTONIC, &now_tp);
879 OSMO_ASSERT(rc >= 0);
880 now = now_tp.tv_sec;
881
882 LOGP(DGPRS, LOGL_DEBUG,
883 "Checking for inactive LLMEs, time = %u\n", (unsigned)now);
884
885 llist_for_each_entry_safe(llme, llme_tmp, &gprs_llc_llmes, list) {
886 if (llme->age_timestamp == GPRS_LLME_RESET_AGE)
887 llme->age_timestamp = now;
888
889 age = now - llme->age_timestamp;
890
891 if (age > max_age || age < 0) {
892 LOGP(DGPRS, LOGL_INFO,
893 "Inactivity timeout for TLLI 0x%08x, age %d\n",
894 llme->tlli, (int)age);
895 sgsn_llme_cleanup_free(llme);
896 }
897 }
898
899 osmo_timer_schedule(&sgsn->llme_timer, GPRS_LLME_CHECK_TICK, 0);
900}
901
902void sgsn_inst_init()
903{
Pablo Neira Ayuso51215762017-05-08 20:57:52 +0200904 osmo_timer_setup(&sgsn->llme_timer, sgsn_llme_check_cb, NULL);
Jacob Erlbeck81ffb742015-01-23 11:33:51 +0100905 osmo_timer_schedule(&sgsn->llme_timer, GPRS_LLME_CHECK_TICK, 0);
906}
907