blob: 9c36030b06f33899b1aca0523e680069db7ce023 [file] [log] [blame]
Paul Bakkerbdb912d2012-02-13 23:11:30 +00001/**
2 * \file asn1write.h
3 *
4 * \brief ASN.1 buffer writing functionality
5 *
Paul Bakker407a0da2013-06-27 14:29:21 +02006 * Copyright (C) 2006-2013, Brainspark B.V.
Paul Bakkerbdb912d2012-02-13 23:11:30 +00007 *
8 * This file is part of PolarSSL (http://www.polarssl.org)
9 * Lead Maintainer: Paul Bakker <polarssl_maintainer at polarssl.org>
10 *
11 * All rights reserved.
12 *
13 * This program is free software; you can redistribute it and/or modify
14 * it under the terms of the GNU General Public License as published by
15 * the Free Software Foundation; either version 2 of the License, or
16 * (at your option) any later version.
17 *
18 * This program is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU General Public License for more details.
22 *
23 * You should have received a copy of the GNU General Public License along
24 * with this program; if not, write to the Free Software Foundation, Inc.,
25 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
26 */
27#ifndef POLARSSL_ASN1_WRITE_H
28#define POLARSSL_ASN1_WRITE_H
29
30#include "asn1.h"
31
Manuel Pégourié-Gonnard3837dae2013-09-12 01:39:07 +020032#define ASN1_CHK_ADD(g, f) do { if( ( ret = f ) < 0 ) return( ret ); else g += ret; } while( 0 )
Paul Bakkerbdb912d2012-02-13 23:11:30 +000033
Paul Bakker407a0da2013-06-27 14:29:21 +020034#ifdef __cplusplus
35extern "C" {
36#endif
37
Paul Bakker7accbce2013-08-26 17:34:53 +020038/**
39 * \brief Write a length field in ASN.1 format
40 * Note: function works backwards in data buffer
41 *
42 * \param p reference to current position pointer
43 * \param start start of the buffer (for bounds-checking)
44 * \param len the length to write
45 *
46 * \return the length written or a negative error code
47 */
Paul Bakkerbdb912d2012-02-13 23:11:30 +000048int asn1_write_len( unsigned char **p, unsigned char *start, size_t len );
Paul Bakker7accbce2013-08-26 17:34:53 +020049
50/**
51 * \brief Write a ASN.1 tag in ASN.1 format
52 * Note: function works backwards in data buffer
53 *
54 * \param p reference to current position pointer
55 * \param start start of the buffer (for bounds-checking)
56 * \param tag the tag to write
57 *
58 * \return the length written or a negative error code
59 */
Paul Bakkerbdb912d2012-02-13 23:11:30 +000060int asn1_write_tag( unsigned char **p, unsigned char *start, unsigned char tag );
Paul Bakker7accbce2013-08-26 17:34:53 +020061
Paul Bakker9852d002013-08-26 17:56:37 +020062/**
63 * \brief Write raw buffer data
64 * Note: function works backwards in data buffer
65 *
66 * \param p reference to current position pointer
67 * \param start start of the buffer (for bounds-checking)
68 * \param buf data buffer to write
69 * \param size length of the data buffer
70 *
71 * \return the length written or a negative error code
72 */
73int asn1_write_raw_buffer( unsigned char **p, unsigned char *start,
74 const unsigned char *buf, size_t size );
75
Paul Bakkered27a042013-04-18 22:46:23 +020076#if defined(POLARSSL_BIGNUM_C)
Paul Bakker7accbce2013-08-26 17:34:53 +020077/**
78 * \brief Write a big number (ASN1_INTEGER) in ASN.1 format
79 * Note: function works backwards in data buffer
80 *
81 * \param p reference to current position pointer
82 * \param start start of the buffer (for bounds-checking)
83 * \param X the MPI to write
84 *
85 * \return the length written or a negative error code
86 */
Paul Bakkerbdb912d2012-02-13 23:11:30 +000087int asn1_write_mpi( unsigned char **p, unsigned char *start, mpi *X );
Paul Bakker9af723c2014-05-01 13:03:14 +020088#endif /* POLARSSL_BIGNUM_C */
Paul Bakker7accbce2013-08-26 17:34:53 +020089
90/**
91 * \brief Write a NULL tag (ASN1_NULL) with zero data in ASN.1 format
92 * Note: function works backwards in data buffer
93 *
94 * \param p reference to current position pointer
95 * \param start start of the buffer (for bounds-checking)
96 *
97 * \return the length written or a negative error code
98 */
Paul Bakkerbdb912d2012-02-13 23:11:30 +000099int asn1_write_null( unsigned char **p, unsigned char *start );
Paul Bakker7accbce2013-08-26 17:34:53 +0200100
101/**
102 * \brief Write an OID tag (ASN1_OID) and data in ASN.1 format
103 * Note: function works backwards in data buffer
104 *
105 * \param p reference to current position pointer
106 * \param start start of the buffer (for bounds-checking)
107 * \param oid the OID to write
Paul Bakker5f45e622013-09-09 12:02:36 +0200108 * \param oid_len length of the OID
Paul Bakker7accbce2013-08-26 17:34:53 +0200109 *
110 * \return the length written or a negative error code
111 */
Paul Bakker5f45e622013-09-09 12:02:36 +0200112int asn1_write_oid( unsigned char **p, unsigned char *start,
113 const char *oid, size_t oid_len );
Paul Bakker7accbce2013-08-26 17:34:53 +0200114
115/**
116 * \brief Write an AlgorithmIdentifier sequence in ASN.1 format
117 * Note: function works backwards in data buffer
Paul Bakker7accbce2013-08-26 17:34:53 +0200118 *
119 * \param p reference to current position pointer
120 * \param start start of the buffer (for bounds-checking)
121 * \param oid the OID of the algorithm
Paul Bakker5f45e622013-09-09 12:02:36 +0200122 * \param oid_len length of the OID
Manuel Pégourié-Gonnardedda9042013-09-12 02:17:54 +0200123 * \param par_len length of parameters, which must be already written.
124 * If 0, NULL parameters are added
Paul Bakker7accbce2013-08-26 17:34:53 +0200125 *
126 * \return the length written or a negative error code
127 */
128int asn1_write_algorithm_identifier( unsigned char **p, unsigned char *start,
Manuel Pégourié-Gonnardedda9042013-09-12 02:17:54 +0200129 const char *oid, size_t oid_len,
130 size_t par_len );
Paul Bakker7accbce2013-08-26 17:34:53 +0200131
132/**
Paul Bakker329def32013-09-06 16:34:38 +0200133 * \brief Write a boolean tag (ASN1_BOOLEAN) and value in ASN.1 format
134 * Note: function works backwards in data buffer
135 *
136 * \param p reference to current position pointer
137 * \param start start of the buffer (for bounds-checking)
138 * \param boolean 0 or 1
139 *
140 * \return the length written or a negative error code
141 */
142int asn1_write_bool( unsigned char **p, unsigned char *start, int boolean );
143
144/**
Paul Bakker7accbce2013-08-26 17:34:53 +0200145 * \brief Write an int tag (ASN1_INTEGER) and value in ASN.1 format
146 * Note: function works backwards in data buffer
147 *
148 * \param p reference to current position pointer
149 * \param start start of the buffer (for bounds-checking)
150 * \param val the integer value
151 *
152 * \return the length written or a negative error code
153 */
Paul Bakkerbdb912d2012-02-13 23:11:30 +0000154int asn1_write_int( unsigned char **p, unsigned char *start, int val );
Paul Bakker7accbce2013-08-26 17:34:53 +0200155
156/**
157 * \brief Write a printable string tag (ASN1_PRINTABLE_STRING) and
158 * value in ASN.1 format
159 * Note: function works backwards in data buffer
160 *
161 * \param p reference to current position pointer
162 * \param start start of the buffer (for bounds-checking)
163 * \param text the text to write
Paul Bakker5f45e622013-09-09 12:02:36 +0200164 * \param text_len length of the text
Paul Bakker7accbce2013-08-26 17:34:53 +0200165 *
166 * \return the length written or a negative error code
167 */
Paul Bakkerbdb912d2012-02-13 23:11:30 +0000168int asn1_write_printable_string( unsigned char **p, unsigned char *start,
Paul Bakker5f45e622013-09-09 12:02:36 +0200169 const char *text, size_t text_len );
Paul Bakker7accbce2013-08-26 17:34:53 +0200170
171/**
172 * \brief Write an IA5 string tag (ASN1_IA5_STRING) and
173 * value in ASN.1 format
174 * Note: function works backwards in data buffer
175 *
176 * \param p reference to current position pointer
177 * \param start start of the buffer (for bounds-checking)
178 * \param text the text to write
Paul Bakker5f45e622013-09-09 12:02:36 +0200179 * \param text_len length of the text
Paul Bakker7accbce2013-08-26 17:34:53 +0200180 *
181 * \return the length written or a negative error code
182 */
Paul Bakker05888152012-02-16 10:26:57 +0000183int asn1_write_ia5_string( unsigned char **p, unsigned char *start,
Paul Bakker5f45e622013-09-09 12:02:36 +0200184 const char *text, size_t text_len );
Paul Bakker7accbce2013-08-26 17:34:53 +0200185
186/**
187 * \brief Write a bitstring tag (ASN1_BIT_STRING) and
188 * value in ASN.1 format
189 * Note: function works backwards in data buffer
190 *
191 * \param p reference to current position pointer
192 * \param start start of the buffer (for bounds-checking)
193 * \param buf the bitstring
194 * \param bits the total number of bits in the bitstring
195 *
196 * \return the length written or a negative error code
197 */
Paul Bakker598e4502013-08-25 14:46:39 +0200198int asn1_write_bitstring( unsigned char **p, unsigned char *start,
199 const unsigned char *buf, size_t bits );
Paul Bakker7accbce2013-08-26 17:34:53 +0200200
201/**
202 * \brief Write an octet string tag (ASN1_OCTET_STRING) and
203 * value in ASN.1 format
204 * Note: function works backwards in data buffer
205 *
206 * \param p reference to current position pointer
207 * \param start start of the buffer (for bounds-checking)
208 * \param buf data buffer to write
209 * \param size length of the data buffer
210 *
211 * \return the length written or a negative error code
212 */
Paul Bakker598e4502013-08-25 14:46:39 +0200213int asn1_write_octet_string( unsigned char **p, unsigned char *start,
214 const unsigned char *buf, size_t size );
Paul Bakker59ba59f2013-09-09 11:26:00 +0200215
216/**
217 * \brief Create or find a specific named_data entry for writing in a
218 * sequence or list based on the OID. If not already in there,
219 * a new entry is added to the head of the list.
220 * Warning: Destructive behaviour for the val data!
221 *
222 * \param list Pointer to the location of the head of the list to seek
223 * through (will be updated in case of a new entry)
224 * \param oid The OID to look for
225 * \param oid_len Size of the OID
226 * \param val Data to store (can be NULL if you want to fill it by hand)
227 * \param val_len Minimum length of the data buffer needed
228 *
229 * \return NULL if if there was a memory allocation error, or a pointer
230 * to the new / existing entry.
231 */
232asn1_named_data *asn1_store_named_data( asn1_named_data **list,
233 const char *oid, size_t oid_len,
234 const unsigned char *val,
235 size_t val_len );
236
Paul Bakker407a0da2013-06-27 14:29:21 +0200237#ifdef __cplusplus
238}
239#endif
240
Paul Bakkerbdb912d2012-02-13 23:11:30 +0000241#endif /* POLARSSL_ASN1_WRITE_H */