blob: 63583eccb4dc6ef4439c69c90256ad01715338d5 [file] [log] [blame]
Harald Welte9b455bf2010-03-14 15:45:01 +08001/* GSM Mobile Radio Interface Layer 3 messages on the A-bis interface
2 * 3GPP TS 04.08 version 7.21.0 Release 1998 / ETSI TS 100 940 V7.21.0 */
3
Harald Welte9f1f3ad2010-05-02 12:56:57 +02004/* (C) 2009-2010 by Harald Welte <laforge@gnumonks.org>
Harald Weltec2e8cc42010-05-31 20:23:38 +02005 * (C) 2010 by On-Waves
Harald Welte9b455bf2010-03-14 15:45:01 +08006 *
7 * All Rights Reserved
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License along
20 * with this program; if not, write to the Free Software Foundation, Inc.,
21 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
22 *
23 */
24
25#include <stdio.h>
26#include <stdlib.h>
27#include <string.h>
Harald Welteeaa614c2010-05-02 11:26:34 +020028#include <stdint.h>
Harald Welte9b455bf2010-03-14 15:45:01 +080029#include <errno.h>
30
31#include <netinet/in.h>
Harald Welte421cba42010-05-02 23:11:50 +020032#include <arpa/inet.h>
Harald Welte9b455bf2010-03-14 15:45:01 +080033
34#include <openbsc/db.h>
35#include <osmocore/msgb.h>
36#include <osmocore/tlv.h>
Harald Welted6057092010-05-02 12:57:45 +020037#include <osmocore/gsm_utils.h>
38#include <osmocore/signal.h>
39#include <osmocore/talloc.h>
Harald Welte8acd88f2010-05-18 10:57:45 +020040#include <osmocore/rate_ctr.h>
Harald Welted6057092010-05-02 12:57:45 +020041
Harald Welte9b455bf2010-03-14 15:45:01 +080042#include <openbsc/debug.h>
43#include <openbsc/gsm_data.h>
Harald Welte9b455bf2010-03-14 15:45:01 +080044#include <openbsc/gsm_subscriber.h>
45#include <openbsc/gsm_04_08.h>
46#include <openbsc/gsm_04_08_gprs.h>
47#include <openbsc/paging.h>
Harald Welte9b455bf2010-03-14 15:45:01 +080048#include <openbsc/transaction.h>
Harald Welte11d7c102010-05-02 11:54:55 +020049#include <openbsc/gprs_bssgp.h>
Harald Welte9b455bf2010-03-14 15:45:01 +080050#include <openbsc/gprs_llc.h>
51#include <openbsc/gprs_sgsn.h>
Harald Welte6abf94e2010-05-18 10:35:06 +020052#include <openbsc/gprs_gmm.h>
Harald Welted193cb32010-05-17 22:58:03 +020053#include <openbsc/sgsn.h>
54
Harald Welte6abf94e2010-05-18 10:35:06 +020055#include <pdp.h>
56
Harald Weltec2e8cc42010-05-31 20:23:38 +020057#define PTMSI_ALLOC
58
59/* Section 11.2.2 / Table 11.4 MM timers netowkr side */
60#define GSM0408_T3322_SECS 6 /* DETACH_REQ -> DETACH_ACC */
61#define GSM0408_T3350_SECS 6 /* waiting for ATT/RAU/TMSI COMPL */
62#define GSM0408_T3360_SECS 6 /* waiting for AUTH/CIPH RESP */
63#define GSM0408_T3370_SECS 6 /* waiting for ID RESP */
64
65/* Section 11.2.2 / Table 11.4a MM timers netowkr side */
66#define GSM0408_T3313_SECS 30 /* waiting for paging response */
67#define GSM0408_T3314_SECS 44 /* force to STBY on expiry */
68#define GSM0408_T3316_SECS 44
69
Harald Welted193cb32010-05-17 22:58:03 +020070extern struct sgsn_instance *sgsn;
Harald Welte9b455bf2010-03-14 15:45:01 +080071
Harald Welte2720e732010-05-17 00:44:57 +020072/* Protocol related stuff, should go into libosmocore */
73
Harald Welte9b455bf2010-03-14 15:45:01 +080074/* 10.5.5.14 GPRS MM Cause / Table 10.5.147 */
Harald Welte2720e732010-05-17 00:44:57 +020075const struct value_string gmm_cause_names[] = {
Harald Welte9b455bf2010-03-14 15:45:01 +080076 /* FIXME */
77 { GMM_CAUSE_SEM_INCORR_MSG, "Semantically incorrect message" },
78 { GMM_CAUSE_INV_MAND_INFO, "Invalid mandatory information" },
79 { GMM_CAUSE_MSGT_NOTEXIST_NOTIMPL,
80 "Message type non-existant or not implemented" },
81 { GMM_CAUSE_MSGT_INCOMP_P_STATE,
82 "Message type not compatible with protocol state" },
83 { GMM_CAUSE_IE_NOTEXIST_NOTIMPL,
84 "Information element non-existent or not implemented" },
85 { GMM_CAUSE_COND_IE_ERR, "Conditional IE error" },
86 { GMM_CAUSE_MSG_INCOMP_P_STATE,
87 "Message not compatible with protocol state " },
88 { GMM_CAUSE_PROTO_ERR_UNSPEC, "Protocol error, unspecified" },
89 { 0, NULL }
90};
91
92/* 10.5.6.6 SM Cause / Table 10.5.157 */
Harald Welte2720e732010-05-17 00:44:57 +020093const struct value_string gsm_cause_names[] = {
Harald Welte9b455bf2010-03-14 15:45:01 +080094 { GSM_CAUSE_INSUFF_RSRC, "Insufficient resources" },
95 { GSM_CAUSE_MISSING_APN, "Missing or unknown APN" },
96 { GSM_CAUSE_UNKNOWN_PDP, "Unknown PDP address or PDP type" },
97 { GSM_CAUSE_AUTH_FAILED, "User Authentication failed" },
98 { GSM_CAUSE_ACT_REJ_GGSN, "Activation rejected by GGSN" },
99 { GSM_CAUSE_ACT_REJ_UNSPEC, "Activation rejected, unspecified" },
100 { GSM_CAUSE_SERV_OPT_NOTSUPP, "Service option not supported" },
101 { GSM_CAUSE_REQ_SERV_OPT_NOTSUB,
102 "Requested service option not subscribed" },
103 { GSM_CAUSE_SERV_OPT_TEMP_OOO,
104 "Service option temporarily out of order" },
105 { GSM_CAUSE_NSAPI_IN_USE, "NSAPI already used" },
106 { GSM_CAUSE_DEACT_REGULAR, "Regular deactivation" },
107 { GSM_CAUSE_QOS_NOT_ACCEPTED, "QoS not accepted" },
108 { GSM_CAUSE_NET_FAIL, "Network Failure" },
109 { GSM_CAUSE_REACT_RQD, "Reactivation required" },
110 { GSM_CAUSE_FEATURE_NOTSUPP, "Feature not supported " },
111 { GSM_CAUSE_INVALID_TRANS_ID, "Invalid transaction identifier" },
112 { GSM_CAUSE_SEM_INCORR_MSG, "Semantically incorrect message" },
113 { GSM_CAUSE_INV_MAND_INFO, "Invalid mandatory information" },
114 { GSM_CAUSE_MSGT_NOTEXIST_NOTIMPL,
115 "Message type non-existant or not implemented" },
116 { GSM_CAUSE_MSGT_INCOMP_P_STATE,
117 "Message type not compatible with protocol state" },
118 { GSM_CAUSE_IE_NOTEXIST_NOTIMPL,
119 "Information element non-existent or not implemented" },
120 { GSM_CAUSE_COND_IE_ERR, "Conditional IE error" },
121 { GSM_CAUSE_MSG_INCOMP_P_STATE,
122 "Message not compatible with protocol state " },
123 { GSM_CAUSE_PROTO_ERR_UNSPEC, "Protocol error, unspecified" },
124 { 0, NULL }
125};
126
Harald Welte2720e732010-05-17 00:44:57 +0200127/* 10.5.5.2 */
128const struct value_string gprs_att_t_strs[] = {
129 { GPRS_ATT_T_ATTACH, "GPRS attach" },
130 { GPRS_ATT_T_ATT_WHILE_IMSI, "GPRS attach while IMSI attached" },
131 { GPRS_ATT_T_COMBINED, "Combined GPRS/IMSI attach" },
132 { 0, NULL }
133};
Harald Welte9b455bf2010-03-14 15:45:01 +0800134
Harald Welte2720e732010-05-17 00:44:57 +0200135const struct value_string gprs_upd_t_strs[] = {
136 { GPRS_UPD_T_RA, "RA updating" },
137 { GPRS_UPD_T_RA_LA, "combined RA/LA updating" },
138 { GPRS_UPD_T_RA_LA_IMSI_ATT, "combined RA/LA updating + IMSI attach" },
139 { GPRS_UPD_T_PERIODIC, "periodic updating" },
140 { 0, NULL }
141};
142
143/* 10.5.5.5 */
144const struct value_string gprs_det_t_mo_strs[] = {
145 { GPRS_DET_T_MO_GPRS, "GPRS detach" },
146 { GPRS_DET_T_MO_IMSI, "IMSI detach" },
147 { GPRS_DET_T_MO_COMBINED, "Combined GPRS/IMSI detach" },
148 { 0, NULL }
149};
150
Harald Welte588d44e2010-06-09 10:28:29 +0200151static const struct tlv_definition gsm48_gmm_att_tlvdef = {
152 .def = {
153 [GSM48_IE_GMM_TIMER_READY] = { TLV_TYPE_TV, 1 },
154 [GSM48_IE_GMM_ALLOC_PTMSI] = { TLV_TYPE_TLV, 0 },
155 [GSM48_IE_GMM_PTMSI_SIG] = { TLV_TYPE_TV, 3 },
156 [GSM48_IE_GMM_AUTH_RAND] = { TLV_TYPE_TV, 16 },
157 [GSM48_IE_GMM_AUTH_SRES] = { TLV_TYPE_TV, 4 },
158 [GSM48_IE_GMM_IMEISV] = { TLV_TYPE_TLV, 0 },
159 [GSM48_IE_GMM_DRX_PARAM] = { TLV_TYPE_TV, 2 },
160 [GSM48_IE_GMM_MS_NET_CAPA] = { TLV_TYPE_TLV, 0 },
161 [GSM48_IE_GMM_PDP_CTX_STATUS] = { TLV_TYPE_TLV, 0 },
162 [GSM48_IE_GMM_PS_LCS_CAPA] = { TLV_TYPE_TLV, 0 },
163 [GSM48_IE_GMM_GMM_MBMS_CTX_ST] = { TLV_TYPE_TLV, 0 },
164 },
165};
166
167static const struct tlv_definition gsm48_sm_att_tlvdef = {
168 .def = {
169 [GSM48_IE_GSM_APN] = { TLV_TYPE_TLV, 0 },
170 [GSM48_IE_GSM_PROTO_CONF_OPT] = { TLV_TYPE_TLV, 0 },
171 [GSM48_IE_GSM_PDP_ADDR] = { TLV_TYPE_TLV, 0 },
172 [GSM48_IE_GSM_AA_TMR] = { TLV_TYPE_TV, 1 },
173 [GSM48_IE_GSM_NAME_FULL] = { TLV_TYPE_TLV, 0 },
174 [GSM48_IE_GSM_NAME_SHORT] = { TLV_TYPE_TLV, 0 },
175 [GSM48_IE_GSM_TIMEZONE] = { TLV_TYPE_TV, 1 },
176 [GSM48_IE_GSM_UTC_AND_TZ] = { TLV_TYPE_TV, 7 },
177 [GSM48_IE_GSM_LSA_ID] = { TLV_TYPE_TLV, 0 },
178 },
179};
180
Harald Welte2720e732010-05-17 00:44:57 +0200181/* Our implementation, should be kept in SGSN */
Harald Welte9b455bf2010-03-14 15:45:01 +0800182
Harald Weltec2e8cc42010-05-31 20:23:38 +0200183static void mmctx_timer_cb(void *_mm);
184
185static void mmctx_timer_start(struct sgsn_mm_ctx *mm, unsigned int T,
186 unsigned int seconds)
187{
188 if (bsc_timer_pending(&mm->timer))
189 LOGP(DMM, LOGL_ERROR, "Starting MM timer %u while old "
190 "timer %u pending\n", T, mm->T);
191 mm->T = T;
192 mm->num_T_exp = 0;
193
194 /* FIXME: we should do this only once ? */
195 mm->timer.data = mm;
196 mm->timer.cb = &mmctx_timer_cb;
197
198 bsc_schedule_timer(&mm->timer, seconds, 0);
199}
200
201static void mmctx_timer_stop(struct sgsn_mm_ctx *mm, unsigned int T)
202{
203 if (mm->T != T)
204 LOGP(DMM, LOGL_ERROR, "Stopping MM timer %u but "
205 "%u is running\n", T, mm->T);
206 bsc_del_timer(&mm->timer);
207}
208
Harald Welte9b455bf2010-03-14 15:45:01 +0800209/* Send a message through the underlying layer */
Harald Welte8acd88f2010-05-18 10:57:45 +0200210static int gsm48_gmm_sendmsg(struct msgb *msg, int command,
211 const struct sgsn_mm_ctx *mm)
Harald Welte9b455bf2010-03-14 15:45:01 +0800212{
Harald Welte8acd88f2010-05-18 10:57:45 +0200213 if (mm)
214 rate_ctr_inc(&mm->ctrg->ctr[GMM_CTR_PKTS_SIG_OUT]);
215
Harald Welte11d7c102010-05-02 11:54:55 +0200216 /* caller needs to provide TLLI, BVCI and NSEI */
Harald Welte56a01452010-05-31 22:12:30 +0200217 return gprs_llc_tx_ui(msg, GPRS_SAPI_GMM, command, mm);
Harald Welte9b455bf2010-03-14 15:45:01 +0800218}
219
Harald Welte11d7c102010-05-02 11:54:55 +0200220/* copy identifiers from old message to new message, this
221 * is required so lower layers can route it correctly */
222static void gmm_copy_id(struct msgb *msg, const struct msgb *old)
223{
224 msgb_tlli(msg) = msgb_tlli(old);
225 msgb_bvci(msg) = msgb_bvci(old);
226 msgb_nsei(msg) = msgb_nsei(old);
227}
228
Harald Welte6abf94e2010-05-18 10:35:06 +0200229/* Store BVCI/NSEI in MM context */
230static void msgid2mmctx(struct sgsn_mm_ctx *mm, const struct msgb *msg)
231{
232 mm->bvci = msgb_bvci(msg);
233 mm->nsei = msgb_nsei(msg);
234}
235
236/* Store BVCI/NSEI in MM context */
237static void mmctx2msgid(struct msgb *msg, const struct sgsn_mm_ctx *mm)
238{
239 msgb_tlli(msg) = mm->tlli;
240 msgb_bvci(msg) = mm->bvci;
241 msgb_nsei(msg) = mm->nsei;
242}
243
Harald Weltef54e7e22010-06-09 10:51:23 +0200244/* Chapter 9.4.18 */
245static int _tx_status(struct msgb *msg, uint8_t cause,
246 struct sgsn_mm_ctx *mmctx, int sm)
247{
248 struct gsm48_hdr *gh;
249
250 /* MMCTX might be NULL! */
251
252 DEBUGP(DMM, "<- GPRS MM STATUS (cause: %s)\n",
253 get_value_string(gmm_cause_names, cause));
254
255 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh) + 1);
256 if (sm) {
257 gh->proto_discr = GSM48_PDISC_SM_GPRS;
258 gh->msg_type = GSM48_MT_GSM_STATUS;
259 } else {
260 gh->proto_discr = GSM48_PDISC_MM_GPRS;
261 gh->msg_type = GSM48_MT_GMM_STATUS;
262 }
263 gh->data[0] = cause;
264
265 return gsm48_gmm_sendmsg(msg, 0, mmctx);
266}
267static int gsm48_tx_gmm_status(struct sgsn_mm_ctx *mmctx, uint8_t cause)
268{
269 struct msgb *msg = gsm48_msgb_alloc();
270
271 mmctx2msgid(msg, mmctx);
272 return _tx_status(msg, cause, mmctx, 0);
273};
274static int gsm48_tx_gmm_status_oldmsg(struct msgb *oldmsg, uint8_t cause)
275{
276 struct msgb *msg = gsm48_msgb_alloc();
277
278 gmm_copy_id(msg, oldmsg);
279 return _tx_status(msg, cause, NULL, 0);
280}
281static int gsm48_tx_sm_status(struct sgsn_mm_ctx *mmctx, uint8_t cause)
282{
283 struct msgb *msg = gsm48_msgb_alloc();
284
285 mmctx2msgid(msg, mmctx);
286 return _tx_status(msg, cause, mmctx, 1);
287};
288static int gsm48_tx_sm_status_oldmsg(struct msgb *oldmsg, uint8_t cause)
289{
290 struct msgb *msg = gsm48_msgb_alloc();
291
292 gmm_copy_id(msg, oldmsg);
293 return _tx_status(msg, cause, NULL, 1);
294}
295
296
Harald Welte86fda902010-05-03 10:54:35 +0200297static struct gsm48_qos default_qos = {
298 .delay_class = 4, /* best effort */
299 .reliab_class = GSM48_QOS_RC_LLC_UN_RLC_ACK_DATA_PROT,
300 .peak_tput = GSM48_QOS_PEAK_TPUT_32000bps,
301 .preced_class = GSM48_QOS_PC_NORMAL,
302 .mean_tput = GSM48_QOS_MEAN_TPUT_BEST_EFFORT,
303 .traf_class = GSM48_QOS_TC_INTERACTIVE,
304 .deliv_order = GSM48_QOS_DO_UNORDERED,
305 .deliv_err_sdu = GSM48_QOS_ERRSDU_YES,
306 .max_sdu_size = GSM48_QOS_MAXSDU_1520,
307 .max_bitrate_up = GSM48_QOS_MBRATE_63k,
308 .max_bitrate_down = GSM48_QOS_MBRATE_63k,
309 .resid_ber = GSM48_QOS_RBER_5e_2,
310 .sdu_err_ratio = GSM48_QOS_SERR_1e_2,
311 .handling_prio = 3,
312 .xfer_delay = 0x10, /* 200ms */
313 .guar_bitrate_up = GSM48_QOS_MBRATE_0k,
314 .guar_bitrate_down = GSM48_QOS_MBRATE_0k,
315 .sig_ind = 0, /* not optimised for signalling */
316 .max_bitrate_down_ext = 0, /* use octet 9 */
317 .guar_bitrate_down_ext = 0, /* use octet 13 */
318};
319
Harald Welte9b455bf2010-03-14 15:45:01 +0800320/* Chapter 9.4.2: Attach accept */
Harald Welte6463c072010-05-18 17:04:55 +0200321static int gsm48_tx_gmm_att_ack(struct sgsn_mm_ctx *mm)
Harald Welte9b455bf2010-03-14 15:45:01 +0800322{
323 struct msgb *msg = gsm48_msgb_alloc();
324 struct gsm48_hdr *gh;
325 struct gsm48_attach_ack *aa;
Harald Weltecd4dd4d2010-05-18 17:20:49 +0200326 uint8_t *ptsig, *mid;
Harald Welte9b455bf2010-03-14 15:45:01 +0800327
Harald Weltec2e8cc42010-05-31 20:23:38 +0200328 DEBUGP(DMM, "<- GPRS ATTACH ACCEPT (new P-TMSI=0x%08x)\n", mm->p_tmsi);
Harald Welte9b455bf2010-03-14 15:45:01 +0800329
Harald Welte6463c072010-05-18 17:04:55 +0200330 mmctx2msgid(msg, mm);
Harald Welte9b455bf2010-03-14 15:45:01 +0800331
332 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
333 gh->proto_discr = GSM48_PDISC_MM_GPRS;
334 gh->msg_type = GSM48_MT_GMM_ATTACH_ACK;
335
336 aa = (struct gsm48_attach_ack *) msgb_put(msg, sizeof(*aa));
337 aa->force_stby = 0; /* not indicated */
338 aa->att_result = 1; /* GPRS only */
339 aa->ra_upd_timer = GPRS_TMR_MINUTE | 10;
340 aa->radio_prio = 4; /* lowest */
Harald Welte6463c072010-05-18 17:04:55 +0200341 gsm48_construct_ra(aa->ra_id.digits, &mm->ra);
Harald Welte9b455bf2010-03-14 15:45:01 +0800342
Harald Welteab1d5622010-05-18 19:58:38 +0200343#if 0
Harald Welte6463c072010-05-18 17:04:55 +0200344 /* Optional: P-TMSI signature */
345 msgb_v_put(msg, GSM48_IE_GMM_PTMSI_SIG);
346 ptsig = msgb_put(msg, 3);
347 ptsig[0] = mm->p_tmsi_sig >> 16;
348 ptsig[1] = mm->p_tmsi_sig >> 8;
349 ptsig[2] = mm->p_tmsi_sig & 0xff;
350
351 /* Optional: Negotiated Ready timer value */
Harald Weltec2e8cc42010-05-31 20:23:38 +0200352#endif
Harald Welte6463c072010-05-18 17:04:55 +0200353
Harald Weltec2e8cc42010-05-31 20:23:38 +0200354#ifdef PTMSI_ALLOC
Harald Welte6463c072010-05-18 17:04:55 +0200355 /* Optional: Allocated P-TMSI */
Harald Welte6463c072010-05-18 17:04:55 +0200356 mid = msgb_put(msg, GSM48_MID_TMSI_LEN);
357 gsm48_generate_mid_from_tmsi(mid, mm->p_tmsi);
Harald Welteab1d5622010-05-18 19:58:38 +0200358 mid[0] = GSM48_IE_GMM_ALLOC_PTMSI;
359#endif
Harald Weltec2e8cc42010-05-31 20:23:38 +0200360
Harald Welte6463c072010-05-18 17:04:55 +0200361 /* Optional: MS-identity (combined attach) */
362 /* Optional: GMM cause (partial attach result for combined attach) */
363
Harald Welte56a01452010-05-31 22:12:30 +0200364 return gsm48_gmm_sendmsg(msg, 0, mm);
Harald Welte9b455bf2010-03-14 15:45:01 +0800365}
366
367/* Chapter 9.4.5: Attach reject */
Harald Welte6463c072010-05-18 17:04:55 +0200368static int _tx_gmm_att_rej(struct msgb *msg, uint8_t gmm_cause)
Harald Welte9b455bf2010-03-14 15:45:01 +0800369{
Harald Welte9b455bf2010-03-14 15:45:01 +0800370 struct gsm48_hdr *gh;
371
372 DEBUGP(DMM, "<- GPRS ATTACH REJECT\n");
373
Harald Welte9b455bf2010-03-14 15:45:01 +0800374 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh) + 1);
375 gh->proto_discr = GSM48_PDISC_MM_GPRS;
376 gh->msg_type = GSM48_MT_GMM_ATTACH_REJ;
377 gh->data[0] = gmm_cause;
378
Harald Welte8acd88f2010-05-18 10:57:45 +0200379 return gsm48_gmm_sendmsg(msg, 0, NULL);
Harald Welte9b455bf2010-03-14 15:45:01 +0800380}
Harald Welte6463c072010-05-18 17:04:55 +0200381static int gsm48_tx_gmm_att_rej_oldmsg(const struct msgb *old_msg,
382 uint8_t gmm_cause)
383{
384 struct msgb *msg = gsm48_msgb_alloc();
385 gmm_copy_id(msg, old_msg);
386 return _tx_gmm_att_rej(msg, gmm_cause);
387}
388static int gsm48_tx_gmm_att_rej(struct sgsn_mm_ctx *mm,
389 uint8_t gmm_cause)
390{
391 struct msgb *msg = gsm48_msgb_alloc();
392 mmctx2msgid(msg, mm);
393 return _tx_gmm_att_rej(msg, gmm_cause);
394}
Harald Welte9b455bf2010-03-14 15:45:01 +0800395
Harald Welte2720e732010-05-17 00:44:57 +0200396/* Chapter 9.4.6.2 Detach accept */
Harald Weltecd4dd4d2010-05-18 17:20:49 +0200397static int gsm48_tx_gmm_det_ack(struct sgsn_mm_ctx *mm, uint8_t force_stby)
Harald Welte2720e732010-05-17 00:44:57 +0200398{
399 struct msgb *msg = gsm48_msgb_alloc();
400 struct gsm48_hdr *gh;
401
402 DEBUGP(DMM, "<- GPRS DETACH ACCEPT\n");
403
Harald Welte6463c072010-05-18 17:04:55 +0200404 mmctx2msgid(msg, mm);
405
Harald Welte2720e732010-05-17 00:44:57 +0200406 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh) + 1);
407 gh->proto_discr = GSM48_PDISC_MM_GPRS;
408 gh->msg_type = GSM48_MT_GMM_DETACH_ACK;
409 gh->data[0] = force_stby;
410
Harald Welte56a01452010-05-31 22:12:30 +0200411 return gsm48_gmm_sendmsg(msg, 0, mm);
Harald Welte2720e732010-05-17 00:44:57 +0200412}
413
Harald Welte9b455bf2010-03-14 15:45:01 +0800414/* Transmit Chapter 9.4.12 Identity Request */
Harald Welte6463c072010-05-18 17:04:55 +0200415static int gsm48_tx_gmm_id_req(struct sgsn_mm_ctx *mm, uint8_t id_type)
Harald Welte9b455bf2010-03-14 15:45:01 +0800416{
417 struct msgb *msg = gsm48_msgb_alloc();
418 struct gsm48_hdr *gh;
419
Harald Weltedce12552010-05-31 22:31:04 +0200420 DEBUGP(DMM, "<- GPRS IDENTITY REQUEST: mi_type=%02x\n", id_type);
Harald Welte9b455bf2010-03-14 15:45:01 +0800421
Harald Welte6463c072010-05-18 17:04:55 +0200422 mmctx2msgid(msg, mm);
Harald Welte9b455bf2010-03-14 15:45:01 +0800423
424 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh) + 1);
425 gh->proto_discr = GSM48_PDISC_MM_GPRS;
426 gh->msg_type = GSM48_MT_GMM_ID_REQ;
427 /* 10.5.5.9 ID type 2 + identity type and 10.5.5.7 'force to standby' IE */
428 gh->data[0] = id_type & 0xf;
429
Harald Weltedce12552010-05-31 22:31:04 +0200430 return gsm48_gmm_sendmsg(msg, 1, mm);
Harald Welte9b455bf2010-03-14 15:45:01 +0800431}
432
433/* Check if we can already authorize a subscriber */
Harald Weltec2e8cc42010-05-31 20:23:38 +0200434static int gsm48_gmm_authorize(struct sgsn_mm_ctx *ctx,
435 enum gprs_t3350_mode t3350_mode)
Harald Welte9b455bf2010-03-14 15:45:01 +0800436{
437 if (strlen(ctx->imei) && strlen(ctx->imsi)) {
Harald Weltec2e8cc42010-05-31 20:23:38 +0200438#ifdef PTMSI_ALLOC
439 /* Start T3350 and re-transmit up to 5 times until ATTACH COMPLETE */
440 ctx->t3350_mode = t3350_mode;
441 mmctx_timer_start(ctx, 3350, GSM0408_T3350_SECS);
442#endif
Harald Welte9b455bf2010-03-14 15:45:01 +0800443 ctx->mm_state = GMM_REGISTERED_NORMAL;
Harald Welte6463c072010-05-18 17:04:55 +0200444 return gsm48_tx_gmm_att_ack(ctx);
Harald Welte9b455bf2010-03-14 15:45:01 +0800445 }
Harald Weltec2e8cc42010-05-31 20:23:38 +0200446 if (!strlen(ctx->imei)) {
447 ctx->mm_state = GMM_COMMON_PROC_INIT;
448 ctx->t3370_id_type = GSM_MI_TYPE_IMEI;
449 mmctx_timer_start(ctx, 3370, GSM0408_T3370_SECS);
Harald Welte6463c072010-05-18 17:04:55 +0200450 return gsm48_tx_gmm_id_req(ctx, GSM_MI_TYPE_IMEI);
Harald Weltec2e8cc42010-05-31 20:23:38 +0200451 }
Harald Welte9b455bf2010-03-14 15:45:01 +0800452
Harald Weltec2e8cc42010-05-31 20:23:38 +0200453 if (!strlen(ctx->imsi)) {
454 ctx->mm_state = GMM_COMMON_PROC_INIT;
455 ctx->t3370_id_type = GSM_MI_TYPE_IMSI;
456 mmctx_timer_start(ctx, 3370, GSM0408_T3370_SECS);
Harald Welte6463c072010-05-18 17:04:55 +0200457 return gsm48_tx_gmm_id_req(ctx, GSM_MI_TYPE_IMSI);
Harald Weltec2e8cc42010-05-31 20:23:38 +0200458 }
Harald Welte9b455bf2010-03-14 15:45:01 +0800459
460 return 0;
461}
462
463/* Parse Chapter 9.4.13 Identity Response */
Harald Welted193cb32010-05-17 22:58:03 +0200464static int gsm48_rx_gmm_id_resp(struct sgsn_mm_ctx *ctx, struct msgb *msg)
Harald Welte9b455bf2010-03-14 15:45:01 +0800465{
Harald Welte943c5bc2010-04-30 16:33:12 +0200466 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_gmmh(msg);
Harald Welteeaa614c2010-05-02 11:26:34 +0200467 uint8_t mi_type = gh->data[1] & GSM_MI_TYPE_MASK;
Harald Welte9b455bf2010-03-14 15:45:01 +0800468 char mi_string[GSM48_MI_SIZE];
Harald Welte9b455bf2010-03-14 15:45:01 +0800469
470 gsm48_mi_to_string(mi_string, sizeof(mi_string), &gh->data[1], gh->data[0]);
Harald Welte2720e732010-05-17 00:44:57 +0200471 DEBUGP(DMM, "-> GMM IDENTITY RESPONSE: mi_type=0x%02x MI(%s) ",
Harald Welte9b455bf2010-03-14 15:45:01 +0800472 mi_type, mi_string);
473
Harald Welte9b455bf2010-03-14 15:45:01 +0800474 if (!ctx) {
Harald Welte943c5bc2010-04-30 16:33:12 +0200475 DEBUGP(DMM, "from unknown TLLI 0x%08x?!?\n", msgb_tlli(msg));
Harald Welte9b455bf2010-03-14 15:45:01 +0800476 return -EINVAL;
477 }
478
Harald Weltec2e8cc42010-05-31 20:23:38 +0200479 if (mi_type == ctx->t3370_id_type)
480 mmctx_timer_stop(ctx, 3370);
481
Harald Welte9b455bf2010-03-14 15:45:01 +0800482 switch (mi_type) {
483 case GSM_MI_TYPE_IMSI:
484 /* we already have a mm context with current TLLI, but no
485 * P-TMSI / IMSI yet. What we now need to do is to fill
486 * this initial context with data from the HLR */
487 strncpy(ctx->imsi, mi_string, sizeof(ctx->imei));
488 break;
489 case GSM_MI_TYPE_IMEI:
490 strncpy(ctx->imei, mi_string, sizeof(ctx->imei));
491 break;
492 case GSM_MI_TYPE_IMEISV:
493 break;
494 }
495
496 DEBUGPC(DMM, "\n");
497 /* Check if we can let the mobile station enter */
Harald Weltec2e8cc42010-05-31 20:23:38 +0200498 return gsm48_gmm_authorize(ctx, ctx->t3350_mode);
Harald Welte9b455bf2010-03-14 15:45:01 +0800499}
500
501/* Section 9.4.1 Attach request */
Harald Welte807a5d82010-06-01 11:53:01 +0200502static int gsm48_rx_gmm_att_req(struct sgsn_mm_ctx *ctx, struct msgb *msg,
503 struct gprs_llc_llme *llme)
Harald Welte9b455bf2010-03-14 15:45:01 +0800504{
Harald Welte943c5bc2010-04-30 16:33:12 +0200505 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_gmmh(msg);
Harald Welte56a01452010-05-31 22:12:30 +0200506 uint8_t *cur = gh->data, *msnc, *mi, *old_ra_info, *ms_ra_acc_cap;
507 uint8_t msnc_len, att_type, mi_len, mi_type, ms_ra_acc_cap_len;
Harald Welteeaa614c2010-05-02 11:26:34 +0200508 uint16_t drx_par;
509 uint32_t tmsi;
Harald Welte9b455bf2010-03-14 15:45:01 +0800510 char mi_string[GSM48_MI_SIZE];
511 struct gprs_ra_id ra_id;
Harald Welte9f1f3ad2010-05-02 12:56:57 +0200512 uint16_t cid;
Harald Welte9b455bf2010-03-14 15:45:01 +0800513
Harald Welte2720e732010-05-17 00:44:57 +0200514 DEBUGP(DMM, "-> GMM ATTACH REQUEST ");
Harald Welte9b455bf2010-03-14 15:45:01 +0800515
516 /* As per TS 04.08 Chapter 4.7.1.4, the attach request arrives either
517 * with a foreign TLLI (P-TMSI that was allocated to the MS before),
518 * or with random TLLI. */
519
Harald Welte9f1f3ad2010-05-02 12:56:57 +0200520 cid = bssgp_parse_cell_id(&ra_id, msgb_bcid(msg));
Harald Welte9b455bf2010-03-14 15:45:01 +0800521
522 /* MS network capability 10.5.5.12 */
523 msnc_len = *cur++;
524 msnc = cur;
525 if (msnc_len > 2)
526 goto err_inval;
527 cur += msnc_len;
528
529 /* aTTACH Type 10.5.5.2 */
530 att_type = *cur++ & 0x0f;
531
532 /* DRX parameter 10.5.5.6 */
Harald Welte56a01452010-05-31 22:12:30 +0200533 drx_par = *cur++ << 8;
534 drx_par |= *cur++;
Harald Welte9b455bf2010-03-14 15:45:01 +0800535
536 /* Mobile Identity (P-TMSI or IMSI) 10.5.1.4 */
537 mi_len = *cur++;
538 mi = cur;
539 if (mi_len > 8)
540 goto err_inval;
541 mi_type = *mi & GSM_MI_TYPE_MASK;
542 cur += mi_len;
543
544 gsm48_mi_to_string(mi_string, sizeof(mi_string), mi, mi_len);
545
Harald Welte2720e732010-05-17 00:44:57 +0200546 DEBUGPC(DMM, "MI(%s) type=\"%s\" ", mi_string,
547 get_value_string(gprs_att_t_strs, att_type));
Harald Welte9b455bf2010-03-14 15:45:01 +0800548
549 /* Old routing area identification 10.5.5.15 */
550 old_ra_info = cur;
551 cur += 6;
552
553 /* MS Radio Access Capability 10.5.5.12a */
Harald Welte56a01452010-05-31 22:12:30 +0200554 ms_ra_acc_cap_len = *cur++;
555 ms_ra_acc_cap = cur;
Harald Welte9b455bf2010-03-14 15:45:01 +0800556
557 /* Optional: Old P-TMSI Signature, Requested READY timer, TMSI Status */
558
559 switch (mi_type) {
560 case GSM_MI_TYPE_IMSI:
561 /* Try to find MM context based on IMSI */
Harald Welte807a5d82010-06-01 11:53:01 +0200562 if (!ctx)
563 ctx = sgsn_mm_ctx_by_imsi(mi_string);
Harald Welte9b455bf2010-03-14 15:45:01 +0800564 if (!ctx) {
565#if 0
566 return gsm48_tx_gmm_att_rej(msg, GMM_CAUSE_IMSI_UNKNOWN);
567#else
568 /* As a temorary hack, we simply assume that the IMSI exists */
569 ctx = sgsn_mm_ctx_alloc(0, &ra_id);
570 if (!ctx)
Harald Welte6463c072010-05-18 17:04:55 +0200571 return gsm48_tx_gmm_att_rej_oldmsg(msg, GMM_CAUSE_NET_FAIL);
Harald Welte9b455bf2010-03-14 15:45:01 +0800572 strncpy(ctx->imsi, mi_string, sizeof(ctx->imsi));
573#endif
574 }
Harald Welte943c5bc2010-04-30 16:33:12 +0200575 ctx->tlli = msgb_tlli(msg);
Harald Welte807a5d82010-06-01 11:53:01 +0200576 ctx->llme = llme;
Harald Welte68b99a42010-05-18 12:05:42 +0200577 msgid2mmctx(ctx, msg);
Harald Welte9b455bf2010-03-14 15:45:01 +0800578 break;
579 case GSM_MI_TYPE_TMSI:
Harald Welteab1d5622010-05-18 19:58:38 +0200580 memcpy(&tmsi, mi+1, 4);
581 tmsi = ntohl(tmsi);
Harald Welte9b455bf2010-03-14 15:45:01 +0800582 /* Try to find MM context based on P-TMSI */
Harald Welte807a5d82010-06-01 11:53:01 +0200583 if (!ctx)
584 ctx = sgsn_mm_ctx_by_ptmsi(tmsi);
Harald Welte9b455bf2010-03-14 15:45:01 +0800585 if (!ctx) {
Harald Welte943c5bc2010-04-30 16:33:12 +0200586 ctx = sgsn_mm_ctx_alloc(msgb_tlli(msg), &ra_id);
Harald Welte807a5d82010-06-01 11:53:01 +0200587 ctx->p_tmsi = tmsi;
Harald Welte9b455bf2010-03-14 15:45:01 +0800588 }
Harald Welte807a5d82010-06-01 11:53:01 +0200589 ctx->tlli = msgb_tlli(msg);
590 ctx->llme = llme;
591 msgid2mmctx(ctx, msg);
Harald Welte9b455bf2010-03-14 15:45:01 +0800592 break;
593 default:
Harald Weltec2e8cc42010-05-31 20:23:38 +0200594 LOGP(DMM, LOGL_NOTICE, "Rejecting ATTACH REQUEST with "
595 "MI type %u\n", mi_type);
596 return gsm48_tx_gmm_att_rej_oldmsg(msg, GMM_CAUSE_MS_ID_NOT_DERIVED);
Harald Welte9b455bf2010-03-14 15:45:01 +0800597 }
Harald Welte9f1f3ad2010-05-02 12:56:57 +0200598 /* Update MM Context with currient RA and Cell ID */
599 ctx->ra = ra_id;
600 ctx->cell_id = cid;
Harald Welte56a01452010-05-31 22:12:30 +0200601 /* Update MM Context with other data */
602 ctx->drx_parms = drx_par;
603 ctx->ms_radio_access_capa.len = ms_ra_acc_cap_len;
604 memcpy(ctx->ms_radio_access_capa.buf, ms_ra_acc_cap, ms_ra_acc_cap_len);
605 ctx->ms_network_capa.len = msnc_len;
606 memcpy(ctx->ms_network_capa.buf, msnc, msnc_len);
607
Harald Weltec2e8cc42010-05-31 20:23:38 +0200608#ifdef PTMSI_ALLOC
Harald Welte807a5d82010-06-01 11:53:01 +0200609 /* Allocate a new P-TMSI (+ P-TMSI signature) and update TLLI */
Harald Weltec2e8cc42010-05-31 20:23:38 +0200610 ctx->p_tmsi_old = ctx->p_tmsi;
Harald Welte6463c072010-05-18 17:04:55 +0200611 ctx->p_tmsi = sgsn_alloc_ptmsi();
Harald Welteab1d5622010-05-18 19:58:38 +0200612#endif
Harald Welte807a5d82010-06-01 11:53:01 +0200613 /* Even if there is no P-TMSI allocated, the MS will switch from
614 * foreign TLLI to local TLLI */
615 ctx->tlli_new = gprs_tmsi2tlli(ctx->p_tmsi, TLLI_LOCAL);
616
617 /* Inform LLC layer about new TLLI but keep old active */
618 gprs_llgmm_assign(ctx->llme, ctx->tlli, ctx->tlli_new, 0, NULL);
Harald Welte9b455bf2010-03-14 15:45:01 +0800619
620 DEBUGPC(DMM, "\n");
Harald Weltec2e8cc42010-05-31 20:23:38 +0200621 return ctx ? gsm48_gmm_authorize(ctx, GMM_T3350_MODE_ATT) : 0;
Harald Welte9b455bf2010-03-14 15:45:01 +0800622
623err_inval:
624 DEBUGPC(DMM, "\n");
Harald Welte6463c072010-05-18 17:04:55 +0200625 return gsm48_tx_gmm_att_rej_oldmsg(msg, GMM_CAUSE_SEM_INCORR_MSG);
Harald Welte9b455bf2010-03-14 15:45:01 +0800626}
627
Harald Welte2720e732010-05-17 00:44:57 +0200628/* Section 4.7.4.1 / 9.4.5.2 MO Detach request */
Harald Welted193cb32010-05-17 22:58:03 +0200629static int gsm48_rx_gmm_det_req(struct sgsn_mm_ctx *ctx, struct msgb *msg)
Harald Welte2720e732010-05-17 00:44:57 +0200630{
631 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_gmmh(msg);
Harald Weltec0d59502010-06-28 19:11:41 +0200632 struct sgsn_pdp_ctx *pdp, *pdp2;
Harald Welte2720e732010-05-17 00:44:57 +0200633 uint8_t detach_type, power_off;
Harald Welte2720e732010-05-17 00:44:57 +0200634
635 detach_type = gh->data[0] & 0x7;
636 power_off = gh->data[0] & 0x8;
637
638 /* FIXME: In 24.008 there is an optional P-TMSI and P-TMSI signature IE */
639
640 DEBUGP(DMM, "-> GMM DETACH REQUEST TLLI=0x%08x type=%s %s\n",
641 msgb_tlli(msg), get_value_string(gprs_det_t_mo_strs, detach_type),
642 power_off ? "Power-off" : "");
643
644 /* Mark MM state as deregistered */
645 ctx->mm_state = GMM_DEREGISTERED;
646
Harald Weltec0d59502010-06-28 19:11:41 +0200647 /* delete all existing PDP contexts for this MS */
648 llist_for_each_entry_safe(pdp, pdp2, &ctx->pdp_list, list) {
649 LOGP(DMM, LOGL_NOTICE, "Dropping PDP context for NSAPI=%u "
650 "due to GPRS DETACH REQUEST\n", pdp->nsapi);
651 sgsn_delete_pdp_ctx(pdp);
652 /* FIXME: the callback wants to transmit a DEACT PDP CTX ACK,
653 * which is quite stupid for a MS that has just detached.. */
654 }
655
Harald Welte2720e732010-05-17 00:44:57 +0200656 /* force_stby = 0 */
Harald Welte6463c072010-05-18 17:04:55 +0200657 return gsm48_tx_gmm_det_ack(ctx, 0);
Harald Welte2720e732010-05-17 00:44:57 +0200658}
659
Harald Welte9b455bf2010-03-14 15:45:01 +0800660/* Chapter 9.4.15: Routing area update accept */
Harald Welte6463c072010-05-18 17:04:55 +0200661static int gsm48_tx_gmm_ra_upd_ack(struct sgsn_mm_ctx *mm)
Harald Welte9b455bf2010-03-14 15:45:01 +0800662{
663 struct msgb *msg = gsm48_msgb_alloc();
664 struct gsm48_hdr *gh;
665 struct gsm48_ra_upd_ack *rua;
Harald Weltec2e8cc42010-05-31 20:23:38 +0200666 uint8_t *mid;
Harald Welte9b455bf2010-03-14 15:45:01 +0800667
668 DEBUGP(DMM, "<- ROUTING AREA UPDATE ACCEPT\n");
669
Harald Welte6463c072010-05-18 17:04:55 +0200670 mmctx2msgid(msg, mm);
Harald Welte9b455bf2010-03-14 15:45:01 +0800671
672 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
673 gh->proto_discr = GSM48_PDISC_MM_GPRS;
674 gh->msg_type = GSM48_MT_GMM_RA_UPD_ACK;
675
676 rua = (struct gsm48_ra_upd_ack *) msgb_put(msg, sizeof(*rua));
677 rua->force_stby = 0; /* not indicated */
678 rua->upd_result = 0; /* RA updated */
679 rua->ra_upd_timer = GPRS_TMR_MINUTE | 10;
Harald Welte11d7c102010-05-02 11:54:55 +0200680
Harald Welte6463c072010-05-18 17:04:55 +0200681 gsm48_construct_ra(rua->ra_id.digits, &mm->ra);
Harald Welte9b455bf2010-03-14 15:45:01 +0800682
Harald Weltec2e8cc42010-05-31 20:23:38 +0200683#if 0
684 /* Optional: P-TMSI signature */
685 msgb_v_put(msg, GSM48_IE_GMM_PTMSI_SIG);
686 ptsig = msgb_put(msg, 3);
687 ptsig[0] = mm->p_tmsi_sig >> 16;
688 ptsig[1] = mm->p_tmsi_sig >> 8;
689 ptsig[2] = mm->p_tmsi_sig & 0xff;
690#endif
691
692#ifdef PTMSI_ALLOC
693 /* Optional: Allocated P-TMSI */
694 mid = msgb_put(msg, GSM48_MID_TMSI_LEN);
695 gsm48_generate_mid_from_tmsi(mid, mm->p_tmsi);
696 mid[0] = GSM48_IE_GMM_ALLOC_PTMSI;
697#endif
698
699 /* Option: MS ID, ... */
Harald Welte56a01452010-05-31 22:12:30 +0200700 return gsm48_gmm_sendmsg(msg, 0, mm);
Harald Welte9b455bf2010-03-14 15:45:01 +0800701}
702
703/* Chapter 9.4.17: Routing area update reject */
Harald Welteeaa614c2010-05-02 11:26:34 +0200704static int gsm48_tx_gmm_ra_upd_rej(struct msgb *old_msg, uint8_t cause)
Harald Welte9b455bf2010-03-14 15:45:01 +0800705{
706 struct msgb *msg = gsm48_msgb_alloc();
707 struct gsm48_hdr *gh;
708
709 DEBUGP(DMM, "<- ROUTING AREA UPDATE REJECT\n");
710
Harald Welte11d7c102010-05-02 11:54:55 +0200711 gmm_copy_id(msg, old_msg);
Harald Welte9b455bf2010-03-14 15:45:01 +0800712
713 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh) + 2);
714 gh->proto_discr = GSM48_PDISC_MM_GPRS;
715 gh->msg_type = GSM48_MT_GMM_RA_UPD_REJ;
716 gh->data[0] = cause;
717 gh->data[1] = 0; /* ? */
718
719 /* Option: P-TMSI signature, allocated P-TMSI, MS ID, ... */
Harald Welte8acd88f2010-05-18 10:57:45 +0200720 return gsm48_gmm_sendmsg(msg, 0, NULL);
Harald Welte9b455bf2010-03-14 15:45:01 +0800721}
722
Harald Welte588d44e2010-06-09 10:28:29 +0200723static void process_ms_ctx_status(struct sgsn_mm_ctx *mmctx,
724 uint16_t pdp_status)
725{
726 struct sgsn_pdp_ctx *pdp, *pdp2;
727 /* 24.008 4.7.5.1.3: If the PDP context status information element is
728 * included in ROUTING AREA UPDATE REQUEST message, then the network
729 * shall deactivate all those PDP contexts locally (without peer to
730 * peer signalling between the MS and the network), which are not in SM
731 * state PDP-INACTIVE on network side but are indicated by the MS as
732 * being in state PDP-INACTIVE. */
733
734 llist_for_each_entry_safe(pdp, pdp2, &mmctx->pdp_list, list) {
735 if (!(pdp_status & (1 << pdp->nsapi))) {
Harald Weltef54e7e22010-06-09 10:51:23 +0200736 LOGP(DMM, LOGL_NOTICE, "Dropping PDP context for NSAPI=%u "
Harald Welte588d44e2010-06-09 10:28:29 +0200737 "due to PDP CTX STATUS IE= 0x%04x\n",
738 pdp->nsapi, pdp_status);
739 sgsn_delete_pdp_ctx(pdp);
740 }
741 }
742}
743
Harald Welte9b455bf2010-03-14 15:45:01 +0800744/* Chapter 9.4.14: Routing area update request */
Harald Welte807a5d82010-06-01 11:53:01 +0200745static int gsm48_rx_gmm_ra_upd_req(struct sgsn_mm_ctx *mmctx, struct msgb *msg,
746 struct gprs_llc_llme *llme)
Harald Welte9b455bf2010-03-14 15:45:01 +0800747{
Harald Welte943c5bc2010-04-30 16:33:12 +0200748 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_gmmh(msg);
Harald Welteeaa614c2010-05-02 11:26:34 +0200749 uint8_t *cur = gh->data;
Harald Welte588d44e2010-06-09 10:28:29 +0200750 uint8_t *ms_ra_acc_cap;
751 uint8_t ms_ra_acc_cap_len;
Harald Welte9b455bf2010-03-14 15:45:01 +0800752 struct gprs_ra_id old_ra_id;
Harald Welte588d44e2010-06-09 10:28:29 +0200753 struct tlv_parsed tp;
Harald Welteeaa614c2010-05-02 11:26:34 +0200754 uint8_t upd_type;
Harald Welte807a5d82010-06-01 11:53:01 +0200755 int rc;
Harald Welte9b455bf2010-03-14 15:45:01 +0800756
757 /* Update Type 10.5.5.18 */
758 upd_type = *cur++ & 0x0f;
759
Harald Welte2720e732010-05-17 00:44:57 +0200760 DEBUGP(DMM, "-> GMM RA UPDATE REQUEST type=\"%s\" ",
761 get_value_string(gprs_upd_t_strs, upd_type));
Harald Welte9b455bf2010-03-14 15:45:01 +0800762
763 /* Old routing area identification 10.5.5.15 */
764 gsm48_parse_ra(&old_ra_id, cur);
765 cur += 6;
766
767 /* MS Radio Access Capability 10.5.5.12a */
Harald Welte588d44e2010-06-09 10:28:29 +0200768 ms_ra_acc_cap_len = *cur++;
769 ms_ra_acc_cap = cur;
Harald Welte9b455bf2010-03-14 15:45:01 +0800770
771 /* Optional: Old P-TMSI Signature, Requested READY timer, TMSI Status,
772 * DRX parameter, MS network capability */
Harald Welte588d44e2010-06-09 10:28:29 +0200773 rc = tlv_parse(&tp, &gsm48_gmm_att_tlvdef, cur,
774 (msg->data + msg->len) - cur, 0, 0);
Harald Welte9b455bf2010-03-14 15:45:01 +0800775
776 switch (upd_type) {
777 case GPRS_UPD_T_RA_LA:
778 case GPRS_UPD_T_RA_LA_IMSI_ATT:
779 DEBUGPC(DMM, " unsupported in Mode III, is your SI13 corrupt?\n");
780 return gsm48_tx_gmm_ra_upd_rej(msg, GMM_CAUSE_PROTO_ERR_UNSPEC);
781 break;
782 case GPRS_UPD_T_RA:
783 case GPRS_UPD_T_PERIODIC:
784 break;
785 }
786
787 /* Look-up the MM context based on old RA-ID and TLLI */
Harald Welte9b455bf2010-03-14 15:45:01 +0800788 if (!mmctx || mmctx->mm_state == GMM_DEREGISTERED) {
789 /* The MS has to perform GPRS attach */
790 DEBUGPC(DMM, " REJECT\n");
Harald Weltec2e8cc42010-05-31 20:23:38 +0200791 /* Device is still IMSI atached for CS but initiate GPRS ATTACH */
792 return gsm48_tx_gmm_ra_upd_rej(msg, GMM_CAUSE_MS_ID_NOT_DERIVED);
Harald Welte9b455bf2010-03-14 15:45:01 +0800793 }
794
Harald Welte9f1f3ad2010-05-02 12:56:57 +0200795 /* Update the MM context with the new RA-ID */
796 bssgp_parse_cell_id(&mmctx->ra, msgb_bcid(msg));
797 /* Update the MM context with the new TLLI */
798 mmctx->tlli = msgb_tlli(msg);
Harald Welte9b455bf2010-03-14 15:45:01 +0800799 /* FIXME: Update the MM context with the MS radio acc capabilities */
800 /* FIXME: Update the MM context with the MS network capabilities */
801
Harald Welte77289c22010-05-18 14:32:29 +0200802 rate_ctr_inc(&mmctx->ctrg->ctr[GMM_CTR_RA_UPDATE]);
803
Harald Welte9b455bf2010-03-14 15:45:01 +0800804 DEBUGPC(DMM, " ACCEPT\n");
Harald Weltec2e8cc42010-05-31 20:23:38 +0200805#ifdef PTMSI_ALLOC
806 mmctx->p_tmsi_old = mmctx->p_tmsi;
807 mmctx->p_tmsi = sgsn_alloc_ptmsi();
808 /* Start T3350 and re-transmit up to 5 times until ATTACH COMPLETE */
809 mmctx->t3350_mode = GMM_T3350_MODE_RAU;
810 mmctx_timer_start(mmctx, 3350, GSM0408_T3350_SECS);
811#endif
Harald Welte807a5d82010-06-01 11:53:01 +0200812 /* Even if there is no P-TMSI allocated, the MS will switch from
813 * foreign TLLI to local TLLI */
814 mmctx->tlli_new = gprs_tmsi2tlli(mmctx->p_tmsi, TLLI_LOCAL);
Harald Weltec2e8cc42010-05-31 20:23:38 +0200815
Harald Welte807a5d82010-06-01 11:53:01 +0200816 /* Inform LLC layer about new TLLI but keep old active */
817 gprs_llgmm_assign(mmctx->llme, mmctx->tlli, mmctx->tlli_new, 0, NULL);
818
Harald Welte588d44e2010-06-09 10:28:29 +0200819 /* Look at PDP Context Status IE and see if MS's view of
820 * activated/deactivated NSAPIs agrees with our view */
821 if (TLVP_PRESENT(&tp, GSM48_IE_GMM_PDP_CTX_STATUS)) {
822 uint16_t pdp_status = ntohs(*(uint16_t *)
823 TLVP_VAL(&tp, GSM48_IE_GMM_PDP_CTX_STATUS));
824 process_ms_ctx_status(mmctx, pdp_status);
825 }
826
Harald Welte807a5d82010-06-01 11:53:01 +0200827 /* Send RA UPDATE ACCEPT */
Harald Welte6463c072010-05-18 17:04:55 +0200828 return gsm48_tx_gmm_ra_upd_ack(mmctx);
Harald Welte9b455bf2010-03-14 15:45:01 +0800829}
830
Harald Welted193cb32010-05-17 22:58:03 +0200831static int gsm48_rx_gmm_status(struct sgsn_mm_ctx *mmctx, struct msgb *msg)
Harald Welte9b455bf2010-03-14 15:45:01 +0800832{
833 struct gsm48_hdr *gh = msgb_l3(msg);
834
Harald Welte2720e732010-05-17 00:44:57 +0200835 DEBUGP(DMM, "-> GPRS MM STATUS (cause: %s)\n",
Harald Welte9b455bf2010-03-14 15:45:01 +0800836 get_value_string(gmm_cause_names, gh->data[0]));
837
838 return 0;
839}
840
841/* GPRS Mobility Management */
Harald Welte807a5d82010-06-01 11:53:01 +0200842static int gsm0408_rcv_gmm(struct sgsn_mm_ctx *mmctx, struct msgb *msg,
843 struct gprs_llc_llme *llme)
Harald Welte9b455bf2010-03-14 15:45:01 +0800844{
Harald Welte943c5bc2010-04-30 16:33:12 +0200845 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_gmmh(msg);
Harald Welte9b455bf2010-03-14 15:45:01 +0800846 int rc;
847
Harald Welte807a5d82010-06-01 11:53:01 +0200848 /* MMCTX can be NULL when called */
849
Harald Welted193cb32010-05-17 22:58:03 +0200850 if (!mmctx &&
851 gh->msg_type != GSM48_MT_GMM_ATTACH_REQ &&
Harald Weltec2e8cc42010-05-31 20:23:38 +0200852 gh->msg_type != GSM48_MT_GMM_RA_UPD_REQ) {
Harald Welted193cb32010-05-17 22:58:03 +0200853 LOGP(DMM, LOGL_NOTICE, "Cannot handle GMM for unknown MM CTX\n");
Harald Weltef54e7e22010-06-09 10:51:23 +0200854 return gsm48_tx_gmm_status_oldmsg(msg, GMM_CAUSE_MS_ID_NOT_DERIVED);
Harald Welted193cb32010-05-17 22:58:03 +0200855 }
856
Harald Welte9b455bf2010-03-14 15:45:01 +0800857 switch (gh->msg_type) {
858 case GSM48_MT_GMM_RA_UPD_REQ:
Harald Welte807a5d82010-06-01 11:53:01 +0200859 rc = gsm48_rx_gmm_ra_upd_req(mmctx, msg, llme);
Harald Welte9b455bf2010-03-14 15:45:01 +0800860 break;
861 case GSM48_MT_GMM_ATTACH_REQ:
Harald Welte807a5d82010-06-01 11:53:01 +0200862 rc = gsm48_rx_gmm_att_req(mmctx, msg, llme);
Harald Welte9b455bf2010-03-14 15:45:01 +0800863 break;
864 case GSM48_MT_GMM_ID_RESP:
Harald Welted193cb32010-05-17 22:58:03 +0200865 rc = gsm48_rx_gmm_id_resp(mmctx, msg);
Harald Welte9b455bf2010-03-14 15:45:01 +0800866 break;
867 case GSM48_MT_GMM_STATUS:
Harald Welted193cb32010-05-17 22:58:03 +0200868 rc = gsm48_rx_gmm_status(mmctx, msg);
Harald Welte9b455bf2010-03-14 15:45:01 +0800869 break;
Harald Welte2720e732010-05-17 00:44:57 +0200870 case GSM48_MT_GMM_DETACH_REQ:
Harald Welted193cb32010-05-17 22:58:03 +0200871 rc = gsm48_rx_gmm_det_req(mmctx, msg);
Harald Welte2720e732010-05-17 00:44:57 +0200872 break;
Harald Welte9b455bf2010-03-14 15:45:01 +0800873 case GSM48_MT_GMM_ATTACH_COMPL:
874 /* only in case SGSN offered new P-TMSI */
Harald Weltec2e8cc42010-05-31 20:23:38 +0200875 DEBUGP(DMM, "-> ATTACH COMPLETE\n");
876 mmctx_timer_stop(mmctx, 3350);
877 mmctx->p_tmsi_old = 0;
Harald Welte807a5d82010-06-01 11:53:01 +0200878 /* Unassign the old TLLI */
879 mmctx->tlli = mmctx->tlli_new;
880 //gprs_llgmm_assign(mmctx->llme, 0xffffffff, mmctx->tlli_new, 0, NULL);
Harald Weltec2e8cc42010-05-31 20:23:38 +0200881 break;
Harald Welteab1d5622010-05-18 19:58:38 +0200882 case GSM48_MT_GMM_RA_UPD_COMPL:
883 /* only in case SGSN offered new P-TMSI */
Harald Weltec2e8cc42010-05-31 20:23:38 +0200884 DEBUGP(DMM, "-> ROUTEING AREA UPDATE COMPLETE\n");
885 mmctx_timer_stop(mmctx, 3350);
886 mmctx->p_tmsi_old = 0;
Harald Welte807a5d82010-06-01 11:53:01 +0200887 /* Unassign the old TLLI */
888 mmctx->tlli = mmctx->tlli_new;
889 //gprs_llgmm_assign(mmctx->llme, 0xffffffff, mmctx->tlli_new, 0, NULL);
Harald Weltec2e8cc42010-05-31 20:23:38 +0200890 break;
Harald Welte9b455bf2010-03-14 15:45:01 +0800891 case GSM48_MT_GMM_PTMSI_REALL_COMPL:
Harald Weltec2e8cc42010-05-31 20:23:38 +0200892 DEBUGP(DMM, "-> PTMSI REALLLICATION COMPLETE\n");
893 mmctx_timer_stop(mmctx, 3350);
894 mmctx->p_tmsi_old = 0;
Harald Welte807a5d82010-06-01 11:53:01 +0200895 /* Unassign the old TLLI */
896 mmctx->tlli = mmctx->tlli_new;
897 //gprs_llgmm_assign(mmctx->llme, 0xffffffff, mmctx->tlli_new, 0, NULL);
Harald Weltec2e8cc42010-05-31 20:23:38 +0200898 break;
Harald Welte9b455bf2010-03-14 15:45:01 +0800899 case GSM48_MT_GMM_AUTH_CIPH_RESP:
900 DEBUGP(DMM, "Unimplemented GSM 04.08 GMM msg type 0x%02x\n",
901 gh->msg_type);
Harald Weltef54e7e22010-06-09 10:51:23 +0200902 rc = gsm48_tx_gmm_status(mmctx, GMM_CAUSE_MSGT_NOTEXIST_NOTIMPL);
Harald Welte9b455bf2010-03-14 15:45:01 +0800903 break;
904 default:
905 DEBUGP(DMM, "Unknown GSM 04.08 GMM msg type 0x%02x\n",
906 gh->msg_type);
Harald Weltef54e7e22010-06-09 10:51:23 +0200907 rc = gsm48_tx_gmm_status(mmctx, GMM_CAUSE_MSGT_NOTEXIST_NOTIMPL);
Harald Welte9b455bf2010-03-14 15:45:01 +0800908 break;
909 }
910
911 return rc;
912}
913
Harald Weltec2e8cc42010-05-31 20:23:38 +0200914static void mmctx_timer_cb(void *_mm)
915{
916 struct sgsn_mm_ctx *mm = _mm;
917
918 mm->num_T_exp++;
919
920 switch (mm->T) {
921 case 3350: /* waiting for ATTACH COMPLETE */
922 if (mm->num_T_exp >= 5) {
923 LOGP(DMM, LOGL_NOTICE, "T3350 expired >= 5 times\n");
924 mm->mm_state = GMM_DEREGISTERED;
925 /* FIXME: should we return some error? */
926 break;
927 }
928 /* re-transmit the respective msg and re-start timer */
929 switch (mm->t3350_mode) {
930 case GMM_T3350_MODE_ATT:
931 gsm48_tx_gmm_att_ack(mm);
932 break;
933 case GMM_T3350_MODE_RAU:
934 gsm48_tx_gmm_ra_upd_ack(mm);
935 break;
936 case GMM_T3350_MODE_PTMSI_REALL:
937 /* FIXME */
938 break;
939 }
940 bsc_schedule_timer(&mm->timer, GSM0408_T3350_SECS, 0);
941 break;
942 case 3370: /* waiting for IDENTITY RESPONSE */
943 if (mm->num_T_exp >= 5) {
944 LOGP(DMM, LOGL_NOTICE, "T3370 expired >= 5 times\n");
945 gsm48_tx_gmm_att_rej(mm, GMM_CAUSE_MS_ID_NOT_DERIVED);
946 mm->mm_state = GMM_DEREGISTERED;
947 break;
948 }
949 /* re-tranmit IDENTITY REQUEST and re-start timer */
950 gsm48_tx_gmm_id_req(mm, mm->t3370_id_type);
951 bsc_schedule_timer(&mm->timer, GSM0408_T3370_SECS, 0);
952 break;
953 default:
954 LOGP(DMM, LOGL_ERROR, "timer expired in unknown mode %u\n",
955 mm->T);
956 }
957}
958
959/* GPRS SESSION MANAGEMENT */
960
Harald Welte421cba42010-05-02 23:11:50 +0200961static void msgb_put_pdp_addr_ipv4(struct msgb *msg, uint32_t ipaddr)
962{
963 uint8_t v[6];
964
965 v[0] = PDP_TYPE_ORG_IETF;
966 v[1] = PDP_TYPE_N_IETF_IPv4;
967 *(uint32_t *)(v+2) = htonl(ipaddr);
968
969 msgb_tlv_put(msg, GSM48_IE_GSM_PDP_ADDR, sizeof(v), v);
970}
971
972static void msgb_put_pdp_addr_ppp(struct msgb *msg)
973{
974 uint8_t v[2];
975
976 v[0] = PDP_TYPE_ORG_ETSI;
977 v[1] = PDP_TYPE_N_ETSI_PPP;
978
979 msgb_tlv_put(msg, GSM48_IE_GSM_PDP_ADDR, sizeof(v), v);
980}
981
Harald Welte9b455bf2010-03-14 15:45:01 +0800982/* Section 9.5.2: Ativate PDP Context Accept */
Harald Welte6abf94e2010-05-18 10:35:06 +0200983int gsm48_tx_gsm_act_pdp_acc(struct sgsn_pdp_ctx *pdp)
Harald Welte9b455bf2010-03-14 15:45:01 +0800984{
Harald Welte9b455bf2010-03-14 15:45:01 +0800985 struct msgb *msg = gsm48_msgb_alloc();
Harald Welte9b455bf2010-03-14 15:45:01 +0800986 struct gsm48_hdr *gh;
Harald Welte6abf94e2010-05-18 10:35:06 +0200987 uint8_t transaction_id = pdp->ti ^ 0x8; /* flip */
Harald Welte9b455bf2010-03-14 15:45:01 +0800988
989 DEBUGP(DMM, "<- ACTIVATE PDP CONTEXT ACK\n");
990
Harald Welte6abf94e2010-05-18 10:35:06 +0200991 mmctx2msgid(msg, pdp->mm);
Harald Welte9b455bf2010-03-14 15:45:01 +0800992
993 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
994 gh->proto_discr = GSM48_PDISC_SM_GPRS | (transaction_id << 4);
995 gh->msg_type = GSM48_MT_GSM_ACT_PDP_ACK;
Harald Welte421cba42010-05-02 23:11:50 +0200996
997 /* Negotiated LLC SAPI */
Harald Welte6abf94e2010-05-18 10:35:06 +0200998 msgb_v_put(msg, pdp->sapi);
Harald Welte4e38ac72010-05-18 14:51:18 +0200999
Harald Welte55e0df72010-05-18 13:20:08 +02001000 /* FIXME: copy QoS parameters from original request */
1001 //msgb_lv_put(msg, pdp->lib->qos_neg.l, pdp->lib->qos_neg.v);
1002 msgb_lv_put(msg, sizeof(default_qos), (uint8_t *)&default_qos);
Harald Welte4e38ac72010-05-18 14:51:18 +02001003
Harald Welte421cba42010-05-02 23:11:50 +02001004 /* Radio priority 10.5.7.2 */
Harald Welte6abf94e2010-05-18 10:35:06 +02001005 msgb_v_put(msg, pdp->lib->radio_pri);
Harald Welte4e38ac72010-05-18 14:51:18 +02001006
Harald Welte421cba42010-05-02 23:11:50 +02001007 /* PDP address */
Harald Welte4e38ac72010-05-18 14:51:18 +02001008 /* Highest 4 bits of first byte need to be set to 1, otherwise
1009 * the IE is identical with the 04.08 PDP Address IE */
1010 pdp->lib->eua.v[0] &= ~0xf0;
Harald Welte6abf94e2010-05-18 10:35:06 +02001011 msgb_tlv_put(msg, GSM48_IE_GSM_PDP_ADDR,
1012 pdp->lib->eua.l, pdp->lib->eua.v);
Harald Welte4e38ac72010-05-18 14:51:18 +02001013 pdp->lib->eua.v[0] |= 0xf0;
1014
Harald Welte77289c22010-05-18 14:32:29 +02001015 /* Optional: Protocol configuration options (FIXME: why 'req') */
1016 if (pdp->lib->pco_req.l && pdp->lib->pco_req.v)
Harald Welte6abf94e2010-05-18 10:35:06 +02001017 msgb_tlv_put(msg, GSM48_IE_GSM_PROTO_CONF_OPT,
Harald Welte3c0b9b92010-05-18 14:36:11 +02001018 pdp->lib->pco_req.l, pdp->lib->pco_req.v);
Harald Welte4e38ac72010-05-18 14:51:18 +02001019
Harald Welte421cba42010-05-02 23:11:50 +02001020 /* Optional: Packet Flow Identifier */
Harald Welte9b455bf2010-03-14 15:45:01 +08001021
Harald Welte8acd88f2010-05-18 10:57:45 +02001022 return gsm48_gmm_sendmsg(msg, 0, pdp->mm);
Harald Welte9b455bf2010-03-14 15:45:01 +08001023}
1024
Harald Welte6abf94e2010-05-18 10:35:06 +02001025/* Section 9.5.3: Activate PDP Context reject */
1026int gsm48_tx_gsm_act_pdp_rej(struct sgsn_mm_ctx *mm, uint8_t tid,
1027 uint8_t cause, uint8_t pco_len, uint8_t *pco_v)
1028{
1029 struct msgb *msg = gsm48_msgb_alloc();
Harald Welte6abf94e2010-05-18 10:35:06 +02001030 struct gsm48_hdr *gh;
1031 uint8_t transaction_id = tid ^ 0x8; /* flip */
1032
Harald Welte77289c22010-05-18 14:32:29 +02001033 DEBUGP(DMM, "<- ACTIVATE PDP CONTEXT REJ(cause=%u)\n", cause);
Harald Welte6abf94e2010-05-18 10:35:06 +02001034
1035 mmctx2msgid(msg, mm);
1036
1037 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
1038 gh->proto_discr = GSM48_PDISC_SM_GPRS | (transaction_id << 4);
1039 gh->msg_type = GSM48_MT_GSM_ACT_PDP_REJ;
1040
1041 msgb_v_put(msg, cause);
1042 if (pco_len && pco_v)
1043 msgb_tlv_put(msg, GSM48_IE_GSM_PROTO_CONF_OPT, pco_len, pco_v);
1044
Harald Welte8acd88f2010-05-18 10:57:45 +02001045 return gsm48_gmm_sendmsg(msg, 0, mm);
Harald Welte6abf94e2010-05-18 10:35:06 +02001046}
1047
Harald Welte9b455bf2010-03-14 15:45:01 +08001048/* Section 9.5.9: Deactivate PDP Context Accept */
Harald Welte60ebc022010-06-08 18:08:59 +02001049static int _gsm48_tx_gsm_deact_pdp_acc(struct sgsn_mm_ctx *mm, uint8_t tid)
Harald Welte9b455bf2010-03-14 15:45:01 +08001050{
Harald Welte9b455bf2010-03-14 15:45:01 +08001051 struct msgb *msg = gsm48_msgb_alloc();
1052 struct gsm48_hdr *gh;
Harald Welte60ebc022010-06-08 18:08:59 +02001053 uint8_t transaction_id = tid ^ 0x8; /* flip */
Harald Welte9b455bf2010-03-14 15:45:01 +08001054
1055 DEBUGP(DMM, "<- DEACTIVATE PDP CONTEXT ACK\n");
1056
Harald Welte60ebc022010-06-08 18:08:59 +02001057 mmctx2msgid(msg, mm);
Harald Welte9b455bf2010-03-14 15:45:01 +08001058
1059 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
1060 gh->proto_discr = GSM48_PDISC_SM_GPRS | (transaction_id << 4);
1061 gh->msg_type = GSM48_MT_GSM_DEACT_PDP_ACK;
1062
Harald Welte60ebc022010-06-08 18:08:59 +02001063 return gsm48_gmm_sendmsg(msg, 0, mm);
1064}
1065int gsm48_tx_gsm_deact_pdp_acc(struct sgsn_pdp_ctx *pdp)
1066{
1067 return _gsm48_tx_gsm_deact_pdp_acc(pdp->mm, pdp->ti);
Harald Welte9b455bf2010-03-14 15:45:01 +08001068}
1069
1070/* Section 9.5.1: Activate PDP Context Request */
Harald Welted193cb32010-05-17 22:58:03 +02001071static int gsm48_rx_gsm_act_pdp_req(struct sgsn_mm_ctx *mmctx,
1072 struct msgb *msg)
Harald Welte9b455bf2010-03-14 15:45:01 +08001073{
Harald Welte943c5bc2010-04-30 16:33:12 +02001074 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_gmmh(msg);
Harald Welte9b455bf2010-03-14 15:45:01 +08001075 struct gsm48_act_pdp_ctx_req *act_req = (struct gsm48_act_pdp_ctx_req *) gh->data;
Harald Welte0c3eae02010-05-02 21:07:14 +02001076 uint8_t req_qos_len, req_pdpa_len;
1077 uint8_t *req_qos, *req_pdpa;
1078 struct tlv_parsed tp;
Harald Welte6abf94e2010-05-18 10:35:06 +02001079 uint8_t transaction_id = (gh->proto_discr >> 4);
1080 struct sgsn_pdp_ctx *pdp;
Harald Welte9b455bf2010-03-14 15:45:01 +08001081
Harald Welteab1d5622010-05-18 19:58:38 +02001082 memset(&tp, 0, sizeof(tp));
1083
Harald Welte6abf94e2010-05-18 10:35:06 +02001084 DEBUGP(DMM, "-> ACTIVATE PDP CONTEXT REQ: SAPI=%u NSAPI=%u ",
1085 act_req->req_llc_sapi, act_req->req_nsapi);
Harald Welte8acd88f2010-05-18 10:57:45 +02001086
1087 rate_ctr_inc(&mmctx->ctrg->ctr[GMM_CTR_PDP_CTX_ACT]);
1088
Harald Welte0c3eae02010-05-02 21:07:14 +02001089 req_qos_len = act_req->data[0];
1090 req_qos = act_req->data + 1; /* 10.5.6.5 */
1091 req_pdpa_len = act_req->data[1 + req_qos_len];
1092 req_pdpa = act_req->data + 1 + req_qos_len + 1; /* 10.5.6.4 */
Harald Welte9b455bf2010-03-14 15:45:01 +08001093
Harald Welte0c3eae02010-05-02 21:07:14 +02001094 switch (req_pdpa[0] & 0xf) {
1095 case 0x0:
1096 DEBUGPC(DMM, "ETSI ");
1097 break;
1098 case 0x1:
1099 DEBUGPC(DMM, "IETF ");
1100 break;
1101 case 0xf:
1102 DEBUGPC(DMM, "Empty ");
1103 break;
1104 }
1105
1106 switch (req_pdpa[1]) {
1107 case 0x21:
1108 DEBUGPC(DMM, "IPv4 ");
1109 if (req_pdpa_len >= 6) {
1110 struct in_addr ia;
1111 ia.s_addr = ntohl(*((uint32_t *) (req_pdpa+2)));
1112 DEBUGPC(DMM, "%s ", inet_ntoa(ia));
1113 }
1114 break;
1115 case 0x57:
1116 DEBUGPC(DMM, "IPv6 ");
1117 if (req_pdpa_len >= 18) {
1118 /* FIXME: print IPv6 address */
1119 }
1120 break;
1121 default:
1122 DEBUGPC(DMM, "0x%02x ", req_pdpa[1]);
1123 break;
1124 }
1125
Harald Welte77289c22010-05-18 14:32:29 +02001126 DEBUGPC(DMM, "\n");
1127
Harald Welte2720e732010-05-17 00:44:57 +02001128 /* put the non-TLV elements in the TLV parser structure to
1129 * pass them on to the SGSN / GTP code */
1130 tp.lv[OSMO_IE_GSM_REQ_QOS].len = req_qos_len;
1131 tp.lv[OSMO_IE_GSM_REQ_QOS].val = req_qos;
1132 tp.lv[OSMO_IE_GSM_REQ_PDP_ADDR].len = req_pdpa_len;
1133 tp.lv[OSMO_IE_GSM_REQ_PDP_ADDR].val = req_pdpa;
1134
Harald Welte6abf94e2010-05-18 10:35:06 +02001135 /* FIXME: determine GGSN based on APN and subscription options */
Harald Welte0c3eae02010-05-02 21:07:14 +02001136 if (TLVP_PRESENT(&tp, GSM48_IE_GSM_APN)) {}
Harald Welte6abf94e2010-05-18 10:35:06 +02001137
1138 /* Check if NSAPI is out of range (TS 04.65 / 7.2) */
1139 if (act_req->req_nsapi < 5 || act_req->req_nsapi > 15) {
1140 /* Send reject with GSM_CAUSE_INV_MAND_INFO */
1141 return gsm48_tx_gsm_act_pdp_rej(mmctx, transaction_id,
1142 GSM_CAUSE_INV_MAND_INFO,
1143 0, NULL);
1144 }
1145
1146 /* Check if NSAPI is already in use */
1147 if (sgsn_pdp_ctx_by_nsapi(mmctx, act_req->req_nsapi)) {
1148 /* FIXME: send reject with GSM_CAUSE_NSAPI_IN_USE */
1149 return gsm48_tx_gsm_act_pdp_rej(mmctx, transaction_id,
1150 GSM_CAUSE_NSAPI_IN_USE,
1151 0, NULL);
1152 }
Harald Welte9b455bf2010-03-14 15:45:01 +08001153
Harald Welted193cb32010-05-17 22:58:03 +02001154#if 1
1155 {
Harald Welteab1d5622010-05-18 19:58:38 +02001156 struct sgsn_ggsn_ctx *ggsn = sgsn_ggsn_ctx_by_id(0);
1157 if (!ggsn) {
1158 LOGP(DGPRS, LOGL_ERROR, "No GGSN context 0 found!\n");
1159 return -EIO;
1160 }
1161 ggsn->gsn = sgsn->gsn;
1162 pdp = sgsn_create_pdp_ctx(ggsn, mmctx, act_req->req_nsapi, &tp);
Harald Welte6abf94e2010-05-18 10:35:06 +02001163 if (!pdp)
1164 return -1;
1165 pdp->sapi = act_req->req_llc_sapi;
1166 pdp->ti = transaction_id;
1167
Harald Welted193cb32010-05-17 22:58:03 +02001168 }
Harald Welte6463c072010-05-18 17:04:55 +02001169 return 0;
Harald Welte2720e732010-05-17 00:44:57 +02001170#else
Harald Welte6abf94e2010-05-18 10:35:06 +02001171 return gsm48_tx_gsm_act_pdp_acc(mmctx, transaction_id, act_req);
Harald Welte2720e732010-05-17 00:44:57 +02001172#endif
Harald Welte9b455bf2010-03-14 15:45:01 +08001173}
1174
1175/* Section 9.5.8: Deactivate PDP Context Request */
Harald Welte77289c22010-05-18 14:32:29 +02001176static int gsm48_rx_gsm_deact_pdp_req(struct sgsn_mm_ctx *mm, struct msgb *msg)
Harald Welte9b455bf2010-03-14 15:45:01 +08001177{
Harald Welte943c5bc2010-04-30 16:33:12 +02001178 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_gmmh(msg);
Harald Welte77289c22010-05-18 14:32:29 +02001179 uint8_t transaction_id = (gh->proto_discr >> 4);
1180 struct sgsn_pdp_ctx *pdp;
Harald Welte9b455bf2010-03-14 15:45:01 +08001181
Harald Welte2720e732010-05-17 00:44:57 +02001182 DEBUGP(DMM, "-> DEACTIVATE PDP CONTEXT REQ (cause: %s)\n",
Harald Welte9b455bf2010-03-14 15:45:01 +08001183 get_value_string(gsm_cause_names, gh->data[0]));
1184
Harald Welte77289c22010-05-18 14:32:29 +02001185 pdp = sgsn_pdp_ctx_by_tid(mm, transaction_id);
1186 if (!pdp) {
1187 LOGP(DMM, LOGL_NOTICE, "Deactivate PDP Context Request for "
1188 "non-existing PDP Context (IMSI=%s, TI=%u)\n",
1189 mm->imsi, transaction_id);
Harald Welte60ebc022010-06-08 18:08:59 +02001190 return _gsm48_tx_gsm_deact_pdp_acc(mm, transaction_id);
Harald Welte77289c22010-05-18 14:32:29 +02001191 }
1192
1193 return sgsn_delete_pdp_ctx(pdp);
Harald Welte9b455bf2010-03-14 15:45:01 +08001194}
1195
Harald Welted193cb32010-05-17 22:58:03 +02001196static int gsm48_rx_gsm_status(struct sgsn_mm_ctx *ctx, struct msgb *msg)
Harald Welte9b455bf2010-03-14 15:45:01 +08001197{
1198 struct gsm48_hdr *gh = msgb_l3(msg);
1199
Harald Welte2720e732010-05-17 00:44:57 +02001200 DEBUGP(DMM, "-> GPRS SM STATUS (cause: %s)\n",
Harald Welte9b455bf2010-03-14 15:45:01 +08001201 get_value_string(gsm_cause_names, gh->data[0]));
1202
1203 return 0;
1204}
1205
1206/* GPRS Session Management */
Harald Welte807a5d82010-06-01 11:53:01 +02001207static int gsm0408_rcv_gsm(struct sgsn_mm_ctx *mmctx, struct msgb *msg,
1208 struct gprs_llc_llme *llme)
Harald Welte9b455bf2010-03-14 15:45:01 +08001209{
Harald Welte943c5bc2010-04-30 16:33:12 +02001210 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_gmmh(msg);
Harald Welte9b455bf2010-03-14 15:45:01 +08001211 int rc;
1212
Harald Welte807a5d82010-06-01 11:53:01 +02001213 /* MMCTX can be NULL when called */
1214
Harald Welted193cb32010-05-17 22:58:03 +02001215 if (!mmctx) {
1216 LOGP(DMM, LOGL_NOTICE, "Cannot handle SM for unknown MM CTX\n");
Harald Weltef54e7e22010-06-09 10:51:23 +02001217 return gsm48_tx_gmm_status_oldmsg(msg, GSM_CAUSE_PROTO_ERR_UNSPEC);
Harald Welted193cb32010-05-17 22:58:03 +02001218 }
1219
Harald Welte9b455bf2010-03-14 15:45:01 +08001220 switch (gh->msg_type) {
1221 case GSM48_MT_GSM_ACT_PDP_REQ:
Harald Welted193cb32010-05-17 22:58:03 +02001222 rc = gsm48_rx_gsm_act_pdp_req(mmctx, msg);
Harald Welte9b455bf2010-03-14 15:45:01 +08001223 break;
1224 case GSM48_MT_GSM_DEACT_PDP_REQ:
Harald Welted193cb32010-05-17 22:58:03 +02001225 rc = gsm48_rx_gsm_deact_pdp_req(mmctx, msg);
Harald Welte77289c22010-05-18 14:32:29 +02001226 break;
Harald Welte9b455bf2010-03-14 15:45:01 +08001227 case GSM48_MT_GSM_STATUS:
Harald Welted193cb32010-05-17 22:58:03 +02001228 rc = gsm48_rx_gsm_status(mmctx, msg);
Harald Welte9b455bf2010-03-14 15:45:01 +08001229 break;
1230 case GSM48_MT_GSM_REQ_PDP_ACT_REJ:
1231 case GSM48_MT_GSM_ACT_AA_PDP_REQ:
1232 case GSM48_MT_GSM_DEACT_AA_PDP_REQ:
1233 DEBUGP(DMM, "Unimplemented GSM 04.08 GSM msg type 0x%02x\n",
1234 gh->msg_type);
Harald Weltef54e7e22010-06-09 10:51:23 +02001235 rc = gsm48_tx_sm_status(mmctx, GSM_CAUSE_MSGT_NOTEXIST_NOTIMPL);
Harald Welte9b455bf2010-03-14 15:45:01 +08001236 break;
1237 default:
1238 DEBUGP(DMM, "Unknown GSM 04.08 GSM msg type 0x%02x\n",
1239 gh->msg_type);
Harald Weltef54e7e22010-06-09 10:51:23 +02001240 rc = gsm48_tx_sm_status(mmctx, GSM_CAUSE_MSGT_NOTEXIST_NOTIMPL);
Harald Welte9b455bf2010-03-14 15:45:01 +08001241 break;
1242
1243 }
1244
1245 return rc;
1246}
1247
1248/* Main entry point for incoming 04.08 GPRS messages */
Harald Welte807a5d82010-06-01 11:53:01 +02001249int gsm0408_gprs_rcvmsg(struct msgb *msg, struct gprs_llc_llme *llme)
Harald Welte9b455bf2010-03-14 15:45:01 +08001250{
Harald Welte943c5bc2010-04-30 16:33:12 +02001251 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_gmmh(msg);
Harald Welteeaa614c2010-05-02 11:26:34 +02001252 uint8_t pdisc = gh->proto_discr & 0x0f;
Harald Welted193cb32010-05-17 22:58:03 +02001253 struct sgsn_mm_ctx *mmctx;
1254 struct gprs_ra_id ra_id;
Harald Welte9b455bf2010-03-14 15:45:01 +08001255 int rc = -EINVAL;
1256
Harald Welted193cb32010-05-17 22:58:03 +02001257 bssgp_parse_cell_id(&ra_id, msgb_bcid(msg));
1258 mmctx = sgsn_mm_ctx_by_tlli(msgb_tlli(msg), &ra_id);
Harald Welte8acd88f2010-05-18 10:57:45 +02001259 if (mmctx) {
Harald Welte6abf94e2010-05-18 10:35:06 +02001260 msgid2mmctx(mmctx, msg);
Harald Welte8acd88f2010-05-18 10:57:45 +02001261 rate_ctr_inc(&mmctx->ctrg->ctr[GMM_CTR_PKTS_SIG_IN]);
Harald Welte807a5d82010-06-01 11:53:01 +02001262 mmctx->llme = llme;
Harald Welte8acd88f2010-05-18 10:57:45 +02001263 }
Harald Welted193cb32010-05-17 22:58:03 +02001264
1265 /* MMCTX can be NULL */
1266
Harald Welte9b455bf2010-03-14 15:45:01 +08001267 switch (pdisc) {
1268 case GSM48_PDISC_MM_GPRS:
Harald Welte807a5d82010-06-01 11:53:01 +02001269 rc = gsm0408_rcv_gmm(mmctx, msg, llme);
Harald Welte9b455bf2010-03-14 15:45:01 +08001270 break;
1271 case GSM48_PDISC_SM_GPRS:
Harald Welte807a5d82010-06-01 11:53:01 +02001272 rc = gsm0408_rcv_gsm(mmctx, msg, llme);
Harald Welte9b455bf2010-03-14 15:45:01 +08001273 break;
1274 default:
1275 DEBUGP(DMM, "Unknown GSM 04.08 discriminator 0x%02x\n",
1276 pdisc);
Harald Welte6abf94e2010-05-18 10:35:06 +02001277 /* FIXME: return status message */
Harald Welte9b455bf2010-03-14 15:45:01 +08001278 break;
1279 }
1280
1281 return rc;
1282}
Harald Welte5bfe4992010-06-09 11:22:47 +02001283
1284int gprs_gmm_rx_suspend(struct gprs_ra_id *raid, uint32_t tlli)
1285{
1286 struct sgsn_mm_ctx *mmctx;
1287
1288 mmctx = sgsn_mm_ctx_by_tlli(tlli, raid);
1289 if (!mmctx) {
1290 LOGP(DMM, LOGL_NOTICE, "SUSPEND request for unknown "
1291 "TLLI=%08x\n", tlli);
1292 return -EINVAL;
1293 }
1294
1295 if (mmctx->mm_state != GMM_REGISTERED_NORMAL) {
1296 LOGP(DMM, LOGL_NOTICE, "SUSPEND request while state "
1297 "!= REGISTERED (TLLI=%08x)\n", tlli);
1298 return -EINVAL;
1299 }
1300
1301 /* Transition from REGISTERED_NORMAL to REGISTERED_SUSPENDED */
1302 mmctx->mm_state = GMM_REGISTERED_SUSPENDED;
1303 return 0;
1304}
1305
1306int gprs_gmm_rx_resume(struct gprs_ra_id *raid, uint32_t tlli,
1307 uint8_t suspend_ref)
1308{
1309 struct sgsn_mm_ctx *mmctx;
1310
1311 /* FIXME: make use of suspend reference? */
1312
1313 mmctx = sgsn_mm_ctx_by_tlli(tlli, raid);
1314 if (!mmctx) {
1315 LOGP(DMM, LOGL_NOTICE, "RESUME request for unknown "
1316 "TLLI=%08x\n", tlli);
1317 return -EINVAL;
1318 }
1319
1320 if (mmctx->mm_state != GMM_REGISTERED_SUSPENDED) {
1321 LOGP(DMM, LOGL_NOTICE, "RESUME request while state "
1322 "!= SUSPENDED (TLLI=%08x)\n", tlli);
1323 /* FIXME: should we not simply ignore it? */
1324 return -EINVAL;
1325 }
1326
1327 /* Transition from SUSPENDED to NORMAL */
1328 mmctx->mm_state = GMM_REGISTERED_NORMAL;
1329 return 0;
1330}