blob: 781be3ffb7fc00ff74164c826212af937ab2e831 [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>
Harald Weltefdf453c2012-07-14 12:15:19 +020028#include <osmocom/core/backtrace.h>
Harald Welteea34a4e2012-06-16 14:59:56 +080029#include <osmocom/gprs/gprs_ns.h>
30#include <osmocom/gprs/gprs_bssgp.h>
31
Harald Welte9b455bf2010-03-14 15:45:01 +080032#include <openbsc/gsm_subscriber.h>
Harald Weltecb991632010-04-26 19:18:54 +020033#include <openbsc/debug.h>
Harald Welte9b455bf2010-03-14 15:45:01 +080034#include <openbsc/gprs_sgsn.h>
Harald Welteab1d5622010-05-18 19:58:38 +020035#include <openbsc/sgsn.h>
Harald Weltea9b473a2010-12-24 21:13:26 +010036#include <openbsc/gsm_04_08_gprs.h>
37#include <openbsc/gprs_gmm.h>
Jacob Erlbeck99985b52014-10-13 10:32:00 +020038#include "openbsc/gprs_llc.h"
Harald Welteab1d5622010-05-18 19:58:38 +020039
Jacob Erlbeck81ffb742015-01-23 11:33:51 +010040#include <time.h>
41
42#define GPRS_LLME_CHECK_TICK 30
43
Harald Welteab1d5622010-05-18 19:58:38 +020044extern struct sgsn_instance *sgsn;
Harald Welte9b455bf2010-03-14 15:45:01 +080045
Harald Welted193cb32010-05-17 22:58:03 +020046LLIST_HEAD(sgsn_mm_ctxts);
47LLIST_HEAD(sgsn_ggsn_ctxts);
48LLIST_HEAD(sgsn_apn_ctxts);
49LLIST_HEAD(sgsn_pdp_ctxts);
Harald Welte9b455bf2010-03-14 15:45:01 +080050
Harald Welte8acd88f2010-05-18 10:57:45 +020051static const struct rate_ctr_desc mmctx_ctr_description[] = {
52 { "sign.packets.in", "Signalling Messages ( In)" },
53 { "sign.packets.out", "Signalling Messages (Out)" },
54 { "udata.packets.in", "User Data Messages ( In)" },
55 { "udata.packets.out", "User Data Messages (Out)" },
56 { "udata.bytes.in", "User Data Bytes ( In)" },
57 { "udata.bytes.out", "User Data Bytes (Out)" },
58 { "pdp_ctx_act", "PDP Context Activations " },
59 { "suspend", "SUSPEND Count " },
60 { "paging.ps", "Paging Packet Switched " },
61 { "paging.cs", "Paging Circuit Switched " },
62 { "ra_update", "Routing Area Update " },
63};
64
65static const struct rate_ctr_group_desc mmctx_ctrg_desc = {
66 .group_name_prefix = "sgsn.mmctx",
67 .group_description = "SGSN MM Context Statistics",
68 .num_ctr = ARRAY_SIZE(mmctx_ctr_description),
69 .ctr_desc = mmctx_ctr_description,
70};
71
Harald Welteefbdee92010-06-10 00:20:12 +020072static const struct rate_ctr_desc pdpctx_ctr_description[] = {
73 { "udata.packets.in", "User Data Messages ( In)" },
74 { "udata.packets.out", "User Data Messages (Out)" },
75 { "udata.bytes.in", "User Data Bytes ( In)" },
76 { "udata.bytes.out", "User Data Bytes (Out)" },
77};
78
79static const struct rate_ctr_group_desc pdpctx_ctrg_desc = {
80 .group_name_prefix = "sgsn.pdpctx",
81 .group_description = "SGSN PDP Context Statistics",
82 .num_ctr = ARRAY_SIZE(pdpctx_ctr_description),
83 .ctr_desc = pdpctx_ctr_description,
84};
85
Harald Welte9b455bf2010-03-14 15:45:01 +080086static int ra_id_equals(const struct gprs_ra_id *id1,
87 const struct gprs_ra_id *id2)
88{
89 return (id1->mcc == id2->mcc && id1->mnc == id2->mnc &&
90 id1->lac == id2->lac && id1->rac == id2->rac);
91}
92
Harald Weltef6bd3402010-12-23 23:34:43 +010093/* See 03.02 Chapter 2.6 */
94static inline uint32_t tlli_foreign(uint32_t tlli)
95{
96 return ((tlli | 0x80000000) & ~0x40000000);
97}
98
Harald Welte9b455bf2010-03-14 15:45:01 +080099/* look-up a SGSN MM context based on TLLI + RAI */
Harald Welteeaa614c2010-05-02 11:26:34 +0200100struct sgsn_mm_ctx *sgsn_mm_ctx_by_tlli(uint32_t tlli,
Harald Welte9b455bf2010-03-14 15:45:01 +0800101 const struct gprs_ra_id *raid)
102{
103 struct sgsn_mm_ctx *ctx;
Harald Welteab1d5622010-05-18 19:58:38 +0200104 int tlli_type;
Harald Welte9b455bf2010-03-14 15:45:01 +0800105
106 llist_for_each_entry(ctx, &sgsn_mm_ctxts, list) {
107 if (tlli == ctx->tlli &&
108 ra_id_equals(raid, &ctx->ra))
109 return ctx;
110 }
Harald Welteab1d5622010-05-18 19:58:38 +0200111
112 tlli_type = gprs_tlli_type(tlli);
Harald Weltef6bd3402010-12-23 23:34:43 +0100113 switch (tlli_type) {
114 case TLLI_LOCAL:
Harald Welteab1d5622010-05-18 19:58:38 +0200115 llist_for_each_entry(ctx, &sgsn_mm_ctxts, list) {
Harald Weltec2e8cc42010-05-31 20:23:38 +0200116 if ((ctx->p_tmsi | 0xC0000000) == tlli ||
117 (ctx->p_tmsi_old && (ctx->p_tmsi_old | 0xC0000000) == tlli)) {
Harald Welteab1d5622010-05-18 19:58:38 +0200118 ctx->tlli = tlli;
119 return ctx;
120 }
121 }
Harald Weltef6bd3402010-12-23 23:34:43 +0100122 break;
123 case TLLI_FOREIGN:
124 llist_for_each_entry(ctx, &sgsn_mm_ctxts, list) {
125 if (tlli == tlli_foreign(ctx->tlli) &&
126 ra_id_equals(raid, &ctx->ra))
127 return ctx;
128 }
129 break;
130 default:
131 break;
Harald Welteab1d5622010-05-18 19:58:38 +0200132 }
133
Harald Welte9b455bf2010-03-14 15:45:01 +0800134 return NULL;
135}
136
Harald Welteeaa614c2010-05-02 11:26:34 +0200137struct sgsn_mm_ctx *sgsn_mm_ctx_by_ptmsi(uint32_t p_tmsi)
Harald Welte9b455bf2010-03-14 15:45:01 +0800138{
139 struct sgsn_mm_ctx *ctx;
140
141 llist_for_each_entry(ctx, &sgsn_mm_ctxts, list) {
Harald Weltec2e8cc42010-05-31 20:23:38 +0200142 if (p_tmsi == ctx->p_tmsi ||
143 (ctx->p_tmsi_old && ctx->p_tmsi_old == p_tmsi))
Harald Welte9b455bf2010-03-14 15:45:01 +0800144 return ctx;
145 }
146 return NULL;
147}
148
149struct sgsn_mm_ctx *sgsn_mm_ctx_by_imsi(const char *imsi)
150{
151 struct sgsn_mm_ctx *ctx;
152
153 llist_for_each_entry(ctx, &sgsn_mm_ctxts, list) {
154 if (!strcmp(imsi, ctx->imsi))
155 return ctx;
156 }
157 return NULL;
158
159}
160
161/* Allocate a new SGSN MM context */
Harald Welteeaa614c2010-05-02 11:26:34 +0200162struct sgsn_mm_ctx *sgsn_mm_ctx_alloc(uint32_t tlli,
Harald Welte9b455bf2010-03-14 15:45:01 +0800163 const struct gprs_ra_id *raid)
164{
Harald Welte2720e732010-05-17 00:44:57 +0200165 struct sgsn_mm_ctx *ctx;
Harald Welte9b455bf2010-03-14 15:45:01 +0800166
Harald Welte2720e732010-05-17 00:44:57 +0200167 ctx = talloc_zero(tall_bsc_ctx, struct sgsn_mm_ctx);
Harald Welte9b455bf2010-03-14 15:45:01 +0800168 if (!ctx)
169 return NULL;
170
171 memcpy(&ctx->ra, raid, sizeof(ctx->ra));
172 ctx->tlli = tlli;
173 ctx->mm_state = GMM_DEREGISTERED;
Jacob Erlbeckbd0cf112014-12-01 12:33:33 +0100174 ctx->auth_triplet.key_seq = GSM_KEY_SEQ_INVAL;
Harald Welte8acd88f2010-05-18 10:57:45 +0200175 ctx->ctrg = rate_ctr_group_alloc(ctx, &mmctx_ctrg_desc, tlli);
Harald Welte6ffbaab2010-05-18 12:44:45 +0200176 INIT_LLIST_HEAD(&ctx->pdp_list);
Harald Welte9b455bf2010-03-14 15:45:01 +0800177
178 llist_add(&ctx->list, &sgsn_mm_ctxts);
179
180 return ctx;
181}
Harald Welted193cb32010-05-17 22:58:03 +0200182
Harald Welte7b022ee2012-07-14 12:04:04 +0200183/* this is a hard _free_ function, it doesn't clean up the PDP contexts
184 * in libgtp! */
Harald Weltec728eea2010-12-24 23:07:18 +0100185void sgsn_mm_ctx_free(struct sgsn_mm_ctx *mm)
186{
187 struct sgsn_pdp_ctx *pdp, *pdp2;
188
Jacob Erlbeckae20b4b2014-10-20 16:05:55 +0200189 if (osmo_timer_pending(&mm->timer)) {
190 LOGMMCTXP(LOGL_INFO, mm, "Cancelling MM timer %u\n", mm->T);
191 osmo_timer_del(&mm->timer);
192 }
193
Holger Hans Peter Freythere47d4f62015-01-20 21:14:03 +0100194 /* Unlink from global list of MM contexts */
195 llist_del(&mm->list);
196
Jacob Erlbeckbe2c8d92014-11-12 10:18:09 +0100197 /* Detach from subscriber which is possibly freed then */
198 if (mm->subscr) {
Jacob Erlbeck306bb992015-01-26 13:41:11 +0100199 struct gsm_subscriber *subscr = subscr_get(mm->subscr);
Jacob Erlbeck3e4e58f2015-01-26 11:07:24 +0100200 gprs_subscr_cleanup(subscr);
Jacob Erlbeck37139e52015-01-23 13:52:55 +0100201 subscr_put(subscr);
Jacob Erlbeckbe2c8d92014-11-12 10:18:09 +0100202 }
203
Harald Weltec728eea2010-12-24 23:07:18 +0100204 /* Free all PDP contexts */
205 llist_for_each_entry_safe(pdp, pdp2, &mm->pdp_list, list)
206 sgsn_pdp_ctx_free(pdp);
207
208 rate_ctr_group_free(mm->ctrg);
209
210 talloc_free(mm);
211}
Harald Welte77289c22010-05-18 14:32:29 +0200212
Harald Welte96df6062010-06-03 06:37:26 +0200213/* look up PDP context by MM context and NSAPI */
Harald Welted193cb32010-05-17 22:58:03 +0200214struct sgsn_pdp_ctx *sgsn_pdp_ctx_by_nsapi(const struct sgsn_mm_ctx *mm,
215 uint8_t nsapi)
216{
217 struct sgsn_pdp_ctx *pdp;
218
219 llist_for_each_entry(pdp, &mm->pdp_list, list) {
220 if (pdp->nsapi == nsapi)
221 return pdp;
222 }
223 return NULL;
224}
225
Harald Welte96df6062010-06-03 06:37:26 +0200226/* look up PDP context by MM context and transaction ID */
Harald Welte77289c22010-05-18 14:32:29 +0200227struct sgsn_pdp_ctx *sgsn_pdp_ctx_by_tid(const struct sgsn_mm_ctx *mm,
228 uint8_t tid)
229{
230 struct sgsn_pdp_ctx *pdp;
231
232 llist_for_each_entry(pdp, &mm->pdp_list, list) {
233 if (pdp->ti == tid)
234 return pdp;
235 }
236 return NULL;
237}
238
Harald Welte7b022ee2012-07-14 12:04:04 +0200239/* you don't want to use this directly, call sgsn_create_pdp_ctx() */
Harald Welted193cb32010-05-17 22:58:03 +0200240struct sgsn_pdp_ctx *sgsn_pdp_ctx_alloc(struct sgsn_mm_ctx *mm,
241 uint8_t nsapi)
242{
243 struct sgsn_pdp_ctx *pdp;
244
245 pdp = sgsn_pdp_ctx_by_nsapi(mm, nsapi);
246 if (pdp)
247 return NULL;
248
249 pdp = talloc_zero(tall_bsc_ctx, struct sgsn_pdp_ctx);
250 if (!pdp)
251 return NULL;
252
253 pdp->mm = mm;
254 pdp->nsapi = nsapi;
Harald Welteefbdee92010-06-10 00:20:12 +0200255 pdp->ctrg = rate_ctr_group_alloc(pdp, &pdpctx_ctrg_desc, nsapi);
Harald Welted193cb32010-05-17 22:58:03 +0200256 llist_add(&pdp->list, &mm->pdp_list);
257 llist_add(&pdp->g_list, &sgsn_pdp_ctxts);
258
259 return pdp;
260}
261
Harald Weltefdf453c2012-07-14 12:15:19 +0200262#include <pdp.h>
Jacob Erlbeck99985b52014-10-13 10:32:00 +0200263/*
264 * This function will not trigger any GSM DEACT PDP ACK messages, so you
265 * probably want to call sgsn_delete_pdp_ctx() instead if the connection
266 * isn't detached already.
267 */
268void sgsn_pdp_ctx_terminate(struct sgsn_pdp_ctx *pdp)
269{
270 OSMO_ASSERT(pdp->mm != NULL);
271
272 /* There might still be pending callbacks in libgtp. So the parts of
273 * this object relevant to GTP need to remain intact in this case. */
274
275 LOGPDPCTXP(LOGL_INFO, pdp, "Forcing release of PDP context\n");
276
277 /* Force the deactivation of the SNDCP layer */
278 sndcp_sm_deactivate_ind(&pdp->mm->llme->lle[pdp->sapi], pdp->nsapi);
279
280 /* Detach from MM context */
281 llist_del(&pdp->list);
282 pdp->mm = NULL;
283
284 sgsn_delete_pdp_ctx(pdp);
285}
286
287/*
288 * Don't call this function directly unless you know what you are doing.
289 * In normal conditions use sgsn_delete_pdp_ctx and in unspecified or
290 * implementation dependent abnormal ones sgsn_pdp_ctx_terminate.
291 */
Harald Welted193cb32010-05-17 22:58:03 +0200292void sgsn_pdp_ctx_free(struct sgsn_pdp_ctx *pdp)
293{
Harald Welte376d5e52010-06-28 18:57:21 +0200294 rate_ctr_group_free(pdp->ctrg);
Jacob Erlbeck99985b52014-10-13 10:32:00 +0200295 if (pdp->mm)
296 llist_del(&pdp->list);
Harald Welted193cb32010-05-17 22:58:03 +0200297 llist_del(&pdp->g_list);
Harald Weltefdf453c2012-07-14 12:15:19 +0200298
299 /* _if_ we still have a library handle, at least set it to NULL
300 * to avoid any dereferences of the now-deleted PDP context from
301 * sgsn_libgtp:cb_data_ind() */
302 if (pdp->lib) {
303 struct pdp_t *lib = pdp->lib;
Daniel Willmann46553142014-09-03 17:46:44 +0200304 LOGPDPCTXP(LOGL_NOTICE, pdp, "freeing PDP context that still "
Harald Weltefdf453c2012-07-14 12:15:19 +0200305 "has a libgtp handle attached to it, this shouldn't "
306 "happen!\n");
307 osmo_generate_backtrace();
308 lib->priv = NULL;
309 }
310
Harald Welted193cb32010-05-17 22:58:03 +0200311 talloc_free(pdp);
312}
313
314/* GGSN contexts */
315
Harald Welte77289c22010-05-18 14:32:29 +0200316struct sgsn_ggsn_ctx *sgsn_ggsn_ctx_alloc(uint32_t id)
Harald Welted193cb32010-05-17 22:58:03 +0200317{
Harald Welte77289c22010-05-18 14:32:29 +0200318 struct sgsn_ggsn_ctx *ggc;
Harald Welted193cb32010-05-17 22:58:03 +0200319
Harald Welte77289c22010-05-18 14:32:29 +0200320 ggc = talloc_zero(tall_bsc_ctx, struct sgsn_ggsn_ctx);
Harald Welted193cb32010-05-17 22:58:03 +0200321 if (!ggc)
322 return NULL;
323
324 ggc->id = id;
325 ggc->gtp_version = 1;
Harald Weltea9b473a2010-12-24 21:13:26 +0100326 ggc->remote_restart_ctr = -1;
Harald Welteab1d5622010-05-18 19:58:38 +0200327 /* if we are called from config file parse, this gsn doesn't exist yet */
328 ggc->gsn = sgsn->gsn;
Harald Welte119c2ba2010-05-18 18:39:00 +0200329 llist_add(&ggc->list, &sgsn_ggsn_ctxts);
Harald Welted193cb32010-05-17 22:58:03 +0200330
331 return ggc;
332}
333
Harald Welte77289c22010-05-18 14:32:29 +0200334struct sgsn_ggsn_ctx *sgsn_ggsn_ctx_by_id(uint32_t id)
Harald Welted193cb32010-05-17 22:58:03 +0200335{
Harald Welte77289c22010-05-18 14:32:29 +0200336 struct sgsn_ggsn_ctx *ggc;
Harald Welted193cb32010-05-17 22:58:03 +0200337
338 llist_for_each_entry(ggc, &sgsn_ggsn_ctxts, list) {
339 if (id == ggc->id)
340 return ggc;
341 }
342 return NULL;
343}
344
Harald Weltea9b473a2010-12-24 21:13:26 +0100345struct sgsn_ggsn_ctx *sgsn_ggsn_ctx_by_addr(struct in_addr *addr)
346{
347 struct sgsn_ggsn_ctx *ggc;
348
349 llist_for_each_entry(ggc, &sgsn_ggsn_ctxts, list) {
350 if (!memcmp(addr, &ggc->remote_addr, sizeof(*addr)))
351 return ggc;
352 }
353 return NULL;
354}
355
356
Harald Welte77289c22010-05-18 14:32:29 +0200357struct sgsn_ggsn_ctx *sgsn_ggsn_ctx_find_alloc(uint32_t id)
Harald Welted193cb32010-05-17 22:58:03 +0200358{
Harald Welte77289c22010-05-18 14:32:29 +0200359 struct sgsn_ggsn_ctx *ggc;
Harald Welted193cb32010-05-17 22:58:03 +0200360
Harald Welte77289c22010-05-18 14:32:29 +0200361 ggc = sgsn_ggsn_ctx_by_id(id);
Harald Welted193cb32010-05-17 22:58:03 +0200362 if (!ggc)
Harald Welte77289c22010-05-18 14:32:29 +0200363 ggc = sgsn_ggsn_ctx_alloc(id);
Harald Welted193cb32010-05-17 22:58:03 +0200364 return ggc;
365}
366
367/* APN contexts */
368
369#if 0
370struct apn_ctx *apn_ctx_alloc(const char *ap_name)
371{
372 struct apn_ctx *actx;
373
374 actx = talloc_zero(talloc_bsc_ctx, struct apn_ctx);
375 if (!actx)
376 return NULL;
377 actx->name = talloc_strdup(actx, ap_name);
378
379 return actx;
380}
381
382struct apn_ctx *apn_ctx_by_name(const char *name)
383{
384 struct apn_ctx *actx;
385
386 llist_for_each_entry(actx, &sgsn_apn_ctxts, list) {
387 if (!strcmp(name, actx->name))
388 return actx;
389 }
390 return NULL;
391}
392
393struct apn_ctx *apn_ctx_find_alloc(const char *name)
394{
395 struct apn_ctx *actx;
396
397 actx = apn_ctx_by_name(name);
398 if (!actx)
399 actx = apn_ctx_alloc(name);
400
401 return actx;
402}
403#endif
Harald Welte6463c072010-05-18 17:04:55 +0200404
405uint32_t sgsn_alloc_ptmsi(void)
406{
407 struct sgsn_mm_ctx *mm;
408 uint32_t ptmsi;
Jacob Erlbeckd8a65532015-01-15 18:51:31 +0100409 int max_retries = 100;
Harald Welte6463c072010-05-18 17:04:55 +0200410
411restart:
Jacob Erlbeckd8a65532015-01-15 18:51:31 +0100412 ptmsi = rand();
413 /* Enforce that the 2 MSB are set without loosing the distance between
414 * identical values. Since rand() has no duplicate values within a
415 * period (because the size of the state is the same like the size of
416 * the random value), this leads to a distance of period/4 when the
417 * distribution of the 2 MSB is uniform. This approach fails with a
418 * probability of (3/4)^max_retries, only 1% of the approaches will
419 * need more than 16 numbers (even distribution assumed).
420 *
421 * Alternatively, a freeze list could be used if another PRNG is used
422 * or when this approach proves to be not sufficient.
423 */
424 if (ptmsi >= 0xC0000000) {
425 if (!max_retries--)
426 goto failed;
427 goto restart;
428 }
429 ptmsi |= 0xC0000000;
430
431 if (ptmsi == GSM_RESERVED_TMSI) {
432 if (!max_retries--)
433 goto failed;
434 goto restart;
435 }
436
Harald Welte6463c072010-05-18 17:04:55 +0200437 llist_for_each_entry(mm, &sgsn_mm_ctxts, list) {
Jacob Erlbeck08fbeb82014-09-19 09:28:42 +0200438 if (mm->p_tmsi == ptmsi) {
439 if (!max_retries--)
440 goto failed;
Harald Welte6463c072010-05-18 17:04:55 +0200441 goto restart;
Jacob Erlbeck08fbeb82014-09-19 09:28:42 +0200442 }
Harald Welte6463c072010-05-18 17:04:55 +0200443 }
444
445 return ptmsi;
Jacob Erlbeck08fbeb82014-09-19 09:28:42 +0200446
447failed:
448 LOGP(DGPRS, LOGL_ERROR, "Failed to allocate a P-TMSI\n");
449 return GSM_RESERVED_TMSI;
Harald Welte6463c072010-05-18 17:04:55 +0200450}
Harald Weltea9b473a2010-12-24 21:13:26 +0100451
452static void drop_one_pdp(struct sgsn_pdp_ctx *pdp)
453{
454 if (pdp->mm->mm_state == GMM_REGISTERED_NORMAL)
455 gsm48_tx_gsm_deact_pdp_req(pdp, GSM_CAUSE_NET_FAIL);
456 else {
457 /* FIXME: GPRS paging in case MS is SUSPENDED */
Daniel Willmann46553142014-09-03 17:46:44 +0200458 LOGPDPCTXP(LOGL_NOTICE, pdp, "Hard-dropping PDP ctx due to GGSN "
Harald Weltea9b473a2010-12-24 21:13:26 +0100459 "recovery\n");
Harald Welte7b022ee2012-07-14 12:04:04 +0200460 /* FIXME: how to tell this to libgtp? */
Harald Weltea9b473a2010-12-24 21:13:26 +0100461 sgsn_pdp_ctx_free(pdp);
462 }
463}
464
465/* High-level function to be called in case a GGSN has disappeared or
Holger Hans Peter Freyther19e990d2014-10-27 10:24:37 +0100466 * otherwise lost state (recovery procedure) */
Harald Weltea9b473a2010-12-24 21:13:26 +0100467int drop_all_pdp_for_ggsn(struct sgsn_ggsn_ctx *ggsn)
468{
469 struct sgsn_mm_ctx *mm;
470 int num = 0;
471
472 llist_for_each_entry(mm, &sgsn_mm_ctxts, list) {
473 struct sgsn_pdp_ctx *pdp;
474 llist_for_each_entry(pdp, &mm->pdp_list, list) {
475 if (pdp->ggsn == ggsn) {
476 drop_one_pdp(pdp);
477 num++;
478 }
479 }
480 }
481
482 return num;
483}
Jacob Erlbeck78ecaf02014-09-05 14:32:36 +0200484
485int sgsn_force_reattach_oldmsg(struct msgb *oldmsg)
486{
Jacob Erlbeckabdf02b2014-10-31 12:20:49 +0100487 return gsm0408_gprs_force_reattach_oldmsg(oldmsg);
Jacob Erlbeck78ecaf02014-09-05 14:32:36 +0200488}
489
Jacob Erlbeck33b6dad2014-11-12 10:12:11 +0100490void sgsn_update_subscriber_data(struct sgsn_mm_ctx *mmctx,
491 struct gsm_subscriber *subscr)
Jacob Erlbeck423f8bf2014-10-24 18:09:54 +0200492{
Jacob Erlbeckbe2c8d92014-11-12 10:18:09 +0100493 if (!mmctx && subscr && strlen(subscr->imsi) > 0) {
494 mmctx = sgsn_mm_ctx_by_imsi(subscr->imsi);
495 OSMO_ASSERT(!mmctx || !mmctx->subscr || mmctx->subscr == subscr);
496 }
497
498 if (!mmctx) {
499 LOGP(DMM, LOGL_INFO,
500 "Subscriber data update for unregistered MM context, IMSI %s\n",
501 subscr->imsi);
502 return;
503 }
504
Jacob Erlbeckc9391962014-12-18 09:53:07 +0100505 LOGMMCTXP(LOGL_INFO, mmctx, "Subscriber data update\n");
Jacob Erlbeckbe2c8d92014-11-12 10:18:09 +0100506
Jacob Erlbecka1e03732014-12-02 11:28:38 +0100507 if (!subscr->sgsn_data->mm && !mmctx->subscr) {
Jacob Erlbeckbe2c8d92014-11-12 10:18:09 +0100508 mmctx->subscr = subscr_get(subscr);
Jacob Erlbecka1e03732014-12-02 11:28:38 +0100509 mmctx->subscr->sgsn_data->mm = mmctx;
Jacob Erlbeckbe2c8d92014-11-12 10:18:09 +0100510 }
Jacob Erlbeck423f8bf2014-10-24 18:09:54 +0200511
Jacob Erlbecka0b6efb2014-11-13 10:48:39 +0100512 sgsn_auth_update(mmctx);
Jacob Erlbeck423f8bf2014-10-24 18:09:54 +0200513}
Jacob Erlbeck81ffb742015-01-23 11:33:51 +0100514
515static void sgsn_llme_cleanup_free(struct gprs_llc_llme *llme)
516{
517 struct sgsn_mm_ctx *mmctx = NULL;
518
519 llist_for_each_entry(mmctx, &sgsn_mm_ctxts, list) {
520 if (llme == mmctx->llme) {
521 gsm0408_gprs_access_cancelled(mmctx, SGSN_ERROR_CAUSE_NONE);
522 return;
523 }
524 }
525
526 /* No MM context found */
527 LOGP(DGPRS, LOGL_INFO, "Deleting orphaned LLME, TLLI 0x%08x\n",
528 llme->tlli);
529 gprs_llgmm_assign(llme, llme->tlli, 0xffffffff, GPRS_ALGO_GEA0, NULL);
530}
531
532static void sgsn_llme_check_cb(void *data_)
533{
534 struct gprs_llc_llme *llme, *llme_tmp;
535 struct timespec now_tp;
536 time_t now, age;
537 time_t max_age = gprs_max_time_to_idle();
538
539 int rc;
540
541 rc = clock_gettime(CLOCK_MONOTONIC, &now_tp);
542 OSMO_ASSERT(rc >= 0);
543 now = now_tp.tv_sec;
544
545 LOGP(DGPRS, LOGL_DEBUG,
546 "Checking for inactive LLMEs, time = %u\n", (unsigned)now);
547
548 llist_for_each_entry_safe(llme, llme_tmp, &gprs_llc_llmes, list) {
549 if (llme->age_timestamp == GPRS_LLME_RESET_AGE)
550 llme->age_timestamp = now;
551
552 age = now - llme->age_timestamp;
553
554 if (age > max_age || age < 0) {
555 LOGP(DGPRS, LOGL_INFO,
556 "Inactivity timeout for TLLI 0x%08x, age %d\n",
557 llme->tlli, (int)age);
558 sgsn_llme_cleanup_free(llme);
559 }
560 }
561
562 osmo_timer_schedule(&sgsn->llme_timer, GPRS_LLME_CHECK_TICK, 0);
563}
564
565void sgsn_inst_init()
566{
567 sgsn->llme_timer.cb = sgsn_llme_check_cb;
568 sgsn->llme_timer.data = NULL;
569
570 osmo_timer_schedule(&sgsn->llme_timer, GPRS_LLME_CHECK_TICK, 0);
571}
572