Jean-François Hren 15612b3a42 Add support for IKEv2 OCSP extensions (RFC 4806)
Closes strongswan/strongswan#2016

Co-authored-by: Tobias Brunner <tobias@strongswan.org>
2024-03-13 15:10:50 +01:00

106 lines
3.7 KiB
C

/*
* Copyright (C) 2022 Tobias Brunner
* Copyright (C) 2010 Martin Willi
*
* Copyright (C) secunet Security Networks AG
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by the
* Free Software Foundation; either version 2 of the License, or (at your
* option) any later version. See <http://www.fsf.org/copyleft/gpl.txt>.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* for more details.
*/
/**
* @defgroup cert_validator cert_validator
* @{ @ingroup credentials
*/
#ifndef CERT_VALIDATOR_H_
#define CERT_VALIDATOR_H_
typedef struct cert_validator_t cert_validator_t;
#include <library.h>
/**
* Certificate validator interface.
*
* A certificate validator checks constraints or revocation in a certificate
* or its issuing CA certificate. The interface allows plugins to do
* revocation checking or similar tasks.
*/
struct cert_validator_t {
/**
* Check the lifetime of a certificate.
*
* If this function returns SUCCESS or FAILED, the certificate lifetime is
* considered definitely (in-)valid, without asking other validators.
* If all registered validators return NEED_MORE, the default
* lifetime check is performed.
*
* @param cert certificate to check lifetime
* @param pathlen the current length of the path bottom-up
* @param anchor is certificate trusted root anchor?
* @param auth container for resulting authentication info
* @return SUCCESS, FAILED or NEED_MORE to ask next validator
*/
status_t (*check_lifetime)(cert_validator_t *this, certificate_t *cert,
int pathlen, bool anchor, auth_cfg_t *auth);
/**
* Validate a subject certificate in relation to its issuer.
*
* If FALSE is returned, the validator should call_hook() on the
* credential manager with an appropriate type and the certificate.
*
* @param subject subject certificate to check
* @param issuer issuer of subject
* @param pathlen the current length of the path bottom-up
* @param anchor is issuer trusted root anchor
* @param auth container for resulting authentication info
* @return TRUE if subject certificate valid
*/
bool (*validate)(cert_validator_t *this, certificate_t *subject,
certificate_t *issuer, u_int pathlen, bool anchor,
auth_cfg_t *auth);
/**
* Do extended online revocation checking for the given subject certificate
* in relation to its issuer.
*
* If FALSE is returned, the validator should call_hook() on the
* credential manager with an appropriate type and the certificate.
*
* @note This is called after successful basic validation of the complete
* trust chain including validation via validate().
*
* @param subject subject certificate to check
* @param issuer issuer of subject
* @param pathlen the current length of the path bottom-up
* @param anchor is issuer trusted root anchor
* @param auth container for resulting authentication info
* @return TRUE if subject certificate valid
*/
bool (*validate_online)(cert_validator_t *this, certificate_t *subject,
certificate_t *issuer, u_int pathlen, bool anchor,
auth_cfg_t *auth);
/**
* Do OCSP checking for the given certificate.
*
* @param subject subject certificate to check
* @param issuer issuer of subject
* @return a valid OCSP response, NULL otherwise
*/
certificate_t* (*ocsp)(cert_validator_t *this, certificate_t *subject,
certificate_t *issuer);
};
#endif /** CERT_VALIDATOR_H_ @}*/