blob: 430cba7505946ea6d8d2eb5cc8f6d04b30fd3ec9 [file] [log] [blame]
Harald Welte28903a92016-04-25 14:53:43 +02001/* Osmocom Subscriber Update Protocol message encoder/decoder */
Jacob Erlbeckf3a271f2014-12-11 16:54:14 +01002
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
Harald Welte28903a92016-04-25 14:53:43 +020026#include <openbsc/osmo_gsup_messages.h>
Jacob Erlbeckf3a271f2014-12-11 16:54:14 +010027
28#include <openbsc/debug.h>
Neels Hofmeyrd48f0572015-10-12 11:57:33 +020029#include <openbsc/utils.h>
Jacob Erlbeckf3a271f2014-12-11 16:54:14 +010030
31#include <osmocom/gsm/tlv.h>
32#include <osmocom/core/msgb.h>
Harald Welted3fa84d2016-04-20 17:50:17 +020033#include <osmocom/gsm/gsm48_ie.h>
Jacob Erlbeckf3a271f2014-12-11 16:54:14 +010034
35#include <stdint.h>
36
Jacob Erlbeckf3a271f2014-12-11 16:54:14 +010037static int decode_pdp_info(uint8_t *data, size_t data_len,
Harald Welte28903a92016-04-25 14:53:43 +020038 struct osmo_gsup_pdp_info *pdp_info)
Jacob Erlbeckf3a271f2014-12-11 16:54:14 +010039{
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) {
Harald Welte28903a92016-04-25 14:53:43 +020047 enum osmo_gsup_iei iei;
Jacob Erlbeckf3a271f2014-12-11 16:54:14 +010048
Harald Welte842674b2016-04-25 15:14:01 +020049 rc = osmo_shift_tlv(&data, &data_len, &tag, &value, &value_len);
Jacob Erlbeckf3a271f2014-12-11 16:54:14 +010050 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) {
Harald Welte28903a92016-04-25 14:53:43 +020056 case OSMO_GSUP_PDP_CONTEXT_ID_IE:
Jacob Erlbeckf3a271f2014-12-11 16:54:14 +010057 pdp_info->context_id = decode_big_endian(value, value_len);
58 break;
59
Harald Welte28903a92016-04-25 14:53:43 +020060 case OSMO_GSUP_PDP_TYPE_IE:
Jacob Erlbeckf3a271f2014-12-11 16:54:14 +010061 pdp_info->pdp_type =
62 decode_big_endian(value, value_len) & 0x0fff;
63 break;
64
Harald Welte28903a92016-04-25 14:53:43 +020065 case OSMO_GSUP_ACCESS_POINT_NAME_IE:
Jacob Erlbeckf3a271f2014-12-11 16:54:14 +010066 pdp_info->apn_enc = value;
67 pdp_info->apn_enc_len = value_len;
68 break;
69
Harald Welte28903a92016-04-25 14:53:43 +020070 case OSMO_GSUP_PDP_QOS_IE:
Holger Hans Peter Freyther49c1a712015-04-23 09:13:01 -040071 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;
Harald Welte28903a92016-04-25 14:53:43 +020092 enum osmo_gsup_iei iei;
Harald Welte7ca035d2016-04-25 15:36:08 +020093 uint8_t presence = 0;
Jacob Erlbeckf3a271f2014-12-11 16:54:14 +010094
95 /* specific parts */
96 while (data_len > 0) {
Harald Welte842674b2016-04-25 15:14:01 +020097 rc = osmo_shift_tlv(&data, &data_len, &tag, &value, &value_len);
Jacob Erlbeckf3a271f2014-12-11 16:54:14 +010098 if (rc < 0)
Jacob Erlbeckbce20612015-01-05 18:57:32 +010099 return -GMM_CAUSE_PROTO_ERR_UNSPEC;
Jacob Erlbeckf3a271f2014-12-11 16:54:14 +0100100
101 iei = tag;
102
103 switch (iei) {
Harald Welte28903a92016-04-25 14:53:43 +0200104 case OSMO_GSUP_RAND_IE:
Harald Welte121e9a42016-04-20 13:13:19 +0200105 if (value_len != sizeof(auth_vector->rand))
Jacob Erlbeckf3a271f2014-12-11 16:54:14 +0100106 goto parse_error;
107
Harald Welte121e9a42016-04-20 13:13:19 +0200108 memcpy(auth_vector->rand, value, value_len);
Harald Welte7ca035d2016-04-25 15:36:08 +0200109 presence |= (1 << 0);
Jacob Erlbeckf3a271f2014-12-11 16:54:14 +0100110 break;
111
Harald Welte28903a92016-04-25 14:53:43 +0200112 case OSMO_GSUP_SRES_IE:
Harald Welte121e9a42016-04-20 13:13:19 +0200113 if (value_len != sizeof(auth_vector->sres))
Jacob Erlbeckf3a271f2014-12-11 16:54:14 +0100114 goto parse_error;
115
Harald Welte121e9a42016-04-20 13:13:19 +0200116 memcpy(auth_vector->sres, value, value_len);
Harald Welte7ca035d2016-04-25 15:36:08 +0200117 presence |= (1 << 1);
Jacob Erlbeckf3a271f2014-12-11 16:54:14 +0100118 break;
119
Harald Welte28903a92016-04-25 14:53:43 +0200120 case OSMO_GSUP_KC_IE:
Harald Welte121e9a42016-04-20 13:13:19 +0200121 if (value_len != sizeof(auth_vector->kc))
Jacob Erlbeckf3a271f2014-12-11 16:54:14 +0100122 goto parse_error;
123
Harald Welte121e9a42016-04-20 13:13:19 +0200124 memcpy(auth_vector->kc, value, value_len);
Harald Welte7ca035d2016-04-25 15:36:08 +0200125 presence |= (1 << 2);
126 break;
127
128 case OSMO_GSUP_IK_IE:
129 if (value_len != sizeof(auth_vector->ik))
130 goto parse_error;
131 memcpy(auth_vector->ik, value, value_len);
132 presence |= (1 << 4);
133 break;
134
135 case OSMO_GSUP_CK_IE:
136 if (value_len != sizeof(auth_vector->ck))
137 goto parse_error;
138 memcpy(auth_vector->ck, value, value_len);
139 presence |= (1 << 5);
140 break;
141
142 case OSMO_GSUP_AUTN_IE:
143 if (value_len != sizeof(auth_vector->autn))
144 goto parse_error;
145 memcpy(auth_vector->autn, value, value_len);
146 presence |= (1 << 6);
147 break;
148 case OSMO_GSUP_RES_IE:
149 if (value_len > sizeof(auth_vector->res))
150 goto parse_error;
151 memcpy(auth_vector->res, value, value_len);
152 auth_vector->res_len = value_len;
153 presence |= (1 << 7);
Jacob Erlbeckf3a271f2014-12-11 16:54:14 +0100154 break;
155
156 default:
157 LOGP(DGPRS, LOGL_ERROR,
158 "GSUP IE type %d not expected in PDP info\n", iei);
159 continue;
160 }
161 }
162
Harald Welte7ca035d2016-04-25 15:36:08 +0200163 if (presence & 0x07)
164 auth_vector->auth_types |= OSMO_AUTH_TYPE_GSM;
165 if (presence & 0xf0)
166 auth_vector->auth_types |= OSMO_AUTH_TYPE_UMTS;
167
Jacob Erlbeckf3a271f2014-12-11 16:54:14 +0100168 return 0;
169
170parse_error:
171 LOGP(DGPRS, LOGL_ERROR,
Holger Hans Peter Freyther8e6ecc92015-04-23 11:55:23 -0400172 "GSUP IE type %d, length %zu invalid in PDP info\n", iei, value_len);
Jacob Erlbeckf3a271f2014-12-11 16:54:14 +0100173
174 return -1;
175}
176
Harald Welteeff215a2016-04-25 16:01:15 +0200177/*! Decode (parse) a GSUP message
178 * \param[in] const_data input data to be parsed
179 * \param[in] data_len length of input (\a const_data)
180 * \param[out] gsup_msg callee-allocated output data structure
181 * \returns 0 on success; negative otherwise
182 */
Harald Welte28903a92016-04-25 14:53:43 +0200183int osmo_gsup_decode(const uint8_t *const_data, size_t data_len,
184 struct osmo_gsup_message *gsup_msg)
Jacob Erlbeckf3a271f2014-12-11 16:54:14 +0100185{
186 int rc;
187 uint8_t tag;
188 /* the shift/match functions expect non-const pointers, but we'll
189 * either copy the data or cast pointers back to const before returning
190 * them
191 */
192 uint8_t *data = (uint8_t *)const_data;
193 uint8_t *value;
194 size_t value_len;
Harald Welte28903a92016-04-25 14:53:43 +0200195 static const struct osmo_gsup_pdp_info empty_pdp_info = {0};
Harald Welte121e9a42016-04-20 13:13:19 +0200196 static const struct osmo_auth_vector empty_auth_info = {0};
Harald Welte28903a92016-04-25 14:53:43 +0200197 static const struct osmo_gsup_message empty_gsup_message = {0};
Jacob Erlbeck16106262015-01-12 13:54:39 +0100198
199 *gsup_msg = empty_gsup_message;
Jacob Erlbeckf3a271f2014-12-11 16:54:14 +0100200
201 /* generic part */
Harald Welte842674b2016-04-25 15:14:01 +0200202 rc = osmo_shift_v_fixed(&data, &data_len, 1, &value);
Jacob Erlbeck424ffa42015-01-12 13:23:05 +0100203 if (rc < 0)
204 return -GMM_CAUSE_INV_MAND_INFO;
205
Jacob Erlbeckf3a271f2014-12-11 16:54:14 +0100206 gsup_msg->message_type = decode_big_endian(value, 1);
207
Harald Welte842674b2016-04-25 15:14:01 +0200208 rc = osmo_match_shift_tlv(&data, &data_len, OSMO_GSUP_IMSI_IE,
Jacob Erlbeckf3a271f2014-12-11 16:54:14 +0100209 &value, &value_len);
210
211 if (rc <= 0)
212 return -GMM_CAUSE_INV_MAND_INFO;
213
214 if (value_len * 2 + 1 > sizeof(gsup_msg->imsi))
215 return -GMM_CAUSE_INV_MAND_INFO;
216
217 /* Note that gsm48_decode_bcd_number expects the number of encoded IMSI
218 * octets in the first octet. By coincidence (the TLV encoding) the byte
219 * before the value part already contains this length so we can use it
220 * here.
221 */
222 OSMO_ASSERT(value[-1] == value_len);
223 gsm48_decode_bcd_number(gsup_msg->imsi, sizeof(gsup_msg->imsi),
224 value - 1, 0);
225
Jacob Erlbeckf3a271f2014-12-11 16:54:14 +0100226 /* specific parts */
227 while (data_len > 0) {
Harald Welte28903a92016-04-25 14:53:43 +0200228 enum osmo_gsup_iei iei;
229 struct osmo_gsup_pdp_info pdp_info;
Harald Welte121e9a42016-04-20 13:13:19 +0200230 struct osmo_auth_vector auth_info;
Jacob Erlbeckf3a271f2014-12-11 16:54:14 +0100231
Harald Welte842674b2016-04-25 15:14:01 +0200232 rc = osmo_shift_tlv(&data, &data_len, &tag, &value, &value_len);
Jacob Erlbeckf3a271f2014-12-11 16:54:14 +0100233 if (rc < 0)
234 return -GMM_CAUSE_PROTO_ERR_UNSPEC;
235
236 iei = tag;
237
238 switch (iei) {
Harald Welte28903a92016-04-25 14:53:43 +0200239 case OSMO_GSUP_IMSI_IE:
240 case OSMO_GSUP_PDP_TYPE_IE:
241 case OSMO_GSUP_ACCESS_POINT_NAME_IE:
242 case OSMO_GSUP_RAND_IE:
243 case OSMO_GSUP_SRES_IE:
244 case OSMO_GSUP_KC_IE:
Jacob Erlbeckf3a271f2014-12-11 16:54:14 +0100245 LOGP(DGPRS, LOGL_NOTICE,
246 "GSUP IE type %d not expected (ignored)\n", iei);
247 continue;
248
Harald Welte28903a92016-04-25 14:53:43 +0200249 case OSMO_GSUP_CAUSE_IE:
Jacob Erlbeckf3a271f2014-12-11 16:54:14 +0100250 gsup_msg->cause = decode_big_endian(value, value_len);
251 break;
252
Harald Welte28903a92016-04-25 14:53:43 +0200253 case OSMO_GSUP_CANCEL_TYPE_IE:
Jacob Erlbeckf3a271f2014-12-11 16:54:14 +0100254 gsup_msg->cancel_type =
255 decode_big_endian(value, value_len) + 1;
256 break;
257
Harald Welte28903a92016-04-25 14:53:43 +0200258 case OSMO_GSUP_PDP_INFO_COMPL_IE:
Jacob Erlbeckf3a271f2014-12-11 16:54:14 +0100259 gsup_msg->pdp_info_compl = 1;
260 break;
261
Harald Welte28903a92016-04-25 14:53:43 +0200262 case OSMO_GSUP_FREEZE_PTMSI_IE:
Jacob Erlbeck69d27132015-01-15 11:50:08 +0100263 gsup_msg->freeze_ptmsi = 1;
264 break;
265
Harald Welte28903a92016-04-25 14:53:43 +0200266 case OSMO_GSUP_PDP_CONTEXT_ID_IE:
Jacob Erlbeckf3a271f2014-12-11 16:54:14 +0100267 /* When these IE appear in the top-level part of the
268 * message, they are used by Delete Subscr Info to delete
269 * single entries. We don't have an extra list for
270 * these but use the PDP info list instead */
271
272 /* fall through */
273
Harald Welte28903a92016-04-25 14:53:43 +0200274 case OSMO_GSUP_PDP_INFO_IE:
275 if (gsup_msg->num_pdp_infos >= OSMO_GSUP_MAX_NUM_PDP_INFO) {
Jacob Erlbeckf3a271f2014-12-11 16:54:14 +0100276 LOGP(DGPRS, LOGL_ERROR,
277 "GSUP IE type %d (PDP_INFO) max exceeded\n",
278 iei);
279 return -GMM_CAUSE_COND_IE_ERR;
280 }
281
Jacob Erlbeck16106262015-01-12 13:54:39 +0100282 pdp_info = empty_pdp_info;
Jacob Erlbeckf3a271f2014-12-11 16:54:14 +0100283
Harald Welte28903a92016-04-25 14:53:43 +0200284 if (iei == OSMO_GSUP_PDP_INFO_IE) {
Jacob Erlbeckf3a271f2014-12-11 16:54:14 +0100285 rc = decode_pdp_info(value, value_len, &pdp_info);
286 if (rc < 0)
287 return rc;
288 pdp_info.have_info = 1;
289 } else {
290 pdp_info.context_id =
291 decode_big_endian(value, value_len);
292 }
293
294 gsup_msg->pdp_infos[gsup_msg->num_pdp_infos++] =
295 pdp_info;
296 break;
297
Harald Welte28903a92016-04-25 14:53:43 +0200298 case OSMO_GSUP_AUTH_TUPLE_IE:
299 if (gsup_msg->num_auth_vectors >= OSMO_GSUP_MAX_NUM_AUTH_INFO) {
Jacob Erlbeckf3a271f2014-12-11 16:54:14 +0100300 LOGP(DGPRS, LOGL_ERROR,
301 "GSUP IE type %d (AUTH_INFO) max exceeded\n",
302 iei);
303 return -GMM_CAUSE_INV_MAND_INFO;
304 }
305
Jacob Erlbeck16106262015-01-12 13:54:39 +0100306 auth_info = empty_auth_info;
Jacob Erlbeckf3a271f2014-12-11 16:54:14 +0100307
308 rc = decode_auth_info(value, value_len, &auth_info);
309 if (rc < 0)
310 return rc;
311
Harald Welte121e9a42016-04-20 13:13:19 +0200312 gsup_msg->auth_vectors[gsup_msg->num_auth_vectors++] =
Jacob Erlbeckf3a271f2014-12-11 16:54:14 +0100313 auth_info;
314 break;
Holger Hans Peter Freytherb927f1c2015-04-22 23:09:41 -0400315
Harald Welte7ca035d2016-04-25 15:36:08 +0200316 case OSMO_GSUP_AUTS_IE:
317 if (value_len != 16) {
318 LOGP(DGPRS, LOGL_ERROR,
319 "AUTS length != 16 received\n");
320 return -GMM_CAUSE_COND_IE_ERR;
321 }
322 gsup_msg->auts = value;
323 break;
324
Harald Welte28903a92016-04-25 14:53:43 +0200325 case OSMO_GSUP_MSISDN_IE:
Holger Hans Peter Freytherb927f1c2015-04-22 23:09:41 -0400326 gsup_msg->msisdn_enc = value;
327 gsup_msg->msisdn_enc_len = value_len;
328 break;
329
Harald Welte28903a92016-04-25 14:53:43 +0200330 case OSMO_GSUP_HLR_NUMBER_IE:
Holger Hans Peter Freyther0bb56742015-05-17 19:56:38 +0200331 gsup_msg->hlr_enc = value;
332 gsup_msg->hlr_enc_len = value_len;
333 break;
334
Jacob Erlbeckf3a271f2014-12-11 16:54:14 +0100335 default:
336 LOGP(DGPRS, LOGL_NOTICE,
337 "GSUP IE type %d unknown\n", iei);
338 continue;
339 }
340 }
341
342 return 0;
343}
344
Harald Welte28903a92016-04-25 14:53:43 +0200345static void encode_pdp_info(struct msgb *msg, enum osmo_gsup_iei iei,
346 const struct osmo_gsup_pdp_info *pdp_info)
Jacob Erlbeckf3a271f2014-12-11 16:54:14 +0100347{
348 uint8_t *len_field;
349 size_t old_len;
350 uint8_t u8;
351
352 len_field = msgb_tlv_put(msg, iei, 0, NULL) - 1;
353 old_len = msgb_length(msg);
354
355 u8 = pdp_info->context_id;
Harald Welte28903a92016-04-25 14:53:43 +0200356 msgb_tlv_put(msg, OSMO_GSUP_PDP_CONTEXT_ID_IE, sizeof(u8), &u8);
Jacob Erlbeckf3a271f2014-12-11 16:54:14 +0100357
358 if (pdp_info->pdp_type) {
Harald Welte28903a92016-04-25 14:53:43 +0200359 msgb_tlv_put(msg, OSMO_GSUP_PDP_TYPE_IE,
360 OSMO_GSUP_PDP_TYPE_SIZE,
Jacob Erlbeckf3a271f2014-12-11 16:54:14 +0100361 encode_big_endian(pdp_info->pdp_type | 0xf000,
Harald Welte28903a92016-04-25 14:53:43 +0200362 OSMO_GSUP_PDP_TYPE_SIZE));
Jacob Erlbeckf3a271f2014-12-11 16:54:14 +0100363 }
364
365 if (pdp_info->apn_enc) {
Harald Welte28903a92016-04-25 14:53:43 +0200366 msgb_tlv_put(msg, OSMO_GSUP_ACCESS_POINT_NAME_IE,
Jacob Erlbeckf3a271f2014-12-11 16:54:14 +0100367 pdp_info->apn_enc_len, pdp_info->apn_enc);
368 }
369
Holger Hans Peter Freyther49c1a712015-04-23 09:13:01 -0400370 if (pdp_info->qos_enc) {
Harald Welte28903a92016-04-25 14:53:43 +0200371 msgb_tlv_put(msg, OSMO_GSUP_PDP_QOS_IE,
Holger Hans Peter Freyther49c1a712015-04-23 09:13:01 -0400372 pdp_info->qos_enc_len, pdp_info->qos_enc);
373 }
374
Jacob Erlbeckf3a271f2014-12-11 16:54:14 +0100375 /* Update length field */
376 *len_field = msgb_length(msg) - old_len;
377}
378
Harald Welte28903a92016-04-25 14:53:43 +0200379static void encode_auth_info(struct msgb *msg, enum osmo_gsup_iei iei,
Harald Welte121e9a42016-04-20 13:13:19 +0200380 const struct osmo_auth_vector *auth_vector)
Jacob Erlbeckf3a271f2014-12-11 16:54:14 +0100381{
382 uint8_t *len_field;
383 size_t old_len;
384
385 len_field = msgb_tlv_put(msg, iei, 0, NULL) - 1;
386 old_len = msgb_length(msg);
387
Harald Welte28903a92016-04-25 14:53:43 +0200388 msgb_tlv_put(msg, OSMO_GSUP_RAND_IE,
Harald Welte121e9a42016-04-20 13:13:19 +0200389 sizeof(auth_vector->rand), auth_vector->rand);
Jacob Erlbeckf3a271f2014-12-11 16:54:14 +0100390
Harald Welte28903a92016-04-25 14:53:43 +0200391 msgb_tlv_put(msg, OSMO_GSUP_SRES_IE,
Harald Welte121e9a42016-04-20 13:13:19 +0200392 sizeof(auth_vector->sres), auth_vector->sres);
Jacob Erlbeckf3a271f2014-12-11 16:54:14 +0100393
Harald Welte28903a92016-04-25 14:53:43 +0200394 msgb_tlv_put(msg, OSMO_GSUP_KC_IE,
Harald Welte121e9a42016-04-20 13:13:19 +0200395 sizeof(auth_vector->kc), auth_vector->kc);
Jacob Erlbeckf3a271f2014-12-11 16:54:14 +0100396
397 /* Update length field */
398 *len_field = msgb_length(msg) - old_len;
399}
400
Harald Welteeff215a2016-04-25 16:01:15 +0200401/*! Encode a GSUP message
402 * \param[out] msg message buffer to which encoded message is written
403 * \param[in] gsup_msg \ref osmo_gsup_message data to be encoded
404 */
Harald Welte28903a92016-04-25 14:53:43 +0200405void osmo_gsup_encode(struct msgb *msg, const struct osmo_gsup_message *gsup_msg)
Jacob Erlbeckf3a271f2014-12-11 16:54:14 +0100406{
407 uint8_t u8;
408 int idx;
409 uint8_t bcd_buf[GSM48_MI_SIZE] = {0};
410 size_t bcd_len;
411
412 /* generic part */
413 OSMO_ASSERT(gsup_msg->message_type);
414 msgb_v_put(msg, gsup_msg->message_type);
415
416 bcd_len = gsm48_encode_bcd_number(bcd_buf, sizeof(bcd_buf), 0,
417 gsup_msg->imsi);
418
419 OSMO_ASSERT(bcd_len > 1);
420
421 /* Note that gsm48_encode_bcd_number puts the length into the first
422 * octet. Since msgb_tlv_put will add this length byte, we'll have to
423 * skip it */
Harald Welte28903a92016-04-25 14:53:43 +0200424 msgb_tlv_put(msg, OSMO_GSUP_IMSI_IE, bcd_len - 1, &bcd_buf[1]);
Jacob Erlbeckf3a271f2014-12-11 16:54:14 +0100425
426 /* specific parts */
Holger Hans Peter Freytherb927f1c2015-04-22 23:09:41 -0400427 if (gsup_msg->msisdn_enc)
Harald Welte28903a92016-04-25 14:53:43 +0200428 msgb_tlv_put(msg, OSMO_GSUP_MSISDN_IE,
Holger Hans Peter Freytherb927f1c2015-04-22 23:09:41 -0400429 gsup_msg->msisdn_enc_len, gsup_msg->msisdn_enc);
Holger Hans Peter Freyther0bb56742015-05-17 19:56:38 +0200430 if (gsup_msg->hlr_enc)
Harald Welte28903a92016-04-25 14:53:43 +0200431 msgb_tlv_put(msg, OSMO_GSUP_HLR_NUMBER_IE,
Holger Hans Peter Freyther0bb56742015-05-17 19:56:38 +0200432 gsup_msg->hlr_enc_len, gsup_msg->hlr_enc);
Holger Hans Peter Freytherb927f1c2015-04-22 23:09:41 -0400433
Jacob Erlbeckf3a271f2014-12-11 16:54:14 +0100434 if ((u8 = gsup_msg->cause))
Harald Welte28903a92016-04-25 14:53:43 +0200435 msgb_tlv_put(msg, OSMO_GSUP_CAUSE_IE, sizeof(u8), &u8);
Jacob Erlbeckf3a271f2014-12-11 16:54:14 +0100436
437 if ((u8 = gsup_msg->cancel_type)) {
438 u8 -= 1;
Harald Welte28903a92016-04-25 14:53:43 +0200439 msgb_tlv_put(msg, OSMO_GSUP_CANCEL_TYPE_IE, sizeof(u8), &u8);
Jacob Erlbeckf3a271f2014-12-11 16:54:14 +0100440 }
441
442 if (gsup_msg->pdp_info_compl)
Harald Welte28903a92016-04-25 14:53:43 +0200443 msgb_tlv_put(msg, OSMO_GSUP_PDP_INFO_COMPL_IE, 0, &u8);
Jacob Erlbeckf3a271f2014-12-11 16:54:14 +0100444
Jacob Erlbeck69d27132015-01-15 11:50:08 +0100445 if (gsup_msg->freeze_ptmsi)
Harald Welte28903a92016-04-25 14:53:43 +0200446 msgb_tlv_put(msg, OSMO_GSUP_FREEZE_PTMSI_IE, 0, &u8);
Jacob Erlbeck69d27132015-01-15 11:50:08 +0100447
Jacob Erlbeckf3a271f2014-12-11 16:54:14 +0100448 for (idx = 0; idx < gsup_msg->num_pdp_infos; idx++) {
Harald Welte28903a92016-04-25 14:53:43 +0200449 const struct osmo_gsup_pdp_info *pdp_info;
Jacob Erlbeckf3a271f2014-12-11 16:54:14 +0100450
451 pdp_info = &gsup_msg->pdp_infos[idx];
452
453 if (pdp_info->context_id == 0)
454 continue;
455
456 if (pdp_info->have_info) {
Harald Welte28903a92016-04-25 14:53:43 +0200457 encode_pdp_info(msg, OSMO_GSUP_PDP_INFO_IE, pdp_info);
Jacob Erlbeckf3a271f2014-12-11 16:54:14 +0100458 } else {
459 u8 = pdp_info->context_id;
Harald Welte28903a92016-04-25 14:53:43 +0200460 msgb_tlv_put(msg, OSMO_GSUP_PDP_CONTEXT_ID_IE,
Jacob Erlbeckf3a271f2014-12-11 16:54:14 +0100461 sizeof(u8), &u8);
462 }
463 }
464
Harald Welte121e9a42016-04-20 13:13:19 +0200465 for (idx = 0; idx < gsup_msg->num_auth_vectors; idx++) {
466 const struct osmo_auth_vector *auth_vector;
Jacob Erlbeckf3a271f2014-12-11 16:54:14 +0100467
Harald Welte121e9a42016-04-20 13:13:19 +0200468 auth_vector = &gsup_msg->auth_vectors[idx];
Jacob Erlbeckf3a271f2014-12-11 16:54:14 +0100469
Harald Welte28903a92016-04-25 14:53:43 +0200470 encode_auth_info(msg, OSMO_GSUP_AUTH_TUPLE_IE, auth_vector);
Jacob Erlbeckf3a271f2014-12-11 16:54:14 +0100471 }
472}