msvcrtd: Fix _CrtDbgReport calling convention.
[wine.git] / dlls / crypt32 / regstore.c
blob7678bab6aac66c1dd8f543910b96ae8d35245ba1
1 /*
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
18 #include <assert.h>
19 #include <stdarg.h>
20 #include "windef.h"
21 #include "winbase.h"
22 #include "wincrypt.h"
23 #include "winreg.h"
24 #include "winuser.h"
25 #include "wine/debug.h"
26 #include "crypt32_private.h"
28 WINE_DEFAULT_DEBUG_CHANNEL(crypt);
30 typedef struct _WINE_HASH_TO_DELETE
32 BYTE hash[20];
33 struct list entry;
34 } WINE_HASH_TO_DELETE;
36 typedef struct _WINE_REGSTOREINFO
38 DWORD dwOpenFlags;
39 HCERTSTORE memStore;
40 HKEY key;
41 BOOL dirty;
42 CRITICAL_SECTION cs;
43 struct list certsToDelete;
44 struct list crlsToDelete;
45 struct list ctlsToDelete;
46 } WINE_REGSTOREINFO;
48 static void CRYPT_HashToStr(const BYTE *hash, LPWSTR asciiHash)
50 static const WCHAR fmt[] = { '%','0','2','X',0 };
51 DWORD i;
53 assert(hash);
54 assert(asciiHash);
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',
61 0 };
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(HKEY key, DWORD contextType,
67 HCERTSTORE store)
69 LONG rc;
70 DWORD index = 0;
71 WCHAR subKeyName[MAX_PATH];
73 do {
74 DWORD size = sizeof(subKeyName) / sizeof(WCHAR);
76 rc = RegEnumKeyExW(key, index++, subKeyName, &size, NULL, NULL, NULL,
77 NULL);
78 if (!rc)
80 HKEY subKey;
82 rc = RegOpenKeyExW(key, subKeyName, 0, KEY_READ, &subKey);
83 if (!rc)
85 LPBYTE buf = NULL;
87 size = 0;
88 rc = RegQueryValueExW(subKey, BlobW, NULL, NULL, NULL, &size);
89 if (!rc)
90 buf = CryptMemAlloc(size);
91 if (buf)
93 rc = RegQueryValueExW(subKey, BlobW, NULL, NULL, buf,
94 &size);
95 if (!rc)
97 const void *context;
98 DWORD addedType;
100 TRACE("Adding cert with hash %s\n",
101 debugstr_w(subKeyName));
102 context = CRYPT_ReadSerializedElement(buf, size,
103 contextType, &addedType);
104 if (context)
106 const WINE_CONTEXT_INTERFACE *contextInterface;
107 BYTE hash[20];
109 switch (addedType)
111 case CERT_STORE_CERTIFICATE_CONTEXT:
112 contextInterface = pCertInterface;
113 break;
114 case CERT_STORE_CRL_CONTEXT:
115 contextInterface = pCRLInterface;
116 break;
117 case CERT_STORE_CTL_CONTEXT:
118 contextInterface = pCTLInterface;
119 break;
120 default:
121 contextInterface = NULL;
123 if (contextInterface)
125 size = sizeof(hash);
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, context,
140 CERT_STORE_ADD_REPLACE_EXISTING, NULL);
142 else
143 TRACE("hash doesn't match, ignoring\n");
145 Context_Release(context_from_ptr(context));
149 CryptMemFree(buf);
151 RegCloseKey(subKey);
153 /* Ignore intermediate errors, continue enumerating */
154 rc = ERROR_SUCCESS;
156 } while (!rc);
159 static void CRYPT_RegReadFromReg(HKEY key, HCERTSTORE 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 };
164 DWORD i;
166 for (i = 0; i < sizeof(subKeys) / sizeof(subKeys[0]); i++)
168 HKEY hKey;
169 LONG rc;
171 rc = RegCreateKeyExW(key, subKeys[i], 0, NULL, 0, KEY_READ, NULL,
172 &hKey, NULL);
173 if (!rc)
175 CRYPT_RegReadSerializedFromReg(hKey, contextFlags[i], store);
176 RegCloseKey(hKey);
181 /* Hash is assumed to be 20 bytes in length (a SHA-1 hash) */
182 static BOOL CRYPT_WriteSerializedToReg(HKEY key, DWORD flags, const BYTE *hash, const BYTE *buf,
183 DWORD len)
185 WCHAR asciiHash[20 * 2 + 1];
186 LONG rc;
187 HKEY subKey;
188 BOOL ret;
190 CRYPT_HashToStr(hash, asciiHash);
191 rc = RegCreateKeyExW(key, asciiHash, 0, NULL, flags, KEY_ALL_ACCESS, NULL,
192 &subKey, NULL);
193 if (!rc)
195 rc = RegSetValueExW(subKey, BlobW, 0, REG_BINARY, buf, len);
196 RegCloseKey(subKey);
198 if (!rc)
199 ret = TRUE;
200 else
202 SetLastError(rc);
203 ret = FALSE;
205 return ret;
208 BOOL CRYPT_SerializeContextsToReg(HKEY key, DWORD flags,
209 const WINE_CONTEXT_INTERFACE *contextInterface, HCERTSTORE memStore)
211 const void *context = NULL;
212 BOOL ret;
214 do {
215 context = contextInterface->enumContextsInStore(memStore, context);
216 if (context)
218 BYTE hash[20];
219 DWORD hashSize = sizeof(hash);
221 ret = contextInterface->getProp(context, CERT_HASH_PROP_ID, hash,
222 &hashSize);
223 if (ret)
225 DWORD size = 0;
226 LPBYTE buf = NULL;
228 ret = contextInterface->serialize(context, 0, NULL, &size);
229 if (size)
230 buf = CryptMemAlloc(size);
231 if (buf)
233 ret = contextInterface->serialize(context, 0, buf, &size);
234 if (ret)
235 ret = CRYPT_WriteSerializedToReg(key, flags, hash, buf, size);
237 CryptMemFree(buf);
240 else
241 ret = TRUE;
242 } while (ret && context != NULL);
243 if (context)
244 Context_Release(context_from_ptr(context));
245 return ret;
248 static BOOL CRYPT_RegWriteToReg(WINE_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,
254 &store->ctlsToDelete };
255 BOOL ret = TRUE;
256 DWORD i;
258 for (i = 0; ret && i < sizeof(subKeys) / sizeof(subKeys[0]); i++)
260 HKEY key;
261 LONG rc = RegCreateKeyExW(store->key, subKeys[i], 0, NULL, 0,
262 KEY_ALL_ACCESS, NULL, &key, NULL);
264 if (!rc)
266 if (listToDelete[i])
268 WINE_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)
275 LONG rc;
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)
282 SetLastError(rc);
283 ret = FALSE;
285 list_remove(&toDelete->entry);
286 CryptMemFree(toDelete);
288 LeaveCriticalSection(&store->cs);
290 ret = CRYPT_SerializeContextsToReg(key, 0, interfaces[i], store->memStore);
291 RegCloseKey(key);
293 else
295 SetLastError(rc);
296 ret = FALSE;
299 return ret;
302 /* If force is true or the registry store is dirty, writes the contents of the
303 * store to the registry.
305 static BOOL CRYPT_RegFlushStore(WINE_REGSTOREINFO *store, BOOL force)
307 BOOL ret;
309 TRACE("(%p, %d)\n", store, force);
311 if (store->dirty || force)
313 ret = CRYPT_RegWriteToReg(store);
314 if (ret)
315 store->dirty = FALSE;
317 else
318 ret = TRUE;
319 return ret;
322 static void WINAPI CRYPT_RegCloseStore(HCERTSTORE hCertStore, DWORD dwFlags)
324 WINE_REGSTOREINFO *store = hCertStore;
326 TRACE("(%p, %08x)\n", store, dwFlags);
327 if (dwFlags)
328 FIXME("Unimplemented flags: %08x\n", dwFlags);
330 CRYPT_RegFlushStore(store, FALSE);
331 RegCloseKey(store->key);
332 store->cs.DebugInfo->Spare[0] = 0;
333 DeleteCriticalSection(&store->cs);
334 CryptMemFree(store);
337 static BOOL CRYPT_RegWriteContext(WINE_REGSTOREINFO *store,
338 const void *context, DWORD dwFlags)
340 BOOL ret;
342 if (dwFlags & CERT_STORE_PROV_WRITE_ADD_FLAG)
344 store->dirty = TRUE;
345 ret = TRUE;
347 else
348 ret = FALSE;
349 return ret;
352 static BOOL CRYPT_RegDeleteContext(WINE_REGSTOREINFO *store,
353 struct list *deleteList, const void *context,
354 const WINE_CONTEXT_INTERFACE *contextInterface)
356 BOOL ret;
358 if (store->dwOpenFlags & CERT_STORE_READONLY_FLAG)
360 SetLastError(ERROR_ACCESS_DENIED);
361 ret = FALSE;
363 else
365 WINE_HASH_TO_DELETE *toDelete = CryptMemAlloc(sizeof(WINE_HASH_TO_DELETE));
367 if (toDelete)
369 DWORD size = sizeof(toDelete->hash);
371 ret = contextInterface->getProp(context, CERT_HASH_PROP_ID,
372 toDelete->hash, &size);
373 if (ret)
375 EnterCriticalSection(&store->cs);
376 list_add_tail(deleteList, &toDelete->entry);
377 LeaveCriticalSection(&store->cs);
379 else
381 CryptMemFree(toDelete);
382 ret = FALSE;
385 else
386 ret = FALSE;
387 if (ret)
388 store->dirty = TRUE;
390 return ret;
393 static BOOL WINAPI CRYPT_RegWriteCert(HCERTSTORE hCertStore,
394 PCCERT_CONTEXT cert, DWORD dwFlags)
396 WINE_REGSTOREINFO *store = hCertStore;
398 TRACE("(%p, %p, %d)\n", hCertStore, cert, dwFlags);
400 return CRYPT_RegWriteContext(store, cert, dwFlags);
403 static BOOL WINAPI CRYPT_RegDeleteCert(HCERTSTORE hCertStore,
404 PCCERT_CONTEXT pCertContext, DWORD dwFlags)
406 WINE_REGSTOREINFO *store = hCertStore;
408 TRACE("(%p, %p, %08x)\n", store, pCertContext, dwFlags);
410 return CRYPT_RegDeleteContext(store, &store->certsToDelete, pCertContext,
411 pCertInterface);
414 static BOOL WINAPI CRYPT_RegWriteCRL(HCERTSTORE hCertStore,
415 PCCRL_CONTEXT crl, DWORD dwFlags)
417 WINE_REGSTOREINFO *store = hCertStore;
419 TRACE("(%p, %p, %d)\n", hCertStore, crl, dwFlags);
421 return CRYPT_RegWriteContext(store, crl, dwFlags);
424 static BOOL WINAPI CRYPT_RegDeleteCRL(HCERTSTORE hCertStore,
425 PCCRL_CONTEXT pCrlContext, DWORD dwFlags)
427 WINE_REGSTOREINFO *store = hCertStore;
429 TRACE("(%p, %p, %08x)\n", store, pCrlContext, dwFlags);
431 return CRYPT_RegDeleteContext(store, &store->crlsToDelete, pCrlContext,
432 pCRLInterface);
435 static BOOL WINAPI CRYPT_RegWriteCTL(HCERTSTORE hCertStore,
436 PCCTL_CONTEXT ctl, DWORD dwFlags)
438 WINE_REGSTOREINFO *store = hCertStore;
440 TRACE("(%p, %p, %d)\n", hCertStore, ctl, dwFlags);
442 return CRYPT_RegWriteContext(store, ctl, dwFlags);
445 static BOOL WINAPI CRYPT_RegDeleteCTL(HCERTSTORE hCertStore,
446 PCCTL_CONTEXT pCtlContext, DWORD dwFlags)
448 WINE_REGSTOREINFO *store = hCertStore;
450 TRACE("(%p, %p, %08x)\n", store, pCtlContext, dwFlags);
452 return CRYPT_RegDeleteContext(store, &store->ctlsToDelete, pCtlContext,
453 pCTLInterface);
456 static BOOL WINAPI CRYPT_RegControl(HCERTSTORE hCertStore, DWORD dwFlags,
457 DWORD dwCtrlType, void const *pvCtrlPara)
459 WINE_REGSTOREINFO *store = hCertStore;
460 BOOL ret = TRUE;
462 TRACE("(%p, %08x, %d, %p)\n", hCertStore, dwFlags, dwCtrlType,
463 pvCtrlPara);
465 switch (dwCtrlType)
467 case CERT_STORE_CTRL_RESYNC:
469 HCERTSTORE memStore = CertOpenStore(CERT_STORE_PROV_MEMORY, 0, 0,
470 CERT_STORE_CREATE_NEW_FLAG, NULL);
472 CRYPT_RegFlushStore(store, FALSE);
473 CRYPT_RegReadFromReg(store->key, memStore);
474 I_CertUpdateStore(store->memStore, memStore, 0, 0);
475 CertCloseStore(memStore, 0);
476 break;
478 case CERT_STORE_CTRL_COMMIT:
479 ret = CRYPT_RegFlushStore(store,
480 dwFlags & CERT_STORE_CTRL_COMMIT_FORCE_FLAG);
481 break;
482 case CERT_STORE_CTRL_AUTO_RESYNC:
483 FIXME("CERT_STORE_CTRL_AUTO_RESYNC: stub\n");
484 break;
485 case CERT_STORE_CTRL_NOTIFY_CHANGE:
486 FIXME("CERT_STORE_CTRL_NOTIFY_CHANGE: stub\n");
487 break;
488 default:
489 FIXME("%u: stub\n", dwCtrlType);
490 ret = FALSE;
492 return ret;
495 static void *regProvFuncs[] = {
496 CRYPT_RegCloseStore,
497 NULL, /* CERT_STORE_PROV_READ_CERT_FUNC */
498 CRYPT_RegWriteCert,
499 CRYPT_RegDeleteCert,
500 NULL, /* CERT_STORE_PROV_SET_CERT_PROPERTY_FUNC */
501 NULL, /* CERT_STORE_PROV_READ_CRL_FUNC */
502 CRYPT_RegWriteCRL,
503 CRYPT_RegDeleteCRL,
504 NULL, /* CERT_STORE_PROV_SET_CRL_PROPERTY_FUNC */
505 NULL, /* CERT_STORE_PROV_READ_CTL_FUNC */
506 CRYPT_RegWriteCTL,
507 CRYPT_RegDeleteCTL,
508 NULL, /* CERT_STORE_PROV_SET_CTL_PROPERTY_FUNC */
509 CRYPT_RegControl,
512 WINECRYPT_CERTSTORE *CRYPT_RegOpenStore(HCRYPTPROV hCryptProv, DWORD dwFlags,
513 const void *pvPara)
515 WINECRYPT_CERTSTORE *store = NULL;
517 TRACE("(%ld, %08x, %p)\n", hCryptProv, dwFlags, pvPara);
519 if (dwFlags & CERT_STORE_DELETE_FLAG)
521 DWORD rc = RegDeleteTreeW((HKEY)pvPara, CertsW);
523 if (rc == ERROR_SUCCESS || rc == ERROR_NO_MORE_ITEMS)
524 rc = RegDeleteTreeW((HKEY)pvPara, CRLsW);
525 if (rc == ERROR_SUCCESS || rc == ERROR_NO_MORE_ITEMS)
526 rc = RegDeleteTreeW((HKEY)pvPara, CTLsW);
527 if (rc == ERROR_NO_MORE_ITEMS)
528 rc = ERROR_SUCCESS;
529 SetLastError(rc);
531 else
533 HKEY key;
535 if (DuplicateHandle(GetCurrentProcess(), (HANDLE)pvPara,
536 GetCurrentProcess(), (LPHANDLE)&key,
537 dwFlags & CERT_STORE_READONLY_FLAG ? KEY_READ : KEY_ALL_ACCESS,
538 TRUE, 0))
540 WINECRYPT_CERTSTORE *memStore;
542 memStore = CertOpenStore(CERT_STORE_PROV_MEMORY, 0, hCryptProv,
543 CERT_STORE_CREATE_NEW_FLAG, NULL);
544 if (memStore)
546 WINE_REGSTOREINFO *regInfo = CryptMemAlloc(
547 sizeof(WINE_REGSTOREINFO));
549 if (regInfo)
551 CERT_STORE_PROV_INFO provInfo = { 0 };
553 regInfo->dwOpenFlags = dwFlags;
554 regInfo->memStore = memStore;
555 regInfo->key = key;
556 InitializeCriticalSection(&regInfo->cs);
557 regInfo->cs.DebugInfo->Spare[0] = (DWORD_PTR)(__FILE__ ": PWINE_REGSTOREINFO->cs");
558 list_init(&regInfo->certsToDelete);
559 list_init(&regInfo->crlsToDelete);
560 list_init(&regInfo->ctlsToDelete);
561 CRYPT_RegReadFromReg(regInfo->key, regInfo->memStore);
562 regInfo->dirty = FALSE;
563 provInfo.cbSize = sizeof(provInfo);
564 provInfo.cStoreProvFunc = sizeof(regProvFuncs) /
565 sizeof(regProvFuncs[0]);
566 provInfo.rgpvStoreProvFunc = regProvFuncs;
567 provInfo.hStoreProv = regInfo;
568 store = CRYPT_ProvCreateStore(dwFlags, memStore, &provInfo);
569 /* Reg store doesn't need crypto provider, so close it */
570 if (hCryptProv &&
571 !(dwFlags & CERT_STORE_NO_CRYPT_RELEASE_FLAG))
572 CryptReleaseContext(hCryptProv, 0);
577 TRACE("returning %p\n", store);
578 return store;