blob: 72239e0bfc881dd6001a0bf34aaeb61b765e47ce [file] [log] [blame]
Harald Welte9b455bf2010-03-14 15:45:01 +08001/* GSM Mobile Radio Interface Layer 3 messages on the A-bis interface
2 * 3GPP TS 04.08 version 7.21.0 Release 1998 / ETSI TS 100 940 V7.21.0 */
3
Harald Welte9f1f3ad2010-05-02 12:56:57 +02004/* (C) 2009-2010 by Harald Welte <laforge@gnumonks.org>
Harald Weltec2e8cc42010-05-31 20:23:38 +02005 * (C) 2010 by On-Waves
Harald Welte9b455bf2010-03-14 15:45:01 +08006 *
7 * All Rights Reserved
8 *
9 * This program is free software; you can redistribute it and/or modify
Harald Welte9af6ddf2011-01-01 15:25:50 +010010 * it under the terms of the GNU Affero General Public License as published by
11 * the Free Software Foundation; either version 3 of the License, or
Harald Welte9b455bf2010-03-14 15:45:01 +080012 * (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
Harald Welte9af6ddf2011-01-01 15:25:50 +010017 * GNU Affero General Public License for more details.
Harald Welte9b455bf2010-03-14 15:45:01 +080018 *
Harald Welte9af6ddf2011-01-01 15:25:50 +010019 * You should have received a copy of the GNU Affero General Public License
20 * along with this program. If not, see <http://www.gnu.org/licenses/>.
Harald Welte9b455bf2010-03-14 15:45:01 +080021 *
22 */
23
24#include <stdio.h>
25#include <stdlib.h>
26#include <string.h>
Harald Welteeaa614c2010-05-02 11:26:34 +020027#include <stdint.h>
Harald Welte9b455bf2010-03-14 15:45:01 +080028#include <errno.h>
29
30#include <netinet/in.h>
Harald Welte421cba42010-05-02 23:11:50 +020031#include <arpa/inet.h>
Harald Welte9b455bf2010-03-14 15:45:01 +080032
33#include <openbsc/db.h>
Pablo Neira Ayuso136f4532011-03-22 16:47:59 +010034#include <osmocom/core/msgb.h>
Harald Welted36ff762011-03-23 18:26:56 +010035#include <osmocom/gsm/tlv.h>
36#include <osmocom/gsm/gsm_utils.h>
Pablo Neira Ayuso136f4532011-03-22 16:47:59 +010037#include <osmocom/core/signal.h>
38#include <osmocom/core/talloc.h>
39#include <osmocom/core/rate_ctr.h>
Harald Welted6057092010-05-02 12:57:45 +020040
Harald Welteea34a4e2012-06-16 14:59:56 +080041#include <osmocom/gprs/gprs_bssgp.h>
42
Harald Welte9b455bf2010-03-14 15:45:01 +080043#include <openbsc/debug.h>
44#include <openbsc/gsm_data.h>
Harald Welte9b455bf2010-03-14 15:45:01 +080045#include <openbsc/gsm_subscriber.h>
46#include <openbsc/gsm_04_08.h>
47#include <openbsc/gsm_04_08_gprs.h>
48#include <openbsc/paging.h>
Harald Welte9b455bf2010-03-14 15:45:01 +080049#include <openbsc/transaction.h>
50#include <openbsc/gprs_llc.h>
51#include <openbsc/gprs_sgsn.h>
Harald Welte6abf94e2010-05-18 10:35:06 +020052#include <openbsc/gprs_gmm.h>
Jacob Erlbeck8de9c482015-01-23 11:44:39 +010053#include <openbsc/gprs_utils.h>
Harald Welted193cb32010-05-17 22:58:03 +020054#include <openbsc/sgsn.h>
55
Harald Welte6abf94e2010-05-18 10:35:06 +020056#include <pdp.h>
57
Harald Weltec2e8cc42010-05-31 20:23:38 +020058#define PTMSI_ALLOC
59
Harald Welte649e1ff2013-07-21 17:41:46 +080060/* Section 11.2.2 / Table 11.4 MM timers netwokr side */
Harald Weltec2e8cc42010-05-31 20:23:38 +020061#define GSM0408_T3322_SECS 6 /* DETACH_REQ -> DETACH_ACC */
62#define GSM0408_T3350_SECS 6 /* waiting for ATT/RAU/TMSI COMPL */
63#define GSM0408_T3360_SECS 6 /* waiting for AUTH/CIPH RESP */
64#define GSM0408_T3370_SECS 6 /* waiting for ID RESP */
65
Harald Welte649e1ff2013-07-21 17:41:46 +080066/* Section 11.2.2 / Table 11.4a MM timers netwokr side */
Harald Weltec2e8cc42010-05-31 20:23:38 +020067#define GSM0408_T3313_SECS 30 /* waiting for paging response */
Jacob Erlbeck8de9c482015-01-23 11:44:39 +010068#define GSM0408_T3314_SECS 44 /* force to STBY on expiry, Ready timer */
Harald Weltec2e8cc42010-05-31 20:23:38 +020069#define GSM0408_T3316_SECS 44
70
Harald Weltea9b473a2010-12-24 21:13:26 +010071/* Section 11.3 / Table 11.2d Timers of Session Management - network side */
72#define GSM0408_T3385_SECS 8 /* wait for ACT PDP CTX REQ */
73#define GSM0408_T3386_SECS 8 /* wait for MODIFY PDP CTX ACK */
74#define GSM0408_T3395_SECS 8 /* wait for DEACT PDP CTX ACK */
75#define GSM0408_T3397_SECS 8 /* wait for DEACT AA PDP CTX ACK */
76
Harald Welted193cb32010-05-17 22:58:03 +020077extern struct sgsn_instance *sgsn;
Harald Welte9b455bf2010-03-14 15:45:01 +080078
Harald Welte588d44e2010-06-09 10:28:29 +020079static const struct tlv_definition gsm48_gmm_att_tlvdef = {
80 .def = {
Harald Welte4b6ac1e2010-07-03 11:09:06 +020081 [GSM48_IE_GMM_CIPH_CKSN] = { TLV_TYPE_FIXED, 1 },
Harald Welte588d44e2010-06-09 10:28:29 +020082 [GSM48_IE_GMM_TIMER_READY] = { TLV_TYPE_TV, 1 },
83 [GSM48_IE_GMM_ALLOC_PTMSI] = { TLV_TYPE_TLV, 0 },
Harald Welte4b6ac1e2010-07-03 11:09:06 +020084 [GSM48_IE_GMM_PTMSI_SIG] = { TLV_TYPE_FIXED, 3 },
85 [GSM48_IE_GMM_AUTH_RAND] = { TLV_TYPE_FIXED, 16 },
86 [GSM48_IE_GMM_AUTH_SRES] = { TLV_TYPE_FIXED, 4 },
Harald Welte588d44e2010-06-09 10:28:29 +020087 [GSM48_IE_GMM_IMEISV] = { TLV_TYPE_TLV, 0 },
Harald Welte4b6ac1e2010-07-03 11:09:06 +020088 [GSM48_IE_GMM_DRX_PARAM] = { TLV_TYPE_FIXED, 2 },
Harald Welte588d44e2010-06-09 10:28:29 +020089 [GSM48_IE_GMM_MS_NET_CAPA] = { TLV_TYPE_TLV, 0 },
90 [GSM48_IE_GMM_PDP_CTX_STATUS] = { TLV_TYPE_TLV, 0 },
91 [GSM48_IE_GMM_PS_LCS_CAPA] = { TLV_TYPE_TLV, 0 },
92 [GSM48_IE_GMM_GMM_MBMS_CTX_ST] = { TLV_TYPE_TLV, 0 },
93 },
94};
95
96static const struct tlv_definition gsm48_sm_att_tlvdef = {
97 .def = {
98 [GSM48_IE_GSM_APN] = { TLV_TYPE_TLV, 0 },
99 [GSM48_IE_GSM_PROTO_CONF_OPT] = { TLV_TYPE_TLV, 0 },
100 [GSM48_IE_GSM_PDP_ADDR] = { TLV_TYPE_TLV, 0 },
101 [GSM48_IE_GSM_AA_TMR] = { TLV_TYPE_TV, 1 },
102 [GSM48_IE_GSM_NAME_FULL] = { TLV_TYPE_TLV, 0 },
103 [GSM48_IE_GSM_NAME_SHORT] = { TLV_TYPE_TLV, 0 },
Harald Welte4b6ac1e2010-07-03 11:09:06 +0200104 [GSM48_IE_GSM_TIMEZONE] = { TLV_TYPE_FIXED, 1 },
105 [GSM48_IE_GSM_UTC_AND_TZ] = { TLV_TYPE_FIXED, 7 },
Harald Welte588d44e2010-06-09 10:28:29 +0200106 [GSM48_IE_GSM_LSA_ID] = { TLV_TYPE_TLV, 0 },
107 },
108};
109
Jacob Erlbeck4adb1362014-12-02 09:47:26 +0100110static int gsm48_gmm_authorize(struct sgsn_mm_ctx *ctx);
111
Harald Welte2720e732010-05-17 00:44:57 +0200112/* Our implementation, should be kept in SGSN */
Harald Welte9b455bf2010-03-14 15:45:01 +0800113
Harald Weltec2e8cc42010-05-31 20:23:38 +0200114static void mmctx_timer_cb(void *_mm);
115
116static void mmctx_timer_start(struct sgsn_mm_ctx *mm, unsigned int T,
117 unsigned int seconds)
118{
Pablo Neira Ayusobf540cb2011-05-06 12:11:06 +0200119 if (osmo_timer_pending(&mm->timer))
Harald Weltec2e8cc42010-05-31 20:23:38 +0200120 LOGP(DMM, LOGL_ERROR, "Starting MM timer %u while old "
121 "timer %u pending\n", T, mm->T);
122 mm->T = T;
123 mm->num_T_exp = 0;
124
125 /* FIXME: we should do this only once ? */
126 mm->timer.data = mm;
127 mm->timer.cb = &mmctx_timer_cb;
128
Pablo Neira Ayusobf540cb2011-05-06 12:11:06 +0200129 osmo_timer_schedule(&mm->timer, seconds, 0);
Harald Weltec2e8cc42010-05-31 20:23:38 +0200130}
131
132static void mmctx_timer_stop(struct sgsn_mm_ctx *mm, unsigned int T)
133{
134 if (mm->T != T)
135 LOGP(DMM, LOGL_ERROR, "Stopping MM timer %u but "
136 "%u is running\n", T, mm->T);
Pablo Neira Ayusobf540cb2011-05-06 12:11:06 +0200137 osmo_timer_del(&mm->timer);
Harald Weltec2e8cc42010-05-31 20:23:38 +0200138}
139
Harald Welte9b455bf2010-03-14 15:45:01 +0800140/* Send a message through the underlying layer */
Harald Welte8acd88f2010-05-18 10:57:45 +0200141static int gsm48_gmm_sendmsg(struct msgb *msg, int command,
Holger Hans Peter Freyther2b174542011-10-14 23:31:34 +0200142 struct sgsn_mm_ctx *mm)
Harald Welte9b455bf2010-03-14 15:45:01 +0800143{
Harald Welte8acd88f2010-05-18 10:57:45 +0200144 if (mm)
145 rate_ctr_inc(&mm->ctrg->ctr[GMM_CTR_PKTS_SIG_OUT]);
146
Harald Welte11d7c102010-05-02 11:54:55 +0200147 /* caller needs to provide TLLI, BVCI and NSEI */
Harald Welte56a01452010-05-31 22:12:30 +0200148 return gprs_llc_tx_ui(msg, GPRS_SAPI_GMM, command, mm);
Harald Welte9b455bf2010-03-14 15:45:01 +0800149}
150
Harald Welte11d7c102010-05-02 11:54:55 +0200151/* copy identifiers from old message to new message, this
152 * is required so lower layers can route it correctly */
153static void gmm_copy_id(struct msgb *msg, const struct msgb *old)
154{
155 msgb_tlli(msg) = msgb_tlli(old);
156 msgb_bvci(msg) = msgb_bvci(old);
157 msgb_nsei(msg) = msgb_nsei(old);
158}
159
Harald Welte6abf94e2010-05-18 10:35:06 +0200160/* Store BVCI/NSEI in MM context */
161static void msgid2mmctx(struct sgsn_mm_ctx *mm, const struct msgb *msg)
162{
163 mm->bvci = msgb_bvci(msg);
164 mm->nsei = msgb_nsei(msg);
165}
166
167/* Store BVCI/NSEI in MM context */
168static void mmctx2msgid(struct msgb *msg, const struct sgsn_mm_ctx *mm)
169{
170 msgb_tlli(msg) = mm->tlli;
171 msgb_bvci(msg) = mm->bvci;
172 msgb_nsei(msg) = mm->nsei;
173}
174
Jacob Erlbeck78ecaf02014-09-05 14:32:36 +0200175static void delete_pdp_contexts(struct sgsn_mm_ctx *ctx, const char *log_text)
176{
177 struct sgsn_pdp_ctx *pdp, *pdp2;
178
179 /* delete all existing PDP contexts for this MS */
180 llist_for_each_entry_safe(pdp, pdp2, &ctx->pdp_list, list) {
181 LOGMMCTXP(LOGL_NOTICE, ctx,
182 "Dropping PDP context for NSAPI=%u due to %s\n",
183 pdp->nsapi, log_text);
184 sgsn_pdp_ctx_terminate(pdp);
185 }
186}
187
Jacob Erlbeck99985b52014-10-13 10:32:00 +0200188static void mm_ctx_cleanup_free(struct sgsn_mm_ctx *ctx, const char *log_text)
189{
190 struct gprs_llc_llme *llme = ctx->llme;
191 uint32_t tlli = ctx->tlli;
Jacob Erlbeck99985b52014-10-13 10:32:00 +0200192
193 /* Mark MM state as deregistered */
194 ctx->mm_state = GMM_DEREGISTERED;
195
Jacob Erlbeck78ecaf02014-09-05 14:32:36 +0200196 delete_pdp_contexts(ctx, log_text);
Jacob Erlbeck99985b52014-10-13 10:32:00 +0200197
198 sgsn_mm_ctx_free(ctx);
199 ctx = NULL;
200
201 /* TLLI unassignment, must be called after sgsn_mm_ctx_free */
202 gprs_llgmm_assign(llme, tlli, 0xffffffff, GPRS_ALGO_GEA0, NULL);
203}
204
Harald Weltef54e7e22010-06-09 10:51:23 +0200205/* Chapter 9.4.18 */
206static int _tx_status(struct msgb *msg, uint8_t cause,
207 struct sgsn_mm_ctx *mmctx, int sm)
208{
209 struct gsm48_hdr *gh;
210
211 /* MMCTX might be NULL! */
212
213 DEBUGP(DMM, "<- GPRS MM STATUS (cause: %s)\n",
Jacob Erlbeckafcf2302015-01-05 17:30:02 +0100214 get_value_string(gsm48_gmm_cause_names, cause));
Harald Weltef54e7e22010-06-09 10:51:23 +0200215
216 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh) + 1);
217 if (sm) {
218 gh->proto_discr = GSM48_PDISC_SM_GPRS;
219 gh->msg_type = GSM48_MT_GSM_STATUS;
220 } else {
221 gh->proto_discr = GSM48_PDISC_MM_GPRS;
222 gh->msg_type = GSM48_MT_GMM_STATUS;
223 }
224 gh->data[0] = cause;
225
226 return gsm48_gmm_sendmsg(msg, 0, mmctx);
227}
Jacob Erlbeck70671422014-10-29 22:57:30 +0100228
Harald Weltef54e7e22010-06-09 10:51:23 +0200229static int gsm48_tx_gmm_status(struct sgsn_mm_ctx *mmctx, uint8_t cause)
230{
231 struct msgb *msg = gsm48_msgb_alloc();
232
233 mmctx2msgid(msg, mmctx);
234 return _tx_status(msg, cause, mmctx, 0);
Harald Weltef54e7e22010-06-09 10:51:23 +0200235}
Jacob Erlbeck70671422014-10-29 22:57:30 +0100236
Harald Weltef54e7e22010-06-09 10:51:23 +0200237static int gsm48_tx_sm_status(struct sgsn_mm_ctx *mmctx, uint8_t cause)
238{
239 struct msgb *msg = gsm48_msgb_alloc();
240
241 mmctx2msgid(msg, mmctx);
242 return _tx_status(msg, cause, mmctx, 1);
Harald Weltef54e7e22010-06-09 10:51:23 +0200243}
244
Jacob Erlbeck78ecaf02014-09-05 14:32:36 +0200245static int _tx_detach_req(struct msgb *msg, uint8_t detach_type, uint8_t cause,
246 struct sgsn_mm_ctx *mmctx)
247{
248 struct gsm48_hdr *gh;
249
250 /* MMCTX might be NULL! */
251
252 DEBUGP(DMM, "<- GPRS MM DETACH REQ (type: %s, cause: %s)\n",
253 get_value_string(gprs_det_t_mt_strs, detach_type),
Jacob Erlbeckafcf2302015-01-05 17:30:02 +0100254 get_value_string(gsm48_gmm_cause_names, cause));
Jacob Erlbeck78ecaf02014-09-05 14:32:36 +0200255
256 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh) + 1);
257
258 gh->proto_discr = GSM48_PDISC_MM_GPRS;
259 gh->msg_type = GSM48_MT_GMM_DETACH_REQ;
260 gh->data[0] = detach_type & 0x07;
261
262 msgb_tv_put(msg, GSM48_IE_GMM_CAUSE, cause);
263
264 return gsm48_gmm_sendmsg(msg, 0, mmctx);
265}
266
267static int gsm48_tx_gmm_detach_req(struct sgsn_mm_ctx *mmctx,
268 uint8_t detach_type, uint8_t cause)
269{
270 struct msgb *msg = gsm48_msgb_alloc();
271
272 mmctx2msgid(msg, mmctx);
273 return _tx_detach_req(msg, detach_type, cause, mmctx);
274}
275
276static int gsm48_tx_gmm_detach_req_oldmsg(struct msgb *oldmsg,
277 uint8_t detach_type, uint8_t cause)
278{
279 struct msgb *msg = gsm48_msgb_alloc();
280
281 gmm_copy_id(msg, oldmsg);
282 return _tx_detach_req(msg, detach_type, cause, NULL);
283}
Harald Weltef54e7e22010-06-09 10:51:23 +0200284
Harald Welte86fda902010-05-03 10:54:35 +0200285static struct gsm48_qos default_qos = {
286 .delay_class = 4, /* best effort */
287 .reliab_class = GSM48_QOS_RC_LLC_UN_RLC_ACK_DATA_PROT,
288 .peak_tput = GSM48_QOS_PEAK_TPUT_32000bps,
289 .preced_class = GSM48_QOS_PC_NORMAL,
290 .mean_tput = GSM48_QOS_MEAN_TPUT_BEST_EFFORT,
291 .traf_class = GSM48_QOS_TC_INTERACTIVE,
292 .deliv_order = GSM48_QOS_DO_UNORDERED,
293 .deliv_err_sdu = GSM48_QOS_ERRSDU_YES,
294 .max_sdu_size = GSM48_QOS_MAXSDU_1520,
295 .max_bitrate_up = GSM48_QOS_MBRATE_63k,
296 .max_bitrate_down = GSM48_QOS_MBRATE_63k,
297 .resid_ber = GSM48_QOS_RBER_5e_2,
298 .sdu_err_ratio = GSM48_QOS_SERR_1e_2,
299 .handling_prio = 3,
300 .xfer_delay = 0x10, /* 200ms */
301 .guar_bitrate_up = GSM48_QOS_MBRATE_0k,
302 .guar_bitrate_down = GSM48_QOS_MBRATE_0k,
303 .sig_ind = 0, /* not optimised for signalling */
304 .max_bitrate_down_ext = 0, /* use octet 9 */
305 .guar_bitrate_down_ext = 0, /* use octet 13 */
306};
307
Harald Welte9b455bf2010-03-14 15:45:01 +0800308/* Chapter 9.4.2: Attach accept */
Harald Welte6463c072010-05-18 17:04:55 +0200309static int gsm48_tx_gmm_att_ack(struct sgsn_mm_ctx *mm)
Harald Welte9b455bf2010-03-14 15:45:01 +0800310{
311 struct msgb *msg = gsm48_msgb_alloc();
312 struct gsm48_hdr *gh;
313 struct gsm48_attach_ack *aa;
Holger Hans Peter Freyther1768a572014-04-04 12:40:34 +0200314 uint8_t *mid;
315#if 0
316 uint8_t *ptsig;
317#endif
Harald Welte9b455bf2010-03-14 15:45:01 +0800318
Daniel Willmann46553142014-09-03 17:46:44 +0200319 LOGMMCTXP(LOGL_INFO, mm, "<- GPRS ATTACH ACCEPT (new P-TMSI=0x%08x)\n", mm->p_tmsi);
Harald Welte9b455bf2010-03-14 15:45:01 +0800320
Harald Welte6463c072010-05-18 17:04:55 +0200321 mmctx2msgid(msg, mm);
Harald Welte9b455bf2010-03-14 15:45:01 +0800322
323 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
324 gh->proto_discr = GSM48_PDISC_MM_GPRS;
325 gh->msg_type = GSM48_MT_GMM_ATTACH_ACK;
326
327 aa = (struct gsm48_attach_ack *) msgb_put(msg, sizeof(*aa));
328 aa->force_stby = 0; /* not indicated */
329 aa->att_result = 1; /* GPRS only */
330 aa->ra_upd_timer = GPRS_TMR_MINUTE | 10;
331 aa->radio_prio = 4; /* lowest */
Harald Welte6463c072010-05-18 17:04:55 +0200332 gsm48_construct_ra(aa->ra_id.digits, &mm->ra);
Harald Welte9b455bf2010-03-14 15:45:01 +0800333
Harald Welteab1d5622010-05-18 19:58:38 +0200334#if 0
Harald Welte6463c072010-05-18 17:04:55 +0200335 /* Optional: P-TMSI signature */
336 msgb_v_put(msg, GSM48_IE_GMM_PTMSI_SIG);
337 ptsig = msgb_put(msg, 3);
338 ptsig[0] = mm->p_tmsi_sig >> 16;
339 ptsig[1] = mm->p_tmsi_sig >> 8;
340 ptsig[2] = mm->p_tmsi_sig & 0xff;
341
Harald Weltec2e8cc42010-05-31 20:23:38 +0200342#endif
Jacob Erlbeck8de9c482015-01-23 11:44:39 +0100343 /* Optional: Negotiated Ready timer value
344 * (fixed 44s, default value, GSM 04.08, table 11.4a) to safely limit
345 * the inactivity time READY->STANDBY.
346 */
347 msgb_tv_put(msg, GSM48_IE_GMM_TIMER_READY,
348 gprs_secs_to_tmr_floor(GSM0408_T3314_SECS));
Harald Welte6463c072010-05-18 17:04:55 +0200349
Harald Weltec2e8cc42010-05-31 20:23:38 +0200350#ifdef PTMSI_ALLOC
Harald Welte6463c072010-05-18 17:04:55 +0200351 /* Optional: Allocated P-TMSI */
Harald Welte6463c072010-05-18 17:04:55 +0200352 mid = msgb_put(msg, GSM48_MID_TMSI_LEN);
353 gsm48_generate_mid_from_tmsi(mid, mm->p_tmsi);
Harald Welteab1d5622010-05-18 19:58:38 +0200354 mid[0] = GSM48_IE_GMM_ALLOC_PTMSI;
355#endif
Harald Weltec2e8cc42010-05-31 20:23:38 +0200356
Harald Welte6463c072010-05-18 17:04:55 +0200357 /* Optional: MS-identity (combined attach) */
358 /* Optional: GMM cause (partial attach result for combined attach) */
359
Harald Welte56a01452010-05-31 22:12:30 +0200360 return gsm48_gmm_sendmsg(msg, 0, mm);
Harald Welte9b455bf2010-03-14 15:45:01 +0800361}
362
363/* Chapter 9.4.5: Attach reject */
Harald Welte6463c072010-05-18 17:04:55 +0200364static int _tx_gmm_att_rej(struct msgb *msg, uint8_t gmm_cause)
Harald Welte9b455bf2010-03-14 15:45:01 +0800365{
Harald Welte9b455bf2010-03-14 15:45:01 +0800366 struct gsm48_hdr *gh;
367
Jacob Erlbeckafcf2302015-01-05 17:30:02 +0100368 LOGP(DMM, LOGL_NOTICE, "<- GPRS ATTACH REJECT: %s\n", get_value_string(gsm48_gmm_cause_names, gmm_cause));
Harald Welte9b455bf2010-03-14 15:45:01 +0800369
Harald Welte9b455bf2010-03-14 15:45:01 +0800370 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh) + 1);
371 gh->proto_discr = GSM48_PDISC_MM_GPRS;
372 gh->msg_type = GSM48_MT_GMM_ATTACH_REJ;
373 gh->data[0] = gmm_cause;
374
Harald Welte8acd88f2010-05-18 10:57:45 +0200375 return gsm48_gmm_sendmsg(msg, 0, NULL);
Harald Welte9b455bf2010-03-14 15:45:01 +0800376}
Harald Welte6463c072010-05-18 17:04:55 +0200377static int gsm48_tx_gmm_att_rej_oldmsg(const struct msgb *old_msg,
378 uint8_t gmm_cause)
379{
380 struct msgb *msg = gsm48_msgb_alloc();
381 gmm_copy_id(msg, old_msg);
382 return _tx_gmm_att_rej(msg, gmm_cause);
383}
384static int gsm48_tx_gmm_att_rej(struct sgsn_mm_ctx *mm,
385 uint8_t gmm_cause)
386{
387 struct msgb *msg = gsm48_msgb_alloc();
388 mmctx2msgid(msg, mm);
389 return _tx_gmm_att_rej(msg, gmm_cause);
390}
Harald Welte9b455bf2010-03-14 15:45:01 +0800391
Harald Welte2720e732010-05-17 00:44:57 +0200392/* Chapter 9.4.6.2 Detach accept */
Jacob Erlbeck5a38f642014-10-21 13:09:55 +0200393static int _tx_detach_ack(struct msgb *msg, uint8_t force_stby,
394 struct sgsn_mm_ctx *mm)
Harald Welte2720e732010-05-17 00:44:57 +0200395{
Harald Welte2720e732010-05-17 00:44:57 +0200396 struct gsm48_hdr *gh;
397
Jacob Erlbeck5a38f642014-10-21 13:09:55 +0200398 /* MMCTX might be NULL! */
Harald Welte2720e732010-05-17 00:44:57 +0200399
Jacob Erlbeck5a38f642014-10-21 13:09:55 +0200400 DEBUGP(DMM, "<- GPRS MM DETACH ACC (force-standby: %d)\n", force_stby);
Harald Welte6463c072010-05-18 17:04:55 +0200401
Harald Welte2720e732010-05-17 00:44:57 +0200402 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh) + 1);
403 gh->proto_discr = GSM48_PDISC_MM_GPRS;
404 gh->msg_type = GSM48_MT_GMM_DETACH_ACK;
405 gh->data[0] = force_stby;
406
Harald Welte56a01452010-05-31 22:12:30 +0200407 return gsm48_gmm_sendmsg(msg, 0, mm);
Harald Welte2720e732010-05-17 00:44:57 +0200408}
409
Jacob Erlbeck5a38f642014-10-21 13:09:55 +0200410static int gsm48_tx_gmm_det_ack(struct sgsn_mm_ctx *mm, uint8_t force_stby)
411{
412 struct msgb *msg = gsm48_msgb_alloc();
413
414 mmctx2msgid(msg, mm);
415 return _tx_detach_ack(msg, force_stby, mm);
416}
417
418static int gsm48_tx_gmm_det_ack_oldmsg(struct msgb *oldmsg, uint8_t force_stby)
419{
420 struct msgb *msg = gsm48_msgb_alloc();
421
422 gmm_copy_id(msg, oldmsg);
423 return _tx_detach_ack(msg, force_stby, NULL);
424}
425
Harald Welte9b455bf2010-03-14 15:45:01 +0800426/* Transmit Chapter 9.4.12 Identity Request */
Harald Welte6463c072010-05-18 17:04:55 +0200427static int gsm48_tx_gmm_id_req(struct sgsn_mm_ctx *mm, uint8_t id_type)
Harald Welte9b455bf2010-03-14 15:45:01 +0800428{
429 struct msgb *msg = gsm48_msgb_alloc();
430 struct gsm48_hdr *gh;
431
Daniel Willmann46553142014-09-03 17:46:44 +0200432 LOGMMCTXP(LOGL_DEBUG, mm, "<- GPRS IDENTITY REQUEST: mi_type=%02x\n", id_type);
Harald Welte9b455bf2010-03-14 15:45:01 +0800433
Harald Welte6463c072010-05-18 17:04:55 +0200434 mmctx2msgid(msg, mm);
Harald Welte9b455bf2010-03-14 15:45:01 +0800435
436 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh) + 1);
437 gh->proto_discr = GSM48_PDISC_MM_GPRS;
438 gh->msg_type = GSM48_MT_GMM_ID_REQ;
439 /* 10.5.5.9 ID type 2 + identity type and 10.5.5.7 'force to standby' IE */
440 gh->data[0] = id_type & 0xf;
441
Harald Weltedce12552010-05-31 22:31:04 +0200442 return gsm48_gmm_sendmsg(msg, 1, mm);
Harald Welte9b455bf2010-03-14 15:45:01 +0800443}
444
Harald Welte4b6ac1e2010-07-03 11:09:06 +0200445/* Section 9.4.9: Authentication and Ciphering Request */
446static int gsm48_tx_gmm_auth_ciph_req(struct sgsn_mm_ctx *mm, uint8_t *rand,
447 uint8_t key_seq, uint8_t algo)
448{
449 struct msgb *msg = gsm48_msgb_alloc();
450 struct gsm48_hdr *gh;
451 struct gsm48_auth_ciph_req *acreq;
452 uint8_t *m_rand, *m_cksn;
453
Daniel Willmann46553142014-09-03 17:46:44 +0200454 LOGMMCTXP(LOGL_INFO, mm, "<- GPRS AUTH AND CIPHERING REQ (rand = %s)\n",
Pablo Neira Ayusoc0d17f22011-05-07 12:12:48 +0200455 osmo_hexdump(rand, 16));
Harald Welte4b6ac1e2010-07-03 11:09:06 +0200456
457 mmctx2msgid(msg, mm);
458
459 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
460 gh->proto_discr = GSM48_PDISC_MM_GPRS;
461 gh->msg_type = GSM48_MT_GMM_AUTH_CIPH_REQ;
462
463 acreq = (struct gsm48_auth_ciph_req *) msgb_put(msg, sizeof(*acreq));
464 acreq->ciph_alg = algo & 0xf;
465 acreq->imeisv_req = 0x1;
466 acreq->force_stby = 0x0;
467 acreq->ac_ref_nr = 0x0; /* FIXME: increment this? */
468
469 /* Only if authentication is requested we need to set RAND + CKSN */
470 if (rand) {
471 m_rand = msgb_put(msg, 16+1);
472 m_rand[0] = GSM48_IE_GMM_AUTH_RAND;
473 memcpy(m_rand+1, rand, 16);
474
Jacob Erlbeck65d82732014-12-01 10:36:17 +0100475 m_cksn = msgb_put(msg, 1);
476 m_cksn[0] = (GSM48_IE_GMM_CIPH_CKSN << 4) | (key_seq & 0x07);
Harald Welte4b6ac1e2010-07-03 11:09:06 +0200477 }
478
Harald Welte4b6ac1e2010-07-03 11:09:06 +0200479 /* FIXME: make sure we don't send any other messages to the MS */
480
481 return gsm48_gmm_sendmsg(msg, 1, mm);
482}
483
484/* Section 9.4.11: Authentication and Ciphering Reject */
485static int gsm48_tx_gmm_auth_ciph_rej(struct sgsn_mm_ctx *mm)
486{
487 struct msgb *msg = gsm48_msgb_alloc();
488 struct gsm48_hdr *gh;
489
Daniel Willmann46553142014-09-03 17:46:44 +0200490 LOGMMCTXP(LOGL_NOTICE, mm, "<- GPRS AUTH AND CIPH REJECT\n");
Harald Welte4b6ac1e2010-07-03 11:09:06 +0200491
492 mmctx2msgid(msg, mm);
493
494 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
495 gh->proto_discr = GSM48_PDISC_MM_GPRS;
496 gh->msg_type = GSM48_MT_GMM_AUTH_CIPH_REJ;
497
498 return gsm48_gmm_sendmsg(msg, 0, mm);
499}
500
501/* Section 9.4.10: Authentication and Ciphering Response */
502static int gsm48_rx_gmm_auth_ciph_resp(struct sgsn_mm_ctx *ctx,
503 struct msgb *msg)
504{
505 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_gmmh(msg);
506 struct gsm48_auth_ciph_resp *acr = (struct gsm48_auth_ciph_resp *)gh->data;
507 struct tlv_parsed tp;
Jacob Erlbeck8ff3fb02014-12-01 12:44:24 +0100508 struct gsm_auth_tuple *at;
509 int rc;
510
511 LOGMMCTXP(LOGL_INFO, ctx, "-> GPRS AUTH AND CIPH RESPONSE\n");
512
513 if (ctx->auth_triplet.key_seq == GSM_KEY_SEQ_INVAL) {
514 LOGMMCTXP(LOGL_NOTICE, ctx,
515 "Unexpected Auth & Ciph Response (ignored)\n");
516 return 0;
517 }
Harald Welte4b6ac1e2010-07-03 11:09:06 +0200518
Jacob Erlbeckbd0cf112014-12-01 12:33:33 +0100519 /* Stop T3360 */
520 mmctx_timer_stop(ctx, 3360);
Harald Welte4b6ac1e2010-07-03 11:09:06 +0200521
Holger Hans Peter Freyther1768a572014-04-04 12:40:34 +0200522 tlv_parse(&tp, &gsm48_gmm_att_tlvdef, acr->data,
Harald Welte4b6ac1e2010-07-03 11:09:06 +0200523 (msg->data + msg->len) - acr->data, 0, 0);
524
525 /* FIXME: compare ac_ref? */
526
527 if (!TLVP_PRESENT(&tp, GSM48_IE_GMM_AUTH_SRES) ||
528 !TLVP_PRESENT(&tp, GSM48_IE_GMM_IMEISV)) {
Jacob Erlbeck8ff3fb02014-12-01 12:44:24 +0100529 /* TODO: missing mandatory IE, return STATUS or REJ? */
530 LOGMMCTXP(LOGL_ERROR, ctx, "Missing mandantory IE\n");
531 return -EINVAL;
Harald Welte4b6ac1e2010-07-03 11:09:06 +0200532 }
533
Jacob Erlbeck8ff3fb02014-12-01 12:44:24 +0100534 /* Compare SRES with what we expected */
535 LOGMMCTXP(LOGL_DEBUG, ctx, "checking received auth info, SRES = %s\n",
536 osmo_hexdump(TLVP_VAL(&tp, GSM48_IE_GMM_AUTH_SRES),
537 TLVP_LEN(&tp, GSM48_IE_GMM_AUTH_SRES)));
538
539 at = &ctx->auth_triplet;
540
541 if (TLVP_LEN(&tp, GSM48_IE_GMM_AUTH_SRES) != sizeof(at->sres) ||
542 memcmp(TLVP_VAL(&tp, GSM48_IE_GMM_AUTH_SRES), at->sres,
543 sizeof(at->sres)) != 0) {
544
545 LOGMMCTXP(LOGL_NOTICE, ctx, "Received SRES doesn't match\n");
546 rc = gsm48_tx_gmm_auth_ciph_rej(ctx);
547 mm_ctx_cleanup_free(ctx, "GPRS AUTH AND CIPH REJECT");
548 return rc;
549 }
550
551 ctx->is_authenticated = 1;
552
Harald Welte4b6ac1e2010-07-03 11:09:06 +0200553 /* FIXME: enable LLC cipheirng */
Jacob Erlbeck4adb1362014-12-02 09:47:26 +0100554
555 /* Check if we can let the mobile station enter */
556 return gsm48_gmm_authorize(ctx);
Harald Welte4b6ac1e2010-07-03 11:09:06 +0200557}
558
Harald Welte9b455bf2010-03-14 15:45:01 +0800559/* Check if we can already authorize a subscriber */
Jacob Erlbeck93eae8e2014-10-28 12:23:29 +0100560static int gsm48_gmm_authorize(struct sgsn_mm_ctx *ctx)
Harald Welte9b455bf2010-03-14 15:45:01 +0800561{
Jacob Erlbeck93eae8e2014-10-28 12:23:29 +0100562 /* Request IMSI and IMEI from the MS if they are unknown */
Harald Weltec2e8cc42010-05-31 20:23:38 +0200563 if (!strlen(ctx->imei)) {
Harald Weltec2e8cc42010-05-31 20:23:38 +0200564 ctx->t3370_id_type = GSM_MI_TYPE_IMEI;
565 mmctx_timer_start(ctx, 3370, GSM0408_T3370_SECS);
Harald Welte6463c072010-05-18 17:04:55 +0200566 return gsm48_tx_gmm_id_req(ctx, GSM_MI_TYPE_IMEI);
Harald Weltec2e8cc42010-05-31 20:23:38 +0200567 }
Harald Weltec2e8cc42010-05-31 20:23:38 +0200568 if (!strlen(ctx->imsi)) {
Harald Weltec2e8cc42010-05-31 20:23:38 +0200569 ctx->t3370_id_type = GSM_MI_TYPE_IMSI;
570 mmctx_timer_start(ctx, 3370, GSM0408_T3370_SECS);
Harald Welte6463c072010-05-18 17:04:55 +0200571 return gsm48_tx_gmm_id_req(ctx, GSM_MI_TYPE_IMSI);
Harald Weltec2e8cc42010-05-31 20:23:38 +0200572 }
Harald Welte9b455bf2010-03-14 15:45:01 +0800573
Jacob Erlbeck93eae8e2014-10-28 12:23:29 +0100574 /* All information required for authentication is available */
Jacob Erlbeck93eae8e2014-10-28 12:23:29 +0100575 ctx->t3370_id_type = GSM_MI_TYPE_NONE;
576
Jacob Erlbeck423f8bf2014-10-24 18:09:54 +0200577 if (ctx->auth_state == SGSN_AUTH_UNKNOWN) {
578 /* Request authorization, this leads to a call to
Jacob Erlbeckf951a012014-11-07 14:17:44 +0100579 * sgsn_auth_update which in turn calls
Jacob Erlbeck423f8bf2014-10-24 18:09:54 +0200580 * gsm0408_gprs_access_granted or gsm0408_gprs_access_denied */
581
Jacob Erlbecka0b6efb2014-11-13 10:48:39 +0100582 sgsn_auth_request(ctx);
Jacob Erlbeck423f8bf2014-10-24 18:09:54 +0200583 /* Note that gsm48_gmm_authorize can be called recursively via
584 * sgsn_auth_request iff ctx->auth_info changes to AUTH_ACCEPTED
585 */
586 return 0;
587 }
588
Jacob Erlbeck4adb1362014-12-02 09:47:26 +0100589 if (ctx->auth_state == SGSN_AUTH_AUTHENTICATE && !ctx->is_authenticated) {
590 struct gsm_auth_tuple *at = &ctx->auth_triplet;
591
592 mmctx_timer_start(ctx, 3360, GSM0408_T3360_SECS);
593 return gsm48_tx_gmm_auth_ciph_req(ctx, at->rand, at->key_seq,
594 GPRS_ALGO_GEA0);
595 }
596
597 if (ctx->auth_state == SGSN_AUTH_AUTHENTICATE && ctx->is_authenticated &&
598 ctx->auth_triplet.key_seq != GSM_KEY_SEQ_INVAL) {
599 /* Check again for authorization */
600 sgsn_auth_request(ctx);
601 return 0;
602 }
603
Jacob Erlbeck423f8bf2014-10-24 18:09:54 +0200604 if (ctx->auth_state != SGSN_AUTH_ACCEPTED) {
605 LOGMMCTXP(LOGL_NOTICE, ctx,
606 "authorization is denied, aborting procedure\n");
607 return -EACCES;
Jacob Erlbeck0c06f982014-10-29 22:12:20 +0100608 }
609
610 /* The MS is authorized */
611
Jacob Erlbeck93eae8e2014-10-28 12:23:29 +0100612 switch (ctx->pending_req) {
613 case 0:
614 LOGMMCTXP(LOGL_INFO, ctx,
615 "no pending request, authorization completed\n");
616 break;
617 case GSM48_MT_GMM_ATTACH_REQ:
618#ifdef PTMSI_ALLOC
619 /* Start T3350 and re-transmit up to 5 times until ATTACH COMPLETE */
620 mmctx_timer_start(ctx, 3350, GSM0408_T3350_SECS);
621 ctx->t3350_mode = GMM_T3350_MODE_ATT;
Jacob Erlbeck0074a772014-10-28 16:23:46 +0100622#else
623 ctx->mm_state = GMM_REGISTERED_NORMAL;
Jacob Erlbeck93eae8e2014-10-28 12:23:29 +0100624#endif
625
Jacob Erlbeck93eae8e2014-10-28 12:23:29 +0100626 return gsm48_tx_gmm_att_ack(ctx);
627 default:
628 LOGMMCTXP(LOGL_ERROR, ctx,
629 "only Attach Request is supported yet, "
630 "got request type %u\n", ctx->pending_req);
631 break;
632 }
633
Harald Welte9b455bf2010-03-14 15:45:01 +0800634 return 0;
635}
636
Jacob Erlbeck4adb1362014-12-02 09:47:26 +0100637void gsm0408_gprs_authenticate(struct sgsn_mm_ctx *ctx)
638{
639 ctx->is_authenticated = 0;
640
641 gsm48_gmm_authorize(ctx);
642}
643
Jacob Erlbeck423f8bf2014-10-24 18:09:54 +0200644void gsm0408_gprs_access_granted(struct sgsn_mm_ctx *ctx)
645{
646 switch (ctx->mm_state) {
647 case GMM_COMMON_PROC_INIT:
648 LOGP(DMM, LOGL_NOTICE,
649 "Authorized, continuing procedure, IMSI=%s\n",
650 ctx->imsi);
651 /* Continue with the authorization */
652 gsm48_gmm_authorize(ctx);
653 break;
654 default:
655 LOGP(DMM, LOGL_INFO,
656 "Authorized, ignored, IMSI=%s\n",
657 ctx->imsi);
658 }
659}
660
Jacob Erlbeckaf3d5c52015-01-05 17:51:17 +0100661void gsm0408_gprs_access_denied(struct sgsn_mm_ctx *ctx, int gmm_cause)
Jacob Erlbeck423f8bf2014-10-24 18:09:54 +0200662{
Jacob Erlbeckd6267d12015-01-19 11:10:04 +0100663 if (gmm_cause == SGSN_ERROR_CAUSE_NONE)
Jacob Erlbeckaf3d5c52015-01-05 17:51:17 +0100664 gmm_cause = GMM_CAUSE_GPRS_NOTALLOWED;
665
Jacob Erlbeck423f8bf2014-10-24 18:09:54 +0200666 switch (ctx->mm_state) {
667 case GMM_COMMON_PROC_INIT:
Jacob Erlbeckaf3d5c52015-01-05 17:51:17 +0100668 LOGMMCTXP(LOGL_NOTICE, ctx,
669 "Not authorized, rejecting ATTACH REQUEST "
670 "with cause '%s' (%d)\n",
671 get_value_string(gsm48_gmm_cause_names, gmm_cause),
672 gmm_cause);
673 gsm48_tx_gmm_att_rej(ctx, gmm_cause);
Jacob Erlbeck423f8bf2014-10-24 18:09:54 +0200674 mm_ctx_cleanup_free(ctx, "GPRS ATTACH REJECT");
675 break;
676 case GMM_REGISTERED_NORMAL:
677 case GMM_REGISTERED_SUSPENDED:
Jacob Erlbeckaf3d5c52015-01-05 17:51:17 +0100678 LOGMMCTXP(LOGL_NOTICE, ctx,
679 "Authorization lost, detaching "
680 "with cause '%s' (%d)\n",
681 get_value_string(gsm48_gmm_cause_names, gmm_cause),
682 gmm_cause);
Jacob Erlbeck423f8bf2014-10-24 18:09:54 +0200683 gsm48_tx_gmm_detach_req(
Jacob Erlbeckaf3d5c52015-01-05 17:51:17 +0100684 ctx, GPRS_DET_T_MT_REATT_NOTREQ, gmm_cause);
Jacob Erlbeck423f8bf2014-10-24 18:09:54 +0200685
686 mm_ctx_cleanup_free(ctx, "auth lost");
687 break;
688 default:
Jacob Erlbeckaf3d5c52015-01-05 17:51:17 +0100689 LOGMMCTXP(LOGL_INFO, ctx,
690 "Authorization lost, cause is '%s' (%d)\n",
691 get_value_string(gsm48_gmm_cause_names, gmm_cause),
692 gmm_cause);
693 mm_ctx_cleanup_free(ctx, "auth lost");
Jacob Erlbeck423f8bf2014-10-24 18:09:54 +0200694 }
695}
696
Jacob Erlbeckaf3d5c52015-01-05 17:51:17 +0100697void gsm0408_gprs_access_cancelled(struct sgsn_mm_ctx *ctx, int gmm_cause)
Jacob Erlbeck98647ca2014-11-11 14:47:38 +0100698{
Jacob Erlbeckd6267d12015-01-19 11:10:04 +0100699 if (gmm_cause != SGSN_ERROR_CAUSE_NONE) {
Jacob Erlbeckaf3d5c52015-01-05 17:51:17 +0100700 LOGMMCTXP(LOGL_INFO, ctx,
701 "Cancelled with cause '%s' (%d), deleting context\n",
702 get_value_string(gsm48_gmm_cause_names, gmm_cause),
703 gmm_cause);
704 gsm0408_gprs_access_denied(ctx, gmm_cause);
705 return;
Jacob Erlbeck98647ca2014-11-11 14:47:38 +0100706 }
Jacob Erlbeckaf3d5c52015-01-05 17:51:17 +0100707
708 LOGMMCTXP(LOGL_INFO, ctx, "Cancelled, deleting context silently\n");
Jacob Erlbeck98647ca2014-11-11 14:47:38 +0100709 mm_ctx_cleanup_free(ctx, "access cancelled");
710}
711
Harald Welte9b455bf2010-03-14 15:45:01 +0800712/* Parse Chapter 9.4.13 Identity Response */
Harald Welted193cb32010-05-17 22:58:03 +0200713static int gsm48_rx_gmm_id_resp(struct sgsn_mm_ctx *ctx, struct msgb *msg)
Harald Welte9b455bf2010-03-14 15:45:01 +0800714{
Harald Welte943c5bc2010-04-30 16:33:12 +0200715 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_gmmh(msg);
Harald Welteeaa614c2010-05-02 11:26:34 +0200716 uint8_t mi_type = gh->data[1] & GSM_MI_TYPE_MASK;
Harald Welte9b455bf2010-03-14 15:45:01 +0800717 char mi_string[GSM48_MI_SIZE];
Harald Welte9b455bf2010-03-14 15:45:01 +0800718
719 gsm48_mi_to_string(mi_string, sizeof(mi_string), &gh->data[1], gh->data[0]);
Harald Welte9b455bf2010-03-14 15:45:01 +0800720 if (!ctx) {
Daniel Willmann46553142014-09-03 17:46:44 +0200721 DEBUGP(DMM, "from unknown TLLI 0x%08x?!? This should not happen\n", msgb_tlli(msg));
Harald Welte9b455bf2010-03-14 15:45:01 +0800722 return -EINVAL;
723 }
724
Daniel Willmannf8070f42014-09-23 18:48:44 +0200725 LOGMMCTXP(LOGL_DEBUG, ctx, "-> GMM IDENTITY RESPONSE: mi_type=0x%02x MI(%s)\n",
726 mi_type, mi_string);
727
Jacob Erlbeckfb26c602014-10-22 12:20:26 +0200728 if (ctx->t3370_id_type == GSM_MI_TYPE_NONE) {
729 LOGMMCTXP(LOGL_NOTICE, ctx,
730 "Got unexpected IDENTITY RESPONSE: mi_type=0x%02x MI(%s), "
731 "ignoring message\n",
732 mi_type, mi_string);
733 return -EINVAL;
734 }
735
Harald Weltec2e8cc42010-05-31 20:23:38 +0200736 if (mi_type == ctx->t3370_id_type)
737 mmctx_timer_stop(ctx, 3370);
738
Harald Welte9b455bf2010-03-14 15:45:01 +0800739 switch (mi_type) {
740 case GSM_MI_TYPE_IMSI:
741 /* we already have a mm context with current TLLI, but no
742 * P-TMSI / IMSI yet. What we now need to do is to fill
743 * this initial context with data from the HLR */
Harald Weltec728eea2010-12-24 23:07:18 +0100744 if (strlen(ctx->imsi) == 0) {
745 /* Check if we already have a MM context for this IMSI */
746 struct sgsn_mm_ctx *ictx;
747 ictx = sgsn_mm_ctx_by_imsi(mi_string);
748 if (ictx) {
Jacob Erlbeck99985b52014-10-13 10:32:00 +0200749 /* Handle it like in gsm48_rx_gmm_det_req,
750 * except that no messages are sent to the BSS */
751
Daniel Willmann46553142014-09-03 17:46:44 +0200752 LOGMMCTXP(LOGL_NOTICE, ctx, "Deleting old MM Context for same IMSI "
753 "p_tmsi_old=0x%08x\n",
754 ictx->p_tmsi);
Jacob Erlbeck99985b52014-10-13 10:32:00 +0200755
Jacob Erlbeck99985b52014-10-13 10:32:00 +0200756 mm_ctx_cleanup_free(ictx, "GPRS IMSI re-use");
Harald Weltec728eea2010-12-24 23:07:18 +0100757 }
758 }
Jacob Erlbeckfd636ae2014-07-08 09:49:07 +0200759 strncpy(ctx->imsi, mi_string, sizeof(ctx->imsi));
Harald Welte9b455bf2010-03-14 15:45:01 +0800760 break;
761 case GSM_MI_TYPE_IMEI:
762 strncpy(ctx->imei, mi_string, sizeof(ctx->imei));
763 break;
764 case GSM_MI_TYPE_IMEISV:
765 break;
766 }
767
Harald Welte9b455bf2010-03-14 15:45:01 +0800768 /* Check if we can let the mobile station enter */
Jacob Erlbeck93eae8e2014-10-28 12:23:29 +0100769 return gsm48_gmm_authorize(ctx);
Harald Welte9b455bf2010-03-14 15:45:01 +0800770}
771
772/* Section 9.4.1 Attach request */
Harald Welte807a5d82010-06-01 11:53:01 +0200773static int gsm48_rx_gmm_att_req(struct sgsn_mm_ctx *ctx, struct msgb *msg,
774 struct gprs_llc_llme *llme)
Harald Welte9b455bf2010-03-14 15:45:01 +0800775{
Harald Welte943c5bc2010-04-30 16:33:12 +0200776 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_gmmh(msg);
Holger Hans Peter Freyther1768a572014-04-04 12:40:34 +0200777 uint8_t *cur = gh->data, *msnc, *mi, *ms_ra_acc_cap;
Harald Welte56a01452010-05-31 22:12:30 +0200778 uint8_t msnc_len, att_type, mi_len, mi_type, ms_ra_acc_cap_len;
Harald Welteeaa614c2010-05-02 11:26:34 +0200779 uint16_t drx_par;
780 uint32_t tmsi;
Harald Welte9b455bf2010-03-14 15:45:01 +0800781 char mi_string[GSM48_MI_SIZE];
782 struct gprs_ra_id ra_id;
Harald Welte9f1f3ad2010-05-02 12:56:57 +0200783 uint16_t cid;
Jacob Erlbeck80d07e32014-11-06 13:43:41 +0100784 enum gsm48_gmm_cause reject_cause;
785 int rc;
Harald Welte9b455bf2010-03-14 15:45:01 +0800786
Daniel Willmann46553142014-09-03 17:46:44 +0200787 LOGP(DMM, LOGL_INFO, "-> GMM ATTACH REQUEST ");
Harald Welte9b455bf2010-03-14 15:45:01 +0800788
789 /* As per TS 04.08 Chapter 4.7.1.4, the attach request arrives either
790 * with a foreign TLLI (P-TMSI that was allocated to the MS before),
791 * or with random TLLI. */
792
Harald Welte9f1f3ad2010-05-02 12:56:57 +0200793 cid = bssgp_parse_cell_id(&ra_id, msgb_bcid(msg));
Harald Welte9b455bf2010-03-14 15:45:01 +0800794
795 /* MS network capability 10.5.5.12 */
796 msnc_len = *cur++;
797 msnc = cur;
Alexander Chemeris84402c02013-07-03 10:12:23 +0400798 if (msnc_len > sizeof(ctx->ms_network_capa.buf))
Harald Welte9b455bf2010-03-14 15:45:01 +0800799 goto err_inval;
800 cur += msnc_len;
801
802 /* aTTACH Type 10.5.5.2 */
803 att_type = *cur++ & 0x0f;
804
805 /* DRX parameter 10.5.5.6 */
Harald Welte56a01452010-05-31 22:12:30 +0200806 drx_par = *cur++ << 8;
807 drx_par |= *cur++;
Harald Welte9b455bf2010-03-14 15:45:01 +0800808
809 /* Mobile Identity (P-TMSI or IMSI) 10.5.1.4 */
810 mi_len = *cur++;
811 mi = cur;
812 if (mi_len > 8)
813 goto err_inval;
814 mi_type = *mi & GSM_MI_TYPE_MASK;
815 cur += mi_len;
816
817 gsm48_mi_to_string(mi_string, sizeof(mi_string), mi, mi_len);
818
Harald Welte2720e732010-05-17 00:44:57 +0200819 DEBUGPC(DMM, "MI(%s) type=\"%s\" ", mi_string,
820 get_value_string(gprs_att_t_strs, att_type));
Harald Welte9b455bf2010-03-14 15:45:01 +0800821
Holger Hans Peter Freyther1768a572014-04-04 12:40:34 +0200822 /* Old routing area identification 10.5.5.15. Skip it */
Harald Welte9b455bf2010-03-14 15:45:01 +0800823 cur += 6;
824
825 /* MS Radio Access Capability 10.5.5.12a */
Harald Welte56a01452010-05-31 22:12:30 +0200826 ms_ra_acc_cap_len = *cur++;
827 ms_ra_acc_cap = cur;
Alexander Chemeris84402c02013-07-03 10:12:23 +0400828 if (ms_ra_acc_cap_len > sizeof(ctx->ms_radio_access_capa.buf))
Harald Weltec48ac472010-07-03 21:20:06 +0200829 goto err_inval;
Harald Welte4b2ed352011-07-27 23:35:38 +0200830 cur += ms_ra_acc_cap_len;
Harald Welte9b455bf2010-03-14 15:45:01 +0800831
Daniel Willmann46553142014-09-03 17:46:44 +0200832 LOGPC(DMM, LOGL_INFO, "\n");
833
Harald Welte9b455bf2010-03-14 15:45:01 +0800834 /* Optional: Old P-TMSI Signature, Requested READY timer, TMSI Status */
835
836 switch (mi_type) {
837 case GSM_MI_TYPE_IMSI:
838 /* Try to find MM context based on IMSI */
Harald Welte807a5d82010-06-01 11:53:01 +0200839 if (!ctx)
840 ctx = sgsn_mm_ctx_by_imsi(mi_string);
Harald Welte9b455bf2010-03-14 15:45:01 +0800841 if (!ctx) {
842#if 0
843 return gsm48_tx_gmm_att_rej(msg, GMM_CAUSE_IMSI_UNKNOWN);
844#else
Harald Welte9b455bf2010-03-14 15:45:01 +0800845 ctx = sgsn_mm_ctx_alloc(0, &ra_id);
Jacob Erlbeck80d07e32014-11-06 13:43:41 +0100846 if (!ctx) {
847 reject_cause = GMM_CAUSE_NET_FAIL;
848 goto rejected;
849 }
Harald Welte9b455bf2010-03-14 15:45:01 +0800850 strncpy(ctx->imsi, mi_string, sizeof(ctx->imsi));
851#endif
852 }
Harald Welte943c5bc2010-04-30 16:33:12 +0200853 ctx->tlli = msgb_tlli(msg);
Harald Welte807a5d82010-06-01 11:53:01 +0200854 ctx->llme = llme;
Harald Welte68b99a42010-05-18 12:05:42 +0200855 msgid2mmctx(ctx, msg);
Harald Welte9b455bf2010-03-14 15:45:01 +0800856 break;
857 case GSM_MI_TYPE_TMSI:
Harald Welteab1d5622010-05-18 19:58:38 +0200858 memcpy(&tmsi, mi+1, 4);
859 tmsi = ntohl(tmsi);
Harald Welte9b455bf2010-03-14 15:45:01 +0800860 /* Try to find MM context based on P-TMSI */
Harald Welte807a5d82010-06-01 11:53:01 +0200861 if (!ctx)
862 ctx = sgsn_mm_ctx_by_ptmsi(tmsi);
Harald Welte9b455bf2010-03-14 15:45:01 +0800863 if (!ctx) {
Harald Weltec728eea2010-12-24 23:07:18 +0100864 /* Allocate a context as most of our code expects one.
865 * Context will not have an IMSI ultil ID RESP is received */
Harald Welte943c5bc2010-04-30 16:33:12 +0200866 ctx = sgsn_mm_ctx_alloc(msgb_tlli(msg), &ra_id);
Harald Welte807a5d82010-06-01 11:53:01 +0200867 ctx->p_tmsi = tmsi;
Harald Welte9b455bf2010-03-14 15:45:01 +0800868 }
Harald Welte807a5d82010-06-01 11:53:01 +0200869 ctx->tlli = msgb_tlli(msg);
870 ctx->llme = llme;
871 msgid2mmctx(ctx, msg);
Harald Welte9b455bf2010-03-14 15:45:01 +0800872 break;
873 default:
Harald Weltec2e8cc42010-05-31 20:23:38 +0200874 LOGP(DMM, LOGL_NOTICE, "Rejecting ATTACH REQUEST with "
875 "MI type %u\n", mi_type);
Jacob Erlbeck80d07e32014-11-06 13:43:41 +0100876 reject_cause = GMM_CAUSE_MS_ID_NOT_DERIVED;
877 goto rejected;
Harald Welte9b455bf2010-03-14 15:45:01 +0800878 }
Harald Welte9f1f3ad2010-05-02 12:56:57 +0200879 /* Update MM Context with currient RA and Cell ID */
880 ctx->ra = ra_id;
881 ctx->cell_id = cid;
Harald Welte56a01452010-05-31 22:12:30 +0200882 /* Update MM Context with other data */
883 ctx->drx_parms = drx_par;
Alexander Chemeris84402c02013-07-03 10:12:23 +0400884 ctx->ms_radio_access_capa.len = ms_ra_acc_cap_len;
Harald Welte4b2ed352011-07-27 23:35:38 +0200885 memcpy(ctx->ms_radio_access_capa.buf, ms_ra_acc_cap,
886 ctx->ms_radio_access_capa.len);
Harald Welte56a01452010-05-31 22:12:30 +0200887 ctx->ms_network_capa.len = msnc_len;
888 memcpy(ctx->ms_network_capa.buf, msnc, msnc_len);
889
Harald Weltec2e8cc42010-05-31 20:23:38 +0200890#ifdef PTMSI_ALLOC
Harald Welte807a5d82010-06-01 11:53:01 +0200891 /* Allocate a new P-TMSI (+ P-TMSI signature) and update TLLI */
Jacob Erlbeckf6e7d992014-11-06 15:43:10 +0100892 /* Don't change the P-TMSI if a P-TMSI re-assignment is under way */
893 if (ctx->mm_state != GMM_COMMON_PROC_INIT) {
894 ctx->p_tmsi_old = ctx->p_tmsi;
895 ctx->p_tmsi = sgsn_alloc_ptmsi();
896 }
Jacob Erlbeck0074a772014-10-28 16:23:46 +0100897 ctx->mm_state = GMM_COMMON_PROC_INIT;
Harald Welteab1d5622010-05-18 19:58:38 +0200898#endif
Harald Welte807a5d82010-06-01 11:53:01 +0200899 /* Even if there is no P-TMSI allocated, the MS will switch from
900 * foreign TLLI to local TLLI */
901 ctx->tlli_new = gprs_tmsi2tlli(ctx->p_tmsi, TLLI_LOCAL);
902
903 /* Inform LLC layer about new TLLI but keep old active */
Harald Welted6f582b2010-06-30 23:18:57 +0200904 gprs_llgmm_assign(ctx->llme, ctx->tlli, ctx->tlli_new,
905 GPRS_ALGO_GEA0, NULL);
Harald Welte9b455bf2010-03-14 15:45:01 +0800906
Jacob Erlbeck93eae8e2014-10-28 12:23:29 +0100907 ctx->pending_req = GSM48_MT_GMM_ATTACH_REQ;
908 return gsm48_gmm_authorize(ctx);
Harald Welte9b455bf2010-03-14 15:45:01 +0800909
910err_inval:
Daniel Willmann46553142014-09-03 17:46:44 +0200911 LOGPC(DMM, LOGL_INFO, "\n");
Jacob Erlbeck80d07e32014-11-06 13:43:41 +0100912 reject_cause = GMM_CAUSE_SEM_INCORR_MSG;
913
914rejected:
915 /* Send ATTACH REJECT */
916 LOGMMCTXP(LOGL_NOTICE, ctx,
917 "Rejecting Attach Request with cause '%s' (%d)\n",
Jacob Erlbeckafcf2302015-01-05 17:30:02 +0100918 get_value_string(gsm48_gmm_cause_names, reject_cause), reject_cause);
Jacob Erlbeck80d07e32014-11-06 13:43:41 +0100919 rc = gsm48_tx_gmm_att_rej_oldmsg(msg, reject_cause);
920 if (ctx)
921 mm_ctx_cleanup_free(ctx, "GPRS ATTACH REJ");
922 else
923 /* TLLI unassignment */
924 gprs_llgmm_assign(llme, llme->tlli, 0xffffffff, GPRS_ALGO_GEA0, NULL);
925
926 return rc;
927
Harald Welte9b455bf2010-03-14 15:45:01 +0800928}
929
Harald Welte2720e732010-05-17 00:44:57 +0200930/* Section 4.7.4.1 / 9.4.5.2 MO Detach request */
Harald Welted193cb32010-05-17 22:58:03 +0200931static int gsm48_rx_gmm_det_req(struct sgsn_mm_ctx *ctx, struct msgb *msg)
Harald Welte2720e732010-05-17 00:44:57 +0200932{
933 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_gmmh(msg);
Harald Welte2720e732010-05-17 00:44:57 +0200934 uint8_t detach_type, power_off;
Jacob Erlbeck5a38f642014-10-21 13:09:55 +0200935 int rc = 0;
Harald Welte2720e732010-05-17 00:44:57 +0200936
937 detach_type = gh->data[0] & 0x7;
938 power_off = gh->data[0] & 0x8;
939
940 /* FIXME: In 24.008 there is an optional P-TMSI and P-TMSI signature IE */
941
Daniel Willmann46553142014-09-03 17:46:44 +0200942 LOGMMCTXP(LOGL_INFO, ctx, "-> GMM DETACH REQUEST TLLI=0x%08x type=%s %s\n",
Harald Welte2720e732010-05-17 00:44:57 +0200943 msgb_tlli(msg), get_value_string(gprs_det_t_mo_strs, detach_type),
944 power_off ? "Power-off" : "");
945
Jacob Erlbeck5a38f642014-10-21 13:09:55 +0200946 /* Only send the Detach Accept (MO) if power off isn't indicated,
Jacob Erlbeckb9ab0d42014-10-21 09:52:05 +0200947 * see 04.08, 4.7.4.1.2/3 for details */
948 if (!power_off) {
949 /* force_stby = 0 */
Jacob Erlbeck5a38f642014-10-21 13:09:55 +0200950 if (ctx)
951 rc = gsm48_tx_gmm_det_ack(ctx, 0);
952 else
953 rc = gsm48_tx_gmm_det_ack_oldmsg(msg, 0);
Jacob Erlbeckb9ab0d42014-10-21 09:52:05 +0200954 }
Harald Weltebd5c9122010-06-28 22:18:53 +0200955
Jacob Erlbeck5a38f642014-10-21 13:09:55 +0200956 if (ctx)
957 mm_ctx_cleanup_free(ctx, "GPRS DETACH REQUEST");
Jacob Erlbeck258ce3d2014-09-30 13:51:45 +0200958
Harald Weltebd5c9122010-06-28 22:18:53 +0200959 return rc;
Harald Welte2720e732010-05-17 00:44:57 +0200960}
961
Harald Welte9b455bf2010-03-14 15:45:01 +0800962/* Chapter 9.4.15: Routing area update accept */
Harald Welte6463c072010-05-18 17:04:55 +0200963static int gsm48_tx_gmm_ra_upd_ack(struct sgsn_mm_ctx *mm)
Harald Welte9b455bf2010-03-14 15:45:01 +0800964{
965 struct msgb *msg = gsm48_msgb_alloc();
966 struct gsm48_hdr *gh;
967 struct gsm48_ra_upd_ack *rua;
Harald Weltec2e8cc42010-05-31 20:23:38 +0200968 uint8_t *mid;
Harald Welte9b455bf2010-03-14 15:45:01 +0800969
Daniel Willmann46553142014-09-03 17:46:44 +0200970 LOGMMCTXP(LOGL_INFO, mm, "<- ROUTING AREA UPDATE ACCEPT\n");
Harald Welte9b455bf2010-03-14 15:45:01 +0800971
Harald Welte6463c072010-05-18 17:04:55 +0200972 mmctx2msgid(msg, mm);
Harald Welte9b455bf2010-03-14 15:45:01 +0800973
974 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
975 gh->proto_discr = GSM48_PDISC_MM_GPRS;
976 gh->msg_type = GSM48_MT_GMM_RA_UPD_ACK;
977
978 rua = (struct gsm48_ra_upd_ack *) msgb_put(msg, sizeof(*rua));
979 rua->force_stby = 0; /* not indicated */
980 rua->upd_result = 0; /* RA updated */
981 rua->ra_upd_timer = GPRS_TMR_MINUTE | 10;
Harald Welte11d7c102010-05-02 11:54:55 +0200982
Harald Welte6463c072010-05-18 17:04:55 +0200983 gsm48_construct_ra(rua->ra_id.digits, &mm->ra);
Harald Welte9b455bf2010-03-14 15:45:01 +0800984
Harald Weltec2e8cc42010-05-31 20:23:38 +0200985#if 0
986 /* Optional: P-TMSI signature */
987 msgb_v_put(msg, GSM48_IE_GMM_PTMSI_SIG);
988 ptsig = msgb_put(msg, 3);
989 ptsig[0] = mm->p_tmsi_sig >> 16;
990 ptsig[1] = mm->p_tmsi_sig >> 8;
991 ptsig[2] = mm->p_tmsi_sig & 0xff;
992#endif
993
994#ifdef PTMSI_ALLOC
995 /* Optional: Allocated P-TMSI */
996 mid = msgb_put(msg, GSM48_MID_TMSI_LEN);
997 gsm48_generate_mid_from_tmsi(mid, mm->p_tmsi);
998 mid[0] = GSM48_IE_GMM_ALLOC_PTMSI;
999#endif
1000
Jacob Erlbeck8de9c482015-01-23 11:44:39 +01001001 /* Optional: Negotiated READY timer value */
1002 msgb_tv_put(msg, GSM48_IE_GMM_TIMER_READY,
1003 gprs_secs_to_tmr_floor(GSM0408_T3314_SECS));
1004
Harald Weltec2e8cc42010-05-31 20:23:38 +02001005 /* Option: MS ID, ... */
Harald Welte56a01452010-05-31 22:12:30 +02001006 return gsm48_gmm_sendmsg(msg, 0, mm);
Harald Welte9b455bf2010-03-14 15:45:01 +08001007}
1008
1009/* Chapter 9.4.17: Routing area update reject */
Harald Welteeaa614c2010-05-02 11:26:34 +02001010static int gsm48_tx_gmm_ra_upd_rej(struct msgb *old_msg, uint8_t cause)
Harald Welte9b455bf2010-03-14 15:45:01 +08001011{
1012 struct msgb *msg = gsm48_msgb_alloc();
1013 struct gsm48_hdr *gh;
1014
Daniel Willmann46553142014-09-03 17:46:44 +02001015 LOGP(DMM, LOGL_NOTICE, "<- ROUTING AREA UPDATE REJECT\n");
Harald Welte9b455bf2010-03-14 15:45:01 +08001016
Harald Welte11d7c102010-05-02 11:54:55 +02001017 gmm_copy_id(msg, old_msg);
Harald Welte9b455bf2010-03-14 15:45:01 +08001018
1019 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh) + 2);
1020 gh->proto_discr = GSM48_PDISC_MM_GPRS;
1021 gh->msg_type = GSM48_MT_GMM_RA_UPD_REJ;
1022 gh->data[0] = cause;
1023 gh->data[1] = 0; /* ? */
1024
1025 /* Option: P-TMSI signature, allocated P-TMSI, MS ID, ... */
Harald Welte8acd88f2010-05-18 10:57:45 +02001026 return gsm48_gmm_sendmsg(msg, 0, NULL);
Harald Welte9b455bf2010-03-14 15:45:01 +08001027}
1028
Harald Welte588d44e2010-06-09 10:28:29 +02001029static void process_ms_ctx_status(struct sgsn_mm_ctx *mmctx,
Holger Hans Peter Freyther2b174542011-10-14 23:31:34 +02001030 const uint8_t *pdp_status)
Harald Welte588d44e2010-06-09 10:28:29 +02001031{
1032 struct sgsn_pdp_ctx *pdp, *pdp2;
1033 /* 24.008 4.7.5.1.3: If the PDP context status information element is
1034 * included in ROUTING AREA UPDATE REQUEST message, then the network
1035 * shall deactivate all those PDP contexts locally (without peer to
1036 * peer signalling between the MS and the network), which are not in SM
1037 * state PDP-INACTIVE on network side but are indicated by the MS as
1038 * being in state PDP-INACTIVE. */
1039
1040 llist_for_each_entry_safe(pdp, pdp2, &mmctx->pdp_list, list) {
Harald Weltecdf76cf2011-08-05 21:23:46 +02001041 if (pdp->nsapi < 8) {
1042 if (!(pdp_status[0] & (1 << pdp->nsapi))) {
Daniel Willmann46553142014-09-03 17:46:44 +02001043 LOGMMCTXP(LOGL_NOTICE, mmctx, "Dropping PDP context for NSAPI=%u "
Harald Weltecdf76cf2011-08-05 21:23:46 +02001044 "due to PDP CTX STATUS IE= 0x%02x%02x\n",
1045 pdp->nsapi, pdp_status[1], pdp_status[0]);
1046 sgsn_delete_pdp_ctx(pdp);
1047 }
1048 } else {
1049 if (!(pdp_status[1] & (1 << (pdp->nsapi - 8)))) {
Daniel Willmann46553142014-09-03 17:46:44 +02001050 LOGMMCTXP(LOGL_NOTICE, mmctx, "Dropping PDP context for NSAPI=%u "
Harald Weltecdf76cf2011-08-05 21:23:46 +02001051 "due to PDP CTX STATUS IE= 0x%02x%02x\n",
1052 pdp->nsapi, pdp_status[1], pdp_status[0]);
1053 sgsn_delete_pdp_ctx(pdp);
1054 }
Harald Welte588d44e2010-06-09 10:28:29 +02001055 }
1056 }
1057}
1058
Harald Welte9b455bf2010-03-14 15:45:01 +08001059/* Chapter 9.4.14: Routing area update request */
Harald Welte807a5d82010-06-01 11:53:01 +02001060static int gsm48_rx_gmm_ra_upd_req(struct sgsn_mm_ctx *mmctx, struct msgb *msg,
1061 struct gprs_llc_llme *llme)
Harald Welte9b455bf2010-03-14 15:45:01 +08001062{
Harald Welte943c5bc2010-04-30 16:33:12 +02001063 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_gmmh(msg);
Harald Welteeaa614c2010-05-02 11:26:34 +02001064 uint8_t *cur = gh->data;
Harald Welte588d44e2010-06-09 10:28:29 +02001065 uint8_t ms_ra_acc_cap_len;
Harald Welte9b455bf2010-03-14 15:45:01 +08001066 struct gprs_ra_id old_ra_id;
Harald Welte588d44e2010-06-09 10:28:29 +02001067 struct tlv_parsed tp;
Harald Welteeaa614c2010-05-02 11:26:34 +02001068 uint8_t upd_type;
Jacob Erlbeck80d07e32014-11-06 13:43:41 +01001069 enum gsm48_gmm_cause reject_cause;
1070 int rc;
Harald Welte9b455bf2010-03-14 15:45:01 +08001071
1072 /* Update Type 10.5.5.18 */
1073 upd_type = *cur++ & 0x0f;
1074
Daniel Willmann46553142014-09-03 17:46:44 +02001075 LOGP(DMM, LOGL_INFO, "-> GMM RA UPDATE REQUEST type=\"%s\"\n",
Harald Welte2720e732010-05-17 00:44:57 +02001076 get_value_string(gprs_upd_t_strs, upd_type));
Harald Welte9b455bf2010-03-14 15:45:01 +08001077
1078 /* Old routing area identification 10.5.5.15 */
1079 gsm48_parse_ra(&old_ra_id, cur);
1080 cur += 6;
1081
1082 /* MS Radio Access Capability 10.5.5.12a */
Harald Welte588d44e2010-06-09 10:28:29 +02001083 ms_ra_acc_cap_len = *cur++;
Jacob Erlbeck80d07e32014-11-06 13:43:41 +01001084 if (ms_ra_acc_cap_len > 52) {
1085 reject_cause = GMM_CAUSE_PROTO_ERR_UNSPEC;
1086 goto rejected;
1087 }
Harald Welte4b2ed352011-07-27 23:35:38 +02001088 cur += ms_ra_acc_cap_len;
Harald Welte9b455bf2010-03-14 15:45:01 +08001089
1090 /* Optional: Old P-TMSI Signature, Requested READY timer, TMSI Status,
1091 * DRX parameter, MS network capability */
Holger Hans Peter Freyther1768a572014-04-04 12:40:34 +02001092 tlv_parse(&tp, &gsm48_gmm_att_tlvdef, cur,
Harald Welte588d44e2010-06-09 10:28:29 +02001093 (msg->data + msg->len) - cur, 0, 0);
Harald Welte9b455bf2010-03-14 15:45:01 +08001094
1095 switch (upd_type) {
1096 case GPRS_UPD_T_RA_LA:
1097 case GPRS_UPD_T_RA_LA_IMSI_ATT:
Daniel Willmann46553142014-09-03 17:46:44 +02001098 LOGP(DMM, LOGL_NOTICE, "Update type %i unsupported in Mode III, is your SI13 corrupt?\n", upd_type);
Jacob Erlbeck80d07e32014-11-06 13:43:41 +01001099 reject_cause = GMM_CAUSE_PROTO_ERR_UNSPEC;
1100 goto rejected;
Harald Welte9b455bf2010-03-14 15:45:01 +08001101 case GPRS_UPD_T_RA:
1102 case GPRS_UPD_T_PERIODIC:
1103 break;
1104 }
1105
1106 /* Look-up the MM context based on old RA-ID and TLLI */
Harald Weltef6bd3402010-12-23 23:34:43 +01001107 mmctx = sgsn_mm_ctx_by_tlli(msgb_tlli(msg), &old_ra_id);
Harald Welte9b455bf2010-03-14 15:45:01 +08001108 if (!mmctx || mmctx->mm_state == GMM_DEREGISTERED) {
Harald Welte2b697a62011-10-16 18:50:56 +02001109 /* send a XID reset to re-set all LLC sequence numbers
1110 * in the MS */
Daniel Willmann46553142014-09-03 17:46:44 +02001111 LOGP(DMM, LOGL_NOTICE, "LLC XID RESET\n");
Harald Welte2b697a62011-10-16 18:50:56 +02001112 gprs_llgmm_reset(llme);
Harald Welte9b455bf2010-03-14 15:45:01 +08001113 /* The MS has to perform GPRS attach */
Jacob Erlbeck78ecaf02014-09-05 14:32:36 +02001114 /* Device is still IMSI attached for CS but initiate GPRS ATTACH,
1115 * see GSM 04.08, 4.7.5.1.4 and G.6 */
Jacob Erlbeck80d07e32014-11-06 13:43:41 +01001116 reject_cause = GMM_CAUSE_IMPL_DETACHED;
1117 goto rejected;
Harald Welte9b455bf2010-03-14 15:45:01 +08001118 }
1119
Harald Weltef0901f02010-12-26 10:39:26 +01001120 /* Store new BVCI/NSEI in MM context (FIXME: delay until we ack?) */
1121 msgid2mmctx(mmctx, msg);
1122 /* Bump the statistics of received signalling msgs for this MM context */
1123 rate_ctr_inc(&mmctx->ctrg->ctr[GMM_CTR_PKTS_SIG_IN]);
1124
Harald Welte9f1f3ad2010-05-02 12:56:57 +02001125 /* Update the MM context with the new RA-ID */
1126 bssgp_parse_cell_id(&mmctx->ra, msgb_bcid(msg));
Harald Weltef0901f02010-12-26 10:39:26 +01001127 /* Update the MM context with the new (i.e. foreign) TLLI */
Harald Welte9f1f3ad2010-05-02 12:56:57 +02001128 mmctx->tlli = msgb_tlli(msg);
Harald Welte9b455bf2010-03-14 15:45:01 +08001129 /* FIXME: Update the MM context with the MS radio acc capabilities */
1130 /* FIXME: Update the MM context with the MS network capabilities */
1131
Harald Welte77289c22010-05-18 14:32:29 +02001132 rate_ctr_inc(&mmctx->ctrg->ctr[GMM_CTR_RA_UPDATE]);
1133
Harald Weltec2e8cc42010-05-31 20:23:38 +02001134#ifdef PTMSI_ALLOC
Jacob Erlbeckf6e7d992014-11-06 15:43:10 +01001135 /* Don't change the P-TMSI if a P-TMSI re-assignment is under way */
1136 if (mmctx->mm_state != GMM_COMMON_PROC_INIT) {
1137 mmctx->p_tmsi_old = mmctx->p_tmsi;
1138 mmctx->p_tmsi = sgsn_alloc_ptmsi();
1139 }
Harald Weltec2e8cc42010-05-31 20:23:38 +02001140 /* Start T3350 and re-transmit up to 5 times until ATTACH COMPLETE */
1141 mmctx->t3350_mode = GMM_T3350_MODE_RAU;
1142 mmctx_timer_start(mmctx, 3350, GSM0408_T3350_SECS);
Jacob Erlbeck0074a772014-10-28 16:23:46 +01001143
1144 mmctx->mm_state = GMM_COMMON_PROC_INIT;
1145#else
1146 /* Make sure we are NORMAL (i.e. not SUSPENDED anymore) */
1147 mmctx->mm_state = GMM_REGISTERED_NORMAL;
Harald Weltec2e8cc42010-05-31 20:23:38 +02001148#endif
Harald Welte807a5d82010-06-01 11:53:01 +02001149 /* Even if there is no P-TMSI allocated, the MS will switch from
1150 * foreign TLLI to local TLLI */
1151 mmctx->tlli_new = gprs_tmsi2tlli(mmctx->p_tmsi, TLLI_LOCAL);
Harald Weltec2e8cc42010-05-31 20:23:38 +02001152
Harald Welte807a5d82010-06-01 11:53:01 +02001153 /* Inform LLC layer about new TLLI but keep old active */
Harald Welted6f582b2010-06-30 23:18:57 +02001154 gprs_llgmm_assign(mmctx->llme, mmctx->tlli, mmctx->tlli_new,
1155 GPRS_ALGO_GEA0, NULL);
Harald Welte807a5d82010-06-01 11:53:01 +02001156
Harald Welte588d44e2010-06-09 10:28:29 +02001157 /* Look at PDP Context Status IE and see if MS's view of
1158 * activated/deactivated NSAPIs agrees with our view */
1159 if (TLVP_PRESENT(&tp, GSM48_IE_GMM_PDP_CTX_STATUS)) {
Holger Hans Peter Freyther2b174542011-10-14 23:31:34 +02001160 const uint8_t *pdp_status = TLVP_VAL(&tp, GSM48_IE_GMM_PDP_CTX_STATUS);
Harald Welte588d44e2010-06-09 10:28:29 +02001161 process_ms_ctx_status(mmctx, pdp_status);
1162 }
1163
Harald Welte807a5d82010-06-01 11:53:01 +02001164 /* Send RA UPDATE ACCEPT */
Harald Welte6463c072010-05-18 17:04:55 +02001165 return gsm48_tx_gmm_ra_upd_ack(mmctx);
Jacob Erlbeck80d07e32014-11-06 13:43:41 +01001166
1167rejected:
1168 /* Send RA UPDATE REJECT */
1169 LOGMMCTXP(LOGL_NOTICE, mmctx,
1170 "Rejecting RA Update Request with cause '%s' (%d)\n",
Jacob Erlbeckafcf2302015-01-05 17:30:02 +01001171 get_value_string(gsm48_gmm_cause_names, reject_cause), reject_cause);
Jacob Erlbeck80d07e32014-11-06 13:43:41 +01001172 rc = gsm48_tx_gmm_ra_upd_rej(msg, reject_cause);
1173 if (mmctx)
1174 mm_ctx_cleanup_free(mmctx, "GPRS RA UPDATE REJ");
1175 else
1176 /* TLLI unassignment */
1177 gprs_llgmm_assign(llme, llme->tlli, 0xffffffff, GPRS_ALGO_GEA0,
1178 NULL);
1179
1180 return rc;
Harald Welte9b455bf2010-03-14 15:45:01 +08001181}
1182
Harald Welted193cb32010-05-17 22:58:03 +02001183static int gsm48_rx_gmm_status(struct sgsn_mm_ctx *mmctx, struct msgb *msg)
Harald Welte9b455bf2010-03-14 15:45:01 +08001184{
1185 struct gsm48_hdr *gh = msgb_l3(msg);
1186
Daniel Willmann46553142014-09-03 17:46:44 +02001187 LOGMMCTXP(LOGL_INFO, mmctx, "-> GPRS MM STATUS (cause: %s)\n",
Jacob Erlbeckafcf2302015-01-05 17:30:02 +01001188 get_value_string(gsm48_gmm_cause_names, gh->data[0]));
Harald Welte9b455bf2010-03-14 15:45:01 +08001189
1190 return 0;
1191}
1192
1193/* GPRS Mobility Management */
Harald Welte807a5d82010-06-01 11:53:01 +02001194static int gsm0408_rcv_gmm(struct sgsn_mm_ctx *mmctx, struct msgb *msg,
1195 struct gprs_llc_llme *llme)
Harald Welte9b455bf2010-03-14 15:45:01 +08001196{
Harald Welte943c5bc2010-04-30 16:33:12 +02001197 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_gmmh(msg);
Harald Welte9b455bf2010-03-14 15:45:01 +08001198 int rc;
1199
Harald Welte807a5d82010-06-01 11:53:01 +02001200 /* MMCTX can be NULL when called */
1201
Harald Welted193cb32010-05-17 22:58:03 +02001202 if (!mmctx &&
1203 gh->msg_type != GSM48_MT_GMM_ATTACH_REQ &&
Harald Weltec2e8cc42010-05-31 20:23:38 +02001204 gh->msg_type != GSM48_MT_GMM_RA_UPD_REQ) {
Harald Welted193cb32010-05-17 22:58:03 +02001205 LOGP(DMM, LOGL_NOTICE, "Cannot handle GMM for unknown MM CTX\n");
Jacob Erlbeck78ecaf02014-09-05 14:32:36 +02001206 /* 4.7.10 */
Jacob Erlbeck14ae5822014-10-28 09:47:03 +01001207 if (gh->msg_type == GSM48_MT_GMM_STATUS) {
1208 /* TLLI unassignment */
1209 gprs_llgmm_assign(llme, llme->tlli, 0xffffffff,
1210 GPRS_ALGO_GEA0, NULL);
Jacob Erlbeck78ecaf02014-09-05 14:32:36 +02001211 return 0;
Jacob Erlbeck14ae5822014-10-28 09:47:03 +01001212 }
Jacob Erlbeck78ecaf02014-09-05 14:32:36 +02001213
Jacob Erlbeck78ecaf02014-09-05 14:32:36 +02001214 /* Don't reply or establish a LLME on DETACH_ACK */
1215 if (gh->msg_type == GSM48_MT_GMM_DETACH_ACK) {
1216 /* TLLI unassignment */
1217 return gprs_llgmm_assign(llme, llme->tlli, 0xffffffff,
1218 GPRS_ALGO_GEA0, NULL);
1219 }
1220
Jacob Erlbeckc4f9bf32014-11-11 08:55:13 +01001221 gprs_llgmm_reset(llme);
1222
Jacob Erlbeck78ecaf02014-09-05 14:32:36 +02001223 /* Don't force it into re-attachment */
1224 if (gh->msg_type == GSM48_MT_GMM_DETACH_REQ) {
Jacob Erlbeck5a38f642014-10-21 13:09:55 +02001225 /* Handle Detach Request */
1226 rc = gsm48_rx_gmm_det_req(NULL, msg);
Jacob Erlbeck78ecaf02014-09-05 14:32:36 +02001227
1228 /* TLLI unassignment */
1229 gprs_llgmm_assign(llme, llme->tlli, 0xffffffff,
1230 GPRS_ALGO_GEA0, NULL);
1231 return rc;
1232 }
1233
1234 /* Force the MS to re-attach */
Jacob Erlbeckb1c074f2014-10-31 12:27:11 +01001235 rc = sgsn_force_reattach_oldmsg(msg);
1236
1237 /* TLLI unassignment */
1238 gprs_llgmm_assign(llme, llme->tlli, 0xffffffff,
1239 GPRS_ALGO_GEA0, NULL);
1240 return rc;
Harald Welted193cb32010-05-17 22:58:03 +02001241 }
1242
Harald Welte9b455bf2010-03-14 15:45:01 +08001243 switch (gh->msg_type) {
1244 case GSM48_MT_GMM_RA_UPD_REQ:
Harald Welte807a5d82010-06-01 11:53:01 +02001245 rc = gsm48_rx_gmm_ra_upd_req(mmctx, msg, llme);
Harald Welte9b455bf2010-03-14 15:45:01 +08001246 break;
1247 case GSM48_MT_GMM_ATTACH_REQ:
Harald Welte807a5d82010-06-01 11:53:01 +02001248 rc = gsm48_rx_gmm_att_req(mmctx, msg, llme);
Harald Welte9b455bf2010-03-14 15:45:01 +08001249 break;
Daniel Willmann46553142014-09-03 17:46:44 +02001250 /* For all the following types mmctx can not be NULL */
Harald Welte9b455bf2010-03-14 15:45:01 +08001251 case GSM48_MT_GMM_ID_RESP:
Harald Welted193cb32010-05-17 22:58:03 +02001252 rc = gsm48_rx_gmm_id_resp(mmctx, msg);
Harald Welte9b455bf2010-03-14 15:45:01 +08001253 break;
1254 case GSM48_MT_GMM_STATUS:
Harald Welted193cb32010-05-17 22:58:03 +02001255 rc = gsm48_rx_gmm_status(mmctx, msg);
Harald Welte9b455bf2010-03-14 15:45:01 +08001256 break;
Harald Welte2720e732010-05-17 00:44:57 +02001257 case GSM48_MT_GMM_DETACH_REQ:
Harald Welted193cb32010-05-17 22:58:03 +02001258 rc = gsm48_rx_gmm_det_req(mmctx, msg);
Harald Welte2720e732010-05-17 00:44:57 +02001259 break;
Jacob Erlbeck78ecaf02014-09-05 14:32:36 +02001260 case GSM48_MT_GMM_DETACH_ACK:
1261 LOGMMCTXP(LOGL_INFO, mmctx, "-> DETACH ACK\n");
1262 mm_ctx_cleanup_free(mmctx, "GPRS DETACH ACK");
1263 rc = 0;
1264 break;
Harald Welte9b455bf2010-03-14 15:45:01 +08001265 case GSM48_MT_GMM_ATTACH_COMPL:
1266 /* only in case SGSN offered new P-TMSI */
Daniel Willmann46553142014-09-03 17:46:44 +02001267 LOGMMCTXP(LOGL_INFO, mmctx, "-> ATTACH COMPLETE\n");
Harald Weltec2e8cc42010-05-31 20:23:38 +02001268 mmctx_timer_stop(mmctx, 3350);
Jacob Erlbeck93eae8e2014-10-28 12:23:29 +01001269 mmctx->t3350_mode = GMM_T3350_MODE_NONE;
Harald Weltec2e8cc42010-05-31 20:23:38 +02001270 mmctx->p_tmsi_old = 0;
Jacob Erlbeck93eae8e2014-10-28 12:23:29 +01001271 mmctx->pending_req = 0;
Harald Welte807a5d82010-06-01 11:53:01 +02001272 /* Unassign the old TLLI */
1273 mmctx->tlli = mmctx->tlli_new;
Harald Welted6f582b2010-06-30 23:18:57 +02001274 gprs_llgmm_assign(mmctx->llme, 0xffffffff, mmctx->tlli_new,
1275 GPRS_ALGO_GEA0, NULL);
Jacob Erlbeck0074a772014-10-28 16:23:46 +01001276 mmctx->mm_state = GMM_REGISTERED_NORMAL;
Holger Hans Peter Freyther2b174542011-10-14 23:31:34 +02001277 rc = 0;
Harald Weltec2e8cc42010-05-31 20:23:38 +02001278 break;
Harald Welteab1d5622010-05-18 19:58:38 +02001279 case GSM48_MT_GMM_RA_UPD_COMPL:
1280 /* only in case SGSN offered new P-TMSI */
Daniel Willmann46553142014-09-03 17:46:44 +02001281 LOGMMCTXP(LOGL_INFO, mmctx, "-> ROUTEING AREA UPDATE COMPLETE\n");
Harald Weltec2e8cc42010-05-31 20:23:38 +02001282 mmctx_timer_stop(mmctx, 3350);
Jacob Erlbeck93eae8e2014-10-28 12:23:29 +01001283 mmctx->t3350_mode = GMM_T3350_MODE_NONE;
Harald Weltec2e8cc42010-05-31 20:23:38 +02001284 mmctx->p_tmsi_old = 0;
Jacob Erlbeck93eae8e2014-10-28 12:23:29 +01001285 mmctx->pending_req = 0;
Harald Welte807a5d82010-06-01 11:53:01 +02001286 /* Unassign the old TLLI */
1287 mmctx->tlli = mmctx->tlli_new;
Harald Welted6f582b2010-06-30 23:18:57 +02001288 gprs_llgmm_assign(mmctx->llme, 0xffffffff, mmctx->tlli_new,
1289 GPRS_ALGO_GEA0, NULL);
Jacob Erlbeck0074a772014-10-28 16:23:46 +01001290 mmctx->mm_state = GMM_REGISTERED_NORMAL;
Holger Hans Peter Freyther2b174542011-10-14 23:31:34 +02001291 rc = 0;
Harald Weltec2e8cc42010-05-31 20:23:38 +02001292 break;
Harald Welte9b455bf2010-03-14 15:45:01 +08001293 case GSM48_MT_GMM_PTMSI_REALL_COMPL:
Daniel Willmann46553142014-09-03 17:46:44 +02001294 LOGMMCTXP(LOGL_INFO, mmctx, "-> PTMSI REALLLICATION COMPLETE\n");
Harald Weltec2e8cc42010-05-31 20:23:38 +02001295 mmctx_timer_stop(mmctx, 3350);
Jacob Erlbeck93eae8e2014-10-28 12:23:29 +01001296 mmctx->t3350_mode = GMM_T3350_MODE_NONE;
Harald Weltec2e8cc42010-05-31 20:23:38 +02001297 mmctx->p_tmsi_old = 0;
Jacob Erlbeck93eae8e2014-10-28 12:23:29 +01001298 mmctx->pending_req = 0;
Harald Welte807a5d82010-06-01 11:53:01 +02001299 /* Unassign the old TLLI */
1300 mmctx->tlli = mmctx->tlli_new;
Harald Welted6f582b2010-06-30 23:18:57 +02001301 //gprs_llgmm_assign(mmctx->llme, 0xffffffff, mmctx->tlli_new, GPRS_ALGO_GEA0, NULL);
Holger Hans Peter Freyther2b174542011-10-14 23:31:34 +02001302 rc = 0;
Harald Weltec2e8cc42010-05-31 20:23:38 +02001303 break;
Harald Welte9b455bf2010-03-14 15:45:01 +08001304 case GSM48_MT_GMM_AUTH_CIPH_RESP:
Harald Welte4b6ac1e2010-07-03 11:09:06 +02001305 rc = gsm48_rx_gmm_auth_ciph_resp(mmctx, msg);
Harald Welte9b455bf2010-03-14 15:45:01 +08001306 break;
1307 default:
Daniel Willmann46553142014-09-03 17:46:44 +02001308 LOGMMCTXP(LOGL_NOTICE, mmctx, "Unknown GSM 04.08 GMM msg type 0x%02x\n",
Harald Welte9b455bf2010-03-14 15:45:01 +08001309 gh->msg_type);
Harald Weltef54e7e22010-06-09 10:51:23 +02001310 rc = gsm48_tx_gmm_status(mmctx, GMM_CAUSE_MSGT_NOTEXIST_NOTIMPL);
Harald Welte9b455bf2010-03-14 15:45:01 +08001311 break;
1312 }
1313
1314 return rc;
1315}
1316
Harald Weltec2e8cc42010-05-31 20:23:38 +02001317static void mmctx_timer_cb(void *_mm)
1318{
1319 struct sgsn_mm_ctx *mm = _mm;
Jacob Erlbeckbd0cf112014-12-01 12:33:33 +01001320 struct gsm_auth_tuple *at;
Harald Weltec2e8cc42010-05-31 20:23:38 +02001321
1322 mm->num_T_exp++;
1323
1324 switch (mm->T) {
1325 case 3350: /* waiting for ATTACH COMPLETE */
1326 if (mm->num_T_exp >= 5) {
Daniel Willmann46553142014-09-03 17:46:44 +02001327 LOGMMCTXP(LOGL_NOTICE, mm, "T3350 expired >= 5 times\n");
Jacob Erlbecka7904562014-11-03 10:12:52 +01001328 mm_ctx_cleanup_free(mm, "T3350");
Harald Weltec2e8cc42010-05-31 20:23:38 +02001329 /* FIXME: should we return some error? */
1330 break;
1331 }
1332 /* re-transmit the respective msg and re-start timer */
1333 switch (mm->t3350_mode) {
1334 case GMM_T3350_MODE_ATT:
1335 gsm48_tx_gmm_att_ack(mm);
1336 break;
1337 case GMM_T3350_MODE_RAU:
1338 gsm48_tx_gmm_ra_upd_ack(mm);
1339 break;
1340 case GMM_T3350_MODE_PTMSI_REALL:
1341 /* FIXME */
1342 break;
Jacob Erlbeck93eae8e2014-10-28 12:23:29 +01001343 case GMM_T3350_MODE_NONE:
1344 LOGMMCTXP(LOGL_NOTICE, mm,
1345 "T3350 mode wasn't set, ignoring timeout\n");
1346 break;
Harald Weltec2e8cc42010-05-31 20:23:38 +02001347 }
Pablo Neira Ayusobf540cb2011-05-06 12:11:06 +02001348 osmo_timer_schedule(&mm->timer, GSM0408_T3350_SECS, 0);
Harald Weltec2e8cc42010-05-31 20:23:38 +02001349 break;
Harald Welte4b6ac1e2010-07-03 11:09:06 +02001350 case 3360: /* waiting for AUTH AND CIPH RESP */
1351 if (mm->num_T_exp >= 5) {
Daniel Willmann46553142014-09-03 17:46:44 +02001352 LOGMMCTXP(LOGL_NOTICE, mm, "T3360 expired >= 5 times\n");
Jacob Erlbecka7904562014-11-03 10:12:52 +01001353 mm_ctx_cleanup_free(mm, "T3360");
Harald Welte4b6ac1e2010-07-03 11:09:06 +02001354 break;
1355 }
Jacob Erlbeckbd0cf112014-12-01 12:33:33 +01001356 /* Re-transmit the respective msg and re-start timer */
1357 if (mm->auth_triplet.key_seq == GSM_KEY_SEQ_INVAL) {
1358 LOGMMCTXP(LOGL_ERROR, mm,
1359 "timeout: invalid auth triplet reference\n");
1360 mm_ctx_cleanup_free(mm, "T3360");
1361 break;
1362 }
1363 at = &mm->auth_triplet;
1364
1365 gsm48_tx_gmm_auth_ciph_req(mm, at->rand, at->key_seq, GPRS_ALGO_GEA0);
Pablo Neira Ayusobf540cb2011-05-06 12:11:06 +02001366 osmo_timer_schedule(&mm->timer, GSM0408_T3360_SECS, 0);
Harald Welte4b6ac1e2010-07-03 11:09:06 +02001367 break;
Harald Weltec2e8cc42010-05-31 20:23:38 +02001368 case 3370: /* waiting for IDENTITY RESPONSE */
1369 if (mm->num_T_exp >= 5) {
Daniel Willmann46553142014-09-03 17:46:44 +02001370 LOGMMCTXP(LOGL_NOTICE, mm, "T3370 expired >= 5 times\n");
Harald Weltec2e8cc42010-05-31 20:23:38 +02001371 gsm48_tx_gmm_att_rej(mm, GMM_CAUSE_MS_ID_NOT_DERIVED);
Jacob Erlbecka7904562014-11-03 10:12:52 +01001372 mm_ctx_cleanup_free(mm, "GPRS ATTACH REJECT (T3370)");
Harald Weltec2e8cc42010-05-31 20:23:38 +02001373 break;
1374 }
1375 /* re-tranmit IDENTITY REQUEST and re-start timer */
1376 gsm48_tx_gmm_id_req(mm, mm->t3370_id_type);
Pablo Neira Ayusobf540cb2011-05-06 12:11:06 +02001377 osmo_timer_schedule(&mm->timer, GSM0408_T3370_SECS, 0);
Harald Weltec2e8cc42010-05-31 20:23:38 +02001378 break;
1379 default:
Daniel Willmann46553142014-09-03 17:46:44 +02001380 LOGMMCTXP(LOGL_ERROR, mm, "timer expired in unknown mode %u\n",
Harald Weltec2e8cc42010-05-31 20:23:38 +02001381 mm->T);
1382 }
1383}
1384
1385/* GPRS SESSION MANAGEMENT */
1386
Harald Weltea9b473a2010-12-24 21:13:26 +01001387static void pdpctx_timer_cb(void *_mm);
1388
1389static void pdpctx_timer_start(struct sgsn_pdp_ctx *pdp, unsigned int T,
1390 unsigned int seconds)
1391{
Pablo Neira Ayusobf540cb2011-05-06 12:11:06 +02001392 if (osmo_timer_pending(&pdp->timer))
Harald Weltea9b473a2010-12-24 21:13:26 +01001393 LOGP(DMM, LOGL_ERROR, "Starting MM timer %u while old "
1394 "timer %u pending\n", T, pdp->T);
1395 pdp->T = T;
1396 pdp->num_T_exp = 0;
1397
1398 /* FIXME: we should do this only once ? */
1399 pdp->timer.data = pdp;
1400 pdp->timer.cb = &pdpctx_timer_cb;
1401
Pablo Neira Ayusobf540cb2011-05-06 12:11:06 +02001402 osmo_timer_schedule(&pdp->timer, seconds, 0);
Harald Weltea9b473a2010-12-24 21:13:26 +01001403}
1404
Holger Hans Peter Freyther1768a572014-04-04 12:40:34 +02001405#if 0
Harald Welte421cba42010-05-02 23:11:50 +02001406static void msgb_put_pdp_addr_ipv4(struct msgb *msg, uint32_t ipaddr)
1407{
1408 uint8_t v[6];
1409
1410 v[0] = PDP_TYPE_ORG_IETF;
1411 v[1] = PDP_TYPE_N_IETF_IPv4;
1412 *(uint32_t *)(v+2) = htonl(ipaddr);
1413
1414 msgb_tlv_put(msg, GSM48_IE_GSM_PDP_ADDR, sizeof(v), v);
1415}
1416
1417static void msgb_put_pdp_addr_ppp(struct msgb *msg)
1418{
1419 uint8_t v[2];
1420
1421 v[0] = PDP_TYPE_ORG_ETSI;
1422 v[1] = PDP_TYPE_N_ETSI_PPP;
1423
1424 msgb_tlv_put(msg, GSM48_IE_GSM_PDP_ADDR, sizeof(v), v);
1425}
Holger Hans Peter Freyther1768a572014-04-04 12:40:34 +02001426#endif
Harald Welte421cba42010-05-02 23:11:50 +02001427
Harald Welte9b455bf2010-03-14 15:45:01 +08001428/* Section 9.5.2: Ativate PDP Context Accept */
Harald Welte6abf94e2010-05-18 10:35:06 +02001429int gsm48_tx_gsm_act_pdp_acc(struct sgsn_pdp_ctx *pdp)
Harald Welte9b455bf2010-03-14 15:45:01 +08001430{
Harald Welte9b455bf2010-03-14 15:45:01 +08001431 struct msgb *msg = gsm48_msgb_alloc();
Harald Welte9b455bf2010-03-14 15:45:01 +08001432 struct gsm48_hdr *gh;
Harald Welte6abf94e2010-05-18 10:35:06 +02001433 uint8_t transaction_id = pdp->ti ^ 0x8; /* flip */
Harald Welte9b455bf2010-03-14 15:45:01 +08001434
Daniel Willmann46553142014-09-03 17:46:44 +02001435 LOGPDPCTXP(LOGL_INFO, pdp, "<- ACTIVATE PDP CONTEXT ACK\n");
Harald Welte9b455bf2010-03-14 15:45:01 +08001436
Harald Welte6abf94e2010-05-18 10:35:06 +02001437 mmctx2msgid(msg, pdp->mm);
Harald Welte9b455bf2010-03-14 15:45:01 +08001438
1439 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
1440 gh->proto_discr = GSM48_PDISC_SM_GPRS | (transaction_id << 4);
1441 gh->msg_type = GSM48_MT_GSM_ACT_PDP_ACK;
Harald Welte421cba42010-05-02 23:11:50 +02001442
1443 /* Negotiated LLC SAPI */
Harald Welte6abf94e2010-05-18 10:35:06 +02001444 msgb_v_put(msg, pdp->sapi);
Harald Welte4e38ac72010-05-18 14:51:18 +02001445
Harald Welte55e0df72010-05-18 13:20:08 +02001446 /* FIXME: copy QoS parameters from original request */
1447 //msgb_lv_put(msg, pdp->lib->qos_neg.l, pdp->lib->qos_neg.v);
1448 msgb_lv_put(msg, sizeof(default_qos), (uint8_t *)&default_qos);
Harald Welte4e38ac72010-05-18 14:51:18 +02001449
Harald Welte421cba42010-05-02 23:11:50 +02001450 /* Radio priority 10.5.7.2 */
Harald Welte6abf94e2010-05-18 10:35:06 +02001451 msgb_v_put(msg, pdp->lib->radio_pri);
Harald Welte4e38ac72010-05-18 14:51:18 +02001452
Harald Welte421cba42010-05-02 23:11:50 +02001453 /* PDP address */
Harald Welte4e38ac72010-05-18 14:51:18 +02001454 /* Highest 4 bits of first byte need to be set to 1, otherwise
1455 * the IE is identical with the 04.08 PDP Address IE */
1456 pdp->lib->eua.v[0] &= ~0xf0;
Harald Welte6abf94e2010-05-18 10:35:06 +02001457 msgb_tlv_put(msg, GSM48_IE_GSM_PDP_ADDR,
1458 pdp->lib->eua.l, pdp->lib->eua.v);
Harald Welte4e38ac72010-05-18 14:51:18 +02001459 pdp->lib->eua.v[0] |= 0xf0;
1460
Harald Welte77289c22010-05-18 14:32:29 +02001461 /* Optional: Protocol configuration options (FIXME: why 'req') */
Holger Hans Peter Freytherd2195072014-04-04 11:55:21 +02001462 if (pdp->lib->pco_req.l)
Harald Welte6abf94e2010-05-18 10:35:06 +02001463 msgb_tlv_put(msg, GSM48_IE_GSM_PROTO_CONF_OPT,
Harald Welte3c0b9b92010-05-18 14:36:11 +02001464 pdp->lib->pco_req.l, pdp->lib->pco_req.v);
Harald Welte4e38ac72010-05-18 14:51:18 +02001465
Harald Welte421cba42010-05-02 23:11:50 +02001466 /* Optional: Packet Flow Identifier */
Harald Welte9b455bf2010-03-14 15:45:01 +08001467
Harald Welte8acd88f2010-05-18 10:57:45 +02001468 return gsm48_gmm_sendmsg(msg, 0, pdp->mm);
Harald Welte9b455bf2010-03-14 15:45:01 +08001469}
1470
Harald Welte6abf94e2010-05-18 10:35:06 +02001471/* Section 9.5.3: Activate PDP Context reject */
1472int gsm48_tx_gsm_act_pdp_rej(struct sgsn_mm_ctx *mm, uint8_t tid,
1473 uint8_t cause, uint8_t pco_len, uint8_t *pco_v)
1474{
1475 struct msgb *msg = gsm48_msgb_alloc();
Harald Welte6abf94e2010-05-18 10:35:06 +02001476 struct gsm48_hdr *gh;
1477 uint8_t transaction_id = tid ^ 0x8; /* flip */
1478
Daniel Willmann46553142014-09-03 17:46:44 +02001479 LOGMMCTXP(LOGL_NOTICE, mm, "<- ACTIVATE PDP CONTEXT REJ(cause=%u)\n", cause);
Harald Welte6abf94e2010-05-18 10:35:06 +02001480
1481 mmctx2msgid(msg, mm);
1482
1483 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
1484 gh->proto_discr = GSM48_PDISC_SM_GPRS | (transaction_id << 4);
1485 gh->msg_type = GSM48_MT_GSM_ACT_PDP_REJ;
1486
1487 msgb_v_put(msg, cause);
1488 if (pco_len && pco_v)
1489 msgb_tlv_put(msg, GSM48_IE_GSM_PROTO_CONF_OPT, pco_len, pco_v);
1490
Harald Welte8acd88f2010-05-18 10:57:45 +02001491 return gsm48_gmm_sendmsg(msg, 0, mm);
Harald Welte6abf94e2010-05-18 10:35:06 +02001492}
1493
Harald Weltea9b473a2010-12-24 21:13:26 +01001494/* Section 9.5.8: Deactivate PDP Context Request */
1495static int _gsm48_tx_gsm_deact_pdp_req(struct sgsn_mm_ctx *mm, uint8_t tid,
1496 uint8_t sm_cause)
1497{
1498 struct msgb *msg = gsm48_msgb_alloc();
1499 struct gsm48_hdr *gh;
1500 uint8_t transaction_id = tid ^ 0x8; /* flip */
1501
Daniel Willmann46553142014-09-03 17:46:44 +02001502 LOGMMCTXP(LOGL_INFO, mm, "<- DEACTIVATE PDP CONTEXT REQ\n");
Harald Weltea9b473a2010-12-24 21:13:26 +01001503
1504 mmctx2msgid(msg, mm);
1505
1506 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
1507 gh->proto_discr = GSM48_PDISC_SM_GPRS | (transaction_id << 4);
1508 gh->msg_type = GSM48_MT_GSM_DEACT_PDP_REQ;
1509
1510 msgb_v_put(msg, sm_cause);
1511
1512 return gsm48_gmm_sendmsg(msg, 0, mm);
1513}
1514int gsm48_tx_gsm_deact_pdp_req(struct sgsn_pdp_ctx *pdp, uint8_t sm_cause)
1515{
1516 pdpctx_timer_start(pdp, 3395, GSM0408_T3395_SECS);
1517
1518 return _gsm48_tx_gsm_deact_pdp_req(pdp->mm, pdp->ti, sm_cause);
1519}
1520
Harald Welte9b455bf2010-03-14 15:45:01 +08001521/* Section 9.5.9: Deactivate PDP Context Accept */
Harald Welte60ebc022010-06-08 18:08:59 +02001522static int _gsm48_tx_gsm_deact_pdp_acc(struct sgsn_mm_ctx *mm, uint8_t tid)
Harald Welte9b455bf2010-03-14 15:45:01 +08001523{
Harald Welte9b455bf2010-03-14 15:45:01 +08001524 struct msgb *msg = gsm48_msgb_alloc();
1525 struct gsm48_hdr *gh;
Harald Welte60ebc022010-06-08 18:08:59 +02001526 uint8_t transaction_id = tid ^ 0x8; /* flip */
Harald Welte9b455bf2010-03-14 15:45:01 +08001527
Daniel Willmann46553142014-09-03 17:46:44 +02001528 LOGMMCTXP(LOGL_INFO, mm, "<- DEACTIVATE PDP CONTEXT ACK\n");
Harald Welte9b455bf2010-03-14 15:45:01 +08001529
Harald Welte60ebc022010-06-08 18:08:59 +02001530 mmctx2msgid(msg, mm);
Harald Welte9b455bf2010-03-14 15:45:01 +08001531
1532 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
1533 gh->proto_discr = GSM48_PDISC_SM_GPRS | (transaction_id << 4);
1534 gh->msg_type = GSM48_MT_GSM_DEACT_PDP_ACK;
1535
Harald Welte60ebc022010-06-08 18:08:59 +02001536 return gsm48_gmm_sendmsg(msg, 0, mm);
1537}
1538int gsm48_tx_gsm_deact_pdp_acc(struct sgsn_pdp_ctx *pdp)
1539{
1540 return _gsm48_tx_gsm_deact_pdp_acc(pdp->mm, pdp->ti);
Harald Welte9b455bf2010-03-14 15:45:01 +08001541}
1542
1543/* Section 9.5.1: Activate PDP Context Request */
Harald Welted193cb32010-05-17 22:58:03 +02001544static int gsm48_rx_gsm_act_pdp_req(struct sgsn_mm_ctx *mmctx,
1545 struct msgb *msg)
Harald Welte9b455bf2010-03-14 15:45:01 +08001546{
Harald Welte943c5bc2010-04-30 16:33:12 +02001547 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_gmmh(msg);
Harald Welte9b455bf2010-03-14 15:45:01 +08001548 struct gsm48_act_pdp_ctx_req *act_req = (struct gsm48_act_pdp_ctx_req *) gh->data;
Harald Welte0c3eae02010-05-02 21:07:14 +02001549 uint8_t req_qos_len, req_pdpa_len;
1550 uint8_t *req_qos, *req_pdpa;
1551 struct tlv_parsed tp;
Harald Welte6abf94e2010-05-18 10:35:06 +02001552 uint8_t transaction_id = (gh->proto_discr >> 4);
Harald Welte11ff3e82010-07-02 10:17:24 +02001553 struct sgsn_ggsn_ctx *ggsn;
Harald Welte6abf94e2010-05-18 10:35:06 +02001554 struct sgsn_pdp_ctx *pdp;
Harald Welte9b455bf2010-03-14 15:45:01 +08001555
Daniel Willmann46553142014-09-03 17:46:44 +02001556 LOGMMCTXP(LOGL_INFO, mmctx, "-> ACTIVATE PDP CONTEXT REQ: SAPI=%u NSAPI=%u ",
Harald Welte6abf94e2010-05-18 10:35:06 +02001557 act_req->req_llc_sapi, act_req->req_nsapi);
Harald Welte8acd88f2010-05-18 10:57:45 +02001558
Harald Welte23c13762010-07-02 22:52:04 +02001559 /* FIXME: length checks! */
Harald Welte0c3eae02010-05-02 21:07:14 +02001560 req_qos_len = act_req->data[0];
1561 req_qos = act_req->data + 1; /* 10.5.6.5 */
1562 req_pdpa_len = act_req->data[1 + req_qos_len];
1563 req_pdpa = act_req->data + 1 + req_qos_len + 1; /* 10.5.6.4 */
Harald Welte9b455bf2010-03-14 15:45:01 +08001564
Harald Welte23c13762010-07-02 22:52:04 +02001565 /* Optional: Access Point Name, Protocol Config Options */
1566 if (req_pdpa + req_pdpa_len < msg->data + msg->len)
1567 tlv_parse(&tp, &gsm48_sm_att_tlvdef, req_pdpa + req_pdpa_len,
1568 (msg->data + msg->len) - (req_pdpa + req_pdpa_len), 0, 0);
1569 else
1570 memset(&tp, 0, sizeof(tp));
1571
Harald Welte0c3eae02010-05-02 21:07:14 +02001572 switch (req_pdpa[0] & 0xf) {
1573 case 0x0:
1574 DEBUGPC(DMM, "ETSI ");
1575 break;
1576 case 0x1:
1577 DEBUGPC(DMM, "IETF ");
1578 break;
1579 case 0xf:
1580 DEBUGPC(DMM, "Empty ");
1581 break;
1582 }
1583
1584 switch (req_pdpa[1]) {
1585 case 0x21:
1586 DEBUGPC(DMM, "IPv4 ");
1587 if (req_pdpa_len >= 6) {
1588 struct in_addr ia;
1589 ia.s_addr = ntohl(*((uint32_t *) (req_pdpa+2)));
1590 DEBUGPC(DMM, "%s ", inet_ntoa(ia));
1591 }
1592 break;
1593 case 0x57:
1594 DEBUGPC(DMM, "IPv6 ");
1595 if (req_pdpa_len >= 18) {
1596 /* FIXME: print IPv6 address */
1597 }
1598 break;
1599 default:
1600 DEBUGPC(DMM, "0x%02x ", req_pdpa[1]);
1601 break;
1602 }
1603
Daniel Willmann46553142014-09-03 17:46:44 +02001604 LOGPC(DMM, LOGL_INFO, "\n");
Harald Welte77289c22010-05-18 14:32:29 +02001605
Harald Welte2720e732010-05-17 00:44:57 +02001606 /* put the non-TLV elements in the TLV parser structure to
1607 * pass them on to the SGSN / GTP code */
1608 tp.lv[OSMO_IE_GSM_REQ_QOS].len = req_qos_len;
1609 tp.lv[OSMO_IE_GSM_REQ_QOS].val = req_qos;
1610 tp.lv[OSMO_IE_GSM_REQ_PDP_ADDR].len = req_pdpa_len;
1611 tp.lv[OSMO_IE_GSM_REQ_PDP_ADDR].val = req_pdpa;
1612
Harald Welte6abf94e2010-05-18 10:35:06 +02001613 /* FIXME: determine GGSN based on APN and subscription options */
Harald Welte0c3eae02010-05-02 21:07:14 +02001614 if (TLVP_PRESENT(&tp, GSM48_IE_GSM_APN)) {}
Harald Welte6abf94e2010-05-18 10:35:06 +02001615
1616 /* Check if NSAPI is out of range (TS 04.65 / 7.2) */
1617 if (act_req->req_nsapi < 5 || act_req->req_nsapi > 15) {
1618 /* Send reject with GSM_CAUSE_INV_MAND_INFO */
1619 return gsm48_tx_gsm_act_pdp_rej(mmctx, transaction_id,
1620 GSM_CAUSE_INV_MAND_INFO,
1621 0, NULL);
1622 }
1623
1624 /* Check if NSAPI is already in use */
Harald Welteb37515e2010-07-02 10:12:58 +02001625 pdp = sgsn_pdp_ctx_by_nsapi(mmctx, act_req->req_nsapi);
1626 if (pdp) {
1627 /* We already have a PDP context for this TLLI + NSAPI tuple */
1628 if (pdp->sapi == act_req->req_llc_sapi &&
1629 pdp->ti == transaction_id) {
1630 /* This apparently is a re-transmission of a PDP CTX
1631 * ACT REQ (our ACT ACK must have got dropped) */
1632 return gsm48_tx_gsm_act_pdp_acc(pdp);
1633 }
1634
1635 /* Send reject with GSM_CAUSE_NSAPI_IN_USE */
Harald Welte6abf94e2010-05-18 10:35:06 +02001636 return gsm48_tx_gsm_act_pdp_rej(mmctx, transaction_id,
1637 GSM_CAUSE_NSAPI_IN_USE,
1638 0, NULL);
1639 }
Harald Welte9b455bf2010-03-14 15:45:01 +08001640
Harald Welte19f9e302010-07-02 10:15:49 +02001641 /* Only increment counter for a real activation, after we checked
1642 * for re-transmissions */
1643 rate_ctr_inc(&mmctx->ctrg->ctr[GMM_CTR_PDP_CTX_ACT]);
1644
Harald Welte11ff3e82010-07-02 10:17:24 +02001645 ggsn = sgsn_ggsn_ctx_by_id(0);
1646 if (!ggsn) {
1647 LOGP(DGPRS, LOGL_ERROR, "No GGSN context 0 found!\n");
1648 return -EIO;
Harald Welted193cb32010-05-17 22:58:03 +02001649 }
Harald Welte11ff3e82010-07-02 10:17:24 +02001650 ggsn->gsn = sgsn->gsn;
1651 pdp = sgsn_create_pdp_ctx(ggsn, mmctx, act_req->req_nsapi, &tp);
1652 if (!pdp)
1653 return -1;
1654
1655 /* Store SAPI and Transaction Identifier */
1656 pdp->sapi = act_req->req_llc_sapi;
1657 pdp->ti = transaction_id;
1658
Harald Welte6463c072010-05-18 17:04:55 +02001659 return 0;
Harald Welte9b455bf2010-03-14 15:45:01 +08001660}
1661
1662/* Section 9.5.8: Deactivate PDP Context Request */
Harald Welte77289c22010-05-18 14:32:29 +02001663static int gsm48_rx_gsm_deact_pdp_req(struct sgsn_mm_ctx *mm, struct msgb *msg)
Harald Welte9b455bf2010-03-14 15:45:01 +08001664{
Harald Welte943c5bc2010-04-30 16:33:12 +02001665 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_gmmh(msg);
Harald Welte77289c22010-05-18 14:32:29 +02001666 uint8_t transaction_id = (gh->proto_discr >> 4);
1667 struct sgsn_pdp_ctx *pdp;
Harald Welte9b455bf2010-03-14 15:45:01 +08001668
Daniel Willmann46553142014-09-03 17:46:44 +02001669 LOGMMCTXP(LOGL_INFO, mm, "-> DEACTIVATE PDP CONTEXT REQ (cause: %s)\n",
Jacob Erlbeckafcf2302015-01-05 17:30:02 +01001670 get_value_string(gsm48_gsm_cause_names, gh->data[0]));
Harald Welte9b455bf2010-03-14 15:45:01 +08001671
Harald Welte77289c22010-05-18 14:32:29 +02001672 pdp = sgsn_pdp_ctx_by_tid(mm, transaction_id);
1673 if (!pdp) {
Daniel Willmann46553142014-09-03 17:46:44 +02001674 LOGMMCTXP(LOGL_NOTICE, mm, "Deactivate PDP Context Request for "
Harald Welte77289c22010-05-18 14:32:29 +02001675 "non-existing PDP Context (IMSI=%s, TI=%u)\n",
1676 mm->imsi, transaction_id);
Harald Welte60ebc022010-06-08 18:08:59 +02001677 return _gsm48_tx_gsm_deact_pdp_acc(mm, transaction_id);
Harald Welte77289c22010-05-18 14:32:29 +02001678 }
1679
1680 return sgsn_delete_pdp_ctx(pdp);
Harald Welte9b455bf2010-03-14 15:45:01 +08001681}
1682
Harald Weltea9b473a2010-12-24 21:13:26 +01001683/* Section 9.5.9: Deactivate PDP Context Accept */
1684static int gsm48_rx_gsm_deact_pdp_ack(struct sgsn_mm_ctx *mm, struct msgb *msg)
1685{
1686 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_gmmh(msg);
1687 uint8_t transaction_id = (gh->proto_discr >> 4);
1688 struct sgsn_pdp_ctx *pdp;
1689
Daniel Willmann46553142014-09-03 17:46:44 +02001690 LOGMMCTXP(LOGL_INFO, mm, "-> DEACTIVATE PDP CONTEXT ACK\n");
Harald Weltea9b473a2010-12-24 21:13:26 +01001691
1692 pdp = sgsn_pdp_ctx_by_tid(mm, transaction_id);
1693 if (!pdp) {
Daniel Willmann46553142014-09-03 17:46:44 +02001694 LOGMMCTXP(LOGL_NOTICE, mm, "Deactivate PDP Context Accept for "
Harald Weltea9b473a2010-12-24 21:13:26 +01001695 "non-existing PDP Context (IMSI=%s, TI=%u)\n",
1696 mm->imsi, transaction_id);
1697 return 0;
1698 }
1699
1700 return sgsn_delete_pdp_ctx(pdp);
1701}
1702
Harald Welted193cb32010-05-17 22:58:03 +02001703static int gsm48_rx_gsm_status(struct sgsn_mm_ctx *ctx, struct msgb *msg)
Harald Welte9b455bf2010-03-14 15:45:01 +08001704{
1705 struct gsm48_hdr *gh = msgb_l3(msg);
1706
Daniel Willmann46553142014-09-03 17:46:44 +02001707 LOGMMCTXP(LOGL_INFO, ctx, "-> GPRS SM STATUS (cause: %s)\n",
Jacob Erlbeckafcf2302015-01-05 17:30:02 +01001708 get_value_string(gsm48_gsm_cause_names, gh->data[0]));
Harald Welte9b455bf2010-03-14 15:45:01 +08001709
1710 return 0;
1711}
1712
Harald Weltea9b473a2010-12-24 21:13:26 +01001713static void pdpctx_timer_cb(void *_pdp)
1714{
1715 struct sgsn_pdp_ctx *pdp = _pdp;
1716
1717 pdp->num_T_exp++;
1718
1719 switch (pdp->T) {
1720 case 3395: /* waiting for PDP CTX DEACT ACK */
1721 if (pdp->num_T_exp >= 4) {
Daniel Willmann46553142014-09-03 17:46:44 +02001722 LOGPDPCTXP(LOGL_NOTICE, pdp, "T3395 expired >= 5 times\n");
Harald Weltea9b473a2010-12-24 21:13:26 +01001723 pdp->state = PDP_STATE_INACTIVE;
1724 sgsn_delete_pdp_ctx(pdp);
1725 break;
1726 }
1727 gsm48_tx_gsm_deact_pdp_req(pdp, GSM_CAUSE_NET_FAIL);
Pablo Neira Ayusobf540cb2011-05-06 12:11:06 +02001728 osmo_timer_schedule(&pdp->timer, GSM0408_T3395_SECS, 0);
Harald Weltea9b473a2010-12-24 21:13:26 +01001729 break;
1730 default:
Daniel Willmann46553142014-09-03 17:46:44 +02001731 LOGPDPCTXP(LOGL_ERROR, pdp, "timer expired in unknown mode %u\n",
Harald Weltea9b473a2010-12-24 21:13:26 +01001732 pdp->T);
1733 }
1734}
1735
1736
Harald Welte9b455bf2010-03-14 15:45:01 +08001737/* GPRS Session Management */
Harald Welte807a5d82010-06-01 11:53:01 +02001738static int gsm0408_rcv_gsm(struct sgsn_mm_ctx *mmctx, struct msgb *msg,
1739 struct gprs_llc_llme *llme)
Harald Welte9b455bf2010-03-14 15:45:01 +08001740{
Harald Welte943c5bc2010-04-30 16:33:12 +02001741 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_gmmh(msg);
Harald Welte9b455bf2010-03-14 15:45:01 +08001742 int rc;
1743
Harald Welte807a5d82010-06-01 11:53:01 +02001744 /* MMCTX can be NULL when called */
1745
Harald Welted193cb32010-05-17 22:58:03 +02001746 if (!mmctx) {
1747 LOGP(DMM, LOGL_NOTICE, "Cannot handle SM for unknown MM CTX\n");
Jacob Erlbeck78ecaf02014-09-05 14:32:36 +02001748 /* 6.1.3.6 */
1749 if (gh->msg_type == GSM48_MT_GSM_STATUS)
1750 return 0;
1751
1752 return sgsn_force_reattach_oldmsg(msg);
Harald Welted193cb32010-05-17 22:58:03 +02001753 }
1754
Harald Welte9b455bf2010-03-14 15:45:01 +08001755 switch (gh->msg_type) {
1756 case GSM48_MT_GSM_ACT_PDP_REQ:
Harald Welted193cb32010-05-17 22:58:03 +02001757 rc = gsm48_rx_gsm_act_pdp_req(mmctx, msg);
Harald Welte9b455bf2010-03-14 15:45:01 +08001758 break;
1759 case GSM48_MT_GSM_DEACT_PDP_REQ:
Harald Welted193cb32010-05-17 22:58:03 +02001760 rc = gsm48_rx_gsm_deact_pdp_req(mmctx, msg);
Harald Welte77289c22010-05-18 14:32:29 +02001761 break;
Harald Weltea9b473a2010-12-24 21:13:26 +01001762 case GSM48_MT_GSM_DEACT_PDP_ACK:
1763 rc = gsm48_rx_gsm_deact_pdp_ack(mmctx, msg);
1764 break;
Harald Welte9b455bf2010-03-14 15:45:01 +08001765 case GSM48_MT_GSM_STATUS:
Harald Welted193cb32010-05-17 22:58:03 +02001766 rc = gsm48_rx_gsm_status(mmctx, msg);
Harald Welte9b455bf2010-03-14 15:45:01 +08001767 break;
1768 case GSM48_MT_GSM_REQ_PDP_ACT_REJ:
1769 case GSM48_MT_GSM_ACT_AA_PDP_REQ:
1770 case GSM48_MT_GSM_DEACT_AA_PDP_REQ:
Daniel Willmann46553142014-09-03 17:46:44 +02001771 LOGMMCTXP(LOGL_NOTICE, mmctx, "Unimplemented GSM 04.08 GSM msg type 0x%02x\n",
Harald Welte9b455bf2010-03-14 15:45:01 +08001772 gh->msg_type);
Harald Weltef54e7e22010-06-09 10:51:23 +02001773 rc = gsm48_tx_sm_status(mmctx, GSM_CAUSE_MSGT_NOTEXIST_NOTIMPL);
Harald Welte9b455bf2010-03-14 15:45:01 +08001774 break;
1775 default:
Daniel Willmann46553142014-09-03 17:46:44 +02001776 LOGMMCTXP(LOGL_NOTICE, mmctx, "Unknown GSM 04.08 GSM msg type 0x%02x\n",
Harald Welte9b455bf2010-03-14 15:45:01 +08001777 gh->msg_type);
Harald Weltef54e7e22010-06-09 10:51:23 +02001778 rc = gsm48_tx_sm_status(mmctx, GSM_CAUSE_MSGT_NOTEXIST_NOTIMPL);
Harald Welte9b455bf2010-03-14 15:45:01 +08001779 break;
1780
1781 }
1782
1783 return rc;
1784}
1785
Jacob Erlbeckabdf02b2014-10-31 12:20:49 +01001786int gsm0408_gprs_force_reattach_oldmsg(struct msgb *msg)
Jacob Erlbeck78ecaf02014-09-05 14:32:36 +02001787{
Jacob Erlbeckabdf02b2014-10-31 12:20:49 +01001788 int rc;
Jacob Erlbeck78ecaf02014-09-05 14:32:36 +02001789 gprs_llgmm_reset_oldmsg(msg, GPRS_SAPI_GMM);
1790
Jacob Erlbeckabdf02b2014-10-31 12:20:49 +01001791 rc = gsm48_tx_gmm_detach_req_oldmsg(
1792 msg, GPRS_DET_T_MT_REATT_REQ, GMM_CAUSE_IMPL_DETACHED);
Jacob Erlbeck78ecaf02014-09-05 14:32:36 +02001793
Jacob Erlbeckabdf02b2014-10-31 12:20:49 +01001794 return rc;
1795}
1796
1797int gsm0408_gprs_force_reattach(struct sgsn_mm_ctx *mmctx)
1798{
1799 int rc;
1800 gprs_llgmm_reset(mmctx->llme);
Jacob Erlbeck78ecaf02014-09-05 14:32:36 +02001801
Jacob Erlbeckb1c074f2014-10-31 12:27:11 +01001802 rc = gsm48_tx_gmm_detach_req(
1803 mmctx, GPRS_DET_T_MT_REATT_REQ, GMM_CAUSE_IMPL_DETACHED);
Jacob Erlbeck78ecaf02014-09-05 14:32:36 +02001804
Jacob Erlbeckb1c074f2014-10-31 12:27:11 +01001805 mm_ctx_cleanup_free(mmctx, "forced reattach");
Jacob Erlbeck78ecaf02014-09-05 14:32:36 +02001806
Jacob Erlbeckb1c074f2014-10-31 12:27:11 +01001807 return rc;
Jacob Erlbeck78ecaf02014-09-05 14:32:36 +02001808}
1809
Harald Welte9b455bf2010-03-14 15:45:01 +08001810/* Main entry point for incoming 04.08 GPRS messages */
Harald Welte807a5d82010-06-01 11:53:01 +02001811int gsm0408_gprs_rcvmsg(struct msgb *msg, struct gprs_llc_llme *llme)
Harald Welte9b455bf2010-03-14 15:45:01 +08001812{
Harald Welte943c5bc2010-04-30 16:33:12 +02001813 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_gmmh(msg);
Harald Welteeaa614c2010-05-02 11:26:34 +02001814 uint8_t pdisc = gh->proto_discr & 0x0f;
Harald Welted193cb32010-05-17 22:58:03 +02001815 struct sgsn_mm_ctx *mmctx;
1816 struct gprs_ra_id ra_id;
Harald Welte9b455bf2010-03-14 15:45:01 +08001817 int rc = -EINVAL;
1818
Harald Welted193cb32010-05-17 22:58:03 +02001819 bssgp_parse_cell_id(&ra_id, msgb_bcid(msg));
1820 mmctx = sgsn_mm_ctx_by_tlli(msgb_tlli(msg), &ra_id);
Harald Welte8acd88f2010-05-18 10:57:45 +02001821 if (mmctx) {
Harald Welte6abf94e2010-05-18 10:35:06 +02001822 msgid2mmctx(mmctx, msg);
Harald Welte8acd88f2010-05-18 10:57:45 +02001823 rate_ctr_inc(&mmctx->ctrg->ctr[GMM_CTR_PKTS_SIG_IN]);
Harald Welte807a5d82010-06-01 11:53:01 +02001824 mmctx->llme = llme;
Harald Welte8acd88f2010-05-18 10:57:45 +02001825 }
Harald Welted193cb32010-05-17 22:58:03 +02001826
1827 /* MMCTX can be NULL */
1828
Harald Welte9b455bf2010-03-14 15:45:01 +08001829 switch (pdisc) {
1830 case GSM48_PDISC_MM_GPRS:
Harald Welte807a5d82010-06-01 11:53:01 +02001831 rc = gsm0408_rcv_gmm(mmctx, msg, llme);
Harald Welte9b455bf2010-03-14 15:45:01 +08001832 break;
1833 case GSM48_PDISC_SM_GPRS:
Harald Welte807a5d82010-06-01 11:53:01 +02001834 rc = gsm0408_rcv_gsm(mmctx, msg, llme);
Harald Welte9b455bf2010-03-14 15:45:01 +08001835 break;
1836 default:
Daniel Willmann46553142014-09-03 17:46:44 +02001837 LOGP(DMM, LOGL_NOTICE, "Unknown GSM 04.08 discriminator 0x%02x\n",
Harald Welte9b455bf2010-03-14 15:45:01 +08001838 pdisc);
Harald Welte6abf94e2010-05-18 10:35:06 +02001839 /* FIXME: return status message */
Harald Welte9b455bf2010-03-14 15:45:01 +08001840 break;
1841 }
1842
Jacob Erlbeck258ce3d2014-09-30 13:51:45 +02001843 /* MMCTX can be invalid */
1844
Harald Welte9b455bf2010-03-14 15:45:01 +08001845 return rc;
1846}
Harald Welte5bfe4992010-06-09 11:22:47 +02001847
1848int gprs_gmm_rx_suspend(struct gprs_ra_id *raid, uint32_t tlli)
1849{
1850 struct sgsn_mm_ctx *mmctx;
1851
1852 mmctx = sgsn_mm_ctx_by_tlli(tlli, raid);
1853 if (!mmctx) {
1854 LOGP(DMM, LOGL_NOTICE, "SUSPEND request for unknown "
1855 "TLLI=%08x\n", tlli);
1856 return -EINVAL;
1857 }
1858
Jacob Erlbeck7dba11f2014-12-22 17:58:18 +01001859 if (mmctx->mm_state != GMM_REGISTERED_NORMAL &&
1860 mmctx->mm_state != GMM_REGISTERED_SUSPENDED) {
Daniel Willmann46553142014-09-03 17:46:44 +02001861 LOGMMCTXP(LOGL_NOTICE, mmctx, "SUSPEND request while state "
Harald Welte5bfe4992010-06-09 11:22:47 +02001862 "!= REGISTERED (TLLI=%08x)\n", tlli);
1863 return -EINVAL;
1864 }
1865
1866 /* Transition from REGISTERED_NORMAL to REGISTERED_SUSPENDED */
1867 mmctx->mm_state = GMM_REGISTERED_SUSPENDED;
1868 return 0;
1869}
1870
1871int gprs_gmm_rx_resume(struct gprs_ra_id *raid, uint32_t tlli,
1872 uint8_t suspend_ref)
1873{
1874 struct sgsn_mm_ctx *mmctx;
1875
1876 /* FIXME: make use of suspend reference? */
1877
1878 mmctx = sgsn_mm_ctx_by_tlli(tlli, raid);
1879 if (!mmctx) {
1880 LOGP(DMM, LOGL_NOTICE, "RESUME request for unknown "
1881 "TLLI=%08x\n", tlli);
1882 return -EINVAL;
1883 }
1884
Jacob Erlbeck7dba11f2014-12-22 17:58:18 +01001885 if (mmctx->mm_state != GMM_REGISTERED_NORMAL &&
1886 mmctx->mm_state != GMM_REGISTERED_SUSPENDED) {
Daniel Willmann46553142014-09-03 17:46:44 +02001887 LOGMMCTXP(LOGL_NOTICE, mmctx, "RESUME request while state "
Harald Welte5bfe4992010-06-09 11:22:47 +02001888 "!= SUSPENDED (TLLI=%08x)\n", tlli);
1889 /* FIXME: should we not simply ignore it? */
1890 return -EINVAL;
1891 }
1892
1893 /* Transition from SUSPENDED to NORMAL */
1894 mmctx->mm_state = GMM_REGISTERED_NORMAL;
1895 return 0;
1896}