blob: 99ab2765c82e0cf3fb5bd58b337d3eaf8b18f3d1 [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>
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
Harald Welte649e1ff2013-07-21 17:41:46 +080059/* Section 11.2.2 / Table 11.4 MM timers netwokr side */
Harald Weltec2e8cc42010-05-31 20:23:38 +020060#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
Harald Welte649e1ff2013-07-21 17:41:46 +080065/* Section 11.2.2 / Table 11.4a MM timers netwokr side */
Harald Weltec2e8cc42010-05-31 20:23:38 +020066#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 Weltea9b473a2010-12-24 21:13:26 +010070/* Section 11.3 / Table 11.2d Timers of Session Management - network side */
71#define GSM0408_T3385_SECS 8 /* wait for ACT PDP CTX REQ */
72#define GSM0408_T3386_SECS 8 /* wait for MODIFY PDP CTX ACK */
73#define GSM0408_T3395_SECS 8 /* wait for DEACT PDP CTX ACK */
74#define GSM0408_T3397_SECS 8 /* wait for DEACT AA PDP CTX ACK */
75
Harald Welted193cb32010-05-17 22:58:03 +020076extern struct sgsn_instance *sgsn;
Harald Welte9b455bf2010-03-14 15:45:01 +080077
Harald Welte2720e732010-05-17 00:44:57 +020078/* Protocol related stuff, should go into libosmocore */
79
Harald Welte9b455bf2010-03-14 15:45:01 +080080/* 10.5.5.14 GPRS MM Cause / Table 10.5.147 */
Harald Welte2720e732010-05-17 00:44:57 +020081const struct value_string gmm_cause_names[] = {
Harald Weltefd29a1f2010-07-01 12:26:59 +020082 { GMM_CAUSE_IMSI_UNKNOWN, "IMSI unknown in HLR" },
83 { GMM_CAUSE_ILLEGAL_MS, "Illegal MS" },
84 { GMM_CAUSE_ILLEGAL_ME, "Illegal ME" },
85 { GMM_CAUSE_GPRS_NOTALLOWED, "GPRS services not allowed" },
86 { GMM_CAUSE_GPRS_OTHER_NOTALLOWED,
87 "GPRS services and non-GPRS services not allowed" },
88 { GMM_CAUSE_MS_ID_NOT_DERIVED,
89 "MS identity cannot be derived by the network" },
90 { GMM_CAUSE_IMPL_DETACHED, "Implicitly detached" },
91 { GMM_CAUSE_PLMN_NOTALLOWED, "PLMN not allowed" },
92 { GMM_CAUSE_LA_NOTALLOWED, "Location Area not allowed" },
93 { GMM_CAUSE_ROAMING_NOTALLOWED,
94 "Roaming not allowed in this location area" },
95 { GMM_CAUSE_NO_GPRS_PLMN,
96 "GPRS services not allowed in this PLMN" },
97 { GMM_CAUSE_MSC_TEMP_NOTREACH, "MSC temporarily not reachable" },
98 { GMM_CAUSE_NET_FAIL, "Network failure" },
99 { GMM_CAUSE_CONGESTION, "Congestion" },
100 { GMM_CAUSE_SEM_INCORR_MSG, "Semantically incorrect message" },
Harald Welte9b455bf2010-03-14 15:45:01 +0800101 { GMM_CAUSE_INV_MAND_INFO, "Invalid mandatory information" },
102 { GMM_CAUSE_MSGT_NOTEXIST_NOTIMPL,
103 "Message type non-existant or not implemented" },
104 { GMM_CAUSE_MSGT_INCOMP_P_STATE,
105 "Message type not compatible with protocol state" },
106 { GMM_CAUSE_IE_NOTEXIST_NOTIMPL,
107 "Information element non-existent or not implemented" },
Harald Weltefd29a1f2010-07-01 12:26:59 +0200108 { GMM_CAUSE_COND_IE_ERR, "Conditional IE error" },
Harald Welte9b455bf2010-03-14 15:45:01 +0800109 { GMM_CAUSE_MSG_INCOMP_P_STATE,
110 "Message not compatible with protocol state " },
Harald Weltefd29a1f2010-07-01 12:26:59 +0200111 { GMM_CAUSE_PROTO_ERR_UNSPEC, "Protocol error, unspecified" },
Harald Welte9b455bf2010-03-14 15:45:01 +0800112 { 0, NULL }
113};
114
115/* 10.5.6.6 SM Cause / Table 10.5.157 */
Harald Welte2720e732010-05-17 00:44:57 +0200116const struct value_string gsm_cause_names[] = {
Harald Welte9b455bf2010-03-14 15:45:01 +0800117 { GSM_CAUSE_INSUFF_RSRC, "Insufficient resources" },
118 { GSM_CAUSE_MISSING_APN, "Missing or unknown APN" },
119 { GSM_CAUSE_UNKNOWN_PDP, "Unknown PDP address or PDP type" },
120 { GSM_CAUSE_AUTH_FAILED, "User Authentication failed" },
121 { GSM_CAUSE_ACT_REJ_GGSN, "Activation rejected by GGSN" },
122 { GSM_CAUSE_ACT_REJ_UNSPEC, "Activation rejected, unspecified" },
123 { GSM_CAUSE_SERV_OPT_NOTSUPP, "Service option not supported" },
124 { GSM_CAUSE_REQ_SERV_OPT_NOTSUB,
125 "Requested service option not subscribed" },
126 { GSM_CAUSE_SERV_OPT_TEMP_OOO,
127 "Service option temporarily out of order" },
128 { GSM_CAUSE_NSAPI_IN_USE, "NSAPI already used" },
129 { GSM_CAUSE_DEACT_REGULAR, "Regular deactivation" },
130 { GSM_CAUSE_QOS_NOT_ACCEPTED, "QoS not accepted" },
131 { GSM_CAUSE_NET_FAIL, "Network Failure" },
132 { GSM_CAUSE_REACT_RQD, "Reactivation required" },
133 { GSM_CAUSE_FEATURE_NOTSUPP, "Feature not supported " },
134 { GSM_CAUSE_INVALID_TRANS_ID, "Invalid transaction identifier" },
135 { GSM_CAUSE_SEM_INCORR_MSG, "Semantically incorrect message" },
136 { GSM_CAUSE_INV_MAND_INFO, "Invalid mandatory information" },
137 { GSM_CAUSE_MSGT_NOTEXIST_NOTIMPL,
138 "Message type non-existant or not implemented" },
139 { GSM_CAUSE_MSGT_INCOMP_P_STATE,
140 "Message type not compatible with protocol state" },
141 { GSM_CAUSE_IE_NOTEXIST_NOTIMPL,
142 "Information element non-existent or not implemented" },
143 { GSM_CAUSE_COND_IE_ERR, "Conditional IE error" },
144 { GSM_CAUSE_MSG_INCOMP_P_STATE,
145 "Message not compatible with protocol state " },
146 { GSM_CAUSE_PROTO_ERR_UNSPEC, "Protocol error, unspecified" },
147 { 0, NULL }
148};
149
Harald Welte2720e732010-05-17 00:44:57 +0200150/* 10.5.5.2 */
151const struct value_string gprs_att_t_strs[] = {
152 { GPRS_ATT_T_ATTACH, "GPRS attach" },
153 { GPRS_ATT_T_ATT_WHILE_IMSI, "GPRS attach while IMSI attached" },
154 { GPRS_ATT_T_COMBINED, "Combined GPRS/IMSI attach" },
155 { 0, NULL }
156};
Harald Welte9b455bf2010-03-14 15:45:01 +0800157
Harald Welte2720e732010-05-17 00:44:57 +0200158const struct value_string gprs_upd_t_strs[] = {
159 { GPRS_UPD_T_RA, "RA updating" },
160 { GPRS_UPD_T_RA_LA, "combined RA/LA updating" },
161 { GPRS_UPD_T_RA_LA_IMSI_ATT, "combined RA/LA updating + IMSI attach" },
162 { GPRS_UPD_T_PERIODIC, "periodic updating" },
163 { 0, NULL }
164};
165
166/* 10.5.5.5 */
167const struct value_string gprs_det_t_mo_strs[] = {
168 { GPRS_DET_T_MO_GPRS, "GPRS detach" },
169 { GPRS_DET_T_MO_IMSI, "IMSI detach" },
170 { GPRS_DET_T_MO_COMBINED, "Combined GPRS/IMSI detach" },
171 { 0, NULL }
172};
173
Jacob Erlbeck78ecaf02014-09-05 14:32:36 +0200174const struct value_string gprs_det_t_mt_strs[] = {
175 { GPRS_DET_T_MT_REATT_REQ, "re-attach required" },
176 { GPRS_DET_T_MT_REATT_NOTREQ, "re-attach not required" },
177 { GPRS_DET_T_MT_IMSI, "IMSI detach (after VLR failure)" },
178 { 0, NULL }
179};
180
Harald Welte588d44e2010-06-09 10:28:29 +0200181static const struct tlv_definition gsm48_gmm_att_tlvdef = {
182 .def = {
Harald Welte4b6ac1e2010-07-03 11:09:06 +0200183 [GSM48_IE_GMM_CIPH_CKSN] = { TLV_TYPE_FIXED, 1 },
Harald Welte588d44e2010-06-09 10:28:29 +0200184 [GSM48_IE_GMM_TIMER_READY] = { TLV_TYPE_TV, 1 },
185 [GSM48_IE_GMM_ALLOC_PTMSI] = { TLV_TYPE_TLV, 0 },
Harald Welte4b6ac1e2010-07-03 11:09:06 +0200186 [GSM48_IE_GMM_PTMSI_SIG] = { TLV_TYPE_FIXED, 3 },
187 [GSM48_IE_GMM_AUTH_RAND] = { TLV_TYPE_FIXED, 16 },
188 [GSM48_IE_GMM_AUTH_SRES] = { TLV_TYPE_FIXED, 4 },
Harald Welte588d44e2010-06-09 10:28:29 +0200189 [GSM48_IE_GMM_IMEISV] = { TLV_TYPE_TLV, 0 },
Harald Welte4b6ac1e2010-07-03 11:09:06 +0200190 [GSM48_IE_GMM_DRX_PARAM] = { TLV_TYPE_FIXED, 2 },
Harald Welte588d44e2010-06-09 10:28:29 +0200191 [GSM48_IE_GMM_MS_NET_CAPA] = { TLV_TYPE_TLV, 0 },
192 [GSM48_IE_GMM_PDP_CTX_STATUS] = { TLV_TYPE_TLV, 0 },
193 [GSM48_IE_GMM_PS_LCS_CAPA] = { TLV_TYPE_TLV, 0 },
194 [GSM48_IE_GMM_GMM_MBMS_CTX_ST] = { TLV_TYPE_TLV, 0 },
195 },
196};
197
198static const struct tlv_definition gsm48_sm_att_tlvdef = {
199 .def = {
200 [GSM48_IE_GSM_APN] = { TLV_TYPE_TLV, 0 },
201 [GSM48_IE_GSM_PROTO_CONF_OPT] = { TLV_TYPE_TLV, 0 },
202 [GSM48_IE_GSM_PDP_ADDR] = { TLV_TYPE_TLV, 0 },
203 [GSM48_IE_GSM_AA_TMR] = { TLV_TYPE_TV, 1 },
204 [GSM48_IE_GSM_NAME_FULL] = { TLV_TYPE_TLV, 0 },
205 [GSM48_IE_GSM_NAME_SHORT] = { TLV_TYPE_TLV, 0 },
Harald Welte4b6ac1e2010-07-03 11:09:06 +0200206 [GSM48_IE_GSM_TIMEZONE] = { TLV_TYPE_FIXED, 1 },
207 [GSM48_IE_GSM_UTC_AND_TZ] = { TLV_TYPE_FIXED, 7 },
Harald Welte588d44e2010-06-09 10:28:29 +0200208 [GSM48_IE_GSM_LSA_ID] = { TLV_TYPE_TLV, 0 },
209 },
210};
211
Harald Welte2720e732010-05-17 00:44:57 +0200212/* Our implementation, should be kept in SGSN */
Harald Welte9b455bf2010-03-14 15:45:01 +0800213
Harald Weltec2e8cc42010-05-31 20:23:38 +0200214static void mmctx_timer_cb(void *_mm);
215
216static void mmctx_timer_start(struct sgsn_mm_ctx *mm, unsigned int T,
217 unsigned int seconds)
218{
Pablo Neira Ayusobf540cb2011-05-06 12:11:06 +0200219 if (osmo_timer_pending(&mm->timer))
Harald Weltec2e8cc42010-05-31 20:23:38 +0200220 LOGP(DMM, LOGL_ERROR, "Starting MM timer %u while old "
221 "timer %u pending\n", T, mm->T);
222 mm->T = T;
223 mm->num_T_exp = 0;
224
225 /* FIXME: we should do this only once ? */
226 mm->timer.data = mm;
227 mm->timer.cb = &mmctx_timer_cb;
228
Pablo Neira Ayusobf540cb2011-05-06 12:11:06 +0200229 osmo_timer_schedule(&mm->timer, seconds, 0);
Harald Weltec2e8cc42010-05-31 20:23:38 +0200230}
231
232static void mmctx_timer_stop(struct sgsn_mm_ctx *mm, unsigned int T)
233{
234 if (mm->T != T)
235 LOGP(DMM, LOGL_ERROR, "Stopping MM timer %u but "
236 "%u is running\n", T, mm->T);
Pablo Neira Ayusobf540cb2011-05-06 12:11:06 +0200237 osmo_timer_del(&mm->timer);
Harald Weltec2e8cc42010-05-31 20:23:38 +0200238}
239
Harald Welte9b455bf2010-03-14 15:45:01 +0800240/* Send a message through the underlying layer */
Harald Welte8acd88f2010-05-18 10:57:45 +0200241static int gsm48_gmm_sendmsg(struct msgb *msg, int command,
Holger Hans Peter Freyther2b174542011-10-14 23:31:34 +0200242 struct sgsn_mm_ctx *mm)
Harald Welte9b455bf2010-03-14 15:45:01 +0800243{
Harald Welte8acd88f2010-05-18 10:57:45 +0200244 if (mm)
245 rate_ctr_inc(&mm->ctrg->ctr[GMM_CTR_PKTS_SIG_OUT]);
246
Harald Welte11d7c102010-05-02 11:54:55 +0200247 /* caller needs to provide TLLI, BVCI and NSEI */
Harald Welte56a01452010-05-31 22:12:30 +0200248 return gprs_llc_tx_ui(msg, GPRS_SAPI_GMM, command, mm);
Harald Welte9b455bf2010-03-14 15:45:01 +0800249}
250
Harald Welte11d7c102010-05-02 11:54:55 +0200251/* copy identifiers from old message to new message, this
252 * is required so lower layers can route it correctly */
253static void gmm_copy_id(struct msgb *msg, const struct msgb *old)
254{
255 msgb_tlli(msg) = msgb_tlli(old);
256 msgb_bvci(msg) = msgb_bvci(old);
257 msgb_nsei(msg) = msgb_nsei(old);
258}
259
Harald Welte6abf94e2010-05-18 10:35:06 +0200260/* Store BVCI/NSEI in MM context */
261static void msgid2mmctx(struct sgsn_mm_ctx *mm, const struct msgb *msg)
262{
263 mm->bvci = msgb_bvci(msg);
264 mm->nsei = msgb_nsei(msg);
265}
266
267/* Store BVCI/NSEI in MM context */
268static void mmctx2msgid(struct msgb *msg, const struct sgsn_mm_ctx *mm)
269{
270 msgb_tlli(msg) = mm->tlli;
271 msgb_bvci(msg) = mm->bvci;
272 msgb_nsei(msg) = mm->nsei;
273}
274
Jacob Erlbeck78ecaf02014-09-05 14:32:36 +0200275static void delete_pdp_contexts(struct sgsn_mm_ctx *ctx, const char *log_text)
276{
277 struct sgsn_pdp_ctx *pdp, *pdp2;
278
279 /* delete all existing PDP contexts for this MS */
280 llist_for_each_entry_safe(pdp, pdp2, &ctx->pdp_list, list) {
281 LOGMMCTXP(LOGL_NOTICE, ctx,
282 "Dropping PDP context for NSAPI=%u due to %s\n",
283 pdp->nsapi, log_text);
284 sgsn_pdp_ctx_terminate(pdp);
285 }
286}
287
Jacob Erlbeck99985b52014-10-13 10:32:00 +0200288static void mm_ctx_cleanup_free(struct sgsn_mm_ctx *ctx, const char *log_text)
289{
290 struct gprs_llc_llme *llme = ctx->llme;
291 uint32_t tlli = ctx->tlli;
Jacob Erlbeck99985b52014-10-13 10:32:00 +0200292
293 /* Mark MM state as deregistered */
294 ctx->mm_state = GMM_DEREGISTERED;
295
Jacob Erlbeck78ecaf02014-09-05 14:32:36 +0200296 delete_pdp_contexts(ctx, log_text);
Jacob Erlbeck99985b52014-10-13 10:32:00 +0200297
298 sgsn_mm_ctx_free(ctx);
299 ctx = NULL;
300
301 /* TLLI unassignment, must be called after sgsn_mm_ctx_free */
302 gprs_llgmm_assign(llme, tlli, 0xffffffff, GPRS_ALGO_GEA0, NULL);
303}
304
Harald Weltef54e7e22010-06-09 10:51:23 +0200305/* Chapter 9.4.18 */
306static int _tx_status(struct msgb *msg, uint8_t cause,
307 struct sgsn_mm_ctx *mmctx, int sm)
308{
309 struct gsm48_hdr *gh;
310
311 /* MMCTX might be NULL! */
312
313 DEBUGP(DMM, "<- GPRS MM STATUS (cause: %s)\n",
314 get_value_string(gmm_cause_names, cause));
315
316 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh) + 1);
317 if (sm) {
318 gh->proto_discr = GSM48_PDISC_SM_GPRS;
319 gh->msg_type = GSM48_MT_GSM_STATUS;
320 } else {
321 gh->proto_discr = GSM48_PDISC_MM_GPRS;
322 gh->msg_type = GSM48_MT_GMM_STATUS;
323 }
324 gh->data[0] = cause;
325
326 return gsm48_gmm_sendmsg(msg, 0, mmctx);
327}
328static int gsm48_tx_gmm_status(struct sgsn_mm_ctx *mmctx, uint8_t cause)
329{
330 struct msgb *msg = gsm48_msgb_alloc();
331
332 mmctx2msgid(msg, mmctx);
333 return _tx_status(msg, cause, mmctx, 0);
334};
335static int gsm48_tx_gmm_status_oldmsg(struct msgb *oldmsg, uint8_t cause)
336{
337 struct msgb *msg = gsm48_msgb_alloc();
338
339 gmm_copy_id(msg, oldmsg);
340 return _tx_status(msg, cause, NULL, 0);
341}
342static int gsm48_tx_sm_status(struct sgsn_mm_ctx *mmctx, uint8_t cause)
343{
344 struct msgb *msg = gsm48_msgb_alloc();
345
346 mmctx2msgid(msg, mmctx);
347 return _tx_status(msg, cause, mmctx, 1);
348};
349static int gsm48_tx_sm_status_oldmsg(struct msgb *oldmsg, uint8_t cause)
350{
351 struct msgb *msg = gsm48_msgb_alloc();
352
353 gmm_copy_id(msg, oldmsg);
354 return _tx_status(msg, cause, NULL, 1);
355}
356
Jacob Erlbeck78ecaf02014-09-05 14:32:36 +0200357static int _tx_detach_req(struct msgb *msg, uint8_t detach_type, uint8_t cause,
358 struct sgsn_mm_ctx *mmctx)
359{
360 struct gsm48_hdr *gh;
361
362 /* MMCTX might be NULL! */
363
364 DEBUGP(DMM, "<- GPRS MM DETACH REQ (type: %s, cause: %s)\n",
365 get_value_string(gprs_det_t_mt_strs, detach_type),
366 get_value_string(gmm_cause_names, cause));
367
368 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh) + 1);
369
370 gh->proto_discr = GSM48_PDISC_MM_GPRS;
371 gh->msg_type = GSM48_MT_GMM_DETACH_REQ;
372 gh->data[0] = detach_type & 0x07;
373
374 msgb_tv_put(msg, GSM48_IE_GMM_CAUSE, cause);
375
376 return gsm48_gmm_sendmsg(msg, 0, mmctx);
377}
378
379static int gsm48_tx_gmm_detach_req(struct sgsn_mm_ctx *mmctx,
380 uint8_t detach_type, uint8_t cause)
381{
382 struct msgb *msg = gsm48_msgb_alloc();
383
384 mmctx2msgid(msg, mmctx);
385 return _tx_detach_req(msg, detach_type, cause, mmctx);
386}
387
388static int gsm48_tx_gmm_detach_req_oldmsg(struct msgb *oldmsg,
389 uint8_t detach_type, uint8_t cause)
390{
391 struct msgb *msg = gsm48_msgb_alloc();
392
393 gmm_copy_id(msg, oldmsg);
394 return _tx_detach_req(msg, detach_type, cause, NULL);
395}
Harald Weltef54e7e22010-06-09 10:51:23 +0200396
Harald Welte86fda902010-05-03 10:54:35 +0200397static struct gsm48_qos default_qos = {
398 .delay_class = 4, /* best effort */
399 .reliab_class = GSM48_QOS_RC_LLC_UN_RLC_ACK_DATA_PROT,
400 .peak_tput = GSM48_QOS_PEAK_TPUT_32000bps,
401 .preced_class = GSM48_QOS_PC_NORMAL,
402 .mean_tput = GSM48_QOS_MEAN_TPUT_BEST_EFFORT,
403 .traf_class = GSM48_QOS_TC_INTERACTIVE,
404 .deliv_order = GSM48_QOS_DO_UNORDERED,
405 .deliv_err_sdu = GSM48_QOS_ERRSDU_YES,
406 .max_sdu_size = GSM48_QOS_MAXSDU_1520,
407 .max_bitrate_up = GSM48_QOS_MBRATE_63k,
408 .max_bitrate_down = GSM48_QOS_MBRATE_63k,
409 .resid_ber = GSM48_QOS_RBER_5e_2,
410 .sdu_err_ratio = GSM48_QOS_SERR_1e_2,
411 .handling_prio = 3,
412 .xfer_delay = 0x10, /* 200ms */
413 .guar_bitrate_up = GSM48_QOS_MBRATE_0k,
414 .guar_bitrate_down = GSM48_QOS_MBRATE_0k,
415 .sig_ind = 0, /* not optimised for signalling */
416 .max_bitrate_down_ext = 0, /* use octet 9 */
417 .guar_bitrate_down_ext = 0, /* use octet 13 */
418};
419
Harald Welte9b455bf2010-03-14 15:45:01 +0800420/* Chapter 9.4.2: Attach accept */
Harald Welte6463c072010-05-18 17:04:55 +0200421static int gsm48_tx_gmm_att_ack(struct sgsn_mm_ctx *mm)
Harald Welte9b455bf2010-03-14 15:45:01 +0800422{
423 struct msgb *msg = gsm48_msgb_alloc();
424 struct gsm48_hdr *gh;
425 struct gsm48_attach_ack *aa;
Holger Hans Peter Freyther1768a572014-04-04 12:40:34 +0200426 uint8_t *mid;
427#if 0
428 uint8_t *ptsig;
429#endif
Harald Welte9b455bf2010-03-14 15:45:01 +0800430
Daniel Willmann46553142014-09-03 17:46:44 +0200431 LOGMMCTXP(LOGL_INFO, mm, "<- GPRS ATTACH ACCEPT (new P-TMSI=0x%08x)\n", mm->p_tmsi);
Harald Welte9b455bf2010-03-14 15:45:01 +0800432
Harald Welte6463c072010-05-18 17:04:55 +0200433 mmctx2msgid(msg, mm);
Harald Welte9b455bf2010-03-14 15:45:01 +0800434
435 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
436 gh->proto_discr = GSM48_PDISC_MM_GPRS;
437 gh->msg_type = GSM48_MT_GMM_ATTACH_ACK;
438
439 aa = (struct gsm48_attach_ack *) msgb_put(msg, sizeof(*aa));
440 aa->force_stby = 0; /* not indicated */
441 aa->att_result = 1; /* GPRS only */
442 aa->ra_upd_timer = GPRS_TMR_MINUTE | 10;
443 aa->radio_prio = 4; /* lowest */
Harald Welte6463c072010-05-18 17:04:55 +0200444 gsm48_construct_ra(aa->ra_id.digits, &mm->ra);
Harald Welte9b455bf2010-03-14 15:45:01 +0800445
Harald Welteab1d5622010-05-18 19:58:38 +0200446#if 0
Harald Welte6463c072010-05-18 17:04:55 +0200447 /* Optional: P-TMSI signature */
448 msgb_v_put(msg, GSM48_IE_GMM_PTMSI_SIG);
449 ptsig = msgb_put(msg, 3);
450 ptsig[0] = mm->p_tmsi_sig >> 16;
451 ptsig[1] = mm->p_tmsi_sig >> 8;
452 ptsig[2] = mm->p_tmsi_sig & 0xff;
453
454 /* Optional: Negotiated Ready timer value */
Harald Weltec2e8cc42010-05-31 20:23:38 +0200455#endif
Harald Welte6463c072010-05-18 17:04:55 +0200456
Harald Weltec2e8cc42010-05-31 20:23:38 +0200457#ifdef PTMSI_ALLOC
Harald Welte6463c072010-05-18 17:04:55 +0200458 /* Optional: Allocated P-TMSI */
Harald Welte6463c072010-05-18 17:04:55 +0200459 mid = msgb_put(msg, GSM48_MID_TMSI_LEN);
460 gsm48_generate_mid_from_tmsi(mid, mm->p_tmsi);
Harald Welteab1d5622010-05-18 19:58:38 +0200461 mid[0] = GSM48_IE_GMM_ALLOC_PTMSI;
462#endif
Harald Weltec2e8cc42010-05-31 20:23:38 +0200463
Harald Welte6463c072010-05-18 17:04:55 +0200464 /* Optional: MS-identity (combined attach) */
465 /* Optional: GMM cause (partial attach result for combined attach) */
466
Harald Welte56a01452010-05-31 22:12:30 +0200467 return gsm48_gmm_sendmsg(msg, 0, mm);
Harald Welte9b455bf2010-03-14 15:45:01 +0800468}
469
470/* Chapter 9.4.5: Attach reject */
Harald Welte6463c072010-05-18 17:04:55 +0200471static int _tx_gmm_att_rej(struct msgb *msg, uint8_t gmm_cause)
Harald Welte9b455bf2010-03-14 15:45:01 +0800472{
Harald Welte9b455bf2010-03-14 15:45:01 +0800473 struct gsm48_hdr *gh;
474
Daniel Willmann46553142014-09-03 17:46:44 +0200475 LOGP(DMM, LOGL_NOTICE, "<- GPRS ATTACH REJECT: %s\n", get_value_string(gmm_cause_names, gmm_cause));
Harald Welte9b455bf2010-03-14 15:45:01 +0800476
Harald Welte9b455bf2010-03-14 15:45:01 +0800477 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh) + 1);
478 gh->proto_discr = GSM48_PDISC_MM_GPRS;
479 gh->msg_type = GSM48_MT_GMM_ATTACH_REJ;
480 gh->data[0] = gmm_cause;
481
Harald Welte8acd88f2010-05-18 10:57:45 +0200482 return gsm48_gmm_sendmsg(msg, 0, NULL);
Harald Welte9b455bf2010-03-14 15:45:01 +0800483}
Harald Welte6463c072010-05-18 17:04:55 +0200484static int gsm48_tx_gmm_att_rej_oldmsg(const struct msgb *old_msg,
485 uint8_t gmm_cause)
486{
487 struct msgb *msg = gsm48_msgb_alloc();
488 gmm_copy_id(msg, old_msg);
489 return _tx_gmm_att_rej(msg, gmm_cause);
490}
491static int gsm48_tx_gmm_att_rej(struct sgsn_mm_ctx *mm,
492 uint8_t gmm_cause)
493{
494 struct msgb *msg = gsm48_msgb_alloc();
495 mmctx2msgid(msg, mm);
496 return _tx_gmm_att_rej(msg, gmm_cause);
497}
Harald Welte9b455bf2010-03-14 15:45:01 +0800498
Harald Welte2720e732010-05-17 00:44:57 +0200499/* Chapter 9.4.6.2 Detach accept */
Harald Weltecd4dd4d2010-05-18 17:20:49 +0200500static int gsm48_tx_gmm_det_ack(struct sgsn_mm_ctx *mm, uint8_t force_stby)
Harald Welte2720e732010-05-17 00:44:57 +0200501{
502 struct msgb *msg = gsm48_msgb_alloc();
503 struct gsm48_hdr *gh;
504
Daniel Willmann46553142014-09-03 17:46:44 +0200505 LOGMMCTXP(LOGL_INFO, mm, "<- GPRS DETACH ACCEPT\n");
Harald Welte2720e732010-05-17 00:44:57 +0200506
Harald Welte6463c072010-05-18 17:04:55 +0200507 mmctx2msgid(msg, mm);
508
Harald Welte2720e732010-05-17 00:44:57 +0200509 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh) + 1);
510 gh->proto_discr = GSM48_PDISC_MM_GPRS;
511 gh->msg_type = GSM48_MT_GMM_DETACH_ACK;
512 gh->data[0] = force_stby;
513
Harald Welte56a01452010-05-31 22:12:30 +0200514 return gsm48_gmm_sendmsg(msg, 0, mm);
Harald Welte2720e732010-05-17 00:44:57 +0200515}
516
Harald Welte9b455bf2010-03-14 15:45:01 +0800517/* Transmit Chapter 9.4.12 Identity Request */
Harald Welte6463c072010-05-18 17:04:55 +0200518static int gsm48_tx_gmm_id_req(struct sgsn_mm_ctx *mm, uint8_t id_type)
Harald Welte9b455bf2010-03-14 15:45:01 +0800519{
520 struct msgb *msg = gsm48_msgb_alloc();
521 struct gsm48_hdr *gh;
522
Daniel Willmann46553142014-09-03 17:46:44 +0200523 LOGMMCTXP(LOGL_DEBUG, mm, "<- GPRS IDENTITY REQUEST: mi_type=%02x\n", id_type);
Harald Welte9b455bf2010-03-14 15:45:01 +0800524
Harald Welte6463c072010-05-18 17:04:55 +0200525 mmctx2msgid(msg, mm);
Harald Welte9b455bf2010-03-14 15:45:01 +0800526
527 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh) + 1);
528 gh->proto_discr = GSM48_PDISC_MM_GPRS;
529 gh->msg_type = GSM48_MT_GMM_ID_REQ;
530 /* 10.5.5.9 ID type 2 + identity type and 10.5.5.7 'force to standby' IE */
531 gh->data[0] = id_type & 0xf;
532
Harald Weltedce12552010-05-31 22:31:04 +0200533 return gsm48_gmm_sendmsg(msg, 1, mm);
Harald Welte9b455bf2010-03-14 15:45:01 +0800534}
535
Holger Hans Peter Freyther1768a572014-04-04 12:40:34 +0200536#if 0
Harald Welte4b6ac1e2010-07-03 11:09:06 +0200537/* Section 9.4.9: Authentication and Ciphering Request */
538static int gsm48_tx_gmm_auth_ciph_req(struct sgsn_mm_ctx *mm, uint8_t *rand,
539 uint8_t key_seq, uint8_t algo)
540{
541 struct msgb *msg = gsm48_msgb_alloc();
542 struct gsm48_hdr *gh;
543 struct gsm48_auth_ciph_req *acreq;
544 uint8_t *m_rand, *m_cksn;
545
Daniel Willmann46553142014-09-03 17:46:44 +0200546 LOGMMCTXP(LOGL_INFO, mm, "<- GPRS AUTH AND CIPHERING REQ (rand = %s)\n",
Pablo Neira Ayusoc0d17f22011-05-07 12:12:48 +0200547 osmo_hexdump(rand, 16));
Harald Welte4b6ac1e2010-07-03 11:09:06 +0200548
549 mmctx2msgid(msg, mm);
550
551 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
552 gh->proto_discr = GSM48_PDISC_MM_GPRS;
553 gh->msg_type = GSM48_MT_GMM_AUTH_CIPH_REQ;
554
555 acreq = (struct gsm48_auth_ciph_req *) msgb_put(msg, sizeof(*acreq));
556 acreq->ciph_alg = algo & 0xf;
557 acreq->imeisv_req = 0x1;
558 acreq->force_stby = 0x0;
559 acreq->ac_ref_nr = 0x0; /* FIXME: increment this? */
560
561 /* Only if authentication is requested we need to set RAND + CKSN */
562 if (rand) {
563 m_rand = msgb_put(msg, 16+1);
564 m_rand[0] = GSM48_IE_GMM_AUTH_RAND;
565 memcpy(m_rand+1, rand, 16);
566
567 m_cksn = msgb_put(msg, 1+1);
568 m_cksn[0] = GSM48_IE_GMM_CIPH_CKSN;
569 m_cksn[1] = key_seq;
570 }
571
572 /* Start T3360 */
573 mmctx_timer_start(mm, 3360, GSM0408_T3360_SECS);
574
575 /* FIXME: make sure we don't send any other messages to the MS */
576
577 return gsm48_gmm_sendmsg(msg, 1, mm);
578}
579
580/* Section 9.4.11: Authentication and Ciphering Reject */
581static int gsm48_tx_gmm_auth_ciph_rej(struct sgsn_mm_ctx *mm)
582{
583 struct msgb *msg = gsm48_msgb_alloc();
584 struct gsm48_hdr *gh;
585
Daniel Willmann46553142014-09-03 17:46:44 +0200586 LOGMMCTXP(LOGL_NOTICE, mm, "<- GPRS AUTH AND CIPH REJECT\n");
Harald Welte4b6ac1e2010-07-03 11:09:06 +0200587
588 mmctx2msgid(msg, mm);
589
590 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
591 gh->proto_discr = GSM48_PDISC_MM_GPRS;
592 gh->msg_type = GSM48_MT_GMM_AUTH_CIPH_REJ;
593
594 return gsm48_gmm_sendmsg(msg, 0, mm);
595}
Holger Hans Peter Freyther1768a572014-04-04 12:40:34 +0200596#endif
Harald Welte4b6ac1e2010-07-03 11:09:06 +0200597
598/* Section 9.4.10: Authentication and Ciphering Response */
599static int gsm48_rx_gmm_auth_ciph_resp(struct sgsn_mm_ctx *ctx,
600 struct msgb *msg)
601{
602 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_gmmh(msg);
603 struct gsm48_auth_ciph_resp *acr = (struct gsm48_auth_ciph_resp *)gh->data;
604 struct tlv_parsed tp;
Harald Welte4b6ac1e2010-07-03 11:09:06 +0200605
606 /* FIXME: Stop T3360 */
607
Holger Hans Peter Freyther1768a572014-04-04 12:40:34 +0200608 tlv_parse(&tp, &gsm48_gmm_att_tlvdef, acr->data,
Harald Welte4b6ac1e2010-07-03 11:09:06 +0200609 (msg->data + msg->len) - acr->data, 0, 0);
610
611 /* FIXME: compare ac_ref? */
612
613 if (!TLVP_PRESENT(&tp, GSM48_IE_GMM_AUTH_SRES) ||
614 !TLVP_PRESENT(&tp, GSM48_IE_GMM_IMEISV)) {
615 /* FIXME: missing mandatory IE */
616 }
617
618 /* FIXME: compare SRES with what we expected */
619 /* FIXME: enable LLC cipheirng */
620 return 0;
621}
622
Harald Welte9b455bf2010-03-14 15:45:01 +0800623/* Check if we can already authorize a subscriber */
Harald Weltec2e8cc42010-05-31 20:23:38 +0200624static int gsm48_gmm_authorize(struct sgsn_mm_ctx *ctx,
625 enum gprs_t3350_mode t3350_mode)
Harald Welte9b455bf2010-03-14 15:45:01 +0800626{
627 if (strlen(ctx->imei) && strlen(ctx->imsi)) {
Harald Weltec2e8cc42010-05-31 20:23:38 +0200628#ifdef PTMSI_ALLOC
Jacob Erlbeckfb26c602014-10-22 12:20:26 +0200629 ctx->t3370_id_type = GSM_MI_TYPE_NONE;
630
Harald Weltec2e8cc42010-05-31 20:23:38 +0200631 /* Start T3350 and re-transmit up to 5 times until ATTACH COMPLETE */
632 ctx->t3350_mode = t3350_mode;
633 mmctx_timer_start(ctx, 3350, GSM0408_T3350_SECS);
634#endif
Harald Welte9b455bf2010-03-14 15:45:01 +0800635 ctx->mm_state = GMM_REGISTERED_NORMAL;
Harald Welte6463c072010-05-18 17:04:55 +0200636 return gsm48_tx_gmm_att_ack(ctx);
Harald Welte9b455bf2010-03-14 15:45:01 +0800637 }
Harald Weltec2e8cc42010-05-31 20:23:38 +0200638 if (!strlen(ctx->imei)) {
639 ctx->mm_state = GMM_COMMON_PROC_INIT;
640 ctx->t3370_id_type = GSM_MI_TYPE_IMEI;
641 mmctx_timer_start(ctx, 3370, GSM0408_T3370_SECS);
Harald Welte6463c072010-05-18 17:04:55 +0200642 return gsm48_tx_gmm_id_req(ctx, GSM_MI_TYPE_IMEI);
Harald Weltec2e8cc42010-05-31 20:23:38 +0200643 }
Harald Welte9b455bf2010-03-14 15:45:01 +0800644
Harald Weltec2e8cc42010-05-31 20:23:38 +0200645 if (!strlen(ctx->imsi)) {
646 ctx->mm_state = GMM_COMMON_PROC_INIT;
647 ctx->t3370_id_type = GSM_MI_TYPE_IMSI;
648 mmctx_timer_start(ctx, 3370, GSM0408_T3370_SECS);
Harald Welte6463c072010-05-18 17:04:55 +0200649 return gsm48_tx_gmm_id_req(ctx, GSM_MI_TYPE_IMSI);
Harald Weltec2e8cc42010-05-31 20:23:38 +0200650 }
Harald Welte9b455bf2010-03-14 15:45:01 +0800651
652 return 0;
653}
654
655/* Parse Chapter 9.4.13 Identity Response */
Harald Welted193cb32010-05-17 22:58:03 +0200656static int gsm48_rx_gmm_id_resp(struct sgsn_mm_ctx *ctx, struct msgb *msg)
Harald Welte9b455bf2010-03-14 15:45:01 +0800657{
Harald Welte943c5bc2010-04-30 16:33:12 +0200658 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_gmmh(msg);
Harald Welteeaa614c2010-05-02 11:26:34 +0200659 uint8_t mi_type = gh->data[1] & GSM_MI_TYPE_MASK;
Harald Welte9b455bf2010-03-14 15:45:01 +0800660 char mi_string[GSM48_MI_SIZE];
Harald Welte9b455bf2010-03-14 15:45:01 +0800661
662 gsm48_mi_to_string(mi_string, sizeof(mi_string), &gh->data[1], gh->data[0]);
Harald Welte9b455bf2010-03-14 15:45:01 +0800663 if (!ctx) {
Daniel Willmann46553142014-09-03 17:46:44 +0200664 DEBUGP(DMM, "from unknown TLLI 0x%08x?!? This should not happen\n", msgb_tlli(msg));
Harald Welte9b455bf2010-03-14 15:45:01 +0800665 return -EINVAL;
666 }
667
Daniel Willmannf8070f42014-09-23 18:48:44 +0200668 LOGMMCTXP(LOGL_DEBUG, ctx, "-> GMM IDENTITY RESPONSE: mi_type=0x%02x MI(%s)\n",
669 mi_type, mi_string);
670
Jacob Erlbeckfb26c602014-10-22 12:20:26 +0200671 if (ctx->t3370_id_type == GSM_MI_TYPE_NONE) {
672 LOGMMCTXP(LOGL_NOTICE, ctx,
673 "Got unexpected IDENTITY RESPONSE: mi_type=0x%02x MI(%s), "
674 "ignoring message\n",
675 mi_type, mi_string);
676 return -EINVAL;
677 }
678
Harald Weltec2e8cc42010-05-31 20:23:38 +0200679 if (mi_type == ctx->t3370_id_type)
680 mmctx_timer_stop(ctx, 3370);
681
Harald Welte9b455bf2010-03-14 15:45:01 +0800682 switch (mi_type) {
683 case GSM_MI_TYPE_IMSI:
684 /* we already have a mm context with current TLLI, but no
685 * P-TMSI / IMSI yet. What we now need to do is to fill
686 * this initial context with data from the HLR */
Harald Weltec728eea2010-12-24 23:07:18 +0100687 if (strlen(ctx->imsi) == 0) {
688 /* Check if we already have a MM context for this IMSI */
689 struct sgsn_mm_ctx *ictx;
690 ictx = sgsn_mm_ctx_by_imsi(mi_string);
691 if (ictx) {
Jacob Erlbeck99985b52014-10-13 10:32:00 +0200692 /* Handle it like in gsm48_rx_gmm_det_req,
693 * except that no messages are sent to the BSS */
694
Daniel Willmann46553142014-09-03 17:46:44 +0200695 LOGMMCTXP(LOGL_NOTICE, ctx, "Deleting old MM Context for same IMSI "
696 "p_tmsi_old=0x%08x\n",
697 ictx->p_tmsi);
Jacob Erlbeck99985b52014-10-13 10:32:00 +0200698
699 ictx->mm_state = GMM_DEREGISTERED;
700
701 mm_ctx_cleanup_free(ictx, "GPRS IMSI re-use");
Harald Weltec728eea2010-12-24 23:07:18 +0100702 }
703 }
Jacob Erlbeckfd636ae2014-07-08 09:49:07 +0200704 strncpy(ctx->imsi, mi_string, sizeof(ctx->imsi));
Harald Welte9b455bf2010-03-14 15:45:01 +0800705 break;
706 case GSM_MI_TYPE_IMEI:
707 strncpy(ctx->imei, mi_string, sizeof(ctx->imei));
708 break;
709 case GSM_MI_TYPE_IMEISV:
710 break;
711 }
712
Harald Welte9b455bf2010-03-14 15:45:01 +0800713 /* Check if we can let the mobile station enter */
Harald Weltec2e8cc42010-05-31 20:23:38 +0200714 return gsm48_gmm_authorize(ctx, ctx->t3350_mode);
Harald Welte9b455bf2010-03-14 15:45:01 +0800715}
716
717/* Section 9.4.1 Attach request */
Harald Welte807a5d82010-06-01 11:53:01 +0200718static int gsm48_rx_gmm_att_req(struct sgsn_mm_ctx *ctx, struct msgb *msg,
719 struct gprs_llc_llme *llme)
Harald Welte9b455bf2010-03-14 15:45:01 +0800720{
Harald Welte943c5bc2010-04-30 16:33:12 +0200721 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_gmmh(msg);
Holger Hans Peter Freyther1768a572014-04-04 12:40:34 +0200722 uint8_t *cur = gh->data, *msnc, *mi, *ms_ra_acc_cap;
Harald Welte56a01452010-05-31 22:12:30 +0200723 uint8_t msnc_len, att_type, mi_len, mi_type, ms_ra_acc_cap_len;
Harald Welteeaa614c2010-05-02 11:26:34 +0200724 uint16_t drx_par;
725 uint32_t tmsi;
Harald Welte9b455bf2010-03-14 15:45:01 +0800726 char mi_string[GSM48_MI_SIZE];
727 struct gprs_ra_id ra_id;
Harald Welte9f1f3ad2010-05-02 12:56:57 +0200728 uint16_t cid;
Harald Welte9b455bf2010-03-14 15:45:01 +0800729
Daniel Willmann46553142014-09-03 17:46:44 +0200730 LOGP(DMM, LOGL_INFO, "-> GMM ATTACH REQUEST ");
Harald Welte9b455bf2010-03-14 15:45:01 +0800731
732 /* As per TS 04.08 Chapter 4.7.1.4, the attach request arrives either
733 * with a foreign TLLI (P-TMSI that was allocated to the MS before),
734 * or with random TLLI. */
735
Harald Welte9f1f3ad2010-05-02 12:56:57 +0200736 cid = bssgp_parse_cell_id(&ra_id, msgb_bcid(msg));
Harald Welte9b455bf2010-03-14 15:45:01 +0800737
738 /* MS network capability 10.5.5.12 */
739 msnc_len = *cur++;
740 msnc = cur;
Alexander Chemeris84402c02013-07-03 10:12:23 +0400741 if (msnc_len > sizeof(ctx->ms_network_capa.buf))
Harald Welte9b455bf2010-03-14 15:45:01 +0800742 goto err_inval;
743 cur += msnc_len;
744
745 /* aTTACH Type 10.5.5.2 */
746 att_type = *cur++ & 0x0f;
747
748 /* DRX parameter 10.5.5.6 */
Harald Welte56a01452010-05-31 22:12:30 +0200749 drx_par = *cur++ << 8;
750 drx_par |= *cur++;
Harald Welte9b455bf2010-03-14 15:45:01 +0800751
752 /* Mobile Identity (P-TMSI or IMSI) 10.5.1.4 */
753 mi_len = *cur++;
754 mi = cur;
755 if (mi_len > 8)
756 goto err_inval;
757 mi_type = *mi & GSM_MI_TYPE_MASK;
758 cur += mi_len;
759
760 gsm48_mi_to_string(mi_string, sizeof(mi_string), mi, mi_len);
761
Harald Welte2720e732010-05-17 00:44:57 +0200762 DEBUGPC(DMM, "MI(%s) type=\"%s\" ", mi_string,
763 get_value_string(gprs_att_t_strs, att_type));
Harald Welte9b455bf2010-03-14 15:45:01 +0800764
Holger Hans Peter Freyther1768a572014-04-04 12:40:34 +0200765 /* Old routing area identification 10.5.5.15. Skip it */
Harald Welte9b455bf2010-03-14 15:45:01 +0800766 cur += 6;
767
768 /* MS Radio Access Capability 10.5.5.12a */
Harald Welte56a01452010-05-31 22:12:30 +0200769 ms_ra_acc_cap_len = *cur++;
770 ms_ra_acc_cap = cur;
Alexander Chemeris84402c02013-07-03 10:12:23 +0400771 if (ms_ra_acc_cap_len > sizeof(ctx->ms_radio_access_capa.buf))
Harald Weltec48ac472010-07-03 21:20:06 +0200772 goto err_inval;
Harald Welte4b2ed352011-07-27 23:35:38 +0200773 cur += ms_ra_acc_cap_len;
Harald Welte9b455bf2010-03-14 15:45:01 +0800774
Daniel Willmann46553142014-09-03 17:46:44 +0200775 LOGPC(DMM, LOGL_INFO, "\n");
776
Harald Welte9b455bf2010-03-14 15:45:01 +0800777 /* Optional: Old P-TMSI Signature, Requested READY timer, TMSI Status */
778
779 switch (mi_type) {
780 case GSM_MI_TYPE_IMSI:
781 /* Try to find MM context based on IMSI */
Harald Welte807a5d82010-06-01 11:53:01 +0200782 if (!ctx)
783 ctx = sgsn_mm_ctx_by_imsi(mi_string);
Harald Welte9b455bf2010-03-14 15:45:01 +0800784 if (!ctx) {
785#if 0
786 return gsm48_tx_gmm_att_rej(msg, GMM_CAUSE_IMSI_UNKNOWN);
787#else
Harald Welteeafe22c2010-12-24 15:39:08 +0100788 /* As a temorary hack, we simply assume that the IMSI exists,
789 * as long as it is part of 'our' network */
790 char mccmnc[16];
791 snprintf(mccmnc, sizeof(mccmnc), "%03d%02d", ra_id.mcc, ra_id.mnc);
Harald Welte7f6da482013-03-19 11:00:13 +0100792 if (strncmp(mccmnc, mi_string, 5) &&
Harald Welte3dfb5492013-03-19 11:48:54 +0100793 (sgsn->cfg.acl_enabled &&
794 !sgsn_acl_lookup(mi_string))) {
Daniel Willmann46553142014-09-03 17:46:44 +0200795 LOGP(DMM, LOGL_NOTICE, "Rejecting ATTACH REQUEST IMSI=%s\n",
Harald Welteeafe22c2010-12-24 15:39:08 +0100796 mi_string);
797 return gsm48_tx_gmm_att_rej_oldmsg(msg,
798 GMM_CAUSE_GPRS_NOTALLOWED);
799 }
Harald Welte9b455bf2010-03-14 15:45:01 +0800800 ctx = sgsn_mm_ctx_alloc(0, &ra_id);
801 if (!ctx)
Harald Welte6463c072010-05-18 17:04:55 +0200802 return gsm48_tx_gmm_att_rej_oldmsg(msg, GMM_CAUSE_NET_FAIL);
Harald Welte9b455bf2010-03-14 15:45:01 +0800803 strncpy(ctx->imsi, mi_string, sizeof(ctx->imsi));
804#endif
805 }
Harald Welte943c5bc2010-04-30 16:33:12 +0200806 ctx->tlli = msgb_tlli(msg);
Harald Welte807a5d82010-06-01 11:53:01 +0200807 ctx->llme = llme;
Harald Welte68b99a42010-05-18 12:05:42 +0200808 msgid2mmctx(ctx, msg);
Harald Welte9b455bf2010-03-14 15:45:01 +0800809 break;
810 case GSM_MI_TYPE_TMSI:
Harald Welteab1d5622010-05-18 19:58:38 +0200811 memcpy(&tmsi, mi+1, 4);
812 tmsi = ntohl(tmsi);
Harald Welte9b455bf2010-03-14 15:45:01 +0800813 /* Try to find MM context based on P-TMSI */
Harald Welte807a5d82010-06-01 11:53:01 +0200814 if (!ctx)
815 ctx = sgsn_mm_ctx_by_ptmsi(tmsi);
Harald Welte9b455bf2010-03-14 15:45:01 +0800816 if (!ctx) {
Harald Weltec728eea2010-12-24 23:07:18 +0100817 /* Allocate a context as most of our code expects one.
818 * Context will not have an IMSI ultil ID RESP is received */
Harald Welte943c5bc2010-04-30 16:33:12 +0200819 ctx = sgsn_mm_ctx_alloc(msgb_tlli(msg), &ra_id);
Harald Welte807a5d82010-06-01 11:53:01 +0200820 ctx->p_tmsi = tmsi;
Harald Welte9b455bf2010-03-14 15:45:01 +0800821 }
Harald Welte807a5d82010-06-01 11:53:01 +0200822 ctx->tlli = msgb_tlli(msg);
823 ctx->llme = llme;
824 msgid2mmctx(ctx, msg);
Harald Welte9b455bf2010-03-14 15:45:01 +0800825 break;
826 default:
Harald Weltec2e8cc42010-05-31 20:23:38 +0200827 LOGP(DMM, LOGL_NOTICE, "Rejecting ATTACH REQUEST with "
828 "MI type %u\n", mi_type);
829 return gsm48_tx_gmm_att_rej_oldmsg(msg, GMM_CAUSE_MS_ID_NOT_DERIVED);
Harald Welte9b455bf2010-03-14 15:45:01 +0800830 }
Harald Welte9f1f3ad2010-05-02 12:56:57 +0200831 /* Update MM Context with currient RA and Cell ID */
832 ctx->ra = ra_id;
833 ctx->cell_id = cid;
Harald Welte56a01452010-05-31 22:12:30 +0200834 /* Update MM Context with other data */
835 ctx->drx_parms = drx_par;
Alexander Chemeris84402c02013-07-03 10:12:23 +0400836 ctx->ms_radio_access_capa.len = ms_ra_acc_cap_len;
Harald Welte4b2ed352011-07-27 23:35:38 +0200837 memcpy(ctx->ms_radio_access_capa.buf, ms_ra_acc_cap,
838 ctx->ms_radio_access_capa.len);
Harald Welte56a01452010-05-31 22:12:30 +0200839 ctx->ms_network_capa.len = msnc_len;
840 memcpy(ctx->ms_network_capa.buf, msnc, msnc_len);
841
Harald Weltec2e8cc42010-05-31 20:23:38 +0200842#ifdef PTMSI_ALLOC
Harald Welte807a5d82010-06-01 11:53:01 +0200843 /* Allocate a new P-TMSI (+ P-TMSI signature) and update TLLI */
Harald Weltec2e8cc42010-05-31 20:23:38 +0200844 ctx->p_tmsi_old = ctx->p_tmsi;
Harald Welte6463c072010-05-18 17:04:55 +0200845 ctx->p_tmsi = sgsn_alloc_ptmsi();
Harald Welteab1d5622010-05-18 19:58:38 +0200846#endif
Harald Welte807a5d82010-06-01 11:53:01 +0200847 /* Even if there is no P-TMSI allocated, the MS will switch from
848 * foreign TLLI to local TLLI */
849 ctx->tlli_new = gprs_tmsi2tlli(ctx->p_tmsi, TLLI_LOCAL);
850
851 /* Inform LLC layer about new TLLI but keep old active */
Harald Welted6f582b2010-06-30 23:18:57 +0200852 gprs_llgmm_assign(ctx->llme, ctx->tlli, ctx->tlli_new,
853 GPRS_ALGO_GEA0, NULL);
Harald Welte9b455bf2010-03-14 15:45:01 +0800854
Harald Weltef6b606f2011-07-16 13:45:57 +0200855 return gsm48_gmm_authorize(ctx, GMM_T3350_MODE_ATT);
Harald Welte9b455bf2010-03-14 15:45:01 +0800856
857err_inval:
Daniel Willmann46553142014-09-03 17:46:44 +0200858 LOGPC(DMM, LOGL_INFO, "\n");
Harald Welte6463c072010-05-18 17:04:55 +0200859 return gsm48_tx_gmm_att_rej_oldmsg(msg, GMM_CAUSE_SEM_INCORR_MSG);
Harald Welte9b455bf2010-03-14 15:45:01 +0800860}
861
Harald Welte2720e732010-05-17 00:44:57 +0200862/* Section 4.7.4.1 / 9.4.5.2 MO Detach request */
Harald Welted193cb32010-05-17 22:58:03 +0200863static int gsm48_rx_gmm_det_req(struct sgsn_mm_ctx *ctx, struct msgb *msg)
Harald Welte2720e732010-05-17 00:44:57 +0200864{
865 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_gmmh(msg);
Harald Welte2720e732010-05-17 00:44:57 +0200866 uint8_t detach_type, power_off;
Harald Weltebd5c9122010-06-28 22:18:53 +0200867 int rc;
Harald Welte2720e732010-05-17 00:44:57 +0200868
869 detach_type = gh->data[0] & 0x7;
870 power_off = gh->data[0] & 0x8;
871
872 /* FIXME: In 24.008 there is an optional P-TMSI and P-TMSI signature IE */
873
Daniel Willmann46553142014-09-03 17:46:44 +0200874 LOGMMCTXP(LOGL_INFO, ctx, "-> GMM DETACH REQUEST TLLI=0x%08x type=%s %s\n",
Harald Welte2720e732010-05-17 00:44:57 +0200875 msgb_tlli(msg), get_value_string(gprs_det_t_mo_strs, detach_type),
876 power_off ? "Power-off" : "");
877
Harald Welte2720e732010-05-17 00:44:57 +0200878 /* force_stby = 0 */
Harald Weltebd5c9122010-06-28 22:18:53 +0200879 rc = gsm48_tx_gmm_det_ack(ctx, 0);
880
Jacob Erlbeck99985b52014-10-13 10:32:00 +0200881 mm_ctx_cleanup_free(ctx, "GPRS DETACH REQUEST");
Jacob Erlbeck258ce3d2014-09-30 13:51:45 +0200882
Harald Weltebd5c9122010-06-28 22:18:53 +0200883 return rc;
Harald Welte2720e732010-05-17 00:44:57 +0200884}
885
Harald Welte9b455bf2010-03-14 15:45:01 +0800886/* Chapter 9.4.15: Routing area update accept */
Harald Welte6463c072010-05-18 17:04:55 +0200887static int gsm48_tx_gmm_ra_upd_ack(struct sgsn_mm_ctx *mm)
Harald Welte9b455bf2010-03-14 15:45:01 +0800888{
889 struct msgb *msg = gsm48_msgb_alloc();
890 struct gsm48_hdr *gh;
891 struct gsm48_ra_upd_ack *rua;
Harald Weltec2e8cc42010-05-31 20:23:38 +0200892 uint8_t *mid;
Harald Welte9b455bf2010-03-14 15:45:01 +0800893
Daniel Willmann46553142014-09-03 17:46:44 +0200894 LOGMMCTXP(LOGL_INFO, mm, "<- ROUTING AREA UPDATE ACCEPT\n");
Harald Welte9b455bf2010-03-14 15:45:01 +0800895
Harald Welte6463c072010-05-18 17:04:55 +0200896 mmctx2msgid(msg, mm);
Harald Welte9b455bf2010-03-14 15:45:01 +0800897
898 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
899 gh->proto_discr = GSM48_PDISC_MM_GPRS;
900 gh->msg_type = GSM48_MT_GMM_RA_UPD_ACK;
901
902 rua = (struct gsm48_ra_upd_ack *) msgb_put(msg, sizeof(*rua));
903 rua->force_stby = 0; /* not indicated */
904 rua->upd_result = 0; /* RA updated */
905 rua->ra_upd_timer = GPRS_TMR_MINUTE | 10;
Harald Welte11d7c102010-05-02 11:54:55 +0200906
Harald Welte6463c072010-05-18 17:04:55 +0200907 gsm48_construct_ra(rua->ra_id.digits, &mm->ra);
Harald Welte9b455bf2010-03-14 15:45:01 +0800908
Harald Weltec2e8cc42010-05-31 20:23:38 +0200909#if 0
910 /* Optional: P-TMSI signature */
911 msgb_v_put(msg, GSM48_IE_GMM_PTMSI_SIG);
912 ptsig = msgb_put(msg, 3);
913 ptsig[0] = mm->p_tmsi_sig >> 16;
914 ptsig[1] = mm->p_tmsi_sig >> 8;
915 ptsig[2] = mm->p_tmsi_sig & 0xff;
916#endif
917
918#ifdef PTMSI_ALLOC
919 /* Optional: Allocated P-TMSI */
920 mid = msgb_put(msg, GSM48_MID_TMSI_LEN);
921 gsm48_generate_mid_from_tmsi(mid, mm->p_tmsi);
922 mid[0] = GSM48_IE_GMM_ALLOC_PTMSI;
923#endif
924
925 /* Option: MS ID, ... */
Harald Welte56a01452010-05-31 22:12:30 +0200926 return gsm48_gmm_sendmsg(msg, 0, mm);
Harald Welte9b455bf2010-03-14 15:45:01 +0800927}
928
929/* Chapter 9.4.17: Routing area update reject */
Harald Welteeaa614c2010-05-02 11:26:34 +0200930static int gsm48_tx_gmm_ra_upd_rej(struct msgb *old_msg, uint8_t cause)
Harald Welte9b455bf2010-03-14 15:45:01 +0800931{
932 struct msgb *msg = gsm48_msgb_alloc();
933 struct gsm48_hdr *gh;
934
Daniel Willmann46553142014-09-03 17:46:44 +0200935 LOGP(DMM, LOGL_NOTICE, "<- ROUTING AREA UPDATE REJECT\n");
Harald Welte9b455bf2010-03-14 15:45:01 +0800936
Harald Welte11d7c102010-05-02 11:54:55 +0200937 gmm_copy_id(msg, old_msg);
Harald Welte9b455bf2010-03-14 15:45:01 +0800938
939 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh) + 2);
940 gh->proto_discr = GSM48_PDISC_MM_GPRS;
941 gh->msg_type = GSM48_MT_GMM_RA_UPD_REJ;
942 gh->data[0] = cause;
943 gh->data[1] = 0; /* ? */
944
945 /* Option: P-TMSI signature, allocated P-TMSI, MS ID, ... */
Harald Welte8acd88f2010-05-18 10:57:45 +0200946 return gsm48_gmm_sendmsg(msg, 0, NULL);
Harald Welte9b455bf2010-03-14 15:45:01 +0800947}
948
Harald Welte588d44e2010-06-09 10:28:29 +0200949static void process_ms_ctx_status(struct sgsn_mm_ctx *mmctx,
Holger Hans Peter Freyther2b174542011-10-14 23:31:34 +0200950 const uint8_t *pdp_status)
Harald Welte588d44e2010-06-09 10:28:29 +0200951{
952 struct sgsn_pdp_ctx *pdp, *pdp2;
953 /* 24.008 4.7.5.1.3: If the PDP context status information element is
954 * included in ROUTING AREA UPDATE REQUEST message, then the network
955 * shall deactivate all those PDP contexts locally (without peer to
956 * peer signalling between the MS and the network), which are not in SM
957 * state PDP-INACTIVE on network side but are indicated by the MS as
958 * being in state PDP-INACTIVE. */
959
960 llist_for_each_entry_safe(pdp, pdp2, &mmctx->pdp_list, list) {
Harald Weltecdf76cf2011-08-05 21:23:46 +0200961 if (pdp->nsapi < 8) {
962 if (!(pdp_status[0] & (1 << pdp->nsapi))) {
Daniel Willmann46553142014-09-03 17:46:44 +0200963 LOGMMCTXP(LOGL_NOTICE, mmctx, "Dropping PDP context for NSAPI=%u "
Harald Weltecdf76cf2011-08-05 21:23:46 +0200964 "due to PDP CTX STATUS IE= 0x%02x%02x\n",
965 pdp->nsapi, pdp_status[1], pdp_status[0]);
966 sgsn_delete_pdp_ctx(pdp);
967 }
968 } else {
969 if (!(pdp_status[1] & (1 << (pdp->nsapi - 8)))) {
Daniel Willmann46553142014-09-03 17:46:44 +0200970 LOGMMCTXP(LOGL_NOTICE, mmctx, "Dropping PDP context for NSAPI=%u "
Harald Weltecdf76cf2011-08-05 21:23:46 +0200971 "due to PDP CTX STATUS IE= 0x%02x%02x\n",
972 pdp->nsapi, pdp_status[1], pdp_status[0]);
973 sgsn_delete_pdp_ctx(pdp);
974 }
Harald Welte588d44e2010-06-09 10:28:29 +0200975 }
976 }
977}
978
Harald Welte9b455bf2010-03-14 15:45:01 +0800979/* Chapter 9.4.14: Routing area update request */
Harald Welte807a5d82010-06-01 11:53:01 +0200980static int gsm48_rx_gmm_ra_upd_req(struct sgsn_mm_ctx *mmctx, struct msgb *msg,
981 struct gprs_llc_llme *llme)
Harald Welte9b455bf2010-03-14 15:45:01 +0800982{
Harald Welte943c5bc2010-04-30 16:33:12 +0200983 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_gmmh(msg);
Harald Welteeaa614c2010-05-02 11:26:34 +0200984 uint8_t *cur = gh->data;
Harald Welte588d44e2010-06-09 10:28:29 +0200985 uint8_t ms_ra_acc_cap_len;
Harald Welte9b455bf2010-03-14 15:45:01 +0800986 struct gprs_ra_id old_ra_id;
Harald Welte588d44e2010-06-09 10:28:29 +0200987 struct tlv_parsed tp;
Harald Welteeaa614c2010-05-02 11:26:34 +0200988 uint8_t upd_type;
Harald Welte9b455bf2010-03-14 15:45:01 +0800989
990 /* Update Type 10.5.5.18 */
991 upd_type = *cur++ & 0x0f;
992
Daniel Willmann46553142014-09-03 17:46:44 +0200993 LOGP(DMM, LOGL_INFO, "-> GMM RA UPDATE REQUEST type=\"%s\"\n",
Harald Welte2720e732010-05-17 00:44:57 +0200994 get_value_string(gprs_upd_t_strs, upd_type));
Harald Welte9b455bf2010-03-14 15:45:01 +0800995
996 /* Old routing area identification 10.5.5.15 */
997 gsm48_parse_ra(&old_ra_id, cur);
998 cur += 6;
999
1000 /* MS Radio Access Capability 10.5.5.12a */
Harald Welte588d44e2010-06-09 10:28:29 +02001001 ms_ra_acc_cap_len = *cur++;
Harald Welte4b2ed352011-07-27 23:35:38 +02001002 if (ms_ra_acc_cap_len > 52)
1003 return gsm48_tx_gmm_ra_upd_rej(msg, GMM_CAUSE_PROTO_ERR_UNSPEC);
1004 cur += ms_ra_acc_cap_len;
Harald Welte9b455bf2010-03-14 15:45:01 +08001005
1006 /* Optional: Old P-TMSI Signature, Requested READY timer, TMSI Status,
1007 * DRX parameter, MS network capability */
Holger Hans Peter Freyther1768a572014-04-04 12:40:34 +02001008 tlv_parse(&tp, &gsm48_gmm_att_tlvdef, cur,
Harald Welte588d44e2010-06-09 10:28:29 +02001009 (msg->data + msg->len) - cur, 0, 0);
Harald Welte9b455bf2010-03-14 15:45:01 +08001010
1011 switch (upd_type) {
1012 case GPRS_UPD_T_RA_LA:
1013 case GPRS_UPD_T_RA_LA_IMSI_ATT:
Daniel Willmann46553142014-09-03 17:46:44 +02001014 LOGP(DMM, LOGL_NOTICE, "Update type %i unsupported in Mode III, is your SI13 corrupt?\n", upd_type);
Harald Welte9b455bf2010-03-14 15:45:01 +08001015 return gsm48_tx_gmm_ra_upd_rej(msg, GMM_CAUSE_PROTO_ERR_UNSPEC);
1016 break;
1017 case GPRS_UPD_T_RA:
1018 case GPRS_UPD_T_PERIODIC:
1019 break;
1020 }
1021
1022 /* Look-up the MM context based on old RA-ID and TLLI */
Harald Weltef6bd3402010-12-23 23:34:43 +01001023 mmctx = sgsn_mm_ctx_by_tlli(msgb_tlli(msg), &old_ra_id);
Harald Welte9b455bf2010-03-14 15:45:01 +08001024 if (!mmctx || mmctx->mm_state == GMM_DEREGISTERED) {
Harald Welte2b697a62011-10-16 18:50:56 +02001025 /* send a XID reset to re-set all LLC sequence numbers
1026 * in the MS */
Daniel Willmann46553142014-09-03 17:46:44 +02001027 LOGP(DMM, LOGL_NOTICE, "LLC XID RESET\n");
Harald Welte2b697a62011-10-16 18:50:56 +02001028 gprs_llgmm_reset(llme);
Harald Welte9b455bf2010-03-14 15:45:01 +08001029 /* The MS has to perform GPRS attach */
Jacob Erlbeck78ecaf02014-09-05 14:32:36 +02001030 /* Device is still IMSI attached for CS but initiate GPRS ATTACH,
1031 * see GSM 04.08, 4.7.5.1.4 and G.6 */
1032 return gsm48_tx_gmm_ra_upd_rej(msg, GMM_CAUSE_IMPL_DETACHED);
Harald Welte9b455bf2010-03-14 15:45:01 +08001033 }
1034
Harald Weltef0901f02010-12-26 10:39:26 +01001035 /* Store new BVCI/NSEI in MM context (FIXME: delay until we ack?) */
1036 msgid2mmctx(mmctx, msg);
1037 /* Bump the statistics of received signalling msgs for this MM context */
1038 rate_ctr_inc(&mmctx->ctrg->ctr[GMM_CTR_PKTS_SIG_IN]);
1039
Harald Welte9f1f3ad2010-05-02 12:56:57 +02001040 /* Update the MM context with the new RA-ID */
1041 bssgp_parse_cell_id(&mmctx->ra, msgb_bcid(msg));
Harald Weltef0901f02010-12-26 10:39:26 +01001042 /* Update the MM context with the new (i.e. foreign) TLLI */
Harald Welte9f1f3ad2010-05-02 12:56:57 +02001043 mmctx->tlli = msgb_tlli(msg);
Harald Welte9b455bf2010-03-14 15:45:01 +08001044 /* FIXME: Update the MM context with the MS radio acc capabilities */
1045 /* FIXME: Update the MM context with the MS network capabilities */
1046
Harald Welte77289c22010-05-18 14:32:29 +02001047 rate_ctr_inc(&mmctx->ctrg->ctr[GMM_CTR_RA_UPDATE]);
1048
Harald Weltec2e8cc42010-05-31 20:23:38 +02001049#ifdef PTMSI_ALLOC
1050 mmctx->p_tmsi_old = mmctx->p_tmsi;
1051 mmctx->p_tmsi = sgsn_alloc_ptmsi();
1052 /* Start T3350 and re-transmit up to 5 times until ATTACH COMPLETE */
1053 mmctx->t3350_mode = GMM_T3350_MODE_RAU;
1054 mmctx_timer_start(mmctx, 3350, GSM0408_T3350_SECS);
1055#endif
Harald Welte807a5d82010-06-01 11:53:01 +02001056 /* Even if there is no P-TMSI allocated, the MS will switch from
1057 * foreign TLLI to local TLLI */
1058 mmctx->tlli_new = gprs_tmsi2tlli(mmctx->p_tmsi, TLLI_LOCAL);
Harald Weltec2e8cc42010-05-31 20:23:38 +02001059
Harald Welte807a5d82010-06-01 11:53:01 +02001060 /* Inform LLC layer about new TLLI but keep old active */
Harald Welted6f582b2010-06-30 23:18:57 +02001061 gprs_llgmm_assign(mmctx->llme, mmctx->tlli, mmctx->tlli_new,
1062 GPRS_ALGO_GEA0, NULL);
Harald Welte807a5d82010-06-01 11:53:01 +02001063
Harald Welte588d44e2010-06-09 10:28:29 +02001064 /* Look at PDP Context Status IE and see if MS's view of
1065 * activated/deactivated NSAPIs agrees with our view */
1066 if (TLVP_PRESENT(&tp, GSM48_IE_GMM_PDP_CTX_STATUS)) {
Holger Hans Peter Freyther2b174542011-10-14 23:31:34 +02001067 const uint8_t *pdp_status = TLVP_VAL(&tp, GSM48_IE_GMM_PDP_CTX_STATUS);
Harald Welte588d44e2010-06-09 10:28:29 +02001068 process_ms_ctx_status(mmctx, pdp_status);
1069 }
1070
Harald Welted4c6f8b2011-10-16 21:35:21 +02001071 /* Make sure we are NORMAL (i.e. not SUSPENDED anymore) */
1072 mmctx->mm_state = GMM_REGISTERED_NORMAL;
1073
Harald Welte807a5d82010-06-01 11:53:01 +02001074 /* Send RA UPDATE ACCEPT */
Harald Welte6463c072010-05-18 17:04:55 +02001075 return gsm48_tx_gmm_ra_upd_ack(mmctx);
Harald Welte9b455bf2010-03-14 15:45:01 +08001076}
1077
Harald Welted193cb32010-05-17 22:58:03 +02001078static int gsm48_rx_gmm_status(struct sgsn_mm_ctx *mmctx, struct msgb *msg)
Harald Welte9b455bf2010-03-14 15:45:01 +08001079{
1080 struct gsm48_hdr *gh = msgb_l3(msg);
1081
Daniel Willmann46553142014-09-03 17:46:44 +02001082 LOGMMCTXP(LOGL_INFO, mmctx, "-> GPRS MM STATUS (cause: %s)\n",
Harald Welte9b455bf2010-03-14 15:45:01 +08001083 get_value_string(gmm_cause_names, gh->data[0]));
1084
1085 return 0;
1086}
1087
1088/* GPRS Mobility Management */
Harald Welte807a5d82010-06-01 11:53:01 +02001089static int gsm0408_rcv_gmm(struct sgsn_mm_ctx *mmctx, struct msgb *msg,
1090 struct gprs_llc_llme *llme)
Harald Welte9b455bf2010-03-14 15:45:01 +08001091{
Harald Welte943c5bc2010-04-30 16:33:12 +02001092 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_gmmh(msg);
Harald Welte9b455bf2010-03-14 15:45:01 +08001093 int rc;
1094
Harald Welte807a5d82010-06-01 11:53:01 +02001095 /* MMCTX can be NULL when called */
1096
Harald Welted193cb32010-05-17 22:58:03 +02001097 if (!mmctx &&
1098 gh->msg_type != GSM48_MT_GMM_ATTACH_REQ &&
Harald Weltec2e8cc42010-05-31 20:23:38 +02001099 gh->msg_type != GSM48_MT_GMM_RA_UPD_REQ) {
Harald Welted193cb32010-05-17 22:58:03 +02001100 LOGP(DMM, LOGL_NOTICE, "Cannot handle GMM for unknown MM CTX\n");
Jacob Erlbeck78ecaf02014-09-05 14:32:36 +02001101 /* 4.7.10 */
1102 if (gh->msg_type == GSM48_MT_GMM_STATUS)
1103 return 0;
1104
Harald Welte2b697a62011-10-16 18:50:56 +02001105 gprs_llgmm_reset(llme);
Jacob Erlbeck78ecaf02014-09-05 14:32:36 +02001106
1107 /* Don't reply or establish a LLME on DETACH_ACK */
1108 if (gh->msg_type == GSM48_MT_GMM_DETACH_ACK) {
1109 /* TLLI unassignment */
1110 return gprs_llgmm_assign(llme, llme->tlli, 0xffffffff,
1111 GPRS_ALGO_GEA0, NULL);
1112 }
1113
1114 /* Don't force it into re-attachment */
1115 if (gh->msg_type == GSM48_MT_GMM_DETACH_REQ) {
1116 rc = gsm48_tx_gmm_detach_req_oldmsg(
1117 msg, GPRS_DET_T_MT_REATT_NOTREQ,
1118 GMM_CAUSE_IMPL_DETACHED);
1119
1120 /* TLLI unassignment */
1121 gprs_llgmm_assign(llme, llme->tlli, 0xffffffff,
1122 GPRS_ALGO_GEA0, NULL);
1123 return rc;
1124 }
1125
1126 /* Force the MS to re-attach */
1127 return sgsn_force_reattach_oldmsg(msg);
Harald Welted193cb32010-05-17 22:58:03 +02001128 }
1129
Harald Welte9b455bf2010-03-14 15:45:01 +08001130 switch (gh->msg_type) {
1131 case GSM48_MT_GMM_RA_UPD_REQ:
Harald Welte807a5d82010-06-01 11:53:01 +02001132 rc = gsm48_rx_gmm_ra_upd_req(mmctx, msg, llme);
Harald Welte9b455bf2010-03-14 15:45:01 +08001133 break;
1134 case GSM48_MT_GMM_ATTACH_REQ:
Harald Welte807a5d82010-06-01 11:53:01 +02001135 rc = gsm48_rx_gmm_att_req(mmctx, msg, llme);
Harald Welte9b455bf2010-03-14 15:45:01 +08001136 break;
Daniel Willmann46553142014-09-03 17:46:44 +02001137 /* For all the following types mmctx can not be NULL */
Harald Welte9b455bf2010-03-14 15:45:01 +08001138 case GSM48_MT_GMM_ID_RESP:
Harald Welted193cb32010-05-17 22:58:03 +02001139 rc = gsm48_rx_gmm_id_resp(mmctx, msg);
Harald Welte9b455bf2010-03-14 15:45:01 +08001140 break;
1141 case GSM48_MT_GMM_STATUS:
Harald Welted193cb32010-05-17 22:58:03 +02001142 rc = gsm48_rx_gmm_status(mmctx, msg);
Harald Welte9b455bf2010-03-14 15:45:01 +08001143 break;
Harald Welte2720e732010-05-17 00:44:57 +02001144 case GSM48_MT_GMM_DETACH_REQ:
Harald Welted193cb32010-05-17 22:58:03 +02001145 rc = gsm48_rx_gmm_det_req(mmctx, msg);
Harald Welte2720e732010-05-17 00:44:57 +02001146 break;
Jacob Erlbeck78ecaf02014-09-05 14:32:36 +02001147 case GSM48_MT_GMM_DETACH_ACK:
1148 LOGMMCTXP(LOGL_INFO, mmctx, "-> DETACH ACK\n");
1149 mm_ctx_cleanup_free(mmctx, "GPRS DETACH ACK");
1150 rc = 0;
1151 break;
Harald Welte9b455bf2010-03-14 15:45:01 +08001152 case GSM48_MT_GMM_ATTACH_COMPL:
1153 /* only in case SGSN offered new P-TMSI */
Daniel Willmann46553142014-09-03 17:46:44 +02001154 LOGMMCTXP(LOGL_INFO, mmctx, "-> ATTACH COMPLETE\n");
Harald Weltec2e8cc42010-05-31 20:23:38 +02001155 mmctx_timer_stop(mmctx, 3350);
1156 mmctx->p_tmsi_old = 0;
Harald Welte807a5d82010-06-01 11:53:01 +02001157 /* Unassign the old TLLI */
1158 mmctx->tlli = mmctx->tlli_new;
Harald Welted6f582b2010-06-30 23:18:57 +02001159 gprs_llgmm_assign(mmctx->llme, 0xffffffff, mmctx->tlli_new,
1160 GPRS_ALGO_GEA0, NULL);
Holger Hans Peter Freyther2b174542011-10-14 23:31:34 +02001161 rc = 0;
Harald Weltec2e8cc42010-05-31 20:23:38 +02001162 break;
Harald Welteab1d5622010-05-18 19:58:38 +02001163 case GSM48_MT_GMM_RA_UPD_COMPL:
1164 /* only in case SGSN offered new P-TMSI */
Daniel Willmann46553142014-09-03 17:46:44 +02001165 LOGMMCTXP(LOGL_INFO, mmctx, "-> ROUTEING AREA UPDATE COMPLETE\n");
Harald Weltec2e8cc42010-05-31 20:23:38 +02001166 mmctx_timer_stop(mmctx, 3350);
1167 mmctx->p_tmsi_old = 0;
Harald Welte807a5d82010-06-01 11:53:01 +02001168 /* Unassign the old TLLI */
1169 mmctx->tlli = mmctx->tlli_new;
Harald Welted6f582b2010-06-30 23:18:57 +02001170 gprs_llgmm_assign(mmctx->llme, 0xffffffff, mmctx->tlli_new,
1171 GPRS_ALGO_GEA0, NULL);
Holger Hans Peter Freyther2b174542011-10-14 23:31:34 +02001172 rc = 0;
Harald Weltec2e8cc42010-05-31 20:23:38 +02001173 break;
Harald Welte9b455bf2010-03-14 15:45:01 +08001174 case GSM48_MT_GMM_PTMSI_REALL_COMPL:
Daniel Willmann46553142014-09-03 17:46:44 +02001175 LOGMMCTXP(LOGL_INFO, mmctx, "-> PTMSI REALLLICATION COMPLETE\n");
Harald Weltec2e8cc42010-05-31 20:23:38 +02001176 mmctx_timer_stop(mmctx, 3350);
1177 mmctx->p_tmsi_old = 0;
Harald Welte807a5d82010-06-01 11:53:01 +02001178 /* Unassign the old TLLI */
1179 mmctx->tlli = mmctx->tlli_new;
Harald Welted6f582b2010-06-30 23:18:57 +02001180 //gprs_llgmm_assign(mmctx->llme, 0xffffffff, mmctx->tlli_new, GPRS_ALGO_GEA0, NULL);
Holger Hans Peter Freyther2b174542011-10-14 23:31:34 +02001181 rc = 0;
Harald Weltec2e8cc42010-05-31 20:23:38 +02001182 break;
Harald Welte9b455bf2010-03-14 15:45:01 +08001183 case GSM48_MT_GMM_AUTH_CIPH_RESP:
Harald Welte4b6ac1e2010-07-03 11:09:06 +02001184 rc = gsm48_rx_gmm_auth_ciph_resp(mmctx, msg);
Harald Welte9b455bf2010-03-14 15:45:01 +08001185 break;
1186 default:
Daniel Willmann46553142014-09-03 17:46:44 +02001187 LOGMMCTXP(LOGL_NOTICE, mmctx, "Unknown GSM 04.08 GMM msg type 0x%02x\n",
Harald Welte9b455bf2010-03-14 15:45:01 +08001188 gh->msg_type);
Harald Weltef54e7e22010-06-09 10:51:23 +02001189 rc = gsm48_tx_gmm_status(mmctx, GMM_CAUSE_MSGT_NOTEXIST_NOTIMPL);
Harald Welte9b455bf2010-03-14 15:45:01 +08001190 break;
1191 }
1192
1193 return rc;
1194}
1195
Harald Weltec2e8cc42010-05-31 20:23:38 +02001196static void mmctx_timer_cb(void *_mm)
1197{
1198 struct sgsn_mm_ctx *mm = _mm;
1199
1200 mm->num_T_exp++;
1201
1202 switch (mm->T) {
1203 case 3350: /* waiting for ATTACH COMPLETE */
1204 if (mm->num_T_exp >= 5) {
Daniel Willmann46553142014-09-03 17:46:44 +02001205 LOGMMCTXP(LOGL_NOTICE, mm, "T3350 expired >= 5 times\n");
Harald Weltec2e8cc42010-05-31 20:23:38 +02001206 mm->mm_state = GMM_DEREGISTERED;
1207 /* FIXME: should we return some error? */
1208 break;
1209 }
1210 /* re-transmit the respective msg and re-start timer */
1211 switch (mm->t3350_mode) {
1212 case GMM_T3350_MODE_ATT:
1213 gsm48_tx_gmm_att_ack(mm);
1214 break;
1215 case GMM_T3350_MODE_RAU:
1216 gsm48_tx_gmm_ra_upd_ack(mm);
1217 break;
1218 case GMM_T3350_MODE_PTMSI_REALL:
1219 /* FIXME */
1220 break;
1221 }
Pablo Neira Ayusobf540cb2011-05-06 12:11:06 +02001222 osmo_timer_schedule(&mm->timer, GSM0408_T3350_SECS, 0);
Harald Weltec2e8cc42010-05-31 20:23:38 +02001223 break;
Harald Welte4b6ac1e2010-07-03 11:09:06 +02001224 case 3360: /* waiting for AUTH AND CIPH RESP */
1225 if (mm->num_T_exp >= 5) {
Daniel Willmann46553142014-09-03 17:46:44 +02001226 LOGMMCTXP(LOGL_NOTICE, mm, "T3360 expired >= 5 times\n");
Harald Welte4b6ac1e2010-07-03 11:09:06 +02001227 mm->mm_state = GMM_DEREGISTERED;
1228 break;
1229 }
1230 /* FIXME: re-transmit the respective msg and re-start timer */
Pablo Neira Ayusobf540cb2011-05-06 12:11:06 +02001231 osmo_timer_schedule(&mm->timer, GSM0408_T3360_SECS, 0);
Harald Welte4b6ac1e2010-07-03 11:09:06 +02001232 break;
Harald Weltec2e8cc42010-05-31 20:23:38 +02001233 case 3370: /* waiting for IDENTITY RESPONSE */
1234 if (mm->num_T_exp >= 5) {
Daniel Willmann46553142014-09-03 17:46:44 +02001235 LOGMMCTXP(LOGL_NOTICE, mm, "T3370 expired >= 5 times\n");
Harald Weltec2e8cc42010-05-31 20:23:38 +02001236 gsm48_tx_gmm_att_rej(mm, GMM_CAUSE_MS_ID_NOT_DERIVED);
1237 mm->mm_state = GMM_DEREGISTERED;
1238 break;
1239 }
1240 /* re-tranmit IDENTITY REQUEST and re-start timer */
1241 gsm48_tx_gmm_id_req(mm, mm->t3370_id_type);
Pablo Neira Ayusobf540cb2011-05-06 12:11:06 +02001242 osmo_timer_schedule(&mm->timer, GSM0408_T3370_SECS, 0);
Harald Weltec2e8cc42010-05-31 20:23:38 +02001243 break;
1244 default:
Daniel Willmann46553142014-09-03 17:46:44 +02001245 LOGMMCTXP(LOGL_ERROR, mm, "timer expired in unknown mode %u\n",
Harald Weltec2e8cc42010-05-31 20:23:38 +02001246 mm->T);
1247 }
1248}
1249
1250/* GPRS SESSION MANAGEMENT */
1251
Harald Weltea9b473a2010-12-24 21:13:26 +01001252static void pdpctx_timer_cb(void *_mm);
1253
1254static void pdpctx_timer_start(struct sgsn_pdp_ctx *pdp, unsigned int T,
1255 unsigned int seconds)
1256{
Pablo Neira Ayusobf540cb2011-05-06 12:11:06 +02001257 if (osmo_timer_pending(&pdp->timer))
Harald Weltea9b473a2010-12-24 21:13:26 +01001258 LOGP(DMM, LOGL_ERROR, "Starting MM timer %u while old "
1259 "timer %u pending\n", T, pdp->T);
1260 pdp->T = T;
1261 pdp->num_T_exp = 0;
1262
1263 /* FIXME: we should do this only once ? */
1264 pdp->timer.data = pdp;
1265 pdp->timer.cb = &pdpctx_timer_cb;
1266
Pablo Neira Ayusobf540cb2011-05-06 12:11:06 +02001267 osmo_timer_schedule(&pdp->timer, seconds, 0);
Harald Weltea9b473a2010-12-24 21:13:26 +01001268}
1269
Holger Hans Peter Freyther1768a572014-04-04 12:40:34 +02001270#if 0
Harald Welte421cba42010-05-02 23:11:50 +02001271static void msgb_put_pdp_addr_ipv4(struct msgb *msg, uint32_t ipaddr)
1272{
1273 uint8_t v[6];
1274
1275 v[0] = PDP_TYPE_ORG_IETF;
1276 v[1] = PDP_TYPE_N_IETF_IPv4;
1277 *(uint32_t *)(v+2) = htonl(ipaddr);
1278
1279 msgb_tlv_put(msg, GSM48_IE_GSM_PDP_ADDR, sizeof(v), v);
1280}
1281
1282static void msgb_put_pdp_addr_ppp(struct msgb *msg)
1283{
1284 uint8_t v[2];
1285
1286 v[0] = PDP_TYPE_ORG_ETSI;
1287 v[1] = PDP_TYPE_N_ETSI_PPP;
1288
1289 msgb_tlv_put(msg, GSM48_IE_GSM_PDP_ADDR, sizeof(v), v);
1290}
Holger Hans Peter Freyther1768a572014-04-04 12:40:34 +02001291#endif
Harald Welte421cba42010-05-02 23:11:50 +02001292
Harald Welte9b455bf2010-03-14 15:45:01 +08001293/* Section 9.5.2: Ativate PDP Context Accept */
Harald Welte6abf94e2010-05-18 10:35:06 +02001294int gsm48_tx_gsm_act_pdp_acc(struct sgsn_pdp_ctx *pdp)
Harald Welte9b455bf2010-03-14 15:45:01 +08001295{
Harald Welte9b455bf2010-03-14 15:45:01 +08001296 struct msgb *msg = gsm48_msgb_alloc();
Harald Welte9b455bf2010-03-14 15:45:01 +08001297 struct gsm48_hdr *gh;
Harald Welte6abf94e2010-05-18 10:35:06 +02001298 uint8_t transaction_id = pdp->ti ^ 0x8; /* flip */
Harald Welte9b455bf2010-03-14 15:45:01 +08001299
Daniel Willmann46553142014-09-03 17:46:44 +02001300 LOGPDPCTXP(LOGL_INFO, pdp, "<- ACTIVATE PDP CONTEXT ACK\n");
Harald Welte9b455bf2010-03-14 15:45:01 +08001301
Harald Welte6abf94e2010-05-18 10:35:06 +02001302 mmctx2msgid(msg, pdp->mm);
Harald Welte9b455bf2010-03-14 15:45:01 +08001303
1304 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
1305 gh->proto_discr = GSM48_PDISC_SM_GPRS | (transaction_id << 4);
1306 gh->msg_type = GSM48_MT_GSM_ACT_PDP_ACK;
Harald Welte421cba42010-05-02 23:11:50 +02001307
1308 /* Negotiated LLC SAPI */
Harald Welte6abf94e2010-05-18 10:35:06 +02001309 msgb_v_put(msg, pdp->sapi);
Harald Welte4e38ac72010-05-18 14:51:18 +02001310
Harald Welte55e0df72010-05-18 13:20:08 +02001311 /* FIXME: copy QoS parameters from original request */
1312 //msgb_lv_put(msg, pdp->lib->qos_neg.l, pdp->lib->qos_neg.v);
1313 msgb_lv_put(msg, sizeof(default_qos), (uint8_t *)&default_qos);
Harald Welte4e38ac72010-05-18 14:51:18 +02001314
Harald Welte421cba42010-05-02 23:11:50 +02001315 /* Radio priority 10.5.7.2 */
Harald Welte6abf94e2010-05-18 10:35:06 +02001316 msgb_v_put(msg, pdp->lib->radio_pri);
Harald Welte4e38ac72010-05-18 14:51:18 +02001317
Harald Welte421cba42010-05-02 23:11:50 +02001318 /* PDP address */
Harald Welte4e38ac72010-05-18 14:51:18 +02001319 /* Highest 4 bits of first byte need to be set to 1, otherwise
1320 * the IE is identical with the 04.08 PDP Address IE */
1321 pdp->lib->eua.v[0] &= ~0xf0;
Harald Welte6abf94e2010-05-18 10:35:06 +02001322 msgb_tlv_put(msg, GSM48_IE_GSM_PDP_ADDR,
1323 pdp->lib->eua.l, pdp->lib->eua.v);
Harald Welte4e38ac72010-05-18 14:51:18 +02001324 pdp->lib->eua.v[0] |= 0xf0;
1325
Harald Welte77289c22010-05-18 14:32:29 +02001326 /* Optional: Protocol configuration options (FIXME: why 'req') */
Holger Hans Peter Freytherd2195072014-04-04 11:55:21 +02001327 if (pdp->lib->pco_req.l)
Harald Welte6abf94e2010-05-18 10:35:06 +02001328 msgb_tlv_put(msg, GSM48_IE_GSM_PROTO_CONF_OPT,
Harald Welte3c0b9b92010-05-18 14:36:11 +02001329 pdp->lib->pco_req.l, pdp->lib->pco_req.v);
Harald Welte4e38ac72010-05-18 14:51:18 +02001330
Harald Welte421cba42010-05-02 23:11:50 +02001331 /* Optional: Packet Flow Identifier */
Harald Welte9b455bf2010-03-14 15:45:01 +08001332
Harald Welte8acd88f2010-05-18 10:57:45 +02001333 return gsm48_gmm_sendmsg(msg, 0, pdp->mm);
Harald Welte9b455bf2010-03-14 15:45:01 +08001334}
1335
Harald Welte6abf94e2010-05-18 10:35:06 +02001336/* Section 9.5.3: Activate PDP Context reject */
1337int gsm48_tx_gsm_act_pdp_rej(struct sgsn_mm_ctx *mm, uint8_t tid,
1338 uint8_t cause, uint8_t pco_len, uint8_t *pco_v)
1339{
1340 struct msgb *msg = gsm48_msgb_alloc();
Harald Welte6abf94e2010-05-18 10:35:06 +02001341 struct gsm48_hdr *gh;
1342 uint8_t transaction_id = tid ^ 0x8; /* flip */
1343
Daniel Willmann46553142014-09-03 17:46:44 +02001344 LOGMMCTXP(LOGL_NOTICE, mm, "<- ACTIVATE PDP CONTEXT REJ(cause=%u)\n", cause);
Harald Welte6abf94e2010-05-18 10:35:06 +02001345
1346 mmctx2msgid(msg, mm);
1347
1348 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
1349 gh->proto_discr = GSM48_PDISC_SM_GPRS | (transaction_id << 4);
1350 gh->msg_type = GSM48_MT_GSM_ACT_PDP_REJ;
1351
1352 msgb_v_put(msg, cause);
1353 if (pco_len && pco_v)
1354 msgb_tlv_put(msg, GSM48_IE_GSM_PROTO_CONF_OPT, pco_len, pco_v);
1355
Harald Welte8acd88f2010-05-18 10:57:45 +02001356 return gsm48_gmm_sendmsg(msg, 0, mm);
Harald Welte6abf94e2010-05-18 10:35:06 +02001357}
1358
Harald Weltea9b473a2010-12-24 21:13:26 +01001359/* Section 9.5.8: Deactivate PDP Context Request */
1360static int _gsm48_tx_gsm_deact_pdp_req(struct sgsn_mm_ctx *mm, uint8_t tid,
1361 uint8_t sm_cause)
1362{
1363 struct msgb *msg = gsm48_msgb_alloc();
1364 struct gsm48_hdr *gh;
1365 uint8_t transaction_id = tid ^ 0x8; /* flip */
1366
Daniel Willmann46553142014-09-03 17:46:44 +02001367 LOGMMCTXP(LOGL_INFO, mm, "<- DEACTIVATE PDP CONTEXT REQ\n");
Harald Weltea9b473a2010-12-24 21:13:26 +01001368
1369 mmctx2msgid(msg, mm);
1370
1371 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
1372 gh->proto_discr = GSM48_PDISC_SM_GPRS | (transaction_id << 4);
1373 gh->msg_type = GSM48_MT_GSM_DEACT_PDP_REQ;
1374
1375 msgb_v_put(msg, sm_cause);
1376
1377 return gsm48_gmm_sendmsg(msg, 0, mm);
1378}
1379int gsm48_tx_gsm_deact_pdp_req(struct sgsn_pdp_ctx *pdp, uint8_t sm_cause)
1380{
1381 pdpctx_timer_start(pdp, 3395, GSM0408_T3395_SECS);
1382
1383 return _gsm48_tx_gsm_deact_pdp_req(pdp->mm, pdp->ti, sm_cause);
1384}
1385
Harald Welte9b455bf2010-03-14 15:45:01 +08001386/* Section 9.5.9: Deactivate PDP Context Accept */
Harald Welte60ebc022010-06-08 18:08:59 +02001387static int _gsm48_tx_gsm_deact_pdp_acc(struct sgsn_mm_ctx *mm, uint8_t tid)
Harald Welte9b455bf2010-03-14 15:45:01 +08001388{
Harald Welte9b455bf2010-03-14 15:45:01 +08001389 struct msgb *msg = gsm48_msgb_alloc();
1390 struct gsm48_hdr *gh;
Harald Welte60ebc022010-06-08 18:08:59 +02001391 uint8_t transaction_id = tid ^ 0x8; /* flip */
Harald Welte9b455bf2010-03-14 15:45:01 +08001392
Daniel Willmann46553142014-09-03 17:46:44 +02001393 LOGMMCTXP(LOGL_INFO, mm, "<- DEACTIVATE PDP CONTEXT ACK\n");
Harald Welte9b455bf2010-03-14 15:45:01 +08001394
Harald Welte60ebc022010-06-08 18:08:59 +02001395 mmctx2msgid(msg, mm);
Harald Welte9b455bf2010-03-14 15:45:01 +08001396
1397 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
1398 gh->proto_discr = GSM48_PDISC_SM_GPRS | (transaction_id << 4);
1399 gh->msg_type = GSM48_MT_GSM_DEACT_PDP_ACK;
1400
Harald Welte60ebc022010-06-08 18:08:59 +02001401 return gsm48_gmm_sendmsg(msg, 0, mm);
1402}
1403int gsm48_tx_gsm_deact_pdp_acc(struct sgsn_pdp_ctx *pdp)
1404{
1405 return _gsm48_tx_gsm_deact_pdp_acc(pdp->mm, pdp->ti);
Harald Welte9b455bf2010-03-14 15:45:01 +08001406}
1407
1408/* Section 9.5.1: Activate PDP Context Request */
Harald Welted193cb32010-05-17 22:58:03 +02001409static int gsm48_rx_gsm_act_pdp_req(struct sgsn_mm_ctx *mmctx,
1410 struct msgb *msg)
Harald Welte9b455bf2010-03-14 15:45:01 +08001411{
Harald Welte943c5bc2010-04-30 16:33:12 +02001412 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_gmmh(msg);
Harald Welte9b455bf2010-03-14 15:45:01 +08001413 struct gsm48_act_pdp_ctx_req *act_req = (struct gsm48_act_pdp_ctx_req *) gh->data;
Harald Welte0c3eae02010-05-02 21:07:14 +02001414 uint8_t req_qos_len, req_pdpa_len;
1415 uint8_t *req_qos, *req_pdpa;
1416 struct tlv_parsed tp;
Harald Welte6abf94e2010-05-18 10:35:06 +02001417 uint8_t transaction_id = (gh->proto_discr >> 4);
Harald Welte11ff3e82010-07-02 10:17:24 +02001418 struct sgsn_ggsn_ctx *ggsn;
Harald Welte6abf94e2010-05-18 10:35:06 +02001419 struct sgsn_pdp_ctx *pdp;
Harald Welte9b455bf2010-03-14 15:45:01 +08001420
Daniel Willmann46553142014-09-03 17:46:44 +02001421 LOGMMCTXP(LOGL_INFO, mmctx, "-> ACTIVATE PDP CONTEXT REQ: SAPI=%u NSAPI=%u ",
Harald Welte6abf94e2010-05-18 10:35:06 +02001422 act_req->req_llc_sapi, act_req->req_nsapi);
Harald Welte8acd88f2010-05-18 10:57:45 +02001423
Harald Welte23c13762010-07-02 22:52:04 +02001424 /* FIXME: length checks! */
Harald Welte0c3eae02010-05-02 21:07:14 +02001425 req_qos_len = act_req->data[0];
1426 req_qos = act_req->data + 1; /* 10.5.6.5 */
1427 req_pdpa_len = act_req->data[1 + req_qos_len];
1428 req_pdpa = act_req->data + 1 + req_qos_len + 1; /* 10.5.6.4 */
Harald Welte9b455bf2010-03-14 15:45:01 +08001429
Harald Welte23c13762010-07-02 22:52:04 +02001430 /* Optional: Access Point Name, Protocol Config Options */
1431 if (req_pdpa + req_pdpa_len < msg->data + msg->len)
1432 tlv_parse(&tp, &gsm48_sm_att_tlvdef, req_pdpa + req_pdpa_len,
1433 (msg->data + msg->len) - (req_pdpa + req_pdpa_len), 0, 0);
1434 else
1435 memset(&tp, 0, sizeof(tp));
1436
Harald Welte0c3eae02010-05-02 21:07:14 +02001437 switch (req_pdpa[0] & 0xf) {
1438 case 0x0:
1439 DEBUGPC(DMM, "ETSI ");
1440 break;
1441 case 0x1:
1442 DEBUGPC(DMM, "IETF ");
1443 break;
1444 case 0xf:
1445 DEBUGPC(DMM, "Empty ");
1446 break;
1447 }
1448
1449 switch (req_pdpa[1]) {
1450 case 0x21:
1451 DEBUGPC(DMM, "IPv4 ");
1452 if (req_pdpa_len >= 6) {
1453 struct in_addr ia;
1454 ia.s_addr = ntohl(*((uint32_t *) (req_pdpa+2)));
1455 DEBUGPC(DMM, "%s ", inet_ntoa(ia));
1456 }
1457 break;
1458 case 0x57:
1459 DEBUGPC(DMM, "IPv6 ");
1460 if (req_pdpa_len >= 18) {
1461 /* FIXME: print IPv6 address */
1462 }
1463 break;
1464 default:
1465 DEBUGPC(DMM, "0x%02x ", req_pdpa[1]);
1466 break;
1467 }
1468
Daniel Willmann46553142014-09-03 17:46:44 +02001469 LOGPC(DMM, LOGL_INFO, "\n");
Harald Welte77289c22010-05-18 14:32:29 +02001470
Harald Welte2720e732010-05-17 00:44:57 +02001471 /* put the non-TLV elements in the TLV parser structure to
1472 * pass them on to the SGSN / GTP code */
1473 tp.lv[OSMO_IE_GSM_REQ_QOS].len = req_qos_len;
1474 tp.lv[OSMO_IE_GSM_REQ_QOS].val = req_qos;
1475 tp.lv[OSMO_IE_GSM_REQ_PDP_ADDR].len = req_pdpa_len;
1476 tp.lv[OSMO_IE_GSM_REQ_PDP_ADDR].val = req_pdpa;
1477
Harald Welte6abf94e2010-05-18 10:35:06 +02001478 /* FIXME: determine GGSN based on APN and subscription options */
Harald Welte0c3eae02010-05-02 21:07:14 +02001479 if (TLVP_PRESENT(&tp, GSM48_IE_GSM_APN)) {}
Harald Welte6abf94e2010-05-18 10:35:06 +02001480
1481 /* Check if NSAPI is out of range (TS 04.65 / 7.2) */
1482 if (act_req->req_nsapi < 5 || act_req->req_nsapi > 15) {
1483 /* Send reject with GSM_CAUSE_INV_MAND_INFO */
1484 return gsm48_tx_gsm_act_pdp_rej(mmctx, transaction_id,
1485 GSM_CAUSE_INV_MAND_INFO,
1486 0, NULL);
1487 }
1488
1489 /* Check if NSAPI is already in use */
Harald Welteb37515e2010-07-02 10:12:58 +02001490 pdp = sgsn_pdp_ctx_by_nsapi(mmctx, act_req->req_nsapi);
1491 if (pdp) {
1492 /* We already have a PDP context for this TLLI + NSAPI tuple */
1493 if (pdp->sapi == act_req->req_llc_sapi &&
1494 pdp->ti == transaction_id) {
1495 /* This apparently is a re-transmission of a PDP CTX
1496 * ACT REQ (our ACT ACK must have got dropped) */
1497 return gsm48_tx_gsm_act_pdp_acc(pdp);
1498 }
1499
1500 /* Send reject with GSM_CAUSE_NSAPI_IN_USE */
Harald Welte6abf94e2010-05-18 10:35:06 +02001501 return gsm48_tx_gsm_act_pdp_rej(mmctx, transaction_id,
1502 GSM_CAUSE_NSAPI_IN_USE,
1503 0, NULL);
1504 }
Harald Welte9b455bf2010-03-14 15:45:01 +08001505
Harald Welte19f9e302010-07-02 10:15:49 +02001506 /* Only increment counter for a real activation, after we checked
1507 * for re-transmissions */
1508 rate_ctr_inc(&mmctx->ctrg->ctr[GMM_CTR_PDP_CTX_ACT]);
1509
Harald Welte11ff3e82010-07-02 10:17:24 +02001510 ggsn = sgsn_ggsn_ctx_by_id(0);
1511 if (!ggsn) {
1512 LOGP(DGPRS, LOGL_ERROR, "No GGSN context 0 found!\n");
1513 return -EIO;
Harald Welted193cb32010-05-17 22:58:03 +02001514 }
Harald Welte11ff3e82010-07-02 10:17:24 +02001515 ggsn->gsn = sgsn->gsn;
1516 pdp = sgsn_create_pdp_ctx(ggsn, mmctx, act_req->req_nsapi, &tp);
1517 if (!pdp)
1518 return -1;
1519
1520 /* Store SAPI and Transaction Identifier */
1521 pdp->sapi = act_req->req_llc_sapi;
1522 pdp->ti = transaction_id;
1523
Harald Welte6463c072010-05-18 17:04:55 +02001524 return 0;
Harald Welte9b455bf2010-03-14 15:45:01 +08001525}
1526
1527/* Section 9.5.8: Deactivate PDP Context Request */
Harald Welte77289c22010-05-18 14:32:29 +02001528static int gsm48_rx_gsm_deact_pdp_req(struct sgsn_mm_ctx *mm, struct msgb *msg)
Harald Welte9b455bf2010-03-14 15:45:01 +08001529{
Harald Welte943c5bc2010-04-30 16:33:12 +02001530 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_gmmh(msg);
Harald Welte77289c22010-05-18 14:32:29 +02001531 uint8_t transaction_id = (gh->proto_discr >> 4);
1532 struct sgsn_pdp_ctx *pdp;
Harald Welte9b455bf2010-03-14 15:45:01 +08001533
Daniel Willmann46553142014-09-03 17:46:44 +02001534 LOGMMCTXP(LOGL_INFO, mm, "-> DEACTIVATE PDP CONTEXT REQ (cause: %s)\n",
Harald Welte9b455bf2010-03-14 15:45:01 +08001535 get_value_string(gsm_cause_names, gh->data[0]));
1536
Harald Welte77289c22010-05-18 14:32:29 +02001537 pdp = sgsn_pdp_ctx_by_tid(mm, transaction_id);
1538 if (!pdp) {
Daniel Willmann46553142014-09-03 17:46:44 +02001539 LOGMMCTXP(LOGL_NOTICE, mm, "Deactivate PDP Context Request for "
Harald Welte77289c22010-05-18 14:32:29 +02001540 "non-existing PDP Context (IMSI=%s, TI=%u)\n",
1541 mm->imsi, transaction_id);
Harald Welte60ebc022010-06-08 18:08:59 +02001542 return _gsm48_tx_gsm_deact_pdp_acc(mm, transaction_id);
Harald Welte77289c22010-05-18 14:32:29 +02001543 }
1544
1545 return sgsn_delete_pdp_ctx(pdp);
Harald Welte9b455bf2010-03-14 15:45:01 +08001546}
1547
Harald Weltea9b473a2010-12-24 21:13:26 +01001548/* Section 9.5.9: Deactivate PDP Context Accept */
1549static int gsm48_rx_gsm_deact_pdp_ack(struct sgsn_mm_ctx *mm, struct msgb *msg)
1550{
1551 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_gmmh(msg);
1552 uint8_t transaction_id = (gh->proto_discr >> 4);
1553 struct sgsn_pdp_ctx *pdp;
1554
Daniel Willmann46553142014-09-03 17:46:44 +02001555 LOGMMCTXP(LOGL_INFO, mm, "-> DEACTIVATE PDP CONTEXT ACK\n");
Harald Weltea9b473a2010-12-24 21:13:26 +01001556
1557 pdp = sgsn_pdp_ctx_by_tid(mm, transaction_id);
1558 if (!pdp) {
Daniel Willmann46553142014-09-03 17:46:44 +02001559 LOGMMCTXP(LOGL_NOTICE, mm, "Deactivate PDP Context Accept for "
Harald Weltea9b473a2010-12-24 21:13:26 +01001560 "non-existing PDP Context (IMSI=%s, TI=%u)\n",
1561 mm->imsi, transaction_id);
1562 return 0;
1563 }
1564
1565 return sgsn_delete_pdp_ctx(pdp);
1566}
1567
Harald Welted193cb32010-05-17 22:58:03 +02001568static int gsm48_rx_gsm_status(struct sgsn_mm_ctx *ctx, struct msgb *msg)
Harald Welte9b455bf2010-03-14 15:45:01 +08001569{
1570 struct gsm48_hdr *gh = msgb_l3(msg);
1571
Daniel Willmann46553142014-09-03 17:46:44 +02001572 LOGMMCTXP(LOGL_INFO, ctx, "-> GPRS SM STATUS (cause: %s)\n",
Harald Welte9b455bf2010-03-14 15:45:01 +08001573 get_value_string(gsm_cause_names, gh->data[0]));
1574
1575 return 0;
1576}
1577
Harald Weltea9b473a2010-12-24 21:13:26 +01001578static void pdpctx_timer_cb(void *_pdp)
1579{
1580 struct sgsn_pdp_ctx *pdp = _pdp;
1581
1582 pdp->num_T_exp++;
1583
1584 switch (pdp->T) {
1585 case 3395: /* waiting for PDP CTX DEACT ACK */
1586 if (pdp->num_T_exp >= 4) {
Daniel Willmann46553142014-09-03 17:46:44 +02001587 LOGPDPCTXP(LOGL_NOTICE, pdp, "T3395 expired >= 5 times\n");
Harald Weltea9b473a2010-12-24 21:13:26 +01001588 pdp->state = PDP_STATE_INACTIVE;
1589 sgsn_delete_pdp_ctx(pdp);
1590 break;
1591 }
1592 gsm48_tx_gsm_deact_pdp_req(pdp, GSM_CAUSE_NET_FAIL);
Pablo Neira Ayusobf540cb2011-05-06 12:11:06 +02001593 osmo_timer_schedule(&pdp->timer, GSM0408_T3395_SECS, 0);
Harald Weltea9b473a2010-12-24 21:13:26 +01001594 break;
1595 default:
Daniel Willmann46553142014-09-03 17:46:44 +02001596 LOGPDPCTXP(LOGL_ERROR, pdp, "timer expired in unknown mode %u\n",
Harald Weltea9b473a2010-12-24 21:13:26 +01001597 pdp->T);
1598 }
1599}
1600
1601
Harald Welte9b455bf2010-03-14 15:45:01 +08001602/* GPRS Session Management */
Harald Welte807a5d82010-06-01 11:53:01 +02001603static int gsm0408_rcv_gsm(struct sgsn_mm_ctx *mmctx, struct msgb *msg,
1604 struct gprs_llc_llme *llme)
Harald Welte9b455bf2010-03-14 15:45:01 +08001605{
Harald Welte943c5bc2010-04-30 16:33:12 +02001606 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_gmmh(msg);
Harald Welte9b455bf2010-03-14 15:45:01 +08001607 int rc;
1608
Harald Welte807a5d82010-06-01 11:53:01 +02001609 /* MMCTX can be NULL when called */
1610
Harald Welted193cb32010-05-17 22:58:03 +02001611 if (!mmctx) {
1612 LOGP(DMM, LOGL_NOTICE, "Cannot handle SM for unknown MM CTX\n");
Jacob Erlbeck78ecaf02014-09-05 14:32:36 +02001613 /* 6.1.3.6 */
1614 if (gh->msg_type == GSM48_MT_GSM_STATUS)
1615 return 0;
1616
1617 return sgsn_force_reattach_oldmsg(msg);
Harald Welted193cb32010-05-17 22:58:03 +02001618 }
1619
Harald Welte9b455bf2010-03-14 15:45:01 +08001620 switch (gh->msg_type) {
1621 case GSM48_MT_GSM_ACT_PDP_REQ:
Harald Welted193cb32010-05-17 22:58:03 +02001622 rc = gsm48_rx_gsm_act_pdp_req(mmctx, msg);
Harald Welte9b455bf2010-03-14 15:45:01 +08001623 break;
1624 case GSM48_MT_GSM_DEACT_PDP_REQ:
Harald Welted193cb32010-05-17 22:58:03 +02001625 rc = gsm48_rx_gsm_deact_pdp_req(mmctx, msg);
Harald Welte77289c22010-05-18 14:32:29 +02001626 break;
Harald Weltea9b473a2010-12-24 21:13:26 +01001627 case GSM48_MT_GSM_DEACT_PDP_ACK:
1628 rc = gsm48_rx_gsm_deact_pdp_ack(mmctx, msg);
1629 break;
Harald Welte9b455bf2010-03-14 15:45:01 +08001630 case GSM48_MT_GSM_STATUS:
Harald Welted193cb32010-05-17 22:58:03 +02001631 rc = gsm48_rx_gsm_status(mmctx, msg);
Harald Welte9b455bf2010-03-14 15:45:01 +08001632 break;
1633 case GSM48_MT_GSM_REQ_PDP_ACT_REJ:
1634 case GSM48_MT_GSM_ACT_AA_PDP_REQ:
1635 case GSM48_MT_GSM_DEACT_AA_PDP_REQ:
Daniel Willmann46553142014-09-03 17:46:44 +02001636 LOGMMCTXP(LOGL_NOTICE, mmctx, "Unimplemented GSM 04.08 GSM msg type 0x%02x\n",
Harald Welte9b455bf2010-03-14 15:45:01 +08001637 gh->msg_type);
Harald Weltef54e7e22010-06-09 10:51:23 +02001638 rc = gsm48_tx_sm_status(mmctx, GSM_CAUSE_MSGT_NOTEXIST_NOTIMPL);
Harald Welte9b455bf2010-03-14 15:45:01 +08001639 break;
1640 default:
Daniel Willmann46553142014-09-03 17:46:44 +02001641 LOGMMCTXP(LOGL_NOTICE, mmctx, "Unknown GSM 04.08 GSM msg type 0x%02x\n",
Harald Welte9b455bf2010-03-14 15:45:01 +08001642 gh->msg_type);
Harald Weltef54e7e22010-06-09 10:51:23 +02001643 rc = gsm48_tx_sm_status(mmctx, GSM_CAUSE_MSGT_NOTEXIST_NOTIMPL);
Harald Welte9b455bf2010-03-14 15:45:01 +08001644 break;
1645
1646 }
1647
1648 return rc;
1649}
1650
Jacob Erlbeck78ecaf02014-09-05 14:32:36 +02001651int gsm0408_gprs_force_reattach(struct msgb *msg, struct sgsn_mm_ctx *mmctx)
1652{
1653 gprs_llgmm_reset_oldmsg(msg, GPRS_SAPI_GMM);
1654
1655 if (!mmctx)
1656 return gsm48_tx_gmm_detach_req_oldmsg(
1657 msg, GPRS_DET_T_MT_REATT_REQ, GMM_CAUSE_IMPL_DETACHED);
1658
1659 /* Mark MM state as deregistered initiated */
1660 mmctx->mm_state = GMM_DEREGISTERED_INIT;
1661
1662 /* Delete all existing PDP contexts for this MS */
1663 delete_pdp_contexts(mmctx, "forced reattach");
1664
1665 /* TODO:
1666 * properly start detach procedure (timeout, wait for ACK) and
1667 * do nothing if a re-attach is in progress */
1668
1669 return gsm48_tx_gmm_detach_req(
1670 mmctx, GPRS_DET_T_MT_REATT_REQ, GMM_CAUSE_IMPL_DETACHED);
1671}
1672
Harald Welte9b455bf2010-03-14 15:45:01 +08001673/* Main entry point for incoming 04.08 GPRS messages */
Harald Welte807a5d82010-06-01 11:53:01 +02001674int gsm0408_gprs_rcvmsg(struct msgb *msg, struct gprs_llc_llme *llme)
Harald Welte9b455bf2010-03-14 15:45:01 +08001675{
Harald Welte943c5bc2010-04-30 16:33:12 +02001676 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_gmmh(msg);
Harald Welteeaa614c2010-05-02 11:26:34 +02001677 uint8_t pdisc = gh->proto_discr & 0x0f;
Harald Welted193cb32010-05-17 22:58:03 +02001678 struct sgsn_mm_ctx *mmctx;
1679 struct gprs_ra_id ra_id;
Harald Welte9b455bf2010-03-14 15:45:01 +08001680 int rc = -EINVAL;
1681
Harald Welted193cb32010-05-17 22:58:03 +02001682 bssgp_parse_cell_id(&ra_id, msgb_bcid(msg));
1683 mmctx = sgsn_mm_ctx_by_tlli(msgb_tlli(msg), &ra_id);
Harald Welte8acd88f2010-05-18 10:57:45 +02001684 if (mmctx) {
Harald Welte6abf94e2010-05-18 10:35:06 +02001685 msgid2mmctx(mmctx, msg);
Harald Welte8acd88f2010-05-18 10:57:45 +02001686 rate_ctr_inc(&mmctx->ctrg->ctr[GMM_CTR_PKTS_SIG_IN]);
Harald Welte807a5d82010-06-01 11:53:01 +02001687 mmctx->llme = llme;
Harald Welte8acd88f2010-05-18 10:57:45 +02001688 }
Harald Welted193cb32010-05-17 22:58:03 +02001689
1690 /* MMCTX can be NULL */
1691
Harald Welte9b455bf2010-03-14 15:45:01 +08001692 switch (pdisc) {
1693 case GSM48_PDISC_MM_GPRS:
Harald Welte807a5d82010-06-01 11:53:01 +02001694 rc = gsm0408_rcv_gmm(mmctx, msg, llme);
Harald Welte9b455bf2010-03-14 15:45:01 +08001695 break;
1696 case GSM48_PDISC_SM_GPRS:
Harald Welte807a5d82010-06-01 11:53:01 +02001697 rc = gsm0408_rcv_gsm(mmctx, msg, llme);
Harald Welte9b455bf2010-03-14 15:45:01 +08001698 break;
1699 default:
Daniel Willmann46553142014-09-03 17:46:44 +02001700 LOGP(DMM, LOGL_NOTICE, "Unknown GSM 04.08 discriminator 0x%02x\n",
Harald Welte9b455bf2010-03-14 15:45:01 +08001701 pdisc);
Harald Welte6abf94e2010-05-18 10:35:06 +02001702 /* FIXME: return status message */
Harald Welte9b455bf2010-03-14 15:45:01 +08001703 break;
1704 }
1705
Jacob Erlbeck258ce3d2014-09-30 13:51:45 +02001706 /* MMCTX can be invalid */
1707
Harald Welte9b455bf2010-03-14 15:45:01 +08001708 return rc;
1709}
Harald Welte5bfe4992010-06-09 11:22:47 +02001710
1711int gprs_gmm_rx_suspend(struct gprs_ra_id *raid, uint32_t tlli)
1712{
1713 struct sgsn_mm_ctx *mmctx;
1714
1715 mmctx = sgsn_mm_ctx_by_tlli(tlli, raid);
1716 if (!mmctx) {
1717 LOGP(DMM, LOGL_NOTICE, "SUSPEND request for unknown "
1718 "TLLI=%08x\n", tlli);
1719 return -EINVAL;
1720 }
1721
1722 if (mmctx->mm_state != GMM_REGISTERED_NORMAL) {
Daniel Willmann46553142014-09-03 17:46:44 +02001723 LOGMMCTXP(LOGL_NOTICE, mmctx, "SUSPEND request while state "
Harald Welte5bfe4992010-06-09 11:22:47 +02001724 "!= REGISTERED (TLLI=%08x)\n", tlli);
1725 return -EINVAL;
1726 }
1727
1728 /* Transition from REGISTERED_NORMAL to REGISTERED_SUSPENDED */
1729 mmctx->mm_state = GMM_REGISTERED_SUSPENDED;
1730 return 0;
1731}
1732
1733int gprs_gmm_rx_resume(struct gprs_ra_id *raid, uint32_t tlli,
1734 uint8_t suspend_ref)
1735{
1736 struct sgsn_mm_ctx *mmctx;
1737
1738 /* FIXME: make use of suspend reference? */
1739
1740 mmctx = sgsn_mm_ctx_by_tlli(tlli, raid);
1741 if (!mmctx) {
1742 LOGP(DMM, LOGL_NOTICE, "RESUME request for unknown "
1743 "TLLI=%08x\n", tlli);
1744 return -EINVAL;
1745 }
1746
1747 if (mmctx->mm_state != GMM_REGISTERED_SUSPENDED) {
Daniel Willmann46553142014-09-03 17:46:44 +02001748 LOGMMCTXP(LOGL_NOTICE, mmctx, "RESUME request while state "
Harald Welte5bfe4992010-06-09 11:22:47 +02001749 "!= SUSPENDED (TLLI=%08x)\n", tlli);
1750 /* FIXME: should we not simply ignore it? */
1751 return -EINVAL;
1752 }
1753
1754 /* Transition from SUSPENDED to NORMAL */
1755 mmctx->mm_state = GMM_REGISTERED_NORMAL;
1756 return 0;
1757}