x509v3.h 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157
  1. /*
  2. * X.509v3 certificate parsing and processing
  3. * Copyright (c) 2006-2011, Jouni Malinen <j@w1.fi>
  4. *
  5. * This software may be distributed under the terms of the BSD license.
  6. * See README for more details.
  7. */
  8. #ifndef X509V3_H
  9. #define X509V3_H
  10. #include "asn1.h"
  11. struct x509_algorithm_identifier {
  12. struct asn1_oid oid;
  13. };
  14. struct x509_name_attr {
  15. enum x509_name_attr_type {
  16. X509_NAME_ATTR_NOT_USED,
  17. X509_NAME_ATTR_DC,
  18. X509_NAME_ATTR_CN,
  19. X509_NAME_ATTR_C,
  20. X509_NAME_ATTR_L,
  21. X509_NAME_ATTR_ST,
  22. X509_NAME_ATTR_O,
  23. X509_NAME_ATTR_OU
  24. } type;
  25. char *value;
  26. };
  27. #define X509_MAX_NAME_ATTRIBUTES 20
  28. struct x509_name {
  29. struct x509_name_attr attr[X509_MAX_NAME_ATTRIBUTES];
  30. size_t num_attr;
  31. char *email; /* emailAddress */
  32. /* from alternative name extension */
  33. char *alt_email; /* rfc822Name */
  34. char *dns; /* dNSName */
  35. char *uri; /* uniformResourceIdentifier */
  36. u8 *ip; /* iPAddress */
  37. size_t ip_len; /* IPv4: 4, IPv6: 16 */
  38. struct asn1_oid rid; /* registeredID */
  39. };
  40. #define X509_MAX_SERIAL_NUM_LEN 20
  41. struct x509_certificate {
  42. struct x509_certificate *next;
  43. enum { X509_CERT_V1 = 0, X509_CERT_V2 = 1, X509_CERT_V3 = 2 } version;
  44. u8 serial_number[X509_MAX_SERIAL_NUM_LEN];
  45. size_t serial_number_len;
  46. struct x509_algorithm_identifier signature;
  47. struct x509_name issuer;
  48. struct x509_name subject;
  49. u8 *subject_dn;
  50. size_t subject_dn_len;
  51. os_time_t not_before;
  52. os_time_t not_after;
  53. struct x509_algorithm_identifier public_key_alg;
  54. u8 *public_key;
  55. size_t public_key_len;
  56. struct x509_algorithm_identifier signature_alg;
  57. u8 *sign_value;
  58. size_t sign_value_len;
  59. /* Extensions */
  60. unsigned int extensions_present;
  61. #define X509_EXT_BASIC_CONSTRAINTS (1 << 0)
  62. #define X509_EXT_PATH_LEN_CONSTRAINT (1 << 1)
  63. #define X509_EXT_KEY_USAGE (1 << 2)
  64. #define X509_EXT_SUBJECT_ALT_NAME (1 << 3)
  65. #define X509_EXT_ISSUER_ALT_NAME (1 << 4)
  66. #define X509_EXT_EXT_KEY_USAGE (1 << 5)
  67. /* BasicConstraints */
  68. int ca; /* cA */
  69. unsigned long path_len_constraint; /* pathLenConstraint */
  70. /* KeyUsage */
  71. unsigned long key_usage;
  72. #define X509_KEY_USAGE_DIGITAL_SIGNATURE (1 << 0)
  73. #define X509_KEY_USAGE_NON_REPUDIATION (1 << 1)
  74. #define X509_KEY_USAGE_KEY_ENCIPHERMENT (1 << 2)
  75. #define X509_KEY_USAGE_DATA_ENCIPHERMENT (1 << 3)
  76. #define X509_KEY_USAGE_KEY_AGREEMENT (1 << 4)
  77. #define X509_KEY_USAGE_KEY_CERT_SIGN (1 << 5)
  78. #define X509_KEY_USAGE_CRL_SIGN (1 << 6)
  79. #define X509_KEY_USAGE_ENCIPHER_ONLY (1 << 7)
  80. #define X509_KEY_USAGE_DECIPHER_ONLY (1 << 8)
  81. /* ExtKeyUsage */
  82. unsigned long ext_key_usage;
  83. #define X509_EXT_KEY_USAGE_ANY (1 << 0)
  84. #define X509_EXT_KEY_USAGE_SERVER_AUTH (1 << 1)
  85. #define X509_EXT_KEY_USAGE_CLIENT_AUTH (1 << 2)
  86. #define X509_EXT_KEY_USAGE_OCSP (1 << 3)
  87. /*
  88. * The DER format certificate follows struct x509_certificate. These
  89. * pointers point to that buffer.
  90. */
  91. const u8 *cert_start;
  92. size_t cert_len;
  93. const u8 *tbs_cert_start;
  94. size_t tbs_cert_len;
  95. /* Meta data used for certificate validation */
  96. unsigned int ocsp_good:1;
  97. unsigned int ocsp_revoked:1;
  98. unsigned int issuer_trusted:1;
  99. };
  100. enum {
  101. X509_VALIDATE_OK,
  102. X509_VALIDATE_BAD_CERTIFICATE,
  103. X509_VALIDATE_UNSUPPORTED_CERTIFICATE,
  104. X509_VALIDATE_CERTIFICATE_REVOKED,
  105. X509_VALIDATE_CERTIFICATE_EXPIRED,
  106. X509_VALIDATE_CERTIFICATE_UNKNOWN,
  107. X509_VALIDATE_UNKNOWN_CA
  108. };
  109. void x509_certificate_free(struct x509_certificate *cert);
  110. int x509_parse_algorithm_identifier(const u8 *buf, size_t len,
  111. struct x509_algorithm_identifier *id,
  112. const u8 **next);
  113. int x509_parse_name(const u8 *buf, size_t len, struct x509_name *name,
  114. const u8 **next);
  115. int x509_parse_time(const u8 *buf, size_t len, u8 asn1_tag, os_time_t *val);
  116. struct x509_certificate * x509_certificate_parse(const u8 *buf, size_t len);
  117. void x509_free_name(struct x509_name *name);
  118. void x509_name_string(struct x509_name *name, char *buf, size_t len);
  119. int x509_name_compare(struct x509_name *a, struct x509_name *b);
  120. void x509_certificate_chain_free(struct x509_certificate *cert);
  121. int x509_check_signature(struct x509_certificate *issuer,
  122. struct x509_algorithm_identifier *signature,
  123. const u8 *sign_value, size_t sign_value_len,
  124. const u8 *signed_data, size_t signed_data_len);
  125. int x509_certificate_check_signature(struct x509_certificate *issuer,
  126. struct x509_certificate *cert);
  127. int x509_certificate_chain_validate(struct x509_certificate *trusted,
  128. struct x509_certificate *chain,
  129. int *reason, int disable_time_checks);
  130. struct x509_certificate *
  131. x509_certificate_get_subject(struct x509_certificate *chain,
  132. struct x509_name *name);
  133. int x509_certificate_self_signed(struct x509_certificate *cert);
  134. int x509_sha1_oid(struct asn1_oid *oid);
  135. int x509_sha256_oid(struct asn1_oid *oid);
  136. int x509_sha384_oid(struct asn1_oid *oid);
  137. int x509_sha512_oid(struct asn1_oid *oid);
  138. #endif /* X509V3_H */