blob: 5492b165037dd88bcc327f4bdb4f9a416f9a0269 [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
151/* Our implementation, should be kept in SGSN */
Harald Welte9b455bf2010-03-14 15:45:01 +0800152
Harald Weltec2e8cc42010-05-31 20:23:38 +0200153static void mmctx_timer_cb(void *_mm);
154
155static void mmctx_timer_start(struct sgsn_mm_ctx *mm, unsigned int T,
156 unsigned int seconds)
157{
158 if (bsc_timer_pending(&mm->timer))
159 LOGP(DMM, LOGL_ERROR, "Starting MM timer %u while old "
160 "timer %u pending\n", T, mm->T);
161 mm->T = T;
162 mm->num_T_exp = 0;
163
164 /* FIXME: we should do this only once ? */
165 mm->timer.data = mm;
166 mm->timer.cb = &mmctx_timer_cb;
167
168 bsc_schedule_timer(&mm->timer, seconds, 0);
169}
170
171static void mmctx_timer_stop(struct sgsn_mm_ctx *mm, unsigned int T)
172{
173 if (mm->T != T)
174 LOGP(DMM, LOGL_ERROR, "Stopping MM timer %u but "
175 "%u is running\n", T, mm->T);
176 bsc_del_timer(&mm->timer);
177}
178
Harald Welte9b455bf2010-03-14 15:45:01 +0800179/* Send a message through the underlying layer */
Harald Welte8acd88f2010-05-18 10:57:45 +0200180static int gsm48_gmm_sendmsg(struct msgb *msg, int command,
181 const struct sgsn_mm_ctx *mm)
Harald Welte9b455bf2010-03-14 15:45:01 +0800182{
Harald Welte8acd88f2010-05-18 10:57:45 +0200183 if (mm)
184 rate_ctr_inc(&mm->ctrg->ctr[GMM_CTR_PKTS_SIG_OUT]);
185
Harald Welte11d7c102010-05-02 11:54:55 +0200186 /* caller needs to provide TLLI, BVCI and NSEI */
Harald Welte56a01452010-05-31 22:12:30 +0200187 return gprs_llc_tx_ui(msg, GPRS_SAPI_GMM, command, mm);
Harald Welte9b455bf2010-03-14 15:45:01 +0800188}
189
Harald Welte11d7c102010-05-02 11:54:55 +0200190/* copy identifiers from old message to new message, this
191 * is required so lower layers can route it correctly */
192static void gmm_copy_id(struct msgb *msg, const struct msgb *old)
193{
194 msgb_tlli(msg) = msgb_tlli(old);
195 msgb_bvci(msg) = msgb_bvci(old);
196 msgb_nsei(msg) = msgb_nsei(old);
197}
198
Harald Welte6abf94e2010-05-18 10:35:06 +0200199/* Store BVCI/NSEI in MM context */
200static void msgid2mmctx(struct sgsn_mm_ctx *mm, const struct msgb *msg)
201{
202 mm->bvci = msgb_bvci(msg);
203 mm->nsei = msgb_nsei(msg);
204}
205
206/* Store BVCI/NSEI in MM context */
207static void mmctx2msgid(struct msgb *msg, const struct sgsn_mm_ctx *mm)
208{
209 msgb_tlli(msg) = mm->tlli;
210 msgb_bvci(msg) = mm->bvci;
211 msgb_nsei(msg) = mm->nsei;
212}
213
Harald Welte86fda902010-05-03 10:54:35 +0200214static struct gsm48_qos default_qos = {
215 .delay_class = 4, /* best effort */
216 .reliab_class = GSM48_QOS_RC_LLC_UN_RLC_ACK_DATA_PROT,
217 .peak_tput = GSM48_QOS_PEAK_TPUT_32000bps,
218 .preced_class = GSM48_QOS_PC_NORMAL,
219 .mean_tput = GSM48_QOS_MEAN_TPUT_BEST_EFFORT,
220 .traf_class = GSM48_QOS_TC_INTERACTIVE,
221 .deliv_order = GSM48_QOS_DO_UNORDERED,
222 .deliv_err_sdu = GSM48_QOS_ERRSDU_YES,
223 .max_sdu_size = GSM48_QOS_MAXSDU_1520,
224 .max_bitrate_up = GSM48_QOS_MBRATE_63k,
225 .max_bitrate_down = GSM48_QOS_MBRATE_63k,
226 .resid_ber = GSM48_QOS_RBER_5e_2,
227 .sdu_err_ratio = GSM48_QOS_SERR_1e_2,
228 .handling_prio = 3,
229 .xfer_delay = 0x10, /* 200ms */
230 .guar_bitrate_up = GSM48_QOS_MBRATE_0k,
231 .guar_bitrate_down = GSM48_QOS_MBRATE_0k,
232 .sig_ind = 0, /* not optimised for signalling */
233 .max_bitrate_down_ext = 0, /* use octet 9 */
234 .guar_bitrate_down_ext = 0, /* use octet 13 */
235};
236
Harald Welte9b455bf2010-03-14 15:45:01 +0800237/* Chapter 9.4.2: Attach accept */
Harald Welte6463c072010-05-18 17:04:55 +0200238static int gsm48_tx_gmm_att_ack(struct sgsn_mm_ctx *mm)
Harald Welte9b455bf2010-03-14 15:45:01 +0800239{
240 struct msgb *msg = gsm48_msgb_alloc();
241 struct gsm48_hdr *gh;
242 struct gsm48_attach_ack *aa;
Harald Weltecd4dd4d2010-05-18 17:20:49 +0200243 uint8_t *ptsig, *mid;
Harald Welte9b455bf2010-03-14 15:45:01 +0800244
Harald Weltec2e8cc42010-05-31 20:23:38 +0200245 DEBUGP(DMM, "<- GPRS ATTACH ACCEPT (new P-TMSI=0x%08x)\n", mm->p_tmsi);
Harald Welte9b455bf2010-03-14 15:45:01 +0800246
Harald Welte6463c072010-05-18 17:04:55 +0200247 mmctx2msgid(msg, mm);
Harald Welte9b455bf2010-03-14 15:45:01 +0800248
249 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
250 gh->proto_discr = GSM48_PDISC_MM_GPRS;
251 gh->msg_type = GSM48_MT_GMM_ATTACH_ACK;
252
253 aa = (struct gsm48_attach_ack *) msgb_put(msg, sizeof(*aa));
254 aa->force_stby = 0; /* not indicated */
255 aa->att_result = 1; /* GPRS only */
256 aa->ra_upd_timer = GPRS_TMR_MINUTE | 10;
257 aa->radio_prio = 4; /* lowest */
Harald Welte6463c072010-05-18 17:04:55 +0200258 gsm48_construct_ra(aa->ra_id.digits, &mm->ra);
Harald Welte9b455bf2010-03-14 15:45:01 +0800259
Harald Welteab1d5622010-05-18 19:58:38 +0200260#if 0
Harald Welte6463c072010-05-18 17:04:55 +0200261 /* Optional: P-TMSI signature */
262 msgb_v_put(msg, GSM48_IE_GMM_PTMSI_SIG);
263 ptsig = msgb_put(msg, 3);
264 ptsig[0] = mm->p_tmsi_sig >> 16;
265 ptsig[1] = mm->p_tmsi_sig >> 8;
266 ptsig[2] = mm->p_tmsi_sig & 0xff;
267
268 /* Optional: Negotiated Ready timer value */
Harald Weltec2e8cc42010-05-31 20:23:38 +0200269#endif
Harald Welte6463c072010-05-18 17:04:55 +0200270
Harald Weltec2e8cc42010-05-31 20:23:38 +0200271#ifdef PTMSI_ALLOC
Harald Welte6463c072010-05-18 17:04:55 +0200272 /* Optional: Allocated P-TMSI */
Harald Welte6463c072010-05-18 17:04:55 +0200273 mid = msgb_put(msg, GSM48_MID_TMSI_LEN);
274 gsm48_generate_mid_from_tmsi(mid, mm->p_tmsi);
Harald Welteab1d5622010-05-18 19:58:38 +0200275 mid[0] = GSM48_IE_GMM_ALLOC_PTMSI;
276#endif
Harald Weltec2e8cc42010-05-31 20:23:38 +0200277
Harald Welte6463c072010-05-18 17:04:55 +0200278 /* Optional: MS-identity (combined attach) */
279 /* Optional: GMM cause (partial attach result for combined attach) */
280
Harald Welte56a01452010-05-31 22:12:30 +0200281 return gsm48_gmm_sendmsg(msg, 0, mm);
Harald Welte9b455bf2010-03-14 15:45:01 +0800282}
283
284/* Chapter 9.4.5: Attach reject */
Harald Welte6463c072010-05-18 17:04:55 +0200285static int _tx_gmm_att_rej(struct msgb *msg, uint8_t gmm_cause)
Harald Welte9b455bf2010-03-14 15:45:01 +0800286{
Harald Welte9b455bf2010-03-14 15:45:01 +0800287 struct gsm48_hdr *gh;
288
289 DEBUGP(DMM, "<- GPRS ATTACH REJECT\n");
290
Harald Welte9b455bf2010-03-14 15:45:01 +0800291 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh) + 1);
292 gh->proto_discr = GSM48_PDISC_MM_GPRS;
293 gh->msg_type = GSM48_MT_GMM_ATTACH_REJ;
294 gh->data[0] = gmm_cause;
295
Harald Welte8acd88f2010-05-18 10:57:45 +0200296 return gsm48_gmm_sendmsg(msg, 0, NULL);
Harald Welte9b455bf2010-03-14 15:45:01 +0800297}
Harald Welte6463c072010-05-18 17:04:55 +0200298static int gsm48_tx_gmm_att_rej_oldmsg(const struct msgb *old_msg,
299 uint8_t gmm_cause)
300{
301 struct msgb *msg = gsm48_msgb_alloc();
302 gmm_copy_id(msg, old_msg);
303 return _tx_gmm_att_rej(msg, gmm_cause);
304}
305static int gsm48_tx_gmm_att_rej(struct sgsn_mm_ctx *mm,
306 uint8_t gmm_cause)
307{
308 struct msgb *msg = gsm48_msgb_alloc();
309 mmctx2msgid(msg, mm);
310 return _tx_gmm_att_rej(msg, gmm_cause);
311}
Harald Welte9b455bf2010-03-14 15:45:01 +0800312
Harald Welte2720e732010-05-17 00:44:57 +0200313/* Chapter 9.4.6.2 Detach accept */
Harald Weltecd4dd4d2010-05-18 17:20:49 +0200314static int gsm48_tx_gmm_det_ack(struct sgsn_mm_ctx *mm, uint8_t force_stby)
Harald Welte2720e732010-05-17 00:44:57 +0200315{
316 struct msgb *msg = gsm48_msgb_alloc();
317 struct gsm48_hdr *gh;
318
319 DEBUGP(DMM, "<- GPRS DETACH ACCEPT\n");
320
Harald Welte6463c072010-05-18 17:04:55 +0200321 mmctx2msgid(msg, mm);
322
Harald Welte2720e732010-05-17 00:44:57 +0200323 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh) + 1);
324 gh->proto_discr = GSM48_PDISC_MM_GPRS;
325 gh->msg_type = GSM48_MT_GMM_DETACH_ACK;
326 gh->data[0] = force_stby;
327
Harald Welte56a01452010-05-31 22:12:30 +0200328 return gsm48_gmm_sendmsg(msg, 0, mm);
Harald Welte2720e732010-05-17 00:44:57 +0200329}
330
Harald Welte9b455bf2010-03-14 15:45:01 +0800331/* Transmit Chapter 9.4.12 Identity Request */
Harald Welte6463c072010-05-18 17:04:55 +0200332static int gsm48_tx_gmm_id_req(struct sgsn_mm_ctx *mm, uint8_t id_type)
Harald Welte9b455bf2010-03-14 15:45:01 +0800333{
334 struct msgb *msg = gsm48_msgb_alloc();
335 struct gsm48_hdr *gh;
336
Harald Weltedce12552010-05-31 22:31:04 +0200337 DEBUGP(DMM, "<- GPRS IDENTITY REQUEST: mi_type=%02x\n", id_type);
Harald Welte9b455bf2010-03-14 15:45:01 +0800338
Harald Welte6463c072010-05-18 17:04:55 +0200339 mmctx2msgid(msg, mm);
Harald Welte9b455bf2010-03-14 15:45:01 +0800340
341 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh) + 1);
342 gh->proto_discr = GSM48_PDISC_MM_GPRS;
343 gh->msg_type = GSM48_MT_GMM_ID_REQ;
344 /* 10.5.5.9 ID type 2 + identity type and 10.5.5.7 'force to standby' IE */
345 gh->data[0] = id_type & 0xf;
346
Harald Weltedce12552010-05-31 22:31:04 +0200347 return gsm48_gmm_sendmsg(msg, 1, mm);
Harald Welte9b455bf2010-03-14 15:45:01 +0800348}
349
350/* Check if we can already authorize a subscriber */
Harald Weltec2e8cc42010-05-31 20:23:38 +0200351static int gsm48_gmm_authorize(struct sgsn_mm_ctx *ctx,
352 enum gprs_t3350_mode t3350_mode)
Harald Welte9b455bf2010-03-14 15:45:01 +0800353{
354 if (strlen(ctx->imei) && strlen(ctx->imsi)) {
Harald Weltec2e8cc42010-05-31 20:23:38 +0200355#ifdef PTMSI_ALLOC
356 /* Start T3350 and re-transmit up to 5 times until ATTACH COMPLETE */
357 ctx->t3350_mode = t3350_mode;
358 mmctx_timer_start(ctx, 3350, GSM0408_T3350_SECS);
359#endif
Harald Welte9b455bf2010-03-14 15:45:01 +0800360 ctx->mm_state = GMM_REGISTERED_NORMAL;
Harald Welte6463c072010-05-18 17:04:55 +0200361 return gsm48_tx_gmm_att_ack(ctx);
Harald Welte9b455bf2010-03-14 15:45:01 +0800362 }
Harald Weltec2e8cc42010-05-31 20:23:38 +0200363 if (!strlen(ctx->imei)) {
364 ctx->mm_state = GMM_COMMON_PROC_INIT;
365 ctx->t3370_id_type = GSM_MI_TYPE_IMEI;
366 mmctx_timer_start(ctx, 3370, GSM0408_T3370_SECS);
Harald Welte6463c072010-05-18 17:04:55 +0200367 return gsm48_tx_gmm_id_req(ctx, GSM_MI_TYPE_IMEI);
Harald Weltec2e8cc42010-05-31 20:23:38 +0200368 }
Harald Welte9b455bf2010-03-14 15:45:01 +0800369
Harald Weltec2e8cc42010-05-31 20:23:38 +0200370 if (!strlen(ctx->imsi)) {
371 ctx->mm_state = GMM_COMMON_PROC_INIT;
372 ctx->t3370_id_type = GSM_MI_TYPE_IMSI;
373 mmctx_timer_start(ctx, 3370, GSM0408_T3370_SECS);
Harald Welte6463c072010-05-18 17:04:55 +0200374 return gsm48_tx_gmm_id_req(ctx, GSM_MI_TYPE_IMSI);
Harald Weltec2e8cc42010-05-31 20:23:38 +0200375 }
Harald Welte9b455bf2010-03-14 15:45:01 +0800376
377 return 0;
378}
379
380/* Parse Chapter 9.4.13 Identity Response */
Harald Welted193cb32010-05-17 22:58:03 +0200381static int gsm48_rx_gmm_id_resp(struct sgsn_mm_ctx *ctx, struct msgb *msg)
Harald Welte9b455bf2010-03-14 15:45:01 +0800382{
Harald Welte943c5bc2010-04-30 16:33:12 +0200383 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_gmmh(msg);
Harald Welteeaa614c2010-05-02 11:26:34 +0200384 uint8_t mi_type = gh->data[1] & GSM_MI_TYPE_MASK;
Harald Welte9b455bf2010-03-14 15:45:01 +0800385 char mi_string[GSM48_MI_SIZE];
Harald Welte9b455bf2010-03-14 15:45:01 +0800386
387 gsm48_mi_to_string(mi_string, sizeof(mi_string), &gh->data[1], gh->data[0]);
Harald Welte2720e732010-05-17 00:44:57 +0200388 DEBUGP(DMM, "-> GMM IDENTITY RESPONSE: mi_type=0x%02x MI(%s) ",
Harald Welte9b455bf2010-03-14 15:45:01 +0800389 mi_type, mi_string);
390
Harald Welte9b455bf2010-03-14 15:45:01 +0800391 if (!ctx) {
Harald Welte943c5bc2010-04-30 16:33:12 +0200392 DEBUGP(DMM, "from unknown TLLI 0x%08x?!?\n", msgb_tlli(msg));
Harald Welte9b455bf2010-03-14 15:45:01 +0800393 return -EINVAL;
394 }
395
Harald Weltec2e8cc42010-05-31 20:23:38 +0200396 if (mi_type == ctx->t3370_id_type)
397 mmctx_timer_stop(ctx, 3370);
398
Harald Welte9b455bf2010-03-14 15:45:01 +0800399 switch (mi_type) {
400 case GSM_MI_TYPE_IMSI:
401 /* we already have a mm context with current TLLI, but no
402 * P-TMSI / IMSI yet. What we now need to do is to fill
403 * this initial context with data from the HLR */
404 strncpy(ctx->imsi, mi_string, sizeof(ctx->imei));
405 break;
406 case GSM_MI_TYPE_IMEI:
407 strncpy(ctx->imei, mi_string, sizeof(ctx->imei));
408 break;
409 case GSM_MI_TYPE_IMEISV:
410 break;
411 }
412
413 DEBUGPC(DMM, "\n");
414 /* Check if we can let the mobile station enter */
Harald Weltec2e8cc42010-05-31 20:23:38 +0200415 return gsm48_gmm_authorize(ctx, ctx->t3350_mode);
Harald Welte9b455bf2010-03-14 15:45:01 +0800416}
417
418/* Section 9.4.1 Attach request */
Harald Welted193cb32010-05-17 22:58:03 +0200419static int gsm48_rx_gmm_att_req(struct sgsn_mm_ctx *mmctx, struct msgb *msg)
Harald Welte9b455bf2010-03-14 15:45:01 +0800420{
Harald Welte943c5bc2010-04-30 16:33:12 +0200421 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_gmmh(msg);
Harald Welte56a01452010-05-31 22:12:30 +0200422 uint8_t *cur = gh->data, *msnc, *mi, *old_ra_info, *ms_ra_acc_cap;
423 uint8_t msnc_len, att_type, mi_len, mi_type, ms_ra_acc_cap_len;
Harald Welteeaa614c2010-05-02 11:26:34 +0200424 uint16_t drx_par;
425 uint32_t tmsi;
Harald Welte9b455bf2010-03-14 15:45:01 +0800426 char mi_string[GSM48_MI_SIZE];
427 struct gprs_ra_id ra_id;
Harald Welte9f1f3ad2010-05-02 12:56:57 +0200428 uint16_t cid;
Harald Welte9b455bf2010-03-14 15:45:01 +0800429 struct sgsn_mm_ctx *ctx;
430
Harald Welte2720e732010-05-17 00:44:57 +0200431 DEBUGP(DMM, "-> GMM ATTACH REQUEST ");
Harald Welte9b455bf2010-03-14 15:45:01 +0800432
433 /* As per TS 04.08 Chapter 4.7.1.4, the attach request arrives either
434 * with a foreign TLLI (P-TMSI that was allocated to the MS before),
435 * or with random TLLI. */
436
Harald Welte9f1f3ad2010-05-02 12:56:57 +0200437 cid = bssgp_parse_cell_id(&ra_id, msgb_bcid(msg));
Harald Welte9b455bf2010-03-14 15:45:01 +0800438
439 /* MS network capability 10.5.5.12 */
440 msnc_len = *cur++;
441 msnc = cur;
442 if (msnc_len > 2)
443 goto err_inval;
444 cur += msnc_len;
445
446 /* aTTACH Type 10.5.5.2 */
447 att_type = *cur++ & 0x0f;
448
449 /* DRX parameter 10.5.5.6 */
Harald Welte56a01452010-05-31 22:12:30 +0200450 drx_par = *cur++ << 8;
451 drx_par |= *cur++;
Harald Welte9b455bf2010-03-14 15:45:01 +0800452
453 /* Mobile Identity (P-TMSI or IMSI) 10.5.1.4 */
454 mi_len = *cur++;
455 mi = cur;
456 if (mi_len > 8)
457 goto err_inval;
458 mi_type = *mi & GSM_MI_TYPE_MASK;
459 cur += mi_len;
460
461 gsm48_mi_to_string(mi_string, sizeof(mi_string), mi, mi_len);
462
Harald Welte2720e732010-05-17 00:44:57 +0200463 DEBUGPC(DMM, "MI(%s) type=\"%s\" ", mi_string,
464 get_value_string(gprs_att_t_strs, att_type));
Harald Welte9b455bf2010-03-14 15:45:01 +0800465
466 /* Old routing area identification 10.5.5.15 */
467 old_ra_info = cur;
468 cur += 6;
469
470 /* MS Radio Access Capability 10.5.5.12a */
Harald Welte56a01452010-05-31 22:12:30 +0200471 ms_ra_acc_cap_len = *cur++;
472 ms_ra_acc_cap = cur;
Harald Welte9b455bf2010-03-14 15:45:01 +0800473
474 /* Optional: Old P-TMSI Signature, Requested READY timer, TMSI Status */
475
476 switch (mi_type) {
477 case GSM_MI_TYPE_IMSI:
478 /* Try to find MM context based on IMSI */
479 ctx = sgsn_mm_ctx_by_imsi(mi_string);
480 if (!ctx) {
481#if 0
482 return gsm48_tx_gmm_att_rej(msg, GMM_CAUSE_IMSI_UNKNOWN);
483#else
484 /* As a temorary hack, we simply assume that the IMSI exists */
485 ctx = sgsn_mm_ctx_alloc(0, &ra_id);
486 if (!ctx)
Harald Welte6463c072010-05-18 17:04:55 +0200487 return gsm48_tx_gmm_att_rej_oldmsg(msg, GMM_CAUSE_NET_FAIL);
Harald Welte9b455bf2010-03-14 15:45:01 +0800488 strncpy(ctx->imsi, mi_string, sizeof(ctx->imsi));
489#endif
490 }
Harald Welte943c5bc2010-04-30 16:33:12 +0200491 ctx->tlli = msgb_tlli(msg);
Harald Welte68b99a42010-05-18 12:05:42 +0200492 msgid2mmctx(ctx, msg);
Harald Welte9b455bf2010-03-14 15:45:01 +0800493 break;
494 case GSM_MI_TYPE_TMSI:
Harald Welteab1d5622010-05-18 19:58:38 +0200495 memcpy(&tmsi, mi+1, 4);
496 tmsi = ntohl(tmsi);
Harald Welte9b455bf2010-03-14 15:45:01 +0800497 /* Try to find MM context based on P-TMSI */
498 ctx = sgsn_mm_ctx_by_ptmsi(tmsi);
499 if (!ctx) {
Harald Welte943c5bc2010-04-30 16:33:12 +0200500 ctx = sgsn_mm_ctx_alloc(msgb_tlli(msg), &ra_id);
Harald Welte943c5bc2010-04-30 16:33:12 +0200501 ctx->tlli = msgb_tlli(msg);
Harald Welte68b99a42010-05-18 12:05:42 +0200502 msgid2mmctx(ctx, msg);
Harald Welte9b455bf2010-03-14 15:45:01 +0800503 }
Harald Welte6463c072010-05-18 17:04:55 +0200504 ctx->p_tmsi = tmsi;
Harald Welte9b455bf2010-03-14 15:45:01 +0800505 break;
506 default:
Harald Weltec2e8cc42010-05-31 20:23:38 +0200507 LOGP(DMM, LOGL_NOTICE, "Rejecting ATTACH REQUEST with "
508 "MI type %u\n", mi_type);
509 return gsm48_tx_gmm_att_rej_oldmsg(msg, GMM_CAUSE_MS_ID_NOT_DERIVED);
Harald Welte9b455bf2010-03-14 15:45:01 +0800510 }
Harald Welte9f1f3ad2010-05-02 12:56:57 +0200511 /* Update MM Context with currient RA and Cell ID */
512 ctx->ra = ra_id;
513 ctx->cell_id = cid;
Harald Welte56a01452010-05-31 22:12:30 +0200514 /* Update MM Context with other data */
515 ctx->drx_parms = drx_par;
516 ctx->ms_radio_access_capa.len = ms_ra_acc_cap_len;
517 memcpy(ctx->ms_radio_access_capa.buf, ms_ra_acc_cap, ms_ra_acc_cap_len);
518 ctx->ms_network_capa.len = msnc_len;
519 memcpy(ctx->ms_network_capa.buf, msnc, msnc_len);
520
Harald Weltec2e8cc42010-05-31 20:23:38 +0200521#ifdef PTMSI_ALLOC
Harald Welte6463c072010-05-18 17:04:55 +0200522 /* Allocate a new P-TMSI (+ P-TMSI signature) */
Harald Weltec2e8cc42010-05-31 20:23:38 +0200523 ctx->p_tmsi_old = ctx->p_tmsi;
Harald Welte6463c072010-05-18 17:04:55 +0200524 ctx->p_tmsi = sgsn_alloc_ptmsi();
Harald Welteab1d5622010-05-18 19:58:38 +0200525#endif
Harald Welte9b455bf2010-03-14 15:45:01 +0800526 /* FIXME: update the TLLI with the new local TLLI based on the P-TMSI */
527
528 DEBUGPC(DMM, "\n");
529
Harald Weltec2e8cc42010-05-31 20:23:38 +0200530 return ctx ? gsm48_gmm_authorize(ctx, GMM_T3350_MODE_ATT) : 0;
Harald Welte9b455bf2010-03-14 15:45:01 +0800531
532err_inval:
533 DEBUGPC(DMM, "\n");
Harald Welte6463c072010-05-18 17:04:55 +0200534 return gsm48_tx_gmm_att_rej_oldmsg(msg, GMM_CAUSE_SEM_INCORR_MSG);
Harald Welte9b455bf2010-03-14 15:45:01 +0800535}
536
Harald Welte2720e732010-05-17 00:44:57 +0200537/* Section 4.7.4.1 / 9.4.5.2 MO Detach request */
Harald Welted193cb32010-05-17 22:58:03 +0200538static int gsm48_rx_gmm_det_req(struct sgsn_mm_ctx *ctx, struct msgb *msg)
Harald Welte2720e732010-05-17 00:44:57 +0200539{
540 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_gmmh(msg);
Harald Welte2720e732010-05-17 00:44:57 +0200541 uint8_t detach_type, power_off;
Harald Welte2720e732010-05-17 00:44:57 +0200542
543 detach_type = gh->data[0] & 0x7;
544 power_off = gh->data[0] & 0x8;
545
546 /* FIXME: In 24.008 there is an optional P-TMSI and P-TMSI signature IE */
547
548 DEBUGP(DMM, "-> GMM DETACH REQUEST TLLI=0x%08x type=%s %s\n",
549 msgb_tlli(msg), get_value_string(gprs_det_t_mo_strs, detach_type),
550 power_off ? "Power-off" : "");
551
552 /* Mark MM state as deregistered */
553 ctx->mm_state = GMM_DEREGISTERED;
554
555 /* force_stby = 0 */
Harald Welte6463c072010-05-18 17:04:55 +0200556 return gsm48_tx_gmm_det_ack(ctx, 0);
Harald Welte2720e732010-05-17 00:44:57 +0200557}
558
Harald Welte9b455bf2010-03-14 15:45:01 +0800559/* Chapter 9.4.15: Routing area update accept */
Harald Welte6463c072010-05-18 17:04:55 +0200560static int gsm48_tx_gmm_ra_upd_ack(struct sgsn_mm_ctx *mm)
Harald Welte9b455bf2010-03-14 15:45:01 +0800561{
562 struct msgb *msg = gsm48_msgb_alloc();
563 struct gsm48_hdr *gh;
564 struct gsm48_ra_upd_ack *rua;
Harald Weltec2e8cc42010-05-31 20:23:38 +0200565 uint8_t *mid;
Harald Welte9b455bf2010-03-14 15:45:01 +0800566
567 DEBUGP(DMM, "<- ROUTING AREA UPDATE ACCEPT\n");
568
Harald Welte6463c072010-05-18 17:04:55 +0200569 mmctx2msgid(msg, mm);
Harald Welte9b455bf2010-03-14 15:45:01 +0800570
571 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
572 gh->proto_discr = GSM48_PDISC_MM_GPRS;
573 gh->msg_type = GSM48_MT_GMM_RA_UPD_ACK;
574
575 rua = (struct gsm48_ra_upd_ack *) msgb_put(msg, sizeof(*rua));
576 rua->force_stby = 0; /* not indicated */
577 rua->upd_result = 0; /* RA updated */
578 rua->ra_upd_timer = GPRS_TMR_MINUTE | 10;
Harald Welte11d7c102010-05-02 11:54:55 +0200579
Harald Welte6463c072010-05-18 17:04:55 +0200580 gsm48_construct_ra(rua->ra_id.digits, &mm->ra);
Harald Welte9b455bf2010-03-14 15:45:01 +0800581
Harald Weltec2e8cc42010-05-31 20:23:38 +0200582#if 0
583 /* Optional: P-TMSI signature */
584 msgb_v_put(msg, GSM48_IE_GMM_PTMSI_SIG);
585 ptsig = msgb_put(msg, 3);
586 ptsig[0] = mm->p_tmsi_sig >> 16;
587 ptsig[1] = mm->p_tmsi_sig >> 8;
588 ptsig[2] = mm->p_tmsi_sig & 0xff;
589#endif
590
591#ifdef PTMSI_ALLOC
592 /* Optional: Allocated P-TMSI */
593 mid = msgb_put(msg, GSM48_MID_TMSI_LEN);
594 gsm48_generate_mid_from_tmsi(mid, mm->p_tmsi);
595 mid[0] = GSM48_IE_GMM_ALLOC_PTMSI;
596#endif
597
598 /* Option: MS ID, ... */
Harald Welte56a01452010-05-31 22:12:30 +0200599 return gsm48_gmm_sendmsg(msg, 0, mm);
Harald Welte9b455bf2010-03-14 15:45:01 +0800600}
601
602/* Chapter 9.4.17: Routing area update reject */
Harald Welteeaa614c2010-05-02 11:26:34 +0200603static int gsm48_tx_gmm_ra_upd_rej(struct msgb *old_msg, uint8_t cause)
Harald Welte9b455bf2010-03-14 15:45:01 +0800604{
605 struct msgb *msg = gsm48_msgb_alloc();
606 struct gsm48_hdr *gh;
607
608 DEBUGP(DMM, "<- ROUTING AREA UPDATE REJECT\n");
609
Harald Welte11d7c102010-05-02 11:54:55 +0200610 gmm_copy_id(msg, old_msg);
Harald Welte9b455bf2010-03-14 15:45:01 +0800611
612 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh) + 2);
613 gh->proto_discr = GSM48_PDISC_MM_GPRS;
614 gh->msg_type = GSM48_MT_GMM_RA_UPD_REJ;
615 gh->data[0] = cause;
616 gh->data[1] = 0; /* ? */
617
618 /* Option: P-TMSI signature, allocated P-TMSI, MS ID, ... */
Harald Welte8acd88f2010-05-18 10:57:45 +0200619 return gsm48_gmm_sendmsg(msg, 0, NULL);
Harald Welte9b455bf2010-03-14 15:45:01 +0800620}
621
622/* Chapter 9.4.14: Routing area update request */
Harald Welted193cb32010-05-17 22:58:03 +0200623static int gsm48_rx_gmm_ra_upd_req(struct sgsn_mm_ctx *mmctx, struct msgb *msg)
Harald Welte9b455bf2010-03-14 15:45:01 +0800624{
Harald Welte943c5bc2010-04-30 16:33:12 +0200625 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_gmmh(msg);
Harald Welteeaa614c2010-05-02 11:26:34 +0200626 uint8_t *cur = gh->data;
Harald Welte9b455bf2010-03-14 15:45:01 +0800627 struct gprs_ra_id old_ra_id;
Harald Welteeaa614c2010-05-02 11:26:34 +0200628 uint8_t upd_type;
Harald Welte9b455bf2010-03-14 15:45:01 +0800629
630 /* Update Type 10.5.5.18 */
631 upd_type = *cur++ & 0x0f;
632
Harald Welte2720e732010-05-17 00:44:57 +0200633 DEBUGP(DMM, "-> GMM RA UPDATE REQUEST type=\"%s\" ",
634 get_value_string(gprs_upd_t_strs, upd_type));
Harald Welte9b455bf2010-03-14 15:45:01 +0800635
636 /* Old routing area identification 10.5.5.15 */
637 gsm48_parse_ra(&old_ra_id, cur);
638 cur += 6;
639
640 /* MS Radio Access Capability 10.5.5.12a */
641
642 /* Optional: Old P-TMSI Signature, Requested READY timer, TMSI Status,
643 * DRX parameter, MS network capability */
644
645 switch (upd_type) {
646 case GPRS_UPD_T_RA_LA:
647 case GPRS_UPD_T_RA_LA_IMSI_ATT:
648 DEBUGPC(DMM, " unsupported in Mode III, is your SI13 corrupt?\n");
649 return gsm48_tx_gmm_ra_upd_rej(msg, GMM_CAUSE_PROTO_ERR_UNSPEC);
650 break;
651 case GPRS_UPD_T_RA:
652 case GPRS_UPD_T_PERIODIC:
653 break;
654 }
655
656 /* Look-up the MM context based on old RA-ID and TLLI */
Harald Welte9b455bf2010-03-14 15:45:01 +0800657 if (!mmctx || mmctx->mm_state == GMM_DEREGISTERED) {
658 /* The MS has to perform GPRS attach */
659 DEBUGPC(DMM, " REJECT\n");
Harald Weltec2e8cc42010-05-31 20:23:38 +0200660 /* Device is still IMSI atached for CS but initiate GPRS ATTACH */
661 return gsm48_tx_gmm_ra_upd_rej(msg, GMM_CAUSE_MS_ID_NOT_DERIVED);
Harald Welte9b455bf2010-03-14 15:45:01 +0800662 }
663
Harald Welte9f1f3ad2010-05-02 12:56:57 +0200664 /* Update the MM context with the new RA-ID */
665 bssgp_parse_cell_id(&mmctx->ra, msgb_bcid(msg));
666 /* Update the MM context with the new TLLI */
667 mmctx->tlli = msgb_tlli(msg);
Harald Welte9b455bf2010-03-14 15:45:01 +0800668 /* FIXME: Update the MM context with the MS radio acc capabilities */
669 /* FIXME: Update the MM context with the MS network capabilities */
670
Harald Welte77289c22010-05-18 14:32:29 +0200671 rate_ctr_inc(&mmctx->ctrg->ctr[GMM_CTR_RA_UPDATE]);
672
Harald Welte9b455bf2010-03-14 15:45:01 +0800673 DEBUGPC(DMM, " ACCEPT\n");
Harald Weltec2e8cc42010-05-31 20:23:38 +0200674#ifdef PTMSI_ALLOC
675 mmctx->p_tmsi_old = mmctx->p_tmsi;
676 mmctx->p_tmsi = sgsn_alloc_ptmsi();
677 /* Start T3350 and re-transmit up to 5 times until ATTACH COMPLETE */
678 mmctx->t3350_mode = GMM_T3350_MODE_RAU;
679 mmctx_timer_start(mmctx, 3350, GSM0408_T3350_SECS);
680#endif
681
Harald Welte6463c072010-05-18 17:04:55 +0200682 return gsm48_tx_gmm_ra_upd_ack(mmctx);
Harald Welte9b455bf2010-03-14 15:45:01 +0800683}
684
Harald Welted193cb32010-05-17 22:58:03 +0200685static int gsm48_rx_gmm_status(struct sgsn_mm_ctx *mmctx, struct msgb *msg)
Harald Welte9b455bf2010-03-14 15:45:01 +0800686{
687 struct gsm48_hdr *gh = msgb_l3(msg);
688
Harald Welte2720e732010-05-17 00:44:57 +0200689 DEBUGP(DMM, "-> GPRS MM STATUS (cause: %s)\n",
Harald Welte9b455bf2010-03-14 15:45:01 +0800690 get_value_string(gmm_cause_names, gh->data[0]));
691
692 return 0;
693}
694
695/* GPRS Mobility Management */
Harald Welted193cb32010-05-17 22:58:03 +0200696static int gsm0408_rcv_gmm(struct sgsn_mm_ctx *mmctx, struct msgb *msg)
Harald Welte9b455bf2010-03-14 15:45:01 +0800697{
Harald Welte943c5bc2010-04-30 16:33:12 +0200698 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_gmmh(msg);
Harald Welte9b455bf2010-03-14 15:45:01 +0800699 int rc;
700
Harald Welted193cb32010-05-17 22:58:03 +0200701 if (!mmctx &&
702 gh->msg_type != GSM48_MT_GMM_ATTACH_REQ &&
Harald Weltec2e8cc42010-05-31 20:23:38 +0200703 gh->msg_type != GSM48_MT_GMM_RA_UPD_REQ) {
Harald Welted193cb32010-05-17 22:58:03 +0200704 LOGP(DMM, LOGL_NOTICE, "Cannot handle GMM for unknown MM CTX\n");
Harald Welte77289c22010-05-18 14:32:29 +0200705 /* FIXME: Send GMM_CAUSE_IMPL_DETACHED */
Harald Welted193cb32010-05-17 22:58:03 +0200706 return -EINVAL;
707 }
708
709
Harald Welte9b455bf2010-03-14 15:45:01 +0800710 switch (gh->msg_type) {
711 case GSM48_MT_GMM_RA_UPD_REQ:
Harald Welted193cb32010-05-17 22:58:03 +0200712 rc = gsm48_rx_gmm_ra_upd_req(mmctx, msg);
Harald Welte9b455bf2010-03-14 15:45:01 +0800713 break;
714 case GSM48_MT_GMM_ATTACH_REQ:
Harald Welted193cb32010-05-17 22:58:03 +0200715 rc = gsm48_rx_gmm_att_req(mmctx, msg);
Harald Welte9b455bf2010-03-14 15:45:01 +0800716 break;
717 case GSM48_MT_GMM_ID_RESP:
Harald Welted193cb32010-05-17 22:58:03 +0200718 rc = gsm48_rx_gmm_id_resp(mmctx, msg);
Harald Welte9b455bf2010-03-14 15:45:01 +0800719 break;
720 case GSM48_MT_GMM_STATUS:
Harald Welted193cb32010-05-17 22:58:03 +0200721 rc = gsm48_rx_gmm_status(mmctx, msg);
Harald Welte9b455bf2010-03-14 15:45:01 +0800722 break;
Harald Welte2720e732010-05-17 00:44:57 +0200723 case GSM48_MT_GMM_DETACH_REQ:
Harald Welted193cb32010-05-17 22:58:03 +0200724 rc = gsm48_rx_gmm_det_req(mmctx, msg);
Harald Welte2720e732010-05-17 00:44:57 +0200725 break;
Harald Welte9b455bf2010-03-14 15:45:01 +0800726 case GSM48_MT_GMM_ATTACH_COMPL:
727 /* only in case SGSN offered new P-TMSI */
Harald Weltec2e8cc42010-05-31 20:23:38 +0200728 DEBUGP(DMM, "-> ATTACH COMPLETE\n");
729 mmctx_timer_stop(mmctx, 3350);
730 mmctx->p_tmsi_old = 0;
731 break;
Harald Welteab1d5622010-05-18 19:58:38 +0200732 case GSM48_MT_GMM_RA_UPD_COMPL:
733 /* only in case SGSN offered new P-TMSI */
Harald Weltec2e8cc42010-05-31 20:23:38 +0200734 DEBUGP(DMM, "-> ROUTEING AREA UPDATE COMPLETE\n");
735 mmctx_timer_stop(mmctx, 3350);
736 mmctx->p_tmsi_old = 0;
737 break;
Harald Welte9b455bf2010-03-14 15:45:01 +0800738 case GSM48_MT_GMM_PTMSI_REALL_COMPL:
Harald Weltec2e8cc42010-05-31 20:23:38 +0200739 DEBUGP(DMM, "-> PTMSI REALLLICATION COMPLETE\n");
740 mmctx_timer_stop(mmctx, 3350);
741 mmctx->p_tmsi_old = 0;
742 break;
Harald Welte9b455bf2010-03-14 15:45:01 +0800743 case GSM48_MT_GMM_AUTH_CIPH_RESP:
744 DEBUGP(DMM, "Unimplemented GSM 04.08 GMM msg type 0x%02x\n",
745 gh->msg_type);
Harald Welte2720e732010-05-17 00:44:57 +0200746 /* FIXME: Send GMM_CAUSE_MSGT_NOTEXIST_NOTIMPL */
Harald Welte9b455bf2010-03-14 15:45:01 +0800747 break;
748 default:
749 DEBUGP(DMM, "Unknown GSM 04.08 GMM msg type 0x%02x\n",
750 gh->msg_type);
Harald Welte2720e732010-05-17 00:44:57 +0200751 /* FIXME: Send GMM_CAUSE_MSGT_NOTEXIST_NOTIMPL */
Harald Welte9b455bf2010-03-14 15:45:01 +0800752 break;
753 }
754
755 return rc;
756}
757
Harald Weltec2e8cc42010-05-31 20:23:38 +0200758static void mmctx_timer_cb(void *_mm)
759{
760 struct sgsn_mm_ctx *mm = _mm;
761
762 mm->num_T_exp++;
763
764 switch (mm->T) {
765 case 3350: /* waiting for ATTACH COMPLETE */
766 if (mm->num_T_exp >= 5) {
767 LOGP(DMM, LOGL_NOTICE, "T3350 expired >= 5 times\n");
768 mm->mm_state = GMM_DEREGISTERED;
769 /* FIXME: should we return some error? */
770 break;
771 }
772 /* re-transmit the respective msg and re-start timer */
773 switch (mm->t3350_mode) {
774 case GMM_T3350_MODE_ATT:
775 gsm48_tx_gmm_att_ack(mm);
776 break;
777 case GMM_T3350_MODE_RAU:
778 gsm48_tx_gmm_ra_upd_ack(mm);
779 break;
780 case GMM_T3350_MODE_PTMSI_REALL:
781 /* FIXME */
782 break;
783 }
784 bsc_schedule_timer(&mm->timer, GSM0408_T3350_SECS, 0);
785 break;
786 case 3370: /* waiting for IDENTITY RESPONSE */
787 if (mm->num_T_exp >= 5) {
788 LOGP(DMM, LOGL_NOTICE, "T3370 expired >= 5 times\n");
789 gsm48_tx_gmm_att_rej(mm, GMM_CAUSE_MS_ID_NOT_DERIVED);
790 mm->mm_state = GMM_DEREGISTERED;
791 break;
792 }
793 /* re-tranmit IDENTITY REQUEST and re-start timer */
794 gsm48_tx_gmm_id_req(mm, mm->t3370_id_type);
795 bsc_schedule_timer(&mm->timer, GSM0408_T3370_SECS, 0);
796 break;
797 default:
798 LOGP(DMM, LOGL_ERROR, "timer expired in unknown mode %u\n",
799 mm->T);
800 }
801}
802
803/* GPRS SESSION MANAGEMENT */
804
Harald Welte421cba42010-05-02 23:11:50 +0200805static void msgb_put_pdp_addr_ipv4(struct msgb *msg, uint32_t ipaddr)
806{
807 uint8_t v[6];
808
809 v[0] = PDP_TYPE_ORG_IETF;
810 v[1] = PDP_TYPE_N_IETF_IPv4;
811 *(uint32_t *)(v+2) = htonl(ipaddr);
812
813 msgb_tlv_put(msg, GSM48_IE_GSM_PDP_ADDR, sizeof(v), v);
814}
815
816static void msgb_put_pdp_addr_ppp(struct msgb *msg)
817{
818 uint8_t v[2];
819
820 v[0] = PDP_TYPE_ORG_ETSI;
821 v[1] = PDP_TYPE_N_ETSI_PPP;
822
823 msgb_tlv_put(msg, GSM48_IE_GSM_PDP_ADDR, sizeof(v), v);
824}
825
Harald Welte9b455bf2010-03-14 15:45:01 +0800826/* Section 9.5.2: Ativate PDP Context Accept */
Harald Welte6abf94e2010-05-18 10:35:06 +0200827int gsm48_tx_gsm_act_pdp_acc(struct sgsn_pdp_ctx *pdp)
Harald Welte9b455bf2010-03-14 15:45:01 +0800828{
Harald Welte9b455bf2010-03-14 15:45:01 +0800829 struct msgb *msg = gsm48_msgb_alloc();
Harald Welte9b455bf2010-03-14 15:45:01 +0800830 struct gsm48_hdr *gh;
Harald Welte6abf94e2010-05-18 10:35:06 +0200831 uint8_t transaction_id = pdp->ti ^ 0x8; /* flip */
Harald Welte9b455bf2010-03-14 15:45:01 +0800832
833 DEBUGP(DMM, "<- ACTIVATE PDP CONTEXT ACK\n");
834
Harald Welte6abf94e2010-05-18 10:35:06 +0200835 mmctx2msgid(msg, pdp->mm);
Harald Welte9b455bf2010-03-14 15:45:01 +0800836
837 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
838 gh->proto_discr = GSM48_PDISC_SM_GPRS | (transaction_id << 4);
839 gh->msg_type = GSM48_MT_GSM_ACT_PDP_ACK;
Harald Welte421cba42010-05-02 23:11:50 +0200840
841 /* Negotiated LLC SAPI */
Harald Welte6abf94e2010-05-18 10:35:06 +0200842 msgb_v_put(msg, pdp->sapi);
Harald Welte4e38ac72010-05-18 14:51:18 +0200843
Harald Welte55e0df72010-05-18 13:20:08 +0200844 /* FIXME: copy QoS parameters from original request */
845 //msgb_lv_put(msg, pdp->lib->qos_neg.l, pdp->lib->qos_neg.v);
846 msgb_lv_put(msg, sizeof(default_qos), (uint8_t *)&default_qos);
Harald Welte4e38ac72010-05-18 14:51:18 +0200847
Harald Welte421cba42010-05-02 23:11:50 +0200848 /* Radio priority 10.5.7.2 */
Harald Welte6abf94e2010-05-18 10:35:06 +0200849 msgb_v_put(msg, pdp->lib->radio_pri);
Harald Welte4e38ac72010-05-18 14:51:18 +0200850
Harald Welte421cba42010-05-02 23:11:50 +0200851 /* PDP address */
Harald Welte4e38ac72010-05-18 14:51:18 +0200852 /* Highest 4 bits of first byte need to be set to 1, otherwise
853 * the IE is identical with the 04.08 PDP Address IE */
854 pdp->lib->eua.v[0] &= ~0xf0;
Harald Welte6abf94e2010-05-18 10:35:06 +0200855 msgb_tlv_put(msg, GSM48_IE_GSM_PDP_ADDR,
856 pdp->lib->eua.l, pdp->lib->eua.v);
Harald Welte4e38ac72010-05-18 14:51:18 +0200857 pdp->lib->eua.v[0] |= 0xf0;
858
Harald Welte77289c22010-05-18 14:32:29 +0200859 /* Optional: Protocol configuration options (FIXME: why 'req') */
860 if (pdp->lib->pco_req.l && pdp->lib->pco_req.v)
Harald Welte6abf94e2010-05-18 10:35:06 +0200861 msgb_tlv_put(msg, GSM48_IE_GSM_PROTO_CONF_OPT,
Harald Welte3c0b9b92010-05-18 14:36:11 +0200862 pdp->lib->pco_req.l, pdp->lib->pco_req.v);
Harald Welte4e38ac72010-05-18 14:51:18 +0200863
Harald Welte421cba42010-05-02 23:11:50 +0200864 /* Optional: Packet Flow Identifier */
Harald Welte9b455bf2010-03-14 15:45:01 +0800865
Harald Welte8acd88f2010-05-18 10:57:45 +0200866 return gsm48_gmm_sendmsg(msg, 0, pdp->mm);
Harald Welte9b455bf2010-03-14 15:45:01 +0800867}
868
Harald Welte6abf94e2010-05-18 10:35:06 +0200869/* Section 9.5.3: Activate PDP Context reject */
870int gsm48_tx_gsm_act_pdp_rej(struct sgsn_mm_ctx *mm, uint8_t tid,
871 uint8_t cause, uint8_t pco_len, uint8_t *pco_v)
872{
873 struct msgb *msg = gsm48_msgb_alloc();
Harald Welte6abf94e2010-05-18 10:35:06 +0200874 struct gsm48_hdr *gh;
875 uint8_t transaction_id = tid ^ 0x8; /* flip */
876
Harald Welte77289c22010-05-18 14:32:29 +0200877 DEBUGP(DMM, "<- ACTIVATE PDP CONTEXT REJ(cause=%u)\n", cause);
Harald Welte6abf94e2010-05-18 10:35:06 +0200878
879 mmctx2msgid(msg, mm);
880
881 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
882 gh->proto_discr = GSM48_PDISC_SM_GPRS | (transaction_id << 4);
883 gh->msg_type = GSM48_MT_GSM_ACT_PDP_REJ;
884
885 msgb_v_put(msg, cause);
886 if (pco_len && pco_v)
887 msgb_tlv_put(msg, GSM48_IE_GSM_PROTO_CONF_OPT, pco_len, pco_v);
888
Harald Welte8acd88f2010-05-18 10:57:45 +0200889 return gsm48_gmm_sendmsg(msg, 0, mm);
Harald Welte6abf94e2010-05-18 10:35:06 +0200890}
891
Harald Welte9b455bf2010-03-14 15:45:01 +0800892/* Section 9.5.9: Deactivate PDP Context Accept */
Harald Welte77289c22010-05-18 14:32:29 +0200893int gsm48_tx_gsm_deact_pdp_acc(struct sgsn_pdp_ctx *pdp)
Harald Welte9b455bf2010-03-14 15:45:01 +0800894{
Harald Welte9b455bf2010-03-14 15:45:01 +0800895 struct msgb *msg = gsm48_msgb_alloc();
896 struct gsm48_hdr *gh;
Harald Welte77289c22010-05-18 14:32:29 +0200897 uint8_t transaction_id = pdp->ti ^ 0x8; /* flip */
Harald Welte9b455bf2010-03-14 15:45:01 +0800898
899 DEBUGP(DMM, "<- DEACTIVATE PDP CONTEXT ACK\n");
900
Harald Welte77289c22010-05-18 14:32:29 +0200901 mmctx2msgid(msg, pdp->mm);
Harald Welte9b455bf2010-03-14 15:45:01 +0800902
903 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
904 gh->proto_discr = GSM48_PDISC_SM_GPRS | (transaction_id << 4);
905 gh->msg_type = GSM48_MT_GSM_DEACT_PDP_ACK;
906
Harald Welte77289c22010-05-18 14:32:29 +0200907 return gsm48_gmm_sendmsg(msg, 0, pdp->mm);
Harald Welte9b455bf2010-03-14 15:45:01 +0800908}
909
910/* Section 9.5.1: Activate PDP Context Request */
Harald Welted193cb32010-05-17 22:58:03 +0200911static int gsm48_rx_gsm_act_pdp_req(struct sgsn_mm_ctx *mmctx,
912 struct msgb *msg)
Harald Welte9b455bf2010-03-14 15:45:01 +0800913{
Harald Welte943c5bc2010-04-30 16:33:12 +0200914 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_gmmh(msg);
Harald Welte9b455bf2010-03-14 15:45:01 +0800915 struct gsm48_act_pdp_ctx_req *act_req = (struct gsm48_act_pdp_ctx_req *) gh->data;
Harald Welte0c3eae02010-05-02 21:07:14 +0200916 uint8_t req_qos_len, req_pdpa_len;
917 uint8_t *req_qos, *req_pdpa;
918 struct tlv_parsed tp;
Harald Welte6abf94e2010-05-18 10:35:06 +0200919 uint8_t transaction_id = (gh->proto_discr >> 4);
920 struct sgsn_pdp_ctx *pdp;
Harald Welte9b455bf2010-03-14 15:45:01 +0800921
Harald Welteab1d5622010-05-18 19:58:38 +0200922 memset(&tp, 0, sizeof(tp));
923
Harald Welte6abf94e2010-05-18 10:35:06 +0200924 DEBUGP(DMM, "-> ACTIVATE PDP CONTEXT REQ: SAPI=%u NSAPI=%u ",
925 act_req->req_llc_sapi, act_req->req_nsapi);
Harald Welte8acd88f2010-05-18 10:57:45 +0200926
927 rate_ctr_inc(&mmctx->ctrg->ctr[GMM_CTR_PDP_CTX_ACT]);
928
Harald Welte0c3eae02010-05-02 21:07:14 +0200929 req_qos_len = act_req->data[0];
930 req_qos = act_req->data + 1; /* 10.5.6.5 */
931 req_pdpa_len = act_req->data[1 + req_qos_len];
932 req_pdpa = act_req->data + 1 + req_qos_len + 1; /* 10.5.6.4 */
Harald Welte9b455bf2010-03-14 15:45:01 +0800933
Harald Welte0c3eae02010-05-02 21:07:14 +0200934 switch (req_pdpa[0] & 0xf) {
935 case 0x0:
936 DEBUGPC(DMM, "ETSI ");
937 break;
938 case 0x1:
939 DEBUGPC(DMM, "IETF ");
940 break;
941 case 0xf:
942 DEBUGPC(DMM, "Empty ");
943 break;
944 }
945
946 switch (req_pdpa[1]) {
947 case 0x21:
948 DEBUGPC(DMM, "IPv4 ");
949 if (req_pdpa_len >= 6) {
950 struct in_addr ia;
951 ia.s_addr = ntohl(*((uint32_t *) (req_pdpa+2)));
952 DEBUGPC(DMM, "%s ", inet_ntoa(ia));
953 }
954 break;
955 case 0x57:
956 DEBUGPC(DMM, "IPv6 ");
957 if (req_pdpa_len >= 18) {
958 /* FIXME: print IPv6 address */
959 }
960 break;
961 default:
962 DEBUGPC(DMM, "0x%02x ", req_pdpa[1]);
963 break;
964 }
965
Harald Welte77289c22010-05-18 14:32:29 +0200966 DEBUGPC(DMM, "\n");
967
Harald Welte2720e732010-05-17 00:44:57 +0200968 /* put the non-TLV elements in the TLV parser structure to
969 * pass them on to the SGSN / GTP code */
970 tp.lv[OSMO_IE_GSM_REQ_QOS].len = req_qos_len;
971 tp.lv[OSMO_IE_GSM_REQ_QOS].val = req_qos;
972 tp.lv[OSMO_IE_GSM_REQ_PDP_ADDR].len = req_pdpa_len;
973 tp.lv[OSMO_IE_GSM_REQ_PDP_ADDR].val = req_pdpa;
974
Harald Welte6abf94e2010-05-18 10:35:06 +0200975 /* FIXME: determine GGSN based on APN and subscription options */
Harald Welte0c3eae02010-05-02 21:07:14 +0200976 if (TLVP_PRESENT(&tp, GSM48_IE_GSM_APN)) {}
Harald Welte6abf94e2010-05-18 10:35:06 +0200977
978 /* Check if NSAPI is out of range (TS 04.65 / 7.2) */
979 if (act_req->req_nsapi < 5 || act_req->req_nsapi > 15) {
980 /* Send reject with GSM_CAUSE_INV_MAND_INFO */
981 return gsm48_tx_gsm_act_pdp_rej(mmctx, transaction_id,
982 GSM_CAUSE_INV_MAND_INFO,
983 0, NULL);
984 }
985
986 /* Check if NSAPI is already in use */
987 if (sgsn_pdp_ctx_by_nsapi(mmctx, act_req->req_nsapi)) {
988 /* FIXME: send reject with GSM_CAUSE_NSAPI_IN_USE */
989 return gsm48_tx_gsm_act_pdp_rej(mmctx, transaction_id,
990 GSM_CAUSE_NSAPI_IN_USE,
991 0, NULL);
992 }
Harald Welte9b455bf2010-03-14 15:45:01 +0800993
Harald Welted193cb32010-05-17 22:58:03 +0200994#if 1
995 {
Harald Welteab1d5622010-05-18 19:58:38 +0200996 struct sgsn_ggsn_ctx *ggsn = sgsn_ggsn_ctx_by_id(0);
997 if (!ggsn) {
998 LOGP(DGPRS, LOGL_ERROR, "No GGSN context 0 found!\n");
999 return -EIO;
1000 }
1001 ggsn->gsn = sgsn->gsn;
1002 pdp = sgsn_create_pdp_ctx(ggsn, mmctx, act_req->req_nsapi, &tp);
Harald Welte6abf94e2010-05-18 10:35:06 +02001003 if (!pdp)
1004 return -1;
1005 pdp->sapi = act_req->req_llc_sapi;
1006 pdp->ti = transaction_id;
1007
Harald Welted193cb32010-05-17 22:58:03 +02001008 }
Harald Welte6463c072010-05-18 17:04:55 +02001009 return 0;
Harald Welte2720e732010-05-17 00:44:57 +02001010#else
Harald Welte6abf94e2010-05-18 10:35:06 +02001011 return gsm48_tx_gsm_act_pdp_acc(mmctx, transaction_id, act_req);
Harald Welte2720e732010-05-17 00:44:57 +02001012#endif
Harald Welte9b455bf2010-03-14 15:45:01 +08001013}
1014
1015/* Section 9.5.8: Deactivate PDP Context Request */
Harald Welte77289c22010-05-18 14:32:29 +02001016static int gsm48_rx_gsm_deact_pdp_req(struct sgsn_mm_ctx *mm, struct msgb *msg)
Harald Welte9b455bf2010-03-14 15:45:01 +08001017{
Harald Welte943c5bc2010-04-30 16:33:12 +02001018 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_gmmh(msg);
Harald Welte77289c22010-05-18 14:32:29 +02001019 uint8_t transaction_id = (gh->proto_discr >> 4);
1020 struct sgsn_pdp_ctx *pdp;
Harald Welte9b455bf2010-03-14 15:45:01 +08001021
Harald Welte2720e732010-05-17 00:44:57 +02001022 DEBUGP(DMM, "-> DEACTIVATE PDP CONTEXT REQ (cause: %s)\n",
Harald Welte9b455bf2010-03-14 15:45:01 +08001023 get_value_string(gsm_cause_names, gh->data[0]));
1024
Harald Welte77289c22010-05-18 14:32:29 +02001025 pdp = sgsn_pdp_ctx_by_tid(mm, transaction_id);
1026 if (!pdp) {
1027 LOGP(DMM, LOGL_NOTICE, "Deactivate PDP Context Request for "
1028 "non-existing PDP Context (IMSI=%s, TI=%u)\n",
1029 mm->imsi, transaction_id);
1030 return -EINVAL;
1031 }
1032
1033 return sgsn_delete_pdp_ctx(pdp);
Harald Welte9b455bf2010-03-14 15:45:01 +08001034}
1035
Harald Welted193cb32010-05-17 22:58:03 +02001036static int gsm48_rx_gsm_status(struct sgsn_mm_ctx *ctx, struct msgb *msg)
Harald Welte9b455bf2010-03-14 15:45:01 +08001037{
1038 struct gsm48_hdr *gh = msgb_l3(msg);
1039
Harald Welte2720e732010-05-17 00:44:57 +02001040 DEBUGP(DMM, "-> GPRS SM STATUS (cause: %s)\n",
Harald Welte9b455bf2010-03-14 15:45:01 +08001041 get_value_string(gsm_cause_names, gh->data[0]));
1042
1043 return 0;
1044}
1045
1046/* GPRS Session Management */
Harald Welted193cb32010-05-17 22:58:03 +02001047static int gsm0408_rcv_gsm(struct sgsn_mm_ctx *mmctx, struct msgb *msg)
Harald Welte9b455bf2010-03-14 15:45:01 +08001048{
Harald Welte943c5bc2010-04-30 16:33:12 +02001049 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_gmmh(msg);
Harald Welte9b455bf2010-03-14 15:45:01 +08001050 int rc;
1051
Harald Welted193cb32010-05-17 22:58:03 +02001052 if (!mmctx) {
1053 LOGP(DMM, LOGL_NOTICE, "Cannot handle SM for unknown MM CTX\n");
Harald Welteb12aa4b2010-05-30 20:28:22 +02001054 /* FIXME: return SM / MM STATUS */
Harald Welted193cb32010-05-17 22:58:03 +02001055 return -EINVAL;
1056 }
1057
Harald Welte9b455bf2010-03-14 15:45:01 +08001058 switch (gh->msg_type) {
1059 case GSM48_MT_GSM_ACT_PDP_REQ:
Harald Welted193cb32010-05-17 22:58:03 +02001060 rc = gsm48_rx_gsm_act_pdp_req(mmctx, msg);
Harald Welte9b455bf2010-03-14 15:45:01 +08001061 break;
1062 case GSM48_MT_GSM_DEACT_PDP_REQ:
Harald Welted193cb32010-05-17 22:58:03 +02001063 rc = gsm48_rx_gsm_deact_pdp_req(mmctx, msg);
Harald Welte77289c22010-05-18 14:32:29 +02001064 break;
Harald Welte9b455bf2010-03-14 15:45:01 +08001065 case GSM48_MT_GSM_STATUS:
Harald Welted193cb32010-05-17 22:58:03 +02001066 rc = gsm48_rx_gsm_status(mmctx, msg);
Harald Welte9b455bf2010-03-14 15:45:01 +08001067 break;
1068 case GSM48_MT_GSM_REQ_PDP_ACT_REJ:
1069 case GSM48_MT_GSM_ACT_AA_PDP_REQ:
1070 case GSM48_MT_GSM_DEACT_AA_PDP_REQ:
1071 DEBUGP(DMM, "Unimplemented GSM 04.08 GSM msg type 0x%02x\n",
1072 gh->msg_type);
Harald Welteb12aa4b2010-05-30 20:28:22 +02001073 /* FIXME: return SM / MM STATUS */
Harald Welte9b455bf2010-03-14 15:45:01 +08001074 break;
1075 default:
1076 DEBUGP(DMM, "Unknown GSM 04.08 GSM msg type 0x%02x\n",
1077 gh->msg_type);
Harald Welteb12aa4b2010-05-30 20:28:22 +02001078 /* FIXME: return SM / MM STATUS */
Harald Welte9b455bf2010-03-14 15:45:01 +08001079 break;
1080
1081 }
1082
1083 return rc;
1084}
1085
1086/* Main entry point for incoming 04.08 GPRS messages */
1087int gsm0408_gprs_rcvmsg(struct msgb *msg)
1088{
Harald Welte943c5bc2010-04-30 16:33:12 +02001089 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_gmmh(msg);
Harald Welteeaa614c2010-05-02 11:26:34 +02001090 uint8_t pdisc = gh->proto_discr & 0x0f;
Harald Welted193cb32010-05-17 22:58:03 +02001091 struct sgsn_mm_ctx *mmctx;
1092 struct gprs_ra_id ra_id;
Harald Welte9b455bf2010-03-14 15:45:01 +08001093 int rc = -EINVAL;
1094
Harald Welted193cb32010-05-17 22:58:03 +02001095 bssgp_parse_cell_id(&ra_id, msgb_bcid(msg));
1096 mmctx = sgsn_mm_ctx_by_tlli(msgb_tlli(msg), &ra_id);
Harald Welte8acd88f2010-05-18 10:57:45 +02001097 if (mmctx) {
Harald Welte6abf94e2010-05-18 10:35:06 +02001098 msgid2mmctx(mmctx, msg);
Harald Welte8acd88f2010-05-18 10:57:45 +02001099 rate_ctr_inc(&mmctx->ctrg->ctr[GMM_CTR_PKTS_SIG_IN]);
1100 }
Harald Welted193cb32010-05-17 22:58:03 +02001101
1102 /* MMCTX can be NULL */
1103
Harald Welte9b455bf2010-03-14 15:45:01 +08001104 switch (pdisc) {
1105 case GSM48_PDISC_MM_GPRS:
Harald Welted193cb32010-05-17 22:58:03 +02001106 rc = gsm0408_rcv_gmm(mmctx, msg);
Harald Welte9b455bf2010-03-14 15:45:01 +08001107 break;
1108 case GSM48_PDISC_SM_GPRS:
Harald Welted193cb32010-05-17 22:58:03 +02001109 rc = gsm0408_rcv_gsm(mmctx, msg);
Harald Welte9b455bf2010-03-14 15:45:01 +08001110 break;
1111 default:
1112 DEBUGP(DMM, "Unknown GSM 04.08 discriminator 0x%02x\n",
1113 pdisc);
Harald Welte6abf94e2010-05-18 10:35:06 +02001114 /* FIXME: return status message */
Harald Welte9b455bf2010-03-14 15:45:01 +08001115 break;
1116 }
1117
1118 return rc;
1119}