x509.h 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357
  1. /*
  2. * Copyright 2015-2021 The OpenSSL Project Authors. All Rights Reserved.
  3. *
  4. * Licensed under the Apache License 2.0 (the "License"). You may not use
  5. * this file except in compliance with the License. You can obtain a copy
  6. * in the file LICENSE in the source distribution or at
  7. * https://www.openssl.org/source/license.html
  8. */
  9. #ifndef OSSL_CRYPTO_X509_H
  10. # define OSSL_CRYPTO_X509_H
  11. # pragma once
  12. # include "internal/refcount.h"
  13. # include <openssl/asn1.h>
  14. # include <openssl/x509.h>
  15. # include "crypto/types.h"
  16. /* Internal X509 structures and functions: not for application use */
  17. /* Note: unless otherwise stated a field pointer is mandatory and should
  18. * never be set to NULL: the ASN.1 code and accessors rely on mandatory
  19. * fields never being NULL.
  20. */
  21. /*
  22. * name entry structure, equivalent to AttributeTypeAndValue defined
  23. * in RFC5280 et al.
  24. */
  25. struct X509_name_entry_st {
  26. ASN1_OBJECT *object; /* AttributeType */
  27. ASN1_STRING *value; /* AttributeValue */
  28. int set; /* index of RDNSequence for this entry */
  29. int size; /* temp variable */
  30. };
  31. /* Name from RFC 5280. */
  32. struct X509_name_st {
  33. STACK_OF(X509_NAME_ENTRY) *entries; /* DN components */
  34. int modified; /* true if 'bytes' needs to be built */
  35. BUF_MEM *bytes; /* cached encoding: cannot be NULL */
  36. /* canonical encoding used for rapid Name comparison */
  37. unsigned char *canon_enc;
  38. int canon_enclen;
  39. } /* X509_NAME */ ;
  40. /* Signature info structure */
  41. struct x509_sig_info_st {
  42. /* NID of message digest */
  43. int mdnid;
  44. /* NID of public key algorithm */
  45. int pknid;
  46. /* Security bits */
  47. int secbits;
  48. /* Various flags */
  49. uint32_t flags;
  50. };
  51. /* PKCS#10 certificate request */
  52. struct X509_req_info_st {
  53. ASN1_ENCODING enc; /* cached encoding of signed part */
  54. ASN1_INTEGER *version; /* version, defaults to v1(0) so can be NULL */
  55. X509_NAME *subject; /* certificate request DN */
  56. X509_PUBKEY *pubkey; /* public key of request */
  57. /*
  58. * Zero or more attributes.
  59. * NB: although attributes is a mandatory field some broken
  60. * encodings omit it so this may be NULL in that case.
  61. */
  62. STACK_OF(X509_ATTRIBUTE) *attributes;
  63. };
  64. struct X509_req_st {
  65. X509_REQ_INFO req_info; /* signed certificate request data */
  66. X509_ALGOR sig_alg; /* signature algorithm */
  67. ASN1_BIT_STRING *signature; /* signature */
  68. CRYPTO_REF_COUNT references;
  69. CRYPTO_RWLOCK *lock;
  70. /* Set on live certificates for authentication purposes */
  71. ASN1_OCTET_STRING *distinguishing_id;
  72. OSSL_LIB_CTX *libctx;
  73. char *propq;
  74. };
  75. struct X509_crl_info_st {
  76. ASN1_INTEGER *version; /* version: defaults to v1(0) so may be NULL */
  77. X509_ALGOR sig_alg; /* signature algorithm */
  78. X509_NAME *issuer; /* CRL issuer name */
  79. ASN1_TIME *lastUpdate; /* lastUpdate field */
  80. ASN1_TIME *nextUpdate; /* nextUpdate field: optional */
  81. STACK_OF(X509_REVOKED) *revoked; /* revoked entries: optional */
  82. STACK_OF(X509_EXTENSION) *extensions; /* extensions: optional */
  83. ASN1_ENCODING enc; /* encoding of signed portion of CRL */
  84. };
  85. struct X509_crl_st {
  86. X509_CRL_INFO crl; /* signed CRL data */
  87. X509_ALGOR sig_alg; /* CRL signature algorithm */
  88. ASN1_BIT_STRING signature; /* CRL signature */
  89. CRYPTO_REF_COUNT references;
  90. int flags;
  91. /*
  92. * Cached copies of decoded extension values, since extensions
  93. * are optional any of these can be NULL.
  94. */
  95. AUTHORITY_KEYID *akid;
  96. ISSUING_DIST_POINT *idp;
  97. /* Convenient breakdown of IDP */
  98. int idp_flags;
  99. int idp_reasons;
  100. /* CRL and base CRL numbers for delta processing */
  101. ASN1_INTEGER *crl_number;
  102. ASN1_INTEGER *base_crl_number;
  103. STACK_OF(GENERAL_NAMES) *issuers;
  104. /* hash of CRL */
  105. unsigned char sha1_hash[SHA_DIGEST_LENGTH];
  106. /* alternative method to handle this CRL */
  107. const X509_CRL_METHOD *meth;
  108. void *meth_data;
  109. CRYPTO_RWLOCK *lock;
  110. OSSL_LIB_CTX *libctx;
  111. char *propq;
  112. };
  113. struct x509_revoked_st {
  114. ASN1_INTEGER serialNumber; /* revoked entry serial number */
  115. ASN1_TIME *revocationDate; /* revocation date */
  116. STACK_OF(X509_EXTENSION) *extensions; /* CRL entry extensions: optional */
  117. /* decoded value of CRLissuer extension: set if indirect CRL */
  118. STACK_OF(GENERAL_NAME) *issuer;
  119. /* revocation reason: set to CRL_REASON_NONE if reason extension absent */
  120. int reason;
  121. /*
  122. * CRL entries are reordered for faster lookup of serial numbers. This
  123. * field contains the original load sequence for this entry.
  124. */
  125. int sequence;
  126. };
  127. /*
  128. * This stuff is certificate "auxiliary info": it contains details which are
  129. * useful in certificate stores and databases. When used this is tagged onto
  130. * the end of the certificate itself. OpenSSL specific structure not defined
  131. * in any RFC.
  132. */
  133. struct x509_cert_aux_st {
  134. STACK_OF(ASN1_OBJECT) *trust; /* trusted uses */
  135. STACK_OF(ASN1_OBJECT) *reject; /* rejected uses */
  136. ASN1_UTF8STRING *alias; /* "friendly name" */
  137. ASN1_OCTET_STRING *keyid; /* key id of private key */
  138. STACK_OF(X509_ALGOR) *other; /* other unspecified info */
  139. };
  140. struct x509_cinf_st {
  141. ASN1_INTEGER *version; /* [ 0 ] default of v1 */
  142. ASN1_INTEGER serialNumber;
  143. X509_ALGOR signature;
  144. X509_NAME *issuer;
  145. X509_VAL validity;
  146. X509_NAME *subject;
  147. X509_PUBKEY *key;
  148. ASN1_BIT_STRING *issuerUID; /* [ 1 ] optional in v2 */
  149. ASN1_BIT_STRING *subjectUID; /* [ 2 ] optional in v2 */
  150. STACK_OF(X509_EXTENSION) *extensions; /* [ 3 ] optional in v3 */
  151. ASN1_ENCODING enc;
  152. };
  153. struct x509_st {
  154. X509_CINF cert_info;
  155. X509_ALGOR sig_alg;
  156. ASN1_BIT_STRING signature;
  157. X509_SIG_INFO siginf;
  158. CRYPTO_REF_COUNT references;
  159. CRYPTO_EX_DATA ex_data;
  160. /* These contain copies of various extension values */
  161. long ex_pathlen;
  162. long ex_pcpathlen;
  163. uint32_t ex_flags;
  164. uint32_t ex_kusage;
  165. uint32_t ex_xkusage;
  166. uint32_t ex_nscert;
  167. ASN1_OCTET_STRING *skid;
  168. AUTHORITY_KEYID *akid;
  169. X509_POLICY_CACHE *policy_cache;
  170. STACK_OF(DIST_POINT) *crldp;
  171. STACK_OF(GENERAL_NAME) *altname;
  172. NAME_CONSTRAINTS *nc;
  173. # ifndef OPENSSL_NO_RFC3779
  174. STACK_OF(IPAddressFamily) *rfc3779_addr;
  175. struct ASIdentifiers_st *rfc3779_asid;
  176. # endif
  177. unsigned char sha1_hash[SHA_DIGEST_LENGTH];
  178. X509_CERT_AUX *aux;
  179. CRYPTO_RWLOCK *lock;
  180. volatile int ex_cached;
  181. /* Set on live certificates for authentication purposes */
  182. ASN1_OCTET_STRING *distinguishing_id;
  183. OSSL_LIB_CTX *libctx;
  184. char *propq;
  185. } /* X509 */ ;
  186. /*
  187. * This is a used when verifying cert chains. Since the gathering of the
  188. * cert chain can take some time (and have to be 'retried', this needs to be
  189. * kept and passed around.
  190. */
  191. struct x509_store_ctx_st { /* X509_STORE_CTX */
  192. X509_STORE *store;
  193. /* The following are set by the caller */
  194. /* The cert to check */
  195. X509 *cert;
  196. /* chain of X509s - untrusted - passed in */
  197. STACK_OF(X509) *untrusted;
  198. /* set of CRLs passed in */
  199. STACK_OF(X509_CRL) *crls;
  200. X509_VERIFY_PARAM *param;
  201. /* Other info for use with get_issuer() */
  202. void *other_ctx;
  203. /* Callbacks for various operations */
  204. /* called to verify a certificate */
  205. int (*verify) (X509_STORE_CTX *ctx);
  206. /* error callback */
  207. int (*verify_cb) (int ok, X509_STORE_CTX *ctx);
  208. /* get issuers cert from ctx */
  209. int (*get_issuer) (X509 **issuer, X509_STORE_CTX *ctx, X509 *x);
  210. /* check issued */
  211. int (*check_issued) (X509_STORE_CTX *ctx, X509 *x, X509 *issuer);
  212. /* Check revocation status of chain */
  213. int (*check_revocation) (X509_STORE_CTX *ctx);
  214. /* retrieve CRL */
  215. int (*get_crl) (X509_STORE_CTX *ctx, X509_CRL **crl, X509 *x);
  216. /* Check CRL validity */
  217. int (*check_crl) (X509_STORE_CTX *ctx, X509_CRL *crl);
  218. /* Check certificate against CRL */
  219. int (*cert_crl) (X509_STORE_CTX *ctx, X509_CRL *crl, X509 *x);
  220. /* Check policy status of the chain */
  221. int (*check_policy) (X509_STORE_CTX *ctx);
  222. STACK_OF(X509) *(*lookup_certs) (X509_STORE_CTX *ctx,
  223. const X509_NAME *nm);
  224. /* cannot constify 'ctx' param due to lookup_certs_sk() in x509_vfy.c */
  225. STACK_OF(X509_CRL) *(*lookup_crls) (const X509_STORE_CTX *ctx,
  226. const X509_NAME *nm);
  227. int (*cleanup) (X509_STORE_CTX *ctx);
  228. /* The following is built up */
  229. /* if 0, rebuild chain */
  230. int valid;
  231. /* number of untrusted certs */
  232. int num_untrusted;
  233. /* chain of X509s - built up and trusted */
  234. STACK_OF(X509) *chain;
  235. /* Valid policy tree */
  236. X509_POLICY_TREE *tree;
  237. /* Require explicit policy value */
  238. int explicit_policy;
  239. /* When something goes wrong, this is why */
  240. int error_depth;
  241. int error;
  242. X509 *current_cert;
  243. /* cert currently being tested as valid issuer */
  244. X509 *current_issuer;
  245. /* current CRL */
  246. X509_CRL *current_crl;
  247. /* score of current CRL */
  248. int current_crl_score;
  249. /* Reason mask */
  250. unsigned int current_reasons;
  251. /* For CRL path validation: parent context */
  252. X509_STORE_CTX *parent;
  253. CRYPTO_EX_DATA ex_data;
  254. SSL_DANE *dane;
  255. /* signed via bare TA public key, rather than CA certificate */
  256. int bare_ta_signed;
  257. OSSL_LIB_CTX *libctx;
  258. char *propq;
  259. };
  260. /* PKCS#8 private key info structure */
  261. struct pkcs8_priv_key_info_st {
  262. ASN1_INTEGER *version;
  263. X509_ALGOR *pkeyalg;
  264. ASN1_OCTET_STRING *pkey;
  265. STACK_OF(X509_ATTRIBUTE) *attributes;
  266. };
  267. struct X509_sig_st {
  268. X509_ALGOR *algor;
  269. ASN1_OCTET_STRING *digest;
  270. };
  271. struct x509_object_st {
  272. /* one of the above types */
  273. X509_LOOKUP_TYPE type;
  274. union {
  275. char *ptr;
  276. X509 *x509;
  277. X509_CRL *crl;
  278. EVP_PKEY *pkey;
  279. } data;
  280. };
  281. int ossl_a2i_ipadd(unsigned char *ipout, const char *ipasc);
  282. int ossl_x509_set1_time(ASN1_TIME **ptm, const ASN1_TIME *tm);
  283. int ossl_x509_print_ex_brief(BIO *bio, X509 *cert, unsigned long neg_cflags);
  284. int ossl_x509v3_cache_extensions(X509 *x);
  285. int ossl_x509_init_sig_info(X509 *x);
  286. int ossl_x509_set0_libctx(X509 *x, OSSL_LIB_CTX *libctx, const char *propq);
  287. int ossl_x509_crl_set0_libctx(X509_CRL *x, OSSL_LIB_CTX *libctx,
  288. const char *propq);
  289. int ossl_x509_req_set0_libctx(X509_REQ *x, OSSL_LIB_CTX *libctx,
  290. const char *propq);
  291. int ossl_asn1_item_digest_ex(const ASN1_ITEM *it, const EVP_MD *type,
  292. void *data, unsigned char *md, unsigned int *len,
  293. OSSL_LIB_CTX *libctx, const char *propq);
  294. int ossl_x509_add_cert_new(STACK_OF(X509) **sk, X509 *cert, int flags);
  295. int ossl_x509_add_certs_new(STACK_OF(X509) **p_sk, STACK_OF(X509) *certs,
  296. int flags);
  297. STACK_OF(X509_ATTRIBUTE) *ossl_x509at_dup(const STACK_OF(X509_ATTRIBUTE) *x);
  298. int ossl_x509_PUBKEY_get0_libctx(OSSL_LIB_CTX **plibctx, const char **ppropq,
  299. const X509_PUBKEY *key);
  300. /* Calculate default key identifier according to RFC 5280 section 4.2.1.2 (1) */
  301. ASN1_OCTET_STRING *ossl_x509_pubkey_hash(X509_PUBKEY *pubkey);
  302. RSA *ossl_d2i_RSA_PSS_PUBKEY(RSA **a, const unsigned char **pp, long length);
  303. int ossl_i2d_RSA_PSS_PUBKEY(const RSA *a, unsigned char **pp);
  304. # ifndef OPENSSL_NO_DH
  305. DH *ossl_d2i_DH_PUBKEY(DH **a, const unsigned char **pp, long length);
  306. int ossl_i2d_DH_PUBKEY(const DH *a, unsigned char **pp);
  307. DH *ossl_d2i_DHx_PUBKEY(DH **a, const unsigned char **pp, long length);
  308. int ossl_i2d_DHx_PUBKEY(const DH *a, unsigned char **pp);
  309. # endif
  310. # ifndef OPENSSL_NO_EC
  311. ECX_KEY *ossl_d2i_ED25519_PUBKEY(ECX_KEY **a,
  312. const unsigned char **pp, long length);
  313. int ossl_i2d_ED25519_PUBKEY(const ECX_KEY *a, unsigned char **pp);
  314. ECX_KEY *ossl_d2i_ED448_PUBKEY(ECX_KEY **a,
  315. const unsigned char **pp, long length);
  316. int ossl_i2d_ED448_PUBKEY(const ECX_KEY *a, unsigned char **pp);
  317. ECX_KEY *ossl_d2i_X25519_PUBKEY(ECX_KEY **a,
  318. const unsigned char **pp, long length);
  319. int ossl_i2d_X25519_PUBKEY(const ECX_KEY *a, unsigned char **pp);
  320. ECX_KEY *ossl_d2i_X448_PUBKEY(ECX_KEY **a,
  321. const unsigned char **pp, long length);
  322. int ossl_i2d_X448_PUBKEY(const ECX_KEY *a, unsigned char **pp);
  323. # endif
  324. #endif