2 * Copyright (C) 2009 Martin Willi
3 * Copyright (C) 2009 Andreas Steffen
5 * HSR Hochschule fuer Technik Rapperswil
7 * This program is free software; you can redistribute it and/or modify it
8 * under the terms of the GNU General Public License as published by the
9 * Free Software Foundation; either version 2 of the License, or (at your
10 * option) any later version. See <http://www.fsf.org/copyleft/gpl.txt>.
12 * This program is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
14 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
23 #include <collections/linked_list.h>
24 #include <credentials/certificates/certificate.h>
27 * Create a self-signed PKCS#10 certificate requesst.
31 cred_encoding_type_t form
= CERT_ASN1_DER
;
32 key_type_t type
= KEY_RSA
;
33 hash_algorithm_t digest
= HASH_SHA1
;
34 certificate_t
*cert
= NULL
;
35 private_key_t
*private = NULL
;
36 char *file
= NULL
, *dn
= NULL
, *error
= NULL
;
37 identification_t
*id
= NULL
;
39 chunk_t encoding
= chunk_empty
;
40 chunk_t challenge_password
= chunk_empty
;
43 san
= linked_list_create();
47 switch (command_getopt(&arg
))
52 if (streq(arg
, "rsa"))
56 else if (streq(arg
, "ecdsa"))
62 error
= "invalid input type";
67 if (!enum_from_name(hash_algorithm_short_names
, arg
, &digest
))
69 error
= "invalid --digest type";
80 san
->insert_last(san
, identification_create_from_string(arg
));
83 challenge_password
= chunk_create(arg
, strlen(arg
));
86 if (!get_form(arg
, &form
, CRED_CERTIFICATE
))
88 error
= "invalid output format";
95 error
= "invalid --req option";
103 error
= "--dn is required";
106 id
= identification_create_from_string(dn
);
107 if (id
->get_type(id
) != ID_DER_ASN1_DN
)
109 error
= "supplied --dn is not a distinguished name";
114 private = lib
->creds
->create(lib
->creds
, CRED_PRIVATE_KEY
, type
,
115 BUILD_FROM_FILE
, file
, BUILD_END
);
121 set_file_mode(stdin
, CERT_ASN1_DER
);
122 if (!chunk_from_fd(0, &chunk
))
124 fprintf(stderr
, "reading private key failed: %s\n", strerror(errno
));
128 private = lib
->creds
->create(lib
->creds
, CRED_PRIVATE_KEY
, type
,
129 BUILD_BLOB
, chunk
, BUILD_END
);
134 error
= "parsing private key failed";
137 cert
= lib
->creds
->create(lib
->creds
, CRED_CERTIFICATE
, CERT_PKCS10_REQUEST
,
138 BUILD_SIGNING_KEY
, private,
140 BUILD_SUBJECT_ALTNAMES
, san
,
141 BUILD_CHALLENGE_PWD
, challenge_password
,
142 BUILD_DIGEST_ALG
, digest
,
146 error
= "generating certificate request failed";
149 if (!cert
->get_encoding(cert
, form
, &encoding
))
151 error
= "encoding certificate request failed";
154 set_file_mode(stdout
, form
);
155 if (fwrite(encoding
.ptr
, encoding
.len
, 1, stdout
) != 1)
157 error
= "writing certificate request failed";
165 san
->destroy_offset(san
, offsetof(identification_t
, destroy
));
170 fprintf(stderr
, "%s\n", error
);
176 san
->destroy_offset(san
, offsetof(identification_t
, destroy
));
177 return command_usage(error
);
181 * Register the command.
183 static void __attribute__ ((constructor
))reg()
185 command_register((command_t
) {
187 "create a PKCS#10 certificate request",
188 {" [--in file] [--type rsa|ecdsa] --dn distinguished-name",
189 "[--san subjectAltName]+ [--password challengePassword]",
190 "[--digest md5|sha1|sha224|sha256|sha384|sha512] [--outform der|pem]"},
192 {"help", 'h', 0, "show usage information"},
193 {"in", 'i', 1, "private key input file, default: stdin"},
194 {"type", 't', 1, "type of input key, default: rsa"},
195 {"dn", 'd', 1, "subject distinguished name"},
196 {"san", 'a', 1, "subjectAltName to include in cert request"},
197 {"password",'p', 1, "challengePassword to include in cert request"},
198 {"digest", 'g', 1, "digest for signature creation, default: sha1"},
199 {"outform", 'f', 1, "encoding of generated request, default: der"},