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
20 #include <utils/linked_list.h>
21 #include <utils/optionsfrom.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
29 static int issue(int argc
, char *argv
[])
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 chunk_t serial
= chunk_empty
;
42 chunk_t encoding
= chunk_empty
;
43 time_t not_before
, not_after
;
44 x509_flag_t flags
= 0;
48 options
= options_create();
49 san
= linked_list_create();
50 cdps
= linked_list_create();
51 ocsp
= linked_list_create();
55 switch (getopt_long(argc
, argv
, "", command_opts
, NULL
))
60 if (!options
->from(options
, optarg
, &argc
, &argv
, optind
))
62 error
= "invalid options file";
67 if (streq(optarg
, "pkcs10"))
71 else if (!streq(optarg
, "pub"))
73 error
= "invalid input type";
78 digest
= get_digest(optarg
);
79 if (digest
== HASH_UNKNOWN
)
81 error
= "invalid --digest type";
98 san
->insert_last(san
, identification_create_from_string(optarg
));
101 lifetime
= atoi(optarg
);
104 error
= "invalid --lifetime value";
115 cdps
->insert_last(cdps
, optarg
);
118 ocsp
->insert_last(ocsp
, optarg
);
123 error
= "invalid --issue option";
131 error
= "--dn is required";
136 error
= "--cacert is required";
141 error
= "--cakey is required";
146 id
= identification_create_from_string(dn
);
147 if (id
->get_type(id
) != ID_DER_ASN1_DN
)
149 error
= "supplied --dn is not a distinguished name";
153 ca
= lib
->creds
->create(lib
->creds
, CRED_CERTIFICATE
, CERT_X509
,
154 BUILD_FROM_FILE
, cacert
, BUILD_END
);
157 error
= "parsing CA certificate failed";
161 if (!(x509
->get_flags(x509
) & X509_CA
))
163 error
= "CA certificate misses CA basicConstraint";
167 public = ca
->get_public_key(ca
);
170 error
= "extracting CA certificate public key failed";
173 private = lib
->creds
->create(lib
->creds
, CRED_PRIVATE_KEY
,
174 public->get_type(public),
175 BUILD_FROM_FILE
, cakey
, BUILD_END
);
178 error
= "parsing CA private key failed";
181 if (!private->belongs_to(private, public))
183 error
= "CA private key does not match CA certificate";
186 public->destroy(public);
190 serial
= chunk_from_hex(chunk_create(hex
, strlen(hex
)), NULL
);
194 rng_t
*rng
= lib
->crypto
->create_rng(lib
->crypto
, RNG_WEAK
);
198 error
= "no random number generator found";
201 rng
->allocate_bytes(rng
, 8, &serial
);
207 enumerator_t
*enumerator
;
208 identification_t
*subjectAltName
;
213 cert_req
= lib
->creds
->create(lib
->creds
, CRED_CERTIFICATE
,
215 BUILD_FROM_FILE
, file
, BUILD_END
);
219 cert_req
= lib
->creds
->create(lib
->creds
, CRED_CERTIFICATE
,
221 BUILD_FROM_FD
, 0, BUILD_END
);
225 error
= "parsing certificate request failed";
229 /* If not set yet use subject from PKCS#10 certificate request as DN */
232 id
= cert_req
->get_subject(cert_req
);
236 /* Add subjectAltNames from PKCS#10 certificate request */
237 req
= (pkcs10_t
*)cert_req
;
238 enumerator
= req
->create_subjectAltName_enumerator(req
);
239 while (enumerator
->enumerate(enumerator
, &subjectAltName
))
241 san
->insert_last(san
, subjectAltName
->clone(subjectAltName
));
243 enumerator
->destroy(enumerator
);
245 /* Use public key from PKCS#10 certificate request */
246 public = cert_req
->get_public_key(cert_req
);
252 public = lib
->creds
->create(lib
->creds
, CRED_PUBLIC_KEY
, KEY_ANY
,
253 BUILD_FROM_FILE
, file
, BUILD_END
);
257 public = lib
->creds
->create(lib
->creds
, CRED_PUBLIC_KEY
, KEY_ANY
,
258 BUILD_FROM_FD
, 0, BUILD_END
);
263 error
= "parsing public key failed";
267 not_before
= time(NULL
);
268 not_after
= not_before
+ lifetime
* 24 * 60 * 60;
270 cert
= lib
->creds
->create(lib
->creds
, CRED_CERTIFICATE
, CERT_X509
,
271 BUILD_SIGNING_KEY
, private, BUILD_SIGNING_CERT
, ca
,
272 BUILD_PUBLIC_KEY
, public, BUILD_SUBJECT
, id
,
273 BUILD_NOT_BEFORE_TIME
, not_before
, BUILD_DIGEST_ALG
, digest
,
274 BUILD_NOT_AFTER_TIME
, not_after
, BUILD_SERIAL
, serial
,
275 BUILD_SUBJECT_ALTNAMES
, san
, BUILD_X509_FLAG
, flags
,
276 BUILD_CRL_DISTRIBUTION_POINTS
, cdps
,
277 BUILD_OCSP_ACCESS_LOCATIONS
, ocsp
, BUILD_END
);
280 error
= "generating certificate failed";
283 encoding
= cert
->get_encoding(cert
);
286 error
= "encoding certificate failed";
289 if (fwrite(encoding
.ptr
, encoding
.len
, 1, stdout
) != 1)
291 error
= "writing certificate key failed";
297 DESTROY_IF(cert_req
);
302 san
->destroy_offset(san
, offsetof(identification_t
, destroy
));
305 options
->destroy(options
);
311 fprintf(stderr
, "%s\n", error
);
317 san
->destroy_offset(san
, offsetof(identification_t
, destroy
));
320 options
->destroy(options
);
321 return command_usage(error
);
325 * Register the command.
327 static void __attribute__ ((constructor
))reg()
329 command_register((command_t
) {
331 "issue a certificate using a CA certificate and key",
332 {"[--in file] [--type pub|pkcs10]",
333 " --cacert file --cakey file --dn subject-dn [--san subjectAltName]+",
334 "[--lifetime days] [--serial hex] [--ca] [--crl uri]+ [--ocsp uri]+",
335 "[--digest md5|sha1|sha224|sha256|sha384|sha512]",
338 {"help", 'h', 0, "show usage information"},
339 {"in", 'i', 1, "public key/request file to issue, default: stdin"},
340 {"type", 't', 1, "type of input, default: pub"},
341 {"cacert", 'c', 1, "CA certificate file"},
342 {"cakey", 'k', 1, "CA private key file"},
343 {"dn", 'd', 1, "distinguished name to include as subject"},
344 {"san", 'a', 1, "subjectAltName to include in certificate"},
345 {"lifetime",'l', 1, "days the certificate is valid, default: 1080"},
346 {"serial", 's', 1, "serial number in hex, default: random"},
347 {"ca", 'b', 0, "include CA basicConstraint, default: no"},
348 {"crl", 'u', 1, "CRL distribution point URI to include"},
349 {"ocsp", 'o', 1, "OCSP AuthorityInfoAccess URI to include"},
350 {"digest", 'g', 1, "digest for signature creation, default: sha1"},
351 {"options", '+', 1, "read command line options from file"},