extract-cert.c 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166
  1. /* Extract X.509 certificate in DER form from PKCS#11 or PEM.
  2. *
  3. * Copyright © 2014 Red Hat, Inc. All Rights Reserved.
  4. * Copyright © 2015 Intel Corporation.
  5. *
  6. * Authors: David Howells <dhowells@redhat.com>
  7. * David Woodhouse <dwmw2@infradead.org>
  8. *
  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.
  13. */
  14. #define _GNU_SOURCE
  15. #include <stdio.h>
  16. #include <stdlib.h>
  17. #include <stdint.h>
  18. #include <stdbool.h>
  19. #include <string.h>
  20. #include <getopt.h>
  21. #include <err.h>
  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>
  29. #define PKEY_ID_PKCS7 2
  30. static __attribute__((noreturn))
  31. void format(void)
  32. {
  33. fprintf(stderr,
  34. "Usage: scripts/extract-cert <source> <dest>\n");
  35. exit(2);
  36. }
  37. static void display_openssl_errors(int l)
  38. {
  39. const char *file;
  40. char buf[120];
  41. int e, line;
  42. if (ERR_peek_error() == 0)
  43. return;
  44. fprintf(stderr, "At main.c:%d:\n", l);
  45. while ((e = ERR_get_error_line(&file, &line))) {
  46. ERR_error_string(e, buf);
  47. fprintf(stderr, "- SSL %s: %s:%d\n", buf, file, line);
  48. }
  49. }
  50. static void drain_openssl_errors(void)
  51. {
  52. const char *file;
  53. int line;
  54. if (ERR_peek_error() == 0)
  55. return;
  56. while (ERR_get_error_line(&file, &line)) {}
  57. }
  58. #define ERR(cond, fmt, ...) \
  59. do { \
  60. bool __cond = (cond); \
  61. display_openssl_errors(__LINE__); \
  62. if (__cond) { \
  63. err(1, fmt, ## __VA_ARGS__); \
  64. } \
  65. } while(0)
  66. static const char *key_pass;
  67. static BIO *wb;
  68. static char *cert_dst;
  69. int kbuild_verbose;
  70. static void write_cert(X509 *x509)
  71. {
  72. char buf[200];
  73. if (!wb) {
  74. wb = BIO_new_file(cert_dst, "wb");
  75. ERR(!wb, "%s", cert_dst);
  76. }
  77. X509_NAME_oneline(X509_get_subject_name(x509), buf, sizeof(buf));
  78. ERR(!i2d_X509_bio(wb, x509), "%s", cert_dst);
  79. if (kbuild_verbose)
  80. fprintf(stderr, "Extracted cert: %s\n", buf);
  81. }
  82. int main(int argc, char **argv)
  83. {
  84. char *cert_src;
  85. OpenSSL_add_all_algorithms();
  86. ERR_load_crypto_strings();
  87. ERR_clear_error();
  88. kbuild_verbose = atoi(getenv("KBUILD_VERBOSE")?:"0");
  89. key_pass = getenv("KBUILD_SIGN_PIN");
  90. if (argc != 3)
  91. format();
  92. cert_src = argv[1];
  93. cert_dst = argv[2];
  94. if (!cert_src[0]) {
  95. /* Invoked with no input; create empty file */
  96. FILE *f = fopen(cert_dst, "wb");
  97. ERR(!f, "%s", cert_dst);
  98. fclose(f);
  99. exit(0);
  100. } else if (!strncmp(cert_src, "pkcs11:", 7)) {
  101. ENGINE *e;
  102. struct {
  103. const char *cert_id;
  104. X509 *cert;
  105. } parms;
  106. parms.cert_id = cert_src;
  107. parms.cert = NULL;
  108. ENGINE_load_builtin_engines();
  109. drain_openssl_errors();
  110. e = ENGINE_by_id("pkcs11");
  111. ERR(!e, "Load PKCS#11 ENGINE");
  112. if (ENGINE_init(e))
  113. drain_openssl_errors();
  114. else
  115. ERR(1, "ENGINE_init");
  116. if (key_pass)
  117. ERR(!ENGINE_ctrl_cmd_string(e, "PIN", key_pass, 0), "Set PKCS#11 PIN");
  118. ENGINE_ctrl_cmd(e, "LOAD_CERT_CTRL", 0, &parms, NULL, 1);
  119. ERR(!parms.cert, "Get X.509 from PKCS#11");
  120. write_cert(parms.cert);
  121. } else {
  122. BIO *b;
  123. X509 *x509;
  124. b = BIO_new_file(cert_src, "rb");
  125. ERR(!b, "%s", cert_src);
  126. while (1) {
  127. x509 = PEM_read_bio_X509(b, NULL, NULL, NULL);
  128. if (wb && !x509) {
  129. unsigned long err = ERR_peek_last_error();
  130. if (ERR_GET_LIB(err) == ERR_LIB_PEM &&
  131. ERR_GET_REASON(err) == PEM_R_NO_START_LINE) {
  132. ERR_clear_error();
  133. break;
  134. }
  135. }
  136. ERR(!x509, "%s", cert_src);
  137. write_cert(x509);
  138. }
  139. }
  140. BIO_free(wb);
  141. return 0;
  142. }