2 * Copyright (C) 2015 Red Hat, Inc.
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2.1 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library. If not, see
16 * <http://www.gnu.org/licenses/>.
21 #include "qemu/osdep.h"
23 #include "crypto-tls-x509-helpers.h"
24 #include "crypto/init.h"
25 #include "qemu/sockets.h"
27 #ifdef QCRYPTO_HAVE_TLS_TEST_SUPPORT
30 * This stores some static data that is needed when
31 * encoding extensions in the x509 certs
36 * To avoid consuming random entropy to generate keys,
37 * here's one we prepared earlier :-)
39 gnutls_x509_privkey_t privkey;
40 # define PRIVATE_KEY \
41 "-----BEGIN PRIVATE KEY-----\n" \
42 "MIICdQIBADANBgkqhkiG9w0BAQEFAASCAl8wggJbAgEAAoGBALVcr\n" \
43 "BL40Tm6yq88FBhJNw1aaoCjmtg0l4dWQZ/e9Fimx4ARxFpT+ji4FE\n" \
44 "Cgl9s/SGqC+1nvlkm9ViSo0j7MKDbnDB+VRHDvMAzQhA2X7e8M0n9\n" \
45 "rPolUY2lIVC83q0BBaOBkCj2RSmT2xTEbbC2xLukSrg2WP/ihVOxc\n" \
46 "kXRuyFtzAgMBAAECgYB7slBexDwXrtItAMIH6m/U+LUpNe0Xx48OL\n" \
47 "IOn4a4whNgO/o84uIwygUK27ZGFZT0kAGAk8CdF9hA6ArcbQ62s1H\n" \
48 "myxrUbF9/mrLsQw1NEqpuUk9Ay2Tx5U/wPx35S3W/X2AvR/ZpTnCn\n" \
49 "2q/7ym9fyiSoj86drD7BTvmKXlOnOwQJBAPOFMp4mMa9NGpGuEssO\n" \
50 "m3Uwbp6lhcP0cA9MK+iOmeANpoKWfBdk5O34VbmeXnGYWEkrnX+9J\n" \
51 "bM4wVhnnBWtgBMCQQC+qAEmvwcfhauERKYznMVUVksyeuhxhCe7EK\n" \
52 "mPh+U2+g0WwdKvGDgO0PPt1gq0ILEjspMDeMHVdTwkaVBo/uMhAkA\n" \
53 "Z5SsZyCP2aTOPFDypXRdI4eqRcjaEPOUBq27r3uYb/jeboVb2weLa\n" \
54 "L1MmVuHiIHoa5clswPdWVI2y0em2IGoDAkBPSp/v9VKJEZabk9Frd\n" \
55 "a+7u4fanrM9QrEjY3KhduslSilXZZSxrWjjAJPyPiqFb3M8XXA26W\n" \
56 "nz1KYGnqYKhLcBAkB7dt57n9xfrhDpuyVEv+Uv1D3VVAhZlsaZ5Pp\n" \
57 "dcrhrkJn2sa/+O8OKvdrPSeeu/N5WwYhJf61+CPoenMp7IFci\n" \
58 "-----END PRIVATE KEY-----\n"
61 * This loads the private key we defined earlier
63 static gnutls_x509_privkey_t test_tls_load_key(void)
65 gnutls_x509_privkey_t key;
66 const gnutls_datum_t data = { (unsigned char *)PRIVATE_KEY,
67 strlen(PRIVATE_KEY) };
70 err = gnutls_x509_privkey_init(&key);
72 g_critical("Failed to init key %s", gnutls_strerror(err));
76 err = gnutls_x509_privkey_import(key, &data,
79 if (err != GNUTLS_E_BASE64_UNEXPECTED_HEADER_ERROR &&
80 err != GNUTLS_E_REQUESTED_DATA_NOT_AVAILABLE) {
81 g_critical("Failed to import key %s", gnutls_strerror(err));
85 err = gnutls_x509_privkey_import_pkcs8(
86 key, &data, GNUTLS_X509_FMT_PEM, NULL, 0);
88 g_critical("Failed to import PKCS8 key %s", gnutls_strerror(err));
97 void test_tls_init(const char *keyfile)
99 qcrypto_init(&error_abort);
101 if (asn1_array2tree(pkix_asn1_tab, &pkix_asn1, NULL) != ASN1_SUCCESS) {
105 privkey = test_tls_load_key();
106 if (!g_file_set_contents(keyfile, PRIVATE_KEY, -1, NULL)) {
112 void test_tls_cleanup(const char *keyfile)
114 asn1_delete_structure(&pkix_asn1);
119 * Turns an ASN1 object into a DER encoded byte array
121 static void test_tls_der_encode(ASN1_TYPE src,
122 const char *src_name,
129 asn1_der_coding(src, src_name, NULL, &size, NULL);
131 data = g_new0(char, size);
133 asn1_der_coding(src, src_name, data, &size, NULL);
135 res->data = (unsigned char *)data;
141 test_tls_get_ipaddr(const char *addrstr,
145 struct addrinfo *res;
146 struct addrinfo hints;
148 memset(&hints, 0, sizeof(hints));
149 hints.ai_flags = AI_NUMERICHOST;
150 g_assert(getaddrinfo(addrstr, NULL, &hints, &res) == 0);
152 *datalen = res->ai_addrlen;
153 *data = g_new(char, *datalen);
154 memcpy(*data, res->ai_addr, *datalen);
159 * This is a fairly lame x509 certificate generator.
161 * Do not copy/use this code for generating real certificates
162 * since it leaves out many things that you would want in
163 * certificates for real world usage.
165 * This is good enough only for doing tests of the QEMU
166 * TLS certificate code
169 test_tls_generate_cert(QCryptoTLSTestCertReq *req,
170 gnutls_x509_crt_t ca)
172 gnutls_x509_crt_t crt;
174 static char buffer[1024 * 1024];
175 size_t size = sizeof(buffer);
176 char serial[5] = { 1, 2, 3, 4, 0 };
178 time_t start = time(NULL) + (60 * 60 * req->start_offset);
179 time_t expire = time(NULL) + (60 * 60 * (req->expire_offset
180 ? req->expire_offset : 24));
183 * Prepare our new certificate object
185 err = gnutls_x509_crt_init(&crt);
187 g_critical("Failed to initialize certificate %s", gnutls_strerror(err));
190 err = gnutls_x509_crt_set_key(crt, privkey);
192 g_critical("Failed to set certificate key %s", gnutls_strerror(err));
197 * A v3 certificate is required in order to be able
198 * set any of the basic constraints, key purpose and
201 gnutls_x509_crt_set_version(crt, 3);
204 err = gnutls_x509_crt_set_dn_by_oid(
205 crt, GNUTLS_OID_X520_COUNTRY_NAME, 0,
206 req->country, strlen(req->country));
208 g_critical("Failed to set certificate country name %s",
209 gnutls_strerror(err));
214 err = gnutls_x509_crt_set_dn_by_oid(
215 crt, GNUTLS_OID_X520_COMMON_NAME, 0,
216 req->cn, strlen(req->cn));
218 g_critical("Failed to set certificate common name %s",
219 gnutls_strerror(err));
225 * Setup the subject altnames, which are used
226 * for hostname checks in live sessions
229 err = gnutls_x509_crt_set_subject_alt_name(
230 crt, GNUTLS_SAN_DNSNAME,
232 strlen(req->altname1),
235 g_critical("Failed to set certificate alt name %s",
236 gnutls_strerror(err));
241 err = gnutls_x509_crt_set_subject_alt_name(
242 crt, GNUTLS_SAN_DNSNAME,
244 strlen(req->altname2),
247 g_critical("Failed to set certificate %s alt name",
248 gnutls_strerror(err));
254 * IP address need to be put into the cert in their
255 * raw byte form, not strings, hence this is a little
262 test_tls_get_ipaddr(req->ipaddr1, &data, &len);
264 err = gnutls_x509_crt_set_subject_alt_name(
265 crt, GNUTLS_SAN_IPADDRESS,
266 data, len, GNUTLS_FSAN_APPEND);
268 g_critical("Failed to set certificate alt name %s",
269 gnutls_strerror(err));
278 test_tls_get_ipaddr(req->ipaddr2, &data, &len);
280 err = gnutls_x509_crt_set_subject_alt_name(
281 crt, GNUTLS_SAN_IPADDRESS,
282 data, len, GNUTLS_FSAN_APPEND);
284 g_critical("Failed to set certificate alt name %s",
285 gnutls_strerror(err));
293 * Basic constraints are used to decide if the cert
294 * is for a CA or not. We can't use the convenient
295 * gnutls API for setting this, since it hardcodes
296 * the 'critical' field which we want control over
298 if (req->basicConstraintsEnable) {
299 ASN1_TYPE ext = ASN1_TYPE_EMPTY;
301 asn1_create_element(pkix_asn1, "PKIX1.BasicConstraints", &ext);
302 asn1_write_value(ext, "cA",
303 req->basicConstraintsIsCA ? "TRUE" : "FALSE", 1);
304 asn1_write_value(ext, "pathLenConstraint", NULL, 0);
305 test_tls_der_encode(ext, "", &der);
306 err = gnutls_x509_crt_set_extension_by_oid(
309 req->basicConstraintsCritical);
311 g_critical("Failed to set certificate basic constraints %s",
312 gnutls_strerror(err));
316 asn1_delete_structure(&ext);
321 * Next up the key usage extension. Again we can't
322 * use the gnutls API since it hardcodes the extension
325 if (req->keyUsageEnable) {
326 ASN1_TYPE ext = ASN1_TYPE_EMPTY;
329 str[0] = req->keyUsageValue & 0xff;
330 str[1] = (req->keyUsageValue >> 8) & 0xff;
332 asn1_create_element(pkix_asn1, "PKIX1.KeyUsage", &ext);
333 asn1_write_value(ext, "", str, 9);
334 test_tls_der_encode(ext, "", &der);
335 err = gnutls_x509_crt_set_extension_by_oid(
338 req->keyUsageCritical);
340 g_critical("Failed to set certificate key usage %s",
341 gnutls_strerror(err));
345 asn1_delete_structure(&ext);
350 * Finally the key purpose extension. This time
351 * gnutls has the opposite problem, always hardcoding
352 * it to be non-critical. So once again we have to
353 * set this the hard way building up ASN1 data ourselves
355 if (req->keyPurposeEnable) {
356 ASN1_TYPE ext = ASN1_TYPE_EMPTY;
358 asn1_create_element(pkix_asn1, "PKIX1.ExtKeyUsageSyntax", &ext);
359 if (req->keyPurposeOID1) {
360 asn1_write_value(ext, "", "NEW", 1);
361 asn1_write_value(ext, "?LAST", req->keyPurposeOID1, 1);
363 if (req->keyPurposeOID2) {
364 asn1_write_value(ext, "", "NEW", 1);
365 asn1_write_value(ext, "?LAST", req->keyPurposeOID2, 1);
367 test_tls_der_encode(ext, "", &der);
368 err = gnutls_x509_crt_set_extension_by_oid(
371 req->keyPurposeCritical);
373 g_critical("Failed to set certificate key purpose %s",
374 gnutls_strerror(err));
378 asn1_delete_structure(&ext);
383 * Any old serial number will do, so lets pick 5
385 err = gnutls_x509_crt_set_serial(crt, serial, 5);
387 g_critical("Failed to set certificate serial %s",
388 gnutls_strerror(err));
392 err = gnutls_x509_crt_set_activation_time(crt, start);
394 g_critical("Failed to set certificate activation %s",
395 gnutls_strerror(err));
398 err = gnutls_x509_crt_set_expiration_time(crt, expire);
400 g_critical("Failed to set certificate expiration %s",
401 gnutls_strerror(err));
407 * If no 'ca' is set then we are self signing
408 * the cert. This is done for the root CA certs
410 err = gnutls_x509_crt_sign2(crt, ca ? ca : crt, privkey,
411 GNUTLS_DIG_SHA256, 0);
413 g_critical("Failed to sign certificate %s",
414 gnutls_strerror(err));
419 * Finally write the new cert out to disk
421 err = gnutls_x509_crt_export(
422 crt, GNUTLS_X509_FMT_PEM, buffer, &size);
424 g_critical("Failed to export certificate %s: %d",
425 gnutls_strerror(err), err);
429 if (!g_file_set_contents(req->filename, buffer, -1, NULL)) {
430 g_critical("Failed to write certificate %s",
439 void test_tls_write_cert_chain(const char *filename,
440 gnutls_x509_crt_t *certs,
444 size_t capacity = 1024, offset = 0;
445 char *buffer = g_new0(char, capacity);
448 for (i = 0; i < ncerts; i++) {
449 size_t len = capacity - offset;
451 err = gnutls_x509_crt_export(certs[i], GNUTLS_X509_FMT_PEM,
452 buffer + offset, &len);
454 if (err == GNUTLS_E_SHORT_MEMORY_BUFFER) {
455 buffer = g_renew(char, buffer, offset + len);
456 capacity = offset + len;
459 g_critical("Failed to export certificate chain %s: %d",
460 gnutls_strerror(err), err);
466 if (!g_file_set_contents(filename, buffer, offset, NULL)) {
473 void test_tls_discard_cert(QCryptoTLSTestCertReq *req)
479 gnutls_x509_crt_deinit(req->crt);
482 if (getenv("QEMU_TEST_DEBUG_CERTS") == NULL) {
483 unlink(req->filename);
487 #endif /* QCRYPTO_HAVE_TLS_TEST_SUPPORT */