blob: f22421a86010c3ce6cd9f74714d1c338daa0c6ae [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 */
199static int gsm48_tx_gmm_att_ack(struct msgb *old_msg)
200{
201 struct msgb *msg = gsm48_msgb_alloc();
202 struct gsm48_hdr *gh;
203 struct gsm48_attach_ack *aa;
Harald Welte11d7c102010-05-02 11:54:55 +0200204 struct gprs_ra_id ra_id;
Harald Welte9b455bf2010-03-14 15:45:01 +0800205
206 DEBUGP(DMM, "<- GPRS ATTACH ACCEPT\n");
207
Harald Welte11d7c102010-05-02 11:54:55 +0200208 gmm_copy_id(msg, old_msg);
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 Welteba021102010-05-02 21:36:36 +0200219 bssgp_parse_cell_id(&ra_id, msgb_bcid(old_msg));
Harald Welte11d7c102010-05-02 11:54:55 +0200220 gsm48_construct_ra(aa->ra_id.digits, &ra_id);
Harald Welte9b455bf2010-03-14 15:45:01 +0800221
222 /* Option: P-TMSI signature, allocated P-TMSI, MS ID, ... */
Harald Welte8acd88f2010-05-18 10:57:45 +0200223 return gsm48_gmm_sendmsg(msg, 0, NULL);
Harald Welte9b455bf2010-03-14 15:45:01 +0800224}
225
226/* Chapter 9.4.5: Attach reject */
Harald Welteeaa614c2010-05-02 11:26:34 +0200227static int gsm48_tx_gmm_att_rej(struct msgb *old_msg, uint8_t gmm_cause)
Harald Welte9b455bf2010-03-14 15:45:01 +0800228{
229 struct msgb *msg = gsm48_msgb_alloc();
230 struct gsm48_hdr *gh;
231
232 DEBUGP(DMM, "<- GPRS ATTACH REJECT\n");
233
Harald Welte11d7c102010-05-02 11:54:55 +0200234 gmm_copy_id(msg, old_msg);
Harald Welte9b455bf2010-03-14 15:45:01 +0800235
236 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh) + 1);
237 gh->proto_discr = GSM48_PDISC_MM_GPRS;
238 gh->msg_type = GSM48_MT_GMM_ATTACH_REJ;
239 gh->data[0] = gmm_cause;
240
Harald Welte8acd88f2010-05-18 10:57:45 +0200241 return gsm48_gmm_sendmsg(msg, 0, NULL);
Harald Welte9b455bf2010-03-14 15:45:01 +0800242}
243
Harald Welte2720e732010-05-17 00:44:57 +0200244/* Chapter 9.4.6.2 Detach accept */
245static gsm48_tx_gmm_det_ack(struct msgb *old_msg, uint8_t force_stby)
246{
247 struct msgb *msg = gsm48_msgb_alloc();
248 struct gsm48_hdr *gh;
249
250 DEBUGP(DMM, "<- GPRS DETACH ACCEPT\n");
251
252 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh) + 1);
253 gh->proto_discr = GSM48_PDISC_MM_GPRS;
254 gh->msg_type = GSM48_MT_GMM_DETACH_ACK;
255 gh->data[0] = force_stby;
256
Harald Welte8acd88f2010-05-18 10:57:45 +0200257 return gsm48_gmm_sendmsg(msg, 0, NULL);
Harald Welte2720e732010-05-17 00:44:57 +0200258}
259
Harald Welte9b455bf2010-03-14 15:45:01 +0800260/* Transmit Chapter 9.4.12 Identity Request */
Harald Welteeaa614c2010-05-02 11:26:34 +0200261static int gsm48_tx_gmm_id_req(struct msgb *old_msg, uint8_t id_type)
Harald Welte9b455bf2010-03-14 15:45:01 +0800262{
263 struct msgb *msg = gsm48_msgb_alloc();
264 struct gsm48_hdr *gh;
265
266 DEBUGP(DMM, "-> GPRS IDENTITY REQUEST: mi_type=%02x\n", id_type);
267
Harald Welte11d7c102010-05-02 11:54:55 +0200268 gmm_copy_id(msg, old_msg);
Harald Welte9b455bf2010-03-14 15:45:01 +0800269
270 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh) + 1);
271 gh->proto_discr = GSM48_PDISC_MM_GPRS;
272 gh->msg_type = GSM48_MT_GMM_ID_REQ;
273 /* 10.5.5.9 ID type 2 + identity type and 10.5.5.7 'force to standby' IE */
274 gh->data[0] = id_type & 0xf;
275
Harald Welte8acd88f2010-05-18 10:57:45 +0200276 return gsm48_gmm_sendmsg(msg, 0, NULL);
Harald Welte9b455bf2010-03-14 15:45:01 +0800277}
278
279/* Check if we can already authorize a subscriber */
280static int gsm48_gmm_authorize(struct sgsn_mm_ctx *ctx, struct msgb *msg)
281{
282 if (strlen(ctx->imei) && strlen(ctx->imsi)) {
283 ctx->mm_state = GMM_REGISTERED_NORMAL;
284 return gsm48_tx_gmm_att_ack(msg);
285 }
286 if (!strlen(ctx->imei))
287 return gsm48_tx_gmm_id_req(msg, GSM_MI_TYPE_IMEI);
288
289 if (!strlen(ctx->imsi))
290 return gsm48_tx_gmm_id_req(msg, GSM_MI_TYPE_IMSI);
291
292 return 0;
293}
294
295/* Parse Chapter 9.4.13 Identity Response */
Harald Welted193cb32010-05-17 22:58:03 +0200296static int gsm48_rx_gmm_id_resp(struct sgsn_mm_ctx *ctx, struct msgb *msg)
Harald Welte9b455bf2010-03-14 15:45:01 +0800297{
Harald Welte943c5bc2010-04-30 16:33:12 +0200298 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_gmmh(msg);
Harald Welteeaa614c2010-05-02 11:26:34 +0200299 uint8_t mi_type = gh->data[1] & GSM_MI_TYPE_MASK;
Harald Welte9b455bf2010-03-14 15:45:01 +0800300 char mi_string[GSM48_MI_SIZE];
301 struct gprs_ra_id ra_id;
Harald Welte9b455bf2010-03-14 15:45:01 +0800302
303 gsm48_mi_to_string(mi_string, sizeof(mi_string), &gh->data[1], gh->data[0]);
Harald Welte2720e732010-05-17 00:44:57 +0200304 DEBUGP(DMM, "-> GMM IDENTITY RESPONSE: mi_type=0x%02x MI(%s) ",
Harald Welte9b455bf2010-03-14 15:45:01 +0800305 mi_type, mi_string);
306
Harald Welte9b455bf2010-03-14 15:45:01 +0800307 if (!ctx) {
Harald Welte943c5bc2010-04-30 16:33:12 +0200308 DEBUGP(DMM, "from unknown TLLI 0x%08x?!?\n", msgb_tlli(msg));
Harald Welte9b455bf2010-03-14 15:45:01 +0800309 return -EINVAL;
310 }
311
312 switch (mi_type) {
313 case GSM_MI_TYPE_IMSI:
314 /* we already have a mm context with current TLLI, but no
315 * P-TMSI / IMSI yet. What we now need to do is to fill
316 * this initial context with data from the HLR */
317 strncpy(ctx->imsi, mi_string, sizeof(ctx->imei));
318 break;
319 case GSM_MI_TYPE_IMEI:
320 strncpy(ctx->imei, mi_string, sizeof(ctx->imei));
321 break;
322 case GSM_MI_TYPE_IMEISV:
323 break;
324 }
325
326 DEBUGPC(DMM, "\n");
327 /* Check if we can let the mobile station enter */
328 return gsm48_gmm_authorize(ctx, msg);
329}
330
331static void attach_rej_cb(void *data)
332{
333 struct sgsn_mm_ctx *ctx = data;
334
335 /* FIXME: determine through which BTS/TRX to send this */
336 //gsm48_tx_gmm_att_rej(ctx->tlli, GMM_CAUSE_MS_ID_NOT_DERIVED);
337 ctx->mm_state = GMM_DEREGISTERED;
338 /* FIXME: release the context */
339}
340
341static void schedule_reject(struct sgsn_mm_ctx *ctx)
342{
343 ctx->T = 3370;
344 ctx->timer.cb = attach_rej_cb;
345 ctx->timer.data = ctx;
346 bsc_schedule_timer(&ctx->timer, 6, 0);
347}
348
349/* Section 9.4.1 Attach request */
Harald Welted193cb32010-05-17 22:58:03 +0200350static int gsm48_rx_gmm_att_req(struct sgsn_mm_ctx *mmctx, struct msgb *msg)
Harald Welte9b455bf2010-03-14 15:45:01 +0800351{
Harald Welte943c5bc2010-04-30 16:33:12 +0200352 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_gmmh(msg);
Harald Welteeaa614c2010-05-02 11:26:34 +0200353 uint8_t *cur = gh->data, *msnc, *mi, *old_ra_info;
354 uint8_t msnc_len, att_type, mi_len, mi_type;
355 uint16_t drx_par;
356 uint32_t tmsi;
Harald Welte9b455bf2010-03-14 15:45:01 +0800357 char mi_string[GSM48_MI_SIZE];
358 struct gprs_ra_id ra_id;
Harald Welte9f1f3ad2010-05-02 12:56:57 +0200359 uint16_t cid;
Harald Welte9b455bf2010-03-14 15:45:01 +0800360 struct sgsn_mm_ctx *ctx;
361
Harald Welte2720e732010-05-17 00:44:57 +0200362 DEBUGP(DMM, "-> GMM ATTACH REQUEST ");
Harald Welte9b455bf2010-03-14 15:45:01 +0800363
364 /* As per TS 04.08 Chapter 4.7.1.4, the attach request arrives either
365 * with a foreign TLLI (P-TMSI that was allocated to the MS before),
366 * or with random TLLI. */
367
Harald Welte9f1f3ad2010-05-02 12:56:57 +0200368 cid = bssgp_parse_cell_id(&ra_id, msgb_bcid(msg));
Harald Welte9b455bf2010-03-14 15:45:01 +0800369
370 /* MS network capability 10.5.5.12 */
371 msnc_len = *cur++;
372 msnc = cur;
373 if (msnc_len > 2)
374 goto err_inval;
375 cur += msnc_len;
376
377 /* aTTACH Type 10.5.5.2 */
378 att_type = *cur++ & 0x0f;
379
380 /* DRX parameter 10.5.5.6 */
381 drx_par = *cur++;
382 drx_par |= *cur++ << 8;
383
384 /* Mobile Identity (P-TMSI or IMSI) 10.5.1.4 */
385 mi_len = *cur++;
386 mi = cur;
387 if (mi_len > 8)
388 goto err_inval;
389 mi_type = *mi & GSM_MI_TYPE_MASK;
390 cur += mi_len;
391
392 gsm48_mi_to_string(mi_string, sizeof(mi_string), mi, mi_len);
393
Harald Welte2720e732010-05-17 00:44:57 +0200394 DEBUGPC(DMM, "MI(%s) type=\"%s\" ", mi_string,
395 get_value_string(gprs_att_t_strs, att_type));
Harald Welte9b455bf2010-03-14 15:45:01 +0800396
397 /* Old routing area identification 10.5.5.15 */
398 old_ra_info = cur;
399 cur += 6;
400
401 /* MS Radio Access Capability 10.5.5.12a */
402
403 /* Optional: Old P-TMSI Signature, Requested READY timer, TMSI Status */
404
405 switch (mi_type) {
406 case GSM_MI_TYPE_IMSI:
407 /* Try to find MM context based on IMSI */
408 ctx = sgsn_mm_ctx_by_imsi(mi_string);
409 if (!ctx) {
410#if 0
411 return gsm48_tx_gmm_att_rej(msg, GMM_CAUSE_IMSI_UNKNOWN);
412#else
413 /* As a temorary hack, we simply assume that the IMSI exists */
414 ctx = sgsn_mm_ctx_alloc(0, &ra_id);
415 if (!ctx)
416 return gsm48_tx_gmm_att_rej(msg, GMM_CAUSE_NET_FAIL);
417 strncpy(ctx->imsi, mi_string, sizeof(ctx->imsi));
418#endif
419 }
420 /* FIXME: Start some timer */
421 ctx->mm_state = GMM_COMMON_PROC_INIT;
Harald Welte943c5bc2010-04-30 16:33:12 +0200422 ctx->tlli = msgb_tlli(msg);
Harald Welte68b99a42010-05-18 12:05:42 +0200423 msgid2mmctx(ctx, msg);
Harald Welte9b455bf2010-03-14 15:45:01 +0800424 break;
425 case GSM_MI_TYPE_TMSI:
426 tmsi = strtoul(mi_string, NULL, 10);
427 /* Try to find MM context based on P-TMSI */
428 ctx = sgsn_mm_ctx_by_ptmsi(tmsi);
429 if (!ctx) {
Harald Welte943c5bc2010-04-30 16:33:12 +0200430 ctx = sgsn_mm_ctx_alloc(msgb_tlli(msg), &ra_id);
Harald Welte9b455bf2010-03-14 15:45:01 +0800431 /* FIXME: Start some timer */
432 ctx->mm_state = GMM_COMMON_PROC_INIT;
Harald Welte943c5bc2010-04-30 16:33:12 +0200433 ctx->tlli = msgb_tlli(msg);
Harald Welte68b99a42010-05-18 12:05:42 +0200434 msgid2mmctx(ctx, msg);
Harald Welte9b455bf2010-03-14 15:45:01 +0800435 }
436 break;
437 default:
Harald Welte9f1f3ad2010-05-02 12:56:57 +0200438 return 0;
Harald Welte9b455bf2010-03-14 15:45:01 +0800439 }
Harald Welte9f1f3ad2010-05-02 12:56:57 +0200440 /* Update MM Context with currient RA and Cell ID */
441 ctx->ra = ra_id;
442 ctx->cell_id = cid;
Harald Welte9b455bf2010-03-14 15:45:01 +0800443
444 /* FIXME: allocate a new P-TMSI (+ P-TMSI signature) */
445 /* FIXME: update the TLLI with the new local TLLI based on the P-TMSI */
446
447 DEBUGPC(DMM, "\n");
448
449 return ctx ? gsm48_gmm_authorize(ctx, msg) : 0;
450
451err_inval:
452 DEBUGPC(DMM, "\n");
453 return gsm48_tx_gmm_att_rej(msg, GMM_CAUSE_SEM_INCORR_MSG);
454}
455
Harald Welte2720e732010-05-17 00:44:57 +0200456/* Section 4.7.4.1 / 9.4.5.2 MO Detach request */
Harald Welted193cb32010-05-17 22:58:03 +0200457static int gsm48_rx_gmm_det_req(struct sgsn_mm_ctx *ctx, struct msgb *msg)
Harald Welte2720e732010-05-17 00:44:57 +0200458{
459 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_gmmh(msg);
Harald Welte2720e732010-05-17 00:44:57 +0200460 uint8_t detach_type, power_off;
Harald Welte2720e732010-05-17 00:44:57 +0200461
462 detach_type = gh->data[0] & 0x7;
463 power_off = gh->data[0] & 0x8;
464
465 /* FIXME: In 24.008 there is an optional P-TMSI and P-TMSI signature IE */
466
467 DEBUGP(DMM, "-> GMM DETACH REQUEST TLLI=0x%08x type=%s %s\n",
468 msgb_tlli(msg), get_value_string(gprs_det_t_mo_strs, detach_type),
469 power_off ? "Power-off" : "");
470
471 /* Mark MM state as deregistered */
472 ctx->mm_state = GMM_DEREGISTERED;
473
474 /* force_stby = 0 */
475 return gsm48_tx_gmm_det_ack(msg, 0);
476}
477
Harald Welte9b455bf2010-03-14 15:45:01 +0800478/* Chapter 9.4.15: Routing area update accept */
479static int gsm48_tx_gmm_ra_upd_ack(struct msgb *old_msg)
480{
481 struct msgb *msg = gsm48_msgb_alloc();
482 struct gsm48_hdr *gh;
483 struct gsm48_ra_upd_ack *rua;
Harald Welte11d7c102010-05-02 11:54:55 +0200484 struct gprs_ra_id ra_id;
Harald Welte9b455bf2010-03-14 15:45:01 +0800485
486 DEBUGP(DMM, "<- ROUTING AREA UPDATE ACCEPT\n");
487
Harald Welte11d7c102010-05-02 11:54:55 +0200488 gmm_copy_id(msg, old_msg);
Harald Welte9b455bf2010-03-14 15:45:01 +0800489
490 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
491 gh->proto_discr = GSM48_PDISC_MM_GPRS;
492 gh->msg_type = GSM48_MT_GMM_RA_UPD_ACK;
493
494 rua = (struct gsm48_ra_upd_ack *) msgb_put(msg, sizeof(*rua));
495 rua->force_stby = 0; /* not indicated */
496 rua->upd_result = 0; /* RA updated */
497 rua->ra_upd_timer = GPRS_TMR_MINUTE | 10;
Harald Welte11d7c102010-05-02 11:54:55 +0200498
Harald Welteba021102010-05-02 21:36:36 +0200499 bssgp_parse_cell_id(&ra_id, msgb_bcid(old_msg));
Harald Welte11d7c102010-05-02 11:54:55 +0200500 gsm48_construct_ra(rua->ra_id.digits, &ra_id);
Harald Welte9b455bf2010-03-14 15:45:01 +0800501
502 /* Option: P-TMSI signature, allocated P-TMSI, MS ID, ... */
Harald Welte8acd88f2010-05-18 10:57:45 +0200503 return gsm48_gmm_sendmsg(msg, 0, NULL);
Harald Welte9b455bf2010-03-14 15:45:01 +0800504}
505
506/* Chapter 9.4.17: Routing area update reject */
Harald Welteeaa614c2010-05-02 11:26:34 +0200507static int gsm48_tx_gmm_ra_upd_rej(struct msgb *old_msg, uint8_t cause)
Harald Welte9b455bf2010-03-14 15:45:01 +0800508{
509 struct msgb *msg = gsm48_msgb_alloc();
510 struct gsm48_hdr *gh;
511
512 DEBUGP(DMM, "<- ROUTING AREA UPDATE REJECT\n");
513
Harald Welte11d7c102010-05-02 11:54:55 +0200514 gmm_copy_id(msg, old_msg);
Harald Welte9b455bf2010-03-14 15:45:01 +0800515
516 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh) + 2);
517 gh->proto_discr = GSM48_PDISC_MM_GPRS;
518 gh->msg_type = GSM48_MT_GMM_RA_UPD_REJ;
519 gh->data[0] = cause;
520 gh->data[1] = 0; /* ? */
521
522 /* Option: P-TMSI signature, allocated P-TMSI, MS ID, ... */
Harald Welte8acd88f2010-05-18 10:57:45 +0200523 return gsm48_gmm_sendmsg(msg, 0, NULL);
Harald Welte9b455bf2010-03-14 15:45:01 +0800524}
525
526/* Chapter 9.4.14: Routing area update request */
Harald Welted193cb32010-05-17 22:58:03 +0200527static int gsm48_rx_gmm_ra_upd_req(struct sgsn_mm_ctx *mmctx, struct msgb *msg)
Harald Welte9b455bf2010-03-14 15:45:01 +0800528{
Harald Welte943c5bc2010-04-30 16:33:12 +0200529 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_gmmh(msg);
Harald Welteeaa614c2010-05-02 11:26:34 +0200530 uint8_t *cur = gh->data;
Harald Welte9b455bf2010-03-14 15:45:01 +0800531 struct gprs_ra_id old_ra_id;
Harald Welteeaa614c2010-05-02 11:26:34 +0200532 uint8_t upd_type;
Harald Welte9b455bf2010-03-14 15:45:01 +0800533
534 /* Update Type 10.5.5.18 */
535 upd_type = *cur++ & 0x0f;
536
Harald Welte2720e732010-05-17 00:44:57 +0200537 DEBUGP(DMM, "-> GMM RA UPDATE REQUEST type=\"%s\" ",
538 get_value_string(gprs_upd_t_strs, upd_type));
Harald Welte9b455bf2010-03-14 15:45:01 +0800539
540 /* Old routing area identification 10.5.5.15 */
541 gsm48_parse_ra(&old_ra_id, cur);
542 cur += 6;
543
544 /* MS Radio Access Capability 10.5.5.12a */
545
546 /* Optional: Old P-TMSI Signature, Requested READY timer, TMSI Status,
547 * DRX parameter, MS network capability */
548
549 switch (upd_type) {
550 case GPRS_UPD_T_RA_LA:
551 case GPRS_UPD_T_RA_LA_IMSI_ATT:
552 DEBUGPC(DMM, " unsupported in Mode III, is your SI13 corrupt?\n");
553 return gsm48_tx_gmm_ra_upd_rej(msg, GMM_CAUSE_PROTO_ERR_UNSPEC);
554 break;
555 case GPRS_UPD_T_RA:
556 case GPRS_UPD_T_PERIODIC:
557 break;
558 }
559
560 /* Look-up the MM context based on old RA-ID and TLLI */
Harald Welte9b455bf2010-03-14 15:45:01 +0800561 if (!mmctx || mmctx->mm_state == GMM_DEREGISTERED) {
562 /* The MS has to perform GPRS attach */
563 DEBUGPC(DMM, " REJECT\n");
564 return gsm48_tx_gmm_ra_upd_rej(msg, GMM_CAUSE_IMPL_DETACHED);
565 }
566
Harald Welte9f1f3ad2010-05-02 12:56:57 +0200567 /* Update the MM context with the new RA-ID */
568 bssgp_parse_cell_id(&mmctx->ra, msgb_bcid(msg));
569 /* Update the MM context with the new TLLI */
570 mmctx->tlli = msgb_tlli(msg);
Harald Welte9b455bf2010-03-14 15:45:01 +0800571 /* FIXME: Update the MM context with the MS radio acc capabilities */
572 /* FIXME: Update the MM context with the MS network capabilities */
573
Harald Welte77289c22010-05-18 14:32:29 +0200574 rate_ctr_inc(&mmctx->ctrg->ctr[GMM_CTR_RA_UPDATE]);
575
Harald Welte9b455bf2010-03-14 15:45:01 +0800576 DEBUGPC(DMM, " ACCEPT\n");
577 return gsm48_tx_gmm_ra_upd_ack(msg);
578}
579
Harald Welted193cb32010-05-17 22:58:03 +0200580static int gsm48_rx_gmm_status(struct sgsn_mm_ctx *mmctx, struct msgb *msg)
Harald Welte9b455bf2010-03-14 15:45:01 +0800581{
582 struct gsm48_hdr *gh = msgb_l3(msg);
583
Harald Welte2720e732010-05-17 00:44:57 +0200584 DEBUGP(DMM, "-> GPRS MM STATUS (cause: %s)\n",
Harald Welte9b455bf2010-03-14 15:45:01 +0800585 get_value_string(gmm_cause_names, gh->data[0]));
586
587 return 0;
588}
589
590/* GPRS Mobility Management */
Harald Welted193cb32010-05-17 22:58:03 +0200591static int gsm0408_rcv_gmm(struct sgsn_mm_ctx *mmctx, struct msgb *msg)
Harald Welte9b455bf2010-03-14 15:45:01 +0800592{
Harald Welte943c5bc2010-04-30 16:33:12 +0200593 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_gmmh(msg);
Harald Welte9b455bf2010-03-14 15:45:01 +0800594 int rc;
595
Harald Welted193cb32010-05-17 22:58:03 +0200596 if (!mmctx &&
597 gh->msg_type != GSM48_MT_GMM_ATTACH_REQ &&
598 gh->msg_type != GSM48_MT_GMM_RA_UPD_REQ) {
599 LOGP(DMM, LOGL_NOTICE, "Cannot handle GMM for unknown MM CTX\n");
Harald Welte77289c22010-05-18 14:32:29 +0200600 /* FIXME: Send GMM_CAUSE_IMPL_DETACHED */
Harald Welted193cb32010-05-17 22:58:03 +0200601 return -EINVAL;
602 }
603
604
Harald Welte9b455bf2010-03-14 15:45:01 +0800605 switch (gh->msg_type) {
606 case GSM48_MT_GMM_RA_UPD_REQ:
Harald Welted193cb32010-05-17 22:58:03 +0200607 rc = gsm48_rx_gmm_ra_upd_req(mmctx, msg);
Harald Welte9b455bf2010-03-14 15:45:01 +0800608 break;
609 case GSM48_MT_GMM_ATTACH_REQ:
Harald Welted193cb32010-05-17 22:58:03 +0200610 rc = gsm48_rx_gmm_att_req(mmctx, msg);
Harald Welte9b455bf2010-03-14 15:45:01 +0800611 break;
612 case GSM48_MT_GMM_ID_RESP:
Harald Welted193cb32010-05-17 22:58:03 +0200613 rc = gsm48_rx_gmm_id_resp(mmctx, msg);
Harald Welte9b455bf2010-03-14 15:45:01 +0800614 break;
615 case GSM48_MT_GMM_STATUS:
Harald Welted193cb32010-05-17 22:58:03 +0200616 rc = gsm48_rx_gmm_status(mmctx, msg);
Harald Welte9b455bf2010-03-14 15:45:01 +0800617 break;
Harald Welte2720e732010-05-17 00:44:57 +0200618 case GSM48_MT_GMM_DETACH_REQ:
Harald Welted193cb32010-05-17 22:58:03 +0200619 rc = gsm48_rx_gmm_det_req(mmctx, msg);
Harald Welte2720e732010-05-17 00:44:57 +0200620 break;
Harald Welte9b455bf2010-03-14 15:45:01 +0800621 case GSM48_MT_GMM_RA_UPD_COMPL:
622 /* only in case SGSN offered new P-TMSI */
623 case GSM48_MT_GMM_ATTACH_COMPL:
624 /* only in case SGSN offered new P-TMSI */
Harald Welte9b455bf2010-03-14 15:45:01 +0800625 case GSM48_MT_GMM_PTMSI_REALL_COMPL:
626 case GSM48_MT_GMM_AUTH_CIPH_RESP:
627 DEBUGP(DMM, "Unimplemented GSM 04.08 GMM msg type 0x%02x\n",
628 gh->msg_type);
Harald Welte2720e732010-05-17 00:44:57 +0200629 /* FIXME: Send GMM_CAUSE_MSGT_NOTEXIST_NOTIMPL */
Harald Welte9b455bf2010-03-14 15:45:01 +0800630 break;
631 default:
632 DEBUGP(DMM, "Unknown GSM 04.08 GMM msg type 0x%02x\n",
633 gh->msg_type);
Harald Welte2720e732010-05-17 00:44:57 +0200634 /* FIXME: Send GMM_CAUSE_MSGT_NOTEXIST_NOTIMPL */
Harald Welte9b455bf2010-03-14 15:45:01 +0800635 break;
636 }
637
638 return rc;
639}
640
Harald Welte421cba42010-05-02 23:11:50 +0200641static void msgb_put_pdp_addr_ipv4(struct msgb *msg, uint32_t ipaddr)
642{
643 uint8_t v[6];
644
645 v[0] = PDP_TYPE_ORG_IETF;
646 v[1] = PDP_TYPE_N_IETF_IPv4;
647 *(uint32_t *)(v+2) = htonl(ipaddr);
648
649 msgb_tlv_put(msg, GSM48_IE_GSM_PDP_ADDR, sizeof(v), v);
650}
651
652static void msgb_put_pdp_addr_ppp(struct msgb *msg)
653{
654 uint8_t v[2];
655
656 v[0] = PDP_TYPE_ORG_ETSI;
657 v[1] = PDP_TYPE_N_ETSI_PPP;
658
659 msgb_tlv_put(msg, GSM48_IE_GSM_PDP_ADDR, sizeof(v), v);
660}
661
Harald Welte9b455bf2010-03-14 15:45:01 +0800662/* Section 9.5.2: Ativate PDP Context Accept */
Harald Welte6abf94e2010-05-18 10:35:06 +0200663int gsm48_tx_gsm_act_pdp_acc(struct sgsn_pdp_ctx *pdp)
Harald Welte9b455bf2010-03-14 15:45:01 +0800664{
Harald Welte9b455bf2010-03-14 15:45:01 +0800665 struct msgb *msg = gsm48_msgb_alloc();
666 struct gsm48_act_pdp_ctx_ack *act_ack;
667 struct gsm48_hdr *gh;
Harald Welte6abf94e2010-05-18 10:35:06 +0200668 uint8_t transaction_id = pdp->ti ^ 0x8; /* flip */
Harald Welte9b455bf2010-03-14 15:45:01 +0800669
670 DEBUGP(DMM, "<- ACTIVATE PDP CONTEXT ACK\n");
671
Harald Welte6abf94e2010-05-18 10:35:06 +0200672 mmctx2msgid(msg, pdp->mm);
Harald Welte9b455bf2010-03-14 15:45:01 +0800673
674 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
675 gh->proto_discr = GSM48_PDISC_SM_GPRS | (transaction_id << 4);
676 gh->msg_type = GSM48_MT_GSM_ACT_PDP_ACK;
Harald Welte421cba42010-05-02 23:11:50 +0200677
678 /* Negotiated LLC SAPI */
Harald Welte6abf94e2010-05-18 10:35:06 +0200679 msgb_v_put(msg, pdp->sapi);
Harald Welte4e38ac72010-05-18 14:51:18 +0200680
Harald Welte55e0df72010-05-18 13:20:08 +0200681 /* FIXME: copy QoS parameters from original request */
682 //msgb_lv_put(msg, pdp->lib->qos_neg.l, pdp->lib->qos_neg.v);
683 msgb_lv_put(msg, sizeof(default_qos), (uint8_t *)&default_qos);
Harald Welte4e38ac72010-05-18 14:51:18 +0200684
Harald Welte421cba42010-05-02 23:11:50 +0200685 /* Radio priority 10.5.7.2 */
Harald Welte6abf94e2010-05-18 10:35:06 +0200686 msgb_v_put(msg, pdp->lib->radio_pri);
Harald Welte4e38ac72010-05-18 14:51:18 +0200687
Harald Welte421cba42010-05-02 23:11:50 +0200688 /* PDP address */
Harald Welte4e38ac72010-05-18 14:51:18 +0200689 /* Highest 4 bits of first byte need to be set to 1, otherwise
690 * the IE is identical with the 04.08 PDP Address IE */
691 pdp->lib->eua.v[0] &= ~0xf0;
Harald Welte6abf94e2010-05-18 10:35:06 +0200692 msgb_tlv_put(msg, GSM48_IE_GSM_PDP_ADDR,
693 pdp->lib->eua.l, pdp->lib->eua.v);
Harald Welte4e38ac72010-05-18 14:51:18 +0200694 pdp->lib->eua.v[0] |= 0xf0;
695
Harald Welte77289c22010-05-18 14:32:29 +0200696 /* Optional: Protocol configuration options (FIXME: why 'req') */
697 if (pdp->lib->pco_req.l && pdp->lib->pco_req.v)
Harald Welte6abf94e2010-05-18 10:35:06 +0200698 msgb_tlv_put(msg, GSM48_IE_GSM_PROTO_CONF_OPT,
Harald Welte3c0b9b92010-05-18 14:36:11 +0200699 pdp->lib->pco_req.l, pdp->lib->pco_req.v);
Harald Welte4e38ac72010-05-18 14:51:18 +0200700
Harald Welte421cba42010-05-02 23:11:50 +0200701 /* Optional: Packet Flow Identifier */
Harald Welte9b455bf2010-03-14 15:45:01 +0800702
Harald Welte8acd88f2010-05-18 10:57:45 +0200703 return gsm48_gmm_sendmsg(msg, 0, pdp->mm);
Harald Welte9b455bf2010-03-14 15:45:01 +0800704}
705
Harald Welte6abf94e2010-05-18 10:35:06 +0200706/* Section 9.5.3: Activate PDP Context reject */
707int gsm48_tx_gsm_act_pdp_rej(struct sgsn_mm_ctx *mm, uint8_t tid,
708 uint8_t cause, uint8_t pco_len, uint8_t *pco_v)
709{
710 struct msgb *msg = gsm48_msgb_alloc();
711 struct gsm48_act_pdp_ctx_ack *act_ack;
712 struct gsm48_hdr *gh;
713 uint8_t transaction_id = tid ^ 0x8; /* flip */
714
Harald Welte77289c22010-05-18 14:32:29 +0200715 DEBUGP(DMM, "<- ACTIVATE PDP CONTEXT REJ(cause=%u)\n", cause);
Harald Welte6abf94e2010-05-18 10:35:06 +0200716
717 mmctx2msgid(msg, mm);
718
719 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
720 gh->proto_discr = GSM48_PDISC_SM_GPRS | (transaction_id << 4);
721 gh->msg_type = GSM48_MT_GSM_ACT_PDP_REJ;
722
723 msgb_v_put(msg, cause);
724 if (pco_len && pco_v)
725 msgb_tlv_put(msg, GSM48_IE_GSM_PROTO_CONF_OPT, pco_len, pco_v);
726
Harald Welte8acd88f2010-05-18 10:57:45 +0200727 return gsm48_gmm_sendmsg(msg, 0, mm);
Harald Welte6abf94e2010-05-18 10:35:06 +0200728}
729
Harald Welte9b455bf2010-03-14 15:45:01 +0800730/* Section 9.5.9: Deactivate PDP Context Accept */
Harald Welte77289c22010-05-18 14:32:29 +0200731int gsm48_tx_gsm_deact_pdp_acc(struct sgsn_pdp_ctx *pdp)
Harald Welte9b455bf2010-03-14 15:45:01 +0800732{
Harald Welte9b455bf2010-03-14 15:45:01 +0800733 struct msgb *msg = gsm48_msgb_alloc();
734 struct gsm48_hdr *gh;
Harald Welte77289c22010-05-18 14:32:29 +0200735 uint8_t transaction_id = pdp->ti ^ 0x8; /* flip */
736 int rc;
Harald Welte9b455bf2010-03-14 15:45:01 +0800737
738 DEBUGP(DMM, "<- DEACTIVATE PDP CONTEXT ACK\n");
739
Harald Welte77289c22010-05-18 14:32:29 +0200740 mmctx2msgid(msg, pdp->mm);
Harald Welte9b455bf2010-03-14 15:45:01 +0800741
742 gh = (struct gsm48_hdr *) msgb_put(msg, sizeof(*gh));
743 gh->proto_discr = GSM48_PDISC_SM_GPRS | (transaction_id << 4);
744 gh->msg_type = GSM48_MT_GSM_DEACT_PDP_ACK;
745
Harald Welte77289c22010-05-18 14:32:29 +0200746 return gsm48_gmm_sendmsg(msg, 0, pdp->mm);
Harald Welte9b455bf2010-03-14 15:45:01 +0800747}
748
749/* Section 9.5.1: Activate PDP Context Request */
Harald Welted193cb32010-05-17 22:58:03 +0200750static int gsm48_rx_gsm_act_pdp_req(struct sgsn_mm_ctx *mmctx,
751 struct msgb *msg)
Harald Welte9b455bf2010-03-14 15:45:01 +0800752{
Harald Welte943c5bc2010-04-30 16:33:12 +0200753 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_gmmh(msg);
Harald Welte9b455bf2010-03-14 15:45:01 +0800754 struct gsm48_act_pdp_ctx_req *act_req = (struct gsm48_act_pdp_ctx_req *) gh->data;
Harald Welteeaa614c2010-05-02 11:26:34 +0200755 uint8_t *pdp_addr_lv = act_req->data;
Harald Welte0c3eae02010-05-02 21:07:14 +0200756 uint8_t req_qos_len, req_pdpa_len;
757 uint8_t *req_qos, *req_pdpa;
758 struct tlv_parsed tp;
Harald Welte6abf94e2010-05-18 10:35:06 +0200759 uint8_t transaction_id = (gh->proto_discr >> 4);
760 struct sgsn_pdp_ctx *pdp;
Harald Welte9b455bf2010-03-14 15:45:01 +0800761
Harald Welte6abf94e2010-05-18 10:35:06 +0200762 DEBUGP(DMM, "-> ACTIVATE PDP CONTEXT REQ: SAPI=%u NSAPI=%u ",
763 act_req->req_llc_sapi, act_req->req_nsapi);
Harald Welte8acd88f2010-05-18 10:57:45 +0200764
765 rate_ctr_inc(&mmctx->ctrg->ctr[GMM_CTR_PDP_CTX_ACT]);
766
Harald Welte0c3eae02010-05-02 21:07:14 +0200767 req_qos_len = act_req->data[0];
768 req_qos = act_req->data + 1; /* 10.5.6.5 */
769 req_pdpa_len = act_req->data[1 + req_qos_len];
770 req_pdpa = act_req->data + 1 + req_qos_len + 1; /* 10.5.6.4 */
Harald Welte9b455bf2010-03-14 15:45:01 +0800771
Harald Welte0c3eae02010-05-02 21:07:14 +0200772 switch (req_pdpa[0] & 0xf) {
773 case 0x0:
774 DEBUGPC(DMM, "ETSI ");
775 break;
776 case 0x1:
777 DEBUGPC(DMM, "IETF ");
778 break;
779 case 0xf:
780 DEBUGPC(DMM, "Empty ");
781 break;
782 }
783
784 switch (req_pdpa[1]) {
785 case 0x21:
786 DEBUGPC(DMM, "IPv4 ");
787 if (req_pdpa_len >= 6) {
788 struct in_addr ia;
789 ia.s_addr = ntohl(*((uint32_t *) (req_pdpa+2)));
790 DEBUGPC(DMM, "%s ", inet_ntoa(ia));
791 }
792 break;
793 case 0x57:
794 DEBUGPC(DMM, "IPv6 ");
795 if (req_pdpa_len >= 18) {
796 /* FIXME: print IPv6 address */
797 }
798 break;
799 default:
800 DEBUGPC(DMM, "0x%02x ", req_pdpa[1]);
801 break;
802 }
803
Harald Welte77289c22010-05-18 14:32:29 +0200804 DEBUGPC(DMM, "\n");
805
Harald Welte2720e732010-05-17 00:44:57 +0200806 /* put the non-TLV elements in the TLV parser structure to
807 * pass them on to the SGSN / GTP code */
808 tp.lv[OSMO_IE_GSM_REQ_QOS].len = req_qos_len;
809 tp.lv[OSMO_IE_GSM_REQ_QOS].val = req_qos;
810 tp.lv[OSMO_IE_GSM_REQ_PDP_ADDR].len = req_pdpa_len;
811 tp.lv[OSMO_IE_GSM_REQ_PDP_ADDR].val = req_pdpa;
812
Harald Welte6abf94e2010-05-18 10:35:06 +0200813 /* FIXME: determine GGSN based on APN and subscription options */
Harald Welte0c3eae02010-05-02 21:07:14 +0200814 if (TLVP_PRESENT(&tp, GSM48_IE_GSM_APN)) {}
Harald Welte6abf94e2010-05-18 10:35:06 +0200815
816 /* Check if NSAPI is out of range (TS 04.65 / 7.2) */
817 if (act_req->req_nsapi < 5 || act_req->req_nsapi > 15) {
818 /* Send reject with GSM_CAUSE_INV_MAND_INFO */
819 return gsm48_tx_gsm_act_pdp_rej(mmctx, transaction_id,
820 GSM_CAUSE_INV_MAND_INFO,
821 0, NULL);
822 }
823
824 /* Check if NSAPI is already in use */
825 if (sgsn_pdp_ctx_by_nsapi(mmctx, act_req->req_nsapi)) {
826 /* FIXME: send reject with GSM_CAUSE_NSAPI_IN_USE */
827 return gsm48_tx_gsm_act_pdp_rej(mmctx, transaction_id,
828 GSM_CAUSE_NSAPI_IN_USE,
829 0, NULL);
830 }
Harald Welte9b455bf2010-03-14 15:45:01 +0800831
Harald Welted193cb32010-05-17 22:58:03 +0200832#if 1
833 {
Harald Welte77289c22010-05-18 14:32:29 +0200834 pdp = sgsn_create_pdp_ctx(dummy_ggsn, mmctx, act_req->req_nsapi, &tp);
Harald Welte6abf94e2010-05-18 10:35:06 +0200835 if (!pdp)
836 return -1;
837 pdp->sapi = act_req->req_llc_sapi;
838 pdp->ti = transaction_id;
839
Harald Welted193cb32010-05-17 22:58:03 +0200840 }
Harald Welte2720e732010-05-17 00:44:57 +0200841#else
Harald Welte6abf94e2010-05-18 10:35:06 +0200842 return gsm48_tx_gsm_act_pdp_acc(mmctx, transaction_id, act_req);
Harald Welte2720e732010-05-17 00:44:57 +0200843#endif
Harald Welte9b455bf2010-03-14 15:45:01 +0800844}
845
846/* Section 9.5.8: Deactivate PDP Context Request */
Harald Welte77289c22010-05-18 14:32:29 +0200847static int gsm48_rx_gsm_deact_pdp_req(struct sgsn_mm_ctx *mm, struct msgb *msg)
Harald Welte9b455bf2010-03-14 15:45:01 +0800848{
Harald Welte943c5bc2010-04-30 16:33:12 +0200849 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_gmmh(msg);
Harald Welte77289c22010-05-18 14:32:29 +0200850 uint8_t transaction_id = (gh->proto_discr >> 4);
851 struct sgsn_pdp_ctx *pdp;
Harald Welte9b455bf2010-03-14 15:45:01 +0800852
Harald Welte2720e732010-05-17 00:44:57 +0200853 DEBUGP(DMM, "-> DEACTIVATE PDP CONTEXT REQ (cause: %s)\n",
Harald Welte9b455bf2010-03-14 15:45:01 +0800854 get_value_string(gsm_cause_names, gh->data[0]));
855
Harald Welte77289c22010-05-18 14:32:29 +0200856 pdp = sgsn_pdp_ctx_by_tid(mm, transaction_id);
857 if (!pdp) {
858 LOGP(DMM, LOGL_NOTICE, "Deactivate PDP Context Request for "
859 "non-existing PDP Context (IMSI=%s, TI=%u)\n",
860 mm->imsi, transaction_id);
861 return -EINVAL;
862 }
863
864 return sgsn_delete_pdp_ctx(pdp);
Harald Welte9b455bf2010-03-14 15:45:01 +0800865}
866
Harald Welted193cb32010-05-17 22:58:03 +0200867static int gsm48_rx_gsm_status(struct sgsn_mm_ctx *ctx, struct msgb *msg)
Harald Welte9b455bf2010-03-14 15:45:01 +0800868{
869 struct gsm48_hdr *gh = msgb_l3(msg);
870
Harald Welte2720e732010-05-17 00:44:57 +0200871 DEBUGP(DMM, "-> GPRS SM STATUS (cause: %s)\n",
Harald Welte9b455bf2010-03-14 15:45:01 +0800872 get_value_string(gsm_cause_names, gh->data[0]));
873
874 return 0;
875}
876
877/* GPRS Session Management */
Harald Welted193cb32010-05-17 22:58:03 +0200878static int gsm0408_rcv_gsm(struct sgsn_mm_ctx *mmctx, struct msgb *msg)
Harald Welte9b455bf2010-03-14 15:45:01 +0800879{
Harald Welte943c5bc2010-04-30 16:33:12 +0200880 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_gmmh(msg);
Harald Welte9b455bf2010-03-14 15:45:01 +0800881 int rc;
882
Harald Welted193cb32010-05-17 22:58:03 +0200883 if (!mmctx) {
884 LOGP(DMM, LOGL_NOTICE, "Cannot handle SM for unknown MM CTX\n");
885 return -EINVAL;
886 }
887
Harald Welte9b455bf2010-03-14 15:45:01 +0800888 switch (gh->msg_type) {
889 case GSM48_MT_GSM_ACT_PDP_REQ:
Harald Welted193cb32010-05-17 22:58:03 +0200890 rc = gsm48_rx_gsm_act_pdp_req(mmctx, msg);
Harald Welte9b455bf2010-03-14 15:45:01 +0800891 break;
892 case GSM48_MT_GSM_DEACT_PDP_REQ:
Harald Welted193cb32010-05-17 22:58:03 +0200893 rc = gsm48_rx_gsm_deact_pdp_req(mmctx, msg);
Harald Welte77289c22010-05-18 14:32:29 +0200894 break;
Harald Welte9b455bf2010-03-14 15:45:01 +0800895 case GSM48_MT_GSM_STATUS:
Harald Welted193cb32010-05-17 22:58:03 +0200896 rc = gsm48_rx_gsm_status(mmctx, msg);
Harald Welte9b455bf2010-03-14 15:45:01 +0800897 break;
898 case GSM48_MT_GSM_REQ_PDP_ACT_REJ:
899 case GSM48_MT_GSM_ACT_AA_PDP_REQ:
900 case GSM48_MT_GSM_DEACT_AA_PDP_REQ:
901 DEBUGP(DMM, "Unimplemented GSM 04.08 GSM msg type 0x%02x\n",
902 gh->msg_type);
903 break;
904 default:
905 DEBUGP(DMM, "Unknown GSM 04.08 GSM msg type 0x%02x\n",
906 gh->msg_type);
907 break;
908
909 }
910
911 return rc;
912}
913
914/* Main entry point for incoming 04.08 GPRS messages */
915int gsm0408_gprs_rcvmsg(struct msgb *msg)
916{
Harald Welte943c5bc2010-04-30 16:33:12 +0200917 struct gsm48_hdr *gh = (struct gsm48_hdr *) msgb_gmmh(msg);
Harald Welteeaa614c2010-05-02 11:26:34 +0200918 uint8_t pdisc = gh->proto_discr & 0x0f;
Harald Welted193cb32010-05-17 22:58:03 +0200919 struct sgsn_mm_ctx *mmctx;
920 struct gprs_ra_id ra_id;
Harald Welte9b455bf2010-03-14 15:45:01 +0800921 int rc = -EINVAL;
922
Harald Welted193cb32010-05-17 22:58:03 +0200923 bssgp_parse_cell_id(&ra_id, msgb_bcid(msg));
924 mmctx = sgsn_mm_ctx_by_tlli(msgb_tlli(msg), &ra_id);
Harald Welte8acd88f2010-05-18 10:57:45 +0200925 if (mmctx) {
Harald Welte6abf94e2010-05-18 10:35:06 +0200926 msgid2mmctx(mmctx, msg);
Harald Welte8acd88f2010-05-18 10:57:45 +0200927 rate_ctr_inc(&mmctx->ctrg->ctr[GMM_CTR_PKTS_SIG_IN]);
928 }
Harald Welted193cb32010-05-17 22:58:03 +0200929
930 /* MMCTX can be NULL */
931
Harald Welte9b455bf2010-03-14 15:45:01 +0800932 switch (pdisc) {
933 case GSM48_PDISC_MM_GPRS:
Harald Welted193cb32010-05-17 22:58:03 +0200934 rc = gsm0408_rcv_gmm(mmctx, msg);
Harald Welte9b455bf2010-03-14 15:45:01 +0800935 break;
936 case GSM48_PDISC_SM_GPRS:
Harald Welted193cb32010-05-17 22:58:03 +0200937 rc = gsm0408_rcv_gsm(mmctx, msg);
Harald Welte9b455bf2010-03-14 15:45:01 +0800938 break;
939 default:
940 DEBUGP(DMM, "Unknown GSM 04.08 discriminator 0x%02x\n",
941 pdisc);
Harald Welte6abf94e2010-05-18 10:35:06 +0200942 /* FIXME: return status message */
Harald Welte9b455bf2010-03-14 15:45:01 +0800943 break;
944 }
945
946 return rc;
947}