crypt32: Let caller set error codes when name constraints aren't met.
[wine/hramrach.git] / dlls / crypt32 / chain.c
blobf92b9068f1f44659a78253afee2d277076fbb9ab
1 /*
2 * Copyright 2006 Juan Lang
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2.1 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
19 #include <stdarg.h>
20 #define NONAMELESSUNION
21 #include "windef.h"
22 #include "winbase.h"
23 #define CERT_CHAIN_PARA_HAS_EXTRA_FIELDS
24 #define CERT_REVOCATION_PARA_HAS_EXTRA_FIELDS
25 #include "wincrypt.h"
26 #include "wine/debug.h"
27 #include "wine/unicode.h"
28 #include "crypt32_private.h"
30 WINE_DEFAULT_DEBUG_CHANNEL(crypt);
31 WINE_DECLARE_DEBUG_CHANNEL(chain);
33 #define DEFAULT_CYCLE_MODULUS 7
35 static HCERTCHAINENGINE CRYPT_defaultChainEngine;
37 /* This represents a subset of a certificate chain engine: it doesn't include
38 * the "hOther" store described by MSDN, because I'm not sure how that's used.
39 * It also doesn't include the "hTrust" store, because I don't yet implement
40 * CTLs or complex certificate chains.
42 typedef struct _CertificateChainEngine
44 LONG ref;
45 HCERTSTORE hRoot;
46 HCERTSTORE hWorld;
47 DWORD dwFlags;
48 DWORD dwUrlRetrievalTimeout;
49 DWORD MaximumCachedCertificates;
50 DWORD CycleDetectionModulus;
51 } CertificateChainEngine, *PCertificateChainEngine;
53 static inline void CRYPT_AddStoresToCollection(HCERTSTORE collection,
54 DWORD cStores, HCERTSTORE *stores)
56 DWORD i;
58 for (i = 0; i < cStores; i++)
59 CertAddStoreToCollection(collection, stores[i], 0, 0);
62 static inline void CRYPT_CloseStores(DWORD cStores, HCERTSTORE *stores)
64 DWORD i;
66 for (i = 0; i < cStores; i++)
67 CertCloseStore(stores[i], 0);
70 static const WCHAR rootW[] = { 'R','o','o','t',0 };
72 /* Finds cert in store by comparing the cert's hashes. */
73 static PCCERT_CONTEXT CRYPT_FindCertInStore(HCERTSTORE store,
74 PCCERT_CONTEXT cert)
76 PCCERT_CONTEXT matching = NULL;
77 BYTE hash[20];
78 DWORD size = sizeof(hash);
80 if (CertGetCertificateContextProperty(cert, CERT_HASH_PROP_ID, hash, &size))
82 CRYPT_HASH_BLOB blob = { sizeof(hash), hash };
84 matching = CertFindCertificateInStore(store, cert->dwCertEncodingType,
85 0, CERT_FIND_SHA1_HASH, &blob, NULL);
87 return matching;
90 static BOOL CRYPT_CheckRestrictedRoot(HCERTSTORE store)
92 BOOL ret = TRUE;
94 if (store)
96 HCERTSTORE rootStore = CertOpenSystemStoreW(0, rootW);
97 PCCERT_CONTEXT cert = NULL, check;
99 do {
100 cert = CertEnumCertificatesInStore(store, cert);
101 if (cert)
103 if (!(check = CRYPT_FindCertInStore(rootStore, cert)))
104 ret = FALSE;
105 else
106 CertFreeCertificateContext(check);
108 } while (ret && cert);
109 if (cert)
110 CertFreeCertificateContext(cert);
111 CertCloseStore(rootStore, 0);
113 return ret;
116 HCERTCHAINENGINE CRYPT_CreateChainEngine(HCERTSTORE root,
117 PCERT_CHAIN_ENGINE_CONFIG pConfig)
119 static const WCHAR caW[] = { 'C','A',0 };
120 static const WCHAR myW[] = { 'M','y',0 };
121 static const WCHAR trustW[] = { 'T','r','u','s','t',0 };
122 PCertificateChainEngine engine =
123 CryptMemAlloc(sizeof(CertificateChainEngine));
125 if (engine)
127 HCERTSTORE worldStores[4];
129 engine->ref = 1;
130 engine->hRoot = root;
131 engine->hWorld = CertOpenStore(CERT_STORE_PROV_COLLECTION, 0, 0,
132 CERT_STORE_CREATE_NEW_FLAG, NULL);
133 worldStores[0] = CertDuplicateStore(engine->hRoot);
134 worldStores[1] = CertOpenSystemStoreW(0, caW);
135 worldStores[2] = CertOpenSystemStoreW(0, myW);
136 worldStores[3] = CertOpenSystemStoreW(0, trustW);
137 CRYPT_AddStoresToCollection(engine->hWorld,
138 sizeof(worldStores) / sizeof(worldStores[0]), worldStores);
139 CRYPT_AddStoresToCollection(engine->hWorld,
140 pConfig->cAdditionalStore, pConfig->rghAdditionalStore);
141 CRYPT_CloseStores(sizeof(worldStores) / sizeof(worldStores[0]),
142 worldStores);
143 engine->dwFlags = pConfig->dwFlags;
144 engine->dwUrlRetrievalTimeout = pConfig->dwUrlRetrievalTimeout;
145 engine->MaximumCachedCertificates =
146 pConfig->MaximumCachedCertificates;
147 if (pConfig->CycleDetectionModulus)
148 engine->CycleDetectionModulus = pConfig->CycleDetectionModulus;
149 else
150 engine->CycleDetectionModulus = DEFAULT_CYCLE_MODULUS;
152 return engine;
155 BOOL WINAPI CertCreateCertificateChainEngine(PCERT_CHAIN_ENGINE_CONFIG pConfig,
156 HCERTCHAINENGINE *phChainEngine)
158 BOOL ret;
160 TRACE("(%p, %p)\n", pConfig, phChainEngine);
162 if (pConfig->cbSize != sizeof(*pConfig))
164 SetLastError(E_INVALIDARG);
165 return FALSE;
167 *phChainEngine = NULL;
168 ret = CRYPT_CheckRestrictedRoot(pConfig->hRestrictedRoot);
169 if (ret)
171 HCERTSTORE root;
172 HCERTCHAINENGINE engine;
174 if (pConfig->hRestrictedRoot)
175 root = CertDuplicateStore(pConfig->hRestrictedRoot);
176 else
177 root = CertOpenSystemStoreW(0, rootW);
178 engine = CRYPT_CreateChainEngine(root, pConfig);
179 if (engine)
181 *phChainEngine = engine;
182 ret = TRUE;
184 else
185 ret = FALSE;
187 return ret;
190 VOID WINAPI CertFreeCertificateChainEngine(HCERTCHAINENGINE hChainEngine)
192 PCertificateChainEngine engine = (PCertificateChainEngine)hChainEngine;
194 TRACE("(%p)\n", hChainEngine);
196 if (engine && InterlockedDecrement(&engine->ref) == 0)
198 CertCloseStore(engine->hWorld, 0);
199 CertCloseStore(engine->hRoot, 0);
200 CryptMemFree(engine);
204 static HCERTCHAINENGINE CRYPT_GetDefaultChainEngine(void)
206 if (!CRYPT_defaultChainEngine)
208 CERT_CHAIN_ENGINE_CONFIG config = { 0 };
209 HCERTCHAINENGINE engine;
211 config.cbSize = sizeof(config);
212 CertCreateCertificateChainEngine(&config, &engine);
213 InterlockedCompareExchangePointer(&CRYPT_defaultChainEngine, engine,
214 NULL);
215 if (CRYPT_defaultChainEngine != engine)
216 CertFreeCertificateChainEngine(engine);
218 return CRYPT_defaultChainEngine;
221 void default_chain_engine_free(void)
223 CertFreeCertificateChainEngine(CRYPT_defaultChainEngine);
226 typedef struct _CertificateChain
228 CERT_CHAIN_CONTEXT context;
229 HCERTSTORE world;
230 LONG ref;
231 } CertificateChain, *PCertificateChain;
233 static inline BOOL CRYPT_IsCertificateSelfSigned(PCCERT_CONTEXT cert)
235 return CertCompareCertificateName(cert->dwCertEncodingType,
236 &cert->pCertInfo->Subject, &cert->pCertInfo->Issuer);
239 static void CRYPT_FreeChainElement(PCERT_CHAIN_ELEMENT element)
241 CertFreeCertificateContext(element->pCertContext);
242 CryptMemFree(element);
245 static void CRYPT_CheckSimpleChainForCycles(PCERT_SIMPLE_CHAIN chain)
247 DWORD i, j, cyclicCertIndex = 0;
249 /* O(n^2) - I don't think there's a faster way */
250 for (i = 0; !cyclicCertIndex && i < chain->cElement; i++)
251 for (j = i + 1; !cyclicCertIndex && j < chain->cElement; j++)
252 if (CertCompareCertificate(X509_ASN_ENCODING,
253 chain->rgpElement[i]->pCertContext->pCertInfo,
254 chain->rgpElement[j]->pCertContext->pCertInfo))
255 cyclicCertIndex = j;
256 if (cyclicCertIndex)
258 chain->rgpElement[cyclicCertIndex]->TrustStatus.dwErrorStatus
259 |= CERT_TRUST_IS_CYCLIC | CERT_TRUST_INVALID_BASIC_CONSTRAINTS;
260 /* Release remaining certs */
261 for (i = cyclicCertIndex + 1; i < chain->cElement; i++)
262 CRYPT_FreeChainElement(chain->rgpElement[i]);
263 /* Truncate chain */
264 chain->cElement = cyclicCertIndex + 1;
268 /* Checks whether the chain is cyclic by examining the last element's status */
269 static inline BOOL CRYPT_IsSimpleChainCyclic(const CERT_SIMPLE_CHAIN *chain)
271 if (chain->cElement)
272 return chain->rgpElement[chain->cElement - 1]->TrustStatus.dwErrorStatus
273 & CERT_TRUST_IS_CYCLIC;
274 else
275 return FALSE;
278 static inline void CRYPT_CombineTrustStatus(CERT_TRUST_STATUS *chainStatus,
279 const CERT_TRUST_STATUS *elementStatus)
281 /* Any error that applies to an element also applies to a chain.. */
282 chainStatus->dwErrorStatus |= elementStatus->dwErrorStatus;
283 /* but the bottom nibble of an element's info status doesn't apply to the
284 * chain.
286 chainStatus->dwInfoStatus |= (elementStatus->dwInfoStatus & 0xfffffff0);
289 static BOOL CRYPT_AddCertToSimpleChain(const CertificateChainEngine *engine,
290 PCERT_SIMPLE_CHAIN chain, PCCERT_CONTEXT cert, DWORD subjectInfoStatus)
292 BOOL ret = FALSE;
293 PCERT_CHAIN_ELEMENT element = CryptMemAlloc(sizeof(CERT_CHAIN_ELEMENT));
295 if (element)
297 if (!chain->cElement)
298 chain->rgpElement = CryptMemAlloc(sizeof(PCERT_CHAIN_ELEMENT));
299 else
300 chain->rgpElement = CryptMemRealloc(chain->rgpElement,
301 (chain->cElement + 1) * sizeof(PCERT_CHAIN_ELEMENT));
302 if (chain->rgpElement)
304 chain->rgpElement[chain->cElement++] = element;
305 memset(element, 0, sizeof(CERT_CHAIN_ELEMENT));
306 element->cbSize = sizeof(CERT_CHAIN_ELEMENT);
307 element->pCertContext = CertDuplicateCertificateContext(cert);
308 if (chain->cElement > 1)
309 chain->rgpElement[chain->cElement - 2]->TrustStatus.dwInfoStatus
310 = subjectInfoStatus;
311 /* FIXME: initialize the rest of element */
312 if (!(chain->cElement % engine->CycleDetectionModulus))
314 CRYPT_CheckSimpleChainForCycles(chain);
315 /* Reinitialize the element pointer in case the chain is
316 * cyclic, in which case the chain is truncated.
318 element = chain->rgpElement[chain->cElement - 1];
320 CRYPT_CombineTrustStatus(&chain->TrustStatus,
321 &element->TrustStatus);
322 ret = TRUE;
324 else
325 CryptMemFree(element);
327 return ret;
330 static void CRYPT_FreeSimpleChain(PCERT_SIMPLE_CHAIN chain)
332 DWORD i;
334 for (i = 0; i < chain->cElement; i++)
335 CRYPT_FreeChainElement(chain->rgpElement[i]);
336 CryptMemFree(chain->rgpElement);
337 CryptMemFree(chain);
340 static void CRYPT_CheckTrustedStatus(HCERTSTORE hRoot,
341 PCERT_CHAIN_ELEMENT rootElement)
343 PCCERT_CONTEXT trustedRoot = CRYPT_FindCertInStore(hRoot,
344 rootElement->pCertContext);
346 if (!trustedRoot)
347 rootElement->TrustStatus.dwErrorStatus |=
348 CERT_TRUST_IS_UNTRUSTED_ROOT;
349 else
350 CertFreeCertificateContext(trustedRoot);
353 static void CRYPT_CheckRootCert(HCERTCHAINENGINE hRoot,
354 PCERT_CHAIN_ELEMENT rootElement)
356 PCCERT_CONTEXT root = rootElement->pCertContext;
358 if (!CryptVerifyCertificateSignatureEx(0, root->dwCertEncodingType,
359 CRYPT_VERIFY_CERT_SIGN_SUBJECT_CERT, (void *)root,
360 CRYPT_VERIFY_CERT_SIGN_ISSUER_CERT, (void *)root, 0, NULL))
362 TRACE_(chain)("Last certificate's signature is invalid\n");
363 rootElement->TrustStatus.dwErrorStatus |=
364 CERT_TRUST_IS_NOT_SIGNATURE_VALID;
366 CRYPT_CheckTrustedStatus(hRoot, rootElement);
369 /* Decodes a cert's basic constraints extension (either szOID_BASIC_CONSTRAINTS
370 * or szOID_BASIC_CONSTRAINTS2, whichever is present) into a
371 * CERT_BASIC_CONSTRAINTS2_INFO. If it neither extension is present, sets
372 * constraints->fCA to defaultIfNotSpecified.
373 * Returns FALSE if the extension is present but couldn't be decoded.
375 static BOOL CRYPT_DecodeBasicConstraints(PCCERT_CONTEXT cert,
376 CERT_BASIC_CONSTRAINTS2_INFO *constraints, BOOL defaultIfNotSpecified)
378 BOOL ret = TRUE;
379 PCERT_EXTENSION ext = CertFindExtension(szOID_BASIC_CONSTRAINTS,
380 cert->pCertInfo->cExtension, cert->pCertInfo->rgExtension);
382 constraints->fPathLenConstraint = FALSE;
383 if (ext)
385 CERT_BASIC_CONSTRAINTS_INFO *info;
386 DWORD size = 0;
388 ret = CryptDecodeObjectEx(X509_ASN_ENCODING, szOID_BASIC_CONSTRAINTS,
389 ext->Value.pbData, ext->Value.cbData, CRYPT_DECODE_ALLOC_FLAG,
390 NULL, &info, &size);
391 if (ret)
393 if (info->SubjectType.cbData == 1)
394 constraints->fCA =
395 info->SubjectType.pbData[0] & CERT_CA_SUBJECT_FLAG;
396 LocalFree(info);
399 else
401 ext = CertFindExtension(szOID_BASIC_CONSTRAINTS2,
402 cert->pCertInfo->cExtension, cert->pCertInfo->rgExtension);
403 if (ext)
405 DWORD size = sizeof(CERT_BASIC_CONSTRAINTS2_INFO);
407 ret = CryptDecodeObjectEx(X509_ASN_ENCODING,
408 szOID_BASIC_CONSTRAINTS2, ext->Value.pbData, ext->Value.cbData,
409 0, NULL, constraints, &size);
411 else
412 constraints->fCA = defaultIfNotSpecified;
414 return ret;
417 /* Checks element's basic constraints to see if it can act as a CA, with
418 * remainingCAs CAs left in this chain. In general, a cert must include the
419 * basic constraints extension, with the CA flag asserted, in order to be
420 * allowed to be a CA. A V1 or V2 cert, which has no extensions, is also
421 * allowed to be a CA if it's installed locally (in the engine's world store.)
422 * This matches the expected usage in RFC 5280, section 4.2.1.9: a conforming
423 * CA MUST include the basic constraints extension in all certificates that are
424 * used to validate digital signatures on certificates. It also matches
425 * section 6.1.4(k): "If a certificate is a v1 or v2 certificate, then the
426 * application MUST either verify that the certificate is a CA certificate
427 * through out-of-band means or reject the certificate." Rejecting the
428 * certificate prohibits a large number of commonly used certificates, so
429 * accepting locally installed ones is a compromise.
430 * Root certificates are also allowed to be CAs even without a basic
431 * constraints extension. This is implied by RFC 5280, section 6.1: the
432 * root of a certificate chain's only requirement is that it was used to issue
433 * the next certificate in the chain.
434 * Updates chainConstraints with the element's constraints, if:
435 * 1. chainConstraints doesn't have a path length constraint, or
436 * 2. element's path length constraint is smaller than chainConstraints's
437 * Sets *pathLengthConstraintViolated to TRUE if a path length violation
438 * occurs.
439 * Returns TRUE if the element can be a CA, and the length of the remaining
440 * chain is valid.
442 static BOOL CRYPT_CheckBasicConstraintsForCA(PCertificateChainEngine engine,
443 PCCERT_CONTEXT cert, CERT_BASIC_CONSTRAINTS2_INFO *chainConstraints,
444 DWORD remainingCAs, BOOL isRoot, BOOL *pathLengthConstraintViolated)
446 BOOL validBasicConstraints, implicitCA = FALSE;
447 CERT_BASIC_CONSTRAINTS2_INFO constraints;
449 if (isRoot)
450 implicitCA = TRUE;
451 else if (cert->pCertInfo->dwVersion == CERT_V1 ||
452 cert->pCertInfo->dwVersion == CERT_V2)
454 BYTE hash[20];
455 DWORD size = sizeof(hash);
457 if (CertGetCertificateContextProperty(cert, CERT_HASH_PROP_ID,
458 hash, &size))
460 CRYPT_HASH_BLOB blob = { sizeof(hash), hash };
461 PCCERT_CONTEXT localCert = CertFindCertificateInStore(
462 engine->hWorld, cert->dwCertEncodingType, 0, CERT_FIND_SHA1_HASH,
463 &blob, NULL);
465 if (localCert)
467 CertFreeCertificateContext(localCert);
468 implicitCA = TRUE;
472 if ((validBasicConstraints = CRYPT_DecodeBasicConstraints(cert,
473 &constraints, implicitCA)))
475 chainConstraints->fCA = constraints.fCA;
476 if (!constraints.fCA)
478 TRACE_(chain)("chain element %d can't be a CA\n", remainingCAs + 1);
479 validBasicConstraints = FALSE;
481 else if (constraints.fPathLenConstraint)
483 /* If the element has path length constraints, they apply to the
484 * entire remaining chain.
486 if (!chainConstraints->fPathLenConstraint ||
487 constraints.dwPathLenConstraint <
488 chainConstraints->dwPathLenConstraint)
490 TRACE_(chain)("setting path length constraint to %d\n",
491 chainConstraints->dwPathLenConstraint);
492 chainConstraints->fPathLenConstraint = TRUE;
493 chainConstraints->dwPathLenConstraint =
494 constraints.dwPathLenConstraint;
498 if (chainConstraints->fPathLenConstraint &&
499 remainingCAs > chainConstraints->dwPathLenConstraint)
501 TRACE_(chain)("remaining CAs %d exceed max path length %d\n",
502 remainingCAs, chainConstraints->dwPathLenConstraint);
503 validBasicConstraints = FALSE;
504 *pathLengthConstraintViolated = TRUE;
506 return validBasicConstraints;
509 static BOOL domain_name_matches(LPCWSTR constraint, LPCWSTR name)
511 BOOL match;
513 /* RFC 5280, section 4.2.1.10:
514 * "For URIs, the constraint applies to the host part of the name...
515 * When the constraint begins with a period, it MAY be expanded with one
516 * or more labels. That is, the constraint ".example.com" is satisfied by
517 * both host.example.com and my.host.example.com. However, the constraint
518 * ".example.com" is not satisfied by "example.com". When the constraint
519 * does not begin with a period, it specifies a host."
520 * and for email addresses,
521 * "To indicate all Internet mail addresses on a particular host, the
522 * constraint is specified as the host name. For example, the constraint
523 * "example.com" is satisfied by any mail address at the host
524 * "example.com". To specify any address within a domain, the constraint
525 * is specified with a leading period (as with URIs)."
527 if (constraint[0] == '.')
529 /* Must be strictly greater than, a name can't begin with '.' */
530 if (lstrlenW(name) > lstrlenW(constraint))
531 match = !lstrcmpiW(name + lstrlenW(name) - lstrlenW(constraint),
532 constraint);
533 else
535 /* name is too short, no match */
536 match = FALSE;
539 else
540 match = !lstrcmpiW(name, constraint);
541 return match;
544 static BOOL url_matches(LPCWSTR constraint, LPCWSTR name,
545 DWORD *trustErrorStatus)
547 BOOL match = FALSE;
549 TRACE("%s, %s\n", debugstr_w(constraint), debugstr_w(name));
551 if (!constraint)
552 *trustErrorStatus |= CERT_TRUST_INVALID_NAME_CONSTRAINTS;
553 else if (!name)
554 ; /* no match */
555 else
557 LPCWSTR colon, authority_end, at, hostname = NULL;
558 /* The maximum length for a hostname is 254 in the DNS, see RFC 1034 */
559 WCHAR hostname_buf[255];
561 /* RFC 5280: only the hostname portion of the URL is compared. From
562 * section 4.2.1.10:
563 * "For URIs, the constraint applies to the host part of the name.
564 * The constraint MUST be specified as a fully qualified domain name
565 * and MAY specify a host or a domain."
566 * The format for URIs is in RFC 2396.
568 * First, remove any scheme that's present. */
569 colon = strchrW(name, ':');
570 if (colon && *(colon + 1) == '/' && *(colon + 2) == '/')
571 name = colon + 3;
572 /* Next, find the end of the authority component. (The authority is
573 * generally just the hostname, but it may contain a username or a port.
574 * Those are removed next.)
576 authority_end = strchrW(name, '/');
577 if (!authority_end)
578 authority_end = strchrW(name, '?');
579 if (!authority_end)
580 authority_end = name + strlenW(name);
581 /* Remove any port number from the authority */
582 for (colon = authority_end; colon >= name && *colon != ':'; colon--)
584 if (*colon == ':')
585 authority_end = colon;
586 /* Remove any username from the authority */
587 if ((at = strchrW(name, '@')))
588 name = at;
589 /* Ignore any path or query portion of the URL. */
590 if (*authority_end)
592 if (authority_end - name < sizeof(hostname_buf) /
593 sizeof(hostname_buf[0]))
595 memcpy(hostname_buf, name,
596 (authority_end - name) * sizeof(WCHAR));
597 hostname_buf[authority_end - name] = 0;
598 hostname = hostname_buf;
600 /* else: Hostname is too long, not a match */
602 else
603 hostname = name;
604 if (hostname)
605 match = domain_name_matches(constraint, hostname);
607 return match;
610 static BOOL rfc822_name_matches(LPCWSTR constraint, LPCWSTR name,
611 DWORD *trustErrorStatus)
613 BOOL match = FALSE;
614 LPCWSTR at;
616 TRACE("%s, %s\n", debugstr_w(constraint), debugstr_w(name));
618 if (!constraint)
619 *trustErrorStatus |= CERT_TRUST_INVALID_NAME_CONSTRAINTS;
620 else if (!name)
621 ; /* no match */
622 else if ((at = strchrW(constraint, '@')))
623 match = !lstrcmpiW(constraint, name);
624 else
626 if ((at = strchrW(name, '@')))
627 match = domain_name_matches(constraint, at + 1);
628 else
629 match = !lstrcmpiW(constraint, name);
631 return match;
634 static BOOL dns_name_matches(LPCWSTR constraint, LPCWSTR name,
635 DWORD *trustErrorStatus)
637 BOOL match = FALSE;
639 TRACE("%s, %s\n", debugstr_w(constraint), debugstr_w(name));
641 if (!constraint)
642 *trustErrorStatus |= CERT_TRUST_INVALID_NAME_CONSTRAINTS;
643 else if (!name)
644 ; /* no match */
645 /* RFC 5280, section 4.2.1.10:
646 * "DNS name restrictions are expressed as host.example.com. Any DNS name
647 * that can be constructed by simply adding zero or more labels to the
648 * left-hand side of the name satisfies the name constraint. For example,
649 * www.host.example.com would satisfy the constraint but host1.example.com
650 * would not."
652 else if (lstrlenW(name) == lstrlenW(constraint))
653 match = !lstrcmpiW(name, constraint);
654 else if (lstrlenW(name) > lstrlenW(constraint))
656 match = !lstrcmpiW(name + lstrlenW(name) - lstrlenW(constraint),
657 constraint);
658 if (match)
660 BOOL dot = FALSE;
661 LPCWSTR ptr;
663 /* This only matches if name is a subdomain of constraint, i.e.
664 * there's a '.' between the beginning of the name and the
665 * matching portion of the name.
667 for (ptr = name + lstrlenW(name) - lstrlenW(constraint);
668 !dot && ptr >= name; ptr--)
669 if (*ptr == '.')
670 dot = TRUE;
671 match = dot;
674 /* else: name is too short, no match */
676 return match;
679 static BOOL ip_address_matches(const CRYPT_DATA_BLOB *constraint,
680 const CRYPT_DATA_BLOB *name, DWORD *trustErrorStatus)
682 BOOL match = FALSE;
684 TRACE("(%d, %p), (%d, %p)\n", constraint->cbData, constraint->pbData,
685 name->cbData, name->pbData);
687 /* RFC5280, section 4.2.1.10, iPAddress syntax: either 8 or 32 bytes, for
688 * IPv4 or IPv6 addresses, respectively.
690 if (constraint->cbData != sizeof(DWORD) * 2 && constraint->cbData != 32)
691 *trustErrorStatus |= CERT_TRUST_INVALID_NAME_CONSTRAINTS;
692 else if (name->cbData == sizeof(DWORD) &&
693 constraint->cbData == sizeof(DWORD) * 2)
695 DWORD subnet, mask, addr;
697 memcpy(&subnet, constraint->pbData, sizeof(subnet));
698 memcpy(&mask, constraint->pbData + sizeof(subnet), sizeof(mask));
699 memcpy(&addr, name->pbData, sizeof(addr));
700 /* These are really in big-endian order, but for equality matching we
701 * don't need to swap to host order
703 match = (subnet & mask) == (addr & mask);
705 else if (name->cbData == 16 && constraint->cbData == 32)
707 const BYTE *subnet, *mask, *addr;
708 DWORD i;
710 subnet = constraint->pbData;
711 mask = constraint->pbData + 16;
712 addr = name->pbData;
713 match = TRUE;
714 for (i = 0; match && i < 16; i++)
715 if ((subnet[i] & mask[i]) != (addr[i] & mask[i]))
716 match = FALSE;
718 /* else: name is wrong size, no match */
720 return match;
723 static BOOL CRYPT_FindMatchingNameEntry(const CERT_ALT_NAME_ENTRY *constraint,
724 const CERT_ALT_NAME_INFO *subjectName, DWORD *trustErrorStatus)
726 DWORD i;
727 BOOL match = FALSE;
729 for (i = 0; i < subjectName->cAltEntry; i++)
731 if (subjectName->rgAltEntry[i].dwAltNameChoice ==
732 constraint->dwAltNameChoice)
734 switch (constraint->dwAltNameChoice)
736 case CERT_ALT_NAME_RFC822_NAME:
737 match = rfc822_name_matches(constraint->u.pwszURL,
738 subjectName->rgAltEntry[i].u.pwszURL, trustErrorStatus);
739 break;
740 case CERT_ALT_NAME_DNS_NAME:
741 match = dns_name_matches(constraint->u.pwszURL,
742 subjectName->rgAltEntry[i].u.pwszURL, trustErrorStatus);
743 break;
744 case CERT_ALT_NAME_URL:
745 match = url_matches(constraint->u.pwszURL,
746 subjectName->rgAltEntry[i].u.pwszURL, trustErrorStatus);
747 break;
748 case CERT_ALT_NAME_IP_ADDRESS:
749 match = ip_address_matches(&constraint->u.IPAddress,
750 &subjectName->rgAltEntry[i].u.IPAddress, trustErrorStatus);
751 break;
752 case CERT_ALT_NAME_DIRECTORY_NAME:
753 default:
754 ERR("name choice %d unsupported in this context\n",
755 constraint->dwAltNameChoice);
756 *trustErrorStatus |=
757 CERT_TRUST_HAS_NOT_SUPPORTED_NAME_CONSTRAINT;
761 return match;
764 static inline PCERT_EXTENSION get_subject_alt_name_ext(const CERT_INFO *cert)
766 PCERT_EXTENSION ext;
768 ext = CertFindExtension(szOID_SUBJECT_ALT_NAME2,
769 cert->cExtension, cert->rgExtension);
770 if (!ext)
771 ext = CertFindExtension(szOID_SUBJECT_ALT_NAME,
772 cert->cExtension, cert->rgExtension);
773 return ext;
776 static void CRYPT_CheckNameConstraints(
777 const CERT_NAME_CONSTRAINTS_INFO *nameConstraints, const CERT_INFO *cert,
778 DWORD *trustErrorStatus)
780 CERT_EXTENSION *ext = get_subject_alt_name_ext(cert);
782 if (ext)
784 CERT_ALT_NAME_INFO *subjectName;
785 DWORD size;
787 if (CryptDecodeObjectEx(X509_ASN_ENCODING, X509_ALTERNATE_NAME,
788 ext->Value.pbData, ext->Value.cbData,
789 CRYPT_DECODE_ALLOC_FLAG | CRYPT_DECODE_NOCOPY_FLAG, NULL,
790 &subjectName, &size))
792 DWORD i;
794 for (i = 0; i < nameConstraints->cExcludedSubtree; i++)
796 if (CRYPT_FindMatchingNameEntry(
797 &nameConstraints->rgExcludedSubtree[i].Base, subjectName,
798 trustErrorStatus))
799 *trustErrorStatus |=
800 CERT_TRUST_HAS_EXCLUDED_NAME_CONSTRAINT;
802 for (i = 0; i < nameConstraints->cPermittedSubtree; i++)
804 if (!CRYPT_FindMatchingNameEntry(
805 &nameConstraints->rgPermittedSubtree[i].Base, subjectName,
806 trustErrorStatus))
807 *trustErrorStatus |=
808 CERT_TRUST_HAS_NOT_PERMITTED_NAME_CONSTRAINT;
810 LocalFree(subjectName);
812 else
813 *trustErrorStatus |=
814 CERT_TRUST_INVALID_EXTENSION | CERT_TRUST_INVALID_NAME_CONSTRAINTS;
816 else
818 if (nameConstraints->cPermittedSubtree)
819 *trustErrorStatus |=
820 CERT_TRUST_HAS_NOT_DEFINED_NAME_CONSTRAINT |
821 CERT_TRUST_HAS_NOT_PERMITTED_NAME_CONSTRAINT;
822 if (nameConstraints->cExcludedSubtree)
823 *trustErrorStatus |= CERT_TRUST_HAS_EXCLUDED_NAME_CONSTRAINT;
827 /* Gets cert's name constraints, if any. Free with LocalFree. */
828 static CERT_NAME_CONSTRAINTS_INFO *CRYPT_GetNameConstraints(CERT_INFO *cert)
830 CERT_NAME_CONSTRAINTS_INFO *info = NULL;
832 CERT_EXTENSION *ext;
834 if ((ext = CertFindExtension(szOID_NAME_CONSTRAINTS, cert->cExtension,
835 cert->rgExtension)))
837 DWORD size;
839 CryptDecodeObjectEx(X509_ASN_ENCODING, X509_NAME_CONSTRAINTS,
840 ext->Value.pbData, ext->Value.cbData,
841 CRYPT_DECODE_ALLOC_FLAG | CRYPT_DECODE_NOCOPY_FLAG, NULL, &info,
842 &size);
844 return info;
847 static BOOL CRYPT_IsValidNameConstraint(const CERT_NAME_CONSTRAINTS_INFO *info)
849 DWORD i;
850 BOOL ret = TRUE;
852 /* Make sure at least one permitted or excluded subtree is present. From
853 * RFC 5280, section 4.2.1.10:
854 * "Conforming CAs MUST NOT issue certificates where name constraints is an
855 * empty sequence. That is, either the permittedSubtrees field or the
856 * excludedSubtrees MUST be present."
858 if (!info->cPermittedSubtree && !info->cExcludedSubtree)
860 WARN_(chain)("constraints contain no permitted nor excluded subtree\n");
861 ret = FALSE;
863 /* Check that none of the constraints specifies a minimum or a maximum.
864 * See RFC 5280, section 4.2.1.10:
865 * "Within this profile, the minimum and maximum fields are not used with
866 * any name forms, thus, the minimum MUST be zero, and maximum MUST be
867 * absent. However, if an application encounters a critical name
868 * constraints extension that specifies other values for minimum or
869 * maximum for a name form that appears in a subsequent certificate, the
870 * application MUST either process these fields or reject the
871 * certificate."
872 * Since it gives no guidance as to how to process these fields, we
873 * reject any name constraint that contains them.
875 for (i = 0; ret && i < info->cPermittedSubtree; i++)
876 if (info->rgPermittedSubtree[i].dwMinimum ||
877 info->rgPermittedSubtree[i].fMaximum)
879 TRACE_(chain)("found a minimum or maximum in permitted subtrees\n");
880 ret = FALSE;
882 for (i = 0; ret && i < info->cExcludedSubtree; i++)
883 if (info->rgExcludedSubtree[i].dwMinimum ||
884 info->rgExcludedSubtree[i].fMaximum)
886 TRACE_(chain)("found a minimum or maximum in excluded subtrees\n");
887 ret = FALSE;
889 return ret;
892 static void CRYPT_CheckChainNameConstraints(PCERT_SIMPLE_CHAIN chain)
894 int i, j;
896 /* Microsoft's implementation appears to violate RFC 3280: according to
897 * MSDN, the various CERT_TRUST_*_NAME_CONSTRAINT errors are set if a CA's
898 * name constraint is violated in the end cert. According to RFC 3280,
899 * the constraints should be checked against every subsequent certificate
900 * in the chain, not just the end cert.
901 * Microsoft's implementation also sets the name constraint errors on the
902 * certs whose constraints were violated, not on the certs that violated
903 * them.
904 * In order to be error-compatible with Microsoft's implementation, while
905 * still adhering to RFC 3280, I use a O(n ^ 2) algorithm to check name
906 * constraints.
908 for (i = chain->cElement - 1; i > 0; i--)
910 CERT_NAME_CONSTRAINTS_INFO *nameConstraints;
912 if ((nameConstraints = CRYPT_GetNameConstraints(
913 chain->rgpElement[i]->pCertContext->pCertInfo)))
915 if (!CRYPT_IsValidNameConstraint(nameConstraints))
916 chain->rgpElement[i]->TrustStatus.dwErrorStatus |=
917 CERT_TRUST_HAS_NOT_SUPPORTED_NAME_CONSTRAINT;
918 else
920 for (j = i - 1; j >= 0; j--)
922 DWORD errorStatus = 0;
924 /* According to RFC 3280, self-signed certs don't have name
925 * constraints checked unless they're the end cert.
927 if (j == 0 || !CRYPT_IsCertificateSelfSigned(
928 chain->rgpElement[j]->pCertContext))
930 CRYPT_CheckNameConstraints(nameConstraints,
931 chain->rgpElement[j]->pCertContext->pCertInfo,
932 &errorStatus);
933 if (errorStatus)
935 chain->rgpElement[i]->TrustStatus.dwErrorStatus |=
936 errorStatus;
937 CRYPT_CombineTrustStatus(&chain->TrustStatus,
938 &chain->rgpElement[i]->TrustStatus);
940 else
941 chain->rgpElement[i]->TrustStatus.dwInfoStatus |=
942 CERT_TRUST_HAS_VALID_NAME_CONSTRAINTS;
946 LocalFree(nameConstraints);
951 static LPWSTR name_value_to_str(const CERT_NAME_BLOB *name)
953 DWORD len = cert_name_to_str_with_indent(X509_ASN_ENCODING, 0, name,
954 CERT_SIMPLE_NAME_STR, NULL, 0);
955 LPWSTR str = NULL;
957 if (len)
959 str = CryptMemAlloc(len * sizeof(WCHAR));
960 if (str)
961 cert_name_to_str_with_indent(X509_ASN_ENCODING, 0, name,
962 CERT_SIMPLE_NAME_STR, str, len);
964 return str;
967 static void dump_alt_name_entry(const CERT_ALT_NAME_ENTRY *entry)
969 LPWSTR str;
971 switch (entry->dwAltNameChoice)
973 case CERT_ALT_NAME_OTHER_NAME:
974 TRACE_(chain)("CERT_ALT_NAME_OTHER_NAME, oid = %s\n",
975 debugstr_a(entry->u.pOtherName->pszObjId));
976 break;
977 case CERT_ALT_NAME_RFC822_NAME:
978 TRACE_(chain)("CERT_ALT_NAME_RFC822_NAME: %s\n",
979 debugstr_w(entry->u.pwszRfc822Name));
980 break;
981 case CERT_ALT_NAME_DNS_NAME:
982 TRACE_(chain)("CERT_ALT_NAME_DNS_NAME: %s\n",
983 debugstr_w(entry->u.pwszDNSName));
984 break;
985 case CERT_ALT_NAME_DIRECTORY_NAME:
986 str = name_value_to_str(&entry->u.DirectoryName);
987 TRACE_(chain)("CERT_ALT_NAME_DIRECTORY_NAME: %s\n", debugstr_w(str));
988 CryptMemFree(str);
989 break;
990 case CERT_ALT_NAME_URL:
991 TRACE_(chain)("CERT_ALT_NAME_URL: %s\n", debugstr_w(entry->u.pwszURL));
992 break;
993 case CERT_ALT_NAME_IP_ADDRESS:
994 TRACE_(chain)("CERT_ALT_NAME_IP_ADDRESS: %d bytes\n",
995 entry->u.IPAddress.cbData);
996 break;
997 case CERT_ALT_NAME_REGISTERED_ID:
998 TRACE_(chain)("CERT_ALT_NAME_REGISTERED_ID: %s\n",
999 debugstr_a(entry->u.pszRegisteredID));
1000 break;
1001 default:
1002 TRACE_(chain)("dwAltNameChoice = %d\n", entry->dwAltNameChoice);
1006 static void dump_alt_name(LPCSTR type, const CERT_EXTENSION *ext)
1008 CERT_ALT_NAME_INFO *name;
1009 DWORD size;
1011 TRACE_(chain)("%s:\n", type);
1012 if (CryptDecodeObjectEx(X509_ASN_ENCODING, X509_ALTERNATE_NAME,
1013 ext->Value.pbData, ext->Value.cbData,
1014 CRYPT_DECODE_ALLOC_FLAG | CRYPT_DECODE_NOCOPY_FLAG, NULL, &name, &size))
1016 DWORD i;
1018 TRACE_(chain)("%d alt name entries:\n", name->cAltEntry);
1019 for (i = 0; i < name->cAltEntry; i++)
1020 dump_alt_name_entry(&name->rgAltEntry[i]);
1021 LocalFree(name);
1025 static void dump_basic_constraints(const CERT_EXTENSION *ext)
1027 CERT_BASIC_CONSTRAINTS_INFO *info;
1028 DWORD size = 0;
1030 if (CryptDecodeObjectEx(X509_ASN_ENCODING, szOID_BASIC_CONSTRAINTS,
1031 ext->Value.pbData, ext->Value.cbData, CRYPT_DECODE_ALLOC_FLAG,
1032 NULL, &info, &size))
1034 TRACE_(chain)("SubjectType: %02x\n", info->SubjectType.pbData[0]);
1035 TRACE_(chain)("%s path length constraint\n",
1036 info->fPathLenConstraint ? "has" : "doesn't have");
1037 TRACE_(chain)("path length=%d\n", info->dwPathLenConstraint);
1038 LocalFree(info);
1042 static void dump_basic_constraints2(const CERT_EXTENSION *ext)
1044 CERT_BASIC_CONSTRAINTS2_INFO constraints;
1045 DWORD size = sizeof(CERT_BASIC_CONSTRAINTS2_INFO);
1047 if (CryptDecodeObjectEx(X509_ASN_ENCODING,
1048 szOID_BASIC_CONSTRAINTS2, ext->Value.pbData, ext->Value.cbData,
1049 0, NULL, &constraints, &size))
1051 TRACE_(chain)("basic constraints:\n");
1052 TRACE_(chain)("can%s be a CA\n", constraints.fCA ? "" : "not");
1053 TRACE_(chain)("%s path length constraint\n",
1054 constraints.fPathLenConstraint ? "has" : "doesn't have");
1055 TRACE_(chain)("path length=%d\n", constraints.dwPathLenConstraint);
1059 static void dump_key_usage(const CERT_EXTENSION *ext)
1061 CRYPT_BIT_BLOB usage;
1062 DWORD size = sizeof(usage);
1064 if (CryptDecodeObjectEx(X509_ASN_ENCODING, X509_BITS, ext->Value.pbData,
1065 ext->Value.cbData, CRYPT_DECODE_NOCOPY_FLAG, NULL, &usage, &size))
1067 #define trace_usage_bit(bits, bit) \
1068 if ((bits) & (bit)) TRACE_(chain)("%s\n", #bit)
1069 if (usage.cbData)
1071 trace_usage_bit(usage.pbData[0], CERT_DIGITAL_SIGNATURE_KEY_USAGE);
1072 trace_usage_bit(usage.pbData[0], CERT_NON_REPUDIATION_KEY_USAGE);
1073 trace_usage_bit(usage.pbData[0], CERT_KEY_ENCIPHERMENT_KEY_USAGE);
1074 trace_usage_bit(usage.pbData[0], CERT_DATA_ENCIPHERMENT_KEY_USAGE);
1075 trace_usage_bit(usage.pbData[0], CERT_KEY_AGREEMENT_KEY_USAGE);
1076 trace_usage_bit(usage.pbData[0], CERT_KEY_CERT_SIGN_KEY_USAGE);
1077 trace_usage_bit(usage.pbData[0], CERT_CRL_SIGN_KEY_USAGE);
1078 trace_usage_bit(usage.pbData[0], CERT_ENCIPHER_ONLY_KEY_USAGE);
1080 #undef trace_usage_bit
1081 if (usage.cbData > 1 && usage.pbData[1] & CERT_DECIPHER_ONLY_KEY_USAGE)
1082 TRACE_(chain)("CERT_DECIPHER_ONLY_KEY_USAGE\n");
1086 static void dump_general_subtree(const CERT_GENERAL_SUBTREE *subtree)
1088 dump_alt_name_entry(&subtree->Base);
1089 TRACE_(chain)("dwMinimum = %d, fMaximum = %d, dwMaximum = %d\n",
1090 subtree->dwMinimum, subtree->fMaximum, subtree->dwMaximum);
1093 static void dump_name_constraints(const CERT_EXTENSION *ext)
1095 CERT_NAME_CONSTRAINTS_INFO *nameConstraints;
1096 DWORD size;
1098 if (CryptDecodeObjectEx(X509_ASN_ENCODING, X509_NAME_CONSTRAINTS,
1099 ext->Value.pbData, ext->Value.cbData,
1100 CRYPT_DECODE_ALLOC_FLAG | CRYPT_DECODE_NOCOPY_FLAG, NULL, &nameConstraints,
1101 &size))
1103 DWORD i;
1105 TRACE_(chain)("%d permitted subtrees:\n",
1106 nameConstraints->cPermittedSubtree);
1107 for (i = 0; i < nameConstraints->cPermittedSubtree; i++)
1108 dump_general_subtree(&nameConstraints->rgPermittedSubtree[i]);
1109 TRACE_(chain)("%d excluded subtrees:\n",
1110 nameConstraints->cExcludedSubtree);
1111 for (i = 0; i < nameConstraints->cExcludedSubtree; i++)
1112 dump_general_subtree(&nameConstraints->rgExcludedSubtree[i]);
1113 LocalFree(nameConstraints);
1117 static void dump_cert_policies(const CERT_EXTENSION *ext)
1119 CERT_POLICIES_INFO *policies;
1120 DWORD size;
1122 if (CryptDecodeObjectEx(X509_ASN_ENCODING, X509_CERT_POLICIES,
1123 ext->Value.pbData, ext->Value.cbData, CRYPT_DECODE_ALLOC_FLAG, NULL,
1124 &policies, &size))
1126 DWORD i, j;
1128 TRACE_(chain)("%d policies:\n", policies->cPolicyInfo);
1129 for (i = 0; i < policies->cPolicyInfo; i++)
1131 TRACE_(chain)("policy identifier: %s\n",
1132 debugstr_a(policies->rgPolicyInfo[i].pszPolicyIdentifier));
1133 TRACE_(chain)("%d policy qualifiers:\n",
1134 policies->rgPolicyInfo[i].cPolicyQualifier);
1135 for (j = 0; j < policies->rgPolicyInfo[i].cPolicyQualifier; j++)
1136 TRACE_(chain)("%s\n", debugstr_a(
1137 policies->rgPolicyInfo[i].rgPolicyQualifier[j].
1138 pszPolicyQualifierId));
1140 LocalFree(policies);
1144 static void dump_enhanced_key_usage(const CERT_EXTENSION *ext)
1146 CERT_ENHKEY_USAGE *usage;
1147 DWORD size;
1149 if (CryptDecodeObjectEx(X509_ASN_ENCODING, X509_ENHANCED_KEY_USAGE,
1150 ext->Value.pbData, ext->Value.cbData, CRYPT_DECODE_ALLOC_FLAG, NULL,
1151 &usage, &size))
1153 DWORD i;
1155 TRACE_(chain)("%d usages:\n", usage->cUsageIdentifier);
1156 for (i = 0; i < usage->cUsageIdentifier; i++)
1157 TRACE_(chain)("%s\n", usage->rgpszUsageIdentifier[i]);
1158 LocalFree(usage);
1162 static void dump_netscape_cert_type(const CERT_EXTENSION *ext)
1164 CRYPT_BIT_BLOB usage;
1165 DWORD size = sizeof(usage);
1167 if (CryptDecodeObjectEx(X509_ASN_ENCODING, X509_BITS, ext->Value.pbData,
1168 ext->Value.cbData, CRYPT_DECODE_NOCOPY_FLAG, NULL, &usage, &size))
1170 #define trace_cert_type_bit(bits, bit) \
1171 if ((bits) & (bit)) TRACE_(chain)("%s\n", #bit)
1172 if (usage.cbData)
1174 trace_cert_type_bit(usage.pbData[0],
1175 NETSCAPE_SSL_CLIENT_AUTH_CERT_TYPE);
1176 trace_cert_type_bit(usage.pbData[0],
1177 NETSCAPE_SSL_SERVER_AUTH_CERT_TYPE);
1178 trace_cert_type_bit(usage.pbData[0], NETSCAPE_SMIME_CERT_TYPE);
1179 trace_cert_type_bit(usage.pbData[0], NETSCAPE_SIGN_CERT_TYPE);
1180 trace_cert_type_bit(usage.pbData[0], NETSCAPE_SSL_CA_CERT_TYPE);
1181 trace_cert_type_bit(usage.pbData[0], NETSCAPE_SMIME_CA_CERT_TYPE);
1182 trace_cert_type_bit(usage.pbData[0], NETSCAPE_SIGN_CA_CERT_TYPE);
1184 #undef trace_cert_type_bit
1188 static void dump_extension(const CERT_EXTENSION *ext)
1190 TRACE_(chain)("%s (%scritical)\n", debugstr_a(ext->pszObjId),
1191 ext->fCritical ? "" : "not ");
1192 if (!strcmp(ext->pszObjId, szOID_SUBJECT_ALT_NAME))
1193 dump_alt_name("subject alt name", ext);
1194 else if (!strcmp(ext->pszObjId, szOID_ISSUER_ALT_NAME))
1195 dump_alt_name("issuer alt name", ext);
1196 else if (!strcmp(ext->pszObjId, szOID_BASIC_CONSTRAINTS))
1197 dump_basic_constraints(ext);
1198 else if (!strcmp(ext->pszObjId, szOID_KEY_USAGE))
1199 dump_key_usage(ext);
1200 else if (!strcmp(ext->pszObjId, szOID_SUBJECT_ALT_NAME2))
1201 dump_alt_name("subject alt name 2", ext);
1202 else if (!strcmp(ext->pszObjId, szOID_ISSUER_ALT_NAME2))
1203 dump_alt_name("issuer alt name 2", ext);
1204 else if (!strcmp(ext->pszObjId, szOID_BASIC_CONSTRAINTS2))
1205 dump_basic_constraints2(ext);
1206 else if (!strcmp(ext->pszObjId, szOID_NAME_CONSTRAINTS))
1207 dump_name_constraints(ext);
1208 else if (!strcmp(ext->pszObjId, szOID_CERT_POLICIES))
1209 dump_cert_policies(ext);
1210 else if (!strcmp(ext->pszObjId, szOID_ENHANCED_KEY_USAGE))
1211 dump_enhanced_key_usage(ext);
1212 else if (!strcmp(ext->pszObjId, szOID_NETSCAPE_CERT_TYPE))
1213 dump_netscape_cert_type(ext);
1216 static LPCWSTR filetime_to_str(const FILETIME *time)
1218 static WCHAR date[80];
1219 WCHAR dateFmt[80]; /* sufficient for all versions of LOCALE_SSHORTDATE */
1220 SYSTEMTIME sysTime;
1222 if (!time) return NULL;
1224 GetLocaleInfoW(LOCALE_SYSTEM_DEFAULT, LOCALE_SSHORTDATE, dateFmt,
1225 sizeof(dateFmt) / sizeof(dateFmt[0]));
1226 FileTimeToSystemTime(time, &sysTime);
1227 GetDateFormatW(LOCALE_SYSTEM_DEFAULT, 0, &sysTime, dateFmt, date,
1228 sizeof(date) / sizeof(date[0]));
1229 return date;
1232 static void dump_element(PCCERT_CONTEXT cert)
1234 LPWSTR name = NULL;
1235 DWORD len, i;
1237 TRACE_(chain)("%p: version %d\n", cert, cert->pCertInfo->dwVersion);
1238 len = CertGetNameStringW(cert, CERT_NAME_SIMPLE_DISPLAY_TYPE,
1239 CERT_NAME_ISSUER_FLAG, NULL, NULL, 0);
1240 name = CryptMemAlloc(len * sizeof(WCHAR));
1241 if (name)
1243 CertGetNameStringW(cert, CERT_NAME_SIMPLE_DISPLAY_TYPE,
1244 CERT_NAME_ISSUER_FLAG, NULL, name, len);
1245 TRACE_(chain)("issued by %s\n", debugstr_w(name));
1246 CryptMemFree(name);
1248 len = CertGetNameStringW(cert, CERT_NAME_SIMPLE_DISPLAY_TYPE, 0, NULL,
1249 NULL, 0);
1250 name = CryptMemAlloc(len * sizeof(WCHAR));
1251 if (name)
1253 CertGetNameStringW(cert, CERT_NAME_SIMPLE_DISPLAY_TYPE, 0, NULL,
1254 name, len);
1255 TRACE_(chain)("issued to %s\n", debugstr_w(name));
1256 CryptMemFree(name);
1258 TRACE_(chain)("valid from %s to %s\n",
1259 debugstr_w(filetime_to_str(&cert->pCertInfo->NotBefore)),
1260 debugstr_w(filetime_to_str(&cert->pCertInfo->NotAfter)));
1261 TRACE_(chain)("%d extensions\n", cert->pCertInfo->cExtension);
1262 for (i = 0; i < cert->pCertInfo->cExtension; i++)
1263 dump_extension(&cert->pCertInfo->rgExtension[i]);
1266 static BOOL CRYPT_KeyUsageValid(PCertificateChainEngine engine,
1267 PCCERT_CONTEXT cert, BOOL isRoot, BOOL isCA, DWORD index)
1269 PCERT_EXTENSION ext;
1270 BOOL ret;
1271 BYTE usageBits = 0;
1273 ext = CertFindExtension(szOID_KEY_USAGE, cert->pCertInfo->cExtension,
1274 cert->pCertInfo->rgExtension);
1275 if (ext)
1277 CRYPT_BIT_BLOB usage;
1278 DWORD size = sizeof(usage);
1280 ret = CryptDecodeObjectEx(cert->dwCertEncodingType, X509_BITS,
1281 ext->Value.pbData, ext->Value.cbData, CRYPT_DECODE_NOCOPY_FLAG, NULL,
1282 &usage, &size);
1283 if (!ret)
1284 return FALSE;
1285 else if (usage.cbData > 2)
1287 /* The key usage extension only defines 9 bits => no more than 2
1288 * bytes are needed to encode all known usages.
1290 return FALSE;
1292 else
1294 /* The only bit relevant to chain validation is the keyCertSign
1295 * bit, which is always in the least significant byte of the
1296 * key usage bits.
1298 usageBits = usage.pbData[usage.cbData - 1];
1301 if (isCA)
1303 if (!ext)
1305 /* MS appears to violate RFC 5280, section 4.2.1.3 (Key Usage)
1306 * here. Quoting the RFC:
1307 * "This [key usage] extension MUST appear in certificates that
1308 * contain public keys that are used to validate digital signatures
1309 * on other public key certificates or CRLs."
1310 * MS appears to accept certs that do not contain key usage
1311 * extensions as CA certs. V1 and V2 certificates did not have
1312 * extensions, and many root certificates are V1 certificates, so
1313 * perhaps this is prudent. On the other hand, MS also accepts V3
1314 * certs without key usage extensions. We are more restrictive:
1315 * we accept locally installed V1 or V2 certs as CA certs.
1316 * We also accept a lack of key usage extension on root certs,
1317 * which is implied in RFC 5280, section 6.1: the trust anchor's
1318 * only requirement is that it was used to issue the next
1319 * certificate in the chain.
1321 if (isRoot)
1322 ret = TRUE;
1323 else if (cert->pCertInfo->dwVersion == CERT_V1 ||
1324 cert->pCertInfo->dwVersion == CERT_V2)
1326 PCCERT_CONTEXT localCert = CRYPT_FindCertInStore(
1327 engine->hWorld, cert);
1329 ret = localCert != NULL;
1330 CertFreeCertificateContext(localCert);
1332 else
1333 ret = FALSE;
1334 if (!ret)
1335 WARN_(chain)("no key usage extension on a CA cert\n");
1337 else
1339 if (!(usageBits & CERT_KEY_CERT_SIGN_KEY_USAGE))
1341 WARN_(chain)("keyCertSign not asserted on a CA cert\n");
1342 ret = FALSE;
1344 else
1345 ret = TRUE;
1348 else
1350 if (ext && (usageBits & CERT_KEY_CERT_SIGN_KEY_USAGE))
1352 WARN_(chain)("keyCertSign asserted on a non-CA cert\n");
1353 ret = FALSE;
1355 else
1356 ret = TRUE;
1358 return ret;
1361 static BOOL CRYPT_ExtendedKeyUsageValidForCA(PCCERT_CONTEXT cert)
1363 PCERT_EXTENSION ext;
1364 BOOL ret;
1366 /* RFC 5280, section 4.2.1.12: "In general, this extension will only
1367 * appear in end entity certificates." And, "If a certificate contains
1368 * both a key usage extension and an extended key usage extension, then
1369 * both extensions MUST be processed independently and the certificate MUST
1370 * only be used for a purpose consistent with both extensions." This seems
1371 * to imply that it should be checked if present, and ignored if not.
1372 * Unfortunately some CAs, e.g. the Thawte SGC CA, don't include the code
1373 * signing extended key usage, whereas they do include the keyCertSign
1374 * key usage. Thus, when checking for a CA, we only require the
1375 * code signing extended key usage if the extended key usage is critical.
1377 ext = CertFindExtension(szOID_ENHANCED_KEY_USAGE,
1378 cert->pCertInfo->cExtension, cert->pCertInfo->rgExtension);
1379 if (ext && ext->fCritical)
1381 CERT_ENHKEY_USAGE *usage;
1382 DWORD size;
1384 ret = CryptDecodeObjectEx(cert->dwCertEncodingType,
1385 X509_ENHANCED_KEY_USAGE, ext->Value.pbData, ext->Value.cbData,
1386 CRYPT_DECODE_ALLOC_FLAG, NULL, &usage, &size);
1387 if (ret)
1389 DWORD i;
1391 /* Explicitly require the code signing extended key usage for a CA
1392 * with an extended key usage extension. That is, don't assume
1393 * a cert is allowed to be a CA if it specifies the
1394 * anyExtendedKeyUsage usage oid. See again RFC 5280, section
1395 * 4.2.1.12: "Applications that require the presence of a
1396 * particular purpose MAY reject certificates that include the
1397 * anyExtendedKeyUsage OID but not the particular OID expected for
1398 * the application."
1400 ret = FALSE;
1401 for (i = 0; !ret && i < usage->cUsageIdentifier; i++)
1402 if (!strcmp(usage->rgpszUsageIdentifier[i],
1403 szOID_PKIX_KP_CODE_SIGNING))
1404 ret = TRUE;
1405 LocalFree(usage);
1408 else
1409 ret = TRUE;
1410 return ret;
1413 static BOOL CRYPT_CriticalExtensionsSupported(PCCERT_CONTEXT cert)
1415 BOOL ret = TRUE;
1416 DWORD i;
1418 for (i = 0; ret && i < cert->pCertInfo->cExtension; i++)
1420 if (cert->pCertInfo->rgExtension[i].fCritical)
1422 LPCSTR oid = cert->pCertInfo->rgExtension[i].pszObjId;
1424 if (!strcmp(oid, szOID_BASIC_CONSTRAINTS))
1425 ret = TRUE;
1426 else if (!strcmp(oid, szOID_BASIC_CONSTRAINTS2))
1427 ret = TRUE;
1428 else if (!strcmp(oid, szOID_NAME_CONSTRAINTS))
1429 ret = TRUE;
1430 else if (!strcmp(oid, szOID_KEY_USAGE))
1431 ret = TRUE;
1432 else if (!strcmp(oid, szOID_SUBJECT_ALT_NAME))
1433 ret = TRUE;
1434 else if (!strcmp(oid, szOID_SUBJECT_ALT_NAME2))
1435 ret = TRUE;
1436 else if (!strcmp(oid, szOID_ENHANCED_KEY_USAGE))
1437 ret = TRUE;
1438 else
1440 FIXME("unsupported critical extension %s\n",
1441 debugstr_a(oid));
1442 ret = FALSE;
1446 return ret;
1449 static BOOL CRYPT_IsCertVersionValid(PCCERT_CONTEXT cert)
1451 BOOL ret = TRUE;
1453 /* Checks whether the contents of the cert match the cert's version. */
1454 switch (cert->pCertInfo->dwVersion)
1456 case CERT_V1:
1457 /* A V1 cert may not contain unique identifiers. See RFC 5280,
1458 * section 4.1.2.8:
1459 * "These fields MUST only appear if the version is 2 or 3 (Section
1460 * 4.1.2.1). These fields MUST NOT appear if the version is 1."
1462 if (cert->pCertInfo->IssuerUniqueId.cbData ||
1463 cert->pCertInfo->SubjectUniqueId.cbData)
1464 ret = FALSE;
1465 /* A V1 cert may not contain extensions. See RFC 5280, section 4.1.2.9:
1466 * "This field MUST only appear if the version is 3 (Section 4.1.2.1)."
1468 if (cert->pCertInfo->cExtension)
1469 ret = FALSE;
1470 break;
1471 case CERT_V2:
1472 /* A V2 cert may not contain extensions. See RFC 5280, section 4.1.2.9:
1473 * "This field MUST only appear if the version is 3 (Section 4.1.2.1)."
1475 if (cert->pCertInfo->cExtension)
1476 ret = FALSE;
1477 break;
1478 case CERT_V3:
1479 /* Do nothing, all fields are allowed for V3 certs */
1480 break;
1481 default:
1482 WARN_(chain)("invalid cert version %d\n", cert->pCertInfo->dwVersion);
1483 ret = FALSE;
1485 return ret;
1488 static void CRYPT_CheckSimpleChain(PCertificateChainEngine engine,
1489 PCERT_SIMPLE_CHAIN chain, LPFILETIME time)
1491 PCERT_CHAIN_ELEMENT rootElement = chain->rgpElement[chain->cElement - 1];
1492 int i;
1493 BOOL pathLengthConstraintViolated = FALSE;
1494 CERT_BASIC_CONSTRAINTS2_INFO constraints = { FALSE, FALSE, 0 };
1496 TRACE_(chain)("checking chain with %d elements for time %s\n",
1497 chain->cElement, debugstr_w(filetime_to_str(time)));
1498 for (i = chain->cElement - 1; i >= 0; i--)
1500 BOOL isRoot;
1502 if (TRACE_ON(chain))
1503 dump_element(chain->rgpElement[i]->pCertContext);
1504 if (i == chain->cElement - 1)
1505 isRoot = CRYPT_IsCertificateSelfSigned(
1506 chain->rgpElement[i]->pCertContext);
1507 else
1508 isRoot = FALSE;
1509 if (!CRYPT_IsCertVersionValid(chain->rgpElement[i]->pCertContext))
1511 /* MS appears to accept certs whose versions don't match their
1512 * contents, so there isn't an appropriate error code.
1514 chain->rgpElement[i]->TrustStatus.dwErrorStatus |=
1515 CERT_TRUST_INVALID_EXTENSION;
1517 if (CertVerifyTimeValidity(time,
1518 chain->rgpElement[i]->pCertContext->pCertInfo) != 0)
1519 chain->rgpElement[i]->TrustStatus.dwErrorStatus |=
1520 CERT_TRUST_IS_NOT_TIME_VALID;
1521 if (i != 0)
1523 /* Check the signature of the cert this issued */
1524 if (!CryptVerifyCertificateSignatureEx(0, X509_ASN_ENCODING,
1525 CRYPT_VERIFY_CERT_SIGN_SUBJECT_CERT,
1526 (void *)chain->rgpElement[i - 1]->pCertContext,
1527 CRYPT_VERIFY_CERT_SIGN_ISSUER_CERT,
1528 (void *)chain->rgpElement[i]->pCertContext, 0, NULL))
1529 chain->rgpElement[i - 1]->TrustStatus.dwErrorStatus |=
1530 CERT_TRUST_IS_NOT_SIGNATURE_VALID;
1531 /* Once a path length constraint has been violated, every remaining
1532 * CA cert's basic constraints is considered invalid.
1534 if (pathLengthConstraintViolated)
1535 chain->rgpElement[i]->TrustStatus.dwErrorStatus |=
1536 CERT_TRUST_INVALID_BASIC_CONSTRAINTS;
1537 else if (!CRYPT_CheckBasicConstraintsForCA(engine,
1538 chain->rgpElement[i]->pCertContext, &constraints, i - 1, isRoot,
1539 &pathLengthConstraintViolated))
1540 chain->rgpElement[i]->TrustStatus.dwErrorStatus |=
1541 CERT_TRUST_INVALID_BASIC_CONSTRAINTS;
1542 else if (constraints.fPathLenConstraint &&
1543 constraints.dwPathLenConstraint)
1545 /* This one's valid - decrement max length */
1546 constraints.dwPathLenConstraint--;
1549 else
1551 /* Check whether end cert has a basic constraints extension */
1552 if (!CRYPT_DecodeBasicConstraints(
1553 chain->rgpElement[i]->pCertContext, &constraints, FALSE))
1554 chain->rgpElement[i]->TrustStatus.dwErrorStatus |=
1555 CERT_TRUST_INVALID_BASIC_CONSTRAINTS;
1557 if (!CRYPT_KeyUsageValid(engine, chain->rgpElement[i]->pCertContext,
1558 isRoot, constraints.fCA, i))
1559 chain->rgpElement[i]->TrustStatus.dwErrorStatus |=
1560 CERT_TRUST_IS_NOT_VALID_FOR_USAGE;
1561 if (i != 0)
1562 if (!CRYPT_ExtendedKeyUsageValidForCA(
1563 chain->rgpElement[i]->pCertContext))
1564 chain->rgpElement[i]->TrustStatus.dwErrorStatus |=
1565 CERT_TRUST_IS_NOT_VALID_FOR_USAGE;
1566 if (CRYPT_IsSimpleChainCyclic(chain))
1568 /* If the chain is cyclic, then the path length constraints
1569 * are violated, because the chain is infinitely long.
1571 pathLengthConstraintViolated = TRUE;
1572 chain->TrustStatus.dwErrorStatus |=
1573 CERT_TRUST_IS_PARTIAL_CHAIN |
1574 CERT_TRUST_INVALID_BASIC_CONSTRAINTS;
1576 /* Check whether every critical extension is supported */
1577 if (!CRYPT_CriticalExtensionsSupported(
1578 chain->rgpElement[i]->pCertContext))
1579 chain->rgpElement[i]->TrustStatus.dwErrorStatus |=
1580 CERT_TRUST_INVALID_EXTENSION;
1581 CRYPT_CombineTrustStatus(&chain->TrustStatus,
1582 &chain->rgpElement[i]->TrustStatus);
1584 CRYPT_CheckChainNameConstraints(chain);
1585 if (CRYPT_IsCertificateSelfSigned(rootElement->pCertContext))
1587 rootElement->TrustStatus.dwInfoStatus |=
1588 CERT_TRUST_IS_SELF_SIGNED | CERT_TRUST_HAS_NAME_MATCH_ISSUER;
1589 CRYPT_CheckRootCert(engine->hRoot, rootElement);
1591 CRYPT_CombineTrustStatus(&chain->TrustStatus, &rootElement->TrustStatus);
1594 static PCCERT_CONTEXT CRYPT_GetIssuer(HCERTSTORE store, PCCERT_CONTEXT subject,
1595 PCCERT_CONTEXT prevIssuer, DWORD *infoStatus)
1597 PCCERT_CONTEXT issuer = NULL;
1598 PCERT_EXTENSION ext;
1599 DWORD size;
1601 *infoStatus = 0;
1602 if ((ext = CertFindExtension(szOID_AUTHORITY_KEY_IDENTIFIER,
1603 subject->pCertInfo->cExtension, subject->pCertInfo->rgExtension)))
1605 CERT_AUTHORITY_KEY_ID_INFO *info;
1606 BOOL ret;
1608 ret = CryptDecodeObjectEx(subject->dwCertEncodingType,
1609 X509_AUTHORITY_KEY_ID, ext->Value.pbData, ext->Value.cbData,
1610 CRYPT_DECODE_ALLOC_FLAG | CRYPT_DECODE_NOCOPY_FLAG, NULL,
1611 &info, &size);
1612 if (ret)
1614 CERT_ID id;
1616 if (info->CertIssuer.cbData && info->CertSerialNumber.cbData)
1618 id.dwIdChoice = CERT_ID_ISSUER_SERIAL_NUMBER;
1619 memcpy(&id.u.IssuerSerialNumber.Issuer, &info->CertIssuer,
1620 sizeof(CERT_NAME_BLOB));
1621 memcpy(&id.u.IssuerSerialNumber.SerialNumber,
1622 &info->CertSerialNumber, sizeof(CRYPT_INTEGER_BLOB));
1623 issuer = CertFindCertificateInStore(store,
1624 subject->dwCertEncodingType, 0, CERT_FIND_CERT_ID, &id,
1625 prevIssuer);
1626 if (issuer)
1628 TRACE_(chain)("issuer found by issuer/serial number\n");
1629 *infoStatus = CERT_TRUST_HAS_EXACT_MATCH_ISSUER;
1632 else if (info->KeyId.cbData)
1634 id.dwIdChoice = CERT_ID_KEY_IDENTIFIER;
1635 memcpy(&id.u.KeyId, &info->KeyId, sizeof(CRYPT_HASH_BLOB));
1636 issuer = CertFindCertificateInStore(store,
1637 subject->dwCertEncodingType, 0, CERT_FIND_CERT_ID, &id,
1638 prevIssuer);
1639 if (issuer)
1641 TRACE_(chain)("issuer found by key id\n");
1642 *infoStatus = CERT_TRUST_HAS_KEY_MATCH_ISSUER;
1645 LocalFree(info);
1648 else if ((ext = CertFindExtension(szOID_AUTHORITY_KEY_IDENTIFIER2,
1649 subject->pCertInfo->cExtension, subject->pCertInfo->rgExtension)))
1651 CERT_AUTHORITY_KEY_ID2_INFO *info;
1652 BOOL ret;
1654 ret = CryptDecodeObjectEx(subject->dwCertEncodingType,
1655 X509_AUTHORITY_KEY_ID2, ext->Value.pbData, ext->Value.cbData,
1656 CRYPT_DECODE_ALLOC_FLAG | CRYPT_DECODE_NOCOPY_FLAG, NULL,
1657 &info, &size);
1658 if (ret)
1660 CERT_ID id;
1662 if (info->AuthorityCertIssuer.cAltEntry &&
1663 info->AuthorityCertSerialNumber.cbData)
1665 PCERT_ALT_NAME_ENTRY directoryName = NULL;
1666 DWORD i;
1668 for (i = 0; !directoryName &&
1669 i < info->AuthorityCertIssuer.cAltEntry; i++)
1670 if (info->AuthorityCertIssuer.rgAltEntry[i].dwAltNameChoice
1671 == CERT_ALT_NAME_DIRECTORY_NAME)
1672 directoryName =
1673 &info->AuthorityCertIssuer.rgAltEntry[i];
1674 if (directoryName)
1676 id.dwIdChoice = CERT_ID_ISSUER_SERIAL_NUMBER;
1677 memcpy(&id.u.IssuerSerialNumber.Issuer,
1678 &directoryName->u.DirectoryName, sizeof(CERT_NAME_BLOB));
1679 memcpy(&id.u.IssuerSerialNumber.SerialNumber,
1680 &info->AuthorityCertSerialNumber,
1681 sizeof(CRYPT_INTEGER_BLOB));
1682 issuer = CertFindCertificateInStore(store,
1683 subject->dwCertEncodingType, 0, CERT_FIND_CERT_ID, &id,
1684 prevIssuer);
1685 if (issuer)
1687 TRACE_(chain)("issuer found by directory name\n");
1688 *infoStatus = CERT_TRUST_HAS_EXACT_MATCH_ISSUER;
1691 else
1692 FIXME("no supported name type in authority key id2\n");
1694 else if (info->KeyId.cbData)
1696 id.dwIdChoice = CERT_ID_KEY_IDENTIFIER;
1697 memcpy(&id.u.KeyId, &info->KeyId, sizeof(CRYPT_HASH_BLOB));
1698 issuer = CertFindCertificateInStore(store,
1699 subject->dwCertEncodingType, 0, CERT_FIND_CERT_ID, &id,
1700 prevIssuer);
1701 if (issuer)
1703 TRACE_(chain)("issuer found by key id\n");
1704 *infoStatus = CERT_TRUST_HAS_KEY_MATCH_ISSUER;
1707 LocalFree(info);
1710 else
1712 issuer = CertFindCertificateInStore(store,
1713 subject->dwCertEncodingType, 0, CERT_FIND_SUBJECT_NAME,
1714 &subject->pCertInfo->Issuer, prevIssuer);
1715 TRACE_(chain)("issuer found by name\n");
1716 *infoStatus = CERT_TRUST_HAS_NAME_MATCH_ISSUER;
1718 return issuer;
1721 /* Builds a simple chain by finding an issuer for the last cert in the chain,
1722 * until reaching a self-signed cert, or until no issuer can be found.
1724 static BOOL CRYPT_BuildSimpleChain(const CertificateChainEngine *engine,
1725 HCERTSTORE world, PCERT_SIMPLE_CHAIN chain)
1727 BOOL ret = TRUE;
1728 PCCERT_CONTEXT cert = chain->rgpElement[chain->cElement - 1]->pCertContext;
1730 while (ret && !CRYPT_IsSimpleChainCyclic(chain) &&
1731 !CRYPT_IsCertificateSelfSigned(cert))
1733 PCCERT_CONTEXT issuer = CRYPT_GetIssuer(world, cert, NULL,
1734 &chain->rgpElement[chain->cElement - 1]->TrustStatus.dwInfoStatus);
1736 if (issuer)
1738 ret = CRYPT_AddCertToSimpleChain(engine, chain, issuer,
1739 chain->rgpElement[chain->cElement - 1]->TrustStatus.dwInfoStatus);
1740 /* CRYPT_AddCertToSimpleChain add-ref's the issuer, so free it to
1741 * close the enumeration that found it
1743 CertFreeCertificateContext(issuer);
1744 cert = issuer;
1746 else
1748 TRACE_(chain)("Couldn't find issuer, halting chain creation\n");
1749 chain->TrustStatus.dwErrorStatus |= CERT_TRUST_IS_PARTIAL_CHAIN;
1750 break;
1753 return ret;
1756 static BOOL CRYPT_GetSimpleChainForCert(PCertificateChainEngine engine,
1757 HCERTSTORE world, PCCERT_CONTEXT cert, LPFILETIME pTime,
1758 PCERT_SIMPLE_CHAIN *ppChain)
1760 BOOL ret = FALSE;
1761 PCERT_SIMPLE_CHAIN chain;
1763 TRACE("(%p, %p, %p, %p)\n", engine, world, cert, pTime);
1765 chain = CryptMemAlloc(sizeof(CERT_SIMPLE_CHAIN));
1766 if (chain)
1768 memset(chain, 0, sizeof(CERT_SIMPLE_CHAIN));
1769 chain->cbSize = sizeof(CERT_SIMPLE_CHAIN);
1770 ret = CRYPT_AddCertToSimpleChain(engine, chain, cert, 0);
1771 if (ret)
1773 ret = CRYPT_BuildSimpleChain(engine, world, chain);
1774 if (ret)
1775 CRYPT_CheckSimpleChain(engine, chain, pTime);
1777 if (!ret)
1779 CRYPT_FreeSimpleChain(chain);
1780 chain = NULL;
1782 *ppChain = chain;
1784 return ret;
1787 static BOOL CRYPT_BuildCandidateChainFromCert(HCERTCHAINENGINE hChainEngine,
1788 PCCERT_CONTEXT cert, LPFILETIME pTime, HCERTSTORE hAdditionalStore,
1789 PCertificateChain *ppChain)
1791 PCertificateChainEngine engine = (PCertificateChainEngine)hChainEngine;
1792 PCERT_SIMPLE_CHAIN simpleChain = NULL;
1793 HCERTSTORE world;
1794 BOOL ret;
1796 world = CertOpenStore(CERT_STORE_PROV_COLLECTION, 0, 0,
1797 CERT_STORE_CREATE_NEW_FLAG, NULL);
1798 CertAddStoreToCollection(world, engine->hWorld, 0, 0);
1799 if (hAdditionalStore)
1800 CertAddStoreToCollection(world, hAdditionalStore, 0, 0);
1801 /* FIXME: only simple chains are supported for now, as CTLs aren't
1802 * supported yet.
1804 if ((ret = CRYPT_GetSimpleChainForCert(engine, world, cert, pTime,
1805 &simpleChain)))
1807 PCertificateChain chain = CryptMemAlloc(sizeof(CertificateChain));
1809 if (chain)
1811 chain->ref = 1;
1812 chain->world = world;
1813 chain->context.cbSize = sizeof(CERT_CHAIN_CONTEXT);
1814 chain->context.TrustStatus = simpleChain->TrustStatus;
1815 chain->context.cChain = 1;
1816 chain->context.rgpChain = CryptMemAlloc(sizeof(PCERT_SIMPLE_CHAIN));
1817 chain->context.rgpChain[0] = simpleChain;
1818 chain->context.cLowerQualityChainContext = 0;
1819 chain->context.rgpLowerQualityChainContext = NULL;
1820 chain->context.fHasRevocationFreshnessTime = FALSE;
1821 chain->context.dwRevocationFreshnessTime = 0;
1823 else
1824 ret = FALSE;
1825 *ppChain = chain;
1827 return ret;
1830 /* Makes and returns a copy of chain, up to and including element iElement. */
1831 static PCERT_SIMPLE_CHAIN CRYPT_CopySimpleChainToElement(
1832 const CERT_SIMPLE_CHAIN *chain, DWORD iElement)
1834 PCERT_SIMPLE_CHAIN copy = CryptMemAlloc(sizeof(CERT_SIMPLE_CHAIN));
1836 if (copy)
1838 memset(copy, 0, sizeof(CERT_SIMPLE_CHAIN));
1839 copy->cbSize = sizeof(CERT_SIMPLE_CHAIN);
1840 copy->rgpElement =
1841 CryptMemAlloc((iElement + 1) * sizeof(PCERT_CHAIN_ELEMENT));
1842 if (copy->rgpElement)
1844 DWORD i;
1845 BOOL ret = TRUE;
1847 memset(copy->rgpElement, 0,
1848 (iElement + 1) * sizeof(PCERT_CHAIN_ELEMENT));
1849 for (i = 0; ret && i <= iElement; i++)
1851 PCERT_CHAIN_ELEMENT element =
1852 CryptMemAlloc(sizeof(CERT_CHAIN_ELEMENT));
1854 if (element)
1856 *element = *chain->rgpElement[i];
1857 element->pCertContext = CertDuplicateCertificateContext(
1858 chain->rgpElement[i]->pCertContext);
1859 /* Reset the trust status of the copied element, it'll get
1860 * rechecked after the new chain is done.
1862 memset(&element->TrustStatus, 0, sizeof(CERT_TRUST_STATUS));
1863 copy->rgpElement[copy->cElement++] = element;
1865 else
1866 ret = FALSE;
1868 if (!ret)
1870 for (i = 0; i <= iElement; i++)
1871 CryptMemFree(copy->rgpElement[i]);
1872 CryptMemFree(copy->rgpElement);
1873 CryptMemFree(copy);
1874 copy = NULL;
1877 else
1879 CryptMemFree(copy);
1880 copy = NULL;
1883 return copy;
1886 static void CRYPT_FreeLowerQualityChains(PCertificateChain chain)
1888 DWORD i;
1890 for (i = 0; i < chain->context.cLowerQualityChainContext; i++)
1891 CertFreeCertificateChain(chain->context.rgpLowerQualityChainContext[i]);
1892 CryptMemFree(chain->context.rgpLowerQualityChainContext);
1893 chain->context.cLowerQualityChainContext = 0;
1894 chain->context.rgpLowerQualityChainContext = NULL;
1897 static void CRYPT_FreeChainContext(PCertificateChain chain)
1899 DWORD i;
1901 CRYPT_FreeLowerQualityChains(chain);
1902 for (i = 0; i < chain->context.cChain; i++)
1903 CRYPT_FreeSimpleChain(chain->context.rgpChain[i]);
1904 CryptMemFree(chain->context.rgpChain);
1905 CertCloseStore(chain->world, 0);
1906 CryptMemFree(chain);
1909 /* Makes and returns a copy of chain, up to and including element iElement of
1910 * simple chain iChain.
1912 static PCertificateChain CRYPT_CopyChainToElement(PCertificateChain chain,
1913 DWORD iChain, DWORD iElement)
1915 PCertificateChain copy = CryptMemAlloc(sizeof(CertificateChain));
1917 if (copy)
1919 copy->ref = 1;
1920 copy->world = CertDuplicateStore(chain->world);
1921 copy->context.cbSize = sizeof(CERT_CHAIN_CONTEXT);
1922 /* Leave the trust status of the copied chain unset, it'll get
1923 * rechecked after the new chain is done.
1925 memset(&copy->context.TrustStatus, 0, sizeof(CERT_TRUST_STATUS));
1926 copy->context.cLowerQualityChainContext = 0;
1927 copy->context.rgpLowerQualityChainContext = NULL;
1928 copy->context.fHasRevocationFreshnessTime = FALSE;
1929 copy->context.dwRevocationFreshnessTime = 0;
1930 copy->context.rgpChain = CryptMemAlloc(
1931 (iChain + 1) * sizeof(PCERT_SIMPLE_CHAIN));
1932 if (copy->context.rgpChain)
1934 BOOL ret = TRUE;
1935 DWORD i;
1937 memset(copy->context.rgpChain, 0,
1938 (iChain + 1) * sizeof(PCERT_SIMPLE_CHAIN));
1939 if (iChain)
1941 for (i = 0; ret && iChain && i < iChain - 1; i++)
1943 copy->context.rgpChain[i] =
1944 CRYPT_CopySimpleChainToElement(chain->context.rgpChain[i],
1945 chain->context.rgpChain[i]->cElement - 1);
1946 if (!copy->context.rgpChain[i])
1947 ret = FALSE;
1950 else
1951 i = 0;
1952 if (ret)
1954 copy->context.rgpChain[i] =
1955 CRYPT_CopySimpleChainToElement(chain->context.rgpChain[i],
1956 iElement);
1957 if (!copy->context.rgpChain[i])
1958 ret = FALSE;
1960 if (!ret)
1962 CRYPT_FreeChainContext(copy);
1963 copy = NULL;
1965 else
1966 copy->context.cChain = iChain + 1;
1968 else
1970 CryptMemFree(copy);
1971 copy = NULL;
1974 return copy;
1977 static PCertificateChain CRYPT_BuildAlternateContextFromChain(
1978 HCERTCHAINENGINE hChainEngine, LPFILETIME pTime, HCERTSTORE hAdditionalStore,
1979 PCertificateChain chain)
1981 PCertificateChainEngine engine = (PCertificateChainEngine)hChainEngine;
1982 PCertificateChain alternate;
1984 TRACE("(%p, %p, %p, %p)\n", hChainEngine, pTime, hAdditionalStore, chain);
1986 /* Always start with the last "lower quality" chain to ensure a consistent
1987 * order of alternate creation:
1989 if (chain->context.cLowerQualityChainContext)
1990 chain = (PCertificateChain)chain->context.rgpLowerQualityChainContext[
1991 chain->context.cLowerQualityChainContext - 1];
1992 /* A chain with only one element can't have any alternates */
1993 if (chain->context.cChain <= 1 && chain->context.rgpChain[0]->cElement <= 1)
1994 alternate = NULL;
1995 else
1997 DWORD i, j, infoStatus;
1998 PCCERT_CONTEXT alternateIssuer = NULL;
2000 alternate = NULL;
2001 for (i = 0; !alternateIssuer && i < chain->context.cChain; i++)
2002 for (j = 0; !alternateIssuer &&
2003 j < chain->context.rgpChain[i]->cElement - 1; j++)
2005 PCCERT_CONTEXT subject =
2006 chain->context.rgpChain[i]->rgpElement[j]->pCertContext;
2007 PCCERT_CONTEXT prevIssuer = CertDuplicateCertificateContext(
2008 chain->context.rgpChain[i]->rgpElement[j + 1]->pCertContext);
2010 alternateIssuer = CRYPT_GetIssuer(prevIssuer->hCertStore,
2011 subject, prevIssuer, &infoStatus);
2013 if (alternateIssuer)
2015 i--;
2016 j--;
2017 alternate = CRYPT_CopyChainToElement(chain, i, j);
2018 if (alternate)
2020 BOOL ret = CRYPT_AddCertToSimpleChain(engine,
2021 alternate->context.rgpChain[i], alternateIssuer, infoStatus);
2023 /* CRYPT_AddCertToSimpleChain add-ref's the issuer, so free it
2024 * to close the enumeration that found it
2026 CertFreeCertificateContext(alternateIssuer);
2027 if (ret)
2029 ret = CRYPT_BuildSimpleChain(engine, alternate->world,
2030 alternate->context.rgpChain[i]);
2031 if (ret)
2032 CRYPT_CheckSimpleChain(engine,
2033 alternate->context.rgpChain[i], pTime);
2034 CRYPT_CombineTrustStatus(&alternate->context.TrustStatus,
2035 &alternate->context.rgpChain[i]->TrustStatus);
2037 if (!ret)
2039 CRYPT_FreeChainContext(alternate);
2040 alternate = NULL;
2045 TRACE("%p\n", alternate);
2046 return alternate;
2049 #define CHAIN_QUALITY_SIGNATURE_VALID 0x16
2050 #define CHAIN_QUALITY_TIME_VALID 8
2051 #define CHAIN_QUALITY_COMPLETE_CHAIN 4
2052 #define CHAIN_QUALITY_BASIC_CONSTRAINTS 2
2053 #define CHAIN_QUALITY_TRUSTED_ROOT 1
2055 #define CHAIN_QUALITY_HIGHEST \
2056 CHAIN_QUALITY_SIGNATURE_VALID | CHAIN_QUALITY_TIME_VALID | \
2057 CHAIN_QUALITY_COMPLETE_CHAIN | CHAIN_QUALITY_BASIC_CONSTRAINTS | \
2058 CHAIN_QUALITY_TRUSTED_ROOT
2060 #define IS_TRUST_ERROR_SET(TrustStatus, bits) \
2061 (TrustStatus)->dwErrorStatus & (bits)
2063 static DWORD CRYPT_ChainQuality(const CertificateChain *chain)
2065 DWORD quality = CHAIN_QUALITY_HIGHEST;
2067 if (IS_TRUST_ERROR_SET(&chain->context.TrustStatus,
2068 CERT_TRUST_IS_UNTRUSTED_ROOT))
2069 quality &= ~CHAIN_QUALITY_TRUSTED_ROOT;
2070 if (IS_TRUST_ERROR_SET(&chain->context.TrustStatus,
2071 CERT_TRUST_INVALID_BASIC_CONSTRAINTS))
2072 quality &= ~CHAIN_QUALITY_BASIC_CONSTRAINTS;
2073 if (IS_TRUST_ERROR_SET(&chain->context.TrustStatus,
2074 CERT_TRUST_IS_PARTIAL_CHAIN))
2075 quality &= ~CHAIN_QUALITY_COMPLETE_CHAIN;
2076 if (IS_TRUST_ERROR_SET(&chain->context.TrustStatus,
2077 CERT_TRUST_IS_NOT_TIME_VALID | CERT_TRUST_IS_NOT_TIME_NESTED))
2078 quality &= ~CHAIN_QUALITY_TIME_VALID;
2079 if (IS_TRUST_ERROR_SET(&chain->context.TrustStatus,
2080 CERT_TRUST_IS_NOT_SIGNATURE_VALID))
2081 quality &= ~CHAIN_QUALITY_SIGNATURE_VALID;
2082 return quality;
2085 /* Chooses the highest quality chain among chain and its "lower quality"
2086 * alternate chains. Returns the highest quality chain, with all other
2087 * chains as lower quality chains of it.
2089 static PCertificateChain CRYPT_ChooseHighestQualityChain(
2090 PCertificateChain chain)
2092 DWORD i;
2094 /* There are always only two chains being considered: chain, and an
2095 * alternate at chain->rgpLowerQualityChainContext[i]. If the alternate
2096 * has a higher quality than chain, the alternate gets assigned the lower
2097 * quality contexts, with chain taking the alternate's place among the
2098 * lower quality contexts.
2100 for (i = 0; i < chain->context.cLowerQualityChainContext; i++)
2102 PCertificateChain alternate =
2103 (PCertificateChain)chain->context.rgpLowerQualityChainContext[i];
2105 if (CRYPT_ChainQuality(alternate) > CRYPT_ChainQuality(chain))
2107 alternate->context.cLowerQualityChainContext =
2108 chain->context.cLowerQualityChainContext;
2109 alternate->context.rgpLowerQualityChainContext =
2110 chain->context.rgpLowerQualityChainContext;
2111 alternate->context.rgpLowerQualityChainContext[i] =
2112 (PCCERT_CHAIN_CONTEXT)chain;
2113 chain->context.cLowerQualityChainContext = 0;
2114 chain->context.rgpLowerQualityChainContext = NULL;
2115 chain = alternate;
2118 return chain;
2121 static BOOL CRYPT_AddAlternateChainToChain(PCertificateChain chain,
2122 const CertificateChain *alternate)
2124 BOOL ret;
2126 if (chain->context.cLowerQualityChainContext)
2127 chain->context.rgpLowerQualityChainContext =
2128 CryptMemRealloc(chain->context.rgpLowerQualityChainContext,
2129 (chain->context.cLowerQualityChainContext + 1) *
2130 sizeof(PCCERT_CHAIN_CONTEXT));
2131 else
2132 chain->context.rgpLowerQualityChainContext =
2133 CryptMemAlloc(sizeof(PCCERT_CHAIN_CONTEXT));
2134 if (chain->context.rgpLowerQualityChainContext)
2136 chain->context.rgpLowerQualityChainContext[
2137 chain->context.cLowerQualityChainContext++] =
2138 (PCCERT_CHAIN_CONTEXT)alternate;
2139 ret = TRUE;
2141 else
2142 ret = FALSE;
2143 return ret;
2146 static PCERT_CHAIN_ELEMENT CRYPT_FindIthElementInChain(
2147 const CERT_CHAIN_CONTEXT *chain, DWORD i)
2149 DWORD j, iElement;
2150 PCERT_CHAIN_ELEMENT element = NULL;
2152 for (j = 0, iElement = 0; !element && j < chain->cChain; j++)
2154 if (iElement + chain->rgpChain[j]->cElement < i)
2155 iElement += chain->rgpChain[j]->cElement;
2156 else
2157 element = chain->rgpChain[j]->rgpElement[i - iElement];
2159 return element;
2162 typedef struct _CERT_CHAIN_PARA_NO_EXTRA_FIELDS {
2163 DWORD cbSize;
2164 CERT_USAGE_MATCH RequestedUsage;
2165 } CERT_CHAIN_PARA_NO_EXTRA_FIELDS, *PCERT_CHAIN_PARA_NO_EXTRA_FIELDS;
2167 static void CRYPT_VerifyChainRevocation(PCERT_CHAIN_CONTEXT chain,
2168 LPFILETIME pTime, const CERT_CHAIN_PARA *pChainPara, DWORD chainFlags)
2170 DWORD cContext;
2172 if (chainFlags & CERT_CHAIN_REVOCATION_CHECK_END_CERT)
2173 cContext = 1;
2174 else if ((chainFlags & CERT_CHAIN_REVOCATION_CHECK_CHAIN) ||
2175 (chainFlags & CERT_CHAIN_REVOCATION_CHECK_CHAIN_EXCLUDE_ROOT))
2177 DWORD i;
2179 for (i = 0, cContext = 0; i < chain->cChain; i++)
2181 if (i < chain->cChain - 1 ||
2182 chainFlags & CERT_CHAIN_REVOCATION_CHECK_CHAIN)
2183 cContext += chain->rgpChain[i]->cElement;
2184 else
2185 cContext += chain->rgpChain[i]->cElement - 1;
2188 else
2189 cContext = 0;
2190 if (cContext)
2192 PCCERT_CONTEXT *contexts =
2193 CryptMemAlloc(cContext * sizeof(PCCERT_CONTEXT *));
2195 if (contexts)
2197 DWORD i, j, iContext, revocationFlags;
2198 CERT_REVOCATION_PARA revocationPara = { sizeof(revocationPara), 0 };
2199 CERT_REVOCATION_STATUS revocationStatus =
2200 { sizeof(revocationStatus), 0 };
2201 BOOL ret;
2203 for (i = 0, iContext = 0; iContext < cContext && i < chain->cChain;
2204 i++)
2206 for (j = 0; iContext < cContext &&
2207 j < chain->rgpChain[i]->cElement; j++)
2208 contexts[iContext++] =
2209 chain->rgpChain[i]->rgpElement[j]->pCertContext;
2211 revocationFlags = CERT_VERIFY_REV_CHAIN_FLAG;
2212 if (chainFlags & CERT_CHAIN_REVOCATION_CHECK_CACHE_ONLY)
2213 revocationFlags |= CERT_VERIFY_CACHE_ONLY_BASED_REVOCATION;
2214 if (chainFlags & CERT_CHAIN_REVOCATION_ACCUMULATIVE_TIMEOUT)
2215 revocationFlags |= CERT_VERIFY_REV_ACCUMULATIVE_TIMEOUT_FLAG;
2216 revocationPara.pftTimeToUse = pTime;
2217 if (pChainPara->cbSize == sizeof(CERT_CHAIN_PARA))
2219 revocationPara.dwUrlRetrievalTimeout =
2220 pChainPara->dwUrlRetrievalTimeout;
2221 revocationPara.fCheckFreshnessTime =
2222 pChainPara->fCheckRevocationFreshnessTime;
2223 revocationPara.dwFreshnessTime =
2224 pChainPara->dwRevocationFreshnessTime;
2226 ret = CertVerifyRevocation(X509_ASN_ENCODING,
2227 CERT_CONTEXT_REVOCATION_TYPE, cContext, (void **)contexts,
2228 revocationFlags, &revocationPara, &revocationStatus);
2229 if (!ret)
2231 PCERT_CHAIN_ELEMENT element =
2232 CRYPT_FindIthElementInChain(chain, revocationStatus.dwIndex);
2233 DWORD error;
2235 switch (revocationStatus.dwError)
2237 case CRYPT_E_NO_REVOCATION_CHECK:
2238 case CRYPT_E_NO_REVOCATION_DLL:
2239 case CRYPT_E_NOT_IN_REVOCATION_DATABASE:
2240 error = CERT_TRUST_REVOCATION_STATUS_UNKNOWN;
2241 break;
2242 case CRYPT_E_REVOCATION_OFFLINE:
2243 error = CERT_TRUST_IS_OFFLINE_REVOCATION;
2244 break;
2245 case CRYPT_E_REVOKED:
2246 error = CERT_TRUST_IS_REVOKED;
2247 break;
2248 default:
2249 WARN("unmapped error %08x\n", revocationStatus.dwError);
2250 error = 0;
2252 if (element)
2254 /* FIXME: set element's pRevocationInfo member */
2255 element->TrustStatus.dwErrorStatus |= error;
2257 chain->TrustStatus.dwErrorStatus |= error;
2259 CryptMemFree(contexts);
2264 static void dump_usage_match(LPCSTR name, const CERT_USAGE_MATCH *usageMatch)
2266 DWORD i;
2268 TRACE_(chain)("%s: %s\n", name,
2269 usageMatch->dwType == USAGE_MATCH_TYPE_AND ? "AND" : "OR");
2270 for (i = 0; i < usageMatch->Usage.cUsageIdentifier; i++)
2271 TRACE_(chain)("%s\n", usageMatch->Usage.rgpszUsageIdentifier[i]);
2274 static void dump_chain_para(const CERT_CHAIN_PARA *pChainPara)
2276 TRACE_(chain)("%d\n", pChainPara->cbSize);
2277 if (pChainPara->cbSize >= sizeof(CERT_CHAIN_PARA_NO_EXTRA_FIELDS))
2278 dump_usage_match("RequestedUsage", &pChainPara->RequestedUsage);
2279 if (pChainPara->cbSize >= sizeof(CERT_CHAIN_PARA))
2281 dump_usage_match("RequestedIssuancePolicy",
2282 &pChainPara->RequestedIssuancePolicy);
2283 TRACE_(chain)("%d\n", pChainPara->dwUrlRetrievalTimeout);
2284 TRACE_(chain)("%d\n", pChainPara->fCheckRevocationFreshnessTime);
2285 TRACE_(chain)("%d\n", pChainPara->dwRevocationFreshnessTime);
2289 BOOL WINAPI CertGetCertificateChain(HCERTCHAINENGINE hChainEngine,
2290 PCCERT_CONTEXT pCertContext, LPFILETIME pTime, HCERTSTORE hAdditionalStore,
2291 PCERT_CHAIN_PARA pChainPara, DWORD dwFlags, LPVOID pvReserved,
2292 PCCERT_CHAIN_CONTEXT* ppChainContext)
2294 BOOL ret;
2295 PCertificateChain chain = NULL;
2297 TRACE("(%p, %p, %p, %p, %p, %08x, %p, %p)\n", hChainEngine, pCertContext,
2298 pTime, hAdditionalStore, pChainPara, dwFlags, pvReserved, ppChainContext);
2300 if (ppChainContext)
2301 *ppChainContext = NULL;
2302 if (!pChainPara)
2304 SetLastError(E_INVALIDARG);
2305 return FALSE;
2307 if (!pCertContext->pCertInfo->SignatureAlgorithm.pszObjId)
2309 SetLastError(ERROR_INVALID_DATA);
2310 return FALSE;
2313 if (!hChainEngine)
2314 hChainEngine = CRYPT_GetDefaultChainEngine();
2315 if (TRACE_ON(chain))
2316 dump_chain_para(pChainPara);
2317 /* FIXME: what about HCCE_LOCAL_MACHINE? */
2318 ret = CRYPT_BuildCandidateChainFromCert(hChainEngine, pCertContext, pTime,
2319 hAdditionalStore, &chain);
2320 if (ret)
2322 PCertificateChain alternate = NULL;
2323 PCERT_CHAIN_CONTEXT pChain;
2325 do {
2326 alternate = CRYPT_BuildAlternateContextFromChain(hChainEngine,
2327 pTime, hAdditionalStore, chain);
2329 /* Alternate contexts are added as "lower quality" contexts of
2330 * chain, to avoid loops in alternate chain creation.
2331 * The highest-quality chain is chosen at the end.
2333 if (alternate)
2334 ret = CRYPT_AddAlternateChainToChain(chain, alternate);
2335 } while (ret && alternate);
2336 chain = CRYPT_ChooseHighestQualityChain(chain);
2337 if (!(dwFlags & CERT_CHAIN_RETURN_LOWER_QUALITY_CONTEXTS))
2338 CRYPT_FreeLowerQualityChains(chain);
2339 pChain = (PCERT_CHAIN_CONTEXT)chain;
2340 CRYPT_VerifyChainRevocation(pChain, pTime, pChainPara, dwFlags);
2341 if (ppChainContext)
2342 *ppChainContext = pChain;
2343 else
2344 CertFreeCertificateChain(pChain);
2346 TRACE("returning %d\n", ret);
2347 return ret;
2350 PCCERT_CHAIN_CONTEXT WINAPI CertDuplicateCertificateChain(
2351 PCCERT_CHAIN_CONTEXT pChainContext)
2353 PCertificateChain chain = (PCertificateChain)pChainContext;
2355 TRACE("(%p)\n", pChainContext);
2357 if (chain)
2358 InterlockedIncrement(&chain->ref);
2359 return pChainContext;
2362 VOID WINAPI CertFreeCertificateChain(PCCERT_CHAIN_CONTEXT pChainContext)
2364 PCertificateChain chain = (PCertificateChain)pChainContext;
2366 TRACE("(%p)\n", pChainContext);
2368 if (chain)
2370 if (InterlockedDecrement(&chain->ref) == 0)
2371 CRYPT_FreeChainContext(chain);
2375 static void find_element_with_error(PCCERT_CHAIN_CONTEXT chain, DWORD error,
2376 LONG *iChain, LONG *iElement)
2378 DWORD i, j;
2380 for (i = 0; i < chain->cChain; i++)
2381 for (j = 0; j < chain->rgpChain[i]->cElement; j++)
2382 if (chain->rgpChain[i]->rgpElement[j]->TrustStatus.dwErrorStatus &
2383 error)
2385 *iChain = i;
2386 *iElement = j;
2387 return;
2391 static BOOL WINAPI verify_base_policy(LPCSTR szPolicyOID,
2392 PCCERT_CHAIN_CONTEXT pChainContext, PCERT_CHAIN_POLICY_PARA pPolicyPara,
2393 PCERT_CHAIN_POLICY_STATUS pPolicyStatus)
2395 pPolicyStatus->lChainIndex = pPolicyStatus->lElementIndex = -1;
2396 if (pChainContext->TrustStatus.dwErrorStatus &
2397 CERT_TRUST_IS_NOT_SIGNATURE_VALID)
2399 pPolicyStatus->dwError = TRUST_E_CERT_SIGNATURE;
2400 find_element_with_error(pChainContext,
2401 CERT_TRUST_IS_NOT_SIGNATURE_VALID, &pPolicyStatus->lChainIndex,
2402 &pPolicyStatus->lElementIndex);
2404 else if (pChainContext->TrustStatus.dwErrorStatus &
2405 CERT_TRUST_IS_UNTRUSTED_ROOT)
2407 pPolicyStatus->dwError = CERT_E_UNTRUSTEDROOT;
2408 find_element_with_error(pChainContext,
2409 CERT_TRUST_IS_UNTRUSTED_ROOT, &pPolicyStatus->lChainIndex,
2410 &pPolicyStatus->lElementIndex);
2412 else if (pChainContext->TrustStatus.dwErrorStatus & CERT_TRUST_IS_CYCLIC)
2414 pPolicyStatus->dwError = CERT_E_CHAINING;
2415 find_element_with_error(pChainContext, CERT_TRUST_IS_CYCLIC,
2416 &pPolicyStatus->lChainIndex, &pPolicyStatus->lElementIndex);
2417 /* For a cyclic chain, which element is a cycle isn't meaningful */
2418 pPolicyStatus->lElementIndex = -1;
2420 else
2421 pPolicyStatus->dwError = NO_ERROR;
2422 return TRUE;
2425 static BYTE msTestPubKey1[] = {
2426 0x30,0x47,0x02,0x40,0x81,0x55,0x22,0xb9,0x8a,0xa4,0x6f,0xed,0xd6,0xe7,0xd9,
2427 0x66,0x0f,0x55,0xbc,0xd7,0xcd,0xd5,0xbc,0x4e,0x40,0x02,0x21,0xa2,0xb1,0xf7,
2428 0x87,0x30,0x85,0x5e,0xd2,0xf2,0x44,0xb9,0xdc,0x9b,0x75,0xb6,0xfb,0x46,0x5f,
2429 0x42,0xb6,0x9d,0x23,0x36,0x0b,0xde,0x54,0x0f,0xcd,0xbd,0x1f,0x99,0x2a,0x10,
2430 0x58,0x11,0xcb,0x40,0xcb,0xb5,0xa7,0x41,0x02,0x03,0x01,0x00,0x01 };
2431 static BYTE msTestPubKey2[] = {
2432 0x30,0x47,0x02,0x40,0x9c,0x50,0x05,0x1d,0xe2,0x0e,0x4c,0x53,0xd8,0xd9,0xb5,
2433 0xe5,0xfd,0xe9,0xe3,0xad,0x83,0x4b,0x80,0x08,0xd9,0xdc,0xe8,0xe8,0x35,0xf8,
2434 0x11,0xf1,0xe9,0x9b,0x03,0x7a,0x65,0x64,0x76,0x35,0xce,0x38,0x2c,0xf2,0xb6,
2435 0x71,0x9e,0x06,0xd9,0xbf,0xbb,0x31,0x69,0xa3,0xf6,0x30,0xa0,0x78,0x7b,0x18,
2436 0xdd,0x50,0x4d,0x79,0x1e,0xeb,0x61,0xc1,0x02,0x03,0x01,0x00,0x01 };
2438 static BOOL WINAPI verify_authenticode_policy(LPCSTR szPolicyOID,
2439 PCCERT_CHAIN_CONTEXT pChainContext, PCERT_CHAIN_POLICY_PARA pPolicyPara,
2440 PCERT_CHAIN_POLICY_STATUS pPolicyStatus)
2442 BOOL ret = verify_base_policy(szPolicyOID, pChainContext, pPolicyPara,
2443 pPolicyStatus);
2445 if (ret && pPolicyStatus->dwError == CERT_E_UNTRUSTEDROOT)
2447 CERT_PUBLIC_KEY_INFO msPubKey = { { 0 } };
2448 BOOL isMSTestRoot = FALSE;
2449 PCCERT_CONTEXT failingCert =
2450 pChainContext->rgpChain[pPolicyStatus->lChainIndex]->
2451 rgpElement[pPolicyStatus->lElementIndex]->pCertContext;
2452 DWORD i;
2453 CRYPT_DATA_BLOB keyBlobs[] = {
2454 { sizeof(msTestPubKey1), msTestPubKey1 },
2455 { sizeof(msTestPubKey2), msTestPubKey2 },
2458 /* Check whether the root is an MS test root */
2459 for (i = 0; !isMSTestRoot && i < sizeof(keyBlobs) / sizeof(keyBlobs[0]);
2460 i++)
2462 msPubKey.PublicKey.cbData = keyBlobs[i].cbData;
2463 msPubKey.PublicKey.pbData = keyBlobs[i].pbData;
2464 if (CertComparePublicKeyInfo(
2465 X509_ASN_ENCODING | PKCS_7_ASN_ENCODING,
2466 &failingCert->pCertInfo->SubjectPublicKeyInfo, &msPubKey))
2467 isMSTestRoot = TRUE;
2469 if (isMSTestRoot)
2470 pPolicyStatus->dwError = CERT_E_UNTRUSTEDTESTROOT;
2472 return ret;
2475 static BOOL WINAPI verify_basic_constraints_policy(LPCSTR szPolicyOID,
2476 PCCERT_CHAIN_CONTEXT pChainContext, PCERT_CHAIN_POLICY_PARA pPolicyPara,
2477 PCERT_CHAIN_POLICY_STATUS pPolicyStatus)
2479 pPolicyStatus->lChainIndex = pPolicyStatus->lElementIndex = -1;
2480 if (pChainContext->TrustStatus.dwErrorStatus &
2481 CERT_TRUST_INVALID_BASIC_CONSTRAINTS)
2483 pPolicyStatus->dwError = TRUST_E_BASIC_CONSTRAINTS;
2484 find_element_with_error(pChainContext,
2485 CERT_TRUST_INVALID_BASIC_CONSTRAINTS, &pPolicyStatus->lChainIndex,
2486 &pPolicyStatus->lElementIndex);
2488 else
2489 pPolicyStatus->dwError = NO_ERROR;
2490 return TRUE;
2493 static BOOL match_dns_to_subject_alt_name(PCERT_EXTENSION ext,
2494 LPCWSTR server_name)
2496 BOOL matches = FALSE;
2497 CERT_ALT_NAME_INFO *subjectName;
2498 DWORD size;
2500 TRACE_(chain)("%s\n", debugstr_w(server_name));
2501 /* This could be spoofed by the embedded NULL vulnerability, since the
2502 * returned CERT_ALT_NAME_INFO doesn't have a way to indicate the
2503 * encoded length of a name. Fortunately CryptDecodeObjectEx fails if
2504 * the encoded form of the name contains a NULL.
2506 if (CryptDecodeObjectEx(X509_ASN_ENCODING, X509_ALTERNATE_NAME,
2507 ext->Value.pbData, ext->Value.cbData,
2508 CRYPT_DECODE_ALLOC_FLAG | CRYPT_DECODE_NOCOPY_FLAG, NULL,
2509 &subjectName, &size))
2511 DWORD i;
2513 /* RFC 5280 states that multiple instances of each name type may exist,
2514 * in section 4.2.1.6:
2515 * "Multiple name forms, and multiple instances of each name form,
2516 * MAY be included."
2517 * It doesn't specify the behavior in such cases, but both RFC 2818
2518 * and RFC 2595 explicitly accept a certificate if any name matches.
2520 for (i = 0; !matches && i < subjectName->cAltEntry; i++)
2522 if (subjectName->rgAltEntry[i].dwAltNameChoice ==
2523 CERT_ALT_NAME_DNS_NAME)
2525 TRACE_(chain)("dNSName: %s\n", debugstr_w(
2526 subjectName->rgAltEntry[i].u.pwszDNSName));
2527 if (!strcmpiW(server_name,
2528 subjectName->rgAltEntry[i].u.pwszDNSName))
2529 matches = TRUE;
2532 LocalFree(subjectName);
2534 return matches;
2537 static BOOL find_matching_domain_component(CERT_NAME_INFO *name,
2538 LPCWSTR component)
2540 BOOL matches = FALSE;
2541 DWORD i, j;
2543 for (i = 0; !matches && i < name->cRDN; i++)
2544 for (j = 0; j < name->rgRDN[i].cRDNAttr; j++)
2545 if (!strcmp(szOID_DOMAIN_COMPONENT,
2546 name->rgRDN[i].rgRDNAttr[j].pszObjId))
2548 PCERT_RDN_ATTR attr;
2550 attr = &name->rgRDN[i].rgRDNAttr[j];
2551 /* Compare with memicmpW rather than strcmpiW in order to avoid
2552 * a match with a string with an embedded NULL. The component
2553 * must match one domain component attribute's entire string
2554 * value with a case-insensitive match.
2556 matches = !memicmpW(component, (LPWSTR)attr->Value.pbData,
2557 attr->Value.cbData / sizeof(WCHAR));
2559 return matches;
2562 static BOOL match_domain_component(LPCWSTR allowed_component, DWORD allowed_len,
2563 LPCWSTR server_component, DWORD server_len, BOOL allow_wildcards,
2564 BOOL *see_wildcard)
2566 LPCWSTR allowed_ptr, server_ptr;
2567 BOOL matches = TRUE;
2569 *see_wildcard = FALSE;
2570 if (server_len < allowed_len)
2572 WARN_(chain)("domain component %s too short for %s\n",
2573 debugstr_wn(server_component, server_len),
2574 debugstr_wn(allowed_component, allowed_len));
2575 /* A domain component can't contain a wildcard character, so a domain
2576 * component shorter than the allowed string can't produce a match.
2578 return FALSE;
2580 for (allowed_ptr = allowed_component, server_ptr = server_component;
2581 matches && allowed_ptr - allowed_component < allowed_len;
2582 allowed_ptr++, server_ptr++)
2584 if (*allowed_ptr == '*')
2586 if (allowed_ptr - allowed_component < allowed_len - 1)
2588 WARN_(chain)("non-wildcard characters after wildcard not supported\n");
2589 matches = FALSE;
2591 else if (!allow_wildcards)
2593 WARN_(chain)("wildcard after non-wildcard component\n");
2594 matches = FALSE;
2596 else
2598 /* the preceding characters must have matched, so the rest of
2599 * the component also matches.
2601 *see_wildcard = TRUE;
2602 break;
2605 matches = tolowerW(*allowed_ptr) == tolowerW(*server_ptr);
2607 if (matches && server_ptr - server_component < server_len)
2609 /* If there are unmatched characters in the server domain component,
2610 * the server domain only matches if the allowed string ended in a '*'.
2612 matches = *allowed_ptr == '*';
2614 return matches;
2617 static BOOL match_common_name(LPCWSTR server_name, PCERT_RDN_ATTR nameAttr)
2619 LPCWSTR allowed = (LPCWSTR)nameAttr->Value.pbData;
2620 LPCWSTR allowed_component = allowed;
2621 DWORD allowed_len = nameAttr->Value.cbData / sizeof(WCHAR);
2622 LPCWSTR server_component = server_name;
2623 DWORD server_len = strlenW(server_name);
2624 BOOL matches = TRUE, allow_wildcards = TRUE;
2626 TRACE_(chain)("CN = %s\n", debugstr_wn(allowed_component, allowed_len));
2628 /* From RFC 2818 (HTTP over TLS), section 3.1:
2629 * "Names may contain the wildcard character * which is considered to match
2630 * any single domain name component or component fragment. E.g.,
2631 * *.a.com matches foo.a.com but not bar.foo.a.com. f*.com matches foo.com
2632 * but not bar.com."
2634 * And from RFC 2595 (Using TLS with IMAP, POP3 and ACAP), section 2.4:
2635 * "A "*" wildcard character MAY be used as the left-most name component in
2636 * the certificate. For example, *.example.com would match a.example.com,
2637 * foo.example.com, etc. but would not match example.com."
2639 * There are other protocols which use TLS, and none of them is
2640 * authoritative. This accepts certificates in common usage, e.g.
2641 * *.domain.com matches www.domain.com but not domain.com, and
2642 * www*.domain.com matches www1.domain.com but not mail.domain.com.
2644 do {
2645 LPCWSTR allowed_dot, server_dot;
2647 allowed_dot = memchrW(allowed_component, '.',
2648 allowed_len - (allowed_component - allowed));
2649 server_dot = memchrW(server_component, '.',
2650 server_len - (server_component - server_name));
2651 /* The number of components must match */
2652 if ((!allowed_dot && server_dot) || (allowed_dot && !server_dot))
2654 if (!allowed_dot)
2655 WARN_(chain)("%s: too many components for CN=%s\n",
2656 debugstr_w(server_name), debugstr_wn(allowed, allowed_len));
2657 else
2658 WARN_(chain)("%s: not enough components for CN=%s\n",
2659 debugstr_w(server_name), debugstr_wn(allowed, allowed_len));
2660 matches = FALSE;
2662 else
2664 LPCWSTR allowed_end, server_end;
2665 BOOL has_wildcard;
2667 allowed_end = allowed_dot ? allowed_dot : allowed + allowed_len;
2668 server_end = server_dot ? server_dot : server_name + server_len;
2669 matches = match_domain_component(allowed_component,
2670 allowed_end - allowed_component, server_component,
2671 server_end - server_component, allow_wildcards, &has_wildcard);
2672 /* Once a non-wildcard component is seen, no wildcard components
2673 * may follow
2675 if (!has_wildcard)
2676 allow_wildcards = FALSE;
2677 if (matches)
2679 allowed_component = allowed_dot ? allowed_dot + 1 : allowed_end;
2680 server_component = server_dot ? server_dot + 1 : server_end;
2683 } while (matches && allowed_component &&
2684 allowed_component - allowed < allowed_len &&
2685 server_component && server_component - server_name < server_len);
2686 TRACE_(chain)("returning %d\n", matches);
2687 return matches;
2690 static BOOL match_dns_to_subject_dn(PCCERT_CONTEXT cert, LPCWSTR server_name)
2692 BOOL matches = FALSE;
2693 CERT_NAME_INFO *name;
2694 DWORD size;
2696 TRACE_(chain)("%s\n", debugstr_w(server_name));
2697 if (CryptDecodeObjectEx(X509_ASN_ENCODING, X509_UNICODE_NAME,
2698 cert->pCertInfo->Subject.pbData, cert->pCertInfo->Subject.cbData,
2699 CRYPT_DECODE_ALLOC_FLAG | CRYPT_DECODE_NOCOPY_FLAG, NULL,
2700 &name, &size))
2702 /* If the subject distinguished name contains any name components,
2703 * make sure all of them are present.
2705 if (CertFindRDNAttr(szOID_DOMAIN_COMPONENT, name))
2707 LPCWSTR ptr = server_name;
2709 matches = TRUE;
2710 do {
2711 LPCWSTR dot = strchrW(ptr, '.'), end;
2712 /* 254 is the maximum DNS label length, see RFC 1035 */
2713 WCHAR component[255];
2714 DWORD len;
2716 end = dot ? dot : ptr + strlenW(ptr);
2717 len = end - ptr;
2718 if (len >= sizeof(component) / sizeof(component[0]))
2720 WARN_(chain)("domain component %s too long\n",
2721 debugstr_wn(ptr, len));
2722 matches = FALSE;
2724 else
2726 memcpy(component, ptr, len * sizeof(WCHAR));
2727 component[len] = 0;
2728 matches = find_matching_domain_component(name, component);
2730 ptr = dot ? dot + 1 : end;
2731 } while (matches && ptr && *ptr);
2733 else
2735 PCERT_RDN_ATTR attr;
2737 /* If the certificate isn't using a DN attribute in the name, make
2738 * make sure the common name matches.
2740 if ((attr = CertFindRDNAttr(szOID_COMMON_NAME, name)))
2741 matches = match_common_name(server_name, attr);
2743 LocalFree(name);
2745 return matches;
2748 static BOOL WINAPI verify_ssl_policy(LPCSTR szPolicyOID,
2749 PCCERT_CHAIN_CONTEXT pChainContext, PCERT_CHAIN_POLICY_PARA pPolicyPara,
2750 PCERT_CHAIN_POLICY_STATUS pPolicyStatus)
2752 pPolicyStatus->lChainIndex = pPolicyStatus->lElementIndex = -1;
2753 if (pChainContext->TrustStatus.dwErrorStatus &
2754 CERT_TRUST_IS_NOT_SIGNATURE_VALID)
2756 pPolicyStatus->dwError = TRUST_E_CERT_SIGNATURE;
2757 find_element_with_error(pChainContext,
2758 CERT_TRUST_IS_NOT_SIGNATURE_VALID, &pPolicyStatus->lChainIndex,
2759 &pPolicyStatus->lElementIndex);
2761 else if (pChainContext->TrustStatus.dwErrorStatus &
2762 CERT_TRUST_IS_UNTRUSTED_ROOT)
2764 pPolicyStatus->dwError = CERT_E_UNTRUSTEDROOT;
2765 find_element_with_error(pChainContext,
2766 CERT_TRUST_IS_UNTRUSTED_ROOT, &pPolicyStatus->lChainIndex,
2767 &pPolicyStatus->lElementIndex);
2769 else if (pChainContext->TrustStatus.dwErrorStatus & CERT_TRUST_IS_CYCLIC)
2771 pPolicyStatus->dwError = CERT_E_UNTRUSTEDROOT;
2772 find_element_with_error(pChainContext,
2773 CERT_TRUST_IS_CYCLIC, &pPolicyStatus->lChainIndex,
2774 &pPolicyStatus->lElementIndex);
2775 /* For a cyclic chain, which element is a cycle isn't meaningful */
2776 pPolicyStatus->lElementIndex = -1;
2778 else if (pChainContext->TrustStatus.dwErrorStatus &
2779 CERT_TRUST_IS_NOT_TIME_VALID)
2781 pPolicyStatus->dwError = CERT_E_EXPIRED;
2782 find_element_with_error(pChainContext,
2783 CERT_TRUST_IS_NOT_TIME_VALID, &pPolicyStatus->lChainIndex,
2784 &pPolicyStatus->lElementIndex);
2786 else
2787 pPolicyStatus->dwError = NO_ERROR;
2788 /* We only need bother checking whether the name in the end certificate
2789 * matches if the chain is otherwise okay.
2791 if (!pPolicyStatus->dwError && pPolicyPara &&
2792 pPolicyPara->cbSize >= sizeof(CERT_CHAIN_POLICY_PARA))
2794 HTTPSPolicyCallbackData *sslPara = pPolicyPara->pvExtraPolicyPara;
2796 if (sslPara && sslPara->u.cbSize >= sizeof(HTTPSPolicyCallbackData))
2798 if (sslPara->dwAuthType == AUTHTYPE_SERVER &&
2799 sslPara->pwszServerName)
2801 PCCERT_CONTEXT cert;
2802 PCERT_EXTENSION altNameExt;
2803 BOOL matches;
2805 cert = pChainContext->rgpChain[0]->rgpElement[0]->pCertContext;
2806 altNameExt = get_subject_alt_name_ext(cert->pCertInfo);
2807 /* If the alternate name extension exists, the name it contains
2808 * is bound to the certificate, so make sure the name matches
2809 * it. Otherwise, look for the server name in the subject
2810 * distinguished name. RFC5280, section 4.2.1.6:
2811 * "Whenever such identities are to be bound into a
2812 * certificate, the subject alternative name (or issuer
2813 * alternative name) extension MUST be used; however, a DNS
2814 * name MAY also be represented in the subject field using the
2815 * domainComponent attribute."
2817 if (altNameExt)
2818 matches = match_dns_to_subject_alt_name(altNameExt,
2819 sslPara->pwszServerName);
2820 else
2821 matches = match_dns_to_subject_dn(cert,
2822 sslPara->pwszServerName);
2823 if (!matches)
2825 pPolicyStatus->dwError = CERT_E_CN_NO_MATCH;
2826 pPolicyStatus->lChainIndex = 0;
2827 pPolicyStatus->lElementIndex = 0;
2832 return TRUE;
2835 static BYTE msPubKey1[] = {
2836 0x30,0x82,0x01,0x0a,0x02,0x82,0x01,0x01,0x00,0xdf,0x08,0xba,0xe3,0x3f,0x6e,
2837 0x64,0x9b,0xf5,0x89,0xaf,0x28,0x96,0x4a,0x07,0x8f,0x1b,0x2e,0x8b,0x3e,0x1d,
2838 0xfc,0xb8,0x80,0x69,0xa3,0xa1,0xce,0xdb,0xdf,0xb0,0x8e,0x6c,0x89,0x76,0x29,
2839 0x4f,0xca,0x60,0x35,0x39,0xad,0x72,0x32,0xe0,0x0b,0xae,0x29,0x3d,0x4c,0x16,
2840 0xd9,0x4b,0x3c,0x9d,0xda,0xc5,0xd3,0xd1,0x09,0xc9,0x2c,0x6f,0xa6,0xc2,0x60,
2841 0x53,0x45,0xdd,0x4b,0xd1,0x55,0xcd,0x03,0x1c,0xd2,0x59,0x56,0x24,0xf3,0xe5,
2842 0x78,0xd8,0x07,0xcc,0xd8,0xb3,0x1f,0x90,0x3f,0xc0,0x1a,0x71,0x50,0x1d,0x2d,
2843 0xa7,0x12,0x08,0x6d,0x7c,0xb0,0x86,0x6c,0xc7,0xba,0x85,0x32,0x07,0xe1,0x61,
2844 0x6f,0xaf,0x03,0xc5,0x6d,0xe5,0xd6,0xa1,0x8f,0x36,0xf6,0xc1,0x0b,0xd1,0x3e,
2845 0x69,0x97,0x48,0x72,0xc9,0x7f,0xa4,0xc8,0xc2,0x4a,0x4c,0x7e,0xa1,0xd1,0x94,
2846 0xa6,0xd7,0xdc,0xeb,0x05,0x46,0x2e,0xb8,0x18,0xb4,0x57,0x1d,0x86,0x49,0xdb,
2847 0x69,0x4a,0x2c,0x21,0xf5,0x5e,0x0f,0x54,0x2d,0x5a,0x43,0xa9,0x7a,0x7e,0x6a,
2848 0x8e,0x50,0x4d,0x25,0x57,0xa1,0xbf,0x1b,0x15,0x05,0x43,0x7b,0x2c,0x05,0x8d,
2849 0xbd,0x3d,0x03,0x8c,0x93,0x22,0x7d,0x63,0xea,0x0a,0x57,0x05,0x06,0x0a,0xdb,
2850 0x61,0x98,0x65,0x2d,0x47,0x49,0xa8,0xe7,0xe6,0x56,0x75,0x5c,0xb8,0x64,0x08,
2851 0x63,0xa9,0x30,0x40,0x66,0xb2,0xf9,0xb6,0xe3,0x34,0xe8,0x67,0x30,0xe1,0x43,
2852 0x0b,0x87,0xff,0xc9,0xbe,0x72,0x10,0x5e,0x23,0xf0,0x9b,0xa7,0x48,0x65,0xbf,
2853 0x09,0x88,0x7b,0xcd,0x72,0xbc,0x2e,0x79,0x9b,0x7b,0x02,0x03,0x01,0x00,0x01 };
2854 static BYTE msPubKey2[] = {
2855 0x30,0x82,0x01,0x0a,0x02,0x82,0x01,0x01,0x00,0xa9,0x02,0xbd,0xc1,0x70,0xe6,
2856 0x3b,0xf2,0x4e,0x1b,0x28,0x9f,0x97,0x78,0x5e,0x30,0xea,0xa2,0xa9,0x8d,0x25,
2857 0x5f,0xf8,0xfe,0x95,0x4c,0xa3,0xb7,0xfe,0x9d,0xa2,0x20,0x3e,0x7c,0x51,0xa2,
2858 0x9b,0xa2,0x8f,0x60,0x32,0x6b,0xd1,0x42,0x64,0x79,0xee,0xac,0x76,0xc9,0x54,
2859 0xda,0xf2,0xeb,0x9c,0x86,0x1c,0x8f,0x9f,0x84,0x66,0xb3,0xc5,0x6b,0x7a,0x62,
2860 0x23,0xd6,0x1d,0x3c,0xde,0x0f,0x01,0x92,0xe8,0x96,0xc4,0xbf,0x2d,0x66,0x9a,
2861 0x9a,0x68,0x26,0x99,0xd0,0x3a,0x2c,0xbf,0x0c,0xb5,0x58,0x26,0xc1,0x46,0xe7,
2862 0x0a,0x3e,0x38,0x96,0x2c,0xa9,0x28,0x39,0xa8,0xec,0x49,0x83,0x42,0xe3,0x84,
2863 0x0f,0xbb,0x9a,0x6c,0x55,0x61,0xac,0x82,0x7c,0xa1,0x60,0x2d,0x77,0x4c,0xe9,
2864 0x99,0xb4,0x64,0x3b,0x9a,0x50,0x1c,0x31,0x08,0x24,0x14,0x9f,0xa9,0xe7,0x91,
2865 0x2b,0x18,0xe6,0x3d,0x98,0x63,0x14,0x60,0x58,0x05,0x65,0x9f,0x1d,0x37,0x52,
2866 0x87,0xf7,0xa7,0xef,0x94,0x02,0xc6,0x1b,0xd3,0xbf,0x55,0x45,0xb3,0x89,0x80,
2867 0xbf,0x3a,0xec,0x54,0x94,0x4e,0xae,0xfd,0xa7,0x7a,0x6d,0x74,0x4e,0xaf,0x18,
2868 0xcc,0x96,0x09,0x28,0x21,0x00,0x57,0x90,0x60,0x69,0x37,0xbb,0x4b,0x12,0x07,
2869 0x3c,0x56,0xff,0x5b,0xfb,0xa4,0x66,0x0a,0x08,0xa6,0xd2,0x81,0x56,0x57,0xef,
2870 0xb6,0x3b,0x5e,0x16,0x81,0x77,0x04,0xda,0xf6,0xbe,0xae,0x80,0x95,0xfe,0xb0,
2871 0xcd,0x7f,0xd6,0xa7,0x1a,0x72,0x5c,0x3c,0xca,0xbc,0xf0,0x08,0xa3,0x22,0x30,
2872 0xb3,0x06,0x85,0xc9,0xb3,0x20,0x77,0x13,0x85,0xdf,0x02,0x03,0x01,0x00,0x01 };
2873 static BYTE msPubKey3[] = {
2874 0x30,0x82,0x02,0x0a,0x02,0x82,0x02,0x01,0x00,0xf3,0x5d,0xfa,0x80,0x67,0xd4,
2875 0x5a,0xa7,0xa9,0x0c,0x2c,0x90,0x20,0xd0,0x35,0x08,0x3c,0x75,0x84,0xcd,0xb7,
2876 0x07,0x89,0x9c,0x89,0xda,0xde,0xce,0xc3,0x60,0xfa,0x91,0x68,0x5a,0x9e,0x94,
2877 0x71,0x29,0x18,0x76,0x7c,0xc2,0xe0,0xc8,0x25,0x76,0x94,0x0e,0x58,0xfa,0x04,
2878 0x34,0x36,0xe6,0xdf,0xaf,0xf7,0x80,0xba,0xe9,0x58,0x0b,0x2b,0x93,0xe5,0x9d,
2879 0x05,0xe3,0x77,0x22,0x91,0xf7,0x34,0x64,0x3c,0x22,0x91,0x1d,0x5e,0xe1,0x09,
2880 0x90,0xbc,0x14,0xfe,0xfc,0x75,0x58,0x19,0xe1,0x79,0xb7,0x07,0x92,0xa3,0xae,
2881 0x88,0x59,0x08,0xd8,0x9f,0x07,0xca,0x03,0x58,0xfc,0x68,0x29,0x6d,0x32,0xd7,
2882 0xd2,0xa8,0xcb,0x4b,0xfc,0xe1,0x0b,0x48,0x32,0x4f,0xe6,0xeb,0xb8,0xad,0x4f,
2883 0xe4,0x5c,0x6f,0x13,0x94,0x99,0xdb,0x95,0xd5,0x75,0xdb,0xa8,0x1a,0xb7,0x94,
2884 0x91,0xb4,0x77,0x5b,0xf5,0x48,0x0c,0x8f,0x6a,0x79,0x7d,0x14,0x70,0x04,0x7d,
2885 0x6d,0xaf,0x90,0xf5,0xda,0x70,0xd8,0x47,0xb7,0xbf,0x9b,0x2f,0x6c,0xe7,0x05,
2886 0xb7,0xe1,0x11,0x60,0xac,0x79,0x91,0x14,0x7c,0xc5,0xd6,0xa6,0xe4,0xe1,0x7e,
2887 0xd5,0xc3,0x7e,0xe5,0x92,0xd2,0x3c,0x00,0xb5,0x36,0x82,0xde,0x79,0xe1,0x6d,
2888 0xf3,0xb5,0x6e,0xf8,0x9f,0x33,0xc9,0xcb,0x52,0x7d,0x73,0x98,0x36,0xdb,0x8b,
2889 0xa1,0x6b,0xa2,0x95,0x97,0x9b,0xa3,0xde,0xc2,0x4d,0x26,0xff,0x06,0x96,0x67,
2890 0x25,0x06,0xc8,0xe7,0xac,0xe4,0xee,0x12,0x33,0x95,0x31,0x99,0xc8,0x35,0x08,
2891 0x4e,0x34,0xca,0x79,0x53,0xd5,0xb5,0xbe,0x63,0x32,0x59,0x40,0x36,0xc0,0xa5,
2892 0x4e,0x04,0x4d,0x3d,0xdb,0x5b,0x07,0x33,0xe4,0x58,0xbf,0xef,0x3f,0x53,0x64,
2893 0xd8,0x42,0x59,0x35,0x57,0xfd,0x0f,0x45,0x7c,0x24,0x04,0x4d,0x9e,0xd6,0x38,
2894 0x74,0x11,0x97,0x22,0x90,0xce,0x68,0x44,0x74,0x92,0x6f,0xd5,0x4b,0x6f,0xb0,
2895 0x86,0xe3,0xc7,0x36,0x42,0xa0,0xd0,0xfc,0xc1,0xc0,0x5a,0xf9,0xa3,0x61,0xb9,
2896 0x30,0x47,0x71,0x96,0x0a,0x16,0xb0,0x91,0xc0,0x42,0x95,0xef,0x10,0x7f,0x28,
2897 0x6a,0xe3,0x2a,0x1f,0xb1,0xe4,0xcd,0x03,0x3f,0x77,0x71,0x04,0xc7,0x20,0xfc,
2898 0x49,0x0f,0x1d,0x45,0x88,0xa4,0xd7,0xcb,0x7e,0x88,0xad,0x8e,0x2d,0xec,0x45,
2899 0xdb,0xc4,0x51,0x04,0xc9,0x2a,0xfc,0xec,0x86,0x9e,0x9a,0x11,0x97,0x5b,0xde,
2900 0xce,0x53,0x88,0xe6,0xe2,0xb7,0xfd,0xac,0x95,0xc2,0x28,0x40,0xdb,0xef,0x04,
2901 0x90,0xdf,0x81,0x33,0x39,0xd9,0xb2,0x45,0xa5,0x23,0x87,0x06,0xa5,0x55,0x89,
2902 0x31,0xbb,0x06,0x2d,0x60,0x0e,0x41,0x18,0x7d,0x1f,0x2e,0xb5,0x97,0xcb,0x11,
2903 0xeb,0x15,0xd5,0x24,0xa5,0x94,0xef,0x15,0x14,0x89,0xfd,0x4b,0x73,0xfa,0x32,
2904 0x5b,0xfc,0xd1,0x33,0x00,0xf9,0x59,0x62,0x70,0x07,0x32,0xea,0x2e,0xab,0x40,
2905 0x2d,0x7b,0xca,0xdd,0x21,0x67,0x1b,0x30,0x99,0x8f,0x16,0xaa,0x23,0xa8,0x41,
2906 0xd1,0xb0,0x6e,0x11,0x9b,0x36,0xc4,0xde,0x40,0x74,0x9c,0xe1,0x58,0x65,0xc1,
2907 0x60,0x1e,0x7a,0x5b,0x38,0xc8,0x8f,0xbb,0x04,0x26,0x7c,0xd4,0x16,0x40,0xe5,
2908 0xb6,0x6b,0x6c,0xaa,0x86,0xfd,0x00,0xbf,0xce,0xc1,0x35,0x02,0x03,0x01,0x00,
2909 0x01 };
2911 static BOOL WINAPI verify_ms_root_policy(LPCSTR szPolicyOID,
2912 PCCERT_CHAIN_CONTEXT pChainContext, PCERT_CHAIN_POLICY_PARA pPolicyPara,
2913 PCERT_CHAIN_POLICY_STATUS pPolicyStatus)
2915 BOOL ret = verify_base_policy(szPolicyOID, pChainContext, pPolicyPara,
2916 pPolicyStatus);
2918 if (ret && !pPolicyStatus->dwError)
2920 CERT_PUBLIC_KEY_INFO msPubKey = { { 0 } };
2921 BOOL isMSRoot = FALSE;
2922 DWORD i;
2923 CRYPT_DATA_BLOB keyBlobs[] = {
2924 { sizeof(msPubKey1), msPubKey1 },
2925 { sizeof(msPubKey2), msPubKey2 },
2926 { sizeof(msPubKey3), msPubKey3 },
2928 PCERT_SIMPLE_CHAIN rootChain =
2929 pChainContext->rgpChain[pChainContext->cChain -1 ];
2930 PCCERT_CONTEXT root =
2931 rootChain->rgpElement[rootChain->cElement - 1]->pCertContext;
2933 for (i = 0; !isMSRoot && i < sizeof(keyBlobs) / sizeof(keyBlobs[0]);
2934 i++)
2936 msPubKey.PublicKey.cbData = keyBlobs[i].cbData;
2937 msPubKey.PublicKey.pbData = keyBlobs[i].pbData;
2938 if (CertComparePublicKeyInfo(
2939 X509_ASN_ENCODING | PKCS_7_ASN_ENCODING,
2940 &root->pCertInfo->SubjectPublicKeyInfo, &msPubKey))
2941 isMSRoot = TRUE;
2943 if (isMSRoot)
2944 pPolicyStatus->lChainIndex = pPolicyStatus->lElementIndex = 0;
2946 return ret;
2949 typedef BOOL (WINAPI *CertVerifyCertificateChainPolicyFunc)(LPCSTR szPolicyOID,
2950 PCCERT_CHAIN_CONTEXT pChainContext, PCERT_CHAIN_POLICY_PARA pPolicyPara,
2951 PCERT_CHAIN_POLICY_STATUS pPolicyStatus);
2953 BOOL WINAPI CertVerifyCertificateChainPolicy(LPCSTR szPolicyOID,
2954 PCCERT_CHAIN_CONTEXT pChainContext, PCERT_CHAIN_POLICY_PARA pPolicyPara,
2955 PCERT_CHAIN_POLICY_STATUS pPolicyStatus)
2957 static HCRYPTOIDFUNCSET set = NULL;
2958 BOOL ret = FALSE;
2959 CertVerifyCertificateChainPolicyFunc verifyPolicy = NULL;
2960 HCRYPTOIDFUNCADDR hFunc = NULL;
2962 TRACE("(%s, %p, %p, %p)\n", debugstr_a(szPolicyOID), pChainContext,
2963 pPolicyPara, pPolicyStatus);
2965 if (!HIWORD(szPolicyOID))
2967 switch (LOWORD(szPolicyOID))
2969 case LOWORD(CERT_CHAIN_POLICY_BASE):
2970 verifyPolicy = verify_base_policy;
2971 break;
2972 case LOWORD(CERT_CHAIN_POLICY_AUTHENTICODE):
2973 verifyPolicy = verify_authenticode_policy;
2974 break;
2975 case LOWORD(CERT_CHAIN_POLICY_SSL):
2976 verifyPolicy = verify_ssl_policy;
2977 break;
2978 case LOWORD(CERT_CHAIN_POLICY_BASIC_CONSTRAINTS):
2979 verifyPolicy = verify_basic_constraints_policy;
2980 break;
2981 case LOWORD(CERT_CHAIN_POLICY_MICROSOFT_ROOT):
2982 verifyPolicy = verify_ms_root_policy;
2983 break;
2984 default:
2985 FIXME("unimplemented for %d\n", LOWORD(szPolicyOID));
2988 if (!verifyPolicy)
2990 if (!set)
2991 set = CryptInitOIDFunctionSet(
2992 CRYPT_OID_VERIFY_CERTIFICATE_CHAIN_POLICY_FUNC, 0);
2993 CryptGetOIDFunctionAddress(set, X509_ASN_ENCODING, szPolicyOID, 0,
2994 (void **)&verifyPolicy, &hFunc);
2996 if (verifyPolicy)
2997 ret = verifyPolicy(szPolicyOID, pChainContext, pPolicyPara,
2998 pPolicyStatus);
2999 if (hFunc)
3000 CryptFreeOIDFunctionAddress(hFunc, 0);
3001 TRACE("returning %d (%08x)\n", ret, pPolicyStatus->dwError);
3002 return ret;