=pod =head1 NAME X509_verify_cert, X509_STORE_CTX_verify, X509_build_chain - build and verify X509 certificate chain =head1 SYNOPSIS #include int X509_verify_cert(X509_STORE_CTX *ctx); int X509_STORE_CTX_verify(X509_STORE_CTX *ctx); STACK_OF(X509) *X509_build_chain(X509 *target, STACK_OF(X509) *certs, X509_STORE *store, int with_self_signed, OSSL_LIB_CTX *libctx, const char *propq); =head1 DESCRIPTION =head2 X509_verify_cert and X509_STORE_CTX_verify X509_verify_cert() attempts to build and validate a certificate chain for the target certificate set in I. The verification context, of type B, must first be constructed with L and initialised with L. It carries the target certificate, the trust store, an optional stack of untrusted certificates that may assist chain construction, verification parameters such as flags and a verification purpose, an optional verification callback, and, after a call, the verification outcome. A B can be used for only one verification. Calling X509_verify_cert() a second time on the same context without reinitialising it fails with a negative return value, and L subsequently returns B. When the target is a certificate, the function performs the following steps in order. The first step that fails aborts verification, except where a verification callback explicitly waives the error (see L below): =over 4 =item 1. B Starting from the target certificate, the verification machinery seeks an issuer for the certificate currently at the top of the chain, drawing candidates from I's untrusted stack and from the trust store. By default the search is untrusted-first: the untrusted stack is examined before the trust store. Setting B on I's verification parameters reverses this. When an untrusted-first search fails to reach a trust anchor and B is not set, the search is retried with progressively shorter untrusted prefixes in an attempt to find an alternative trusted path. The chain length is bounded by the configured depth limit (see L); exceeding it yields B. If more than one chain is possible, only one is taken. Failure to build a chain to a trust anchor yields an error such as B, B, B, B, or B. =item 2. B per RFC 5280, including basic constraints, key usage and the verification purpose set via L. =item 3. B against the configured authentication level, covering issuer key sizes (B) and signature algorithm strength (B). The leaf key is checked separately before chain construction begins (B). =item 4. B against any hostnames, email addresses or IP addresses configured on the verification parameters (L and related). =item 5. B via CRLs and, when configured, OCSP. The set of checks performed is controlled by flags such as B and B. =item 6. B on every certificate in the chain, walking from the trust anchor down to the target. The signature on the chain's terminating certificate is not verified: trust is taken from its presence in the trust store rather than from its signature. This applies both to a conventional self-signed trust anchor and, when B is in effect, to a non-self-signed intermediate promoted to anchor status. B requests that the self-signature on a self-signed terminator be verified; it has no effect when the terminator is a non-self-signed certificate. Validity periods are checked on every certificate, including the terminator. =item 7. B per RFC 5280 section 4.2.1.10; see L for details of the matching primitive and the general-name types it covers. =item 8. B of AS-number and IP-address delegation extensions, performed by default unless OpenSSL was built with B. =item 9. B, performed only when B is set. =back Several B values modify the behaviour of these checks; representative ones are named at the relevant step above, but the list there is not exhaustive. The complete set of verification flags, the effect each one has, and the functions used to query and modify them are documented in L. Applications rarely call X509_verify_cert() directly. It is invoked internally by OpenSSL during S/MIME and CMS verification and during the TLS handshake. X509_STORE_CTX_verify() behaves identically to X509_verify_cert() except for the selection of the target certificate: if no target has been set on I (see L) and the untrusted stack is nonempty, the first certificate in the untrusted stack is adopted as the target before verification begins. If a target was set explicitly, X509_STORE_CTX_verify() uses it and does not consult the untrusted stack for this purpose. =head2 Raw public key targets When the verification target is a raw public key rather than a certificate (set via L), both functions validate the raw public key instead of a certificate chain. The set of possible checks is significantly reduced: there are no extensions, names, CRLs or signatures to verify. The raw public key can be authenticated only via DANE TLSA records, either locally synthesised or obtained by the application from DNS. Raw public key DANE TLSA records may be added via L or L. =head2 X509_build_chain X509_build_chain() builds a certificate chain starting from I, using the same chain-construction algorithm as X509_verify_cert() (see L above). It internally uses a B structure associated with the library context I and property query string I, both of which may be NULL. The role of I depends on I: =over 4 =item * If I is non-NULL, I is treated as an optional list of B intermediate certificates that may help complete the chain, and the chain must reach a trust anchor contained in I. If no chain to a trust anchor can be built, the function fails and returns NULL. =item * If I is NULL, I is installed as the B stack for the internal context (see L). In this mode the function builds the chain as far as it can but does not require it to reach an anchor: if chain construction fails partway, the partial chain built so far is still returned. =back Because the internal B is allocated and freed inside X509_build_chain(), search-policy flags such as B and B and the configured depth limit always take their default values, and the specific B code that caused chain construction to fail is not reported back: the function signals only success or failure through its return value (and, when I is NULL, may also return a partial chain). On success the returned stack starts with a newly up-referenced I followed by the issuer certificates that were found. A self-signed certificate at the top of the chain is included in the returned stack when either I is 1, or the chain consists solely of I (for example because I itself is self-signed or no further issuer could be found). When the chain has more than one element and I is 0, the self-signed top is omitted from the result. The caller is responsible for freeing the returned stack. =head1 THE VERIFICATION CALLBACK Each B carries a I with the signature int (*verify_cb)(int ok, X509_STORE_CTX *ctx); This callback is invoked by X509_verify_cert() and X509_STORE_CTX_verify() at multiple points during verification, both to B and to B. It is installed by L on the context, or it is inherited at L time from the B (see L). If neither has been set, a default callback is used which simply returns its I argument unchanged, causing every error to abort verification. =head2 When the callback is called There are two distinct invocation patterns: =over 4 =item B (I = 0) The callback is called with I set to 0 each time a check fails. Before the call, the verification machinery records the B code describing the failure on I, and for certificate-level errors also records the depth at which the error was detected and the certificate in question. The callback inspects these via L, L, and L. CRL- and OCSP-related errors update only the error code; the depth and current certificate retain their values from a preceding context. =item B (I = 1) During the signature-and-validity pass, after each certificate in the chain has been checked successfully, the callback is called with I set to 1. The current certificate, current issuer, and error depth (queryable respectively via L, L, and L) describe the certificate that has just been accepted. The callback may use this to log progress, but B return a nonzero value, otherwise verification is aborted. =back The callback's return value controls subsequent verification: =over 4 =item * A nonzero return value causes verification to B. For an error notification this constitutes B the error. =item * A zero return value causes verification to B immediately. The function returns 0 to its caller in this case, regardless of whether the callback was invoked with I = 0 or I = 1. =back =head2 Sticky errors When the callback waives an error by returning nonzero, the underlying check is treated as passed for control-flow purposes, but the error code recorded on I is B reset to B. A subsequent successful return from X509_verify_cert() therefore does B imply that L will return B: it may still hold the last error code that was waived. This is intentional. Only the callback itself is permitted to overwrite the error code, via L, and only at its own risk. =head2 Dangers A verification callback that returns nonzero on an error notification has, by definition, suppressed an authentication check that OpenSSL considered necessary. Callers should treat installing a callback that waives errors as a deliberate weakening of the security guarantees of X509_verify_cert(), to be done only for specific, well-understood error codes. The following pitfalls are common: =over 4 =item * B. A callback that returns 1 unconditionally turns X509_verify_cert() into "accept anything" and is almost always wrong outside of diagnostics. Inspect the error code via L and waive only the specific codes you intend to. =item * B. Because the callback is also called with I = 1, a callback that mistakenly returns 0 in that case causes verification to fail even though every check passed. The caller cannot distinguish this from a genuine failure based on the return value alone. =item * B. The sticky-error rule exists so that a waived error remains visible to the caller after verification returns. A callback that calls L with B hides this information and can also mask a later error if the callback is invoked again before verification completes. =item * B. The B is live during the callback: the verification routines are actively reading its chain, parameters, and other state. Calling context-mutating functions from within the callback -- for example, replacing the verified chain via L, swapping the trust store or untrusted stack, or changing verification flags, depth, purpose, or target -- can corrupt the in-progress verification, produce inconsistent behaviour between later steps of the pipeline, or, in the case of the verified chain, cause use-after-free. The only mutators reasonable from within a callback are the error-related setters (L, L, L), and even those should be used sparingly (see L). =item * B. The callback is on the hot path of every certificate check; expensive work performed there will slow every TLS handshake or S/MIME verification that uses the surrounding context. =item * B. The error depth, from L, records where an error was detected during chain processing, not the position of the certificate in the final chain. Always consult L in addition to the depth when deciding whether to waive. =item * B. The set of errors the callback observes, and the order in which it observes them, depends on the internal order in which verification checks are performed. When a certificate has more than one problem, only the first check to detect a problem causes the callback to be invoked for that certificate; later checks are not reached unless the callback waives the earlier error. This ordering is an implementation detail and is not part of the stable API: a refactor that reorders internal checks without altering the binary success/failure contract of X509_verify_cert() may still change which B code the callback sees, or whether a given code is reported at all. Callbacks that branch on a specific error code being reported, or that assume earlier checks have already filtered out certain conditions, can therefore change behaviour silently across OpenSSL releases. Write callbacks defensively: re-fetch the error code and the current certificate via L and L afresh on each invocation, and treat "this error code never appears" as an assumption that may be invalidated. More fundamentally, because the set and order of error notifications is not a stable contract, the callback cannot be relied upon to observe any particular condition or sequence of conditions; that makes it an unsound mechanism for enforcing or modifying security policy. Use of the verification callback to alter verification outcomes -- to waive errors, to inject conditional acceptance, or to gate behaviour on a specific B code being reported -- is therefore discouraged in production code. Reserve the callback for diagnostic and logging purposes, where future changes in which errors appear, or in what order, are not security-relevant. =back The default callback waives nothing and is the safe choice; it is the right behaviour for almost all production uses. =head1 RETURN VALUES X509_verify_cert() and X509_STORE_CTX_verify() return: =over 4 =item B<1> if a complete chain has been built and every check either succeeded or was waived by the verification callback. Note that the latter case does not guarantee that L returns B; see L. The return value is the authoritative success/failure signal: callers do not need to additionally check that L returns B to consider verification successful. They may consult it to learn whether, and which, errors were waived by the verification callback. =item B<0> if verification was rejected. This occurs when a check failed and the callback did not waive the error, when a trust decision actively rejected the chain, or when the verification callback returned 0 from a success notification (see L). When a certificate would have failed more than one check, the specific B code returned by L reflects whichever check fired first; this ordering is an implementation detail and is not stable across releases. Callers must therefore treat the return value as the authoritative success/failure signal, and treat the specific error code as diagnostic information that may shift over time. =item A B value on a hard error that prevented verification from running to completion. The documented cases are: I is NULL; I has no target certificate set; I has already been used for a previous verification; memory allocation failed; the trust store lookup function returned an error; or an internal invariant was violated. In these cases L returns an appropriate B value (B, B, B or B). =back In all failure modes, additional information can be obtained from L and the related accessors. Applications must treat any return value E= 0 as verification not having succeeded. X509_build_chain() returns NULL on error. Otherwise it returns a newly allocated stack of certificates that the caller must free; the stack may represent only a partial chain when I is NULL. =head1 BUGS Several aspects of chain construction depart from the recommendations of RFC 4158 (Certification Path Building) and from strict RFC 5280 path validation. Callers should be aware of the following: The chain search is not optimised in the manner described by RFC 4158 sections 3.1 to 3.5. Candidate issuers are not scored against the set of heuristics RFC 4158 recommends; at each step the first viable candidate is committed to, with the only preference being for a candidate whose validity period covers the current time. There is no tree-traversal backtracking: when an initial chain does not reach a trust anchor, the search is retried with progressively shorter untrusted prefixes (unless B is set), but different candidate issuers at intermediate positions of the same chain are not tried. In simple hierarchical PKIs this is rarely an issue. In cross-certified or bridged PKI environments X509_verify_cert() may fail to find a valid certification path even when one demonstrably exists in the available certificate set. Issuer key usage is not enforced during chain construction. RFC 5280 section 6.1.4(n) and RFC 4158 section 3.5.3 call for verifying that an issuer candidate's keyUsage extension permits certificate signing (B) before that candidate is selected. OpenSSL defers this check to the later extension-validation pass: if two candidate issuers exist for a certificate, and the one lacking B happens to be selected first, verification fails on the extension check rather than backing off and trying the other candidate. The misuse is ultimately caught, but a chain that would have validated through the alternative issuer is not built. B relaxes the trust-anchor requirement from the one defined by RFC 5280 section 6.1.1(d). With the flag set, any certificate in the trust store is acceptable as the terminator of the chain, even if it is not a self-signed root. This is an intentional and now-common deviation that supports modern practices such as pinning trust to a specific intermediate, or shortening chains by treating a sufficiently-trusted intermediate as the trust point and eliding the root above it. Callers should nevertheless be aware that the chain returned in this mode does not necessarily terminate at an RFC 5280-style trust anchor. L caps each per-pair check at 2**20 comparisons, but the chain orchestrator issues B(B-1)/2 such checks for an B-certificate chain. An adversary submitting a maximally constructed chain can therefore force up to approximately 6.3 million name-constraint comparisons in a four-certificate chain (one leaf and three name-constrained signers), or approximately 5.2 billion at the default chain-depth limit of 100. =head1 SEE ALSO L, L, L, L, L, L, L, L, L, L, L =head1 HISTORY X509_build_chain() and X509_STORE_CTX_verify() were added in OpenSSL 3.0. =head1 COPYRIGHT Copyright 2009-2026 The OpenSSL Project Authors. All Rights Reserved. Licensed under the Apache License 2.0 (the "License"). You may not use this file except in compliance with the License. You can obtain a copy in the file LICENSE in the source distribution or at L. =cut