X509_STORE_CTX_get_error.pod 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338
  1. =pod
  2. =head1 NAME
  3. X509_STORE_CTX_get_error, X509_STORE_CTX_set_error,
  4. X509_STORE_CTX_get_error_depth, X509_STORE_CTX_set_error_depth,
  5. X509_STORE_CTX_get_current_cert, X509_STORE_CTX_set_current_cert,
  6. X509_STORE_CTX_get0_cert, X509_STORE_CTX_get1_chain,
  7. X509_verify_cert_error_string - get or set certificate verification status
  8. information
  9. =head1 SYNOPSIS
  10. #include <openssl/x509.h>
  11. int X509_STORE_CTX_get_error(X509_STORE_CTX *ctx);
  12. void X509_STORE_CTX_set_error(X509_STORE_CTX *ctx, int s);
  13. int X509_STORE_CTX_get_error_depth(X509_STORE_CTX *ctx);
  14. void X509_STORE_CTX_set_error_depth(X509_STORE_CTX *ctx, int depth);
  15. X509 *X509_STORE_CTX_get_current_cert(X509_STORE_CTX *ctx);
  16. void X509_STORE_CTX_set_current_cert(X509_STORE_CTX *ctx, X509 *x);
  17. X509 *X509_STORE_CTX_get0_cert(X509_STORE_CTX *ctx);
  18. STACK_OF(X509) *X509_STORE_CTX_get1_chain(X509_STORE_CTX *ctx);
  19. const char *X509_verify_cert_error_string(long n);
  20. =head1 DESCRIPTION
  21. These functions are typically called after X509_verify_cert() has indicated
  22. an error or in a verification callback to determine the nature of an error.
  23. X509_STORE_CTX_get_error() returns the error code of B<ctx>, see
  24. the B<ERROR CODES> section for a full description of all error codes.
  25. X509_STORE_CTX_set_error() sets the error code of B<ctx> to B<s>. For example
  26. it might be used in a verification callback to set an error based on additional
  27. checks.
  28. X509_STORE_CTX_get_error_depth() returns the B<depth> of the error. This is a
  29. non-negative integer representing where in the certificate chain the error
  30. occurred. If it is zero it occurred in the end entity certificate, one if
  31. it is the certificate which signed the end entity certificate and so on.
  32. X509_STORE_CTX_set_error_depth() sets the error B<depth>.
  33. This can be used in combination with X509_STORE_CTX_set_error() to set the
  34. depth at which an error condition was detected.
  35. X509_STORE_CTX_get_current_cert() returns the certificate in B<ctx> which
  36. caused the error or B<NULL> if no certificate is relevant.
  37. X509_STORE_CTX_set_current_cert() sets the certificate B<x> in B<ctx> which
  38. caused the error.
  39. This value is not intended to remain valid for very long, and remains owned by
  40. the caller.
  41. It may be examined by a verification callback invoked to handle each error
  42. encountered during chain verification and is no longer required after such a
  43. callback.
  44. If a callback wishes the save the certificate for use after it returns, it
  45. needs to increment its reference count via L<X509_up_ref(3)>.
  46. Once such a I<saved> certificate is no longer needed it can be freed with
  47. L<X509_free(3)>.
  48. X509_STORE_CTX_get0_cert() retrieves an internal pointer to the
  49. certificate being verified by the B<ctx>.
  50. X509_STORE_CTX_get1_chain() returns a complete validate chain if a previous
  51. call to X509_verify_cert() is successful. If the call to X509_verify_cert()
  52. is B<not> successful the returned chain may be incomplete or invalid. The
  53. returned chain persists after the B<ctx> structure is freed, when it is
  54. no longer needed it should be free up using:
  55. sk_X509_pop_free(chain, X509_free);
  56. X509_verify_cert_error_string() returns a human readable error string for
  57. verification error B<n>.
  58. =head1 RETURN VALUES
  59. X509_STORE_CTX_get_error() returns B<X509_V_OK> or an error code.
  60. X509_STORE_CTX_get_error_depth() returns a non-negative error depth.
  61. X509_STORE_CTX_get_current_cert() returns the certificate which caused the
  62. error or B<NULL> if no certificate is relevant to the error.
  63. X509_verify_cert_error_string() returns a human readable error string for
  64. verification error B<n>.
  65. =head1 ERROR CODES
  66. A list of error codes and messages is shown below. Some of the
  67. error codes are defined but currently never returned: these are described as
  68. "unused".
  69. =over 4
  70. =item B<X509_V_OK: ok>
  71. the operation was successful.
  72. =item B<X509_V_ERR_UNABLE_TO_GET_ISSUER_CERT: unable to get issuer certificate>
  73. the issuer certificate could not be found: this occurs if the issuer certificate
  74. of an untrusted certificate cannot be found.
  75. =item B<X509_V_ERR_UNABLE_TO_GET_CRL: unable to get certificate CRL>
  76. the CRL of a certificate could not be found.
  77. =item B<X509_V_ERR_UNABLE_TO_DECRYPT_CERT_SIGNATURE: unable to decrypt certificate's signature>
  78. the certificate signature could not be decrypted. This means that the actual
  79. signature value could not be determined rather than it not matching the
  80. expected value, this is only meaningful for RSA keys.
  81. =item B<X509_V_ERR_UNABLE_TO_DECRYPT_CRL_SIGNATURE: unable to decrypt CRL's signature>
  82. the CRL signature could not be decrypted: this means that the actual signature
  83. value could not be determined rather than it not matching the expected value.
  84. Unused.
  85. =item B<X509_V_ERR_UNABLE_TO_DECODE_ISSUER_PUBLIC_KEY: unable to decode issuer public key>
  86. the public key in the certificate SubjectPublicKeyInfo could not be read.
  87. =item B<X509_V_ERR_CERT_SIGNATURE_FAILURE: certificate signature failure>
  88. the signature of the certificate is invalid.
  89. =item B<X509_V_ERR_CRL_SIGNATURE_FAILURE: CRL signature failure>
  90. the signature of the certificate is invalid.
  91. =item B<X509_V_ERR_CERT_NOT_YET_VALID: certificate is not yet valid>
  92. the certificate is not yet valid: the notBefore date is after the current time.
  93. =item B<X509_V_ERR_CERT_HAS_EXPIRED: certificate has expired>
  94. the certificate has expired: that is the notAfter date is before the current time.
  95. =item B<X509_V_ERR_CRL_NOT_YET_VALID: CRL is not yet valid>
  96. the CRL is not yet valid.
  97. =item B<X509_V_ERR_CRL_HAS_EXPIRED: CRL has expired>
  98. the CRL has expired.
  99. =item B<X509_V_ERR_ERROR_IN_CERT_NOT_BEFORE_FIELD: format error in certificate's notBefore field>
  100. the certificate notBefore field contains an invalid time.
  101. =item B<X509_V_ERR_ERROR_IN_CERT_NOT_AFTER_FIELD: format error in certificate's notAfter field>
  102. the certificate notAfter field contains an invalid time.
  103. =item B<X509_V_ERR_ERROR_IN_CRL_LAST_UPDATE_FIELD: format error in CRL's lastUpdate field>
  104. the CRL lastUpdate field contains an invalid time.
  105. =item B<X509_V_ERR_ERROR_IN_CRL_NEXT_UPDATE_FIELD: format error in CRL's nextUpdate field>
  106. the CRL nextUpdate field contains an invalid time.
  107. =item B<X509_V_ERR_OUT_OF_MEM: out of memory>
  108. an error occurred trying to allocate memory. This should never happen.
  109. =item B<X509_V_ERR_DEPTH_ZERO_SELF_SIGNED_CERT: self signed certificate>
  110. the passed certificate is self signed and the same certificate cannot be found
  111. in the list of trusted certificates.
  112. =item B<X509_V_ERR_SELF_SIGNED_CERT_IN_CHAIN: self signed certificate in certificate chain>
  113. the certificate chain could be built up using the untrusted certificates but
  114. the root could not be found locally.
  115. =item B<X509_V_ERR_UNABLE_TO_GET_ISSUER_CERT_LOCALLY: unable to get local issuer certificate>
  116. the issuer certificate of a locally looked up certificate could not be found.
  117. This normally means the list of trusted certificates is not complete.
  118. =item B<X509_V_ERR_UNABLE_TO_VERIFY_LEAF_SIGNATURE: unable to verify the first certificate>
  119. no signatures could be verified because the chain contains only one certificate
  120. and it is not self signed.
  121. =item B<X509_V_ERR_CERT_CHAIN_TOO_LONG: certificate chain too long>
  122. the certificate chain length is greater than the supplied maximum depth. Unused.
  123. =item B<X509_V_ERR_CERT_REVOKED: certificate revoked>
  124. the certificate has been revoked.
  125. =item B<X509_V_ERR_INVALID_CA: invalid CA certificate>
  126. a CA certificate is invalid. Either it is not a CA or its extensions are not
  127. consistent with the supplied purpose.
  128. =item B<X509_V_ERR_PATH_LENGTH_EXCEEDED: path length constraint exceeded>
  129. the basicConstraints path-length parameter has been exceeded.
  130. =item B<X509_V_ERR_INVALID_PURPOSE: unsupported certificate purpose>
  131. the supplied certificate cannot be used for the specified purpose.
  132. =item B<X509_V_ERR_CERT_UNTRUSTED: certificate not trusted>
  133. the root CA is not marked as trusted for the specified purpose.
  134. =item B<X509_V_ERR_CERT_REJECTED: certificate rejected>
  135. the root CA is marked to reject the specified purpose.
  136. =item B<X509_V_ERR_SUBJECT_ISSUER_MISMATCH: subject issuer mismatch>
  137. the current candidate issuer certificate was rejected because its subject name
  138. did not match the issuer name of the current certificate. This is only set
  139. if issuer check debugging is enabled it is used for status notification and
  140. is B<not> in itself an error.
  141. =item B<X509_V_ERR_AKID_SKID_MISMATCH: authority and subject key identifier mismatch>
  142. the current candidate issuer certificate was rejected because its subject key
  143. identifier was present and did not match the authority key identifier current
  144. certificate. This is only set if issuer check debugging is enabled it is used
  145. for status notification and is B<not> in itself an error.
  146. =item B<X509_V_ERR_AKID_ISSUER_SERIAL_MISMATCH: authority and issuer serial number mismatch>
  147. the current candidate issuer certificate was rejected because its issuer name
  148. and serial number was present and did not match the authority key identifier of
  149. the current certificate. This is only set if issuer check debugging is enabled
  150. it is used for status notification and is B<not> in itself an error.
  151. =item B<X509_V_ERR_KEYUSAGE_NO_CERTSIGN:key usage does not include certificate signing>
  152. the current candidate issuer certificate was rejected because its keyUsage
  153. extension does not permit certificate signing. This is only set if issuer check
  154. debugging is enabled it is used for status notification and is B<not> in itself
  155. an error.
  156. =item B<X509_V_ERR_INVALID_EXTENSION: invalid or inconsistent certificate extension>
  157. A certificate extension had an invalid value (for example an incorrect
  158. encoding) or some value inconsistent with other extensions.
  159. =item B<X509_V_ERR_INVALID_POLICY_EXTENSION: invalid or inconsistent certificate policy extension>
  160. A certificate policies extension had an invalid value (for example an incorrect
  161. encoding) or some value inconsistent with other extensions. This error only
  162. occurs if policy processing is enabled.
  163. =item B<X509_V_ERR_NO_EXPLICIT_POLICY: no explicit policy>
  164. The verification flags were set to require and explicit policy but none was
  165. present.
  166. =item B<X509_V_ERR_DIFFERENT_CRL_SCOPE: Different CRL scope>
  167. The only CRLs that could be found did not match the scope of the certificate.
  168. =item B<X509_V_ERR_UNSUPPORTED_EXTENSION_FEATURE: Unsupported extension feature>
  169. Some feature of a certificate extension is not supported. Unused.
  170. =item B<X509_V_ERR_PERMITTED_VIOLATION: permitted subtree violation>
  171. A name constraint violation occurred in the permitted subtrees.
  172. =item B<X509_V_ERR_EXCLUDED_VIOLATION: excluded subtree violation>
  173. A name constraint violation occurred in the excluded subtrees.
  174. =item B<X509_V_ERR_SUBTREE_MINMAX: name constraints minimum and maximum not supported>
  175. A certificate name constraints extension included a minimum or maximum field:
  176. this is not supported.
  177. =item B<X509_V_ERR_UNSUPPORTED_CONSTRAINT_TYPE: unsupported name constraint type>
  178. An unsupported name constraint type was encountered. OpenSSL currently only
  179. supports directory name, DNS name, email and URI types.
  180. =item B<X509_V_ERR_UNSUPPORTED_CONSTRAINT_SYNTAX: unsupported or invalid name constraint syntax>
  181. The format of the name constraint is not recognised: for example an email
  182. address format of a form not mentioned in RFC3280. This could be caused by
  183. a garbage extension or some new feature not currently supported.
  184. =item B<X509_V_ERR_CRL_PATH_VALIDATION_ERROR: CRL path validation error>
  185. An error occurred when attempting to verify the CRL path. This error can only
  186. happen if extended CRL checking is enabled.
  187. =item B<X509_V_ERR_APPLICATION_VERIFICATION: application verification failure>
  188. an application specific error. This will never be returned unless explicitly
  189. set by an application.
  190. =back
  191. =head1 NOTES
  192. The above functions should be used instead of directly referencing the fields
  193. in the B<X509_VERIFY_CTX> structure.
  194. In versions of OpenSSL before 1.0 the current certificate returned by
  195. X509_STORE_CTX_get_current_cert() was never B<NULL>. Applications should
  196. check the return value before printing out any debugging information relating
  197. to the current certificate.
  198. If an unrecognised error code is passed to X509_verify_cert_error_string() the
  199. numerical value of the unknown code is returned in a static buffer. This is not
  200. thread safe but will never happen unless an invalid code is passed.
  201. =head1 SEE ALSO
  202. L<X509_verify_cert(3)>,
  203. L<X509_up_ref(3)>,
  204. L<X509_free(3)>.
  205. =head1 COPYRIGHT
  206. Copyright 2009-2016 The OpenSSL Project Authors. All Rights Reserved.
  207. Licensed under the OpenSSL license (the "License"). You may not use
  208. this file except in compliance with the License. You can obtain a copy
  209. in the file LICENSE in the source distribution or at
  210. L<https://www.openssl.org/source/license.html>.
  211. =cut