📄 certschk.c
字号:
}
else
{
CRYPT_CERTIFICATE iCryptCert = certInfoPtr->objectHandle;
/* If it's a certificate it may be implicitly trusted */
if( certInfoPtr->type == CRYPT_CERTTYPE_CERTIFICATE || \
certInfoPtr->type == CRYPT_CERTTYPE_ATTRIBUTE_CERT )
{
if( cryptStatusOK( \
krnlSendMessage( certInfoPtr->ownerHandle,
IMESSAGE_USER_TRUSTMGMT, &iCryptCert,
MESSAGE_TRUSTMGMT_CHECK ) ) )
{
/* The certificate is implicitly trusted, we're done */
return( CRYPT_OK );
}
}
/* If it's not self-signed it has to be signed by a trusted
certificate try and get the trusted certificate */
status = krnlSendMessage( certInfoPtr->ownerHandle,
IMESSAGE_USER_TRUSTMGMT, &iCryptCert,
MESSAGE_TRUSTMGMT_GETISSUER );
if( cryptStatusError( status ) )
{
/* There's no trusted signer present indicate that we need
something to check the certificate with */
return( CRYPT_ARGERROR_VALUE );
}
status = krnlAcquireObject( iCryptCert, OBJECT_TYPE_CERTIFICATE,
( void ** ) &issuerCertInfoPtr,
CRYPT_ERROR_SIGNALLED );
if( cryptStatusError( status ) )
return( status );
iCryptContext = iCryptCert;
trustedCertAcquired = TRUE;
}
/* Check the certificate against the issuing certificate */
status = checkCertDetails( certInfoPtr, issuerCertInfoPtr,
iCryptContext, formatInfo, FALSE, FALSE,
&certInfoPtr->errorLocus,
&certInfoPtr->errorType );
if( trustedCertAcquired )
krnlReleaseObject( issuerCertInfoPtr->objectHandle );
return( cryptArgError( status ) ? CRYPT_ARGERROR_OBJECT : status );
}
/* Check the validity of a certificate object, either against an issuing
key/certificate or against a CRL */
CHECK_RETVAL STDC_NONNULL_ARG( ( 1 ) ) \
int checkCertValidity( INOUT CERT_INFO *certInfoPtr,
IN_HANDLE_OPT const CRYPT_HANDLE iSigCheckObject )
{
CRYPT_CONTEXT iCryptContext;
CRYPT_CERTTYPE_TYPE sigCheckKeyType = CRYPT_CERTTYPE_NONE;
CERT_INFO *issuerCertInfoPtr = NULL;
OBJECT_TYPE type;
X509SIG_FORMATINFO formatInfo, *formatInfoPtr = NULL;
BOOLEAN issuerCertAcquired = FALSE;
int status;
assert( isWritePtr( certInfoPtr, sizeof( CERT_INFO ) ) );
REQUIRES( certInfoPtr->certificate != NULL || \
certInfoPtr->type == CRYPT_CERTTYPE_RTCS_RESPONSE || \
certInfoPtr->type == CRYPT_CERTTYPE_OCSP_RESPONSE );
REQUIRES( iSigCheckObject == CRYPT_UNUSED || \
isHandleRangeValid( iSigCheckObject ) );
/* CRMF and OCSP use a b0rken signature format (the authors couldn't
quite manage a cut & paste of two lines of text) so if it's one of
these we have to use nonstandard formatting */
if( certInfoPtr->type == CRYPT_CERTTYPE_REQUEST_CERT )
{
/* [1] SEQUENCE */
setX509FormatInfo( &formatInfo, 1, FALSE );
formatInfoPtr = &formatInfo;
}
else
{
if( certInfoPtr->type == CRYPT_CERTTYPE_OCSP_REQUEST )
{
/* [0] EXPLICIT SEQUENCE */
setX509FormatInfo( &formatInfo, 0, TRUE );
formatInfoPtr = &formatInfo;
}
}
/* If there's no signature checking key supplied the certificate must
be self-signed, either an implicitly self-signed object like a
certificate chain or an explicitly self-signed object like a
certificate request or self-signed certificate */
if( iSigCheckObject == CRYPT_UNUSED )
{
/* If it's a certificate chain it's a (complex) self-signed object
containing more than one certificate so we need a special
function to check the entire chain */
if( certInfoPtr->type == CRYPT_CERTTYPE_CERTCHAIN )
return( checkCertChain( certInfoPtr ) );
/* It's an explicitly self-signed object */
return( checkSelfSignedCert( certInfoPtr, formatInfoPtr ) );
}
/* Find out what the signature check object is */
status = krnlSendMessage( iSigCheckObject, IMESSAGE_GETATTRIBUTE, &type,
CRYPT_IATTRIBUTE_TYPE );
if( cryptStatusOK( status ) && type == OBJECT_TYPE_CERTIFICATE )
{
status = krnlSendMessage( iSigCheckObject, IMESSAGE_GETATTRIBUTE,
&sigCheckKeyType,
CRYPT_CERTINFO_CERTTYPE );
}
if( cryptStatusError( status ) )
return( cryptArgError( status ) ? CRYPT_ARGERROR_VALUE : status );
/* Perform a general validity check on the object being checked and the
associated verification object. This is somewhat more strict than
the kernel checks since the kernel only knows about valid subtypes
but not that some subtypes are only valid in combination with some
types of object being checked */
switch( type )
{
case OBJECT_TYPE_CERTIFICATE:
case OBJECT_TYPE_CONTEXT:
break;
case OBJECT_TYPE_KEYSET:
/* A keyset can only be used as a source of revocation
information for checking a certificate or to populate the
status fields of an RTCS/OCSP response */
if( certInfoPtr->type != CRYPT_CERTTYPE_CERTIFICATE && \
certInfoPtr->type != CRYPT_CERTTYPE_ATTRIBUTE_CERT && \
certInfoPtr->type != CRYPT_CERTTYPE_CERTCHAIN && \
certInfoPtr->type != CRYPT_CERTTYPE_RTCS_RESPONSE && \
certInfoPtr->type != CRYPT_CERTTYPE_OCSP_RESPONSE )
return( CRYPT_ARGERROR_VALUE );
break;
case OBJECT_TYPE_SESSION:
/* An (RTCS or OCSP) session can only be used as a source of
validity/revocation information for checking a certificate */
if( certInfoPtr->type != CRYPT_CERTTYPE_CERTIFICATE && \
certInfoPtr->type != CRYPT_CERTTYPE_ATTRIBUTE_CERT && \
certInfoPtr->type != CRYPT_CERTTYPE_CERTCHAIN )
return( CRYPT_ARGERROR_VALUE );
break;
default:
return( CRYPT_ARGERROR_VALUE );
}
/* If the checking key is a CRL, a keyset that may contain a CRL, or an
RTCS or OCSP session then this is a validity/revocation check that
works rather differently from a straight signature check */
if( type == OBJECT_TYPE_CERTIFICATE && \
sigCheckKeyType == CRYPT_CERTTYPE_CRL )
return( checkCRL( certInfoPtr, iSigCheckObject ) );
if( type == OBJECT_TYPE_KEYSET )
{
BYTE issuerID[ CRYPT_MAX_HASHSIZE + 8 ];
/* If it's an RTCS or OCSP response use the certificate store to fill
in the status information fields */
if( certInfoPtr->type == CRYPT_CERTTYPE_RTCS_RESPONSE )
return( checkRTCSResponse( certInfoPtr, iSigCheckObject ) );
if( certInfoPtr->type == CRYPT_CERTTYPE_OCSP_RESPONSE )
return( checkOCSPResponse( certInfoPtr, iSigCheckObject ) );
ENSURES( certInfoPtr->type == CRYPT_CERTTYPE_CERTIFICATE || \
certInfoPtr->type == CRYPT_CERTTYPE_ATTRIBUTE_CERT || \
certInfoPtr->type == CRYPT_CERTTYPE_CERTCHAIN );
/* Generate the issuerID for this certificate and check whether it's
present in the CRL. Since all we're interested in is a yes/no
answer we tell the keyset to perform a check only */
status = generateCertID( certInfoPtr->issuerDNptr,
certInfoPtr->issuerDNsize,
certInfoPtr->cCertCert->serialNumber,
certInfoPtr->cCertCert->serialNumberLength,
issuerID, CRYPT_MAX_HASHSIZE );
if( cryptStatusOK( status ) )
{
MESSAGE_KEYMGMT_INFO getkeyInfo;
setMessageKeymgmtInfo( &getkeyInfo, CRYPT_IKEYID_ISSUERID,
issuerID, KEYID_SIZE, NULL, 0,
KEYMGMT_FLAG_CHECK_ONLY );
status = krnlSendMessage( iSigCheckObject, IMESSAGE_KEY_GETKEY,
&getkeyInfo,
KEYMGMT_ITEM_REVOCATIONINFO );
/* Reverse the results of the check: OK -> certificate revoked,
not found -> certificate not revoked */
if( cryptStatusOK( status ) )
status = CRYPT_ERROR_INVALID;
else
{
if( status == CRYPT_ERROR_NOTFOUND )
status = CRYPT_OK;
}
}
return( status );
}
if( type == OBJECT_TYPE_SESSION )
return( checkResponder( certInfoPtr, iSigCheckObject ) );
/* If we've been given a self-signed certificate make sure that the
signature check key is the same as the certificate. To test this we
have to compare both the signing key and if the signature check
object is a certificate, the certificate */
if( certInfoPtr->flags & CERT_FLAG_SELFSIGNED )
{
MESSAGE_DATA msgData;
BYTE keyID[ KEYID_SIZE + 8 ];
/* Check that the key in the certificate and the key in the
signature check object are identical */
setMessageData( &msgData, keyID, KEYID_SIZE );
status = krnlSendMessage( iSigCheckObject, IMESSAGE_GETATTRIBUTE_S,
&msgData, CRYPT_IATTRIBUTE_KEYID );
if( cryptStatusOK( status ) )
status = krnlSendMessage( certInfoPtr->objectHandle,
IMESSAGE_COMPARE, &msgData,
MESSAGE_COMPARE_KEYID );
if( cryptStatusError( status ) )
return( CRYPT_ARGERROR_VALUE );
/* If the signature check object is a certificate (even though
what's being checked is already a self-signed certificate) check
that it's identical to the certificate being checked (which it
must be if the certificate is self-signed). This may be somewhat
stricter than required but it'll weed out technically valid but
questionable combinations like a certificate request being used
to validate a certificate and misleading ones such as one
certificate chain being used to check a second chain */
if( type == OBJECT_TYPE_CERTIFICATE )
{
status = krnlSendMessage( certInfoPtr->objectHandle,
IMESSAGE_COMPARE,
( void * ) &iSigCheckObject,
MESSAGE_COMPARE_CERTOBJ );
if( cryptStatusError( status ) )
return( CRYPT_ARGERROR_VALUE );
}
/* If it's a certificate chain it's a (complex) self-signed object
containing more than one certificate so we need a special
function to check the entire chain */
if( certInfoPtr->type == CRYPT_CERTTYPE_CERTCHAIN )
return( checkCertChain( certInfoPtr ) );
return( checkSelfSignedCert( certInfoPtr, formatInfoPtr ) );
}
/* The signature check key may be a certificate or a context. If it's
a certificate we get the issuer certificate info and extract the
context from it before continuing */
if( type == OBJECT_TYPE_CERTIFICATE )
{
/* Get the context from the issuer certificate */
status = krnlSendMessage( iSigCheckObject, IMESSAGE_GETDEPENDENT,
&iCryptContext, OBJECT_TYPE_CONTEXT );
if( cryptStatusError( status ) )
return( cryptArgError( status ) ? CRYPT_ARGERROR_VALUE : status );
/* Get the issuer certificate info */
status = krnlAcquireObject( iSigCheckObject, OBJECT_TYPE_CERTIFICATE,
( void ** ) &issuerCertInfoPtr,
CRYPT_ARGERROR_VALUE );
if( cryptStatusError( status ) )
return( status );
issuerCertAcquired = TRUE;
}
else
{
CRYPT_CERTIFICATE localCert;
iCryptContext = iSigCheckObject;
/* It's a context, we may have a certificate present in it so we try
to extract that and use it as the issuer certificate if possible.
If the issuer certificate isn't present this isn't an error since
it could be just a raw context */
status = krnlSendMessage( iSigCheckObject, IMESSAGE_GETDEPENDENT,
&localCert, OBJECT_TYPE_CERTIFICATE );
if( cryptStatusOK( status ) )
status = krnlAcquireObject( localCert, OBJECT_TYPE_CERTIFICATE,
( void ** ) &issuerCertInfoPtr,
CRYPT_ARGERROR_VALUE );
if( cryptStatusOK( status ) )
issuerCertAcquired = TRUE;
}
/* Check the certificate against the issuing certificate */
status = checkCertDetails( certInfoPtr, issuerCertAcquired ? \
issuerCertInfoPtr : NULL,
iCryptContext, formatInfoPtr, FALSE, FALSE,
&certInfoPtr->errorLocus,
&certInfoPtr->errorType );
if( issuerCertAcquired )
krnlReleaseObject( issuerCertInfoPtr->objectHandle );
return( cryptArgError( status ) ? CRYPT_ARGERROR_VALUE : status );
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -