1 /* Extract X.509 certificate in DER form from PKCS#11 or PEM.
3 * Copyright © 2014 Red Hat, Inc. All Rights Reserved.
4 * Copyright © 2015 Intel Corporation.
6 * Authors: David Howells <dhowells@redhat.com>
7 * David Woodhouse <dwmw2@infradead.org>
9 * This program is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU General Public Licence
11 * as published by the Free Software Foundation; either version
12 * 2 of the Licence, or (at your option) any later version.
22 #include <arpa/inet.h>
23 #include <openssl/bio.h>
24 #include <openssl/evp.h>
25 #include <openssl/pem.h>
26 #include <openssl/pkcs7.h>
27 #include <openssl/err.h>
28 #include <openssl/engine.h>
30 #define PKEY_ID_PKCS7 2
32 static __attribute__((noreturn
))
36 "Usage: scripts/extract-cert <source> <dest>\n");
40 static void display_openssl_errors(int l
)
46 if (ERR_peek_error() == 0)
48 fprintf(stderr
, "At main.c:%d:\n", l
);
50 while ((e
= ERR_get_error_line(&file
, &line
))) {
51 ERR_error_string(e
, buf
);
52 fprintf(stderr
, "- SSL %s: %s:%d\n", buf
, file
, line
);
56 static void drain_openssl_errors(void)
61 if (ERR_peek_error() == 0)
63 while (ERR_get_error_line(&file
, &line
)) {}
66 #define ERR(cond, fmt, ...) \
68 bool __cond = (cond); \
69 display_openssl_errors(__LINE__); \
71 err(1, fmt, ## __VA_ARGS__); \
75 static const char *key_pass
;
77 static char *cert_dst
;
80 static void write_cert(X509
*x509
)
85 wb
= BIO_new_file(cert_dst
, "wb");
86 ERR(!wb
, "%s", cert_dst
);
88 X509_NAME_oneline(X509_get_subject_name(x509
), buf
, sizeof(buf
));
89 ERR(!i2d_X509_bio(wb
, x509
), "%s", cert_dst
);
91 fprintf(stderr
, "Extracted cert: %s\n", buf
);
94 int main(int argc
, char **argv
)
98 OpenSSL_add_all_algorithms();
99 ERR_load_crypto_strings();
102 kbuild_verbose
= atoi(getenv("KBUILD_VERBOSE")?:"0");
104 key_pass
= getenv("KBUILD_SIGN_PIN");
113 /* Invoked with no input; create empty file */
114 FILE *f
= fopen(cert_dst
, "wb");
115 ERR(!f
, "%s", cert_dst
);
118 } else if (!strncmp(cert_src
, "pkcs11:", 7)) {
125 parms
.cert_id
= cert_src
;
128 ENGINE_load_builtin_engines();
129 drain_openssl_errors();
130 e
= ENGINE_by_id("pkcs11");
131 ERR(!e
, "Load PKCS#11 ENGINE");
133 drain_openssl_errors();
135 ERR(1, "ENGINE_init");
137 ERR(!ENGINE_ctrl_cmd_string(e
, "PIN", key_pass
, 0), "Set PKCS#11 PIN");
138 ENGINE_ctrl_cmd(e
, "LOAD_CERT_CTRL", 0, &parms
, NULL
, 1);
139 ERR(!parms
.cert
, "Get X.509 from PKCS#11");
140 write_cert(parms
.cert
);
145 b
= BIO_new_file(cert_src
, "rb");
146 ERR(!b
, "%s", cert_src
);
149 x509
= PEM_read_bio_X509(b
, NULL
, NULL
, NULL
);
151 unsigned long err
= ERR_peek_last_error();
152 if (ERR_GET_LIB(err
) == ERR_LIB_PEM
&&
153 ERR_GET_REASON(err
) == PEM_R_NO_START_LINE
) {
158 ERR(!x509
, "%s", cert_src
);