2 * Copyright (C) 2009 Martin Willi
3 * Hochschule fuer Technik Rapperswil
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License as published by the
7 * Free Software Foundation; either version 2 of the License, or (at your
8 * option) any later version. See <http://www.fsf.org/copyleft/gpl.txt>.
10 * This program is distributed in the hope that it will be useful, but
11 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
12 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
21 #include <utils/linked_list.h>
22 #include <credentials/certificates/certificate.h>
23 #include <credentials/certificates/x509.h>
24 #include <credentials/certificates/pkcs10.h>
27 * Issue a certificate using a CA certificate and key
31 hash_algorithm_t digest
= HASH_SHA1
;
32 certificate_t
*cert_req
= NULL
, *cert
= NULL
, *ca
=NULL
;
33 private_key_t
*private = NULL
;
34 public_key_t
*public = NULL
;
36 char *file
= NULL
, *dn
= NULL
, *hex
= NULL
, *cacert
= NULL
, *cakey
= NULL
;
38 identification_t
*id
= NULL
;
39 linked_list_t
*san
, *cdps
, *ocsp
;
41 int pathlen
= X509_NO_PATH_LEN_CONSTRAINT
;
42 chunk_t serial
= chunk_empty
;
43 chunk_t encoding
= chunk_empty
;
44 time_t not_before
, not_after
;
45 x509_flag_t flags
= 0;
49 san
= linked_list_create();
50 cdps
= linked_list_create();
51 ocsp
= linked_list_create();
55 switch (command_getopt(&arg
))
60 if (streq(arg
, "pkcs10"))
64 else if (!streq(arg
, "pub"))
66 error
= "invalid input type";
71 digest
= get_digest(arg
);
72 if (digest
== HASH_UNKNOWN
)
74 error
= "invalid --digest type";
91 san
->insert_last(san
, identification_create_from_string(arg
));
97 error
= "invalid --lifetime value";
111 if (streq(arg
, "serverAuth"))
113 flags
|= X509_SERVER_AUTH
;
115 else if (streq(arg
, "clientAuth"))
117 flags
|= X509_CLIENT_AUTH
;
119 else if (streq(arg
, "ocspSigning"))
121 flags
|= X509_OCSP_SIGNER
;
125 cdps
->insert_last(cdps
, arg
);
128 ocsp
->insert_last(ocsp
, arg
);
133 error
= "invalid --issue option";
141 error
= "--dn is required";
146 error
= "--cacert is required";
151 error
= "--cakey is required";
156 id
= identification_create_from_string(dn
);
157 if (id
->get_type(id
) != ID_DER_ASN1_DN
)
159 error
= "supplied --dn is not a distinguished name";
164 DBG2("Reading ca certificate:");
165 ca
= lib
->creds
->create(lib
->creds
, CRED_CERTIFICATE
, CERT_X509
,
166 BUILD_FROM_FILE
, cacert
, BUILD_END
);
169 error
= "parsing CA certificate failed";
173 if (!(x509
->get_flags(x509
) & X509_CA
))
175 error
= "CA certificate misses CA basicConstraint";
178 public = ca
->get_public_key(ca
);
181 error
= "extracting CA certificate public key failed";
185 DBG2("Reading ca private key:");
186 private = lib
->creds
->create(lib
->creds
, CRED_PRIVATE_KEY
,
187 public->get_type(public),
188 BUILD_FROM_FILE
, cakey
, BUILD_END
);
191 error
= "parsing CA private key failed";
194 if (!private->belongs_to(private, public))
196 error
= "CA private key does not match CA certificate";
199 public->destroy(public);
203 serial
= chunk_from_hex(chunk_create(hex
, strlen(hex
)), NULL
);
207 rng_t
*rng
= lib
->crypto
->create_rng(lib
->crypto
, RNG_WEAK
);
211 error
= "no random number generator found";
214 rng
->allocate_bytes(rng
, 8, &serial
);
220 enumerator_t
*enumerator
;
221 identification_t
*subjectAltName
;
224 DBG2("Reading certificate request");
227 cert_req
= lib
->creds
->create(lib
->creds
, CRED_CERTIFICATE
,
229 BUILD_FROM_FILE
, file
, BUILD_END
);
233 cert_req
= lib
->creds
->create(lib
->creds
, CRED_CERTIFICATE
,
235 BUILD_FROM_FD
, 0, BUILD_END
);
239 error
= "parsing certificate request failed";
243 /* If not set yet use subject from PKCS#10 certificate request as DN */
246 id
= cert_req
->get_subject(cert_req
);
250 /* Add subjectAltNames from PKCS#10 certificate request */
251 req
= (pkcs10_t
*)cert_req
;
252 enumerator
= req
->create_subjectAltName_enumerator(req
);
253 while (enumerator
->enumerate(enumerator
, &subjectAltName
))
255 san
->insert_last(san
, subjectAltName
->clone(subjectAltName
));
257 enumerator
->destroy(enumerator
);
259 /* Use public key from PKCS#10 certificate request */
260 public = cert_req
->get_public_key(cert_req
);
264 DBG2("Reading public key:");
267 public = lib
->creds
->create(lib
->creds
, CRED_PUBLIC_KEY
, KEY_ANY
,
268 BUILD_FROM_FILE
, file
, BUILD_END
);
272 public = lib
->creds
->create(lib
->creds
, CRED_PUBLIC_KEY
, KEY_ANY
,
273 BUILD_FROM_FD
, 0, BUILD_END
);
278 error
= "parsing public key failed";
282 not_before
= time(NULL
);
283 not_after
= not_before
+ lifetime
* 24 * 60 * 60;
285 cert
= lib
->creds
->create(lib
->creds
, CRED_CERTIFICATE
, CERT_X509
,
286 BUILD_SIGNING_KEY
, private, BUILD_SIGNING_CERT
, ca
,
287 BUILD_PUBLIC_KEY
, public, BUILD_SUBJECT
, id
,
288 BUILD_NOT_BEFORE_TIME
, not_before
, BUILD_DIGEST_ALG
, digest
,
289 BUILD_NOT_AFTER_TIME
, not_after
, BUILD_SERIAL
, serial
,
290 BUILD_SUBJECT_ALTNAMES
, san
, BUILD_X509_FLAG
, flags
,
291 BUILD_PATHLEN
, pathlen
,
292 BUILD_CRL_DISTRIBUTION_POINTS
, cdps
,
293 BUILD_OCSP_ACCESS_LOCATIONS
, ocsp
, BUILD_END
);
296 error
= "generating certificate failed";
299 encoding
= cert
->get_encoding(cert
);
302 error
= "encoding certificate failed";
305 if (fwrite(encoding
.ptr
, encoding
.len
, 1, stdout
) != 1)
307 error
= "writing certificate key failed";
313 DESTROY_IF(cert_req
);
318 san
->destroy_offset(san
, offsetof(identification_t
, destroy
));
326 fprintf(stderr
, "%s\n", error
);
332 san
->destroy_offset(san
, offsetof(identification_t
, destroy
));
335 return command_usage(error
);
339 * Register the command.
341 static void __attribute__ ((constructor
))reg()
343 command_register((command_t
) {
345 "issue a certificate using a CA certificate and key",
346 {"[--in file] [--type pub|pkcs10]",
347 " --cacert file --cakey file --dn subject-dn [--san subjectAltName]+",
348 "[--lifetime days] [--serial hex] [--crl uri]+ [--ocsp uri]+",
349 "[--ca] [--pathlen len] [--flag serverAuth|clientAuth|ocspSigning]+",
350 "[--digest md5|sha1|sha224|sha256|sha384|sha512]"},
352 {"help", 'h', 0, "show usage information"},
353 {"in", 'i', 1, "public key/request file to issue, default: stdin"},
354 {"type", 't', 1, "type of input, default: pub"},
355 {"cacert", 'c', 1, "CA certificate file"},
356 {"cakey", 'k', 1, "CA private key file"},
357 {"dn", 'd', 1, "distinguished name to include as subject"},
358 {"san", 'a', 1, "subjectAltName to include in certificate"},
359 {"lifetime",'l', 1, "days the certificate is valid, default: 1080"},
360 {"serial", 's', 1, "serial number in hex, default: random"},
361 {"ca", 'b', 0, "include CA basicConstraint, default: no"},
362 {"pathlen", 'p', 1, "set path length constraint"},
363 {"flag", 'f', 1, "include extendedKeyUsage flag"},
364 {"crl", 'u', 1, "CRL distribution point URI to include"},
365 {"ocsp", 'o', 1, "OCSP AuthorityInfoAccess URI to include"},
366 {"digest", 'g', 1, "digest for signature creation, default: sha1"},