cryptui: Show cert's friendly name and description in edit properties dialog.
[wine/wine64.git] / dlls / cryptui / main.c
blobc38bf1a9db5bc440c24fccbf3571955778976c3c
1 /*
2 * Copyright 2008 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 "config.h"
21 #include <stdarg.h>
23 #define COBJMACROS
24 #define NONAMELESSUNION
26 #include "windef.h"
27 #include "winbase.h"
28 #include "winnls.h"
29 #include "winuser.h"
30 #include "softpub.h"
31 #include "wingdi.h"
32 #include "richedit.h"
33 #include "ole2.h"
34 #include "richole.h"
35 #include "commctrl.h"
36 #include "cryptuiapi.h"
37 #include "cryptuires.h"
38 #include "urlmon.h"
39 #include "hlink.h"
40 #include "wine/debug.h"
41 #include "wine/unicode.h"
43 WINE_DEFAULT_DEBUG_CHANNEL(cryptui);
45 static HINSTANCE hInstance;
47 BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved)
49 TRACE("(0x%p, %d, %p)\n", hinstDLL, fdwReason, lpvReserved);
51 switch (fdwReason)
53 case DLL_WINE_PREATTACH:
54 return FALSE; /* prefer native version */
55 case DLL_PROCESS_ATTACH:
56 hInstance = hinstDLL;
57 DisableThreadLibraryCalls(hinstDLL);
58 break;
59 case DLL_PROCESS_DETACH:
60 break;
61 default:
62 break;
64 return TRUE;
67 /***********************************************************************
68 * CryptUIDlgCertMgr (CRYPTUI.@)
70 BOOL WINAPI CryptUIDlgCertMgr(PCCRYPTUI_CERT_MGR_STRUCT pCryptUICertMgr)
72 FIXME("(%p): stub\n", pCryptUICertMgr);
73 return FALSE;
76 /***********************************************************************
77 * CryptUIDlgViewCertificateA (CRYPTUI.@)
79 BOOL WINAPI CryptUIDlgViewCertificateA(
80 PCCRYPTUI_VIEWCERTIFICATE_STRUCTA pCertViewInfo, BOOL *pfPropertiesChanged)
82 CRYPTUI_VIEWCERTIFICATE_STRUCTW viewInfo;
83 LPWSTR title = NULL;
84 BOOL ret;
86 TRACE("(%p, %p)\n", pCertViewInfo, pfPropertiesChanged);
88 memcpy(&viewInfo, pCertViewInfo, sizeof(viewInfo));
89 if (pCertViewInfo->szTitle)
91 int len = MultiByteToWideChar(CP_ACP, 0, pCertViewInfo->szTitle, -1,
92 NULL, 0);
94 title = HeapAlloc(GetProcessHeap(), 0, len * sizeof(WCHAR));
95 if (title)
97 MultiByteToWideChar(CP_ACP, 0, pCertViewInfo->szTitle, -1, title,
98 len);
99 viewInfo.szTitle = title;
101 else
103 ret = FALSE;
104 goto error;
107 if (pCertViewInfo->cPropSheetPages)
109 FIXME("ignoring additional prop sheet pages\n");
110 viewInfo.cPropSheetPages = 0;
112 ret = CryptUIDlgViewCertificateW(&viewInfo, pfPropertiesChanged);
113 HeapFree(GetProcessHeap(), 0, title);
114 error:
115 return ret;
118 struct ReadStringStruct
120 LPCWSTR buf;
121 LONG pos;
122 LONG len;
125 static DWORD CALLBACK read_text_callback(DWORD_PTR dwCookie, LPBYTE buf,
126 LONG cb, LONG *pcb)
128 struct ReadStringStruct *string = (struct ReadStringStruct *)dwCookie;
129 LONG cch = min(cb / sizeof(WCHAR), string->len - string->pos);
131 TRACE("(%p, %p, %d, %p)\n", string, buf, cb, pcb);
133 memmove(buf, string->buf + string->pos, cch * sizeof(WCHAR));
134 string->pos += cch;
135 *pcb = cch * sizeof(WCHAR);
136 return 0;
139 static void add_unformatted_text_to_control(HWND hwnd, LPCWSTR text, LONG len)
141 struct ReadStringStruct string;
142 EDITSTREAM editstream;
144 TRACE("(%p, %s)\n", hwnd, debugstr_wn(text, len));
146 string.buf = text;
147 string.pos = 0;
148 string.len = len;
149 editstream.dwCookie = (DWORD_PTR)&string;
150 editstream.dwError = 0;
151 editstream.pfnCallback = read_text_callback;
152 SendMessageW(hwnd, EM_STREAMIN, SF_TEXT | SFF_SELECTION | SF_UNICODE,
153 (LPARAM)&editstream);
156 static void add_string_resource_to_control(HWND hwnd, int id)
158 LPWSTR str;
159 LONG len;
161 len = LoadStringW(hInstance, id, (LPWSTR)&str, 0);
162 add_unformatted_text_to_control(hwnd, str, len);
165 static void add_text_with_paraformat_to_control(HWND hwnd, LPCWSTR text,
166 LONG len, const PARAFORMAT2 *fmt)
168 add_unformatted_text_to_control(hwnd, text, len);
169 SendMessageW(hwnd, EM_SETPARAFORMAT, 0, (LPARAM)fmt);
172 static void add_string_resource_with_paraformat_to_control(HWND hwnd, int id,
173 const PARAFORMAT2 *fmt)
175 LPWSTR str;
176 LONG len;
178 len = LoadStringW(hInstance, id, (LPWSTR)&str, 0);
179 add_text_with_paraformat_to_control(hwnd, str, len, fmt);
182 static LPWSTR get_cert_name_string(PCCERT_CONTEXT pCertContext, DWORD dwType,
183 DWORD dwFlags)
185 LPWSTR buf = NULL;
186 DWORD len;
188 len = CertGetNameStringW(pCertContext, dwType, dwFlags, NULL, NULL, 0);
189 if (len)
191 buf = HeapAlloc(GetProcessHeap(), 0, len * sizeof(WCHAR));
192 if (buf)
193 CertGetNameStringW(pCertContext, dwType, dwFlags, NULL, buf, len);
195 return buf;
198 static void add_cert_string_to_control(HWND hwnd, PCCERT_CONTEXT pCertContext,
199 DWORD dwType, DWORD dwFlags)
201 LPWSTR name = get_cert_name_string(pCertContext, dwType, dwFlags);
203 if (name)
205 /* Don't include NULL-terminator in output */
206 DWORD len = lstrlenW(name);
208 add_unformatted_text_to_control(hwnd, name, len);
209 HeapFree(GetProcessHeap(), 0, name);
213 static void add_icon_to_control(HWND hwnd, int id)
215 HRESULT hr;
216 LPRICHEDITOLE richEditOle = NULL;
217 LPOLEOBJECT object = NULL;
218 CLSID clsid;
219 LPOLECACHE oleCache = NULL;
220 FORMATETC formatEtc;
221 DWORD conn;
222 LPDATAOBJECT dataObject = NULL;
223 HBITMAP bitmap = NULL;
224 RECT rect;
225 STGMEDIUM stgm;
226 REOBJECT reObject;
228 TRACE("(%p, %d)\n", hwnd, id);
230 SendMessageW(hwnd, EM_GETOLEINTERFACE, 0, (LPARAM)&richEditOle);
231 if (!richEditOle)
232 goto end;
233 hr = OleCreateDefaultHandler(&CLSID_NULL, NULL, &IID_IOleObject,
234 (void**)&object);
235 if (FAILED(hr))
236 goto end;
237 hr = IOleObject_GetUserClassID(object, &clsid);
238 if (FAILED(hr))
239 goto end;
240 hr = IOleObject_QueryInterface(object, &IID_IOleCache, (void**)&oleCache);
241 if (FAILED(hr))
242 goto end;
243 formatEtc.cfFormat = CF_BITMAP;
244 formatEtc.ptd = NULL;
245 formatEtc.dwAspect = DVASPECT_CONTENT;
246 formatEtc.lindex = -1;
247 formatEtc.tymed = TYMED_GDI;
248 hr = IOleCache_Cache(oleCache, &formatEtc, 0, &conn);
249 if (FAILED(hr))
250 goto end;
251 hr = IOleObject_QueryInterface(object, &IID_IDataObject,
252 (void**)&dataObject);
253 if (FAILED(hr))
254 goto end;
255 bitmap = LoadImageW(hInstance, MAKEINTRESOURCEW(id), IMAGE_BITMAP, 0, 0,
256 LR_DEFAULTSIZE | LR_LOADTRANSPARENT);
257 if (!bitmap)
258 goto end;
259 rect.left = rect.top = 0;
260 rect.right = GetSystemMetrics(SM_CXICON);
261 rect.bottom = GetSystemMetrics(SM_CYICON);
262 stgm.tymed = TYMED_GDI;
263 stgm.u.hBitmap = bitmap;
264 stgm.pUnkForRelease = NULL;
265 hr = IDataObject_SetData(dataObject, &formatEtc, &stgm, TRUE);
266 if (FAILED(hr))
267 goto end;
269 reObject.cbStruct = sizeof(reObject);
270 reObject.cp = REO_CP_SELECTION;
271 reObject.clsid = clsid;
272 reObject.poleobj = object;
273 reObject.pstg = NULL;
274 reObject.polesite = NULL;
275 reObject.sizel.cx = reObject.sizel.cy = 0;
276 reObject.dvaspect = DVASPECT_CONTENT;
277 reObject.dwFlags = 0;
278 reObject.dwUser = 0;
280 IRichEditOle_InsertObject(richEditOle, &reObject);
282 end:
283 if (dataObject)
284 IDataObject_Release(dataObject);
285 if (oleCache)
286 IOleCache_Release(oleCache);
287 if (object)
288 IOleObject_Release(object);
289 if (richEditOle)
290 IRichEditOle_Release(richEditOle);
293 #define MY_INDENT 200
295 static void add_oid_text_to_control(HWND hwnd, char *oid)
297 WCHAR nl = '\n';
298 PCCRYPT_OID_INFO oidInfo = CryptFindOIDInfo(CRYPT_OID_INFO_OID_KEY, oid, 0);
299 PARAFORMAT2 parFmt;
301 parFmt.cbSize = sizeof(parFmt);
302 parFmt.dwMask = PFM_STARTINDENT;
303 parFmt.dxStartIndent = MY_INDENT * 3;
304 if (oidInfo)
306 add_text_with_paraformat_to_control(hwnd, oidInfo->pwszName,
307 lstrlenW(oidInfo->pwszName), &parFmt);
308 add_unformatted_text_to_control(hwnd, &nl, 1);
312 #define MAX_STRING_LEN 512
314 struct OIDToString
316 LPCSTR oid;
317 int id;
320 /* The following list MUST be lexicographically sorted by OID */
321 static struct OIDToString oidMap[] = {
322 /* 1.3.6.1.4.1.311.10.3.1 */
323 { szOID_KP_CTL_USAGE_SIGNING, IDS_PURPOSE_CTL_USAGE_SIGNING },
324 /* 1.3.6.1.4.1.311.10.3.4 */
325 { szOID_KP_EFS, IDS_PURPOSE_EFS },
326 /* 1.3.6.1.4.1.311.10.3.4.1 */
327 { szOID_EFS_RECOVERY, IDS_PURPOSE_EFS_RECOVERY },
328 /* 1.3.6.1.4.1.311.10.3.5 */
329 { szOID_WHQL_CRYPTO, IDS_PURPOSE_WHQL },
330 /* 1.3.6.1.4.1.311.10.3.6 */
331 { szOID_NT5_CRYPTO, IDS_PURPOSE_NT5 },
332 /* 1.3.6.1.4.1.311.10.3.7 */
333 { szOID_OEM_WHQL_CRYPTO, IDS_PURPOSE_OEM_WHQL },
334 /* 1.3.6.1.4.1.311.10.3.8 */
335 { szOID_EMBEDDED_NT_CRYPTO, IDS_PURPOSE_EMBEDDED_NT },
336 /* 1.3.6.1.4.1.311.10.3.9 */
337 { szOID_ROOT_LIST_SIGNER, IDS_PURPOSE_ROOT_LIST_SIGNER },
338 /* 1.3.6.1.4.1.311.10.3.10 */
339 { szOID_KP_QUALIFIED_SUBORDINATION, IDS_PURPOSE_QUALIFIED_SUBORDINATION },
340 /* 1.3.6.1.4.1.311.10.3.11 */
341 { szOID_KP_KEY_RECOVERY, IDS_PURPOSE_KEY_RECOVERY },
342 /* 1.3.6.1.4.1.311.10.3.12 */
343 { szOID_KP_DOCUMENT_SIGNING, IDS_PURPOSE_DOCUMENT_SIGNING },
344 /* 1.3.6.1.4.1.311.10.3.13 */
345 { szOID_KP_LIFETIME_SIGNING, IDS_PURPOSE_LIFETIME_SIGNING },
346 /* 1.3.6.1.4.1.311.10.5.1 */
347 { szOID_DRM, IDS_PURPOSE_DRM },
348 /* 1.3.6.1.4.1.311.10.6.1 */
349 { szOID_LICENSES, IDS_PURPOSE_LICENSES },
350 /* 1.3.6.1.4.1.311.10.6.2 */
351 { szOID_LICENSE_SERVER, IDS_PURPOSE_LICENSE_SERVER },
352 /* 1.3.6.1.4.1.311.20.2.1 */
353 { szOID_ENROLLMENT_AGENT, IDS_PURPOSE_ENROLLMENT_AGENT },
354 /* 1.3.6.1.4.1.311.20.2.2 */
355 { szOID_KP_SMARTCARD_LOGON, IDS_PURPOSE_SMARTCARD_LOGON },
356 /* 1.3.6.1.4.1.311.21.5 */
357 { szOID_KP_CA_EXCHANGE, IDS_PURPOSE_CA_EXCHANGE },
358 /* 1.3.6.1.4.1.311.21.6 */
359 { szOID_KP_KEY_RECOVERY_AGENT, IDS_PURPOSE_KEY_RECOVERY_AGENT },
360 /* 1.3.6.1.4.1.311.21.19 */
361 { szOID_DS_EMAIL_REPLICATION, IDS_PURPOSE_DS_EMAIL_REPLICATION },
362 /* 1.3.6.1.5.5.7.3.1 */
363 { szOID_PKIX_KP_SERVER_AUTH, IDS_PURPOSE_SERVER_AUTH },
364 /* 1.3.6.1.5.5.7.3.2 */
365 { szOID_PKIX_KP_CLIENT_AUTH, IDS_PURPOSE_CLIENT_AUTH },
366 /* 1.3.6.1.5.5.7.3.3 */
367 { szOID_PKIX_KP_CODE_SIGNING, IDS_PURPOSE_CODE_SIGNING },
368 /* 1.3.6.1.5.5.7.3.4 */
369 { szOID_PKIX_KP_EMAIL_PROTECTION, IDS_PURPOSE_EMAIL_PROTECTION },
370 /* 1.3.6.1.5.5.7.3.5 */
371 { szOID_PKIX_KP_IPSEC_END_SYSTEM, IDS_PURPOSE_IPSEC },
372 /* 1.3.6.1.5.5.7.3.6 */
373 { szOID_PKIX_KP_IPSEC_TUNNEL, IDS_PURPOSE_IPSEC },
374 /* 1.3.6.1.5.5.7.3.7 */
375 { szOID_PKIX_KP_IPSEC_USER, IDS_PURPOSE_IPSEC },
376 /* 1.3.6.1.5.5.7.3.8 */
377 { szOID_PKIX_KP_TIMESTAMP_SIGNING, IDS_PURPOSE_TIMESTAMP_SIGNING },
380 static struct OIDToString *findSupportedOID(LPCSTR oid)
382 int indexHigh = sizeof(oidMap) / sizeof(oidMap[0]) - 1, indexLow = 0, i;
383 struct OIDToString *ret = NULL;
385 for (i = (indexLow + indexHigh) / 2; !ret && indexLow <= indexHigh;
386 i = (indexLow + indexHigh) / 2)
388 int cmp;
390 cmp = strcmp(oid, oidMap[i].oid);
391 if (!cmp)
392 ret = &oidMap[i];
393 else if (cmp > 0)
394 indexLow = i + 1;
395 else
396 indexHigh = i - 1;
398 return ret;
401 static void add_local_oid_text_to_control(HWND text, LPCSTR oid)
403 struct OIDToString *entry;
404 WCHAR nl = '\n';
405 PARAFORMAT2 parFmt;
407 parFmt.cbSize = sizeof(parFmt);
408 parFmt.dwMask = PFM_STARTINDENT;
409 parFmt.dxStartIndent = MY_INDENT * 3;
410 if ((entry = findSupportedOID(oid)))
412 WCHAR *str, *linebreak, *ptr;
413 BOOL multiline = FALSE;
414 int len;
416 len = LoadStringW(hInstance, entry->id, (LPWSTR)&str, 0);
417 ptr = str;
418 do {
419 if ((linebreak = memchrW(ptr, '\n', len)))
421 WCHAR copy[MAX_STRING_LEN];
423 multiline = TRUE;
424 /* The source string contains a newline, which the richedit
425 * control won't find since it's interpreted as a paragraph
426 * break. Therefore copy up to the newline. lstrcpynW always
427 * NULL-terminates, so pass one more than the length of the
428 * source line so the copy includes the entire line and the
429 * NULL-terminator.
431 lstrcpynW(copy, ptr, linebreak - ptr + 1);
432 add_text_with_paraformat_to_control(text, copy,
433 linebreak - ptr, &parFmt);
434 ptr = linebreak + 1;
435 add_unformatted_text_to_control(text, &nl, 1);
437 else if (multiline && *ptr)
439 /* Add the last line */
440 add_text_with_paraformat_to_control(text, ptr,
441 len - (ptr - str), &parFmt);
442 add_unformatted_text_to_control(text, &nl, 1);
444 } while (linebreak);
445 if (!multiline)
447 add_text_with_paraformat_to_control(text, str, len, &parFmt);
448 add_unformatted_text_to_control(text, &nl, 1);
451 else
453 WCHAR *oidW = HeapAlloc(GetProcessHeap(), 0,
454 (strlen(oid) + 1) * sizeof(WCHAR));
456 if (oidW)
458 LPCSTR src;
459 WCHAR *dst;
461 for (src = oid, dst = oidW; *src; src++, dst++)
462 *dst = *src;
463 *dst = 0;
464 add_text_with_paraformat_to_control(text, oidW, lstrlenW(oidW),
465 &parFmt);
466 add_unformatted_text_to_control(text, &nl, 1);
467 HeapFree(GetProcessHeap(), 0, oidW);
472 static void display_app_usages(HWND text, PCCERT_CONTEXT cert,
473 BOOL *anyUsageAdded)
475 static char any_app_policy[] = szOID_ANY_APPLICATION_POLICY;
476 WCHAR nl = '\n';
477 CHARFORMATW charFmt;
478 PCERT_EXTENSION policyExt;
479 if (!*anyUsageAdded)
481 PARAFORMAT2 parFmt;
483 parFmt.cbSize = sizeof(parFmt);
484 parFmt.dwMask = PFM_STARTINDENT;
485 parFmt.dxStartIndent = MY_INDENT;
486 add_string_resource_with_paraformat_to_control(text,
487 IDS_CERT_INFO_PURPOSES, &parFmt);
488 add_unformatted_text_to_control(text, &nl, 1);
489 *anyUsageAdded = TRUE;
491 memset(&charFmt, 0, sizeof(charFmt));
492 charFmt.cbSize = sizeof(charFmt);
493 charFmt.dwMask = CFM_BOLD;
494 charFmt.dwEffects = 0;
495 SendMessageW(text, EM_SETCHARFORMAT, SCF_SELECTION, (LPARAM)&charFmt);
496 if ((policyExt = CertFindExtension(szOID_APPLICATION_CERT_POLICIES,
497 cert->pCertInfo->cExtension, cert->pCertInfo->rgExtension)))
499 CERT_POLICIES_INFO *policies;
500 DWORD size;
502 if (CryptDecodeObjectEx(X509_ASN_ENCODING, X509_CERT_POLICIES,
503 policyExt->Value.pbData, policyExt->Value.cbData,
504 CRYPT_DECODE_ALLOC_FLAG, NULL, &policies, &size))
506 DWORD i;
508 for (i = 0; i < policies->cPolicyInfo; i++)
510 DWORD j;
512 for (j = 0; j < policies->rgPolicyInfo[i].cPolicyQualifier; j++)
513 add_local_oid_text_to_control(text,
514 policies->rgPolicyInfo[i].rgPolicyQualifier[j].
515 pszPolicyQualifierId);
517 LocalFree(policies);
520 else
521 add_oid_text_to_control(text, any_app_policy);
524 static BOOL display_cert_usages(HWND text, PCCERT_CONTEXT cert,
525 BOOL *anyUsageAdded)
527 WCHAR nl = '\n';
528 DWORD size;
529 BOOL badUsages = FALSE;
531 if (CertGetEnhancedKeyUsage(cert, 0, NULL, &size))
533 CHARFORMATW charFmt;
534 static char any_cert_policy[] = szOID_ANY_CERT_POLICY;
535 PCERT_ENHKEY_USAGE usage = HeapAlloc(GetProcessHeap(), 0, size);
537 if (usage)
539 if (CertGetEnhancedKeyUsage(cert, 0, usage, &size))
541 DWORD i;
543 if (!*anyUsageAdded)
545 PARAFORMAT2 parFmt;
547 parFmt.cbSize = sizeof(parFmt);
548 parFmt.dwMask = PFM_STARTINDENT;
549 parFmt.dxStartIndent = MY_INDENT;
550 add_string_resource_with_paraformat_to_control(text,
551 IDS_CERT_INFO_PURPOSES, &parFmt);
552 add_unformatted_text_to_control(text, &nl, 1);
553 *anyUsageAdded = TRUE;
555 memset(&charFmt, 0, sizeof(charFmt));
556 charFmt.cbSize = sizeof(charFmt);
557 charFmt.dwMask = CFM_BOLD;
558 charFmt.dwEffects = 0;
559 SendMessageW(text, EM_SETCHARFORMAT, SCF_SELECTION,
560 (LPARAM)&charFmt);
561 if (!usage->cUsageIdentifier)
562 add_oid_text_to_control(text, any_cert_policy);
563 else
564 for (i = 0; i < usage->cUsageIdentifier; i++)
565 add_local_oid_text_to_control(text,
566 usage->rgpszUsageIdentifier[i]);
568 else
569 badUsages = TRUE;
570 HeapFree(GetProcessHeap(), 0, usage);
572 else
573 badUsages = TRUE;
575 else
576 badUsages = TRUE;
577 return badUsages;
580 static void set_policy_text(HWND text,
581 PCCRYPTUI_VIEWCERTIFICATE_STRUCTW pCertViewInfo)
583 BOOL includeCertUsages = FALSE, includeAppUsages = FALSE;
584 BOOL badUsages = FALSE, anyUsageAdded = FALSE;
586 if (pCertViewInfo->cPurposes)
588 DWORD i;
590 for (i = 0; i < pCertViewInfo->cPurposes; i++)
592 if (!strcmp(pCertViewInfo->rgszPurposes[i], szOID_ANY_CERT_POLICY))
593 includeCertUsages = TRUE;
594 else if (!strcmp(pCertViewInfo->rgszPurposes[i],
595 szOID_ANY_APPLICATION_POLICY))
596 includeAppUsages = TRUE;
597 else
598 badUsages = TRUE;
601 else
602 includeAppUsages = includeCertUsages = TRUE;
603 if (includeAppUsages)
604 display_app_usages(text, pCertViewInfo->pCertContext, &anyUsageAdded);
605 if (includeCertUsages)
606 badUsages = display_cert_usages(text, pCertViewInfo->pCertContext,
607 &anyUsageAdded);
608 if (badUsages)
610 PARAFORMAT2 parFmt;
612 parFmt.cbSize = sizeof(parFmt);
613 parFmt.dwMask = PFM_STARTINDENT;
614 parFmt.dxStartIndent = MY_INDENT;
615 add_string_resource_with_paraformat_to_control(text,
616 IDS_CERT_INFO_BAD_PURPOSES, &parFmt);
620 static CRYPT_OBJID_BLOB *find_policy_qualifier(CERT_POLICIES_INFO *policies,
621 LPCSTR policyOid)
623 CRYPT_OBJID_BLOB *ret = NULL;
624 DWORD i;
626 for (i = 0; !ret && i < policies->cPolicyInfo; i++)
628 DWORD j;
630 for (j = 0; !ret && j < policies->rgPolicyInfo[i].cPolicyQualifier; j++)
631 if (!strcmp(policies->rgPolicyInfo[i].rgPolicyQualifier[j].
632 pszPolicyQualifierId, policyOid))
633 ret = &policies->rgPolicyInfo[i].rgPolicyQualifier[j].
634 Qualifier;
636 return ret;
639 static WCHAR *get_cps_str_from_qualifier(CRYPT_OBJID_BLOB *qualifier)
641 LPWSTR qualifierStr = NULL;
642 CERT_NAME_VALUE *qualifierValue;
643 DWORD size;
645 if (CryptDecodeObjectEx(X509_ASN_ENCODING, X509_NAME_VALUE,
646 qualifier->pbData, qualifier->cbData, CRYPT_DECODE_ALLOC_FLAG, NULL,
647 &qualifierValue, &size))
649 size = CertRDNValueToStrW(qualifierValue->dwValueType,
650 &qualifierValue->Value, NULL, 0);
651 qualifierStr = HeapAlloc(GetProcessHeap(), 0, size * sizeof(WCHAR));
652 if (qualifierStr)
653 CertRDNValueToStrW(qualifierValue->dwValueType,
654 &qualifierValue->Value, qualifierStr, size);
655 LocalFree(qualifierValue);
657 return qualifierStr;
660 static WCHAR *get_user_notice_from_qualifier(CRYPT_OBJID_BLOB *qualifier)
662 LPWSTR str = NULL;
663 CERT_POLICY_QUALIFIER_USER_NOTICE *qualifierValue;
664 DWORD size;
666 if (CryptDecodeObjectEx(X509_ASN_ENCODING,
667 X509_PKIX_POLICY_QUALIFIER_USERNOTICE,
668 qualifier->pbData, qualifier->cbData, CRYPT_DECODE_ALLOC_FLAG, NULL,
669 &qualifierValue, &size))
671 str = HeapAlloc(GetProcessHeap(), 0,
672 (strlenW(qualifierValue->pszDisplayText) + 1) * sizeof(WCHAR));
673 if (str)
674 strcpyW(str, qualifierValue->pszDisplayText);
675 LocalFree(qualifierValue);
677 return str;
680 struct IssuerStatement
682 LPWSTR cps;
683 LPWSTR userNotice;
686 static void set_issuer_statement(HWND hwnd,
687 PCCRYPTUI_VIEWCERTIFICATE_STRUCTW pCertViewInfo)
689 PCERT_EXTENSION policyExt;
691 if (!(pCertViewInfo->dwFlags & CRYPTUI_DISABLE_ISSUERSTATEMENT) &&
692 (policyExt = CertFindExtension(szOID_CERT_POLICIES,
693 pCertViewInfo->pCertContext->pCertInfo->cExtension,
694 pCertViewInfo->pCertContext->pCertInfo->rgExtension)))
696 CERT_POLICIES_INFO *policies;
697 DWORD size;
699 if (CryptDecodeObjectEx(X509_ASN_ENCODING, policyExt->pszObjId,
700 policyExt->Value.pbData, policyExt->Value.cbData,
701 CRYPT_DECODE_ALLOC_FLAG, NULL, &policies, &size))
703 CRYPT_OBJID_BLOB *qualifier;
704 LPWSTR cps = NULL, userNotice = NULL;
706 if ((qualifier = find_policy_qualifier(policies,
707 szOID_PKIX_POLICY_QUALIFIER_CPS)))
708 cps = get_cps_str_from_qualifier(qualifier);
709 if ((qualifier = find_policy_qualifier(policies,
710 szOID_PKIX_POLICY_QUALIFIER_USERNOTICE)))
711 userNotice = get_user_notice_from_qualifier(qualifier);
712 if (cps || userNotice)
714 struct IssuerStatement *issuerStatement =
715 HeapAlloc(GetProcessHeap(), 0, sizeof(struct IssuerStatement));
717 if (issuerStatement)
719 issuerStatement->cps = cps;
720 issuerStatement->userNotice = userNotice;
721 EnableWindow(GetDlgItem(hwnd, IDC_ISSUERSTATEMENT), TRUE);
722 SetWindowLongPtrW(hwnd, DWLP_USER,
723 (ULONG_PTR)issuerStatement);
726 LocalFree(policies);
731 static void set_cert_info(HWND hwnd,
732 PCCRYPTUI_VIEWCERTIFICATE_STRUCTW pCertViewInfo)
734 CHARFORMATW charFmt;
735 PARAFORMAT2 parFmt;
736 HWND icon = GetDlgItem(hwnd, IDC_CERTIFICATE_ICON);
737 HWND text = GetDlgItem(hwnd, IDC_CERTIFICATE_INFO);
738 CRYPT_PROVIDER_SGNR *provSigner = WTHelperGetProvSignerFromChain(
739 (CRYPT_PROVIDER_DATA *)pCertViewInfo->u.pCryptProviderData,
740 pCertViewInfo->idxSigner, pCertViewInfo->fCounterSigner,
741 pCertViewInfo->idxCounterSigner);
742 CRYPT_PROVIDER_CERT *root =
743 &provSigner->pasCertChain[provSigner->csCertChain - 1];
745 if (provSigner->pChainContext->TrustStatus.dwErrorStatus &
746 CERT_TRUST_IS_PARTIAL_CHAIN)
747 add_icon_to_control(icon, IDB_CERT_WARNING);
748 else if (!root->fTrustedRoot)
749 add_icon_to_control(icon, IDB_CERT_ERROR);
750 else
751 add_icon_to_control(icon, IDB_CERT);
753 memset(&charFmt, 0, sizeof(charFmt));
754 charFmt.cbSize = sizeof(charFmt);
755 charFmt.dwMask = CFM_BOLD;
756 charFmt.dwEffects = CFE_BOLD;
757 SendMessageW(text, EM_SETCHARFORMAT, SCF_SELECTION, (LPARAM)&charFmt);
758 /* FIXME: vertically center text */
759 parFmt.cbSize = sizeof(parFmt);
760 parFmt.dwMask = PFM_STARTINDENT;
761 parFmt.dxStartIndent = MY_INDENT;
762 add_string_resource_with_paraformat_to_control(text,
763 IDS_CERTIFICATEINFORMATION, &parFmt);
765 text = GetDlgItem(hwnd, IDC_CERTIFICATE_STATUS);
766 SendMessageW(text, EM_SETCHARFORMAT, SCF_SELECTION, (LPARAM)&charFmt);
767 if (provSigner->dwError == TRUST_E_CERT_SIGNATURE)
768 add_string_resource_with_paraformat_to_control(text,
769 IDS_CERT_INFO_BAD_SIG, &parFmt);
770 else if (provSigner->pChainContext->TrustStatus.dwErrorStatus &
771 CERT_TRUST_IS_PARTIAL_CHAIN)
772 add_string_resource_with_paraformat_to_control(text,
773 IDS_CERT_INFO_PARTIAL_CHAIN, &parFmt);
774 else if (!root->fTrustedRoot)
776 if (provSigner->csCertChain == 1 && root->fSelfSigned)
777 add_string_resource_with_paraformat_to_control(text,
778 IDS_CERT_INFO_UNTRUSTED_CA, &parFmt);
779 else
780 add_string_resource_with_paraformat_to_control(text,
781 IDS_CERT_INFO_UNTRUSTED_ROOT, &parFmt);
783 else
785 set_policy_text(text, pCertViewInfo);
786 set_issuer_statement(hwnd, pCertViewInfo);
790 static void set_cert_name_string(HWND hwnd, PCCERT_CONTEXT cert,
791 DWORD nameFlags, int heading)
793 WCHAR nl = '\n';
794 HWND text = GetDlgItem(hwnd, IDC_CERTIFICATE_NAMES);
795 CHARFORMATW charFmt;
796 PARAFORMAT2 parFmt;
798 memset(&charFmt, 0, sizeof(charFmt));
799 charFmt.cbSize = sizeof(charFmt);
800 charFmt.dwMask = CFM_BOLD;
801 charFmt.dwEffects = CFE_BOLD;
802 SendMessageW(text, EM_SETCHARFORMAT, SCF_SELECTION, (LPARAM)&charFmt);
803 parFmt.cbSize = sizeof(parFmt);
804 parFmt.dwMask = PFM_STARTINDENT;
805 parFmt.dxStartIndent = MY_INDENT * 3;
806 add_string_resource_with_paraformat_to_control(text, heading, &parFmt);
807 charFmt.dwEffects = 0;
808 SendMessageW(text, EM_SETCHARFORMAT, SCF_SELECTION, (LPARAM)&charFmt);
809 add_cert_string_to_control(text, cert, CERT_NAME_SIMPLE_DISPLAY_TYPE,
810 nameFlags);
811 add_unformatted_text_to_control(text, &nl, 1);
812 add_unformatted_text_to_control(text, &nl, 1);
813 add_unformatted_text_to_control(text, &nl, 1);
817 static void add_date_string_to_control(HWND hwnd, const FILETIME *fileTime)
819 WCHAR dateFmt[80]; /* sufficient for all versions of LOCALE_SSHORTDATE */
820 WCHAR date[80];
821 SYSTEMTIME sysTime;
823 GetLocaleInfoW(LOCALE_SYSTEM_DEFAULT, LOCALE_SSHORTDATE, dateFmt,
824 sizeof(dateFmt) / sizeof(dateFmt[0]));
825 FileTimeToSystemTime(fileTime, &sysTime);
826 GetDateFormatW(LOCALE_SYSTEM_DEFAULT, 0, &sysTime, dateFmt, date,
827 sizeof(date) / sizeof(date[0]));
828 add_unformatted_text_to_control(hwnd, date, lstrlenW(date));
831 static void set_cert_validity_period(HWND hwnd, PCCERT_CONTEXT cert)
833 WCHAR nl = '\n';
834 HWND text = GetDlgItem(hwnd, IDC_CERTIFICATE_NAMES);
835 CHARFORMATW charFmt;
836 PARAFORMAT2 parFmt;
838 memset(&charFmt, 0, sizeof(charFmt));
839 charFmt.cbSize = sizeof(charFmt);
840 charFmt.dwMask = CFM_BOLD;
841 charFmt.dwEffects = CFE_BOLD;
842 SendMessageW(text, EM_SETCHARFORMAT, SCF_SELECTION, (LPARAM)&charFmt);
843 parFmt.cbSize = sizeof(parFmt);
844 parFmt.dwMask = PFM_STARTINDENT;
845 parFmt.dxStartIndent = MY_INDENT * 3;
846 add_string_resource_with_paraformat_to_control(text, IDS_VALID_FROM,
847 &parFmt);
848 charFmt.dwEffects = 0;
849 SendMessageW(text, EM_SETCHARFORMAT, SCF_SELECTION, (LPARAM)&charFmt);
850 add_date_string_to_control(text, &cert->pCertInfo->NotBefore);
851 charFmt.dwEffects = CFE_BOLD;
852 SendMessageW(text, EM_SETCHARFORMAT, SCF_SELECTION, (LPARAM)&charFmt);
853 add_string_resource_to_control(text, IDS_VALID_TO);
854 charFmt.dwEffects = 0;
855 SendMessageW(text, EM_SETCHARFORMAT, SCF_SELECTION, (LPARAM)&charFmt);
856 add_date_string_to_control(text, &cert->pCertInfo->NotAfter);
857 add_unformatted_text_to_control(text, &nl, 1);
860 static void set_general_info(HWND hwnd,
861 PCCRYPTUI_VIEWCERTIFICATE_STRUCTW pCertViewInfo)
863 set_cert_info(hwnd, pCertViewInfo);
864 set_cert_name_string(hwnd, pCertViewInfo->pCertContext, 0,
865 IDS_SUBJECT_HEADING);
866 set_cert_name_string(hwnd, pCertViewInfo->pCertContext,
867 CERT_NAME_ISSUER_FLAG, IDS_ISSUER_HEADING);
868 set_cert_validity_period(hwnd, pCertViewInfo->pCertContext);
871 static LRESULT CALLBACK user_notice_dlg_proc(HWND hwnd, UINT msg, WPARAM wp,
872 LPARAM lp)
874 LRESULT ret = 0;
875 HWND text;
876 struct IssuerStatement *issuerStatement;
878 switch (msg)
880 case WM_INITDIALOG:
881 text = GetDlgItem(hwnd, IDC_USERNOTICE);
882 issuerStatement = (struct IssuerStatement *)lp;
883 add_unformatted_text_to_control(text, issuerStatement->userNotice,
884 strlenW(issuerStatement->userNotice));
885 if (issuerStatement->cps)
886 SetWindowLongPtrW(hwnd, DWLP_USER, (LPARAM)issuerStatement->cps);
887 else
888 EnableWindow(GetDlgItem(hwnd, IDC_CPS), FALSE);
889 break;
890 case WM_COMMAND:
891 switch (wp)
893 case IDOK:
894 EndDialog(hwnd, IDOK);
895 ret = TRUE;
896 break;
897 case IDC_CPS:
899 IBindCtx *bctx = NULL;
900 LPWSTR cps;
902 CreateBindCtx(0, &bctx);
903 cps = (LPWSTR)GetWindowLongPtrW(hwnd, DWLP_USER);
904 HlinkSimpleNavigateToString(cps, NULL, NULL, NULL, bctx, NULL,
905 HLNF_OPENINNEWWINDOW, 0);
906 IBindCtx_Release(bctx);
907 break;
911 return ret;
914 static void show_user_notice(HWND hwnd, struct IssuerStatement *issuerStatement)
916 DialogBoxParamW(hInstance, MAKEINTRESOURCEW(IDD_USERNOTICE), hwnd,
917 user_notice_dlg_proc, (LPARAM)issuerStatement);
920 static LRESULT CALLBACK general_dlg_proc(HWND hwnd, UINT msg, WPARAM wp,
921 LPARAM lp)
923 PROPSHEETPAGEW *page;
924 PCCRYPTUI_VIEWCERTIFICATE_STRUCTW pCertViewInfo;
926 TRACE("(%p, %08x, %08lx, %08lx)\n", hwnd, msg, wp, lp);
928 switch (msg)
930 case WM_INITDIALOG:
931 page = (PROPSHEETPAGEW *)lp;
932 pCertViewInfo = (PCCRYPTUI_VIEWCERTIFICATE_STRUCTW)page->lParam;
933 if (pCertViewInfo->dwFlags & CRYPTUI_DISABLE_ADDTOSTORE)
934 ShowWindow(GetDlgItem(hwnd, IDC_ADDTOSTORE), FALSE);
935 EnableWindow(GetDlgItem(hwnd, IDC_ISSUERSTATEMENT), FALSE);
936 set_general_info(hwnd, pCertViewInfo);
937 break;
938 case WM_COMMAND:
939 switch (wp)
941 case IDC_ADDTOSTORE:
942 FIXME("call CryptUIWizImport\n");
943 break;
944 case IDC_ISSUERSTATEMENT:
946 struct IssuerStatement *issuerStatement =
947 (struct IssuerStatement *)GetWindowLongPtrW(hwnd, DWLP_USER);
949 if (issuerStatement)
951 if (issuerStatement->userNotice)
952 show_user_notice(hwnd, issuerStatement);
953 else if (issuerStatement->cps)
955 IBindCtx *bctx = NULL;
957 CreateBindCtx(0, &bctx);
958 HlinkSimpleNavigateToString(issuerStatement->cps, NULL,
959 NULL, NULL, bctx, NULL, HLNF_OPENINNEWWINDOW, 0);
960 IBindCtx_Release(bctx);
963 break;
966 break;
968 return 0;
971 static UINT CALLBACK general_callback_proc(HWND hwnd, UINT msg,
972 PROPSHEETPAGEW *page)
974 struct IssuerStatement *issuerStatement;
976 switch (msg)
978 case PSPCB_RELEASE:
979 issuerStatement =
980 (struct IssuerStatement *)GetWindowLongPtrW(hwnd, DWLP_USER);
981 if (issuerStatement)
983 HeapFree(GetProcessHeap(), 0, issuerStatement->cps);
984 HeapFree(GetProcessHeap(), 0, issuerStatement->userNotice);
985 HeapFree(GetProcessHeap(), 0, issuerStatement);
987 break;
989 return 1;
992 static void init_general_page(PCCRYPTUI_VIEWCERTIFICATE_STRUCTW pCertViewInfo,
993 PROPSHEETPAGEW *page)
995 memset(page, 0, sizeof(PROPSHEETPAGEW));
996 page->dwSize = sizeof(PROPSHEETPAGEW);
997 page->dwFlags = PSP_USECALLBACK;
998 page->pfnCallback = general_callback_proc;
999 page->hInstance = hInstance;
1000 page->u.pszTemplate = MAKEINTRESOURCEW(IDD_GENERAL);
1001 page->pfnDlgProc = general_dlg_proc;
1002 page->lParam = (LPARAM)pCertViewInfo;
1005 typedef WCHAR * (*field_format_func)(PCCERT_CONTEXT cert);
1007 static WCHAR *field_format_version(PCCERT_CONTEXT cert)
1009 static const WCHAR fmt[] = { 'V','%','d',0 };
1010 WCHAR *buf = HeapAlloc(GetProcessHeap(), 0, 12 * sizeof(WCHAR));
1012 if (buf)
1013 sprintfW(buf, fmt, cert->pCertInfo->dwVersion);
1014 return buf;
1017 static WCHAR *format_hex_string(void *pb, DWORD cb)
1019 WCHAR *buf = HeapAlloc(GetProcessHeap(), 0, (cb * 3 + 1) * sizeof(WCHAR));
1021 if (buf)
1023 static const WCHAR fmt[] = { '%','0','2','x',' ',0 };
1024 DWORD i;
1025 WCHAR *ptr;
1027 for (i = 0, ptr = buf; i < cb; i++, ptr += 3)
1028 sprintfW(ptr, fmt, ((BYTE *)pb)[i]);
1030 return buf;
1033 static WCHAR *field_format_serial_number(PCCERT_CONTEXT cert)
1035 return format_hex_string(cert->pCertInfo->SerialNumber.pbData,
1036 cert->pCertInfo->SerialNumber.cbData);
1039 static WCHAR *field_format_issuer(PCCERT_CONTEXT cert)
1041 return get_cert_name_string(cert, CERT_NAME_SIMPLE_DISPLAY_TYPE,
1042 CERT_NAME_ISSUER_FLAG);
1045 static WCHAR *field_format_detailed_cert_name(PCERT_NAME_BLOB name)
1047 WCHAR *str = NULL;
1048 DWORD len = CertNameToStrW(X509_ASN_ENCODING, name,
1049 CERT_X500_NAME_STR | CERT_NAME_STR_CRLF_FLAG, NULL, 0);
1051 if (len)
1053 str = HeapAlloc(GetProcessHeap(), 0, len * sizeof(WCHAR));
1054 if (str)
1055 CertNameToStrW(X509_ASN_ENCODING, name,
1056 CERT_X500_NAME_STR | CERT_NAME_STR_CRLF_FLAG, str, len);
1058 return str;
1061 static WCHAR *field_format_detailed_issuer(PCCERT_CONTEXT cert, void *param)
1063 return field_format_detailed_cert_name(&cert->pCertInfo->Issuer);
1066 static WCHAR *field_format_subject(PCCERT_CONTEXT cert)
1068 return get_cert_name_string(cert, CERT_NAME_SIMPLE_DISPLAY_TYPE, 0);
1071 static WCHAR *field_format_detailed_subject(PCCERT_CONTEXT cert, void *param)
1073 return field_format_detailed_cert_name(&cert->pCertInfo->Subject);
1076 static WCHAR *format_long_date(const FILETIME *fileTime)
1078 WCHAR dateFmt[80]; /* long enough for LOCALE_SLONGDATE */
1079 DWORD len;
1080 WCHAR *buf = NULL;
1081 SYSTEMTIME sysTime;
1083 /* FIXME: format isn't quite right, want time too */
1084 GetLocaleInfoW(LOCALE_SYSTEM_DEFAULT, LOCALE_SLONGDATE, dateFmt,
1085 sizeof(dateFmt) / sizeof(dateFmt[0]));
1086 FileTimeToSystemTime(fileTime, &sysTime);
1087 len = GetDateFormatW(LOCALE_SYSTEM_DEFAULT, 0, &sysTime, dateFmt, NULL, 0);
1088 if (len)
1090 buf = HeapAlloc(GetProcessHeap(), 0, len * sizeof(WCHAR));
1091 if (buf)
1092 GetDateFormatW(LOCALE_SYSTEM_DEFAULT, 0, &sysTime, dateFmt, buf,
1093 len);
1095 return buf;
1098 static WCHAR *field_format_from_date(PCCERT_CONTEXT cert)
1100 return format_long_date(&cert->pCertInfo->NotBefore);
1103 static WCHAR *field_format_to_date(PCCERT_CONTEXT cert)
1105 return format_long_date(&cert->pCertInfo->NotAfter);
1108 static WCHAR *field_format_public_key(PCCERT_CONTEXT cert)
1110 PCCRYPT_OID_INFO oidInfo;
1111 WCHAR *buf = NULL;
1113 oidInfo = CryptFindOIDInfo(CRYPT_OID_INFO_OID_KEY,
1114 cert->pCertInfo->SubjectPublicKeyInfo.Algorithm.pszObjId, 0);
1115 if (oidInfo)
1117 WCHAR fmt[MAX_STRING_LEN];
1119 if (LoadStringW(hInstance, IDS_FIELD_PUBLIC_KEY_FORMAT, fmt,
1120 sizeof(fmt) / sizeof(fmt[0])))
1122 /* Allocate the output buffer. Use the number of bytes in the
1123 * public key as a conservative (high) estimate for the number of
1124 * digits in its output.
1125 * The output is of the form (in English)
1126 * "<public key algorithm> (<public key bit length> bits)".
1127 * Ordinarily having two positional parameters in a string is not a
1128 * good idea, but as this isn't a sentence fragment, it shouldn't
1129 * be word-order dependent.
1131 buf = HeapAlloc(GetProcessHeap(), 0,
1132 (strlenW(fmt) + strlenW(oidInfo->pwszName) +
1133 cert->pCertInfo->SubjectPublicKeyInfo.PublicKey.cbData * 8)
1134 * sizeof(WCHAR));
1135 if (buf)
1136 sprintfW(buf, fmt, oidInfo->pwszName,
1137 CertGetPublicKeyLength(X509_ASN_ENCODING,
1138 &cert->pCertInfo->SubjectPublicKeyInfo));
1141 return buf;
1144 static WCHAR *field_format_detailed_public_key(PCCERT_CONTEXT cert, void *param)
1146 return format_hex_string(
1147 cert->pCertInfo->SubjectPublicKeyInfo.PublicKey.pbData,
1148 cert->pCertInfo->SubjectPublicKeyInfo.PublicKey.cbData);
1151 struct field_value_data;
1152 struct detail_data
1154 PCCRYPTUI_VIEWCERTIFICATE_STRUCTW pCertViewInfo;
1155 BOOL *pfPropertiesChanged;
1156 int cFields;
1157 struct field_value_data *fields;
1160 typedef void (*add_fields_func)(HWND hwnd, struct detail_data *data);
1162 typedef WCHAR *(*create_detailed_value_func)(PCCERT_CONTEXT cert, void *param);
1164 struct field_value_data
1166 create_detailed_value_func create;
1167 LPWSTR detailed_value;
1168 void *param;
1171 static void add_field_value_data(struct detail_data *data,
1172 create_detailed_value_func create, void *param)
1174 if (data->cFields)
1175 data->fields = HeapReAlloc(GetProcessHeap(), 0, data->fields,
1176 (data->cFields + 1) * sizeof(struct field_value_data));
1177 else
1178 data->fields = HeapAlloc(GetProcessHeap(), 0,
1179 sizeof(struct field_value_data));
1180 if (data->fields)
1182 data->fields[data->cFields].create = create;
1183 data->fields[data->cFields].detailed_value = NULL;
1184 data->fields[data->cFields].param = param;
1185 data->cFields++;
1189 static void add_field_and_value_to_list(HWND hwnd, struct detail_data *data,
1190 LPWSTR field, LPWSTR value, create_detailed_value_func create, void *param)
1192 LVITEMW item;
1193 int iItem = SendMessageW(hwnd, LVM_GETITEMCOUNT, 0, 0);
1195 item.mask = LVIF_TEXT | LVIF_PARAM;
1196 item.iItem = iItem;
1197 item.iSubItem = 0;
1198 item.pszText = field;
1199 item.lParam = (LPARAM)data;
1200 SendMessageW(hwnd, LVM_INSERTITEMW, 0, (LPARAM)&item);
1201 if (value)
1203 item.pszText = value;
1204 item.iSubItem = 1;
1205 SendMessageW(hwnd, LVM_SETITEMTEXTW, iItem, (LPARAM)&item);
1207 add_field_value_data(data, create, param);
1210 static void add_string_id_and_value_to_list(HWND hwnd, struct detail_data *data,
1211 int id, LPWSTR value, create_detailed_value_func create, void *param)
1213 WCHAR buf[MAX_STRING_LEN];
1215 LoadStringW(hInstance, id, buf, sizeof(buf) / sizeof(buf[0]));
1216 add_field_and_value_to_list(hwnd, data, buf, value, create, param);
1219 struct v1_field
1221 int id;
1222 field_format_func format;
1223 create_detailed_value_func create_detailed_value;
1226 static void add_v1_field(HWND hwnd, struct detail_data *data,
1227 const struct v1_field *field)
1229 WCHAR *val = field->format(data->pCertViewInfo->pCertContext);
1231 if (val)
1233 add_string_id_and_value_to_list(hwnd, data, field->id, val,
1234 field->create_detailed_value, NULL);
1235 HeapFree(GetProcessHeap(), 0, val);
1239 static const struct v1_field v1_fields[] = {
1240 { IDS_FIELD_VERSION, field_format_version, NULL },
1241 { IDS_FIELD_SERIAL_NUMBER, field_format_serial_number, NULL },
1242 { IDS_FIELD_ISSUER, field_format_issuer, field_format_detailed_issuer },
1243 { IDS_FIELD_VALID_FROM, field_format_from_date, NULL },
1244 { IDS_FIELD_VALID_TO, field_format_to_date, NULL },
1245 { IDS_FIELD_SUBJECT, field_format_subject, field_format_detailed_subject },
1246 { IDS_FIELD_PUBLIC_KEY, field_format_public_key,
1247 field_format_detailed_public_key }
1250 static void add_v1_fields(HWND hwnd, struct detail_data *data)
1252 int i;
1253 PCCERT_CONTEXT cert = data->pCertViewInfo->pCertContext;
1255 /* The last item in v1_fields is the public key, which is not in the loop
1256 * because it's a special case.
1258 for (i = 0; i < sizeof(v1_fields) / sizeof(v1_fields[0]) - 1; i++)
1259 add_v1_field(hwnd, data, &v1_fields[i]);
1260 if (cert->pCertInfo->SubjectPublicKeyInfo.PublicKey.cbData)
1261 add_v1_field(hwnd, data, &v1_fields[i]);
1264 static WCHAR *crypt_format_extension(PCERT_EXTENSION ext, DWORD formatStrType)
1266 WCHAR *str = NULL;
1267 DWORD size;
1269 if (CryptFormatObject(X509_ASN_ENCODING, 0, formatStrType, NULL,
1270 ext->pszObjId, ext->Value.pbData, ext->Value.cbData, NULL, &size))
1272 str = HeapAlloc(GetProcessHeap(), 0, size);
1273 CryptFormatObject(X509_ASN_ENCODING, 0, formatStrType, NULL,
1274 ext->pszObjId, ext->Value.pbData, ext->Value.cbData, str, &size);
1276 return str;
1279 static WCHAR *field_format_extension_hex_with_ascii(PCERT_EXTENSION ext)
1281 WCHAR *str = NULL;
1283 if (ext->Value.cbData)
1285 /* The output is formatted as:
1286 * <hex bytes> <ascii bytes>\n
1287 * where <hex bytes> is a string of up to 8 bytes, output as %02x,
1288 * and <ascii bytes> is the ASCII equivalent of each byte, or '.' if
1289 * the byte is not printable.
1290 * So, for example, the extension value consisting of the following
1291 * bytes:
1292 * 0x30,0x14,0x31,0x12,0x30,0x10,0x06,0x03,0x55,0x04,0x03,
1293 * 0x13,0x09,0x4a,0x75,0x61,0x6e,0x20,0x4c,0x61,0x6e,0x67
1294 * is output as:
1295 * 30 14 31 12 30 10 06 03 0.1.0...
1296 * 55 04 03 13 09 4a 75 61 U....Jua
1297 * 6e 20 4c 61 6e 67 n Lang
1298 * The allocation size therefore requires:
1299 * - 4 characters per character in an 8-byte line
1300 * (2 for the hex format, one for the space, one for the ASCII value)
1301 * - 3 more characters per 8-byte line (two spaces and a newline)
1302 * - 1 character for the terminating nul
1303 * FIXME: should use a fixed-width font for this
1305 DWORD lines = (ext->Value.cbData + 7) / 8;
1307 str = HeapAlloc(GetProcessHeap(), 0,
1308 (lines * 8 * 4 + lines * 3 + 1) * sizeof(WCHAR));
1309 if (str)
1311 static const WCHAR fmt[] = { '%','0','2','x',' ',0 };
1312 DWORD i, j;
1313 WCHAR *ptr;
1315 for (i = 0, ptr = str; i < ext->Value.cbData; i += 8)
1317 /* Output as hex bytes first */
1318 for (j = i; j < min(i + 8, ext->Value.cbData); j++, ptr += 3)
1319 sprintfW(ptr, fmt, ext->Value.pbData[j]);
1320 /* Pad the hex output with spaces for alignment */
1321 if (j == ext->Value.cbData && j % 8)
1323 static const WCHAR pad[] = { ' ',' ',' ' };
1325 for (; j % 8; j++, ptr += sizeof(pad) / sizeof(pad[0]))
1326 memcpy(ptr, pad, sizeof(pad));
1328 /* The last sprintfW included a space, so just insert one
1329 * more space between the hex bytes and the ASCII output
1331 *ptr++ = ' ';
1332 /* Output as ASCII bytes */
1333 for (j = i; j < min(i + 8, ext->Value.cbData); j++, ptr++)
1335 if (isprintW(ext->Value.pbData[j]) &&
1336 !isspaceW(ext->Value.pbData[j]))
1337 *ptr = ext->Value.pbData[j];
1338 else
1339 *ptr = '.';
1341 *ptr++ = '\n';
1343 *ptr++ = '\0';
1346 return str;
1349 static WCHAR *field_format_detailed_extension(PCCERT_CONTEXT cert, void *param)
1351 PCERT_EXTENSION ext = param;
1352 LPWSTR str = crypt_format_extension(ext,
1353 CRYPT_FORMAT_STR_MULTI_LINE | CRYPT_FORMAT_STR_NO_HEX);
1355 if (!str)
1356 str = field_format_extension_hex_with_ascii(ext);
1357 return str;
1360 static void add_cert_extension_detail(HWND hwnd, struct detail_data *data,
1361 PCERT_EXTENSION ext)
1363 PCCRYPT_OID_INFO oidInfo = CryptFindOIDInfo(CRYPT_OID_INFO_OID_KEY,
1364 ext->pszObjId, 0);
1365 LPWSTR val = crypt_format_extension(ext, 0);
1367 if (oidInfo)
1368 add_field_and_value_to_list(hwnd, data, (LPWSTR)oidInfo->pwszName,
1369 val, field_format_detailed_extension, ext);
1370 else
1372 DWORD len = strlen(ext->pszObjId);
1373 LPWSTR oidW = HeapAlloc(GetProcessHeap(), 0, (len + 1) * sizeof(WCHAR));
1375 if (oidW)
1377 DWORD i;
1379 for (i = 0; i <= len; i++)
1380 oidW[i] = ext->pszObjId[i];
1381 add_field_and_value_to_list(hwnd, data, oidW, val,
1382 field_format_detailed_extension, ext);
1383 HeapFree(GetProcessHeap(), 0, oidW);
1386 HeapFree(GetProcessHeap(), 0, val);
1389 static void add_all_extensions(HWND hwnd, struct detail_data *data)
1391 DWORD i;
1392 PCCERT_CONTEXT cert = data->pCertViewInfo->pCertContext;
1394 for (i = 0; i < cert->pCertInfo->cExtension; i++)
1395 add_cert_extension_detail(hwnd, data, &cert->pCertInfo->rgExtension[i]);
1398 static void add_critical_extensions(HWND hwnd, struct detail_data *data)
1400 DWORD i;
1401 PCCERT_CONTEXT cert = data->pCertViewInfo->pCertContext;
1403 for (i = 0; i < cert->pCertInfo->cExtension; i++)
1404 if (cert->pCertInfo->rgExtension[i].fCritical)
1405 add_cert_extension_detail(hwnd, data,
1406 &cert->pCertInfo->rgExtension[i]);
1409 typedef WCHAR * (*prop_to_value_func)(void *pb, DWORD cb);
1411 struct prop_id_to_string_id
1413 DWORD prop;
1414 int id;
1415 BOOL prop_is_string;
1416 prop_to_value_func prop_to_value;
1419 static WCHAR *format_enhanced_key_usage_value(void *pb, DWORD cb)
1421 CERT_EXTENSION ext;
1423 ext.pszObjId = (LPSTR)X509_ENHANCED_KEY_USAGE;
1424 ext.fCritical = FALSE;
1425 ext.Value.pbData = pb;
1426 ext.Value.cbData = cb;
1427 return crypt_format_extension(&ext, 0);
1430 /* Logically the access state should also be checked, and IDC_EDITPROPERTIES
1431 * disabled for read-only certificates, but native doesn't appear to do that.
1433 static const struct prop_id_to_string_id prop_id_map[] = {
1434 { CERT_HASH_PROP_ID, IDS_PROP_HASH, FALSE, format_hex_string },
1435 { CERT_FRIENDLY_NAME_PROP_ID, IDS_PROP_FRIENDLY_NAME, TRUE, NULL },
1436 { CERT_DESCRIPTION_PROP_ID, IDS_PROP_DESCRIPTION, TRUE, NULL },
1437 { CERT_ENHKEY_USAGE_PROP_ID, IDS_PROP_ENHKEY_USAGE, FALSE,
1438 format_enhanced_key_usage_value },
1441 static void add_properties(HWND hwnd, struct detail_data *data)
1443 DWORD i;
1444 PCCERT_CONTEXT cert = data->pCertViewInfo->pCertContext;
1446 for (i = 0; i < sizeof(prop_id_map) / sizeof(prop_id_map[0]); i++)
1448 DWORD cb;
1450 if (CertGetCertificateContextProperty(cert, prop_id_map[i].prop, NULL,
1451 &cb))
1453 BYTE *pb;
1454 WCHAR *val = NULL;
1456 /* FIXME: MS adds a separate value for the signature hash
1457 * algorithm.
1459 pb = HeapAlloc(GetProcessHeap(), 0, cb);
1460 if (pb)
1462 if (CertGetCertificateContextProperty(cert,
1463 prop_id_map[i].prop, pb, &cb))
1465 if (prop_id_map[i].prop_is_string)
1467 val = (LPWSTR)pb;
1468 /* Don't double-free pb */
1469 pb = NULL;
1471 else
1472 val = prop_id_map[i].prop_to_value(pb, cb);
1474 HeapFree(GetProcessHeap(), 0, pb);
1476 add_string_id_and_value_to_list(hwnd, data, prop_id_map[i].id, val,
1477 NULL, NULL);
1482 static void add_all_fields(HWND hwnd, struct detail_data *data)
1484 add_v1_fields(hwnd, data);
1485 add_all_extensions(hwnd, data);
1486 add_properties(hwnd, data);
1489 struct selection_list_item
1491 int id;
1492 add_fields_func add;
1495 const struct selection_list_item listItems[] = {
1496 { IDS_FIELDS_ALL, add_all_fields },
1497 { IDS_FIELDS_V1, add_v1_fields },
1498 { IDS_FIELDS_EXTENSIONS, add_all_extensions },
1499 { IDS_FIELDS_CRITICAL_EXTENSIONS, add_critical_extensions },
1500 { IDS_FIELDS_PROPERTIES, add_properties },
1503 static void create_show_list(HWND hwnd, struct detail_data *data)
1505 HWND cb = GetDlgItem(hwnd, IDC_DETAIL_SELECT);
1506 WCHAR buf[MAX_STRING_LEN];
1507 int i;
1509 for (i = 0; i < sizeof(listItems) / sizeof(listItems[0]); i++)
1511 int index;
1513 LoadStringW(hInstance, listItems[i].id, buf,
1514 sizeof(buf) / sizeof(buf[0]));
1515 index = SendMessageW(cb, CB_INSERTSTRING, -1, (LPARAM)buf);
1516 SendMessageW(cb, CB_SETITEMDATA, index, (LPARAM)data);
1518 SendMessageW(cb, CB_SETCURSEL, 0, 0);
1521 static void create_listview_columns(HWND hwnd)
1523 HWND lv = GetDlgItem(hwnd, IDC_DETAIL_LIST);
1524 RECT rc;
1525 WCHAR buf[MAX_STRING_LEN];
1526 LVCOLUMNW column;
1528 SendMessageW(lv, LVM_SETEXTENDEDLISTVIEWSTYLE, 0, LVS_EX_FULLROWSELECT);
1529 GetWindowRect(lv, &rc);
1530 LoadStringW(hInstance, IDS_FIELD, buf, sizeof(buf) / sizeof(buf[0]));
1531 column.mask = LVCF_WIDTH | LVCF_TEXT;
1532 column.cx = (rc.right - rc.left) / 2 - 2;
1533 column.pszText = buf;
1534 SendMessageW(lv, LVM_INSERTCOLUMNW, 0, (LPARAM)&column);
1535 LoadStringW(hInstance, IDS_VALUE, buf, sizeof(buf) / sizeof(buf[0]));
1536 SendMessageW(lv, LVM_INSERTCOLUMNW, 1, (LPARAM)&column);
1539 static void set_fields_selection(HWND hwnd, struct detail_data *data, int sel)
1541 HWND list = GetDlgItem(hwnd, IDC_DETAIL_LIST);
1543 if (sel >= 0 && sel < sizeof(listItems) / sizeof(listItems[0]))
1545 SendMessageW(list, LVM_DELETEALLITEMS, 0, 0);
1546 listItems[sel].add(list, data);
1550 static void create_cert_details_list(HWND hwnd, struct detail_data *data)
1552 create_show_list(hwnd, data);
1553 create_listview_columns(hwnd);
1554 set_fields_selection(hwnd, data, 0);
1557 static WCHAR *get_cert_property_as_string(PCCERT_CONTEXT cert, DWORD prop)
1559 WCHAR *name = NULL;
1560 DWORD cb;
1562 if (CertGetCertificateContextProperty(cert, prop, NULL, &cb))
1564 name = HeapAlloc(GetProcessHeap(), 0, cb);
1565 if (name)
1567 if (!CertGetCertificateContextProperty(cert, prop, (LPBYTE)name,
1568 &cb))
1570 HeapFree(GetProcessHeap(), 0, name);
1571 name = NULL;
1575 return name;
1578 static void set_general_cert_properties(HWND hwnd, struct detail_data *data)
1580 PCCERT_CONTEXT cert = data->pCertViewInfo->pCertContext;
1581 WCHAR *str;
1583 if ((str = get_cert_property_as_string(cert, CERT_FRIENDLY_NAME_PROP_ID)))
1585 SendMessageW(GetDlgItem(hwnd, IDC_FRIENDLY_NAME), WM_SETTEXT, 0,
1586 (LPARAM)str);
1587 HeapFree(GetProcessHeap(), 0, str);
1589 if ((str = get_cert_property_as_string(cert, CERT_DESCRIPTION_PROP_ID)))
1591 SendMessageW(GetDlgItem(hwnd, IDC_DESCRIPTION), WM_SETTEXT, 0,
1592 (LPARAM)str);
1593 HeapFree(GetProcessHeap(), 0, str);
1595 FIXME("show cert usages\n");
1596 EnableWindow(GetDlgItem(hwnd, IDC_ADD_PURPOSE), FALSE);
1597 SendMessageW(GetDlgItem(hwnd, IDC_ENABLE_ALL_PURPOSES), BM_CLICK, 0, 0);
1600 #define MAX_FRIENDLY_NAME 40
1601 #define MAX_DESCRIPTION 255
1603 static LRESULT CALLBACK cert_properties_general_dlg_proc(HWND hwnd, UINT msg,
1604 WPARAM wp, LPARAM lp)
1606 PROPSHEETPAGEW *page;
1607 struct detail_data *data;
1609 TRACE("(%p, %08x, %08lx, %08lx)\n", hwnd, msg, wp, lp);
1611 switch (msg)
1613 case WM_INITDIALOG:
1615 HWND description = GetDlgItem(hwnd, IDC_DESCRIPTION);
1617 page = (PROPSHEETPAGEW *)lp;
1618 data = (struct detail_data *)page->lParam;
1619 SendMessageW(GetDlgItem(hwnd, IDC_FRIENDLY_NAME), EM_SETLIMITTEXT,
1620 MAX_FRIENDLY_NAME, 0);
1621 SendMessageW(description, EM_SETLIMITTEXT, MAX_DESCRIPTION, 0);
1622 ShowScrollBar(description, SB_VERT, FALSE);
1623 set_general_cert_properties(hwnd, data);
1624 SetWindowLongPtrW(hwnd, DWLP_USER, (LPARAM)data);
1625 break;
1628 return 0;
1631 static void show_edit_cert_properties_dialog(HWND parent,
1632 struct detail_data *data)
1634 PROPSHEETHEADERW hdr;
1635 PROPSHEETPAGEW page; /* FIXME: need to add a cross-certificate page */
1637 TRACE("(%p)\n", data);
1639 memset(&page, 0, sizeof(PROPSHEETPAGEW));
1640 page.dwSize = sizeof(page);
1641 page.hInstance = hInstance;
1642 page.u.pszTemplate = MAKEINTRESOURCEW(IDD_CERT_PROPERTIES_GENERAL);
1643 page.pfnDlgProc = cert_properties_general_dlg_proc;
1644 page.lParam = (LPARAM)data;
1646 memset(&hdr, 0, sizeof(hdr));
1647 hdr.dwSize = sizeof(hdr);
1648 hdr.hwndParent = parent;
1649 hdr.dwFlags = PSH_PROPSHEETPAGE;
1650 hdr.hInstance = hInstance;
1651 hdr.pszCaption = MAKEINTRESOURCEW(IDS_CERTIFICATE_PROPERTIES);
1652 hdr.u3.ppsp = &page;
1653 hdr.nPages = 1;
1654 PropertySheetW(&hdr);
1657 static void free_detail_fields(struct detail_data *data)
1659 DWORD i;
1661 for (i = 0; i < data->cFields; i++)
1662 HeapFree(GetProcessHeap(), 0, data->fields[i].detailed_value);
1663 HeapFree(GetProcessHeap(), 0, data->fields);
1664 data->fields = NULL;
1665 data->cFields = 0;
1668 static void refresh_details_view(HWND hwnd)
1670 HWND cb = GetDlgItem(hwnd, IDC_DETAIL_SELECT);
1671 int curSel;
1672 struct detail_data *data;
1674 curSel = SendMessageW(cb, CB_GETCURSEL, 0, 0);
1675 /* Actually, any index will do, since they all store the same data value */
1676 data = (struct detail_data *)SendMessageW(cb, CB_GETITEMDATA, curSel, 0);
1677 free_detail_fields(data);
1678 set_fields_selection(hwnd, data, curSel);
1681 static LRESULT CALLBACK detail_dlg_proc(HWND hwnd, UINT msg, WPARAM wp,
1682 LPARAM lp)
1684 PROPSHEETPAGEW *page;
1685 struct detail_data *data;
1687 TRACE("(%p, %08x, %08lx, %08lx)\n", hwnd, msg, wp, lp);
1689 switch (msg)
1691 case WM_INITDIALOG:
1692 page = (PROPSHEETPAGEW *)lp;
1693 data = (struct detail_data *)page->lParam;
1694 create_cert_details_list(hwnd, data);
1695 if (!(data->pCertViewInfo->dwFlags & CRYPTUI_ENABLE_EDITPROPERTIES))
1696 EnableWindow(GetDlgItem(hwnd, IDC_EDITPROPERTIES), FALSE);
1697 if (data->pCertViewInfo->dwFlags & CRYPTUI_DISABLE_EXPORT)
1698 EnableWindow(GetDlgItem(hwnd, IDC_EXPORT), FALSE);
1699 break;
1700 case WM_NOTIFY:
1702 NMITEMACTIVATE *nm;
1703 HWND list = GetDlgItem(hwnd, IDC_DETAIL_LIST);
1705 nm = (NMITEMACTIVATE*)lp;
1706 if (nm->hdr.hwndFrom == list && nm->uNewState & LVN_ITEMACTIVATE
1707 && nm->hdr.code == LVN_ITEMCHANGED)
1709 data = (struct detail_data *)nm->lParam;
1710 if (nm->iItem >= 0 && data && nm->iItem < data->cFields)
1712 WCHAR buf[MAX_STRING_LEN], *val = NULL;
1713 HWND valueCtl = GetDlgItem(hwnd, IDC_DETAIL_VALUE);
1715 if (data->fields[nm->iItem].create)
1716 val = data->fields[nm->iItem].create(
1717 data->pCertViewInfo->pCertContext,
1718 data->fields[nm->iItem].param);
1719 else
1721 LVITEMW item;
1722 int res;
1724 item.cchTextMax = sizeof(buf) / sizeof(buf[0]);
1725 item.mask = LVIF_TEXT;
1726 item.pszText = buf;
1727 item.iItem = nm->iItem;
1728 item.iSubItem = 1;
1729 res = SendMessageW(list, LVM_GETITEMW, 0, (LPARAM)&item);
1730 if (res)
1731 val = buf;
1733 /* Select all the text in the control, the next update will
1734 * replace it
1736 SendMessageW(valueCtl, EM_SETSEL, 0, -1);
1737 add_unformatted_text_to_control(valueCtl, val,
1738 val ? strlenW(val) : 0);
1739 if (val != buf)
1740 HeapFree(GetProcessHeap(), 0, val);
1743 break;
1745 case WM_COMMAND:
1746 switch (wp)
1748 case IDC_EXPORT:
1749 FIXME("call CryptUIWizExport\n");
1750 break;
1751 case IDC_EDITPROPERTIES:
1753 HWND cb = GetDlgItem(hwnd, IDC_DETAIL_SELECT);
1754 int curSel;
1756 curSel = SendMessageW(cb, CB_GETCURSEL, 0, 0);
1757 /* Actually, any index will do, since they all store the same
1758 * data value
1760 data = (struct detail_data *)SendMessageW(cb, CB_GETITEMDATA,
1761 curSel, 0);
1762 show_edit_cert_properties_dialog(GetParent(hwnd), data);
1763 break;
1765 case ((CBN_SELCHANGE << 16) | IDC_DETAIL_SELECT):
1766 refresh_details_view(hwnd);
1767 break;
1769 break;
1771 return 0;
1774 static BOOL init_detail_page(PCCRYPTUI_VIEWCERTIFICATE_STRUCTW pCertViewInfo,
1775 BOOL *pfPropertiesChanged, PROPSHEETPAGEW *page)
1777 BOOL ret;
1778 struct detail_data *data = HeapAlloc(GetProcessHeap(), 0,
1779 sizeof(struct detail_data));
1781 if (data)
1783 data->pCertViewInfo = pCertViewInfo;
1784 data->pfPropertiesChanged = pfPropertiesChanged;
1785 data->cFields = 0;
1786 data->fields = NULL;
1787 memset(page, 0, sizeof(PROPSHEETPAGEW));
1788 page->dwSize = sizeof(PROPSHEETPAGEW);
1789 page->hInstance = hInstance;
1790 page->u.pszTemplate = MAKEINTRESOURCEW(IDD_DETAIL);
1791 page->pfnDlgProc = detail_dlg_proc;
1792 page->lParam = (LPARAM)data;
1793 ret = TRUE;
1795 else
1796 ret = FALSE;
1797 return ret;
1800 struct hierarchy_data
1802 PCCRYPTUI_VIEWCERTIFICATE_STRUCTW pCertViewInfo;
1803 HIMAGELIST imageList;
1804 DWORD selectedCert;
1807 static LPARAM index_to_lparam(struct hierarchy_data *data, DWORD index)
1809 CRYPT_PROVIDER_SGNR *provSigner = WTHelperGetProvSignerFromChain(
1810 (CRYPT_PROVIDER_DATA *)data->pCertViewInfo->u.pCryptProviderData,
1811 data->pCertViewInfo->idxSigner, data->pCertViewInfo->fCounterSigner,
1812 data->pCertViewInfo->idxCounterSigner);
1814 /* Takes advantage of the fact that a pointer is 32-bit aligned, and
1815 * therefore always even.
1817 if (index == provSigner->csCertChain - 1)
1818 return (LPARAM)data;
1819 return index << 1 | 1;
1822 static inline DWORD lparam_to_index(struct hierarchy_data *data, LPARAM lp)
1824 CRYPT_PROVIDER_SGNR *provSigner = WTHelperGetProvSignerFromChain(
1825 (CRYPT_PROVIDER_DATA *)data->pCertViewInfo->u.pCryptProviderData,
1826 data->pCertViewInfo->idxSigner, data->pCertViewInfo->fCounterSigner,
1827 data->pCertViewInfo->idxCounterSigner);
1829 if (!(lp & 1))
1830 return provSigner->csCertChain - 1;
1831 return lp >> 1;
1834 static struct hierarchy_data *get_hierarchy_data_from_tree_item(HWND tree,
1835 HTREEITEM hItem)
1837 struct hierarchy_data *data = NULL;
1838 HTREEITEM root = NULL;
1840 do {
1841 HTREEITEM parent = (HTREEITEM)SendMessageW(tree, TVM_GETNEXTITEM,
1842 TVGN_PARENT, (LPARAM)hItem);
1844 if (!parent)
1845 root = hItem;
1846 hItem = parent;
1847 } while (hItem);
1848 if (root)
1850 TVITEMW item;
1852 item.mask = TVIF_PARAM;
1853 item.hItem = root;
1854 SendMessageW(tree, TVM_GETITEMW, 0, (LPARAM)&item);
1855 data = (struct hierarchy_data *)item.lParam;
1857 return data;
1860 static WCHAR *get_cert_display_name(PCCERT_CONTEXT cert)
1862 WCHAR *name = get_cert_property_as_string(cert, CERT_FRIENDLY_NAME_PROP_ID);
1864 if (!name)
1865 name = get_cert_name_string(cert, CERT_NAME_SIMPLE_DISPLAY_TYPE, 0);
1866 return name;
1869 static void show_cert_chain(HWND hwnd, struct hierarchy_data *data)
1871 HWND tree = GetDlgItem(hwnd, IDC_CERTPATH);
1872 CRYPT_PROVIDER_SGNR *provSigner = WTHelperGetProvSignerFromChain(
1873 (CRYPT_PROVIDER_DATA *)data->pCertViewInfo->u.pCryptProviderData,
1874 data->pCertViewInfo->idxSigner, data->pCertViewInfo->fCounterSigner,
1875 data->pCertViewInfo->idxCounterSigner);
1876 DWORD i;
1877 HTREEITEM parent = NULL;
1879 SendMessageW(tree, TVM_SETIMAGELIST, TVSIL_NORMAL, (LPARAM)data->imageList);
1880 for (i = provSigner->csCertChain; i; i--)
1882 LPWSTR name;
1884 name = get_cert_display_name(provSigner->pasCertChain[i - 1].pCert);
1885 if (name)
1887 TVINSERTSTRUCTW tvis;
1889 tvis.hParent = parent;
1890 tvis.hInsertAfter = TVI_LAST;
1891 tvis.u.item.mask = TVIF_TEXT | TVIF_STATE | TVIF_IMAGE |
1892 TVIF_SELECTEDIMAGE | TVIF_PARAM;
1893 tvis.u.item.pszText = name;
1894 tvis.u.item.state = TVIS_EXPANDED;
1895 tvis.u.item.stateMask = TVIS_EXPANDED;
1896 if (i == 1 &&
1897 (provSigner->pChainContext->TrustStatus.dwErrorStatus &
1898 CERT_TRUST_IS_PARTIAL_CHAIN))
1900 /* The root of the chain has a special case: if the chain is
1901 * a partial chain, the icon is a warning icon rather than an
1902 * error icon.
1904 tvis.u.item.iImage = 2;
1906 else if (provSigner->pasCertChain[i - 1].pChainElement->TrustStatus.
1907 dwErrorStatus == 0)
1908 tvis.u.item.iImage = 0;
1909 else
1910 tvis.u.item.iImage = 1;
1911 tvis.u.item.iSelectedImage = tvis.u.item.iImage;
1912 tvis.u.item.lParam = index_to_lparam(data, i - 1);
1913 parent = (HTREEITEM)SendMessageW(tree, TVM_INSERTITEMW, 0,
1914 (LPARAM)&tvis);
1915 HeapFree(GetProcessHeap(), 0, name);
1920 static void set_certificate_status(HWND hwnd, CRYPT_PROVIDER_CERT *cert)
1922 /* Select all the text in the control, the next update will replace it */
1923 SendMessageW(hwnd, EM_SETSEL, 0, -1);
1924 /* Set the highest priority error messages first. */
1925 if (!(cert->dwConfidence & CERT_CONFIDENCE_SIG))
1926 add_string_resource_to_control(hwnd, IDS_CERTIFICATE_BAD_SIGNATURE);
1927 else if (!(cert->dwConfidence & CERT_CONFIDENCE_TIME))
1928 add_string_resource_to_control(hwnd, IDS_CERTIFICATE_BAD_TIME);
1929 else if (!(cert->dwConfidence & CERT_CONFIDENCE_TIMENEST))
1930 add_string_resource_to_control(hwnd, IDS_CERTIFICATE_BAD_TIMENEST);
1931 else if (cert->dwRevokedReason)
1932 add_string_resource_to_control(hwnd, IDS_CERTIFICATE_REVOKED);
1933 else
1934 add_string_resource_to_control(hwnd, IDS_CERTIFICATE_VALID);
1937 static void set_certificate_status_for_end_cert(HWND hwnd,
1938 PCCRYPTUI_VIEWCERTIFICATE_STRUCTW pCertViewInfo)
1940 HWND status = GetDlgItem(hwnd, IDC_CERTIFICATESTATUSTEXT);
1941 CRYPT_PROVIDER_SGNR *provSigner = WTHelperGetProvSignerFromChain(
1942 (CRYPT_PROVIDER_DATA *)pCertViewInfo->u.pCryptProviderData,
1943 pCertViewInfo->idxSigner, pCertViewInfo->fCounterSigner,
1944 pCertViewInfo->idxCounterSigner);
1945 CRYPT_PROVIDER_CERT *provCert = WTHelperGetProvCertFromChain(provSigner,
1946 pCertViewInfo->idxCert);
1948 set_certificate_status(status, provCert);
1951 static void show_cert_hierarchy(HWND hwnd, struct hierarchy_data *data)
1953 /* Disable view certificate button until a certificate is selected */
1954 EnableWindow(GetDlgItem(hwnd, IDC_VIEWCERTIFICATE), FALSE);
1955 show_cert_chain(hwnd, data);
1956 set_certificate_status_for_end_cert(hwnd, data->pCertViewInfo);
1959 static void show_dialog_for_selected_cert(HWND hwnd)
1961 HWND tree = GetDlgItem(hwnd, IDC_CERTPATH);
1962 TVITEMW item;
1963 struct hierarchy_data *data;
1964 DWORD selection;
1966 memset(&item, 0, sizeof(item));
1967 item.mask = TVIF_HANDLE | TVIF_PARAM;
1968 item.hItem = (HTREEITEM)SendMessageW(tree, TVM_GETNEXTITEM, TVGN_CARET,
1969 (LPARAM)NULL);
1970 SendMessageW(tree, TVM_GETITEMW, 0, (LPARAM)&item);
1971 data = get_hierarchy_data_from_tree_item(tree, item.hItem);
1972 selection = lparam_to_index(data, item.lParam);
1973 if (selection != 0)
1975 CRYPT_PROVIDER_SGNR *provSigner;
1976 CRYPTUI_VIEWCERTIFICATE_STRUCTW viewInfo;
1977 BOOL changed = FALSE;
1979 provSigner = WTHelperGetProvSignerFromChain(
1980 (CRYPT_PROVIDER_DATA *)data->pCertViewInfo->u.pCryptProviderData,
1981 data->pCertViewInfo->idxSigner,
1982 data->pCertViewInfo->fCounterSigner,
1983 data->pCertViewInfo->idxCounterSigner);
1984 memset(&viewInfo, 0, sizeof(viewInfo));
1985 viewInfo.dwSize = sizeof(viewInfo);
1986 viewInfo.dwFlags = data->pCertViewInfo->dwFlags;
1987 viewInfo.szTitle = data->pCertViewInfo->szTitle;
1988 viewInfo.pCertContext = provSigner->pasCertChain[selection].pCert;
1989 viewInfo.cStores = data->pCertViewInfo->cStores;
1990 viewInfo.rghStores = data->pCertViewInfo->rghStores;
1991 viewInfo.cPropSheetPages = data->pCertViewInfo->cPropSheetPages;
1992 viewInfo.rgPropSheetPages = data->pCertViewInfo->rgPropSheetPages;
1993 viewInfo.nStartPage = data->pCertViewInfo->nStartPage;
1994 CryptUIDlgViewCertificateW(&viewInfo, &changed);
1995 if (changed)
1997 /* Delete the contents of the tree */
1998 SendMessageW(tree, TVM_DELETEITEM, 0, (LPARAM)TVI_ROOT);
1999 /* Reinitialize the tree */
2000 show_cert_hierarchy(hwnd, data);
2005 static LRESULT CALLBACK hierarchy_dlg_proc(HWND hwnd, UINT msg, WPARAM wp,
2006 LPARAM lp)
2008 PROPSHEETPAGEW *page;
2009 struct hierarchy_data *data;
2010 LRESULT ret = 0;
2012 TRACE("(%p, %08x, %08lx, %08lx)\n", hwnd, msg, wp, lp);
2014 switch (msg)
2016 case WM_INITDIALOG:
2017 page = (PROPSHEETPAGEW *)lp;
2018 data = (struct hierarchy_data *)page->lParam;
2019 show_cert_hierarchy(hwnd, data);
2020 break;
2021 case WM_NOTIFY:
2023 NMHDR *hdr;
2025 hdr = (NMHDR *)lp;
2026 switch (hdr->code)
2028 case TVN_SELCHANGEDW:
2030 NMTREEVIEWW *nm = (NMTREEVIEWW*)lp;
2031 HWND tree = GetDlgItem(hwnd, IDC_CERTPATH);
2032 DWORD selection;
2033 CRYPT_PROVIDER_SGNR *provSigner;
2035 data = get_hierarchy_data_from_tree_item(tree, nm->itemNew.hItem);
2036 selection = lparam_to_index(data, nm->itemNew.lParam);
2037 provSigner = WTHelperGetProvSignerFromChain(
2038 (CRYPT_PROVIDER_DATA *)data->pCertViewInfo->u.pCryptProviderData,
2039 data->pCertViewInfo->idxSigner,
2040 data->pCertViewInfo->fCounterSigner,
2041 data->pCertViewInfo->idxCounterSigner);
2042 EnableWindow(GetDlgItem(hwnd, IDC_VIEWCERTIFICATE), selection != 0);
2043 set_certificate_status(GetDlgItem(hwnd, IDC_CERTIFICATESTATUSTEXT),
2044 &provSigner->pasCertChain[selection]);
2045 break;
2047 case NM_DBLCLK:
2048 show_dialog_for_selected_cert(hwnd);
2049 SetWindowLongPtrW(hwnd, DWLP_MSGRESULT, 1);
2050 ret = 1;
2051 break;
2053 break;
2055 case WM_COMMAND:
2056 switch (wp)
2058 case IDC_VIEWCERTIFICATE:
2059 show_dialog_for_selected_cert(hwnd);
2060 break;
2062 break;
2064 return ret;
2067 static UINT CALLBACK hierarchy_callback(HWND hwnd, UINT msg,
2068 PROPSHEETPAGEW *page)
2070 struct hierarchy_data *data;
2072 switch (msg)
2074 case PSPCB_RELEASE:
2075 data = (struct hierarchy_data *)page->lParam;
2076 ImageList_Destroy(data->imageList);
2077 HeapFree(GetProcessHeap(), 0, data);
2078 break;
2080 return 0;
2083 static BOOL init_hierarchy_page(PCCRYPTUI_VIEWCERTIFICATE_STRUCTW pCertViewInfo,
2084 PROPSHEETPAGEW *page)
2086 struct hierarchy_data *data = HeapAlloc(GetProcessHeap(), 0,
2087 sizeof(struct hierarchy_data));
2088 BOOL ret = FALSE;
2090 if (data)
2092 data->imageList = ImageList_Create(16, 16, ILC_COLOR4 | ILC_MASK, 2, 0);
2093 if (data->imageList)
2095 HBITMAP bmp;
2096 COLORREF backColor = RGB(255, 0, 255);
2098 data->pCertViewInfo = pCertViewInfo;
2099 data->selectedCert = 0xffffffff;
2101 bmp = LoadBitmapW(hInstance, MAKEINTRESOURCEW(IDB_SMALL_ICONS));
2102 ImageList_AddMasked(data->imageList, bmp, backColor);
2103 DeleteObject(bmp);
2104 ImageList_SetBkColor(data->imageList, CLR_NONE);
2106 memset(page, 0, sizeof(PROPSHEETPAGEW));
2107 page->dwSize = sizeof(PROPSHEETPAGEW);
2108 page->dwFlags = PSP_USECALLBACK;
2109 page->hInstance = hInstance;
2110 page->u.pszTemplate = MAKEINTRESOURCEW(IDD_HIERARCHY);
2111 page->pfnDlgProc = hierarchy_dlg_proc;
2112 page->lParam = (LPARAM)data;
2113 page->pfnCallback = hierarchy_callback;
2114 ret = TRUE;
2116 else
2117 HeapFree(GetProcessHeap(), 0, data);
2119 return ret;
2122 static int CALLBACK cert_prop_sheet_proc(HWND hwnd, UINT msg, LPARAM lp)
2124 RECT rc;
2125 POINT topLeft;
2127 TRACE("(%p, %08x, %08lx)\n", hwnd, msg, lp);
2129 switch (msg)
2131 case PSCB_INITIALIZED:
2132 /* Get cancel button's position.. */
2133 GetWindowRect(GetDlgItem(hwnd, IDCANCEL), &rc);
2134 topLeft.x = rc.left;
2135 topLeft.y = rc.top;
2136 ScreenToClient(hwnd, &topLeft);
2137 /* hide the cancel button.. */
2138 ShowWindow(GetDlgItem(hwnd, IDCANCEL), FALSE);
2139 /* get the OK button's size.. */
2140 GetWindowRect(GetDlgItem(hwnd, IDOK), &rc);
2141 /* and move the OK button to the cancel button's original position. */
2142 MoveWindow(GetDlgItem(hwnd, IDOK), topLeft.x, topLeft.y,
2143 rc.right - rc.left, rc.bottom - rc.top, FALSE);
2144 GetWindowRect(GetDlgItem(hwnd, IDOK), &rc);
2145 break;
2147 return 0;
2150 static BOOL show_cert_dialog(PCCRYPTUI_VIEWCERTIFICATE_STRUCTW pCertViewInfo,
2151 CRYPT_PROVIDER_CERT *provCert, BOOL *pfPropertiesChanged)
2153 static const WCHAR riched[] = { 'r','i','c','h','e','d','2','0',0 };
2154 DWORD nPages;
2155 PROPSHEETPAGEW *pages;
2156 BOOL ret = FALSE;
2157 HMODULE lib = LoadLibraryW(riched);
2159 nPages = pCertViewInfo->cPropSheetPages + 1; /* one for the General tab */
2160 if (!(pCertViewInfo->dwFlags & CRYPTUI_HIDE_DETAILPAGE))
2161 nPages++;
2162 if (!(pCertViewInfo->dwFlags & CRYPTUI_HIDE_HIERARCHYPAGE))
2163 nPages++;
2164 pages = HeapAlloc(GetProcessHeap(), 0, nPages * sizeof(PROPSHEETPAGEW));
2165 if (pages)
2167 PROPSHEETHEADERW hdr;
2168 CRYPTUI_INITDIALOG_STRUCT *init = NULL;
2169 DWORD i;
2171 memset(&hdr, 0, sizeof(hdr));
2172 hdr.dwSize = sizeof(hdr);
2173 hdr.dwFlags = PSH_NOAPPLYNOW | PSH_PROPSHEETPAGE | PSH_USECALLBACK;
2174 hdr.hInstance = hInstance;
2175 if (pCertViewInfo->szTitle)
2176 hdr.pszCaption = pCertViewInfo->szTitle;
2177 else
2178 hdr.pszCaption = MAKEINTRESOURCEW(IDS_CERTIFICATE);
2179 init_general_page(pCertViewInfo, &pages[hdr.nPages++]);
2180 if (!(pCertViewInfo->dwFlags & CRYPTUI_HIDE_DETAILPAGE))
2182 if (init_detail_page(pCertViewInfo, pfPropertiesChanged,
2183 &pages[hdr.nPages]))
2184 hdr.nPages++;
2186 if (!(pCertViewInfo->dwFlags & CRYPTUI_HIDE_HIERARCHYPAGE))
2188 if (init_hierarchy_page(pCertViewInfo, &pages[hdr.nPages]))
2189 hdr.nPages++;
2191 /* Copy each additional page, and create the init dialog struct for it
2193 if (pCertViewInfo->cPropSheetPages)
2195 init = HeapAlloc(GetProcessHeap(), 0,
2196 pCertViewInfo->cPropSheetPages *
2197 sizeof(CRYPTUI_INITDIALOG_STRUCT));
2198 if (init)
2200 for (i = 0; i < pCertViewInfo->cPropSheetPages; i++)
2202 memcpy(&pages[hdr.nPages + i],
2203 &pCertViewInfo->rgPropSheetPages[i],
2204 sizeof(PROPSHEETPAGEW));
2205 init[i].lParam = pCertViewInfo->rgPropSheetPages[i].lParam;
2206 init[i].pCertContext = pCertViewInfo->pCertContext;
2207 pages[hdr.nPages + i].lParam = (LPARAM)&init[i];
2209 if (pCertViewInfo->nStartPage & 0x8000)
2211 /* Start page index is relative to the number of default
2212 * pages
2214 hdr.u2.nStartPage = pCertViewInfo->nStartPage + hdr.nPages;
2216 else
2217 hdr.u2.nStartPage = pCertViewInfo->nStartPage;
2218 hdr.nPages = nPages;
2219 ret = TRUE;
2221 else
2222 SetLastError(ERROR_OUTOFMEMORY);
2224 else
2226 /* Ignore the relative flag if there aren't any additional pages */
2227 hdr.u2.nStartPage = pCertViewInfo->nStartPage & 0x7fff;
2228 ret = TRUE;
2230 if (ret)
2232 INT_PTR l;
2234 hdr.u3.ppsp = pages;
2235 hdr.pfnCallback = cert_prop_sheet_proc;
2236 l = PropertySheetW(&hdr);
2237 if (l == 0)
2239 SetLastError(ERROR_CANCELLED);
2240 ret = FALSE;
2243 HeapFree(GetProcessHeap(), 0, init);
2244 HeapFree(GetProcessHeap(), 0, pages);
2246 else
2247 SetLastError(ERROR_OUTOFMEMORY);
2248 FreeLibrary(lib);
2249 return ret;
2252 /***********************************************************************
2253 * CryptUIDlgViewCertificateW (CRYPTUI.@)
2255 BOOL WINAPI CryptUIDlgViewCertificateW(
2256 PCCRYPTUI_VIEWCERTIFICATE_STRUCTW pCertViewInfo, BOOL *pfPropertiesChanged)
2258 static GUID generic_cert_verify = WINTRUST_ACTION_GENERIC_CERT_VERIFY;
2259 CRYPTUI_VIEWCERTIFICATE_STRUCTW viewInfo;
2260 WINTRUST_DATA wvt;
2261 WINTRUST_CERT_INFO cert;
2262 BOOL ret = FALSE;
2263 CRYPT_PROVIDER_SGNR *signer;
2264 CRYPT_PROVIDER_CERT *provCert = NULL;
2266 TRACE("(%p, %p)\n", pCertViewInfo, pfPropertiesChanged);
2268 if (pCertViewInfo->dwSize != sizeof(CRYPTUI_VIEWCERTIFICATE_STRUCTW))
2270 SetLastError(ERROR_INVALID_PARAMETER);
2271 return FALSE;
2273 /* Make a local copy in case we have to call WinVerifyTrust ourselves */
2274 memcpy(&viewInfo, pCertViewInfo, sizeof(viewInfo));
2275 if (!viewInfo.u.hWVTStateData)
2277 memset(&wvt, 0, sizeof(wvt));
2278 wvt.cbStruct = sizeof(wvt);
2279 wvt.dwUIChoice = WTD_UI_NONE;
2280 if (viewInfo.dwFlags &
2281 CRYPTUI_ENABLE_REVOCATION_CHECK_CHAIN_EXCLUDE_ROOT)
2282 wvt.fdwRevocationChecks |= WTD_REVOCATION_CHECK_CHAIN_EXCLUDE_ROOT;
2283 if (viewInfo.dwFlags & CRYPTUI_ENABLE_REVOCATION_CHECK_END_CERT)
2284 wvt.fdwRevocationChecks |= WTD_REVOCATION_CHECK_END_CERT;
2285 if (viewInfo.dwFlags & CRYPTUI_ENABLE_REVOCATION_CHECK_CHAIN)
2286 wvt.fdwRevocationChecks |= WTD_REVOCATION_CHECK_CHAIN;
2287 wvt.dwUnionChoice = WTD_CHOICE_CERT;
2288 memset(&cert, 0, sizeof(cert));
2289 cert.cbStruct = sizeof(cert);
2290 cert.psCertContext = (CERT_CONTEXT *)viewInfo.pCertContext;
2291 cert.chStores = viewInfo.cStores;
2292 cert.pahStores = viewInfo.rghStores;
2293 wvt.u.pCert = &cert;
2294 wvt.dwStateAction = WTD_STATEACTION_VERIFY;
2295 WinVerifyTrust(NULL, &generic_cert_verify, &wvt);
2296 viewInfo.u.pCryptProviderData =
2297 WTHelperProvDataFromStateData(wvt.hWVTStateData);
2298 signer = WTHelperGetProvSignerFromChain(
2299 (CRYPT_PROVIDER_DATA *)viewInfo.u.pCryptProviderData, 0, FALSE, 0);
2300 provCert = WTHelperGetProvCertFromChain(signer, 0);
2301 ret = TRUE;
2303 else
2305 viewInfo.u.pCryptProviderData =
2306 WTHelperProvDataFromStateData(viewInfo.u.hWVTStateData);
2307 signer = WTHelperGetProvSignerFromChain(
2308 (CRYPT_PROVIDER_DATA *)viewInfo.u.pCryptProviderData,
2309 viewInfo.idxSigner, viewInfo.fCounterSigner,
2310 viewInfo.idxCounterSigner);
2311 provCert = WTHelperGetProvCertFromChain(signer, viewInfo.idxCert);
2312 ret = TRUE;
2314 if (ret)
2316 ret = show_cert_dialog(&viewInfo, provCert, pfPropertiesChanged);
2317 if (!viewInfo.u.hWVTStateData)
2319 wvt.dwStateAction = WTD_STATEACTION_CLOSE;
2320 WinVerifyTrust(NULL, &generic_cert_verify, &wvt);
2323 return ret;
2326 static PCCERT_CONTEXT make_cert_from_file(LPCWSTR fileName)
2328 HANDLE file;
2329 DWORD size, encoding = X509_ASN_ENCODING | PKCS_7_ASN_ENCODING;
2330 BYTE *buffer;
2331 PCCERT_CONTEXT cert;
2333 file = CreateFileW(fileName, GENERIC_READ, FILE_SHARE_READ, NULL,
2334 OPEN_EXISTING, 0, NULL);
2335 if (file == INVALID_HANDLE_VALUE)
2337 WARN("can't open certificate file %s\n", debugstr_w(fileName));
2338 return NULL;
2340 if ((size = GetFileSize(file, NULL)))
2342 if ((buffer = HeapAlloc(GetProcessHeap(), 0, size)))
2344 DWORD read;
2345 if (!ReadFile(file, buffer, size, &read, NULL) || read != size)
2347 WARN("can't read certificate file %s\n", debugstr_w(fileName));
2348 HeapFree(GetProcessHeap(), 0, buffer);
2349 CloseHandle(file);
2350 return NULL;
2354 else
2356 WARN("empty file %s\n", debugstr_w(fileName));
2357 CloseHandle(file);
2358 return NULL;
2360 CloseHandle(file);
2361 cert = CertCreateCertificateContext(encoding, buffer, size);
2362 HeapFree(GetProcessHeap(), 0, buffer);
2363 return cert;
2366 /* Decodes a cert's basic constraints extension (either szOID_BASIC_CONSTRAINTS
2367 * or szOID_BASIC_CONSTRAINTS2, whichever is present) to determine if it
2368 * should be a CA. If neither extension is present, returns
2369 * defaultIfNotSpecified.
2371 static BOOL is_ca_cert(PCCERT_CONTEXT cert, BOOL defaultIfNotSpecified)
2373 BOOL isCA = defaultIfNotSpecified;
2374 PCERT_EXTENSION ext = CertFindExtension(szOID_BASIC_CONSTRAINTS,
2375 cert->pCertInfo->cExtension, cert->pCertInfo->rgExtension);
2377 if (ext)
2379 CERT_BASIC_CONSTRAINTS_INFO *info;
2380 DWORD size = 0;
2382 if (CryptDecodeObjectEx(X509_ASN_ENCODING, szOID_BASIC_CONSTRAINTS,
2383 ext->Value.pbData, ext->Value.cbData, CRYPT_DECODE_ALLOC_FLAG,
2384 NULL, (LPBYTE)&info, &size))
2386 if (info->SubjectType.cbData == 1)
2387 isCA = info->SubjectType.pbData[0] & CERT_CA_SUBJECT_FLAG;
2388 LocalFree(info);
2391 else
2393 ext = CertFindExtension(szOID_BASIC_CONSTRAINTS2,
2394 cert->pCertInfo->cExtension, cert->pCertInfo->rgExtension);
2395 if (ext)
2397 CERT_BASIC_CONSTRAINTS2_INFO info;
2398 DWORD size = sizeof(CERT_BASIC_CONSTRAINTS2_INFO);
2400 if (CryptDecodeObjectEx(X509_ASN_ENCODING,
2401 szOID_BASIC_CONSTRAINTS2, ext->Value.pbData, ext->Value.cbData,
2402 0, NULL, &info, &size))
2403 isCA = info.fCA;
2406 return isCA;
2409 static HCERTSTORE choose_store_for_cert(PCCERT_CONTEXT cert)
2411 static const WCHAR AddressBook[] = { 'A','d','d','r','e','s','s',
2412 'B','o','o','k',0 };
2413 static const WCHAR CA[] = { 'C','A',0 };
2414 LPCWSTR storeName;
2416 if (is_ca_cert(cert, TRUE))
2417 storeName = CA;
2418 else
2419 storeName = AddressBook;
2420 return CertOpenStore(CERT_STORE_PROV_SYSTEM_W, 0, 0,
2421 CERT_SYSTEM_STORE_CURRENT_USER, storeName);
2424 BOOL WINAPI CryptUIWizImport(DWORD dwFlags, HWND hwndParent, LPCWSTR pwszWizardTitle,
2425 PCCRYPTUI_WIZ_IMPORT_SRC_INFO pImportSrc, HCERTSTORE hDestCertStore)
2427 BOOL ret;
2428 HCERTSTORE store;
2429 const CERT_CONTEXT *cert;
2430 BOOL freeCert = FALSE;
2432 TRACE("(0x%08x, %p, %s, %p, %p)\n", dwFlags, hwndParent, debugstr_w(pwszWizardTitle),
2433 pImportSrc, hDestCertStore);
2435 if (!(dwFlags & CRYPTUI_WIZ_NO_UI)) FIXME("UI not implemented\n");
2437 if (!pImportSrc ||
2438 pImportSrc->dwSize != sizeof(CRYPTUI_WIZ_IMPORT_SRC_INFO))
2440 SetLastError(E_INVALIDARG);
2441 return FALSE;
2444 switch (pImportSrc->dwSubjectChoice)
2446 case CRYPTUI_WIZ_IMPORT_SUBJECT_FILE:
2447 if (!(cert = make_cert_from_file(pImportSrc->u.pwszFileName)))
2449 WARN("unable to create certificate context\n");
2450 return FALSE;
2452 else
2453 freeCert = TRUE;
2454 break;
2455 case CRYPTUI_WIZ_IMPORT_SUBJECT_CERT_CONTEXT:
2456 cert = pImportSrc->u.pCertContext;
2457 if (!cert)
2459 SetLastError(E_INVALIDARG);
2460 return FALSE;
2462 break;
2463 default:
2464 FIXME("source type not implemented: %u\n", pImportSrc->dwSubjectChoice);
2465 SetLastError(E_INVALIDARG);
2466 return FALSE;
2468 if (hDestCertStore) store = hDestCertStore;
2469 else
2471 if (!(store = choose_store_for_cert(cert)))
2473 WARN("unable to open certificate store\n");
2474 CertFreeCertificateContext(cert);
2475 return FALSE;
2478 ret = CertAddCertificateContextToStore(store, cert, CERT_STORE_ADD_REPLACE_EXISTING, NULL);
2480 if (!hDestCertStore) CertCloseStore(store, 0);
2481 if (freeCert)
2482 CertFreeCertificateContext(cert);
2483 return ret;