blob: 54fe15cb191f637737aa0696d9b53fe5f19539e0 [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
Jacob Erlbeckcb1db8b2015-02-03 13:47:53 +0100390static struct apn_ctx *sgsn_apn_ctx_alloc(const char *ap_name, const char *imsi_prefix)
Harald Welted193cb32010-05-17 22:58:03 +0200391{
392 struct apn_ctx *actx;
393
Jacob Erlbeckcb1db8b2015-02-03 13:47:53 +0100394 actx = talloc_zero(tall_bsc_ctx, struct apn_ctx);
Harald Welted193cb32010-05-17 22:58:03 +0200395 if (!actx)
396 return NULL;
397 actx->name = talloc_strdup(actx, ap_name);
Jacob Erlbeckcb1db8b2015-02-03 13:47:53 +0100398 actx->imsi_prefix = talloc_strdup(actx, imsi_prefix);
399
400 llist_add_tail(&actx->list, &sgsn_apn_ctxts);
Harald Welted193cb32010-05-17 22:58:03 +0200401
402 return actx;
403}
404
Jacob Erlbeckcb1db8b2015-02-03 13:47:53 +0100405void sgsn_apn_ctx_free(struct apn_ctx *actx)
406{
407 llist_del(&actx->list);
408 talloc_free(actx);
409}
410
411struct apn_ctx *sgsn_apn_ctx_match(const char *name, const char *imsi)
412{
413 struct apn_ctx *actx;
414 struct apn_ctx *found_actx = NULL;
415 size_t imsi_prio = 0;
416 size_t name_prio = 0;
417 size_t name_req_len = strlen(name);
418
419 llist_for_each_entry(actx, &sgsn_apn_ctxts, list) {
420 size_t name_ref_len, imsi_ref_len;
421 const char *name_ref_start, *name_match_start;
422
423 imsi_ref_len = strlen(actx->imsi_prefix);
424 if (strncmp(actx->imsi_prefix, imsi, imsi_ref_len) != 0)
425 continue;
426
427 if (imsi_ref_len < imsi_prio)
428 continue;
429
430 /* IMSI matches */
431
432 name_ref_start = &actx->name[0];
433 if (name_ref_start[0] == '*') {
434 /* Suffix match */
435 name_ref_start += 1;
436 name_ref_len = strlen(name_ref_start);
437 if (name_ref_len > name_req_len)
438 continue;
439 } else {
440 name_ref_len = strlen(name_ref_start);
441 if (name_ref_len != name_req_len)
442 continue;
443 }
444
445 name_match_start = name + (name_req_len - name_ref_len);
446 if (strcasecmp(name_match_start, name_ref_start) != 0)
447 continue;
448
449 /* IMSI and name match */
450
451 if (imsi_ref_len == imsi_prio && name_ref_len < name_prio)
452 /* Lower priority, skip */
453 continue;
454
455 imsi_prio = imsi_ref_len;
456 name_prio = name_ref_len;
457 found_actx = actx;
458 }
459 return found_actx;
460}
461
462struct apn_ctx *sgsn_apn_ctx_by_name(const char *name, const char *imsi_prefix)
Harald Welted193cb32010-05-17 22:58:03 +0200463{
464 struct apn_ctx *actx;
465
466 llist_for_each_entry(actx, &sgsn_apn_ctxts, list) {
Jacob Erlbeckcb1db8b2015-02-03 13:47:53 +0100467 if (strcasecmp(name, actx->name) == 0 &&
468 strcasecmp(imsi_prefix, actx->imsi_prefix) == 0)
Harald Welted193cb32010-05-17 22:58:03 +0200469 return actx;
470 }
471 return NULL;
472}
473
Jacob Erlbeckcb1db8b2015-02-03 13:47:53 +0100474struct apn_ctx *sgsn_apn_ctx_find_alloc(const char *name, const char *imsi_prefix)
Harald Welted193cb32010-05-17 22:58:03 +0200475{
476 struct apn_ctx *actx;
477
Jacob Erlbeckcb1db8b2015-02-03 13:47:53 +0100478 actx = sgsn_apn_ctx_by_name(name, imsi_prefix);
Harald Welted193cb32010-05-17 22:58:03 +0200479 if (!actx)
Jacob Erlbeckcb1db8b2015-02-03 13:47:53 +0100480 actx = sgsn_apn_ctx_alloc(name, imsi_prefix);
Harald Welted193cb32010-05-17 22:58:03 +0200481
482 return actx;
483}
Harald Welte6463c072010-05-18 17:04:55 +0200484
485uint32_t sgsn_alloc_ptmsi(void)
486{
487 struct sgsn_mm_ctx *mm;
488 uint32_t ptmsi;
Jacob Erlbeckd8a65532015-01-15 18:51:31 +0100489 int max_retries = 100;
Harald Welte6463c072010-05-18 17:04:55 +0200490
491restart:
Jacob Erlbeckd8a65532015-01-15 18:51:31 +0100492 ptmsi = rand();
493 /* Enforce that the 2 MSB are set without loosing the distance between
494 * identical values. Since rand() has no duplicate values within a
495 * period (because the size of the state is the same like the size of
496 * the random value), this leads to a distance of period/4 when the
497 * distribution of the 2 MSB is uniform. This approach fails with a
498 * probability of (3/4)^max_retries, only 1% of the approaches will
499 * need more than 16 numbers (even distribution assumed).
500 *
501 * Alternatively, a freeze list could be used if another PRNG is used
502 * or when this approach proves to be not sufficient.
503 */
504 if (ptmsi >= 0xC0000000) {
505 if (!max_retries--)
506 goto failed;
507 goto restart;
508 }
509 ptmsi |= 0xC0000000;
510
511 if (ptmsi == GSM_RESERVED_TMSI) {
512 if (!max_retries--)
513 goto failed;
514 goto restart;
515 }
516
Harald Welte6463c072010-05-18 17:04:55 +0200517 llist_for_each_entry(mm, &sgsn_mm_ctxts, list) {
Jacob Erlbeck08fbeb82014-09-19 09:28:42 +0200518 if (mm->p_tmsi == ptmsi) {
519 if (!max_retries--)
520 goto failed;
Harald Welte6463c072010-05-18 17:04:55 +0200521 goto restart;
Jacob Erlbeck08fbeb82014-09-19 09:28:42 +0200522 }
Harald Welte6463c072010-05-18 17:04:55 +0200523 }
524
525 return ptmsi;
Jacob Erlbeck08fbeb82014-09-19 09:28:42 +0200526
527failed:
528 LOGP(DGPRS, LOGL_ERROR, "Failed to allocate a P-TMSI\n");
529 return GSM_RESERVED_TMSI;
Harald Welte6463c072010-05-18 17:04:55 +0200530}
Harald Weltea9b473a2010-12-24 21:13:26 +0100531
532static void drop_one_pdp(struct sgsn_pdp_ctx *pdp)
533{
534 if (pdp->mm->mm_state == GMM_REGISTERED_NORMAL)
535 gsm48_tx_gsm_deact_pdp_req(pdp, GSM_CAUSE_NET_FAIL);
536 else {
537 /* FIXME: GPRS paging in case MS is SUSPENDED */
Daniel Willmann46553142014-09-03 17:46:44 +0200538 LOGPDPCTXP(LOGL_NOTICE, pdp, "Hard-dropping PDP ctx due to GGSN "
Harald Weltea9b473a2010-12-24 21:13:26 +0100539 "recovery\n");
Harald Welte7b022ee2012-07-14 12:04:04 +0200540 /* FIXME: how to tell this to libgtp? */
Harald Weltea9b473a2010-12-24 21:13:26 +0100541 sgsn_pdp_ctx_free(pdp);
542 }
543}
544
545/* High-level function to be called in case a GGSN has disappeared or
Holger Hans Peter Freyther19e990d2014-10-27 10:24:37 +0100546 * otherwise lost state (recovery procedure) */
Harald Weltea9b473a2010-12-24 21:13:26 +0100547int drop_all_pdp_for_ggsn(struct sgsn_ggsn_ctx *ggsn)
548{
549 struct sgsn_mm_ctx *mm;
550 int num = 0;
551
552 llist_for_each_entry(mm, &sgsn_mm_ctxts, list) {
553 struct sgsn_pdp_ctx *pdp;
554 llist_for_each_entry(pdp, &mm->pdp_list, list) {
555 if (pdp->ggsn == ggsn) {
556 drop_one_pdp(pdp);
557 num++;
558 }
559 }
560 }
561
562 return num;
563}
Jacob Erlbeck78ecaf02014-09-05 14:32:36 +0200564
565int sgsn_force_reattach_oldmsg(struct msgb *oldmsg)
566{
Jacob Erlbeckabdf02b2014-10-31 12:20:49 +0100567 return gsm0408_gprs_force_reattach_oldmsg(oldmsg);
Jacob Erlbeck78ecaf02014-09-05 14:32:36 +0200568}
569
Jacob Erlbeck555b2e52015-01-26 13:52:42 +0100570void sgsn_update_subscriber_data(struct sgsn_mm_ctx *mmctx)
Jacob Erlbeck423f8bf2014-10-24 18:09:54 +0200571{
Jacob Erlbeck555b2e52015-01-26 13:52:42 +0100572 OSMO_ASSERT(mmctx != NULL);
Jacob Erlbeckc9391962014-12-18 09:53:07 +0100573 LOGMMCTXP(LOGL_INFO, mmctx, "Subscriber data update\n");
Jacob Erlbeckbe2c8d92014-11-12 10:18:09 +0100574
Jacob Erlbecka0b6efb2014-11-13 10:48:39 +0100575 sgsn_auth_update(mmctx);
Jacob Erlbeck423f8bf2014-10-24 18:09:54 +0200576}
Jacob Erlbeck81ffb742015-01-23 11:33:51 +0100577
578static void sgsn_llme_cleanup_free(struct gprs_llc_llme *llme)
579{
580 struct sgsn_mm_ctx *mmctx = NULL;
581
582 llist_for_each_entry(mmctx, &sgsn_mm_ctxts, list) {
583 if (llme == mmctx->llme) {
584 gsm0408_gprs_access_cancelled(mmctx, SGSN_ERROR_CAUSE_NONE);
585 return;
586 }
587 }
588
589 /* No MM context found */
590 LOGP(DGPRS, LOGL_INFO, "Deleting orphaned LLME, TLLI 0x%08x\n",
591 llme->tlli);
592 gprs_llgmm_assign(llme, llme->tlli, 0xffffffff, GPRS_ALGO_GEA0, NULL);
593}
594
595static void sgsn_llme_check_cb(void *data_)
596{
597 struct gprs_llc_llme *llme, *llme_tmp;
598 struct timespec now_tp;
599 time_t now, age;
600 time_t max_age = gprs_max_time_to_idle();
601
602 int rc;
603
604 rc = clock_gettime(CLOCK_MONOTONIC, &now_tp);
605 OSMO_ASSERT(rc >= 0);
606 now = now_tp.tv_sec;
607
608 LOGP(DGPRS, LOGL_DEBUG,
609 "Checking for inactive LLMEs, time = %u\n", (unsigned)now);
610
611 llist_for_each_entry_safe(llme, llme_tmp, &gprs_llc_llmes, list) {
612 if (llme->age_timestamp == GPRS_LLME_RESET_AGE)
613 llme->age_timestamp = now;
614
615 age = now - llme->age_timestamp;
616
617 if (age > max_age || age < 0) {
618 LOGP(DGPRS, LOGL_INFO,
619 "Inactivity timeout for TLLI 0x%08x, age %d\n",
620 llme->tlli, (int)age);
621 sgsn_llme_cleanup_free(llme);
622 }
623 }
624
625 osmo_timer_schedule(&sgsn->llme_timer, GPRS_LLME_CHECK_TICK, 0);
626}
627
628void sgsn_inst_init()
629{
630 sgsn->llme_timer.cb = sgsn_llme_check_cb;
631 sgsn->llme_timer.data = NULL;
632
633 osmo_timer_schedule(&sgsn->llme_timer, GPRS_LLME_CHECK_TICK, 0);
634}
635