blob: 0b1dc9b00609187f6b789804c17b8dbcbce19aa9 [file] [log] [blame]
Jacob Erlbeckf3a271f2014-12-11 16:54:14 +01001/* GPRS Subscriber Update Protocol message encoder/decoder */
2
3/*
4 * (C) 2014 by Sysmocom s.f.m.c. GmbH
Holger Hans Peter Freytherb927f1c2015-04-22 23:09:41 -04005 * (C) 2015 by Holger Hans Peter Freyther
Harald Welte121e9a42016-04-20 13:13:19 +02006 * (C) 2016 by Harald Welte <laforge@gnumonks.org>
Jacob Erlbeckf3a271f2014-12-11 16:54:14 +01007 * All Rights Reserved
8 *
9 * Author: Jacob Erlbeck
10 *
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU Affero General Public License as published by
13 * the Free Software Foundation; either version 3 of the License, or
14 * (at your option) any later version.
15 *
16 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU Affero General Public License for more details.
20 *
21 * You should have received a copy of the GNU Affero General Public License
22 * along with this program. If not, see <http://www.gnu.org/licenses/>.
23 *
24 */
25
26#include <openbsc/gprs_gsup_messages.h>
27
28#include <openbsc/debug.h>
29#include <openbsc/gprs_utils.h>
Neels Hofmeyrd48f0572015-10-12 11:57:33 +020030#include <openbsc/utils.h>
Jacob Erlbeckf3a271f2014-12-11 16:54:14 +010031
32#include <osmocom/gsm/tlv.h>
33#include <osmocom/core/msgb.h>
34
35#include <stdint.h>
36
Jacob Erlbeckf3a271f2014-12-11 16:54:14 +010037static int decode_pdp_info(uint8_t *data, size_t data_len,
38 struct gprs_gsup_pdp_info *pdp_info)
39{
40 int rc;
41 uint8_t tag;
42 uint8_t *value;
43 size_t value_len;
44
45 /* specific parts */
46 while (data_len > 0) {
47 enum gprs_gsup_iei iei;
48
49 rc = gprs_shift_tlv(&data, &data_len, &tag, &value, &value_len);
50 if (rc < 0)
Jacob Erlbeckbce20612015-01-05 18:57:32 +010051 return -GMM_CAUSE_PROTO_ERR_UNSPEC;
Jacob Erlbeckf3a271f2014-12-11 16:54:14 +010052
53 iei = tag;
54
55 switch (iei) {
56 case GPRS_GSUP_PDP_CONTEXT_ID_IE:
57 pdp_info->context_id = decode_big_endian(value, value_len);
58 break;
59
60 case GPRS_GSUP_PDP_TYPE_IE:
61 pdp_info->pdp_type =
62 decode_big_endian(value, value_len) & 0x0fff;
63 break;
64
65 case GPRS_GSUP_ACCESS_POINT_NAME_IE:
66 pdp_info->apn_enc = value;
67 pdp_info->apn_enc_len = value_len;
68 break;
69
Holger Hans Peter Freyther49c1a712015-04-23 09:13:01 -040070 case GPRS_GSUP_PDP_QOS_IE:
71 pdp_info->qos_enc = value;
72 pdp_info->qos_enc_len = value_len;
73 break;
74
Jacob Erlbeckf3a271f2014-12-11 16:54:14 +010075 default:
76 LOGP(DGPRS, LOGL_ERROR,
77 "GSUP IE type %d not expected in PDP info\n", iei);
78 continue;
79 }
80 }
81
82 return 0;
83}
84
85static int decode_auth_info(uint8_t *data, size_t data_len,
Harald Welte121e9a42016-04-20 13:13:19 +020086 struct osmo_auth_vector *auth_vector)
Jacob Erlbeckf3a271f2014-12-11 16:54:14 +010087{
88 int rc;
89 uint8_t tag;
90 uint8_t *value;
91 size_t value_len;
92 enum gprs_gsup_iei iei;
93
94 /* specific parts */
95 while (data_len > 0) {
96 rc = gprs_shift_tlv(&data, &data_len, &tag, &value, &value_len);
97 if (rc < 0)
Jacob Erlbeckbce20612015-01-05 18:57:32 +010098 return -GMM_CAUSE_PROTO_ERR_UNSPEC;
Jacob Erlbeckf3a271f2014-12-11 16:54:14 +010099
100 iei = tag;
101
102 switch (iei) {
103 case GPRS_GSUP_RAND_IE:
Harald Welte121e9a42016-04-20 13:13:19 +0200104 if (value_len != sizeof(auth_vector->rand))
Jacob Erlbeckf3a271f2014-12-11 16:54:14 +0100105 goto parse_error;
106
Harald Welte121e9a42016-04-20 13:13:19 +0200107 memcpy(auth_vector->rand, value, value_len);
Jacob Erlbeckf3a271f2014-12-11 16:54:14 +0100108 break;
109
110 case GPRS_GSUP_SRES_IE:
Harald Welte121e9a42016-04-20 13:13:19 +0200111 if (value_len != sizeof(auth_vector->sres))
Jacob Erlbeckf3a271f2014-12-11 16:54:14 +0100112 goto parse_error;
113
Harald Welte121e9a42016-04-20 13:13:19 +0200114 memcpy(auth_vector->sres, value, value_len);
Jacob Erlbeckf3a271f2014-12-11 16:54:14 +0100115 break;
116
117 case GPRS_GSUP_KC_IE:
Harald Welte121e9a42016-04-20 13:13:19 +0200118 if (value_len != sizeof(auth_vector->kc))
Jacob Erlbeckf3a271f2014-12-11 16:54:14 +0100119 goto parse_error;
120
Harald Welte121e9a42016-04-20 13:13:19 +0200121 memcpy(auth_vector->kc, value, value_len);
Jacob Erlbeckf3a271f2014-12-11 16:54:14 +0100122 break;
123
124 default:
125 LOGP(DGPRS, LOGL_ERROR,
126 "GSUP IE type %d not expected in PDP info\n", iei);
127 continue;
128 }
129 }
130
131 return 0;
132
133parse_error:
134 LOGP(DGPRS, LOGL_ERROR,
Holger Hans Peter Freyther8e6ecc92015-04-23 11:55:23 -0400135 "GSUP IE type %d, length %zu invalid in PDP info\n", iei, value_len);
Jacob Erlbeckf3a271f2014-12-11 16:54:14 +0100136
137 return -1;
138}
139
140int gprs_gsup_decode(const uint8_t *const_data, size_t data_len,
141 struct gprs_gsup_message *gsup_msg)
142{
143 int rc;
144 uint8_t tag;
145 /* the shift/match functions expect non-const pointers, but we'll
146 * either copy the data or cast pointers back to const before returning
147 * them
148 */
149 uint8_t *data = (uint8_t *)const_data;
150 uint8_t *value;
151 size_t value_len;
152 static const struct gprs_gsup_pdp_info empty_pdp_info = {0};
Harald Welte121e9a42016-04-20 13:13:19 +0200153 static const struct osmo_auth_vector empty_auth_info = {0};
Jacob Erlbeck16106262015-01-12 13:54:39 +0100154 static const struct gprs_gsup_message empty_gsup_message = {0};
155
156 *gsup_msg = empty_gsup_message;
Jacob Erlbeckf3a271f2014-12-11 16:54:14 +0100157
158 /* generic part */
Jacob Erlbeck424ffa42015-01-12 13:23:05 +0100159 rc = gprs_shift_v_fixed(&data, &data_len, 1, &value);
160 if (rc < 0)
161 return -GMM_CAUSE_INV_MAND_INFO;
162
Jacob Erlbeckf3a271f2014-12-11 16:54:14 +0100163 gsup_msg->message_type = decode_big_endian(value, 1);
164
165 rc = gprs_match_tlv(&data, &data_len, GPRS_GSUP_IMSI_IE,
166 &value, &value_len);
167
168 if (rc <= 0)
169 return -GMM_CAUSE_INV_MAND_INFO;
170
171 if (value_len * 2 + 1 > sizeof(gsup_msg->imsi))
172 return -GMM_CAUSE_INV_MAND_INFO;
173
174 /* Note that gsm48_decode_bcd_number expects the number of encoded IMSI
175 * octets in the first octet. By coincidence (the TLV encoding) the byte
176 * before the value part already contains this length so we can use it
177 * here.
178 */
179 OSMO_ASSERT(value[-1] == value_len);
180 gsm48_decode_bcd_number(gsup_msg->imsi, sizeof(gsup_msg->imsi),
181 value - 1, 0);
182
Jacob Erlbeckf3a271f2014-12-11 16:54:14 +0100183 /* specific parts */
184 while (data_len > 0) {
185 enum gprs_gsup_iei iei;
186 struct gprs_gsup_pdp_info pdp_info;
Harald Welte121e9a42016-04-20 13:13:19 +0200187 struct osmo_auth_vector auth_info;
Jacob Erlbeckf3a271f2014-12-11 16:54:14 +0100188
189 rc = gprs_shift_tlv(&data, &data_len, &tag, &value, &value_len);
190 if (rc < 0)
191 return -GMM_CAUSE_PROTO_ERR_UNSPEC;
192
193 iei = tag;
194
195 switch (iei) {
196 case GPRS_GSUP_IMSI_IE:
197 case GPRS_GSUP_PDP_TYPE_IE:
198 case GPRS_GSUP_ACCESS_POINT_NAME_IE:
199 case GPRS_GSUP_RAND_IE:
200 case GPRS_GSUP_SRES_IE:
201 case GPRS_GSUP_KC_IE:
202 LOGP(DGPRS, LOGL_NOTICE,
203 "GSUP IE type %d not expected (ignored)\n", iei);
204 continue;
205
206 case GPRS_GSUP_CAUSE_IE:
207 gsup_msg->cause = decode_big_endian(value, value_len);
208 break;
209
210 case GPRS_GSUP_CANCEL_TYPE_IE:
211 gsup_msg->cancel_type =
212 decode_big_endian(value, value_len) + 1;
213 break;
214
215 case GPRS_GSUP_PDP_INFO_COMPL_IE:
216 gsup_msg->pdp_info_compl = 1;
217 break;
218
Jacob Erlbeck69d27132015-01-15 11:50:08 +0100219 case GPRS_GSUP_FREEZE_PTMSI_IE:
220 gsup_msg->freeze_ptmsi = 1;
221 break;
222
Jacob Erlbeckf3a271f2014-12-11 16:54:14 +0100223 case GPRS_GSUP_PDP_CONTEXT_ID_IE:
224 /* When these IE appear in the top-level part of the
225 * message, they are used by Delete Subscr Info to delete
226 * single entries. We don't have an extra list for
227 * these but use the PDP info list instead */
228
229 /* fall through */
230
231 case GPRS_GSUP_PDP_INFO_IE:
232 if (gsup_msg->num_pdp_infos >= GPRS_GSUP_MAX_NUM_PDP_INFO) {
233 LOGP(DGPRS, LOGL_ERROR,
234 "GSUP IE type %d (PDP_INFO) max exceeded\n",
235 iei);
236 return -GMM_CAUSE_COND_IE_ERR;
237 }
238
Jacob Erlbeck16106262015-01-12 13:54:39 +0100239 pdp_info = empty_pdp_info;
Jacob Erlbeckf3a271f2014-12-11 16:54:14 +0100240
241 if (iei == GPRS_GSUP_PDP_INFO_IE) {
242 rc = decode_pdp_info(value, value_len, &pdp_info);
243 if (rc < 0)
244 return rc;
245 pdp_info.have_info = 1;
246 } else {
247 pdp_info.context_id =
248 decode_big_endian(value, value_len);
249 }
250
251 gsup_msg->pdp_infos[gsup_msg->num_pdp_infos++] =
252 pdp_info;
253 break;
254
255 case GPRS_GSUP_AUTH_TUPLE_IE:
Harald Welte121e9a42016-04-20 13:13:19 +0200256 if (gsup_msg->num_auth_vectors >= GPRS_GSUP_MAX_NUM_AUTH_INFO) {
Jacob Erlbeckf3a271f2014-12-11 16:54:14 +0100257 LOGP(DGPRS, LOGL_ERROR,
258 "GSUP IE type %d (AUTH_INFO) max exceeded\n",
259 iei);
260 return -GMM_CAUSE_INV_MAND_INFO;
261 }
262
Jacob Erlbeck16106262015-01-12 13:54:39 +0100263 auth_info = empty_auth_info;
Jacob Erlbeckf3a271f2014-12-11 16:54:14 +0100264
265 rc = decode_auth_info(value, value_len, &auth_info);
266 if (rc < 0)
267 return rc;
268
Harald Welte121e9a42016-04-20 13:13:19 +0200269 gsup_msg->auth_vectors[gsup_msg->num_auth_vectors++] =
Jacob Erlbeckf3a271f2014-12-11 16:54:14 +0100270 auth_info;
271 break;
Holger Hans Peter Freytherb927f1c2015-04-22 23:09:41 -0400272
273 case GPRS_GSUP_MSISDN_IE:
274 gsup_msg->msisdn_enc = value;
275 gsup_msg->msisdn_enc_len = value_len;
276 break;
277
Holger Hans Peter Freyther0bb56742015-05-17 19:56:38 +0200278 case GPRS_GSUP_HLR_NUMBER_IE:
279 gsup_msg->hlr_enc = value;
280 gsup_msg->hlr_enc_len = value_len;
281 break;
282
Jacob Erlbeckf3a271f2014-12-11 16:54:14 +0100283 default:
284 LOGP(DGPRS, LOGL_NOTICE,
285 "GSUP IE type %d unknown\n", iei);
286 continue;
287 }
288 }
289
290 return 0;
291}
292
293static void encode_pdp_info(struct msgb *msg, enum gprs_gsup_iei iei,
294 const struct gprs_gsup_pdp_info *pdp_info)
295{
296 uint8_t *len_field;
297 size_t old_len;
298 uint8_t u8;
299
300 len_field = msgb_tlv_put(msg, iei, 0, NULL) - 1;
301 old_len = msgb_length(msg);
302
303 u8 = pdp_info->context_id;
304 msgb_tlv_put(msg, GPRS_GSUP_PDP_CONTEXT_ID_IE, sizeof(u8), &u8);
305
306 if (pdp_info->pdp_type) {
307 msgb_tlv_put(msg, GPRS_GSUP_PDP_TYPE_IE,
308 GPRS_GSUP_PDP_TYPE_SIZE,
309 encode_big_endian(pdp_info->pdp_type | 0xf000,
310 GPRS_GSUP_PDP_TYPE_SIZE));
311 }
312
313 if (pdp_info->apn_enc) {
314 msgb_tlv_put(msg, GPRS_GSUP_ACCESS_POINT_NAME_IE,
315 pdp_info->apn_enc_len, pdp_info->apn_enc);
316 }
317
Holger Hans Peter Freyther49c1a712015-04-23 09:13:01 -0400318 if (pdp_info->qos_enc) {
319 msgb_tlv_put(msg, GPRS_GSUP_PDP_QOS_IE,
320 pdp_info->qos_enc_len, pdp_info->qos_enc);
321 }
322
Jacob Erlbeckf3a271f2014-12-11 16:54:14 +0100323 /* Update length field */
324 *len_field = msgb_length(msg) - old_len;
325}
326
327static void encode_auth_info(struct msgb *msg, enum gprs_gsup_iei iei,
Harald Welte121e9a42016-04-20 13:13:19 +0200328 const struct osmo_auth_vector *auth_vector)
Jacob Erlbeckf3a271f2014-12-11 16:54:14 +0100329{
330 uint8_t *len_field;
331 size_t old_len;
332
333 len_field = msgb_tlv_put(msg, iei, 0, NULL) - 1;
334 old_len = msgb_length(msg);
335
336 msgb_tlv_put(msg, GPRS_GSUP_RAND_IE,
Harald Welte121e9a42016-04-20 13:13:19 +0200337 sizeof(auth_vector->rand), auth_vector->rand);
Jacob Erlbeckf3a271f2014-12-11 16:54:14 +0100338
339 msgb_tlv_put(msg, GPRS_GSUP_SRES_IE,
Harald Welte121e9a42016-04-20 13:13:19 +0200340 sizeof(auth_vector->sres), auth_vector->sres);
Jacob Erlbeckf3a271f2014-12-11 16:54:14 +0100341
342 msgb_tlv_put(msg, GPRS_GSUP_KC_IE,
Harald Welte121e9a42016-04-20 13:13:19 +0200343 sizeof(auth_vector->kc), auth_vector->kc);
Jacob Erlbeckf3a271f2014-12-11 16:54:14 +0100344
345 /* Update length field */
346 *len_field = msgb_length(msg) - old_len;
347}
348
349void gprs_gsup_encode(struct msgb *msg, const struct gprs_gsup_message *gsup_msg)
350{
351 uint8_t u8;
352 int idx;
353 uint8_t bcd_buf[GSM48_MI_SIZE] = {0};
354 size_t bcd_len;
355
356 /* generic part */
357 OSMO_ASSERT(gsup_msg->message_type);
358 msgb_v_put(msg, gsup_msg->message_type);
359
360 bcd_len = gsm48_encode_bcd_number(bcd_buf, sizeof(bcd_buf), 0,
361 gsup_msg->imsi);
362
363 OSMO_ASSERT(bcd_len > 1);
364
365 /* Note that gsm48_encode_bcd_number puts the length into the first
366 * octet. Since msgb_tlv_put will add this length byte, we'll have to
367 * skip it */
368 msgb_tlv_put(msg, GPRS_GSUP_IMSI_IE, bcd_len - 1, &bcd_buf[1]);
369
370 /* specific parts */
Holger Hans Peter Freytherb927f1c2015-04-22 23:09:41 -0400371 if (gsup_msg->msisdn_enc)
372 msgb_tlv_put(msg, GPRS_GSUP_MSISDN_IE,
373 gsup_msg->msisdn_enc_len, gsup_msg->msisdn_enc);
Holger Hans Peter Freyther0bb56742015-05-17 19:56:38 +0200374 if (gsup_msg->hlr_enc)
375 msgb_tlv_put(msg, GPRS_GSUP_HLR_NUMBER_IE,
376 gsup_msg->hlr_enc_len, gsup_msg->hlr_enc);
Holger Hans Peter Freytherb927f1c2015-04-22 23:09:41 -0400377
Jacob Erlbeckf3a271f2014-12-11 16:54:14 +0100378 if ((u8 = gsup_msg->cause))
379 msgb_tlv_put(msg, GPRS_GSUP_CAUSE_IE, sizeof(u8), &u8);
380
381 if ((u8 = gsup_msg->cancel_type)) {
382 u8 -= 1;
383 msgb_tlv_put(msg, GPRS_GSUP_CANCEL_TYPE_IE, sizeof(u8), &u8);
384 }
385
386 if (gsup_msg->pdp_info_compl)
387 msgb_tlv_put(msg, GPRS_GSUP_PDP_INFO_COMPL_IE, 0, &u8);
388
Jacob Erlbeck69d27132015-01-15 11:50:08 +0100389 if (gsup_msg->freeze_ptmsi)
390 msgb_tlv_put(msg, GPRS_GSUP_FREEZE_PTMSI_IE, 0, &u8);
391
Jacob Erlbeckf3a271f2014-12-11 16:54:14 +0100392 for (idx = 0; idx < gsup_msg->num_pdp_infos; idx++) {
393 const struct gprs_gsup_pdp_info *pdp_info;
394
395 pdp_info = &gsup_msg->pdp_infos[idx];
396
397 if (pdp_info->context_id == 0)
398 continue;
399
400 if (pdp_info->have_info) {
401 encode_pdp_info(msg, GPRS_GSUP_PDP_INFO_IE, pdp_info);
402 } else {
403 u8 = pdp_info->context_id;
404 msgb_tlv_put(msg, GPRS_GSUP_PDP_CONTEXT_ID_IE,
405 sizeof(u8), &u8);
406 }
407 }
408
Harald Welte121e9a42016-04-20 13:13:19 +0200409 for (idx = 0; idx < gsup_msg->num_auth_vectors; idx++) {
410 const struct osmo_auth_vector *auth_vector;
Jacob Erlbeckf3a271f2014-12-11 16:54:14 +0100411
Harald Welte121e9a42016-04-20 13:13:19 +0200412 auth_vector = &gsup_msg->auth_vectors[idx];
Jacob Erlbeckf3a271f2014-12-11 16:54:14 +0100413
Harald Welte121e9a42016-04-20 13:13:19 +0200414 encode_auth_info(msg, GPRS_GSUP_AUTH_TUPLE_IE, auth_vector);
Jacob Erlbeckf3a271f2014-12-11 16:54:14 +0100415 }
416}