blob: 555be57f59e4ade8f664e5ad3f87899b1ba221a1 [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 Erlbecke671d252015-01-26 14:43:07 +0100189 /* Unlink from global list of MM contexts */
190 llist_del(&mm->list);
191
192 /* Free all PDP contexts */
193 llist_for_each_entry_safe(pdp, pdp2, &mm->pdp_list, list)
194 sgsn_pdp_ctx_free(pdp);
195
196 rate_ctr_group_free(mm->ctrg);
197
198 talloc_free(mm);
199}
200
201void sgsn_mm_ctx_cleanup_free(struct sgsn_mm_ctx *mm)
202{
203 struct gprs_llc_llme *llme = mm->llme;
204 uint32_t tlli = mm->tlli;
205 struct sgsn_pdp_ctx *pdp, *pdp2;
206
207 /* delete all existing PDP contexts for this MS */
208 llist_for_each_entry_safe(pdp, pdp2, &mm->pdp_list, list) {
209 LOGMMCTXP(LOGL_NOTICE, mm,
210 "Dropping PDP context for NSAPI=%u\n", pdp->nsapi);
211 sgsn_pdp_ctx_terminate(pdp);
212 }
213
Jacob Erlbeckae20b4b2014-10-20 16:05:55 +0200214 if (osmo_timer_pending(&mm->timer)) {
215 LOGMMCTXP(LOGL_INFO, mm, "Cancelling MM timer %u\n", mm->T);
216 osmo_timer_del(&mm->timer);
217 }
218
Jacob Erlbeckbe2c8d92014-11-12 10:18:09 +0100219 /* Detach from subscriber which is possibly freed then */
220 if (mm->subscr) {
Jacob Erlbeck306bb992015-01-26 13:41:11 +0100221 struct gsm_subscriber *subscr = subscr_get(mm->subscr);
Jacob Erlbeck3e4e58f2015-01-26 11:07:24 +0100222 gprs_subscr_cleanup(subscr);
Jacob Erlbeck37139e52015-01-23 13:52:55 +0100223 subscr_put(subscr);
Jacob Erlbeckbe2c8d92014-11-12 10:18:09 +0100224 }
225
Jacob Erlbecke671d252015-01-26 14:43:07 +0100226 sgsn_mm_ctx_free(mm);
227 mm = NULL;
Harald Weltec728eea2010-12-24 23:07:18 +0100228
Jacob Erlbecke671d252015-01-26 14:43:07 +0100229 /* TLLI unassignment, must be called after sgsn_mm_ctx_free */
230 gprs_llgmm_assign(llme, tlli, 0xffffffff, GPRS_ALGO_GEA0, NULL);
Harald Weltec728eea2010-12-24 23:07:18 +0100231}
Harald Welte77289c22010-05-18 14:32:29 +0200232
Jacob Erlbecke671d252015-01-26 14:43:07 +0100233
Harald Welte96df6062010-06-03 06:37:26 +0200234/* look up PDP context by MM context and NSAPI */
Harald Welted193cb32010-05-17 22:58:03 +0200235struct sgsn_pdp_ctx *sgsn_pdp_ctx_by_nsapi(const struct sgsn_mm_ctx *mm,
236 uint8_t nsapi)
237{
238 struct sgsn_pdp_ctx *pdp;
239
240 llist_for_each_entry(pdp, &mm->pdp_list, list) {
241 if (pdp->nsapi == nsapi)
242 return pdp;
243 }
244 return NULL;
245}
246
Harald Welte96df6062010-06-03 06:37:26 +0200247/* look up PDP context by MM context and transaction ID */
Harald Welte77289c22010-05-18 14:32:29 +0200248struct sgsn_pdp_ctx *sgsn_pdp_ctx_by_tid(const struct sgsn_mm_ctx *mm,
249 uint8_t tid)
250{
251 struct sgsn_pdp_ctx *pdp;
252
253 llist_for_each_entry(pdp, &mm->pdp_list, list) {
254 if (pdp->ti == tid)
255 return pdp;
256 }
257 return NULL;
258}
259
Harald Welte7b022ee2012-07-14 12:04:04 +0200260/* you don't want to use this directly, call sgsn_create_pdp_ctx() */
Harald Welted193cb32010-05-17 22:58:03 +0200261struct sgsn_pdp_ctx *sgsn_pdp_ctx_alloc(struct sgsn_mm_ctx *mm,
262 uint8_t nsapi)
263{
264 struct sgsn_pdp_ctx *pdp;
265
266 pdp = sgsn_pdp_ctx_by_nsapi(mm, nsapi);
267 if (pdp)
268 return NULL;
269
270 pdp = talloc_zero(tall_bsc_ctx, struct sgsn_pdp_ctx);
271 if (!pdp)
272 return NULL;
273
274 pdp->mm = mm;
275 pdp->nsapi = nsapi;
Harald Welteefbdee92010-06-10 00:20:12 +0200276 pdp->ctrg = rate_ctr_group_alloc(pdp, &pdpctx_ctrg_desc, nsapi);
Harald Welted193cb32010-05-17 22:58:03 +0200277 llist_add(&pdp->list, &mm->pdp_list);
278 llist_add(&pdp->g_list, &sgsn_pdp_ctxts);
279
280 return pdp;
281}
282
Harald Weltefdf453c2012-07-14 12:15:19 +0200283#include <pdp.h>
Jacob Erlbeck99985b52014-10-13 10:32:00 +0200284/*
285 * This function will not trigger any GSM DEACT PDP ACK messages, so you
286 * probably want to call sgsn_delete_pdp_ctx() instead if the connection
287 * isn't detached already.
288 */
289void sgsn_pdp_ctx_terminate(struct sgsn_pdp_ctx *pdp)
290{
291 OSMO_ASSERT(pdp->mm != NULL);
292
293 /* There might still be pending callbacks in libgtp. So the parts of
294 * this object relevant to GTP need to remain intact in this case. */
295
296 LOGPDPCTXP(LOGL_INFO, pdp, "Forcing release of PDP context\n");
297
298 /* Force the deactivation of the SNDCP layer */
299 sndcp_sm_deactivate_ind(&pdp->mm->llme->lle[pdp->sapi], pdp->nsapi);
300
301 /* Detach from MM context */
302 llist_del(&pdp->list);
303 pdp->mm = NULL;
304
305 sgsn_delete_pdp_ctx(pdp);
306}
307
308/*
309 * Don't call this function directly unless you know what you are doing.
310 * In normal conditions use sgsn_delete_pdp_ctx and in unspecified or
311 * implementation dependent abnormal ones sgsn_pdp_ctx_terminate.
312 */
Harald Welted193cb32010-05-17 22:58:03 +0200313void sgsn_pdp_ctx_free(struct sgsn_pdp_ctx *pdp)
314{
Harald Welte376d5e52010-06-28 18:57:21 +0200315 rate_ctr_group_free(pdp->ctrg);
Jacob Erlbeck99985b52014-10-13 10:32:00 +0200316 if (pdp->mm)
317 llist_del(&pdp->list);
Harald Welted193cb32010-05-17 22:58:03 +0200318 llist_del(&pdp->g_list);
Harald Weltefdf453c2012-07-14 12:15:19 +0200319
320 /* _if_ we still have a library handle, at least set it to NULL
321 * to avoid any dereferences of the now-deleted PDP context from
322 * sgsn_libgtp:cb_data_ind() */
323 if (pdp->lib) {
324 struct pdp_t *lib = pdp->lib;
Daniel Willmann46553142014-09-03 17:46:44 +0200325 LOGPDPCTXP(LOGL_NOTICE, pdp, "freeing PDP context that still "
Harald Weltefdf453c2012-07-14 12:15:19 +0200326 "has a libgtp handle attached to it, this shouldn't "
327 "happen!\n");
328 osmo_generate_backtrace();
329 lib->priv = NULL;
330 }
331
Harald Welted193cb32010-05-17 22:58:03 +0200332 talloc_free(pdp);
333}
334
335/* GGSN contexts */
336
Harald Welte77289c22010-05-18 14:32:29 +0200337struct sgsn_ggsn_ctx *sgsn_ggsn_ctx_alloc(uint32_t id)
Harald Welted193cb32010-05-17 22:58:03 +0200338{
Harald Welte77289c22010-05-18 14:32:29 +0200339 struct sgsn_ggsn_ctx *ggc;
Harald Welted193cb32010-05-17 22:58:03 +0200340
Harald Welte77289c22010-05-18 14:32:29 +0200341 ggc = talloc_zero(tall_bsc_ctx, struct sgsn_ggsn_ctx);
Harald Welted193cb32010-05-17 22:58:03 +0200342 if (!ggc)
343 return NULL;
344
345 ggc->id = id;
346 ggc->gtp_version = 1;
Harald Weltea9b473a2010-12-24 21:13:26 +0100347 ggc->remote_restart_ctr = -1;
Harald Welteab1d5622010-05-18 19:58:38 +0200348 /* if we are called from config file parse, this gsn doesn't exist yet */
349 ggc->gsn = sgsn->gsn;
Harald Welte119c2ba2010-05-18 18:39:00 +0200350 llist_add(&ggc->list, &sgsn_ggsn_ctxts);
Harald Welted193cb32010-05-17 22:58:03 +0200351
352 return ggc;
353}
354
Harald Welte77289c22010-05-18 14:32:29 +0200355struct sgsn_ggsn_ctx *sgsn_ggsn_ctx_by_id(uint32_t id)
Harald Welted193cb32010-05-17 22:58:03 +0200356{
Harald Welte77289c22010-05-18 14:32:29 +0200357 struct sgsn_ggsn_ctx *ggc;
Harald Welted193cb32010-05-17 22:58:03 +0200358
359 llist_for_each_entry(ggc, &sgsn_ggsn_ctxts, list) {
360 if (id == ggc->id)
361 return ggc;
362 }
363 return NULL;
364}
365
Harald Weltea9b473a2010-12-24 21:13:26 +0100366struct sgsn_ggsn_ctx *sgsn_ggsn_ctx_by_addr(struct in_addr *addr)
367{
368 struct sgsn_ggsn_ctx *ggc;
369
370 llist_for_each_entry(ggc, &sgsn_ggsn_ctxts, list) {
371 if (!memcmp(addr, &ggc->remote_addr, sizeof(*addr)))
372 return ggc;
373 }
374 return NULL;
375}
376
377
Harald Welte77289c22010-05-18 14:32:29 +0200378struct sgsn_ggsn_ctx *sgsn_ggsn_ctx_find_alloc(uint32_t id)
Harald Welted193cb32010-05-17 22:58:03 +0200379{
Harald Welte77289c22010-05-18 14:32:29 +0200380 struct sgsn_ggsn_ctx *ggc;
Harald Welted193cb32010-05-17 22:58:03 +0200381
Harald Welte77289c22010-05-18 14:32:29 +0200382 ggc = sgsn_ggsn_ctx_by_id(id);
Harald Welted193cb32010-05-17 22:58:03 +0200383 if (!ggc)
Harald Welte77289c22010-05-18 14:32:29 +0200384 ggc = sgsn_ggsn_ctx_alloc(id);
Harald Welted193cb32010-05-17 22:58:03 +0200385 return ggc;
386}
387
388/* APN contexts */
389
390#if 0
391struct apn_ctx *apn_ctx_alloc(const char *ap_name)
392{
393 struct apn_ctx *actx;
394
395 actx = talloc_zero(talloc_bsc_ctx, struct apn_ctx);
396 if (!actx)
397 return NULL;
398 actx->name = talloc_strdup(actx, ap_name);
399
400 return actx;
401}
402
403struct apn_ctx *apn_ctx_by_name(const char *name)
404{
405 struct apn_ctx *actx;
406
407 llist_for_each_entry(actx, &sgsn_apn_ctxts, list) {
408 if (!strcmp(name, actx->name))
409 return actx;
410 }
411 return NULL;
412}
413
414struct apn_ctx *apn_ctx_find_alloc(const char *name)
415{
416 struct apn_ctx *actx;
417
418 actx = apn_ctx_by_name(name);
419 if (!actx)
420 actx = apn_ctx_alloc(name);
421
422 return actx;
423}
424#endif
Harald Welte6463c072010-05-18 17:04:55 +0200425
426uint32_t sgsn_alloc_ptmsi(void)
427{
428 struct sgsn_mm_ctx *mm;
429 uint32_t ptmsi;
Jacob Erlbeckd8a65532015-01-15 18:51:31 +0100430 int max_retries = 100;
Harald Welte6463c072010-05-18 17:04:55 +0200431
432restart:
Jacob Erlbeckd8a65532015-01-15 18:51:31 +0100433 ptmsi = rand();
434 /* Enforce that the 2 MSB are set without loosing the distance between
435 * identical values. Since rand() has no duplicate values within a
436 * period (because the size of the state is the same like the size of
437 * the random value), this leads to a distance of period/4 when the
438 * distribution of the 2 MSB is uniform. This approach fails with a
439 * probability of (3/4)^max_retries, only 1% of the approaches will
440 * need more than 16 numbers (even distribution assumed).
441 *
442 * Alternatively, a freeze list could be used if another PRNG is used
443 * or when this approach proves to be not sufficient.
444 */
445 if (ptmsi >= 0xC0000000) {
446 if (!max_retries--)
447 goto failed;
448 goto restart;
449 }
450 ptmsi |= 0xC0000000;
451
452 if (ptmsi == GSM_RESERVED_TMSI) {
453 if (!max_retries--)
454 goto failed;
455 goto restart;
456 }
457
Harald Welte6463c072010-05-18 17:04:55 +0200458 llist_for_each_entry(mm, &sgsn_mm_ctxts, list) {
Jacob Erlbeck08fbeb82014-09-19 09:28:42 +0200459 if (mm->p_tmsi == ptmsi) {
460 if (!max_retries--)
461 goto failed;
Harald Welte6463c072010-05-18 17:04:55 +0200462 goto restart;
Jacob Erlbeck08fbeb82014-09-19 09:28:42 +0200463 }
Harald Welte6463c072010-05-18 17:04:55 +0200464 }
465
466 return ptmsi;
Jacob Erlbeck08fbeb82014-09-19 09:28:42 +0200467
468failed:
469 LOGP(DGPRS, LOGL_ERROR, "Failed to allocate a P-TMSI\n");
470 return GSM_RESERVED_TMSI;
Harald Welte6463c072010-05-18 17:04:55 +0200471}
Harald Weltea9b473a2010-12-24 21:13:26 +0100472
473static void drop_one_pdp(struct sgsn_pdp_ctx *pdp)
474{
475 if (pdp->mm->mm_state == GMM_REGISTERED_NORMAL)
476 gsm48_tx_gsm_deact_pdp_req(pdp, GSM_CAUSE_NET_FAIL);
477 else {
478 /* FIXME: GPRS paging in case MS is SUSPENDED */
Daniel Willmann46553142014-09-03 17:46:44 +0200479 LOGPDPCTXP(LOGL_NOTICE, pdp, "Hard-dropping PDP ctx due to GGSN "
Harald Weltea9b473a2010-12-24 21:13:26 +0100480 "recovery\n");
Harald Welte7b022ee2012-07-14 12:04:04 +0200481 /* FIXME: how to tell this to libgtp? */
Harald Weltea9b473a2010-12-24 21:13:26 +0100482 sgsn_pdp_ctx_free(pdp);
483 }
484}
485
486/* High-level function to be called in case a GGSN has disappeared or
Holger Hans Peter Freyther19e990d2014-10-27 10:24:37 +0100487 * otherwise lost state (recovery procedure) */
Harald Weltea9b473a2010-12-24 21:13:26 +0100488int drop_all_pdp_for_ggsn(struct sgsn_ggsn_ctx *ggsn)
489{
490 struct sgsn_mm_ctx *mm;
491 int num = 0;
492
493 llist_for_each_entry(mm, &sgsn_mm_ctxts, list) {
494 struct sgsn_pdp_ctx *pdp;
495 llist_for_each_entry(pdp, &mm->pdp_list, list) {
496 if (pdp->ggsn == ggsn) {
497 drop_one_pdp(pdp);
498 num++;
499 }
500 }
501 }
502
503 return num;
504}
Jacob Erlbeck78ecaf02014-09-05 14:32:36 +0200505
506int sgsn_force_reattach_oldmsg(struct msgb *oldmsg)
507{
Jacob Erlbeckabdf02b2014-10-31 12:20:49 +0100508 return gsm0408_gprs_force_reattach_oldmsg(oldmsg);
Jacob Erlbeck78ecaf02014-09-05 14:32:36 +0200509}
510
Jacob Erlbeck555b2e52015-01-26 13:52:42 +0100511void sgsn_update_subscriber_data(struct sgsn_mm_ctx *mmctx)
Jacob Erlbeck423f8bf2014-10-24 18:09:54 +0200512{
Jacob Erlbeck555b2e52015-01-26 13:52:42 +0100513 OSMO_ASSERT(mmctx != NULL);
Jacob Erlbeckc9391962014-12-18 09:53:07 +0100514 LOGMMCTXP(LOGL_INFO, mmctx, "Subscriber data update\n");
Jacob Erlbeckbe2c8d92014-11-12 10:18:09 +0100515
Jacob Erlbecka0b6efb2014-11-13 10:48:39 +0100516 sgsn_auth_update(mmctx);
Jacob Erlbeck423f8bf2014-10-24 18:09:54 +0200517}
Jacob Erlbeck81ffb742015-01-23 11:33:51 +0100518
519static void sgsn_llme_cleanup_free(struct gprs_llc_llme *llme)
520{
521 struct sgsn_mm_ctx *mmctx = NULL;
522
523 llist_for_each_entry(mmctx, &sgsn_mm_ctxts, list) {
524 if (llme == mmctx->llme) {
525 gsm0408_gprs_access_cancelled(mmctx, SGSN_ERROR_CAUSE_NONE);
526 return;
527 }
528 }
529
530 /* No MM context found */
531 LOGP(DGPRS, LOGL_INFO, "Deleting orphaned LLME, TLLI 0x%08x\n",
532 llme->tlli);
533 gprs_llgmm_assign(llme, llme->tlli, 0xffffffff, GPRS_ALGO_GEA0, NULL);
534}
535
536static void sgsn_llme_check_cb(void *data_)
537{
538 struct gprs_llc_llme *llme, *llme_tmp;
539 struct timespec now_tp;
540 time_t now, age;
541 time_t max_age = gprs_max_time_to_idle();
542
543 int rc;
544
545 rc = clock_gettime(CLOCK_MONOTONIC, &now_tp);
546 OSMO_ASSERT(rc >= 0);
547 now = now_tp.tv_sec;
548
549 LOGP(DGPRS, LOGL_DEBUG,
550 "Checking for inactive LLMEs, time = %u\n", (unsigned)now);
551
552 llist_for_each_entry_safe(llme, llme_tmp, &gprs_llc_llmes, list) {
553 if (llme->age_timestamp == GPRS_LLME_RESET_AGE)
554 llme->age_timestamp = now;
555
556 age = now - llme->age_timestamp;
557
558 if (age > max_age || age < 0) {
559 LOGP(DGPRS, LOGL_INFO,
560 "Inactivity timeout for TLLI 0x%08x, age %d\n",
561 llme->tlli, (int)age);
562 sgsn_llme_cleanup_free(llme);
563 }
564 }
565
566 osmo_timer_schedule(&sgsn->llme_timer, GPRS_LLME_CHECK_TICK, 0);
567}
568
569void sgsn_inst_init()
570{
571 sgsn->llme_timer.cb = sgsn_llme_check_cb;
572 sgsn->llme_timer.data = NULL;
573
574 osmo_timer_schedule(&sgsn->llme_timer, GPRS_LLME_CHECK_TICK, 0);
575}
576