blob: efbae2205d8be17bd66d9c096b0e1feea1d2084c [file] [log] [blame]
Harald Welte9b455bf2010-03-14 15:45:01 +08001/* GPRS SGSN functionality */
2
3/* (C) 2009 by Harald Welte <laforge@gnumonks.org>
4 *
5 * All Rights Reserved
6 *
7 * This program is free software; you can redistribute it and/or modify
Harald Welte9af6ddf2011-01-01 15:25:50 +01008 * it under the terms of the GNU Affero General Public License as published by
9 * the Free Software Foundation; either version 3 of the License, or
Harald Welte9b455bf2010-03-14 15:45:01 +080010 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
Harald Welte9af6ddf2011-01-01 15:25:50 +010015 * GNU Affero General Public License for more details.
Harald Welte9b455bf2010-03-14 15:45:01 +080016 *
Harald Welte9af6ddf2011-01-01 15:25:50 +010017 * You should have received a copy of the GNU Affero General Public License
18 * along with this program. If not, see <http://www.gnu.org/licenses/>.
Harald Welte9b455bf2010-03-14 15:45:01 +080019 *
20 */
21
Harald Welteeaa614c2010-05-02 11:26:34 +020022#include <stdint.h>
Harald Welte9b455bf2010-03-14 15:45:01 +080023
Pablo Neira Ayuso136f4532011-03-22 16:47:59 +010024#include <osmocom/core/linuxlist.h>
25#include <osmocom/core/talloc.h>
26#include <osmocom/core/timer.h>
27#include <osmocom/core/rate_ctr.h>
Jacob Erlbeck46caed82015-11-02 15:15:38 +010028#include <osmocom/core/stats.h>
Harald Weltefdf453c2012-07-14 12:15:19 +020029#include <osmocom/core/backtrace.h>
Harald Welteea34a4e2012-06-16 14:59:56 +080030#include <osmocom/gprs/gprs_ns.h>
31#include <osmocom/gprs/gprs_bssgp.h>
Harald Welte53373bc2016-04-20 17:11:43 +020032#include <osmocom/gsm/protocol/gsm_04_08_gprs.h>
Harald Welte7e82b742017-08-12 13:43:54 +020033#include <osmocom/gsm/apn.h>
Neels Hofmeyree6cfdc2017-07-13 02:03:50 +020034#include <osmocom/gsm/gsm_utils.h>
Harald Welteea34a4e2012-06-16 14:59:56 +080035
Neels Hofmeyr396f2e62017-09-04 15:13:25 +020036#include <osmocom/sgsn/gprs_subscriber.h>
37#include <osmocom/sgsn/debug.h>
38#include <osmocom/sgsn/gprs_sgsn.h>
39#include <osmocom/sgsn/sgsn.h>
40#include <osmocom/sgsn/gprs_gmm.h>
41#include <osmocom/sgsn/gprs_utils.h>
42#include <osmocom/sgsn/signal.h>
Alexander Couzensf7198d72018-05-22 18:29:14 +020043#include <osmocom/sgsn/gprs_gmm_attach.h>
Neels Hofmeyr396f2e62017-09-04 15:13:25 +020044#include <osmocom/sgsn/gprs_llc.h>
Harald Welteab1d5622010-05-18 19:58:38 +020045
Neels Hofmeyrf4daf162016-05-21 00:44:50 +020046#include <pdp.h>
47
Jacob Erlbeck81ffb742015-01-23 11:33:51 +010048#include <time.h>
49
Neels Hofmeyra7a39472017-07-05 15:19:52 +020050#include "../../bscconfig.h"
51
52#if BUILD_IU
53#include <osmocom/ranap/iu_client.h>
54#endif
55
Jacob Erlbeck81ffb742015-01-23 11:33:51 +010056#define GPRS_LLME_CHECK_TICK 30
57
Harald Welteab1d5622010-05-18 19:58:38 +020058extern struct sgsn_instance *sgsn;
Neels Hofmeyree6cfdc2017-07-13 02:03:50 +020059extern void *tall_bsc_ctx;
Harald Welte9b455bf2010-03-14 15:45:01 +080060
Harald Welted193cb32010-05-17 22:58:03 +020061LLIST_HEAD(sgsn_mm_ctxts);
62LLIST_HEAD(sgsn_ggsn_ctxts);
63LLIST_HEAD(sgsn_apn_ctxts);
64LLIST_HEAD(sgsn_pdp_ctxts);
Harald Welte9b455bf2010-03-14 15:45:01 +080065
Harald Welte8acd88f2010-05-18 10:57:45 +020066static const struct rate_ctr_desc mmctx_ctr_description[] = {
Pau Espin Pedroldc730a32017-11-28 19:40:34 +010067 { "sign:packets:in", "Signalling Messages ( In)" },
68 { "sign:packets:out", "Signalling Messages (Out)" },
69 { "udata:packets:in", "User Data Messages ( In)" },
70 { "udata:packets:out", "User Data Messages (Out)" },
71 { "udata:bytes:in", "User Data Bytes ( In)" },
72 { "udata:bytes:out", "User Data Bytes (Out)" },
Harald Welte8acd88f2010-05-18 10:57:45 +020073 { "pdp_ctx_act", "PDP Context Activations " },
74 { "suspend", "SUSPEND Count " },
Pau Espin Pedroldc730a32017-11-28 19:40:34 +010075 { "paging:ps", "Paging Packet Switched " },
76 { "paging:cs", "Paging Circuit Switched " },
Harald Welte8acd88f2010-05-18 10:57:45 +020077 { "ra_update", "Routing Area Update " },
78};
79
80static const struct rate_ctr_group_desc mmctx_ctrg_desc = {
Pau Espin Pedroldc730a32017-11-28 19:40:34 +010081 .group_name_prefix = "sgsn:mmctx",
Harald Welte8acd88f2010-05-18 10:57:45 +020082 .group_description = "SGSN MM Context Statistics",
83 .num_ctr = ARRAY_SIZE(mmctx_ctr_description),
84 .ctr_desc = mmctx_ctr_description,
Jacob Erlbeck46caed82015-11-02 15:15:38 +010085 .class_id = OSMO_STATS_CLASS_SUBSCRIBER,
Harald Welte8acd88f2010-05-18 10:57:45 +020086};
87
Harald Welteefbdee92010-06-10 00:20:12 +020088static const struct rate_ctr_desc pdpctx_ctr_description[] = {
Pau Espin Pedroldc730a32017-11-28 19:40:34 +010089 { "udata:packets:in", "User Data Messages ( In)" },
90 { "udata:packets:out", "User Data Messages (Out)" },
91 { "udata:bytes:in", "User Data Bytes ( In)" },
92 { "udata:bytes:out", "User Data Bytes (Out)" },
Harald Welteefbdee92010-06-10 00:20:12 +020093};
94
95static const struct rate_ctr_group_desc pdpctx_ctrg_desc = {
Pau Espin Pedroldc730a32017-11-28 19:40:34 +010096 .group_name_prefix = "sgsn:pdpctx",
Harald Welteefbdee92010-06-10 00:20:12 +020097 .group_description = "SGSN PDP Context Statistics",
98 .num_ctr = ARRAY_SIZE(pdpctx_ctr_description),
99 .ctr_desc = pdpctx_ctr_description,
Jacob Erlbeck46caed82015-11-02 15:15:38 +0100100 .class_id = OSMO_STATS_CLASS_SUBSCRIBER,
Harald Welteefbdee92010-06-10 00:20:12 +0200101};
102
Alexander Couzens14314bd2016-07-05 09:52:52 +0200103static const struct rate_ctr_desc sgsn_ctr_description[] = {
Harald Welteb68413b2017-11-21 08:51:47 +0100104 { "llc:dl_bytes", "Count sent LLC bytes before giving it to the bssgp layer" },
105 { "llc:ul_bytes", "Count sucessful received LLC bytes (encrypt & fcs correct)" },
106 { "llc:dl_packets", "Count sucessful sent LLC packets before giving it to the bssgp layer" },
107 { "llc:ul_packets", "Count sucessful received LLC packets (encrypt & fcs correct)" },
108 { "gprs:attach_requested", "Received attach requests" },
109 { "gprs:attach_accepted", "Sent attach accepts" },
110 { "gprs:attach_rejected", "Sent attach rejects" },
111 { "gprs:detach_requested", "Received detach requests" },
112 { "gprs:detach_acked", "Sent detach acks" },
113 { "gprs:routing_area_requested", "Received routing area requests" },
114 { "gprs:routing_area_requested", "Sent routing area acks" },
115 { "gprs:routing_area_requested", "Sent routing area rejects" },
116 { "pdp:activate_requested", "Received activate requests" },
117 { "pdp:activate_rejected", "Sent activate rejects" },
118 { "pdp:activate_accepted", "Sent activate accepts" },
119 { "pdp:request_activated", "unused" },
120 { "pdp:request_activate_rejected", "unused" },
121 { "pdp:modify_requested", "unused" },
122 { "pdp:modify_accepted", "unused" },
123 { "pdp:dl_deactivate_requested", "Sent deactivate requests" },
124 { "pdp:dl_deactivate_accepted", "Sent deactivate accepted" },
125 { "pdp:ul_deactivate_requested", "Received deactivate requests" },
126 { "pdp:ul_deactivate_accepted", "Received deactivate accepts" },
Alexander Couzens14314bd2016-07-05 09:52:52 +0200127};
128
129static const struct rate_ctr_group_desc sgsn_ctrg_desc = {
130 "sgsn",
131 "SGSN Overall Statistics",
132 OSMO_STATS_CLASS_GLOBAL,
133 ARRAY_SIZE(sgsn_ctr_description),
134 sgsn_ctr_description,
135};
136
137void sgsn_rate_ctr_init() {
138 sgsn->rate_ctrs = rate_ctr_group_alloc(tall_bsc_ctx, &sgsn_ctrg_desc, 0);
Harald Welte26c14652017-07-12 00:25:51 +0200139 OSMO_ASSERT(sgsn->rate_ctrs);
Alexander Couzens14314bd2016-07-05 09:52:52 +0200140}
141
Daniel Willmann6292c8d2016-05-21 17:35:57 +0200142/* look-up an SGSN MM context based on Iu UE context (struct ue_conn_ctx)*/
143struct sgsn_mm_ctx *sgsn_mm_ctx_by_ue_ctx(const void *uectx)
144{
145 struct sgsn_mm_ctx *ctx;
146
147 llist_for_each_entry(ctx, &sgsn_mm_ctxts, list) {
148 if (ctx->ran_type == MM_CTX_T_UTRAN_Iu
149 && uectx == ctx->iu.ue_ctx)
150 return ctx;
151 }
152
153 return NULL;
154}
155
Harald Welte9b455bf2010-03-14 15:45:01 +0800156/* look-up a SGSN MM context based on TLLI + RAI */
Harald Welteeaa614c2010-05-02 11:26:34 +0200157struct sgsn_mm_ctx *sgsn_mm_ctx_by_tlli(uint32_t tlli,
Harald Welte9b455bf2010-03-14 15:45:01 +0800158 const struct gprs_ra_id *raid)
159{
160 struct sgsn_mm_ctx *ctx;
161
162 llist_for_each_entry(ctx, &sgsn_mm_ctxts, list) {
Harald Weltef97ee042015-12-25 19:12:21 +0100163 if ((tlli == ctx->gb.tlli || tlli == ctx->gb.tlli_new) &&
Jacob Erlbecke7bcdc32016-01-04 18:43:34 +0100164 gprs_ra_id_equals(raid, &ctx->ra))
Harald Welte9b455bf2010-03-14 15:45:01 +0800165 return ctx;
166 }
Harald Welteab1d5622010-05-18 19:58:38 +0200167
Harald Welte9b455bf2010-03-14 15:45:01 +0800168 return NULL;
169}
170
Jacob Erlbeck5ac4aad2016-01-04 18:43:38 +0100171struct sgsn_mm_ctx *sgsn_mm_ctx_by_tlli_and_ptmsi(uint32_t tlli,
172 const struct gprs_ra_id *raid)
173{
174 struct sgsn_mm_ctx *ctx;
175 int tlli_type;
176
177 /* TODO: Also check the P_TMSI signature to be safe. That signature
178 * should be different (at least with a sufficiently high probability)
179 * after SGSN restarts and for multiple SGSN instances.
180 */
181
182 tlli_type = gprs_tlli_type(tlli);
183 if (tlli_type != TLLI_FOREIGN && tlli_type != TLLI_LOCAL)
184 return NULL;
185
186 llist_for_each_entry(ctx, &sgsn_mm_ctxts, list) {
187 if ((gprs_tmsi2tlli(ctx->p_tmsi, tlli_type) == tlli ||
188 gprs_tmsi2tlli(ctx->p_tmsi_old, tlli_type) == tlli) &&
189 gprs_ra_id_equals(raid, &ctx->ra))
190 return ctx;
191 }
192
193 return NULL;
194}
195
Harald Welteeaa614c2010-05-02 11:26:34 +0200196struct sgsn_mm_ctx *sgsn_mm_ctx_by_ptmsi(uint32_t p_tmsi)
Harald Welte9b455bf2010-03-14 15:45:01 +0800197{
198 struct sgsn_mm_ctx *ctx;
199
200 llist_for_each_entry(ctx, &sgsn_mm_ctxts, list) {
Harald Weltec2e8cc42010-05-31 20:23:38 +0200201 if (p_tmsi == ctx->p_tmsi ||
202 (ctx->p_tmsi_old && ctx->p_tmsi_old == p_tmsi))
Harald Welte9b455bf2010-03-14 15:45:01 +0800203 return ctx;
204 }
205 return NULL;
206}
207
208struct sgsn_mm_ctx *sgsn_mm_ctx_by_imsi(const char *imsi)
209{
210 struct sgsn_mm_ctx *ctx;
211
212 llist_for_each_entry(ctx, &sgsn_mm_ctxts, list) {
213 if (!strcmp(imsi, ctx->imsi))
214 return ctx;
215 }
216 return NULL;
217
218}
219
Alexander Couzens2b5fb8e2017-02-04 06:01:00 +0100220/* Allocate a new SGSN MM context for GERAN_Gb */
221struct sgsn_mm_ctx *sgsn_mm_ctx_alloc_gb(uint32_t tlli,
Harald Welte9b455bf2010-03-14 15:45:01 +0800222 const struct gprs_ra_id *raid)
223{
Harald Welte2720e732010-05-17 00:44:57 +0200224 struct sgsn_mm_ctx *ctx;
Harald Welte9b455bf2010-03-14 15:45:01 +0800225
Harald Welte2720e732010-05-17 00:44:57 +0200226 ctx = talloc_zero(tall_bsc_ctx, struct sgsn_mm_ctx);
Harald Welte9b455bf2010-03-14 15:45:01 +0800227 if (!ctx)
228 return NULL;
229
230 memcpy(&ctx->ra, raid, sizeof(ctx->ra));
Harald Weltef97ee042015-12-25 19:12:21 +0100231 ctx->ran_type = MM_CTX_T_GERAN_Gb;
232 ctx->gb.tlli = tlli;
Alexander Couzens4f8da6d2017-01-31 15:34:26 +0100233 ctx->gmm_state = GMM_DEREGISTERED;
Alexander Couzens10135502017-02-04 05:53:07 +0100234 ctx->pmm_state = MM_IDLE;
Jacob Erlbeckbd0cf112014-12-01 12:33:33 +0100235 ctx->auth_triplet.key_seq = GSM_KEY_SEQ_INVAL;
Maxb997f842016-07-06 15:57:01 +0200236 ctx->ciph_algo = sgsn->cfg.cipher;
Max549ebc72016-11-18 14:07:04 +0100237 LOGMMCTXP(LOGL_DEBUG, ctx, "Allocated with %s cipher.\n",
238 get_value_string(gprs_cipher_names, ctx->ciph_algo));
Harald Welte8acd88f2010-05-18 10:57:45 +0200239 ctx->ctrg = rate_ctr_group_alloc(ctx, &mmctx_ctrg_desc, tlli);
Harald Welte26c14652017-07-12 00:25:51 +0200240 if (!ctx->ctrg) {
241 LOGMMCTXP(LOGL_ERROR, ctx, "Cannot allocate counter group\n");
242 talloc_free(ctx);
243 return NULL;
244 }
Alexander Couzensf7198d72018-05-22 18:29:14 +0200245 ctx->gmm_att_req.fsm = osmo_fsm_inst_alloc(&gmm_attach_req_fsm, ctx, ctx, LOGL_DEBUG, "gb_gmm_req");
Harald Welte6ffbaab2010-05-18 12:44:45 +0200246 INIT_LLIST_HEAD(&ctx->pdp_list);
Harald Welte9b455bf2010-03-14 15:45:01 +0800247
248 llist_add(&ctx->list, &sgsn_mm_ctxts);
249
250 return ctx;
251}
Harald Welted193cb32010-05-17 22:58:03 +0200252
Daniel Willmann6292c8d2016-05-21 17:35:57 +0200253/* Allocate a new SGSN MM context */
254struct sgsn_mm_ctx *sgsn_mm_ctx_alloc_iu(void *uectx)
255{
Neels Hofmeyra7a39472017-07-05 15:19:52 +0200256#if BUILD_IU
Daniel Willmann6292c8d2016-05-21 17:35:57 +0200257 struct sgsn_mm_ctx *ctx;
Max794693c2017-12-20 11:38:01 +0100258 struct ranap_ue_conn_ctx *ue_ctx = uectx;
Daniel Willmann6292c8d2016-05-21 17:35:57 +0200259
260 ctx = talloc_zero(tall_bsc_ctx, struct sgsn_mm_ctx);
261 if (!ctx)
262 return NULL;
263
264 ctx->ran_type = MM_CTX_T_UTRAN_Iu;
Max794693c2017-12-20 11:38:01 +0100265 ctx->iu.ue_ctx = ue_ctx;
Neels Hofmeyr2188a772016-05-20 21:59:55 +0200266 ctx->iu.ue_ctx->rab_assign_addr_enc = sgsn->cfg.iu.rab_assign_addr_enc;
Daniel Willmann3ecfbbb2016-05-21 00:16:55 +0200267 ctx->iu.new_key = 1;
Alexander Couzens4f8da6d2017-01-31 15:34:26 +0100268 ctx->gmm_state = GMM_DEREGISTERED;
Daniel Willmann5b2363e2016-05-21 00:01:21 +0200269 ctx->pmm_state = PMM_DETACHED;
Daniel Willmann6292c8d2016-05-21 17:35:57 +0200270 ctx->auth_triplet.key_seq = GSM_KEY_SEQ_INVAL;
Max794693c2017-12-20 11:38:01 +0100271 ctx->ctrg = rate_ctr_group_alloc(ctx, &mmctx_ctrg_desc, ue_ctx->conn_id);
Harald Welte26c14652017-07-12 00:25:51 +0200272 if (!ctx->ctrg) {
Max794693c2017-12-20 11:38:01 +0100273 LOGMMCTXP(LOGL_ERROR, ctx, "Cannot allocate counter group for %s.%u\n",
274 mmctx_ctrg_desc.group_name_prefix, ue_ctx->conn_id);
Harald Welte26c14652017-07-12 00:25:51 +0200275 talloc_free(ctx);
276 return NULL;
277 }
Alexander Couzensf7198d72018-05-22 18:29:14 +0200278 ctx->gmm_att_req.fsm = osmo_fsm_inst_alloc(&gmm_attach_req_fsm, ctx, ctx, LOGL_DEBUG, "gb_gmm_req");
Daniel Willmann6292c8d2016-05-21 17:35:57 +0200279
280 /* Need to get RAID from IU conn */
281 ctx->ra = ctx->iu.ue_ctx->ra_id;
282
283 INIT_LLIST_HEAD(&ctx->pdp_list);
284
285 llist_add(&ctx->list, &sgsn_mm_ctxts);
286
287 return ctx;
Neels Hofmeyra7a39472017-07-05 15:19:52 +0200288#else
289 return NULL;
290#endif
Daniel Willmann6292c8d2016-05-21 17:35:57 +0200291}
292
293
Harald Welte7b022ee2012-07-14 12:04:04 +0200294/* this is a hard _free_ function, it doesn't clean up the PDP contexts
295 * in libgtp! */
Holger Hans Peter Freytherb448dd82015-05-03 11:46:58 +0200296static void sgsn_mm_ctx_free(struct sgsn_mm_ctx *mm)
Harald Weltec728eea2010-12-24 23:07:18 +0100297{
298 struct sgsn_pdp_ctx *pdp, *pdp2;
299
Jacob Erlbecke671d252015-01-26 14:43:07 +0100300 /* Unlink from global list of MM contexts */
301 llist_del(&mm->list);
302
303 /* Free all PDP contexts */
304 llist_for_each_entry_safe(pdp, pdp2, &mm->pdp_list, list)
305 sgsn_pdp_ctx_free(pdp);
306
307 rate_ctr_group_free(mm->ctrg);
308
309 talloc_free(mm);
310}
311
312void sgsn_mm_ctx_cleanup_free(struct sgsn_mm_ctx *mm)
313{
Daniel Willmann7ec8ca42016-05-21 00:48:49 +0200314 struct gprs_llc_llme *llme = NULL;
Harald Weltef97ee042015-12-25 19:12:21 +0100315 uint32_t tlli = mm->gb.tlli;
Jacob Erlbecke671d252015-01-26 14:43:07 +0100316 struct sgsn_pdp_ctx *pdp, *pdp2;
Holger Hans Peter Freytherb1008952015-05-02 19:55:38 +0200317 struct sgsn_signal_data sig_data;
Jacob Erlbecke671d252015-01-26 14:43:07 +0100318
Daniel Willmann7ec8ca42016-05-21 00:48:49 +0200319 if (mm->ran_type == MM_CTX_T_GERAN_Gb)
320 llme = mm->gb.llme;
321 else
322 OSMO_ASSERT(mm->gb.llme == NULL);
323
Holger Hans Peter Freyther39c430e2015-05-25 12:26:49 +0800324 /* Forget about ongoing look-ups */
325 if (mm->ggsn_lookup) {
326 LOGMMCTXP(LOGL_NOTICE, mm,
327 "Cleaning mmctx with on-going query.\n");
328 mm->ggsn_lookup->mmctx = NULL;
329 mm->ggsn_lookup = NULL;
330 }
331
Jacob Erlbecke671d252015-01-26 14:43:07 +0100332 /* delete all existing PDP contexts for this MS */
333 llist_for_each_entry_safe(pdp, pdp2, &mm->pdp_list, list) {
334 LOGMMCTXP(LOGL_NOTICE, mm,
335 "Dropping PDP context for NSAPI=%u\n", pdp->nsapi);
336 sgsn_pdp_ctx_terminate(pdp);
337 }
338
Jacob Erlbeckae20b4b2014-10-20 16:05:55 +0200339 if (osmo_timer_pending(&mm->timer)) {
340 LOGMMCTXP(LOGL_INFO, mm, "Cancelling MM timer %u\n", mm->T);
341 osmo_timer_del(&mm->timer);
342 }
343
Holger Hans Peter Freytherb1008952015-05-02 19:55:38 +0200344 memset(&sig_data, 0, sizeof(sig_data));
345 sig_data.mm = mm;
346 osmo_signal_dispatch(SS_SGSN, S_SGSN_MM_FREE, &sig_data);
347
348
Jacob Erlbeckbe2c8d92014-11-12 10:18:09 +0100349 /* Detach from subscriber which is possibly freed then */
350 if (mm->subscr) {
Neels Hofmeyr0e5d8072017-01-10 00:49:56 +0100351 struct gprs_subscr *subscr = gprs_subscr_get(mm->subscr);
Jacob Erlbeck3e4e58f2015-01-26 11:07:24 +0100352 gprs_subscr_cleanup(subscr);
Neels Hofmeyr0e5d8072017-01-10 00:49:56 +0100353 gprs_subscr_put(subscr);
Jacob Erlbeckbe2c8d92014-11-12 10:18:09 +0100354 }
355
Alexander Couzensf7198d72018-05-22 18:29:14 +0200356 if (mm->gmm_att_req.fsm)
357 gmm_att_req_free(mm);
358
Jacob Erlbecke671d252015-01-26 14:43:07 +0100359 sgsn_mm_ctx_free(mm);
360 mm = NULL;
Harald Weltec728eea2010-12-24 23:07:18 +0100361
Daniel Willmann7ec8ca42016-05-21 00:48:49 +0200362 if (llme) {
363 /* TLLI unassignment, must be called after sgsn_mm_ctx_free */
Max5aa51962016-07-06 11:33:04 +0200364 gprs_llgmm_assign(llme, tlli, 0xffffffff);
Daniel Willmann7ec8ca42016-05-21 00:48:49 +0200365 }
Harald Weltec728eea2010-12-24 23:07:18 +0100366}
Harald Welte77289c22010-05-18 14:32:29 +0200367
Jacob Erlbecke671d252015-01-26 14:43:07 +0100368
Harald Welte96df6062010-06-03 06:37:26 +0200369/* look up PDP context by MM context and NSAPI */
Harald Welted193cb32010-05-17 22:58:03 +0200370struct sgsn_pdp_ctx *sgsn_pdp_ctx_by_nsapi(const struct sgsn_mm_ctx *mm,
371 uint8_t nsapi)
372{
373 struct sgsn_pdp_ctx *pdp;
374
375 llist_for_each_entry(pdp, &mm->pdp_list, list) {
376 if (pdp->nsapi == nsapi)
377 return pdp;
378 }
379 return NULL;
380}
381
Harald Welte96df6062010-06-03 06:37:26 +0200382/* look up PDP context by MM context and transaction ID */
Harald Welte77289c22010-05-18 14:32:29 +0200383struct sgsn_pdp_ctx *sgsn_pdp_ctx_by_tid(const struct sgsn_mm_ctx *mm,
384 uint8_t tid)
385{
386 struct sgsn_pdp_ctx *pdp;
387
388 llist_for_each_entry(pdp, &mm->pdp_list, list) {
389 if (pdp->ti == tid)
390 return pdp;
391 }
392 return NULL;
393}
394
Harald Welte7b022ee2012-07-14 12:04:04 +0200395/* you don't want to use this directly, call sgsn_create_pdp_ctx() */
Harald Welted193cb32010-05-17 22:58:03 +0200396struct sgsn_pdp_ctx *sgsn_pdp_ctx_alloc(struct sgsn_mm_ctx *mm,
Pau Espin Pedrola98fead2018-07-09 14:39:47 +0200397 struct sgsn_ggsn_ctx *ggsn,
Harald Welted193cb32010-05-17 22:58:03 +0200398 uint8_t nsapi)
399{
400 struct sgsn_pdp_ctx *pdp;
401
402 pdp = sgsn_pdp_ctx_by_nsapi(mm, nsapi);
403 if (pdp)
404 return NULL;
405
406 pdp = talloc_zero(tall_bsc_ctx, struct sgsn_pdp_ctx);
407 if (!pdp)
408 return NULL;
409
410 pdp->mm = mm;
Pau Espin Pedrola98fead2018-07-09 14:39:47 +0200411 pdp->ggsn = ggsn;
Harald Welted193cb32010-05-17 22:58:03 +0200412 pdp->nsapi = nsapi;
Harald Welteefbdee92010-06-10 00:20:12 +0200413 pdp->ctrg = rate_ctr_group_alloc(pdp, &pdpctx_ctrg_desc, nsapi);
Harald Welte26c14652017-07-12 00:25:51 +0200414 if (!pdp->ctrg) {
415 LOGPDPCTXP(LOGL_ERROR, pdp, "Error allocation counter group\n");
416 talloc_free(pdp);
417 return NULL;
418 }
Harald Welted193cb32010-05-17 22:58:03 +0200419 llist_add(&pdp->list, &mm->pdp_list);
Pau Espin Pedrolfa120102018-07-09 20:37:47 +0200420 sgsn_ggsn_ctx_add_pdp(pdp->ggsn, pdp);
Harald Welted193cb32010-05-17 22:58:03 +0200421 llist_add(&pdp->g_list, &sgsn_pdp_ctxts);
422
423 return pdp;
424}
425
Jacob Erlbeck99985b52014-10-13 10:32:00 +0200426/*
427 * This function will not trigger any GSM DEACT PDP ACK messages, so you
428 * probably want to call sgsn_delete_pdp_ctx() instead if the connection
429 * isn't detached already.
430 */
431void sgsn_pdp_ctx_terminate(struct sgsn_pdp_ctx *pdp)
432{
Holger Hans Peter Freytherb1008952015-05-02 19:55:38 +0200433 struct sgsn_signal_data sig_data;
434
Jacob Erlbeck99985b52014-10-13 10:32:00 +0200435 OSMO_ASSERT(pdp->mm != NULL);
436
437 /* There might still be pending callbacks in libgtp. So the parts of
438 * this object relevant to GTP need to remain intact in this case. */
439
440 LOGPDPCTXP(LOGL_INFO, pdp, "Forcing release of PDP context\n");
441
Daniel Willmannf9f43872016-05-20 22:36:23 +0200442 if (pdp->mm->ran_type == MM_CTX_T_GERAN_Gb) {
443 /* Force the deactivation of the SNDCP layer */
444 sndcp_sm_deactivate_ind(&pdp->mm->gb.llme->lle[pdp->sapi], pdp->nsapi);
445 }
Jacob Erlbeck99985b52014-10-13 10:32:00 +0200446
Holger Hans Peter Freytherb1008952015-05-02 19:55:38 +0200447 memset(&sig_data, 0, sizeof(sig_data));
448 sig_data.pdp = pdp;
449 osmo_signal_dispatch(SS_SGSN, S_SGSN_PDP_TERMINATE, &sig_data);
450
Jacob Erlbeck99985b52014-10-13 10:32:00 +0200451 /* Detach from MM context */
Pau Espin Pedrol8c7d2592018-07-09 20:44:17 +0200452 pdp_ctx_detach_mm_ctx(pdp);
Pau Espin Pedrola733a502018-07-13 16:37:22 +0200453 if (pdp->ggsn)
454 sgsn_delete_pdp_ctx(pdp);
Jacob Erlbeck99985b52014-10-13 10:32:00 +0200455}
456
457/*
458 * Don't call this function directly unless you know what you are doing.
459 * In normal conditions use sgsn_delete_pdp_ctx and in unspecified or
460 * implementation dependent abnormal ones sgsn_pdp_ctx_terminate.
461 */
Harald Welted193cb32010-05-17 22:58:03 +0200462void sgsn_pdp_ctx_free(struct sgsn_pdp_ctx *pdp)
463{
Holger Hans Peter Freytherb1008952015-05-02 19:55:38 +0200464 struct sgsn_signal_data sig_data;
465
466 memset(&sig_data, 0, sizeof(sig_data));
467 sig_data.pdp = pdp;
468 osmo_signal_dispatch(SS_SGSN, S_SGSN_PDP_FREE, &sig_data);
469
Harald Welte376d5e52010-06-28 18:57:21 +0200470 rate_ctr_group_free(pdp->ctrg);
Jacob Erlbeck99985b52014-10-13 10:32:00 +0200471 if (pdp->mm)
472 llist_del(&pdp->list);
Pau Espin Pedrola98fead2018-07-09 14:39:47 +0200473 if (pdp->ggsn)
Pau Espin Pedrolfa120102018-07-09 20:37:47 +0200474 sgsn_ggsn_ctx_remove_pdp(pdp->ggsn, pdp);
Harald Welted193cb32010-05-17 22:58:03 +0200475 llist_del(&pdp->g_list);
Harald Weltefdf453c2012-07-14 12:15:19 +0200476
477 /* _if_ we still have a library handle, at least set it to NULL
478 * to avoid any dereferences of the now-deleted PDP context from
479 * sgsn_libgtp:cb_data_ind() */
480 if (pdp->lib) {
481 struct pdp_t *lib = pdp->lib;
Daniel Willmann46553142014-09-03 17:46:44 +0200482 LOGPDPCTXP(LOGL_NOTICE, pdp, "freeing PDP context that still "
Harald Weltefdf453c2012-07-14 12:15:19 +0200483 "has a libgtp handle attached to it, this shouldn't "
484 "happen!\n");
485 osmo_generate_backtrace();
486 lib->priv = NULL;
487 }
488
Harald Welted193cb32010-05-17 22:58:03 +0200489 talloc_free(pdp);
490}
491
Alexander Couzens176a4d22018-09-18 20:07:37 +0200492void sgsn_ggsn_ctx_check_echo_timer(struct sgsn_ggsn_ctx *ggc)
493{
494 if (llist_empty(&ggc->pdp_list) || ggc->echo_interval <= 0) {
495 if (osmo_timer_pending(&ggc->echo_timer))
496 osmo_timer_del(&ggc->echo_timer);
497 } else {
498 if (!osmo_timer_pending(&ggc->echo_timer))
499 osmo_timer_schedule(&ggc->echo_timer, ggc->echo_interval, 0);
500 }
501}
502
Harald Welted193cb32010-05-17 22:58:03 +0200503/* GGSN contexts */
Pau Espin Pedrolfa120102018-07-09 20:37:47 +0200504static void echo_timer_cb(void *data)
505{
506 struct sgsn_ggsn_ctx *ggc = (struct sgsn_ggsn_ctx *) data;
507 sgsn_ggsn_echo_req(ggc);
508 osmo_timer_schedule(&ggc->echo_timer, ggc->echo_interval, 0);
509}
Harald Welted193cb32010-05-17 22:58:03 +0200510
Harald Welte77289c22010-05-18 14:32:29 +0200511struct sgsn_ggsn_ctx *sgsn_ggsn_ctx_alloc(uint32_t id)
Harald Welted193cb32010-05-17 22:58:03 +0200512{
Harald Welte77289c22010-05-18 14:32:29 +0200513 struct sgsn_ggsn_ctx *ggc;
Harald Welted193cb32010-05-17 22:58:03 +0200514
Harald Welte77289c22010-05-18 14:32:29 +0200515 ggc = talloc_zero(tall_bsc_ctx, struct sgsn_ggsn_ctx);
Harald Welted193cb32010-05-17 22:58:03 +0200516 if (!ggc)
517 return NULL;
518
519 ggc->id = id;
520 ggc->gtp_version = 1;
Harald Weltea9b473a2010-12-24 21:13:26 +0100521 ggc->remote_restart_ctr = -1;
Pau Espin Pedrolfa120102018-07-09 20:37:47 +0200522 ggc->echo_interval = -1;
Harald Welteab1d5622010-05-18 19:58:38 +0200523 /* if we are called from config file parse, this gsn doesn't exist yet */
524 ggc->gsn = sgsn->gsn;
Pau Espin Pedrola98fead2018-07-09 14:39:47 +0200525 INIT_LLIST_HEAD(&ggc->pdp_list);
Pau Espin Pedrolfa120102018-07-09 20:37:47 +0200526 osmo_timer_setup(&ggc->echo_timer, echo_timer_cb, ggc);
Harald Welte119c2ba2010-05-18 18:39:00 +0200527 llist_add(&ggc->list, &sgsn_ggsn_ctxts);
Harald Welted193cb32010-05-17 22:58:03 +0200528
529 return ggc;
530}
531
Jacob Erlbeckf3456122015-02-03 19:53:15 +0100532void sgsn_ggsn_ctx_free(struct sgsn_ggsn_ctx *ggc)
533{
Pau Espin Pedrola98fead2018-07-09 14:39:47 +0200534 OSMO_ASSERT(llist_empty(&ggc->pdp_list));
Jacob Erlbeckf3456122015-02-03 19:53:15 +0100535 llist_del(&ggc->list);
536 talloc_free(ggc);
537}
538
Harald Welte77289c22010-05-18 14:32:29 +0200539struct sgsn_ggsn_ctx *sgsn_ggsn_ctx_by_id(uint32_t id)
Harald Welted193cb32010-05-17 22:58:03 +0200540{
Harald Welte77289c22010-05-18 14:32:29 +0200541 struct sgsn_ggsn_ctx *ggc;
Harald Welted193cb32010-05-17 22:58:03 +0200542
543 llist_for_each_entry(ggc, &sgsn_ggsn_ctxts, list) {
544 if (id == ggc->id)
545 return ggc;
546 }
547 return NULL;
548}
549
Harald Weltea9b473a2010-12-24 21:13:26 +0100550struct sgsn_ggsn_ctx *sgsn_ggsn_ctx_by_addr(struct in_addr *addr)
551{
552 struct sgsn_ggsn_ctx *ggc;
553
554 llist_for_each_entry(ggc, &sgsn_ggsn_ctxts, list) {
555 if (!memcmp(addr, &ggc->remote_addr, sizeof(*addr)))
556 return ggc;
557 }
558 return NULL;
559}
560
561
Harald Welte77289c22010-05-18 14:32:29 +0200562struct sgsn_ggsn_ctx *sgsn_ggsn_ctx_find_alloc(uint32_t id)
Harald Welted193cb32010-05-17 22:58:03 +0200563{
Harald Welte77289c22010-05-18 14:32:29 +0200564 struct sgsn_ggsn_ctx *ggc;
Harald Welted193cb32010-05-17 22:58:03 +0200565
Harald Welte77289c22010-05-18 14:32:29 +0200566 ggc = sgsn_ggsn_ctx_by_id(id);
Harald Welted193cb32010-05-17 22:58:03 +0200567 if (!ggc)
Harald Welte77289c22010-05-18 14:32:29 +0200568 ggc = sgsn_ggsn_ctx_alloc(id);
Harald Welted193cb32010-05-17 22:58:03 +0200569 return ggc;
570}
571
572/* APN contexts */
573
Jacob Erlbeckcb1db8b2015-02-03 13:47:53 +0100574static struct apn_ctx *sgsn_apn_ctx_alloc(const char *ap_name, const char *imsi_prefix)
Harald Welted193cb32010-05-17 22:58:03 +0200575{
576 struct apn_ctx *actx;
577
Jacob Erlbeckcb1db8b2015-02-03 13:47:53 +0100578 actx = talloc_zero(tall_bsc_ctx, struct apn_ctx);
Harald Welted193cb32010-05-17 22:58:03 +0200579 if (!actx)
580 return NULL;
581 actx->name = talloc_strdup(actx, ap_name);
Jacob Erlbeckcb1db8b2015-02-03 13:47:53 +0100582 actx->imsi_prefix = talloc_strdup(actx, imsi_prefix);
583
584 llist_add_tail(&actx->list, &sgsn_apn_ctxts);
Harald Welted193cb32010-05-17 22:58:03 +0200585
586 return actx;
587}
588
Jacob Erlbeckcb1db8b2015-02-03 13:47:53 +0100589void sgsn_apn_ctx_free(struct apn_ctx *actx)
590{
591 llist_del(&actx->list);
592 talloc_free(actx);
593}
594
595struct apn_ctx *sgsn_apn_ctx_match(const char *name, const char *imsi)
596{
597 struct apn_ctx *actx;
598 struct apn_ctx *found_actx = NULL;
599 size_t imsi_prio = 0;
600 size_t name_prio = 0;
601 size_t name_req_len = strlen(name);
602
603 llist_for_each_entry(actx, &sgsn_apn_ctxts, list) {
604 size_t name_ref_len, imsi_ref_len;
605 const char *name_ref_start, *name_match_start;
606
607 imsi_ref_len = strlen(actx->imsi_prefix);
608 if (strncmp(actx->imsi_prefix, imsi, imsi_ref_len) != 0)
609 continue;
610
611 if (imsi_ref_len < imsi_prio)
612 continue;
613
614 /* IMSI matches */
615
616 name_ref_start = &actx->name[0];
617 if (name_ref_start[0] == '*') {
618 /* Suffix match */
619 name_ref_start += 1;
620 name_ref_len = strlen(name_ref_start);
621 if (name_ref_len > name_req_len)
622 continue;
623 } else {
624 name_ref_len = strlen(name_ref_start);
625 if (name_ref_len != name_req_len)
626 continue;
627 }
628
629 name_match_start = name + (name_req_len - name_ref_len);
630 if (strcasecmp(name_match_start, name_ref_start) != 0)
631 continue;
632
633 /* IMSI and name match */
634
635 if (imsi_ref_len == imsi_prio && name_ref_len < name_prio)
636 /* Lower priority, skip */
637 continue;
638
639 imsi_prio = imsi_ref_len;
640 name_prio = name_ref_len;
641 found_actx = actx;
642 }
643 return found_actx;
644}
645
646struct apn_ctx *sgsn_apn_ctx_by_name(const char *name, const char *imsi_prefix)
Harald Welted193cb32010-05-17 22:58:03 +0200647{
648 struct apn_ctx *actx;
649
650 llist_for_each_entry(actx, &sgsn_apn_ctxts, list) {
Jacob Erlbeckcb1db8b2015-02-03 13:47:53 +0100651 if (strcasecmp(name, actx->name) == 0 &&
652 strcasecmp(imsi_prefix, actx->imsi_prefix) == 0)
Harald Welted193cb32010-05-17 22:58:03 +0200653 return actx;
654 }
655 return NULL;
656}
657
Jacob Erlbeckcb1db8b2015-02-03 13:47:53 +0100658struct apn_ctx *sgsn_apn_ctx_find_alloc(const char *name, const char *imsi_prefix)
Harald Welted193cb32010-05-17 22:58:03 +0200659{
660 struct apn_ctx *actx;
661
Jacob Erlbeckcb1db8b2015-02-03 13:47:53 +0100662 actx = sgsn_apn_ctx_by_name(name, imsi_prefix);
Harald Welted193cb32010-05-17 22:58:03 +0200663 if (!actx)
Jacob Erlbeckcb1db8b2015-02-03 13:47:53 +0100664 actx = sgsn_apn_ctx_alloc(name, imsi_prefix);
Harald Welted193cb32010-05-17 22:58:03 +0200665
666 return actx;
667}
Harald Welte6463c072010-05-18 17:04:55 +0200668
669uint32_t sgsn_alloc_ptmsi(void)
670{
671 struct sgsn_mm_ctx *mm;
Alexander Couzens8a215c32017-02-03 23:22:18 +0100672 uint32_t ptmsi = 0xdeadbeef;
Max3b6332f2017-11-01 13:28:38 +0100673 int max_retries = 100, rc = 0;
Harald Welte6463c072010-05-18 17:04:55 +0200674
675restart:
Max3b6332f2017-11-01 13:28:38 +0100676 rc = osmo_get_rand_id((uint8_t *) &ptmsi, sizeof(ptmsi));
677 if (rc < 0)
Daniel Willmann044ce5f2015-10-12 19:36:33 +0200678 goto failed;
679
Jacob Erlbeckd8a65532015-01-15 18:51:31 +0100680 /* Enforce that the 2 MSB are set without loosing the distance between
681 * identical values. Since rand() has no duplicate values within a
682 * period (because the size of the state is the same like the size of
683 * the random value), this leads to a distance of period/4 when the
684 * distribution of the 2 MSB is uniform. This approach fails with a
685 * probability of (3/4)^max_retries, only 1% of the approaches will
686 * need more than 16 numbers (even distribution assumed).
687 *
688 * Alternatively, a freeze list could be used if another PRNG is used
689 * or when this approach proves to be not sufficient.
690 */
691 if (ptmsi >= 0xC0000000) {
692 if (!max_retries--)
693 goto failed;
694 goto restart;
695 }
696 ptmsi |= 0xC0000000;
697
698 if (ptmsi == GSM_RESERVED_TMSI) {
699 if (!max_retries--)
700 goto failed;
701 goto restart;
702 }
703
Harald Welte6463c072010-05-18 17:04:55 +0200704 llist_for_each_entry(mm, &sgsn_mm_ctxts, list) {
Jacob Erlbeck08fbeb82014-09-19 09:28:42 +0200705 if (mm->p_tmsi == ptmsi) {
706 if (!max_retries--)
707 goto failed;
Harald Welte6463c072010-05-18 17:04:55 +0200708 goto restart;
Jacob Erlbeck08fbeb82014-09-19 09:28:42 +0200709 }
Harald Welte6463c072010-05-18 17:04:55 +0200710 }
711
712 return ptmsi;
Jacob Erlbeck08fbeb82014-09-19 09:28:42 +0200713
714failed:
Max3b6332f2017-11-01 13:28:38 +0100715 LOGP(DGPRS, LOGL_ERROR, "Failed to allocate a P-TMSI: %d (%s)\n", rc, strerror(-rc));
Jacob Erlbeck08fbeb82014-09-19 09:28:42 +0200716 return GSM_RESERVED_TMSI;
Harald Welte6463c072010-05-18 17:04:55 +0200717}
Harald Weltea9b473a2010-12-24 21:13:26 +0100718
Pau Espin Pedrol2cf70e02018-07-16 11:31:23 +0200719void sgsn_ggsn_ctx_drop_pdp(struct sgsn_pdp_ctx *pctx)
Harald Weltea9b473a2010-12-24 21:13:26 +0100720{
Alexander Couzensb62653a2018-09-18 16:53:42 +0200721 /* the MM context can be deleted while the GGSN is not reachable or
722 * if has been crashed. */
723 if (pctx->mm && pctx->mm->gmm_state == GMM_REGISTERED_NORMAL) {
Pau Espin Pedrol2cf70e02018-07-16 11:31:23 +0200724 gsm48_tx_gsm_deact_pdp_req(pctx, GSM_CAUSE_NET_FAIL, true);
725 sgsn_ggsn_ctx_remove_pdp(pctx->ggsn, pctx);
Pau Espin Pedrola733a502018-07-13 16:37:22 +0200726 } else {
Harald Weltea9b473a2010-12-24 21:13:26 +0100727 /* FIXME: GPRS paging in case MS is SUSPENDED */
Pau Espin Pedrol2cf70e02018-07-16 11:31:23 +0200728 LOGPDPCTXP(LOGL_NOTICE, pctx, "Hard-dropping PDP ctx due to GGSN "
Harald Weltea9b473a2010-12-24 21:13:26 +0100729 "recovery\n");
Harald Welte7b022ee2012-07-14 12:04:04 +0200730 /* FIXME: how to tell this to libgtp? */
Pau Espin Pedrol2cf70e02018-07-16 11:31:23 +0200731 sgsn_pdp_ctx_free(pctx);
Harald Weltea9b473a2010-12-24 21:13:26 +0100732 }
733}
734
735/* High-level function to be called in case a GGSN has disappeared or
Pau Espin Pedrolef6d78f2018-07-17 15:56:53 +0200736 * otherwise lost state (recovery procedure). It will detach all related pdp ctx
737 * from a ggsn and communicate deact to MS. Optionally (!NULL), one pdp ctx can
738 * be kept alive to allow handling later message which contained the Recovery IE. */
739int sgsn_ggsn_ctx_drop_all_pdp_except(struct sgsn_ggsn_ctx *ggsn, struct sgsn_pdp_ctx *except)
Harald Weltea9b473a2010-12-24 21:13:26 +0100740{
Harald Weltea9b473a2010-12-24 21:13:26 +0100741 int num = 0;
742
Pau Espin Pedrola98fead2018-07-09 14:39:47 +0200743 struct sgsn_pdp_ctx *pdp, *pdp2;
744 llist_for_each_entry_safe(pdp, pdp2, &ggsn->pdp_list, ggsn_list) {
Pau Espin Pedrolef6d78f2018-07-17 15:56:53 +0200745 if (pdp == except)
746 continue;
Pau Espin Pedrol2cf70e02018-07-16 11:31:23 +0200747 sgsn_ggsn_ctx_drop_pdp(pdp);
Pau Espin Pedrola98fead2018-07-09 14:39:47 +0200748 num++;
Harald Weltea9b473a2010-12-24 21:13:26 +0100749 }
750
751 return num;
752}
Jacob Erlbeck78ecaf02014-09-05 14:32:36 +0200753
Pau Espin Pedrolfa120102018-07-09 20:37:47 +0200754void sgsn_ggsn_ctx_add_pdp(struct sgsn_ggsn_ctx *ggc, struct sgsn_pdp_ctx *pdp)
755{
Alexander Couzens176a4d22018-09-18 20:07:37 +0200756 sgsn_ggsn_ctx_check_echo_timer(ggc);
757
Pau Espin Pedrolfa120102018-07-09 20:37:47 +0200758 llist_add(&pdp->ggsn_list, &ggc->pdp_list);
759}
760void sgsn_ggsn_ctx_remove_pdp(struct sgsn_ggsn_ctx *ggc, struct sgsn_pdp_ctx *pdp)
761{
762 llist_del(&pdp->ggsn_list);
Alexander Couzens176a4d22018-09-18 20:07:37 +0200763 sgsn_ggsn_ctx_check_echo_timer(ggc);
Pau Espin Pedrola733a502018-07-13 16:37:22 +0200764 if (pdp->destroy_ggsn)
765 sgsn_ggsn_ctx_free(pdp->ggsn);
766 pdp->ggsn = NULL;
767 /* Drop references to libgtp since the conn is down */
768 if (pdp->lib)
769 pdp_freepdp(pdp->lib);
770 pdp->lib = NULL;
Pau Espin Pedrolfa120102018-07-09 20:37:47 +0200771}
772
Jacob Erlbeck555b2e52015-01-26 13:52:42 +0100773void sgsn_update_subscriber_data(struct sgsn_mm_ctx *mmctx)
Jacob Erlbeck423f8bf2014-10-24 18:09:54 +0200774{
Jacob Erlbeck555b2e52015-01-26 13:52:42 +0100775 OSMO_ASSERT(mmctx != NULL);
Jacob Erlbeckc9391962014-12-18 09:53:07 +0100776 LOGMMCTXP(LOGL_INFO, mmctx, "Subscriber data update\n");
Jacob Erlbeckbe2c8d92014-11-12 10:18:09 +0100777
Jacob Erlbecka0b6efb2014-11-13 10:48:39 +0100778 sgsn_auth_update(mmctx);
Jacob Erlbeck423f8bf2014-10-24 18:09:54 +0200779}
Jacob Erlbeck81ffb742015-01-23 11:33:51 +0100780
Holger Hans Peter Freyther5db68572017-07-09 13:18:17 +0200781static void insert_extra(struct tlv_parsed *tp,
782 struct sgsn_subscriber_data *data,
783 struct sgsn_subscriber_pdp_data *pdp)
Holger Hans Peter Freyther8cedded2015-04-23 11:33:35 -0400784{
785 tp->lv[OSMO_IE_GSM_SUB_QOS].len = pdp->qos_subscribed_len;
786 tp->lv[OSMO_IE_GSM_SUB_QOS].val = pdp->qos_subscribed;
Holger Hans Peter Freyther5db68572017-07-09 13:18:17 +0200787
788 /* Prefer PDP charging characteristics of per subscriber one */
789 if (pdp->has_pdp_charg) {
790 tp->lv[OSMO_IE_GSM_CHARG_CHAR].len = sizeof(pdp->pdp_charg);
791 tp->lv[OSMO_IE_GSM_CHARG_CHAR].val = &pdp->pdp_charg[0];
792 } else if (data->has_pdp_charg) {
793 tp->lv[OSMO_IE_GSM_CHARG_CHAR].len = sizeof(data->pdp_charg);
794 tp->lv[OSMO_IE_GSM_CHARG_CHAR].val = &data->pdp_charg[0];
795 }
Holger Hans Peter Freyther8cedded2015-04-23 11:33:35 -0400796}
797
798/**
799 * The tlv_parsed tp parameter will be modified to insert a
800 * OSMO_IE_GSM_SUB_QOS in case the data is available in the
801 * PDP context handling.
802 */
Jacob Erlbeck277b71e2015-02-02 18:03:05 +0100803struct sgsn_ggsn_ctx *sgsn_mm_ctx_find_ggsn_ctx(struct sgsn_mm_ctx *mmctx,
804 struct tlv_parsed *tp,
Holger Hans Peter Freyther39c430e2015-05-25 12:26:49 +0800805 enum gsm48_gsm_cause *gsm_cause,
806 char *out_apn_str)
Jacob Erlbeck277b71e2015-02-02 18:03:05 +0100807{
808 char req_apn_str[GSM_APN_LENGTH] = {0};
809 const struct apn_ctx *apn_ctx = NULL;
810 const char *selected_apn_str = NULL;
811 struct sgsn_subscriber_pdp_data *pdp;
812 struct sgsn_ggsn_ctx *ggsn = NULL;
813 int allow_any_apn = 0;
814
Holger Hans Peter Freyther39c430e2015-05-25 12:26:49 +0800815 out_apn_str[0] = '\0';
816
Jacob Erlbeck277b71e2015-02-02 18:03:05 +0100817 if (TLVP_PRESENT(tp, GSM48_IE_GSM_APN)) {
818 if (TLVP_LEN(tp, GSM48_IE_GSM_APN) >= GSM_APN_LENGTH - 1) {
819 LOGMMCTXP(LOGL_ERROR, mmctx, "APN IE too long\n");
820 *gsm_cause = GSM_CAUSE_INV_MAND_INFO;
821 return NULL;
822 }
823
Harald Welte7e82b742017-08-12 13:43:54 +0200824 osmo_apn_to_str(req_apn_str,
Jacob Erlbeck277b71e2015-02-02 18:03:05 +0100825 TLVP_VAL(tp, GSM48_IE_GSM_APN),
826 TLVP_LEN(tp, GSM48_IE_GSM_APN));
827
828 if (strcmp(req_apn_str, "*") == 0)
829 req_apn_str[0] = 0;
830 }
831
Holger Hans Peter Freyther9270d992015-05-24 20:51:17 +0800832 if (mmctx->subscr == NULL)
Jacob Erlbeck277b71e2015-02-02 18:03:05 +0100833 allow_any_apn = 1;
834
835 if (strlen(req_apn_str) == 0 && !allow_any_apn) {
836 /* No specific APN requested, check for an APN that is both
837 * granted and configured */
838
839 llist_for_each_entry(pdp, &mmctx->subscr->sgsn_data->pdp_list, list) {
840 if (strcmp(pdp->apn_str, "*") == 0)
841 {
842 allow_any_apn = 1;
843 selected_apn_str = "";
Holger Hans Peter Freyther5db68572017-07-09 13:18:17 +0200844 insert_extra(tp, mmctx->subscr->sgsn_data, pdp);
Jacob Erlbeck277b71e2015-02-02 18:03:05 +0100845 continue;
846 }
847 if (!llist_empty(&sgsn_apn_ctxts)) {
848 apn_ctx = sgsn_apn_ctx_match(req_apn_str, mmctx->imsi);
849 /* Not configured */
850 if (apn_ctx == NULL)
851 continue;
852 }
Holger Hans Peter Freyther5db68572017-07-09 13:18:17 +0200853 insert_extra(tp, mmctx->subscr->sgsn_data, pdp);
Jacob Erlbeck277b71e2015-02-02 18:03:05 +0100854 selected_apn_str = pdp->apn_str;
855 break;
856 }
857 } else if (!allow_any_apn) {
858 /* Check whether the given APN is granted */
859 llist_for_each_entry(pdp, &mmctx->subscr->sgsn_data->pdp_list, list) {
860 if (strcmp(pdp->apn_str, "*") == 0) {
Holger Hans Peter Freyther5db68572017-07-09 13:18:17 +0200861 insert_extra(tp, mmctx->subscr->sgsn_data, pdp);
Jacob Erlbeck277b71e2015-02-02 18:03:05 +0100862 selected_apn_str = req_apn_str;
863 allow_any_apn = 1;
864 continue;
865 }
866 if (strcasecmp(pdp->apn_str, req_apn_str) == 0) {
Holger Hans Peter Freyther5db68572017-07-09 13:18:17 +0200867 insert_extra(tp, mmctx->subscr->sgsn_data, pdp);
Jacob Erlbeck277b71e2015-02-02 18:03:05 +0100868 selected_apn_str = req_apn_str;
869 break;
870 }
871 }
872 } else if (strlen(req_apn_str) != 0) {
873 /* Any APN is allowed */
874 selected_apn_str = req_apn_str;
875 } else {
876 /* Prefer the GGSN associated with the wildcard APN */
877 selected_apn_str = "";
878 }
879
880 if (!allow_any_apn && selected_apn_str == NULL) {
881 /* Access not granted */
882 LOGMMCTXP(LOGL_NOTICE, mmctx,
883 "The requested APN '%s' is not allowed\n",
884 req_apn_str);
885 *gsm_cause = GSM_CAUSE_REQ_SERV_OPT_NOTSUB;
886 return NULL;
887 }
888
Holger Hans Peter Freyther39c430e2015-05-25 12:26:49 +0800889 /* copy the selected apn_str */
Holger Hans Peter Freytherf2e114a2015-06-02 09:33:31 +0200890 if (selected_apn_str)
891 strcpy(out_apn_str, selected_apn_str);
892 else
893 out_apn_str[0] = '\0';
Holger Hans Peter Freyther39c430e2015-05-25 12:26:49 +0800894
Jacob Erlbeck277b71e2015-02-02 18:03:05 +0100895 if (apn_ctx == NULL && selected_apn_str)
896 apn_ctx = sgsn_apn_ctx_match(selected_apn_str, mmctx->imsi);
897
898 if (apn_ctx != NULL) {
899 ggsn = apn_ctx->ggsn;
900 } else if (llist_empty(&sgsn_apn_ctxts)) {
901 /* No configuration -> use GGSN 0 */
902 ggsn = sgsn_ggsn_ctx_by_id(0);
903 } else if (allow_any_apn &&
904 (selected_apn_str == NULL || strlen(selected_apn_str) == 0)) {
905 /* No APN given and no default configuration -> Use GGSN 0 */
906 ggsn = sgsn_ggsn_ctx_by_id(0);
907 } else {
908 /* No matching configuration found */
909 LOGMMCTXP(LOGL_NOTICE, mmctx,
910 "The selected APN '%s' has not been configured\n",
911 selected_apn_str);
912 *gsm_cause = GSM_CAUSE_MISSING_APN;
913 return NULL;
914 }
915
Holger Hans Peter Freyther08bb84b2015-05-25 14:35:10 +0800916 if (!ggsn) {
917 LOGMMCTXP(LOGL_NOTICE, mmctx,
918 "No static GGSN configured. Selected APN '%s'\n",
919 selected_apn_str);
920 return NULL;
921 }
922
Jacob Erlbeck277b71e2015-02-02 18:03:05 +0100923 LOGMMCTXP(LOGL_INFO, mmctx,
924 "Found GGSN %d for APN '%s' (requested '%s')\n",
925 ggsn->id, selected_apn_str ? selected_apn_str : "---",
926 req_apn_str);
927
928 return ggsn;
929}
930
Jacob Erlbeck81ffb742015-01-23 11:33:51 +0100931static void sgsn_llme_cleanup_free(struct gprs_llc_llme *llme)
932{
933 struct sgsn_mm_ctx *mmctx = NULL;
934
935 llist_for_each_entry(mmctx, &sgsn_mm_ctxts, list) {
Harald Weltef97ee042015-12-25 19:12:21 +0100936 if (llme == mmctx->gb.llme) {
Jacob Erlbeck81ffb742015-01-23 11:33:51 +0100937 gsm0408_gprs_access_cancelled(mmctx, SGSN_ERROR_CAUSE_NONE);
938 return;
939 }
940 }
941
942 /* No MM context found */
943 LOGP(DGPRS, LOGL_INFO, "Deleting orphaned LLME, TLLI 0x%08x\n",
944 llme->tlli);
Max39550252016-06-28 17:39:20 +0200945 gprs_llgmm_unassign(llme);
Jacob Erlbeck81ffb742015-01-23 11:33:51 +0100946}
947
948static void sgsn_llme_check_cb(void *data_)
949{
950 struct gprs_llc_llme *llme, *llme_tmp;
951 struct timespec now_tp;
952 time_t now, age;
953 time_t max_age = gprs_max_time_to_idle();
954
955 int rc;
956
Pau Espin Pedrol36abead2018-08-17 13:27:20 +0200957 rc = osmo_clock_gettime(CLOCK_MONOTONIC, &now_tp);
Jacob Erlbeck81ffb742015-01-23 11:33:51 +0100958 OSMO_ASSERT(rc >= 0);
959 now = now_tp.tv_sec;
960
961 LOGP(DGPRS, LOGL_DEBUG,
962 "Checking for inactive LLMEs, time = %u\n", (unsigned)now);
963
964 llist_for_each_entry_safe(llme, llme_tmp, &gprs_llc_llmes, list) {
965 if (llme->age_timestamp == GPRS_LLME_RESET_AGE)
966 llme->age_timestamp = now;
967
968 age = now - llme->age_timestamp;
969
970 if (age > max_age || age < 0) {
971 LOGP(DGPRS, LOGL_INFO,
972 "Inactivity timeout for TLLI 0x%08x, age %d\n",
973 llme->tlli, (int)age);
974 sgsn_llme_cleanup_free(llme);
975 }
976 }
977
978 osmo_timer_schedule(&sgsn->llme_timer, GPRS_LLME_CHECK_TICK, 0);
979}
980
981void sgsn_inst_init()
982{
Pablo Neira Ayuso51215762017-05-08 20:57:52 +0200983 osmo_timer_setup(&sgsn->llme_timer, sgsn_llme_check_cb, NULL);
Jacob Erlbeck81ffb742015-01-23 11:33:51 +0100984 osmo_timer_schedule(&sgsn->llme_timer, GPRS_LLME_CHECK_TICK, 0);
985}