PolarSSL v1.3.3
x509write_csr.c
Go to the documentation of this file.
1 /*
2  * X.509 Certificate Signing Request writing
3  *
4  * Copyright (C) 2006-2013, Brainspark B.V.
5  *
6  * This file is part of PolarSSL (http://www.polarssl.org)
7  * Lead Maintainer: Paul Bakker <polarssl_maintainer at polarssl.org>
8  *
9  * All rights reserved.
10  *
11  * This program is free software; you can redistribute it and/or modify
12  * it under the terms of the GNU General Public License as published by
13  * the Free Software Foundation; either version 2 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 General Public License for more details.
20  *
21  * You should have received a copy of the GNU General Public License along
22  * with this program; if not, write to the Free Software Foundation, Inc.,
23  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
24  */
25 /*
26  * References:
27  * - CSRs: PKCS#10 v1.7 aka RFC 2986
28  * - attributes: PKCS#9 v2.0 aka RFC 2985
29  */
30 
31 #include "polarssl/config.h"
32 
33 #if defined(POLARSSL_X509_CSR_WRITE_C)
34 
35 #include "polarssl/x509_csr.h"
36 #include "polarssl/oid.h"
37 #include "polarssl/asn1write.h"
38 
39 #if defined(POLARSSL_PEM_WRITE_C)
40 #include "polarssl/pem.h"
41 #endif
42 
43 #include <string.h>
44 #include <stdlib.h>
45 
47 {
48  memset( ctx, 0, sizeof(x509write_csr) );
49 }
50 
52 {
55 
56  memset( ctx, 0, sizeof(x509write_csr) );
57 }
58 
60 {
61  ctx->md_alg = md_alg;
62 }
63 
65 {
66  ctx->key = key;
67 }
68 
70  const char *subject_name )
71 {
72  return x509_string_to_names( &ctx->subject, subject_name );
73 }
74 
76  const char *oid, size_t oid_len,
77  const unsigned char *val, size_t val_len )
78 {
79  return x509_set_extension( &ctx->extensions, oid, oid_len,
80  0, val, val_len );
81 }
82 
83 int x509write_csr_set_key_usage( x509write_csr *ctx, unsigned char key_usage )
84 {
85  unsigned char buf[4];
86  unsigned char *c;
87  int ret;
88 
89  c = buf + 4;
90 
91  if( ( ret = asn1_write_bitstring( &c, buf, &key_usage, 7 ) ) != 4 )
92  return( ret );
93 
96  buf, 4 );
97  if( ret != 0 )
98  return( ret );
99 
100  return( 0 );
101 }
102 
104  unsigned char ns_cert_type )
105 {
106  unsigned char buf[4];
107  unsigned char *c;
108  int ret;
109 
110  c = buf + 4;
111 
112  if( ( ret = asn1_write_bitstring( &c, buf, &ns_cert_type, 8 ) ) != 4 )
113  return( ret );
114 
117  buf, 4 );
118  if( ret != 0 )
119  return( ret );
120 
121  return( 0 );
122 }
123 
124 int x509write_csr_der( x509write_csr *ctx, unsigned char *buf, size_t size,
125  int (*f_rng)(void *, unsigned char *, size_t),
126  void *p_rng )
127 {
128  int ret;
129  const char *sig_oid;
130  size_t sig_oid_len = 0;
131  unsigned char *c, *c2;
132  unsigned char hash[64];
133  unsigned char sig[POLARSSL_MPI_MAX_SIZE];
134  unsigned char tmp_buf[2048];
135  size_t pub_len = 0, sig_and_oid_len = 0, sig_len;
136  size_t len = 0;
137  pk_type_t pk_alg;
138 
139  /*
140  * Prepare data to be signed in tmp_buf
141  */
142  c = tmp_buf + sizeof( tmp_buf );
143 
144  ASN1_CHK_ADD( len, x509_write_extensions( &c, tmp_buf, ctx->extensions ) );
145 
146  if( len )
147  {
148  ASN1_CHK_ADD( len, asn1_write_len( &c, tmp_buf, len ) );
149  ASN1_CHK_ADD( len, asn1_write_tag( &c, tmp_buf, ASN1_CONSTRUCTED | ASN1_SEQUENCE ) );
150 
151  ASN1_CHK_ADD( len, asn1_write_len( &c, tmp_buf, len ) );
152  ASN1_CHK_ADD( len, asn1_write_tag( &c, tmp_buf, ASN1_CONSTRUCTED | ASN1_SET ) );
153 
156 
157  ASN1_CHK_ADD( len, asn1_write_len( &c, tmp_buf, len ) );
158  ASN1_CHK_ADD( len, asn1_write_tag( &c, tmp_buf, ASN1_CONSTRUCTED | ASN1_SEQUENCE ) );
159  }
160 
161  ASN1_CHK_ADD( len, asn1_write_len( &c, tmp_buf, len ) );
163 
164  ASN1_CHK_ADD( pub_len, pk_write_pubkey_der( ctx->key,
165  tmp_buf, c - tmp_buf ) );
166  c -= pub_len;
167  len += pub_len;
168 
169  /*
170  * Subject ::= Name
171  */
172  ASN1_CHK_ADD( len, x509_write_names( &c, tmp_buf, ctx->subject ) );
173 
174  /*
175  * Version ::= INTEGER { v1(0), v2(1), v3(2) }
176  */
177  ASN1_CHK_ADD( len, asn1_write_int( &c, tmp_buf, 0 ) );
178 
179  ASN1_CHK_ADD( len, asn1_write_len( &c, tmp_buf, len ) );
180  ASN1_CHK_ADD( len, asn1_write_tag( &c, tmp_buf, ASN1_CONSTRUCTED | ASN1_SEQUENCE ) );
181 
182  /*
183  * Prepare signature
184  */
185  md( md_info_from_type( ctx->md_alg ), c, len, hash );
186 
187  pk_alg = pk_get_type( ctx->key );
188  if( pk_alg == POLARSSL_PK_ECKEY )
189  pk_alg = POLARSSL_PK_ECDSA;
190 
191  if( ( ret = pk_sign( ctx->key, ctx->md_alg, hash, 0, sig, &sig_len,
192  f_rng, p_rng ) ) != 0 ||
193  ( ret = oid_get_oid_by_sig_alg( pk_alg, ctx->md_alg,
194  &sig_oid, &sig_oid_len ) ) != 0 )
195  {
196  return( ret );
197  }
198 
199  /*
200  * Write data to output buffer
201  */
202  c2 = buf + size;
203  ASN1_CHK_ADD( sig_and_oid_len, x509_write_sig( &c2, buf,
204  sig_oid, sig_oid_len, sig, sig_len ) );
205 
206  c2 -= len;
207  memcpy( c2, c, len );
208 
209  len += sig_and_oid_len;
210  ASN1_CHK_ADD( len, asn1_write_len( &c2, buf, len ) );
212 
213  return( (int) len );
214 }
215 
216 #define PEM_BEGIN_CSR "-----BEGIN CERTIFICATE REQUEST-----\n"
217 #define PEM_END_CSR "-----END CERTIFICATE REQUEST-----\n"
218 
219 #if defined(POLARSSL_PEM_WRITE_C)
220 int x509write_csr_pem( x509write_csr *ctx, unsigned char *buf, size_t size,
221  int (*f_rng)(void *, unsigned char *, size_t),
222  void *p_rng )
223 {
224  int ret;
225  unsigned char output_buf[4096];
226  size_t olen = 0;
227 
228  if( ( ret = x509write_csr_der( ctx, output_buf, sizeof(output_buf),
229  f_rng, p_rng ) ) < 0 )
230  {
231  return( ret );
232  }
233 
234  if( ( ret = pem_write_buffer( PEM_BEGIN_CSR, PEM_END_CSR,
235  output_buf + sizeof(output_buf) - ret,
236  ret, buf, size, &olen ) ) != 0 )
237  {
238  return( ret );
239  }
240 
241  return( 0 );
242 }
243 #endif /* POLARSSL_PEM_WRITE_C */
244 
245 #endif /* POLARSSL_X509_CSR_WRITE_C */
int md(const md_info_t *md_info, const unsigned char *input, size_t ilen, unsigned char *output)
Output = message_digest( input buffer )
void x509write_csr_free(x509write_csr *ctx)
Free the contents of a CSR context.
int x509_set_extension(asn1_named_data **head, const char *oid, size_t oid_len, int critical, const unsigned char *val, size_t val_len)
int x509_string_to_names(asn1_named_data **head, const char *name)
#define POLARSSL_MPI_MAX_SIZE
Maximum number of bytes for usable MPIs.
Definition: bignum.h:87
int x509write_csr_der(x509write_csr *ctx, unsigned char *buf, size_t size, int(*f_rng)(void *, unsigned char *, size_t), void *p_rng)
Write a CSR (Certificate Signing Request) to a DER structure Note: data is written at the end of the ...
int x509write_csr_set_extension(x509write_csr *ctx, const char *oid, size_t oid_len, const unsigned char *val, size_t val_len)
Generic function to add to or replace an extension in the CSR.
void x509write_csr_set_md_alg(x509write_csr *ctx, md_type_t md_alg)
Set the MD algorithm to use for the signature (e.g.
int x509write_csr_set_ns_cert_type(x509write_csr *ctx, unsigned char ns_cert_type)
Set the Netscape Cert Type flags (e.g.
#define ASN1_SEQUENCE
Definition: asn1.h:78
Configuration options (set of defines)
int x509write_csr_pem(x509write_csr *ctx, unsigned char *buf, size_t size, int(*f_rng)(void *, unsigned char *, size_t), void *p_rng)
Write a CSR (Certificate Signing Request) to a PEM string.
#define ASN1_CONSTRUCTED
Definition: asn1.h:88
pk_type_t pk_get_type(const pk_context *ctx)
Get the key type.
#define OID_PKCS9_CSR_EXT_REQ
extensionRequest OBJECT IDENTIFIER ::= {pkcs-9 14}
Definition: oid.h:238
int x509write_csr_set_key_usage(x509write_csr *ctx, unsigned char key_usage)
Set the Key Usage Extension flags (e.g.
md_type_t md_alg
Definition: x509_csr.h:76
Object Identifier (OID) database.
#define OID_SIZE(x)
Returns the size of the binary string, without the trailing \0.
Definition: asn1.h:94
md_type_t
Definition: md.h:51
int asn1_write_len(unsigned char **p, unsigned char *start, size_t len)
Write a length field in ASN.1 format Note: function works backwards in data buffer.
#define ASN1_SET
Definition: asn1.h:79
int x509_write_names(unsigned char **p, unsigned char *start, asn1_named_data *first)
const md_info_t * md_info_from_type(md_type_t md_type)
Returns the message digest information associated with the given digest type.
int pk_write_pubkey_der(pk_context *ctx, unsigned char *buf, size_t size)
Write a public key to a SubjectPublicKeyInfo DER structure Note: data is written at the end of the bu...
Privacy Enhanced Mail (PEM) decoding.
asn1_named_data * subject
Definition: x509_csr.h:75
X.509 certificate signing request parsing and writing.
int x509_write_extensions(unsigned char **p, unsigned char *start, asn1_named_data *first)
void x509write_csr_init(x509write_csr *ctx)
Initialize a CSR context.
pk_type_t
Public key types.
Definition: pk.h:90
pk_context * key
Definition: x509_csr.h:74
#define ASN1_CONTEXT_SPECIFIC
Definition: asn1.h:89
void x509write_csr_set_key(x509write_csr *ctx, pk_context *key)
Set the key for a CSR (public key will be included, private key used to sign the CSR when writing it)...
asn1_named_data * extensions
Definition: x509_csr.h:77
int asn1_write_bitstring(unsigned char **p, unsigned char *start, const unsigned char *buf, size_t bits)
Write a bitstring tag (ASN1_BIT_STRING) and value in ASN.1 format Note: function works backwards in d...
int asn1_write_int(unsigned char **p, unsigned char *start, int val)
Write an int tag (ASN1_INTEGER) and value in ASN.1 format Note: function works backwards in data buff...
void asn1_free_named_data_list(asn1_named_data **head)
Free all entries in a asn1_named_data list Head will be set to NULL.
#define ASN1_CHK_ADD(g, f)
Definition: asn1write.h:32
int pk_sign(pk_context *ctx, md_type_t md_alg, const unsigned char *hash, size_t hash_len, unsigned char *sig, size_t *sig_len, int(*f_rng)(void *, unsigned char *, size_t), void *p_rng)
Make signature.
int x509write_csr_set_subject_name(x509write_csr *ctx, const char *subject_name)
Set the subject name for a CSR Subject names should contain a comma-separated list of OID types and v...
int x509_write_sig(unsigned char **p, unsigned char *start, const char *oid, size_t oid_len, unsigned char *sig, size_t size)
ASN.1 buffer writing functionality.
int asn1_write_oid(unsigned char **p, unsigned char *start, const char *oid, size_t oid_len)
Write an OID tag (ASN1_OID) and data in ASN.1 format Note: function works backwards in data buffer...
int asn1_write_tag(unsigned char **p, unsigned char *start, unsigned char tag)
Write a ASN.1 tag in ASN.1 format Note: function works backwards in data buffer.
#define OID_NS_CERT_TYPE
Definition: oid.h:139
Public key container.
Definition: pk.h:177
Container for writing a CSR.
Definition: x509_csr.h:72
int oid_get_oid_by_sig_alg(pk_type_t pk_alg, md_type_t md_alg, const char **oid, size_t *olen)
Translate md_type and pk_type into SignatureAlgorithm OID.
#define OID_KEY_USAGE
id-ce-keyUsage OBJECT IDENTIFIER ::= { id-ce 15 }
Definition: oid.h:121