blob: 58c5f047aa0f588902f0b1f56a8f9796080c95e0 [file] [log] [blame]
Harald Welte9b455bf2010-03-14 15:45:01 +08001/* GSM Mobile Radio Interface Layer 3 messages on the A-bis interface
2 * 3GPP TS 04.08 version 7.21.0 Release 1998 / ETSI TS 100 940 V7.21.0 */
3
Harald Welte9f1f3ad2010-05-02 12:56:57 +02004/* (C) 2009-2010 by Harald Welte <laforge@gnumonks.org>
Harald Weltec2e8cc42010-05-31 20:23:38 +02005 * (C) 2010 by On-Waves
Harald Welte9b455bf2010-03-14 15:45:01 +08006 *
7 * All Rights Reserved
8 *
9 * This program is free software; you can redistribute it and/or modify
Harald Welte9af6ddf2011-01-01 15:25:50 +010010 * it under the terms of the GNU Affero General Public License as published by
11 * the Free Software Foundation; either version 3 of the License, or
Harald Welte9b455bf2010-03-14 15:45:01 +080012 * (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
Harald Welte9af6ddf2011-01-01 15:25:50 +010017 * GNU Affero General Public License for more details.
Harald Welte9b455bf2010-03-14 15:45:01 +080018 *
Harald Welte9af6ddf2011-01-01 15:25:50 +010019 * You should have received a copy of the GNU Affero General Public License
20 * along with this program. If not, see <http://www.gnu.org/licenses/>.
Harald Welte9b455bf2010-03-14 15:45:01 +080021 *
22 */
23
24#include <stdio.h>
25#include <stdlib.h>
26#include <string.h>
Harald Welteeaa614c2010-05-02 11:26:34 +020027#include <stdint.h>
Harald Welte9b455bf2010-03-14 15:45:01 +080028#include <errno.h>
29
30#include <netinet/in.h>
Harald Welte421cba42010-05-02 23:11:50 +020031#include <arpa/inet.h>
Harald Welte9b455bf2010-03-14 15:45:01 +080032
33#include <openbsc/db.h>
Pablo Neira Ayuso136f4532011-03-22 16:47:59 +010034#include <osmocom/core/msgb.h>
Harald Welted36ff762011-03-23 18:26:56 +010035#include <osmocom/gsm/tlv.h>
36#include <osmocom/gsm/gsm_utils.h>
Pablo Neira Ayuso136f4532011-03-22 16:47:59 +010037#include <osmocom/core/signal.h>
38#include <osmocom/core/talloc.h>
39#include <osmocom/core/rate_ctr.h>
Harald Welted6057092010-05-02 12:57:45 +020040
Harald Welteea34a4e2012-06-16 14:59:56 +080041#include <osmocom/gprs/gprs_bssgp.h>
42
Harald Welte9b455bf2010-03-14 15:45:01 +080043#include <openbsc/debug.h>
44#include <openbsc/gsm_data.h>
Harald Welte9b455bf2010-03-14 15:45:01 +080045#include <openbsc/gsm_subscriber.h>
46#include <openbsc/gsm_04_08.h>
47#include <openbsc/gsm_04_08_gprs.h>
48#include <openbsc/paging.h>
Harald Welte9b455bf2010-03-14 15:45:01 +080049#include <openbsc/transaction.h>
50#include <openbsc/gprs_llc.h>
51#include <openbsc/gprs_sgsn.h>
Harald Welte6abf94e2010-05-18 10:35:06 +020052#include <openbsc/gprs_gmm.h>
Harald Welted193cb32010-05-17 22:58:03 +020053#include <openbsc/sgsn.h>
54
Harald Welte6abf94e2010-05-18 10:35:06 +020055#include <pdp.h>
56
Harald Weltec2e8cc42010-05-31 20:23:38 +020057#define PTMSI_ALLOC
58
Harald Welte649e1ff2013-07-21 17:41:46 +080059/* Section 11.2.2 / Table 11.4 MM timers netwokr side */
Harald Weltec2e8cc42010-05-31 20:23:38 +020060#define GSM0408_T3322_SECS 6 /* DETACH_REQ -> DETACH_ACC */
61#define GSM0408_T3350_SECS 6 /* waiting for ATT/RAU/TMSI COMPL */
62#define GSM0408_T3360_SECS 6 /* waiting for AUTH/CIPH RESP */
63#define GSM0408_T3370_SECS 6 /* waiting for ID RESP */
64
Harald Welte649e1ff2013-07-21 17:41:46 +080065/* Section 11.2.2 / Table 11.4a MM timers netwokr side */
Harald Weltec2e8cc42010-05-31 20:23:38 +020066#define GSM0408_T3313_SECS 30 /* waiting for paging response */
67#define GSM0408_T3314_SECS 44 /* force to STBY on expiry */
68#define GSM0408_T3316_SECS 44
69
Harald Weltea9b473a2010-12-24 21:13:26 +010070/* Section 11.3 / Table 11.2d Timers of Session Management - network side */
71#define GSM0408_T3385_SECS 8 /* wait for ACT PDP CTX REQ */
72#define GSM0408_T3386_SECS 8 /* wait for MODIFY PDP CTX ACK */
73#define GSM0408_T3395_SECS 8 /* wait for DEACT PDP CTX ACK */
74#define GSM0408_T3397_SECS 8 /* wait for DEACT AA PDP CTX ACK */
75
Harald Welted193cb32010-05-17 22:58:03 +020076extern struct sgsn_instance *sgsn;
Harald Welte9b455bf2010-03-14 15:45:01 +080077
Harald Welte2720e732010-05-17 00:44:57 +020078/* Protocol related stuff, should go into libosmocore */
79
Harald Welte9b455bf2010-03-14 15:45:01 +080080/* 10.5.5.14 GPRS MM Cause / Table 10.5.147 */
Harald Welte2720e732010-05-17 00:44:57 +020081const struct value_string gmm_cause_names[] = {
Harald Weltefd29a1f2010-07-01 12:26:59 +020082 { GMM_CAUSE_IMSI_UNKNOWN, "IMSI unknown in HLR" },
83 { GMM_CAUSE_ILLEGAL_MS, "Illegal MS" },
84 { GMM_CAUSE_ILLEGAL_ME, "Illegal ME" },
85 { GMM_CAUSE_GPRS_NOTALLOWED, "GPRS services not allowed" },
86 { GMM_CAUSE_GPRS_OTHER_NOTALLOWED,
87 "GPRS services and non-GPRS services not allowed" },
88 { GMM_CAUSE_MS_ID_NOT_DERIVED,
89 "MS identity cannot be derived by the network" },
90 { GMM_CAUSE_IMPL_DETACHED, "Implicitly detached" },
91 { GMM_CAUSE_PLMN_NOTALLOWED, "PLMN not allowed" },
92 { GMM_CAUSE_LA_NOTALLOWED, "Location Area not allowed" },
93 { GMM_CAUSE_ROAMING_NOTALLOWED,
94 "Roaming not allowed in this location area" },
95 { GMM_CAUSE_NO_GPRS_PLMN,
96 "GPRS services not allowed in this PLMN" },
97 { GMM_CAUSE_MSC_TEMP_NOTREACH, "MSC temporarily not reachable" },
98 { GMM_CAUSE_NET_FAIL, "Network failure" },
99 { GMM_CAUSE_CONGESTION, "Congestion" },
100 { GMM_CAUSE_SEM_INCORR_MSG, "Semantically incorrect message" },
Harald Welte9b455bf2010-03-14 15:45:01 +0800101 { GMM_CAUSE_INV_MAND_INFO, "Invalid mandatory information" },
102 { GMM_CAUSE_MSGT_NOTEXIST_NOTIMPL,
103 "Message type non-existant or not implemented" },
104 { GMM_CAUSE_MSGT_INCOMP_P_STATE,
105 "Message type not compatible with protocol state" },
106 { GMM_CAUSE_IE_NOTEXIST_NOTIMPL,
107 "Information element non-existent or not implemented" },
Harald Weltefd29a1f2010-07-01 12:26:59 +0200108 { GMM_CAUSE_COND_IE_ERR, "Conditional IE error" },
Harald Welte9b455bf2010-03-14 15:45:01 +0800109 { GMM_CAUSE_MSG_INCOMP_P_STATE,
110 "Message not compatible with protocol state " },
Harald Weltefd29a1f2010-07-01 12:26:59 +0200111 { GMM_CAUSE_PROTO_ERR_UNSPEC, "Protocol error, unspecified" },
Harald Welte9b455bf2010-03-14 15:45:01 +0800112 { 0, NULL }
113};
114
115/* 10.5.6.6 SM Cause / Table 10.5.157 */
Harald Welte2720e732010-05-17 00:44:57 +0200116const struct value_string gsm_cause_names[] = {
Harald Welte9b455bf2010-03-14 15:45:01 +0800117 { GSM_CAUSE_INSUFF_RSRC, "Insufficient resources" },
118 { GSM_CAUSE_MISSING_APN, "Missing or unknown APN" },
119 { GSM_CAUSE_UNKNOWN_PDP, "Unknown PDP address or PDP type" },
120 { GSM_CAUSE_AUTH_FAILED, "User Authentication failed" },
121 { GSM_CAUSE_ACT_REJ_GGSN, "Activation rejected by GGSN" },
122 { GSM_CAUSE_ACT_REJ_UNSPEC, "Activation rejected, unspecified" },
123 { GSM_CAUSE_SERV_OPT_NOTSUPP, "Service option not supported" },
124 { GSM_CAUSE_REQ_SERV_OPT_NOTSUB,
125 "Requested service option not subscribed" },
126 { GSM_CAUSE_SERV_OPT_TEMP_OOO,
127 "Service option temporarily out of order" },
128 { GSM_CAUSE_NSAPI_IN_USE, "NSAPI already used" },
129 { GSM_CAUSE_DEACT_REGULAR, "Regular deactivation" },
130 { GSM_CAUSE_QOS_NOT_ACCEPTED, "QoS not accepted" },
131 { GSM_CAUSE_NET_FAIL, "Network Failure" },
132 { GSM_CAUSE_REACT_RQD, "Reactivation required" },
133 { GSM_CAUSE_FEATURE_NOTSUPP, "Feature not supported " },
134 { GSM_CAUSE_INVALID_TRANS_ID, "Invalid transaction identifier" },
135 { GSM_CAUSE_SEM_INCORR_MSG, "Semantically incorrect message" },
136 { GSM_CAUSE_INV_MAND_INFO, "Invalid mandatory information" },
137 { GSM_CAUSE_MSGT_NOTEXIST_NOTIMPL,
138 "Message type non-existant or not implemented" },
139 { GSM_CAUSE_MSGT_INCOMP_P_STATE,
140 "Message type not compatible with protocol state" },
141 { GSM_CAUSE_IE_NOTEXIST_NOTIMPL,
142 "Information element non-existent or not implemented" },
143 { GSM_CAUSE_COND_IE_ERR, "Conditional IE error" },
144 { GSM_CAUSE_MSG_INCOMP_P_STATE,
145 "Message not compatible with protocol state " },
146 { GSM_CAUSE_PROTO_ERR_UNSPEC, "Protocol error, unspecified" },
147 { 0, NULL }
148};
149
Harald Welte2720e732010-05-17 00:44:57 +0200150/* 10.5.5.2 */
151const struct value_string gprs_att_t_strs[] = {
152 { GPRS_ATT_T_ATTACH, "GPRS attach" },
153 { GPRS_ATT_T_ATT_WHILE_IMSI, "GPRS attach while IMSI attached" },
154 { GPRS_ATT_T_COMBINED, "Combined GPRS/IMSI attach" },
155 { 0, NULL }
156};
Harald Welte9b455bf2010-03-14 15:45:01 +0800157
Harald Welte2720e732010-05-17 00:44:57 +0200158const struct value_string gprs_upd_t_strs[] = {
159 { GPRS_UPD_T_RA, "RA updating" },
160 { GPRS_UPD_T_RA_LA, "combined RA/LA updating" },
161 { GPRS_UPD_T_RA_LA_IMSI_ATT, "combined RA/LA updating + IMSI attach" },
162 { GPRS_UPD_T_PERIODIC, "periodic updating" },
163 { 0, NULL }
164};
165
166/* 10.5.5.5 */
167const struct value_string gprs_det_t_mo_strs[] = {
168 { GPRS_DET_T_MO_GPRS, "GPRS detach" },
169 { GPRS_DET_T_MO_IMSI, "IMSI detach" },
170 { GPRS_DET_T_MO_COMBINED, "Combined GPRS/IMSI detach" },
171 { 0, NULL }
172};
173
Harald Welte588d44e2010-06-09 10:28:29 +0200174static const struct tlv_definition gsm48_gmm_att_tlvdef = {
175 .def = {
Harald Welte4b6ac1e2010-07-03 11:09:06 +0200176 [GSM48_IE_GMM_CIPH_CKSN] = { TLV_TYPE_FIXED, 1 },
Harald Welte588d44e2010-06-09 10:28:29 +0200177 [GSM48_IE_GMM_TIMER_READY] = { TLV_TYPE_TV, 1 },
178 [GSM48_IE_GMM_ALLOC_PTMSI] = { TLV_TYPE_TLV, 0 },
Harald Welte4b6ac1e2010-07-03 11:09:06 +0200179 [GSM48_IE_GMM_PTMSI_SIG] = { TLV_TYPE_FIXED, 3 },
180 [GSM48_IE_GMM_AUTH_RAND] = { TLV_TYPE_FIXED, 16 },
181 [GSM48_IE_GMM_AUTH_SRES] = { TLV_TYPE_FIXED, 4 },
Harald Welte588d44e2010-06-09 10:28:29 +0200182 [GSM48_IE_GMM_IMEISV] = { TLV_TYPE_TLV, 0 },
Harald Welte4b6ac1e2010-07-03 11:09:06 +0200183 [GSM48_IE_GMM_DRX_PARAM] = { TLV_TYPE_FIXED, 2 },
Harald Welte588d44e2010-06-09 10:28:29 +0200184 [GSM48_IE_GMM_MS_NET_CAPA] = { TLV_TYPE_TLV, 0 },
185 [GSM48_IE_GMM_PDP_CTX_STATUS] = { TLV_TYPE_TLV, 0 },
186 [GSM48_IE_GMM_PS_LCS_CAPA] = { TLV_TYPE_TLV, 0 },
187 [GSM48_IE_GMM_GMM_MBMS_CTX_ST] = { TLV_TYPE_TLV, 0 },
188 },
189};
190
191static const struct tlv_definition gsm48_sm_att_tlvdef = {
192 .def = {
193 [GSM48_IE_GSM_APN] = { TLV_TYPE_TLV, 0 },
194 [GSM48_IE_GSM_PROTO_CONF_OPT] = { TLV_TYPE_TLV, 0 },
195 [GSM48_IE_GSM_PDP_ADDR] = { TLV_TYPE_TLV, 0 },
196 [GSM48_IE_GSM_AA_TMR] = { TLV_TYPE_TV, 1 },
197 [GSM48_IE_GSM_NAME_FULL] = { TLV_TYPE_TLV, 0 },
198 [GSM48_IE_GSM_NAME_SHORT] = { TLV_TYPE_TLV, 0 },
Harald Welte4b6ac1e2010-07-03 11:09:06 +0200199 [GSM48_IE_GSM_TIMEZONE] = { TLV_TYPE_FIXED, 1 },
200 [GSM48_IE_GSM_UTC_AND_TZ] = { TLV_TYPE_FIXED, 7 },
Harald Welte588d44e2010-06-09 10:28:29 +0200201 [GSM48_IE_GSM_LSA_ID] = { TLV_TYPE_TLV, 0 },
202 },
203};
204
Harald Welte2720e732010-05-17 00:44:57 +0200205/* Our implementation, should be kept in SGSN */
Harald Welte9b455bf2010-03-14 15:45:01 +0800206
Harald Weltec2e8cc42010-05-31 20:23:38 +0200207static void mmctx_timer_cb(void *_mm);
208
209static void mmctx_timer_start(struct sgsn_mm_ctx *mm, unsigned int T,
210 unsigned int seconds)
211{
Pablo Neira Ayusobf540cb2011-05-06 12:11:06 +0200212 if (osmo_timer_pending(&mm->timer))
Harald Weltec2e8cc42010-05-31 20:23:38 +0200213 LOGP(DMM, LOGL_ERROR, "Starting MM timer %u while old "
214 "timer %u pending\n", T, mm->T);
215 mm->T = T;
216 mm->num_T_exp = 0;
217
218 /* FIXME: we should do this only once ? */
219 mm->timer.data = mm;
220 mm->timer.cb = &mmctx_timer_cb;
221
Pablo Neira Ayusobf540cb2011-05-06 12:11:06 +0200222 osmo_timer_schedule(&mm->timer, seconds, 0);
Harald Weltec2e8cc42010-05-31 20:23:38 +0200223}
224
225static void mmctx_timer_stop(struct sgsn_mm_ctx *mm, unsigned int T)
226{
227 if (mm->T != T)
228 LOGP(DMM, LOGL_ERROR, "Stopping MM timer %u but "
229 "%u is running\n", T, mm->T);
Pablo Neira Ayusobf540cb2011-05-06 12:11:06 +0200230 osmo_timer_del(&mm->timer);
Harald Weltec2e8cc42010-05-31 20:23:38 +0200231}
232
Harald Welte9b455bf2010-03-14 15:45:01 +0800233/* Send a message through the underlying layer */
Harald Welte8acd88f2010-05-18 10:57:45 +0200234static int gsm48_gmm_sendmsg(struct msgb *msg, int command,
Holger Hans Peter Freyther2b174542011-10-14 23:31:34 +0200235 struct sgsn_mm_ctx *mm)
Harald Welte9b455bf2010-03-14 15:45:01 +0800236{
Harald Welte8acd88f2010-05-18 10:57:45 +0200237 if (mm)
238 rate_ctr_inc(&mm->ctrg->ctr[GMM_CTR_PKTS_SIG_OUT]);
239
Harald Welte11d7c102010-05-02 11:54:55 +0200240 /* caller needs to provide TLLI, BVCI and NSEI */
Harald Welte56a01452010-05-31 22:12:30 +0200241 return gprs_llc_tx_ui(msg, GPRS_SAPI_GMM, command, mm);
Harald Welte9b455bf2010-03-14 15:45:01 +0800242}
243
Harald Welte11d7c102010-05-02 11:54:55 +0200244/* copy identifiers from old message to new message, this
245 * is required so lower layers can route it correctly */
246static void gmm_copy_id(struct msgb *msg, const struct msgb *old)
247{
248 msgb_tlli(msg) = msgb_tlli(old);
249 msgb_bvci(msg) = msgb_bvci(old);
250 msgb_nsei(msg) = msgb_nsei(old);
251}
252
Harald Welte6abf94e2010-05-18 10:35:06 +0200253/* Store BVCI/NSEI in MM context */
254static void msgid2mmctx(struct sgsn_mm_ctx *mm, const struct msgb *msg)
255{
256 mm->bvci = msgb_bvci(msg);
257 mm->nsei = msgb_nsei(msg);
258}
259
260/* Store BVCI/NSEI in MM context */
261static void mmctx2msgid(struct msgb *msg, const struct sgsn_mm_ctx *mm)
262{
263 msgb_tlli(msg) = mm->tlli;
264 msgb_bvci(msg) = mm->bvci;
265 msgb_nsei(msg) = mm->nsei;
266}
267
Harald Weltef54e7e22010-06-09 10:51:23 +0200268/* Chapter 9.4.18 */
269static int _tx_status(struct msgb *msg, uint8_t cause,
270 struct sgsn_mm_ctx *mmctx, int sm)
271{
272 struct gsm48_hdr *gh;
273
274 /* MMCTX might be NULL! */
275
276 DEBUGP(DMM, "<- GPRS MM STATUS (cause: %s)\n",
277 get_value_string(gmm_cause_names, cause));
278
279 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh) + 1);
280 if (sm) {
281 gh->proto_discr = GSM48_PDISC_SM_GPRS;
282 gh->msg_type = GSM48_MT_GSM_STATUS;
283 } else {
284 gh->proto_discr = GSM48_PDISC_MM_GPRS;
285 gh->msg_type = GSM48_MT_GMM_STATUS;
286 }
287 gh->data[0] = cause;
288
289 return gsm48_gmm_sendmsg(msg, 0, mmctx);
290}
291static int gsm48_tx_gmm_status(struct sgsn_mm_ctx *mmctx, uint8_t cause)
292{
293 struct msgb *msg = gsm48_msgb_alloc();
294
295 mmctx2msgid(msg, mmctx);
296 return _tx_status(msg, cause, mmctx, 0);
297};
298static int gsm48_tx_gmm_status_oldmsg(struct msgb *oldmsg, uint8_t cause)
299{
300 struct msgb *msg = gsm48_msgb_alloc();
301
302 gmm_copy_id(msg, oldmsg);
303 return _tx_status(msg, cause, NULL, 0);
304}
305static int gsm48_tx_sm_status(struct sgsn_mm_ctx *mmctx, uint8_t cause)
306{
307 struct msgb *msg = gsm48_msgb_alloc();
308
309 mmctx2msgid(msg, mmctx);
310 return _tx_status(msg, cause, mmctx, 1);
311};
312static int gsm48_tx_sm_status_oldmsg(struct msgb *oldmsg, uint8_t cause)
313{
314 struct msgb *msg = gsm48_msgb_alloc();
315
316 gmm_copy_id(msg, oldmsg);
317 return _tx_status(msg, cause, NULL, 1);
318}
319
320
Harald Welte86fda902010-05-03 10:54:35 +0200321static struct gsm48_qos default_qos = {
322 .delay_class = 4, /* best effort */
323 .reliab_class = GSM48_QOS_RC_LLC_UN_RLC_ACK_DATA_PROT,
324 .peak_tput = GSM48_QOS_PEAK_TPUT_32000bps,
325 .preced_class = GSM48_QOS_PC_NORMAL,
326 .mean_tput = GSM48_QOS_MEAN_TPUT_BEST_EFFORT,
327 .traf_class = GSM48_QOS_TC_INTERACTIVE,
328 .deliv_order = GSM48_QOS_DO_UNORDERED,
329 .deliv_err_sdu = GSM48_QOS_ERRSDU_YES,
330 .max_sdu_size = GSM48_QOS_MAXSDU_1520,
331 .max_bitrate_up = GSM48_QOS_MBRATE_63k,
332 .max_bitrate_down = GSM48_QOS_MBRATE_63k,
333 .resid_ber = GSM48_QOS_RBER_5e_2,
334 .sdu_err_ratio = GSM48_QOS_SERR_1e_2,
335 .handling_prio = 3,
336 .xfer_delay = 0x10, /* 200ms */
337 .guar_bitrate_up = GSM48_QOS_MBRATE_0k,
338 .guar_bitrate_down = GSM48_QOS_MBRATE_0k,
339 .sig_ind = 0, /* not optimised for signalling */
340 .max_bitrate_down_ext = 0, /* use octet 9 */
341 .guar_bitrate_down_ext = 0, /* use octet 13 */
342};
343
Harald Welte9b455bf2010-03-14 15:45:01 +0800344/* Chapter 9.4.2: Attach accept */
Harald Welte6463c072010-05-18 17:04:55 +0200345static int gsm48_tx_gmm_att_ack(struct sgsn_mm_ctx *mm)
Harald Welte9b455bf2010-03-14 15:45:01 +0800346{
347 struct msgb *msg = gsm48_msgb_alloc();
348 struct gsm48_hdr *gh;
349 struct gsm48_attach_ack *aa;
Holger Hans Peter Freyther1768a572014-04-04 12:40:34 +0200350 uint8_t *mid;
351#if 0
352 uint8_t *ptsig;
353#endif
Harald Welte9b455bf2010-03-14 15:45:01 +0800354
Harald Weltec2e8cc42010-05-31 20:23:38 +0200355 DEBUGP(DMM, "<- GPRS ATTACH ACCEPT (new P-TMSI=0x%08x)\n", mm->p_tmsi);
Harald Welte9b455bf2010-03-14 15:45:01 +0800356
Harald Welte6463c072010-05-18 17:04:55 +0200357 mmctx2msgid(msg, mm);
Harald Welte9b455bf2010-03-14 15:45:01 +0800358
359 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
360 gh->proto_discr = GSM48_PDISC_MM_GPRS;
361 gh->msg_type = GSM48_MT_GMM_ATTACH_ACK;
362
363 aa = (struct gsm48_attach_ack *) msgb_put(msg, sizeof(*aa));
364 aa->force_stby = 0; /* not indicated */
365 aa->att_result = 1; /* GPRS only */
366 aa->ra_upd_timer = GPRS_TMR_MINUTE | 10;
367 aa->radio_prio = 4; /* lowest */
Harald Welte6463c072010-05-18 17:04:55 +0200368 gsm48_construct_ra(aa->ra_id.digits, &mm->ra);
Harald Welte9b455bf2010-03-14 15:45:01 +0800369
Harald Welteab1d5622010-05-18 19:58:38 +0200370#if 0
Harald Welte6463c072010-05-18 17:04:55 +0200371 /* Optional: P-TMSI signature */
372 msgb_v_put(msg, GSM48_IE_GMM_PTMSI_SIG);
373 ptsig = msgb_put(msg, 3);
374 ptsig[0] = mm->p_tmsi_sig >> 16;
375 ptsig[1] = mm->p_tmsi_sig >> 8;
376 ptsig[2] = mm->p_tmsi_sig & 0xff;
377
378 /* Optional: Negotiated Ready timer value */
Harald Weltec2e8cc42010-05-31 20:23:38 +0200379#endif
Harald Welte6463c072010-05-18 17:04:55 +0200380
Harald Weltec2e8cc42010-05-31 20:23:38 +0200381#ifdef PTMSI_ALLOC
Harald Welte6463c072010-05-18 17:04:55 +0200382 /* Optional: Allocated P-TMSI */
Harald Welte6463c072010-05-18 17:04:55 +0200383 mid = msgb_put(msg, GSM48_MID_TMSI_LEN);
384 gsm48_generate_mid_from_tmsi(mid, mm->p_tmsi);
Harald Welteab1d5622010-05-18 19:58:38 +0200385 mid[0] = GSM48_IE_GMM_ALLOC_PTMSI;
386#endif
Harald Weltec2e8cc42010-05-31 20:23:38 +0200387
Harald Welte6463c072010-05-18 17:04:55 +0200388 /* Optional: MS-identity (combined attach) */
389 /* Optional: GMM cause (partial attach result for combined attach) */
390
Harald Welte56a01452010-05-31 22:12:30 +0200391 return gsm48_gmm_sendmsg(msg, 0, mm);
Harald Welte9b455bf2010-03-14 15:45:01 +0800392}
393
394/* Chapter 9.4.5: Attach reject */
Harald Welte6463c072010-05-18 17:04:55 +0200395static int _tx_gmm_att_rej(struct msgb *msg, uint8_t gmm_cause)
Harald Welte9b455bf2010-03-14 15:45:01 +0800396{
Harald Welte9b455bf2010-03-14 15:45:01 +0800397 struct gsm48_hdr *gh;
398
399 DEBUGP(DMM, "<- GPRS ATTACH REJECT\n");
400
Harald Welte9b455bf2010-03-14 15:45:01 +0800401 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh) + 1);
402 gh->proto_discr = GSM48_PDISC_MM_GPRS;
403 gh->msg_type = GSM48_MT_GMM_ATTACH_REJ;
404 gh->data[0] = gmm_cause;
405
Harald Welte8acd88f2010-05-18 10:57:45 +0200406 return gsm48_gmm_sendmsg(msg, 0, NULL);
Harald Welte9b455bf2010-03-14 15:45:01 +0800407}
Harald Welte6463c072010-05-18 17:04:55 +0200408static int gsm48_tx_gmm_att_rej_oldmsg(const struct msgb *old_msg,
409 uint8_t gmm_cause)
410{
411 struct msgb *msg = gsm48_msgb_alloc();
412 gmm_copy_id(msg, old_msg);
413 return _tx_gmm_att_rej(msg, gmm_cause);
414}
415static int gsm48_tx_gmm_att_rej(struct sgsn_mm_ctx *mm,
416 uint8_t gmm_cause)
417{
418 struct msgb *msg = gsm48_msgb_alloc();
419 mmctx2msgid(msg, mm);
420 return _tx_gmm_att_rej(msg, gmm_cause);
421}
Harald Welte9b455bf2010-03-14 15:45:01 +0800422
Harald Welte2720e732010-05-17 00:44:57 +0200423/* Chapter 9.4.6.2 Detach accept */
Harald Weltecd4dd4d2010-05-18 17:20:49 +0200424static int gsm48_tx_gmm_det_ack(struct sgsn_mm_ctx *mm, uint8_t force_stby)
Harald Welte2720e732010-05-17 00:44:57 +0200425{
426 struct msgb *msg = gsm48_msgb_alloc();
427 struct gsm48_hdr *gh;
428
429 DEBUGP(DMM, "<- GPRS DETACH ACCEPT\n");
430
Harald Welte6463c072010-05-18 17:04:55 +0200431 mmctx2msgid(msg, mm);
432
Harald Welte2720e732010-05-17 00:44:57 +0200433 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh) + 1);
434 gh->proto_discr = GSM48_PDISC_MM_GPRS;
435 gh->msg_type = GSM48_MT_GMM_DETACH_ACK;
436 gh->data[0] = force_stby;
437
Harald Welte56a01452010-05-31 22:12:30 +0200438 return gsm48_gmm_sendmsg(msg, 0, mm);
Harald Welte2720e732010-05-17 00:44:57 +0200439}
440
Harald Welte9b455bf2010-03-14 15:45:01 +0800441/* Transmit Chapter 9.4.12 Identity Request */
Harald Welte6463c072010-05-18 17:04:55 +0200442static int gsm48_tx_gmm_id_req(struct sgsn_mm_ctx *mm, uint8_t id_type)
Harald Welte9b455bf2010-03-14 15:45:01 +0800443{
444 struct msgb *msg = gsm48_msgb_alloc();
445 struct gsm48_hdr *gh;
446
Harald Weltedce12552010-05-31 22:31:04 +0200447 DEBUGP(DMM, "<- GPRS IDENTITY REQUEST: mi_type=%02x\n", id_type);
Harald Welte9b455bf2010-03-14 15:45:01 +0800448
Harald Welte6463c072010-05-18 17:04:55 +0200449 mmctx2msgid(msg, mm);
Harald Welte9b455bf2010-03-14 15:45:01 +0800450
451 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh) + 1);
452 gh->proto_discr = GSM48_PDISC_MM_GPRS;
453 gh->msg_type = GSM48_MT_GMM_ID_REQ;
454 /* 10.5.5.9 ID type 2 + identity type and 10.5.5.7 'force to standby' IE */
455 gh->data[0] = id_type & 0xf;
456
Harald Weltedce12552010-05-31 22:31:04 +0200457 return gsm48_gmm_sendmsg(msg, 1, mm);
Harald Welte9b455bf2010-03-14 15:45:01 +0800458}
459
Holger Hans Peter Freyther1768a572014-04-04 12:40:34 +0200460#if 0
Harald Welte4b6ac1e2010-07-03 11:09:06 +0200461/* Section 9.4.9: Authentication and Ciphering Request */
462static int gsm48_tx_gmm_auth_ciph_req(struct sgsn_mm_ctx *mm, uint8_t *rand,
463 uint8_t key_seq, uint8_t algo)
464{
465 struct msgb *msg = gsm48_msgb_alloc();
466 struct gsm48_hdr *gh;
467 struct gsm48_auth_ciph_req *acreq;
468 uint8_t *m_rand, *m_cksn;
469
470 DEBUGP(DMM, "<- GPRS AUTH AND CIPHERING REQ (rand = %s)\n",
Pablo Neira Ayusoc0d17f22011-05-07 12:12:48 +0200471 osmo_hexdump(rand, 16));
Harald Welte4b6ac1e2010-07-03 11:09:06 +0200472
473 mmctx2msgid(msg, mm);
474
475 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
476 gh->proto_discr = GSM48_PDISC_MM_GPRS;
477 gh->msg_type = GSM48_MT_GMM_AUTH_CIPH_REQ;
478
479 acreq = (struct gsm48_auth_ciph_req *) msgb_put(msg, sizeof(*acreq));
480 acreq->ciph_alg = algo & 0xf;
481 acreq->imeisv_req = 0x1;
482 acreq->force_stby = 0x0;
483 acreq->ac_ref_nr = 0x0; /* FIXME: increment this? */
484
485 /* Only if authentication is requested we need to set RAND + CKSN */
486 if (rand) {
487 m_rand = msgb_put(msg, 16+1);
488 m_rand[0] = GSM48_IE_GMM_AUTH_RAND;
489 memcpy(m_rand+1, rand, 16);
490
491 m_cksn = msgb_put(msg, 1+1);
492 m_cksn[0] = GSM48_IE_GMM_CIPH_CKSN;
493 m_cksn[1] = key_seq;
494 }
495
496 /* Start T3360 */
497 mmctx_timer_start(mm, 3360, GSM0408_T3360_SECS);
498
499 /* FIXME: make sure we don't send any other messages to the MS */
500
501 return gsm48_gmm_sendmsg(msg, 1, mm);
502}
503
504/* Section 9.4.11: Authentication and Ciphering Reject */
505static int gsm48_tx_gmm_auth_ciph_rej(struct sgsn_mm_ctx *mm)
506{
507 struct msgb *msg = gsm48_msgb_alloc();
508 struct gsm48_hdr *gh;
509
510 DEBUGP(DMM, "<- GPRS AUTH AND CIPH REJECT\n");
511
512 mmctx2msgid(msg, mm);
513
514 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
515 gh->proto_discr = GSM48_PDISC_MM_GPRS;
516 gh->msg_type = GSM48_MT_GMM_AUTH_CIPH_REJ;
517
518 return gsm48_gmm_sendmsg(msg, 0, mm);
519}
Holger Hans Peter Freyther1768a572014-04-04 12:40:34 +0200520#endif
Harald Welte4b6ac1e2010-07-03 11:09:06 +0200521
522/* Section 9.4.10: Authentication and Ciphering Response */
523static int gsm48_rx_gmm_auth_ciph_resp(struct sgsn_mm_ctx *ctx,
524 struct msgb *msg)
525{
526 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_gmmh(msg);
527 struct gsm48_auth_ciph_resp *acr = (struct gsm48_auth_ciph_resp *)gh->data;
528 struct tlv_parsed tp;
Harald Welte4b6ac1e2010-07-03 11:09:06 +0200529
530 /* FIXME: Stop T3360 */
531
Holger Hans Peter Freyther1768a572014-04-04 12:40:34 +0200532 tlv_parse(&tp, &gsm48_gmm_att_tlvdef, acr->data,
Harald Welte4b6ac1e2010-07-03 11:09:06 +0200533 (msg->data + msg->len) - acr->data, 0, 0);
534
535 /* FIXME: compare ac_ref? */
536
537 if (!TLVP_PRESENT(&tp, GSM48_IE_GMM_AUTH_SRES) ||
538 !TLVP_PRESENT(&tp, GSM48_IE_GMM_IMEISV)) {
539 /* FIXME: missing mandatory IE */
540 }
541
542 /* FIXME: compare SRES with what we expected */
543 /* FIXME: enable LLC cipheirng */
544 return 0;
545}
546
Harald Welte9b455bf2010-03-14 15:45:01 +0800547/* Check if we can already authorize a subscriber */
Harald Weltec2e8cc42010-05-31 20:23:38 +0200548static int gsm48_gmm_authorize(struct sgsn_mm_ctx *ctx,
549 enum gprs_t3350_mode t3350_mode)
Harald Welte9b455bf2010-03-14 15:45:01 +0800550{
551 if (strlen(ctx->imei) && strlen(ctx->imsi)) {
Harald Weltec2e8cc42010-05-31 20:23:38 +0200552#ifdef PTMSI_ALLOC
553 /* Start T3350 and re-transmit up to 5 times until ATTACH COMPLETE */
554 ctx->t3350_mode = t3350_mode;
555 mmctx_timer_start(ctx, 3350, GSM0408_T3350_SECS);
556#endif
Harald Welte9b455bf2010-03-14 15:45:01 +0800557 ctx->mm_state = GMM_REGISTERED_NORMAL;
Harald Welte6463c072010-05-18 17:04:55 +0200558 return gsm48_tx_gmm_att_ack(ctx);
Harald Welte9b455bf2010-03-14 15:45:01 +0800559 }
Harald Weltec2e8cc42010-05-31 20:23:38 +0200560 if (!strlen(ctx->imei)) {
561 ctx->mm_state = GMM_COMMON_PROC_INIT;
562 ctx->t3370_id_type = GSM_MI_TYPE_IMEI;
563 mmctx_timer_start(ctx, 3370, GSM0408_T3370_SECS);
Harald Welte6463c072010-05-18 17:04:55 +0200564 return gsm48_tx_gmm_id_req(ctx, GSM_MI_TYPE_IMEI);
Harald Weltec2e8cc42010-05-31 20:23:38 +0200565 }
Harald Welte9b455bf2010-03-14 15:45:01 +0800566
Harald Weltec2e8cc42010-05-31 20:23:38 +0200567 if (!strlen(ctx->imsi)) {
568 ctx->mm_state = GMM_COMMON_PROC_INIT;
569 ctx->t3370_id_type = GSM_MI_TYPE_IMSI;
570 mmctx_timer_start(ctx, 3370, GSM0408_T3370_SECS);
Harald Welte6463c072010-05-18 17:04:55 +0200571 return gsm48_tx_gmm_id_req(ctx, GSM_MI_TYPE_IMSI);
Harald Weltec2e8cc42010-05-31 20:23:38 +0200572 }
Harald Welte9b455bf2010-03-14 15:45:01 +0800573
574 return 0;
575}
576
577/* Parse Chapter 9.4.13 Identity Response */
Harald Welted193cb32010-05-17 22:58:03 +0200578static int gsm48_rx_gmm_id_resp(struct sgsn_mm_ctx *ctx, struct msgb *msg)
Harald Welte9b455bf2010-03-14 15:45:01 +0800579{
Harald Welte943c5bc2010-04-30 16:33:12 +0200580 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_gmmh(msg);
Harald Welteeaa614c2010-05-02 11:26:34 +0200581 uint8_t mi_type = gh->data[1] & GSM_MI_TYPE_MASK;
Harald Welte9b455bf2010-03-14 15:45:01 +0800582 char mi_string[GSM48_MI_SIZE];
Harald Welte9b455bf2010-03-14 15:45:01 +0800583
584 gsm48_mi_to_string(mi_string, sizeof(mi_string), &gh->data[1], gh->data[0]);
Harald Welte2720e732010-05-17 00:44:57 +0200585 DEBUGP(DMM, "-> GMM IDENTITY RESPONSE: mi_type=0x%02x MI(%s) ",
Harald Welte9b455bf2010-03-14 15:45:01 +0800586 mi_type, mi_string);
587
Harald Welte9b455bf2010-03-14 15:45:01 +0800588 if (!ctx) {
Harald Welte943c5bc2010-04-30 16:33:12 +0200589 DEBUGP(DMM, "from unknown TLLI 0x%08x?!?\n", msgb_tlli(msg));
Harald Welte9b455bf2010-03-14 15:45:01 +0800590 return -EINVAL;
591 }
592
Harald Weltec2e8cc42010-05-31 20:23:38 +0200593 if (mi_type == ctx->t3370_id_type)
594 mmctx_timer_stop(ctx, 3370);
595
Harald Welte9b455bf2010-03-14 15:45:01 +0800596 switch (mi_type) {
597 case GSM_MI_TYPE_IMSI:
598 /* we already have a mm context with current TLLI, but no
599 * P-TMSI / IMSI yet. What we now need to do is to fill
600 * this initial context with data from the HLR */
Harald Weltec728eea2010-12-24 23:07:18 +0100601 if (strlen(ctx->imsi) == 0) {
602 /* Check if we already have a MM context for this IMSI */
603 struct sgsn_mm_ctx *ictx;
604 ictx = sgsn_mm_ctx_by_imsi(mi_string);
605 if (ictx) {
Holger Hans Peter Freyther2b174542011-10-14 23:31:34 +0200606 DEBUGP(DMM, "Deleting old MM Context for same IMSI "
Harald Weltec728eea2010-12-24 23:07:18 +0100607 "p_tmsi_old=0x%08x, p_tmsi_new=0x%08x\n",
608 ictx->p_tmsi, ctx->p_tmsi);
609 gprs_llgmm_assign(ictx->llme, ictx->tlli,
610 0xffffffff, GPRS_ALGO_GEA0, NULL);
Harald Welte7b022ee2012-07-14 12:04:04 +0200611 /* FIXME: this is a hard free, we don't
612 * clean-up any PDP contexts on the
613 * libgtp side */
Harald Weltec728eea2010-12-24 23:07:18 +0100614 sgsn_mm_ctx_free(ictx);
615 }
616 }
Harald Welte9b455bf2010-03-14 15:45:01 +0800617 strncpy(ctx->imsi, mi_string, sizeof(ctx->imei));
618 break;
619 case GSM_MI_TYPE_IMEI:
620 strncpy(ctx->imei, mi_string, sizeof(ctx->imei));
621 break;
622 case GSM_MI_TYPE_IMEISV:
623 break;
624 }
625
626 DEBUGPC(DMM, "\n");
627 /* Check if we can let the mobile station enter */
Harald Weltec2e8cc42010-05-31 20:23:38 +0200628 return gsm48_gmm_authorize(ctx, ctx->t3350_mode);
Harald Welte9b455bf2010-03-14 15:45:01 +0800629}
630
631/* Section 9.4.1 Attach request */
Harald Welte807a5d82010-06-01 11:53:01 +0200632static int gsm48_rx_gmm_att_req(struct sgsn_mm_ctx *ctx, struct msgb *msg,
633 struct gprs_llc_llme *llme)
Harald Welte9b455bf2010-03-14 15:45:01 +0800634{
Harald Welte943c5bc2010-04-30 16:33:12 +0200635 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_gmmh(msg);
Holger Hans Peter Freyther1768a572014-04-04 12:40:34 +0200636 uint8_t *cur = gh->data, *msnc, *mi, *ms_ra_acc_cap;
Harald Welte56a01452010-05-31 22:12:30 +0200637 uint8_t msnc_len, att_type, mi_len, mi_type, ms_ra_acc_cap_len;
Harald Welteeaa614c2010-05-02 11:26:34 +0200638 uint16_t drx_par;
639 uint32_t tmsi;
Harald Welte9b455bf2010-03-14 15:45:01 +0800640 char mi_string[GSM48_MI_SIZE];
641 struct gprs_ra_id ra_id;
Harald Welte9f1f3ad2010-05-02 12:56:57 +0200642 uint16_t cid;
Harald Welte9b455bf2010-03-14 15:45:01 +0800643
Harald Welte2720e732010-05-17 00:44:57 +0200644 DEBUGP(DMM, "-> GMM ATTACH REQUEST ");
Harald Welte9b455bf2010-03-14 15:45:01 +0800645
646 /* As per TS 04.08 Chapter 4.7.1.4, the attach request arrives either
647 * with a foreign TLLI (P-TMSI that was allocated to the MS before),
648 * or with random TLLI. */
649
Harald Welte9f1f3ad2010-05-02 12:56:57 +0200650 cid = bssgp_parse_cell_id(&ra_id, msgb_bcid(msg));
Harald Welte9b455bf2010-03-14 15:45:01 +0800651
652 /* MS network capability 10.5.5.12 */
653 msnc_len = *cur++;
654 msnc = cur;
Alexander Chemeris84402c02013-07-03 10:12:23 +0400655 if (msnc_len > sizeof(ctx->ms_network_capa.buf))
Harald Welte9b455bf2010-03-14 15:45:01 +0800656 goto err_inval;
657 cur += msnc_len;
658
659 /* aTTACH Type 10.5.5.2 */
660 att_type = *cur++ & 0x0f;
661
662 /* DRX parameter 10.5.5.6 */
Harald Welte56a01452010-05-31 22:12:30 +0200663 drx_par = *cur++ << 8;
664 drx_par |= *cur++;
Harald Welte9b455bf2010-03-14 15:45:01 +0800665
666 /* Mobile Identity (P-TMSI or IMSI) 10.5.1.4 */
667 mi_len = *cur++;
668 mi = cur;
669 if (mi_len > 8)
670 goto err_inval;
671 mi_type = *mi & GSM_MI_TYPE_MASK;
672 cur += mi_len;
673
674 gsm48_mi_to_string(mi_string, sizeof(mi_string), mi, mi_len);
675
Harald Welte2720e732010-05-17 00:44:57 +0200676 DEBUGPC(DMM, "MI(%s) type=\"%s\" ", mi_string,
677 get_value_string(gprs_att_t_strs, att_type));
Harald Welte9b455bf2010-03-14 15:45:01 +0800678
Holger Hans Peter Freyther1768a572014-04-04 12:40:34 +0200679 /* Old routing area identification 10.5.5.15. Skip it */
Harald Welte9b455bf2010-03-14 15:45:01 +0800680 cur += 6;
681
682 /* MS Radio Access Capability 10.5.5.12a */
Harald Welte56a01452010-05-31 22:12:30 +0200683 ms_ra_acc_cap_len = *cur++;
684 ms_ra_acc_cap = cur;
Alexander Chemeris84402c02013-07-03 10:12:23 +0400685 if (ms_ra_acc_cap_len > sizeof(ctx->ms_radio_access_capa.buf))
Harald Weltec48ac472010-07-03 21:20:06 +0200686 goto err_inval;
Harald Welte4b2ed352011-07-27 23:35:38 +0200687 cur += ms_ra_acc_cap_len;
Harald Welte9b455bf2010-03-14 15:45:01 +0800688
689 /* Optional: Old P-TMSI Signature, Requested READY timer, TMSI Status */
690
691 switch (mi_type) {
692 case GSM_MI_TYPE_IMSI:
693 /* Try to find MM context based on IMSI */
Harald Welte807a5d82010-06-01 11:53:01 +0200694 if (!ctx)
695 ctx = sgsn_mm_ctx_by_imsi(mi_string);
Harald Welte9b455bf2010-03-14 15:45:01 +0800696 if (!ctx) {
697#if 0
698 return gsm48_tx_gmm_att_rej(msg, GMM_CAUSE_IMSI_UNKNOWN);
699#else
Harald Welteeafe22c2010-12-24 15:39:08 +0100700 /* As a temorary hack, we simply assume that the IMSI exists,
701 * as long as it is part of 'our' network */
702 char mccmnc[16];
703 snprintf(mccmnc, sizeof(mccmnc), "%03d%02d", ra_id.mcc, ra_id.mnc);
Harald Welte7f6da482013-03-19 11:00:13 +0100704 if (strncmp(mccmnc, mi_string, 5) &&
Harald Welte3dfb5492013-03-19 11:48:54 +0100705 (sgsn->cfg.acl_enabled &&
706 !sgsn_acl_lookup(mi_string))) {
Harald Welteeafe22c2010-12-24 15:39:08 +0100707 LOGP(DMM, LOGL_INFO, "Rejecting ATTACH REQUESET IMSI=%s\n",
708 mi_string);
709 return gsm48_tx_gmm_att_rej_oldmsg(msg,
710 GMM_CAUSE_GPRS_NOTALLOWED);
711 }
Harald Welte9b455bf2010-03-14 15:45:01 +0800712 ctx = sgsn_mm_ctx_alloc(0, &ra_id);
713 if (!ctx)
Harald Welte6463c072010-05-18 17:04:55 +0200714 return gsm48_tx_gmm_att_rej_oldmsg(msg, GMM_CAUSE_NET_FAIL);
Harald Welte9b455bf2010-03-14 15:45:01 +0800715 strncpy(ctx->imsi, mi_string, sizeof(ctx->imsi));
716#endif
717 }
Harald Welte943c5bc2010-04-30 16:33:12 +0200718 ctx->tlli = msgb_tlli(msg);
Harald Welte807a5d82010-06-01 11:53:01 +0200719 ctx->llme = llme;
Harald Welte68b99a42010-05-18 12:05:42 +0200720 msgid2mmctx(ctx, msg);
Harald Welte9b455bf2010-03-14 15:45:01 +0800721 break;
722 case GSM_MI_TYPE_TMSI:
Harald Welteab1d5622010-05-18 19:58:38 +0200723 memcpy(&tmsi, mi+1, 4);
724 tmsi = ntohl(tmsi);
Harald Welte9b455bf2010-03-14 15:45:01 +0800725 /* Try to find MM context based on P-TMSI */
Harald Welte807a5d82010-06-01 11:53:01 +0200726 if (!ctx)
727 ctx = sgsn_mm_ctx_by_ptmsi(tmsi);
Harald Welte9b455bf2010-03-14 15:45:01 +0800728 if (!ctx) {
Harald Weltec728eea2010-12-24 23:07:18 +0100729 /* Allocate a context as most of our code expects one.
730 * Context will not have an IMSI ultil ID RESP is received */
Harald Welte943c5bc2010-04-30 16:33:12 +0200731 ctx = sgsn_mm_ctx_alloc(msgb_tlli(msg), &ra_id);
Harald Welte807a5d82010-06-01 11:53:01 +0200732 ctx->p_tmsi = tmsi;
Harald Welte9b455bf2010-03-14 15:45:01 +0800733 }
Harald Welte807a5d82010-06-01 11:53:01 +0200734 ctx->tlli = msgb_tlli(msg);
735 ctx->llme = llme;
736 msgid2mmctx(ctx, msg);
Harald Welte9b455bf2010-03-14 15:45:01 +0800737 break;
738 default:
Harald Weltec2e8cc42010-05-31 20:23:38 +0200739 LOGP(DMM, LOGL_NOTICE, "Rejecting ATTACH REQUEST with "
740 "MI type %u\n", mi_type);
741 return gsm48_tx_gmm_att_rej_oldmsg(msg, GMM_CAUSE_MS_ID_NOT_DERIVED);
Harald Welte9b455bf2010-03-14 15:45:01 +0800742 }
Harald Welte9f1f3ad2010-05-02 12:56:57 +0200743 /* Update MM Context with currient RA and Cell ID */
744 ctx->ra = ra_id;
745 ctx->cell_id = cid;
Harald Welte56a01452010-05-31 22:12:30 +0200746 /* Update MM Context with other data */
747 ctx->drx_parms = drx_par;
Alexander Chemeris84402c02013-07-03 10:12:23 +0400748 ctx->ms_radio_access_capa.len = ms_ra_acc_cap_len;
Harald Welte4b2ed352011-07-27 23:35:38 +0200749 memcpy(ctx->ms_radio_access_capa.buf, ms_ra_acc_cap,
750 ctx->ms_radio_access_capa.len);
Harald Welte56a01452010-05-31 22:12:30 +0200751 ctx->ms_network_capa.len = msnc_len;
752 memcpy(ctx->ms_network_capa.buf, msnc, msnc_len);
753
Harald Weltec2e8cc42010-05-31 20:23:38 +0200754#ifdef PTMSI_ALLOC
Harald Welte807a5d82010-06-01 11:53:01 +0200755 /* Allocate a new P-TMSI (+ P-TMSI signature) and update TLLI */
Harald Weltec2e8cc42010-05-31 20:23:38 +0200756 ctx->p_tmsi_old = ctx->p_tmsi;
Harald Welte6463c072010-05-18 17:04:55 +0200757 ctx->p_tmsi = sgsn_alloc_ptmsi();
Harald Welteab1d5622010-05-18 19:58:38 +0200758#endif
Harald Welte807a5d82010-06-01 11:53:01 +0200759 /* Even if there is no P-TMSI allocated, the MS will switch from
760 * foreign TLLI to local TLLI */
761 ctx->tlli_new = gprs_tmsi2tlli(ctx->p_tmsi, TLLI_LOCAL);
762
763 /* Inform LLC layer about new TLLI but keep old active */
Harald Welted6f582b2010-06-30 23:18:57 +0200764 gprs_llgmm_assign(ctx->llme, ctx->tlli, ctx->tlli_new,
765 GPRS_ALGO_GEA0, NULL);
Harald Welte9b455bf2010-03-14 15:45:01 +0800766
767 DEBUGPC(DMM, "\n");
Harald Weltef6b606f2011-07-16 13:45:57 +0200768 return gsm48_gmm_authorize(ctx, GMM_T3350_MODE_ATT);
Harald Welte9b455bf2010-03-14 15:45:01 +0800769
770err_inval:
771 DEBUGPC(DMM, "\n");
Harald Welte6463c072010-05-18 17:04:55 +0200772 return gsm48_tx_gmm_att_rej_oldmsg(msg, GMM_CAUSE_SEM_INCORR_MSG);
Harald Welte9b455bf2010-03-14 15:45:01 +0800773}
774
Harald Welte2720e732010-05-17 00:44:57 +0200775/* Section 4.7.4.1 / 9.4.5.2 MO Detach request */
Harald Welted193cb32010-05-17 22:58:03 +0200776static int gsm48_rx_gmm_det_req(struct sgsn_mm_ctx *ctx, struct msgb *msg)
Harald Welte2720e732010-05-17 00:44:57 +0200777{
778 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_gmmh(msg);
Harald Weltec0d59502010-06-28 19:11:41 +0200779 struct sgsn_pdp_ctx *pdp, *pdp2;
Harald Welte2720e732010-05-17 00:44:57 +0200780 uint8_t detach_type, power_off;
Harald Weltebd5c9122010-06-28 22:18:53 +0200781 int rc;
Harald Welte2720e732010-05-17 00:44:57 +0200782
783 detach_type = gh->data[0] & 0x7;
784 power_off = gh->data[0] & 0x8;
785
786 /* FIXME: In 24.008 there is an optional P-TMSI and P-TMSI signature IE */
787
788 DEBUGP(DMM, "-> GMM DETACH REQUEST TLLI=0x%08x type=%s %s\n",
789 msgb_tlli(msg), get_value_string(gprs_det_t_mo_strs, detach_type),
790 power_off ? "Power-off" : "");
791
792 /* Mark MM state as deregistered */
793 ctx->mm_state = GMM_DEREGISTERED;
794
Harald Weltec0d59502010-06-28 19:11:41 +0200795 /* delete all existing PDP contexts for this MS */
796 llist_for_each_entry_safe(pdp, pdp2, &ctx->pdp_list, list) {
797 LOGP(DMM, LOGL_NOTICE, "Dropping PDP context for NSAPI=%u "
798 "due to GPRS DETACH REQUEST\n", pdp->nsapi);
799 sgsn_delete_pdp_ctx(pdp);
800 /* FIXME: the callback wants to transmit a DEACT PDP CTX ACK,
801 * which is quite stupid for a MS that has just detached.. */
802 }
803
Harald Welte2720e732010-05-17 00:44:57 +0200804 /* force_stby = 0 */
Harald Weltebd5c9122010-06-28 22:18:53 +0200805 rc = gsm48_tx_gmm_det_ack(ctx, 0);
806
807 /* TLLI unassignment */
Harald Welted6f582b2010-06-30 23:18:57 +0200808 gprs_llgmm_assign(ctx->llme, ctx->tlli, 0xffffffff,
809 GPRS_ALGO_GEA0, NULL);
Harald Weltebd5c9122010-06-28 22:18:53 +0200810
811 return rc;
Harald Welte2720e732010-05-17 00:44:57 +0200812}
813
Harald Welte9b455bf2010-03-14 15:45:01 +0800814/* Chapter 9.4.15: Routing area update accept */
Harald Welte6463c072010-05-18 17:04:55 +0200815static int gsm48_tx_gmm_ra_upd_ack(struct sgsn_mm_ctx *mm)
Harald Welte9b455bf2010-03-14 15:45:01 +0800816{
817 struct msgb *msg = gsm48_msgb_alloc();
818 struct gsm48_hdr *gh;
819 struct gsm48_ra_upd_ack *rua;
Harald Weltec2e8cc42010-05-31 20:23:38 +0200820 uint8_t *mid;
Harald Welte9b455bf2010-03-14 15:45:01 +0800821
822 DEBUGP(DMM, "<- ROUTING AREA UPDATE ACCEPT\n");
823
Harald Welte6463c072010-05-18 17:04:55 +0200824 mmctx2msgid(msg, mm);
Harald Welte9b455bf2010-03-14 15:45:01 +0800825
826 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
827 gh->proto_discr = GSM48_PDISC_MM_GPRS;
828 gh->msg_type = GSM48_MT_GMM_RA_UPD_ACK;
829
830 rua = (struct gsm48_ra_upd_ack *) msgb_put(msg, sizeof(*rua));
831 rua->force_stby = 0; /* not indicated */
832 rua->upd_result = 0; /* RA updated */
833 rua->ra_upd_timer = GPRS_TMR_MINUTE | 10;
Harald Welte11d7c102010-05-02 11:54:55 +0200834
Harald Welte6463c072010-05-18 17:04:55 +0200835 gsm48_construct_ra(rua->ra_id.digits, &mm->ra);
Harald Welte9b455bf2010-03-14 15:45:01 +0800836
Harald Weltec2e8cc42010-05-31 20:23:38 +0200837#if 0
838 /* Optional: P-TMSI signature */
839 msgb_v_put(msg, GSM48_IE_GMM_PTMSI_SIG);
840 ptsig = msgb_put(msg, 3);
841 ptsig[0] = mm->p_tmsi_sig >> 16;
842 ptsig[1] = mm->p_tmsi_sig >> 8;
843 ptsig[2] = mm->p_tmsi_sig & 0xff;
844#endif
845
846#ifdef PTMSI_ALLOC
847 /* Optional: Allocated P-TMSI */
848 mid = msgb_put(msg, GSM48_MID_TMSI_LEN);
849 gsm48_generate_mid_from_tmsi(mid, mm->p_tmsi);
850 mid[0] = GSM48_IE_GMM_ALLOC_PTMSI;
851#endif
852
853 /* Option: MS ID, ... */
Harald Welte56a01452010-05-31 22:12:30 +0200854 return gsm48_gmm_sendmsg(msg, 0, mm);
Harald Welte9b455bf2010-03-14 15:45:01 +0800855}
856
857/* Chapter 9.4.17: Routing area update reject */
Harald Welteeaa614c2010-05-02 11:26:34 +0200858static int gsm48_tx_gmm_ra_upd_rej(struct msgb *old_msg, uint8_t cause)
Harald Welte9b455bf2010-03-14 15:45:01 +0800859{
860 struct msgb *msg = gsm48_msgb_alloc();
861 struct gsm48_hdr *gh;
862
863 DEBUGP(DMM, "<- ROUTING AREA UPDATE REJECT\n");
864
Harald Welte11d7c102010-05-02 11:54:55 +0200865 gmm_copy_id(msg, old_msg);
Harald Welte9b455bf2010-03-14 15:45:01 +0800866
867 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh) + 2);
868 gh->proto_discr = GSM48_PDISC_MM_GPRS;
869 gh->msg_type = GSM48_MT_GMM_RA_UPD_REJ;
870 gh->data[0] = cause;
871 gh->data[1] = 0; /* ? */
872
873 /* Option: P-TMSI signature, allocated P-TMSI, MS ID, ... */
Harald Welte8acd88f2010-05-18 10:57:45 +0200874 return gsm48_gmm_sendmsg(msg, 0, NULL);
Harald Welte9b455bf2010-03-14 15:45:01 +0800875}
876
Harald Welte588d44e2010-06-09 10:28:29 +0200877static void process_ms_ctx_status(struct sgsn_mm_ctx *mmctx,
Holger Hans Peter Freyther2b174542011-10-14 23:31:34 +0200878 const uint8_t *pdp_status)
Harald Welte588d44e2010-06-09 10:28:29 +0200879{
880 struct sgsn_pdp_ctx *pdp, *pdp2;
881 /* 24.008 4.7.5.1.3: If the PDP context status information element is
882 * included in ROUTING AREA UPDATE REQUEST message, then the network
883 * shall deactivate all those PDP contexts locally (without peer to
884 * peer signalling between the MS and the network), which are not in SM
885 * state PDP-INACTIVE on network side but are indicated by the MS as
886 * being in state PDP-INACTIVE. */
887
888 llist_for_each_entry_safe(pdp, pdp2, &mmctx->pdp_list, list) {
Harald Weltecdf76cf2011-08-05 21:23:46 +0200889 if (pdp->nsapi < 8) {
890 if (!(pdp_status[0] & (1 << pdp->nsapi))) {
891 LOGP(DMM, LOGL_NOTICE, "Dropping PDP context for NSAPI=%u "
892 "due to PDP CTX STATUS IE= 0x%02x%02x\n",
893 pdp->nsapi, pdp_status[1], pdp_status[0]);
894 sgsn_delete_pdp_ctx(pdp);
895 }
896 } else {
897 if (!(pdp_status[1] & (1 << (pdp->nsapi - 8)))) {
898 LOGP(DMM, LOGL_NOTICE, "Dropping PDP context for NSAPI=%u "
899 "due to PDP CTX STATUS IE= 0x%02x%02x\n",
900 pdp->nsapi, pdp_status[1], pdp_status[0]);
901 sgsn_delete_pdp_ctx(pdp);
902 }
Harald Welte588d44e2010-06-09 10:28:29 +0200903 }
904 }
905}
906
Harald Welte9b455bf2010-03-14 15:45:01 +0800907/* Chapter 9.4.14: Routing area update request */
Harald Welte807a5d82010-06-01 11:53:01 +0200908static int gsm48_rx_gmm_ra_upd_req(struct sgsn_mm_ctx *mmctx, struct msgb *msg,
909 struct gprs_llc_llme *llme)
Harald Welte9b455bf2010-03-14 15:45:01 +0800910{
Harald Welte943c5bc2010-04-30 16:33:12 +0200911 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_gmmh(msg);
Harald Welteeaa614c2010-05-02 11:26:34 +0200912 uint8_t *cur = gh->data;
Harald Welte588d44e2010-06-09 10:28:29 +0200913 uint8_t ms_ra_acc_cap_len;
Harald Welte9b455bf2010-03-14 15:45:01 +0800914 struct gprs_ra_id old_ra_id;
Harald Welte588d44e2010-06-09 10:28:29 +0200915 struct tlv_parsed tp;
Harald Welteeaa614c2010-05-02 11:26:34 +0200916 uint8_t upd_type;
Harald Welte9b455bf2010-03-14 15:45:01 +0800917
918 /* Update Type 10.5.5.18 */
919 upd_type = *cur++ & 0x0f;
920
Harald Welte2720e732010-05-17 00:44:57 +0200921 DEBUGP(DMM, "-> GMM RA UPDATE REQUEST type=\"%s\" ",
922 get_value_string(gprs_upd_t_strs, upd_type));
Harald Welte9b455bf2010-03-14 15:45:01 +0800923
924 /* Old routing area identification 10.5.5.15 */
925 gsm48_parse_ra(&old_ra_id, cur);
926 cur += 6;
927
928 /* MS Radio Access Capability 10.5.5.12a */
Harald Welte588d44e2010-06-09 10:28:29 +0200929 ms_ra_acc_cap_len = *cur++;
Harald Welte4b2ed352011-07-27 23:35:38 +0200930 if (ms_ra_acc_cap_len > 52)
931 return gsm48_tx_gmm_ra_upd_rej(msg, GMM_CAUSE_PROTO_ERR_UNSPEC);
932 cur += ms_ra_acc_cap_len;
Harald Welte9b455bf2010-03-14 15:45:01 +0800933
934 /* Optional: Old P-TMSI Signature, Requested READY timer, TMSI Status,
935 * DRX parameter, MS network capability */
Holger Hans Peter Freyther1768a572014-04-04 12:40:34 +0200936 tlv_parse(&tp, &gsm48_gmm_att_tlvdef, cur,
Harald Welte588d44e2010-06-09 10:28:29 +0200937 (msg->data + msg->len) - cur, 0, 0);
Harald Welte9b455bf2010-03-14 15:45:01 +0800938
939 switch (upd_type) {
940 case GPRS_UPD_T_RA_LA:
941 case GPRS_UPD_T_RA_LA_IMSI_ATT:
942 DEBUGPC(DMM, " unsupported in Mode III, is your SI13 corrupt?\n");
943 return gsm48_tx_gmm_ra_upd_rej(msg, GMM_CAUSE_PROTO_ERR_UNSPEC);
944 break;
945 case GPRS_UPD_T_RA:
946 case GPRS_UPD_T_PERIODIC:
947 break;
948 }
949
950 /* Look-up the MM context based on old RA-ID and TLLI */
Harald Weltef6bd3402010-12-23 23:34:43 +0100951 mmctx = sgsn_mm_ctx_by_tlli(msgb_tlli(msg), &old_ra_id);
Harald Welte9b455bf2010-03-14 15:45:01 +0800952 if (!mmctx || mmctx->mm_state == GMM_DEREGISTERED) {
Harald Welte2b697a62011-10-16 18:50:56 +0200953 /* send a XID reset to re-set all LLC sequence numbers
954 * in the MS */
955 DEBUGPC(DMM, " LLC XID RESET ");
956 gprs_llgmm_reset(llme);
Harald Welte9b455bf2010-03-14 15:45:01 +0800957 /* The MS has to perform GPRS attach */
958 DEBUGPC(DMM, " REJECT\n");
Harald Weltec2e8cc42010-05-31 20:23:38 +0200959 /* Device is still IMSI atached for CS but initiate GPRS ATTACH */
960 return gsm48_tx_gmm_ra_upd_rej(msg, GMM_CAUSE_MS_ID_NOT_DERIVED);
Harald Welte9b455bf2010-03-14 15:45:01 +0800961 }
962
Harald Weltef0901f02010-12-26 10:39:26 +0100963 /* Store new BVCI/NSEI in MM context (FIXME: delay until we ack?) */
964 msgid2mmctx(mmctx, msg);
965 /* Bump the statistics of received signalling msgs for this MM context */
966 rate_ctr_inc(&mmctx->ctrg->ctr[GMM_CTR_PKTS_SIG_IN]);
967
Harald Welte9f1f3ad2010-05-02 12:56:57 +0200968 /* Update the MM context with the new RA-ID */
969 bssgp_parse_cell_id(&mmctx->ra, msgb_bcid(msg));
Harald Weltef0901f02010-12-26 10:39:26 +0100970 /* Update the MM context with the new (i.e. foreign) TLLI */
Harald Welte9f1f3ad2010-05-02 12:56:57 +0200971 mmctx->tlli = msgb_tlli(msg);
Harald Welte9b455bf2010-03-14 15:45:01 +0800972 /* FIXME: Update the MM context with the MS radio acc capabilities */
973 /* FIXME: Update the MM context with the MS network capabilities */
974
Harald Welte77289c22010-05-18 14:32:29 +0200975 rate_ctr_inc(&mmctx->ctrg->ctr[GMM_CTR_RA_UPDATE]);
976
Harald Welte9b455bf2010-03-14 15:45:01 +0800977 DEBUGPC(DMM, " ACCEPT\n");
Harald Weltec2e8cc42010-05-31 20:23:38 +0200978#ifdef PTMSI_ALLOC
979 mmctx->p_tmsi_old = mmctx->p_tmsi;
980 mmctx->p_tmsi = sgsn_alloc_ptmsi();
981 /* Start T3350 and re-transmit up to 5 times until ATTACH COMPLETE */
982 mmctx->t3350_mode = GMM_T3350_MODE_RAU;
983 mmctx_timer_start(mmctx, 3350, GSM0408_T3350_SECS);
984#endif
Harald Welte807a5d82010-06-01 11:53:01 +0200985 /* Even if there is no P-TMSI allocated, the MS will switch from
986 * foreign TLLI to local TLLI */
987 mmctx->tlli_new = gprs_tmsi2tlli(mmctx->p_tmsi, TLLI_LOCAL);
Harald Weltec2e8cc42010-05-31 20:23:38 +0200988
Harald Welte807a5d82010-06-01 11:53:01 +0200989 /* Inform LLC layer about new TLLI but keep old active */
Harald Welted6f582b2010-06-30 23:18:57 +0200990 gprs_llgmm_assign(mmctx->llme, mmctx->tlli, mmctx->tlli_new,
991 GPRS_ALGO_GEA0, NULL);
Harald Welte807a5d82010-06-01 11:53:01 +0200992
Harald Welte588d44e2010-06-09 10:28:29 +0200993 /* Look at PDP Context Status IE and see if MS's view of
994 * activated/deactivated NSAPIs agrees with our view */
995 if (TLVP_PRESENT(&tp, GSM48_IE_GMM_PDP_CTX_STATUS)) {
Holger Hans Peter Freyther2b174542011-10-14 23:31:34 +0200996 const uint8_t *pdp_status = TLVP_VAL(&tp, GSM48_IE_GMM_PDP_CTX_STATUS);
Harald Welte588d44e2010-06-09 10:28:29 +0200997 process_ms_ctx_status(mmctx, pdp_status);
998 }
999
Harald Welted4c6f8b2011-10-16 21:35:21 +02001000 /* Make sure we are NORMAL (i.e. not SUSPENDED anymore) */
1001 mmctx->mm_state = GMM_REGISTERED_NORMAL;
1002
Harald Welte807a5d82010-06-01 11:53:01 +02001003 /* Send RA UPDATE ACCEPT */
Harald Welte6463c072010-05-18 17:04:55 +02001004 return gsm48_tx_gmm_ra_upd_ack(mmctx);
Harald Welte9b455bf2010-03-14 15:45:01 +08001005}
1006
Harald Welted193cb32010-05-17 22:58:03 +02001007static int gsm48_rx_gmm_status(struct sgsn_mm_ctx *mmctx, struct msgb *msg)
Harald Welte9b455bf2010-03-14 15:45:01 +08001008{
1009 struct gsm48_hdr *gh = msgb_l3(msg);
1010
Harald Welte2720e732010-05-17 00:44:57 +02001011 DEBUGP(DMM, "-> GPRS MM STATUS (cause: %s)\n",
Harald Welte9b455bf2010-03-14 15:45:01 +08001012 get_value_string(gmm_cause_names, gh->data[0]));
1013
1014 return 0;
1015}
1016
1017/* GPRS Mobility Management */
Harald Welte807a5d82010-06-01 11:53:01 +02001018static int gsm0408_rcv_gmm(struct sgsn_mm_ctx *mmctx, struct msgb *msg,
1019 struct gprs_llc_llme *llme)
Harald Welte9b455bf2010-03-14 15:45:01 +08001020{
Harald Welte943c5bc2010-04-30 16:33:12 +02001021 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_gmmh(msg);
Harald Welte9b455bf2010-03-14 15:45:01 +08001022 int rc;
1023
Harald Welte807a5d82010-06-01 11:53:01 +02001024 /* MMCTX can be NULL when called */
1025
Harald Welted193cb32010-05-17 22:58:03 +02001026 if (!mmctx &&
1027 gh->msg_type != GSM48_MT_GMM_ATTACH_REQ &&
Harald Weltec2e8cc42010-05-31 20:23:38 +02001028 gh->msg_type != GSM48_MT_GMM_RA_UPD_REQ) {
Harald Welted193cb32010-05-17 22:58:03 +02001029 LOGP(DMM, LOGL_NOTICE, "Cannot handle GMM for unknown MM CTX\n");
Harald Welte2b697a62011-10-16 18:50:56 +02001030 gprs_llgmm_reset(llme);
Harald Weltef54e7e22010-06-09 10:51:23 +02001031 return gsm48_tx_gmm_status_oldmsg(msg, GMM_CAUSE_MS_ID_NOT_DERIVED);
Harald Welted193cb32010-05-17 22:58:03 +02001032 }
1033
Harald Welte9b455bf2010-03-14 15:45:01 +08001034 switch (gh->msg_type) {
1035 case GSM48_MT_GMM_RA_UPD_REQ:
Harald Welte807a5d82010-06-01 11:53:01 +02001036 rc = gsm48_rx_gmm_ra_upd_req(mmctx, msg, llme);
Harald Welte9b455bf2010-03-14 15:45:01 +08001037 break;
1038 case GSM48_MT_GMM_ATTACH_REQ:
Harald Welte807a5d82010-06-01 11:53:01 +02001039 rc = gsm48_rx_gmm_att_req(mmctx, msg, llme);
Harald Welte9b455bf2010-03-14 15:45:01 +08001040 break;
1041 case GSM48_MT_GMM_ID_RESP:
Harald Welted193cb32010-05-17 22:58:03 +02001042 rc = gsm48_rx_gmm_id_resp(mmctx, msg);
Harald Welte9b455bf2010-03-14 15:45:01 +08001043 break;
1044 case GSM48_MT_GMM_STATUS:
Harald Welted193cb32010-05-17 22:58:03 +02001045 rc = gsm48_rx_gmm_status(mmctx, msg);
Harald Welte9b455bf2010-03-14 15:45:01 +08001046 break;
Harald Welte2720e732010-05-17 00:44:57 +02001047 case GSM48_MT_GMM_DETACH_REQ:
Harald Welted193cb32010-05-17 22:58:03 +02001048 rc = gsm48_rx_gmm_det_req(mmctx, msg);
Harald Welte2720e732010-05-17 00:44:57 +02001049 break;
Harald Welte9b455bf2010-03-14 15:45:01 +08001050 case GSM48_MT_GMM_ATTACH_COMPL:
1051 /* only in case SGSN offered new P-TMSI */
Harald Weltec2e8cc42010-05-31 20:23:38 +02001052 DEBUGP(DMM, "-> ATTACH COMPLETE\n");
1053 mmctx_timer_stop(mmctx, 3350);
1054 mmctx->p_tmsi_old = 0;
Harald Welte807a5d82010-06-01 11:53:01 +02001055 /* Unassign the old TLLI */
1056 mmctx->tlli = mmctx->tlli_new;
Harald Welted6f582b2010-06-30 23:18:57 +02001057 gprs_llgmm_assign(mmctx->llme, 0xffffffff, mmctx->tlli_new,
1058 GPRS_ALGO_GEA0, NULL);
Holger Hans Peter Freyther2b174542011-10-14 23:31:34 +02001059 rc = 0;
Harald Weltec2e8cc42010-05-31 20:23:38 +02001060 break;
Harald Welteab1d5622010-05-18 19:58:38 +02001061 case GSM48_MT_GMM_RA_UPD_COMPL:
1062 /* only in case SGSN offered new P-TMSI */
Harald Weltec2e8cc42010-05-31 20:23:38 +02001063 DEBUGP(DMM, "-> ROUTEING AREA UPDATE COMPLETE\n");
1064 mmctx_timer_stop(mmctx, 3350);
1065 mmctx->p_tmsi_old = 0;
Harald Welte807a5d82010-06-01 11:53:01 +02001066 /* Unassign the old TLLI */
1067 mmctx->tlli = mmctx->tlli_new;
Harald Welted6f582b2010-06-30 23:18:57 +02001068 gprs_llgmm_assign(mmctx->llme, 0xffffffff, mmctx->tlli_new,
1069 GPRS_ALGO_GEA0, NULL);
Holger Hans Peter Freyther2b174542011-10-14 23:31:34 +02001070 rc = 0;
Harald Weltec2e8cc42010-05-31 20:23:38 +02001071 break;
Harald Welte9b455bf2010-03-14 15:45:01 +08001072 case GSM48_MT_GMM_PTMSI_REALL_COMPL:
Harald Weltec2e8cc42010-05-31 20:23:38 +02001073 DEBUGP(DMM, "-> PTMSI REALLLICATION COMPLETE\n");
1074 mmctx_timer_stop(mmctx, 3350);
1075 mmctx->p_tmsi_old = 0;
Harald Welte807a5d82010-06-01 11:53:01 +02001076 /* Unassign the old TLLI */
1077 mmctx->tlli = mmctx->tlli_new;
Harald Welted6f582b2010-06-30 23:18:57 +02001078 //gprs_llgmm_assign(mmctx->llme, 0xffffffff, mmctx->tlli_new, GPRS_ALGO_GEA0, NULL);
Holger Hans Peter Freyther2b174542011-10-14 23:31:34 +02001079 rc = 0;
Harald Weltec2e8cc42010-05-31 20:23:38 +02001080 break;
Harald Welte9b455bf2010-03-14 15:45:01 +08001081 case GSM48_MT_GMM_AUTH_CIPH_RESP:
Harald Welte4b6ac1e2010-07-03 11:09:06 +02001082 rc = gsm48_rx_gmm_auth_ciph_resp(mmctx, msg);
Harald Welte9b455bf2010-03-14 15:45:01 +08001083 break;
1084 default:
1085 DEBUGP(DMM, "Unknown GSM 04.08 GMM msg type 0x%02x\n",
1086 gh->msg_type);
Harald Weltef54e7e22010-06-09 10:51:23 +02001087 rc = gsm48_tx_gmm_status(mmctx, GMM_CAUSE_MSGT_NOTEXIST_NOTIMPL);
Harald Welte9b455bf2010-03-14 15:45:01 +08001088 break;
1089 }
1090
1091 return rc;
1092}
1093
Harald Weltec2e8cc42010-05-31 20:23:38 +02001094static void mmctx_timer_cb(void *_mm)
1095{
1096 struct sgsn_mm_ctx *mm = _mm;
1097
1098 mm->num_T_exp++;
1099
1100 switch (mm->T) {
1101 case 3350: /* waiting for ATTACH COMPLETE */
1102 if (mm->num_T_exp >= 5) {
1103 LOGP(DMM, LOGL_NOTICE, "T3350 expired >= 5 times\n");
1104 mm->mm_state = GMM_DEREGISTERED;
1105 /* FIXME: should we return some error? */
1106 break;
1107 }
1108 /* re-transmit the respective msg and re-start timer */
1109 switch (mm->t3350_mode) {
1110 case GMM_T3350_MODE_ATT:
1111 gsm48_tx_gmm_att_ack(mm);
1112 break;
1113 case GMM_T3350_MODE_RAU:
1114 gsm48_tx_gmm_ra_upd_ack(mm);
1115 break;
1116 case GMM_T3350_MODE_PTMSI_REALL:
1117 /* FIXME */
1118 break;
1119 }
Pablo Neira Ayusobf540cb2011-05-06 12:11:06 +02001120 osmo_timer_schedule(&mm->timer, GSM0408_T3350_SECS, 0);
Harald Weltec2e8cc42010-05-31 20:23:38 +02001121 break;
Harald Welte4b6ac1e2010-07-03 11:09:06 +02001122 case 3360: /* waiting for AUTH AND CIPH RESP */
1123 if (mm->num_T_exp >= 5) {
1124 LOGP(DMM, LOGL_NOTICE, "T3360 expired >= 5 times\n");
1125 mm->mm_state = GMM_DEREGISTERED;
1126 break;
1127 }
1128 /* FIXME: re-transmit the respective msg and re-start timer */
Pablo Neira Ayusobf540cb2011-05-06 12:11:06 +02001129 osmo_timer_schedule(&mm->timer, GSM0408_T3360_SECS, 0);
Harald Welte4b6ac1e2010-07-03 11:09:06 +02001130 break;
Harald Weltec2e8cc42010-05-31 20:23:38 +02001131 case 3370: /* waiting for IDENTITY RESPONSE */
1132 if (mm->num_T_exp >= 5) {
1133 LOGP(DMM, LOGL_NOTICE, "T3370 expired >= 5 times\n");
1134 gsm48_tx_gmm_att_rej(mm, GMM_CAUSE_MS_ID_NOT_DERIVED);
1135 mm->mm_state = GMM_DEREGISTERED;
1136 break;
1137 }
1138 /* re-tranmit IDENTITY REQUEST and re-start timer */
1139 gsm48_tx_gmm_id_req(mm, mm->t3370_id_type);
Pablo Neira Ayusobf540cb2011-05-06 12:11:06 +02001140 osmo_timer_schedule(&mm->timer, GSM0408_T3370_SECS, 0);
Harald Weltec2e8cc42010-05-31 20:23:38 +02001141 break;
1142 default:
1143 LOGP(DMM, LOGL_ERROR, "timer expired in unknown mode %u\n",
1144 mm->T);
1145 }
1146}
1147
1148/* GPRS SESSION MANAGEMENT */
1149
Harald Weltea9b473a2010-12-24 21:13:26 +01001150static void pdpctx_timer_cb(void *_mm);
1151
1152static void pdpctx_timer_start(struct sgsn_pdp_ctx *pdp, unsigned int T,
1153 unsigned int seconds)
1154{
Pablo Neira Ayusobf540cb2011-05-06 12:11:06 +02001155 if (osmo_timer_pending(&pdp->timer))
Harald Weltea9b473a2010-12-24 21:13:26 +01001156 LOGP(DMM, LOGL_ERROR, "Starting MM timer %u while old "
1157 "timer %u pending\n", T, pdp->T);
1158 pdp->T = T;
1159 pdp->num_T_exp = 0;
1160
1161 /* FIXME: we should do this only once ? */
1162 pdp->timer.data = pdp;
1163 pdp->timer.cb = &pdpctx_timer_cb;
1164
Pablo Neira Ayusobf540cb2011-05-06 12:11:06 +02001165 osmo_timer_schedule(&pdp->timer, seconds, 0);
Harald Weltea9b473a2010-12-24 21:13:26 +01001166}
1167
Holger Hans Peter Freyther1768a572014-04-04 12:40:34 +02001168#if 0
Harald Welte421cba42010-05-02 23:11:50 +02001169static void msgb_put_pdp_addr_ipv4(struct msgb *msg, uint32_t ipaddr)
1170{
1171 uint8_t v[6];
1172
1173 v[0] = PDP_TYPE_ORG_IETF;
1174 v[1] = PDP_TYPE_N_IETF_IPv4;
1175 *(uint32_t *)(v+2) = htonl(ipaddr);
1176
1177 msgb_tlv_put(msg, GSM48_IE_GSM_PDP_ADDR, sizeof(v), v);
1178}
1179
1180static void msgb_put_pdp_addr_ppp(struct msgb *msg)
1181{
1182 uint8_t v[2];
1183
1184 v[0] = PDP_TYPE_ORG_ETSI;
1185 v[1] = PDP_TYPE_N_ETSI_PPP;
1186
1187 msgb_tlv_put(msg, GSM48_IE_GSM_PDP_ADDR, sizeof(v), v);
1188}
Holger Hans Peter Freyther1768a572014-04-04 12:40:34 +02001189#endif
Harald Welte421cba42010-05-02 23:11:50 +02001190
Harald Welte9b455bf2010-03-14 15:45:01 +08001191/* Section 9.5.2: Ativate PDP Context Accept */
Harald Welte6abf94e2010-05-18 10:35:06 +02001192int gsm48_tx_gsm_act_pdp_acc(struct sgsn_pdp_ctx *pdp)
Harald Welte9b455bf2010-03-14 15:45:01 +08001193{
Harald Welte9b455bf2010-03-14 15:45:01 +08001194 struct msgb *msg = gsm48_msgb_alloc();
Harald Welte9b455bf2010-03-14 15:45:01 +08001195 struct gsm48_hdr *gh;
Harald Welte6abf94e2010-05-18 10:35:06 +02001196 uint8_t transaction_id = pdp->ti ^ 0x8; /* flip */
Harald Welte9b455bf2010-03-14 15:45:01 +08001197
1198 DEBUGP(DMM, "<- ACTIVATE PDP CONTEXT ACK\n");
1199
Harald Welte6abf94e2010-05-18 10:35:06 +02001200 mmctx2msgid(msg, pdp->mm);
Harald Welte9b455bf2010-03-14 15:45:01 +08001201
1202 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
1203 gh->proto_discr = GSM48_PDISC_SM_GPRS | (transaction_id << 4);
1204 gh->msg_type = GSM48_MT_GSM_ACT_PDP_ACK;
Harald Welte421cba42010-05-02 23:11:50 +02001205
1206 /* Negotiated LLC SAPI */
Harald Welte6abf94e2010-05-18 10:35:06 +02001207 msgb_v_put(msg, pdp->sapi);
Harald Welte4e38ac72010-05-18 14:51:18 +02001208
Harald Welte55e0df72010-05-18 13:20:08 +02001209 /* FIXME: copy QoS parameters from original request */
1210 //msgb_lv_put(msg, pdp->lib->qos_neg.l, pdp->lib->qos_neg.v);
1211 msgb_lv_put(msg, sizeof(default_qos), (uint8_t *)&default_qos);
Harald Welte4e38ac72010-05-18 14:51:18 +02001212
Harald Welte421cba42010-05-02 23:11:50 +02001213 /* Radio priority 10.5.7.2 */
Harald Welte6abf94e2010-05-18 10:35:06 +02001214 msgb_v_put(msg, pdp->lib->radio_pri);
Harald Welte4e38ac72010-05-18 14:51:18 +02001215
Harald Welte421cba42010-05-02 23:11:50 +02001216 /* PDP address */
Harald Welte4e38ac72010-05-18 14:51:18 +02001217 /* Highest 4 bits of first byte need to be set to 1, otherwise
1218 * the IE is identical with the 04.08 PDP Address IE */
1219 pdp->lib->eua.v[0] &= ~0xf0;
Harald Welte6abf94e2010-05-18 10:35:06 +02001220 msgb_tlv_put(msg, GSM48_IE_GSM_PDP_ADDR,
1221 pdp->lib->eua.l, pdp->lib->eua.v);
Harald Welte4e38ac72010-05-18 14:51:18 +02001222 pdp->lib->eua.v[0] |= 0xf0;
1223
Harald Welte77289c22010-05-18 14:32:29 +02001224 /* Optional: Protocol configuration options (FIXME: why 'req') */
Holger Hans Peter Freytherd2195072014-04-04 11:55:21 +02001225 if (pdp->lib->pco_req.l)
Harald Welte6abf94e2010-05-18 10:35:06 +02001226 msgb_tlv_put(msg, GSM48_IE_GSM_PROTO_CONF_OPT,
Harald Welte3c0b9b92010-05-18 14:36:11 +02001227 pdp->lib->pco_req.l, pdp->lib->pco_req.v);
Harald Welte4e38ac72010-05-18 14:51:18 +02001228
Harald Welte421cba42010-05-02 23:11:50 +02001229 /* Optional: Packet Flow Identifier */
Harald Welte9b455bf2010-03-14 15:45:01 +08001230
Harald Welte8acd88f2010-05-18 10:57:45 +02001231 return gsm48_gmm_sendmsg(msg, 0, pdp->mm);
Harald Welte9b455bf2010-03-14 15:45:01 +08001232}
1233
Harald Welte6abf94e2010-05-18 10:35:06 +02001234/* Section 9.5.3: Activate PDP Context reject */
1235int gsm48_tx_gsm_act_pdp_rej(struct sgsn_mm_ctx *mm, uint8_t tid,
1236 uint8_t cause, uint8_t pco_len, uint8_t *pco_v)
1237{
1238 struct msgb *msg = gsm48_msgb_alloc();
Harald Welte6abf94e2010-05-18 10:35:06 +02001239 struct gsm48_hdr *gh;
1240 uint8_t transaction_id = tid ^ 0x8; /* flip */
1241
Harald Welte77289c22010-05-18 14:32:29 +02001242 DEBUGP(DMM, "<- ACTIVATE PDP CONTEXT REJ(cause=%u)\n", cause);
Harald Welte6abf94e2010-05-18 10:35:06 +02001243
1244 mmctx2msgid(msg, mm);
1245
1246 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
1247 gh->proto_discr = GSM48_PDISC_SM_GPRS | (transaction_id << 4);
1248 gh->msg_type = GSM48_MT_GSM_ACT_PDP_REJ;
1249
1250 msgb_v_put(msg, cause);
1251 if (pco_len && pco_v)
1252 msgb_tlv_put(msg, GSM48_IE_GSM_PROTO_CONF_OPT, pco_len, pco_v);
1253
Harald Welte8acd88f2010-05-18 10:57:45 +02001254 return gsm48_gmm_sendmsg(msg, 0, mm);
Harald Welte6abf94e2010-05-18 10:35:06 +02001255}
1256
Harald Weltea9b473a2010-12-24 21:13:26 +01001257/* Section 9.5.8: Deactivate PDP Context Request */
1258static int _gsm48_tx_gsm_deact_pdp_req(struct sgsn_mm_ctx *mm, uint8_t tid,
1259 uint8_t sm_cause)
1260{
1261 struct msgb *msg = gsm48_msgb_alloc();
1262 struct gsm48_hdr *gh;
1263 uint8_t transaction_id = tid ^ 0x8; /* flip */
1264
1265 DEBUGP(DMM, "<- DEACTIVATE PDP CONTEXT REQ\n");
1266
1267 mmctx2msgid(msg, mm);
1268
1269 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
1270 gh->proto_discr = GSM48_PDISC_SM_GPRS | (transaction_id << 4);
1271 gh->msg_type = GSM48_MT_GSM_DEACT_PDP_REQ;
1272
1273 msgb_v_put(msg, sm_cause);
1274
1275 return gsm48_gmm_sendmsg(msg, 0, mm);
1276}
1277int gsm48_tx_gsm_deact_pdp_req(struct sgsn_pdp_ctx *pdp, uint8_t sm_cause)
1278{
1279 pdpctx_timer_start(pdp, 3395, GSM0408_T3395_SECS);
1280
1281 return _gsm48_tx_gsm_deact_pdp_req(pdp->mm, pdp->ti, sm_cause);
1282}
1283
Harald Welte9b455bf2010-03-14 15:45:01 +08001284/* Section 9.5.9: Deactivate PDP Context Accept */
Harald Welte60ebc022010-06-08 18:08:59 +02001285static int _gsm48_tx_gsm_deact_pdp_acc(struct sgsn_mm_ctx *mm, uint8_t tid)
Harald Welte9b455bf2010-03-14 15:45:01 +08001286{
Harald Welte9b455bf2010-03-14 15:45:01 +08001287 struct msgb *msg = gsm48_msgb_alloc();
1288 struct gsm48_hdr *gh;
Harald Welte60ebc022010-06-08 18:08:59 +02001289 uint8_t transaction_id = tid ^ 0x8; /* flip */
Harald Welte9b455bf2010-03-14 15:45:01 +08001290
1291 DEBUGP(DMM, "<- DEACTIVATE PDP CONTEXT ACK\n");
1292
Harald Welte60ebc022010-06-08 18:08:59 +02001293 mmctx2msgid(msg, mm);
Harald Welte9b455bf2010-03-14 15:45:01 +08001294
1295 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
1296 gh->proto_discr = GSM48_PDISC_SM_GPRS | (transaction_id << 4);
1297 gh->msg_type = GSM48_MT_GSM_DEACT_PDP_ACK;
1298
Harald Welte60ebc022010-06-08 18:08:59 +02001299 return gsm48_gmm_sendmsg(msg, 0, mm);
1300}
1301int gsm48_tx_gsm_deact_pdp_acc(struct sgsn_pdp_ctx *pdp)
1302{
1303 return _gsm48_tx_gsm_deact_pdp_acc(pdp->mm, pdp->ti);
Harald Welte9b455bf2010-03-14 15:45:01 +08001304}
1305
1306/* Section 9.5.1: Activate PDP Context Request */
Harald Welted193cb32010-05-17 22:58:03 +02001307static int gsm48_rx_gsm_act_pdp_req(struct sgsn_mm_ctx *mmctx,
1308 struct msgb *msg)
Harald Welte9b455bf2010-03-14 15:45:01 +08001309{
Harald Welte943c5bc2010-04-30 16:33:12 +02001310 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_gmmh(msg);
Harald Welte9b455bf2010-03-14 15:45:01 +08001311 struct gsm48_act_pdp_ctx_req *act_req = (struct gsm48_act_pdp_ctx_req *) gh->data;
Harald Welte0c3eae02010-05-02 21:07:14 +02001312 uint8_t req_qos_len, req_pdpa_len;
1313 uint8_t *req_qos, *req_pdpa;
1314 struct tlv_parsed tp;
Harald Welte6abf94e2010-05-18 10:35:06 +02001315 uint8_t transaction_id = (gh->proto_discr >> 4);
Harald Welte11ff3e82010-07-02 10:17:24 +02001316 struct sgsn_ggsn_ctx *ggsn;
Harald Welte6abf94e2010-05-18 10:35:06 +02001317 struct sgsn_pdp_ctx *pdp;
Harald Welte9b455bf2010-03-14 15:45:01 +08001318
Harald Welte6abf94e2010-05-18 10:35:06 +02001319 DEBUGP(DMM, "-> ACTIVATE PDP CONTEXT REQ: SAPI=%u NSAPI=%u ",
1320 act_req->req_llc_sapi, act_req->req_nsapi);
Harald Welte8acd88f2010-05-18 10:57:45 +02001321
Harald Welte23c13762010-07-02 22:52:04 +02001322 /* FIXME: length checks! */
Harald Welte0c3eae02010-05-02 21:07:14 +02001323 req_qos_len = act_req->data[0];
1324 req_qos = act_req->data + 1; /* 10.5.6.5 */
1325 req_pdpa_len = act_req->data[1 + req_qos_len];
1326 req_pdpa = act_req->data + 1 + req_qos_len + 1; /* 10.5.6.4 */
Harald Welte9b455bf2010-03-14 15:45:01 +08001327
Harald Welte23c13762010-07-02 22:52:04 +02001328 /* Optional: Access Point Name, Protocol Config Options */
1329 if (req_pdpa + req_pdpa_len < msg->data + msg->len)
1330 tlv_parse(&tp, &gsm48_sm_att_tlvdef, req_pdpa + req_pdpa_len,
1331 (msg->data + msg->len) - (req_pdpa + req_pdpa_len), 0, 0);
1332 else
1333 memset(&tp, 0, sizeof(tp));
1334
Harald Welte0c3eae02010-05-02 21:07:14 +02001335 switch (req_pdpa[0] & 0xf) {
1336 case 0x0:
1337 DEBUGPC(DMM, "ETSI ");
1338 break;
1339 case 0x1:
1340 DEBUGPC(DMM, "IETF ");
1341 break;
1342 case 0xf:
1343 DEBUGPC(DMM, "Empty ");
1344 break;
1345 }
1346
1347 switch (req_pdpa[1]) {
1348 case 0x21:
1349 DEBUGPC(DMM, "IPv4 ");
1350 if (req_pdpa_len >= 6) {
1351 struct in_addr ia;
1352 ia.s_addr = ntohl(*((uint32_t *) (req_pdpa+2)));
1353 DEBUGPC(DMM, "%s ", inet_ntoa(ia));
1354 }
1355 break;
1356 case 0x57:
1357 DEBUGPC(DMM, "IPv6 ");
1358 if (req_pdpa_len >= 18) {
1359 /* FIXME: print IPv6 address */
1360 }
1361 break;
1362 default:
1363 DEBUGPC(DMM, "0x%02x ", req_pdpa[1]);
1364 break;
1365 }
1366
Harald Welte77289c22010-05-18 14:32:29 +02001367 DEBUGPC(DMM, "\n");
1368
Harald Welte2720e732010-05-17 00:44:57 +02001369 /* put the non-TLV elements in the TLV parser structure to
1370 * pass them on to the SGSN / GTP code */
1371 tp.lv[OSMO_IE_GSM_REQ_QOS].len = req_qos_len;
1372 tp.lv[OSMO_IE_GSM_REQ_QOS].val = req_qos;
1373 tp.lv[OSMO_IE_GSM_REQ_PDP_ADDR].len = req_pdpa_len;
1374 tp.lv[OSMO_IE_GSM_REQ_PDP_ADDR].val = req_pdpa;
1375
Harald Welte6abf94e2010-05-18 10:35:06 +02001376 /* FIXME: determine GGSN based on APN and subscription options */
Harald Welte0c3eae02010-05-02 21:07:14 +02001377 if (TLVP_PRESENT(&tp, GSM48_IE_GSM_APN)) {}
Harald Welte6abf94e2010-05-18 10:35:06 +02001378
1379 /* Check if NSAPI is out of range (TS 04.65 / 7.2) */
1380 if (act_req->req_nsapi < 5 || act_req->req_nsapi > 15) {
1381 /* Send reject with GSM_CAUSE_INV_MAND_INFO */
1382 return gsm48_tx_gsm_act_pdp_rej(mmctx, transaction_id,
1383 GSM_CAUSE_INV_MAND_INFO,
1384 0, NULL);
1385 }
1386
1387 /* Check if NSAPI is already in use */
Harald Welteb37515e2010-07-02 10:12:58 +02001388 pdp = sgsn_pdp_ctx_by_nsapi(mmctx, act_req->req_nsapi);
1389 if (pdp) {
1390 /* We already have a PDP context for this TLLI + NSAPI tuple */
1391 if (pdp->sapi == act_req->req_llc_sapi &&
1392 pdp->ti == transaction_id) {
1393 /* This apparently is a re-transmission of a PDP CTX
1394 * ACT REQ (our ACT ACK must have got dropped) */
1395 return gsm48_tx_gsm_act_pdp_acc(pdp);
1396 }
1397
1398 /* Send reject with GSM_CAUSE_NSAPI_IN_USE */
Harald Welte6abf94e2010-05-18 10:35:06 +02001399 return gsm48_tx_gsm_act_pdp_rej(mmctx, transaction_id,
1400 GSM_CAUSE_NSAPI_IN_USE,
1401 0, NULL);
1402 }
Harald Welte9b455bf2010-03-14 15:45:01 +08001403
Harald Welte19f9e302010-07-02 10:15:49 +02001404 /* Only increment counter for a real activation, after we checked
1405 * for re-transmissions */
1406 rate_ctr_inc(&mmctx->ctrg->ctr[GMM_CTR_PDP_CTX_ACT]);
1407
Harald Welte11ff3e82010-07-02 10:17:24 +02001408 ggsn = sgsn_ggsn_ctx_by_id(0);
1409 if (!ggsn) {
1410 LOGP(DGPRS, LOGL_ERROR, "No GGSN context 0 found!\n");
1411 return -EIO;
Harald Welted193cb32010-05-17 22:58:03 +02001412 }
Harald Welte11ff3e82010-07-02 10:17:24 +02001413 ggsn->gsn = sgsn->gsn;
1414 pdp = sgsn_create_pdp_ctx(ggsn, mmctx, act_req->req_nsapi, &tp);
1415 if (!pdp)
1416 return -1;
1417
1418 /* Store SAPI and Transaction Identifier */
1419 pdp->sapi = act_req->req_llc_sapi;
1420 pdp->ti = transaction_id;
1421
Harald Welte6463c072010-05-18 17:04:55 +02001422 return 0;
Harald Welte9b455bf2010-03-14 15:45:01 +08001423}
1424
1425/* Section 9.5.8: Deactivate PDP Context Request */
Harald Welte77289c22010-05-18 14:32:29 +02001426static int gsm48_rx_gsm_deact_pdp_req(struct sgsn_mm_ctx *mm, struct msgb *msg)
Harald Welte9b455bf2010-03-14 15:45:01 +08001427{
Harald Welte943c5bc2010-04-30 16:33:12 +02001428 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_gmmh(msg);
Harald Welte77289c22010-05-18 14:32:29 +02001429 uint8_t transaction_id = (gh->proto_discr >> 4);
1430 struct sgsn_pdp_ctx *pdp;
Harald Welte9b455bf2010-03-14 15:45:01 +08001431
Harald Welte2720e732010-05-17 00:44:57 +02001432 DEBUGP(DMM, "-> DEACTIVATE PDP CONTEXT REQ (cause: %s)\n",
Harald Welte9b455bf2010-03-14 15:45:01 +08001433 get_value_string(gsm_cause_names, gh->data[0]));
1434
Harald Welte77289c22010-05-18 14:32:29 +02001435 pdp = sgsn_pdp_ctx_by_tid(mm, transaction_id);
1436 if (!pdp) {
1437 LOGP(DMM, LOGL_NOTICE, "Deactivate PDP Context Request for "
1438 "non-existing PDP Context (IMSI=%s, TI=%u)\n",
1439 mm->imsi, transaction_id);
Harald Welte60ebc022010-06-08 18:08:59 +02001440 return _gsm48_tx_gsm_deact_pdp_acc(mm, transaction_id);
Harald Welte77289c22010-05-18 14:32:29 +02001441 }
1442
1443 return sgsn_delete_pdp_ctx(pdp);
Harald Welte9b455bf2010-03-14 15:45:01 +08001444}
1445
Harald Weltea9b473a2010-12-24 21:13:26 +01001446/* Section 9.5.9: Deactivate PDP Context Accept */
1447static int gsm48_rx_gsm_deact_pdp_ack(struct sgsn_mm_ctx *mm, struct msgb *msg)
1448{
1449 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_gmmh(msg);
1450 uint8_t transaction_id = (gh->proto_discr >> 4);
1451 struct sgsn_pdp_ctx *pdp;
1452
1453 DEBUGP(DMM, "-> DEACTIVATE PDP CONTEXT ACK\n");
1454
1455 pdp = sgsn_pdp_ctx_by_tid(mm, transaction_id);
1456 if (!pdp) {
1457 LOGP(DMM, LOGL_NOTICE, "Deactivate PDP Context Accept for "
1458 "non-existing PDP Context (IMSI=%s, TI=%u)\n",
1459 mm->imsi, transaction_id);
1460 return 0;
1461 }
1462
1463 return sgsn_delete_pdp_ctx(pdp);
1464}
1465
Harald Welted193cb32010-05-17 22:58:03 +02001466static int gsm48_rx_gsm_status(struct sgsn_mm_ctx *ctx, struct msgb *msg)
Harald Welte9b455bf2010-03-14 15:45:01 +08001467{
1468 struct gsm48_hdr *gh = msgb_l3(msg);
1469
Harald Welte2720e732010-05-17 00:44:57 +02001470 DEBUGP(DMM, "-> GPRS SM STATUS (cause: %s)\n",
Harald Welte9b455bf2010-03-14 15:45:01 +08001471 get_value_string(gsm_cause_names, gh->data[0]));
1472
1473 return 0;
1474}
1475
Harald Weltea9b473a2010-12-24 21:13:26 +01001476static void pdpctx_timer_cb(void *_pdp)
1477{
1478 struct sgsn_pdp_ctx *pdp = _pdp;
1479
1480 pdp->num_T_exp++;
1481
1482 switch (pdp->T) {
1483 case 3395: /* waiting for PDP CTX DEACT ACK */
1484 if (pdp->num_T_exp >= 4) {
1485 LOGP(DMM, LOGL_NOTICE, "T3395 expired >= 5 times\n");
1486 pdp->state = PDP_STATE_INACTIVE;
1487 sgsn_delete_pdp_ctx(pdp);
1488 break;
1489 }
1490 gsm48_tx_gsm_deact_pdp_req(pdp, GSM_CAUSE_NET_FAIL);
Pablo Neira Ayusobf540cb2011-05-06 12:11:06 +02001491 osmo_timer_schedule(&pdp->timer, GSM0408_T3395_SECS, 0);
Harald Weltea9b473a2010-12-24 21:13:26 +01001492 break;
1493 default:
1494 LOGP(DMM, LOGL_ERROR, "timer expired in unknown mode %u\n",
1495 pdp->T);
1496 }
1497}
1498
1499
Harald Welte9b455bf2010-03-14 15:45:01 +08001500/* GPRS Session Management */
Harald Welte807a5d82010-06-01 11:53:01 +02001501static int gsm0408_rcv_gsm(struct sgsn_mm_ctx *mmctx, struct msgb *msg,
1502 struct gprs_llc_llme *llme)
Harald Welte9b455bf2010-03-14 15:45:01 +08001503{
Harald Welte943c5bc2010-04-30 16:33:12 +02001504 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_gmmh(msg);
Harald Welte9b455bf2010-03-14 15:45:01 +08001505 int rc;
1506
Harald Welte807a5d82010-06-01 11:53:01 +02001507 /* MMCTX can be NULL when called */
1508
Harald Welted193cb32010-05-17 22:58:03 +02001509 if (!mmctx) {
1510 LOGP(DMM, LOGL_NOTICE, "Cannot handle SM for unknown MM CTX\n");
Harald Welte18d14522010-07-02 16:18:18 +02001511 gsm48_tx_gmm_status_oldmsg(msg, GMM_CAUSE_IMPL_DETACHED);
1512 return gsm48_tx_sm_status_oldmsg(msg, GSM_CAUSE_PROTO_ERR_UNSPEC);
Harald Welted193cb32010-05-17 22:58:03 +02001513 }
1514
Harald Welte9b455bf2010-03-14 15:45:01 +08001515 switch (gh->msg_type) {
1516 case GSM48_MT_GSM_ACT_PDP_REQ:
Harald Welted193cb32010-05-17 22:58:03 +02001517 rc = gsm48_rx_gsm_act_pdp_req(mmctx, msg);
Harald Welte9b455bf2010-03-14 15:45:01 +08001518 break;
1519 case GSM48_MT_GSM_DEACT_PDP_REQ:
Harald Welted193cb32010-05-17 22:58:03 +02001520 rc = gsm48_rx_gsm_deact_pdp_req(mmctx, msg);
Harald Welte77289c22010-05-18 14:32:29 +02001521 break;
Harald Weltea9b473a2010-12-24 21:13:26 +01001522 case GSM48_MT_GSM_DEACT_PDP_ACK:
1523 rc = gsm48_rx_gsm_deact_pdp_ack(mmctx, msg);
1524 break;
Harald Welte9b455bf2010-03-14 15:45:01 +08001525 case GSM48_MT_GSM_STATUS:
Harald Welted193cb32010-05-17 22:58:03 +02001526 rc = gsm48_rx_gsm_status(mmctx, msg);
Harald Welte9b455bf2010-03-14 15:45:01 +08001527 break;
1528 case GSM48_MT_GSM_REQ_PDP_ACT_REJ:
1529 case GSM48_MT_GSM_ACT_AA_PDP_REQ:
1530 case GSM48_MT_GSM_DEACT_AA_PDP_REQ:
1531 DEBUGP(DMM, "Unimplemented GSM 04.08 GSM msg type 0x%02x\n",
1532 gh->msg_type);
Harald Weltef54e7e22010-06-09 10:51:23 +02001533 rc = gsm48_tx_sm_status(mmctx, GSM_CAUSE_MSGT_NOTEXIST_NOTIMPL);
Harald Welte9b455bf2010-03-14 15:45:01 +08001534 break;
1535 default:
1536 DEBUGP(DMM, "Unknown GSM 04.08 GSM msg type 0x%02x\n",
1537 gh->msg_type);
Harald Weltef54e7e22010-06-09 10:51:23 +02001538 rc = gsm48_tx_sm_status(mmctx, GSM_CAUSE_MSGT_NOTEXIST_NOTIMPL);
Harald Welte9b455bf2010-03-14 15:45:01 +08001539 break;
1540
1541 }
1542
1543 return rc;
1544}
1545
1546/* Main entry point for incoming 04.08 GPRS messages */
Harald Welte807a5d82010-06-01 11:53:01 +02001547int gsm0408_gprs_rcvmsg(struct msgb *msg, struct gprs_llc_llme *llme)
Harald Welte9b455bf2010-03-14 15:45:01 +08001548{
Harald Welte943c5bc2010-04-30 16:33:12 +02001549 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_gmmh(msg);
Harald Welteeaa614c2010-05-02 11:26:34 +02001550 uint8_t pdisc = gh->proto_discr & 0x0f;
Harald Welted193cb32010-05-17 22:58:03 +02001551 struct sgsn_mm_ctx *mmctx;
1552 struct gprs_ra_id ra_id;
Harald Welte9b455bf2010-03-14 15:45:01 +08001553 int rc = -EINVAL;
1554
Harald Welted193cb32010-05-17 22:58:03 +02001555 bssgp_parse_cell_id(&ra_id, msgb_bcid(msg));
1556 mmctx = sgsn_mm_ctx_by_tlli(msgb_tlli(msg), &ra_id);
Harald Welte8acd88f2010-05-18 10:57:45 +02001557 if (mmctx) {
Harald Welte6abf94e2010-05-18 10:35:06 +02001558 msgid2mmctx(mmctx, msg);
Harald Welte8acd88f2010-05-18 10:57:45 +02001559 rate_ctr_inc(&mmctx->ctrg->ctr[GMM_CTR_PKTS_SIG_IN]);
Harald Welte807a5d82010-06-01 11:53:01 +02001560 mmctx->llme = llme;
Harald Welte8acd88f2010-05-18 10:57:45 +02001561 }
Harald Welted193cb32010-05-17 22:58:03 +02001562
1563 /* MMCTX can be NULL */
1564
Harald Welte9b455bf2010-03-14 15:45:01 +08001565 switch (pdisc) {
1566 case GSM48_PDISC_MM_GPRS:
Harald Welte807a5d82010-06-01 11:53:01 +02001567 rc = gsm0408_rcv_gmm(mmctx, msg, llme);
Harald Welte9b455bf2010-03-14 15:45:01 +08001568 break;
1569 case GSM48_PDISC_SM_GPRS:
Harald Welte807a5d82010-06-01 11:53:01 +02001570 rc = gsm0408_rcv_gsm(mmctx, msg, llme);
Harald Welte9b455bf2010-03-14 15:45:01 +08001571 break;
1572 default:
1573 DEBUGP(DMM, "Unknown GSM 04.08 discriminator 0x%02x\n",
1574 pdisc);
Harald Welte6abf94e2010-05-18 10:35:06 +02001575 /* FIXME: return status message */
Harald Welte9b455bf2010-03-14 15:45:01 +08001576 break;
1577 }
1578
1579 return rc;
1580}
Harald Welte5bfe4992010-06-09 11:22:47 +02001581
1582int gprs_gmm_rx_suspend(struct gprs_ra_id *raid, uint32_t tlli)
1583{
1584 struct sgsn_mm_ctx *mmctx;
1585
1586 mmctx = sgsn_mm_ctx_by_tlli(tlli, raid);
1587 if (!mmctx) {
1588 LOGP(DMM, LOGL_NOTICE, "SUSPEND request for unknown "
1589 "TLLI=%08x\n", tlli);
1590 return -EINVAL;
1591 }
1592
1593 if (mmctx->mm_state != GMM_REGISTERED_NORMAL) {
1594 LOGP(DMM, LOGL_NOTICE, "SUSPEND request while state "
1595 "!= REGISTERED (TLLI=%08x)\n", tlli);
1596 return -EINVAL;
1597 }
1598
1599 /* Transition from REGISTERED_NORMAL to REGISTERED_SUSPENDED */
1600 mmctx->mm_state = GMM_REGISTERED_SUSPENDED;
1601 return 0;
1602}
1603
1604int gprs_gmm_rx_resume(struct gprs_ra_id *raid, uint32_t tlli,
1605 uint8_t suspend_ref)
1606{
1607 struct sgsn_mm_ctx *mmctx;
1608
1609 /* FIXME: make use of suspend reference? */
1610
1611 mmctx = sgsn_mm_ctx_by_tlli(tlli, raid);
1612 if (!mmctx) {
1613 LOGP(DMM, LOGL_NOTICE, "RESUME request for unknown "
1614 "TLLI=%08x\n", tlli);
1615 return -EINVAL;
1616 }
1617
1618 if (mmctx->mm_state != GMM_REGISTERED_SUSPENDED) {
1619 LOGP(DMM, LOGL_NOTICE, "RESUME request while state "
1620 "!= SUSPENDED (TLLI=%08x)\n", tlli);
1621 /* FIXME: should we not simply ignore it? */
1622 return -EINVAL;
1623 }
1624
1625 /* Transition from SUSPENDED to NORMAL */
1626 mmctx->mm_state = GMM_REGISTERED_NORMAL;
1627 return 0;
1628}