2 * Copyright 2004-2007 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
25 #include "wine/debug.h"
26 #include "wine/list.h"
27 #include "crypt32_private.h"
29 WINE_DEFAULT_DEBUG_CHANNEL(crypt);
31 typedef struct _WINE_HASH_TO_DELETE
35 } WINE_HASH_TO_DELETE, *PWINE_HASH_TO_DELETE;
37 typedef struct _WINE_REGSTOREINFO
44 struct list certsToDelete;
45 struct list crlsToDelete;
46 } WINE_REGSTOREINFO, *PWINE_REGSTOREINFO;
48 static void CRYPT_HashToStr(const BYTE *hash, LPWSTR asciiHash)
50 static const WCHAR fmt[] = { '%','0','2','X',0 };
56 for (i = 0; i < 20; i++)
57 wsprintfW(asciiHash + i * 2, fmt, hash[i]);
60 static const WCHAR CertsW[] = { 'C','e','r','t','i','f','i','c','a','t','e','s',
62 static const WCHAR CRLsW[] = { 'C','R','L','s',0 };
63 static const WCHAR CTLsW[] = { 'C','T','L','s',0 };
64 static const WCHAR BlobW[] = { 'B','l','o','b',0 };
66 static void CRYPT_RegReadSerializedFromReg(const WINE_REGSTOREINFO *store, HKEY key,
71 WCHAR subKeyName[MAX_PATH];
74 DWORD size = sizeof(subKeyName) / sizeof(WCHAR);
76 rc = RegEnumKeyExW(key, index++, subKeyName, &size, NULL, NULL, NULL,
82 rc = RegOpenKeyExW(key, subKeyName, 0, KEY_READ, &subKey);
88 rc = RegQueryValueExW(subKey, BlobW, NULL, NULL, NULL, &size);
90 buf = CryptMemAlloc(size);
93 rc = RegQueryValueExW(subKey, BlobW, NULL, NULL, buf,
100 TRACE("Adding cert with hash %s\n",
101 debugstr_w(subKeyName));
102 context = CRYPT_ReadSerializedElement(buf, size,
103 contextType, &addedType);
106 const WINE_CONTEXT_INTERFACE *contextInterface;
111 case CERT_STORE_CERTIFICATE_CONTEXT:
112 contextInterface = pCertInterface;
114 case CERT_STORE_CRL_CONTEXT:
115 contextInterface = pCRLInterface;
117 case CERT_STORE_CTL_CONTEXT:
118 contextInterface = pCTLInterface;
121 contextInterface = NULL;
123 if (contextInterface)
126 if (contextInterface->getProp(context,
127 CERT_HASH_PROP_ID, hash, &size))
129 WCHAR asciiHash[20 * 2 + 1];
131 CRYPT_HashToStr(hash, asciiHash);
132 TRACE("comparing %s\n",
133 debugstr_w(asciiHash));
134 TRACE("with %s\n", debugstr_w(subKeyName));
135 if (!lstrcmpW(asciiHash, subKeyName))
137 TRACE("hash matches, adding\n");
138 contextInterface->addContextToStore(
139 store->memStore, context,
140 CERT_STORE_ADD_REPLACE_EXISTING, NULL);
143 TRACE("hash doesn't match, ignoring\n");
145 contextInterface->free(context);
153 /* Ignore intermediate errors, continue enumerating */
159 static void CRYPT_RegReadFromReg(const WINE_REGSTOREINFO *store)
161 static const WCHAR * const subKeys[] = { CertsW, CRLsW, CTLsW };
162 static const DWORD contextFlags[] = { CERT_STORE_CERTIFICATE_CONTEXT_FLAG,
163 CERT_STORE_CRL_CONTEXT_FLAG, CERT_STORE_CTL_CONTEXT_FLAG };
166 for (i = 0; i < sizeof(subKeys) / sizeof(subKeys[0]); i++)
171 rc = RegCreateKeyExW(store->key, subKeys[i], 0, NULL, 0, KEY_READ, NULL,
175 CRYPT_RegReadSerializedFromReg(store, key, contextFlags[i]);
181 /* Hash is assumed to be 20 bytes in length (a SHA-1 hash) */
182 static BOOL CRYPT_WriteSerializedToReg(HKEY key, const BYTE *hash, const BYTE *buf,
185 WCHAR asciiHash[20 * 2 + 1];
190 CRYPT_HashToStr(hash, asciiHash);
191 rc = RegCreateKeyExW(key, asciiHash, 0, NULL, 0, KEY_ALL_ACCESS, NULL,
195 rc = RegSetValueExW(subKey, BlobW, 0, REG_BINARY, buf, len);
208 static BOOL CRYPT_SerializeContextsToReg(HKEY key,
209 const WINE_CONTEXT_INTERFACE *contextInterface, HCERTSTORE memStore)
211 const void *context = NULL;
215 context = contextInterface->enumContextsInStore(memStore, context);
219 DWORD hashSize = sizeof(hash);
221 ret = contextInterface->getProp(context, CERT_HASH_PROP_ID, hash,
228 ret = contextInterface->serialize(context, 0, NULL, &size);
230 buf = CryptMemAlloc(size);
233 ret = contextInterface->serialize(context, 0, buf, &size);
235 ret = CRYPT_WriteSerializedToReg(key, hash, buf, size);
242 } while (ret && context != NULL);
244 contextInterface->free(context);
248 static BOOL CRYPT_RegWriteToReg(PWINE_REGSTOREINFO store)
250 static const WCHAR * const subKeys[] = { CertsW, CRLsW, CTLsW };
251 const WINE_CONTEXT_INTERFACE * const interfaces[] = { pCertInterface,
252 pCRLInterface, pCTLInterface };
253 struct list *listToDelete[] = { &store->certsToDelete, &store->crlsToDelete,
258 for (i = 0; ret && i < sizeof(subKeys) / sizeof(subKeys[0]); i++)
261 LONG rc = RegCreateKeyExW(store->key, subKeys[i], 0, NULL, 0,
262 KEY_ALL_ACCESS, NULL, &key, NULL);
268 PWINE_HASH_TO_DELETE toDelete, next;
269 WCHAR asciiHash[20 * 2 + 1];
271 EnterCriticalSection(&store->cs);
272 LIST_FOR_EACH_ENTRY_SAFE(toDelete, next, listToDelete[i],
273 WINE_HASH_TO_DELETE, entry)
277 CRYPT_HashToStr(toDelete->hash, asciiHash);
278 TRACE("Removing %s\n", debugstr_w(asciiHash));
279 rc = RegDeleteKeyW(key, asciiHash);
280 if (rc != ERROR_SUCCESS && rc != ERROR_FILE_NOT_FOUND)
285 list_remove(&toDelete->entry);
286 CryptMemFree(toDelete);
288 LeaveCriticalSection(&store->cs);
290 ret = CRYPT_SerializeContextsToReg(key, interfaces[i],
303 /* If force is true or the registry store is dirty, writes the contents of the
304 * store to the registry.
306 static BOOL CRYPT_RegFlushStore(PWINE_REGSTOREINFO store, BOOL force)
310 TRACE("(%p, %d)\n", store, force);
312 if (store->dirty || force)
313 ret = CRYPT_RegWriteToReg(store);
319 static void WINAPI CRYPT_RegCloseStore(HCERTSTORE hCertStore, DWORD dwFlags)
321 PWINE_REGSTOREINFO store = (PWINE_REGSTOREINFO)hCertStore;
323 TRACE("(%p, %08x)\n", store, dwFlags);
325 FIXME("Unimplemented flags: %08x\n", dwFlags);
327 CRYPT_RegFlushStore(store, FALSE);
328 RegCloseKey(store->key);
329 store->cs.DebugInfo->Spare[0] = 0;
330 DeleteCriticalSection(&store->cs);
334 static BOOL WINAPI CRYPT_RegWriteContext(PWINE_REGSTOREINFO store,
335 const void *context, DWORD dwFlags)
339 if (dwFlags & CERT_STORE_PROV_WRITE_ADD_FLAG)
349 static BOOL CRYPT_RegDeleteContext(PWINE_REGSTOREINFO store,
350 struct list *deleteList, const void *context,
351 PCWINE_CONTEXT_INTERFACE contextInterface)
355 if (store->dwOpenFlags & CERT_STORE_READONLY_FLAG)
357 SetLastError(ERROR_ACCESS_DENIED);
362 PWINE_HASH_TO_DELETE toDelete =
363 CryptMemAlloc(sizeof(WINE_HASH_TO_DELETE));
367 DWORD size = sizeof(toDelete->hash);
369 ret = contextInterface->getProp(context, CERT_HASH_PROP_ID,
370 toDelete->hash, &size);
373 EnterCriticalSection(&store->cs);
374 list_add_tail(deleteList, &toDelete->entry);
375 LeaveCriticalSection(&store->cs);
379 CryptMemFree(toDelete);
391 static BOOL WINAPI CRYPT_RegWriteCert(HCERTSTORE hCertStore,
392 PCCERT_CONTEXT cert, DWORD dwFlags)
394 PWINE_REGSTOREINFO store = (PWINE_REGSTOREINFO)hCertStore;
396 TRACE("(%p, %p, %d)\n", hCertStore, cert, dwFlags);
398 return CRYPT_RegWriteContext(store, cert, dwFlags);
401 static BOOL WINAPI CRYPT_RegDeleteCert(HCERTSTORE hCertStore,
402 PCCERT_CONTEXT pCertContext, DWORD dwFlags)
404 PWINE_REGSTOREINFO store = (PWINE_REGSTOREINFO)hCertStore;
406 TRACE("(%p, %p, %08x)\n", store, pCertContext, dwFlags);
408 return CRYPT_RegDeleteContext(store, &store->certsToDelete, pCertContext,
412 static BOOL WINAPI CRYPT_RegWriteCRL(HCERTSTORE hCertStore,
413 PCCRL_CONTEXT crl, DWORD dwFlags)
415 PWINE_REGSTOREINFO store = (PWINE_REGSTOREINFO)hCertStore;
417 TRACE("(%p, %p, %d)\n", hCertStore, crl, dwFlags);
419 return CRYPT_RegWriteContext(store, crl, dwFlags);
422 static BOOL WINAPI CRYPT_RegDeleteCRL(HCERTSTORE hCertStore,
423 PCCRL_CONTEXT pCrlContext, DWORD dwFlags)
425 PWINE_REGSTOREINFO store = (PWINE_REGSTOREINFO)hCertStore;
427 TRACE("(%p, %p, %08x)\n", store, pCrlContext, dwFlags);
429 return CRYPT_RegDeleteContext(store, &store->crlsToDelete, pCrlContext,
433 static BOOL WINAPI CRYPT_RegControl(HCERTSTORE hCertStore, DWORD dwFlags,
434 DWORD dwCtrlType, void const *pvCtrlPara)
436 PWINE_REGSTOREINFO store = (PWINE_REGSTOREINFO)hCertStore;
439 TRACE("(%p, %08x, %d, %p)\n", hCertStore, dwFlags, dwCtrlType,
444 case CERT_STORE_CTRL_RESYNC:
445 CRYPT_RegFlushStore(store, FALSE);
446 CRYPT_EmptyStore(store->memStore);
447 CRYPT_RegReadFromReg(store);
450 case CERT_STORE_CTRL_COMMIT:
451 ret = CRYPT_RegFlushStore(store,
452 dwFlags & CERT_STORE_CTRL_COMMIT_FORCE_FLAG);
455 FIXME("%d: stub\n", dwCtrlType);
461 static void *regProvFuncs[] = {
463 NULL, /* CERT_STORE_PROV_READ_CERT_FUNC */
466 NULL, /* CERT_STORE_PROV_SET_CERT_PROPERTY_FUNC */
467 NULL, /* CERT_STORE_PROV_READ_CRL_FUNC */
470 NULL, /* CERT_STORE_PROV_SET_CRL_PROPERTY_FUNC */
471 NULL, /* CERT_STORE_PROV_READ_CTL_FUNC */
472 NULL, /* CERT_STORE_PROV_WRITE_CTL_FUNC */
473 NULL, /* CERT_STORE_PROV_DELETE_CTL_FUNC */
474 NULL, /* CERT_STORE_PROV_SET_CTL_PROPERTY_FUNC */
478 PWINECRYPT_CERTSTORE CRYPT_RegOpenStore(HCRYPTPROV hCryptProv, DWORD dwFlags,
481 PWINECRYPT_CERTSTORE store = NULL;
483 TRACE("(%ld, %08x, %p)\n", hCryptProv, dwFlags, pvPara);
485 if (dwFlags & CERT_STORE_DELETE_FLAG)
487 DWORD rc = RegDeleteTreeW((HKEY)pvPara, CertsW);
489 if (rc == ERROR_SUCCESS || rc == ERROR_NO_MORE_ITEMS)
490 rc = RegDeleteTreeW((HKEY)pvPara, CRLsW);
491 if (rc == ERROR_SUCCESS || rc == ERROR_NO_MORE_ITEMS)
492 rc = RegDeleteTreeW((HKEY)pvPara, CTLsW);
493 if (rc == ERROR_NO_MORE_ITEMS)
501 if (DuplicateHandle(GetCurrentProcess(), (HANDLE)pvPara,
502 GetCurrentProcess(), (LPHANDLE)&key,
503 dwFlags & CERT_STORE_READONLY_FLAG ? KEY_READ : KEY_ALL_ACCESS,
506 PWINECRYPT_CERTSTORE memStore;
508 memStore = CertOpenStore(CERT_STORE_PROV_MEMORY, 0, hCryptProv,
509 CERT_STORE_CREATE_NEW_FLAG, NULL);
512 PWINE_REGSTOREINFO regInfo = CryptMemAlloc(
513 sizeof(WINE_REGSTOREINFO));
517 CERT_STORE_PROV_INFO provInfo = { 0 };
519 regInfo->dwOpenFlags = dwFlags;
520 regInfo->memStore = memStore;
522 InitializeCriticalSection(®Info->cs);
523 regInfo->cs.DebugInfo->Spare[0] = (DWORD_PTR)(__FILE__ ": PWINE_REGSTOREINFO->cs");
524 list_init(®Info->certsToDelete);
525 list_init(®Info->crlsToDelete);
526 CRYPT_RegReadFromReg(regInfo);
527 regInfo->dirty = FALSE;
528 provInfo.cbSize = sizeof(provInfo);
529 provInfo.cStoreProvFunc = sizeof(regProvFuncs) /
530 sizeof(regProvFuncs[0]);
531 provInfo.rgpvStoreProvFunc = regProvFuncs;
532 provInfo.hStoreProv = regInfo;
533 store = CRYPT_ProvCreateStore(dwFlags, memStore, &provInfo);
534 /* Reg store doesn't need crypto provider, so close it */
536 !(dwFlags & CERT_STORE_NO_CRYPT_RELEASE_FLAG))
537 CryptReleaseContext(hCryptProv, 0);
542 TRACE("returning %p\n", store);