blob: 8bae13674c86220c188933ddfe1f58cf3a50ba6c [file] [log] [blame]
Paul Bakkerbdb912d2012-02-13 23:11:30 +00001/**
2 * \file asn1write.h
3 *
4 * \brief ASN.1 buffer writing functionality
5 *
Manuel Pégourié-Gonnarda658a402015-01-23 09:45:19 +00006 * Copyright (C) 2006-2014, ARM Limited, All Rights Reserved
Paul Bakkerbdb912d2012-02-13 23:11:30 +00007 *
Manuel Pégourié-Gonnardfe446432015-03-06 13:17:10 +00008 * This file is part of mbed TLS (https://tls.mbed.org)
Paul Bakkerbdb912d2012-02-13 23:11:30 +00009 *
Paul Bakkerbdb912d2012-02-13 23:11:30 +000010 * 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.
14 *
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.
19 *
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.
23 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020024#ifndef MBEDTLS_ASN1_WRITE_H
25#define MBEDTLS_ASN1_WRITE_H
Paul Bakkerbdb912d2012-02-13 23:11:30 +000026
27#include "asn1.h"
28
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020029#define MBEDTLS_ASN1_CHK_ADD(g, f) do { if( ( ret = f ) < 0 ) return( ret ); else \
Paul Bakkerb9e4e2c2014-05-01 14:18:25 +020030 g += ret; } while( 0 )
Paul Bakkerbdb912d2012-02-13 23:11:30 +000031
Paul Bakker407a0da2013-06-27 14:29:21 +020032#ifdef __cplusplus
33extern "C" {
34#endif
35
Paul Bakker7accbce2013-08-26 17:34:53 +020036/**
37 * \brief Write a length field in ASN.1 format
38 * Note: function works backwards in data buffer
39 *
40 * \param p reference to current position pointer
41 * \param start start of the buffer (for bounds-checking)
42 * \param len the length to write
43 *
44 * \return the length written or a negative error code
45 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020046int mbedtls_asn1_write_len( unsigned char **p, unsigned char *start, size_t len );
Paul Bakker7accbce2013-08-26 17:34:53 +020047
48/**
49 * \brief Write a ASN.1 tag in ASN.1 format
50 * Note: function works backwards in data buffer
51 *
52 * \param p reference to current position pointer
53 * \param start start of the buffer (for bounds-checking)
54 * \param tag the tag to write
55 *
56 * \return the length written or a negative error code
57 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020058int mbedtls_asn1_write_tag( unsigned char **p, unsigned char *start,
Paul Bakkerb9e4e2c2014-05-01 14:18:25 +020059 unsigned char tag );
Paul Bakker7accbce2013-08-26 17:34:53 +020060
Paul Bakker9852d002013-08-26 17:56:37 +020061/**
62 * \brief Write raw buffer data
63 * Note: function works backwards in data buffer
64 *
65 * \param p reference to current position pointer
66 * \param start start of the buffer (for bounds-checking)
67 * \param buf data buffer to write
68 * \param size length of the data buffer
69 *
70 * \return the length written or a negative error code
71 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020072int mbedtls_asn1_write_raw_buffer( unsigned char **p, unsigned char *start,
Paul Bakker9852d002013-08-26 17:56:37 +020073 const unsigned char *buf, size_t size );
74
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020075#if defined(MBEDTLS_BIGNUM_C)
Paul Bakker7accbce2013-08-26 17:34:53 +020076/**
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020077 * \brief Write a big number (MBEDTLS_ASN1_INTEGER) in ASN.1 format
Paul Bakker7accbce2013-08-26 17:34:53 +020078 * Note: function works backwards in data buffer
79 *
80 * \param p reference to current position pointer
81 * \param start start of the buffer (for bounds-checking)
82 * \param X the MPI to write
83 *
84 * \return the length written or a negative error code
85 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020086int mbedtls_asn1_write_mpi( unsigned char **p, unsigned char *start, const mbedtls_mpi *X );
87#endif /* MBEDTLS_BIGNUM_C */
Paul Bakker7accbce2013-08-26 17:34:53 +020088
89/**
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020090 * \brief Write a NULL tag (MBEDTLS_ASN1_NULL) with zero data in ASN.1 format
Paul Bakker7accbce2013-08-26 17:34:53 +020091 * Note: function works backwards in data buffer
92 *
93 * \param p reference to current position pointer
94 * \param start start of the buffer (for bounds-checking)
95 *
96 * \return the length written or a negative error code
97 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020098int mbedtls_asn1_write_null( unsigned char **p, unsigned char *start );
Paul Bakker7accbce2013-08-26 17:34:53 +020099
100/**
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200101 * \brief Write an OID tag (MBEDTLS_ASN1_OID) and data in ASN.1 format
Paul Bakker7accbce2013-08-26 17:34:53 +0200102 * Note: function works backwards in data buffer
103 *
104 * \param p reference to current position pointer
105 * \param start start of the buffer (for bounds-checking)
106 * \param oid the OID to write
Paul Bakker5f45e622013-09-09 12:02:36 +0200107 * \param oid_len length of the OID
Paul Bakker7accbce2013-08-26 17:34:53 +0200108 *
109 * \return the length written or a negative error code
110 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200111int mbedtls_asn1_write_oid( unsigned char **p, unsigned char *start,
Paul Bakker5f45e622013-09-09 12:02:36 +0200112 const char *oid, size_t oid_len );
Paul Bakker7accbce2013-08-26 17:34:53 +0200113
114/**
115 * \brief Write an AlgorithmIdentifier sequence in ASN.1 format
116 * Note: function works backwards in data buffer
Paul Bakker7accbce2013-08-26 17:34:53 +0200117 *
118 * \param p reference to current position pointer
119 * \param start start of the buffer (for bounds-checking)
120 * \param oid the OID of the algorithm
Paul Bakker5f45e622013-09-09 12:02:36 +0200121 * \param oid_len length of the OID
Manuel Pégourié-Gonnardedda9042013-09-12 02:17:54 +0200122 * \param par_len length of parameters, which must be already written.
123 * If 0, NULL parameters are added
Paul Bakker7accbce2013-08-26 17:34:53 +0200124 *
125 * \return the length written or a negative error code
126 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200127int mbedtls_asn1_write_algorithm_identifier( unsigned char **p, unsigned char *start,
Manuel Pégourié-Gonnardedda9042013-09-12 02:17:54 +0200128 const char *oid, size_t oid_len,
129 size_t par_len );
Paul Bakker7accbce2013-08-26 17:34:53 +0200130
131/**
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200132 * \brief Write a boolean tag (MBEDTLS_ASN1_BOOLEAN) and value in ASN.1 format
Paul Bakker329def32013-09-06 16:34:38 +0200133 * Note: function works backwards in data buffer
134 *
135 * \param p reference to current position pointer
136 * \param start start of the buffer (for bounds-checking)
137 * \param boolean 0 or 1
138 *
139 * \return the length written or a negative error code
140 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200141int mbedtls_asn1_write_bool( unsigned char **p, unsigned char *start, int boolean );
Paul Bakker329def32013-09-06 16:34:38 +0200142
143/**
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200144 * \brief Write an int tag (MBEDTLS_ASN1_INTEGER) and value in ASN.1 format
Paul Bakker7accbce2013-08-26 17:34:53 +0200145 * Note: function works backwards in data buffer
146 *
147 * \param p reference to current position pointer
148 * \param start start of the buffer (for bounds-checking)
149 * \param val the integer value
150 *
151 * \return the length written or a negative error code
152 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200153int mbedtls_asn1_write_int( unsigned char **p, unsigned char *start, int val );
Paul Bakker7accbce2013-08-26 17:34:53 +0200154
155/**
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200156 * \brief Write a printable string tag (MBEDTLS_ASN1_PRINTABLE_STRING) and
Paul Bakker7accbce2013-08-26 17:34:53 +0200157 * value in ASN.1 format
158 * Note: function works backwards in data buffer
159 *
160 * \param p reference to current position pointer
161 * \param start start of the buffer (for bounds-checking)
162 * \param text the text to write
Paul Bakker5f45e622013-09-09 12:02:36 +0200163 * \param text_len length of the text
Paul Bakker7accbce2013-08-26 17:34:53 +0200164 *
165 * \return the length written or a negative error code
166 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200167int mbedtls_asn1_write_printable_string( unsigned char **p, unsigned char *start,
Paul Bakker5f45e622013-09-09 12:02:36 +0200168 const char *text, size_t text_len );
Paul Bakker7accbce2013-08-26 17:34:53 +0200169
170/**
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200171 * \brief Write an IA5 string tag (MBEDTLS_ASN1_IA5_STRING) and
Paul Bakker7accbce2013-08-26 17:34:53 +0200172 * value in ASN.1 format
173 * Note: function works backwards in data buffer
174 *
175 * \param p reference to current position pointer
176 * \param start start of the buffer (for bounds-checking)
177 * \param text the text to write
Paul Bakker5f45e622013-09-09 12:02:36 +0200178 * \param text_len length of the text
Paul Bakker7accbce2013-08-26 17:34:53 +0200179 *
180 * \return the length written or a negative error code
181 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200182int mbedtls_asn1_write_ia5_string( unsigned char **p, unsigned char *start,
Paul Bakker5f45e622013-09-09 12:02:36 +0200183 const char *text, size_t text_len );
Paul Bakker7accbce2013-08-26 17:34:53 +0200184
185/**
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200186 * \brief Write a bitstring tag (MBEDTLS_ASN1_BIT_STRING) and
Paul Bakker7accbce2013-08-26 17:34:53 +0200187 * value in ASN.1 format
188 * Note: function works backwards in data buffer
189 *
190 * \param p reference to current position pointer
191 * \param start start of the buffer (for bounds-checking)
192 * \param buf the bitstring
193 * \param bits the total number of bits in the bitstring
194 *
195 * \return the length written or a negative error code
196 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200197int mbedtls_asn1_write_bitstring( unsigned char **p, unsigned char *start,
Paul Bakker598e4502013-08-25 14:46:39 +0200198 const unsigned char *buf, size_t bits );
Paul Bakker7accbce2013-08-26 17:34:53 +0200199
200/**
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200201 * \brief Write an octet string tag (MBEDTLS_ASN1_OCTET_STRING) and
Paul Bakker7accbce2013-08-26 17:34:53 +0200202 * value in ASN.1 format
203 * Note: function works backwards in data buffer
204 *
205 * \param p reference to current position pointer
206 * \param start start of the buffer (for bounds-checking)
207 * \param buf data buffer to write
208 * \param size length of the data buffer
209 *
210 * \return the length written or a negative error code
211 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200212int mbedtls_asn1_write_octet_string( unsigned char **p, unsigned char *start,
Paul Bakker598e4502013-08-25 14:46:39 +0200213 const unsigned char *buf, size_t size );
Paul Bakker59ba59f2013-09-09 11:26:00 +0200214
215/**
216 * \brief Create or find a specific named_data entry for writing in a
217 * sequence or list based on the OID. If not already in there,
218 * a new entry is added to the head of the list.
219 * Warning: Destructive behaviour for the val data!
220 *
221 * \param list Pointer to the location of the head of the list to seek
222 * through (will be updated in case of a new entry)
223 * \param oid The OID to look for
224 * \param oid_len Size of the OID
225 * \param val Data to store (can be NULL if you want to fill it by hand)
226 * \param val_len Minimum length of the data buffer needed
227 *
228 * \return NULL if if there was a memory allocation error, or a pointer
229 * to the new / existing entry.
230 */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200231mbedtls_asn1_named_data *mbedtls_asn1_store_named_data( mbedtls_asn1_named_data **list,
Paul Bakker59ba59f2013-09-09 11:26:00 +0200232 const char *oid, size_t oid_len,
233 const unsigned char *val,
234 size_t val_len );
235
Paul Bakker407a0da2013-06-27 14:29:21 +0200236#ifdef __cplusplus
237}
238#endif
239
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200240#endif /* MBEDTLS_ASN1_WRITE_H */