blob: 9f34b4ded9d7034ce839dbd0feb523ab31b3d1f7 [file] [log] [blame]
Harald Welte75bb8202010-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 Weltede34afa2010-05-02 12:56:57 +02004/* (C) 2009-2010 by Harald Welte <laforge@gnumonks.org>
Harald Welte7e01d8e2010-05-31 20:23:38 +02005 * (C) 2010 by On-Waves
Harald Welte75bb8202010-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 Welte0e3e88e2011-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 Welte75bb8202010-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 Welte0e3e88e2011-01-01 15:25:50 +010017 * GNU Affero General Public License for more details.
Harald Welte75bb8202010-03-14 15:45:01 +080018 *
Harald Welte0e3e88e2011-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 Welte75bb8202010-03-14 15:45:01 +080021 *
22 */
23
24#include <stdio.h>
25#include <stdlib.h>
26#include <string.h>
Harald Welted85d9a92010-05-02 11:26:34 +020027#include <stdint.h>
Harald Welte75bb8202010-03-14 15:45:01 +080028#include <errno.h>
29
30#include <netinet/in.h>
Harald Welte2aea7492010-05-02 23:11:50 +020031#include <arpa/inet.h>
Harald Welte75bb8202010-03-14 15:45:01 +080032
33#include <openbsc/db.h>
Pablo Neira Ayusodd5fff42011-03-22 16:47:59 +010034#include <osmocom/core/msgb.h>
Harald Welte8b1713a2011-03-23 18:26:56 +010035#include <osmocom/gsm/tlv.h>
36#include <osmocom/gsm/gsm_utils.h>
Pablo Neira Ayusodd5fff42011-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 Weltee4cc19a2010-05-02 12:57:45 +020040
Harald Weltecfb6b282012-06-16 14:59:56 +080041#include <osmocom/gprs/gprs_bssgp.h>
42
Harald Welte75bb8202010-03-14 15:45:01 +080043#include <openbsc/debug.h>
44#include <openbsc/gsm_data.h>
Harald Welte75bb8202010-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 Welte75bb8202010-03-14 15:45:01 +080049#include <openbsc/transaction.h>
50#include <openbsc/gprs_llc.h>
51#include <openbsc/gprs_sgsn.h>
Harald Welte29d838e2010-05-18 10:35:06 +020052#include <openbsc/gprs_gmm.h>
Harald Weltec1f6bfe2010-05-17 22:58:03 +020053#include <openbsc/sgsn.h>
54
Harald Welte29d838e2010-05-18 10:35:06 +020055#include <pdp.h>
56
Harald Welte7e01d8e2010-05-31 20:23:38 +020057#define PTMSI_ALLOC
58
Harald Welted4b9b022013-07-21 17:41:46 +080059/* Section 11.2.2 / Table 11.4 MM timers netwokr side */
Harald Welte7e01d8e2010-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 Welted4b9b022013-07-21 17:41:46 +080065/* Section 11.2.2 / Table 11.4a MM timers netwokr side */
Harald Welte7e01d8e2010-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 Welte94ecef32010-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 Weltec1f6bfe2010-05-17 22:58:03 +020076extern struct sgsn_instance *sgsn;
Harald Welte75bb8202010-03-14 15:45:01 +080077
Harald Welte8f77f192010-05-17 00:44:57 +020078/* Protocol related stuff, should go into libosmocore */
79
Harald Welte75bb8202010-03-14 15:45:01 +080080/* 10.5.5.14 GPRS MM Cause / Table 10.5.147 */
Harald Welte8f77f192010-05-17 00:44:57 +020081const struct value_string gmm_cause_names[] = {
Harald Welte17b26462010-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 Welte75bb8202010-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 Welte17b26462010-07-01 12:26:59 +0200108 { GMM_CAUSE_COND_IE_ERR, "Conditional IE error" },
Harald Welte75bb8202010-03-14 15:45:01 +0800109 { GMM_CAUSE_MSG_INCOMP_P_STATE,
110 "Message not compatible with protocol state " },
Harald Welte17b26462010-07-01 12:26:59 +0200111 { GMM_CAUSE_PROTO_ERR_UNSPEC, "Protocol error, unspecified" },
Harald Welte75bb8202010-03-14 15:45:01 +0800112 { 0, NULL }
113};
114
115/* 10.5.6.6 SM Cause / Table 10.5.157 */
Harald Welte8f77f192010-05-17 00:44:57 +0200116const struct value_string gsm_cause_names[] = {
Harald Welte75bb8202010-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 Welte8f77f192010-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 Welte75bb8202010-03-14 15:45:01 +0800157
Harald Welte8f77f192010-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 Erlbeckccaa22a2014-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 Welted9610722010-06-09 10:28:29 +0200181static const struct tlv_definition gsm48_gmm_att_tlvdef = {
182 .def = {
Harald Welte45fcf682010-07-03 11:09:06 +0200183 [GSM48_IE_GMM_CIPH_CKSN] = { TLV_TYPE_FIXED, 1 },
Harald Welted9610722010-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 Welte45fcf682010-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 Welted9610722010-06-09 10:28:29 +0200189 [GSM48_IE_GMM_IMEISV] = { TLV_TYPE_TLV, 0 },
Harald Welte45fcf682010-07-03 11:09:06 +0200190 [GSM48_IE_GMM_DRX_PARAM] = { TLV_TYPE_FIXED, 2 },
Harald Welted9610722010-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 Welte45fcf682010-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 Welted9610722010-06-09 10:28:29 +0200208 [GSM48_IE_GSM_LSA_ID] = { TLV_TYPE_TLV, 0 },
209 },
210};
211
Harald Welte8f77f192010-05-17 00:44:57 +0200212/* Our implementation, should be kept in SGSN */
Harald Welte75bb8202010-03-14 15:45:01 +0800213
Harald Welte7e01d8e2010-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 Ayuso840ccf62011-05-06 12:11:06 +0200219 if (osmo_timer_pending(&mm->timer))
Harald Welte7e01d8e2010-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 Ayuso840ccf62011-05-06 12:11:06 +0200229 osmo_timer_schedule(&mm->timer, seconds, 0);
Harald Welte7e01d8e2010-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 Ayuso840ccf62011-05-06 12:11:06 +0200237 osmo_timer_del(&mm->timer);
Harald Welte7e01d8e2010-05-31 20:23:38 +0200238}
239
Harald Welte75bb8202010-03-14 15:45:01 +0800240/* Send a message through the underlying layer */
Harald Welte8a035af2010-05-18 10:57:45 +0200241static int gsm48_gmm_sendmsg(struct msgb *msg, int command,
Holger Hans Peter Freytherf01f18e2011-10-14 23:31:34 +0200242 struct sgsn_mm_ctx *mm)
Harald Welte75bb8202010-03-14 15:45:01 +0800243{
Harald Welte8a035af2010-05-18 10:57:45 +0200244 if (mm)
245 rate_ctr_inc(&mm->ctrg->ctr[GMM_CTR_PKTS_SIG_OUT]);
246
Harald Welte2351f1f2010-05-02 11:54:55 +0200247 /* caller needs to provide TLLI, BVCI and NSEI */
Harald Weltecca80c92010-05-31 22:12:30 +0200248 return gprs_llc_tx_ui(msg, GPRS_SAPI_GMM, command, mm);
Harald Welte75bb8202010-03-14 15:45:01 +0800249}
250
Harald Welte2351f1f2010-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 Welte29d838e2010-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 Erlbeckccaa22a2014-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 Erlbeckd781c7a2014-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 Erlbeckd781c7a2014-10-13 10:32:00 +0200292
293 /* Mark MM state as deregistered */
294 ctx->mm_state = GMM_DEREGISTERED;
295
Jacob Erlbeckccaa22a2014-09-05 14:32:36 +0200296 delete_pdp_contexts(ctx, log_text);
Jacob Erlbeckd781c7a2014-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 Welte263edd12010-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}
Jacob Erlbeckce61bb72014-10-29 22:57:30 +0100328
Harald Welte263edd12010-06-09 10:51:23 +0200329static int gsm48_tx_gmm_status(struct sgsn_mm_ctx *mmctx, uint8_t cause)
330{
331 struct msgb *msg = gsm48_msgb_alloc();
332
333 mmctx2msgid(msg, mmctx);
334 return _tx_status(msg, cause, mmctx, 0);
Harald Welte263edd12010-06-09 10:51:23 +0200335}
Jacob Erlbeckce61bb72014-10-29 22:57:30 +0100336
Harald Welte263edd12010-06-09 10:51:23 +0200337static int gsm48_tx_sm_status(struct sgsn_mm_ctx *mmctx, uint8_t cause)
338{
339 struct msgb *msg = gsm48_msgb_alloc();
340
341 mmctx2msgid(msg, mmctx);
342 return _tx_status(msg, cause, mmctx, 1);
Harald Welte263edd12010-06-09 10:51:23 +0200343}
344
Jacob Erlbeckccaa22a2014-09-05 14:32:36 +0200345static int _tx_detach_req(struct msgb *msg, uint8_t detach_type, uint8_t cause,
346 struct sgsn_mm_ctx *mmctx)
347{
348 struct gsm48_hdr *gh;
349
350 /* MMCTX might be NULL! */
351
352 DEBUGP(DMM, "<- GPRS MM DETACH REQ (type: %s, cause: %s)\n",
353 get_value_string(gprs_det_t_mt_strs, detach_type),
354 get_value_string(gmm_cause_names, cause));
355
356 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh) + 1);
357
358 gh->proto_discr = GSM48_PDISC_MM_GPRS;
359 gh->msg_type = GSM48_MT_GMM_DETACH_REQ;
360 gh->data[0] = detach_type & 0x07;
361
362 msgb_tv_put(msg, GSM48_IE_GMM_CAUSE, cause);
363
364 return gsm48_gmm_sendmsg(msg, 0, mmctx);
365}
366
367static int gsm48_tx_gmm_detach_req(struct sgsn_mm_ctx *mmctx,
368 uint8_t detach_type, uint8_t cause)
369{
370 struct msgb *msg = gsm48_msgb_alloc();
371
372 mmctx2msgid(msg, mmctx);
373 return _tx_detach_req(msg, detach_type, cause, mmctx);
374}
375
376static int gsm48_tx_gmm_detach_req_oldmsg(struct msgb *oldmsg,
377 uint8_t detach_type, uint8_t cause)
378{
379 struct msgb *msg = gsm48_msgb_alloc();
380
381 gmm_copy_id(msg, oldmsg);
382 return _tx_detach_req(msg, detach_type, cause, NULL);
383}
Harald Welte263edd12010-06-09 10:51:23 +0200384
Harald Welte242d1722010-05-03 10:54:35 +0200385static struct gsm48_qos default_qos = {
386 .delay_class = 4, /* best effort */
387 .reliab_class = GSM48_QOS_RC_LLC_UN_RLC_ACK_DATA_PROT,
388 .peak_tput = GSM48_QOS_PEAK_TPUT_32000bps,
389 .preced_class = GSM48_QOS_PC_NORMAL,
390 .mean_tput = GSM48_QOS_MEAN_TPUT_BEST_EFFORT,
391 .traf_class = GSM48_QOS_TC_INTERACTIVE,
392 .deliv_order = GSM48_QOS_DO_UNORDERED,
393 .deliv_err_sdu = GSM48_QOS_ERRSDU_YES,
394 .max_sdu_size = GSM48_QOS_MAXSDU_1520,
395 .max_bitrate_up = GSM48_QOS_MBRATE_63k,
396 .max_bitrate_down = GSM48_QOS_MBRATE_63k,
397 .resid_ber = GSM48_QOS_RBER_5e_2,
398 .sdu_err_ratio = GSM48_QOS_SERR_1e_2,
399 .handling_prio = 3,
400 .xfer_delay = 0x10, /* 200ms */
401 .guar_bitrate_up = GSM48_QOS_MBRATE_0k,
402 .guar_bitrate_down = GSM48_QOS_MBRATE_0k,
403 .sig_ind = 0, /* not optimised for signalling */
404 .max_bitrate_down_ext = 0, /* use octet 9 */
405 .guar_bitrate_down_ext = 0, /* use octet 13 */
406};
407
Harald Welte75bb8202010-03-14 15:45:01 +0800408/* Chapter 9.4.2: Attach accept */
Harald Welte64df8ed2010-05-18 17:04:55 +0200409static int gsm48_tx_gmm_att_ack(struct sgsn_mm_ctx *mm)
Harald Welte75bb8202010-03-14 15:45:01 +0800410{
411 struct msgb *msg = gsm48_msgb_alloc();
412 struct gsm48_hdr *gh;
413 struct gsm48_attach_ack *aa;
Holger Hans Peter Freytherb32f34a2014-04-04 12:40:34 +0200414 uint8_t *mid;
415#if 0
416 uint8_t *ptsig;
417#endif
Harald Welte75bb8202010-03-14 15:45:01 +0800418
Daniel Willmannc9ac9732014-09-03 17:46:44 +0200419 LOGMMCTXP(LOGL_INFO, mm, "<- GPRS ATTACH ACCEPT (new P-TMSI=0x%08x)\n", mm->p_tmsi);
Harald Welte75bb8202010-03-14 15:45:01 +0800420
Harald Welte64df8ed2010-05-18 17:04:55 +0200421 mmctx2msgid(msg, mm);
Harald Welte75bb8202010-03-14 15:45:01 +0800422
423 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
424 gh->proto_discr = GSM48_PDISC_MM_GPRS;
425 gh->msg_type = GSM48_MT_GMM_ATTACH_ACK;
426
427 aa = (struct gsm48_attach_ack *) msgb_put(msg, sizeof(*aa));
428 aa->force_stby = 0; /* not indicated */
429 aa->att_result = 1; /* GPRS only */
430 aa->ra_upd_timer = GPRS_TMR_MINUTE | 10;
431 aa->radio_prio = 4; /* lowest */
Harald Welte64df8ed2010-05-18 17:04:55 +0200432 gsm48_construct_ra(aa->ra_id.digits, &mm->ra);
Harald Welte75bb8202010-03-14 15:45:01 +0800433
Harald Welteebe8a6d2010-05-18 19:58:38 +0200434#if 0
Harald Welte64df8ed2010-05-18 17:04:55 +0200435 /* Optional: P-TMSI signature */
436 msgb_v_put(msg, GSM48_IE_GMM_PTMSI_SIG);
437 ptsig = msgb_put(msg, 3);
438 ptsig[0] = mm->p_tmsi_sig >> 16;
439 ptsig[1] = mm->p_tmsi_sig >> 8;
440 ptsig[2] = mm->p_tmsi_sig & 0xff;
441
442 /* Optional: Negotiated Ready timer value */
Harald Welte7e01d8e2010-05-31 20:23:38 +0200443#endif
Harald Welte64df8ed2010-05-18 17:04:55 +0200444
Harald Welte7e01d8e2010-05-31 20:23:38 +0200445#ifdef PTMSI_ALLOC
Harald Welte64df8ed2010-05-18 17:04:55 +0200446 /* Optional: Allocated P-TMSI */
Harald Welte64df8ed2010-05-18 17:04:55 +0200447 mid = msgb_put(msg, GSM48_MID_TMSI_LEN);
448 gsm48_generate_mid_from_tmsi(mid, mm->p_tmsi);
Harald Welteebe8a6d2010-05-18 19:58:38 +0200449 mid[0] = GSM48_IE_GMM_ALLOC_PTMSI;
450#endif
Harald Welte7e01d8e2010-05-31 20:23:38 +0200451
Harald Welte64df8ed2010-05-18 17:04:55 +0200452 /* Optional: MS-identity (combined attach) */
453 /* Optional: GMM cause (partial attach result for combined attach) */
454
Harald Weltecca80c92010-05-31 22:12:30 +0200455 return gsm48_gmm_sendmsg(msg, 0, mm);
Harald Welte75bb8202010-03-14 15:45:01 +0800456}
457
458/* Chapter 9.4.5: Attach reject */
Harald Welte64df8ed2010-05-18 17:04:55 +0200459static int _tx_gmm_att_rej(struct msgb *msg, uint8_t gmm_cause)
Harald Welte75bb8202010-03-14 15:45:01 +0800460{
Harald Welte75bb8202010-03-14 15:45:01 +0800461 struct gsm48_hdr *gh;
462
Daniel Willmannc9ac9732014-09-03 17:46:44 +0200463 LOGP(DMM, LOGL_NOTICE, "<- GPRS ATTACH REJECT: %s\n", get_value_string(gmm_cause_names, gmm_cause));
Harald Welte75bb8202010-03-14 15:45:01 +0800464
Harald Welte75bb8202010-03-14 15:45:01 +0800465 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh) + 1);
466 gh->proto_discr = GSM48_PDISC_MM_GPRS;
467 gh->msg_type = GSM48_MT_GMM_ATTACH_REJ;
468 gh->data[0] = gmm_cause;
469
Harald Welte8a035af2010-05-18 10:57:45 +0200470 return gsm48_gmm_sendmsg(msg, 0, NULL);
Harald Welte75bb8202010-03-14 15:45:01 +0800471}
Harald Welte64df8ed2010-05-18 17:04:55 +0200472static int gsm48_tx_gmm_att_rej_oldmsg(const struct msgb *old_msg,
473 uint8_t gmm_cause)
474{
475 struct msgb *msg = gsm48_msgb_alloc();
476 gmm_copy_id(msg, old_msg);
477 return _tx_gmm_att_rej(msg, gmm_cause);
478}
479static int gsm48_tx_gmm_att_rej(struct sgsn_mm_ctx *mm,
480 uint8_t gmm_cause)
481{
482 struct msgb *msg = gsm48_msgb_alloc();
483 mmctx2msgid(msg, mm);
484 return _tx_gmm_att_rej(msg, gmm_cause);
485}
Harald Welte75bb8202010-03-14 15:45:01 +0800486
Harald Welte8f77f192010-05-17 00:44:57 +0200487/* Chapter 9.4.6.2 Detach accept */
Jacob Erlbeck42d284f2014-10-21 13:09:55 +0200488static int _tx_detach_ack(struct msgb *msg, uint8_t force_stby,
489 struct sgsn_mm_ctx *mm)
Harald Welte8f77f192010-05-17 00:44:57 +0200490{
Harald Welte8f77f192010-05-17 00:44:57 +0200491 struct gsm48_hdr *gh;
492
Jacob Erlbeck42d284f2014-10-21 13:09:55 +0200493 /* MMCTX might be NULL! */
Harald Welte8f77f192010-05-17 00:44:57 +0200494
Jacob Erlbeck42d284f2014-10-21 13:09:55 +0200495 DEBUGP(DMM, "<- GPRS MM DETACH ACC (force-standby: %d)\n", force_stby);
Harald Welte64df8ed2010-05-18 17:04:55 +0200496
Harald Welte8f77f192010-05-17 00:44:57 +0200497 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh) + 1);
498 gh->proto_discr = GSM48_PDISC_MM_GPRS;
499 gh->msg_type = GSM48_MT_GMM_DETACH_ACK;
500 gh->data[0] = force_stby;
501
Harald Weltecca80c92010-05-31 22:12:30 +0200502 return gsm48_gmm_sendmsg(msg, 0, mm);
Harald Welte8f77f192010-05-17 00:44:57 +0200503}
504
Jacob Erlbeck42d284f2014-10-21 13:09:55 +0200505static int gsm48_tx_gmm_det_ack(struct sgsn_mm_ctx *mm, uint8_t force_stby)
506{
507 struct msgb *msg = gsm48_msgb_alloc();
508
509 mmctx2msgid(msg, mm);
510 return _tx_detach_ack(msg, force_stby, mm);
511}
512
513static int gsm48_tx_gmm_det_ack_oldmsg(struct msgb *oldmsg, uint8_t force_stby)
514{
515 struct msgb *msg = gsm48_msgb_alloc();
516
517 gmm_copy_id(msg, oldmsg);
518 return _tx_detach_ack(msg, force_stby, NULL);
519}
520
Harald Welte75bb8202010-03-14 15:45:01 +0800521/* Transmit Chapter 9.4.12 Identity Request */
Harald Welte64df8ed2010-05-18 17:04:55 +0200522static int gsm48_tx_gmm_id_req(struct sgsn_mm_ctx *mm, uint8_t id_type)
Harald Welte75bb8202010-03-14 15:45:01 +0800523{
524 struct msgb *msg = gsm48_msgb_alloc();
525 struct gsm48_hdr *gh;
526
Daniel Willmannc9ac9732014-09-03 17:46:44 +0200527 LOGMMCTXP(LOGL_DEBUG, mm, "<- GPRS IDENTITY REQUEST: mi_type=%02x\n", id_type);
Harald Welte75bb8202010-03-14 15:45:01 +0800528
Harald Welte64df8ed2010-05-18 17:04:55 +0200529 mmctx2msgid(msg, mm);
Harald Welte75bb8202010-03-14 15:45:01 +0800530
531 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh) + 1);
532 gh->proto_discr = GSM48_PDISC_MM_GPRS;
533 gh->msg_type = GSM48_MT_GMM_ID_REQ;
534 /* 10.5.5.9 ID type 2 + identity type and 10.5.5.7 'force to standby' IE */
535 gh->data[0] = id_type & 0xf;
536
Harald Welte96cf2482010-05-31 22:31:04 +0200537 return gsm48_gmm_sendmsg(msg, 1, mm);
Harald Welte75bb8202010-03-14 15:45:01 +0800538}
539
Holger Hans Peter Freytherb32f34a2014-04-04 12:40:34 +0200540#if 0
Harald Welte45fcf682010-07-03 11:09:06 +0200541/* Section 9.4.9: Authentication and Ciphering Request */
542static int gsm48_tx_gmm_auth_ciph_req(struct sgsn_mm_ctx *mm, uint8_t *rand,
543 uint8_t key_seq, uint8_t algo)
544{
545 struct msgb *msg = gsm48_msgb_alloc();
546 struct gsm48_hdr *gh;
547 struct gsm48_auth_ciph_req *acreq;
548 uint8_t *m_rand, *m_cksn;
549
Daniel Willmannc9ac9732014-09-03 17:46:44 +0200550 LOGMMCTXP(LOGL_INFO, mm, "<- GPRS AUTH AND CIPHERING REQ (rand = %s)\n",
Pablo Neira Ayusob1d5a692011-05-07 12:12:48 +0200551 osmo_hexdump(rand, 16));
Harald Welte45fcf682010-07-03 11:09:06 +0200552
553 mmctx2msgid(msg, mm);
554
555 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
556 gh->proto_discr = GSM48_PDISC_MM_GPRS;
557 gh->msg_type = GSM48_MT_GMM_AUTH_CIPH_REQ;
558
559 acreq = (struct gsm48_auth_ciph_req *) msgb_put(msg, sizeof(*acreq));
560 acreq->ciph_alg = algo & 0xf;
561 acreq->imeisv_req = 0x1;
562 acreq->force_stby = 0x0;
563 acreq->ac_ref_nr = 0x0; /* FIXME: increment this? */
564
565 /* Only if authentication is requested we need to set RAND + CKSN */
566 if (rand) {
567 m_rand = msgb_put(msg, 16+1);
568 m_rand[0] = GSM48_IE_GMM_AUTH_RAND;
569 memcpy(m_rand+1, rand, 16);
570
571 m_cksn = msgb_put(msg, 1+1);
572 m_cksn[0] = GSM48_IE_GMM_CIPH_CKSN;
573 m_cksn[1] = key_seq;
574 }
575
576 /* Start T3360 */
577 mmctx_timer_start(mm, 3360, GSM0408_T3360_SECS);
578
579 /* FIXME: make sure we don't send any other messages to the MS */
580
581 return gsm48_gmm_sendmsg(msg, 1, mm);
582}
583
584/* Section 9.4.11: Authentication and Ciphering Reject */
585static int gsm48_tx_gmm_auth_ciph_rej(struct sgsn_mm_ctx *mm)
586{
587 struct msgb *msg = gsm48_msgb_alloc();
588 struct gsm48_hdr *gh;
589
Daniel Willmannc9ac9732014-09-03 17:46:44 +0200590 LOGMMCTXP(LOGL_NOTICE, mm, "<- GPRS AUTH AND CIPH REJECT\n");
Harald Welte45fcf682010-07-03 11:09:06 +0200591
592 mmctx2msgid(msg, mm);
593
594 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
595 gh->proto_discr = GSM48_PDISC_MM_GPRS;
596 gh->msg_type = GSM48_MT_GMM_AUTH_CIPH_REJ;
597
598 return gsm48_gmm_sendmsg(msg, 0, mm);
599}
Holger Hans Peter Freytherb32f34a2014-04-04 12:40:34 +0200600#endif
Harald Welte45fcf682010-07-03 11:09:06 +0200601
602/* Section 9.4.10: Authentication and Ciphering Response */
603static int gsm48_rx_gmm_auth_ciph_resp(struct sgsn_mm_ctx *ctx,
604 struct msgb *msg)
605{
606 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_gmmh(msg);
607 struct gsm48_auth_ciph_resp *acr = (struct gsm48_auth_ciph_resp *)gh->data;
608 struct tlv_parsed tp;
Harald Welte45fcf682010-07-03 11:09:06 +0200609
610 /* FIXME: Stop T3360 */
611
Holger Hans Peter Freytherb32f34a2014-04-04 12:40:34 +0200612 tlv_parse(&tp, &gsm48_gmm_att_tlvdef, acr->data,
Harald Welte45fcf682010-07-03 11:09:06 +0200613 (msg->data + msg->len) - acr->data, 0, 0);
614
615 /* FIXME: compare ac_ref? */
616
617 if (!TLVP_PRESENT(&tp, GSM48_IE_GMM_AUTH_SRES) ||
618 !TLVP_PRESENT(&tp, GSM48_IE_GMM_IMEISV)) {
619 /* FIXME: missing mandatory IE */
620 }
621
622 /* FIXME: compare SRES with what we expected */
623 /* FIXME: enable LLC cipheirng */
624 return 0;
625}
626
Harald Welte75bb8202010-03-14 15:45:01 +0800627/* Check if we can already authorize a subscriber */
Jacob Erlbeck4f9b64a2014-10-28 12:23:29 +0100628static int gsm48_gmm_authorize(struct sgsn_mm_ctx *ctx)
Harald Welte75bb8202010-03-14 15:45:01 +0800629{
Jacob Erlbeck4f9b64a2014-10-28 12:23:29 +0100630 /* Request IMSI and IMEI from the MS if they are unknown */
Harald Welte7e01d8e2010-05-31 20:23:38 +0200631 if (!strlen(ctx->imei)) {
Harald Welte7e01d8e2010-05-31 20:23:38 +0200632 ctx->t3370_id_type = GSM_MI_TYPE_IMEI;
633 mmctx_timer_start(ctx, 3370, GSM0408_T3370_SECS);
Harald Welte64df8ed2010-05-18 17:04:55 +0200634 return gsm48_tx_gmm_id_req(ctx, GSM_MI_TYPE_IMEI);
Harald Welte7e01d8e2010-05-31 20:23:38 +0200635 }
Harald Welte7e01d8e2010-05-31 20:23:38 +0200636 if (!strlen(ctx->imsi)) {
Harald Welte7e01d8e2010-05-31 20:23:38 +0200637 ctx->t3370_id_type = GSM_MI_TYPE_IMSI;
638 mmctx_timer_start(ctx, 3370, GSM0408_T3370_SECS);
Harald Welte64df8ed2010-05-18 17:04:55 +0200639 return gsm48_tx_gmm_id_req(ctx, GSM_MI_TYPE_IMSI);
Harald Welte7e01d8e2010-05-31 20:23:38 +0200640 }
Harald Welte75bb8202010-03-14 15:45:01 +0800641
Jacob Erlbeck4f9b64a2014-10-28 12:23:29 +0100642 /* All information required for authentication is available */
643
644 ctx->t3370_id_type = GSM_MI_TYPE_NONE;
645
646 switch (ctx->pending_req) {
647 case 0:
648 LOGMMCTXP(LOGL_INFO, ctx,
649 "no pending request, authorization completed\n");
650 break;
651 case GSM48_MT_GMM_ATTACH_REQ:
652#ifdef PTMSI_ALLOC
653 /* Start T3350 and re-transmit up to 5 times until ATTACH COMPLETE */
654 mmctx_timer_start(ctx, 3350, GSM0408_T3350_SECS);
655 ctx->t3350_mode = GMM_T3350_MODE_ATT;
Jacob Erlbeck67318ef2014-10-28 16:23:46 +0100656#else
657 ctx->mm_state = GMM_REGISTERED_NORMAL;
Jacob Erlbeck4f9b64a2014-10-28 12:23:29 +0100658#endif
659
Jacob Erlbeck4f9b64a2014-10-28 12:23:29 +0100660 return gsm48_tx_gmm_att_ack(ctx);
661 default:
662 LOGMMCTXP(LOGL_ERROR, ctx,
663 "only Attach Request is supported yet, "
664 "got request type %u\n", ctx->pending_req);
665 break;
666 }
667
Harald Welte75bb8202010-03-14 15:45:01 +0800668 return 0;
669}
670
671/* Parse Chapter 9.4.13 Identity Response */
Harald Weltec1f6bfe2010-05-17 22:58:03 +0200672static int gsm48_rx_gmm_id_resp(struct sgsn_mm_ctx *ctx, struct msgb *msg)
Harald Welte75bb8202010-03-14 15:45:01 +0800673{
Harald Weltecf3c4142010-04-30 16:33:12 +0200674 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_gmmh(msg);
Harald Welted85d9a92010-05-02 11:26:34 +0200675 uint8_t mi_type = gh->data[1] & GSM_MI_TYPE_MASK;
Harald Welte75bb8202010-03-14 15:45:01 +0800676 char mi_string[GSM48_MI_SIZE];
Harald Welte75bb8202010-03-14 15:45:01 +0800677
678 gsm48_mi_to_string(mi_string, sizeof(mi_string), &gh->data[1], gh->data[0]);
Harald Welte75bb8202010-03-14 15:45:01 +0800679 if (!ctx) {
Daniel Willmannc9ac9732014-09-03 17:46:44 +0200680 DEBUGP(DMM, "from unknown TLLI 0x%08x?!? This should not happen\n", msgb_tlli(msg));
Harald Welte75bb8202010-03-14 15:45:01 +0800681 return -EINVAL;
682 }
683
Daniel Willmann09827d52014-09-23 18:48:44 +0200684 LOGMMCTXP(LOGL_DEBUG, ctx, "-> GMM IDENTITY RESPONSE: mi_type=0x%02x MI(%s)\n",
685 mi_type, mi_string);
686
Jacob Erlbeck5233c0c2014-10-22 12:20:26 +0200687 if (ctx->t3370_id_type == GSM_MI_TYPE_NONE) {
688 LOGMMCTXP(LOGL_NOTICE, ctx,
689 "Got unexpected IDENTITY RESPONSE: mi_type=0x%02x MI(%s), "
690 "ignoring message\n",
691 mi_type, mi_string);
692 return -EINVAL;
693 }
694
Harald Welte7e01d8e2010-05-31 20:23:38 +0200695 if (mi_type == ctx->t3370_id_type)
696 mmctx_timer_stop(ctx, 3370);
697
Harald Welte75bb8202010-03-14 15:45:01 +0800698 switch (mi_type) {
699 case GSM_MI_TYPE_IMSI:
700 /* we already have a mm context with current TLLI, but no
701 * P-TMSI / IMSI yet. What we now need to do is to fill
702 * this initial context with data from the HLR */
Harald Weltec6e196f2010-12-24 23:07:18 +0100703 if (strlen(ctx->imsi) == 0) {
704 /* Check if we already have a MM context for this IMSI */
705 struct sgsn_mm_ctx *ictx;
706 ictx = sgsn_mm_ctx_by_imsi(mi_string);
707 if (ictx) {
Jacob Erlbeckd781c7a2014-10-13 10:32:00 +0200708 /* Handle it like in gsm48_rx_gmm_det_req,
709 * except that no messages are sent to the BSS */
710
Daniel Willmannc9ac9732014-09-03 17:46:44 +0200711 LOGMMCTXP(LOGL_NOTICE, ctx, "Deleting old MM Context for same IMSI "
712 "p_tmsi_old=0x%08x\n",
713 ictx->p_tmsi);
Jacob Erlbeckd781c7a2014-10-13 10:32:00 +0200714
715 ictx->mm_state = GMM_DEREGISTERED;
716
717 mm_ctx_cleanup_free(ictx, "GPRS IMSI re-use");
Harald Weltec6e196f2010-12-24 23:07:18 +0100718 }
719 }
Jacob Erlbeckaa45c762014-07-08 09:49:07 +0200720 strncpy(ctx->imsi, mi_string, sizeof(ctx->imsi));
Harald Welte75bb8202010-03-14 15:45:01 +0800721 break;
722 case GSM_MI_TYPE_IMEI:
723 strncpy(ctx->imei, mi_string, sizeof(ctx->imei));
724 break;
725 case GSM_MI_TYPE_IMEISV:
726 break;
727 }
728
Harald Welte75bb8202010-03-14 15:45:01 +0800729 /* Check if we can let the mobile station enter */
Jacob Erlbeck4f9b64a2014-10-28 12:23:29 +0100730 return gsm48_gmm_authorize(ctx);
Harald Welte75bb8202010-03-14 15:45:01 +0800731}
732
733/* Section 9.4.1 Attach request */
Harald Welte75871c72010-06-01 11:53:01 +0200734static int gsm48_rx_gmm_att_req(struct sgsn_mm_ctx *ctx, struct msgb *msg,
735 struct gprs_llc_llme *llme)
Harald Welte75bb8202010-03-14 15:45:01 +0800736{
Harald Weltecf3c4142010-04-30 16:33:12 +0200737 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_gmmh(msg);
Holger Hans Peter Freytherb32f34a2014-04-04 12:40:34 +0200738 uint8_t *cur = gh->data, *msnc, *mi, *ms_ra_acc_cap;
Harald Weltecca80c92010-05-31 22:12:30 +0200739 uint8_t msnc_len, att_type, mi_len, mi_type, ms_ra_acc_cap_len;
Harald Welted85d9a92010-05-02 11:26:34 +0200740 uint16_t drx_par;
741 uint32_t tmsi;
Harald Welte75bb8202010-03-14 15:45:01 +0800742 char mi_string[GSM48_MI_SIZE];
743 struct gprs_ra_id ra_id;
Harald Weltede34afa2010-05-02 12:56:57 +0200744 uint16_t cid;
Harald Welte75bb8202010-03-14 15:45:01 +0800745
Daniel Willmannc9ac9732014-09-03 17:46:44 +0200746 LOGP(DMM, LOGL_INFO, "-> GMM ATTACH REQUEST ");
Harald Welte75bb8202010-03-14 15:45:01 +0800747
748 /* As per TS 04.08 Chapter 4.7.1.4, the attach request arrives either
749 * with a foreign TLLI (P-TMSI that was allocated to the MS before),
750 * or with random TLLI. */
751
Harald Weltede34afa2010-05-02 12:56:57 +0200752 cid = bssgp_parse_cell_id(&ra_id, msgb_bcid(msg));
Harald Welte75bb8202010-03-14 15:45:01 +0800753
754 /* MS network capability 10.5.5.12 */
755 msnc_len = *cur++;
756 msnc = cur;
Alexander Chemeris6824c502013-07-03 10:12:23 +0400757 if (msnc_len > sizeof(ctx->ms_network_capa.buf))
Harald Welte75bb8202010-03-14 15:45:01 +0800758 goto err_inval;
759 cur += msnc_len;
760
761 /* aTTACH Type 10.5.5.2 */
762 att_type = *cur++ & 0x0f;
763
764 /* DRX parameter 10.5.5.6 */
Harald Weltecca80c92010-05-31 22:12:30 +0200765 drx_par = *cur++ << 8;
766 drx_par |= *cur++;
Harald Welte75bb8202010-03-14 15:45:01 +0800767
768 /* Mobile Identity (P-TMSI or IMSI) 10.5.1.4 */
769 mi_len = *cur++;
770 mi = cur;
771 if (mi_len > 8)
772 goto err_inval;
773 mi_type = *mi & GSM_MI_TYPE_MASK;
774 cur += mi_len;
775
776 gsm48_mi_to_string(mi_string, sizeof(mi_string), mi, mi_len);
777
Harald Welte8f77f192010-05-17 00:44:57 +0200778 DEBUGPC(DMM, "MI(%s) type=\"%s\" ", mi_string,
779 get_value_string(gprs_att_t_strs, att_type));
Harald Welte75bb8202010-03-14 15:45:01 +0800780
Holger Hans Peter Freytherb32f34a2014-04-04 12:40:34 +0200781 /* Old routing area identification 10.5.5.15. Skip it */
Harald Welte75bb8202010-03-14 15:45:01 +0800782 cur += 6;
783
784 /* MS Radio Access Capability 10.5.5.12a */
Harald Weltecca80c92010-05-31 22:12:30 +0200785 ms_ra_acc_cap_len = *cur++;
786 ms_ra_acc_cap = cur;
Alexander Chemeris6824c502013-07-03 10:12:23 +0400787 if (ms_ra_acc_cap_len > sizeof(ctx->ms_radio_access_capa.buf))
Harald Welteabe06132010-07-03 21:20:06 +0200788 goto err_inval;
Harald Welte45ca5522011-07-27 23:35:38 +0200789 cur += ms_ra_acc_cap_len;
Harald Welte75bb8202010-03-14 15:45:01 +0800790
Daniel Willmannc9ac9732014-09-03 17:46:44 +0200791 LOGPC(DMM, LOGL_INFO, "\n");
792
Harald Welte75bb8202010-03-14 15:45:01 +0800793 /* Optional: Old P-TMSI Signature, Requested READY timer, TMSI Status */
794
795 switch (mi_type) {
796 case GSM_MI_TYPE_IMSI:
797 /* Try to find MM context based on IMSI */
Harald Welte75871c72010-06-01 11:53:01 +0200798 if (!ctx)
799 ctx = sgsn_mm_ctx_by_imsi(mi_string);
Harald Welte75bb8202010-03-14 15:45:01 +0800800 if (!ctx) {
801#if 0
802 return gsm48_tx_gmm_att_rej(msg, GMM_CAUSE_IMSI_UNKNOWN);
803#else
Harald Weltef8ff1532010-12-24 15:39:08 +0100804 /* As a temorary hack, we simply assume that the IMSI exists,
805 * as long as it is part of 'our' network */
806 char mccmnc[16];
807 snprintf(mccmnc, sizeof(mccmnc), "%03d%02d", ra_id.mcc, ra_id.mnc);
Harald Weltea0879c12013-03-19 11:00:13 +0100808 if (strncmp(mccmnc, mi_string, 5) &&
Harald Welte2b9693d2013-03-19 11:48:54 +0100809 (sgsn->cfg.acl_enabled &&
Jacob Erlbeck4760eae2014-10-24 15:11:03 +0200810 !sgsn_acl_lookup(mi_string, &sgsn->cfg))) {
Daniel Willmannc9ac9732014-09-03 17:46:44 +0200811 LOGP(DMM, LOGL_NOTICE, "Rejecting ATTACH REQUEST IMSI=%s\n",
Harald Weltef8ff1532010-12-24 15:39:08 +0100812 mi_string);
813 return gsm48_tx_gmm_att_rej_oldmsg(msg,
814 GMM_CAUSE_GPRS_NOTALLOWED);
815 }
Harald Welte75bb8202010-03-14 15:45:01 +0800816 ctx = sgsn_mm_ctx_alloc(0, &ra_id);
817 if (!ctx)
Harald Welte64df8ed2010-05-18 17:04:55 +0200818 return gsm48_tx_gmm_att_rej_oldmsg(msg, GMM_CAUSE_NET_FAIL);
Harald Welte75bb8202010-03-14 15:45:01 +0800819 strncpy(ctx->imsi, mi_string, sizeof(ctx->imsi));
820#endif
821 }
Harald Weltecf3c4142010-04-30 16:33:12 +0200822 ctx->tlli = msgb_tlli(msg);
Harald Welte75871c72010-06-01 11:53:01 +0200823 ctx->llme = llme;
Harald Welte5c23bfc2010-05-18 12:05:42 +0200824 msgid2mmctx(ctx, msg);
Harald Welte75bb8202010-03-14 15:45:01 +0800825 break;
826 case GSM_MI_TYPE_TMSI:
Harald Welteebe8a6d2010-05-18 19:58:38 +0200827 memcpy(&tmsi, mi+1, 4);
828 tmsi = ntohl(tmsi);
Harald Welte75bb8202010-03-14 15:45:01 +0800829 /* Try to find MM context based on P-TMSI */
Harald Welte75871c72010-06-01 11:53:01 +0200830 if (!ctx)
831 ctx = sgsn_mm_ctx_by_ptmsi(tmsi);
Harald Welte75bb8202010-03-14 15:45:01 +0800832 if (!ctx) {
Harald Weltec6e196f2010-12-24 23:07:18 +0100833 /* Allocate a context as most of our code expects one.
834 * Context will not have an IMSI ultil ID RESP is received */
Harald Weltecf3c4142010-04-30 16:33:12 +0200835 ctx = sgsn_mm_ctx_alloc(msgb_tlli(msg), &ra_id);
Harald Welte75871c72010-06-01 11:53:01 +0200836 ctx->p_tmsi = tmsi;
Harald Welte75bb8202010-03-14 15:45:01 +0800837 }
Harald Welte75871c72010-06-01 11:53:01 +0200838 ctx->tlli = msgb_tlli(msg);
839 ctx->llme = llme;
840 msgid2mmctx(ctx, msg);
Harald Welte75bb8202010-03-14 15:45:01 +0800841 break;
842 default:
Harald Welte7e01d8e2010-05-31 20:23:38 +0200843 LOGP(DMM, LOGL_NOTICE, "Rejecting ATTACH REQUEST with "
844 "MI type %u\n", mi_type);
845 return gsm48_tx_gmm_att_rej_oldmsg(msg, GMM_CAUSE_MS_ID_NOT_DERIVED);
Harald Welte75bb8202010-03-14 15:45:01 +0800846 }
Harald Weltede34afa2010-05-02 12:56:57 +0200847 /* Update MM Context with currient RA and Cell ID */
848 ctx->ra = ra_id;
849 ctx->cell_id = cid;
Harald Weltecca80c92010-05-31 22:12:30 +0200850 /* Update MM Context with other data */
851 ctx->drx_parms = drx_par;
Alexander Chemeris6824c502013-07-03 10:12:23 +0400852 ctx->ms_radio_access_capa.len = ms_ra_acc_cap_len;
Harald Welte45ca5522011-07-27 23:35:38 +0200853 memcpy(ctx->ms_radio_access_capa.buf, ms_ra_acc_cap,
854 ctx->ms_radio_access_capa.len);
Harald Weltecca80c92010-05-31 22:12:30 +0200855 ctx->ms_network_capa.len = msnc_len;
856 memcpy(ctx->ms_network_capa.buf, msnc, msnc_len);
857
Harald Welte7e01d8e2010-05-31 20:23:38 +0200858#ifdef PTMSI_ALLOC
Harald Welte75871c72010-06-01 11:53:01 +0200859 /* Allocate a new P-TMSI (+ P-TMSI signature) and update TLLI */
Harald Welte7e01d8e2010-05-31 20:23:38 +0200860 ctx->p_tmsi_old = ctx->p_tmsi;
Harald Welte64df8ed2010-05-18 17:04:55 +0200861 ctx->p_tmsi = sgsn_alloc_ptmsi();
Jacob Erlbeck67318ef2014-10-28 16:23:46 +0100862 ctx->mm_state = GMM_COMMON_PROC_INIT;
Harald Welteebe8a6d2010-05-18 19:58:38 +0200863#endif
Harald Welte75871c72010-06-01 11:53:01 +0200864 /* Even if there is no P-TMSI allocated, the MS will switch from
865 * foreign TLLI to local TLLI */
866 ctx->tlli_new = gprs_tmsi2tlli(ctx->p_tmsi, TLLI_LOCAL);
867
868 /* Inform LLC layer about new TLLI but keep old active */
Harald Welte0c4304f2010-06-30 23:18:57 +0200869 gprs_llgmm_assign(ctx->llme, ctx->tlli, ctx->tlli_new,
870 GPRS_ALGO_GEA0, NULL);
Harald Welte75bb8202010-03-14 15:45:01 +0800871
Jacob Erlbeck4f9b64a2014-10-28 12:23:29 +0100872 ctx->pending_req = GSM48_MT_GMM_ATTACH_REQ;
873 return gsm48_gmm_authorize(ctx);
Harald Welte75bb8202010-03-14 15:45:01 +0800874
875err_inval:
Daniel Willmannc9ac9732014-09-03 17:46:44 +0200876 LOGPC(DMM, LOGL_INFO, "\n");
Harald Welte64df8ed2010-05-18 17:04:55 +0200877 return gsm48_tx_gmm_att_rej_oldmsg(msg, GMM_CAUSE_SEM_INCORR_MSG);
Harald Welte75bb8202010-03-14 15:45:01 +0800878}
879
Harald Welte8f77f192010-05-17 00:44:57 +0200880/* Section 4.7.4.1 / 9.4.5.2 MO Detach request */
Harald Weltec1f6bfe2010-05-17 22:58:03 +0200881static int gsm48_rx_gmm_det_req(struct sgsn_mm_ctx *ctx, struct msgb *msg)
Harald Welte8f77f192010-05-17 00:44:57 +0200882{
883 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_gmmh(msg);
Harald Welte8f77f192010-05-17 00:44:57 +0200884 uint8_t detach_type, power_off;
Jacob Erlbeck42d284f2014-10-21 13:09:55 +0200885 int rc = 0;
Harald Welte8f77f192010-05-17 00:44:57 +0200886
887 detach_type = gh->data[0] & 0x7;
888 power_off = gh->data[0] & 0x8;
889
890 /* FIXME: In 24.008 there is an optional P-TMSI and P-TMSI signature IE */
891
Daniel Willmannc9ac9732014-09-03 17:46:44 +0200892 LOGMMCTXP(LOGL_INFO, ctx, "-> GMM DETACH REQUEST TLLI=0x%08x type=%s %s\n",
Harald Welte8f77f192010-05-17 00:44:57 +0200893 msgb_tlli(msg), get_value_string(gprs_det_t_mo_strs, detach_type),
894 power_off ? "Power-off" : "");
895
Jacob Erlbeck42d284f2014-10-21 13:09:55 +0200896 /* Only send the Detach Accept (MO) if power off isn't indicated,
Jacob Erlbeck97ee3762014-10-21 09:52:05 +0200897 * see 04.08, 4.7.4.1.2/3 for details */
898 if (!power_off) {
899 /* force_stby = 0 */
Jacob Erlbeck42d284f2014-10-21 13:09:55 +0200900 if (ctx)
901 rc = gsm48_tx_gmm_det_ack(ctx, 0);
902 else
903 rc = gsm48_tx_gmm_det_ack_oldmsg(msg, 0);
Jacob Erlbeck97ee3762014-10-21 09:52:05 +0200904 }
Harald Welte309b5932010-06-28 22:18:53 +0200905
Jacob Erlbeck42d284f2014-10-21 13:09:55 +0200906 if (ctx)
907 mm_ctx_cleanup_free(ctx, "GPRS DETACH REQUEST");
Jacob Erlbeck12396bd2014-09-30 13:51:45 +0200908
Harald Welte309b5932010-06-28 22:18:53 +0200909 return rc;
Harald Welte8f77f192010-05-17 00:44:57 +0200910}
911
Harald Welte75bb8202010-03-14 15:45:01 +0800912/* Chapter 9.4.15: Routing area update accept */
Harald Welte64df8ed2010-05-18 17:04:55 +0200913static int gsm48_tx_gmm_ra_upd_ack(struct sgsn_mm_ctx *mm)
Harald Welte75bb8202010-03-14 15:45:01 +0800914{
915 struct msgb *msg = gsm48_msgb_alloc();
916 struct gsm48_hdr *gh;
917 struct gsm48_ra_upd_ack *rua;
Harald Welte7e01d8e2010-05-31 20:23:38 +0200918 uint8_t *mid;
Harald Welte75bb8202010-03-14 15:45:01 +0800919
Daniel Willmannc9ac9732014-09-03 17:46:44 +0200920 LOGMMCTXP(LOGL_INFO, mm, "<- ROUTING AREA UPDATE ACCEPT\n");
Harald Welte75bb8202010-03-14 15:45:01 +0800921
Harald Welte64df8ed2010-05-18 17:04:55 +0200922 mmctx2msgid(msg, mm);
Harald Welte75bb8202010-03-14 15:45:01 +0800923
924 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
925 gh->proto_discr = GSM48_PDISC_MM_GPRS;
926 gh->msg_type = GSM48_MT_GMM_RA_UPD_ACK;
927
928 rua = (struct gsm48_ra_upd_ack *) msgb_put(msg, sizeof(*rua));
929 rua->force_stby = 0; /* not indicated */
930 rua->upd_result = 0; /* RA updated */
931 rua->ra_upd_timer = GPRS_TMR_MINUTE | 10;
Harald Welte2351f1f2010-05-02 11:54:55 +0200932
Harald Welte64df8ed2010-05-18 17:04:55 +0200933 gsm48_construct_ra(rua->ra_id.digits, &mm->ra);
Harald Welte75bb8202010-03-14 15:45:01 +0800934
Harald Welte7e01d8e2010-05-31 20:23:38 +0200935#if 0
936 /* Optional: P-TMSI signature */
937 msgb_v_put(msg, GSM48_IE_GMM_PTMSI_SIG);
938 ptsig = msgb_put(msg, 3);
939 ptsig[0] = mm->p_tmsi_sig >> 16;
940 ptsig[1] = mm->p_tmsi_sig >> 8;
941 ptsig[2] = mm->p_tmsi_sig & 0xff;
942#endif
943
944#ifdef PTMSI_ALLOC
945 /* Optional: Allocated P-TMSI */
946 mid = msgb_put(msg, GSM48_MID_TMSI_LEN);
947 gsm48_generate_mid_from_tmsi(mid, mm->p_tmsi);
948 mid[0] = GSM48_IE_GMM_ALLOC_PTMSI;
949#endif
950
951 /* Option: MS ID, ... */
Harald Weltecca80c92010-05-31 22:12:30 +0200952 return gsm48_gmm_sendmsg(msg, 0, mm);
Harald Welte75bb8202010-03-14 15:45:01 +0800953}
954
955/* Chapter 9.4.17: Routing area update reject */
Harald Welted85d9a92010-05-02 11:26:34 +0200956static int gsm48_tx_gmm_ra_upd_rej(struct msgb *old_msg, uint8_t cause)
Harald Welte75bb8202010-03-14 15:45:01 +0800957{
958 struct msgb *msg = gsm48_msgb_alloc();
959 struct gsm48_hdr *gh;
960
Daniel Willmannc9ac9732014-09-03 17:46:44 +0200961 LOGP(DMM, LOGL_NOTICE, "<- ROUTING AREA UPDATE REJECT\n");
Harald Welte75bb8202010-03-14 15:45:01 +0800962
Harald Welte2351f1f2010-05-02 11:54:55 +0200963 gmm_copy_id(msg, old_msg);
Harald Welte75bb8202010-03-14 15:45:01 +0800964
965 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh) + 2);
966 gh->proto_discr = GSM48_PDISC_MM_GPRS;
967 gh->msg_type = GSM48_MT_GMM_RA_UPD_REJ;
968 gh->data[0] = cause;
969 gh->data[1] = 0; /* ? */
970
971 /* Option: P-TMSI signature, allocated P-TMSI, MS ID, ... */
Harald Welte8a035af2010-05-18 10:57:45 +0200972 return gsm48_gmm_sendmsg(msg, 0, NULL);
Harald Welte75bb8202010-03-14 15:45:01 +0800973}
974
Harald Welted9610722010-06-09 10:28:29 +0200975static void process_ms_ctx_status(struct sgsn_mm_ctx *mmctx,
Holger Hans Peter Freytherf01f18e2011-10-14 23:31:34 +0200976 const uint8_t *pdp_status)
Harald Welted9610722010-06-09 10:28:29 +0200977{
978 struct sgsn_pdp_ctx *pdp, *pdp2;
979 /* 24.008 4.7.5.1.3: If the PDP context status information element is
980 * included in ROUTING AREA UPDATE REQUEST message, then the network
981 * shall deactivate all those PDP contexts locally (without peer to
982 * peer signalling between the MS and the network), which are not in SM
983 * state PDP-INACTIVE on network side but are indicated by the MS as
984 * being in state PDP-INACTIVE. */
985
986 llist_for_each_entry_safe(pdp, pdp2, &mmctx->pdp_list, list) {
Harald Welte9e7093c2011-08-05 21:23:46 +0200987 if (pdp->nsapi < 8) {
988 if (!(pdp_status[0] & (1 << pdp->nsapi))) {
Daniel Willmannc9ac9732014-09-03 17:46:44 +0200989 LOGMMCTXP(LOGL_NOTICE, mmctx, "Dropping PDP context for NSAPI=%u "
Harald Welte9e7093c2011-08-05 21:23:46 +0200990 "due to PDP CTX STATUS IE= 0x%02x%02x\n",
991 pdp->nsapi, pdp_status[1], pdp_status[0]);
992 sgsn_delete_pdp_ctx(pdp);
993 }
994 } else {
995 if (!(pdp_status[1] & (1 << (pdp->nsapi - 8)))) {
Daniel Willmannc9ac9732014-09-03 17:46:44 +0200996 LOGMMCTXP(LOGL_NOTICE, mmctx, "Dropping PDP context for NSAPI=%u "
Harald Welte9e7093c2011-08-05 21:23:46 +0200997 "due to PDP CTX STATUS IE= 0x%02x%02x\n",
998 pdp->nsapi, pdp_status[1], pdp_status[0]);
999 sgsn_delete_pdp_ctx(pdp);
1000 }
Harald Welted9610722010-06-09 10:28:29 +02001001 }
1002 }
1003}
1004
Harald Welte75bb8202010-03-14 15:45:01 +08001005/* Chapter 9.4.14: Routing area update request */
Harald Welte75871c72010-06-01 11:53:01 +02001006static int gsm48_rx_gmm_ra_upd_req(struct sgsn_mm_ctx *mmctx, struct msgb *msg,
1007 struct gprs_llc_llme *llme)
Harald Welte75bb8202010-03-14 15:45:01 +08001008{
Harald Weltecf3c4142010-04-30 16:33:12 +02001009 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_gmmh(msg);
Harald Welted85d9a92010-05-02 11:26:34 +02001010 uint8_t *cur = gh->data;
Harald Welted9610722010-06-09 10:28:29 +02001011 uint8_t ms_ra_acc_cap_len;
Harald Welte75bb8202010-03-14 15:45:01 +08001012 struct gprs_ra_id old_ra_id;
Harald Welted9610722010-06-09 10:28:29 +02001013 struct tlv_parsed tp;
Harald Welted85d9a92010-05-02 11:26:34 +02001014 uint8_t upd_type;
Harald Welte75bb8202010-03-14 15:45:01 +08001015
1016 /* Update Type 10.5.5.18 */
1017 upd_type = *cur++ & 0x0f;
1018
Daniel Willmannc9ac9732014-09-03 17:46:44 +02001019 LOGP(DMM, LOGL_INFO, "-> GMM RA UPDATE REQUEST type=\"%s\"\n",
Harald Welte8f77f192010-05-17 00:44:57 +02001020 get_value_string(gprs_upd_t_strs, upd_type));
Harald Welte75bb8202010-03-14 15:45:01 +08001021
1022 /* Old routing area identification 10.5.5.15 */
1023 gsm48_parse_ra(&old_ra_id, cur);
1024 cur += 6;
1025
1026 /* MS Radio Access Capability 10.5.5.12a */
Harald Welted9610722010-06-09 10:28:29 +02001027 ms_ra_acc_cap_len = *cur++;
Harald Welte45ca5522011-07-27 23:35:38 +02001028 if (ms_ra_acc_cap_len > 52)
1029 return gsm48_tx_gmm_ra_upd_rej(msg, GMM_CAUSE_PROTO_ERR_UNSPEC);
1030 cur += ms_ra_acc_cap_len;
Harald Welte75bb8202010-03-14 15:45:01 +08001031
1032 /* Optional: Old P-TMSI Signature, Requested READY timer, TMSI Status,
1033 * DRX parameter, MS network capability */
Holger Hans Peter Freytherb32f34a2014-04-04 12:40:34 +02001034 tlv_parse(&tp, &gsm48_gmm_att_tlvdef, cur,
Harald Welted9610722010-06-09 10:28:29 +02001035 (msg->data + msg->len) - cur, 0, 0);
Harald Welte75bb8202010-03-14 15:45:01 +08001036
1037 switch (upd_type) {
1038 case GPRS_UPD_T_RA_LA:
1039 case GPRS_UPD_T_RA_LA_IMSI_ATT:
Daniel Willmannc9ac9732014-09-03 17:46:44 +02001040 LOGP(DMM, LOGL_NOTICE, "Update type %i unsupported in Mode III, is your SI13 corrupt?\n", upd_type);
Harald Welte75bb8202010-03-14 15:45:01 +08001041 return gsm48_tx_gmm_ra_upd_rej(msg, GMM_CAUSE_PROTO_ERR_UNSPEC);
1042 break;
1043 case GPRS_UPD_T_RA:
1044 case GPRS_UPD_T_PERIODIC:
1045 break;
1046 }
1047
1048 /* Look-up the MM context based on old RA-ID and TLLI */
Harald Welte51f78ee2010-12-23 23:34:43 +01001049 mmctx = sgsn_mm_ctx_by_tlli(msgb_tlli(msg), &old_ra_id);
Harald Welte75bb8202010-03-14 15:45:01 +08001050 if (!mmctx || mmctx->mm_state == GMM_DEREGISTERED) {
Harald Welte612c3d82011-10-16 18:50:56 +02001051 /* send a XID reset to re-set all LLC sequence numbers
1052 * in the MS */
Daniel Willmannc9ac9732014-09-03 17:46:44 +02001053 LOGP(DMM, LOGL_NOTICE, "LLC XID RESET\n");
Harald Welte612c3d82011-10-16 18:50:56 +02001054 gprs_llgmm_reset(llme);
Harald Welte75bb8202010-03-14 15:45:01 +08001055 /* The MS has to perform GPRS attach */
Jacob Erlbeckccaa22a2014-09-05 14:32:36 +02001056 /* Device is still IMSI attached for CS but initiate GPRS ATTACH,
1057 * see GSM 04.08, 4.7.5.1.4 and G.6 */
1058 return gsm48_tx_gmm_ra_upd_rej(msg, GMM_CAUSE_IMPL_DETACHED);
Harald Welte75bb8202010-03-14 15:45:01 +08001059 }
1060
Harald Welte66d062a2010-12-26 10:39:26 +01001061 /* Store new BVCI/NSEI in MM context (FIXME: delay until we ack?) */
1062 msgid2mmctx(mmctx, msg);
1063 /* Bump the statistics of received signalling msgs for this MM context */
1064 rate_ctr_inc(&mmctx->ctrg->ctr[GMM_CTR_PKTS_SIG_IN]);
1065
Harald Weltede34afa2010-05-02 12:56:57 +02001066 /* Update the MM context with the new RA-ID */
1067 bssgp_parse_cell_id(&mmctx->ra, msgb_bcid(msg));
Harald Welte66d062a2010-12-26 10:39:26 +01001068 /* Update the MM context with the new (i.e. foreign) TLLI */
Harald Weltede34afa2010-05-02 12:56:57 +02001069 mmctx->tlli = msgb_tlli(msg);
Harald Welte75bb8202010-03-14 15:45:01 +08001070 /* FIXME: Update the MM context with the MS radio acc capabilities */
1071 /* FIXME: Update the MM context with the MS network capabilities */
1072
Harald Welteeb471c92010-05-18 14:32:29 +02001073 rate_ctr_inc(&mmctx->ctrg->ctr[GMM_CTR_RA_UPDATE]);
1074
Harald Welte7e01d8e2010-05-31 20:23:38 +02001075#ifdef PTMSI_ALLOC
1076 mmctx->p_tmsi_old = mmctx->p_tmsi;
1077 mmctx->p_tmsi = sgsn_alloc_ptmsi();
1078 /* Start T3350 and re-transmit up to 5 times until ATTACH COMPLETE */
1079 mmctx->t3350_mode = GMM_T3350_MODE_RAU;
1080 mmctx_timer_start(mmctx, 3350, GSM0408_T3350_SECS);
Jacob Erlbeck67318ef2014-10-28 16:23:46 +01001081
1082 mmctx->mm_state = GMM_COMMON_PROC_INIT;
1083#else
1084 /* Make sure we are NORMAL (i.e. not SUSPENDED anymore) */
1085 mmctx->mm_state = GMM_REGISTERED_NORMAL;
Harald Welte7e01d8e2010-05-31 20:23:38 +02001086#endif
Harald Welte75871c72010-06-01 11:53:01 +02001087 /* Even if there is no P-TMSI allocated, the MS will switch from
1088 * foreign TLLI to local TLLI */
1089 mmctx->tlli_new = gprs_tmsi2tlli(mmctx->p_tmsi, TLLI_LOCAL);
Harald Welte7e01d8e2010-05-31 20:23:38 +02001090
Harald Welte75871c72010-06-01 11:53:01 +02001091 /* Inform LLC layer about new TLLI but keep old active */
Harald Welte0c4304f2010-06-30 23:18:57 +02001092 gprs_llgmm_assign(mmctx->llme, mmctx->tlli, mmctx->tlli_new,
1093 GPRS_ALGO_GEA0, NULL);
Harald Welte75871c72010-06-01 11:53:01 +02001094
Harald Welted9610722010-06-09 10:28:29 +02001095 /* Look at PDP Context Status IE and see if MS's view of
1096 * activated/deactivated NSAPIs agrees with our view */
1097 if (TLVP_PRESENT(&tp, GSM48_IE_GMM_PDP_CTX_STATUS)) {
Holger Hans Peter Freytherf01f18e2011-10-14 23:31:34 +02001098 const uint8_t *pdp_status = TLVP_VAL(&tp, GSM48_IE_GMM_PDP_CTX_STATUS);
Harald Welted9610722010-06-09 10:28:29 +02001099 process_ms_ctx_status(mmctx, pdp_status);
1100 }
1101
Harald Welte75871c72010-06-01 11:53:01 +02001102 /* Send RA UPDATE ACCEPT */
Harald Welte64df8ed2010-05-18 17:04:55 +02001103 return gsm48_tx_gmm_ra_upd_ack(mmctx);
Harald Welte75bb8202010-03-14 15:45:01 +08001104}
1105
Harald Weltec1f6bfe2010-05-17 22:58:03 +02001106static int gsm48_rx_gmm_status(struct sgsn_mm_ctx *mmctx, struct msgb *msg)
Harald Welte75bb8202010-03-14 15:45:01 +08001107{
1108 struct gsm48_hdr *gh = msgb_l3(msg);
1109
Daniel Willmannc9ac9732014-09-03 17:46:44 +02001110 LOGMMCTXP(LOGL_INFO, mmctx, "-> GPRS MM STATUS (cause: %s)\n",
Harald Welte75bb8202010-03-14 15:45:01 +08001111 get_value_string(gmm_cause_names, gh->data[0]));
1112
1113 return 0;
1114}
1115
1116/* GPRS Mobility Management */
Harald Welte75871c72010-06-01 11:53:01 +02001117static int gsm0408_rcv_gmm(struct sgsn_mm_ctx *mmctx, struct msgb *msg,
1118 struct gprs_llc_llme *llme)
Harald Welte75bb8202010-03-14 15:45:01 +08001119{
Harald Weltecf3c4142010-04-30 16:33:12 +02001120 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_gmmh(msg);
Harald Welte75bb8202010-03-14 15:45:01 +08001121 int rc;
1122
Harald Welte75871c72010-06-01 11:53:01 +02001123 /* MMCTX can be NULL when called */
1124
Harald Weltec1f6bfe2010-05-17 22:58:03 +02001125 if (!mmctx &&
1126 gh->msg_type != GSM48_MT_GMM_ATTACH_REQ &&
Harald Welte7e01d8e2010-05-31 20:23:38 +02001127 gh->msg_type != GSM48_MT_GMM_RA_UPD_REQ) {
Harald Weltec1f6bfe2010-05-17 22:58:03 +02001128 LOGP(DMM, LOGL_NOTICE, "Cannot handle GMM for unknown MM CTX\n");
Jacob Erlbeckccaa22a2014-09-05 14:32:36 +02001129 /* 4.7.10 */
Jacob Erlbeckb35ee6b2014-10-28 09:47:03 +01001130 if (gh->msg_type == GSM48_MT_GMM_STATUS) {
1131 /* TLLI unassignment */
1132 gprs_llgmm_assign(llme, llme->tlli, 0xffffffff,
1133 GPRS_ALGO_GEA0, NULL);
Jacob Erlbeckccaa22a2014-09-05 14:32:36 +02001134 return 0;
Jacob Erlbeckb35ee6b2014-10-28 09:47:03 +01001135 }
Jacob Erlbeckccaa22a2014-09-05 14:32:36 +02001136
Harald Welte612c3d82011-10-16 18:50:56 +02001137 gprs_llgmm_reset(llme);
Jacob Erlbeckccaa22a2014-09-05 14:32:36 +02001138
1139 /* Don't reply or establish a LLME on DETACH_ACK */
1140 if (gh->msg_type == GSM48_MT_GMM_DETACH_ACK) {
1141 /* TLLI unassignment */
1142 return gprs_llgmm_assign(llme, llme->tlli, 0xffffffff,
1143 GPRS_ALGO_GEA0, NULL);
1144 }
1145
1146 /* Don't force it into re-attachment */
1147 if (gh->msg_type == GSM48_MT_GMM_DETACH_REQ) {
Jacob Erlbeck42d284f2014-10-21 13:09:55 +02001148 /* Handle Detach Request */
1149 rc = gsm48_rx_gmm_det_req(NULL, msg);
Jacob Erlbeckccaa22a2014-09-05 14:32:36 +02001150
1151 /* TLLI unassignment */
1152 gprs_llgmm_assign(llme, llme->tlli, 0xffffffff,
1153 GPRS_ALGO_GEA0, NULL);
1154 return rc;
1155 }
1156
1157 /* Force the MS to re-attach */
1158 return sgsn_force_reattach_oldmsg(msg);
Harald Weltec1f6bfe2010-05-17 22:58:03 +02001159 }
1160
Harald Welte75bb8202010-03-14 15:45:01 +08001161 switch (gh->msg_type) {
1162 case GSM48_MT_GMM_RA_UPD_REQ:
Harald Welte75871c72010-06-01 11:53:01 +02001163 rc = gsm48_rx_gmm_ra_upd_req(mmctx, msg, llme);
Harald Welte75bb8202010-03-14 15:45:01 +08001164 break;
1165 case GSM48_MT_GMM_ATTACH_REQ:
Harald Welte75871c72010-06-01 11:53:01 +02001166 rc = gsm48_rx_gmm_att_req(mmctx, msg, llme);
Harald Welte75bb8202010-03-14 15:45:01 +08001167 break;
Daniel Willmannc9ac9732014-09-03 17:46:44 +02001168 /* For all the following types mmctx can not be NULL */
Harald Welte75bb8202010-03-14 15:45:01 +08001169 case GSM48_MT_GMM_ID_RESP:
Harald Weltec1f6bfe2010-05-17 22:58:03 +02001170 rc = gsm48_rx_gmm_id_resp(mmctx, msg);
Harald Welte75bb8202010-03-14 15:45:01 +08001171 break;
1172 case GSM48_MT_GMM_STATUS:
Harald Weltec1f6bfe2010-05-17 22:58:03 +02001173 rc = gsm48_rx_gmm_status(mmctx, msg);
Harald Welte75bb8202010-03-14 15:45:01 +08001174 break;
Harald Welte8f77f192010-05-17 00:44:57 +02001175 case GSM48_MT_GMM_DETACH_REQ:
Harald Weltec1f6bfe2010-05-17 22:58:03 +02001176 rc = gsm48_rx_gmm_det_req(mmctx, msg);
Harald Welte8f77f192010-05-17 00:44:57 +02001177 break;
Jacob Erlbeckccaa22a2014-09-05 14:32:36 +02001178 case GSM48_MT_GMM_DETACH_ACK:
1179 LOGMMCTXP(LOGL_INFO, mmctx, "-> DETACH ACK\n");
1180 mm_ctx_cleanup_free(mmctx, "GPRS DETACH ACK");
1181 rc = 0;
1182 break;
Harald Welte75bb8202010-03-14 15:45:01 +08001183 case GSM48_MT_GMM_ATTACH_COMPL:
1184 /* only in case SGSN offered new P-TMSI */
Daniel Willmannc9ac9732014-09-03 17:46:44 +02001185 LOGMMCTXP(LOGL_INFO, mmctx, "-> ATTACH COMPLETE\n");
Harald Welte7e01d8e2010-05-31 20:23:38 +02001186 mmctx_timer_stop(mmctx, 3350);
Jacob Erlbeck4f9b64a2014-10-28 12:23:29 +01001187 mmctx->t3350_mode = GMM_T3350_MODE_NONE;
Harald Welte7e01d8e2010-05-31 20:23:38 +02001188 mmctx->p_tmsi_old = 0;
Jacob Erlbeck4f9b64a2014-10-28 12:23:29 +01001189 mmctx->pending_req = 0;
Harald Welte75871c72010-06-01 11:53:01 +02001190 /* Unassign the old TLLI */
1191 mmctx->tlli = mmctx->tlli_new;
Harald Welte0c4304f2010-06-30 23:18:57 +02001192 gprs_llgmm_assign(mmctx->llme, 0xffffffff, mmctx->tlli_new,
1193 GPRS_ALGO_GEA0, NULL);
Jacob Erlbeck67318ef2014-10-28 16:23:46 +01001194 mmctx->mm_state = GMM_REGISTERED_NORMAL;
Holger Hans Peter Freytherf01f18e2011-10-14 23:31:34 +02001195 rc = 0;
Harald Welte7e01d8e2010-05-31 20:23:38 +02001196 break;
Harald Welteebe8a6d2010-05-18 19:58:38 +02001197 case GSM48_MT_GMM_RA_UPD_COMPL:
1198 /* only in case SGSN offered new P-TMSI */
Daniel Willmannc9ac9732014-09-03 17:46:44 +02001199 LOGMMCTXP(LOGL_INFO, mmctx, "-> ROUTEING AREA UPDATE COMPLETE\n");
Harald Welte7e01d8e2010-05-31 20:23:38 +02001200 mmctx_timer_stop(mmctx, 3350);
Jacob Erlbeck4f9b64a2014-10-28 12:23:29 +01001201 mmctx->t3350_mode = GMM_T3350_MODE_NONE;
Harald Welte7e01d8e2010-05-31 20:23:38 +02001202 mmctx->p_tmsi_old = 0;
Jacob Erlbeck4f9b64a2014-10-28 12:23:29 +01001203 mmctx->pending_req = 0;
Harald Welte75871c72010-06-01 11:53:01 +02001204 /* Unassign the old TLLI */
1205 mmctx->tlli = mmctx->tlli_new;
Harald Welte0c4304f2010-06-30 23:18:57 +02001206 gprs_llgmm_assign(mmctx->llme, 0xffffffff, mmctx->tlli_new,
1207 GPRS_ALGO_GEA0, NULL);
Jacob Erlbeck67318ef2014-10-28 16:23:46 +01001208 mmctx->mm_state = GMM_REGISTERED_NORMAL;
Holger Hans Peter Freytherf01f18e2011-10-14 23:31:34 +02001209 rc = 0;
Harald Welte7e01d8e2010-05-31 20:23:38 +02001210 break;
Harald Welte75bb8202010-03-14 15:45:01 +08001211 case GSM48_MT_GMM_PTMSI_REALL_COMPL:
Daniel Willmannc9ac9732014-09-03 17:46:44 +02001212 LOGMMCTXP(LOGL_INFO, mmctx, "-> PTMSI REALLLICATION COMPLETE\n");
Harald Welte7e01d8e2010-05-31 20:23:38 +02001213 mmctx_timer_stop(mmctx, 3350);
Jacob Erlbeck4f9b64a2014-10-28 12:23:29 +01001214 mmctx->t3350_mode = GMM_T3350_MODE_NONE;
Harald Welte7e01d8e2010-05-31 20:23:38 +02001215 mmctx->p_tmsi_old = 0;
Jacob Erlbeck4f9b64a2014-10-28 12:23:29 +01001216 mmctx->pending_req = 0;
Harald Welte75871c72010-06-01 11:53:01 +02001217 /* Unassign the old TLLI */
1218 mmctx->tlli = mmctx->tlli_new;
Harald Welte0c4304f2010-06-30 23:18:57 +02001219 //gprs_llgmm_assign(mmctx->llme, 0xffffffff, mmctx->tlli_new, GPRS_ALGO_GEA0, NULL);
Holger Hans Peter Freytherf01f18e2011-10-14 23:31:34 +02001220 rc = 0;
Harald Welte7e01d8e2010-05-31 20:23:38 +02001221 break;
Harald Welte75bb8202010-03-14 15:45:01 +08001222 case GSM48_MT_GMM_AUTH_CIPH_RESP:
Harald Welte45fcf682010-07-03 11:09:06 +02001223 rc = gsm48_rx_gmm_auth_ciph_resp(mmctx, msg);
Harald Welte75bb8202010-03-14 15:45:01 +08001224 break;
1225 default:
Daniel Willmannc9ac9732014-09-03 17:46:44 +02001226 LOGMMCTXP(LOGL_NOTICE, mmctx, "Unknown GSM 04.08 GMM msg type 0x%02x\n",
Harald Welte75bb8202010-03-14 15:45:01 +08001227 gh->msg_type);
Harald Welte263edd12010-06-09 10:51:23 +02001228 rc = gsm48_tx_gmm_status(mmctx, GMM_CAUSE_MSGT_NOTEXIST_NOTIMPL);
Harald Welte75bb8202010-03-14 15:45:01 +08001229 break;
1230 }
1231
1232 return rc;
1233}
1234
Harald Welte7e01d8e2010-05-31 20:23:38 +02001235static void mmctx_timer_cb(void *_mm)
1236{
1237 struct sgsn_mm_ctx *mm = _mm;
1238
1239 mm->num_T_exp++;
1240
1241 switch (mm->T) {
1242 case 3350: /* waiting for ATTACH COMPLETE */
1243 if (mm->num_T_exp >= 5) {
Daniel Willmannc9ac9732014-09-03 17:46:44 +02001244 LOGMMCTXP(LOGL_NOTICE, mm, "T3350 expired >= 5 times\n");
Harald Welte7e01d8e2010-05-31 20:23:38 +02001245 mm->mm_state = GMM_DEREGISTERED;
Jacob Erlbeck4f9b64a2014-10-28 12:23:29 +01001246 mm->t3350_mode = GMM_T3350_MODE_NONE;
1247 mm->pending_req = 0;
Harald Welte7e01d8e2010-05-31 20:23:38 +02001248 /* FIXME: should we return some error? */
1249 break;
1250 }
1251 /* re-transmit the respective msg and re-start timer */
1252 switch (mm->t3350_mode) {
1253 case GMM_T3350_MODE_ATT:
1254 gsm48_tx_gmm_att_ack(mm);
1255 break;
1256 case GMM_T3350_MODE_RAU:
1257 gsm48_tx_gmm_ra_upd_ack(mm);
1258 break;
1259 case GMM_T3350_MODE_PTMSI_REALL:
1260 /* FIXME */
1261 break;
Jacob Erlbeck4f9b64a2014-10-28 12:23:29 +01001262 case GMM_T3350_MODE_NONE:
1263 LOGMMCTXP(LOGL_NOTICE, mm,
1264 "T3350 mode wasn't set, ignoring timeout\n");
1265 break;
Harald Welte7e01d8e2010-05-31 20:23:38 +02001266 }
Pablo Neira Ayuso840ccf62011-05-06 12:11:06 +02001267 osmo_timer_schedule(&mm->timer, GSM0408_T3350_SECS, 0);
Harald Welte7e01d8e2010-05-31 20:23:38 +02001268 break;
Harald Welte45fcf682010-07-03 11:09:06 +02001269 case 3360: /* waiting for AUTH AND CIPH RESP */
1270 if (mm->num_T_exp >= 5) {
Daniel Willmannc9ac9732014-09-03 17:46:44 +02001271 LOGMMCTXP(LOGL_NOTICE, mm, "T3360 expired >= 5 times\n");
Harald Welte45fcf682010-07-03 11:09:06 +02001272 mm->mm_state = GMM_DEREGISTERED;
1273 break;
1274 }
1275 /* FIXME: re-transmit the respective msg and re-start timer */
Pablo Neira Ayuso840ccf62011-05-06 12:11:06 +02001276 osmo_timer_schedule(&mm->timer, GSM0408_T3360_SECS, 0);
Harald Welte45fcf682010-07-03 11:09:06 +02001277 break;
Harald Welte7e01d8e2010-05-31 20:23:38 +02001278 case 3370: /* waiting for IDENTITY RESPONSE */
1279 if (mm->num_T_exp >= 5) {
Daniel Willmannc9ac9732014-09-03 17:46:44 +02001280 LOGMMCTXP(LOGL_NOTICE, mm, "T3370 expired >= 5 times\n");
Harald Welte7e01d8e2010-05-31 20:23:38 +02001281 gsm48_tx_gmm_att_rej(mm, GMM_CAUSE_MS_ID_NOT_DERIVED);
1282 mm->mm_state = GMM_DEREGISTERED;
1283 break;
1284 }
1285 /* re-tranmit IDENTITY REQUEST and re-start timer */
1286 gsm48_tx_gmm_id_req(mm, mm->t3370_id_type);
Pablo Neira Ayuso840ccf62011-05-06 12:11:06 +02001287 osmo_timer_schedule(&mm->timer, GSM0408_T3370_SECS, 0);
Harald Welte7e01d8e2010-05-31 20:23:38 +02001288 break;
1289 default:
Daniel Willmannc9ac9732014-09-03 17:46:44 +02001290 LOGMMCTXP(LOGL_ERROR, mm, "timer expired in unknown mode %u\n",
Harald Welte7e01d8e2010-05-31 20:23:38 +02001291 mm->T);
1292 }
1293}
1294
1295/* GPRS SESSION MANAGEMENT */
1296
Harald Welte94ecef32010-12-24 21:13:26 +01001297static void pdpctx_timer_cb(void *_mm);
1298
1299static void pdpctx_timer_start(struct sgsn_pdp_ctx *pdp, unsigned int T,
1300 unsigned int seconds)
1301{
Pablo Neira Ayuso840ccf62011-05-06 12:11:06 +02001302 if (osmo_timer_pending(&pdp->timer))
Harald Welte94ecef32010-12-24 21:13:26 +01001303 LOGP(DMM, LOGL_ERROR, "Starting MM timer %u while old "
1304 "timer %u pending\n", T, pdp->T);
1305 pdp->T = T;
1306 pdp->num_T_exp = 0;
1307
1308 /* FIXME: we should do this only once ? */
1309 pdp->timer.data = pdp;
1310 pdp->timer.cb = &pdpctx_timer_cb;
1311
Pablo Neira Ayuso840ccf62011-05-06 12:11:06 +02001312 osmo_timer_schedule(&pdp->timer, seconds, 0);
Harald Welte94ecef32010-12-24 21:13:26 +01001313}
1314
Holger Hans Peter Freytherb32f34a2014-04-04 12:40:34 +02001315#if 0
Harald Welte2aea7492010-05-02 23:11:50 +02001316static void msgb_put_pdp_addr_ipv4(struct msgb *msg, uint32_t ipaddr)
1317{
1318 uint8_t v[6];
1319
1320 v[0] = PDP_TYPE_ORG_IETF;
1321 v[1] = PDP_TYPE_N_IETF_IPv4;
1322 *(uint32_t *)(v+2) = htonl(ipaddr);
1323
1324 msgb_tlv_put(msg, GSM48_IE_GSM_PDP_ADDR, sizeof(v), v);
1325}
1326
1327static void msgb_put_pdp_addr_ppp(struct msgb *msg)
1328{
1329 uint8_t v[2];
1330
1331 v[0] = PDP_TYPE_ORG_ETSI;
1332 v[1] = PDP_TYPE_N_ETSI_PPP;
1333
1334 msgb_tlv_put(msg, GSM48_IE_GSM_PDP_ADDR, sizeof(v), v);
1335}
Holger Hans Peter Freytherb32f34a2014-04-04 12:40:34 +02001336#endif
Harald Welte2aea7492010-05-02 23:11:50 +02001337
Harald Welte75bb8202010-03-14 15:45:01 +08001338/* Section 9.5.2: Ativate PDP Context Accept */
Harald Welte29d838e2010-05-18 10:35:06 +02001339int gsm48_tx_gsm_act_pdp_acc(struct sgsn_pdp_ctx *pdp)
Harald Welte75bb8202010-03-14 15:45:01 +08001340{
Harald Welte75bb8202010-03-14 15:45:01 +08001341 struct msgb *msg = gsm48_msgb_alloc();
Harald Welte75bb8202010-03-14 15:45:01 +08001342 struct gsm48_hdr *gh;
Harald Welte29d838e2010-05-18 10:35:06 +02001343 uint8_t transaction_id = pdp->ti ^ 0x8; /* flip */
Harald Welte75bb8202010-03-14 15:45:01 +08001344
Daniel Willmannc9ac9732014-09-03 17:46:44 +02001345 LOGPDPCTXP(LOGL_INFO, pdp, "<- ACTIVATE PDP CONTEXT ACK\n");
Harald Welte75bb8202010-03-14 15:45:01 +08001346
Harald Welte29d838e2010-05-18 10:35:06 +02001347 mmctx2msgid(msg, pdp->mm);
Harald Welte75bb8202010-03-14 15:45:01 +08001348
1349 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
1350 gh->proto_discr = GSM48_PDISC_SM_GPRS | (transaction_id << 4);
1351 gh->msg_type = GSM48_MT_GSM_ACT_PDP_ACK;
Harald Welte2aea7492010-05-02 23:11:50 +02001352
1353 /* Negotiated LLC SAPI */
Harald Welte29d838e2010-05-18 10:35:06 +02001354 msgb_v_put(msg, pdp->sapi);
Harald Welte7d7fd2b2010-05-18 14:51:18 +02001355
Harald Welte540dcbc2010-05-18 13:20:08 +02001356 /* FIXME: copy QoS parameters from original request */
1357 //msgb_lv_put(msg, pdp->lib->qos_neg.l, pdp->lib->qos_neg.v);
1358 msgb_lv_put(msg, sizeof(default_qos), (uint8_t *)&default_qos);
Harald Welte7d7fd2b2010-05-18 14:51:18 +02001359
Harald Welte2aea7492010-05-02 23:11:50 +02001360 /* Radio priority 10.5.7.2 */
Harald Welte29d838e2010-05-18 10:35:06 +02001361 msgb_v_put(msg, pdp->lib->radio_pri);
Harald Welte7d7fd2b2010-05-18 14:51:18 +02001362
Harald Welte2aea7492010-05-02 23:11:50 +02001363 /* PDP address */
Harald Welte7d7fd2b2010-05-18 14:51:18 +02001364 /* Highest 4 bits of first byte need to be set to 1, otherwise
1365 * the IE is identical with the 04.08 PDP Address IE */
1366 pdp->lib->eua.v[0] &= ~0xf0;
Harald Welte29d838e2010-05-18 10:35:06 +02001367 msgb_tlv_put(msg, GSM48_IE_GSM_PDP_ADDR,
1368 pdp->lib->eua.l, pdp->lib->eua.v);
Harald Welte7d7fd2b2010-05-18 14:51:18 +02001369 pdp->lib->eua.v[0] |= 0xf0;
1370
Harald Welteeb471c92010-05-18 14:32:29 +02001371 /* Optional: Protocol configuration options (FIXME: why 'req') */
Holger Hans Peter Freyther1b51fc22014-04-04 11:55:21 +02001372 if (pdp->lib->pco_req.l)
Harald Welte29d838e2010-05-18 10:35:06 +02001373 msgb_tlv_put(msg, GSM48_IE_GSM_PROTO_CONF_OPT,
Harald Weltef2d66582010-05-18 14:36:11 +02001374 pdp->lib->pco_req.l, pdp->lib->pco_req.v);
Harald Welte7d7fd2b2010-05-18 14:51:18 +02001375
Harald Welte2aea7492010-05-02 23:11:50 +02001376 /* Optional: Packet Flow Identifier */
Harald Welte75bb8202010-03-14 15:45:01 +08001377
Harald Welte8a035af2010-05-18 10:57:45 +02001378 return gsm48_gmm_sendmsg(msg, 0, pdp->mm);
Harald Welte75bb8202010-03-14 15:45:01 +08001379}
1380
Harald Welte29d838e2010-05-18 10:35:06 +02001381/* Section 9.5.3: Activate PDP Context reject */
1382int gsm48_tx_gsm_act_pdp_rej(struct sgsn_mm_ctx *mm, uint8_t tid,
1383 uint8_t cause, uint8_t pco_len, uint8_t *pco_v)
1384{
1385 struct msgb *msg = gsm48_msgb_alloc();
Harald Welte29d838e2010-05-18 10:35:06 +02001386 struct gsm48_hdr *gh;
1387 uint8_t transaction_id = tid ^ 0x8; /* flip */
1388
Daniel Willmannc9ac9732014-09-03 17:46:44 +02001389 LOGMMCTXP(LOGL_NOTICE, mm, "<- ACTIVATE PDP CONTEXT REJ(cause=%u)\n", cause);
Harald Welte29d838e2010-05-18 10:35:06 +02001390
1391 mmctx2msgid(msg, mm);
1392
1393 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
1394 gh->proto_discr = GSM48_PDISC_SM_GPRS | (transaction_id << 4);
1395 gh->msg_type = GSM48_MT_GSM_ACT_PDP_REJ;
1396
1397 msgb_v_put(msg, cause);
1398 if (pco_len && pco_v)
1399 msgb_tlv_put(msg, GSM48_IE_GSM_PROTO_CONF_OPT, pco_len, pco_v);
1400
Harald Welte8a035af2010-05-18 10:57:45 +02001401 return gsm48_gmm_sendmsg(msg, 0, mm);
Harald Welte29d838e2010-05-18 10:35:06 +02001402}
1403
Harald Welte94ecef32010-12-24 21:13:26 +01001404/* Section 9.5.8: Deactivate PDP Context Request */
1405static int _gsm48_tx_gsm_deact_pdp_req(struct sgsn_mm_ctx *mm, uint8_t tid,
1406 uint8_t sm_cause)
1407{
1408 struct msgb *msg = gsm48_msgb_alloc();
1409 struct gsm48_hdr *gh;
1410 uint8_t transaction_id = tid ^ 0x8; /* flip */
1411
Daniel Willmannc9ac9732014-09-03 17:46:44 +02001412 LOGMMCTXP(LOGL_INFO, mm, "<- DEACTIVATE PDP CONTEXT REQ\n");
Harald Welte94ecef32010-12-24 21:13:26 +01001413
1414 mmctx2msgid(msg, mm);
1415
1416 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
1417 gh->proto_discr = GSM48_PDISC_SM_GPRS | (transaction_id << 4);
1418 gh->msg_type = GSM48_MT_GSM_DEACT_PDP_REQ;
1419
1420 msgb_v_put(msg, sm_cause);
1421
1422 return gsm48_gmm_sendmsg(msg, 0, mm);
1423}
1424int gsm48_tx_gsm_deact_pdp_req(struct sgsn_pdp_ctx *pdp, uint8_t sm_cause)
1425{
1426 pdpctx_timer_start(pdp, 3395, GSM0408_T3395_SECS);
1427
1428 return _gsm48_tx_gsm_deact_pdp_req(pdp->mm, pdp->ti, sm_cause);
1429}
1430
Harald Welte75bb8202010-03-14 15:45:01 +08001431/* Section 9.5.9: Deactivate PDP Context Accept */
Harald Welte3b807312010-06-08 18:08:59 +02001432static int _gsm48_tx_gsm_deact_pdp_acc(struct sgsn_mm_ctx *mm, uint8_t tid)
Harald Welte75bb8202010-03-14 15:45:01 +08001433{
Harald Welte75bb8202010-03-14 15:45:01 +08001434 struct msgb *msg = gsm48_msgb_alloc();
1435 struct gsm48_hdr *gh;
Harald Welte3b807312010-06-08 18:08:59 +02001436 uint8_t transaction_id = tid ^ 0x8; /* flip */
Harald Welte75bb8202010-03-14 15:45:01 +08001437
Daniel Willmannc9ac9732014-09-03 17:46:44 +02001438 LOGMMCTXP(LOGL_INFO, mm, "<- DEACTIVATE PDP CONTEXT ACK\n");
Harald Welte75bb8202010-03-14 15:45:01 +08001439
Harald Welte3b807312010-06-08 18:08:59 +02001440 mmctx2msgid(msg, mm);
Harald Welte75bb8202010-03-14 15:45:01 +08001441
1442 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
1443 gh->proto_discr = GSM48_PDISC_SM_GPRS | (transaction_id << 4);
1444 gh->msg_type = GSM48_MT_GSM_DEACT_PDP_ACK;
1445
Harald Welte3b807312010-06-08 18:08:59 +02001446 return gsm48_gmm_sendmsg(msg, 0, mm);
1447}
1448int gsm48_tx_gsm_deact_pdp_acc(struct sgsn_pdp_ctx *pdp)
1449{
1450 return _gsm48_tx_gsm_deact_pdp_acc(pdp->mm, pdp->ti);
Harald Welte75bb8202010-03-14 15:45:01 +08001451}
1452
1453/* Section 9.5.1: Activate PDP Context Request */
Harald Weltec1f6bfe2010-05-17 22:58:03 +02001454static int gsm48_rx_gsm_act_pdp_req(struct sgsn_mm_ctx *mmctx,
1455 struct msgb *msg)
Harald Welte75bb8202010-03-14 15:45:01 +08001456{
Harald Weltecf3c4142010-04-30 16:33:12 +02001457 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_gmmh(msg);
Harald Welte75bb8202010-03-14 15:45:01 +08001458 struct gsm48_act_pdp_ctx_req *act_req = (struct gsm48_act_pdp_ctx_req *) gh->data;
Harald Welteb1fd23a2010-05-02 21:07:14 +02001459 uint8_t req_qos_len, req_pdpa_len;
1460 uint8_t *req_qos, *req_pdpa;
1461 struct tlv_parsed tp;
Harald Welte29d838e2010-05-18 10:35:06 +02001462 uint8_t transaction_id = (gh->proto_discr >> 4);
Harald Welte8bf65d02010-07-02 10:17:24 +02001463 struct sgsn_ggsn_ctx *ggsn;
Harald Welte29d838e2010-05-18 10:35:06 +02001464 struct sgsn_pdp_ctx *pdp;
Harald Welte75bb8202010-03-14 15:45:01 +08001465
Daniel Willmannc9ac9732014-09-03 17:46:44 +02001466 LOGMMCTXP(LOGL_INFO, mmctx, "-> ACTIVATE PDP CONTEXT REQ: SAPI=%u NSAPI=%u ",
Harald Welte29d838e2010-05-18 10:35:06 +02001467 act_req->req_llc_sapi, act_req->req_nsapi);
Harald Welte8a035af2010-05-18 10:57:45 +02001468
Harald Welteb7b0fd72010-07-02 22:52:04 +02001469 /* FIXME: length checks! */
Harald Welteb1fd23a2010-05-02 21:07:14 +02001470 req_qos_len = act_req->data[0];
1471 req_qos = act_req->data + 1; /* 10.5.6.5 */
1472 req_pdpa_len = act_req->data[1 + req_qos_len];
1473 req_pdpa = act_req->data + 1 + req_qos_len + 1; /* 10.5.6.4 */
Harald Welte75bb8202010-03-14 15:45:01 +08001474
Harald Welteb7b0fd72010-07-02 22:52:04 +02001475 /* Optional: Access Point Name, Protocol Config Options */
1476 if (req_pdpa + req_pdpa_len < msg->data + msg->len)
1477 tlv_parse(&tp, &gsm48_sm_att_tlvdef, req_pdpa + req_pdpa_len,
1478 (msg->data + msg->len) - (req_pdpa + req_pdpa_len), 0, 0);
1479 else
1480 memset(&tp, 0, sizeof(tp));
1481
Harald Welteb1fd23a2010-05-02 21:07:14 +02001482 switch (req_pdpa[0] & 0xf) {
1483 case 0x0:
1484 DEBUGPC(DMM, "ETSI ");
1485 break;
1486 case 0x1:
1487 DEBUGPC(DMM, "IETF ");
1488 break;
1489 case 0xf:
1490 DEBUGPC(DMM, "Empty ");
1491 break;
1492 }
1493
1494 switch (req_pdpa[1]) {
1495 case 0x21:
1496 DEBUGPC(DMM, "IPv4 ");
1497 if (req_pdpa_len >= 6) {
1498 struct in_addr ia;
1499 ia.s_addr = ntohl(*((uint32_t *) (req_pdpa+2)));
1500 DEBUGPC(DMM, "%s ", inet_ntoa(ia));
1501 }
1502 break;
1503 case 0x57:
1504 DEBUGPC(DMM, "IPv6 ");
1505 if (req_pdpa_len >= 18) {
1506 /* FIXME: print IPv6 address */
1507 }
1508 break;
1509 default:
1510 DEBUGPC(DMM, "0x%02x ", req_pdpa[1]);
1511 break;
1512 }
1513
Daniel Willmannc9ac9732014-09-03 17:46:44 +02001514 LOGPC(DMM, LOGL_INFO, "\n");
Harald Welteeb471c92010-05-18 14:32:29 +02001515
Harald Welte8f77f192010-05-17 00:44:57 +02001516 /* put the non-TLV elements in the TLV parser structure to
1517 * pass them on to the SGSN / GTP code */
1518 tp.lv[OSMO_IE_GSM_REQ_QOS].len = req_qos_len;
1519 tp.lv[OSMO_IE_GSM_REQ_QOS].val = req_qos;
1520 tp.lv[OSMO_IE_GSM_REQ_PDP_ADDR].len = req_pdpa_len;
1521 tp.lv[OSMO_IE_GSM_REQ_PDP_ADDR].val = req_pdpa;
1522
Harald Welte29d838e2010-05-18 10:35:06 +02001523 /* FIXME: determine GGSN based on APN and subscription options */
Harald Welteb1fd23a2010-05-02 21:07:14 +02001524 if (TLVP_PRESENT(&tp, GSM48_IE_GSM_APN)) {}
Harald Welte29d838e2010-05-18 10:35:06 +02001525
1526 /* Check if NSAPI is out of range (TS 04.65 / 7.2) */
1527 if (act_req->req_nsapi < 5 || act_req->req_nsapi > 15) {
1528 /* Send reject with GSM_CAUSE_INV_MAND_INFO */
1529 return gsm48_tx_gsm_act_pdp_rej(mmctx, transaction_id,
1530 GSM_CAUSE_INV_MAND_INFO,
1531 0, NULL);
1532 }
1533
1534 /* Check if NSAPI is already in use */
Harald Welte5fbac982010-07-02 10:12:58 +02001535 pdp = sgsn_pdp_ctx_by_nsapi(mmctx, act_req->req_nsapi);
1536 if (pdp) {
1537 /* We already have a PDP context for this TLLI + NSAPI tuple */
1538 if (pdp->sapi == act_req->req_llc_sapi &&
1539 pdp->ti == transaction_id) {
1540 /* This apparently is a re-transmission of a PDP CTX
1541 * ACT REQ (our ACT ACK must have got dropped) */
1542 return gsm48_tx_gsm_act_pdp_acc(pdp);
1543 }
1544
1545 /* Send reject with GSM_CAUSE_NSAPI_IN_USE */
Harald Welte29d838e2010-05-18 10:35:06 +02001546 return gsm48_tx_gsm_act_pdp_rej(mmctx, transaction_id,
1547 GSM_CAUSE_NSAPI_IN_USE,
1548 0, NULL);
1549 }
Harald Welte75bb8202010-03-14 15:45:01 +08001550
Harald Weltea456a232010-07-02 10:15:49 +02001551 /* Only increment counter for a real activation, after we checked
1552 * for re-transmissions */
1553 rate_ctr_inc(&mmctx->ctrg->ctr[GMM_CTR_PDP_CTX_ACT]);
1554
Harald Welte8bf65d02010-07-02 10:17:24 +02001555 ggsn = sgsn_ggsn_ctx_by_id(0);
1556 if (!ggsn) {
1557 LOGP(DGPRS, LOGL_ERROR, "No GGSN context 0 found!\n");
1558 return -EIO;
Harald Weltec1f6bfe2010-05-17 22:58:03 +02001559 }
Harald Welte8bf65d02010-07-02 10:17:24 +02001560 ggsn->gsn = sgsn->gsn;
1561 pdp = sgsn_create_pdp_ctx(ggsn, mmctx, act_req->req_nsapi, &tp);
1562 if (!pdp)
1563 return -1;
1564
1565 /* Store SAPI and Transaction Identifier */
1566 pdp->sapi = act_req->req_llc_sapi;
1567 pdp->ti = transaction_id;
1568
Harald Welte64df8ed2010-05-18 17:04:55 +02001569 return 0;
Harald Welte75bb8202010-03-14 15:45:01 +08001570}
1571
1572/* Section 9.5.8: Deactivate PDP Context Request */
Harald Welteeb471c92010-05-18 14:32:29 +02001573static int gsm48_rx_gsm_deact_pdp_req(struct sgsn_mm_ctx *mm, struct msgb *msg)
Harald Welte75bb8202010-03-14 15:45:01 +08001574{
Harald Weltecf3c4142010-04-30 16:33:12 +02001575 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_gmmh(msg);
Harald Welteeb471c92010-05-18 14:32:29 +02001576 uint8_t transaction_id = (gh->proto_discr >> 4);
1577 struct sgsn_pdp_ctx *pdp;
Harald Welte75bb8202010-03-14 15:45:01 +08001578
Daniel Willmannc9ac9732014-09-03 17:46:44 +02001579 LOGMMCTXP(LOGL_INFO, mm, "-> DEACTIVATE PDP CONTEXT REQ (cause: %s)\n",
Harald Welte75bb8202010-03-14 15:45:01 +08001580 get_value_string(gsm_cause_names, gh->data[0]));
1581
Harald Welteeb471c92010-05-18 14:32:29 +02001582 pdp = sgsn_pdp_ctx_by_tid(mm, transaction_id);
1583 if (!pdp) {
Daniel Willmannc9ac9732014-09-03 17:46:44 +02001584 LOGMMCTXP(LOGL_NOTICE, mm, "Deactivate PDP Context Request for "
Harald Welteeb471c92010-05-18 14:32:29 +02001585 "non-existing PDP Context (IMSI=%s, TI=%u)\n",
1586 mm->imsi, transaction_id);
Harald Welte3b807312010-06-08 18:08:59 +02001587 return _gsm48_tx_gsm_deact_pdp_acc(mm, transaction_id);
Harald Welteeb471c92010-05-18 14:32:29 +02001588 }
1589
1590 return sgsn_delete_pdp_ctx(pdp);
Harald Welte75bb8202010-03-14 15:45:01 +08001591}
1592
Harald Welte94ecef32010-12-24 21:13:26 +01001593/* Section 9.5.9: Deactivate PDP Context Accept */
1594static int gsm48_rx_gsm_deact_pdp_ack(struct sgsn_mm_ctx *mm, struct msgb *msg)
1595{
1596 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_gmmh(msg);
1597 uint8_t transaction_id = (gh->proto_discr >> 4);
1598 struct sgsn_pdp_ctx *pdp;
1599
Daniel Willmannc9ac9732014-09-03 17:46:44 +02001600 LOGMMCTXP(LOGL_INFO, mm, "-> DEACTIVATE PDP CONTEXT ACK\n");
Harald Welte94ecef32010-12-24 21:13:26 +01001601
1602 pdp = sgsn_pdp_ctx_by_tid(mm, transaction_id);
1603 if (!pdp) {
Daniel Willmannc9ac9732014-09-03 17:46:44 +02001604 LOGMMCTXP(LOGL_NOTICE, mm, "Deactivate PDP Context Accept for "
Harald Welte94ecef32010-12-24 21:13:26 +01001605 "non-existing PDP Context (IMSI=%s, TI=%u)\n",
1606 mm->imsi, transaction_id);
1607 return 0;
1608 }
1609
1610 return sgsn_delete_pdp_ctx(pdp);
1611}
1612
Harald Weltec1f6bfe2010-05-17 22:58:03 +02001613static int gsm48_rx_gsm_status(struct sgsn_mm_ctx *ctx, struct msgb *msg)
Harald Welte75bb8202010-03-14 15:45:01 +08001614{
1615 struct gsm48_hdr *gh = msgb_l3(msg);
1616
Daniel Willmannc9ac9732014-09-03 17:46:44 +02001617 LOGMMCTXP(LOGL_INFO, ctx, "-> GPRS SM STATUS (cause: %s)\n",
Harald Welte75bb8202010-03-14 15:45:01 +08001618 get_value_string(gsm_cause_names, gh->data[0]));
1619
1620 return 0;
1621}
1622
Harald Welte94ecef32010-12-24 21:13:26 +01001623static void pdpctx_timer_cb(void *_pdp)
1624{
1625 struct sgsn_pdp_ctx *pdp = _pdp;
1626
1627 pdp->num_T_exp++;
1628
1629 switch (pdp->T) {
1630 case 3395: /* waiting for PDP CTX DEACT ACK */
1631 if (pdp->num_T_exp >= 4) {
Daniel Willmannc9ac9732014-09-03 17:46:44 +02001632 LOGPDPCTXP(LOGL_NOTICE, pdp, "T3395 expired >= 5 times\n");
Harald Welte94ecef32010-12-24 21:13:26 +01001633 pdp->state = PDP_STATE_INACTIVE;
1634 sgsn_delete_pdp_ctx(pdp);
1635 break;
1636 }
1637 gsm48_tx_gsm_deact_pdp_req(pdp, GSM_CAUSE_NET_FAIL);
Pablo Neira Ayuso840ccf62011-05-06 12:11:06 +02001638 osmo_timer_schedule(&pdp->timer, GSM0408_T3395_SECS, 0);
Harald Welte94ecef32010-12-24 21:13:26 +01001639 break;
1640 default:
Daniel Willmannc9ac9732014-09-03 17:46:44 +02001641 LOGPDPCTXP(LOGL_ERROR, pdp, "timer expired in unknown mode %u\n",
Harald Welte94ecef32010-12-24 21:13:26 +01001642 pdp->T);
1643 }
1644}
1645
1646
Harald Welte75bb8202010-03-14 15:45:01 +08001647/* GPRS Session Management */
Harald Welte75871c72010-06-01 11:53:01 +02001648static int gsm0408_rcv_gsm(struct sgsn_mm_ctx *mmctx, struct msgb *msg,
1649 struct gprs_llc_llme *llme)
Harald Welte75bb8202010-03-14 15:45:01 +08001650{
Harald Weltecf3c4142010-04-30 16:33:12 +02001651 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_gmmh(msg);
Harald Welte75bb8202010-03-14 15:45:01 +08001652 int rc;
1653
Harald Welte75871c72010-06-01 11:53:01 +02001654 /* MMCTX can be NULL when called */
1655
Harald Weltec1f6bfe2010-05-17 22:58:03 +02001656 if (!mmctx) {
1657 LOGP(DMM, LOGL_NOTICE, "Cannot handle SM for unknown MM CTX\n");
Jacob Erlbeckccaa22a2014-09-05 14:32:36 +02001658 /* 6.1.3.6 */
1659 if (gh->msg_type == GSM48_MT_GSM_STATUS)
1660 return 0;
1661
1662 return sgsn_force_reattach_oldmsg(msg);
Harald Weltec1f6bfe2010-05-17 22:58:03 +02001663 }
1664
Harald Welte75bb8202010-03-14 15:45:01 +08001665 switch (gh->msg_type) {
1666 case GSM48_MT_GSM_ACT_PDP_REQ:
Harald Weltec1f6bfe2010-05-17 22:58:03 +02001667 rc = gsm48_rx_gsm_act_pdp_req(mmctx, msg);
Harald Welte75bb8202010-03-14 15:45:01 +08001668 break;
1669 case GSM48_MT_GSM_DEACT_PDP_REQ:
Harald Weltec1f6bfe2010-05-17 22:58:03 +02001670 rc = gsm48_rx_gsm_deact_pdp_req(mmctx, msg);
Harald Welteeb471c92010-05-18 14:32:29 +02001671 break;
Harald Welte94ecef32010-12-24 21:13:26 +01001672 case GSM48_MT_GSM_DEACT_PDP_ACK:
1673 rc = gsm48_rx_gsm_deact_pdp_ack(mmctx, msg);
1674 break;
Harald Welte75bb8202010-03-14 15:45:01 +08001675 case GSM48_MT_GSM_STATUS:
Harald Weltec1f6bfe2010-05-17 22:58:03 +02001676 rc = gsm48_rx_gsm_status(mmctx, msg);
Harald Welte75bb8202010-03-14 15:45:01 +08001677 break;
1678 case GSM48_MT_GSM_REQ_PDP_ACT_REJ:
1679 case GSM48_MT_GSM_ACT_AA_PDP_REQ:
1680 case GSM48_MT_GSM_DEACT_AA_PDP_REQ:
Daniel Willmannc9ac9732014-09-03 17:46:44 +02001681 LOGMMCTXP(LOGL_NOTICE, mmctx, "Unimplemented GSM 04.08 GSM msg type 0x%02x\n",
Harald Welte75bb8202010-03-14 15:45:01 +08001682 gh->msg_type);
Harald Welte263edd12010-06-09 10:51:23 +02001683 rc = gsm48_tx_sm_status(mmctx, GSM_CAUSE_MSGT_NOTEXIST_NOTIMPL);
Harald Welte75bb8202010-03-14 15:45:01 +08001684 break;
1685 default:
Daniel Willmannc9ac9732014-09-03 17:46:44 +02001686 LOGMMCTXP(LOGL_NOTICE, mmctx, "Unknown GSM 04.08 GSM msg type 0x%02x\n",
Harald Welte75bb8202010-03-14 15:45:01 +08001687 gh->msg_type);
Harald Welte263edd12010-06-09 10:51:23 +02001688 rc = gsm48_tx_sm_status(mmctx, GSM_CAUSE_MSGT_NOTEXIST_NOTIMPL);
Harald Welte75bb8202010-03-14 15:45:01 +08001689 break;
1690
1691 }
1692
1693 return rc;
1694}
1695
Jacob Erlbeckccaa22a2014-09-05 14:32:36 +02001696int gsm0408_gprs_force_reattach(struct msgb *msg, struct sgsn_mm_ctx *mmctx)
1697{
1698 gprs_llgmm_reset_oldmsg(msg, GPRS_SAPI_GMM);
1699
1700 if (!mmctx)
1701 return gsm48_tx_gmm_detach_req_oldmsg(
1702 msg, GPRS_DET_T_MT_REATT_REQ, GMM_CAUSE_IMPL_DETACHED);
1703
1704 /* Mark MM state as deregistered initiated */
1705 mmctx->mm_state = GMM_DEREGISTERED_INIT;
1706
1707 /* Delete all existing PDP contexts for this MS */
1708 delete_pdp_contexts(mmctx, "forced reattach");
1709
1710 /* TODO:
1711 * properly start detach procedure (timeout, wait for ACK) and
1712 * do nothing if a re-attach is in progress */
1713
1714 return gsm48_tx_gmm_detach_req(
1715 mmctx, GPRS_DET_T_MT_REATT_REQ, GMM_CAUSE_IMPL_DETACHED);
1716}
1717
Harald Welte75bb8202010-03-14 15:45:01 +08001718/* Main entry point for incoming 04.08 GPRS messages */
Harald Welte75871c72010-06-01 11:53:01 +02001719int gsm0408_gprs_rcvmsg(struct msgb *msg, struct gprs_llc_llme *llme)
Harald Welte75bb8202010-03-14 15:45:01 +08001720{
Harald Weltecf3c4142010-04-30 16:33:12 +02001721 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_gmmh(msg);
Harald Welted85d9a92010-05-02 11:26:34 +02001722 uint8_t pdisc = gh->proto_discr & 0x0f;
Harald Weltec1f6bfe2010-05-17 22:58:03 +02001723 struct sgsn_mm_ctx *mmctx;
1724 struct gprs_ra_id ra_id;
Harald Welte75bb8202010-03-14 15:45:01 +08001725 int rc = -EINVAL;
1726
Harald Weltec1f6bfe2010-05-17 22:58:03 +02001727 bssgp_parse_cell_id(&ra_id, msgb_bcid(msg));
1728 mmctx = sgsn_mm_ctx_by_tlli(msgb_tlli(msg), &ra_id);
Harald Welte8a035af2010-05-18 10:57:45 +02001729 if (mmctx) {
Harald Welte29d838e2010-05-18 10:35:06 +02001730 msgid2mmctx(mmctx, msg);
Harald Welte8a035af2010-05-18 10:57:45 +02001731 rate_ctr_inc(&mmctx->ctrg->ctr[GMM_CTR_PKTS_SIG_IN]);
Harald Welte75871c72010-06-01 11:53:01 +02001732 mmctx->llme = llme;
Harald Welte8a035af2010-05-18 10:57:45 +02001733 }
Harald Weltec1f6bfe2010-05-17 22:58:03 +02001734
1735 /* MMCTX can be NULL */
1736
Harald Welte75bb8202010-03-14 15:45:01 +08001737 switch (pdisc) {
1738 case GSM48_PDISC_MM_GPRS:
Harald Welte75871c72010-06-01 11:53:01 +02001739 rc = gsm0408_rcv_gmm(mmctx, msg, llme);
Harald Welte75bb8202010-03-14 15:45:01 +08001740 break;
1741 case GSM48_PDISC_SM_GPRS:
Harald Welte75871c72010-06-01 11:53:01 +02001742 rc = gsm0408_rcv_gsm(mmctx, msg, llme);
Harald Welte75bb8202010-03-14 15:45:01 +08001743 break;
1744 default:
Daniel Willmannc9ac9732014-09-03 17:46:44 +02001745 LOGP(DMM, LOGL_NOTICE, "Unknown GSM 04.08 discriminator 0x%02x\n",
Harald Welte75bb8202010-03-14 15:45:01 +08001746 pdisc);
Harald Welte29d838e2010-05-18 10:35:06 +02001747 /* FIXME: return status message */
Harald Welte75bb8202010-03-14 15:45:01 +08001748 break;
1749 }
1750
Jacob Erlbeck12396bd2014-09-30 13:51:45 +02001751 /* MMCTX can be invalid */
1752
Harald Welte75bb8202010-03-14 15:45:01 +08001753 return rc;
1754}
Harald Welte50264822010-06-09 11:22:47 +02001755
1756int gprs_gmm_rx_suspend(struct gprs_ra_id *raid, uint32_t tlli)
1757{
1758 struct sgsn_mm_ctx *mmctx;
1759
1760 mmctx = sgsn_mm_ctx_by_tlli(tlli, raid);
1761 if (!mmctx) {
1762 LOGP(DMM, LOGL_NOTICE, "SUSPEND request for unknown "
1763 "TLLI=%08x\n", tlli);
1764 return -EINVAL;
1765 }
1766
1767 if (mmctx->mm_state != GMM_REGISTERED_NORMAL) {
Daniel Willmannc9ac9732014-09-03 17:46:44 +02001768 LOGMMCTXP(LOGL_NOTICE, mmctx, "SUSPEND request while state "
Harald Welte50264822010-06-09 11:22:47 +02001769 "!= REGISTERED (TLLI=%08x)\n", tlli);
1770 return -EINVAL;
1771 }
1772
1773 /* Transition from REGISTERED_NORMAL to REGISTERED_SUSPENDED */
1774 mmctx->mm_state = GMM_REGISTERED_SUSPENDED;
1775 return 0;
1776}
1777
1778int gprs_gmm_rx_resume(struct gprs_ra_id *raid, uint32_t tlli,
1779 uint8_t suspend_ref)
1780{
1781 struct sgsn_mm_ctx *mmctx;
1782
1783 /* FIXME: make use of suspend reference? */
1784
1785 mmctx = sgsn_mm_ctx_by_tlli(tlli, raid);
1786 if (!mmctx) {
1787 LOGP(DMM, LOGL_NOTICE, "RESUME request for unknown "
1788 "TLLI=%08x\n", tlli);
1789 return -EINVAL;
1790 }
1791
1792 if (mmctx->mm_state != GMM_REGISTERED_SUSPENDED) {
Daniel Willmannc9ac9732014-09-03 17:46:44 +02001793 LOGMMCTXP(LOGL_NOTICE, mmctx, "RESUME request while state "
Harald Welte50264822010-06-09 11:22:47 +02001794 "!= SUSPENDED (TLLI=%08x)\n", tlli);
1795 /* FIXME: should we not simply ignore it? */
1796 return -EINVAL;
1797 }
1798
1799 /* Transition from SUSPENDED to NORMAL */
1800 mmctx->mm_state = GMM_REGISTERED_NORMAL;
1801 return 0;
1802}