]>
cvs.zerfleddert.de Git - proxmark3-svn/blob - common/mbedtls/asn1.h
4 * \brief Generic ASN.1 parsing
7 * Copyright (C) 2006-2015, ARM Limited, All Rights Reserved
8 * SPDX-License-Identifier: GPL-2.0
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
20 * You should have received a copy of the GNU General Public License along
21 * with this program; if not, write to the Free Software Foundation, Inc.,
22 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
24 * This file is part of mbed TLS (https://tls.mbed.org)
26 #ifndef MBEDTLS_ASN1_H
27 #define MBEDTLS_ASN1_H
29 #if !defined(MBEDTLS_CONFIG_FILE)
32 #include MBEDTLS_CONFIG_FILE
37 #if defined(MBEDTLS_BIGNUM_C)
42 * \addtogroup asn1_module
47 * \name ASN1 Error codes
48 * These error codes are OR'ed to X509 error codes for
49 * higher error granularity.
50 * ASN1 is a standard to specify data structures.
53 #define MBEDTLS_ERR_ASN1_OUT_OF_DATA -0x0060 /**< Out of data when parsing an ASN1 data structure. */
54 #define MBEDTLS_ERR_ASN1_UNEXPECTED_TAG -0x0062 /**< ASN1 tag was of an unexpected value. */
55 #define MBEDTLS_ERR_ASN1_INVALID_LENGTH -0x0064 /**< Error when trying to determine the length or invalid length. */
56 #define MBEDTLS_ERR_ASN1_LENGTH_MISMATCH -0x0066 /**< Actual length differs from expected length. */
57 #define MBEDTLS_ERR_ASN1_INVALID_DATA -0x0068 /**< Data is invalid. (not used) */
58 #define MBEDTLS_ERR_ASN1_ALLOC_FAILED -0x006A /**< Memory allocation failed */
59 #define MBEDTLS_ERR_ASN1_BUF_TOO_SMALL -0x006C /**< Buffer too small when writing ASN.1 data structure. */
65 * These constants comply with the DER encoded ASN.1 type tags.
66 * DER encoding uses hexadecimal representation.
67 * An example DER sequence is:\n
68 * - 0x02 -- tag indicating INTEGER
69 * - 0x01 -- length in octets
71 * Such sequences are typically read into \c ::mbedtls_x509_buf.
74 #define MBEDTLS_ASN1_BOOLEAN 0x01
75 #define MBEDTLS_ASN1_INTEGER 0x02
76 #define MBEDTLS_ASN1_BIT_STRING 0x03
77 #define MBEDTLS_ASN1_OCTET_STRING 0x04
78 #define MBEDTLS_ASN1_NULL 0x05
79 #define MBEDTLS_ASN1_OID 0x06
80 #define MBEDTLS_ASN1_UTF8_STRING 0x0C
81 #define MBEDTLS_ASN1_SEQUENCE 0x10
82 #define MBEDTLS_ASN1_SET 0x11
83 #define MBEDTLS_ASN1_PRINTABLE_STRING 0x13
84 #define MBEDTLS_ASN1_T61_STRING 0x14
85 #define MBEDTLS_ASN1_IA5_STRING 0x16
86 #define MBEDTLS_ASN1_UTC_TIME 0x17
87 #define MBEDTLS_ASN1_GENERALIZED_TIME 0x18
88 #define MBEDTLS_ASN1_UNIVERSAL_STRING 0x1C
89 #define MBEDTLS_ASN1_BMP_STRING 0x1E
90 #define MBEDTLS_ASN1_PRIMITIVE 0x00
91 #define MBEDTLS_ASN1_CONSTRUCTED 0x20
92 #define MBEDTLS_ASN1_CONTEXT_SPECIFIC 0x80
95 * Bit masks for each of the components of an ASN.1 tag as specified in
96 * ITU X.690 (08/2015), section 8.1 "General rules for encoding",
100 * +-------+-----+------------+
101 * | Class | P/C | Tag number |
102 * +-------+-----+------------+
104 #define MBEDTLS_ASN1_TAG_CLASS_MASK 0xC0
105 #define MBEDTLS_ASN1_TAG_PC_MASK 0x20
106 #define MBEDTLS_ASN1_TAG_VALUE_MASK 0x1F
109 /* \} addtogroup asn1_module */
111 /** Returns the size of the binary string, without the trailing \\0 */
112 #define MBEDTLS_OID_SIZE(x) (sizeof(x) - 1)
115 * Compares an mbedtls_asn1_buf structure to a reference OID.
117 * Only works for 'defined' oid_str values (MBEDTLS_OID_HMAC_SHA1), you cannot use a
118 * 'unsigned char *oid' here!
120 #define MBEDTLS_OID_CMP(oid_str, oid_buf) \
121 ( ( MBEDTLS_OID_SIZE(oid_str) != (oid_buf)->len ) || \
122 memcmp( (oid_str), (oid_buf)->p, (oid_buf)->len) != 0 )
129 * \name Functions to parse ASN.1 data structures
134 * Type-length-value structure that allows for ASN1 using DER.
136 typedef struct mbedtls_asn1_buf
138 int tag
; /**< ASN1 type, e.g. MBEDTLS_ASN1_UTF8_STRING. */
139 size_t len
; /**< ASN1 length, in octets. */
140 unsigned char *p
; /**< ASN1 data, e.g. in ASCII. */
145 * Container for ASN1 bit strings.
147 typedef struct mbedtls_asn1_bitstring
149 size_t len
; /**< ASN1 length, in octets. */
150 unsigned char unused_bits
; /**< Number of unused bits at the end of the string */
151 unsigned char *p
; /**< Raw ASN1 data for the bit string */
153 mbedtls_asn1_bitstring
;
156 * Container for a sequence of ASN.1 items
158 typedef struct mbedtls_asn1_sequence
160 mbedtls_asn1_buf buf
; /**< Buffer containing the given ASN.1 item. */
161 struct mbedtls_asn1_sequence
*next
; /**< The next entry in the sequence. */
163 mbedtls_asn1_sequence
;
166 * Container for a sequence or list of 'named' ASN.1 data items
168 typedef struct mbedtls_asn1_named_data
170 mbedtls_asn1_buf oid
; /**< The object identifier. */
171 mbedtls_asn1_buf val
; /**< The named value. */
172 struct mbedtls_asn1_named_data
*next
; /**< The next entry in the sequence. */
173 unsigned char next_merged
; /**< Merge next item into the current one? */
175 mbedtls_asn1_named_data
;
178 * \brief Get the length of an ASN.1 element.
179 * Updates the pointer to immediately behind the length.
181 * \param p The position in the ASN.1 data
182 * \param end End of data
183 * \param len The variable that will receive the value
185 * \return 0 if successful, MBEDTLS_ERR_ASN1_OUT_OF_DATA on reaching
186 * end of data, MBEDTLS_ERR_ASN1_INVALID_LENGTH if length is
189 int mbedtls_asn1_get_len( unsigned char **p
,
190 const unsigned char *end
,
194 * \brief Get the tag and length of the tag. Check for the requested tag.
195 * Updates the pointer to immediately behind the tag and length.
197 * \param p The position in the ASN.1 data
198 * \param end End of data
199 * \param len The variable that will receive the length
200 * \param tag The expected tag
202 * \return 0 if successful, MBEDTLS_ERR_ASN1_UNEXPECTED_TAG if tag did
203 * not match requested tag, or another specific ASN.1 error code.
205 int mbedtls_asn1_get_tag( unsigned char **p
,
206 const unsigned char *end
,
207 size_t *len
, int tag
);
210 * \brief Retrieve a boolean ASN.1 tag and its value.
211 * Updates the pointer to immediately behind the full tag.
213 * \param p The position in the ASN.1 data
214 * \param end End of data
215 * \param val The variable that will receive the value
217 * \return 0 if successful or a specific ASN.1 error code.
219 int mbedtls_asn1_get_bool( unsigned char **p
,
220 const unsigned char *end
,
224 * \brief Retrieve an integer ASN.1 tag and its value.
225 * Updates the pointer to immediately behind the full tag.
227 * \param p The position in the ASN.1 data
228 * \param end End of data
229 * \param val The variable that will receive the value
231 * \return 0 if successful or a specific ASN.1 error code.
233 int mbedtls_asn1_get_int( unsigned char **p
,
234 const unsigned char *end
,
238 * \brief Retrieve a bitstring ASN.1 tag and its value.
239 * Updates the pointer to immediately behind the full tag.
241 * \param p The position in the ASN.1 data
242 * \param end End of data
243 * \param bs The variable that will receive the value
245 * \return 0 if successful or a specific ASN.1 error code.
247 int mbedtls_asn1_get_bitstring( unsigned char **p
, const unsigned char *end
,
248 mbedtls_asn1_bitstring
*bs
);
251 * \brief Retrieve a bitstring ASN.1 tag without unused bits and its
253 * Updates the pointer to the beginning of the bit/octet string.
255 * \param p The position in the ASN.1 data
256 * \param end End of data
257 * \param len Length of the actual bit/octect string in bytes
259 * \return 0 if successful or a specific ASN.1 error code.
261 int mbedtls_asn1_get_bitstring_null( unsigned char **p
, const unsigned char *end
,
265 * \brief Parses and splits an ASN.1 "SEQUENCE OF <tag>"
266 * Updated the pointer to immediately behind the full sequence tag.
268 * \param p The position in the ASN.1 data
269 * \param end End of data
270 * \param cur First variable in the chain to fill
271 * \param tag Type of sequence
273 * \return 0 if successful or a specific ASN.1 error code.
275 int mbedtls_asn1_get_sequence_of( unsigned char **p
,
276 const unsigned char *end
,
277 mbedtls_asn1_sequence
*cur
,
280 #if defined(MBEDTLS_BIGNUM_C)
282 * \brief Retrieve a MPI value from an integer ASN.1 tag.
283 * Updates the pointer to immediately behind the full tag.
285 * \param p The position in the ASN.1 data
286 * \param end End of data
287 * \param X The MPI that will receive the value
289 * \return 0 if successful or a specific ASN.1 or MPI error code.
291 int mbedtls_asn1_get_mpi( unsigned char **p
,
292 const unsigned char *end
,
294 #endif /* MBEDTLS_BIGNUM_C */
297 * \brief Retrieve an AlgorithmIdentifier ASN.1 sequence.
298 * Updates the pointer to immediately behind the full
299 * AlgorithmIdentifier.
301 * \param p The position in the ASN.1 data
302 * \param end End of data
303 * \param alg The buffer to receive the OID
304 * \param params The buffer to receive the params (if any)
306 * \return 0 if successful or a specific ASN.1 or MPI error code.
308 int mbedtls_asn1_get_alg( unsigned char **p
,
309 const unsigned char *end
,
310 mbedtls_asn1_buf
*alg
, mbedtls_asn1_buf
*params
);
313 * \brief Retrieve an AlgorithmIdentifier ASN.1 sequence with NULL or no
315 * Updates the pointer to immediately behind the full
316 * AlgorithmIdentifier.
318 * \param p The position in the ASN.1 data
319 * \param end End of data
320 * \param alg The buffer to receive the OID
322 * \return 0 if successful or a specific ASN.1 or MPI error code.
324 int mbedtls_asn1_get_alg_null( unsigned char **p
,
325 const unsigned char *end
,
326 mbedtls_asn1_buf
*alg
);
329 * \brief Find a specific named_data entry in a sequence or list based on
332 * \param list The list to seek through
333 * \param oid The OID to look for
334 * \param len Size of the OID
336 * \return NULL if not found, or a pointer to the existing entry.
338 mbedtls_asn1_named_data
*mbedtls_asn1_find_named_data( mbedtls_asn1_named_data
*list
,
339 const char *oid
, size_t len
);
342 * \brief Free a mbedtls_asn1_named_data entry
344 * \param entry The named data entry to free
346 void mbedtls_asn1_free_named_data( mbedtls_asn1_named_data
*entry
);
349 * \brief Free all entries in a mbedtls_asn1_named_data list
350 * Head will be set to NULL
352 * \param head Pointer to the head of the list of named data entries to free
354 void mbedtls_asn1_free_named_data_list( mbedtls_asn1_named_data
**head
);