2 * Copyright 2008 Maarten Lankhorst
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 #define NONAMELESSUNION
34 #include "cryptuiapi.h"
36 #include "wine/unicode.h"
37 #include "wine/debug.h"
39 WINE_DEFAULT_DEBUG_CHANNEL(cryptdlg
);
41 static HINSTANCE hInstance
;
43 BOOL WINAPI
DllMain(HINSTANCE hinstDLL
, DWORD fdwReason
, LPVOID lpvReserved
)
45 TRACE("(0x%p, %d, %p)\n", hinstDLL
, fdwReason
, lpvReserved
);
49 case DLL_WINE_PREATTACH
:
50 return FALSE
; /* prefer native version */
51 case DLL_PROCESS_ATTACH
:
52 DisableThreadLibraryCalls(hinstDLL
);
55 case DLL_PROCESS_DETACH
:
63 /***********************************************************************
64 * GetFriendlyNameOfCertA (CRYPTDLG.@)
66 DWORD WINAPI
GetFriendlyNameOfCertA(PCCERT_CONTEXT pccert
, LPSTR pchBuffer
,
69 return CertGetNameStringA(pccert
, CERT_NAME_FRIENDLY_DISPLAY_TYPE
, 0, NULL
,
70 pchBuffer
, cchBuffer
);
73 /***********************************************************************
74 * GetFriendlyNameOfCertW (CRYPTDLG.@)
76 DWORD WINAPI
GetFriendlyNameOfCertW(PCCERT_CONTEXT pccert
, LPWSTR pchBuffer
,
79 return CertGetNameStringW(pccert
, CERT_NAME_FRIENDLY_DISPLAY_TYPE
, 0, NULL
,
80 pchBuffer
, cchBuffer
);
83 /***********************************************************************
84 * CertTrustInit (CRYPTDLG.@)
86 HRESULT WINAPI
CertTrustInit(CRYPT_PROVIDER_DATA
*pProvData
)
88 HRESULT ret
= S_FALSE
;
90 TRACE("(%p)\n", pProvData
);
92 if (pProvData
->padwTrustStepErrors
&&
93 !pProvData
->padwTrustStepErrors
[TRUSTERROR_STEP_FINAL_WVTINIT
])
95 TRACE("returning %08x\n", ret
);
99 /***********************************************************************
100 * CertTrustCertPolicy (CRYPTDLG.@)
102 BOOL WINAPI
CertTrustCertPolicy(CRYPT_PROVIDER_DATA
*pProvData
, DWORD idxSigner
, BOOL fCounterSignerChain
, DWORD idxCounterSigner
)
104 FIXME("(%p, %d, %s, %d)\n", pProvData
, idxSigner
, fCounterSignerChain
? "TRUE" : "FALSE", idxCounterSigner
);
108 /***********************************************************************
109 * CertTrustCleanup (CRYPTDLG.@)
111 HRESULT WINAPI
CertTrustCleanup(CRYPT_PROVIDER_DATA
*pProvData
)
113 FIXME("(%p)\n", pProvData
);
117 static BOOL
CRYPTDLG_CheckOnlineCRL(void)
119 static const WCHAR policyFlagsKey
[] = { 'S','o','f','t','w','a','r','e',
120 '\\','M','i','c','r','o','s','o','f','t','\\','C','r','y','p','t','o','g',
121 'r','a','p','h','y','\\','{','7','8','0','1','e','b','d','0','-','c','f',
122 '4','b','-','1','1','d','0','-','8','5','1','f','-','0','0','6','0','9',
123 '7','9','3','8','7','e','a','}',0 };
124 static const WCHAR policyFlags
[] = { 'P','o','l','i','c','y','F','l','a',
129 if (!RegOpenKeyExW(HKEY_LOCAL_MACHINE
, policyFlagsKey
, 0, KEY_READ
, &key
))
131 DWORD type
, flags
, size
= sizeof(flags
);
133 if (!RegQueryValueExW(key
, policyFlags
, NULL
, &type
, (BYTE
*)&flags
,
134 &size
) && type
== REG_DWORD
)
136 /* The flag values aren't defined in any header I'm aware of, but
137 * this value is well documented on the net.
139 if (flags
& 0x00010000)
147 /* Returns TRUE if pCert is not in the Disallowed system store, or FALSE if it
150 static BOOL
CRYPTDLG_IsCertAllowed(PCCERT_CONTEXT pCert
)
154 DWORD size
= sizeof(hash
);
156 if ((ret
= CertGetCertificateContextProperty(pCert
,
157 CERT_SIGNATURE_HASH_PROP_ID
, hash
, &size
)))
159 static const WCHAR disallowedW
[] =
160 { 'D','i','s','a','l','l','o','w','e','d',0 };
161 HCERTSTORE disallowed
= CertOpenStore(CERT_STORE_PROV_SYSTEM_W
,
162 X509_ASN_ENCODING
, 0, CERT_SYSTEM_STORE_CURRENT_USER
, disallowedW
);
166 PCCERT_CONTEXT found
= CertFindCertificateInStore(disallowed
,
167 X509_ASN_ENCODING
, 0, CERT_FIND_SIGNATURE_HASH
, hash
, NULL
);
172 CertFreeCertificateContext(found
);
174 CertCloseStore(disallowed
, 0);
180 static DWORD
CRYPTDLG_TrustStatusToConfidence(DWORD errorStatus
)
182 DWORD confidence
= 0;
185 if (!(errorStatus
& CERT_TRUST_IS_NOT_SIGNATURE_VALID
))
186 confidence
|= CERT_CONFIDENCE_SIG
;
187 if (!(errorStatus
& CERT_TRUST_IS_NOT_TIME_VALID
))
188 confidence
|= CERT_CONFIDENCE_TIME
;
189 if (!(errorStatus
& CERT_TRUST_IS_NOT_TIME_NESTED
))
190 confidence
|= CERT_CONFIDENCE_TIMENEST
;
194 static BOOL
CRYPTDLG_CopyChain(CRYPT_PROVIDER_DATA
*data
,
195 PCCERT_CHAIN_CONTEXT chain
)
198 CRYPT_PROVIDER_SGNR signer
;
199 PCERT_SIMPLE_CHAIN simpleChain
= chain
->rgpChain
[0];
202 memset(&signer
, 0, sizeof(signer
));
203 signer
.cbStruct
= sizeof(signer
);
204 ret
= data
->psPfns
->pfnAddSgnr2Chain(data
, FALSE
, 0, &signer
);
207 CRYPT_PROVIDER_SGNR
*sgnr
= WTHelperGetProvSignerFromChain(data
, 0,
212 sgnr
->dwError
= simpleChain
->TrustStatus
.dwErrorStatus
;
213 sgnr
->pChainContext
= CertDuplicateCertificateChain(chain
);
217 for (i
= 0; ret
&& i
< simpleChain
->cElement
; i
++)
219 ret
= data
->psPfns
->pfnAddCert2Chain(data
, 0, FALSE
, 0,
220 simpleChain
->rgpElement
[i
]->pCertContext
);
223 CRYPT_PROVIDER_CERT
*cert
;
225 if ((cert
= WTHelperGetProvCertFromChain(sgnr
, i
)))
227 CERT_CHAIN_ELEMENT
*element
= simpleChain
->rgpElement
[i
];
229 cert
->dwConfidence
= CRYPTDLG_TrustStatusToConfidence(
230 element
->TrustStatus
.dwErrorStatus
);
231 cert
->dwError
= element
->TrustStatus
.dwErrorStatus
;
232 cert
->pChainElement
= element
;
242 static CERT_VERIFY_CERTIFICATE_TRUST
*CRYPTDLG_GetVerifyData(
243 CRYPT_PROVIDER_DATA
*data
)
245 CERT_VERIFY_CERTIFICATE_TRUST
*pCert
= NULL
;
247 /* This should always be true, but just in case the calling function is
250 if (data
->pWintrustData
->dwUnionChoice
== WTD_CHOICE_BLOB
&&
251 data
->pWintrustData
->u
.pBlob
&& data
->pWintrustData
->u
.pBlob
->cbMemObject
==
252 sizeof(CERT_VERIFY_CERTIFICATE_TRUST
) &&
253 data
->pWintrustData
->u
.pBlob
->pbMemObject
)
254 pCert
= (CERT_VERIFY_CERTIFICATE_TRUST
*)
255 data
->pWintrustData
->u
.pBlob
->pbMemObject
;
259 static HCERTCHAINENGINE
CRYPTDLG_MakeEngine(CERT_VERIFY_CERTIFICATE_TRUST
*cert
)
261 HCERTCHAINENGINE engine
= NULL
;
262 HCERTSTORE root
= NULL
, trust
= NULL
;
265 if (cert
->cRootStores
)
267 root
= CertOpenStore(CERT_STORE_PROV_COLLECTION
, 0, 0,
268 CERT_STORE_CREATE_NEW_FLAG
, NULL
);
271 for (i
= 0; i
< cert
->cRootStores
; i
++)
272 CertAddStoreToCollection(root
, cert
->rghstoreRoots
[i
], 0, 0);
275 if (cert
->cTrustStores
)
277 trust
= CertOpenStore(CERT_STORE_PROV_COLLECTION
, 0, 0,
278 CERT_STORE_CREATE_NEW_FLAG
, NULL
);
281 for (i
= 0; i
< cert
->cTrustStores
; i
++)
282 CertAddStoreToCollection(trust
, cert
->rghstoreTrust
[i
], 0, 0);
285 if (cert
->cRootStores
|| cert
->cStores
|| cert
->cTrustStores
)
287 CERT_CHAIN_ENGINE_CONFIG config
;
289 memset(&config
, 0, sizeof(config
));
290 config
.cbSize
= sizeof(config
);
291 config
.hRestrictedRoot
= root
;
292 config
.hRestrictedTrust
= trust
;
293 config
.cAdditionalStore
= cert
->cStores
;
294 config
.rghAdditionalStore
= cert
->rghstoreCAs
;
295 config
.hRestrictedRoot
= root
;
296 CertCreateCertificateChainEngine(&config
, &engine
);
297 CertCloseStore(root
, 0);
298 CertCloseStore(trust
, 0);
303 /***********************************************************************
304 * CertTrustFinalPolicy (CRYPTDLG.@)
306 HRESULT WINAPI
CertTrustFinalPolicy(CRYPT_PROVIDER_DATA
*data
)
310 CERT_VERIFY_CERTIFICATE_TRUST
*pCert
= CRYPTDLG_GetVerifyData(data
);
312 TRACE("(%p)\n", data
);
314 if (data
->pWintrustData
->dwUIChoice
!= WTD_UI_NONE
)
315 FIXME("unimplemented for UI choice %d\n",
316 data
->pWintrustData
->dwUIChoice
);
320 CERT_CHAIN_PARA chainPara
;
321 HCERTCHAINENGINE engine
;
323 memset(&chainPara
, 0, sizeof(chainPara
));
324 chainPara
.cbSize
= sizeof(chainPara
);
325 if (CRYPTDLG_CheckOnlineCRL())
326 flags
|= CERT_CHAIN_REVOCATION_CHECK_END_CERT
;
327 engine
= CRYPTDLG_MakeEngine(pCert
);
328 GetSystemTimeAsFileTime(&data
->sftSystemTime
);
329 ret
= CRYPTDLG_IsCertAllowed(pCert
->pccert
);
332 PCCERT_CHAIN_CONTEXT chain
;
334 ret
= CertGetCertificateChain(engine
, pCert
->pccert
,
335 &data
->sftSystemTime
, NULL
, &chainPara
, flags
, NULL
, &chain
);
338 if (chain
->cChain
!= 1)
340 FIXME("unimplemented for more than 1 simple chain\n");
341 err
= TRUST_E_SUBJECT_FORM_UNKNOWN
;
344 else if ((ret
= CRYPTDLG_CopyChain(data
, chain
)))
346 if (CertVerifyTimeValidity(&data
->sftSystemTime
,
347 pCert
->pccert
->pCertInfo
))
350 err
= CERT_E_EXPIRED
;
354 err
= TRUST_E_SYSTEM_ERROR
;
355 CertFreeCertificateChain(chain
);
358 err
= TRUST_E_SUBJECT_NOT_TRUSTED
;
360 CertFreeCertificateChainEngine(engine
);
365 err
= TRUST_E_NOSIGNATURE
;
367 /* Oddly, native doesn't set the error in the trust step error location,
368 * probably because this action is more advisory than anything else.
369 * Instead it stores it as the final error, but the function "succeeds" in
373 data
->dwFinalError
= err
;
374 TRACE("returning %d (%08x)\n", S_OK
, data
->dwFinalError
);
378 /***********************************************************************
379 * CertViewPropertiesA (CRYPTDLG.@)
381 BOOL WINAPI
CertViewPropertiesA(CERT_VIEWPROPERTIES_STRUCT_A
*info
)
383 CERT_VIEWPROPERTIES_STRUCT_W infoW
;
387 TRACE("(%p)\n", info
);
389 memcpy(&infoW
, info
, sizeof(infoW
));
392 int len
= MultiByteToWideChar(CP_ACP
, 0, info
->szTitle
, -1, NULL
, 0);
394 title
= HeapAlloc(GetProcessHeap(), 0, len
* sizeof(WCHAR
));
397 MultiByteToWideChar(CP_ACP
, 0, info
->szTitle
, -1, title
, len
);
398 infoW
.szTitle
= title
;
406 ret
= CertViewPropertiesW(&infoW
);
407 HeapFree(GetProcessHeap(), 0, title
);
412 /***********************************************************************
413 * CertViewPropertiesW (CRYPTDLG.@)
415 BOOL WINAPI
CertViewPropertiesW(CERT_VIEWPROPERTIES_STRUCT_W
*info
)
417 static GUID cert_action_verify
= CERT_CERTIFICATE_ACTION_VERIFY
;
418 CERT_VERIFY_CERTIFICATE_TRUST trust
;
419 WINTRUST_BLOB_INFO blob
;
424 TRACE("(%p)\n", info
);
426 memset(&trust
, 0, sizeof(trust
));
427 trust
.cbSize
= sizeof(trust
);
428 trust
.pccert
= info
->pCertContext
;
429 trust
.cRootStores
= info
->cRootStores
;
430 trust
.rghstoreRoots
= info
->rghstoreRoots
;
431 trust
.cStores
= info
->cStores
;
432 trust
.rghstoreCAs
= info
->rghstoreCAs
;
433 trust
.cTrustStores
= info
->cTrustStores
;
434 trust
.rghstoreTrust
= info
->rghstoreTrust
;
435 memset(&blob
, 0, sizeof(blob
));
436 blob
.cbStruct
= sizeof(blob
);
437 blob
.cbMemObject
= sizeof(trust
);
438 blob
.pbMemObject
= (BYTE
*)&trust
;
439 memset(&wtd
, 0, sizeof(wtd
));
440 wtd
.cbStruct
= sizeof(wtd
);
441 wtd
.dwUIChoice
= WTD_UI_NONE
;
442 wtd
.dwUnionChoice
= WTD_CHOICE_BLOB
;
444 wtd
.dwStateAction
= WTD_STATEACTION_VERIFY
;
445 err
= WinVerifyTrust(NULL
, &cert_action_verify
, &wtd
);
446 if (err
== ERROR_SUCCESS
)
448 CRYPTUI_VIEWCERTIFICATE_STRUCTW uiInfo
;
449 BOOL propsChanged
= FALSE
;
451 memset(&uiInfo
, 0, sizeof(uiInfo
));
452 uiInfo
.dwSize
= sizeof(uiInfo
);
453 uiInfo
.hwndParent
= info
->hwndParent
;
455 CRYPTUI_DISABLE_ADDTOSTORE
| CRYPTUI_ENABLE_EDITPROPERTIES
;
456 uiInfo
.szTitle
= info
->szTitle
;
457 uiInfo
.pCertContext
= info
->pCertContext
;
458 uiInfo
.cPurposes
= info
->cArrayPurposes
;
459 uiInfo
.rgszPurposes
= (LPCSTR
*)info
->arrayPurposes
;
460 uiInfo
.u
.hWVTStateData
= wtd
.hWVTStateData
;
461 uiInfo
.fpCryptProviderDataTrustedUsage
= TRUE
;
462 uiInfo
.cPropSheetPages
= info
->cArrayPropSheetPages
;
463 uiInfo
.rgPropSheetPages
= info
->arrayPropSheetPages
;
464 uiInfo
.nStartPage
= info
->nStartPage
;
465 ret
= CryptUIDlgViewCertificateW(&uiInfo
, &propsChanged
);
466 wtd
.dwStateAction
= WTD_STATEACTION_CLOSE
;
467 WinVerifyTrust(NULL
, &cert_action_verify
, &wtd
);
474 static BOOL
CRYPT_FormatHexString(const BYTE
*pbEncoded
, DWORD cbEncoded
,
475 WCHAR
*str
, DWORD
*pcchStr
)
481 charsNeeded
= (cbEncoded
* 3);
486 *pcchStr
= charsNeeded
;
489 else if (*pcchStr
< charsNeeded
)
491 *pcchStr
= charsNeeded
;
492 SetLastError(ERROR_MORE_DATA
);
497 static const WCHAR fmt
[] = { '%','0','2','x',' ',0 };
498 static const WCHAR endFmt
[] = { '%','0','2','x',0 };
502 *pcchStr
= charsNeeded
;
505 for (i
= 0; i
< cbEncoded
; i
++)
507 if (i
< cbEncoded
- 1)
508 ptr
+= sprintfW(ptr
, fmt
, pbEncoded
[i
]);
510 ptr
+= sprintfW(ptr
, endFmt
, pbEncoded
[i
]);
520 static const WCHAR indent
[] = { ' ',' ',' ',' ',' ',0 };
521 static const WCHAR colonCrlf
[] = { ':','\r','\n',0 };
522 static const WCHAR colonSpace
[] = { ':',' ',0 };
523 static const WCHAR crlf
[] = { '\r','\n',0 };
524 static const WCHAR commaSep
[] = { ',',' ',0 };
526 static BOOL
CRYPT_FormatCPS(DWORD dwCertEncodingType
,
527 DWORD dwFormatStrType
, const BYTE
*pbEncoded
, DWORD cbEncoded
,
528 WCHAR
*str
, DWORD
*pcchStr
)
531 DWORD size
, charsNeeded
= 1;
532 CERT_NAME_VALUE
*cpsValue
;
534 if ((ret
= CryptDecodeObjectEx(dwCertEncodingType
, X509_UNICODE_ANY_STRING
,
535 pbEncoded
, cbEncoded
, CRYPT_DECODE_ALLOC_FLAG
, NULL
, &cpsValue
, &size
)))
540 if (dwFormatStrType
& CRYPT_FORMAT_STR_MULTI_LINE
)
545 sepLen
= strlenW(sep
);
547 if (dwFormatStrType
& CRYPT_FORMAT_STR_MULTI_LINE
)
549 charsNeeded
+= 3 * strlenW(indent
);
550 if (str
&& *pcchStr
>= charsNeeded
)
552 strcpyW(str
, indent
);
553 str
+= strlenW(indent
);
554 strcpyW(str
, indent
);
555 str
+= strlenW(indent
);
556 strcpyW(str
, indent
);
557 str
+= strlenW(indent
);
560 charsNeeded
+= cpsValue
->Value
.cbData
/ sizeof(WCHAR
);
561 if (str
&& *pcchStr
>= charsNeeded
)
563 strcpyW(str
, (LPWSTR
)cpsValue
->Value
.pbData
);
564 str
+= cpsValue
->Value
.cbData
/ sizeof(WCHAR
);
566 charsNeeded
+= sepLen
;
567 if (str
&& *pcchStr
>= charsNeeded
)
574 *pcchStr
= charsNeeded
;
575 else if (*pcchStr
< charsNeeded
)
577 *pcchStr
= charsNeeded
;
578 SetLastError(ERROR_MORE_DATA
);
582 *pcchStr
= charsNeeded
;
587 static BOOL
CRYPT_FormatUserNotice(DWORD dwCertEncodingType
,
588 DWORD dwFormatStrType
, const BYTE
*pbEncoded
, DWORD cbEncoded
,
589 WCHAR
*str
, DWORD
*pcchStr
)
592 DWORD size
, charsNeeded
= 1;
593 CERT_POLICY_QUALIFIER_USER_NOTICE
*notice
;
595 if ((ret
= CryptDecodeObjectEx(dwCertEncodingType
,
596 X509_PKIX_POLICY_QUALIFIER_USERNOTICE
, pbEncoded
, cbEncoded
,
597 CRYPT_DECODE_ALLOC_FLAG
, NULL
, ¬ice
, &size
)))
599 static const WCHAR numFmt
[] = { '%','d',0 };
600 CERT_POLICY_QUALIFIER_NOTICE_REFERENCE
*pNoticeRef
=
601 notice
->pNoticeReference
;
602 LPCWSTR headingSep
, sep
;
603 DWORD headingSepLen
, sepLen
;
604 LPWSTR noticeRef
, organization
, noticeNum
, noticeText
;
605 DWORD noticeRefLen
, organizationLen
, noticeNumLen
, noticeTextLen
;
606 WCHAR noticeNumStr
[11];
608 noticeRefLen
= LoadStringW(hInstance
, IDS_NOTICE_REF
,
609 (LPWSTR
)¬iceRef
, 0);
610 organizationLen
= LoadStringW(hInstance
, IDS_ORGANIZATION
,
611 (LPWSTR
)&organization
, 0);
612 noticeNumLen
= LoadStringW(hInstance
, IDS_NOTICE_NUM
,
613 (LPWSTR
)¬iceNum
, 0);
614 noticeTextLen
= LoadStringW(hInstance
, IDS_NOTICE_TEXT
,
615 (LPWSTR
)¬iceText
, 0);
616 if (dwFormatStrType
& CRYPT_FORMAT_STR_MULTI_LINE
)
618 headingSep
= colonCrlf
;
623 headingSep
= colonSpace
;
626 sepLen
= strlenW(sep
);
627 headingSepLen
= strlenW(headingSep
);
634 if (dwFormatStrType
& CRYPT_FORMAT_STR_MULTI_LINE
)
636 charsNeeded
+= 3 * strlenW(indent
);
637 if (str
&& *pcchStr
>= charsNeeded
)
639 strcpyW(str
, indent
);
640 str
+= strlenW(indent
);
641 strcpyW(str
, indent
);
642 str
+= strlenW(indent
);
643 strcpyW(str
, indent
);
644 str
+= strlenW(indent
);
647 charsNeeded
+= noticeRefLen
;
648 if (str
&& *pcchStr
>= charsNeeded
)
650 memcpy(str
, noticeRef
, noticeRefLen
* sizeof(WCHAR
));
653 charsNeeded
+= headingSepLen
;
654 if (str
&& *pcchStr
>= charsNeeded
)
656 strcpyW(str
, headingSep
);
657 str
+= headingSepLen
;
659 if (dwFormatStrType
& CRYPT_FORMAT_STR_MULTI_LINE
)
661 charsNeeded
+= 4 * strlenW(indent
);
662 if (str
&& *pcchStr
>= charsNeeded
)
664 strcpyW(str
, indent
);
665 str
+= strlenW(indent
);
666 strcpyW(str
, indent
);
667 str
+= strlenW(indent
);
668 strcpyW(str
, indent
);
669 str
+= strlenW(indent
);
670 strcpyW(str
, indent
);
671 str
+= strlenW(indent
);
674 charsNeeded
+= organizationLen
;
675 if (str
&& *pcchStr
>= charsNeeded
)
677 memcpy(str
, organization
, organizationLen
* sizeof(WCHAR
));
678 str
+= organizationLen
;
680 charsNeeded
+= strlen(pNoticeRef
->pszOrganization
);
681 if (str
&& *pcchStr
>= charsNeeded
)
682 for (src
= pNoticeRef
->pszOrganization
; src
&& *src
;
685 charsNeeded
+= sepLen
;
686 if (str
&& *pcchStr
>= charsNeeded
)
691 for (k
= 0; k
< pNoticeRef
->cNoticeNumbers
; k
++)
693 if (dwFormatStrType
& CRYPT_FORMAT_STR_MULTI_LINE
)
695 charsNeeded
+= 4 * strlenW(indent
);
696 if (str
&& *pcchStr
>= charsNeeded
)
698 strcpyW(str
, indent
);
699 str
+= strlenW(indent
);
700 strcpyW(str
, indent
);
701 str
+= strlenW(indent
);
702 strcpyW(str
, indent
);
703 str
+= strlenW(indent
);
704 strcpyW(str
, indent
);
705 str
+= strlenW(indent
);
708 charsNeeded
+= noticeNumLen
;
709 if (str
&& *pcchStr
>= charsNeeded
)
711 memcpy(str
, noticeNum
, noticeNumLen
* sizeof(WCHAR
));
714 sprintfW(noticeNumStr
, numFmt
, k
+ 1);
715 charsNeeded
+= strlenW(noticeNumStr
);
716 if (str
&& *pcchStr
>= charsNeeded
)
718 strcpyW(str
, noticeNumStr
);
719 str
+= strlenW(noticeNumStr
);
721 charsNeeded
+= sepLen
;
722 if (str
&& *pcchStr
>= charsNeeded
)
729 if (notice
->pszDisplayText
)
731 if (dwFormatStrType
& CRYPT_FORMAT_STR_MULTI_LINE
)
733 charsNeeded
+= 3 * strlenW(indent
);
734 if (str
&& *pcchStr
>= charsNeeded
)
736 strcpyW(str
, indent
);
737 str
+= strlenW(indent
);
738 strcpyW(str
, indent
);
739 str
+= strlenW(indent
);
740 strcpyW(str
, indent
);
741 str
+= strlenW(indent
);
744 charsNeeded
+= noticeTextLen
;
745 if (str
&& *pcchStr
>= charsNeeded
)
747 memcpy(str
, noticeText
, noticeTextLen
* sizeof(WCHAR
));
748 str
+= noticeTextLen
;
750 charsNeeded
+= strlenW(notice
->pszDisplayText
);
751 if (str
&& *pcchStr
>= charsNeeded
)
753 strcpyW(str
, notice
->pszDisplayText
);
754 str
+= strlenW(notice
->pszDisplayText
);
756 charsNeeded
+= sepLen
;
757 if (str
&& *pcchStr
>= charsNeeded
)
765 *pcchStr
= charsNeeded
;
766 else if (*pcchStr
< charsNeeded
)
768 *pcchStr
= charsNeeded
;
769 SetLastError(ERROR_MORE_DATA
);
773 *pcchStr
= charsNeeded
;
778 /***********************************************************************
779 * FormatVerisignExtension (CRYPTDLG.@)
781 BOOL WINAPI
FormatVerisignExtension(DWORD dwCertEncodingType
,
782 DWORD dwFormatType
, DWORD dwFormatStrType
, void *pFormatStruct
,
783 LPCSTR lpszStructType
, const BYTE
*pbEncoded
, DWORD cbEncoded
, void *pbFormat
,
786 CERT_POLICIES_INFO
*policies
;
792 SetLastError(E_INVALIDARG
);
795 if ((ret
= CryptDecodeObjectEx(dwCertEncodingType
, X509_CERT_POLICIES
,
796 pbEncoded
, cbEncoded
, CRYPT_DECODE_ALLOC_FLAG
, NULL
, &policies
, &size
)))
798 static const WCHAR numFmt
[] = { '%','d',0 };
799 DWORD charsNeeded
= 1; /* space for NULL terminator */
800 LPCWSTR headingSep
, sep
;
801 DWORD headingSepLen
, sepLen
;
802 WCHAR policyNum
[11], policyQualifierNum
[11];
803 LPWSTR certPolicy
, policyId
, policyQualifierInfo
, policyQualifierId
;
804 LPWSTR cps
, userNotice
, qualifier
;
805 DWORD certPolicyLen
, policyIdLen
, policyQualifierInfoLen
;
806 DWORD policyQualifierIdLen
, cpsLen
, userNoticeLen
, qualifierLen
;
808 LPWSTR str
= pbFormat
;
810 certPolicyLen
= LoadStringW(hInstance
, IDS_CERT_POLICY
,
811 (LPWSTR
)&certPolicy
, 0);
812 policyIdLen
= LoadStringW(hInstance
, IDS_POLICY_ID
, (LPWSTR
)&policyId
,
814 policyQualifierInfoLen
= LoadStringW(hInstance
,
815 IDS_POLICY_QUALIFIER_INFO
, (LPWSTR
)&policyQualifierInfo
, 0);
816 policyQualifierIdLen
= LoadStringW(hInstance
, IDS_POLICY_QUALIFIER_ID
,
817 (LPWSTR
)&policyQualifierId
, 0);
818 cpsLen
= LoadStringW(hInstance
, IDS_CPS
, (LPWSTR
)&cps
, 0);
819 userNoticeLen
= LoadStringW(hInstance
, IDS_USER_NOTICE
,
820 (LPWSTR
)&userNotice
, 0);
821 qualifierLen
= LoadStringW(hInstance
, IDS_QUALIFIER
,
822 (LPWSTR
)&qualifier
, 0);
823 if (dwFormatStrType
& CRYPT_FORMAT_STR_MULTI_LINE
)
825 headingSep
= colonCrlf
;
830 headingSep
= colonSpace
;
833 sepLen
= strlenW(sep
);
834 headingSepLen
= strlenW(headingSep
);
836 for (i
= 0; ret
&& i
< policies
->cPolicyInfo
; i
++)
838 CERT_POLICY_INFO
*policy
= &policies
->rgPolicyInfo
[i
];
842 charsNeeded
+= 1; /* '['*/
843 if (str
&& *pcbFormat
>= charsNeeded
* sizeof(WCHAR
))
845 sprintfW(policyNum
, numFmt
, i
+ 1);
846 charsNeeded
+= strlenW(policyNum
);
847 if (str
&& *pcbFormat
>= charsNeeded
* sizeof(WCHAR
))
849 strcpyW(str
, policyNum
);
850 str
+= strlenW(policyNum
);
852 charsNeeded
+= 1; /* ']'*/
853 if (str
&& *pcbFormat
>= charsNeeded
* sizeof(WCHAR
))
855 charsNeeded
+= certPolicyLen
;
856 if (str
&& *pcbFormat
>= charsNeeded
* sizeof(WCHAR
))
858 memcpy(str
, certPolicy
, certPolicyLen
* sizeof(WCHAR
));
859 str
+= certPolicyLen
;
861 charsNeeded
+= headingSepLen
;
862 if (str
&& *pcbFormat
>= charsNeeded
* sizeof(WCHAR
))
864 strcpyW(str
, headingSep
);
865 str
+= headingSepLen
;
867 if (dwFormatStrType
& CRYPT_FORMAT_STR_MULTI_LINE
)
869 charsNeeded
+= strlenW(indent
);
870 if (str
&& *pcbFormat
>= charsNeeded
* sizeof(WCHAR
))
872 strcpyW(str
, indent
);
873 str
+= strlenW(indent
);
876 charsNeeded
+= policyIdLen
;
877 if (str
&& *pcbFormat
>= charsNeeded
* sizeof(WCHAR
))
879 memcpy(str
, policyId
, policyIdLen
* sizeof(WCHAR
));
882 charsNeeded
+= strlen(policy
->pszPolicyIdentifier
);
883 if (str
&& *pcbFormat
>= charsNeeded
* sizeof(WCHAR
))
885 for (src
= policy
->pszPolicyIdentifier
; src
&& *src
;
889 charsNeeded
+= sepLen
;
890 if (str
&& *pcbFormat
>= charsNeeded
* sizeof(WCHAR
))
895 for (j
= 0; j
< policy
->cPolicyQualifier
; j
++)
897 CERT_POLICY_QUALIFIER_INFO
*qualifierInfo
=
898 &policy
->rgPolicyQualifier
[j
];
901 if (dwFormatStrType
& CRYPT_FORMAT_STR_MULTI_LINE
)
903 charsNeeded
+= strlenW(indent
);
904 if (str
&& *pcbFormat
>= charsNeeded
* sizeof(WCHAR
))
906 strcpyW(str
, indent
);
907 str
+= strlenW(indent
);
910 charsNeeded
+= 1; /* '['*/
911 if (str
&& *pcbFormat
>= charsNeeded
* sizeof(WCHAR
))
913 charsNeeded
+= strlenW(policyNum
);
914 if (str
&& *pcbFormat
>= charsNeeded
* sizeof(WCHAR
))
916 strcpyW(str
, policyNum
);
917 str
+= strlenW(policyNum
);
919 charsNeeded
+= 1; /* ','*/
920 if (str
&& *pcbFormat
>= charsNeeded
* sizeof(WCHAR
))
922 sprintfW(policyQualifierNum
, numFmt
, j
+ 1);
923 charsNeeded
+= strlenW(policyQualifierNum
);
924 if (str
&& *pcbFormat
>= charsNeeded
* sizeof(WCHAR
))
926 strcpyW(str
, policyQualifierNum
);
927 str
+= strlenW(policyQualifierNum
);
929 charsNeeded
+= 1; /* ']'*/
930 if (str
&& *pcbFormat
>= charsNeeded
* sizeof(WCHAR
))
932 charsNeeded
+= policyQualifierInfoLen
;
933 if (str
&& *pcbFormat
>= charsNeeded
* sizeof(WCHAR
))
935 memcpy(str
, policyQualifierInfo
,
936 policyQualifierInfoLen
* sizeof(WCHAR
));
937 str
+= policyQualifierInfoLen
;
939 charsNeeded
+= headingSepLen
;
940 if (str
&& *pcbFormat
>= charsNeeded
* sizeof(WCHAR
))
942 strcpyW(str
, headingSep
);
943 str
+= headingSepLen
;
945 if (dwFormatStrType
& CRYPT_FORMAT_STR_MULTI_LINE
)
947 charsNeeded
+= 2 * strlenW(indent
);
948 if (str
&& *pcbFormat
>= charsNeeded
* sizeof(WCHAR
))
950 strcpyW(str
, indent
);
951 str
+= strlenW(indent
);
952 strcpyW(str
, indent
);
953 str
+= strlenW(indent
);
956 charsNeeded
+= policyQualifierIdLen
;
957 if (str
&& *pcbFormat
>= charsNeeded
* sizeof(WCHAR
))
959 memcpy(str
, policyQualifierId
,
960 policyQualifierIdLen
* sizeof(WCHAR
));
961 str
+= policyQualifierIdLen
;
963 if (!strcmp(qualifierInfo
->pszPolicyQualifierId
,
964 szOID_PKIX_POLICY_QUALIFIER_CPS
))
966 charsNeeded
+= cpsLen
;
967 if (str
&& *pcbFormat
>= charsNeeded
* sizeof(WCHAR
))
969 memcpy(str
, cps
, cpsLen
* sizeof(WCHAR
));
973 else if (!strcmp(qualifierInfo
->pszPolicyQualifierId
,
974 szOID_PKIX_POLICY_QUALIFIER_USERNOTICE
))
976 charsNeeded
+= userNoticeLen
;
977 if (str
&& *pcbFormat
>= charsNeeded
* sizeof(WCHAR
))
979 memcpy(str
, userNotice
, userNoticeLen
* sizeof(WCHAR
));
980 str
+= userNoticeLen
;
985 charsNeeded
+= strlen(qualifierInfo
->pszPolicyQualifierId
);
986 if (str
&& *pcbFormat
>= charsNeeded
* sizeof(WCHAR
))
988 for (src
= qualifierInfo
->pszPolicyQualifierId
;
989 src
&& *src
; src
++, str
++)
993 charsNeeded
+= sepLen
;
994 if (str
&& *pcbFormat
>= charsNeeded
* sizeof(WCHAR
))
999 if (dwFormatStrType
& CRYPT_FORMAT_STR_MULTI_LINE
)
1001 charsNeeded
+= 2 * strlenW(indent
);
1002 if (str
&& *pcbFormat
>= charsNeeded
* sizeof(WCHAR
))
1004 strcpyW(str
, indent
);
1005 str
+= strlenW(indent
);
1006 strcpyW(str
, indent
);
1007 str
+= strlenW(indent
);
1010 charsNeeded
+= qualifierLen
;
1011 if (str
&& *pcbFormat
>= charsNeeded
* sizeof(WCHAR
))
1013 memcpy(str
, qualifier
, qualifierLen
* sizeof(WCHAR
));
1014 str
+= qualifierLen
;
1016 charsNeeded
+= headingSepLen
;
1017 if (str
&& *pcbFormat
>= charsNeeded
* sizeof(WCHAR
))
1019 strcpyW(str
, headingSep
);
1020 str
+= headingSepLen
;
1022 /* This if block is deliberately redundant with the same if
1023 * block above, in order to keep the code more readable (the
1024 * code flow follows the order in which the strings are output.)
1026 if (!strcmp(qualifierInfo
->pszPolicyQualifierId
,
1027 szOID_PKIX_POLICY_QUALIFIER_CPS
))
1029 if (!str
|| *pcbFormat
< charsNeeded
* sizeof(WCHAR
))
1031 /* Insufficient space, determine how much is needed. */
1032 ret
= CRYPT_FormatCPS(dwCertEncodingType
,
1033 dwFormatStrType
, qualifierInfo
->Qualifier
.pbData
,
1034 qualifierInfo
->Qualifier
.cbData
, NULL
, &size
);
1036 charsNeeded
+= size
- 1;
1040 sizeRemaining
= *pcbFormat
/ sizeof(WCHAR
);
1041 sizeRemaining
-= str
- (LPWSTR
)pbFormat
;
1042 ret
= CRYPT_FormatCPS(dwCertEncodingType
,
1043 dwFormatStrType
, qualifierInfo
->Qualifier
.pbData
,
1044 qualifierInfo
->Qualifier
.cbData
, str
, &sizeRemaining
);
1045 if (ret
|| GetLastError() == ERROR_MORE_DATA
)
1047 charsNeeded
+= sizeRemaining
- 1;
1048 str
+= sizeRemaining
- 1;
1052 else if (!strcmp(qualifierInfo
->pszPolicyQualifierId
,
1053 szOID_PKIX_POLICY_QUALIFIER_USERNOTICE
))
1055 if (!str
|| *pcbFormat
< charsNeeded
* sizeof(WCHAR
))
1057 /* Insufficient space, determine how much is needed. */
1058 ret
= CRYPT_FormatUserNotice(dwCertEncodingType
,
1059 dwFormatStrType
, qualifierInfo
->Qualifier
.pbData
,
1060 qualifierInfo
->Qualifier
.cbData
, NULL
, &size
);
1062 charsNeeded
+= size
- 1;
1066 sizeRemaining
= *pcbFormat
/ sizeof(WCHAR
);
1067 sizeRemaining
-= str
- (LPWSTR
)pbFormat
;
1068 ret
= CRYPT_FormatUserNotice(dwCertEncodingType
,
1069 dwFormatStrType
, qualifierInfo
->Qualifier
.pbData
,
1070 qualifierInfo
->Qualifier
.cbData
, str
, &sizeRemaining
);
1071 if (ret
|| GetLastError() == ERROR_MORE_DATA
)
1073 charsNeeded
+= sizeRemaining
- 1;
1074 str
+= sizeRemaining
- 1;
1080 if (!str
|| *pcbFormat
< charsNeeded
* sizeof(WCHAR
))
1082 /* Insufficient space, determine how much is needed. */
1083 ret
= CRYPT_FormatHexString(
1084 qualifierInfo
->Qualifier
.pbData
,
1085 qualifierInfo
->Qualifier
.cbData
, NULL
, &size
);
1087 charsNeeded
+= size
- 1;
1091 sizeRemaining
= *pcbFormat
/ sizeof(WCHAR
);
1092 sizeRemaining
-= str
- (LPWSTR
)pbFormat
;
1093 ret
= CRYPT_FormatHexString(
1094 qualifierInfo
->Qualifier
.pbData
,
1095 qualifierInfo
->Qualifier
.cbData
, str
, &sizeRemaining
);
1096 if (ret
|| GetLastError() == ERROR_MORE_DATA
)
1098 charsNeeded
+= sizeRemaining
- 1;
1099 str
+= sizeRemaining
- 1;
1105 LocalFree(policies
);
1109 *pcbFormat
= charsNeeded
* sizeof(WCHAR
);
1110 else if (*pcbFormat
< charsNeeded
* sizeof(WCHAR
))
1112 *pcbFormat
= charsNeeded
* sizeof(WCHAR
);
1113 SetLastError(ERROR_MORE_DATA
);
1117 *pcbFormat
= charsNeeded
* sizeof(WCHAR
);
1123 #define szOID_MICROSOFT_Encryption_Key_Preference "1.3.6.1.4.1.311.16.4"
1125 /***********************************************************************
1126 * DllRegisterServer (CRYPTDLG.@)
1128 HRESULT WINAPI
DllRegisterServer(void)
1130 static WCHAR cryptdlg
[] = { 'c','r','y','p','t','d','l','g','.',
1132 static WCHAR wintrust
[] = { 'w','i','n','t','r','u','s','t','.',
1134 static WCHAR certTrustInit
[] = { 'C','e','r','t','T','r','u','s','t',
1135 'I','n','i','t',0 };
1136 static WCHAR wintrustCertificateTrust
[] = { 'W','i','n','t','r','u','s','t',
1137 'C','e','r','t','i','f','i','c','a','t','e','T','r','u','s','t',0 };
1138 static WCHAR certTrustCertPolicy
[] = { 'C','e','r','t','T','r','u','s','t',
1139 'C','e','r','t','P','o','l','i','c','y',0 };
1140 static WCHAR certTrustFinalPolicy
[] = { 'C','e','r','t','T','r','u','s','t',
1141 'F','i','n','a','l','P','o','l','i','c','y',0 };
1142 static WCHAR certTrustCleanup
[] = { 'C','e','r','t','T','r','u','s','t',
1143 'C','l','e','a','n','u','p',0 };
1144 static const WCHAR cryptDlg
[] = { 'c','r','y','p','t','d','l','g','.',
1146 CRYPT_REGISTER_ACTIONID reg
;
1147 GUID guid
= CERT_CERTIFICATE_ACTION_VERIFY
;
1150 memset(®
, 0, sizeof(reg
));
1151 reg
.cbStruct
= sizeof(reg
);
1152 reg
.sInitProvider
.cbStruct
= sizeof(CRYPT_TRUST_REG_ENTRY
);
1153 reg
.sInitProvider
.pwszDLLName
= cryptdlg
;
1154 reg
.sInitProvider
.pwszFunctionName
= certTrustInit
;
1155 reg
.sCertificateProvider
.cbStruct
= sizeof(CRYPT_TRUST_REG_ENTRY
);
1156 reg
.sCertificateProvider
.pwszDLLName
= wintrust
;
1157 reg
.sCertificateProvider
.pwszFunctionName
= wintrustCertificateTrust
;
1158 reg
.sCertificatePolicyProvider
.cbStruct
= sizeof(CRYPT_TRUST_REG_ENTRY
);
1159 reg
.sCertificatePolicyProvider
.pwszDLLName
= cryptdlg
;
1160 reg
.sCertificatePolicyProvider
.pwszFunctionName
= certTrustCertPolicy
;
1161 reg
.sFinalPolicyProvider
.cbStruct
= sizeof(CRYPT_TRUST_REG_ENTRY
);
1162 reg
.sFinalPolicyProvider
.pwszDLLName
= cryptdlg
;
1163 reg
.sFinalPolicyProvider
.pwszFunctionName
= certTrustFinalPolicy
;
1164 reg
.sCleanupProvider
.cbStruct
= sizeof(CRYPT_TRUST_REG_ENTRY
);
1165 reg
.sCleanupProvider
.pwszDLLName
= cryptdlg
;
1166 reg
.sCleanupProvider
.pwszFunctionName
= certTrustCleanup
;
1167 if (!WintrustAddActionID(&guid
, WT_ADD_ACTION_ID_RET_RESULT_FLAG
, ®
))
1168 hr
= GetLastError();
1169 CryptRegisterOIDFunction(X509_ASN_ENCODING
, CRYPT_OID_ENCODE_OBJECT_FUNC
,
1170 "1.3.6.1.4.1.311.16.1.1", cryptDlg
, "EncodeAttrSequence");
1171 CryptRegisterOIDFunction(X509_ASN_ENCODING
, CRYPT_OID_ENCODE_OBJECT_FUNC
,
1172 szOID_MICROSOFT_Encryption_Key_Preference
, cryptDlg
, "EncodeRecipientID");
1173 CryptRegisterOIDFunction(X509_ASN_ENCODING
, CRYPT_OID_DECODE_OBJECT_FUNC
,
1174 "1.3.6.1.4.1.311.16.1.1", cryptDlg
, "DecodeAttrSequence");
1175 CryptRegisterOIDFunction(X509_ASN_ENCODING
, CRYPT_OID_DECODE_OBJECT_FUNC
,
1176 szOID_MICROSOFT_Encryption_Key_Preference
, cryptDlg
, "DecodeRecipientID");
1177 CryptRegisterOIDFunction(X509_ASN_ENCODING
, CRYPT_OID_FORMAT_OBJECT_FUNC
,
1178 szOID_PKIX_KP_EMAIL_PROTECTION
, cryptDlg
, "FormatPKIXEmailProtection");
1179 CryptRegisterOIDFunction(X509_ASN_ENCODING
, CRYPT_OID_FORMAT_OBJECT_FUNC
,
1180 szOID_CERT_POLICIES
, cryptDlg
, "FormatVerisignExtension");
1184 /***********************************************************************
1185 * DllUnregisterServer (CRYPTDLG.@)
1187 HRESULT WINAPI
DllUnregisterServer(void)
1189 GUID guid
= CERT_CERTIFICATE_ACTION_VERIFY
;
1191 WintrustRemoveActionID(&guid
);
1192 CryptUnregisterOIDFunction(X509_ASN_ENCODING
, CRYPT_OID_ENCODE_OBJECT_FUNC
,
1193 "1.3.6.1.4.1.311.16.1.1");
1194 CryptUnregisterOIDFunction(X509_ASN_ENCODING
, CRYPT_OID_ENCODE_OBJECT_FUNC
,
1195 szOID_MICROSOFT_Encryption_Key_Preference
);
1196 CryptUnregisterOIDFunction(X509_ASN_ENCODING
, CRYPT_OID_DECODE_OBJECT_FUNC
,
1197 "1.3.6.1.4.1.311.16.1.1");
1198 CryptUnregisterOIDFunction(X509_ASN_ENCODING
, CRYPT_OID_DECODE_OBJECT_FUNC
,
1199 szOID_MICROSOFT_Encryption_Key_Preference
);
1200 CryptUnregisterOIDFunction(X509_ASN_ENCODING
, CRYPT_OID_FORMAT_OBJECT_FUNC
,
1201 szOID_PKIX_KP_EMAIL_PROTECTION
);
1202 CryptUnregisterOIDFunction(X509_ASN_ENCODING
, CRYPT_OID_FORMAT_OBJECT_FUNC
,
1203 szOID_CERT_POLICIES
);