blob: 9fee9e1a422e06cd855e1f02cb47714296b266ea [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 Welte9b455bf2010-03-14 15:45:01 +08005 *
6 * All Rights Reserved
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License along
19 * with this program; if not, write to the Free Software Foundation, Inc.,
20 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
21 *
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>
34#include <osmocore/msgb.h>
35#include <osmocore/tlv.h>
Harald Welted6057092010-05-02 12:57:45 +020036#include <osmocore/gsm_utils.h>
37#include <osmocore/signal.h>
38#include <osmocore/talloc.h>
Harald Welte8acd88f2010-05-18 10:57:45 +020039#include <osmocore/rate_ctr.h>
Harald Welted6057092010-05-02 12:57:45 +020040
Harald Welte9b455bf2010-03-14 15:45:01 +080041#include <openbsc/debug.h>
42#include <openbsc/gsm_data.h>
Harald Welte9b455bf2010-03-14 15:45:01 +080043#include <openbsc/gsm_subscriber.h>
44#include <openbsc/gsm_04_08.h>
45#include <openbsc/gsm_04_08_gprs.h>
46#include <openbsc/paging.h>
Harald Welte9b455bf2010-03-14 15:45:01 +080047#include <openbsc/transaction.h>
Harald Welte11d7c102010-05-02 11:54:55 +020048#include <openbsc/gprs_bssgp.h>
Harald Welte9b455bf2010-03-14 15:45:01 +080049#include <openbsc/gprs_llc.h>
50#include <openbsc/gprs_sgsn.h>
Harald Welte6abf94e2010-05-18 10:35:06 +020051#include <openbsc/gprs_gmm.h>
Harald Welted193cb32010-05-17 22:58:03 +020052#include <openbsc/sgsn.h>
53
Harald Welte6abf94e2010-05-18 10:35:06 +020054#include <pdp.h>
55
Harald Welted193cb32010-05-17 22:58:03 +020056extern struct sgsn_instance *sgsn;
Harald Welte77289c22010-05-18 14:32:29 +020057extern struct ggsn_ctx *dummy_ggsn;
Harald Welte9b455bf2010-03-14 15:45:01 +080058
Harald Welte2720e732010-05-17 00:44:57 +020059/* Protocol related stuff, should go into libosmocore */
60
Harald Welte9b455bf2010-03-14 15:45:01 +080061/* 10.5.5.14 GPRS MM Cause / Table 10.5.147 */
Harald Welte2720e732010-05-17 00:44:57 +020062const struct value_string gmm_cause_names[] = {
Harald Welte9b455bf2010-03-14 15:45:01 +080063 /* FIXME */
64 { GMM_CAUSE_SEM_INCORR_MSG, "Semantically incorrect message" },
65 { GMM_CAUSE_INV_MAND_INFO, "Invalid mandatory information" },
66 { GMM_CAUSE_MSGT_NOTEXIST_NOTIMPL,
67 "Message type non-existant or not implemented" },
68 { GMM_CAUSE_MSGT_INCOMP_P_STATE,
69 "Message type not compatible with protocol state" },
70 { GMM_CAUSE_IE_NOTEXIST_NOTIMPL,
71 "Information element non-existent or not implemented" },
72 { GMM_CAUSE_COND_IE_ERR, "Conditional IE error" },
73 { GMM_CAUSE_MSG_INCOMP_P_STATE,
74 "Message not compatible with protocol state " },
75 { GMM_CAUSE_PROTO_ERR_UNSPEC, "Protocol error, unspecified" },
76 { 0, NULL }
77};
78
79/* 10.5.6.6 SM Cause / Table 10.5.157 */
Harald Welte2720e732010-05-17 00:44:57 +020080const struct value_string gsm_cause_names[] = {
Harald Welte9b455bf2010-03-14 15:45:01 +080081 { GSM_CAUSE_INSUFF_RSRC, "Insufficient resources" },
82 { GSM_CAUSE_MISSING_APN, "Missing or unknown APN" },
83 { GSM_CAUSE_UNKNOWN_PDP, "Unknown PDP address or PDP type" },
84 { GSM_CAUSE_AUTH_FAILED, "User Authentication failed" },
85 { GSM_CAUSE_ACT_REJ_GGSN, "Activation rejected by GGSN" },
86 { GSM_CAUSE_ACT_REJ_UNSPEC, "Activation rejected, unspecified" },
87 { GSM_CAUSE_SERV_OPT_NOTSUPP, "Service option not supported" },
88 { GSM_CAUSE_REQ_SERV_OPT_NOTSUB,
89 "Requested service option not subscribed" },
90 { GSM_CAUSE_SERV_OPT_TEMP_OOO,
91 "Service option temporarily out of order" },
92 { GSM_CAUSE_NSAPI_IN_USE, "NSAPI already used" },
93 { GSM_CAUSE_DEACT_REGULAR, "Regular deactivation" },
94 { GSM_CAUSE_QOS_NOT_ACCEPTED, "QoS not accepted" },
95 { GSM_CAUSE_NET_FAIL, "Network Failure" },
96 { GSM_CAUSE_REACT_RQD, "Reactivation required" },
97 { GSM_CAUSE_FEATURE_NOTSUPP, "Feature not supported " },
98 { GSM_CAUSE_INVALID_TRANS_ID, "Invalid transaction identifier" },
99 { GSM_CAUSE_SEM_INCORR_MSG, "Semantically incorrect message" },
100 { GSM_CAUSE_INV_MAND_INFO, "Invalid mandatory information" },
101 { GSM_CAUSE_MSGT_NOTEXIST_NOTIMPL,
102 "Message type non-existant or not implemented" },
103 { GSM_CAUSE_MSGT_INCOMP_P_STATE,
104 "Message type not compatible with protocol state" },
105 { GSM_CAUSE_IE_NOTEXIST_NOTIMPL,
106 "Information element non-existent or not implemented" },
107 { GSM_CAUSE_COND_IE_ERR, "Conditional IE error" },
108 { GSM_CAUSE_MSG_INCOMP_P_STATE,
109 "Message not compatible with protocol state " },
110 { GSM_CAUSE_PROTO_ERR_UNSPEC, "Protocol error, unspecified" },
111 { 0, NULL }
112};
113
Harald Welte2720e732010-05-17 00:44:57 +0200114/* 10.5.5.2 */
115const struct value_string gprs_att_t_strs[] = {
116 { GPRS_ATT_T_ATTACH, "GPRS attach" },
117 { GPRS_ATT_T_ATT_WHILE_IMSI, "GPRS attach while IMSI attached" },
118 { GPRS_ATT_T_COMBINED, "Combined GPRS/IMSI attach" },
119 { 0, NULL }
120};
Harald Welte9b455bf2010-03-14 15:45:01 +0800121
Harald Welte2720e732010-05-17 00:44:57 +0200122const struct value_string gprs_upd_t_strs[] = {
123 { GPRS_UPD_T_RA, "RA updating" },
124 { GPRS_UPD_T_RA_LA, "combined RA/LA updating" },
125 { GPRS_UPD_T_RA_LA_IMSI_ATT, "combined RA/LA updating + IMSI attach" },
126 { GPRS_UPD_T_PERIODIC, "periodic updating" },
127 { 0, NULL }
128};
129
130/* 10.5.5.5 */
131const struct value_string gprs_det_t_mo_strs[] = {
132 { GPRS_DET_T_MO_GPRS, "GPRS detach" },
133 { GPRS_DET_T_MO_IMSI, "IMSI detach" },
134 { GPRS_DET_T_MO_COMBINED, "Combined GPRS/IMSI detach" },
135 { 0, NULL }
136};
137
138/* Our implementation, should be kept in SGSN */
Harald Welte9b455bf2010-03-14 15:45:01 +0800139
Harald Welte9b455bf2010-03-14 15:45:01 +0800140/* Send a message through the underlying layer */
Harald Welte8acd88f2010-05-18 10:57:45 +0200141static int gsm48_gmm_sendmsg(struct msgb *msg, int command,
142 const struct sgsn_mm_ctx *mm)
Harald Welte9b455bf2010-03-14 15:45:01 +0800143{
Harald Welte8acd88f2010-05-18 10:57:45 +0200144 if (mm)
145 rate_ctr_inc(&mm->ctrg->ctr[GMM_CTR_PKTS_SIG_OUT]);
146
Harald Welte11d7c102010-05-02 11:54:55 +0200147 /* caller needs to provide TLLI, BVCI and NSEI */
Harald Welte9b455bf2010-03-14 15:45:01 +0800148 return gprs_llc_tx_ui(msg, GPRS_SAPI_GMM, command);
149}
150
Harald Welte11d7c102010-05-02 11:54:55 +0200151/* copy identifiers from old message to new message, this
152 * is required so lower layers can route it correctly */
153static void gmm_copy_id(struct msgb *msg, const struct msgb *old)
154{
155 msgb_tlli(msg) = msgb_tlli(old);
156 msgb_bvci(msg) = msgb_bvci(old);
157 msgb_nsei(msg) = msgb_nsei(old);
158}
159
Harald Welte6abf94e2010-05-18 10:35:06 +0200160/* Store BVCI/NSEI in MM context */
161static void msgid2mmctx(struct sgsn_mm_ctx *mm, const struct msgb *msg)
162{
163 mm->bvci = msgb_bvci(msg);
164 mm->nsei = msgb_nsei(msg);
165}
166
167/* Store BVCI/NSEI in MM context */
168static void mmctx2msgid(struct msgb *msg, const struct sgsn_mm_ctx *mm)
169{
170 msgb_tlli(msg) = mm->tlli;
171 msgb_bvci(msg) = mm->bvci;
172 msgb_nsei(msg) = mm->nsei;
173}
174
Harald Welte86fda902010-05-03 10:54:35 +0200175static struct gsm48_qos default_qos = {
176 .delay_class = 4, /* best effort */
177 .reliab_class = GSM48_QOS_RC_LLC_UN_RLC_ACK_DATA_PROT,
178 .peak_tput = GSM48_QOS_PEAK_TPUT_32000bps,
179 .preced_class = GSM48_QOS_PC_NORMAL,
180 .mean_tput = GSM48_QOS_MEAN_TPUT_BEST_EFFORT,
181 .traf_class = GSM48_QOS_TC_INTERACTIVE,
182 .deliv_order = GSM48_QOS_DO_UNORDERED,
183 .deliv_err_sdu = GSM48_QOS_ERRSDU_YES,
184 .max_sdu_size = GSM48_QOS_MAXSDU_1520,
185 .max_bitrate_up = GSM48_QOS_MBRATE_63k,
186 .max_bitrate_down = GSM48_QOS_MBRATE_63k,
187 .resid_ber = GSM48_QOS_RBER_5e_2,
188 .sdu_err_ratio = GSM48_QOS_SERR_1e_2,
189 .handling_prio = 3,
190 .xfer_delay = 0x10, /* 200ms */
191 .guar_bitrate_up = GSM48_QOS_MBRATE_0k,
192 .guar_bitrate_down = GSM48_QOS_MBRATE_0k,
193 .sig_ind = 0, /* not optimised for signalling */
194 .max_bitrate_down_ext = 0, /* use octet 9 */
195 .guar_bitrate_down_ext = 0, /* use octet 13 */
196};
197
Harald Welte9b455bf2010-03-14 15:45:01 +0800198/* Chapter 9.4.2: Attach accept */
Harald Welte6463c072010-05-18 17:04:55 +0200199static int gsm48_tx_gmm_att_ack(struct sgsn_mm_ctx *mm)
Harald Welte9b455bf2010-03-14 15:45:01 +0800200{
201 struct msgb *msg = gsm48_msgb_alloc();
202 struct gsm48_hdr *gh;
203 struct gsm48_attach_ack *aa;
Harald Welte6463c072010-05-18 17:04:55 +0200204 char *ptsig, *mid;
Harald Welte9b455bf2010-03-14 15:45:01 +0800205
206 DEBUGP(DMM, "<- GPRS ATTACH ACCEPT\n");
207
Harald Welte6463c072010-05-18 17:04:55 +0200208 mmctx2msgid(msg, mm);
Harald Welte9b455bf2010-03-14 15:45:01 +0800209
210 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
211 gh->proto_discr = GSM48_PDISC_MM_GPRS;
212 gh->msg_type = GSM48_MT_GMM_ATTACH_ACK;
213
214 aa = (struct gsm48_attach_ack *) msgb_put(msg, sizeof(*aa));
215 aa->force_stby = 0; /* not indicated */
216 aa->att_result = 1; /* GPRS only */
217 aa->ra_upd_timer = GPRS_TMR_MINUTE | 10;
218 aa->radio_prio = 4; /* lowest */
Harald Welte6463c072010-05-18 17:04:55 +0200219 gsm48_construct_ra(aa->ra_id.digits, &mm->ra);
Harald Welte9b455bf2010-03-14 15:45:01 +0800220
Harald Welte6463c072010-05-18 17:04:55 +0200221 /* Optional: P-TMSI signature */
222 msgb_v_put(msg, GSM48_IE_GMM_PTMSI_SIG);
223 ptsig = msgb_put(msg, 3);
224 ptsig[0] = mm->p_tmsi_sig >> 16;
225 ptsig[1] = mm->p_tmsi_sig >> 8;
226 ptsig[2] = mm->p_tmsi_sig & 0xff;
227
228 /* Optional: Negotiated Ready timer value */
229
230 /* Optional: Allocated P-TMSI */
231 msgb_v_put(msg, GSM48_IE_GMM_ALLOC_PTMSI);
232 mid = msgb_put(msg, GSM48_MID_TMSI_LEN);
233 gsm48_generate_mid_from_tmsi(mid, mm->p_tmsi);
234
235 /* Optional: MS-identity (combined attach) */
236 /* Optional: GMM cause (partial attach result for combined attach) */
237
Harald Welte8acd88f2010-05-18 10:57:45 +0200238 return gsm48_gmm_sendmsg(msg, 0, NULL);
Harald Welte9b455bf2010-03-14 15:45:01 +0800239}
240
241/* Chapter 9.4.5: Attach reject */
Harald Welte6463c072010-05-18 17:04:55 +0200242static int _tx_gmm_att_rej(struct msgb *msg, uint8_t gmm_cause)
Harald Welte9b455bf2010-03-14 15:45:01 +0800243{
Harald Welte9b455bf2010-03-14 15:45:01 +0800244 struct gsm48_hdr *gh;
245
246 DEBUGP(DMM, "<- GPRS ATTACH REJECT\n");
247
Harald Welte9b455bf2010-03-14 15:45:01 +0800248 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh) + 1);
249 gh->proto_discr = GSM48_PDISC_MM_GPRS;
250 gh->msg_type = GSM48_MT_GMM_ATTACH_REJ;
251 gh->data[0] = gmm_cause;
252
Harald Welte8acd88f2010-05-18 10:57:45 +0200253 return gsm48_gmm_sendmsg(msg, 0, NULL);
Harald Welte9b455bf2010-03-14 15:45:01 +0800254}
Harald Welte6463c072010-05-18 17:04:55 +0200255static int gsm48_tx_gmm_att_rej_oldmsg(const struct msgb *old_msg,
256 uint8_t gmm_cause)
257{
258 struct msgb *msg = gsm48_msgb_alloc();
259 gmm_copy_id(msg, old_msg);
260 return _tx_gmm_att_rej(msg, gmm_cause);
261}
262static int gsm48_tx_gmm_att_rej(struct sgsn_mm_ctx *mm,
263 uint8_t gmm_cause)
264{
265 struct msgb *msg = gsm48_msgb_alloc();
266 mmctx2msgid(msg, mm);
267 return _tx_gmm_att_rej(msg, gmm_cause);
268}
Harald Welte9b455bf2010-03-14 15:45:01 +0800269
Harald Welte2720e732010-05-17 00:44:57 +0200270/* Chapter 9.4.6.2 Detach accept */
Harald Welte6463c072010-05-18 17:04:55 +0200271static gsm48_tx_gmm_det_ack(struct sgsn_mm_ctx *mm, uint8_t force_stby)
Harald Welte2720e732010-05-17 00:44:57 +0200272{
273 struct msgb *msg = gsm48_msgb_alloc();
274 struct gsm48_hdr *gh;
275
276 DEBUGP(DMM, "<- GPRS DETACH ACCEPT\n");
277
Harald Welte6463c072010-05-18 17:04:55 +0200278 mmctx2msgid(msg, mm);
279
Harald Welte2720e732010-05-17 00:44:57 +0200280 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh) + 1);
281 gh->proto_discr = GSM48_PDISC_MM_GPRS;
282 gh->msg_type = GSM48_MT_GMM_DETACH_ACK;
283 gh->data[0] = force_stby;
284
Harald Welte8acd88f2010-05-18 10:57:45 +0200285 return gsm48_gmm_sendmsg(msg, 0, NULL);
Harald Welte2720e732010-05-17 00:44:57 +0200286}
287
Harald Welte9b455bf2010-03-14 15:45:01 +0800288/* Transmit Chapter 9.4.12 Identity Request */
Harald Welte6463c072010-05-18 17:04:55 +0200289static int gsm48_tx_gmm_id_req(struct sgsn_mm_ctx *mm, uint8_t id_type)
Harald Welte9b455bf2010-03-14 15:45:01 +0800290{
291 struct msgb *msg = gsm48_msgb_alloc();
292 struct gsm48_hdr *gh;
293
294 DEBUGP(DMM, "-> GPRS IDENTITY REQUEST: mi_type=%02x\n", id_type);
295
Harald Welte6463c072010-05-18 17:04:55 +0200296 mmctx2msgid(msg, mm);
Harald Welte9b455bf2010-03-14 15:45:01 +0800297
298 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh) + 1);
299 gh->proto_discr = GSM48_PDISC_MM_GPRS;
300 gh->msg_type = GSM48_MT_GMM_ID_REQ;
301 /* 10.5.5.9 ID type 2 + identity type and 10.5.5.7 'force to standby' IE */
302 gh->data[0] = id_type & 0xf;
303
Harald Welte8acd88f2010-05-18 10:57:45 +0200304 return gsm48_gmm_sendmsg(msg, 0, NULL);
Harald Welte9b455bf2010-03-14 15:45:01 +0800305}
306
307/* Check if we can already authorize a subscriber */
Harald Welte6463c072010-05-18 17:04:55 +0200308static int gsm48_gmm_authorize(struct sgsn_mm_ctx *ctx)
Harald Welte9b455bf2010-03-14 15:45:01 +0800309{
310 if (strlen(ctx->imei) && strlen(ctx->imsi)) {
311 ctx->mm_state = GMM_REGISTERED_NORMAL;
Harald Welte6463c072010-05-18 17:04:55 +0200312 return gsm48_tx_gmm_att_ack(ctx);
Harald Welte9b455bf2010-03-14 15:45:01 +0800313 }
314 if (!strlen(ctx->imei))
Harald Welte6463c072010-05-18 17:04:55 +0200315 return gsm48_tx_gmm_id_req(ctx, GSM_MI_TYPE_IMEI);
Harald Welte9b455bf2010-03-14 15:45:01 +0800316
317 if (!strlen(ctx->imsi))
Harald Welte6463c072010-05-18 17:04:55 +0200318 return gsm48_tx_gmm_id_req(ctx, GSM_MI_TYPE_IMSI);
Harald Welte9b455bf2010-03-14 15:45:01 +0800319
320 return 0;
321}
322
323/* Parse Chapter 9.4.13 Identity Response */
Harald Welted193cb32010-05-17 22:58:03 +0200324static int gsm48_rx_gmm_id_resp(struct sgsn_mm_ctx *ctx, struct msgb *msg)
Harald Welte9b455bf2010-03-14 15:45:01 +0800325{
Harald Welte943c5bc2010-04-30 16:33:12 +0200326 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_gmmh(msg);
Harald Welteeaa614c2010-05-02 11:26:34 +0200327 uint8_t mi_type = gh->data[1] & GSM_MI_TYPE_MASK;
Harald Welte9b455bf2010-03-14 15:45:01 +0800328 char mi_string[GSM48_MI_SIZE];
329 struct gprs_ra_id ra_id;
Harald Welte9b455bf2010-03-14 15:45:01 +0800330
331 gsm48_mi_to_string(mi_string, sizeof(mi_string), &gh->data[1], gh->data[0]);
Harald Welte2720e732010-05-17 00:44:57 +0200332 DEBUGP(DMM, "-> GMM IDENTITY RESPONSE: mi_type=0x%02x MI(%s) ",
Harald Welte9b455bf2010-03-14 15:45:01 +0800333 mi_type, mi_string);
334
Harald Welte9b455bf2010-03-14 15:45:01 +0800335 if (!ctx) {
Harald Welte943c5bc2010-04-30 16:33:12 +0200336 DEBUGP(DMM, "from unknown TLLI 0x%08x?!?\n", msgb_tlli(msg));
Harald Welte9b455bf2010-03-14 15:45:01 +0800337 return -EINVAL;
338 }
339
340 switch (mi_type) {
341 case GSM_MI_TYPE_IMSI:
342 /* we already have a mm context with current TLLI, but no
343 * P-TMSI / IMSI yet. What we now need to do is to fill
344 * this initial context with data from the HLR */
345 strncpy(ctx->imsi, mi_string, sizeof(ctx->imei));
346 break;
347 case GSM_MI_TYPE_IMEI:
348 strncpy(ctx->imei, mi_string, sizeof(ctx->imei));
349 break;
350 case GSM_MI_TYPE_IMEISV:
351 break;
352 }
353
354 DEBUGPC(DMM, "\n");
355 /* Check if we can let the mobile station enter */
Harald Welte6463c072010-05-18 17:04:55 +0200356 return gsm48_gmm_authorize(ctx);
Harald Welte9b455bf2010-03-14 15:45:01 +0800357}
358
359static void attach_rej_cb(void *data)
360{
361 struct sgsn_mm_ctx *ctx = data;
362
Harald Welte6463c072010-05-18 17:04:55 +0200363 gsm48_tx_gmm_att_rej(ctx, GMM_CAUSE_MS_ID_NOT_DERIVED);
Harald Welte9b455bf2010-03-14 15:45:01 +0800364 ctx->mm_state = GMM_DEREGISTERED;
365 /* FIXME: release the context */
366}
367
368static void schedule_reject(struct sgsn_mm_ctx *ctx)
369{
370 ctx->T = 3370;
371 ctx->timer.cb = attach_rej_cb;
372 ctx->timer.data = ctx;
373 bsc_schedule_timer(&ctx->timer, 6, 0);
374}
375
376/* Section 9.4.1 Attach request */
Harald Welted193cb32010-05-17 22:58:03 +0200377static int gsm48_rx_gmm_att_req(struct sgsn_mm_ctx *mmctx, struct msgb *msg)
Harald Welte9b455bf2010-03-14 15:45:01 +0800378{
Harald Welte943c5bc2010-04-30 16:33:12 +0200379 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_gmmh(msg);
Harald Welteeaa614c2010-05-02 11:26:34 +0200380 uint8_t *cur = gh->data, *msnc, *mi, *old_ra_info;
381 uint8_t msnc_len, att_type, mi_len, mi_type;
382 uint16_t drx_par;
383 uint32_t tmsi;
Harald Welte9b455bf2010-03-14 15:45:01 +0800384 char mi_string[GSM48_MI_SIZE];
385 struct gprs_ra_id ra_id;
Harald Welte9f1f3ad2010-05-02 12:56:57 +0200386 uint16_t cid;
Harald Welte9b455bf2010-03-14 15:45:01 +0800387 struct sgsn_mm_ctx *ctx;
388
Harald Welte2720e732010-05-17 00:44:57 +0200389 DEBUGP(DMM, "-> GMM ATTACH REQUEST ");
Harald Welte9b455bf2010-03-14 15:45:01 +0800390
391 /* As per TS 04.08 Chapter 4.7.1.4, the attach request arrives either
392 * with a foreign TLLI (P-TMSI that was allocated to the MS before),
393 * or with random TLLI. */
394
Harald Welte9f1f3ad2010-05-02 12:56:57 +0200395 cid = bssgp_parse_cell_id(&ra_id, msgb_bcid(msg));
Harald Welte9b455bf2010-03-14 15:45:01 +0800396
397 /* MS network capability 10.5.5.12 */
398 msnc_len = *cur++;
399 msnc = cur;
400 if (msnc_len > 2)
401 goto err_inval;
402 cur += msnc_len;
403
404 /* aTTACH Type 10.5.5.2 */
405 att_type = *cur++ & 0x0f;
406
407 /* DRX parameter 10.5.5.6 */
408 drx_par = *cur++;
409 drx_par |= *cur++ << 8;
410
411 /* Mobile Identity (P-TMSI or IMSI) 10.5.1.4 */
412 mi_len = *cur++;
413 mi = cur;
414 if (mi_len > 8)
415 goto err_inval;
416 mi_type = *mi & GSM_MI_TYPE_MASK;
417 cur += mi_len;
418
419 gsm48_mi_to_string(mi_string, sizeof(mi_string), mi, mi_len);
420
Harald Welte2720e732010-05-17 00:44:57 +0200421 DEBUGPC(DMM, "MI(%s) type=\"%s\" ", mi_string,
422 get_value_string(gprs_att_t_strs, att_type));
Harald Welte9b455bf2010-03-14 15:45:01 +0800423
424 /* Old routing area identification 10.5.5.15 */
425 old_ra_info = cur;
426 cur += 6;
427
428 /* MS Radio Access Capability 10.5.5.12a */
429
430 /* Optional: Old P-TMSI Signature, Requested READY timer, TMSI Status */
431
432 switch (mi_type) {
433 case GSM_MI_TYPE_IMSI:
434 /* Try to find MM context based on IMSI */
435 ctx = sgsn_mm_ctx_by_imsi(mi_string);
436 if (!ctx) {
437#if 0
438 return gsm48_tx_gmm_att_rej(msg, GMM_CAUSE_IMSI_UNKNOWN);
439#else
440 /* As a temorary hack, we simply assume that the IMSI exists */
441 ctx = sgsn_mm_ctx_alloc(0, &ra_id);
442 if (!ctx)
Harald Welte6463c072010-05-18 17:04:55 +0200443 return gsm48_tx_gmm_att_rej_oldmsg(msg, GMM_CAUSE_NET_FAIL);
Harald Welte9b455bf2010-03-14 15:45:01 +0800444 strncpy(ctx->imsi, mi_string, sizeof(ctx->imsi));
445#endif
446 }
447 /* FIXME: Start some timer */
448 ctx->mm_state = GMM_COMMON_PROC_INIT;
Harald Welte943c5bc2010-04-30 16:33:12 +0200449 ctx->tlli = msgb_tlli(msg);
Harald Welte68b99a42010-05-18 12:05:42 +0200450 msgid2mmctx(ctx, msg);
Harald Welte9b455bf2010-03-14 15:45:01 +0800451 break;
452 case GSM_MI_TYPE_TMSI:
453 tmsi = strtoul(mi_string, NULL, 10);
454 /* Try to find MM context based on P-TMSI */
455 ctx = sgsn_mm_ctx_by_ptmsi(tmsi);
456 if (!ctx) {
Harald Welte943c5bc2010-04-30 16:33:12 +0200457 ctx = sgsn_mm_ctx_alloc(msgb_tlli(msg), &ra_id);
Harald Welte9b455bf2010-03-14 15:45:01 +0800458 /* FIXME: Start some timer */
459 ctx->mm_state = GMM_COMMON_PROC_INIT;
Harald Welte943c5bc2010-04-30 16:33:12 +0200460 ctx->tlli = msgb_tlli(msg);
Harald Welte68b99a42010-05-18 12:05:42 +0200461 msgid2mmctx(ctx, msg);
Harald Welte9b455bf2010-03-14 15:45:01 +0800462 }
Harald Welte6463c072010-05-18 17:04:55 +0200463 ctx->p_tmsi = tmsi;
Harald Welte9b455bf2010-03-14 15:45:01 +0800464 break;
465 default:
Harald Welte9f1f3ad2010-05-02 12:56:57 +0200466 return 0;
Harald Welte9b455bf2010-03-14 15:45:01 +0800467 }
Harald Welte9f1f3ad2010-05-02 12:56:57 +0200468 /* Update MM Context with currient RA and Cell ID */
469 ctx->ra = ra_id;
470 ctx->cell_id = cid;
Harald Welte9b455bf2010-03-14 15:45:01 +0800471
Harald Welte6463c072010-05-18 17:04:55 +0200472 /* Allocate a new P-TMSI (+ P-TMSI signature) */
473 ctx->p_tmsi = sgsn_alloc_ptmsi();
474
Harald Welte9b455bf2010-03-14 15:45:01 +0800475 /* FIXME: update the TLLI with the new local TLLI based on the P-TMSI */
476
477 DEBUGPC(DMM, "\n");
478
Harald Welte6463c072010-05-18 17:04:55 +0200479 return ctx ? gsm48_gmm_authorize(ctx) : 0;
Harald Welte9b455bf2010-03-14 15:45:01 +0800480
481err_inval:
482 DEBUGPC(DMM, "\n");
Harald Welte6463c072010-05-18 17:04:55 +0200483 return gsm48_tx_gmm_att_rej_oldmsg(msg, GMM_CAUSE_SEM_INCORR_MSG);
Harald Welte9b455bf2010-03-14 15:45:01 +0800484}
485
Harald Welte2720e732010-05-17 00:44:57 +0200486/* Section 4.7.4.1 / 9.4.5.2 MO Detach request */
Harald Welted193cb32010-05-17 22:58:03 +0200487static int gsm48_rx_gmm_det_req(struct sgsn_mm_ctx *ctx, struct msgb *msg)
Harald Welte2720e732010-05-17 00:44:57 +0200488{
489 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_gmmh(msg);
Harald Welte2720e732010-05-17 00:44:57 +0200490 uint8_t detach_type, power_off;
Harald Welte2720e732010-05-17 00:44:57 +0200491
492 detach_type = gh->data[0] & 0x7;
493 power_off = gh->data[0] & 0x8;
494
495 /* FIXME: In 24.008 there is an optional P-TMSI and P-TMSI signature IE */
496
497 DEBUGP(DMM, "-> GMM DETACH REQUEST TLLI=0x%08x type=%s %s\n",
498 msgb_tlli(msg), get_value_string(gprs_det_t_mo_strs, detach_type),
499 power_off ? "Power-off" : "");
500
501 /* Mark MM state as deregistered */
502 ctx->mm_state = GMM_DEREGISTERED;
503
504 /* force_stby = 0 */
Harald Welte6463c072010-05-18 17:04:55 +0200505 return gsm48_tx_gmm_det_ack(ctx, 0);
Harald Welte2720e732010-05-17 00:44:57 +0200506}
507
Harald Welte9b455bf2010-03-14 15:45:01 +0800508/* Chapter 9.4.15: Routing area update accept */
Harald Welte6463c072010-05-18 17:04:55 +0200509static int gsm48_tx_gmm_ra_upd_ack(struct sgsn_mm_ctx *mm)
Harald Welte9b455bf2010-03-14 15:45:01 +0800510{
511 struct msgb *msg = gsm48_msgb_alloc();
512 struct gsm48_hdr *gh;
513 struct gsm48_ra_upd_ack *rua;
514
515 DEBUGP(DMM, "<- ROUTING AREA UPDATE ACCEPT\n");
516
Harald Welte6463c072010-05-18 17:04:55 +0200517 mmctx2msgid(msg, mm);
Harald Welte9b455bf2010-03-14 15:45:01 +0800518
519 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
520 gh->proto_discr = GSM48_PDISC_MM_GPRS;
521 gh->msg_type = GSM48_MT_GMM_RA_UPD_ACK;
522
523 rua = (struct gsm48_ra_upd_ack *) msgb_put(msg, sizeof(*rua));
524 rua->force_stby = 0; /* not indicated */
525 rua->upd_result = 0; /* RA updated */
526 rua->ra_upd_timer = GPRS_TMR_MINUTE | 10;
Harald Welte11d7c102010-05-02 11:54:55 +0200527
Harald Welte6463c072010-05-18 17:04:55 +0200528 gsm48_construct_ra(rua->ra_id.digits, &mm->ra);
Harald Welte9b455bf2010-03-14 15:45:01 +0800529
530 /* Option: P-TMSI signature, allocated P-TMSI, MS ID, ... */
Harald Welte8acd88f2010-05-18 10:57:45 +0200531 return gsm48_gmm_sendmsg(msg, 0, NULL);
Harald Welte9b455bf2010-03-14 15:45:01 +0800532}
533
534/* Chapter 9.4.17: Routing area update reject */
Harald Welteeaa614c2010-05-02 11:26:34 +0200535static int gsm48_tx_gmm_ra_upd_rej(struct msgb *old_msg, uint8_t cause)
Harald Welte9b455bf2010-03-14 15:45:01 +0800536{
537 struct msgb *msg = gsm48_msgb_alloc();
538 struct gsm48_hdr *gh;
539
540 DEBUGP(DMM, "<- ROUTING AREA UPDATE REJECT\n");
541
Harald Welte11d7c102010-05-02 11:54:55 +0200542 gmm_copy_id(msg, old_msg);
Harald Welte9b455bf2010-03-14 15:45:01 +0800543
544 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh) + 2);
545 gh->proto_discr = GSM48_PDISC_MM_GPRS;
546 gh->msg_type = GSM48_MT_GMM_RA_UPD_REJ;
547 gh->data[0] = cause;
548 gh->data[1] = 0; /* ? */
549
550 /* Option: P-TMSI signature, allocated P-TMSI, MS ID, ... */
Harald Welte8acd88f2010-05-18 10:57:45 +0200551 return gsm48_gmm_sendmsg(msg, 0, NULL);
Harald Welte9b455bf2010-03-14 15:45:01 +0800552}
553
554/* Chapter 9.4.14: Routing area update request */
Harald Welted193cb32010-05-17 22:58:03 +0200555static int gsm48_rx_gmm_ra_upd_req(struct sgsn_mm_ctx *mmctx, struct msgb *msg)
Harald Welte9b455bf2010-03-14 15:45:01 +0800556{
Harald Welte943c5bc2010-04-30 16:33:12 +0200557 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_gmmh(msg);
Harald Welteeaa614c2010-05-02 11:26:34 +0200558 uint8_t *cur = gh->data;
Harald Welte9b455bf2010-03-14 15:45:01 +0800559 struct gprs_ra_id old_ra_id;
Harald Welteeaa614c2010-05-02 11:26:34 +0200560 uint8_t upd_type;
Harald Welte9b455bf2010-03-14 15:45:01 +0800561
562 /* Update Type 10.5.5.18 */
563 upd_type = *cur++ & 0x0f;
564
Harald Welte2720e732010-05-17 00:44:57 +0200565 DEBUGP(DMM, "-> GMM RA UPDATE REQUEST type=\"%s\" ",
566 get_value_string(gprs_upd_t_strs, upd_type));
Harald Welte9b455bf2010-03-14 15:45:01 +0800567
568 /* Old routing area identification 10.5.5.15 */
569 gsm48_parse_ra(&old_ra_id, cur);
570 cur += 6;
571
572 /* MS Radio Access Capability 10.5.5.12a */
573
574 /* Optional: Old P-TMSI Signature, Requested READY timer, TMSI Status,
575 * DRX parameter, MS network capability */
576
577 switch (upd_type) {
578 case GPRS_UPD_T_RA_LA:
579 case GPRS_UPD_T_RA_LA_IMSI_ATT:
580 DEBUGPC(DMM, " unsupported in Mode III, is your SI13 corrupt?\n");
581 return gsm48_tx_gmm_ra_upd_rej(msg, GMM_CAUSE_PROTO_ERR_UNSPEC);
582 break;
583 case GPRS_UPD_T_RA:
584 case GPRS_UPD_T_PERIODIC:
585 break;
586 }
587
588 /* Look-up the MM context based on old RA-ID and TLLI */
Harald Welte9b455bf2010-03-14 15:45:01 +0800589 if (!mmctx || mmctx->mm_state == GMM_DEREGISTERED) {
590 /* The MS has to perform GPRS attach */
591 DEBUGPC(DMM, " REJECT\n");
592 return gsm48_tx_gmm_ra_upd_rej(msg, GMM_CAUSE_IMPL_DETACHED);
593 }
594
Harald Welte9f1f3ad2010-05-02 12:56:57 +0200595 /* Update the MM context with the new RA-ID */
596 bssgp_parse_cell_id(&mmctx->ra, msgb_bcid(msg));
597 /* Update the MM context with the new TLLI */
598 mmctx->tlli = msgb_tlli(msg);
Harald Welte9b455bf2010-03-14 15:45:01 +0800599 /* FIXME: Update the MM context with the MS radio acc capabilities */
600 /* FIXME: Update the MM context with the MS network capabilities */
601
Harald Welte77289c22010-05-18 14:32:29 +0200602 rate_ctr_inc(&mmctx->ctrg->ctr[GMM_CTR_RA_UPDATE]);
603
Harald Welte9b455bf2010-03-14 15:45:01 +0800604 DEBUGPC(DMM, " ACCEPT\n");
Harald Welte6463c072010-05-18 17:04:55 +0200605 return gsm48_tx_gmm_ra_upd_ack(mmctx);
Harald Welte9b455bf2010-03-14 15:45:01 +0800606}
607
Harald Welted193cb32010-05-17 22:58:03 +0200608static int gsm48_rx_gmm_status(struct sgsn_mm_ctx *mmctx, struct msgb *msg)
Harald Welte9b455bf2010-03-14 15:45:01 +0800609{
610 struct gsm48_hdr *gh = msgb_l3(msg);
611
Harald Welte2720e732010-05-17 00:44:57 +0200612 DEBUGP(DMM, "-> GPRS MM STATUS (cause: %s)\n",
Harald Welte9b455bf2010-03-14 15:45:01 +0800613 get_value_string(gmm_cause_names, gh->data[0]));
614
615 return 0;
616}
617
618/* GPRS Mobility Management */
Harald Welted193cb32010-05-17 22:58:03 +0200619static int gsm0408_rcv_gmm(struct sgsn_mm_ctx *mmctx, struct msgb *msg)
Harald Welte9b455bf2010-03-14 15:45:01 +0800620{
Harald Welte943c5bc2010-04-30 16:33:12 +0200621 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_gmmh(msg);
Harald Welte9b455bf2010-03-14 15:45:01 +0800622 int rc;
623
Harald Welted193cb32010-05-17 22:58:03 +0200624 if (!mmctx &&
625 gh->msg_type != GSM48_MT_GMM_ATTACH_REQ &&
626 gh->msg_type != GSM48_MT_GMM_RA_UPD_REQ) {
627 LOGP(DMM, LOGL_NOTICE, "Cannot handle GMM for unknown MM CTX\n");
Harald Welte77289c22010-05-18 14:32:29 +0200628 /* FIXME: Send GMM_CAUSE_IMPL_DETACHED */
Harald Welted193cb32010-05-17 22:58:03 +0200629 return -EINVAL;
630 }
631
632
Harald Welte9b455bf2010-03-14 15:45:01 +0800633 switch (gh->msg_type) {
634 case GSM48_MT_GMM_RA_UPD_REQ:
Harald Welted193cb32010-05-17 22:58:03 +0200635 rc = gsm48_rx_gmm_ra_upd_req(mmctx, msg);
Harald Welte9b455bf2010-03-14 15:45:01 +0800636 break;
637 case GSM48_MT_GMM_ATTACH_REQ:
Harald Welted193cb32010-05-17 22:58:03 +0200638 rc = gsm48_rx_gmm_att_req(mmctx, msg);
Harald Welte9b455bf2010-03-14 15:45:01 +0800639 break;
640 case GSM48_MT_GMM_ID_RESP:
Harald Welted193cb32010-05-17 22:58:03 +0200641 rc = gsm48_rx_gmm_id_resp(mmctx, msg);
Harald Welte9b455bf2010-03-14 15:45:01 +0800642 break;
643 case GSM48_MT_GMM_STATUS:
Harald Welted193cb32010-05-17 22:58:03 +0200644 rc = gsm48_rx_gmm_status(mmctx, msg);
Harald Welte9b455bf2010-03-14 15:45:01 +0800645 break;
Harald Welte2720e732010-05-17 00:44:57 +0200646 case GSM48_MT_GMM_DETACH_REQ:
Harald Welted193cb32010-05-17 22:58:03 +0200647 rc = gsm48_rx_gmm_det_req(mmctx, msg);
Harald Welte2720e732010-05-17 00:44:57 +0200648 break;
Harald Welte9b455bf2010-03-14 15:45:01 +0800649 case GSM48_MT_GMM_RA_UPD_COMPL:
650 /* only in case SGSN offered new P-TMSI */
651 case GSM48_MT_GMM_ATTACH_COMPL:
652 /* only in case SGSN offered new P-TMSI */
Harald Welte9b455bf2010-03-14 15:45:01 +0800653 case GSM48_MT_GMM_PTMSI_REALL_COMPL:
654 case GSM48_MT_GMM_AUTH_CIPH_RESP:
655 DEBUGP(DMM, "Unimplemented GSM 04.08 GMM msg type 0x%02x\n",
656 gh->msg_type);
Harald Welte2720e732010-05-17 00:44:57 +0200657 /* FIXME: Send GMM_CAUSE_MSGT_NOTEXIST_NOTIMPL */
Harald Welte9b455bf2010-03-14 15:45:01 +0800658 break;
659 default:
660 DEBUGP(DMM, "Unknown GSM 04.08 GMM msg type 0x%02x\n",
661 gh->msg_type);
Harald Welte2720e732010-05-17 00:44:57 +0200662 /* FIXME: Send GMM_CAUSE_MSGT_NOTEXIST_NOTIMPL */
Harald Welte9b455bf2010-03-14 15:45:01 +0800663 break;
664 }
665
666 return rc;
667}
668
Harald Welte421cba42010-05-02 23:11:50 +0200669static void msgb_put_pdp_addr_ipv4(struct msgb *msg, uint32_t ipaddr)
670{
671 uint8_t v[6];
672
673 v[0] = PDP_TYPE_ORG_IETF;
674 v[1] = PDP_TYPE_N_IETF_IPv4;
675 *(uint32_t *)(v+2) = htonl(ipaddr);
676
677 msgb_tlv_put(msg, GSM48_IE_GSM_PDP_ADDR, sizeof(v), v);
678}
679
680static void msgb_put_pdp_addr_ppp(struct msgb *msg)
681{
682 uint8_t v[2];
683
684 v[0] = PDP_TYPE_ORG_ETSI;
685 v[1] = PDP_TYPE_N_ETSI_PPP;
686
687 msgb_tlv_put(msg, GSM48_IE_GSM_PDP_ADDR, sizeof(v), v);
688}
689
Harald Welte9b455bf2010-03-14 15:45:01 +0800690/* Section 9.5.2: Ativate PDP Context Accept */
Harald Welte6abf94e2010-05-18 10:35:06 +0200691int gsm48_tx_gsm_act_pdp_acc(struct sgsn_pdp_ctx *pdp)
Harald Welte9b455bf2010-03-14 15:45:01 +0800692{
Harald Welte9b455bf2010-03-14 15:45:01 +0800693 struct msgb *msg = gsm48_msgb_alloc();
694 struct gsm48_act_pdp_ctx_ack *act_ack;
695 struct gsm48_hdr *gh;
Harald Welte6abf94e2010-05-18 10:35:06 +0200696 uint8_t transaction_id = pdp->ti ^ 0x8; /* flip */
Harald Welte9b455bf2010-03-14 15:45:01 +0800697
698 DEBUGP(DMM, "<- ACTIVATE PDP CONTEXT ACK\n");
699
Harald Welte6abf94e2010-05-18 10:35:06 +0200700 mmctx2msgid(msg, pdp->mm);
Harald Welte9b455bf2010-03-14 15:45:01 +0800701
702 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
703 gh->proto_discr = GSM48_PDISC_SM_GPRS | (transaction_id << 4);
704 gh->msg_type = GSM48_MT_GSM_ACT_PDP_ACK;
Harald Welte421cba42010-05-02 23:11:50 +0200705
706 /* Negotiated LLC SAPI */
Harald Welte6abf94e2010-05-18 10:35:06 +0200707 msgb_v_put(msg, pdp->sapi);
Harald Welte4e38ac72010-05-18 14:51:18 +0200708
Harald Welte55e0df72010-05-18 13:20:08 +0200709 /* FIXME: copy QoS parameters from original request */
710 //msgb_lv_put(msg, pdp->lib->qos_neg.l, pdp->lib->qos_neg.v);
711 msgb_lv_put(msg, sizeof(default_qos), (uint8_t *)&default_qos);
Harald Welte4e38ac72010-05-18 14:51:18 +0200712
Harald Welte421cba42010-05-02 23:11:50 +0200713 /* Radio priority 10.5.7.2 */
Harald Welte6abf94e2010-05-18 10:35:06 +0200714 msgb_v_put(msg, pdp->lib->radio_pri);
Harald Welte4e38ac72010-05-18 14:51:18 +0200715
Harald Welte421cba42010-05-02 23:11:50 +0200716 /* PDP address */
Harald Welte4e38ac72010-05-18 14:51:18 +0200717 /* Highest 4 bits of first byte need to be set to 1, otherwise
718 * the IE is identical with the 04.08 PDP Address IE */
719 pdp->lib->eua.v[0] &= ~0xf0;
Harald Welte6abf94e2010-05-18 10:35:06 +0200720 msgb_tlv_put(msg, GSM48_IE_GSM_PDP_ADDR,
721 pdp->lib->eua.l, pdp->lib->eua.v);
Harald Welte4e38ac72010-05-18 14:51:18 +0200722 pdp->lib->eua.v[0] |= 0xf0;
723
Harald Welte77289c22010-05-18 14:32:29 +0200724 /* Optional: Protocol configuration options (FIXME: why 'req') */
725 if (pdp->lib->pco_req.l && pdp->lib->pco_req.v)
Harald Welte6abf94e2010-05-18 10:35:06 +0200726 msgb_tlv_put(msg, GSM48_IE_GSM_PROTO_CONF_OPT,
Harald Welte3c0b9b92010-05-18 14:36:11 +0200727 pdp->lib->pco_req.l, pdp->lib->pco_req.v);
Harald Welte4e38ac72010-05-18 14:51:18 +0200728
Harald Welte421cba42010-05-02 23:11:50 +0200729 /* Optional: Packet Flow Identifier */
Harald Welte9b455bf2010-03-14 15:45:01 +0800730
Harald Welte8acd88f2010-05-18 10:57:45 +0200731 return gsm48_gmm_sendmsg(msg, 0, pdp->mm);
Harald Welte9b455bf2010-03-14 15:45:01 +0800732}
733
Harald Welte6abf94e2010-05-18 10:35:06 +0200734/* Section 9.5.3: Activate PDP Context reject */
735int gsm48_tx_gsm_act_pdp_rej(struct sgsn_mm_ctx *mm, uint8_t tid,
736 uint8_t cause, uint8_t pco_len, uint8_t *pco_v)
737{
738 struct msgb *msg = gsm48_msgb_alloc();
739 struct gsm48_act_pdp_ctx_ack *act_ack;
740 struct gsm48_hdr *gh;
741 uint8_t transaction_id = tid ^ 0x8; /* flip */
742
Harald Welte77289c22010-05-18 14:32:29 +0200743 DEBUGP(DMM, "<- ACTIVATE PDP CONTEXT REJ(cause=%u)\n", cause);
Harald Welte6abf94e2010-05-18 10:35:06 +0200744
745 mmctx2msgid(msg, mm);
746
747 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
748 gh->proto_discr = GSM48_PDISC_SM_GPRS | (transaction_id << 4);
749 gh->msg_type = GSM48_MT_GSM_ACT_PDP_REJ;
750
751 msgb_v_put(msg, cause);
752 if (pco_len && pco_v)
753 msgb_tlv_put(msg, GSM48_IE_GSM_PROTO_CONF_OPT, pco_len, pco_v);
754
Harald Welte8acd88f2010-05-18 10:57:45 +0200755 return gsm48_gmm_sendmsg(msg, 0, mm);
Harald Welte6abf94e2010-05-18 10:35:06 +0200756}
757
Harald Welte9b455bf2010-03-14 15:45:01 +0800758/* Section 9.5.9: Deactivate PDP Context Accept */
Harald Welte77289c22010-05-18 14:32:29 +0200759int gsm48_tx_gsm_deact_pdp_acc(struct sgsn_pdp_ctx *pdp)
Harald Welte9b455bf2010-03-14 15:45:01 +0800760{
Harald Welte9b455bf2010-03-14 15:45:01 +0800761 struct msgb *msg = gsm48_msgb_alloc();
762 struct gsm48_hdr *gh;
Harald Welte77289c22010-05-18 14:32:29 +0200763 uint8_t transaction_id = pdp->ti ^ 0x8; /* flip */
764 int rc;
Harald Welte9b455bf2010-03-14 15:45:01 +0800765
766 DEBUGP(DMM, "<- DEACTIVATE PDP CONTEXT ACK\n");
767
Harald Welte77289c22010-05-18 14:32:29 +0200768 mmctx2msgid(msg, pdp->mm);
Harald Welte9b455bf2010-03-14 15:45:01 +0800769
770 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
771 gh->proto_discr = GSM48_PDISC_SM_GPRS | (transaction_id << 4);
772 gh->msg_type = GSM48_MT_GSM_DEACT_PDP_ACK;
773
Harald Welte77289c22010-05-18 14:32:29 +0200774 return gsm48_gmm_sendmsg(msg, 0, pdp->mm);
Harald Welte9b455bf2010-03-14 15:45:01 +0800775}
776
777/* Section 9.5.1: Activate PDP Context Request */
Harald Welted193cb32010-05-17 22:58:03 +0200778static int gsm48_rx_gsm_act_pdp_req(struct sgsn_mm_ctx *mmctx,
779 struct msgb *msg)
Harald Welte9b455bf2010-03-14 15:45:01 +0800780{
Harald Welte943c5bc2010-04-30 16:33:12 +0200781 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_gmmh(msg);
Harald Welte9b455bf2010-03-14 15:45:01 +0800782 struct gsm48_act_pdp_ctx_req *act_req = (struct gsm48_act_pdp_ctx_req *) gh->data;
Harald Welteeaa614c2010-05-02 11:26:34 +0200783 uint8_t *pdp_addr_lv = act_req->data;
Harald Welte0c3eae02010-05-02 21:07:14 +0200784 uint8_t req_qos_len, req_pdpa_len;
785 uint8_t *req_qos, *req_pdpa;
786 struct tlv_parsed tp;
Harald Welte6abf94e2010-05-18 10:35:06 +0200787 uint8_t transaction_id = (gh->proto_discr >> 4);
788 struct sgsn_pdp_ctx *pdp;
Harald Welte9b455bf2010-03-14 15:45:01 +0800789
Harald Welte6abf94e2010-05-18 10:35:06 +0200790 DEBUGP(DMM, "-> ACTIVATE PDP CONTEXT REQ: SAPI=%u NSAPI=%u ",
791 act_req->req_llc_sapi, act_req->req_nsapi);
Harald Welte8acd88f2010-05-18 10:57:45 +0200792
793 rate_ctr_inc(&mmctx->ctrg->ctr[GMM_CTR_PDP_CTX_ACT]);
794
Harald Welte0c3eae02010-05-02 21:07:14 +0200795 req_qos_len = act_req->data[0];
796 req_qos = act_req->data + 1; /* 10.5.6.5 */
797 req_pdpa_len = act_req->data[1 + req_qos_len];
798 req_pdpa = act_req->data + 1 + req_qos_len + 1; /* 10.5.6.4 */
Harald Welte9b455bf2010-03-14 15:45:01 +0800799
Harald Welte0c3eae02010-05-02 21:07:14 +0200800 switch (req_pdpa[0] & 0xf) {
801 case 0x0:
802 DEBUGPC(DMM, "ETSI ");
803 break;
804 case 0x1:
805 DEBUGPC(DMM, "IETF ");
806 break;
807 case 0xf:
808 DEBUGPC(DMM, "Empty ");
809 break;
810 }
811
812 switch (req_pdpa[1]) {
813 case 0x21:
814 DEBUGPC(DMM, "IPv4 ");
815 if (req_pdpa_len >= 6) {
816 struct in_addr ia;
817 ia.s_addr = ntohl(*((uint32_t *) (req_pdpa+2)));
818 DEBUGPC(DMM, "%s ", inet_ntoa(ia));
819 }
820 break;
821 case 0x57:
822 DEBUGPC(DMM, "IPv6 ");
823 if (req_pdpa_len >= 18) {
824 /* FIXME: print IPv6 address */
825 }
826 break;
827 default:
828 DEBUGPC(DMM, "0x%02x ", req_pdpa[1]);
829 break;
830 }
831
Harald Welte77289c22010-05-18 14:32:29 +0200832 DEBUGPC(DMM, "\n");
833
Harald Welte2720e732010-05-17 00:44:57 +0200834 /* put the non-TLV elements in the TLV parser structure to
835 * pass them on to the SGSN / GTP code */
836 tp.lv[OSMO_IE_GSM_REQ_QOS].len = req_qos_len;
837 tp.lv[OSMO_IE_GSM_REQ_QOS].val = req_qos;
838 tp.lv[OSMO_IE_GSM_REQ_PDP_ADDR].len = req_pdpa_len;
839 tp.lv[OSMO_IE_GSM_REQ_PDP_ADDR].val = req_pdpa;
840
Harald Welte6abf94e2010-05-18 10:35:06 +0200841 /* FIXME: determine GGSN based on APN and subscription options */
Harald Welte0c3eae02010-05-02 21:07:14 +0200842 if (TLVP_PRESENT(&tp, GSM48_IE_GSM_APN)) {}
Harald Welte6abf94e2010-05-18 10:35:06 +0200843
844 /* Check if NSAPI is out of range (TS 04.65 / 7.2) */
845 if (act_req->req_nsapi < 5 || act_req->req_nsapi > 15) {
846 /* Send reject with GSM_CAUSE_INV_MAND_INFO */
847 return gsm48_tx_gsm_act_pdp_rej(mmctx, transaction_id,
848 GSM_CAUSE_INV_MAND_INFO,
849 0, NULL);
850 }
851
852 /* Check if NSAPI is already in use */
853 if (sgsn_pdp_ctx_by_nsapi(mmctx, act_req->req_nsapi)) {
854 /* FIXME: send reject with GSM_CAUSE_NSAPI_IN_USE */
855 return gsm48_tx_gsm_act_pdp_rej(mmctx, transaction_id,
856 GSM_CAUSE_NSAPI_IN_USE,
857 0, NULL);
858 }
Harald Welte9b455bf2010-03-14 15:45:01 +0800859
Harald Welted193cb32010-05-17 22:58:03 +0200860#if 1
861 {
Harald Welte77289c22010-05-18 14:32:29 +0200862 pdp = sgsn_create_pdp_ctx(dummy_ggsn, mmctx, act_req->req_nsapi, &tp);
Harald Welte6abf94e2010-05-18 10:35:06 +0200863 if (!pdp)
864 return -1;
865 pdp->sapi = act_req->req_llc_sapi;
866 pdp->ti = transaction_id;
867
Harald Welted193cb32010-05-17 22:58:03 +0200868 }
Harald Welte6463c072010-05-18 17:04:55 +0200869 return 0;
Harald Welte2720e732010-05-17 00:44:57 +0200870#else
Harald Welte6abf94e2010-05-18 10:35:06 +0200871 return gsm48_tx_gsm_act_pdp_acc(mmctx, transaction_id, act_req);
Harald Welte2720e732010-05-17 00:44:57 +0200872#endif
Harald Welte9b455bf2010-03-14 15:45:01 +0800873}
874
875/* Section 9.5.8: Deactivate PDP Context Request */
Harald Welte77289c22010-05-18 14:32:29 +0200876static int gsm48_rx_gsm_deact_pdp_req(struct sgsn_mm_ctx *mm, struct msgb *msg)
Harald Welte9b455bf2010-03-14 15:45:01 +0800877{
Harald Welte943c5bc2010-04-30 16:33:12 +0200878 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_gmmh(msg);
Harald Welte77289c22010-05-18 14:32:29 +0200879 uint8_t transaction_id = (gh->proto_discr >> 4);
880 struct sgsn_pdp_ctx *pdp;
Harald Welte9b455bf2010-03-14 15:45:01 +0800881
Harald Welte2720e732010-05-17 00:44:57 +0200882 DEBUGP(DMM, "-> DEACTIVATE PDP CONTEXT REQ (cause: %s)\n",
Harald Welte9b455bf2010-03-14 15:45:01 +0800883 get_value_string(gsm_cause_names, gh->data[0]));
884
Harald Welte77289c22010-05-18 14:32:29 +0200885 pdp = sgsn_pdp_ctx_by_tid(mm, transaction_id);
886 if (!pdp) {
887 LOGP(DMM, LOGL_NOTICE, "Deactivate PDP Context Request for "
888 "non-existing PDP Context (IMSI=%s, TI=%u)\n",
889 mm->imsi, transaction_id);
890 return -EINVAL;
891 }
892
893 return sgsn_delete_pdp_ctx(pdp);
Harald Welte9b455bf2010-03-14 15:45:01 +0800894}
895
Harald Welted193cb32010-05-17 22:58:03 +0200896static int gsm48_rx_gsm_status(struct sgsn_mm_ctx *ctx, struct msgb *msg)
Harald Welte9b455bf2010-03-14 15:45:01 +0800897{
898 struct gsm48_hdr *gh = msgb_l3(msg);
899
Harald Welte2720e732010-05-17 00:44:57 +0200900 DEBUGP(DMM, "-> GPRS SM STATUS (cause: %s)\n",
Harald Welte9b455bf2010-03-14 15:45:01 +0800901 get_value_string(gsm_cause_names, gh->data[0]));
902
903 return 0;
904}
905
906/* GPRS Session Management */
Harald Welted193cb32010-05-17 22:58:03 +0200907static int gsm0408_rcv_gsm(struct sgsn_mm_ctx *mmctx, struct msgb *msg)
Harald Welte9b455bf2010-03-14 15:45:01 +0800908{
Harald Welte943c5bc2010-04-30 16:33:12 +0200909 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_gmmh(msg);
Harald Welte9b455bf2010-03-14 15:45:01 +0800910 int rc;
911
Harald Welted193cb32010-05-17 22:58:03 +0200912 if (!mmctx) {
913 LOGP(DMM, LOGL_NOTICE, "Cannot handle SM for unknown MM CTX\n");
914 return -EINVAL;
915 }
916
Harald Welte9b455bf2010-03-14 15:45:01 +0800917 switch (gh->msg_type) {
918 case GSM48_MT_GSM_ACT_PDP_REQ:
Harald Welted193cb32010-05-17 22:58:03 +0200919 rc = gsm48_rx_gsm_act_pdp_req(mmctx, msg);
Harald Welte9b455bf2010-03-14 15:45:01 +0800920 break;
921 case GSM48_MT_GSM_DEACT_PDP_REQ:
Harald Welted193cb32010-05-17 22:58:03 +0200922 rc = gsm48_rx_gsm_deact_pdp_req(mmctx, msg);
Harald Welte77289c22010-05-18 14:32:29 +0200923 break;
Harald Welte9b455bf2010-03-14 15:45:01 +0800924 case GSM48_MT_GSM_STATUS:
Harald Welted193cb32010-05-17 22:58:03 +0200925 rc = gsm48_rx_gsm_status(mmctx, msg);
Harald Welte9b455bf2010-03-14 15:45:01 +0800926 break;
927 case GSM48_MT_GSM_REQ_PDP_ACT_REJ:
928 case GSM48_MT_GSM_ACT_AA_PDP_REQ:
929 case GSM48_MT_GSM_DEACT_AA_PDP_REQ:
930 DEBUGP(DMM, "Unimplemented GSM 04.08 GSM msg type 0x%02x\n",
931 gh->msg_type);
932 break;
933 default:
934 DEBUGP(DMM, "Unknown GSM 04.08 GSM msg type 0x%02x\n",
935 gh->msg_type);
936 break;
937
938 }
939
940 return rc;
941}
942
943/* Main entry point for incoming 04.08 GPRS messages */
944int gsm0408_gprs_rcvmsg(struct msgb *msg)
945{
Harald Welte943c5bc2010-04-30 16:33:12 +0200946 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_gmmh(msg);
Harald Welteeaa614c2010-05-02 11:26:34 +0200947 uint8_t pdisc = gh->proto_discr & 0x0f;
Harald Welted193cb32010-05-17 22:58:03 +0200948 struct sgsn_mm_ctx *mmctx;
949 struct gprs_ra_id ra_id;
Harald Welte9b455bf2010-03-14 15:45:01 +0800950 int rc = -EINVAL;
951
Harald Welted193cb32010-05-17 22:58:03 +0200952 bssgp_parse_cell_id(&ra_id, msgb_bcid(msg));
953 mmctx = sgsn_mm_ctx_by_tlli(msgb_tlli(msg), &ra_id);
Harald Welte8acd88f2010-05-18 10:57:45 +0200954 if (mmctx) {
Harald Welte6abf94e2010-05-18 10:35:06 +0200955 msgid2mmctx(mmctx, msg);
Harald Welte8acd88f2010-05-18 10:57:45 +0200956 rate_ctr_inc(&mmctx->ctrg->ctr[GMM_CTR_PKTS_SIG_IN]);
957 }
Harald Welted193cb32010-05-17 22:58:03 +0200958
959 /* MMCTX can be NULL */
960
Harald Welte9b455bf2010-03-14 15:45:01 +0800961 switch (pdisc) {
962 case GSM48_PDISC_MM_GPRS:
Harald Welted193cb32010-05-17 22:58:03 +0200963 rc = gsm0408_rcv_gmm(mmctx, msg);
Harald Welte9b455bf2010-03-14 15:45:01 +0800964 break;
965 case GSM48_PDISC_SM_GPRS:
Harald Welted193cb32010-05-17 22:58:03 +0200966 rc = gsm0408_rcv_gsm(mmctx, msg);
Harald Welte9b455bf2010-03-14 15:45:01 +0800967 break;
968 default:
969 DEBUGP(DMM, "Unknown GSM 04.08 discriminator 0x%02x\n",
970 pdisc);
Harald Welte6abf94e2010-05-18 10:35:06 +0200971 /* FIXME: return status message */
Harald Welte9b455bf2010-03-14 15:45:01 +0800972 break;
973 }
974
975 return rc;
976}