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>
26 * Issue a certificate using a CA certificate and key
28 static int issue(int argc
, char *argv
[])
30 hash_algorithm_t digest
= HASH_SHA1
;
31 certificate_t
*cert
= NULL
, *ca
=NULL
;
32 private_key_t
*private = NULL
;
33 public_key_t
*public = NULL
;
34 char *file
= NULL
, *dn
= NULL
, *hex
= NULL
, *cacert
= NULL
, *cakey
= NULL
;
36 identification_t
*id
= NULL
;
39 chunk_t serial
= chunk_empty
;
40 chunk_t encoding
= chunk_empty
;
41 time_t not_before
, not_after
;
42 x509_flag_t flags
= 0;
46 options
= options_create();
47 san
= linked_list_create();
51 switch (getopt_long(argc
, argv
, "", command_opts
, NULL
))
56 if (!options
->from(options
, optarg
, &argc
, &argv
, optind
))
58 error
= "invalid options file";
63 if (!streq(optarg
, "pub"))
65 error
= "invalid input type";
70 digest
= get_digest(optarg
);
71 if (digest
== HASH_UNKNOWN
)
73 error
= "invalid --digest type";
90 san
->insert_last(san
, identification_create_from_string(optarg
));
93 lifetime
= atoi(optarg
);
96 error
= "invalid --lifetime value";
109 error
= "invalid --issue option";
117 error
= "--dn is required";
122 error
= "--cacert is required";
127 error
= "--cakey is required";
130 id
= identification_create_from_string(dn
);
131 if (id
->get_type(id
) != ID_DER_ASN1_DN
)
133 error
= "supplied --dn is not a distinguished name";
136 ca
= lib
->creds
->create(lib
->creds
, CRED_CERTIFICATE
, CERT_X509
,
137 BUILD_FROM_FILE
, cacert
, BUILD_END
);
140 error
= "parsing CA certificate failed";
144 if (!(x509
->get_flags(x509
) & X509_CA
))
146 error
= "CA certificate misses CA basicConstraint";
150 public = ca
->get_public_key(ca
);
153 error
= "extracting CA certificate public key failed";
156 private = lib
->creds
->create(lib
->creds
, CRED_PRIVATE_KEY
,
157 public->get_type(public),
158 BUILD_FROM_FILE
, cakey
, BUILD_END
);
161 error
= "parsing CA private key failed";
164 if (!private->belongs_to(private, public))
166 error
= "CA private key does not match CA certificate";
169 public->destroy(public);
173 public = lib
->creds
->create(lib
->creds
, CRED_PUBLIC_KEY
, KEY_ANY
,
174 BUILD_FROM_FILE
, file
, BUILD_END
);
178 public = lib
->creds
->create(lib
->creds
, CRED_PUBLIC_KEY
, KEY_ANY
,
179 BUILD_FROM_FD
, 0, BUILD_END
);
183 error
= "parsing public key failed";
189 serial
= chunk_from_hex(chunk_create(hex
, strlen(hex
)), NULL
);
193 rng_t
*rng
= lib
->crypto
->create_rng(lib
->crypto
, RNG_WEAK
);
197 error
= "no random number generator found";
200 rng
->allocate_bytes(rng
, 8, &serial
);
203 not_before
= time(NULL
);
204 not_after
= not_before
+ lifetime
* 24 * 60 * 60;
205 cert
= lib
->creds
->create(lib
->creds
, CRED_CERTIFICATE
, CERT_X509
,
206 BUILD_SIGNING_KEY
, private, BUILD_SIGNING_CERT
, ca
,
207 BUILD_PUBLIC_KEY
, public, BUILD_SUBJECT
, id
,
208 BUILD_NOT_BEFORE_TIME
, not_before
, BUILD_DIGEST_ALG
, digest
,
209 BUILD_NOT_AFTER_TIME
, not_after
, BUILD_SERIAL
, serial
,
210 BUILD_SUBJECT_ALTNAMES
, san
, BUILD_X509_FLAG
, flags
,
214 error
= "generating certificate failed";
217 encoding
= cert
->get_encoding(cert
);
220 error
= "encoding certificate failed";
223 if (fwrite(encoding
.ptr
, encoding
.len
, 1, stdout
) != 1)
225 error
= "writing certificate key failed";
235 san
->destroy_offset(san
, offsetof(identification_t
, destroy
));
236 options
->destroy(options
);
242 fprintf(stderr
, "%s\n", error
);
248 san
->destroy_offset(san
, offsetof(identification_t
, destroy
));
249 options
->destroy(options
);
250 return command_usage(error
);
254 * Register the command.
256 static void __attribute__ ((constructor
))reg()
258 command_register((command_t
) {
260 "issue a certificate using a CA certificate and key",
261 {"[--in file] [--type pub|pkcs10]",
262 " --cacert file --cakey file",
263 " --dn subject-dn [--san subjectAltName]+",
264 "[--lifetime days] [--serial hex] [--ca]",
265 "[--digest md5|sha1|sha224|sha256|sha384|sha512]",
268 {"help", 'h', 0, "show usage information"},
269 {"in", 'i', 1, "public key/request file to issue, default: stdin"},
270 {"type", 't', 1, "type of input, default: pub"},
271 {"cacert", 'c', 1, "CA certificate file"},
272 {"cakey", 'k', 1, "CA private key file"},
273 {"dn", 'd', 1, "distinguished name to include as subject"},
274 {"san", 'a', 1, "subjectAltName to include in certificate"},
275 {"lifetime",'l', 1, "days the certificate is valid, default: 1080"},
276 {"serial", 's', 1, "serial number in hex, default: random"},
277 {"ca", 'b', 0, "include CA basicConstraint, default: no"},
278 {"digest", 'g', 1, "digest for signature creation, default: sha1"},
279 {"options", '+', 1, "read command line options from file"},