2 * Copyright 2002 Mike McCormack for CodeWeavers
3 * Copyright 2004-2006 Juan Lang
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation; either
8 * version 2.1 of the License, or (at your option) any later version.
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Lesser General Public License for more details.
15 * You should have received a copy of the GNU Lesser General Public
16 * License along with this library; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
20 * - The concept of physical stores and locations isn't implemented. (This
21 * doesn't mean registry stores et al aren't implemented. See the PSDK for
22 * registering and enumerating physical stores and locations.)
23 * - Many flags, options and whatnot are unimplemented.
27 #include "wine/port.h"
37 #include "wine/debug.h"
38 #include "wine/list.h"
39 #include "wine/exception.h"
40 #include "crypt32_private.h"
42 WINE_DEFAULT_DEBUG_CHANNEL(crypt
);
44 #define WINE_CRYPTCERTSTORE_MAGIC 0x74726563
46 static const WINE_CONTEXT_INTERFACE gCertInterface
= {
47 (CreateContextFunc
)CertCreateCertificateContext
,
48 (AddContextToStoreFunc
)CertAddCertificateContextToStore
,
49 (AddEncodedContextToStoreFunc
)CertAddEncodedCertificateToStore
,
50 (DuplicateContextFunc
)CertDuplicateCertificateContext
,
51 (EnumContextsInStoreFunc
)CertEnumCertificatesInStore
,
52 (EnumPropertiesFunc
)CertEnumCertificateContextProperties
,
53 (GetContextPropertyFunc
)CertGetCertificateContextProperty
,
54 (SetContextPropertyFunc
)CertSetCertificateContextProperty
,
55 (SerializeElementFunc
)CertSerializeCertificateStoreElement
,
56 (FreeContextFunc
)CertFreeCertificateContext
,
57 (DeleteContextFunc
)CertDeleteCertificateFromStore
,
59 PCWINE_CONTEXT_INTERFACE pCertInterface
= &gCertInterface
;
61 static const WINE_CONTEXT_INTERFACE gCRLInterface
= {
62 (CreateContextFunc
)CertCreateCRLContext
,
63 (AddContextToStoreFunc
)CertAddCRLContextToStore
,
64 (AddEncodedContextToStoreFunc
)CertAddEncodedCRLToStore
,
65 (DuplicateContextFunc
)CertDuplicateCRLContext
,
66 (EnumContextsInStoreFunc
)CertEnumCRLsInStore
,
67 (EnumPropertiesFunc
)CertEnumCRLContextProperties
,
68 (GetContextPropertyFunc
)CertGetCRLContextProperty
,
69 (SetContextPropertyFunc
)CertSetCRLContextProperty
,
70 (SerializeElementFunc
)CertSerializeCRLStoreElement
,
71 (FreeContextFunc
)CertFreeCRLContext
,
72 (DeleteContextFunc
)CertDeleteCRLFromStore
,
74 PCWINE_CONTEXT_INTERFACE pCRLInterface
= &gCRLInterface
;
76 static const WINE_CONTEXT_INTERFACE gCTLInterface
= {
77 (CreateContextFunc
)CertCreateCTLContext
,
78 (AddContextToStoreFunc
)CertAddCTLContextToStore
,
79 (AddEncodedContextToStoreFunc
)CertAddEncodedCTLToStore
,
80 (DuplicateContextFunc
)CertDuplicateCTLContext
,
81 (EnumContextsInStoreFunc
)CertEnumCTLsInStore
,
82 (EnumPropertiesFunc
)CertEnumCTLContextProperties
,
83 (GetContextPropertyFunc
)CertGetCTLContextProperty
,
84 (SetContextPropertyFunc
)CertSetCTLContextProperty
,
85 (SerializeElementFunc
)CertSerializeCTLStoreElement
,
86 (FreeContextFunc
)CertFreeCTLContext
,
87 (DeleteContextFunc
)CertDeleteCTLFromStore
,
89 PCWINE_CONTEXT_INTERFACE pCTLInterface
= &gCTLInterface
;
91 struct WINE_CRYPTCERTSTORE
;
93 typedef struct WINE_CRYPTCERTSTORE
* (*StoreOpenFunc
)(HCRYPTPROV hCryptProv
,
94 DWORD dwFlags
, const void *pvPara
);
96 /* Called to enumerate the next context in a store. */
97 typedef void * (*EnumFunc
)(struct WINE_CRYPTCERTSTORE
*store
, void *pPrev
);
99 /* Called to add a context to a store. If toReplace is not NULL,
100 * context replaces toReplace in the store, and access checks should not be
101 * performed. Otherwise context is a new context, and it should only be
102 * added if the store allows it. If ppStoreContext is not NULL, the added
103 * context should be returned in *ppStoreContext.
105 typedef BOOL (*AddFunc
)(struct WINE_CRYPTCERTSTORE
*store
, void *context
,
106 void *toReplace
, const void **ppStoreContext
);
108 typedef BOOL (*DeleteFunc
)(struct WINE_CRYPTCERTSTORE
*store
, void *context
);
110 typedef struct _CONTEXT_STORE
113 EnumFunc enumContext
;
114 DeleteFunc deleteContext
;
115 } CONTEXT_STORE
, *PCONTEXT_STORE
;
117 typedef enum _CertStoreType
{
123 /* A cert store is polymorphic through the use of function pointers. A type
124 * is still needed to distinguish collection stores from other types.
125 * On the function pointers:
126 * - closeStore is called when the store's ref count becomes 0
127 * - control is optional, but should be implemented by any store that supports
130 typedef struct WINE_CRYPTCERTSTORE
135 HCRYPTPROV cryptProv
;
137 PFN_CERT_STORE_PROV_CLOSE closeStore
;
140 PFN_CERT_STORE_PROV_CONTROL control
; /* optional */
141 PCONTEXT_PROPERTY_LIST properties
;
142 } WINECRYPT_CERTSTORE
, *PWINECRYPT_CERTSTORE
;
144 typedef struct _WINE_MEMSTORE
146 WINECRYPT_CERTSTORE hdr
;
147 struct ContextList
*certs
;
148 struct ContextList
*crls
;
149 } WINE_MEMSTORE
, *PWINE_MEMSTORE
;
151 typedef struct _WINE_HASH_TO_DELETE
155 } WINE_HASH_TO_DELETE
, *PWINE_HASH_TO_DELETE
;
157 typedef struct _WINE_REGSTOREINFO
160 HCRYPTPROV cryptProv
;
161 PWINECRYPT_CERTSTORE memStore
;
165 struct list certsToDelete
;
166 struct list crlsToDelete
;
167 } WINE_REGSTOREINFO
, *PWINE_REGSTOREINFO
;
169 typedef struct _WINE_FILESTOREINFO
172 HCRYPTPROV cryptProv
;
173 PWINECRYPT_CERTSTORE memStore
;
176 } WINE_FILESTOREINFO
, *PWINE_FILESTOREINFO
;
178 typedef struct _WINE_STORE_LIST_ENTRY
180 PWINECRYPT_CERTSTORE store
;
184 } WINE_STORE_LIST_ENTRY
, *PWINE_STORE_LIST_ENTRY
;
186 typedef struct _WINE_COLLECTIONSTORE
188 WINECRYPT_CERTSTORE hdr
;
191 } WINE_COLLECTIONSTORE
, *PWINE_COLLECTIONSTORE
;
193 typedef struct _WINE_PROVIDERSTORE
195 WINECRYPT_CERTSTORE hdr
;
196 DWORD dwStoreProvFlags
;
197 PWINECRYPT_CERTSTORE memStore
;
198 HCERTSTOREPROV hStoreProv
;
199 PFN_CERT_STORE_PROV_CLOSE provCloseStore
;
200 PFN_CERT_STORE_PROV_WRITE_CERT provWriteCert
;
201 PFN_CERT_STORE_PROV_DELETE_CERT provDeleteCert
;
202 PFN_CERT_STORE_PROV_WRITE_CRL provWriteCrl
;
203 PFN_CERT_STORE_PROV_DELETE_CRL provDeleteCrl
;
204 PFN_CERT_STORE_PROV_CONTROL provControl
;
205 } WINE_PROVIDERSTORE
, *PWINE_PROVIDERSTORE
;
207 static void CRYPT_InitStore(WINECRYPT_CERTSTORE
*store
, HCRYPTPROV hCryptProv
,
208 DWORD dwFlags
, CertStoreType type
)
211 store
->dwMagic
= WINE_CRYPTCERTSTORE_MAGIC
;
215 hCryptProv
= CRYPT_GetDefaultProvider();
216 dwFlags
|= CERT_STORE_NO_CRYPT_RELEASE_FLAG
;
218 store
->cryptProv
= hCryptProv
;
219 store
->dwOpenFlags
= dwFlags
;
220 store
->properties
= NULL
;
223 static void CRYPT_FreeStore(PWINECRYPT_CERTSTORE store
)
225 if (store
->properties
)
226 ContextPropertyList_Free(store
->properties
);
230 static BOOL
CRYPT_MemAddCert(PWINECRYPT_CERTSTORE store
, void *cert
,
231 void *toReplace
, const void **ppStoreContext
)
233 WINE_MEMSTORE
*ms
= (WINE_MEMSTORE
*)store
;
234 PCERT_CONTEXT context
;
236 TRACE("(%p, %p, %p, %p)\n", store
, cert
, toReplace
, ppStoreContext
);
238 context
= (PCERT_CONTEXT
)ContextList_Add(ms
->certs
, cert
, toReplace
);
241 context
->hCertStore
= store
;
243 *ppStoreContext
= CertDuplicateCertificateContext(context
);
245 return context
? TRUE
: FALSE
;
248 static void *CRYPT_MemEnumCert(PWINECRYPT_CERTSTORE store
, void *pPrev
)
250 WINE_MEMSTORE
*ms
= (WINE_MEMSTORE
*)store
;
253 TRACE("(%p, %p)\n", store
, pPrev
);
255 ret
= ContextList_Enum(ms
->certs
, pPrev
);
257 SetLastError(CRYPT_E_NOT_FOUND
);
259 TRACE("returning %p\n", ret
);
263 static BOOL
CRYPT_MemDeleteCert(PWINECRYPT_CERTSTORE store
, void *pCertContext
)
265 WINE_MEMSTORE
*ms
= (WINE_MEMSTORE
*)store
;
267 ContextList_Delete(ms
->certs
, pCertContext
);
271 static BOOL
CRYPT_MemAddCrl(PWINECRYPT_CERTSTORE store
, void *crl
,
272 void *toReplace
, const void **ppStoreContext
)
274 WINE_MEMSTORE
*ms
= (WINE_MEMSTORE
*)store
;
275 PCRL_CONTEXT context
;
277 TRACE("(%p, %p, %p, %p)\n", store
, crl
, toReplace
, ppStoreContext
);
279 context
= (PCRL_CONTEXT
)ContextList_Add(ms
->crls
, crl
, toReplace
);
282 context
->hCertStore
= store
;
284 *ppStoreContext
= CertDuplicateCRLContext(context
);
286 return context
? TRUE
: FALSE
;
289 static void *CRYPT_MemEnumCrl(PWINECRYPT_CERTSTORE store
, void *pPrev
)
291 WINE_MEMSTORE
*ms
= (WINE_MEMSTORE
*)store
;
294 TRACE("(%p, %p)\n", store
, pPrev
);
296 ret
= ContextList_Enum(ms
->crls
, pPrev
);
298 SetLastError(CRYPT_E_NOT_FOUND
);
300 TRACE("returning %p\n", ret
);
304 static BOOL
CRYPT_MemDeleteCrl(PWINECRYPT_CERTSTORE store
, void *pCrlContext
)
306 WINE_MEMSTORE
*ms
= (WINE_MEMSTORE
*)store
;
308 ContextList_Delete(ms
->crls
, pCrlContext
);
312 static void CRYPT_MemEmptyStore(PWINE_MEMSTORE store
)
314 ContextList_Empty(store
->certs
);
315 ContextList_Empty(store
->crls
);
318 static void WINAPI
CRYPT_MemCloseStore(HCERTSTORE hCertStore
, DWORD dwFlags
)
320 WINE_MEMSTORE
*store
= (WINE_MEMSTORE
*)hCertStore
;
322 TRACE("(%p, %08x)\n", store
, dwFlags
);
324 FIXME("Unimplemented flags: %08x\n", dwFlags
);
326 ContextList_Free(store
->certs
);
327 ContextList_Free(store
->crls
);
328 CRYPT_FreeStore((PWINECRYPT_CERTSTORE
)store
);
331 static WINECRYPT_CERTSTORE
*CRYPT_MemOpenStore(HCRYPTPROV hCryptProv
,
332 DWORD dwFlags
, const void *pvPara
)
334 PWINE_MEMSTORE store
;
336 TRACE("(%ld, %08x, %p)\n", hCryptProv
, dwFlags
, pvPara
);
338 if (dwFlags
& CERT_STORE_DELETE_FLAG
)
340 SetLastError(ERROR_CALL_NOT_IMPLEMENTED
);
345 store
= CryptMemAlloc(sizeof(WINE_MEMSTORE
));
348 memset(store
, 0, sizeof(WINE_MEMSTORE
));
349 CRYPT_InitStore(&store
->hdr
, hCryptProv
, dwFlags
, StoreTypeMem
);
350 store
->hdr
.closeStore
= CRYPT_MemCloseStore
;
351 store
->hdr
.certs
.addContext
= CRYPT_MemAddCert
;
352 store
->hdr
.certs
.enumContext
= CRYPT_MemEnumCert
;
353 store
->hdr
.certs
.deleteContext
= CRYPT_MemDeleteCert
;
354 store
->hdr
.crls
.addContext
= CRYPT_MemAddCrl
;
355 store
->hdr
.crls
.enumContext
= CRYPT_MemEnumCrl
;
356 store
->hdr
.crls
.deleteContext
= CRYPT_MemDeleteCrl
;
357 store
->hdr
.control
= NULL
;
358 store
->certs
= ContextList_Create(pCertInterface
,
359 sizeof(CERT_CONTEXT
));
360 store
->crls
= ContextList_Create(pCRLInterface
,
361 sizeof(CRL_CONTEXT
));
364 return (PWINECRYPT_CERTSTORE
)store
;
367 static void WINAPI
CRYPT_CollectionCloseStore(HCERTSTORE store
, DWORD dwFlags
)
369 PWINE_COLLECTIONSTORE cs
= (PWINE_COLLECTIONSTORE
)store
;
370 PWINE_STORE_LIST_ENTRY entry
, next
;
372 TRACE("(%p, %08x)\n", store
, dwFlags
);
374 LIST_FOR_EACH_ENTRY_SAFE(entry
, next
, &cs
->stores
, WINE_STORE_LIST_ENTRY
,
377 TRACE("closing %p\n", entry
);
378 CertCloseStore((HCERTSTORE
)entry
->store
, dwFlags
);
381 cs
->cs
.DebugInfo
->Spare
[0] = 0;
382 DeleteCriticalSection(&cs
->cs
);
383 CRYPT_FreeStore((PWINECRYPT_CERTSTORE
)store
);
386 static void *CRYPT_CollectionCreateContextFromChild(PWINE_COLLECTIONSTORE store
,
387 PWINE_STORE_LIST_ENTRY storeEntry
, void *child
, size_t contextSize
,
390 void *ret
= Context_CreateLinkContext(contextSize
, child
,
391 sizeof(PWINE_STORE_LIST_ENTRY
), addRef
);
394 *(PWINE_STORE_LIST_ENTRY
*)Context_GetExtra(ret
, contextSize
)
400 static BOOL
CRYPT_CollectionAddContext(PWINE_COLLECTIONSTORE store
,
401 unsigned int contextStoreOffset
, void *context
, void *toReplace
, unsigned int contextSize
,
402 void **pChildContext
)
405 void *childContext
= NULL
;
406 PWINE_STORE_LIST_ENTRY storeEntry
= NULL
;
408 TRACE("(%p, %d, %p, %p, %d)\n", store
, contextStoreOffset
, context
,
409 toReplace
, contextSize
);
414 void *existingLinked
= Context_GetLinkedContext(toReplace
, contextSize
);
415 PCONTEXT_STORE contextStore
;
417 storeEntry
= *(PWINE_STORE_LIST_ENTRY
*)Context_GetExtra(toReplace
,
419 contextStore
= (PCONTEXT_STORE
)((LPBYTE
)storeEntry
->store
+
421 ret
= contextStore
->addContext(storeEntry
->store
, context
,
422 existingLinked
, (const void **)&childContext
);
426 PWINE_STORE_LIST_ENTRY entry
, next
;
428 EnterCriticalSection(&store
->cs
);
429 LIST_FOR_EACH_ENTRY_SAFE(entry
, next
, &store
->stores
,
430 WINE_STORE_LIST_ENTRY
, entry
)
432 if (entry
->dwUpdateFlags
& CERT_PHYSICAL_STORE_ADD_ENABLE_FLAG
)
434 PCONTEXT_STORE contextStore
= (PCONTEXT_STORE
)(
435 (LPBYTE
)entry
->store
+ contextStoreOffset
);
438 ret
= contextStore
->addContext(entry
->store
, context
, NULL
,
439 (const void **)&childContext
);
443 LeaveCriticalSection(&store
->cs
);
445 SetLastError(E_ACCESSDENIED
);
447 *pChildContext
= childContext
;
451 /* Advances a collection enumeration by one context, if possible, where
453 * - calling the current store's enumeration function once, and returning
454 * the enumerated context if one is returned
455 * - moving to the next store if the current store has no more items, and
456 * recursively calling itself to get the next item.
457 * Returns NULL if the collection contains no more items or on error.
458 * Assumes the collection store's lock is held.
460 static void *CRYPT_CollectionAdvanceEnum(PWINE_COLLECTIONSTORE store
,
461 PWINE_STORE_LIST_ENTRY storeEntry
, size_t contextStoreOffset
,
462 PCWINE_CONTEXT_INTERFACE contextInterface
, void *pPrev
, size_t contextSize
)
465 struct list
*storeNext
= list_next(&store
->stores
, &storeEntry
->entry
);
466 PCONTEXT_STORE contextStore
= (PCONTEXT_STORE
)((LPBYTE
)storeEntry
->store
+
469 TRACE("(%p, %p, %p)\n", store
, storeEntry
, pPrev
);
473 /* Ref-counting funny business: "duplicate" (addref) the child, because
474 * the free(pPrev) below can cause the ref count to become negative.
476 child
= Context_GetLinkedContext(pPrev
, contextSize
);
477 contextInterface
->duplicate(child
);
478 child
= contextStore
->enumContext(storeEntry
->store
, child
);
479 contextInterface
->free(pPrev
);
483 child
= storeEntry
->store
->certs
.enumContext(storeEntry
->store
, NULL
);
485 ret
= CRYPT_CollectionCreateContextFromChild(store
, storeEntry
, child
,
490 ret
= CRYPT_CollectionAdvanceEnum(store
, LIST_ENTRY(storeNext
,
491 WINE_STORE_LIST_ENTRY
, entry
), contextStoreOffset
,
492 contextInterface
, NULL
, contextSize
);
495 SetLastError(CRYPT_E_NOT_FOUND
);
499 TRACE("returning %p\n", ret
);
503 static BOOL
CRYPT_CollectionAddCert(PWINECRYPT_CERTSTORE store
, void *cert
,
504 void *toReplace
, const void **ppStoreContext
)
507 void *childContext
= NULL
;
508 PWINE_COLLECTIONSTORE cs
= (PWINE_COLLECTIONSTORE
)store
;
510 ret
= CRYPT_CollectionAddContext(cs
, offsetof(WINECRYPT_CERTSTORE
, certs
),
511 cert
, toReplace
, sizeof(CERT_CONTEXT
), &childContext
);
512 if (ppStoreContext
&& childContext
)
514 PWINE_STORE_LIST_ENTRY storeEntry
= *(PWINE_STORE_LIST_ENTRY
*)
515 Context_GetExtra(childContext
, sizeof(CERT_CONTEXT
));
516 PCERT_CONTEXT context
=
517 CRYPT_CollectionCreateContextFromChild(cs
, storeEntry
, childContext
,
518 sizeof(CERT_CONTEXT
), TRUE
);
521 context
->hCertStore
= store
;
522 *ppStoreContext
= context
;
524 CertFreeCertificateContext((PCCERT_CONTEXT
)childContext
);
528 static void *CRYPT_CollectionEnumCert(PWINECRYPT_CERTSTORE store
, void *pPrev
)
530 PWINE_COLLECTIONSTORE cs
= (PWINE_COLLECTIONSTORE
)store
;
533 TRACE("(%p, %p)\n", store
, pPrev
);
535 EnterCriticalSection(&cs
->cs
);
538 PWINE_STORE_LIST_ENTRY storeEntry
=
539 *(PWINE_STORE_LIST_ENTRY
*)Context_GetExtra(pPrev
,
540 sizeof(CERT_CONTEXT
));
542 ret
= CRYPT_CollectionAdvanceEnum(cs
, storeEntry
,
543 offsetof(WINECRYPT_CERTSTORE
, certs
), pCertInterface
, pPrev
,
544 sizeof(CERT_CONTEXT
));
548 if (!list_empty(&cs
->stores
))
550 PWINE_STORE_LIST_ENTRY storeEntry
= LIST_ENTRY(cs
->stores
.next
,
551 WINE_STORE_LIST_ENTRY
, entry
);
553 ret
= CRYPT_CollectionAdvanceEnum(cs
, storeEntry
,
554 offsetof(WINECRYPT_CERTSTORE
, certs
), pCertInterface
, NULL
,
555 sizeof(CERT_CONTEXT
));
559 SetLastError(CRYPT_E_NOT_FOUND
);
563 LeaveCriticalSection(&cs
->cs
);
565 ((PCERT_CONTEXT
)ret
)->hCertStore
= store
;
566 TRACE("returning %p\n", ret
);
570 static BOOL
CRYPT_CollectionDeleteCert(PWINECRYPT_CERTSTORE store
,
575 TRACE("(%p, %p)\n", store
, pCertContext
);
577 ret
= CertDeleteCertificateFromStore((PCCERT_CONTEXT
)
578 Context_GetLinkedContext(pCertContext
, sizeof(CERT_CONTEXT
)));
582 static BOOL
CRYPT_CollectionAddCRL(PWINECRYPT_CERTSTORE store
, void *crl
,
583 void *toReplace
, const void **ppStoreContext
)
586 void *childContext
= NULL
;
587 PWINE_COLLECTIONSTORE cs
= (PWINE_COLLECTIONSTORE
)store
;
589 ret
= CRYPT_CollectionAddContext(cs
, offsetof(WINECRYPT_CERTSTORE
, crls
),
590 crl
, toReplace
, sizeof(CRL_CONTEXT
), &childContext
);
591 if (ppStoreContext
&& childContext
)
593 PWINE_STORE_LIST_ENTRY storeEntry
= *(PWINE_STORE_LIST_ENTRY
*)
594 Context_GetExtra(childContext
, sizeof(CRL_CONTEXT
));
595 PCRL_CONTEXT context
=
596 CRYPT_CollectionCreateContextFromChild(cs
, storeEntry
, childContext
,
597 sizeof(CRL_CONTEXT
), TRUE
);
600 context
->hCertStore
= store
;
601 *ppStoreContext
= context
;
603 CertFreeCRLContext((PCCRL_CONTEXT
)childContext
);
607 static void *CRYPT_CollectionEnumCRL(PWINECRYPT_CERTSTORE store
, void *pPrev
)
609 PWINE_COLLECTIONSTORE cs
= (PWINE_COLLECTIONSTORE
)store
;
612 TRACE("(%p, %p)\n", store
, pPrev
);
614 EnterCriticalSection(&cs
->cs
);
617 PWINE_STORE_LIST_ENTRY storeEntry
=
618 *(PWINE_STORE_LIST_ENTRY
*)Context_GetExtra(pPrev
,
619 sizeof(CRL_CONTEXT
));
621 ret
= CRYPT_CollectionAdvanceEnum(cs
, storeEntry
,
622 offsetof(WINECRYPT_CERTSTORE
, crls
), pCRLInterface
, pPrev
,
623 sizeof(CRL_CONTEXT
));
627 if (!list_empty(&cs
->stores
))
629 PWINE_STORE_LIST_ENTRY storeEntry
= LIST_ENTRY(cs
->stores
.next
,
630 WINE_STORE_LIST_ENTRY
, entry
);
632 ret
= CRYPT_CollectionAdvanceEnum(cs
, storeEntry
,
633 offsetof(WINECRYPT_CERTSTORE
, crls
), pCRLInterface
, NULL
,
634 sizeof(CRL_CONTEXT
));
638 SetLastError(CRYPT_E_NOT_FOUND
);
642 LeaveCriticalSection(&cs
->cs
);
644 ((PCRL_CONTEXT
)ret
)->hCertStore
= store
;
645 TRACE("returning %p\n", ret
);
649 static BOOL
CRYPT_CollectionDeleteCRL(PWINECRYPT_CERTSTORE store
,
654 TRACE("(%p, %p)\n", store
, pCrlContext
);
656 ret
= CertDeleteCRLFromStore((PCCRL_CONTEXT
)
657 Context_GetLinkedContext(pCrlContext
, sizeof(CRL_CONTEXT
)));
661 static WINECRYPT_CERTSTORE
*CRYPT_CollectionOpenStore(HCRYPTPROV hCryptProv
,
662 DWORD dwFlags
, const void *pvPara
)
664 PWINE_COLLECTIONSTORE store
;
666 if (dwFlags
& CERT_STORE_DELETE_FLAG
)
668 SetLastError(ERROR_CALL_NOT_IMPLEMENTED
);
673 store
= CryptMemAlloc(sizeof(WINE_COLLECTIONSTORE
));
676 memset(store
, 0, sizeof(WINE_COLLECTIONSTORE
));
677 CRYPT_InitStore(&store
->hdr
, hCryptProv
, dwFlags
,
678 StoreTypeCollection
);
679 store
->hdr
.closeStore
= CRYPT_CollectionCloseStore
;
680 store
->hdr
.certs
.addContext
= CRYPT_CollectionAddCert
;
681 store
->hdr
.certs
.enumContext
= CRYPT_CollectionEnumCert
;
682 store
->hdr
.certs
.deleteContext
= CRYPT_CollectionDeleteCert
;
683 store
->hdr
.crls
.addContext
= CRYPT_CollectionAddCRL
;
684 store
->hdr
.crls
.enumContext
= CRYPT_CollectionEnumCRL
;
685 store
->hdr
.crls
.deleteContext
= CRYPT_CollectionDeleteCRL
;
686 InitializeCriticalSection(&store
->cs
);
687 store
->cs
.DebugInfo
->Spare
[0] = (DWORD_PTR
)(__FILE__
": PWINE_COLLECTIONSTORE->cs");
688 list_init(&store
->stores
);
691 return (PWINECRYPT_CERTSTORE
)store
;
694 static void WINAPI
CRYPT_ProvCloseStore(HCERTSTORE hCertStore
, DWORD dwFlags
)
696 PWINE_PROVIDERSTORE store
= (PWINE_PROVIDERSTORE
)hCertStore
;
698 TRACE("(%p, %08x)\n", store
, dwFlags
);
700 if (store
->provCloseStore
)
701 store
->provCloseStore(store
->hStoreProv
, dwFlags
);
702 if (!(store
->dwStoreProvFlags
& CERT_STORE_PROV_EXTERNAL_FLAG
))
703 CertCloseStore(store
->memStore
, dwFlags
);
704 CRYPT_FreeStore((PWINECRYPT_CERTSTORE
)store
);
707 static BOOL
CRYPT_ProvAddCert(PWINECRYPT_CERTSTORE store
, void *cert
,
708 void *toReplace
, const void **ppStoreContext
)
710 PWINE_PROVIDERSTORE ps
= (PWINE_PROVIDERSTORE
)store
;
713 TRACE("(%p, %p, %p, %p)\n", store
, cert
, toReplace
, ppStoreContext
);
716 ret
= ps
->memStore
->certs
.addContext(ps
->memStore
, cert
, toReplace
,
717 (const void **)ppStoreContext
);
721 if (ps
->provWriteCert
)
722 ret
= ps
->provWriteCert(ps
->hStoreProv
, (PCCERT_CONTEXT
)cert
,
723 CERT_STORE_PROV_WRITE_ADD_FLAG
);
725 ret
= ps
->memStore
->certs
.addContext(ps
->memStore
, cert
, NULL
,
726 (const void **)ppStoreContext
);
728 /* dirty trick: replace the returned context's hCertStore with
732 (*(PCERT_CONTEXT
*)ppStoreContext
)->hCertStore
= store
;
736 static void *CRYPT_ProvEnumCert(PWINECRYPT_CERTSTORE store
, void *pPrev
)
738 PWINE_PROVIDERSTORE ps
= (PWINE_PROVIDERSTORE
)store
;
741 ret
= ps
->memStore
->certs
.enumContext(ps
->memStore
, pPrev
);
744 /* same dirty trick: replace the returned context's hCertStore with
747 ((PCERT_CONTEXT
)ret
)->hCertStore
= store
;
752 static BOOL
CRYPT_ProvDeleteCert(PWINECRYPT_CERTSTORE store
, void *cert
)
754 PWINE_PROVIDERSTORE ps
= (PWINE_PROVIDERSTORE
)store
;
757 TRACE("(%p, %p)\n", store
, cert
);
759 if (ps
->provDeleteCert
)
760 ret
= ps
->provDeleteCert(ps
->hStoreProv
, cert
, 0);
762 ret
= ps
->memStore
->certs
.deleteContext(ps
->memStore
, cert
);
766 static BOOL
CRYPT_ProvAddCRL(PWINECRYPT_CERTSTORE store
, void *crl
,
767 void *toReplace
, const void **ppStoreContext
)
769 PWINE_PROVIDERSTORE ps
= (PWINE_PROVIDERSTORE
)store
;
772 TRACE("(%p, %p, %p, %p)\n", store
, crl
, toReplace
, ppStoreContext
);
775 ret
= ps
->memStore
->crls
.addContext(ps
->memStore
, crl
, toReplace
,
776 (const void **)ppStoreContext
);
779 if (ps
->hdr
.dwOpenFlags
& CERT_STORE_READONLY_FLAG
)
781 SetLastError(ERROR_ACCESS_DENIED
);
787 if (ps
->provWriteCrl
)
788 ret
= ps
->provWriteCrl(ps
->hStoreProv
, (PCCRL_CONTEXT
)crl
,
789 CERT_STORE_PROV_WRITE_ADD_FLAG
);
791 ret
= ps
->memStore
->crls
.addContext(ps
->memStore
, crl
, NULL
,
792 (const void **)ppStoreContext
);
795 /* dirty trick: replace the returned context's hCertStore with
799 (*(PCRL_CONTEXT
*)ppStoreContext
)->hCertStore
= store
;
803 static void *CRYPT_ProvEnumCRL(PWINECRYPT_CERTSTORE store
, void *pPrev
)
805 PWINE_PROVIDERSTORE ps
= (PWINE_PROVIDERSTORE
)store
;
808 ret
= ps
->memStore
->crls
.enumContext(ps
->memStore
, pPrev
);
811 /* same dirty trick: replace the returned context's hCertStore with
814 ((PCERT_CONTEXT
)ret
)->hCertStore
= store
;
819 static BOOL
CRYPT_ProvDeleteCRL(PWINECRYPT_CERTSTORE store
, void *crl
)
821 PWINE_PROVIDERSTORE ps
= (PWINE_PROVIDERSTORE
)store
;
824 TRACE("(%p, %p)\n", store
, crl
);
826 if (ps
->provDeleteCrl
)
827 ret
= ps
->provDeleteCrl(ps
->hStoreProv
, crl
, 0);
829 ret
= ps
->memStore
->crls
.deleteContext(ps
->memStore
, crl
);
833 static BOOL WINAPI
CRYPT_ProvControl(HCERTSTORE hCertStore
, DWORD dwFlags
,
834 DWORD dwCtrlType
, void const *pvCtrlPara
)
836 PWINE_PROVIDERSTORE store
= (PWINE_PROVIDERSTORE
)hCertStore
;
839 TRACE("(%p, %08x, %d, %p)\n", hCertStore
, dwFlags
, dwCtrlType
,
842 if (store
->provControl
)
843 ret
= store
->provControl(store
->hStoreProv
, dwFlags
, dwCtrlType
,
848 static PWINECRYPT_CERTSTORE
CRYPT_ProvCreateStore(HCRYPTPROV hCryptProv
,
849 DWORD dwFlags
, PWINECRYPT_CERTSTORE memStore
, const CERT_STORE_PROV_INFO
*pProvInfo
)
851 PWINE_PROVIDERSTORE ret
= (PWINE_PROVIDERSTORE
)CryptMemAlloc(
852 sizeof(WINE_PROVIDERSTORE
));
856 CRYPT_InitStore(&ret
->hdr
, hCryptProv
, dwFlags
,
858 ret
->dwStoreProvFlags
= pProvInfo
->dwStoreProvFlags
;
859 if (ret
->dwStoreProvFlags
& CERT_STORE_PROV_EXTERNAL_FLAG
)
861 CertCloseStore(memStore
, 0);
862 ret
->memStore
= NULL
;
865 ret
->memStore
= memStore
;
866 ret
->hStoreProv
= pProvInfo
->hStoreProv
;
867 ret
->hdr
.closeStore
= CRYPT_ProvCloseStore
;
868 ret
->hdr
.certs
.addContext
= CRYPT_ProvAddCert
;
869 ret
->hdr
.certs
.enumContext
= CRYPT_ProvEnumCert
;
870 ret
->hdr
.certs
.deleteContext
= CRYPT_ProvDeleteCert
;
871 ret
->hdr
.crls
.addContext
= CRYPT_ProvAddCRL
;
872 ret
->hdr
.crls
.enumContext
= CRYPT_ProvEnumCRL
;
873 ret
->hdr
.crls
.deleteContext
= CRYPT_ProvDeleteCRL
;
874 ret
->hdr
.control
= CRYPT_ProvControl
;
875 if (pProvInfo
->cStoreProvFunc
> CERT_STORE_PROV_CLOSE_FUNC
)
876 ret
->provCloseStore
=
877 pProvInfo
->rgpvStoreProvFunc
[CERT_STORE_PROV_CLOSE_FUNC
];
879 ret
->provCloseStore
= NULL
;
880 if (pProvInfo
->cStoreProvFunc
>
881 CERT_STORE_PROV_WRITE_CERT_FUNC
)
882 ret
->provWriteCert
= pProvInfo
->rgpvStoreProvFunc
[
883 CERT_STORE_PROV_WRITE_CERT_FUNC
];
885 ret
->provWriteCert
= NULL
;
886 if (pProvInfo
->cStoreProvFunc
>
887 CERT_STORE_PROV_DELETE_CERT_FUNC
)
888 ret
->provDeleteCert
= pProvInfo
->rgpvStoreProvFunc
[
889 CERT_STORE_PROV_DELETE_CERT_FUNC
];
891 ret
->provDeleteCert
= NULL
;
892 if (pProvInfo
->cStoreProvFunc
>
893 CERT_STORE_PROV_WRITE_CRL_FUNC
)
894 ret
->provWriteCrl
= pProvInfo
->rgpvStoreProvFunc
[
895 CERT_STORE_PROV_WRITE_CRL_FUNC
];
897 ret
->provWriteCert
= NULL
;
898 if (pProvInfo
->cStoreProvFunc
>
899 CERT_STORE_PROV_DELETE_CRL_FUNC
)
900 ret
->provDeleteCrl
= pProvInfo
->rgpvStoreProvFunc
[
901 CERT_STORE_PROV_DELETE_CRL_FUNC
];
903 ret
->provDeleteCert
= NULL
;
904 if (pProvInfo
->cStoreProvFunc
>
905 CERT_STORE_PROV_CONTROL_FUNC
)
906 ret
->provControl
= pProvInfo
->rgpvStoreProvFunc
[
907 CERT_STORE_PROV_CONTROL_FUNC
];
909 ret
->provControl
= NULL
;
911 return (PWINECRYPT_CERTSTORE
)ret
;
914 static PWINECRYPT_CERTSTORE
CRYPT_ProvOpenStore(LPCSTR lpszStoreProvider
,
915 DWORD dwEncodingType
, HCRYPTPROV hCryptProv
, DWORD dwFlags
, const void *pvPara
)
917 static HCRYPTOIDFUNCSET set
= NULL
;
918 PFN_CERT_DLL_OPEN_STORE_PROV_FUNC provOpenFunc
;
919 HCRYPTOIDFUNCADDR hFunc
;
920 PWINECRYPT_CERTSTORE ret
= NULL
;
923 set
= CryptInitOIDFunctionSet(CRYPT_OID_OPEN_STORE_PROV_FUNC
, 0);
924 CryptGetOIDFunctionAddress(set
, dwEncodingType
, lpszStoreProvider
, 0,
925 (void **)&provOpenFunc
, &hFunc
);
928 CERT_STORE_PROV_INFO provInfo
= { 0 };
930 provInfo
.cbSize
= sizeof(provInfo
);
931 if (dwFlags
& CERT_STORE_DELETE_FLAG
)
932 provOpenFunc(lpszStoreProvider
, dwEncodingType
, hCryptProv
,
933 dwFlags
, pvPara
, NULL
, &provInfo
);
938 memStore
= CertOpenStore(CERT_STORE_PROV_MEMORY
, 0, 0,
939 CERT_STORE_CREATE_NEW_FLAG
, NULL
);
942 if (provOpenFunc(lpszStoreProvider
, dwEncodingType
, hCryptProv
,
943 dwFlags
, pvPara
, memStore
, &provInfo
))
944 ret
= CRYPT_ProvCreateStore(hCryptProv
, dwFlags
, memStore
,
947 CertCloseStore(memStore
, 0);
950 CryptFreeOIDFunctionAddress(hFunc
, 0);
953 SetLastError(ERROR_FILE_NOT_FOUND
);
957 static void CRYPT_HashToStr(const BYTE
*hash
, LPWSTR asciiHash
)
959 static const WCHAR fmt
[] = { '%','0','2','X',0 };
965 for (i
= 0; i
< 20; i
++)
966 wsprintfW(asciiHash
+ i
* 2, fmt
, hash
[i
]);
969 static const WCHAR CertsW
[] = { 'C','e','r','t','i','f','i','c','a','t','e','s',
971 static const WCHAR CRLsW
[] = { 'C','R','L','s',0 };
972 static const WCHAR CTLsW
[] = { 'C','T','L','s',0 };
973 static const WCHAR BlobW
[] = { 'B','l','o','b',0 };
975 static void CRYPT_RegReadSerializedFromReg(const WINE_REGSTOREINFO
*store
, HKEY key
,
980 WCHAR subKeyName
[MAX_PATH
];
983 DWORD size
= sizeof(subKeyName
) / sizeof(WCHAR
);
985 rc
= RegEnumKeyExW(key
, index
++, subKeyName
, &size
, NULL
, NULL
, NULL
,
991 rc
= RegOpenKeyExW(key
, subKeyName
, 0, KEY_READ
, &subKey
);
997 rc
= RegQueryValueExW(subKey
, BlobW
, NULL
, NULL
, NULL
, &size
);
999 buf
= CryptMemAlloc(size
);
1002 rc
= RegQueryValueExW(subKey
, BlobW
, NULL
, NULL
, buf
,
1006 const void *context
;
1009 TRACE("Adding cert with hash %s\n",
1010 debugstr_w(subKeyName
));
1011 context
= CRYPT_ReadSerializedElement(buf
, size
,
1012 contextType
, &addedType
);
1015 const WINE_CONTEXT_INTERFACE
*contextInterface
;
1020 case CERT_STORE_CERTIFICATE_CONTEXT
:
1021 contextInterface
= &gCertInterface
;
1023 case CERT_STORE_CRL_CONTEXT
:
1024 contextInterface
= &gCRLInterface
;
1026 case CERT_STORE_CTL_CONTEXT
:
1027 contextInterface
= &gCTLInterface
;
1030 contextInterface
= NULL
;
1032 if (contextInterface
)
1034 size
= sizeof(hash
);
1035 if (contextInterface
->getProp(context
,
1036 CERT_HASH_PROP_ID
, hash
, &size
))
1038 WCHAR asciiHash
[20 * 2 + 1];
1040 CRYPT_HashToStr(hash
, asciiHash
);
1041 TRACE("comparing %s\n",
1042 debugstr_w(asciiHash
));
1043 TRACE("with %s\n", debugstr_w(subKeyName
));
1044 if (!lstrcmpW(asciiHash
, subKeyName
))
1046 TRACE("hash matches, adding\n");
1047 contextInterface
->addContextToStore(
1048 store
->memStore
, context
,
1049 CERT_STORE_ADD_REPLACE_EXISTING
, NULL
);
1052 TRACE("hash doesn't match, ignoring\n");
1054 contextInterface
->free(context
);
1060 RegCloseKey(subKey
);
1062 /* Ignore intermediate errors, continue enumerating */
1068 static void CRYPT_RegReadFromReg(const WINE_REGSTOREINFO
*store
)
1070 static const WCHAR
* const subKeys
[] = { CertsW
, CRLsW
, CTLsW
};
1071 static const DWORD contextFlags
[] = { CERT_STORE_CERTIFICATE_CONTEXT_FLAG
,
1072 CERT_STORE_CRL_CONTEXT_FLAG
, CERT_STORE_CTL_CONTEXT_FLAG
};
1075 for (i
= 0; i
< sizeof(subKeys
) / sizeof(subKeys
[0]); i
++)
1080 rc
= RegCreateKeyExW(store
->key
, subKeys
[i
], 0, NULL
, 0, KEY_READ
, NULL
,
1084 CRYPT_RegReadSerializedFromReg(store
, key
, contextFlags
[i
]);
1090 /* Hash is assumed to be 20 bytes in length (a SHA-1 hash) */
1091 static BOOL
CRYPT_WriteSerializedToReg(HKEY key
, const BYTE
*hash
, const BYTE
*buf
,
1094 WCHAR asciiHash
[20 * 2 + 1];
1099 CRYPT_HashToStr(hash
, asciiHash
);
1100 rc
= RegCreateKeyExW(key
, asciiHash
, 0, NULL
, 0, KEY_ALL_ACCESS
, NULL
,
1104 rc
= RegSetValueExW(subKey
, BlobW
, 0, REG_BINARY
, buf
, len
);
1105 RegCloseKey(subKey
);
1117 static BOOL
CRYPT_SerializeContextsToReg(HKEY key
,
1118 const WINE_CONTEXT_INTERFACE
*contextInterface
, HCERTSTORE memStore
)
1120 const void *context
= NULL
;
1124 context
= contextInterface
->enumContextsInStore(memStore
, context
);
1128 DWORD hashSize
= sizeof(hash
);
1130 ret
= contextInterface
->getProp(context
, CERT_HASH_PROP_ID
, hash
,
1137 ret
= contextInterface
->serialize(context
, 0, NULL
, &size
);
1139 buf
= CryptMemAlloc(size
);
1142 ret
= contextInterface
->serialize(context
, 0, buf
, &size
);
1144 ret
= CRYPT_WriteSerializedToReg(key
, hash
, buf
, size
);
1151 } while (ret
&& context
!= NULL
);
1153 contextInterface
->free(context
);
1157 static BOOL
CRYPT_RegWriteToReg(PWINE_REGSTOREINFO store
)
1159 static const WCHAR
* const subKeys
[] = { CertsW
, CRLsW
, CTLsW
};
1160 static const WINE_CONTEXT_INTERFACE
* const interfaces
[] = { &gCertInterface
,
1161 &gCRLInterface
, &gCTLInterface
};
1162 struct list
*listToDelete
[] = { &store
->certsToDelete
, &store
->crlsToDelete
,
1167 for (i
= 0; ret
&& i
< sizeof(subKeys
) / sizeof(subKeys
[0]); i
++)
1170 LONG rc
= RegCreateKeyExW(store
->key
, subKeys
[i
], 0, NULL
, 0,
1171 KEY_ALL_ACCESS
, NULL
, &key
, NULL
);
1175 if (listToDelete
[i
])
1177 PWINE_HASH_TO_DELETE toDelete
, next
;
1178 WCHAR asciiHash
[20 * 2 + 1];
1180 EnterCriticalSection(&store
->cs
);
1181 LIST_FOR_EACH_ENTRY_SAFE(toDelete
, next
, listToDelete
[i
],
1182 WINE_HASH_TO_DELETE
, entry
)
1186 CRYPT_HashToStr(toDelete
->hash
, asciiHash
);
1187 TRACE("Removing %s\n", debugstr_w(asciiHash
));
1188 rc
= RegDeleteKeyW(key
, asciiHash
);
1189 if (rc
!= ERROR_SUCCESS
&& rc
!= ERROR_FILE_NOT_FOUND
)
1194 list_remove(&toDelete
->entry
);
1195 CryptMemFree(toDelete
);
1197 LeaveCriticalSection(&store
->cs
);
1199 ret
= CRYPT_SerializeContextsToReg(key
, interfaces
[i
],
1212 /* If force is true or the registry store is dirty, writes the contents of the
1213 * store to the registry.
1215 static BOOL
CRYPT_RegFlushStore(PWINE_REGSTOREINFO store
, BOOL force
)
1219 TRACE("(%p, %d)\n", store
, force
);
1221 if (store
->dirty
|| force
)
1222 ret
= CRYPT_RegWriteToReg(store
);
1228 static void WINAPI
CRYPT_RegCloseStore(HCERTSTORE hCertStore
, DWORD dwFlags
)
1230 PWINE_REGSTOREINFO store
= (PWINE_REGSTOREINFO
)hCertStore
;
1232 TRACE("(%p, %08x)\n", store
, dwFlags
);
1234 FIXME("Unimplemented flags: %08x\n", dwFlags
);
1236 CRYPT_RegFlushStore(store
, FALSE
);
1237 RegCloseKey(store
->key
);
1238 store
->cs
.DebugInfo
->Spare
[0] = 0;
1239 DeleteCriticalSection(&store
->cs
);
1240 CryptMemFree(store
);
1243 static BOOL WINAPI
CRYPT_RegWriteContext(PWINE_REGSTOREINFO store
,
1244 const void *context
, DWORD dwFlags
)
1248 if (dwFlags
& CERT_STORE_PROV_WRITE_ADD_FLAG
)
1250 store
->dirty
= TRUE
;
1258 static BOOL
CRYPT_RegDeleteContext(PWINE_REGSTOREINFO store
,
1259 struct list
*deleteList
, const void *context
,
1260 PCWINE_CONTEXT_INTERFACE contextInterface
)
1264 if (store
->dwOpenFlags
& CERT_STORE_READONLY_FLAG
)
1266 SetLastError(ERROR_ACCESS_DENIED
);
1271 PWINE_HASH_TO_DELETE toDelete
=
1272 CryptMemAlloc(sizeof(WINE_HASH_TO_DELETE
));
1276 DWORD size
= sizeof(toDelete
->hash
);
1278 ret
= contextInterface
->getProp(context
, CERT_HASH_PROP_ID
,
1279 toDelete
->hash
, &size
);
1282 EnterCriticalSection(&store
->cs
);
1283 list_add_tail(deleteList
, &toDelete
->entry
);
1284 LeaveCriticalSection(&store
->cs
);
1288 CryptMemFree(toDelete
);
1295 store
->dirty
= TRUE
;
1300 static BOOL WINAPI
CRYPT_RegWriteCert(HCERTSTORE hCertStore
,
1301 PCCERT_CONTEXT cert
, DWORD dwFlags
)
1303 PWINE_REGSTOREINFO store
= (PWINE_REGSTOREINFO
)hCertStore
;
1305 TRACE("(%p, %p, %d)\n", hCertStore
, cert
, dwFlags
);
1307 return CRYPT_RegWriteContext(store
, cert
, dwFlags
);
1310 static BOOL WINAPI
CRYPT_RegDeleteCert(HCERTSTORE hCertStore
,
1311 PCCERT_CONTEXT pCertContext
, DWORD dwFlags
)
1313 PWINE_REGSTOREINFO store
= (PWINE_REGSTOREINFO
)hCertStore
;
1315 TRACE("(%p, %p, %08x)\n", store
, pCertContext
, dwFlags
);
1317 return CRYPT_RegDeleteContext(store
, &store
->certsToDelete
, pCertContext
,
1321 static BOOL WINAPI
CRYPT_RegWriteCRL(HCERTSTORE hCertStore
,
1322 PCCRL_CONTEXT crl
, DWORD dwFlags
)
1324 PWINE_REGSTOREINFO store
= (PWINE_REGSTOREINFO
)hCertStore
;
1326 TRACE("(%p, %p, %d)\n", hCertStore
, crl
, dwFlags
);
1328 return CRYPT_RegWriteContext(store
, crl
, dwFlags
);
1331 static BOOL WINAPI
CRYPT_RegDeleteCRL(HCERTSTORE hCertStore
,
1332 PCCRL_CONTEXT pCrlContext
, DWORD dwFlags
)
1334 PWINE_REGSTOREINFO store
= (PWINE_REGSTOREINFO
)hCertStore
;
1336 TRACE("(%p, %p, %08x)\n", store
, pCrlContext
, dwFlags
);
1338 return CRYPT_RegDeleteContext(store
, &store
->crlsToDelete
, pCrlContext
,
1342 static BOOL WINAPI
CRYPT_RegControl(HCERTSTORE hCertStore
, DWORD dwFlags
,
1343 DWORD dwCtrlType
, void const *pvCtrlPara
)
1345 PWINE_REGSTOREINFO store
= (PWINE_REGSTOREINFO
)hCertStore
;
1348 TRACE("(%p, %08x, %d, %p)\n", hCertStore
, dwFlags
, dwCtrlType
,
1353 case CERT_STORE_CTRL_RESYNC
:
1354 CRYPT_RegFlushStore(store
, FALSE
);
1355 CRYPT_MemEmptyStore((PWINE_MEMSTORE
)store
->memStore
);
1356 CRYPT_RegReadFromReg(store
);
1359 case CERT_STORE_CTRL_COMMIT
:
1360 ret
= CRYPT_RegFlushStore(store
,
1361 dwFlags
& CERT_STORE_CTRL_COMMIT_FORCE_FLAG
);
1364 FIXME("%d: stub\n", dwCtrlType
);
1370 static void *regProvFuncs
[] = {
1371 CRYPT_RegCloseStore
,
1372 NULL
, /* CERT_STORE_PROV_READ_CERT_FUNC */
1374 CRYPT_RegDeleteCert
,
1375 NULL
, /* CERT_STORE_PROV_SET_CERT_PROPERTY_FUNC */
1376 NULL
, /* CERT_STORE_PROV_READ_CRL_FUNC */
1379 NULL
, /* CERT_STORE_PROV_SET_CRL_PROPERTY_FUNC */
1380 NULL
, /* CERT_STORE_PROV_READ_CTL_FUNC */
1381 NULL
, /* CERT_STORE_PROV_WRITE_CTL_FUNC */
1382 NULL
, /* CERT_STORE_PROV_DELETE_CTL_FUNC */
1383 NULL
, /* CERT_STORE_PROV_SET_CTL_PROPERTY_FUNC */
1387 static WINECRYPT_CERTSTORE
*CRYPT_RegOpenStore(HCRYPTPROV hCryptProv
,
1388 DWORD dwFlags
, const void *pvPara
)
1390 PWINECRYPT_CERTSTORE store
= NULL
;
1392 TRACE("(%ld, %08x, %p)\n", hCryptProv
, dwFlags
, pvPara
);
1394 if (dwFlags
& CERT_STORE_DELETE_FLAG
)
1396 DWORD rc
= RegDeleteTreeW((HKEY
)pvPara
, CertsW
);
1398 if (rc
== ERROR_SUCCESS
|| rc
== ERROR_NO_MORE_ITEMS
)
1399 rc
= RegDeleteTreeW((HKEY
)pvPara
, CRLsW
);
1400 if (rc
== ERROR_SUCCESS
|| rc
== ERROR_NO_MORE_ITEMS
)
1401 rc
= RegDeleteTreeW((HKEY
)pvPara
, CTLsW
);
1402 if (rc
== ERROR_NO_MORE_ITEMS
)
1410 if (DuplicateHandle(GetCurrentProcess(), (HANDLE
)pvPara
,
1411 GetCurrentProcess(), (LPHANDLE
)&key
,
1412 dwFlags
& CERT_STORE_READONLY_FLAG
? KEY_READ
: KEY_ALL_ACCESS
,
1415 PWINECRYPT_CERTSTORE memStore
;
1417 memStore
= CRYPT_MemOpenStore(hCryptProv
, dwFlags
, NULL
);
1420 PWINE_REGSTOREINFO regInfo
= CryptMemAlloc(
1421 sizeof(WINE_REGSTOREINFO
));
1425 CERT_STORE_PROV_INFO provInfo
= { 0 };
1427 regInfo
->dwOpenFlags
= dwFlags
;
1428 regInfo
->cryptProv
= hCryptProv
;
1429 regInfo
->memStore
= memStore
;
1431 InitializeCriticalSection(®Info
->cs
);
1432 regInfo
->cs
.DebugInfo
->Spare
[0] = (DWORD_PTR
)(__FILE__
": PWINE_REGSTOREINFO->cs");
1433 list_init(®Info
->certsToDelete
);
1434 list_init(®Info
->crlsToDelete
);
1435 CRYPT_RegReadFromReg(regInfo
);
1436 regInfo
->dirty
= FALSE
;
1437 provInfo
.cbSize
= sizeof(provInfo
);
1438 provInfo
.cStoreProvFunc
= sizeof(regProvFuncs
) /
1439 sizeof(regProvFuncs
[0]);
1440 provInfo
.rgpvStoreProvFunc
= regProvFuncs
;
1441 provInfo
.hStoreProv
= regInfo
;
1442 store
= CRYPT_ProvCreateStore(hCryptProv
, dwFlags
, memStore
,
1448 TRACE("returning %p\n", store
);
1452 /* FIXME: this isn't complete for the Root store, in which the top-level
1453 * self-signed CA certs reside. Adding a cert to the Root store should present
1454 * the user with a dialog indicating the consequences of doing so, and asking
1455 * the user to confirm whether the cert should be added.
1457 static PWINECRYPT_CERTSTORE
CRYPT_SysRegOpenStoreW(HCRYPTPROV hCryptProv
,
1458 DWORD dwFlags
, const void *pvPara
)
1460 static const WCHAR fmt
[] = { '%','s','\\','%','s',0 };
1461 LPCWSTR storeName
= (LPCWSTR
)pvPara
;
1463 PWINECRYPT_CERTSTORE store
= NULL
;
1468 TRACE("(%ld, %08x, %s)\n", hCryptProv
, dwFlags
,
1469 debugstr_w((LPCWSTR
)pvPara
));
1473 SetLastError(E_INVALIDARG
);
1478 switch (dwFlags
& CERT_SYSTEM_STORE_LOCATION_MASK
)
1480 case CERT_SYSTEM_STORE_LOCAL_MACHINE
:
1481 root
= HKEY_LOCAL_MACHINE
;
1482 base
= CERT_LOCAL_MACHINE_SYSTEM_STORE_REGPATH
;
1484 case CERT_SYSTEM_STORE_CURRENT_USER
:
1485 root
= HKEY_CURRENT_USER
;
1486 base
= CERT_LOCAL_MACHINE_SYSTEM_STORE_REGPATH
;
1488 case CERT_SYSTEM_STORE_CURRENT_SERVICE
:
1489 /* hklm\Software\Microsoft\Cryptography\Services\servicename\
1490 * SystemCertificates
1492 FIXME("CERT_SYSTEM_STORE_CURRENT_SERVICE, %s: stub\n",
1493 debugstr_w(storeName
));
1495 case CERT_SYSTEM_STORE_SERVICES
:
1496 /* hklm\Software\Microsoft\Cryptography\Services\servicename\
1497 * SystemCertificates
1499 FIXME("CERT_SYSTEM_STORE_SERVICES, %s: stub\n",
1500 debugstr_w(storeName
));
1502 case CERT_SYSTEM_STORE_USERS
:
1503 /* hku\user sid\Software\Microsoft\SystemCertificates */
1504 FIXME("CERT_SYSTEM_STORE_USERS, %s: stub\n",
1505 debugstr_w(storeName
));
1507 case CERT_SYSTEM_STORE_CURRENT_USER_GROUP_POLICY
:
1508 root
= HKEY_CURRENT_USER
;
1509 base
= CERT_GROUP_POLICY_SYSTEM_STORE_REGPATH
;
1511 case CERT_SYSTEM_STORE_LOCAL_MACHINE_GROUP_POLICY
:
1512 root
= HKEY_LOCAL_MACHINE
;
1513 base
= CERT_GROUP_POLICY_SYSTEM_STORE_REGPATH
;
1515 case CERT_SYSTEM_STORE_LOCAL_MACHINE_ENTERPRISE
:
1516 /* hklm\Software\Microsoft\EnterpriseCertificates */
1517 FIXME("CERT_SYSTEM_STORE_LOCAL_MACHINE_ENTERPRISE, %s: stub\n",
1518 debugstr_w(storeName
));
1521 SetLastError(E_INVALIDARG
);
1525 storePath
= CryptMemAlloc((lstrlenW(base
) + lstrlenW(storeName
) + 2) *
1531 REGSAM sam
= dwFlags
& CERT_STORE_READONLY_FLAG
? KEY_READ
:
1534 wsprintfW(storePath
, fmt
, base
, storeName
);
1535 if (dwFlags
& CERT_STORE_OPEN_EXISTING_FLAG
)
1536 rc
= RegOpenKeyExW(root
, storePath
, 0, sam
, &key
);
1541 rc
= RegCreateKeyExW(root
, storePath
, 0, NULL
, 0, sam
, NULL
,
1543 if (!rc
&& dwFlags
& CERT_STORE_CREATE_NEW_FLAG
&&
1544 disp
== REG_OPENED_EXISTING_KEY
)
1547 rc
= ERROR_FILE_EXISTS
;
1552 store
= CRYPT_RegOpenStore(hCryptProv
, dwFlags
, key
);
1557 CryptMemFree(storePath
);
1562 static PWINECRYPT_CERTSTORE
CRYPT_SysRegOpenStoreA(HCRYPTPROV hCryptProv
,
1563 DWORD dwFlags
, const void *pvPara
)
1566 PWINECRYPT_CERTSTORE ret
= NULL
;
1568 TRACE("(%ld, %08x, %s)\n", hCryptProv
, dwFlags
,
1569 debugstr_a((LPCSTR
)pvPara
));
1573 SetLastError(ERROR_FILE_NOT_FOUND
);
1576 len
= MultiByteToWideChar(CP_ACP
, 0, (LPCSTR
)pvPara
, -1, NULL
, 0);
1579 LPWSTR storeName
= CryptMemAlloc(len
* sizeof(WCHAR
));
1583 MultiByteToWideChar(CP_ACP
, 0, (LPCSTR
)pvPara
, -1, storeName
, len
);
1584 ret
= CRYPT_SysRegOpenStoreW(hCryptProv
, dwFlags
, storeName
);
1585 CryptMemFree(storeName
);
1591 static PWINECRYPT_CERTSTORE
CRYPT_SysOpenStoreW(HCRYPTPROV hCryptProv
,
1592 DWORD dwFlags
, const void *pvPara
)
1594 HCERTSTORE store
= 0;
1597 TRACE("(%ld, %08x, %s)\n", hCryptProv
, dwFlags
,
1598 debugstr_w((LPCWSTR
)pvPara
));
1602 SetLastError(ERROR_FILE_NOT_FOUND
);
1605 /* This returns a different error than system registry stores if the
1606 * location is invalid.
1608 switch (dwFlags
& CERT_SYSTEM_STORE_LOCATION_MASK
)
1610 case CERT_SYSTEM_STORE_LOCAL_MACHINE
:
1611 case CERT_SYSTEM_STORE_CURRENT_USER
:
1612 case CERT_SYSTEM_STORE_CURRENT_SERVICE
:
1613 case CERT_SYSTEM_STORE_SERVICES
:
1614 case CERT_SYSTEM_STORE_USERS
:
1615 case CERT_SYSTEM_STORE_CURRENT_USER_GROUP_POLICY
:
1616 case CERT_SYSTEM_STORE_LOCAL_MACHINE_GROUP_POLICY
:
1617 case CERT_SYSTEM_STORE_LOCAL_MACHINE_ENTERPRISE
:
1621 SetLastError(ERROR_FILE_NOT_FOUND
);
1626 HCERTSTORE regStore
= CertOpenStore(CERT_STORE_PROV_SYSTEM_REGISTRY_W
,
1627 0, hCryptProv
, dwFlags
, pvPara
);
1631 store
= CertOpenStore(CERT_STORE_PROV_COLLECTION
, 0, 0,
1632 CERT_STORE_CREATE_NEW_FLAG
, NULL
);
1633 CertAddStoreToCollection(store
, regStore
,
1634 dwFlags
& CERT_STORE_READONLY_FLAG
? 0 :
1635 CERT_PHYSICAL_STORE_ADD_ENABLE_FLAG
, 0);
1636 CertCloseStore(regStore
, 0);
1637 /* CERT_SYSTEM_STORE_CURRENT_USER returns both the HKCU and HKLM
1640 if ((dwFlags
& CERT_SYSTEM_STORE_LOCATION_MASK
) ==
1641 CERT_SYSTEM_STORE_CURRENT_USER
)
1643 dwFlags
&= ~CERT_SYSTEM_STORE_CURRENT_USER
;
1644 dwFlags
|= CERT_SYSTEM_STORE_LOCAL_MACHINE
;
1645 regStore
= CertOpenStore(CERT_STORE_PROV_SYSTEM_REGISTRY_W
, 0,
1646 hCryptProv
, dwFlags
, pvPara
);
1649 CertAddStoreToCollection(store
, regStore
,
1650 dwFlags
& CERT_STORE_READONLY_FLAG
? 0 :
1651 CERT_PHYSICAL_STORE_ADD_ENABLE_FLAG
, 0);
1652 CertCloseStore(regStore
, 0);
1657 return (PWINECRYPT_CERTSTORE
)store
;
1660 static PWINECRYPT_CERTSTORE
CRYPT_SysOpenStoreA(HCRYPTPROV hCryptProv
,
1661 DWORD dwFlags
, const void *pvPara
)
1664 PWINECRYPT_CERTSTORE ret
= NULL
;
1666 TRACE("(%ld, %08x, %s)\n", hCryptProv
, dwFlags
,
1667 debugstr_a((LPCSTR
)pvPara
));
1671 SetLastError(ERROR_FILE_NOT_FOUND
);
1674 len
= MultiByteToWideChar(CP_ACP
, 0, (LPCSTR
)pvPara
, -1, NULL
, 0);
1677 LPWSTR storeName
= CryptMemAlloc(len
* sizeof(WCHAR
));
1681 MultiByteToWideChar(CP_ACP
, 0, (LPCSTR
)pvPara
, -1, storeName
, len
);
1682 ret
= CRYPT_SysOpenStoreW(hCryptProv
, dwFlags
, storeName
);
1683 CryptMemFree(storeName
);
1689 static void WINAPI
CRYPT_FileCloseStore(HCERTSTORE hCertStore
, DWORD dwFlags
)
1691 PWINE_FILESTOREINFO store
= (PWINE_FILESTOREINFO
)hCertStore
;
1693 TRACE("(%p, %08x)\n", store
, dwFlags
);
1695 CRYPT_WriteSerializedFile(store
->file
, store
->memStore
);
1696 CertCloseStore(store
->memStore
, dwFlags
);
1697 CloseHandle(store
->file
);
1698 CryptMemFree(store
);
1701 static BOOL WINAPI
CRYPT_FileWriteCert(HCERTSTORE hCertStore
,
1702 PCCERT_CONTEXT cert
, DWORD dwFlags
)
1704 PWINE_FILESTOREINFO store
= (PWINE_FILESTOREINFO
)hCertStore
;
1706 TRACE("(%p, %p, %d)\n", hCertStore
, cert
, dwFlags
);
1707 store
->dirty
= TRUE
;
1711 static BOOL WINAPI
CRYPT_FileDeleteCert(HCERTSTORE hCertStore
,
1712 PCCERT_CONTEXT pCertContext
, DWORD dwFlags
)
1714 PWINE_FILESTOREINFO store
= (PWINE_FILESTOREINFO
)hCertStore
;
1716 TRACE("(%p, %p, %08x)\n", hCertStore
, pCertContext
, dwFlags
);
1717 store
->dirty
= TRUE
;
1721 static BOOL WINAPI
CRYPT_FileWriteCRL(HCERTSTORE hCertStore
,
1722 PCCRL_CONTEXT crl
, DWORD dwFlags
)
1724 PWINE_FILESTOREINFO store
= (PWINE_FILESTOREINFO
)hCertStore
;
1726 TRACE("(%p, %p, %d)\n", hCertStore
, crl
, dwFlags
);
1727 store
->dirty
= TRUE
;
1731 static BOOL WINAPI
CRYPT_FileDeleteCRL(HCERTSTORE hCertStore
,
1732 PCCRL_CONTEXT pCrlContext
, DWORD dwFlags
)
1734 PWINE_FILESTOREINFO store
= (PWINE_FILESTOREINFO
)hCertStore
;
1736 TRACE("(%p, %p, %08x)\n", hCertStore
, pCrlContext
, dwFlags
);
1737 store
->dirty
= TRUE
;
1741 static BOOL WINAPI
CRYPT_FileControl(HCERTSTORE hCertStore
, DWORD dwFlags
,
1742 DWORD dwCtrlType
, void const *pvCtrlPara
)
1744 PWINE_FILESTOREINFO store
= (PWINE_FILESTOREINFO
)hCertStore
;
1747 TRACE("(%p, %08x, %d, %p)\n", hCertStore
, dwFlags
, dwCtrlType
,
1752 case CERT_STORE_CTRL_RESYNC
:
1753 CRYPT_MemEmptyStore((PWINE_MEMSTORE
)store
->memStore
);
1754 CRYPT_ReadSerializedFile(store
->file
, store
);
1757 case CERT_STORE_CTRL_COMMIT
:
1758 if (!(store
->dwOpenFlags
& CERT_FILE_STORE_COMMIT_ENABLE_FLAG
))
1760 SetLastError(ERROR_CALL_NOT_IMPLEMENTED
);
1763 else if (store
->dirty
)
1764 ret
= CRYPT_WriteSerializedFile(store
->file
, store
->memStore
);
1769 FIXME("%d: stub\n", dwCtrlType
);
1775 static void *fileProvFuncs
[] = {
1776 CRYPT_FileCloseStore
,
1777 NULL
, /* CERT_STORE_PROV_READ_CERT_FUNC */
1778 CRYPT_FileWriteCert
,
1779 CRYPT_FileDeleteCert
,
1780 NULL
, /* CERT_STORE_PROV_SET_CERT_PROPERTY_FUNC */
1781 NULL
, /* CERT_STORE_PROV_READ_CRL_FUNC */
1783 CRYPT_FileDeleteCRL
,
1784 NULL
, /* CERT_STORE_PROV_SET_CRL_PROPERTY_FUNC */
1785 NULL
, /* CERT_STORE_PROV_READ_CTL_FUNC */
1786 NULL
, /* CERT_STORE_PROV_WRITE_CTL_FUNC */
1787 NULL
, /* CERT_STORE_PROV_DELETE_CTL_FUNC */
1788 NULL
, /* CERT_STORE_PROV_SET_CTL_PROPERTY_FUNC */
1792 static PWINECRYPT_CERTSTORE
CRYPT_FileOpenStore(HCRYPTPROV hCryptProv
,
1793 DWORD dwFlags
, const void *pvPara
)
1795 PWINECRYPT_CERTSTORE store
= NULL
;
1796 HANDLE file
= (HANDLE
)pvPara
;
1798 TRACE("(%ld, %08x, %p)\n", hCryptProv
, dwFlags
, pvPara
);
1802 SetLastError(ERROR_INVALID_HANDLE
);
1805 if (dwFlags
& CERT_STORE_DELETE_FLAG
)
1807 SetLastError(E_INVALIDARG
);
1810 if ((dwFlags
& CERT_STORE_READONLY_FLAG
) &&
1811 (dwFlags
& CERT_FILE_STORE_COMMIT_ENABLE_FLAG
))
1813 SetLastError(E_INVALIDARG
);
1817 if (DuplicateHandle(GetCurrentProcess(), (HANDLE
)pvPara
,
1818 GetCurrentProcess(), &file
, dwFlags
& CERT_STORE_READONLY_FLAG
?
1819 GENERIC_READ
: GENERIC_READ
| GENERIC_WRITE
, TRUE
, 0))
1821 PWINECRYPT_CERTSTORE memStore
;
1823 memStore
= CRYPT_MemOpenStore(hCryptProv
, dwFlags
, NULL
);
1826 if (CRYPT_ReadSerializedFile(file
, memStore
))
1828 PWINE_FILESTOREINFO info
= CryptMemAlloc(
1829 sizeof(WINE_FILESTOREINFO
));
1833 CERT_STORE_PROV_INFO provInfo
= { 0 };
1835 info
->dwOpenFlags
= dwFlags
;
1836 info
->cryptProv
= hCryptProv
;
1837 info
->memStore
= memStore
;
1839 info
->dirty
= FALSE
;
1840 provInfo
.cbSize
= sizeof(provInfo
);
1841 provInfo
.cStoreProvFunc
= sizeof(fileProvFuncs
) /
1842 sizeof(fileProvFuncs
[0]);
1843 provInfo
.rgpvStoreProvFunc
= fileProvFuncs
;
1844 provInfo
.hStoreProv
= info
;
1845 store
= CRYPT_ProvCreateStore(hCryptProv
, dwFlags
, memStore
,
1851 TRACE("returning %p\n", store
);
1855 static PWINECRYPT_CERTSTORE
CRYPT_FileNameOpenStoreW(HCRYPTPROV hCryptProv
,
1856 DWORD dwFlags
, const void *pvPara
)
1858 HCERTSTORE store
= 0;
1859 LPCWSTR fileName
= (LPCWSTR
)pvPara
;
1860 DWORD access
, create
;
1863 TRACE("(%ld, %08x, %s)\n", hCryptProv
, dwFlags
, debugstr_w(fileName
));
1867 SetLastError(ERROR_PATH_NOT_FOUND
);
1871 access
= GENERIC_READ
;
1872 if (dwFlags
& CERT_FILE_STORE_COMMIT_ENABLE_FLAG
)
1873 access
|= GENERIC_WRITE
;
1874 if (dwFlags
& CERT_STORE_CREATE_NEW_FLAG
)
1875 create
= CREATE_NEW
;
1876 else if (dwFlags
& CERT_STORE_OPEN_EXISTING_FLAG
)
1877 create
= OPEN_EXISTING
;
1879 create
= OPEN_ALWAYS
;
1880 file
= CreateFileW(fileName
, access
, FILE_SHARE_READ
, NULL
, create
,
1881 FILE_ATTRIBUTE_NORMAL
, NULL
);
1882 if (file
!= INVALID_HANDLE_VALUE
)
1884 /* FIXME: need to check whether it's a serialized store; if not, fall
1885 * back to a PKCS#7 signed message, then to a single serialized cert.
1887 store
= CertOpenStore(CERT_STORE_PROV_FILE
, 0, hCryptProv
, dwFlags
,
1891 return (PWINECRYPT_CERTSTORE
)store
;
1894 static PWINECRYPT_CERTSTORE
CRYPT_FileNameOpenStoreA(HCRYPTPROV hCryptProv
,
1895 DWORD dwFlags
, const void *pvPara
)
1898 PWINECRYPT_CERTSTORE ret
= NULL
;
1900 TRACE("(%ld, %08x, %s)\n", hCryptProv
, dwFlags
,
1901 debugstr_a((LPCSTR
)pvPara
));
1905 SetLastError(ERROR_FILE_NOT_FOUND
);
1908 len
= MultiByteToWideChar(CP_ACP
, 0, (LPCSTR
)pvPara
, -1, NULL
, 0);
1911 LPWSTR storeName
= CryptMemAlloc(len
* sizeof(WCHAR
));
1915 MultiByteToWideChar(CP_ACP
, 0, (LPCSTR
)pvPara
, -1, storeName
, len
);
1916 ret
= CRYPT_FileNameOpenStoreW(hCryptProv
, dwFlags
, storeName
);
1917 CryptMemFree(storeName
);
1923 static PWINECRYPT_CERTSTORE
CRYPT_PhysOpenStoreW(HCRYPTPROV hCryptProv
,
1924 DWORD dwFlags
, const void *pvPara
)
1926 if (dwFlags
& CERT_SYSTEM_STORE_RELOCATE_FLAG
)
1927 FIXME("(%ld, %08x, %p): stub\n", hCryptProv
, dwFlags
, pvPara
);
1929 FIXME("(%ld, %08x, %s): stub\n", hCryptProv
, dwFlags
,
1930 debugstr_w((LPCWSTR
)pvPara
));
1934 HCERTSTORE WINAPI
CertOpenStore(LPCSTR lpszStoreProvider
,
1935 DWORD dwMsgAndCertEncodingType
, HCRYPTPROV hCryptProv
, DWORD dwFlags
,
1938 WINECRYPT_CERTSTORE
*hcs
;
1939 StoreOpenFunc openFunc
= NULL
;
1941 TRACE("(%s, %08x, %08lx, %08x, %p)\n", debugstr_a(lpszStoreProvider
),
1942 dwMsgAndCertEncodingType
, hCryptProv
, dwFlags
, pvPara
);
1944 if (!HIWORD(lpszStoreProvider
))
1946 switch (LOWORD(lpszStoreProvider
))
1948 case (int)CERT_STORE_PROV_MEMORY
:
1949 openFunc
= CRYPT_MemOpenStore
;
1951 case (int)CERT_STORE_PROV_FILE
:
1952 openFunc
= CRYPT_FileOpenStore
;
1954 case (int)CERT_STORE_PROV_REG
:
1955 openFunc
= CRYPT_RegOpenStore
;
1957 case (int)CERT_STORE_PROV_FILENAME_A
:
1958 openFunc
= CRYPT_FileNameOpenStoreA
;
1960 case (int)CERT_STORE_PROV_FILENAME_W
:
1961 openFunc
= CRYPT_FileNameOpenStoreW
;
1963 case (int)CERT_STORE_PROV_COLLECTION
:
1964 openFunc
= CRYPT_CollectionOpenStore
;
1966 case (int)CERT_STORE_PROV_SYSTEM_A
:
1967 openFunc
= CRYPT_SysOpenStoreA
;
1969 case (int)CERT_STORE_PROV_SYSTEM_W
:
1970 openFunc
= CRYPT_SysOpenStoreW
;
1972 case (int)CERT_STORE_PROV_SYSTEM_REGISTRY_A
:
1973 openFunc
= CRYPT_SysRegOpenStoreA
;
1975 case (int)CERT_STORE_PROV_SYSTEM_REGISTRY_W
:
1976 openFunc
= CRYPT_SysRegOpenStoreW
;
1978 case (int)CERT_STORE_PROV_PHYSICAL_W
:
1979 openFunc
= CRYPT_PhysOpenStoreW
;
1982 if (LOWORD(lpszStoreProvider
))
1983 FIXME("unimplemented type %d\n", LOWORD(lpszStoreProvider
));
1986 else if (!strcasecmp(lpszStoreProvider
, sz_CERT_STORE_PROV_MEMORY
))
1987 openFunc
= CRYPT_MemOpenStore
;
1988 else if (!strcasecmp(lpszStoreProvider
, sz_CERT_STORE_PROV_FILENAME_W
))
1989 openFunc
= CRYPT_FileOpenStore
;
1990 else if (!strcasecmp(lpszStoreProvider
, sz_CERT_STORE_PROV_SYSTEM
))
1991 openFunc
= CRYPT_SysOpenStoreW
;
1992 else if (!strcasecmp(lpszStoreProvider
, sz_CERT_STORE_PROV_COLLECTION
))
1993 openFunc
= CRYPT_CollectionOpenStore
;
1994 else if (!strcasecmp(lpszStoreProvider
, sz_CERT_STORE_PROV_SYSTEM_REGISTRY
))
1995 openFunc
= CRYPT_SysRegOpenStoreW
;
1998 FIXME("unimplemented type %s\n", lpszStoreProvider
);
2003 hcs
= CRYPT_ProvOpenStore(lpszStoreProvider
, dwMsgAndCertEncodingType
,
2004 hCryptProv
, dwFlags
, pvPara
);
2006 hcs
= openFunc(hCryptProv
, dwFlags
, pvPara
);
2007 return (HCERTSTORE
)hcs
;
2010 HCERTSTORE WINAPI
CertOpenSystemStoreA(HCRYPTPROV hProv
,
2011 LPCSTR szSubSystemProtocol
)
2013 if (!szSubSystemProtocol
)
2015 SetLastError(E_INVALIDARG
);
2018 return CertOpenStore(CERT_STORE_PROV_SYSTEM_A
, 0, hProv
,
2019 CERT_SYSTEM_STORE_CURRENT_USER
, szSubSystemProtocol
);
2022 HCERTSTORE WINAPI
CertOpenSystemStoreW(HCRYPTPROV hProv
,
2023 LPCWSTR szSubSystemProtocol
)
2025 if (!szSubSystemProtocol
)
2027 SetLastError(E_INVALIDARG
);
2030 return CertOpenStore(CERT_STORE_PROV_SYSTEM_W
, 0, hProv
,
2031 CERT_SYSTEM_STORE_CURRENT_USER
, szSubSystemProtocol
);
2034 BOOL WINAPI
CertSaveStore(HCERTSTORE hCertStore
, DWORD dwMsgAndCertEncodingType
,
2035 DWORD dwSaveAs
, DWORD dwSaveTo
, void* pvSaveToPara
, DWORD dwFlags
)
2037 FIXME("(%p,%d,%d,%d,%p,%08x) stub!\n", hCertStore
,
2038 dwMsgAndCertEncodingType
, dwSaveAs
, dwSaveTo
, pvSaveToPara
, dwFlags
);
2042 #define CertContext_CopyProperties(to, from) \
2043 Context_CopyProperties((to), (from), sizeof(CERT_CONTEXT))
2045 BOOL WINAPI
CertAddCertificateContextToStore(HCERTSTORE hCertStore
,
2046 PCCERT_CONTEXT pCertContext
, DWORD dwAddDisposition
,
2047 PCCERT_CONTEXT
*ppStoreContext
)
2049 PWINECRYPT_CERTSTORE store
= (PWINECRYPT_CERTSTORE
)hCertStore
;
2051 PCCERT_CONTEXT toAdd
= NULL
, existing
= NULL
;
2053 TRACE("(%p, %p, %08x, %p)\n", hCertStore
, pCertContext
,
2054 dwAddDisposition
, ppStoreContext
);
2056 /* Weird case to pass a test */
2057 if (dwAddDisposition
== 0)
2059 SetLastError(STATUS_ACCESS_VIOLATION
);
2062 if (dwAddDisposition
!= CERT_STORE_ADD_ALWAYS
)
2065 DWORD size
= sizeof(hashToAdd
);
2067 ret
= CertGetCertificateContextProperty(pCertContext
, CERT_HASH_PROP_ID
,
2071 CRYPT_HASH_BLOB blob
= { sizeof(hashToAdd
), hashToAdd
};
2073 existing
= CertFindCertificateInStore(hCertStore
,
2074 pCertContext
->dwCertEncodingType
, 0, CERT_FIND_SHA1_HASH
, &blob
,
2079 switch (dwAddDisposition
)
2081 case CERT_STORE_ADD_ALWAYS
:
2082 toAdd
= CertDuplicateCertificateContext(pCertContext
);
2084 case CERT_STORE_ADD_NEW
:
2087 TRACE("found matching certificate, not adding\n");
2088 SetLastError(CRYPT_E_EXISTS
);
2092 toAdd
= CertDuplicateCertificateContext(pCertContext
);
2094 case CERT_STORE_ADD_REPLACE_EXISTING
:
2095 toAdd
= CertDuplicateCertificateContext(pCertContext
);
2097 case CERT_STORE_ADD_REPLACE_EXISTING_INHERIT_PROPERTIES
:
2098 toAdd
= CertDuplicateCertificateContext(pCertContext
);
2100 CertContext_CopyProperties(toAdd
, existing
);
2102 case CERT_STORE_ADD_USE_EXISTING
:
2105 CertContext_CopyProperties(existing
, pCertContext
);
2106 *ppStoreContext
= CertDuplicateCertificateContext(existing
);
2109 toAdd
= CertDuplicateCertificateContext(pCertContext
);
2112 FIXME("Unimplemented add disposition %d\n", dwAddDisposition
);
2119 ret
= store
->certs
.addContext(store
, (void *)toAdd
,
2120 (void *)existing
, (const void **)ppStoreContext
);
2121 else if (ppStoreContext
)
2122 *ppStoreContext
= CertDuplicateCertificateContext(toAdd
);
2123 CertFreeCertificateContext(toAdd
);
2125 CertFreeCertificateContext(existing
);
2127 TRACE("returning %d\n", ret
);
2131 PCCERT_CONTEXT WINAPI
CertEnumCertificatesInStore(HCERTSTORE hCertStore
,
2132 PCCERT_CONTEXT pPrev
)
2134 WINECRYPT_CERTSTORE
*hcs
= (WINECRYPT_CERTSTORE
*)hCertStore
;
2137 TRACE("(%p, %p)\n", hCertStore
, pPrev
);
2140 else if (hcs
->dwMagic
!= WINE_CRYPTCERTSTORE_MAGIC
)
2143 ret
= (PCCERT_CONTEXT
)hcs
->certs
.enumContext(hcs
, (void *)pPrev
);
2147 BOOL WINAPI
CertDeleteCertificateFromStore(PCCERT_CONTEXT pCertContext
)
2151 TRACE("(%p)\n", pCertContext
);
2155 else if (!pCertContext
->hCertStore
)
2158 CertFreeCertificateContext(pCertContext
);
2162 PWINECRYPT_CERTSTORE hcs
=
2163 (PWINECRYPT_CERTSTORE
)pCertContext
->hCertStore
;
2165 if (hcs
->dwMagic
!= WINE_CRYPTCERTSTORE_MAGIC
)
2168 ret
= hcs
->certs
.deleteContext(hcs
, (void *)pCertContext
);
2169 CertFreeCertificateContext(pCertContext
);
2174 #define CrlContext_CopyProperties(to, from) \
2175 Context_CopyProperties((to), (from), sizeof(CRL_CONTEXT))
2177 BOOL WINAPI
CertAddCRLContextToStore(HCERTSTORE hCertStore
,
2178 PCCRL_CONTEXT pCrlContext
, DWORD dwAddDisposition
,
2179 PCCRL_CONTEXT
* ppStoreContext
)
2181 PWINECRYPT_CERTSTORE store
= (PWINECRYPT_CERTSTORE
)hCertStore
;
2183 PCCRL_CONTEXT toAdd
= NULL
, existing
= NULL
;
2185 TRACE("(%p, %p, %08x, %p)\n", hCertStore
, pCrlContext
,
2186 dwAddDisposition
, ppStoreContext
);
2188 /* Weird case to pass a test */
2189 if (dwAddDisposition
== 0)
2191 SetLastError(STATUS_ACCESS_VIOLATION
);
2194 if (dwAddDisposition
!= CERT_STORE_ADD_ALWAYS
)
2196 existing
= CertFindCRLInStore(hCertStore
, 0, 0, CRL_FIND_EXISTING
,
2200 switch (dwAddDisposition
)
2202 case CERT_STORE_ADD_ALWAYS
:
2203 toAdd
= CertDuplicateCRLContext(pCrlContext
);
2205 case CERT_STORE_ADD_NEW
:
2208 TRACE("found matching CRL, not adding\n");
2209 SetLastError(CRYPT_E_EXISTS
);
2213 toAdd
= CertDuplicateCRLContext(pCrlContext
);
2215 case CERT_STORE_ADD_NEWER
:
2218 LONG newer
= CompareFileTime(&existing
->pCrlInfo
->ThisUpdate
,
2219 &pCrlContext
->pCrlInfo
->ThisUpdate
);
2222 toAdd
= CertDuplicateCRLContext(pCrlContext
);
2225 TRACE("existing CRL is newer, not adding\n");
2226 SetLastError(CRYPT_E_EXISTS
);
2231 toAdd
= CertDuplicateCRLContext(pCrlContext
);
2233 case CERT_STORE_ADD_REPLACE_EXISTING
:
2234 toAdd
= CertDuplicateCRLContext(pCrlContext
);
2236 case CERT_STORE_ADD_REPLACE_EXISTING_INHERIT_PROPERTIES
:
2237 toAdd
= CertDuplicateCRLContext(pCrlContext
);
2239 CrlContext_CopyProperties(toAdd
, existing
);
2241 case CERT_STORE_ADD_USE_EXISTING
:
2243 CrlContext_CopyProperties(existing
, pCrlContext
);
2246 FIXME("Unimplemented add disposition %d\n", dwAddDisposition
);
2253 ret
= store
->crls
.addContext(store
, (void *)toAdd
,
2254 (void *)existing
, (const void **)ppStoreContext
);
2255 else if (ppStoreContext
)
2256 *ppStoreContext
= CertDuplicateCRLContext(toAdd
);
2257 CertFreeCRLContext(toAdd
);
2259 CertFreeCRLContext(existing
);
2261 TRACE("returning %d\n", ret
);
2265 BOOL WINAPI
CertDeleteCRLFromStore(PCCRL_CONTEXT pCrlContext
)
2269 TRACE("(%p)\n", pCrlContext
);
2273 else if (!pCrlContext
->hCertStore
)
2276 CertFreeCRLContext(pCrlContext
);
2280 PWINECRYPT_CERTSTORE hcs
=
2281 (PWINECRYPT_CERTSTORE
)pCrlContext
->hCertStore
;
2283 if (hcs
->dwMagic
!= WINE_CRYPTCERTSTORE_MAGIC
)
2286 ret
= hcs
->crls
.deleteContext(hcs
, (void *)pCrlContext
);
2287 CertFreeCRLContext(pCrlContext
);
2292 PCCRL_CONTEXT WINAPI
CertEnumCRLsInStore(HCERTSTORE hCertStore
,
2293 PCCRL_CONTEXT pPrev
)
2295 WINECRYPT_CERTSTORE
*hcs
= (WINECRYPT_CERTSTORE
*)hCertStore
;
2298 TRACE("(%p, %p)\n", hCertStore
, pPrev
);
2301 else if (hcs
->dwMagic
!= WINE_CRYPTCERTSTORE_MAGIC
)
2304 ret
= (PCCRL_CONTEXT
)hcs
->crls
.enumContext(hcs
, (void *)pPrev
);
2308 PCCTL_CONTEXT WINAPI
CertCreateCTLContext(DWORD dwCertEncodingType
,
2309 const BYTE
* pbCtlEncoded
, DWORD cbCtlEncoded
)
2311 FIXME("(%08x, %p, %08x): stub\n", dwCertEncodingType
, pbCtlEncoded
,
2316 BOOL WINAPI
CertAddEncodedCTLToStore(HCERTSTORE hCertStore
,
2317 DWORD dwMsgAndCertEncodingType
, const BYTE
*pbCtlEncoded
, DWORD cbCtlEncoded
,
2318 DWORD dwAddDisposition
, PCCTL_CONTEXT
*ppCtlContext
)
2320 FIXME("(%p, %08x, %p, %d, %08x, %p): stub\n", hCertStore
,
2321 dwMsgAndCertEncodingType
, pbCtlEncoded
, cbCtlEncoded
, dwAddDisposition
,
2326 BOOL WINAPI
CertAddCTLContextToStore(HCERTSTORE hCertStore
,
2327 PCCTL_CONTEXT pCtlContext
, DWORD dwAddDisposition
,
2328 PCCTL_CONTEXT
* ppStoreContext
)
2330 FIXME("(%p, %p, %08x, %p): stub\n", hCertStore
, pCtlContext
,
2331 dwAddDisposition
, ppStoreContext
);
2335 PCCTL_CONTEXT WINAPI
CertDuplicateCTLContext(PCCTL_CONTEXT pCtlContext
)
2337 FIXME("(%p): stub\n", pCtlContext
);
2341 BOOL WINAPI
CertFreeCTLContext(PCCTL_CONTEXT pCtlContext
)
2343 FIXME("(%p): stub\n", pCtlContext
);
2347 BOOL WINAPI
CertDeleteCTLFromStore(PCCTL_CONTEXT pCtlContext
)
2349 FIXME("(%p): stub\n", pCtlContext
);
2353 PCCTL_CONTEXT WINAPI
CertEnumCTLsInStore(HCERTSTORE hCertStore
,
2354 PCCTL_CONTEXT pPrev
)
2356 FIXME("(%p, %p): stub\n", hCertStore
, pPrev
);
2360 HCERTSTORE WINAPI
CertDuplicateStore(HCERTSTORE hCertStore
)
2362 WINECRYPT_CERTSTORE
*hcs
= (WINECRYPT_CERTSTORE
*)hCertStore
;
2364 TRACE("(%p)\n", hCertStore
);
2366 if (hcs
&& hcs
->dwMagic
== WINE_CRYPTCERTSTORE_MAGIC
)
2367 InterlockedIncrement(&hcs
->ref
);
2371 BOOL WINAPI
CertCloseStore(HCERTSTORE hCertStore
, DWORD dwFlags
)
2373 WINECRYPT_CERTSTORE
*hcs
= (WINECRYPT_CERTSTORE
*) hCertStore
;
2375 TRACE("(%p, %08x)\n", hCertStore
, dwFlags
);
2380 if ( hcs
->dwMagic
!= WINE_CRYPTCERTSTORE_MAGIC
)
2383 if (InterlockedDecrement(&hcs
->ref
) == 0)
2385 TRACE("%p's ref count is 0, freeing\n", hcs
);
2387 if (!(hcs
->dwOpenFlags
& CERT_STORE_NO_CRYPT_RELEASE_FLAG
))
2388 CryptReleaseContext(hcs
->cryptProv
, 0);
2389 hcs
->closeStore(hcs
, dwFlags
);
2392 TRACE("%p's ref count is %d\n", hcs
, hcs
->ref
);
2396 BOOL WINAPI
CertControlStore(HCERTSTORE hCertStore
, DWORD dwFlags
,
2397 DWORD dwCtrlType
, void const *pvCtrlPara
)
2399 WINECRYPT_CERTSTORE
*hcs
= (WINECRYPT_CERTSTORE
*)hCertStore
;
2402 TRACE("(%p, %08x, %d, %p)\n", hCertStore
, dwFlags
, dwCtrlType
,
2407 else if (hcs
->dwMagic
!= WINE_CRYPTCERTSTORE_MAGIC
)
2412 ret
= hcs
->control(hCertStore
, dwFlags
, dwCtrlType
, pvCtrlPara
);
2419 BOOL WINAPI
CertGetStoreProperty(HCERTSTORE hCertStore
, DWORD dwPropId
,
2420 void *pvData
, DWORD
*pcbData
)
2422 PWINECRYPT_CERTSTORE store
= (PWINECRYPT_CERTSTORE
)hCertStore
;
2425 TRACE("(%p, %d, %p, %p)\n", hCertStore
, dwPropId
, pvData
, pcbData
);
2429 case CERT_ACCESS_STATE_PROP_ID
:
2432 *pcbData
= sizeof(DWORD
);
2435 else if (*pcbData
< sizeof(DWORD
))
2437 SetLastError(ERROR_MORE_DATA
);
2438 *pcbData
= sizeof(DWORD
);
2444 if (store
->type
!= StoreTypeMem
&&
2445 !(store
->dwOpenFlags
& CERT_STORE_READONLY_FLAG
))
2446 state
|= CERT_ACCESS_STATE_WRITE_PERSIST_FLAG
;
2447 *(DWORD
*)pvData
= state
;
2452 if (store
->properties
)
2454 CRYPT_DATA_BLOB blob
;
2456 ret
= ContextPropertyList_FindProperty(store
->properties
, dwPropId
,
2461 *pcbData
= blob
.cbData
;
2462 else if (*pcbData
< blob
.cbData
)
2464 SetLastError(ERROR_MORE_DATA
);
2465 *pcbData
= blob
.cbData
;
2470 memcpy(pvData
, blob
.pbData
, blob
.cbData
);
2471 *pcbData
= blob
.cbData
;
2475 SetLastError(CRYPT_E_NOT_FOUND
);
2478 SetLastError(CRYPT_E_NOT_FOUND
);
2483 BOOL WINAPI
CertSetStoreProperty(HCERTSTORE hCertStore
, DWORD dwPropId
,
2484 DWORD dwFlags
, const void *pvData
)
2486 PWINECRYPT_CERTSTORE store
= (PWINECRYPT_CERTSTORE
)hCertStore
;
2489 TRACE("(%p, %d, %08x, %p)\n", hCertStore
, dwPropId
, dwFlags
, pvData
);
2491 if (!store
->properties
)
2492 store
->properties
= ContextPropertyList_Create();
2495 case CERT_ACCESS_STATE_PROP_ID
:
2496 SetLastError(E_INVALIDARG
);
2501 const CRYPT_DATA_BLOB
*blob
= (const CRYPT_DATA_BLOB
*)pvData
;
2503 ret
= ContextPropertyList_SetProperty(store
->properties
, dwPropId
,
2504 blob
->pbData
, blob
->cbData
);
2508 ContextPropertyList_RemoveProperty(store
->properties
, dwPropId
);
2515 DWORD WINAPI
CertEnumCTLContextProperties(PCCTL_CONTEXT pCTLContext
,
2518 FIXME("(%p, %d): stub\n", pCTLContext
, dwPropId
);
2522 BOOL WINAPI
CertGetCTLContextProperty(PCCTL_CONTEXT pCTLContext
,
2523 DWORD dwPropId
, void *pvData
, DWORD
*pcbData
)
2525 FIXME("(%p, %d, %p, %p): stub\n", pCTLContext
, dwPropId
, pvData
, pcbData
);
2529 BOOL WINAPI
CertSetCTLContextProperty(PCCTL_CONTEXT pCTLContext
,
2530 DWORD dwPropId
, DWORD dwFlags
, const void *pvData
)
2532 FIXME("(%p, %d, %08x, %p): stub\n", pCTLContext
, dwPropId
, dwFlags
,
2537 BOOL WINAPI
CertAddStoreToCollection(HCERTSTORE hCollectionStore
,
2538 HCERTSTORE hSiblingStore
, DWORD dwUpdateFlags
, DWORD dwPriority
)
2540 PWINE_COLLECTIONSTORE collection
= (PWINE_COLLECTIONSTORE
)hCollectionStore
;
2541 WINECRYPT_CERTSTORE
*sibling
= (WINECRYPT_CERTSTORE
*)hSiblingStore
;
2542 PWINE_STORE_LIST_ENTRY entry
;
2545 TRACE("(%p, %p, %08x, %d)\n", hCollectionStore
, hSiblingStore
,
2546 dwUpdateFlags
, dwPriority
);
2548 if (!collection
|| !sibling
)
2550 if (collection
->hdr
.dwMagic
!= WINE_CRYPTCERTSTORE_MAGIC
)
2552 SetLastError(E_INVALIDARG
);
2555 if (collection
->hdr
.type
!= StoreTypeCollection
)
2557 SetLastError(E_INVALIDARG
);
2560 if (sibling
->dwMagic
!= WINE_CRYPTCERTSTORE_MAGIC
)
2562 SetLastError(E_INVALIDARG
);
2566 entry
= CryptMemAlloc(sizeof(WINE_STORE_LIST_ENTRY
));
2569 InterlockedIncrement(&sibling
->ref
);
2570 TRACE("sibling %p's ref count is %d\n", sibling
, sibling
->ref
);
2571 entry
->store
= sibling
;
2572 entry
->dwUpdateFlags
= dwUpdateFlags
;
2573 entry
->dwPriority
= dwPriority
;
2574 list_init(&entry
->entry
);
2575 TRACE("%p: adding %p, priority %d\n", collection
, entry
, dwPriority
);
2576 EnterCriticalSection(&collection
->cs
);
2579 PWINE_STORE_LIST_ENTRY cursor
;
2582 LIST_FOR_EACH_ENTRY(cursor
, &collection
->stores
,
2583 WINE_STORE_LIST_ENTRY
, entry
)
2585 if (cursor
->dwPriority
< dwPriority
)
2587 list_add_before(&cursor
->entry
, &entry
->entry
);
2593 list_add_tail(&collection
->stores
, &entry
->entry
);
2596 list_add_tail(&collection
->stores
, &entry
->entry
);
2597 LeaveCriticalSection(&collection
->cs
);
2605 void WINAPI
CertRemoveStoreFromCollection(HCERTSTORE hCollectionStore
,
2606 HCERTSTORE hSiblingStore
)
2608 PWINE_COLLECTIONSTORE collection
= (PWINE_COLLECTIONSTORE
)hCollectionStore
;
2609 WINECRYPT_CERTSTORE
*sibling
= (WINECRYPT_CERTSTORE
*)hSiblingStore
;
2610 PWINE_STORE_LIST_ENTRY store
, next
;
2612 TRACE("(%p, %p)\n", hCollectionStore
, hSiblingStore
);
2614 if (!collection
|| !sibling
)
2616 if (collection
->hdr
.dwMagic
!= WINE_CRYPTCERTSTORE_MAGIC
)
2618 SetLastError(E_INVALIDARG
);
2621 if (collection
->hdr
.type
!= StoreTypeCollection
)
2623 if (sibling
->dwMagic
!= WINE_CRYPTCERTSTORE_MAGIC
)
2625 SetLastError(E_INVALIDARG
);
2628 EnterCriticalSection(&collection
->cs
);
2629 LIST_FOR_EACH_ENTRY_SAFE(store
, next
, &collection
->stores
,
2630 WINE_STORE_LIST_ENTRY
, entry
)
2632 if (store
->store
== sibling
)
2634 list_remove(&store
->entry
);
2635 CertCloseStore(store
->store
, 0);
2636 CryptMemFree(store
);
2640 LeaveCriticalSection(&collection
->cs
);
2643 static LONG
CRYPT_OpenParentStore(DWORD dwFlags
,
2644 void *pvSystemStoreLocationPara
, HKEY
*key
)
2649 TRACE("(%08x, %p)\n", dwFlags
, pvSystemStoreLocationPara
);
2651 switch (dwFlags
& CERT_SYSTEM_STORE_LOCATION_MASK
)
2653 case CERT_SYSTEM_STORE_LOCAL_MACHINE
:
2654 root
= HKEY_LOCAL_MACHINE
;
2655 base
= CERT_LOCAL_MACHINE_SYSTEM_STORE_REGPATH
;
2657 case CERT_SYSTEM_STORE_CURRENT_USER
:
2658 root
= HKEY_CURRENT_USER
;
2659 base
= CERT_LOCAL_MACHINE_SYSTEM_STORE_REGPATH
;
2661 case CERT_SYSTEM_STORE_CURRENT_SERVICE
:
2662 /* hklm\Software\Microsoft\Cryptography\Services\servicename\
2663 * SystemCertificates
2665 FIXME("CERT_SYSTEM_STORE_CURRENT_SERVICE\n");
2666 return ERROR_FILE_NOT_FOUND
;
2667 case CERT_SYSTEM_STORE_SERVICES
:
2668 /* hklm\Software\Microsoft\Cryptography\Services\servicename\
2669 * SystemCertificates
2671 FIXME("CERT_SYSTEM_STORE_SERVICES\n");
2672 return ERROR_FILE_NOT_FOUND
;
2673 case CERT_SYSTEM_STORE_USERS
:
2674 /* hku\user sid\Software\Microsoft\SystemCertificates */
2675 FIXME("CERT_SYSTEM_STORE_USERS\n");
2676 return ERROR_FILE_NOT_FOUND
;
2677 case CERT_SYSTEM_STORE_CURRENT_USER_GROUP_POLICY
:
2678 root
= HKEY_CURRENT_USER
;
2679 base
= CERT_GROUP_POLICY_SYSTEM_STORE_REGPATH
;
2681 case CERT_SYSTEM_STORE_LOCAL_MACHINE_GROUP_POLICY
:
2682 root
= HKEY_LOCAL_MACHINE
;
2683 base
= CERT_GROUP_POLICY_SYSTEM_STORE_REGPATH
;
2685 case CERT_SYSTEM_STORE_LOCAL_MACHINE_ENTERPRISE
:
2686 /* hklm\Software\Microsoft\EnterpriseCertificates */
2687 FIXME("CERT_SYSTEM_STORE_LOCAL_MACHINE_ENTERPRISE\n");
2688 return ERROR_FILE_NOT_FOUND
;
2690 return ERROR_FILE_NOT_FOUND
;
2693 return RegOpenKeyExW(root
, base
, 0, KEY_READ
, key
);
2696 BOOL WINAPI
CertEnumSystemStore(DWORD dwFlags
, void *pvSystemStoreLocationPara
,
2697 void *pvArg
, PFN_CERT_ENUM_SYSTEM_STORE pfnEnum
)
2703 TRACE("(%08x, %p, %p, %p)\n", dwFlags
, pvSystemStoreLocationPara
, pvArg
,
2706 rc
= CRYPT_OpenParentStore(dwFlags
, pvArg
, &key
);
2710 CERT_SYSTEM_STORE_INFO info
= { sizeof(info
) };
2714 WCHAR name
[MAX_PATH
];
2715 DWORD size
= sizeof(name
) / sizeof(name
[0]);
2717 rc
= RegEnumKeyExW(key
, index
++, name
, &size
, NULL
, NULL
, NULL
,
2720 ret
= pfnEnum(name
, 0, &info
, NULL
, pvArg
);
2721 } while (ret
&& !rc
);
2722 if (ret
&& rc
!= ERROR_NO_MORE_ITEMS
)