blob: c3568400d358ef9117b62fcf2dc6661aae6b5260 [file] [log] [blame]
Sylvain Munaut12ba7782014-06-16 10:13:40 +02001#pragma once
Harald Welteec8b4502010-02-20 20:34:29 +01002
3#include <stdint.h>
4#include <string.h>
5
Pablo Neira Ayuso83419342011-03-22 16:36:13 +01006#include <osmocom/core/msgb.h>
Harald Welte50ef7332017-05-15 12:45:59 +02007#include <osmocom/core/bit16gen.h>
8#include <osmocom/core/bit32gen.h>
Harald Welteec8b4502010-02-20 20:34:29 +01009
Harald Welte57c7d372011-08-17 17:50:55 +020010/*! \defgroup tlv GSM L3 compatible TLV parser
11 * @{
Neels Hofmeyr17518fe2017-06-20 04:35:06 +020012 * \file tlv.h */
Harald Welte57c7d372011-08-17 17:50:55 +020013
Harald Welteec8b4502010-02-20 20:34:29 +010014/* Terminology / wording
15 tag length value (in bits)
16
17 V - - 8
18 LV - 8 N * 8
19 TLV 8 8 N * 8
20 TL16V 8 16 N * 8
21 TLV16 8 8 N * 16
22 TvLV 8 8/16 N * 8
Harald Welte2fe68472012-07-14 01:50:33 +020023 vTvLV 8/16 8/16 N * 8
Harald Welteec8b4502010-02-20 20:34:29 +010024
25*/
26
Neels Hofmeyr87e45502017-06-20 00:17:59 +020027/*! gross length of a LV type field */
Harald Welteec8b4502010-02-20 20:34:29 +010028#define LV_GROSS_LEN(x) (x+1)
Neels Hofmeyr87e45502017-06-20 00:17:59 +020029/*! gross length of a TLV type field */
Harald Welteec8b4502010-02-20 20:34:29 +010030#define TLV_GROSS_LEN(x) (x+2)
Neels Hofmeyr87e45502017-06-20 00:17:59 +020031/*! gross length of a TLV16 type field */
Harald Welteec8b4502010-02-20 20:34:29 +010032#define TLV16_GROSS_LEN(x) ((2*x)+2)
Neels Hofmeyr87e45502017-06-20 00:17:59 +020033/*! gross length of a TL16V type field */
Harald Welteec8b4502010-02-20 20:34:29 +010034#define TL16V_GROSS_LEN(x) (x+3)
Neels Hofmeyr87e45502017-06-20 00:17:59 +020035/*! gross length of a L16TV type field */
Harald Welteec8b4502010-02-20 20:34:29 +010036#define L16TV_GROSS_LEN(x) (x+3)
37
Neels Hofmeyr87e45502017-06-20 00:17:59 +020038/*! maximum length of TLV of one byte length */
Harald Welteec8b4502010-02-20 20:34:29 +010039#define TVLV_MAX_ONEBYTE 0x7f
40
Neels Hofmeyr87e45502017-06-20 00:17:59 +020041/*! gross length of a TVLV type field */
Harald Welteec8b4502010-02-20 20:34:29 +010042static inline uint16_t TVLV_GROSS_LEN(uint16_t len)
43{
44 if (len <= TVLV_MAX_ONEBYTE)
45 return TLV_GROSS_LEN(len);
46 else
47 return TL16V_GROSS_LEN(len);
48}
49
Neels Hofmeyr87e45502017-06-20 00:17:59 +020050/*! gross length of vTvL header (tag+len) */
Harald Welte2fe68472012-07-14 01:50:33 +020051static inline uint16_t VTVL_GAN_GROSS_LEN(uint16_t tag, uint16_t len)
52{
53 uint16_t ret = 2;
54
55 if (tag > TVLV_MAX_ONEBYTE)
56 ret++;
57
58 if (len > TVLV_MAX_ONEBYTE)
59 ret++;
60
61 return ret;
62}
63
Neels Hofmeyr87e45502017-06-20 00:17:59 +020064/*! gross length of vTvLV (tag+len+val) */
Harald Welte2fe68472012-07-14 01:50:33 +020065static inline uint16_t VTVLV_GAN_GROSS_LEN(uint16_t tag, uint16_t len)
66{
67 uint16_t ret;
68
69 if (len <= TVLV_MAX_ONEBYTE)
Vadim Yanitskiyac9e2d82017-05-14 20:52:46 +030070 ret = TLV_GROSS_LEN(len);
Harald Welte2fe68472012-07-14 01:50:33 +020071 else
Vadim Yanitskiyac9e2d82017-05-14 20:52:46 +030072 ret = TL16V_GROSS_LEN(len);
Harald Welte2fe68472012-07-14 01:50:33 +020073
74 if (tag > TVLV_MAX_ONEBYTE)
75 ret += 1;
76
77 return ret;
78}
79
Harald Welteec8b4502010-02-20 20:34:29 +010080/* TLV generation */
81
Neels Hofmeyr87e45502017-06-20 00:17:59 +020082/*! put (append) a LV field */
Harald Welteec8b4502010-02-20 20:34:29 +010083static inline uint8_t *lv_put(uint8_t *buf, uint8_t len,
84 const uint8_t *val)
85{
86 *buf++ = len;
87 memcpy(buf, val, len);
88 return buf + len;
89}
90
Neels Hofmeyr87e45502017-06-20 00:17:59 +020091/*! put (append) a TLV field */
Harald Welteec8b4502010-02-20 20:34:29 +010092static inline uint8_t *tlv_put(uint8_t *buf, uint8_t tag, uint8_t len,
93 const uint8_t *val)
94{
95 *buf++ = tag;
96 *buf++ = len;
97 memcpy(buf, val, len);
98 return buf + len;
99}
100
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200101/*! put (append) a TLV16 field */
Harald Welteec8b4502010-02-20 20:34:29 +0100102static inline uint8_t *tlv16_put(uint8_t *buf, uint8_t tag, uint8_t len,
103 const uint16_t *val)
104{
105 *buf++ = tag;
106 *buf++ = len;
107 memcpy(buf, val, len*2);
108 return buf + len*2;
109}
110
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200111/*! put (append) a TL16V field */
Harald Welteec8b4502010-02-20 20:34:29 +0100112static inline uint8_t *tl16v_put(uint8_t *buf, uint8_t tag, uint16_t len,
113 const uint8_t *val)
114{
115 *buf++ = tag;
116 *buf++ = len >> 8;
117 *buf++ = len & 0xff;
118 memcpy(buf, val, len);
119 return buf + len*2;
120}
121
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200122/*! put (append) a TvLV field */
Harald Welteec8b4502010-02-20 20:34:29 +0100123static inline uint8_t *tvlv_put(uint8_t *buf, uint8_t tag, uint16_t len,
124 const uint8_t *val)
125{
126 uint8_t *ret;
127
128 if (len <= TVLV_MAX_ONEBYTE) {
129 ret = tlv_put(buf, tag, len, val);
130 buf[1] |= 0x80;
131 } else
132 ret = tl16v_put(buf, tag, len, val);
133
134 return ret;
135}
136
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200137/*! put (append) a variable-length tag or variable-length length * */
Harald Welte2fe68472012-07-14 01:50:33 +0200138static inline uint8_t *vt_gan_put(uint8_t *buf, uint16_t tag)
139{
140 if (tag > TVLV_MAX_ONEBYTE) {
141 /* two-byte TAG */
142 *buf++ = 0x80 | (tag >> 8);
143 *buf++ = (tag & 0xff);
144 } else
145 *buf++ = tag;
146
147 return buf;
148}
149
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200150/* put (append) vTvL (GAN) field (tag + length)*/
Harald Welte2fe68472012-07-14 01:50:33 +0200151static inline uint8_t *vtvl_gan_put(uint8_t *buf, uint16_t tag, uint16_t len)
152{
153 uint8_t *ret;
154
155 ret = vt_gan_put(buf, tag);
156 return vt_gan_put(ret, len);
157}
158
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200159/* put (append) vTvLV (GAN) field (tag + length + val) */
Harald Welte2fe68472012-07-14 01:50:33 +0200160static inline uint8_t *vtvlv_gan_put(uint8_t *buf, uint16_t tag, uint16_t len,
161 const uint8_t *val)
162{
163 uint8_t *ret;
164
165 ret = vtvl_gan_put(buf, tag, len );
166
167 memcpy(ret, val, len);
168 ret = buf + len;
169
170 return ret;
171}
172
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200173/*! put (append) a TLV16 field to \ref msgb */
Harald Welteec8b4502010-02-20 20:34:29 +0100174static inline uint8_t *msgb_tlv16_put(struct msgb *msg, uint8_t tag, uint8_t len, const uint16_t *val)
175{
176 uint8_t *buf = msgb_put(msg, TLV16_GROSS_LEN(len));
177 return tlv16_put(buf, tag, len, val);
178}
179
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200180/*! put (append) a TL16V field to \ref msgb */
Harald Welteec8b4502010-02-20 20:34:29 +0100181static inline uint8_t *msgb_tl16v_put(struct msgb *msg, uint8_t tag, uint16_t len,
182 const uint8_t *val)
183{
184 uint8_t *buf = msgb_put(msg, TL16V_GROSS_LEN(len));
185 return tl16v_put(buf, tag, len, val);
186}
187
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200188/*! put (append) a TvLV field to \ref msgb */
Harald Welteec8b4502010-02-20 20:34:29 +0100189static inline uint8_t *msgb_tvlv_put(struct msgb *msg, uint8_t tag, uint16_t len,
190 const uint8_t *val)
191{
192 uint8_t *buf = msgb_put(msg, TVLV_GROSS_LEN(len));
193 return tvlv_put(buf, tag, len, val);
194}
195
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200196/*! put (append) a vTvLV field to \ref msgb */
Harald Welte2fe68472012-07-14 01:50:33 +0200197static inline uint8_t *msgb_vtvlv_gan_put(struct msgb *msg, uint16_t tag,
198 uint16_t len, const uint8_t *val)
199{
200 uint8_t *buf = msgb_put(msg, VTVLV_GAN_GROSS_LEN(tag, len));
201 return vtvlv_gan_put(buf, tag, len, val);
202}
203
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200204/*! put (append) a L16TV field to \ref msgb */
Harald Welteec8b4502010-02-20 20:34:29 +0100205static inline uint8_t *msgb_l16tv_put(struct msgb *msg, uint16_t len, uint8_t tag,
206 const uint8_t *val)
207{
208 uint8_t *buf = msgb_put(msg, L16TV_GROSS_LEN(len));
209
210 *buf++ = len >> 8;
211 *buf++ = len & 0xff;
212 *buf++ = tag;
213 memcpy(buf, val, len);
214 return buf + len;
215}
216
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200217/*! put (append) a V field */
Harald Welteec8b4502010-02-20 20:34:29 +0100218static inline uint8_t *v_put(uint8_t *buf, uint8_t val)
219{
220 *buf++ = val;
221 return buf;
222}
223
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200224/*! put (append) a TV field */
Harald Welteec8b4502010-02-20 20:34:29 +0100225static inline uint8_t *tv_put(uint8_t *buf, uint8_t tag,
226 uint8_t val)
227{
228 *buf++ = tag;
229 *buf++ = val;
230 return buf;
231}
232
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200233/*! put (append) a TVfixed field */
Harald Welte63196de2011-03-05 14:32:50 +0100234static inline uint8_t *tv_fixed_put(uint8_t *buf, uint8_t tag,
235 unsigned int len, const uint8_t *val)
236{
237 *buf++ = tag;
238 memcpy(buf, val, len);
239 return buf + len;
240}
241
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200242/*! put (append) a TV16 field
Harald Welte57c7d372011-08-17 17:50:55 +0200243 * \param[in,out] buf data buffer
244 * \param[in] tag Tag value
245 * \param[in] val Value (in host byte order!)
246 */
Harald Welteec8b4502010-02-20 20:34:29 +0100247static inline uint8_t *tv16_put(uint8_t *buf, uint8_t tag,
248 uint16_t val)
249{
250 *buf++ = tag;
251 *buf++ = val >> 8;
252 *buf++ = val & 0xff;
253 return buf;
254}
255
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200256/*! put (append) a LV field to a \ref msgb
Harald Welte2c020432012-01-22 23:03:38 +0100257 * \returns pointer to first byte after newly-put information */
Harald Welteec8b4502010-02-20 20:34:29 +0100258static inline uint8_t *msgb_lv_put(struct msgb *msg, uint8_t len, const uint8_t *val)
259{
260 uint8_t *buf = msgb_put(msg, LV_GROSS_LEN(len));
261 return lv_put(buf, len, val);
262}
263
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200264/*! put (append) a TLV field to a \ref msgb
Harald Welte2c020432012-01-22 23:03:38 +0100265 * \returns pointer to first byte after newly-put information */
Harald Welteec8b4502010-02-20 20:34:29 +0100266static inline uint8_t *msgb_tlv_put(struct msgb *msg, uint8_t tag, uint8_t len, const uint8_t *val)
267{
268 uint8_t *buf = msgb_put(msg, TLV_GROSS_LEN(len));
269 return tlv_put(buf, tag, len, val);
270}
271
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200272/*! put (append) a TV field to a \ref msgb
Harald Welte2c020432012-01-22 23:03:38 +0100273 * \returns pointer to first byte after newly-put information */
Harald Welteec8b4502010-02-20 20:34:29 +0100274static inline uint8_t *msgb_tv_put(struct msgb *msg, uint8_t tag, uint8_t val)
275{
276 uint8_t *buf = msgb_put(msg, 2);
277 return tv_put(buf, tag, val);
278}
279
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200280/*! put (append) a TVfixed field to a \ref msgb
Harald Welte2c020432012-01-22 23:03:38 +0100281 * \returns pointer to first byte after newly-put information */
Harald Welte63196de2011-03-05 14:32:50 +0100282static inline uint8_t *msgb_tv_fixed_put(struct msgb *msg, uint8_t tag,
283 unsigned int len, const uint8_t *val)
284{
285 uint8_t *buf = msgb_put(msg, 1+len);
286 return tv_fixed_put(buf, tag, len, val);
287}
288
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200289/*! put (append) a V field to a \ref msgb
Harald Welte2c020432012-01-22 23:03:38 +0100290 * \returns pointer to first byte after newly-put information */
Harald Welteec8b4502010-02-20 20:34:29 +0100291static inline uint8_t *msgb_v_put(struct msgb *msg, uint8_t val)
292{
293 uint8_t *buf = msgb_put(msg, 1);
294 return v_put(buf, val);
295}
296
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200297/*! put (append) a TV16 field to a \ref msgb
Harald Welte2c020432012-01-22 23:03:38 +0100298 * \returns pointer to first byte after newly-put information */
Harald Welteec8b4502010-02-20 20:34:29 +0100299static inline uint8_t *msgb_tv16_put(struct msgb *msg, uint8_t tag, uint16_t val)
300{
301 uint8_t *buf = msgb_put(msg, 3);
302 return tv16_put(buf, tag, val);
303}
304
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200305/*! push (prepend) a TLV field to a \ref msgb
Harald Welte2c020432012-01-22 23:03:38 +0100306 * \returns pointer to first byte of newly-pushed information */
Harald Welteec8b4502010-02-20 20:34:29 +0100307static inline uint8_t *msgb_tlv_push(struct msgb *msg, uint8_t tag, uint8_t len, const uint8_t *val)
308{
309 uint8_t *buf = msgb_push(msg, TLV_GROSS_LEN(len));
Harald Welte2c020432012-01-22 23:03:38 +0100310 tlv_put(buf, tag, len, val);
311 return buf;
Harald Welteec8b4502010-02-20 20:34:29 +0100312}
313
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200314/*! push (prepend) a TV field to a \ref msgb
Harald Welte2c020432012-01-22 23:03:38 +0100315 * \returns pointer to first byte of newly-pushed information */
Harald Welteec8b4502010-02-20 20:34:29 +0100316static inline uint8_t *msgb_tv_push(struct msgb *msg, uint8_t tag, uint8_t val)
317{
318 uint8_t *buf = msgb_push(msg, 2);
Harald Welte2c020432012-01-22 23:03:38 +0100319 tv_put(buf, tag, val);
320 return buf;
Harald Welteec8b4502010-02-20 20:34:29 +0100321}
322
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200323/*! push (prepend) a TV16 field to a \ref msgb
Harald Welte2c020432012-01-22 23:03:38 +0100324 * \returns pointer to first byte of newly-pushed information */
Harald Welteec8b4502010-02-20 20:34:29 +0100325static inline uint8_t *msgb_tv16_push(struct msgb *msg, uint8_t tag, uint16_t val)
326{
327 uint8_t *buf = msgb_push(msg, 3);
Harald Welte2c020432012-01-22 23:03:38 +0100328 tv16_put(buf, tag, val);
329 return buf;
Harald Welteec8b4502010-02-20 20:34:29 +0100330}
331
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200332/*! push (prepend) a TvLV field to a \ref msgb
Harald Welte2c020432012-01-22 23:03:38 +0100333 * \returns pointer to first byte of newly-pushed information */
Harald Welte3415d412010-02-21 19:03:41 +0100334static inline uint8_t *msgb_tvlv_push(struct msgb *msg, uint8_t tag, uint16_t len,
335 const uint8_t *val)
336{
337 uint8_t *buf = msgb_push(msg, TVLV_GROSS_LEN(len));
Harald Welte2c020432012-01-22 23:03:38 +0100338 tvlv_put(buf, tag, len, val);
339 return buf;
Harald Welte3415d412010-02-21 19:03:41 +0100340}
341
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200342/* push (prepend) a vTvL header to a \ref msgb
Harald Welte2fe68472012-07-14 01:50:33 +0200343 */
344static inline uint8_t *msgb_vtvl_gan_push(struct msgb *msg, uint16_t tag,
345 uint16_t len)
346{
347 uint8_t *buf = msgb_push(msg, VTVL_GAN_GROSS_LEN(tag, len));
348 vtvl_gan_put(buf, tag, len);
349 return buf;
350}
351
352
353static inline uint8_t *msgb_vtvlv_gan_push(struct msgb *msg, uint16_t tag,
354 uint16_t len, const uint8_t *val)
355{
356 uint8_t *buf = msgb_push(msg, VTVLV_GAN_GROSS_LEN(tag, len));
357 vtvlv_gan_put(buf, tag, len, val);
358 return buf;
359}
360
Harald Welteec8b4502010-02-20 20:34:29 +0100361/* TLV parsing */
362
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200363/*! Entry in a TLV parser array */
Harald Welteec8b4502010-02-20 20:34:29 +0100364struct tlv_p_entry {
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200365 uint16_t len; /*!< length */
366 const uint8_t *val; /*!< pointer to value */
Harald Welteec8b4502010-02-20 20:34:29 +0100367};
368
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200369/*! TLV type */
Harald Welteec8b4502010-02-20 20:34:29 +0100370enum tlv_type {
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200371 TLV_TYPE_NONE, /*!< no type */
372 TLV_TYPE_FIXED, /*!< fixed-length value-only */
373 TLV_TYPE_T, /*!< tag-only */
374 TLV_TYPE_TV, /*!< tag-value (8bit) */
375 TLV_TYPE_TLV, /*!< tag-length-value */
376 TLV_TYPE_TL16V, /*!< tag, 16 bit length, value */
377 TLV_TYPE_TvLV, /*!< tag, variable length, value */
378 TLV_TYPE_SINGLE_TV, /*!< tag and value (both 4 bit) in 1 byte */
379 TLV_TYPE_vTvLV_GAN, /*!< variable-length tag, variable-length length */
Harald Welteec8b4502010-02-20 20:34:29 +0100380};
381
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200382/*! Definition of a single IE (Information Element) */
Harald Welteec8b4502010-02-20 20:34:29 +0100383struct tlv_def {
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200384 enum tlv_type type; /*!< TLV type */
385 uint8_t fixed_len; /*!< length in case of \ref TLV_TYPE_FIXED */
Harald Welteec8b4502010-02-20 20:34:29 +0100386};
387
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200388/*! Definition of All 256 IE / TLV */
Harald Welteec8b4502010-02-20 20:34:29 +0100389struct tlv_definition {
Harald Weltee0aa5bb2011-07-16 15:42:46 +0200390 struct tlv_def def[256];
Harald Welteec8b4502010-02-20 20:34:29 +0100391};
392
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200393/*! result of the TLV parser */
Harald Welteec8b4502010-02-20 20:34:29 +0100394struct tlv_parsed {
Harald Weltee0aa5bb2011-07-16 15:42:46 +0200395 struct tlv_p_entry lv[256];
Harald Welteec8b4502010-02-20 20:34:29 +0100396};
397
398extern struct tlv_definition tvlv_att_def;
Harald Welte2fe68472012-07-14 01:50:33 +0200399extern struct tlv_definition vtvlv_gan_att_def;
Harald Welteec8b4502010-02-20 20:34:29 +0100400
401int tlv_parse_one(uint8_t *o_tag, uint16_t *o_len, const uint8_t **o_val,
402 const struct tlv_definition *def,
403 const uint8_t *buf, int buf_len);
404int tlv_parse(struct tlv_parsed *dec, const struct tlv_definition *def,
405 const uint8_t *buf, int buf_len, uint8_t lv_tag, uint8_t lv_tag2);
Neels Hofmeyr9e57a5a2015-12-21 11:20:14 +0100406/* take a master (src) tlv def and fill up all empty slots in 'dst' */
Harald Welteec8b4502010-02-20 20:34:29 +0100407void tlv_def_patch(struct tlv_definition *dst, const struct tlv_definition *src);
408
409#define TLVP_PRESENT(x, y) ((x)->lv[y].val)
410#define TLVP_LEN(x, y) (x)->lv[y].len
411#define TLVP_VAL(x, y) (x)->lv[y].val
412
Harald Weltecc27fa62014-08-18 15:31:04 +0200413#define TLVP_PRES_LEN(tp, tag, min_len) \
414 (TLVP_PRESENT(tp, tag) && TLVP_LEN(tp, tag) >= min_len)
415
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200416/*! Align given TLV element with 16 bit value to an even address
Andreas Eversberg01675962012-11-06 12:02:59 +0100417 * \param[in] tp pointer to \ref tlv_parsed
418 * \param[in] pos element to return
419 * \returns aligned 16 bit value
420 */
421static inline uint16_t tlvp_val16_unal(const struct tlv_parsed *tp, int pos)
422{
423 uint16_t res;
424 memcpy(&res, TLVP_VAL(tp, pos), sizeof(res));
425 return res;
426}
427
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200428/*! Align given TLV element with 32 bit value to an address that is a multiple of 4
Andreas Eversberg01675962012-11-06 12:02:59 +0100429 * \param[in] tp pointer to \ref tlv_parsed
430 * \param[in] pos element to return
431 * \returns aligned 32 bit value
432 */
433static inline uint32_t tlvp_val32_unal(const struct tlv_parsed *tp, int pos)
434{
435 uint32_t res;
436 memcpy(&res, TLVP_VAL(tp, pos), sizeof(res));
437 return res;
438}
439
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200440/*! Retrieve (possibly unaligned) TLV element and convert to host byte order
Harald Welte50ef7332017-05-15 12:45:59 +0200441 * \param[in] tp pointer to \ref tlv_parsed
442 * \param[in] pos element to return
443 * \returns aligned 16 bit value in host byte order
444 */
445static inline uint16_t tlvp_val16be(const struct tlv_parsed *tp, int pos)
446{
447 return osmo_load16be(TLVP_VAL(tp, pos));
448}
449
Neels Hofmeyr87e45502017-06-20 00:17:59 +0200450/*! Retrieve (possibly unaligned) TLV element and convert to host byte order
Harald Welte50ef7332017-05-15 12:45:59 +0200451 * \param[in] tp pointer to \ref tlv_parsed
452 * \param[in] pos element to return
453 * \returns aligned 32 bit value in host byte order
454 */
455static inline uint32_t tlvp_val32be(const struct tlv_parsed *tp, int pos)
456{
457 return osmo_load32be(TLVP_VAL(tp, pos));
458}
459
460
Maxdbd3a922017-01-02 14:10:30 +0100461struct tlv_parsed *osmo_tlvp_copy(const struct tlv_parsed *tp_orig, void *ctx);
462int osmo_tlvp_merge(struct tlv_parsed *dst, const struct tlv_parsed *src);
Harald Weltefbd02fa2016-04-25 15:19:35 +0200463int osmo_shift_v_fixed(uint8_t **data, size_t *data_len,
464 size_t len, uint8_t **value);
465int osmo_match_shift_tv_fixed(uint8_t **data, size_t *data_len,
466 uint8_t tag, size_t len, uint8_t **value);
467int osmo_shift_tlv(uint8_t **data, size_t *data_len,
468 uint8_t *tag, uint8_t **value, size_t *value_len);
469int osmo_match_shift_tlv(uint8_t **data, size_t *data_len,
470 uint8_t tag, uint8_t **value, size_t *value_len);
471int osmo_shift_lv(uint8_t **data, size_t *data_len,
472 uint8_t **value, size_t *value_len);
473
Sylvain Munautdca7d2c2012-04-18 21:53:23 +0200474/*! @} */