blob: bb61ab50a49c3134d4851f7ced6fc86b6f31aa1f [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
59/* Section 11.2.2 / Table 11.4 MM timers netowkr side */
60#define GSM0408_T3322_SECS 6 /* DETACH_REQ -> DETACH_ACC */
61#define GSM0408_T3350_SECS 6 /* waiting for ATT/RAU/TMSI COMPL */
62#define GSM0408_T3360_SECS 6 /* waiting for AUTH/CIPH RESP */
63#define GSM0408_T3370_SECS 6 /* waiting for ID RESP */
64
65/* Section 11.2.2 / Table 11.4a MM timers netowkr side */
66#define GSM0408_T3313_SECS 30 /* waiting for paging response */
67#define GSM0408_T3314_SECS 44 /* force to STBY on expiry */
68#define GSM0408_T3316_SECS 44
69
Harald 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
Harald Welted9610722010-06-09 10:28:29 +0200174static const struct tlv_definition gsm48_gmm_att_tlvdef = {
175 .def = {
Harald Welte45fcf682010-07-03 11:09:06 +0200176 [GSM48_IE_GMM_CIPH_CKSN] = { TLV_TYPE_FIXED, 1 },
Harald Welted9610722010-06-09 10:28:29 +0200177 [GSM48_IE_GMM_TIMER_READY] = { TLV_TYPE_TV, 1 },
178 [GSM48_IE_GMM_ALLOC_PTMSI] = { TLV_TYPE_TLV, 0 },
Harald Welte45fcf682010-07-03 11:09:06 +0200179 [GSM48_IE_GMM_PTMSI_SIG] = { TLV_TYPE_FIXED, 3 },
180 [GSM48_IE_GMM_AUTH_RAND] = { TLV_TYPE_FIXED, 16 },
181 [GSM48_IE_GMM_AUTH_SRES] = { TLV_TYPE_FIXED, 4 },
Harald Welted9610722010-06-09 10:28:29 +0200182 [GSM48_IE_GMM_IMEISV] = { TLV_TYPE_TLV, 0 },
Harald Welte45fcf682010-07-03 11:09:06 +0200183 [GSM48_IE_GMM_DRX_PARAM] = { TLV_TYPE_FIXED, 2 },
Harald Welted9610722010-06-09 10:28:29 +0200184 [GSM48_IE_GMM_MS_NET_CAPA] = { TLV_TYPE_TLV, 0 },
185 [GSM48_IE_GMM_PDP_CTX_STATUS] = { TLV_TYPE_TLV, 0 },
186 [GSM48_IE_GMM_PS_LCS_CAPA] = { TLV_TYPE_TLV, 0 },
187 [GSM48_IE_GMM_GMM_MBMS_CTX_ST] = { TLV_TYPE_TLV, 0 },
188 },
189};
190
191static const struct tlv_definition gsm48_sm_att_tlvdef = {
192 .def = {
193 [GSM48_IE_GSM_APN] = { TLV_TYPE_TLV, 0 },
194 [GSM48_IE_GSM_PROTO_CONF_OPT] = { TLV_TYPE_TLV, 0 },
195 [GSM48_IE_GSM_PDP_ADDR] = { TLV_TYPE_TLV, 0 },
196 [GSM48_IE_GSM_AA_TMR] = { TLV_TYPE_TV, 1 },
197 [GSM48_IE_GSM_NAME_FULL] = { TLV_TYPE_TLV, 0 },
198 [GSM48_IE_GSM_NAME_SHORT] = { TLV_TYPE_TLV, 0 },
Harald Welte45fcf682010-07-03 11:09:06 +0200199 [GSM48_IE_GSM_TIMEZONE] = { TLV_TYPE_FIXED, 1 },
200 [GSM48_IE_GSM_UTC_AND_TZ] = { TLV_TYPE_FIXED, 7 },
Harald Welted9610722010-06-09 10:28:29 +0200201 [GSM48_IE_GSM_LSA_ID] = { TLV_TYPE_TLV, 0 },
202 },
203};
204
Harald Welte8f77f192010-05-17 00:44:57 +0200205/* Our implementation, should be kept in SGSN */
Harald Welte75bb8202010-03-14 15:45:01 +0800206
Harald Welte7e01d8e2010-05-31 20:23:38 +0200207static void mmctx_timer_cb(void *_mm);
208
209static void mmctx_timer_start(struct sgsn_mm_ctx *mm, unsigned int T,
210 unsigned int seconds)
211{
Pablo Neira Ayuso840ccf62011-05-06 12:11:06 +0200212 if (osmo_timer_pending(&mm->timer))
Harald Welte7e01d8e2010-05-31 20:23:38 +0200213 LOGP(DMM, LOGL_ERROR, "Starting MM timer %u while old "
214 "timer %u pending\n", T, mm->T);
215 mm->T = T;
216 mm->num_T_exp = 0;
217
218 /* FIXME: we should do this only once ? */
219 mm->timer.data = mm;
220 mm->timer.cb = &mmctx_timer_cb;
221
Pablo Neira Ayuso840ccf62011-05-06 12:11:06 +0200222 osmo_timer_schedule(&mm->timer, seconds, 0);
Harald Welte7e01d8e2010-05-31 20:23:38 +0200223}
224
225static void mmctx_timer_stop(struct sgsn_mm_ctx *mm, unsigned int T)
226{
227 if (mm->T != T)
228 LOGP(DMM, LOGL_ERROR, "Stopping MM timer %u but "
229 "%u is running\n", T, mm->T);
Pablo Neira Ayuso840ccf62011-05-06 12:11:06 +0200230 osmo_timer_del(&mm->timer);
Harald Welte7e01d8e2010-05-31 20:23:38 +0200231}
232
Harald Welte75bb8202010-03-14 15:45:01 +0800233/* Send a message through the underlying layer */
Harald Welte8a035af2010-05-18 10:57:45 +0200234static int gsm48_gmm_sendmsg(struct msgb *msg, int command,
Holger Hans Peter Freytherf01f18e2011-10-14 23:31:34 +0200235 struct sgsn_mm_ctx *mm)
Harald Welte75bb8202010-03-14 15:45:01 +0800236{
Harald Welte8a035af2010-05-18 10:57:45 +0200237 if (mm)
238 rate_ctr_inc(&mm->ctrg->ctr[GMM_CTR_PKTS_SIG_OUT]);
239
Harald Welte2351f1f2010-05-02 11:54:55 +0200240 /* caller needs to provide TLLI, BVCI and NSEI */
Harald Weltecca80c92010-05-31 22:12:30 +0200241 return gprs_llc_tx_ui(msg, GPRS_SAPI_GMM, command, mm);
Harald Welte75bb8202010-03-14 15:45:01 +0800242}
243
Harald Welte2351f1f2010-05-02 11:54:55 +0200244/* copy identifiers from old message to new message, this
245 * is required so lower layers can route it correctly */
246static void gmm_copy_id(struct msgb *msg, const struct msgb *old)
247{
248 msgb_tlli(msg) = msgb_tlli(old);
249 msgb_bvci(msg) = msgb_bvci(old);
250 msgb_nsei(msg) = msgb_nsei(old);
251}
252
Harald Welte29d838e2010-05-18 10:35:06 +0200253/* Store BVCI/NSEI in MM context */
254static void msgid2mmctx(struct sgsn_mm_ctx *mm, const struct msgb *msg)
255{
256 mm->bvci = msgb_bvci(msg);
257 mm->nsei = msgb_nsei(msg);
258}
259
260/* Store BVCI/NSEI in MM context */
261static void mmctx2msgid(struct msgb *msg, const struct sgsn_mm_ctx *mm)
262{
263 msgb_tlli(msg) = mm->tlli;
264 msgb_bvci(msg) = mm->bvci;
265 msgb_nsei(msg) = mm->nsei;
266}
267
Harald Welte263edd12010-06-09 10:51:23 +0200268/* Chapter 9.4.18 */
269static int _tx_status(struct msgb *msg, uint8_t cause,
270 struct sgsn_mm_ctx *mmctx, int sm)
271{
272 struct gsm48_hdr *gh;
273
274 /* MMCTX might be NULL! */
275
276 DEBUGP(DMM, "<- GPRS MM STATUS (cause: %s)\n",
277 get_value_string(gmm_cause_names, cause));
278
279 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh) + 1);
280 if (sm) {
281 gh->proto_discr = GSM48_PDISC_SM_GPRS;
282 gh->msg_type = GSM48_MT_GSM_STATUS;
283 } else {
284 gh->proto_discr = GSM48_PDISC_MM_GPRS;
285 gh->msg_type = GSM48_MT_GMM_STATUS;
286 }
287 gh->data[0] = cause;
288
289 return gsm48_gmm_sendmsg(msg, 0, mmctx);
290}
291static int gsm48_tx_gmm_status(struct sgsn_mm_ctx *mmctx, uint8_t cause)
292{
293 struct msgb *msg = gsm48_msgb_alloc();
294
295 mmctx2msgid(msg, mmctx);
296 return _tx_status(msg, cause, mmctx, 0);
297};
298static int gsm48_tx_gmm_status_oldmsg(struct msgb *oldmsg, uint8_t cause)
299{
300 struct msgb *msg = gsm48_msgb_alloc();
301
302 gmm_copy_id(msg, oldmsg);
303 return _tx_status(msg, cause, NULL, 0);
304}
305static int gsm48_tx_sm_status(struct sgsn_mm_ctx *mmctx, uint8_t cause)
306{
307 struct msgb *msg = gsm48_msgb_alloc();
308
309 mmctx2msgid(msg, mmctx);
310 return _tx_status(msg, cause, mmctx, 1);
311};
312static int gsm48_tx_sm_status_oldmsg(struct msgb *oldmsg, uint8_t cause)
313{
314 struct msgb *msg = gsm48_msgb_alloc();
315
316 gmm_copy_id(msg, oldmsg);
317 return _tx_status(msg, cause, NULL, 1);
318}
319
320
Harald Welte242d1722010-05-03 10:54:35 +0200321static struct gsm48_qos default_qos = {
322 .delay_class = 4, /* best effort */
323 .reliab_class = GSM48_QOS_RC_LLC_UN_RLC_ACK_DATA_PROT,
324 .peak_tput = GSM48_QOS_PEAK_TPUT_32000bps,
325 .preced_class = GSM48_QOS_PC_NORMAL,
326 .mean_tput = GSM48_QOS_MEAN_TPUT_BEST_EFFORT,
327 .traf_class = GSM48_QOS_TC_INTERACTIVE,
328 .deliv_order = GSM48_QOS_DO_UNORDERED,
329 .deliv_err_sdu = GSM48_QOS_ERRSDU_YES,
330 .max_sdu_size = GSM48_QOS_MAXSDU_1520,
331 .max_bitrate_up = GSM48_QOS_MBRATE_63k,
332 .max_bitrate_down = GSM48_QOS_MBRATE_63k,
333 .resid_ber = GSM48_QOS_RBER_5e_2,
334 .sdu_err_ratio = GSM48_QOS_SERR_1e_2,
335 .handling_prio = 3,
336 .xfer_delay = 0x10, /* 200ms */
337 .guar_bitrate_up = GSM48_QOS_MBRATE_0k,
338 .guar_bitrate_down = GSM48_QOS_MBRATE_0k,
339 .sig_ind = 0, /* not optimised for signalling */
340 .max_bitrate_down_ext = 0, /* use octet 9 */
341 .guar_bitrate_down_ext = 0, /* use octet 13 */
342};
343
Harald Welte75bb8202010-03-14 15:45:01 +0800344/* Chapter 9.4.2: Attach accept */
Harald Welte64df8ed2010-05-18 17:04:55 +0200345static int gsm48_tx_gmm_att_ack(struct sgsn_mm_ctx *mm)
Harald Welte75bb8202010-03-14 15:45:01 +0800346{
347 struct msgb *msg = gsm48_msgb_alloc();
348 struct gsm48_hdr *gh;
349 struct gsm48_attach_ack *aa;
Harald Welte50d44fe2010-05-18 17:20:49 +0200350 uint8_t *ptsig, *mid;
Harald Welte75bb8202010-03-14 15:45:01 +0800351
Harald Welte7e01d8e2010-05-31 20:23:38 +0200352 DEBUGP(DMM, "<- GPRS ATTACH ACCEPT (new P-TMSI=0x%08x)\n", mm->p_tmsi);
Harald Welte75bb8202010-03-14 15:45:01 +0800353
Harald Welte64df8ed2010-05-18 17:04:55 +0200354 mmctx2msgid(msg, mm);
Harald Welte75bb8202010-03-14 15:45:01 +0800355
356 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
357 gh->proto_discr = GSM48_PDISC_MM_GPRS;
358 gh->msg_type = GSM48_MT_GMM_ATTACH_ACK;
359
360 aa = (struct gsm48_attach_ack *) msgb_put(msg, sizeof(*aa));
361 aa->force_stby = 0; /* not indicated */
362 aa->att_result = 1; /* GPRS only */
363 aa->ra_upd_timer = GPRS_TMR_MINUTE | 10;
364 aa->radio_prio = 4; /* lowest */
Harald Welte64df8ed2010-05-18 17:04:55 +0200365 gsm48_construct_ra(aa->ra_id.digits, &mm->ra);
Harald Welte75bb8202010-03-14 15:45:01 +0800366
Harald Welteebe8a6d2010-05-18 19:58:38 +0200367#if 0
Harald Welte64df8ed2010-05-18 17:04:55 +0200368 /* Optional: P-TMSI signature */
369 msgb_v_put(msg, GSM48_IE_GMM_PTMSI_SIG);
370 ptsig = msgb_put(msg, 3);
371 ptsig[0] = mm->p_tmsi_sig >> 16;
372 ptsig[1] = mm->p_tmsi_sig >> 8;
373 ptsig[2] = mm->p_tmsi_sig & 0xff;
374
375 /* Optional: Negotiated Ready timer value */
Harald Welte7e01d8e2010-05-31 20:23:38 +0200376#endif
Harald Welte64df8ed2010-05-18 17:04:55 +0200377
Harald Welte7e01d8e2010-05-31 20:23:38 +0200378#ifdef PTMSI_ALLOC
Harald Welte64df8ed2010-05-18 17:04:55 +0200379 /* Optional: Allocated P-TMSI */
Harald Welte64df8ed2010-05-18 17:04:55 +0200380 mid = msgb_put(msg, GSM48_MID_TMSI_LEN);
381 gsm48_generate_mid_from_tmsi(mid, mm->p_tmsi);
Harald Welteebe8a6d2010-05-18 19:58:38 +0200382 mid[0] = GSM48_IE_GMM_ALLOC_PTMSI;
383#endif
Harald Welte7e01d8e2010-05-31 20:23:38 +0200384
Harald Welte64df8ed2010-05-18 17:04:55 +0200385 /* Optional: MS-identity (combined attach) */
386 /* Optional: GMM cause (partial attach result for combined attach) */
387
Harald Weltecca80c92010-05-31 22:12:30 +0200388 return gsm48_gmm_sendmsg(msg, 0, mm);
Harald Welte75bb8202010-03-14 15:45:01 +0800389}
390
391/* Chapter 9.4.5: Attach reject */
Harald Welte64df8ed2010-05-18 17:04:55 +0200392static int _tx_gmm_att_rej(struct msgb *msg, uint8_t gmm_cause)
Harald Welte75bb8202010-03-14 15:45:01 +0800393{
Harald Welte75bb8202010-03-14 15:45:01 +0800394 struct gsm48_hdr *gh;
395
396 DEBUGP(DMM, "<- GPRS ATTACH REJECT\n");
397
Harald Welte75bb8202010-03-14 15:45:01 +0800398 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh) + 1);
399 gh->proto_discr = GSM48_PDISC_MM_GPRS;
400 gh->msg_type = GSM48_MT_GMM_ATTACH_REJ;
401 gh->data[0] = gmm_cause;
402
Harald Welte8a035af2010-05-18 10:57:45 +0200403 return gsm48_gmm_sendmsg(msg, 0, NULL);
Harald Welte75bb8202010-03-14 15:45:01 +0800404}
Harald Welte64df8ed2010-05-18 17:04:55 +0200405static int gsm48_tx_gmm_att_rej_oldmsg(const struct msgb *old_msg,
406 uint8_t gmm_cause)
407{
408 struct msgb *msg = gsm48_msgb_alloc();
409 gmm_copy_id(msg, old_msg);
410 return _tx_gmm_att_rej(msg, gmm_cause);
411}
412static int gsm48_tx_gmm_att_rej(struct sgsn_mm_ctx *mm,
413 uint8_t gmm_cause)
414{
415 struct msgb *msg = gsm48_msgb_alloc();
416 mmctx2msgid(msg, mm);
417 return _tx_gmm_att_rej(msg, gmm_cause);
418}
Harald Welte75bb8202010-03-14 15:45:01 +0800419
Harald Welte8f77f192010-05-17 00:44:57 +0200420/* Chapter 9.4.6.2 Detach accept */
Harald Welte50d44fe2010-05-18 17:20:49 +0200421static int gsm48_tx_gmm_det_ack(struct sgsn_mm_ctx *mm, uint8_t force_stby)
Harald Welte8f77f192010-05-17 00:44:57 +0200422{
423 struct msgb *msg = gsm48_msgb_alloc();
424 struct gsm48_hdr *gh;
425
426 DEBUGP(DMM, "<- GPRS DETACH ACCEPT\n");
427
Harald Welte64df8ed2010-05-18 17:04:55 +0200428 mmctx2msgid(msg, mm);
429
Harald Welte8f77f192010-05-17 00:44:57 +0200430 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh) + 1);
431 gh->proto_discr = GSM48_PDISC_MM_GPRS;
432 gh->msg_type = GSM48_MT_GMM_DETACH_ACK;
433 gh->data[0] = force_stby;
434
Harald Weltecca80c92010-05-31 22:12:30 +0200435 return gsm48_gmm_sendmsg(msg, 0, mm);
Harald Welte8f77f192010-05-17 00:44:57 +0200436}
437
Harald Welte75bb8202010-03-14 15:45:01 +0800438/* Transmit Chapter 9.4.12 Identity Request */
Harald Welte64df8ed2010-05-18 17:04:55 +0200439static int gsm48_tx_gmm_id_req(struct sgsn_mm_ctx *mm, uint8_t id_type)
Harald Welte75bb8202010-03-14 15:45:01 +0800440{
441 struct msgb *msg = gsm48_msgb_alloc();
442 struct gsm48_hdr *gh;
443
Harald Welte96cf2482010-05-31 22:31:04 +0200444 DEBUGP(DMM, "<- GPRS IDENTITY REQUEST: mi_type=%02x\n", id_type);
Harald Welte75bb8202010-03-14 15:45:01 +0800445
Harald Welte64df8ed2010-05-18 17:04:55 +0200446 mmctx2msgid(msg, mm);
Harald Welte75bb8202010-03-14 15:45:01 +0800447
448 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh) + 1);
449 gh->proto_discr = GSM48_PDISC_MM_GPRS;
450 gh->msg_type = GSM48_MT_GMM_ID_REQ;
451 /* 10.5.5.9 ID type 2 + identity type and 10.5.5.7 'force to standby' IE */
452 gh->data[0] = id_type & 0xf;
453
Harald Welte96cf2482010-05-31 22:31:04 +0200454 return gsm48_gmm_sendmsg(msg, 1, mm);
Harald Welte75bb8202010-03-14 15:45:01 +0800455}
456
Harald Welte45fcf682010-07-03 11:09:06 +0200457/* Section 9.4.9: Authentication and Ciphering Request */
458static int gsm48_tx_gmm_auth_ciph_req(struct sgsn_mm_ctx *mm, uint8_t *rand,
459 uint8_t key_seq, uint8_t algo)
460{
461 struct msgb *msg = gsm48_msgb_alloc();
462 struct gsm48_hdr *gh;
463 struct gsm48_auth_ciph_req *acreq;
464 uint8_t *m_rand, *m_cksn;
465
466 DEBUGP(DMM, "<- GPRS AUTH AND CIPHERING REQ (rand = %s)\n",
Pablo Neira Ayusob1d5a692011-05-07 12:12:48 +0200467 osmo_hexdump(rand, 16));
Harald Welte45fcf682010-07-03 11:09:06 +0200468
469 mmctx2msgid(msg, mm);
470
471 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
472 gh->proto_discr = GSM48_PDISC_MM_GPRS;
473 gh->msg_type = GSM48_MT_GMM_AUTH_CIPH_REQ;
474
475 acreq = (struct gsm48_auth_ciph_req *) msgb_put(msg, sizeof(*acreq));
476 acreq->ciph_alg = algo & 0xf;
477 acreq->imeisv_req = 0x1;
478 acreq->force_stby = 0x0;
479 acreq->ac_ref_nr = 0x0; /* FIXME: increment this? */
480
481 /* Only if authentication is requested we need to set RAND + CKSN */
482 if (rand) {
483 m_rand = msgb_put(msg, 16+1);
484 m_rand[0] = GSM48_IE_GMM_AUTH_RAND;
485 memcpy(m_rand+1, rand, 16);
486
487 m_cksn = msgb_put(msg, 1+1);
488 m_cksn[0] = GSM48_IE_GMM_CIPH_CKSN;
489 m_cksn[1] = key_seq;
490 }
491
492 /* Start T3360 */
493 mmctx_timer_start(mm, 3360, GSM0408_T3360_SECS);
494
495 /* FIXME: make sure we don't send any other messages to the MS */
496
497 return gsm48_gmm_sendmsg(msg, 1, mm);
498}
499
500/* Section 9.4.11: Authentication and Ciphering Reject */
501static int gsm48_tx_gmm_auth_ciph_rej(struct sgsn_mm_ctx *mm)
502{
503 struct msgb *msg = gsm48_msgb_alloc();
504 struct gsm48_hdr *gh;
505
506 DEBUGP(DMM, "<- GPRS AUTH AND CIPH REJECT\n");
507
508 mmctx2msgid(msg, mm);
509
510 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
511 gh->proto_discr = GSM48_PDISC_MM_GPRS;
512 gh->msg_type = GSM48_MT_GMM_AUTH_CIPH_REJ;
513
514 return gsm48_gmm_sendmsg(msg, 0, mm);
515}
516
517/* Section 9.4.10: Authentication and Ciphering Response */
518static int gsm48_rx_gmm_auth_ciph_resp(struct sgsn_mm_ctx *ctx,
519 struct msgb *msg)
520{
521 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_gmmh(msg);
522 struct gsm48_auth_ciph_resp *acr = (struct gsm48_auth_ciph_resp *)gh->data;
523 struct tlv_parsed tp;
524 int rc;
525
526 /* FIXME: Stop T3360 */
527
528 rc = tlv_parse(&tp, &gsm48_gmm_att_tlvdef, acr->data,
529 (msg->data + msg->len) - acr->data, 0, 0);
530
531 /* FIXME: compare ac_ref? */
532
533 if (!TLVP_PRESENT(&tp, GSM48_IE_GMM_AUTH_SRES) ||
534 !TLVP_PRESENT(&tp, GSM48_IE_GMM_IMEISV)) {
535 /* FIXME: missing mandatory IE */
536 }
537
538 /* FIXME: compare SRES with what we expected */
539 /* FIXME: enable LLC cipheirng */
540 return 0;
541}
542
Harald Welte75bb8202010-03-14 15:45:01 +0800543/* Check if we can already authorize a subscriber */
Harald Welte7e01d8e2010-05-31 20:23:38 +0200544static int gsm48_gmm_authorize(struct sgsn_mm_ctx *ctx,
545 enum gprs_t3350_mode t3350_mode)
Harald Welte75bb8202010-03-14 15:45:01 +0800546{
547 if (strlen(ctx->imei) && strlen(ctx->imsi)) {
Harald Welte7e01d8e2010-05-31 20:23:38 +0200548#ifdef PTMSI_ALLOC
549 /* Start T3350 and re-transmit up to 5 times until ATTACH COMPLETE */
550 ctx->t3350_mode = t3350_mode;
551 mmctx_timer_start(ctx, 3350, GSM0408_T3350_SECS);
552#endif
Harald Welte75bb8202010-03-14 15:45:01 +0800553 ctx->mm_state = GMM_REGISTERED_NORMAL;
Harald Welte64df8ed2010-05-18 17:04:55 +0200554 return gsm48_tx_gmm_att_ack(ctx);
Harald Welte75bb8202010-03-14 15:45:01 +0800555 }
Harald Welte7e01d8e2010-05-31 20:23:38 +0200556 if (!strlen(ctx->imei)) {
557 ctx->mm_state = GMM_COMMON_PROC_INIT;
558 ctx->t3370_id_type = GSM_MI_TYPE_IMEI;
559 mmctx_timer_start(ctx, 3370, GSM0408_T3370_SECS);
Harald Welte64df8ed2010-05-18 17:04:55 +0200560 return gsm48_tx_gmm_id_req(ctx, GSM_MI_TYPE_IMEI);
Harald Welte7e01d8e2010-05-31 20:23:38 +0200561 }
Harald Welte75bb8202010-03-14 15:45:01 +0800562
Harald Welte7e01d8e2010-05-31 20:23:38 +0200563 if (!strlen(ctx->imsi)) {
564 ctx->mm_state = GMM_COMMON_PROC_INIT;
565 ctx->t3370_id_type = GSM_MI_TYPE_IMSI;
566 mmctx_timer_start(ctx, 3370, GSM0408_T3370_SECS);
Harald Welte64df8ed2010-05-18 17:04:55 +0200567 return gsm48_tx_gmm_id_req(ctx, GSM_MI_TYPE_IMSI);
Harald Welte7e01d8e2010-05-31 20:23:38 +0200568 }
Harald Welte75bb8202010-03-14 15:45:01 +0800569
570 return 0;
571}
572
573/* Parse Chapter 9.4.13 Identity Response */
Harald Weltec1f6bfe2010-05-17 22:58:03 +0200574static int gsm48_rx_gmm_id_resp(struct sgsn_mm_ctx *ctx, struct msgb *msg)
Harald Welte75bb8202010-03-14 15:45:01 +0800575{
Harald Weltecf3c4142010-04-30 16:33:12 +0200576 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_gmmh(msg);
Harald Welted85d9a92010-05-02 11:26:34 +0200577 uint8_t mi_type = gh->data[1] & GSM_MI_TYPE_MASK;
Harald Welte75bb8202010-03-14 15:45:01 +0800578 char mi_string[GSM48_MI_SIZE];
Harald Welte75bb8202010-03-14 15:45:01 +0800579
580 gsm48_mi_to_string(mi_string, sizeof(mi_string), &gh->data[1], gh->data[0]);
Harald Welte8f77f192010-05-17 00:44:57 +0200581 DEBUGP(DMM, "-> GMM IDENTITY RESPONSE: mi_type=0x%02x MI(%s) ",
Harald Welte75bb8202010-03-14 15:45:01 +0800582 mi_type, mi_string);
583
Harald Welte75bb8202010-03-14 15:45:01 +0800584 if (!ctx) {
Harald Weltecf3c4142010-04-30 16:33:12 +0200585 DEBUGP(DMM, "from unknown TLLI 0x%08x?!?\n", msgb_tlli(msg));
Harald Welte75bb8202010-03-14 15:45:01 +0800586 return -EINVAL;
587 }
588
Harald Welte7e01d8e2010-05-31 20:23:38 +0200589 if (mi_type == ctx->t3370_id_type)
590 mmctx_timer_stop(ctx, 3370);
591
Harald Welte75bb8202010-03-14 15:45:01 +0800592 switch (mi_type) {
593 case GSM_MI_TYPE_IMSI:
594 /* we already have a mm context with current TLLI, but no
595 * P-TMSI / IMSI yet. What we now need to do is to fill
596 * this initial context with data from the HLR */
Harald Weltec6e196f2010-12-24 23:07:18 +0100597 if (strlen(ctx->imsi) == 0) {
598 /* Check if we already have a MM context for this IMSI */
599 struct sgsn_mm_ctx *ictx;
600 ictx = sgsn_mm_ctx_by_imsi(mi_string);
601 if (ictx) {
Holger Hans Peter Freytherf01f18e2011-10-14 23:31:34 +0200602 DEBUGP(DMM, "Deleting old MM Context for same IMSI "
Harald Weltec6e196f2010-12-24 23:07:18 +0100603 "p_tmsi_old=0x%08x, p_tmsi_new=0x%08x\n",
604 ictx->p_tmsi, ctx->p_tmsi);
605 gprs_llgmm_assign(ictx->llme, ictx->tlli,
606 0xffffffff, GPRS_ALGO_GEA0, NULL);
Harald Welted8765b92012-07-14 12:04:04 +0200607 /* FIXME: this is a hard free, we don't
608 * clean-up any PDP contexts on the
609 * libgtp side */
Harald Weltec6e196f2010-12-24 23:07:18 +0100610 sgsn_mm_ctx_free(ictx);
611 }
612 }
Harald Welte75bb8202010-03-14 15:45:01 +0800613 strncpy(ctx->imsi, mi_string, sizeof(ctx->imei));
614 break;
615 case GSM_MI_TYPE_IMEI:
616 strncpy(ctx->imei, mi_string, sizeof(ctx->imei));
617 break;
618 case GSM_MI_TYPE_IMEISV:
619 break;
620 }
621
622 DEBUGPC(DMM, "\n");
623 /* Check if we can let the mobile station enter */
Harald Welte7e01d8e2010-05-31 20:23:38 +0200624 return gsm48_gmm_authorize(ctx, ctx->t3350_mode);
Harald Welte75bb8202010-03-14 15:45:01 +0800625}
626
627/* Section 9.4.1 Attach request */
Harald Welte75871c72010-06-01 11:53:01 +0200628static int gsm48_rx_gmm_att_req(struct sgsn_mm_ctx *ctx, struct msgb *msg,
629 struct gprs_llc_llme *llme)
Harald Welte75bb8202010-03-14 15:45:01 +0800630{
Harald Weltecf3c4142010-04-30 16:33:12 +0200631 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_gmmh(msg);
Harald Weltecca80c92010-05-31 22:12:30 +0200632 uint8_t *cur = gh->data, *msnc, *mi, *old_ra_info, *ms_ra_acc_cap;
633 uint8_t msnc_len, att_type, mi_len, mi_type, ms_ra_acc_cap_len;
Harald Welted85d9a92010-05-02 11:26:34 +0200634 uint16_t drx_par;
635 uint32_t tmsi;
Harald Welte75bb8202010-03-14 15:45:01 +0800636 char mi_string[GSM48_MI_SIZE];
637 struct gprs_ra_id ra_id;
Harald Weltede34afa2010-05-02 12:56:57 +0200638 uint16_t cid;
Harald Welte75bb8202010-03-14 15:45:01 +0800639
Harald Welte8f77f192010-05-17 00:44:57 +0200640 DEBUGP(DMM, "-> GMM ATTACH REQUEST ");
Harald Welte75bb8202010-03-14 15:45:01 +0800641
642 /* As per TS 04.08 Chapter 4.7.1.4, the attach request arrives either
643 * with a foreign TLLI (P-TMSI that was allocated to the MS before),
644 * or with random TLLI. */
645
Harald Weltede34afa2010-05-02 12:56:57 +0200646 cid = bssgp_parse_cell_id(&ra_id, msgb_bcid(msg));
Harald Welte75bb8202010-03-14 15:45:01 +0800647
648 /* MS network capability 10.5.5.12 */
649 msnc_len = *cur++;
650 msnc = cur;
Alexander Chemeris6824c502013-07-03 10:12:23 +0400651 if (msnc_len > sizeof(ctx->ms_network_capa.buf))
Harald Welte75bb8202010-03-14 15:45:01 +0800652 goto err_inval;
653 cur += msnc_len;
654
655 /* aTTACH Type 10.5.5.2 */
656 att_type = *cur++ & 0x0f;
657
658 /* DRX parameter 10.5.5.6 */
Harald Weltecca80c92010-05-31 22:12:30 +0200659 drx_par = *cur++ << 8;
660 drx_par |= *cur++;
Harald Welte75bb8202010-03-14 15:45:01 +0800661
662 /* Mobile Identity (P-TMSI or IMSI) 10.5.1.4 */
663 mi_len = *cur++;
664 mi = cur;
665 if (mi_len > 8)
666 goto err_inval;
667 mi_type = *mi & GSM_MI_TYPE_MASK;
668 cur += mi_len;
669
670 gsm48_mi_to_string(mi_string, sizeof(mi_string), mi, mi_len);
671
Harald Welte8f77f192010-05-17 00:44:57 +0200672 DEBUGPC(DMM, "MI(%s) type=\"%s\" ", mi_string,
673 get_value_string(gprs_att_t_strs, att_type));
Harald Welte75bb8202010-03-14 15:45:01 +0800674
675 /* Old routing area identification 10.5.5.15 */
676 old_ra_info = cur;
677 cur += 6;
678
679 /* MS Radio Access Capability 10.5.5.12a */
Harald Weltecca80c92010-05-31 22:12:30 +0200680 ms_ra_acc_cap_len = *cur++;
681 ms_ra_acc_cap = cur;
Alexander Chemeris6824c502013-07-03 10:12:23 +0400682 if (ms_ra_acc_cap_len > sizeof(ctx->ms_radio_access_capa.buf))
Harald Welteabe06132010-07-03 21:20:06 +0200683 goto err_inval;
Harald Welte45ca5522011-07-27 23:35:38 +0200684 cur += ms_ra_acc_cap_len;
Harald Welte75bb8202010-03-14 15:45:01 +0800685
686 /* Optional: Old P-TMSI Signature, Requested READY timer, TMSI Status */
687
688 switch (mi_type) {
689 case GSM_MI_TYPE_IMSI:
690 /* Try to find MM context based on IMSI */
Harald Welte75871c72010-06-01 11:53:01 +0200691 if (!ctx)
692 ctx = sgsn_mm_ctx_by_imsi(mi_string);
Harald Welte75bb8202010-03-14 15:45:01 +0800693 if (!ctx) {
694#if 0
695 return gsm48_tx_gmm_att_rej(msg, GMM_CAUSE_IMSI_UNKNOWN);
696#else
Harald Weltef8ff1532010-12-24 15:39:08 +0100697 /* As a temorary hack, we simply assume that the IMSI exists,
698 * as long as it is part of 'our' network */
699 char mccmnc[16];
700 snprintf(mccmnc, sizeof(mccmnc), "%03d%02d", ra_id.mcc, ra_id.mnc);
701 if (strncmp(mccmnc, mi_string, 5)) {
702 LOGP(DMM, LOGL_INFO, "Rejecting ATTACH REQUESET IMSI=%s\n",
703 mi_string);
704 return gsm48_tx_gmm_att_rej_oldmsg(msg,
705 GMM_CAUSE_GPRS_NOTALLOWED);
706 }
Harald Welte75bb8202010-03-14 15:45:01 +0800707 ctx = sgsn_mm_ctx_alloc(0, &ra_id);
708 if (!ctx)
Harald Welte64df8ed2010-05-18 17:04:55 +0200709 return gsm48_tx_gmm_att_rej_oldmsg(msg, GMM_CAUSE_NET_FAIL);
Harald Welte75bb8202010-03-14 15:45:01 +0800710 strncpy(ctx->imsi, mi_string, sizeof(ctx->imsi));
711#endif
712 }
Harald Weltecf3c4142010-04-30 16:33:12 +0200713 ctx->tlli = msgb_tlli(msg);
Harald Welte75871c72010-06-01 11:53:01 +0200714 ctx->llme = llme;
Harald Welte5c23bfc2010-05-18 12:05:42 +0200715 msgid2mmctx(ctx, msg);
Harald Welte75bb8202010-03-14 15:45:01 +0800716 break;
717 case GSM_MI_TYPE_TMSI:
Harald Welteebe8a6d2010-05-18 19:58:38 +0200718 memcpy(&tmsi, mi+1, 4);
719 tmsi = ntohl(tmsi);
Harald Welte75bb8202010-03-14 15:45:01 +0800720 /* Try to find MM context based on P-TMSI */
Harald Welte75871c72010-06-01 11:53:01 +0200721 if (!ctx)
722 ctx = sgsn_mm_ctx_by_ptmsi(tmsi);
Harald Welte75bb8202010-03-14 15:45:01 +0800723 if (!ctx) {
Harald Weltec6e196f2010-12-24 23:07:18 +0100724 /* Allocate a context as most of our code expects one.
725 * Context will not have an IMSI ultil ID RESP is received */
Harald Weltecf3c4142010-04-30 16:33:12 +0200726 ctx = sgsn_mm_ctx_alloc(msgb_tlli(msg), &ra_id);
Harald Welte75871c72010-06-01 11:53:01 +0200727 ctx->p_tmsi = tmsi;
Harald Welte75bb8202010-03-14 15:45:01 +0800728 }
Harald Welte75871c72010-06-01 11:53:01 +0200729 ctx->tlli = msgb_tlli(msg);
730 ctx->llme = llme;
731 msgid2mmctx(ctx, msg);
Harald Welte75bb8202010-03-14 15:45:01 +0800732 break;
733 default:
Harald Welte7e01d8e2010-05-31 20:23:38 +0200734 LOGP(DMM, LOGL_NOTICE, "Rejecting ATTACH REQUEST with "
735 "MI type %u\n", mi_type);
736 return gsm48_tx_gmm_att_rej_oldmsg(msg, GMM_CAUSE_MS_ID_NOT_DERIVED);
Harald Welte75bb8202010-03-14 15:45:01 +0800737 }
Harald Weltede34afa2010-05-02 12:56:57 +0200738 /* Update MM Context with currient RA and Cell ID */
739 ctx->ra = ra_id;
740 ctx->cell_id = cid;
Harald Weltecca80c92010-05-31 22:12:30 +0200741 /* Update MM Context with other data */
742 ctx->drx_parms = drx_par;
Alexander Chemeris6824c502013-07-03 10:12:23 +0400743 ctx->ms_radio_access_capa.len = ms_ra_acc_cap_len;
Harald Welte45ca5522011-07-27 23:35:38 +0200744 memcpy(ctx->ms_radio_access_capa.buf, ms_ra_acc_cap,
745 ctx->ms_radio_access_capa.len);
Harald Weltecca80c92010-05-31 22:12:30 +0200746 ctx->ms_network_capa.len = msnc_len;
747 memcpy(ctx->ms_network_capa.buf, msnc, msnc_len);
748
Harald Welte7e01d8e2010-05-31 20:23:38 +0200749#ifdef PTMSI_ALLOC
Harald Welte75871c72010-06-01 11:53:01 +0200750 /* Allocate a new P-TMSI (+ P-TMSI signature) and update TLLI */
Harald Welte7e01d8e2010-05-31 20:23:38 +0200751 ctx->p_tmsi_old = ctx->p_tmsi;
Harald Welte64df8ed2010-05-18 17:04:55 +0200752 ctx->p_tmsi = sgsn_alloc_ptmsi();
Harald Welteebe8a6d2010-05-18 19:58:38 +0200753#endif
Harald Welte75871c72010-06-01 11:53:01 +0200754 /* Even if there is no P-TMSI allocated, the MS will switch from
755 * foreign TLLI to local TLLI */
756 ctx->tlli_new = gprs_tmsi2tlli(ctx->p_tmsi, TLLI_LOCAL);
757
758 /* Inform LLC layer about new TLLI but keep old active */
Harald Welte0c4304f2010-06-30 23:18:57 +0200759 gprs_llgmm_assign(ctx->llme, ctx->tlli, ctx->tlli_new,
760 GPRS_ALGO_GEA0, NULL);
Harald Welte75bb8202010-03-14 15:45:01 +0800761
762 DEBUGPC(DMM, "\n");
Harald Welte0b5e01e2011-07-16 13:45:57 +0200763 return gsm48_gmm_authorize(ctx, GMM_T3350_MODE_ATT);
Harald Welte75bb8202010-03-14 15:45:01 +0800764
765err_inval:
766 DEBUGPC(DMM, "\n");
Harald Welte64df8ed2010-05-18 17:04:55 +0200767 return gsm48_tx_gmm_att_rej_oldmsg(msg, GMM_CAUSE_SEM_INCORR_MSG);
Harald Welte75bb8202010-03-14 15:45:01 +0800768}
769
Harald Welte8f77f192010-05-17 00:44:57 +0200770/* Section 4.7.4.1 / 9.4.5.2 MO Detach request */
Harald Weltec1f6bfe2010-05-17 22:58:03 +0200771static int gsm48_rx_gmm_det_req(struct sgsn_mm_ctx *ctx, struct msgb *msg)
Harald Welte8f77f192010-05-17 00:44:57 +0200772{
773 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_gmmh(msg);
Harald Weltee25385b2010-06-28 19:11:41 +0200774 struct sgsn_pdp_ctx *pdp, *pdp2;
Harald Welte8f77f192010-05-17 00:44:57 +0200775 uint8_t detach_type, power_off;
Harald Welte309b5932010-06-28 22:18:53 +0200776 int rc;
Harald Welte8f77f192010-05-17 00:44:57 +0200777
778 detach_type = gh->data[0] & 0x7;
779 power_off = gh->data[0] & 0x8;
780
781 /* FIXME: In 24.008 there is an optional P-TMSI and P-TMSI signature IE */
782
783 DEBUGP(DMM, "-> GMM DETACH REQUEST TLLI=0x%08x type=%s %s\n",
784 msgb_tlli(msg), get_value_string(gprs_det_t_mo_strs, detach_type),
785 power_off ? "Power-off" : "");
786
787 /* Mark MM state as deregistered */
788 ctx->mm_state = GMM_DEREGISTERED;
789
Harald Weltee25385b2010-06-28 19:11:41 +0200790 /* delete all existing PDP contexts for this MS */
791 llist_for_each_entry_safe(pdp, pdp2, &ctx->pdp_list, list) {
792 LOGP(DMM, LOGL_NOTICE, "Dropping PDP context for NSAPI=%u "
793 "due to GPRS DETACH REQUEST\n", pdp->nsapi);
794 sgsn_delete_pdp_ctx(pdp);
795 /* FIXME: the callback wants to transmit a DEACT PDP CTX ACK,
796 * which is quite stupid for a MS that has just detached.. */
797 }
798
Harald Welte8f77f192010-05-17 00:44:57 +0200799 /* force_stby = 0 */
Harald Welte309b5932010-06-28 22:18:53 +0200800 rc = gsm48_tx_gmm_det_ack(ctx, 0);
801
802 /* TLLI unassignment */
Harald Welte0c4304f2010-06-30 23:18:57 +0200803 gprs_llgmm_assign(ctx->llme, ctx->tlli, 0xffffffff,
804 GPRS_ALGO_GEA0, NULL);
Harald Welte309b5932010-06-28 22:18:53 +0200805
806 return rc;
Harald Welte8f77f192010-05-17 00:44:57 +0200807}
808
Harald Welte75bb8202010-03-14 15:45:01 +0800809/* Chapter 9.4.15: Routing area update accept */
Harald Welte64df8ed2010-05-18 17:04:55 +0200810static int gsm48_tx_gmm_ra_upd_ack(struct sgsn_mm_ctx *mm)
Harald Welte75bb8202010-03-14 15:45:01 +0800811{
812 struct msgb *msg = gsm48_msgb_alloc();
813 struct gsm48_hdr *gh;
814 struct gsm48_ra_upd_ack *rua;
Harald Welte7e01d8e2010-05-31 20:23:38 +0200815 uint8_t *mid;
Harald Welte75bb8202010-03-14 15:45:01 +0800816
817 DEBUGP(DMM, "<- ROUTING AREA UPDATE ACCEPT\n");
818
Harald Welte64df8ed2010-05-18 17:04:55 +0200819 mmctx2msgid(msg, mm);
Harald Welte75bb8202010-03-14 15:45:01 +0800820
821 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
822 gh->proto_discr = GSM48_PDISC_MM_GPRS;
823 gh->msg_type = GSM48_MT_GMM_RA_UPD_ACK;
824
825 rua = (struct gsm48_ra_upd_ack *) msgb_put(msg, sizeof(*rua));
826 rua->force_stby = 0; /* not indicated */
827 rua->upd_result = 0; /* RA updated */
828 rua->ra_upd_timer = GPRS_TMR_MINUTE | 10;
Harald Welte2351f1f2010-05-02 11:54:55 +0200829
Harald Welte64df8ed2010-05-18 17:04:55 +0200830 gsm48_construct_ra(rua->ra_id.digits, &mm->ra);
Harald Welte75bb8202010-03-14 15:45:01 +0800831
Harald Welte7e01d8e2010-05-31 20:23:38 +0200832#if 0
833 /* Optional: P-TMSI signature */
834 msgb_v_put(msg, GSM48_IE_GMM_PTMSI_SIG);
835 ptsig = msgb_put(msg, 3);
836 ptsig[0] = mm->p_tmsi_sig >> 16;
837 ptsig[1] = mm->p_tmsi_sig >> 8;
838 ptsig[2] = mm->p_tmsi_sig & 0xff;
839#endif
840
841#ifdef PTMSI_ALLOC
842 /* Optional: Allocated P-TMSI */
843 mid = msgb_put(msg, GSM48_MID_TMSI_LEN);
844 gsm48_generate_mid_from_tmsi(mid, mm->p_tmsi);
845 mid[0] = GSM48_IE_GMM_ALLOC_PTMSI;
846#endif
847
848 /* Option: MS ID, ... */
Harald Weltecca80c92010-05-31 22:12:30 +0200849 return gsm48_gmm_sendmsg(msg, 0, mm);
Harald Welte75bb8202010-03-14 15:45:01 +0800850}
851
852/* Chapter 9.4.17: Routing area update reject */
Harald Welted85d9a92010-05-02 11:26:34 +0200853static int gsm48_tx_gmm_ra_upd_rej(struct msgb *old_msg, uint8_t cause)
Harald Welte75bb8202010-03-14 15:45:01 +0800854{
855 struct msgb *msg = gsm48_msgb_alloc();
856 struct gsm48_hdr *gh;
857
858 DEBUGP(DMM, "<- ROUTING AREA UPDATE REJECT\n");
859
Harald Welte2351f1f2010-05-02 11:54:55 +0200860 gmm_copy_id(msg, old_msg);
Harald Welte75bb8202010-03-14 15:45:01 +0800861
862 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh) + 2);
863 gh->proto_discr = GSM48_PDISC_MM_GPRS;
864 gh->msg_type = GSM48_MT_GMM_RA_UPD_REJ;
865 gh->data[0] = cause;
866 gh->data[1] = 0; /* ? */
867
868 /* Option: P-TMSI signature, allocated P-TMSI, MS ID, ... */
Harald Welte8a035af2010-05-18 10:57:45 +0200869 return gsm48_gmm_sendmsg(msg, 0, NULL);
Harald Welte75bb8202010-03-14 15:45:01 +0800870}
871
Harald Welted9610722010-06-09 10:28:29 +0200872static void process_ms_ctx_status(struct sgsn_mm_ctx *mmctx,
Holger Hans Peter Freytherf01f18e2011-10-14 23:31:34 +0200873 const uint8_t *pdp_status)
Harald Welted9610722010-06-09 10:28:29 +0200874{
875 struct sgsn_pdp_ctx *pdp, *pdp2;
876 /* 24.008 4.7.5.1.3: If the PDP context status information element is
877 * included in ROUTING AREA UPDATE REQUEST message, then the network
878 * shall deactivate all those PDP contexts locally (without peer to
879 * peer signalling between the MS and the network), which are not in SM
880 * state PDP-INACTIVE on network side but are indicated by the MS as
881 * being in state PDP-INACTIVE. */
882
883 llist_for_each_entry_safe(pdp, pdp2, &mmctx->pdp_list, list) {
Harald Welte9e7093c2011-08-05 21:23:46 +0200884 if (pdp->nsapi < 8) {
885 if (!(pdp_status[0] & (1 << pdp->nsapi))) {
886 LOGP(DMM, LOGL_NOTICE, "Dropping PDP context for NSAPI=%u "
887 "due to PDP CTX STATUS IE= 0x%02x%02x\n",
888 pdp->nsapi, pdp_status[1], pdp_status[0]);
889 sgsn_delete_pdp_ctx(pdp);
890 }
891 } else {
892 if (!(pdp_status[1] & (1 << (pdp->nsapi - 8)))) {
893 LOGP(DMM, LOGL_NOTICE, "Dropping PDP context for NSAPI=%u "
894 "due to PDP CTX STATUS IE= 0x%02x%02x\n",
895 pdp->nsapi, pdp_status[1], pdp_status[0]);
896 sgsn_delete_pdp_ctx(pdp);
897 }
Harald Welted9610722010-06-09 10:28:29 +0200898 }
899 }
900}
901
Harald Welte75bb8202010-03-14 15:45:01 +0800902/* Chapter 9.4.14: Routing area update request */
Harald Welte75871c72010-06-01 11:53:01 +0200903static int gsm48_rx_gmm_ra_upd_req(struct sgsn_mm_ctx *mmctx, struct msgb *msg,
904 struct gprs_llc_llme *llme)
Harald Welte75bb8202010-03-14 15:45:01 +0800905{
Harald Weltecf3c4142010-04-30 16:33:12 +0200906 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_gmmh(msg);
Harald Welted85d9a92010-05-02 11:26:34 +0200907 uint8_t *cur = gh->data;
Harald Welted9610722010-06-09 10:28:29 +0200908 uint8_t *ms_ra_acc_cap;
909 uint8_t ms_ra_acc_cap_len;
Harald Welte75bb8202010-03-14 15:45:01 +0800910 struct gprs_ra_id old_ra_id;
Harald Welted9610722010-06-09 10:28:29 +0200911 struct tlv_parsed tp;
Harald Welted85d9a92010-05-02 11:26:34 +0200912 uint8_t upd_type;
Harald Welte75871c72010-06-01 11:53:01 +0200913 int rc;
Harald Welte75bb8202010-03-14 15:45:01 +0800914
915 /* Update Type 10.5.5.18 */
916 upd_type = *cur++ & 0x0f;
917
Harald Welte8f77f192010-05-17 00:44:57 +0200918 DEBUGP(DMM, "-> GMM RA UPDATE REQUEST type=\"%s\" ",
919 get_value_string(gprs_upd_t_strs, upd_type));
Harald Welte75bb8202010-03-14 15:45:01 +0800920
921 /* Old routing area identification 10.5.5.15 */
922 gsm48_parse_ra(&old_ra_id, cur);
923 cur += 6;
924
925 /* MS Radio Access Capability 10.5.5.12a */
Harald Welted9610722010-06-09 10:28:29 +0200926 ms_ra_acc_cap_len = *cur++;
927 ms_ra_acc_cap = cur;
Harald Welte45ca5522011-07-27 23:35:38 +0200928 if (ms_ra_acc_cap_len > 52)
929 return gsm48_tx_gmm_ra_upd_rej(msg, GMM_CAUSE_PROTO_ERR_UNSPEC);
930 cur += ms_ra_acc_cap_len;
Harald Welte75bb8202010-03-14 15:45:01 +0800931
932 /* Optional: Old P-TMSI Signature, Requested READY timer, TMSI Status,
933 * DRX parameter, MS network capability */
Harald Welted9610722010-06-09 10:28:29 +0200934 rc = tlv_parse(&tp, &gsm48_gmm_att_tlvdef, cur,
935 (msg->data + msg->len) - cur, 0, 0);
Harald Welte75bb8202010-03-14 15:45:01 +0800936
937 switch (upd_type) {
938 case GPRS_UPD_T_RA_LA:
939 case GPRS_UPD_T_RA_LA_IMSI_ATT:
940 DEBUGPC(DMM, " unsupported in Mode III, is your SI13 corrupt?\n");
941 return gsm48_tx_gmm_ra_upd_rej(msg, GMM_CAUSE_PROTO_ERR_UNSPEC);
942 break;
943 case GPRS_UPD_T_RA:
944 case GPRS_UPD_T_PERIODIC:
945 break;
946 }
947
948 /* Look-up the MM context based on old RA-ID and TLLI */
Harald Welte51f78ee2010-12-23 23:34:43 +0100949 mmctx = sgsn_mm_ctx_by_tlli(msgb_tlli(msg), &old_ra_id);
Harald Welte75bb8202010-03-14 15:45:01 +0800950 if (!mmctx || mmctx->mm_state == GMM_DEREGISTERED) {
Harald Welte612c3d82011-10-16 18:50:56 +0200951 /* send a XID reset to re-set all LLC sequence numbers
952 * in the MS */
953 DEBUGPC(DMM, " LLC XID RESET ");
954 gprs_llgmm_reset(llme);
Harald Welte75bb8202010-03-14 15:45:01 +0800955 /* The MS has to perform GPRS attach */
956 DEBUGPC(DMM, " REJECT\n");
Harald Welte7e01d8e2010-05-31 20:23:38 +0200957 /* Device is still IMSI atached for CS but initiate GPRS ATTACH */
958 return gsm48_tx_gmm_ra_upd_rej(msg, GMM_CAUSE_MS_ID_NOT_DERIVED);
Harald Welte75bb8202010-03-14 15:45:01 +0800959 }
960
Harald Welte66d062a2010-12-26 10:39:26 +0100961 /* Store new BVCI/NSEI in MM context (FIXME: delay until we ack?) */
962 msgid2mmctx(mmctx, msg);
963 /* Bump the statistics of received signalling msgs for this MM context */
964 rate_ctr_inc(&mmctx->ctrg->ctr[GMM_CTR_PKTS_SIG_IN]);
965
Harald Weltede34afa2010-05-02 12:56:57 +0200966 /* Update the MM context with the new RA-ID */
967 bssgp_parse_cell_id(&mmctx->ra, msgb_bcid(msg));
Harald Welte66d062a2010-12-26 10:39:26 +0100968 /* Update the MM context with the new (i.e. foreign) TLLI */
Harald Weltede34afa2010-05-02 12:56:57 +0200969 mmctx->tlli = msgb_tlli(msg);
Harald Welte75bb8202010-03-14 15:45:01 +0800970 /* FIXME: Update the MM context with the MS radio acc capabilities */
971 /* FIXME: Update the MM context with the MS network capabilities */
972
Harald Welteeb471c92010-05-18 14:32:29 +0200973 rate_ctr_inc(&mmctx->ctrg->ctr[GMM_CTR_RA_UPDATE]);
974
Harald Welte75bb8202010-03-14 15:45:01 +0800975 DEBUGPC(DMM, " ACCEPT\n");
Harald Welte7e01d8e2010-05-31 20:23:38 +0200976#ifdef PTMSI_ALLOC
977 mmctx->p_tmsi_old = mmctx->p_tmsi;
978 mmctx->p_tmsi = sgsn_alloc_ptmsi();
979 /* Start T3350 and re-transmit up to 5 times until ATTACH COMPLETE */
980 mmctx->t3350_mode = GMM_T3350_MODE_RAU;
981 mmctx_timer_start(mmctx, 3350, GSM0408_T3350_SECS);
982#endif
Harald Welte75871c72010-06-01 11:53:01 +0200983 /* Even if there is no P-TMSI allocated, the MS will switch from
984 * foreign TLLI to local TLLI */
985 mmctx->tlli_new = gprs_tmsi2tlli(mmctx->p_tmsi, TLLI_LOCAL);
Harald Welte7e01d8e2010-05-31 20:23:38 +0200986
Harald Welte75871c72010-06-01 11:53:01 +0200987 /* Inform LLC layer about new TLLI but keep old active */
Harald Welte0c4304f2010-06-30 23:18:57 +0200988 gprs_llgmm_assign(mmctx->llme, mmctx->tlli, mmctx->tlli_new,
989 GPRS_ALGO_GEA0, NULL);
Harald Welte75871c72010-06-01 11:53:01 +0200990
Harald Welted9610722010-06-09 10:28:29 +0200991 /* Look at PDP Context Status IE and see if MS's view of
992 * activated/deactivated NSAPIs agrees with our view */
993 if (TLVP_PRESENT(&tp, GSM48_IE_GMM_PDP_CTX_STATUS)) {
Holger Hans Peter Freytherf01f18e2011-10-14 23:31:34 +0200994 const uint8_t *pdp_status = TLVP_VAL(&tp, GSM48_IE_GMM_PDP_CTX_STATUS);
Harald Welted9610722010-06-09 10:28:29 +0200995 process_ms_ctx_status(mmctx, pdp_status);
996 }
997
Harald Welte4bb9ce82011-10-16 21:35:21 +0200998 /* Make sure we are NORMAL (i.e. not SUSPENDED anymore) */
999 mmctx->mm_state = GMM_REGISTERED_NORMAL;
1000
Harald Welte75871c72010-06-01 11:53:01 +02001001 /* Send RA UPDATE ACCEPT */
Harald Welte64df8ed2010-05-18 17:04:55 +02001002 return gsm48_tx_gmm_ra_upd_ack(mmctx);
Harald Welte75bb8202010-03-14 15:45:01 +08001003}
1004
Harald Weltec1f6bfe2010-05-17 22:58:03 +02001005static int gsm48_rx_gmm_status(struct sgsn_mm_ctx *mmctx, struct msgb *msg)
Harald Welte75bb8202010-03-14 15:45:01 +08001006{
1007 struct gsm48_hdr *gh = msgb_l3(msg);
1008
Harald Welte8f77f192010-05-17 00:44:57 +02001009 DEBUGP(DMM, "-> GPRS MM STATUS (cause: %s)\n",
Harald Welte75bb8202010-03-14 15:45:01 +08001010 get_value_string(gmm_cause_names, gh->data[0]));
1011
1012 return 0;
1013}
1014
1015/* GPRS Mobility Management */
Harald Welte75871c72010-06-01 11:53:01 +02001016static int gsm0408_rcv_gmm(struct sgsn_mm_ctx *mmctx, struct msgb *msg,
1017 struct gprs_llc_llme *llme)
Harald Welte75bb8202010-03-14 15:45:01 +08001018{
Harald Weltecf3c4142010-04-30 16:33:12 +02001019 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_gmmh(msg);
Harald Welte75bb8202010-03-14 15:45:01 +08001020 int rc;
1021
Harald Welte75871c72010-06-01 11:53:01 +02001022 /* MMCTX can be NULL when called */
1023
Harald Weltec1f6bfe2010-05-17 22:58:03 +02001024 if (!mmctx &&
1025 gh->msg_type != GSM48_MT_GMM_ATTACH_REQ &&
Harald Welte7e01d8e2010-05-31 20:23:38 +02001026 gh->msg_type != GSM48_MT_GMM_RA_UPD_REQ) {
Harald Weltec1f6bfe2010-05-17 22:58:03 +02001027 LOGP(DMM, LOGL_NOTICE, "Cannot handle GMM for unknown MM CTX\n");
Harald Welte612c3d82011-10-16 18:50:56 +02001028 gprs_llgmm_reset(llme);
Harald Welte263edd12010-06-09 10:51:23 +02001029 return gsm48_tx_gmm_status_oldmsg(msg, GMM_CAUSE_MS_ID_NOT_DERIVED);
Harald Weltec1f6bfe2010-05-17 22:58:03 +02001030 }
1031
Harald Welte75bb8202010-03-14 15:45:01 +08001032 switch (gh->msg_type) {
1033 case GSM48_MT_GMM_RA_UPD_REQ:
Harald Welte75871c72010-06-01 11:53:01 +02001034 rc = gsm48_rx_gmm_ra_upd_req(mmctx, msg, llme);
Harald Welte75bb8202010-03-14 15:45:01 +08001035 break;
1036 case GSM48_MT_GMM_ATTACH_REQ:
Harald Welte75871c72010-06-01 11:53:01 +02001037 rc = gsm48_rx_gmm_att_req(mmctx, msg, llme);
Harald Welte75bb8202010-03-14 15:45:01 +08001038 break;
1039 case GSM48_MT_GMM_ID_RESP:
Harald Weltec1f6bfe2010-05-17 22:58:03 +02001040 rc = gsm48_rx_gmm_id_resp(mmctx, msg);
Harald Welte75bb8202010-03-14 15:45:01 +08001041 break;
1042 case GSM48_MT_GMM_STATUS:
Harald Weltec1f6bfe2010-05-17 22:58:03 +02001043 rc = gsm48_rx_gmm_status(mmctx, msg);
Harald Welte75bb8202010-03-14 15:45:01 +08001044 break;
Harald Welte8f77f192010-05-17 00:44:57 +02001045 case GSM48_MT_GMM_DETACH_REQ:
Harald Weltec1f6bfe2010-05-17 22:58:03 +02001046 rc = gsm48_rx_gmm_det_req(mmctx, msg);
Harald Welte8f77f192010-05-17 00:44:57 +02001047 break;
Harald Welte75bb8202010-03-14 15:45:01 +08001048 case GSM48_MT_GMM_ATTACH_COMPL:
1049 /* only in case SGSN offered new P-TMSI */
Harald Welte7e01d8e2010-05-31 20:23:38 +02001050 DEBUGP(DMM, "-> ATTACH COMPLETE\n");
1051 mmctx_timer_stop(mmctx, 3350);
1052 mmctx->p_tmsi_old = 0;
Harald Welte75871c72010-06-01 11:53:01 +02001053 /* Unassign the old TLLI */
1054 mmctx->tlli = mmctx->tlli_new;
Harald Welte0c4304f2010-06-30 23:18:57 +02001055 gprs_llgmm_assign(mmctx->llme, 0xffffffff, mmctx->tlli_new,
1056 GPRS_ALGO_GEA0, NULL);
Holger Hans Peter Freytherf01f18e2011-10-14 23:31:34 +02001057 rc = 0;
Harald Welte7e01d8e2010-05-31 20:23:38 +02001058 break;
Harald Welteebe8a6d2010-05-18 19:58:38 +02001059 case GSM48_MT_GMM_RA_UPD_COMPL:
1060 /* only in case SGSN offered new P-TMSI */
Harald Welte7e01d8e2010-05-31 20:23:38 +02001061 DEBUGP(DMM, "-> ROUTEING AREA UPDATE COMPLETE\n");
1062 mmctx_timer_stop(mmctx, 3350);
1063 mmctx->p_tmsi_old = 0;
Harald Welte75871c72010-06-01 11:53:01 +02001064 /* Unassign the old TLLI */
1065 mmctx->tlli = mmctx->tlli_new;
Harald Welte0c4304f2010-06-30 23:18:57 +02001066 gprs_llgmm_assign(mmctx->llme, 0xffffffff, mmctx->tlli_new,
1067 GPRS_ALGO_GEA0, NULL);
Holger Hans Peter Freytherf01f18e2011-10-14 23:31:34 +02001068 rc = 0;
Harald Welte7e01d8e2010-05-31 20:23:38 +02001069 break;
Harald Welte75bb8202010-03-14 15:45:01 +08001070 case GSM48_MT_GMM_PTMSI_REALL_COMPL:
Harald Welte7e01d8e2010-05-31 20:23:38 +02001071 DEBUGP(DMM, "-> PTMSI REALLLICATION COMPLETE\n");
1072 mmctx_timer_stop(mmctx, 3350);
1073 mmctx->p_tmsi_old = 0;
Harald Welte75871c72010-06-01 11:53:01 +02001074 /* Unassign the old TLLI */
1075 mmctx->tlli = mmctx->tlli_new;
Harald Welte0c4304f2010-06-30 23:18:57 +02001076 //gprs_llgmm_assign(mmctx->llme, 0xffffffff, mmctx->tlli_new, GPRS_ALGO_GEA0, NULL);
Holger Hans Peter Freytherf01f18e2011-10-14 23:31:34 +02001077 rc = 0;
Harald Welte7e01d8e2010-05-31 20:23:38 +02001078 break;
Harald Welte75bb8202010-03-14 15:45:01 +08001079 case GSM48_MT_GMM_AUTH_CIPH_RESP:
Harald Welte45fcf682010-07-03 11:09:06 +02001080 rc = gsm48_rx_gmm_auth_ciph_resp(mmctx, msg);
Harald Welte75bb8202010-03-14 15:45:01 +08001081 break;
1082 default:
1083 DEBUGP(DMM, "Unknown GSM 04.08 GMM msg type 0x%02x\n",
1084 gh->msg_type);
Harald Welte263edd12010-06-09 10:51:23 +02001085 rc = gsm48_tx_gmm_status(mmctx, GMM_CAUSE_MSGT_NOTEXIST_NOTIMPL);
Harald Welte75bb8202010-03-14 15:45:01 +08001086 break;
1087 }
1088
1089 return rc;
1090}
1091
Harald Welte7e01d8e2010-05-31 20:23:38 +02001092static void mmctx_timer_cb(void *_mm)
1093{
1094 struct sgsn_mm_ctx *mm = _mm;
1095
1096 mm->num_T_exp++;
1097
1098 switch (mm->T) {
1099 case 3350: /* waiting for ATTACH COMPLETE */
1100 if (mm->num_T_exp >= 5) {
1101 LOGP(DMM, LOGL_NOTICE, "T3350 expired >= 5 times\n");
1102 mm->mm_state = GMM_DEREGISTERED;
1103 /* FIXME: should we return some error? */
1104 break;
1105 }
1106 /* re-transmit the respective msg and re-start timer */
1107 switch (mm->t3350_mode) {
1108 case GMM_T3350_MODE_ATT:
1109 gsm48_tx_gmm_att_ack(mm);
1110 break;
1111 case GMM_T3350_MODE_RAU:
1112 gsm48_tx_gmm_ra_upd_ack(mm);
1113 break;
1114 case GMM_T3350_MODE_PTMSI_REALL:
1115 /* FIXME */
1116 break;
1117 }
Pablo Neira Ayuso840ccf62011-05-06 12:11:06 +02001118 osmo_timer_schedule(&mm->timer, GSM0408_T3350_SECS, 0);
Harald Welte7e01d8e2010-05-31 20:23:38 +02001119 break;
Harald Welte45fcf682010-07-03 11:09:06 +02001120 case 3360: /* waiting for AUTH AND CIPH RESP */
1121 if (mm->num_T_exp >= 5) {
1122 LOGP(DMM, LOGL_NOTICE, "T3360 expired >= 5 times\n");
1123 mm->mm_state = GMM_DEREGISTERED;
1124 break;
1125 }
1126 /* FIXME: re-transmit the respective msg and re-start timer */
Pablo Neira Ayuso840ccf62011-05-06 12:11:06 +02001127 osmo_timer_schedule(&mm->timer, GSM0408_T3360_SECS, 0);
Harald Welte45fcf682010-07-03 11:09:06 +02001128 break;
Harald Welte7e01d8e2010-05-31 20:23:38 +02001129 case 3370: /* waiting for IDENTITY RESPONSE */
1130 if (mm->num_T_exp >= 5) {
1131 LOGP(DMM, LOGL_NOTICE, "T3370 expired >= 5 times\n");
1132 gsm48_tx_gmm_att_rej(mm, GMM_CAUSE_MS_ID_NOT_DERIVED);
1133 mm->mm_state = GMM_DEREGISTERED;
1134 break;
1135 }
1136 /* re-tranmit IDENTITY REQUEST and re-start timer */
1137 gsm48_tx_gmm_id_req(mm, mm->t3370_id_type);
Pablo Neira Ayuso840ccf62011-05-06 12:11:06 +02001138 osmo_timer_schedule(&mm->timer, GSM0408_T3370_SECS, 0);
Harald Welte7e01d8e2010-05-31 20:23:38 +02001139 break;
1140 default:
1141 LOGP(DMM, LOGL_ERROR, "timer expired in unknown mode %u\n",
1142 mm->T);
1143 }
1144}
1145
1146/* GPRS SESSION MANAGEMENT */
1147
Harald Welte94ecef32010-12-24 21:13:26 +01001148static void pdpctx_timer_cb(void *_mm);
1149
1150static void pdpctx_timer_start(struct sgsn_pdp_ctx *pdp, unsigned int T,
1151 unsigned int seconds)
1152{
Pablo Neira Ayuso840ccf62011-05-06 12:11:06 +02001153 if (osmo_timer_pending(&pdp->timer))
Harald Welte94ecef32010-12-24 21:13:26 +01001154 LOGP(DMM, LOGL_ERROR, "Starting MM timer %u while old "
1155 "timer %u pending\n", T, pdp->T);
1156 pdp->T = T;
1157 pdp->num_T_exp = 0;
1158
1159 /* FIXME: we should do this only once ? */
1160 pdp->timer.data = pdp;
1161 pdp->timer.cb = &pdpctx_timer_cb;
1162
Pablo Neira Ayuso840ccf62011-05-06 12:11:06 +02001163 osmo_timer_schedule(&pdp->timer, seconds, 0);
Harald Welte94ecef32010-12-24 21:13:26 +01001164}
1165
1166
Harald Welte2aea7492010-05-02 23:11:50 +02001167static void msgb_put_pdp_addr_ipv4(struct msgb *msg, uint32_t ipaddr)
1168{
1169 uint8_t v[6];
1170
1171 v[0] = PDP_TYPE_ORG_IETF;
1172 v[1] = PDP_TYPE_N_IETF_IPv4;
1173 *(uint32_t *)(v+2) = htonl(ipaddr);
1174
1175 msgb_tlv_put(msg, GSM48_IE_GSM_PDP_ADDR, sizeof(v), v);
1176}
1177
1178static void msgb_put_pdp_addr_ppp(struct msgb *msg)
1179{
1180 uint8_t v[2];
1181
1182 v[0] = PDP_TYPE_ORG_ETSI;
1183 v[1] = PDP_TYPE_N_ETSI_PPP;
1184
1185 msgb_tlv_put(msg, GSM48_IE_GSM_PDP_ADDR, sizeof(v), v);
1186}
1187
Harald Welte75bb8202010-03-14 15:45:01 +08001188/* Section 9.5.2: Ativate PDP Context Accept */
Harald Welte29d838e2010-05-18 10:35:06 +02001189int gsm48_tx_gsm_act_pdp_acc(struct sgsn_pdp_ctx *pdp)
Harald Welte75bb8202010-03-14 15:45:01 +08001190{
Harald Welte75bb8202010-03-14 15:45:01 +08001191 struct msgb *msg = gsm48_msgb_alloc();
Harald Welte75bb8202010-03-14 15:45:01 +08001192 struct gsm48_hdr *gh;
Harald Welte29d838e2010-05-18 10:35:06 +02001193 uint8_t transaction_id = pdp->ti ^ 0x8; /* flip */
Harald Welte75bb8202010-03-14 15:45:01 +08001194
1195 DEBUGP(DMM, "<- ACTIVATE PDP CONTEXT ACK\n");
1196
Harald Welte29d838e2010-05-18 10:35:06 +02001197 mmctx2msgid(msg, pdp->mm);
Harald Welte75bb8202010-03-14 15:45:01 +08001198
1199 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
1200 gh->proto_discr = GSM48_PDISC_SM_GPRS | (transaction_id << 4);
1201 gh->msg_type = GSM48_MT_GSM_ACT_PDP_ACK;
Harald Welte2aea7492010-05-02 23:11:50 +02001202
1203 /* Negotiated LLC SAPI */
Harald Welte29d838e2010-05-18 10:35:06 +02001204 msgb_v_put(msg, pdp->sapi);
Harald Welte7d7fd2b2010-05-18 14:51:18 +02001205
Harald Welte540dcbc2010-05-18 13:20:08 +02001206 /* FIXME: copy QoS parameters from original request */
1207 //msgb_lv_put(msg, pdp->lib->qos_neg.l, pdp->lib->qos_neg.v);
1208 msgb_lv_put(msg, sizeof(default_qos), (uint8_t *)&default_qos);
Harald Welte7d7fd2b2010-05-18 14:51:18 +02001209
Harald Welte2aea7492010-05-02 23:11:50 +02001210 /* Radio priority 10.5.7.2 */
Harald Welte29d838e2010-05-18 10:35:06 +02001211 msgb_v_put(msg, pdp->lib->radio_pri);
Harald Welte7d7fd2b2010-05-18 14:51:18 +02001212
Harald Welte2aea7492010-05-02 23:11:50 +02001213 /* PDP address */
Harald Welte7d7fd2b2010-05-18 14:51:18 +02001214 /* Highest 4 bits of first byte need to be set to 1, otherwise
1215 * the IE is identical with the 04.08 PDP Address IE */
1216 pdp->lib->eua.v[0] &= ~0xf0;
Harald Welte29d838e2010-05-18 10:35:06 +02001217 msgb_tlv_put(msg, GSM48_IE_GSM_PDP_ADDR,
1218 pdp->lib->eua.l, pdp->lib->eua.v);
Harald Welte7d7fd2b2010-05-18 14:51:18 +02001219 pdp->lib->eua.v[0] |= 0xf0;
1220
Harald Welteeb471c92010-05-18 14:32:29 +02001221 /* Optional: Protocol configuration options (FIXME: why 'req') */
1222 if (pdp->lib->pco_req.l && pdp->lib->pco_req.v)
Harald Welte29d838e2010-05-18 10:35:06 +02001223 msgb_tlv_put(msg, GSM48_IE_GSM_PROTO_CONF_OPT,
Harald Weltef2d66582010-05-18 14:36:11 +02001224 pdp->lib->pco_req.l, pdp->lib->pco_req.v);
Harald Welte7d7fd2b2010-05-18 14:51:18 +02001225
Harald Welte2aea7492010-05-02 23:11:50 +02001226 /* Optional: Packet Flow Identifier */
Harald Welte75bb8202010-03-14 15:45:01 +08001227
Harald Welte8a035af2010-05-18 10:57:45 +02001228 return gsm48_gmm_sendmsg(msg, 0, pdp->mm);
Harald Welte75bb8202010-03-14 15:45:01 +08001229}
1230
Harald Welte29d838e2010-05-18 10:35:06 +02001231/* Section 9.5.3: Activate PDP Context reject */
1232int gsm48_tx_gsm_act_pdp_rej(struct sgsn_mm_ctx *mm, uint8_t tid,
1233 uint8_t cause, uint8_t pco_len, uint8_t *pco_v)
1234{
1235 struct msgb *msg = gsm48_msgb_alloc();
Harald Welte29d838e2010-05-18 10:35:06 +02001236 struct gsm48_hdr *gh;
1237 uint8_t transaction_id = tid ^ 0x8; /* flip */
1238
Harald Welteeb471c92010-05-18 14:32:29 +02001239 DEBUGP(DMM, "<- ACTIVATE PDP CONTEXT REJ(cause=%u)\n", cause);
Harald Welte29d838e2010-05-18 10:35:06 +02001240
1241 mmctx2msgid(msg, mm);
1242
1243 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
1244 gh->proto_discr = GSM48_PDISC_SM_GPRS | (transaction_id << 4);
1245 gh->msg_type = GSM48_MT_GSM_ACT_PDP_REJ;
1246
1247 msgb_v_put(msg, cause);
1248 if (pco_len && pco_v)
1249 msgb_tlv_put(msg, GSM48_IE_GSM_PROTO_CONF_OPT, pco_len, pco_v);
1250
Harald Welte8a035af2010-05-18 10:57:45 +02001251 return gsm48_gmm_sendmsg(msg, 0, mm);
Harald Welte29d838e2010-05-18 10:35:06 +02001252}
1253
Harald Welte94ecef32010-12-24 21:13:26 +01001254/* Section 9.5.8: Deactivate PDP Context Request */
1255static int _gsm48_tx_gsm_deact_pdp_req(struct sgsn_mm_ctx *mm, uint8_t tid,
1256 uint8_t sm_cause)
1257{
1258 struct msgb *msg = gsm48_msgb_alloc();
1259 struct gsm48_hdr *gh;
1260 uint8_t transaction_id = tid ^ 0x8; /* flip */
1261
1262 DEBUGP(DMM, "<- DEACTIVATE PDP CONTEXT REQ\n");
1263
1264 mmctx2msgid(msg, mm);
1265
1266 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
1267 gh->proto_discr = GSM48_PDISC_SM_GPRS | (transaction_id << 4);
1268 gh->msg_type = GSM48_MT_GSM_DEACT_PDP_REQ;
1269
1270 msgb_v_put(msg, sm_cause);
1271
1272 return gsm48_gmm_sendmsg(msg, 0, mm);
1273}
1274int gsm48_tx_gsm_deact_pdp_req(struct sgsn_pdp_ctx *pdp, uint8_t sm_cause)
1275{
1276 pdpctx_timer_start(pdp, 3395, GSM0408_T3395_SECS);
1277
1278 return _gsm48_tx_gsm_deact_pdp_req(pdp->mm, pdp->ti, sm_cause);
1279}
1280
Harald Welte75bb8202010-03-14 15:45:01 +08001281/* Section 9.5.9: Deactivate PDP Context Accept */
Harald Welte3b807312010-06-08 18:08:59 +02001282static int _gsm48_tx_gsm_deact_pdp_acc(struct sgsn_mm_ctx *mm, uint8_t tid)
Harald Welte75bb8202010-03-14 15:45:01 +08001283{
Harald Welte75bb8202010-03-14 15:45:01 +08001284 struct msgb *msg = gsm48_msgb_alloc();
1285 struct gsm48_hdr *gh;
Harald Welte3b807312010-06-08 18:08:59 +02001286 uint8_t transaction_id = tid ^ 0x8; /* flip */
Harald Welte75bb8202010-03-14 15:45:01 +08001287
1288 DEBUGP(DMM, "<- DEACTIVATE PDP CONTEXT ACK\n");
1289
Harald Welte3b807312010-06-08 18:08:59 +02001290 mmctx2msgid(msg, mm);
Harald Welte75bb8202010-03-14 15:45:01 +08001291
1292 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
1293 gh->proto_discr = GSM48_PDISC_SM_GPRS | (transaction_id << 4);
1294 gh->msg_type = GSM48_MT_GSM_DEACT_PDP_ACK;
1295
Harald Welte3b807312010-06-08 18:08:59 +02001296 return gsm48_gmm_sendmsg(msg, 0, mm);
1297}
1298int gsm48_tx_gsm_deact_pdp_acc(struct sgsn_pdp_ctx *pdp)
1299{
1300 return _gsm48_tx_gsm_deact_pdp_acc(pdp->mm, pdp->ti);
Harald Welte75bb8202010-03-14 15:45:01 +08001301}
1302
1303/* Section 9.5.1: Activate PDP Context Request */
Harald Weltec1f6bfe2010-05-17 22:58:03 +02001304static int gsm48_rx_gsm_act_pdp_req(struct sgsn_mm_ctx *mmctx,
1305 struct msgb *msg)
Harald Welte75bb8202010-03-14 15:45:01 +08001306{
Harald Weltecf3c4142010-04-30 16:33:12 +02001307 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_gmmh(msg);
Harald Welte75bb8202010-03-14 15:45:01 +08001308 struct gsm48_act_pdp_ctx_req *act_req = (struct gsm48_act_pdp_ctx_req *) gh->data;
Harald Welteb1fd23a2010-05-02 21:07:14 +02001309 uint8_t req_qos_len, req_pdpa_len;
1310 uint8_t *req_qos, *req_pdpa;
1311 struct tlv_parsed tp;
Harald Welte29d838e2010-05-18 10:35:06 +02001312 uint8_t transaction_id = (gh->proto_discr >> 4);
Harald Welte8bf65d02010-07-02 10:17:24 +02001313 struct sgsn_ggsn_ctx *ggsn;
Harald Welte29d838e2010-05-18 10:35:06 +02001314 struct sgsn_pdp_ctx *pdp;
Harald Welte75bb8202010-03-14 15:45:01 +08001315
Harald Welte29d838e2010-05-18 10:35:06 +02001316 DEBUGP(DMM, "-> ACTIVATE PDP CONTEXT REQ: SAPI=%u NSAPI=%u ",
1317 act_req->req_llc_sapi, act_req->req_nsapi);
Harald Welte8a035af2010-05-18 10:57:45 +02001318
Harald Welteb7b0fd72010-07-02 22:52:04 +02001319 /* FIXME: length checks! */
Harald Welteb1fd23a2010-05-02 21:07:14 +02001320 req_qos_len = act_req->data[0];
1321 req_qos = act_req->data + 1; /* 10.5.6.5 */
1322 req_pdpa_len = act_req->data[1 + req_qos_len];
1323 req_pdpa = act_req->data + 1 + req_qos_len + 1; /* 10.5.6.4 */
Harald Welte75bb8202010-03-14 15:45:01 +08001324
Harald Welteb7b0fd72010-07-02 22:52:04 +02001325 /* Optional: Access Point Name, Protocol Config Options */
1326 if (req_pdpa + req_pdpa_len < msg->data + msg->len)
1327 tlv_parse(&tp, &gsm48_sm_att_tlvdef, req_pdpa + req_pdpa_len,
1328 (msg->data + msg->len) - (req_pdpa + req_pdpa_len), 0, 0);
1329 else
1330 memset(&tp, 0, sizeof(tp));
1331
Harald Welteb1fd23a2010-05-02 21:07:14 +02001332 switch (req_pdpa[0] & 0xf) {
1333 case 0x0:
1334 DEBUGPC(DMM, "ETSI ");
1335 break;
1336 case 0x1:
1337 DEBUGPC(DMM, "IETF ");
1338 break;
1339 case 0xf:
1340 DEBUGPC(DMM, "Empty ");
1341 break;
1342 }
1343
1344 switch (req_pdpa[1]) {
1345 case 0x21:
1346 DEBUGPC(DMM, "IPv4 ");
1347 if (req_pdpa_len >= 6) {
1348 struct in_addr ia;
1349 ia.s_addr = ntohl(*((uint32_t *) (req_pdpa+2)));
1350 DEBUGPC(DMM, "%s ", inet_ntoa(ia));
1351 }
1352 break;
1353 case 0x57:
1354 DEBUGPC(DMM, "IPv6 ");
1355 if (req_pdpa_len >= 18) {
1356 /* FIXME: print IPv6 address */
1357 }
1358 break;
1359 default:
1360 DEBUGPC(DMM, "0x%02x ", req_pdpa[1]);
1361 break;
1362 }
1363
Harald Welteeb471c92010-05-18 14:32:29 +02001364 DEBUGPC(DMM, "\n");
1365
Harald Welte8f77f192010-05-17 00:44:57 +02001366 /* put the non-TLV elements in the TLV parser structure to
1367 * pass them on to the SGSN / GTP code */
1368 tp.lv[OSMO_IE_GSM_REQ_QOS].len = req_qos_len;
1369 tp.lv[OSMO_IE_GSM_REQ_QOS].val = req_qos;
1370 tp.lv[OSMO_IE_GSM_REQ_PDP_ADDR].len = req_pdpa_len;
1371 tp.lv[OSMO_IE_GSM_REQ_PDP_ADDR].val = req_pdpa;
1372
Harald Welte29d838e2010-05-18 10:35:06 +02001373 /* FIXME: determine GGSN based on APN and subscription options */
Harald Welteb1fd23a2010-05-02 21:07:14 +02001374 if (TLVP_PRESENT(&tp, GSM48_IE_GSM_APN)) {}
Harald Welte29d838e2010-05-18 10:35:06 +02001375
1376 /* Check if NSAPI is out of range (TS 04.65 / 7.2) */
1377 if (act_req->req_nsapi < 5 || act_req->req_nsapi > 15) {
1378 /* Send reject with GSM_CAUSE_INV_MAND_INFO */
1379 return gsm48_tx_gsm_act_pdp_rej(mmctx, transaction_id,
1380 GSM_CAUSE_INV_MAND_INFO,
1381 0, NULL);
1382 }
1383
1384 /* Check if NSAPI is already in use */
Harald Welte5fbac982010-07-02 10:12:58 +02001385 pdp = sgsn_pdp_ctx_by_nsapi(mmctx, act_req->req_nsapi);
1386 if (pdp) {
1387 /* We already have a PDP context for this TLLI + NSAPI tuple */
1388 if (pdp->sapi == act_req->req_llc_sapi &&
1389 pdp->ti == transaction_id) {
1390 /* This apparently is a re-transmission of a PDP CTX
1391 * ACT REQ (our ACT ACK must have got dropped) */
1392 return gsm48_tx_gsm_act_pdp_acc(pdp);
1393 }
1394
1395 /* Send reject with GSM_CAUSE_NSAPI_IN_USE */
Harald Welte29d838e2010-05-18 10:35:06 +02001396 return gsm48_tx_gsm_act_pdp_rej(mmctx, transaction_id,
1397 GSM_CAUSE_NSAPI_IN_USE,
1398 0, NULL);
1399 }
Harald Welte75bb8202010-03-14 15:45:01 +08001400
Harald Weltea456a232010-07-02 10:15:49 +02001401 /* Only increment counter for a real activation, after we checked
1402 * for re-transmissions */
1403 rate_ctr_inc(&mmctx->ctrg->ctr[GMM_CTR_PDP_CTX_ACT]);
1404
Harald Welte8bf65d02010-07-02 10:17:24 +02001405 ggsn = sgsn_ggsn_ctx_by_id(0);
1406 if (!ggsn) {
1407 LOGP(DGPRS, LOGL_ERROR, "No GGSN context 0 found!\n");
1408 return -EIO;
Harald Weltec1f6bfe2010-05-17 22:58:03 +02001409 }
Harald Welte8bf65d02010-07-02 10:17:24 +02001410 ggsn->gsn = sgsn->gsn;
1411 pdp = sgsn_create_pdp_ctx(ggsn, mmctx, act_req->req_nsapi, &tp);
1412 if (!pdp)
1413 return -1;
1414
1415 /* Store SAPI and Transaction Identifier */
1416 pdp->sapi = act_req->req_llc_sapi;
1417 pdp->ti = transaction_id;
1418
Harald Welte64df8ed2010-05-18 17:04:55 +02001419 return 0;
Harald Welte75bb8202010-03-14 15:45:01 +08001420}
1421
1422/* Section 9.5.8: Deactivate PDP Context Request */
Harald Welteeb471c92010-05-18 14:32:29 +02001423static int gsm48_rx_gsm_deact_pdp_req(struct sgsn_mm_ctx *mm, struct msgb *msg)
Harald Welte75bb8202010-03-14 15:45:01 +08001424{
Harald Weltecf3c4142010-04-30 16:33:12 +02001425 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_gmmh(msg);
Harald Welteeb471c92010-05-18 14:32:29 +02001426 uint8_t transaction_id = (gh->proto_discr >> 4);
1427 struct sgsn_pdp_ctx *pdp;
Harald Welte75bb8202010-03-14 15:45:01 +08001428
Harald Welte8f77f192010-05-17 00:44:57 +02001429 DEBUGP(DMM, "-> DEACTIVATE PDP CONTEXT REQ (cause: %s)\n",
Harald Welte75bb8202010-03-14 15:45:01 +08001430 get_value_string(gsm_cause_names, gh->data[0]));
1431
Harald Welteeb471c92010-05-18 14:32:29 +02001432 pdp = sgsn_pdp_ctx_by_tid(mm, transaction_id);
1433 if (!pdp) {
1434 LOGP(DMM, LOGL_NOTICE, "Deactivate PDP Context Request for "
1435 "non-existing PDP Context (IMSI=%s, TI=%u)\n",
1436 mm->imsi, transaction_id);
Harald Welte3b807312010-06-08 18:08:59 +02001437 return _gsm48_tx_gsm_deact_pdp_acc(mm, transaction_id);
Harald Welteeb471c92010-05-18 14:32:29 +02001438 }
1439
1440 return sgsn_delete_pdp_ctx(pdp);
Harald Welte75bb8202010-03-14 15:45:01 +08001441}
1442
Harald Welte94ecef32010-12-24 21:13:26 +01001443/* Section 9.5.9: Deactivate PDP Context Accept */
1444static int gsm48_rx_gsm_deact_pdp_ack(struct sgsn_mm_ctx *mm, struct msgb *msg)
1445{
1446 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_gmmh(msg);
1447 uint8_t transaction_id = (gh->proto_discr >> 4);
1448 struct sgsn_pdp_ctx *pdp;
1449
1450 DEBUGP(DMM, "-> DEACTIVATE PDP CONTEXT ACK\n");
1451
1452 pdp = sgsn_pdp_ctx_by_tid(mm, transaction_id);
1453 if (!pdp) {
1454 LOGP(DMM, LOGL_NOTICE, "Deactivate PDP Context Accept for "
1455 "non-existing PDP Context (IMSI=%s, TI=%u)\n",
1456 mm->imsi, transaction_id);
1457 return 0;
1458 }
1459
1460 return sgsn_delete_pdp_ctx(pdp);
1461}
1462
Harald Weltec1f6bfe2010-05-17 22:58:03 +02001463static int gsm48_rx_gsm_status(struct sgsn_mm_ctx *ctx, struct msgb *msg)
Harald Welte75bb8202010-03-14 15:45:01 +08001464{
1465 struct gsm48_hdr *gh = msgb_l3(msg);
1466
Harald Welte8f77f192010-05-17 00:44:57 +02001467 DEBUGP(DMM, "-> GPRS SM STATUS (cause: %s)\n",
Harald Welte75bb8202010-03-14 15:45:01 +08001468 get_value_string(gsm_cause_names, gh->data[0]));
1469
1470 return 0;
1471}
1472
Harald Welte94ecef32010-12-24 21:13:26 +01001473static void pdpctx_timer_cb(void *_pdp)
1474{
1475 struct sgsn_pdp_ctx *pdp = _pdp;
1476
1477 pdp->num_T_exp++;
1478
1479 switch (pdp->T) {
1480 case 3395: /* waiting for PDP CTX DEACT ACK */
1481 if (pdp->num_T_exp >= 4) {
1482 LOGP(DMM, LOGL_NOTICE, "T3395 expired >= 5 times\n");
1483 pdp->state = PDP_STATE_INACTIVE;
1484 sgsn_delete_pdp_ctx(pdp);
1485 break;
1486 }
1487 gsm48_tx_gsm_deact_pdp_req(pdp, GSM_CAUSE_NET_FAIL);
Pablo Neira Ayuso840ccf62011-05-06 12:11:06 +02001488 osmo_timer_schedule(&pdp->timer, GSM0408_T3395_SECS, 0);
Harald Welte94ecef32010-12-24 21:13:26 +01001489 break;
1490 default:
1491 LOGP(DMM, LOGL_ERROR, "timer expired in unknown mode %u\n",
1492 pdp->T);
1493 }
1494}
1495
1496
Harald Welte75bb8202010-03-14 15:45:01 +08001497/* GPRS Session Management */
Harald Welte75871c72010-06-01 11:53:01 +02001498static int gsm0408_rcv_gsm(struct sgsn_mm_ctx *mmctx, struct msgb *msg,
1499 struct gprs_llc_llme *llme)
Harald Welte75bb8202010-03-14 15:45:01 +08001500{
Harald Weltecf3c4142010-04-30 16:33:12 +02001501 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_gmmh(msg);
Harald Welte75bb8202010-03-14 15:45:01 +08001502 int rc;
1503
Harald Welte75871c72010-06-01 11:53:01 +02001504 /* MMCTX can be NULL when called */
1505
Harald Weltec1f6bfe2010-05-17 22:58:03 +02001506 if (!mmctx) {
1507 LOGP(DMM, LOGL_NOTICE, "Cannot handle SM for unknown MM CTX\n");
Harald Welteef7157f2010-07-02 16:18:18 +02001508 gsm48_tx_gmm_status_oldmsg(msg, GMM_CAUSE_IMPL_DETACHED);
1509 return gsm48_tx_sm_status_oldmsg(msg, GSM_CAUSE_PROTO_ERR_UNSPEC);
Harald Weltec1f6bfe2010-05-17 22:58:03 +02001510 }
1511
Harald Welte75bb8202010-03-14 15:45:01 +08001512 switch (gh->msg_type) {
1513 case GSM48_MT_GSM_ACT_PDP_REQ:
Harald Weltec1f6bfe2010-05-17 22:58:03 +02001514 rc = gsm48_rx_gsm_act_pdp_req(mmctx, msg);
Harald Welte75bb8202010-03-14 15:45:01 +08001515 break;
1516 case GSM48_MT_GSM_DEACT_PDP_REQ:
Harald Weltec1f6bfe2010-05-17 22:58:03 +02001517 rc = gsm48_rx_gsm_deact_pdp_req(mmctx, msg);
Harald Welteeb471c92010-05-18 14:32:29 +02001518 break;
Harald Welte94ecef32010-12-24 21:13:26 +01001519 case GSM48_MT_GSM_DEACT_PDP_ACK:
1520 rc = gsm48_rx_gsm_deact_pdp_ack(mmctx, msg);
1521 break;
Harald Welte75bb8202010-03-14 15:45:01 +08001522 case GSM48_MT_GSM_STATUS:
Harald Weltec1f6bfe2010-05-17 22:58:03 +02001523 rc = gsm48_rx_gsm_status(mmctx, msg);
Harald Welte75bb8202010-03-14 15:45:01 +08001524 break;
1525 case GSM48_MT_GSM_REQ_PDP_ACT_REJ:
1526 case GSM48_MT_GSM_ACT_AA_PDP_REQ:
1527 case GSM48_MT_GSM_DEACT_AA_PDP_REQ:
1528 DEBUGP(DMM, "Unimplemented GSM 04.08 GSM msg type 0x%02x\n",
1529 gh->msg_type);
Harald Welte263edd12010-06-09 10:51:23 +02001530 rc = gsm48_tx_sm_status(mmctx, GSM_CAUSE_MSGT_NOTEXIST_NOTIMPL);
Harald Welte75bb8202010-03-14 15:45:01 +08001531 break;
1532 default:
1533 DEBUGP(DMM, "Unknown GSM 04.08 GSM msg type 0x%02x\n",
1534 gh->msg_type);
Harald Welte263edd12010-06-09 10:51:23 +02001535 rc = gsm48_tx_sm_status(mmctx, GSM_CAUSE_MSGT_NOTEXIST_NOTIMPL);
Harald Welte75bb8202010-03-14 15:45:01 +08001536 break;
1537
1538 }
1539
1540 return rc;
1541}
1542
1543/* Main entry point for incoming 04.08 GPRS messages */
Harald Welte75871c72010-06-01 11:53:01 +02001544int gsm0408_gprs_rcvmsg(struct msgb *msg, struct gprs_llc_llme *llme)
Harald Welte75bb8202010-03-14 15:45:01 +08001545{
Harald Weltecf3c4142010-04-30 16:33:12 +02001546 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_gmmh(msg);
Harald Welted85d9a92010-05-02 11:26:34 +02001547 uint8_t pdisc = gh->proto_discr & 0x0f;
Harald Weltec1f6bfe2010-05-17 22:58:03 +02001548 struct sgsn_mm_ctx *mmctx;
1549 struct gprs_ra_id ra_id;
Harald Welte75bb8202010-03-14 15:45:01 +08001550 int rc = -EINVAL;
1551
Harald Weltec1f6bfe2010-05-17 22:58:03 +02001552 bssgp_parse_cell_id(&ra_id, msgb_bcid(msg));
1553 mmctx = sgsn_mm_ctx_by_tlli(msgb_tlli(msg), &ra_id);
Harald Welte8a035af2010-05-18 10:57:45 +02001554 if (mmctx) {
Harald Welte29d838e2010-05-18 10:35:06 +02001555 msgid2mmctx(mmctx, msg);
Harald Welte8a035af2010-05-18 10:57:45 +02001556 rate_ctr_inc(&mmctx->ctrg->ctr[GMM_CTR_PKTS_SIG_IN]);
Harald Welte75871c72010-06-01 11:53:01 +02001557 mmctx->llme = llme;
Harald Welte8a035af2010-05-18 10:57:45 +02001558 }
Harald Weltec1f6bfe2010-05-17 22:58:03 +02001559
1560 /* MMCTX can be NULL */
1561
Harald Welte75bb8202010-03-14 15:45:01 +08001562 switch (pdisc) {
1563 case GSM48_PDISC_MM_GPRS:
Harald Welte75871c72010-06-01 11:53:01 +02001564 rc = gsm0408_rcv_gmm(mmctx, msg, llme);
Harald Welte75bb8202010-03-14 15:45:01 +08001565 break;
1566 case GSM48_PDISC_SM_GPRS:
Harald Welte75871c72010-06-01 11:53:01 +02001567 rc = gsm0408_rcv_gsm(mmctx, msg, llme);
Harald Welte75bb8202010-03-14 15:45:01 +08001568 break;
1569 default:
1570 DEBUGP(DMM, "Unknown GSM 04.08 discriminator 0x%02x\n",
1571 pdisc);
Harald Welte29d838e2010-05-18 10:35:06 +02001572 /* FIXME: return status message */
Harald Welte75bb8202010-03-14 15:45:01 +08001573 break;
1574 }
1575
1576 return rc;
1577}
Harald Welte50264822010-06-09 11:22:47 +02001578
1579int gprs_gmm_rx_suspend(struct gprs_ra_id *raid, uint32_t tlli)
1580{
1581 struct sgsn_mm_ctx *mmctx;
1582
1583 mmctx = sgsn_mm_ctx_by_tlli(tlli, raid);
1584 if (!mmctx) {
1585 LOGP(DMM, LOGL_NOTICE, "SUSPEND request for unknown "
1586 "TLLI=%08x\n", tlli);
1587 return -EINVAL;
1588 }
1589
1590 if (mmctx->mm_state != GMM_REGISTERED_NORMAL) {
1591 LOGP(DMM, LOGL_NOTICE, "SUSPEND request while state "
1592 "!= REGISTERED (TLLI=%08x)\n", tlli);
1593 return -EINVAL;
1594 }
1595
1596 /* Transition from REGISTERED_NORMAL to REGISTERED_SUSPENDED */
1597 mmctx->mm_state = GMM_REGISTERED_SUSPENDED;
1598 return 0;
1599}
1600
1601int gprs_gmm_rx_resume(struct gprs_ra_id *raid, uint32_t tlli,
1602 uint8_t suspend_ref)
1603{
1604 struct sgsn_mm_ctx *mmctx;
1605
1606 /* FIXME: make use of suspend reference? */
1607
1608 mmctx = sgsn_mm_ctx_by_tlli(tlli, raid);
1609 if (!mmctx) {
1610 LOGP(DMM, LOGL_NOTICE, "RESUME request for unknown "
1611 "TLLI=%08x\n", tlli);
1612 return -EINVAL;
1613 }
1614
1615 if (mmctx->mm_state != GMM_REGISTERED_SUSPENDED) {
1616 LOGP(DMM, LOGL_NOTICE, "RESUME request while state "
1617 "!= SUSPENDED (TLLI=%08x)\n", tlli);
1618 /* FIXME: should we not simply ignore it? */
1619 return -EINVAL;
1620 }
1621
1622 /* Transition from SUSPENDED to NORMAL */
1623 mmctx->mm_state = GMM_REGISTERED_NORMAL;
1624 return 0;
1625}