blob: e07180272aa859901627e869bb1002bf312bbcd4 [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
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (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
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License along
20 * with this program; if not, write to the Free Software Foundation, Inc.,
21 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
22 *
23 */
24
25#include <stdio.h>
26#include <stdlib.h>
27#include <string.h>
Harald Welteeaa614c2010-05-02 11:26:34 +020028#include <stdint.h>
Harald Welte9b455bf2010-03-14 15:45:01 +080029#include <errno.h>
30
31#include <netinet/in.h>
Harald Welte421cba42010-05-02 23:11:50 +020032#include <arpa/inet.h>
Harald Welte9b455bf2010-03-14 15:45:01 +080033
34#include <openbsc/db.h>
35#include <osmocore/msgb.h>
36#include <osmocore/tlv.h>
Harald Welted6057092010-05-02 12:57:45 +020037#include <osmocore/gsm_utils.h>
38#include <osmocore/signal.h>
39#include <osmocore/talloc.h>
Harald Welte8acd88f2010-05-18 10:57:45 +020040#include <osmocore/rate_ctr.h>
Harald Welted6057092010-05-02 12:57:45 +020041
Harald Welte9b455bf2010-03-14 15:45:01 +080042#include <openbsc/debug.h>
43#include <openbsc/gsm_data.h>
Harald Welte9b455bf2010-03-14 15:45:01 +080044#include <openbsc/gsm_subscriber.h>
45#include <openbsc/gsm_04_08.h>
46#include <openbsc/gsm_04_08_gprs.h>
47#include <openbsc/paging.h>
Harald Welte9b455bf2010-03-14 15:45:01 +080048#include <openbsc/transaction.h>
Harald Welte11d7c102010-05-02 11:54:55 +020049#include <openbsc/gprs_bssgp.h>
Harald Welte9b455bf2010-03-14 15:45:01 +080050#include <openbsc/gprs_llc.h>
51#include <openbsc/gprs_sgsn.h>
Harald Welte6abf94e2010-05-18 10:35:06 +020052#include <openbsc/gprs_gmm.h>
Harald Welted193cb32010-05-17 22:58:03 +020053#include <openbsc/sgsn.h>
54
Harald Welte6abf94e2010-05-18 10:35:06 +020055#include <pdp.h>
56
Harald Weltec2e8cc42010-05-31 20:23:38 +020057#define PTMSI_ALLOC
58
59/* Section 11.2.2 / Table 11.4 MM timers netowkr side */
60#define GSM0408_T3322_SECS 6 /* DETACH_REQ -> DETACH_ACC */
61#define GSM0408_T3350_SECS 6 /* waiting for ATT/RAU/TMSI COMPL */
62#define GSM0408_T3360_SECS 6 /* waiting for AUTH/CIPH RESP */
63#define GSM0408_T3370_SECS 6 /* waiting for ID RESP */
64
65/* Section 11.2.2 / Table 11.4a MM timers netowkr side */
66#define GSM0408_T3313_SECS 30 /* waiting for paging response */
67#define GSM0408_T3314_SECS 44 /* force to STBY on expiry */
68#define GSM0408_T3316_SECS 44
69
Harald Welted193cb32010-05-17 22:58:03 +020070extern struct sgsn_instance *sgsn;
Harald Welte9b455bf2010-03-14 15:45:01 +080071
Harald Welte2720e732010-05-17 00:44:57 +020072/* Protocol related stuff, should go into libosmocore */
73
Harald Welte9b455bf2010-03-14 15:45:01 +080074/* 10.5.5.14 GPRS MM Cause / Table 10.5.147 */
Harald Welte2720e732010-05-17 00:44:57 +020075const struct value_string gmm_cause_names[] = {
Harald Weltefd29a1f2010-07-01 12:26:59 +020076 { GMM_CAUSE_IMSI_UNKNOWN, "IMSI unknown in HLR" },
77 { GMM_CAUSE_ILLEGAL_MS, "Illegal MS" },
78 { GMM_CAUSE_ILLEGAL_ME, "Illegal ME" },
79 { GMM_CAUSE_GPRS_NOTALLOWED, "GPRS services not allowed" },
80 { GMM_CAUSE_GPRS_OTHER_NOTALLOWED,
81 "GPRS services and non-GPRS services not allowed" },
82 { GMM_CAUSE_MS_ID_NOT_DERIVED,
83 "MS identity cannot be derived by the network" },
84 { GMM_CAUSE_IMPL_DETACHED, "Implicitly detached" },
85 { GMM_CAUSE_PLMN_NOTALLOWED, "PLMN not allowed" },
86 { GMM_CAUSE_LA_NOTALLOWED, "Location Area not allowed" },
87 { GMM_CAUSE_ROAMING_NOTALLOWED,
88 "Roaming not allowed in this location area" },
89 { GMM_CAUSE_NO_GPRS_PLMN,
90 "GPRS services not allowed in this PLMN" },
91 { GMM_CAUSE_MSC_TEMP_NOTREACH, "MSC temporarily not reachable" },
92 { GMM_CAUSE_NET_FAIL, "Network failure" },
93 { GMM_CAUSE_CONGESTION, "Congestion" },
94 { GMM_CAUSE_SEM_INCORR_MSG, "Semantically incorrect message" },
Harald Welte9b455bf2010-03-14 15:45:01 +080095 { GMM_CAUSE_INV_MAND_INFO, "Invalid mandatory information" },
96 { GMM_CAUSE_MSGT_NOTEXIST_NOTIMPL,
97 "Message type non-existant or not implemented" },
98 { GMM_CAUSE_MSGT_INCOMP_P_STATE,
99 "Message type not compatible with protocol state" },
100 { GMM_CAUSE_IE_NOTEXIST_NOTIMPL,
101 "Information element non-existent or not implemented" },
Harald Weltefd29a1f2010-07-01 12:26:59 +0200102 { GMM_CAUSE_COND_IE_ERR, "Conditional IE error" },
Harald Welte9b455bf2010-03-14 15:45:01 +0800103 { GMM_CAUSE_MSG_INCOMP_P_STATE,
104 "Message not compatible with protocol state " },
Harald Weltefd29a1f2010-07-01 12:26:59 +0200105 { GMM_CAUSE_PROTO_ERR_UNSPEC, "Protocol error, unspecified" },
Harald Welte9b455bf2010-03-14 15:45:01 +0800106 { 0, NULL }
107};
108
109/* 10.5.6.6 SM Cause / Table 10.5.157 */
Harald Welte2720e732010-05-17 00:44:57 +0200110const struct value_string gsm_cause_names[] = {
Harald Welte9b455bf2010-03-14 15:45:01 +0800111 { GSM_CAUSE_INSUFF_RSRC, "Insufficient resources" },
112 { GSM_CAUSE_MISSING_APN, "Missing or unknown APN" },
113 { GSM_CAUSE_UNKNOWN_PDP, "Unknown PDP address or PDP type" },
114 { GSM_CAUSE_AUTH_FAILED, "User Authentication failed" },
115 { GSM_CAUSE_ACT_REJ_GGSN, "Activation rejected by GGSN" },
116 { GSM_CAUSE_ACT_REJ_UNSPEC, "Activation rejected, unspecified" },
117 { GSM_CAUSE_SERV_OPT_NOTSUPP, "Service option not supported" },
118 { GSM_CAUSE_REQ_SERV_OPT_NOTSUB,
119 "Requested service option not subscribed" },
120 { GSM_CAUSE_SERV_OPT_TEMP_OOO,
121 "Service option temporarily out of order" },
122 { GSM_CAUSE_NSAPI_IN_USE, "NSAPI already used" },
123 { GSM_CAUSE_DEACT_REGULAR, "Regular deactivation" },
124 { GSM_CAUSE_QOS_NOT_ACCEPTED, "QoS not accepted" },
125 { GSM_CAUSE_NET_FAIL, "Network Failure" },
126 { GSM_CAUSE_REACT_RQD, "Reactivation required" },
127 { GSM_CAUSE_FEATURE_NOTSUPP, "Feature not supported " },
128 { GSM_CAUSE_INVALID_TRANS_ID, "Invalid transaction identifier" },
129 { GSM_CAUSE_SEM_INCORR_MSG, "Semantically incorrect message" },
130 { GSM_CAUSE_INV_MAND_INFO, "Invalid mandatory information" },
131 { GSM_CAUSE_MSGT_NOTEXIST_NOTIMPL,
132 "Message type non-existant or not implemented" },
133 { GSM_CAUSE_MSGT_INCOMP_P_STATE,
134 "Message type not compatible with protocol state" },
135 { GSM_CAUSE_IE_NOTEXIST_NOTIMPL,
136 "Information element non-existent or not implemented" },
137 { GSM_CAUSE_COND_IE_ERR, "Conditional IE error" },
138 { GSM_CAUSE_MSG_INCOMP_P_STATE,
139 "Message not compatible with protocol state " },
140 { GSM_CAUSE_PROTO_ERR_UNSPEC, "Protocol error, unspecified" },
141 { 0, NULL }
142};
143
Harald Welte2720e732010-05-17 00:44:57 +0200144/* 10.5.5.2 */
145const struct value_string gprs_att_t_strs[] = {
146 { GPRS_ATT_T_ATTACH, "GPRS attach" },
147 { GPRS_ATT_T_ATT_WHILE_IMSI, "GPRS attach while IMSI attached" },
148 { GPRS_ATT_T_COMBINED, "Combined GPRS/IMSI attach" },
149 { 0, NULL }
150};
Harald Welte9b455bf2010-03-14 15:45:01 +0800151
Harald Welte2720e732010-05-17 00:44:57 +0200152const struct value_string gprs_upd_t_strs[] = {
153 { GPRS_UPD_T_RA, "RA updating" },
154 { GPRS_UPD_T_RA_LA, "combined RA/LA updating" },
155 { GPRS_UPD_T_RA_LA_IMSI_ATT, "combined RA/LA updating + IMSI attach" },
156 { GPRS_UPD_T_PERIODIC, "periodic updating" },
157 { 0, NULL }
158};
159
160/* 10.5.5.5 */
161const struct value_string gprs_det_t_mo_strs[] = {
162 { GPRS_DET_T_MO_GPRS, "GPRS detach" },
163 { GPRS_DET_T_MO_IMSI, "IMSI detach" },
164 { GPRS_DET_T_MO_COMBINED, "Combined GPRS/IMSI detach" },
165 { 0, NULL }
166};
167
Harald Welte588d44e2010-06-09 10:28:29 +0200168static const struct tlv_definition gsm48_gmm_att_tlvdef = {
169 .def = {
Harald Welte4b6ac1e2010-07-03 11:09:06 +0200170 [GSM48_IE_GMM_CIPH_CKSN] = { TLV_TYPE_FIXED, 1 },
Harald Welte588d44e2010-06-09 10:28:29 +0200171 [GSM48_IE_GMM_TIMER_READY] = { TLV_TYPE_TV, 1 },
172 [GSM48_IE_GMM_ALLOC_PTMSI] = { TLV_TYPE_TLV, 0 },
Harald Welte4b6ac1e2010-07-03 11:09:06 +0200173 [GSM48_IE_GMM_PTMSI_SIG] = { TLV_TYPE_FIXED, 3 },
174 [GSM48_IE_GMM_AUTH_RAND] = { TLV_TYPE_FIXED, 16 },
175 [GSM48_IE_GMM_AUTH_SRES] = { TLV_TYPE_FIXED, 4 },
Harald Welte588d44e2010-06-09 10:28:29 +0200176 [GSM48_IE_GMM_IMEISV] = { TLV_TYPE_TLV, 0 },
Harald Welte4b6ac1e2010-07-03 11:09:06 +0200177 [GSM48_IE_GMM_DRX_PARAM] = { TLV_TYPE_FIXED, 2 },
Harald Welte588d44e2010-06-09 10:28:29 +0200178 [GSM48_IE_GMM_MS_NET_CAPA] = { TLV_TYPE_TLV, 0 },
179 [GSM48_IE_GMM_PDP_CTX_STATUS] = { TLV_TYPE_TLV, 0 },
180 [GSM48_IE_GMM_PS_LCS_CAPA] = { TLV_TYPE_TLV, 0 },
181 [GSM48_IE_GMM_GMM_MBMS_CTX_ST] = { TLV_TYPE_TLV, 0 },
182 },
183};
184
185static const struct tlv_definition gsm48_sm_att_tlvdef = {
186 .def = {
187 [GSM48_IE_GSM_APN] = { TLV_TYPE_TLV, 0 },
188 [GSM48_IE_GSM_PROTO_CONF_OPT] = { TLV_TYPE_TLV, 0 },
189 [GSM48_IE_GSM_PDP_ADDR] = { TLV_TYPE_TLV, 0 },
190 [GSM48_IE_GSM_AA_TMR] = { TLV_TYPE_TV, 1 },
191 [GSM48_IE_GSM_NAME_FULL] = { TLV_TYPE_TLV, 0 },
192 [GSM48_IE_GSM_NAME_SHORT] = { TLV_TYPE_TLV, 0 },
Harald Welte4b6ac1e2010-07-03 11:09:06 +0200193 [GSM48_IE_GSM_TIMEZONE] = { TLV_TYPE_FIXED, 1 },
194 [GSM48_IE_GSM_UTC_AND_TZ] = { TLV_TYPE_FIXED, 7 },
Harald Welte588d44e2010-06-09 10:28:29 +0200195 [GSM48_IE_GSM_LSA_ID] = { TLV_TYPE_TLV, 0 },
196 },
197};
198
Harald Welte2720e732010-05-17 00:44:57 +0200199/* Our implementation, should be kept in SGSN */
Harald Welte9b455bf2010-03-14 15:45:01 +0800200
Harald Weltec2e8cc42010-05-31 20:23:38 +0200201static void mmctx_timer_cb(void *_mm);
202
203static void mmctx_timer_start(struct sgsn_mm_ctx *mm, unsigned int T,
204 unsigned int seconds)
205{
206 if (bsc_timer_pending(&mm->timer))
207 LOGP(DMM, LOGL_ERROR, "Starting MM timer %u while old "
208 "timer %u pending\n", T, mm->T);
209 mm->T = T;
210 mm->num_T_exp = 0;
211
212 /* FIXME: we should do this only once ? */
213 mm->timer.data = mm;
214 mm->timer.cb = &mmctx_timer_cb;
215
216 bsc_schedule_timer(&mm->timer, seconds, 0);
217}
218
219static void mmctx_timer_stop(struct sgsn_mm_ctx *mm, unsigned int T)
220{
221 if (mm->T != T)
222 LOGP(DMM, LOGL_ERROR, "Stopping MM timer %u but "
223 "%u is running\n", T, mm->T);
224 bsc_del_timer(&mm->timer);
225}
226
Harald Welte9b455bf2010-03-14 15:45:01 +0800227/* Send a message through the underlying layer */
Harald Welte8acd88f2010-05-18 10:57:45 +0200228static int gsm48_gmm_sendmsg(struct msgb *msg, int command,
229 const struct sgsn_mm_ctx *mm)
Harald Welte9b455bf2010-03-14 15:45:01 +0800230{
Harald Welte8acd88f2010-05-18 10:57:45 +0200231 if (mm)
232 rate_ctr_inc(&mm->ctrg->ctr[GMM_CTR_PKTS_SIG_OUT]);
233
Harald Welte11d7c102010-05-02 11:54:55 +0200234 /* caller needs to provide TLLI, BVCI and NSEI */
Harald Welte56a01452010-05-31 22:12:30 +0200235 return gprs_llc_tx_ui(msg, GPRS_SAPI_GMM, command, mm);
Harald Welte9b455bf2010-03-14 15:45:01 +0800236}
237
Harald Welte11d7c102010-05-02 11:54:55 +0200238/* copy identifiers from old message to new message, this
239 * is required so lower layers can route it correctly */
240static void gmm_copy_id(struct msgb *msg, const struct msgb *old)
241{
242 msgb_tlli(msg) = msgb_tlli(old);
243 msgb_bvci(msg) = msgb_bvci(old);
244 msgb_nsei(msg) = msgb_nsei(old);
245}
246
Harald Welte6abf94e2010-05-18 10:35:06 +0200247/* Store BVCI/NSEI in MM context */
248static void msgid2mmctx(struct sgsn_mm_ctx *mm, const struct msgb *msg)
249{
250 mm->bvci = msgb_bvci(msg);
251 mm->nsei = msgb_nsei(msg);
252}
253
254/* Store BVCI/NSEI in MM context */
255static void mmctx2msgid(struct msgb *msg, const struct sgsn_mm_ctx *mm)
256{
257 msgb_tlli(msg) = mm->tlli;
258 msgb_bvci(msg) = mm->bvci;
259 msgb_nsei(msg) = mm->nsei;
260}
261
Harald Weltef54e7e22010-06-09 10:51:23 +0200262/* Chapter 9.4.18 */
263static int _tx_status(struct msgb *msg, uint8_t cause,
264 struct sgsn_mm_ctx *mmctx, int sm)
265{
266 struct gsm48_hdr *gh;
267
268 /* MMCTX might be NULL! */
269
270 DEBUGP(DMM, "<- GPRS MM STATUS (cause: %s)\n",
271 get_value_string(gmm_cause_names, cause));
272
273 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh) + 1);
274 if (sm) {
275 gh->proto_discr = GSM48_PDISC_SM_GPRS;
276 gh->msg_type = GSM48_MT_GSM_STATUS;
277 } else {
278 gh->proto_discr = GSM48_PDISC_MM_GPRS;
279 gh->msg_type = GSM48_MT_GMM_STATUS;
280 }
281 gh->data[0] = cause;
282
283 return gsm48_gmm_sendmsg(msg, 0, mmctx);
284}
285static int gsm48_tx_gmm_status(struct sgsn_mm_ctx *mmctx, uint8_t cause)
286{
287 struct msgb *msg = gsm48_msgb_alloc();
288
289 mmctx2msgid(msg, mmctx);
290 return _tx_status(msg, cause, mmctx, 0);
291};
292static int gsm48_tx_gmm_status_oldmsg(struct msgb *oldmsg, uint8_t cause)
293{
294 struct msgb *msg = gsm48_msgb_alloc();
295
296 gmm_copy_id(msg, oldmsg);
297 return _tx_status(msg, cause, NULL, 0);
298}
299static int gsm48_tx_sm_status(struct sgsn_mm_ctx *mmctx, uint8_t cause)
300{
301 struct msgb *msg = gsm48_msgb_alloc();
302
303 mmctx2msgid(msg, mmctx);
304 return _tx_status(msg, cause, mmctx, 1);
305};
306static int gsm48_tx_sm_status_oldmsg(struct msgb *oldmsg, uint8_t cause)
307{
308 struct msgb *msg = gsm48_msgb_alloc();
309
310 gmm_copy_id(msg, oldmsg);
311 return _tx_status(msg, cause, NULL, 1);
312}
313
314
Harald Welte86fda902010-05-03 10:54:35 +0200315static struct gsm48_qos default_qos = {
316 .delay_class = 4, /* best effort */
317 .reliab_class = GSM48_QOS_RC_LLC_UN_RLC_ACK_DATA_PROT,
318 .peak_tput = GSM48_QOS_PEAK_TPUT_32000bps,
319 .preced_class = GSM48_QOS_PC_NORMAL,
320 .mean_tput = GSM48_QOS_MEAN_TPUT_BEST_EFFORT,
321 .traf_class = GSM48_QOS_TC_INTERACTIVE,
322 .deliv_order = GSM48_QOS_DO_UNORDERED,
323 .deliv_err_sdu = GSM48_QOS_ERRSDU_YES,
324 .max_sdu_size = GSM48_QOS_MAXSDU_1520,
325 .max_bitrate_up = GSM48_QOS_MBRATE_63k,
326 .max_bitrate_down = GSM48_QOS_MBRATE_63k,
327 .resid_ber = GSM48_QOS_RBER_5e_2,
328 .sdu_err_ratio = GSM48_QOS_SERR_1e_2,
329 .handling_prio = 3,
330 .xfer_delay = 0x10, /* 200ms */
331 .guar_bitrate_up = GSM48_QOS_MBRATE_0k,
332 .guar_bitrate_down = GSM48_QOS_MBRATE_0k,
333 .sig_ind = 0, /* not optimised for signalling */
334 .max_bitrate_down_ext = 0, /* use octet 9 */
335 .guar_bitrate_down_ext = 0, /* use octet 13 */
336};
337
Harald Welte9b455bf2010-03-14 15:45:01 +0800338/* Chapter 9.4.2: Attach accept */
Harald Welte6463c072010-05-18 17:04:55 +0200339static int gsm48_tx_gmm_att_ack(struct sgsn_mm_ctx *mm)
Harald Welte9b455bf2010-03-14 15:45:01 +0800340{
341 struct msgb *msg = gsm48_msgb_alloc();
342 struct gsm48_hdr *gh;
343 struct gsm48_attach_ack *aa;
Harald Weltecd4dd4d2010-05-18 17:20:49 +0200344 uint8_t *ptsig, *mid;
Harald Welte9b455bf2010-03-14 15:45:01 +0800345
Harald Weltec2e8cc42010-05-31 20:23:38 +0200346 DEBUGP(DMM, "<- GPRS ATTACH ACCEPT (new P-TMSI=0x%08x)\n", mm->p_tmsi);
Harald Welte9b455bf2010-03-14 15:45:01 +0800347
Harald Welte6463c072010-05-18 17:04:55 +0200348 mmctx2msgid(msg, mm);
Harald Welte9b455bf2010-03-14 15:45:01 +0800349
350 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
351 gh->proto_discr = GSM48_PDISC_MM_GPRS;
352 gh->msg_type = GSM48_MT_GMM_ATTACH_ACK;
353
354 aa = (struct gsm48_attach_ack *) msgb_put(msg, sizeof(*aa));
355 aa->force_stby = 0; /* not indicated */
356 aa->att_result = 1; /* GPRS only */
357 aa->ra_upd_timer = GPRS_TMR_MINUTE | 10;
358 aa->radio_prio = 4; /* lowest */
Harald Welte6463c072010-05-18 17:04:55 +0200359 gsm48_construct_ra(aa->ra_id.digits, &mm->ra);
Harald Welte9b455bf2010-03-14 15:45:01 +0800360
Harald Welteab1d5622010-05-18 19:58:38 +0200361#if 0
Harald Welte6463c072010-05-18 17:04:55 +0200362 /* Optional: P-TMSI signature */
363 msgb_v_put(msg, GSM48_IE_GMM_PTMSI_SIG);
364 ptsig = msgb_put(msg, 3);
365 ptsig[0] = mm->p_tmsi_sig >> 16;
366 ptsig[1] = mm->p_tmsi_sig >> 8;
367 ptsig[2] = mm->p_tmsi_sig & 0xff;
368
369 /* Optional: Negotiated Ready timer value */
Harald Weltec2e8cc42010-05-31 20:23:38 +0200370#endif
Harald Welte6463c072010-05-18 17:04:55 +0200371
Harald Weltec2e8cc42010-05-31 20:23:38 +0200372#ifdef PTMSI_ALLOC
Harald Welte6463c072010-05-18 17:04:55 +0200373 /* Optional: Allocated P-TMSI */
Harald Welte6463c072010-05-18 17:04:55 +0200374 mid = msgb_put(msg, GSM48_MID_TMSI_LEN);
375 gsm48_generate_mid_from_tmsi(mid, mm->p_tmsi);
Harald Welteab1d5622010-05-18 19:58:38 +0200376 mid[0] = GSM48_IE_GMM_ALLOC_PTMSI;
377#endif
Harald Weltec2e8cc42010-05-31 20:23:38 +0200378
Harald Welte6463c072010-05-18 17:04:55 +0200379 /* Optional: MS-identity (combined attach) */
380 /* Optional: GMM cause (partial attach result for combined attach) */
381
Harald Welte56a01452010-05-31 22:12:30 +0200382 return gsm48_gmm_sendmsg(msg, 0, mm);
Harald Welte9b455bf2010-03-14 15:45:01 +0800383}
384
385/* Chapter 9.4.5: Attach reject */
Harald Welte6463c072010-05-18 17:04:55 +0200386static int _tx_gmm_att_rej(struct msgb *msg, uint8_t gmm_cause)
Harald Welte9b455bf2010-03-14 15:45:01 +0800387{
Harald Welte9b455bf2010-03-14 15:45:01 +0800388 struct gsm48_hdr *gh;
389
390 DEBUGP(DMM, "<- GPRS ATTACH REJECT\n");
391
Harald Welte9b455bf2010-03-14 15:45:01 +0800392 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh) + 1);
393 gh->proto_discr = GSM48_PDISC_MM_GPRS;
394 gh->msg_type = GSM48_MT_GMM_ATTACH_REJ;
395 gh->data[0] = gmm_cause;
396
Harald Welte8acd88f2010-05-18 10:57:45 +0200397 return gsm48_gmm_sendmsg(msg, 0, NULL);
Harald Welte9b455bf2010-03-14 15:45:01 +0800398}
Harald Welte6463c072010-05-18 17:04:55 +0200399static int gsm48_tx_gmm_att_rej_oldmsg(const struct msgb *old_msg,
400 uint8_t gmm_cause)
401{
402 struct msgb *msg = gsm48_msgb_alloc();
403 gmm_copy_id(msg, old_msg);
404 return _tx_gmm_att_rej(msg, gmm_cause);
405}
406static int gsm48_tx_gmm_att_rej(struct sgsn_mm_ctx *mm,
407 uint8_t gmm_cause)
408{
409 struct msgb *msg = gsm48_msgb_alloc();
410 mmctx2msgid(msg, mm);
411 return _tx_gmm_att_rej(msg, gmm_cause);
412}
Harald Welte9b455bf2010-03-14 15:45:01 +0800413
Harald Welte2720e732010-05-17 00:44:57 +0200414/* Chapter 9.4.6.2 Detach accept */
Harald Weltecd4dd4d2010-05-18 17:20:49 +0200415static int gsm48_tx_gmm_det_ack(struct sgsn_mm_ctx *mm, uint8_t force_stby)
Harald Welte2720e732010-05-17 00:44:57 +0200416{
417 struct msgb *msg = gsm48_msgb_alloc();
418 struct gsm48_hdr *gh;
419
420 DEBUGP(DMM, "<- GPRS DETACH ACCEPT\n");
421
Harald Welte6463c072010-05-18 17:04:55 +0200422 mmctx2msgid(msg, mm);
423
Harald Welte2720e732010-05-17 00:44:57 +0200424 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh) + 1);
425 gh->proto_discr = GSM48_PDISC_MM_GPRS;
426 gh->msg_type = GSM48_MT_GMM_DETACH_ACK;
427 gh->data[0] = force_stby;
428
Harald Welte56a01452010-05-31 22:12:30 +0200429 return gsm48_gmm_sendmsg(msg, 0, mm);
Harald Welte2720e732010-05-17 00:44:57 +0200430}
431
Harald Welte9b455bf2010-03-14 15:45:01 +0800432/* Transmit Chapter 9.4.12 Identity Request */
Harald Welte6463c072010-05-18 17:04:55 +0200433static int gsm48_tx_gmm_id_req(struct sgsn_mm_ctx *mm, uint8_t id_type)
Harald Welte9b455bf2010-03-14 15:45:01 +0800434{
435 struct msgb *msg = gsm48_msgb_alloc();
436 struct gsm48_hdr *gh;
437
Harald Weltedce12552010-05-31 22:31:04 +0200438 DEBUGP(DMM, "<- GPRS IDENTITY REQUEST: mi_type=%02x\n", id_type);
Harald Welte9b455bf2010-03-14 15:45:01 +0800439
Harald Welte6463c072010-05-18 17:04:55 +0200440 mmctx2msgid(msg, mm);
Harald Welte9b455bf2010-03-14 15:45:01 +0800441
442 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh) + 1);
443 gh->proto_discr = GSM48_PDISC_MM_GPRS;
444 gh->msg_type = GSM48_MT_GMM_ID_REQ;
445 /* 10.5.5.9 ID type 2 + identity type and 10.5.5.7 'force to standby' IE */
446 gh->data[0] = id_type & 0xf;
447
Harald Weltedce12552010-05-31 22:31:04 +0200448 return gsm48_gmm_sendmsg(msg, 1, mm);
Harald Welte9b455bf2010-03-14 15:45:01 +0800449}
450
Harald Welte4b6ac1e2010-07-03 11:09:06 +0200451/* Section 9.4.9: Authentication and Ciphering Request */
452static int gsm48_tx_gmm_auth_ciph_req(struct sgsn_mm_ctx *mm, uint8_t *rand,
453 uint8_t key_seq, uint8_t algo)
454{
455 struct msgb *msg = gsm48_msgb_alloc();
456 struct gsm48_hdr *gh;
457 struct gsm48_auth_ciph_req *acreq;
458 uint8_t *m_rand, *m_cksn;
459
460 DEBUGP(DMM, "<- GPRS AUTH AND CIPHERING REQ (rand = %s)\n",
461 hexdump(rand, 16));
462
463 mmctx2msgid(msg, mm);
464
465 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
466 gh->proto_discr = GSM48_PDISC_MM_GPRS;
467 gh->msg_type = GSM48_MT_GMM_AUTH_CIPH_REQ;
468
469 acreq = (struct gsm48_auth_ciph_req *) msgb_put(msg, sizeof(*acreq));
470 acreq->ciph_alg = algo & 0xf;
471 acreq->imeisv_req = 0x1;
472 acreq->force_stby = 0x0;
473 acreq->ac_ref_nr = 0x0; /* FIXME: increment this? */
474
475 /* Only if authentication is requested we need to set RAND + CKSN */
476 if (rand) {
477 m_rand = msgb_put(msg, 16+1);
478 m_rand[0] = GSM48_IE_GMM_AUTH_RAND;
479 memcpy(m_rand+1, rand, 16);
480
481 m_cksn = msgb_put(msg, 1+1);
482 m_cksn[0] = GSM48_IE_GMM_CIPH_CKSN;
483 m_cksn[1] = key_seq;
484 }
485
486 /* Start T3360 */
487 mmctx_timer_start(mm, 3360, GSM0408_T3360_SECS);
488
489 /* FIXME: make sure we don't send any other messages to the MS */
490
491 return gsm48_gmm_sendmsg(msg, 1, mm);
492}
493
494/* Section 9.4.11: Authentication and Ciphering Reject */
495static int gsm48_tx_gmm_auth_ciph_rej(struct sgsn_mm_ctx *mm)
496{
497 struct msgb *msg = gsm48_msgb_alloc();
498 struct gsm48_hdr *gh;
499
500 DEBUGP(DMM, "<- GPRS AUTH AND CIPH REJECT\n");
501
502 mmctx2msgid(msg, mm);
503
504 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
505 gh->proto_discr = GSM48_PDISC_MM_GPRS;
506 gh->msg_type = GSM48_MT_GMM_AUTH_CIPH_REJ;
507
508 return gsm48_gmm_sendmsg(msg, 0, mm);
509}
510
511/* Section 9.4.10: Authentication and Ciphering Response */
512static int gsm48_rx_gmm_auth_ciph_resp(struct sgsn_mm_ctx *ctx,
513 struct msgb *msg)
514{
515 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_gmmh(msg);
516 struct gsm48_auth_ciph_resp *acr = (struct gsm48_auth_ciph_resp *)gh->data;
517 struct tlv_parsed tp;
518 int rc;
519
520 /* FIXME: Stop T3360 */
521
522 rc = tlv_parse(&tp, &gsm48_gmm_att_tlvdef, acr->data,
523 (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)) {
529 /* FIXME: missing mandatory IE */
530 }
531
532 /* FIXME: compare SRES with what we expected */
533 /* FIXME: enable LLC cipheirng */
534 return 0;
535}
536
Harald Welte9b455bf2010-03-14 15:45:01 +0800537/* Check if we can already authorize a subscriber */
Harald Weltec2e8cc42010-05-31 20:23:38 +0200538static int gsm48_gmm_authorize(struct sgsn_mm_ctx *ctx,
539 enum gprs_t3350_mode t3350_mode)
Harald Welte9b455bf2010-03-14 15:45:01 +0800540{
541 if (strlen(ctx->imei) && strlen(ctx->imsi)) {
Harald Weltec2e8cc42010-05-31 20:23:38 +0200542#ifdef PTMSI_ALLOC
543 /* Start T3350 and re-transmit up to 5 times until ATTACH COMPLETE */
544 ctx->t3350_mode = t3350_mode;
545 mmctx_timer_start(ctx, 3350, GSM0408_T3350_SECS);
546#endif
Harald Welte9b455bf2010-03-14 15:45:01 +0800547 ctx->mm_state = GMM_REGISTERED_NORMAL;
Harald Welte6463c072010-05-18 17:04:55 +0200548 return gsm48_tx_gmm_att_ack(ctx);
Harald Welte9b455bf2010-03-14 15:45:01 +0800549 }
Harald Weltec2e8cc42010-05-31 20:23:38 +0200550 if (!strlen(ctx->imei)) {
551 ctx->mm_state = GMM_COMMON_PROC_INIT;
552 ctx->t3370_id_type = GSM_MI_TYPE_IMEI;
553 mmctx_timer_start(ctx, 3370, GSM0408_T3370_SECS);
Harald Welte6463c072010-05-18 17:04:55 +0200554 return gsm48_tx_gmm_id_req(ctx, GSM_MI_TYPE_IMEI);
Harald Weltec2e8cc42010-05-31 20:23:38 +0200555 }
Harald Welte9b455bf2010-03-14 15:45:01 +0800556
Harald Weltec2e8cc42010-05-31 20:23:38 +0200557 if (!strlen(ctx->imsi)) {
558 ctx->mm_state = GMM_COMMON_PROC_INIT;
559 ctx->t3370_id_type = GSM_MI_TYPE_IMSI;
560 mmctx_timer_start(ctx, 3370, GSM0408_T3370_SECS);
Harald Welte6463c072010-05-18 17:04:55 +0200561 return gsm48_tx_gmm_id_req(ctx, GSM_MI_TYPE_IMSI);
Harald Weltec2e8cc42010-05-31 20:23:38 +0200562 }
Harald Welte9b455bf2010-03-14 15:45:01 +0800563
564 return 0;
565}
566
567/* Parse Chapter 9.4.13 Identity Response */
Harald Welted193cb32010-05-17 22:58:03 +0200568static int gsm48_rx_gmm_id_resp(struct sgsn_mm_ctx *ctx, struct msgb *msg)
Harald Welte9b455bf2010-03-14 15:45:01 +0800569{
Harald Welte943c5bc2010-04-30 16:33:12 +0200570 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_gmmh(msg);
Harald Welteeaa614c2010-05-02 11:26:34 +0200571 uint8_t mi_type = gh->data[1] & GSM_MI_TYPE_MASK;
Harald Welte9b455bf2010-03-14 15:45:01 +0800572 char mi_string[GSM48_MI_SIZE];
Harald Welte9b455bf2010-03-14 15:45:01 +0800573
574 gsm48_mi_to_string(mi_string, sizeof(mi_string), &gh->data[1], gh->data[0]);
Harald Welte2720e732010-05-17 00:44:57 +0200575 DEBUGP(DMM, "-> GMM IDENTITY RESPONSE: mi_type=0x%02x MI(%s) ",
Harald Welte9b455bf2010-03-14 15:45:01 +0800576 mi_type, mi_string);
577
Harald Welte9b455bf2010-03-14 15:45:01 +0800578 if (!ctx) {
Harald Welte943c5bc2010-04-30 16:33:12 +0200579 DEBUGP(DMM, "from unknown TLLI 0x%08x?!?\n", msgb_tlli(msg));
Harald Welte9b455bf2010-03-14 15:45:01 +0800580 return -EINVAL;
581 }
582
Harald Weltec2e8cc42010-05-31 20:23:38 +0200583 if (mi_type == ctx->t3370_id_type)
584 mmctx_timer_stop(ctx, 3370);
585
Harald Welte9b455bf2010-03-14 15:45:01 +0800586 switch (mi_type) {
587 case GSM_MI_TYPE_IMSI:
588 /* we already have a mm context with current TLLI, but no
589 * P-TMSI / IMSI yet. What we now need to do is to fill
590 * this initial context with data from the HLR */
591 strncpy(ctx->imsi, mi_string, sizeof(ctx->imei));
592 break;
593 case GSM_MI_TYPE_IMEI:
594 strncpy(ctx->imei, mi_string, sizeof(ctx->imei));
595 break;
596 case GSM_MI_TYPE_IMEISV:
597 break;
598 }
599
600 DEBUGPC(DMM, "\n");
601 /* Check if we can let the mobile station enter */
Harald Weltec2e8cc42010-05-31 20:23:38 +0200602 return gsm48_gmm_authorize(ctx, ctx->t3350_mode);
Harald Welte9b455bf2010-03-14 15:45:01 +0800603}
604
605/* Section 9.4.1 Attach request */
Harald Welte807a5d82010-06-01 11:53:01 +0200606static int gsm48_rx_gmm_att_req(struct sgsn_mm_ctx *ctx, struct msgb *msg,
607 struct gprs_llc_llme *llme)
Harald Welte9b455bf2010-03-14 15:45:01 +0800608{
Harald Welte943c5bc2010-04-30 16:33:12 +0200609 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_gmmh(msg);
Harald Welte56a01452010-05-31 22:12:30 +0200610 uint8_t *cur = gh->data, *msnc, *mi, *old_ra_info, *ms_ra_acc_cap;
611 uint8_t msnc_len, att_type, mi_len, mi_type, ms_ra_acc_cap_len;
Harald Welteeaa614c2010-05-02 11:26:34 +0200612 uint16_t drx_par;
613 uint32_t tmsi;
Harald Welte9b455bf2010-03-14 15:45:01 +0800614 char mi_string[GSM48_MI_SIZE];
615 struct gprs_ra_id ra_id;
Harald Welte9f1f3ad2010-05-02 12:56:57 +0200616 uint16_t cid;
Harald Welte9b455bf2010-03-14 15:45:01 +0800617
Harald Welte2720e732010-05-17 00:44:57 +0200618 DEBUGP(DMM, "-> GMM ATTACH REQUEST ");
Harald Welte9b455bf2010-03-14 15:45:01 +0800619
620 /* As per TS 04.08 Chapter 4.7.1.4, the attach request arrives either
621 * with a foreign TLLI (P-TMSI that was allocated to the MS before),
622 * or with random TLLI. */
623
Harald Welte9f1f3ad2010-05-02 12:56:57 +0200624 cid = bssgp_parse_cell_id(&ra_id, msgb_bcid(msg));
Harald Welte9b455bf2010-03-14 15:45:01 +0800625
626 /* MS network capability 10.5.5.12 */
627 msnc_len = *cur++;
628 msnc = cur;
629 if (msnc_len > 2)
630 goto err_inval;
631 cur += msnc_len;
632
633 /* aTTACH Type 10.5.5.2 */
634 att_type = *cur++ & 0x0f;
635
636 /* DRX parameter 10.5.5.6 */
Harald Welte56a01452010-05-31 22:12:30 +0200637 drx_par = *cur++ << 8;
638 drx_par |= *cur++;
Harald Welte9b455bf2010-03-14 15:45:01 +0800639
640 /* Mobile Identity (P-TMSI or IMSI) 10.5.1.4 */
641 mi_len = *cur++;
642 mi = cur;
643 if (mi_len > 8)
644 goto err_inval;
645 mi_type = *mi & GSM_MI_TYPE_MASK;
646 cur += mi_len;
647
648 gsm48_mi_to_string(mi_string, sizeof(mi_string), mi, mi_len);
649
Harald Welte2720e732010-05-17 00:44:57 +0200650 DEBUGPC(DMM, "MI(%s) type=\"%s\" ", mi_string,
651 get_value_string(gprs_att_t_strs, att_type));
Harald Welte9b455bf2010-03-14 15:45:01 +0800652
653 /* Old routing area identification 10.5.5.15 */
654 old_ra_info = cur;
655 cur += 6;
656
657 /* MS Radio Access Capability 10.5.5.12a */
Harald Welte56a01452010-05-31 22:12:30 +0200658 ms_ra_acc_cap_len = *cur++;
659 ms_ra_acc_cap = cur;
Harald Welte9b455bf2010-03-14 15:45:01 +0800660
661 /* Optional: Old P-TMSI Signature, Requested READY timer, TMSI Status */
662
663 switch (mi_type) {
664 case GSM_MI_TYPE_IMSI:
665 /* Try to find MM context based on IMSI */
Harald Welte807a5d82010-06-01 11:53:01 +0200666 if (!ctx)
667 ctx = sgsn_mm_ctx_by_imsi(mi_string);
Harald Welte9b455bf2010-03-14 15:45:01 +0800668 if (!ctx) {
669#if 0
670 return gsm48_tx_gmm_att_rej(msg, GMM_CAUSE_IMSI_UNKNOWN);
671#else
672 /* As a temorary hack, we simply assume that the IMSI exists */
673 ctx = sgsn_mm_ctx_alloc(0, &ra_id);
674 if (!ctx)
Harald Welte6463c072010-05-18 17:04:55 +0200675 return gsm48_tx_gmm_att_rej_oldmsg(msg, GMM_CAUSE_NET_FAIL);
Harald Welte9b455bf2010-03-14 15:45:01 +0800676 strncpy(ctx->imsi, mi_string, sizeof(ctx->imsi));
677#endif
678 }
Harald Welte943c5bc2010-04-30 16:33:12 +0200679 ctx->tlli = msgb_tlli(msg);
Harald Welte807a5d82010-06-01 11:53:01 +0200680 ctx->llme = llme;
Harald Welte68b99a42010-05-18 12:05:42 +0200681 msgid2mmctx(ctx, msg);
Harald Welte9b455bf2010-03-14 15:45:01 +0800682 break;
683 case GSM_MI_TYPE_TMSI:
Harald Welteab1d5622010-05-18 19:58:38 +0200684 memcpy(&tmsi, mi+1, 4);
685 tmsi = ntohl(tmsi);
Harald Welte9b455bf2010-03-14 15:45:01 +0800686 /* Try to find MM context based on P-TMSI */
Harald Welte807a5d82010-06-01 11:53:01 +0200687 if (!ctx)
688 ctx = sgsn_mm_ctx_by_ptmsi(tmsi);
Harald Welte9b455bf2010-03-14 15:45:01 +0800689 if (!ctx) {
Harald Welte943c5bc2010-04-30 16:33:12 +0200690 ctx = sgsn_mm_ctx_alloc(msgb_tlli(msg), &ra_id);
Harald Welte807a5d82010-06-01 11:53:01 +0200691 ctx->p_tmsi = tmsi;
Harald Welte9b455bf2010-03-14 15:45:01 +0800692 }
Harald Welte807a5d82010-06-01 11:53:01 +0200693 ctx->tlli = msgb_tlli(msg);
694 ctx->llme = llme;
695 msgid2mmctx(ctx, msg);
Harald Welte9b455bf2010-03-14 15:45:01 +0800696 break;
697 default:
Harald Weltec2e8cc42010-05-31 20:23:38 +0200698 LOGP(DMM, LOGL_NOTICE, "Rejecting ATTACH REQUEST with "
699 "MI type %u\n", mi_type);
700 return gsm48_tx_gmm_att_rej_oldmsg(msg, GMM_CAUSE_MS_ID_NOT_DERIVED);
Harald Welte9b455bf2010-03-14 15:45:01 +0800701 }
Harald Welte9f1f3ad2010-05-02 12:56:57 +0200702 /* Update MM Context with currient RA and Cell ID */
703 ctx->ra = ra_id;
704 ctx->cell_id = cid;
Harald Welte56a01452010-05-31 22:12:30 +0200705 /* Update MM Context with other data */
706 ctx->drx_parms = drx_par;
707 ctx->ms_radio_access_capa.len = ms_ra_acc_cap_len;
708 memcpy(ctx->ms_radio_access_capa.buf, ms_ra_acc_cap, ms_ra_acc_cap_len);
709 ctx->ms_network_capa.len = msnc_len;
710 memcpy(ctx->ms_network_capa.buf, msnc, msnc_len);
711
Harald Weltec2e8cc42010-05-31 20:23:38 +0200712#ifdef PTMSI_ALLOC
Harald Welte807a5d82010-06-01 11:53:01 +0200713 /* Allocate a new P-TMSI (+ P-TMSI signature) and update TLLI */
Harald Weltec2e8cc42010-05-31 20:23:38 +0200714 ctx->p_tmsi_old = ctx->p_tmsi;
Harald Welte6463c072010-05-18 17:04:55 +0200715 ctx->p_tmsi = sgsn_alloc_ptmsi();
Harald Welteab1d5622010-05-18 19:58:38 +0200716#endif
Harald Welte807a5d82010-06-01 11:53:01 +0200717 /* Even if there is no P-TMSI allocated, the MS will switch from
718 * foreign TLLI to local TLLI */
719 ctx->tlli_new = gprs_tmsi2tlli(ctx->p_tmsi, TLLI_LOCAL);
720
721 /* Inform LLC layer about new TLLI but keep old active */
Harald Welted6f582b2010-06-30 23:18:57 +0200722 gprs_llgmm_assign(ctx->llme, ctx->tlli, ctx->tlli_new,
723 GPRS_ALGO_GEA0, NULL);
Harald Welte9b455bf2010-03-14 15:45:01 +0800724
725 DEBUGPC(DMM, "\n");
Harald Weltec2e8cc42010-05-31 20:23:38 +0200726 return ctx ? gsm48_gmm_authorize(ctx, GMM_T3350_MODE_ATT) : 0;
Harald Welte9b455bf2010-03-14 15:45:01 +0800727
728err_inval:
729 DEBUGPC(DMM, "\n");
Harald Welte6463c072010-05-18 17:04:55 +0200730 return gsm48_tx_gmm_att_rej_oldmsg(msg, GMM_CAUSE_SEM_INCORR_MSG);
Harald Welte9b455bf2010-03-14 15:45:01 +0800731}
732
Harald Welte2720e732010-05-17 00:44:57 +0200733/* Section 4.7.4.1 / 9.4.5.2 MO Detach request */
Harald Welted193cb32010-05-17 22:58:03 +0200734static int gsm48_rx_gmm_det_req(struct sgsn_mm_ctx *ctx, struct msgb *msg)
Harald Welte2720e732010-05-17 00:44:57 +0200735{
736 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_gmmh(msg);
Harald Weltec0d59502010-06-28 19:11:41 +0200737 struct sgsn_pdp_ctx *pdp, *pdp2;
Harald Welte2720e732010-05-17 00:44:57 +0200738 uint8_t detach_type, power_off;
Harald Weltebd5c9122010-06-28 22:18:53 +0200739 int rc;
Harald Welte2720e732010-05-17 00:44:57 +0200740
741 detach_type = gh->data[0] & 0x7;
742 power_off = gh->data[0] & 0x8;
743
744 /* FIXME: In 24.008 there is an optional P-TMSI and P-TMSI signature IE */
745
746 DEBUGP(DMM, "-> GMM DETACH REQUEST TLLI=0x%08x type=%s %s\n",
747 msgb_tlli(msg), get_value_string(gprs_det_t_mo_strs, detach_type),
748 power_off ? "Power-off" : "");
749
750 /* Mark MM state as deregistered */
751 ctx->mm_state = GMM_DEREGISTERED;
752
Harald Weltec0d59502010-06-28 19:11:41 +0200753 /* delete all existing PDP contexts for this MS */
754 llist_for_each_entry_safe(pdp, pdp2, &ctx->pdp_list, list) {
755 LOGP(DMM, LOGL_NOTICE, "Dropping PDP context for NSAPI=%u "
756 "due to GPRS DETACH REQUEST\n", pdp->nsapi);
757 sgsn_delete_pdp_ctx(pdp);
758 /* FIXME: the callback wants to transmit a DEACT PDP CTX ACK,
759 * which is quite stupid for a MS that has just detached.. */
760 }
761
Harald Welte2720e732010-05-17 00:44:57 +0200762 /* force_stby = 0 */
Harald Weltebd5c9122010-06-28 22:18:53 +0200763 rc = gsm48_tx_gmm_det_ack(ctx, 0);
764
765 /* TLLI unassignment */
Harald Welted6f582b2010-06-30 23:18:57 +0200766 gprs_llgmm_assign(ctx->llme, ctx->tlli, 0xffffffff,
767 GPRS_ALGO_GEA0, NULL);
Harald Weltebd5c9122010-06-28 22:18:53 +0200768
769 return rc;
Harald Welte2720e732010-05-17 00:44:57 +0200770}
771
Harald Welte9b455bf2010-03-14 15:45:01 +0800772/* Chapter 9.4.15: Routing area update accept */
Harald Welte6463c072010-05-18 17:04:55 +0200773static int gsm48_tx_gmm_ra_upd_ack(struct sgsn_mm_ctx *mm)
Harald Welte9b455bf2010-03-14 15:45:01 +0800774{
775 struct msgb *msg = gsm48_msgb_alloc();
776 struct gsm48_hdr *gh;
777 struct gsm48_ra_upd_ack *rua;
Harald Weltec2e8cc42010-05-31 20:23:38 +0200778 uint8_t *mid;
Harald Welte9b455bf2010-03-14 15:45:01 +0800779
780 DEBUGP(DMM, "<- ROUTING AREA UPDATE ACCEPT\n");
781
Harald Welte6463c072010-05-18 17:04:55 +0200782 mmctx2msgid(msg, mm);
Harald Welte9b455bf2010-03-14 15:45:01 +0800783
784 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
785 gh->proto_discr = GSM48_PDISC_MM_GPRS;
786 gh->msg_type = GSM48_MT_GMM_RA_UPD_ACK;
787
788 rua = (struct gsm48_ra_upd_ack *) msgb_put(msg, sizeof(*rua));
789 rua->force_stby = 0; /* not indicated */
790 rua->upd_result = 0; /* RA updated */
791 rua->ra_upd_timer = GPRS_TMR_MINUTE | 10;
Harald Welte11d7c102010-05-02 11:54:55 +0200792
Harald Welte6463c072010-05-18 17:04:55 +0200793 gsm48_construct_ra(rua->ra_id.digits, &mm->ra);
Harald Welte9b455bf2010-03-14 15:45:01 +0800794
Harald Weltec2e8cc42010-05-31 20:23:38 +0200795#if 0
796 /* Optional: P-TMSI signature */
797 msgb_v_put(msg, GSM48_IE_GMM_PTMSI_SIG);
798 ptsig = msgb_put(msg, 3);
799 ptsig[0] = mm->p_tmsi_sig >> 16;
800 ptsig[1] = mm->p_tmsi_sig >> 8;
801 ptsig[2] = mm->p_tmsi_sig & 0xff;
802#endif
803
804#ifdef PTMSI_ALLOC
805 /* Optional: Allocated P-TMSI */
806 mid = msgb_put(msg, GSM48_MID_TMSI_LEN);
807 gsm48_generate_mid_from_tmsi(mid, mm->p_tmsi);
808 mid[0] = GSM48_IE_GMM_ALLOC_PTMSI;
809#endif
810
811 /* Option: MS ID, ... */
Harald Welte56a01452010-05-31 22:12:30 +0200812 return gsm48_gmm_sendmsg(msg, 0, mm);
Harald Welte9b455bf2010-03-14 15:45:01 +0800813}
814
815/* Chapter 9.4.17: Routing area update reject */
Harald Welteeaa614c2010-05-02 11:26:34 +0200816static int gsm48_tx_gmm_ra_upd_rej(struct msgb *old_msg, uint8_t cause)
Harald Welte9b455bf2010-03-14 15:45:01 +0800817{
818 struct msgb *msg = gsm48_msgb_alloc();
819 struct gsm48_hdr *gh;
820
821 DEBUGP(DMM, "<- ROUTING AREA UPDATE REJECT\n");
822
Harald Welte11d7c102010-05-02 11:54:55 +0200823 gmm_copy_id(msg, old_msg);
Harald Welte9b455bf2010-03-14 15:45:01 +0800824
825 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh) + 2);
826 gh->proto_discr = GSM48_PDISC_MM_GPRS;
827 gh->msg_type = GSM48_MT_GMM_RA_UPD_REJ;
828 gh->data[0] = cause;
829 gh->data[1] = 0; /* ? */
830
831 /* Option: P-TMSI signature, allocated P-TMSI, MS ID, ... */
Harald Welte8acd88f2010-05-18 10:57:45 +0200832 return gsm48_gmm_sendmsg(msg, 0, NULL);
Harald Welte9b455bf2010-03-14 15:45:01 +0800833}
834
Harald Welte588d44e2010-06-09 10:28:29 +0200835static void process_ms_ctx_status(struct sgsn_mm_ctx *mmctx,
836 uint16_t pdp_status)
837{
838 struct sgsn_pdp_ctx *pdp, *pdp2;
839 /* 24.008 4.7.5.1.3: If the PDP context status information element is
840 * included in ROUTING AREA UPDATE REQUEST message, then the network
841 * shall deactivate all those PDP contexts locally (without peer to
842 * peer signalling between the MS and the network), which are not in SM
843 * state PDP-INACTIVE on network side but are indicated by the MS as
844 * being in state PDP-INACTIVE. */
845
846 llist_for_each_entry_safe(pdp, pdp2, &mmctx->pdp_list, list) {
847 if (!(pdp_status & (1 << pdp->nsapi))) {
Harald Weltef54e7e22010-06-09 10:51:23 +0200848 LOGP(DMM, LOGL_NOTICE, "Dropping PDP context for NSAPI=%u "
Harald Welte588d44e2010-06-09 10:28:29 +0200849 "due to PDP CTX STATUS IE= 0x%04x\n",
850 pdp->nsapi, pdp_status);
851 sgsn_delete_pdp_ctx(pdp);
852 }
853 }
854}
855
Harald Welte9b455bf2010-03-14 15:45:01 +0800856/* Chapter 9.4.14: Routing area update request */
Harald Welte807a5d82010-06-01 11:53:01 +0200857static int gsm48_rx_gmm_ra_upd_req(struct sgsn_mm_ctx *mmctx, struct msgb *msg,
858 struct gprs_llc_llme *llme)
Harald Welte9b455bf2010-03-14 15:45:01 +0800859{
Harald Welte943c5bc2010-04-30 16:33:12 +0200860 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_gmmh(msg);
Harald Welteeaa614c2010-05-02 11:26:34 +0200861 uint8_t *cur = gh->data;
Harald Welte588d44e2010-06-09 10:28:29 +0200862 uint8_t *ms_ra_acc_cap;
863 uint8_t ms_ra_acc_cap_len;
Harald Welte9b455bf2010-03-14 15:45:01 +0800864 struct gprs_ra_id old_ra_id;
Harald Welte588d44e2010-06-09 10:28:29 +0200865 struct tlv_parsed tp;
Harald Welteeaa614c2010-05-02 11:26:34 +0200866 uint8_t upd_type;
Harald Welte807a5d82010-06-01 11:53:01 +0200867 int rc;
Harald Welte9b455bf2010-03-14 15:45:01 +0800868
869 /* Update Type 10.5.5.18 */
870 upd_type = *cur++ & 0x0f;
871
Harald Welte2720e732010-05-17 00:44:57 +0200872 DEBUGP(DMM, "-> GMM RA UPDATE REQUEST type=\"%s\" ",
873 get_value_string(gprs_upd_t_strs, upd_type));
Harald Welte9b455bf2010-03-14 15:45:01 +0800874
875 /* Old routing area identification 10.5.5.15 */
876 gsm48_parse_ra(&old_ra_id, cur);
877 cur += 6;
878
879 /* MS Radio Access Capability 10.5.5.12a */
Harald Welte588d44e2010-06-09 10:28:29 +0200880 ms_ra_acc_cap_len = *cur++;
881 ms_ra_acc_cap = cur;
Harald Welte9b455bf2010-03-14 15:45:01 +0800882
883 /* Optional: Old P-TMSI Signature, Requested READY timer, TMSI Status,
884 * DRX parameter, MS network capability */
Harald Welte588d44e2010-06-09 10:28:29 +0200885 rc = tlv_parse(&tp, &gsm48_gmm_att_tlvdef, cur,
886 (msg->data + msg->len) - cur, 0, 0);
Harald Welte9b455bf2010-03-14 15:45:01 +0800887
888 switch (upd_type) {
889 case GPRS_UPD_T_RA_LA:
890 case GPRS_UPD_T_RA_LA_IMSI_ATT:
891 DEBUGPC(DMM, " unsupported in Mode III, is your SI13 corrupt?\n");
892 return gsm48_tx_gmm_ra_upd_rej(msg, GMM_CAUSE_PROTO_ERR_UNSPEC);
893 break;
894 case GPRS_UPD_T_RA:
895 case GPRS_UPD_T_PERIODIC:
896 break;
897 }
898
899 /* Look-up the MM context based on old RA-ID and TLLI */
Harald Welte9b455bf2010-03-14 15:45:01 +0800900 if (!mmctx || mmctx->mm_state == GMM_DEREGISTERED) {
901 /* The MS has to perform GPRS attach */
902 DEBUGPC(DMM, " REJECT\n");
Harald Weltec2e8cc42010-05-31 20:23:38 +0200903 /* Device is still IMSI atached for CS but initiate GPRS ATTACH */
904 return gsm48_tx_gmm_ra_upd_rej(msg, GMM_CAUSE_MS_ID_NOT_DERIVED);
Harald Welte9b455bf2010-03-14 15:45:01 +0800905 }
906
Harald Welte9f1f3ad2010-05-02 12:56:57 +0200907 /* Update the MM context with the new RA-ID */
908 bssgp_parse_cell_id(&mmctx->ra, msgb_bcid(msg));
909 /* Update the MM context with the new TLLI */
910 mmctx->tlli = msgb_tlli(msg);
Harald Welte9b455bf2010-03-14 15:45:01 +0800911 /* FIXME: Update the MM context with the MS radio acc capabilities */
912 /* FIXME: Update the MM context with the MS network capabilities */
913
Harald Welte77289c22010-05-18 14:32:29 +0200914 rate_ctr_inc(&mmctx->ctrg->ctr[GMM_CTR_RA_UPDATE]);
915
Harald Welte9b455bf2010-03-14 15:45:01 +0800916 DEBUGPC(DMM, " ACCEPT\n");
Harald Weltec2e8cc42010-05-31 20:23:38 +0200917#ifdef PTMSI_ALLOC
918 mmctx->p_tmsi_old = mmctx->p_tmsi;
919 mmctx->p_tmsi = sgsn_alloc_ptmsi();
920 /* Start T3350 and re-transmit up to 5 times until ATTACH COMPLETE */
921 mmctx->t3350_mode = GMM_T3350_MODE_RAU;
922 mmctx_timer_start(mmctx, 3350, GSM0408_T3350_SECS);
923#endif
Harald Welte807a5d82010-06-01 11:53:01 +0200924 /* Even if there is no P-TMSI allocated, the MS will switch from
925 * foreign TLLI to local TLLI */
926 mmctx->tlli_new = gprs_tmsi2tlli(mmctx->p_tmsi, TLLI_LOCAL);
Harald Weltec2e8cc42010-05-31 20:23:38 +0200927
Harald Welte807a5d82010-06-01 11:53:01 +0200928 /* Inform LLC layer about new TLLI but keep old active */
Harald Welted6f582b2010-06-30 23:18:57 +0200929 gprs_llgmm_assign(mmctx->llme, mmctx->tlli, mmctx->tlli_new,
930 GPRS_ALGO_GEA0, NULL);
Harald Welte807a5d82010-06-01 11:53:01 +0200931
Harald Welte588d44e2010-06-09 10:28:29 +0200932 /* Look at PDP Context Status IE and see if MS's view of
933 * activated/deactivated NSAPIs agrees with our view */
934 if (TLVP_PRESENT(&tp, GSM48_IE_GMM_PDP_CTX_STATUS)) {
935 uint16_t pdp_status = ntohs(*(uint16_t *)
936 TLVP_VAL(&tp, GSM48_IE_GMM_PDP_CTX_STATUS));
937 process_ms_ctx_status(mmctx, pdp_status);
938 }
939
Harald Welte807a5d82010-06-01 11:53:01 +0200940 /* Send RA UPDATE ACCEPT */
Harald Welte6463c072010-05-18 17:04:55 +0200941 return gsm48_tx_gmm_ra_upd_ack(mmctx);
Harald Welte9b455bf2010-03-14 15:45:01 +0800942}
943
Harald Welted193cb32010-05-17 22:58:03 +0200944static int gsm48_rx_gmm_status(struct sgsn_mm_ctx *mmctx, struct msgb *msg)
Harald Welte9b455bf2010-03-14 15:45:01 +0800945{
946 struct gsm48_hdr *gh = msgb_l3(msg);
947
Harald Welte2720e732010-05-17 00:44:57 +0200948 DEBUGP(DMM, "-> GPRS MM STATUS (cause: %s)\n",
Harald Welte9b455bf2010-03-14 15:45:01 +0800949 get_value_string(gmm_cause_names, gh->data[0]));
950
951 return 0;
952}
953
954/* GPRS Mobility Management */
Harald Welte807a5d82010-06-01 11:53:01 +0200955static int gsm0408_rcv_gmm(struct sgsn_mm_ctx *mmctx, struct msgb *msg,
956 struct gprs_llc_llme *llme)
Harald Welte9b455bf2010-03-14 15:45:01 +0800957{
Harald Welte943c5bc2010-04-30 16:33:12 +0200958 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_gmmh(msg);
Harald Welte9b455bf2010-03-14 15:45:01 +0800959 int rc;
960
Harald Welte807a5d82010-06-01 11:53:01 +0200961 /* MMCTX can be NULL when called */
962
Harald Welted193cb32010-05-17 22:58:03 +0200963 if (!mmctx &&
964 gh->msg_type != GSM48_MT_GMM_ATTACH_REQ &&
Harald Weltec2e8cc42010-05-31 20:23:38 +0200965 gh->msg_type != GSM48_MT_GMM_RA_UPD_REQ) {
Harald Welted193cb32010-05-17 22:58:03 +0200966 LOGP(DMM, LOGL_NOTICE, "Cannot handle GMM for unknown MM CTX\n");
Harald Weltef54e7e22010-06-09 10:51:23 +0200967 return gsm48_tx_gmm_status_oldmsg(msg, GMM_CAUSE_MS_ID_NOT_DERIVED);
Harald Welted193cb32010-05-17 22:58:03 +0200968 }
969
Harald Welte9b455bf2010-03-14 15:45:01 +0800970 switch (gh->msg_type) {
971 case GSM48_MT_GMM_RA_UPD_REQ:
Harald Welte807a5d82010-06-01 11:53:01 +0200972 rc = gsm48_rx_gmm_ra_upd_req(mmctx, msg, llme);
Harald Welte9b455bf2010-03-14 15:45:01 +0800973 break;
974 case GSM48_MT_GMM_ATTACH_REQ:
Harald Welte807a5d82010-06-01 11:53:01 +0200975 rc = gsm48_rx_gmm_att_req(mmctx, msg, llme);
Harald Welte9b455bf2010-03-14 15:45:01 +0800976 break;
977 case GSM48_MT_GMM_ID_RESP:
Harald Welted193cb32010-05-17 22:58:03 +0200978 rc = gsm48_rx_gmm_id_resp(mmctx, msg);
Harald Welte9b455bf2010-03-14 15:45:01 +0800979 break;
980 case GSM48_MT_GMM_STATUS:
Harald Welted193cb32010-05-17 22:58:03 +0200981 rc = gsm48_rx_gmm_status(mmctx, msg);
Harald Welte9b455bf2010-03-14 15:45:01 +0800982 break;
Harald Welte2720e732010-05-17 00:44:57 +0200983 case GSM48_MT_GMM_DETACH_REQ:
Harald Welted193cb32010-05-17 22:58:03 +0200984 rc = gsm48_rx_gmm_det_req(mmctx, msg);
Harald Welte2720e732010-05-17 00:44:57 +0200985 break;
Harald Welte9b455bf2010-03-14 15:45:01 +0800986 case GSM48_MT_GMM_ATTACH_COMPL:
987 /* only in case SGSN offered new P-TMSI */
Harald Weltec2e8cc42010-05-31 20:23:38 +0200988 DEBUGP(DMM, "-> ATTACH COMPLETE\n");
989 mmctx_timer_stop(mmctx, 3350);
990 mmctx->p_tmsi_old = 0;
Harald Welte807a5d82010-06-01 11:53:01 +0200991 /* Unassign the old TLLI */
992 mmctx->tlli = mmctx->tlli_new;
Harald Welted6f582b2010-06-30 23:18:57 +0200993 gprs_llgmm_assign(mmctx->llme, 0xffffffff, mmctx->tlli_new,
994 GPRS_ALGO_GEA0, NULL);
Harald Weltec2e8cc42010-05-31 20:23:38 +0200995 break;
Harald Welteab1d5622010-05-18 19:58:38 +0200996 case GSM48_MT_GMM_RA_UPD_COMPL:
997 /* only in case SGSN offered new P-TMSI */
Harald Weltec2e8cc42010-05-31 20:23:38 +0200998 DEBUGP(DMM, "-> ROUTEING AREA UPDATE COMPLETE\n");
999 mmctx_timer_stop(mmctx, 3350);
1000 mmctx->p_tmsi_old = 0;
Harald Welte807a5d82010-06-01 11:53:01 +02001001 /* Unassign the old TLLI */
1002 mmctx->tlli = mmctx->tlli_new;
Harald Welted6f582b2010-06-30 23:18:57 +02001003 gprs_llgmm_assign(mmctx->llme, 0xffffffff, mmctx->tlli_new,
1004 GPRS_ALGO_GEA0, NULL);
Harald Weltec2e8cc42010-05-31 20:23:38 +02001005 break;
Harald Welte9b455bf2010-03-14 15:45:01 +08001006 case GSM48_MT_GMM_PTMSI_REALL_COMPL:
Harald Weltec2e8cc42010-05-31 20:23:38 +02001007 DEBUGP(DMM, "-> PTMSI REALLLICATION COMPLETE\n");
1008 mmctx_timer_stop(mmctx, 3350);
1009 mmctx->p_tmsi_old = 0;
Harald Welte807a5d82010-06-01 11:53:01 +02001010 /* Unassign the old TLLI */
1011 mmctx->tlli = mmctx->tlli_new;
Harald Welted6f582b2010-06-30 23:18:57 +02001012 //gprs_llgmm_assign(mmctx->llme, 0xffffffff, mmctx->tlli_new, GPRS_ALGO_GEA0, NULL);
Harald Weltec2e8cc42010-05-31 20:23:38 +02001013 break;
Harald Welte9b455bf2010-03-14 15:45:01 +08001014 case GSM48_MT_GMM_AUTH_CIPH_RESP:
Harald Welte4b6ac1e2010-07-03 11:09:06 +02001015 rc = gsm48_rx_gmm_auth_ciph_resp(mmctx, msg);
Harald Welte9b455bf2010-03-14 15:45:01 +08001016 break;
1017 default:
1018 DEBUGP(DMM, "Unknown GSM 04.08 GMM msg type 0x%02x\n",
1019 gh->msg_type);
Harald Weltef54e7e22010-06-09 10:51:23 +02001020 rc = gsm48_tx_gmm_status(mmctx, GMM_CAUSE_MSGT_NOTEXIST_NOTIMPL);
Harald Welte9b455bf2010-03-14 15:45:01 +08001021 break;
1022 }
1023
1024 return rc;
1025}
1026
Harald Weltec2e8cc42010-05-31 20:23:38 +02001027static void mmctx_timer_cb(void *_mm)
1028{
1029 struct sgsn_mm_ctx *mm = _mm;
1030
1031 mm->num_T_exp++;
1032
1033 switch (mm->T) {
1034 case 3350: /* waiting for ATTACH COMPLETE */
1035 if (mm->num_T_exp >= 5) {
1036 LOGP(DMM, LOGL_NOTICE, "T3350 expired >= 5 times\n");
1037 mm->mm_state = GMM_DEREGISTERED;
1038 /* FIXME: should we return some error? */
1039 break;
1040 }
1041 /* re-transmit the respective msg and re-start timer */
1042 switch (mm->t3350_mode) {
1043 case GMM_T3350_MODE_ATT:
1044 gsm48_tx_gmm_att_ack(mm);
1045 break;
1046 case GMM_T3350_MODE_RAU:
1047 gsm48_tx_gmm_ra_upd_ack(mm);
1048 break;
1049 case GMM_T3350_MODE_PTMSI_REALL:
1050 /* FIXME */
1051 break;
1052 }
1053 bsc_schedule_timer(&mm->timer, GSM0408_T3350_SECS, 0);
1054 break;
Harald Welte4b6ac1e2010-07-03 11:09:06 +02001055 case 3360: /* waiting for AUTH AND CIPH RESP */
1056 if (mm->num_T_exp >= 5) {
1057 LOGP(DMM, LOGL_NOTICE, "T3360 expired >= 5 times\n");
1058 mm->mm_state = GMM_DEREGISTERED;
1059 break;
1060 }
1061 /* FIXME: re-transmit the respective msg and re-start timer */
1062 bsc_schedule_timer(&mm->timer, GSM0408_T3360_SECS, 0);
1063 break;
Harald Weltec2e8cc42010-05-31 20:23:38 +02001064 case 3370: /* waiting for IDENTITY RESPONSE */
1065 if (mm->num_T_exp >= 5) {
1066 LOGP(DMM, LOGL_NOTICE, "T3370 expired >= 5 times\n");
1067 gsm48_tx_gmm_att_rej(mm, GMM_CAUSE_MS_ID_NOT_DERIVED);
1068 mm->mm_state = GMM_DEREGISTERED;
1069 break;
1070 }
1071 /* re-tranmit IDENTITY REQUEST and re-start timer */
1072 gsm48_tx_gmm_id_req(mm, mm->t3370_id_type);
1073 bsc_schedule_timer(&mm->timer, GSM0408_T3370_SECS, 0);
1074 break;
1075 default:
1076 LOGP(DMM, LOGL_ERROR, "timer expired in unknown mode %u\n",
1077 mm->T);
1078 }
1079}
1080
1081/* GPRS SESSION MANAGEMENT */
1082
Harald Welte421cba42010-05-02 23:11:50 +02001083static void msgb_put_pdp_addr_ipv4(struct msgb *msg, uint32_t ipaddr)
1084{
1085 uint8_t v[6];
1086
1087 v[0] = PDP_TYPE_ORG_IETF;
1088 v[1] = PDP_TYPE_N_IETF_IPv4;
1089 *(uint32_t *)(v+2) = htonl(ipaddr);
1090
1091 msgb_tlv_put(msg, GSM48_IE_GSM_PDP_ADDR, sizeof(v), v);
1092}
1093
1094static void msgb_put_pdp_addr_ppp(struct msgb *msg)
1095{
1096 uint8_t v[2];
1097
1098 v[0] = PDP_TYPE_ORG_ETSI;
1099 v[1] = PDP_TYPE_N_ETSI_PPP;
1100
1101 msgb_tlv_put(msg, GSM48_IE_GSM_PDP_ADDR, sizeof(v), v);
1102}
1103
Harald Welte9b455bf2010-03-14 15:45:01 +08001104/* Section 9.5.2: Ativate PDP Context Accept */
Harald Welte6abf94e2010-05-18 10:35:06 +02001105int gsm48_tx_gsm_act_pdp_acc(struct sgsn_pdp_ctx *pdp)
Harald Welte9b455bf2010-03-14 15:45:01 +08001106{
Harald Welte9b455bf2010-03-14 15:45:01 +08001107 struct msgb *msg = gsm48_msgb_alloc();
Harald Welte9b455bf2010-03-14 15:45:01 +08001108 struct gsm48_hdr *gh;
Harald Welte6abf94e2010-05-18 10:35:06 +02001109 uint8_t transaction_id = pdp->ti ^ 0x8; /* flip */
Harald Welte9b455bf2010-03-14 15:45:01 +08001110
1111 DEBUGP(DMM, "<- ACTIVATE PDP CONTEXT ACK\n");
1112
Harald Welte6abf94e2010-05-18 10:35:06 +02001113 mmctx2msgid(msg, pdp->mm);
Harald Welte9b455bf2010-03-14 15:45:01 +08001114
1115 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
1116 gh->proto_discr = GSM48_PDISC_SM_GPRS | (transaction_id << 4);
1117 gh->msg_type = GSM48_MT_GSM_ACT_PDP_ACK;
Harald Welte421cba42010-05-02 23:11:50 +02001118
1119 /* Negotiated LLC SAPI */
Harald Welte6abf94e2010-05-18 10:35:06 +02001120 msgb_v_put(msg, pdp->sapi);
Harald Welte4e38ac72010-05-18 14:51:18 +02001121
Harald Welte55e0df72010-05-18 13:20:08 +02001122 /* FIXME: copy QoS parameters from original request */
1123 //msgb_lv_put(msg, pdp->lib->qos_neg.l, pdp->lib->qos_neg.v);
1124 msgb_lv_put(msg, sizeof(default_qos), (uint8_t *)&default_qos);
Harald Welte4e38ac72010-05-18 14:51:18 +02001125
Harald Welte421cba42010-05-02 23:11:50 +02001126 /* Radio priority 10.5.7.2 */
Harald Welte6abf94e2010-05-18 10:35:06 +02001127 msgb_v_put(msg, pdp->lib->radio_pri);
Harald Welte4e38ac72010-05-18 14:51:18 +02001128
Harald Welte421cba42010-05-02 23:11:50 +02001129 /* PDP address */
Harald Welte4e38ac72010-05-18 14:51:18 +02001130 /* Highest 4 bits of first byte need to be set to 1, otherwise
1131 * the IE is identical with the 04.08 PDP Address IE */
1132 pdp->lib->eua.v[0] &= ~0xf0;
Harald Welte6abf94e2010-05-18 10:35:06 +02001133 msgb_tlv_put(msg, GSM48_IE_GSM_PDP_ADDR,
1134 pdp->lib->eua.l, pdp->lib->eua.v);
Harald Welte4e38ac72010-05-18 14:51:18 +02001135 pdp->lib->eua.v[0] |= 0xf0;
1136
Harald Welte77289c22010-05-18 14:32:29 +02001137 /* Optional: Protocol configuration options (FIXME: why 'req') */
1138 if (pdp->lib->pco_req.l && pdp->lib->pco_req.v)
Harald Welte6abf94e2010-05-18 10:35:06 +02001139 msgb_tlv_put(msg, GSM48_IE_GSM_PROTO_CONF_OPT,
Harald Welte3c0b9b92010-05-18 14:36:11 +02001140 pdp->lib->pco_req.l, pdp->lib->pco_req.v);
Harald Welte4e38ac72010-05-18 14:51:18 +02001141
Harald Welte421cba42010-05-02 23:11:50 +02001142 /* Optional: Packet Flow Identifier */
Harald Welte9b455bf2010-03-14 15:45:01 +08001143
Harald Welte8acd88f2010-05-18 10:57:45 +02001144 return gsm48_gmm_sendmsg(msg, 0, pdp->mm);
Harald Welte9b455bf2010-03-14 15:45:01 +08001145}
1146
Harald Welte6abf94e2010-05-18 10:35:06 +02001147/* Section 9.5.3: Activate PDP Context reject */
1148int gsm48_tx_gsm_act_pdp_rej(struct sgsn_mm_ctx *mm, uint8_t tid,
1149 uint8_t cause, uint8_t pco_len, uint8_t *pco_v)
1150{
1151 struct msgb *msg = gsm48_msgb_alloc();
Harald Welte6abf94e2010-05-18 10:35:06 +02001152 struct gsm48_hdr *gh;
1153 uint8_t transaction_id = tid ^ 0x8; /* flip */
1154
Harald Welte77289c22010-05-18 14:32:29 +02001155 DEBUGP(DMM, "<- ACTIVATE PDP CONTEXT REJ(cause=%u)\n", cause);
Harald Welte6abf94e2010-05-18 10:35:06 +02001156
1157 mmctx2msgid(msg, mm);
1158
1159 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
1160 gh->proto_discr = GSM48_PDISC_SM_GPRS | (transaction_id << 4);
1161 gh->msg_type = GSM48_MT_GSM_ACT_PDP_REJ;
1162
1163 msgb_v_put(msg, cause);
1164 if (pco_len && pco_v)
1165 msgb_tlv_put(msg, GSM48_IE_GSM_PROTO_CONF_OPT, pco_len, pco_v);
1166
Harald Welte8acd88f2010-05-18 10:57:45 +02001167 return gsm48_gmm_sendmsg(msg, 0, mm);
Harald Welte6abf94e2010-05-18 10:35:06 +02001168}
1169
Harald Welte9b455bf2010-03-14 15:45:01 +08001170/* Section 9.5.9: Deactivate PDP Context Accept */
Harald Welte60ebc022010-06-08 18:08:59 +02001171static int _gsm48_tx_gsm_deact_pdp_acc(struct sgsn_mm_ctx *mm, uint8_t tid)
Harald Welte9b455bf2010-03-14 15:45:01 +08001172{
Harald Welte9b455bf2010-03-14 15:45:01 +08001173 struct msgb *msg = gsm48_msgb_alloc();
1174 struct gsm48_hdr *gh;
Harald Welte60ebc022010-06-08 18:08:59 +02001175 uint8_t transaction_id = tid ^ 0x8; /* flip */
Harald Welte9b455bf2010-03-14 15:45:01 +08001176
1177 DEBUGP(DMM, "<- DEACTIVATE PDP CONTEXT ACK\n");
1178
Harald Welte60ebc022010-06-08 18:08:59 +02001179 mmctx2msgid(msg, mm);
Harald Welte9b455bf2010-03-14 15:45:01 +08001180
1181 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
1182 gh->proto_discr = GSM48_PDISC_SM_GPRS | (transaction_id << 4);
1183 gh->msg_type = GSM48_MT_GSM_DEACT_PDP_ACK;
1184
Harald Welte60ebc022010-06-08 18:08:59 +02001185 return gsm48_gmm_sendmsg(msg, 0, mm);
1186}
1187int gsm48_tx_gsm_deact_pdp_acc(struct sgsn_pdp_ctx *pdp)
1188{
1189 return _gsm48_tx_gsm_deact_pdp_acc(pdp->mm, pdp->ti);
Harald Welte9b455bf2010-03-14 15:45:01 +08001190}
1191
1192/* Section 9.5.1: Activate PDP Context Request */
Harald Welted193cb32010-05-17 22:58:03 +02001193static int gsm48_rx_gsm_act_pdp_req(struct sgsn_mm_ctx *mmctx,
1194 struct msgb *msg)
Harald Welte9b455bf2010-03-14 15:45:01 +08001195{
Harald Welte943c5bc2010-04-30 16:33:12 +02001196 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_gmmh(msg);
Harald Welte9b455bf2010-03-14 15:45:01 +08001197 struct gsm48_act_pdp_ctx_req *act_req = (struct gsm48_act_pdp_ctx_req *) gh->data;
Harald Welte0c3eae02010-05-02 21:07:14 +02001198 uint8_t req_qos_len, req_pdpa_len;
1199 uint8_t *req_qos, *req_pdpa;
1200 struct tlv_parsed tp;
Harald Welte6abf94e2010-05-18 10:35:06 +02001201 uint8_t transaction_id = (gh->proto_discr >> 4);
Harald Welte11ff3e82010-07-02 10:17:24 +02001202 struct sgsn_ggsn_ctx *ggsn;
Harald Welte6abf94e2010-05-18 10:35:06 +02001203 struct sgsn_pdp_ctx *pdp;
Harald Welte9b455bf2010-03-14 15:45:01 +08001204
Harald Welte6abf94e2010-05-18 10:35:06 +02001205 DEBUGP(DMM, "-> ACTIVATE PDP CONTEXT REQ: SAPI=%u NSAPI=%u ",
1206 act_req->req_llc_sapi, act_req->req_nsapi);
Harald Welte8acd88f2010-05-18 10:57:45 +02001207
Harald Welte23c13762010-07-02 22:52:04 +02001208 /* FIXME: length checks! */
Harald Welte0c3eae02010-05-02 21:07:14 +02001209 req_qos_len = act_req->data[0];
1210 req_qos = act_req->data + 1; /* 10.5.6.5 */
1211 req_pdpa_len = act_req->data[1 + req_qos_len];
1212 req_pdpa = act_req->data + 1 + req_qos_len + 1; /* 10.5.6.4 */
Harald Welte9b455bf2010-03-14 15:45:01 +08001213
Harald Welte23c13762010-07-02 22:52:04 +02001214 /* Optional: Access Point Name, Protocol Config Options */
1215 if (req_pdpa + req_pdpa_len < msg->data + msg->len)
1216 tlv_parse(&tp, &gsm48_sm_att_tlvdef, req_pdpa + req_pdpa_len,
1217 (msg->data + msg->len) - (req_pdpa + req_pdpa_len), 0, 0);
1218 else
1219 memset(&tp, 0, sizeof(tp));
1220
Harald Welte0c3eae02010-05-02 21:07:14 +02001221 switch (req_pdpa[0] & 0xf) {
1222 case 0x0:
1223 DEBUGPC(DMM, "ETSI ");
1224 break;
1225 case 0x1:
1226 DEBUGPC(DMM, "IETF ");
1227 break;
1228 case 0xf:
1229 DEBUGPC(DMM, "Empty ");
1230 break;
1231 }
1232
1233 switch (req_pdpa[1]) {
1234 case 0x21:
1235 DEBUGPC(DMM, "IPv4 ");
1236 if (req_pdpa_len >= 6) {
1237 struct in_addr ia;
1238 ia.s_addr = ntohl(*((uint32_t *) (req_pdpa+2)));
1239 DEBUGPC(DMM, "%s ", inet_ntoa(ia));
1240 }
1241 break;
1242 case 0x57:
1243 DEBUGPC(DMM, "IPv6 ");
1244 if (req_pdpa_len >= 18) {
1245 /* FIXME: print IPv6 address */
1246 }
1247 break;
1248 default:
1249 DEBUGPC(DMM, "0x%02x ", req_pdpa[1]);
1250 break;
1251 }
1252
Harald Welte77289c22010-05-18 14:32:29 +02001253 DEBUGPC(DMM, "\n");
1254
Harald Welte2720e732010-05-17 00:44:57 +02001255 /* put the non-TLV elements in the TLV parser structure to
1256 * pass them on to the SGSN / GTP code */
1257 tp.lv[OSMO_IE_GSM_REQ_QOS].len = req_qos_len;
1258 tp.lv[OSMO_IE_GSM_REQ_QOS].val = req_qos;
1259 tp.lv[OSMO_IE_GSM_REQ_PDP_ADDR].len = req_pdpa_len;
1260 tp.lv[OSMO_IE_GSM_REQ_PDP_ADDR].val = req_pdpa;
1261
Harald Welte6abf94e2010-05-18 10:35:06 +02001262 /* FIXME: determine GGSN based on APN and subscription options */
Harald Welte0c3eae02010-05-02 21:07:14 +02001263 if (TLVP_PRESENT(&tp, GSM48_IE_GSM_APN)) {}
Harald Welte6abf94e2010-05-18 10:35:06 +02001264
1265 /* Check if NSAPI is out of range (TS 04.65 / 7.2) */
1266 if (act_req->req_nsapi < 5 || act_req->req_nsapi > 15) {
1267 /* Send reject with GSM_CAUSE_INV_MAND_INFO */
1268 return gsm48_tx_gsm_act_pdp_rej(mmctx, transaction_id,
1269 GSM_CAUSE_INV_MAND_INFO,
1270 0, NULL);
1271 }
1272
1273 /* Check if NSAPI is already in use */
Harald Welteb37515e2010-07-02 10:12:58 +02001274 pdp = sgsn_pdp_ctx_by_nsapi(mmctx, act_req->req_nsapi);
1275 if (pdp) {
1276 /* We already have a PDP context for this TLLI + NSAPI tuple */
1277 if (pdp->sapi == act_req->req_llc_sapi &&
1278 pdp->ti == transaction_id) {
1279 /* This apparently is a re-transmission of a PDP CTX
1280 * ACT REQ (our ACT ACK must have got dropped) */
1281 return gsm48_tx_gsm_act_pdp_acc(pdp);
1282 }
1283
1284 /* Send reject with GSM_CAUSE_NSAPI_IN_USE */
Harald Welte6abf94e2010-05-18 10:35:06 +02001285 return gsm48_tx_gsm_act_pdp_rej(mmctx, transaction_id,
1286 GSM_CAUSE_NSAPI_IN_USE,
1287 0, NULL);
1288 }
Harald Welte9b455bf2010-03-14 15:45:01 +08001289
Harald Welte19f9e302010-07-02 10:15:49 +02001290 /* Only increment counter for a real activation, after we checked
1291 * for re-transmissions */
1292 rate_ctr_inc(&mmctx->ctrg->ctr[GMM_CTR_PDP_CTX_ACT]);
1293
Harald Welte11ff3e82010-07-02 10:17:24 +02001294 ggsn = sgsn_ggsn_ctx_by_id(0);
1295 if (!ggsn) {
1296 LOGP(DGPRS, LOGL_ERROR, "No GGSN context 0 found!\n");
1297 return -EIO;
Harald Welted193cb32010-05-17 22:58:03 +02001298 }
Harald Welte11ff3e82010-07-02 10:17:24 +02001299 ggsn->gsn = sgsn->gsn;
1300 pdp = sgsn_create_pdp_ctx(ggsn, mmctx, act_req->req_nsapi, &tp);
1301 if (!pdp)
1302 return -1;
1303
1304 /* Store SAPI and Transaction Identifier */
1305 pdp->sapi = act_req->req_llc_sapi;
1306 pdp->ti = transaction_id;
1307
Harald Welte6463c072010-05-18 17:04:55 +02001308 return 0;
Harald Welte9b455bf2010-03-14 15:45:01 +08001309}
1310
1311/* Section 9.5.8: Deactivate PDP Context Request */
Harald Welte77289c22010-05-18 14:32:29 +02001312static int gsm48_rx_gsm_deact_pdp_req(struct sgsn_mm_ctx *mm, struct msgb *msg)
Harald Welte9b455bf2010-03-14 15:45:01 +08001313{
Harald Welte943c5bc2010-04-30 16:33:12 +02001314 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_gmmh(msg);
Harald Welte77289c22010-05-18 14:32:29 +02001315 uint8_t transaction_id = (gh->proto_discr >> 4);
1316 struct sgsn_pdp_ctx *pdp;
Harald Welte9b455bf2010-03-14 15:45:01 +08001317
Harald Welte2720e732010-05-17 00:44:57 +02001318 DEBUGP(DMM, "-> DEACTIVATE PDP CONTEXT REQ (cause: %s)\n",
Harald Welte9b455bf2010-03-14 15:45:01 +08001319 get_value_string(gsm_cause_names, gh->data[0]));
1320
Harald Welte77289c22010-05-18 14:32:29 +02001321 pdp = sgsn_pdp_ctx_by_tid(mm, transaction_id);
1322 if (!pdp) {
1323 LOGP(DMM, LOGL_NOTICE, "Deactivate PDP Context Request for "
1324 "non-existing PDP Context (IMSI=%s, TI=%u)\n",
1325 mm->imsi, transaction_id);
Harald Welte60ebc022010-06-08 18:08:59 +02001326 return _gsm48_tx_gsm_deact_pdp_acc(mm, transaction_id);
Harald Welte77289c22010-05-18 14:32:29 +02001327 }
1328
1329 return sgsn_delete_pdp_ctx(pdp);
Harald Welte9b455bf2010-03-14 15:45:01 +08001330}
1331
Harald Welted193cb32010-05-17 22:58:03 +02001332static int gsm48_rx_gsm_status(struct sgsn_mm_ctx *ctx, struct msgb *msg)
Harald Welte9b455bf2010-03-14 15:45:01 +08001333{
1334 struct gsm48_hdr *gh = msgb_l3(msg);
1335
Harald Welte2720e732010-05-17 00:44:57 +02001336 DEBUGP(DMM, "-> GPRS SM STATUS (cause: %s)\n",
Harald Welte9b455bf2010-03-14 15:45:01 +08001337 get_value_string(gsm_cause_names, gh->data[0]));
1338
1339 return 0;
1340}
1341
1342/* GPRS Session Management */
Harald Welte807a5d82010-06-01 11:53:01 +02001343static int gsm0408_rcv_gsm(struct sgsn_mm_ctx *mmctx, struct msgb *msg,
1344 struct gprs_llc_llme *llme)
Harald Welte9b455bf2010-03-14 15:45:01 +08001345{
Harald Welte943c5bc2010-04-30 16:33:12 +02001346 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_gmmh(msg);
Harald Welte9b455bf2010-03-14 15:45:01 +08001347 int rc;
1348
Harald Welte807a5d82010-06-01 11:53:01 +02001349 /* MMCTX can be NULL when called */
1350
Harald Welted193cb32010-05-17 22:58:03 +02001351 if (!mmctx) {
1352 LOGP(DMM, LOGL_NOTICE, "Cannot handle SM for unknown MM CTX\n");
Harald Welte18d14522010-07-02 16:18:18 +02001353 gsm48_tx_gmm_status_oldmsg(msg, GMM_CAUSE_IMPL_DETACHED);
1354 return gsm48_tx_sm_status_oldmsg(msg, GSM_CAUSE_PROTO_ERR_UNSPEC);
Harald Welted193cb32010-05-17 22:58:03 +02001355 }
1356
Harald Welte9b455bf2010-03-14 15:45:01 +08001357 switch (gh->msg_type) {
1358 case GSM48_MT_GSM_ACT_PDP_REQ:
Harald Welted193cb32010-05-17 22:58:03 +02001359 rc = gsm48_rx_gsm_act_pdp_req(mmctx, msg);
Harald Welte9b455bf2010-03-14 15:45:01 +08001360 break;
1361 case GSM48_MT_GSM_DEACT_PDP_REQ:
Harald Welted193cb32010-05-17 22:58:03 +02001362 rc = gsm48_rx_gsm_deact_pdp_req(mmctx, msg);
Harald Welte77289c22010-05-18 14:32:29 +02001363 break;
Harald Welte9b455bf2010-03-14 15:45:01 +08001364 case GSM48_MT_GSM_STATUS:
Harald Welted193cb32010-05-17 22:58:03 +02001365 rc = gsm48_rx_gsm_status(mmctx, msg);
Harald Welte9b455bf2010-03-14 15:45:01 +08001366 break;
1367 case GSM48_MT_GSM_REQ_PDP_ACT_REJ:
1368 case GSM48_MT_GSM_ACT_AA_PDP_REQ:
1369 case GSM48_MT_GSM_DEACT_AA_PDP_REQ:
1370 DEBUGP(DMM, "Unimplemented GSM 04.08 GSM msg type 0x%02x\n",
1371 gh->msg_type);
Harald Weltef54e7e22010-06-09 10:51:23 +02001372 rc = gsm48_tx_sm_status(mmctx, GSM_CAUSE_MSGT_NOTEXIST_NOTIMPL);
Harald Welte9b455bf2010-03-14 15:45:01 +08001373 break;
1374 default:
1375 DEBUGP(DMM, "Unknown GSM 04.08 GSM msg type 0x%02x\n",
1376 gh->msg_type);
Harald Weltef54e7e22010-06-09 10:51:23 +02001377 rc = gsm48_tx_sm_status(mmctx, GSM_CAUSE_MSGT_NOTEXIST_NOTIMPL);
Harald Welte9b455bf2010-03-14 15:45:01 +08001378 break;
1379
1380 }
1381
1382 return rc;
1383}
1384
1385/* Main entry point for incoming 04.08 GPRS messages */
Harald Welte807a5d82010-06-01 11:53:01 +02001386int gsm0408_gprs_rcvmsg(struct msgb *msg, struct gprs_llc_llme *llme)
Harald Welte9b455bf2010-03-14 15:45:01 +08001387{
Harald Welte943c5bc2010-04-30 16:33:12 +02001388 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_gmmh(msg);
Harald Welteeaa614c2010-05-02 11:26:34 +02001389 uint8_t pdisc = gh->proto_discr & 0x0f;
Harald Welted193cb32010-05-17 22:58:03 +02001390 struct sgsn_mm_ctx *mmctx;
1391 struct gprs_ra_id ra_id;
Harald Welte9b455bf2010-03-14 15:45:01 +08001392 int rc = -EINVAL;
1393
Harald Welted193cb32010-05-17 22:58:03 +02001394 bssgp_parse_cell_id(&ra_id, msgb_bcid(msg));
1395 mmctx = sgsn_mm_ctx_by_tlli(msgb_tlli(msg), &ra_id);
Harald Welte8acd88f2010-05-18 10:57:45 +02001396 if (mmctx) {
Harald Welte6abf94e2010-05-18 10:35:06 +02001397 msgid2mmctx(mmctx, msg);
Harald Welte8acd88f2010-05-18 10:57:45 +02001398 rate_ctr_inc(&mmctx->ctrg->ctr[GMM_CTR_PKTS_SIG_IN]);
Harald Welte807a5d82010-06-01 11:53:01 +02001399 mmctx->llme = llme;
Harald Welte8acd88f2010-05-18 10:57:45 +02001400 }
Harald Welted193cb32010-05-17 22:58:03 +02001401
1402 /* MMCTX can be NULL */
1403
Harald Welte9b455bf2010-03-14 15:45:01 +08001404 switch (pdisc) {
1405 case GSM48_PDISC_MM_GPRS:
Harald Welte807a5d82010-06-01 11:53:01 +02001406 rc = gsm0408_rcv_gmm(mmctx, msg, llme);
Harald Welte9b455bf2010-03-14 15:45:01 +08001407 break;
1408 case GSM48_PDISC_SM_GPRS:
Harald Welte807a5d82010-06-01 11:53:01 +02001409 rc = gsm0408_rcv_gsm(mmctx, msg, llme);
Harald Welte9b455bf2010-03-14 15:45:01 +08001410 break;
1411 default:
1412 DEBUGP(DMM, "Unknown GSM 04.08 discriminator 0x%02x\n",
1413 pdisc);
Harald Welte6abf94e2010-05-18 10:35:06 +02001414 /* FIXME: return status message */
Harald Welte9b455bf2010-03-14 15:45:01 +08001415 break;
1416 }
1417
1418 return rc;
1419}
Harald Welte5bfe4992010-06-09 11:22:47 +02001420
1421int gprs_gmm_rx_suspend(struct gprs_ra_id *raid, uint32_t tlli)
1422{
1423 struct sgsn_mm_ctx *mmctx;
1424
1425 mmctx = sgsn_mm_ctx_by_tlli(tlli, raid);
1426 if (!mmctx) {
1427 LOGP(DMM, LOGL_NOTICE, "SUSPEND request for unknown "
1428 "TLLI=%08x\n", tlli);
1429 return -EINVAL;
1430 }
1431
1432 if (mmctx->mm_state != GMM_REGISTERED_NORMAL) {
1433 LOGP(DMM, LOGL_NOTICE, "SUSPEND request while state "
1434 "!= REGISTERED (TLLI=%08x)\n", tlli);
1435 return -EINVAL;
1436 }
1437
1438 /* Transition from REGISTERED_NORMAL to REGISTERED_SUSPENDED */
1439 mmctx->mm_state = GMM_REGISTERED_SUSPENDED;
1440 return 0;
1441}
1442
1443int gprs_gmm_rx_resume(struct gprs_ra_id *raid, uint32_t tlli,
1444 uint8_t suspend_ref)
1445{
1446 struct sgsn_mm_ctx *mmctx;
1447
1448 /* FIXME: make use of suspend reference? */
1449
1450 mmctx = sgsn_mm_ctx_by_tlli(tlli, raid);
1451 if (!mmctx) {
1452 LOGP(DMM, LOGL_NOTICE, "RESUME request for unknown "
1453 "TLLI=%08x\n", tlli);
1454 return -EINVAL;
1455 }
1456
1457 if (mmctx->mm_state != GMM_REGISTERED_SUSPENDED) {
1458 LOGP(DMM, LOGL_NOTICE, "RESUME request while state "
1459 "!= SUSPENDED (TLLI=%08x)\n", tlli);
1460 /* FIXME: should we not simply ignore it? */
1461 return -EINVAL;
1462 }
1463
1464 /* Transition from SUSPENDED to NORMAL */
1465 mmctx->mm_state = GMM_REGISTERED_NORMAL;
1466 return 0;
1467}