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 <utils/optionsfrom.h>
23 #include <credentials/certificates/certificate.h>
24 #include <credentials/certificates/x509.h>
25 #include <credentials/certificates/pkcs10.h>
28 * Issue a certificate using a CA certificate and key
30 static int issue(int argc
, char *argv
[])
32 hash_algorithm_t digest
= HASH_SHA1
;
33 certificate_t
*cert_req
= NULL
, *cert
= NULL
, *ca
=NULL
;
34 private_key_t
*private = NULL
;
35 public_key_t
*public = NULL
;
37 char *file
= NULL
, *dn
= NULL
, *hex
= NULL
, *cacert
= NULL
, *cakey
= NULL
;
39 identification_t
*id
= NULL
;
40 linked_list_t
*san
, *cdps
, *ocsp
;
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 options
= options_create();
50 san
= linked_list_create();
51 cdps
= linked_list_create();
52 ocsp
= linked_list_create();
56 switch (getopt_long(argc
, argv
, command_optstring
, command_opts
, NULL
))
61 dbg_level
= atoi(optarg
);
64 if (!options
->from(options
, optarg
, &argc
, &argv
, optind
))
66 error
= "invalid options file";
71 if (streq(optarg
, "pkcs10"))
75 else if (!streq(optarg
, "pub"))
77 error
= "invalid input type";
82 digest
= get_digest(optarg
);
83 if (digest
== HASH_UNKNOWN
)
85 error
= "invalid --digest type";
102 san
->insert_last(san
, identification_create_from_string(optarg
));
105 lifetime
= atoi(optarg
);
108 error
= "invalid --lifetime value";
119 cdps
->insert_last(cdps
, optarg
);
122 ocsp
->insert_last(ocsp
, optarg
);
127 error
= "invalid --issue option";
135 error
= "--dn is required";
140 error
= "--cacert is required";
145 error
= "--cakey is required";
150 id
= identification_create_from_string(dn
);
151 if (id
->get_type(id
) != ID_DER_ASN1_DN
)
153 error
= "supplied --dn is not a distinguished name";
158 DBG2("Reading ca certificate:");
159 ca
= lib
->creds
->create(lib
->creds
, CRED_CERTIFICATE
, CERT_X509
,
160 BUILD_FROM_FILE
, cacert
, BUILD_END
);
163 error
= "parsing CA certificate failed";
167 if (!(x509
->get_flags(x509
) & X509_CA
))
169 error
= "CA certificate misses CA basicConstraint";
172 public = ca
->get_public_key(ca
);
175 error
= "extracting CA certificate public key failed";
179 DBG2("Reading ca private key:");
180 private = lib
->creds
->create(lib
->creds
, CRED_PRIVATE_KEY
,
181 public->get_type(public),
182 BUILD_FROM_FILE
, cakey
, BUILD_END
);
185 error
= "parsing CA private key failed";
188 if (!private->belongs_to(private, public))
190 error
= "CA private key does not match CA certificate";
193 public->destroy(public);
197 serial
= chunk_from_hex(chunk_create(hex
, strlen(hex
)), NULL
);
201 rng_t
*rng
= lib
->crypto
->create_rng(lib
->crypto
, RNG_WEAK
);
205 error
= "no random number generator found";
208 rng
->allocate_bytes(rng
, 8, &serial
);
214 enumerator_t
*enumerator
;
215 identification_t
*subjectAltName
;
218 DBG2("Reading certificate request");
221 cert_req
= lib
->creds
->create(lib
->creds
, CRED_CERTIFICATE
,
223 BUILD_FROM_FILE
, file
, BUILD_END
);
227 cert_req
= lib
->creds
->create(lib
->creds
, CRED_CERTIFICATE
,
229 BUILD_FROM_FD
, 0, BUILD_END
);
233 error
= "parsing certificate request failed";
237 /* If not set yet use subject from PKCS#10 certificate request as DN */
240 id
= cert_req
->get_subject(cert_req
);
244 /* Add subjectAltNames from PKCS#10 certificate request */
245 req
= (pkcs10_t
*)cert_req
;
246 enumerator
= req
->create_subjectAltName_enumerator(req
);
247 while (enumerator
->enumerate(enumerator
, &subjectAltName
))
249 san
->insert_last(san
, subjectAltName
->clone(subjectAltName
));
251 enumerator
->destroy(enumerator
);
253 /* Use public key from PKCS#10 certificate request */
254 public = cert_req
->get_public_key(cert_req
);
258 DBG2("Reading public key:");
261 public = lib
->creds
->create(lib
->creds
, CRED_PUBLIC_KEY
, KEY_ANY
,
262 BUILD_FROM_FILE
, file
, BUILD_END
);
266 public = lib
->creds
->create(lib
->creds
, CRED_PUBLIC_KEY
, KEY_ANY
,
267 BUILD_FROM_FD
, 0, BUILD_END
);
272 error
= "parsing public key failed";
276 not_before
= time(NULL
);
277 not_after
= not_before
+ lifetime
* 24 * 60 * 60;
279 cert
= lib
->creds
->create(lib
->creds
, CRED_CERTIFICATE
, CERT_X509
,
280 BUILD_SIGNING_KEY
, private, BUILD_SIGNING_CERT
, ca
,
281 BUILD_PUBLIC_KEY
, public, BUILD_SUBJECT
, id
,
282 BUILD_NOT_BEFORE_TIME
, not_before
, BUILD_DIGEST_ALG
, digest
,
283 BUILD_NOT_AFTER_TIME
, not_after
, BUILD_SERIAL
, serial
,
284 BUILD_SUBJECT_ALTNAMES
, san
, BUILD_X509_FLAG
, flags
,
285 BUILD_CRL_DISTRIBUTION_POINTS
, cdps
,
286 BUILD_OCSP_ACCESS_LOCATIONS
, ocsp
, BUILD_END
);
289 error
= "generating certificate failed";
292 encoding
= cert
->get_encoding(cert
);
295 error
= "encoding certificate failed";
298 if (fwrite(encoding
.ptr
, encoding
.len
, 1, stdout
) != 1)
300 error
= "writing certificate key failed";
306 DESTROY_IF(cert_req
);
311 san
->destroy_offset(san
, offsetof(identification_t
, destroy
));
314 options
->destroy(options
);
320 fprintf(stderr
, "%s\n", error
);
326 san
->destroy_offset(san
, offsetof(identification_t
, destroy
));
329 options
->destroy(options
);
330 return command_usage(error
);
334 * Register the command.
336 static void __attribute__ ((constructor
))reg()
338 command_register((command_t
) {
340 "issue a certificate using a CA certificate and key",
341 {"[--in file] [--type pub|pkcs10]",
342 " --cacert file --cakey file --dn subject-dn [--san subjectAltName]+",
343 "[--lifetime days] [--serial hex] [--ca] [--crl uri]+ [--ocsp uri]+",
344 "[--digest md5|sha1|sha224|sha256|sha384|sha512]",
347 {"help", 'h', 0, "show usage information"},
348 {"in", 'i', 1, "public key/request file to issue, default: stdin"},
349 {"type", 't', 1, "type of input, default: pub"},
350 {"cacert", 'c', 1, "CA certificate file"},
351 {"cakey", 'k', 1, "CA private key file"},
352 {"dn", 'd', 1, "distinguished name to include as subject"},
353 {"san", 'a', 1, "subjectAltName to include in certificate"},
354 {"lifetime",'l', 1, "days the certificate is valid, default: 1080"},
355 {"serial", 's', 1, "serial number in hex, default: random"},
356 {"ca", 'b', 0, "include CA basicConstraint, default: no"},
357 {"crl", 'u', 1, "CRL distribution point URI to include"},
358 {"ocsp", 'o', 1, "OCSP AuthorityInfoAccess URI to include"},
359 {"digest", 'g', 1, "digest for signature creation, default: sha1"},
360 {"debug", 'v', 1, "set debug level, default: 1"},
361 {"options", '+', 1, "read command line options from file"},