ReactOS 0.4.15-dev-7788-g1ad9096
sip.c
Go to the documentation of this file.
1/*
2 * Copyright 2002 Mike McCormack for CodeWeavers
3 * Copyright 2005-2008 Juan Lang
4 * Copyright 2006 Paul Vriens
5 *
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
10 *
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
15 *
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
19 */
20
21#include <stdarg.h>
22#include <stdio.h>
23
24#include "windef.h"
25#include "winbase.h"
26#include "wincrypt.h"
27#include "winreg.h"
28#include "winnls.h"
29#include "mssip.h"
30#include "winuser.h"
31#include "crypt32_private.h"
32
33#include "wine/debug.h"
34#include "wine/list.h"
35
37
38static const WCHAR szOID[] = {
39 'S','o','f','t','w','a','r','e','\\',
40 'M','i','c','r','o','s','o','f','t','\\',
41 'C','r','y','p','t','o','g','r','a','p','h','y','\\',
42 'O','I','D','\\',
43 'E','n','c','o','d','i','n','g','T','y','p','e',' ','0','\\',
44 'C','r','y','p','t','S','I','P','D','l','l', 0 };
45
46static const WCHAR szPutSigned[] = {
47 'P','u','t','S','i','g','n','e','d','D','a','t','a','M','s','g','\\',0};
48static const WCHAR szGetSigned[] = {
49 'G','e','t','S','i','g','n','e','d','D','a','t','a','M','s','g','\\',0};
50static const WCHAR szRemoveSigned[] = {
51 'R','e','m','o','v','e','S','i','g','n','e','d','D','a','t','a','M','s','g','\\',0};
52static const WCHAR szCreate[] = {
53 'C','r','e','a','t','e','I','n','d','i','r','e','c','t','D','a','t','a','\\',0};
54static const WCHAR szVerify[] = {
55 'V','e','r','i','f','y','I','n','d','i','r','e','c','t','D','a','t','a','\\',0};
56static const WCHAR szIsMyFile[] = {
57 'I','s','M','y','F','i','l','e','T','y','p','e','\\',0};
58static const WCHAR szIsMyFile2[] = {
59 'I','s','M','y','F','i','l','e','T','y','p','e','2','\\',0};
60
61static const WCHAR szDllName[] = { 'D','l','l',0 };
62static const WCHAR szFuncName[] = { 'F','u','n','c','N','a','m','e',0 };
63
64/* convert a guid to a wide character string */
65static void CRYPT_guid2wstr( const GUID *guid, LPWSTR wstr )
66{
67 char str[40];
68
69 sprintf(str, "{%08X-%04X-%04X-%02X%02X-%02X%02X%02X%02X%02X%02X}",
70 guid->Data1, guid->Data2, guid->Data3,
71 guid->Data4[0], guid->Data4[1], guid->Data4[2], guid->Data4[3],
72 guid->Data4[4], guid->Data4[5], guid->Data4[6], guid->Data4[7] );
73 MultiByteToWideChar( CP_ACP, 0, str, -1, wstr, 40 );
74}
75
76/***********************************************************************
77 * CRYPT_SIPDeleteFunction
78 *
79 * Helper function for CryptSIPRemoveProvider
80 */
82{
83 WCHAR szFullKey[ 0x100 ];
85
86 /* max length of szFullKey depends on our code only, so we won't overrun */
87 lstrcpyW( szFullKey, szOID );
88 lstrcatW( szFullKey, szKey );
89 CRYPT_guid2wstr( guid, &szFullKey[ lstrlenW( szFullKey ) ] );
90
92
93 return r;
94}
95
96/***********************************************************************
97 * CryptSIPRemoveProvider (CRYPT32.@)
98 *
99 * Remove a SIP provider and its functions from the registry.
100 *
101 * PARAMS
102 * pgProv [I] Pointer to a GUID for this SIP provider
103 *
104 * RETURNS
105 * Success: TRUE.
106 * Failure: FALSE. (Look at GetLastError()).
107 *
108 * NOTES
109 * Registry errors are always reported via SetLastError(). Every registry
110 * deletion will be tried.
111 */
113{
115 LONG remove_error = ERROR_SUCCESS;
116
117 TRACE("%s\n", debugstr_guid(pgProv));
118
119 if (!pgProv)
120 {
122 return FALSE;
123 }
124
125
126#define CRYPT_SIPREMOVEPROV( key ) \
127 r = CRYPT_SIPDeleteFunction( pgProv, key); \
128 if (r != ERROR_SUCCESS) remove_error = r
129
137
138#undef CRYPT_SIPREMOVEPROV
139
140 if (remove_error != ERROR_SUCCESS)
141 {
142 SetLastError(remove_error);
143 return FALSE;
144 }
145
146 return TRUE;
147}
148
149/*
150 * Helper for CryptSIPAddProvider
151 *
152 * Add a registry key containing a dll name and function under
153 * "Software\\Microsoft\\Cryptography\\OID\\EncodingType 0\<func>\<guid>"
154 */
156 LPCWSTR szDll, LPCWSTR szFunction )
157{
158 WCHAR szFullKey[ 0x100 ];
160 HKEY hKey;
161
162 if( !szFunction )
163 return ERROR_SUCCESS;
164
165 /* max length of szFullKey depends on our code only, so we won't overrun */
166 lstrcpyW( szFullKey, szOID );
167 lstrcatW( szFullKey, szKey );
168 CRYPT_guid2wstr( guid, &szFullKey[ lstrlenW( szFullKey ) ] );
169
170 TRACE("key is %s\n", debugstr_w( szFullKey ) );
171
172 r = RegCreateKeyW( HKEY_LOCAL_MACHINE, szFullKey, &hKey );
173 if( r != ERROR_SUCCESS ) goto error_close_key;
174
175 /* write the values */
176 r = RegSetValueExW( hKey, szFuncName, 0, REG_SZ, (const BYTE*) szFunction,
177 ( lstrlenW( szFunction ) + 1 ) * sizeof (WCHAR) );
178 if( r != ERROR_SUCCESS ) goto error_close_key;
179 r = RegSetValueExW( hKey, szDllName, 0, REG_SZ, (const BYTE*) szDll,
180 ( lstrlenW( szDll ) + 1) * sizeof (WCHAR) );
181
182error_close_key:
183
184 RegCloseKey( hKey );
185
186 return r;
187}
188
189/***********************************************************************
190 * CryptSIPAddProvider (CRYPT32.@)
191 *
192 * Add a SIP provider and its functions to the registry.
193 *
194 * PARAMS
195 * psNewProv [I] Pointer to a structure with information about
196 * the functions this SIP provider can perform.
197 *
198 * RETURNS
199 * Success: TRUE.
200 * Failure: FALSE. (Look at GetLastError()).
201 *
202 * NOTES
203 * Registry errors are always reported via SetLastError(). If a
204 * registry error occurs the rest of the registry write operations
205 * will be skipped.
206 */
208{
210
211 TRACE("%p\n", psNewProv);
212
213 if (!psNewProv ||
214 psNewProv->cbStruct < FIELD_OFFSET(SIP_ADD_NEWPROVIDER, pwszGetCapFuncName) ||
215 !psNewProv->pwszGetFuncName ||
216 !psNewProv->pwszPutFuncName ||
217 !psNewProv->pwszCreateFuncName ||
218 !psNewProv->pwszVerifyFuncName ||
219 !psNewProv->pwszRemoveFuncName)
220 {
222 return FALSE;
223 }
224
225 TRACE("%s %s %s %s %s\n",
226 debugstr_guid( psNewProv->pgSubject ),
227 debugstr_w( psNewProv->pwszDLLFileName ),
228 debugstr_w( psNewProv->pwszMagicNumber ),
229 debugstr_w( psNewProv->pwszIsFunctionName ),
230 debugstr_w( psNewProv->pwszIsFunctionNameFmt2 ) );
231
232#define CRYPT_SIPADDPROV( key, field ) \
233 r = CRYPT_SIPWriteFunction( psNewProv->pgSubject, key, \
234 psNewProv->pwszDLLFileName, psNewProv->field); \
235 if (r != ERROR_SUCCESS) goto end_function
236
237 CRYPT_SIPADDPROV( szPutSigned, pwszPutFuncName );
238 CRYPT_SIPADDPROV( szGetSigned, pwszGetFuncName );
239 CRYPT_SIPADDPROV( szRemoveSigned, pwszRemoveFuncName );
240 CRYPT_SIPADDPROV( szCreate, pwszCreateFuncName );
241 CRYPT_SIPADDPROV( szVerify, pwszVerifyFuncName );
242 CRYPT_SIPADDPROV( szIsMyFile, pwszIsFunctionName );
243 CRYPT_SIPADDPROV( szIsMyFile2, pwszIsFunctionNameFmt2 );
244
245#undef CRYPT_SIPADDPROV
246
247end_function:
248
249 if (r != ERROR_SUCCESS)
250 {
252 return FALSE;
253 }
254
255 return TRUE;
256}
257
259{
260 LONG r;
261 DWORD size;
262 WCHAR dllName[MAX_PATH];
263 char functionName[MAX_PATH];
264 HMODULE lib;
265 void *func = NULL;
266
267 /* Read the DLL entry */
268 size = sizeof(dllName);
270 if (r) goto end;
271
272 /* Read the Function entry */
273 size = sizeof(functionName);
274 r = RegQueryValueExA(key, "FuncName", NULL, NULL, (LPBYTE)functionName,
275 &size);
276 if (r) goto end;
277
278 lib = LoadLibraryW(dllName);
279 if (!lib)
280 goto end;
281 func = GetProcAddress(lib, functionName);
282 if (func)
283 *pLib = lib;
284 else
285 FreeLibrary(lib);
286
287end:
288 return func;
289}
290
291/***********************************************************************
292 * CryptSIPRetrieveSubjectGuid (CRYPT32.@)
293 *
294 * Determine the right SIP GUID for the given file.
295 *
296 * PARAMS
297 * FileName [I] Filename.
298 * hFileIn [I] Optional handle to the file.
299 * pgSubject [O] The SIP's GUID.
300 *
301 * RETURNS
302 * Success: TRUE. pgSubject contains the SIP GUID.
303 * Failure: FALSE. (Look at GetLastError()).
304 *
305 * NOTES
306 * On failure pgSubject will contain a NULL GUID.
307 * The handle is always preferred above the filename.
308 */
310 (LPCWSTR FileName, HANDLE hFileIn, GUID *pgSubject)
311{
313 BOOL bRet = FALSE;
314 DWORD count;
315 LARGE_INTEGER zero, oldPos;
316 /* FIXME, find out if there is a name for this GUID */
317 static const GUID unknown = { 0xC689AAB8, 0x8E78, 0x11D0, { 0x8C,0x47,0x00,0xC0,0x4F,0xC2,0x95,0xEE }};
318 static const GUID cabGUID = { 0xc689aaba, 0x8e78, 0x11d0, {0x8c,0x47,0x00,0xc0,0x4f,0xc2,0x95,0xee }};
319 static const GUID catGUID = { 0xDE351A43, 0x8E59, 0x11D0, { 0x8C,0x47,0x00,0xC0,0x4F,0xC2,0x95,0xEE }};
320 static const WORD dosHdr = IMAGE_DOS_SIGNATURE;
321 static const BYTE cabHdr[] = { 'M','S','C','F' };
323 WCHAR szFullKey[ 0x100 ];
325 HKEY key;
326
327 TRACE("(%s %p %p)\n", wine_dbgstr_w(FileName), hFileIn, pgSubject);
328
329 if (!pgSubject || (!FileName && !hFileIn))
330 {
332 return FALSE;
333 }
334
335 /* Set pgSubject to zero's */
336 memset(pgSubject, 0 , sizeof(GUID));
337
338 if (hFileIn)
339 /* Use the given handle, make sure not to close this one ourselves */
340 hFile = hFileIn;
341 else
342 {
344 /* Last error is set by CreateFile */
345 if (hFile == INVALID_HANDLE_VALUE) return FALSE;
346 }
347
348 zero.QuadPart = 0;
351 if (!ReadFile(hFile, hdr, sizeof(hdr), &count, NULL))
352 goto cleanup;
353
355 {
357 goto cleanup;
358 }
359
360 TRACE("file magic = 0x%02x%02x%02x%02x\n", hdr[0], hdr[1], hdr[2], hdr[3]);
361 /* As everything is in place now we start looking at the file header */
362 if (!memcmp(hdr, &dosHdr, sizeof(dosHdr)))
363 {
364 *pgSubject = unknown;
366 bRet = TRUE;
367 goto cleanup;
368 }
369 /* Quick-n-dirty check for a cab file. */
370 if (!memcmp(hdr, cabHdr, sizeof(cabHdr)))
371 {
372 *pgSubject = cabGUID;
374 bRet = TRUE;
375 goto cleanup;
376 }
377 /* If it's asn.1-encoded, it's probably a .cat file. */
378 if (hdr[0] == 0x30)
379 {
380 DWORD fileLen = GetFileSize(hFile, NULL);
381
382 TRACE("fileLen = %d\n", fileLen);
383 /* Sanity-check length */
384 if (hdr[1] < 0x80 && fileLen == 2 + hdr[1])
385 {
386 *pgSubject = catGUID;
388 bRet = TRUE;
389 goto cleanup;
390 }
391 else if (hdr[1] == 0x80)
392 {
393 /* Indefinite length, can't verify with just the header, assume it
394 * is.
395 */
396 *pgSubject = catGUID;
398 bRet = TRUE;
399 goto cleanup;
400 }
401 else
402 {
403 BYTE lenBytes = hdr[1] & 0x7f;
404
405 if (lenBytes == 1 && fileLen == 2 + lenBytes + hdr[2])
406 {
407 *pgSubject = catGUID;
409 bRet = TRUE;
410 goto cleanup;
411 }
412 else if (lenBytes == 2 && fileLen == 2 + lenBytes +
413 (hdr[2] << 8 | hdr[3]))
414 {
415 *pgSubject = catGUID;
417 bRet = TRUE;
418 goto cleanup;
419 }
420 else if (fileLen > 0xffff)
421 {
422 /* The file size must be greater than 2 bytes in length, so
423 * assume it is a .cat file
424 */
425 *pgSubject = catGUID;
427 bRet = TRUE;
428 goto cleanup;
429 }
430 }
431 }
432
433 /* Check for supported functions using CryptSIPDllIsMyFileType */
434 /* max length of szFullKey depends on our code only, so we won't overrun */
435 lstrcpyW(szFullKey, szOID);
436 lstrcatW(szFullKey, szIsMyFile);
437 r = RegOpenKeyExW(HKEY_LOCAL_MACHINE, szFullKey, 0, KEY_READ, &key);
438 if (r == ERROR_SUCCESS)
439 {
440 DWORD index = 0, size;
441 WCHAR subKeyName[MAX_PATH];
442
443 do {
444 size = ARRAY_SIZE(subKeyName);
445 r = RegEnumKeyExW(key, index++, subKeyName, &size, NULL, NULL,
446 NULL, NULL);
447 if (r == ERROR_SUCCESS)
448 {
449 HKEY subKey;
450
451 r = RegOpenKeyExW(key, subKeyName, 0, KEY_READ, &subKey);
452 if (r == ERROR_SUCCESS)
453 {
454 HMODULE lib;
456 &lib);
457
458 if (isMy)
459 {
460 bRet = isMy(hFile, pgSubject);
461 FreeLibrary(lib);
462 }
463 RegCloseKey(subKey);
464 }
465 }
466 } while (!bRet && r == ERROR_SUCCESS);
468 }
469
470 /* Check for supported functions using CryptSIPDllIsMyFileType2 */
471 if (!bRet)
472 {
473 lstrcpyW(szFullKey, szOID);
474 lstrcatW(szFullKey, szIsMyFile2);
475 r = RegOpenKeyExW(HKEY_LOCAL_MACHINE, szFullKey, 0, KEY_READ, &key);
476 if (r == ERROR_SUCCESS)
477 {
478 DWORD index = 0, size;
479 WCHAR subKeyName[MAX_PATH];
480
481 do {
482 size = ARRAY_SIZE(subKeyName);
483 r = RegEnumKeyExW(key, index++, subKeyName, &size, NULL, NULL,
484 NULL, NULL);
485 if (r == ERROR_SUCCESS)
486 {
487 HKEY subKey;
488
489 r = RegOpenKeyExW(key, subKeyName, 0, KEY_READ, &subKey);
490 if (r == ERROR_SUCCESS)
491 {
492 HMODULE lib;
494 CRYPT_LoadSIPFuncFromKey(subKey, &lib);
495
496 if (isMy2)
497 {
498 bRet = isMy2((LPWSTR)FileName, pgSubject);
499 FreeLibrary(lib);
500 }
501 RegCloseKey(subKey);
502 }
503 }
504 } while (!bRet && r == ERROR_SUCCESS);
506 }
507 }
508
509 if (!bRet)
511
512cleanup:
513 /* If we didn't open this one we shouldn't close it (hFile is a copy),
514 * but we should reset the file pointer to its original position.
515 */
516 if (!hFileIn)
518 else
520
521 return bRet;
522}
523
525 HKEY *key)
526{
527 WCHAR szFullKey[ 0x100 ];
528
529 lstrcpyW(szFullKey, szOID);
530 lstrcatW(szFullKey, function);
531 CRYPT_guid2wstr(guid, &szFullKey[lstrlenW(szFullKey)]);
532 return RegOpenKeyExW(HKEY_LOCAL_MACHINE, szFullKey, 0, KEY_READ, key);
533}
534
535/* Loads the function named function for the SIP specified by pgSubject, and
536 * returns it if found. Returns NULL on error. If the function is loaded,
537 * *pLib is set to the library in which it is found.
538 */
539static void *CRYPT_LoadSIPFunc(const GUID *pgSubject, LPCWSTR function,
540 HMODULE *pLib)
541{
542 LONG r;
543 HKEY key;
544 void *func = NULL;
545
546 TRACE("(%s, %s)\n", debugstr_guid(pgSubject), debugstr_w(function));
547
548 r = CRYPT_OpenSIPFunctionKey(pgSubject, function, &key);
549 if (!r)
550 {
553 }
554 TRACE("returning %p\n", func);
555 return func;
556}
557
558typedef struct _WINE_SIP_PROVIDER {
561 struct list entry;
563
564static struct list providers = { &providers, &providers };
567{
568 0, 0, &providers_cs,
571 0, 0, { (DWORD_PTR)(__FILE__ ": providers_cs") }
572};
573static CRITICAL_SECTION providers_cs = { &providers_cs_debug, -1, 0, 0, 0, 0 };
574
575static void CRYPT_CacheSIP(const GUID *pgSubject, SIP_DISPATCH_INFO *info)
576{
578
579 if (prov)
580 {
581 prov->subject = *pgSubject;
582 prov->info = *info;
584 list_add_tail(&providers, &prov->entry);
586 }
587}
588
590{
591 WINE_SIP_PROVIDER *provider = NULL, *ret = NULL;
592
595 {
596 if (IsEqualGUID(pgSubject, &provider->subject))
597 break;
598 }
599 if (provider && IsEqualGUID(pgSubject, &provider->subject))
600 ret = provider;
602 return ret;
603}
604
605static inline BOOL CRYPT_IsSIPCached(const GUID *pgSubject)
606{
607 return CRYPT_GetCachedSIP(pgSubject) != NULL;
608}
609
611{
612 WINE_SIP_PROVIDER *prov, *next;
613
615 {
616 list_remove(&prov->entry);
617 FreeLibrary(prov->info.hSIP);
618 CryptMemFree(prov);
619 }
621}
622
623/* Loads the SIP for pgSubject into the global cache. Returns FALSE if the
624 * SIP isn't registered or is invalid.
625 */
626static BOOL CRYPT_LoadSIP(const GUID *pgSubject)
627{
628 SIP_DISPATCH_INFO sip = { 0 };
629 HMODULE lib = NULL, temp = NULL;
630
631 sip.pfGet = CRYPT_LoadSIPFunc(pgSubject, szGetSigned, &lib);
632 if (!sip.pfGet)
633 goto error;
634 sip.pfPut = CRYPT_LoadSIPFunc(pgSubject, szPutSigned, &temp);
635 if (!sip.pfPut || temp != lib)
636 goto error;
638 temp = NULL;
639 sip.pfCreate = CRYPT_LoadSIPFunc(pgSubject, szCreate, &temp);
640 if (!sip.pfCreate || temp != lib)
641 goto error;
643 temp = NULL;
644 sip.pfVerify = CRYPT_LoadSIPFunc(pgSubject, szVerify, &temp);
645 if (!sip.pfVerify || temp != lib)
646 goto error;
648 temp = NULL;
649 sip.pfRemove = CRYPT_LoadSIPFunc(pgSubject, szRemoveSigned, &temp);
650 if (!sip.pfRemove || temp != lib)
651 goto error;
653 sip.hSIP = lib;
654 CRYPT_CacheSIP(pgSubject, &sip);
655 return TRUE;
656
657error:
658 FreeLibrary(lib);
661 return FALSE;
662}
663
664/***********************************************************************
665 * CryptSIPLoad (CRYPT32.@)
666 *
667 * Load some internal crypt32 functions into a SIP_DISPATCH_INFO structure.
668 *
669 * PARAMS
670 * pgSubject [I] The GUID.
671 * dwFlags [I] Flags.
672 * pSipDispatch [I] The loaded functions.
673 *
674 * RETURNS
675 * Success: TRUE. pSipDispatch contains the functions.
676 * Failure: FALSE. (Look at GetLastError()).
677 *
678 * NOTES
679 * CryptSIPLoad uses caching for the list of GUIDs and whether a SIP is
680 * already loaded.
681 *
682 * An application calls CryptSipLoad which will return a structure with the
683 * function addresses of some internal crypt32 functions. The application will
684 * then call these functions which will be forwarded to the appropriate SIP.
685 *
686 * CryptSIPLoad will load the needed SIP but doesn't unload this dll. The unloading
687 * is done when crypt32 is unloaded.
688 */
690 (const GUID *pgSubject, DWORD dwFlags, SIP_DISPATCH_INFO *pSipDispatch)
691{
692 TRACE("(%s %d %p)\n", debugstr_guid(pgSubject), dwFlags, pSipDispatch);
693
694 if (!pgSubject || dwFlags != 0 || !pSipDispatch)
695 {
697 return FALSE;
698 }
699 if (!CRYPT_IsSIPCached(pgSubject) && !CRYPT_LoadSIP(pgSubject))
700 return FALSE;
701
702 pSipDispatch->hSIP = NULL;
703 pSipDispatch->pfGet = CryptSIPGetSignedDataMsg;
704 pSipDispatch->pfPut = CryptSIPPutSignedDataMsg;
705 pSipDispatch->pfCreate = CryptSIPCreateIndirectData;
706 pSipDispatch->pfVerify = CryptSIPVerifyIndirectData;
708
709 return TRUE;
710}
711
712/***********************************************************************
713 * CryptSIPCreateIndirectData (CRYPT32.@)
714 */
716 SIP_INDIRECT_DATA* pIndirectData)
717{
719 BOOL ret = FALSE;
720
721 TRACE("(%p %p %p)\n", pSubjectInfo, pcbIndirectData, pIndirectData);
722
723 if (!pSubjectInfo || !pSubjectInfo->pgSubjectType || !pcbIndirectData)
724 {
726 return FALSE;
727 }
728 if ((sip = CRYPT_GetCachedSIP(pSubjectInfo->pgSubjectType)))
729 ret = sip->info.pfCreate(pSubjectInfo, pcbIndirectData, pIndirectData);
730 TRACE("returning %d\n", ret);
731 return ret;
732}
733
734/***********************************************************************
735 * CryptSIPGetSignedDataMsg (CRYPT32.@)
736 */
738 DWORD dwIndex, DWORD* pcbSignedDataMsg, BYTE* pbSignedDataMsg)
739{
741 BOOL ret = FALSE;
742
743 TRACE("(%p %p %d %p %p)\n", pSubjectInfo, pdwEncodingType, dwIndex,
744 pcbSignedDataMsg, pbSignedDataMsg);
745
746 if ((sip = CRYPT_GetCachedSIP(pSubjectInfo->pgSubjectType)))
747 ret = sip->info.pfGet(pSubjectInfo, pdwEncodingType, dwIndex,
748 pcbSignedDataMsg, pbSignedDataMsg);
749 TRACE("returning %d\n", ret);
750 return ret;
751}
752
753/***********************************************************************
754 * CryptSIPPutSignedDataMsg (CRYPT32.@)
755 */
757 DWORD* pdwIndex, DWORD cbSignedDataMsg, BYTE* pbSignedDataMsg)
758{
760 BOOL ret = FALSE;
761
762 TRACE("(%p %d %p %d %p)\n", pSubjectInfo, pdwEncodingType, pdwIndex,
763 cbSignedDataMsg, pbSignedDataMsg);
764
765 if ((sip = CRYPT_GetCachedSIP(pSubjectInfo->pgSubjectType)))
766 ret = sip->info.pfPut(pSubjectInfo, pdwEncodingType, pdwIndex,
767 cbSignedDataMsg, pbSignedDataMsg);
768 TRACE("returning %d\n", ret);
769 return ret;
770}
771
772/***********************************************************************
773 * CryptSIPRemoveSignedDataMsg (CRYPT32.@)
774 */
776 DWORD dwIndex)
777{
779 BOOL ret = FALSE;
780
781 TRACE("(%p %d)\n", pSubjectInfo, dwIndex);
782
783 if ((sip = CRYPT_GetCachedSIP(pSubjectInfo->pgSubjectType)))
784 ret = sip->info.pfRemove(pSubjectInfo, dwIndex);
785 TRACE("returning %d\n", ret);
786 return ret;
787}
788
789/***********************************************************************
790 * CryptSIPVerifyIndirectData (CRYPT32.@)
791 */
793 SIP_INDIRECT_DATA* pIndirectData)
794{
796 BOOL ret = FALSE;
797
798 TRACE("(%p %p)\n", pSubjectInfo, pIndirectData);
799
800 if ((sip = CRYPT_GetCachedSIP(pSubjectInfo->pgSubjectType)))
801 ret = sip->info.pfVerify(pSubjectInfo, pIndirectData);
802 TRACE("returning %d\n", ret);
803 return ret;
804}
805
806/***********************************************************************
807 * CryptSIPRetrieveSubjectGuidForCatalogFile (CRYPT32.@)
808 */
810{
811 FIXME("(%s %p %p)\n", debugstr_w(filename), handle, subject);
813 return FALSE;
814}
int memcmp(void *Buffer1, void *Buffer2, ACPI_SIZE Count)
Definition: utclib.c:112
#define WINE_DEFAULT_DEBUG_CHANNEL(t)
Definition: precomp.h:23
#define ARRAY_SIZE(A)
Definition: main.h:33
static void list_remove(struct list_entry *entry)
Definition: list.h:90
static void list_add_tail(struct list_entry *head, struct list_entry *entry)
Definition: list.h:83
#define FIXME(fmt,...)
Definition: debug.h:111
#define RegCloseKey(hKey)
Definition: registry.h:49
Definition: list.h:37
#define ERROR_SUCCESS
Definition: deptool.c:10
#define NULL
Definition: types.h:112
#define TRUE
Definition: types.h:120
#define FALSE
Definition: types.h:117
LONG WINAPI RegOpenKeyExW(HKEY hKey, LPCWSTR lpSubKey, DWORD ulOptions, REGSAM samDesired, PHKEY phkResult)
Definition: reg.c:3362
LONG WINAPI RegEnumKeyExW(_In_ HKEY hKey, _In_ DWORD dwIndex, _Out_ LPWSTR lpName, _Inout_ LPDWORD lpcbName, _Reserved_ LPDWORD lpReserved, _Out_opt_ LPWSTR lpClass, _Inout_opt_ LPDWORD lpcbClass, _Out_opt_ PFILETIME lpftLastWriteTime)
Definition: reg.c:2533
LONG WINAPI RegSetValueExW(_In_ HKEY hKey, _In_ LPCWSTR lpValueName, _In_ DWORD Reserved, _In_ DWORD dwType, _In_ CONST BYTE *lpData, _In_ DWORD cbData)
Definition: reg.c:4911
LONG WINAPI RegDeleteKeyW(_In_ HKEY hKey, _In_ LPCWSTR lpSubKey)
Definition: reg.c:1239
LONG WINAPI RegQueryValueExA(_In_ HKEY hkeyorg, _In_ LPCSTR name, _In_ LPDWORD reserved, _Out_opt_ LPDWORD type, _Out_opt_ LPBYTE data, _Inout_opt_ LPDWORD count)
Definition: reg.c:4038
LONG WINAPI RegQueryValueExW(_In_ HKEY hkeyorg, _In_ LPCWSTR name, _In_ LPDWORD reserved, _In_ LPDWORD type, _In_ LPBYTE data, _In_ LPDWORD count)
Definition: reg.c:4132
LONG WINAPI RegCreateKeyW(HKEY hKey, LPCWSTR lpSubKey, PHKEY phkResult)
Definition: reg.c:1201
LPVOID WINAPI CryptMemAlloc(ULONG cbSize)
Definition: main.c:131
VOID WINAPI CryptMemFree(LPVOID pv)
Definition: main.c:141
static WCHAR unknown[MAX_STRING_RESOURCE_LEN]
Definition: object.c:1605
static void CRYPT_guid2wstr(const GUID *guid, LPWSTR wstr)
Definition: sip.c:65
BOOL WINAPI CryptSIPRemoveProvider(GUID *pgProv)
Definition: sip.c:112
static const WCHAR szRemoveSigned[]
Definition: sip.c:50
BOOL WINAPI CryptSIPPutSignedDataMsg(SIP_SUBJECTINFO *pSubjectInfo, DWORD pdwEncodingType, DWORD *pdwIndex, DWORD cbSignedDataMsg, BYTE *pbSignedDataMsg)
Definition: sip.c:756
BOOL WINAPI CryptSIPRetrieveSubjectGuidForCatalogFile(LPCWSTR filename, HANDLE handle, GUID *subject)
Definition: sip.c:809
static const WCHAR szDllName[]
Definition: sip.c:61
static const WCHAR szVerify[]
Definition: sip.c:54
#define CRYPT_SIPREMOVEPROV(key)
static struct list providers
Definition: sip.c:564
static CRITICAL_SECTION providers_cs
Definition: sip.c:565
static void * CRYPT_LoadSIPFuncFromKey(HKEY key, HMODULE *pLib)
Definition: sip.c:258
static const WCHAR szPutSigned[]
Definition: sip.c:46
static const WCHAR szOID[]
Definition: sip.c:38
static WINE_SIP_PROVIDER * CRYPT_GetCachedSIP(const GUID *pgSubject)
Definition: sip.c:589
BOOL WINAPI CryptSIPRemoveSignedDataMsg(SIP_SUBJECTINFO *pSubjectInfo, DWORD dwIndex)
Definition: sip.c:775
static const WCHAR szIsMyFile2[]
Definition: sip.c:58
struct _WINE_SIP_PROVIDER WINE_SIP_PROVIDER
static BOOL CRYPT_IsSIPCached(const GUID *pgSubject)
Definition: sip.c:605
static const WCHAR szIsMyFile[]
Definition: sip.c:56
static LONG CRYPT_SIPWriteFunction(const GUID *guid, LPCWSTR szKey, LPCWSTR szDll, LPCWSTR szFunction)
Definition: sip.c:155
static const WCHAR szFuncName[]
Definition: sip.c:62
BOOL WINAPI CryptSIPRetrieveSubjectGuid(LPCWSTR FileName, HANDLE hFileIn, GUID *pgSubject)
Definition: sip.c:310
static LONG CRYPT_OpenSIPFunctionKey(const GUID *guid, LPCWSTR function, HKEY *key)
Definition: sip.c:524
BOOL WINAPI CryptSIPGetSignedDataMsg(SIP_SUBJECTINFO *pSubjectInfo, DWORD *pdwEncodingType, DWORD dwIndex, DWORD *pcbSignedDataMsg, BYTE *pbSignedDataMsg)
Definition: sip.c:737
BOOL WINAPI CryptSIPCreateIndirectData(SIP_SUBJECTINFO *pSubjectInfo, DWORD *pcbIndirectData, SIP_INDIRECT_DATA *pIndirectData)
Definition: sip.c:715
static BOOL CRYPT_LoadSIP(const GUID *pgSubject)
Definition: sip.c:626
#define CRYPT_SIPADDPROV(key, field)
static CRITICAL_SECTION_DEBUG providers_cs_debug
Definition: sip.c:566
static const WCHAR szCreate[]
Definition: sip.c:52
BOOL WINAPI CryptSIPLoad(const GUID *pgSubject, DWORD dwFlags, SIP_DISPATCH_INFO *pSipDispatch)
Definition: sip.c:690
static void * CRYPT_LoadSIPFunc(const GUID *pgSubject, LPCWSTR function, HMODULE *pLib)
Definition: sip.c:539
BOOL WINAPI CryptSIPVerifyIndirectData(SIP_SUBJECTINFO *pSubjectInfo, SIP_INDIRECT_DATA *pIndirectData)
Definition: sip.c:792
static LONG CRYPT_SIPDeleteFunction(const GUID *guid, LPCWSTR szKey)
Definition: sip.c:81
BOOL WINAPI CryptSIPAddProvider(SIP_ADD_NEWPROVIDER *psNewProv)
Definition: sip.c:207
void crypt_sip_free(void)
Definition: sip.c:610
static void CRYPT_CacheSIP(const GUID *pgSubject, SIP_DISPATCH_INFO *info)
Definition: sip.c:575
static const WCHAR szGetSigned[]
Definition: sip.c:48
#define CloseHandle
Definition: compat.h:739
#define ERROR_INVALID_PARAMETER
Definition: compat.h:101
#define FILE_BEGIN
Definition: compat.h:761
#define CP_ACP
Definition: compat.h:109
#define OPEN_EXISTING
Definition: compat.h:775
#define ReadFile(a, b, c, d, e)
Definition: compat.h:742
#define SetFilePointer
Definition: compat.h:743
#define SetLastError(x)
Definition: compat.h:752
#define GetProcAddress(x, y)
Definition: compat.h:753
#define INVALID_HANDLE_VALUE
Definition: compat.h:731
#define FreeLibrary(x)
Definition: compat.h:748
#define GENERIC_READ
Definition: compat.h:135
#define MAX_PATH
Definition: compat.h:34
#define CreateFileW
Definition: compat.h:741
#define FILE_ATTRIBUTE_NORMAL
Definition: compat.h:137
#define lstrcpyW
Definition: compat.h:749
#define MultiByteToWideChar
Definition: compat.h:110
#define LoadLibraryW(x)
Definition: compat.h:747
#define FILE_SHARE_READ
Definition: compat.h:136
#define lstrlenW
Definition: compat.h:750
static void cleanup(void)
Definition: main.c:1335
DWORD WINAPI GetFileSize(HANDLE hFile, LPDWORD lpFileSizeHigh)
Definition: fileinfo.c:331
BOOL WINAPI SetFilePointerEx(HANDLE hFile, LARGE_INTEGER liDistanceToMove, PLARGE_INTEGER lpNewFilePointer, DWORD dwMoveMethod)
Definition: fileinfo.c:177
static const GUID catGUID
Definition: crypt.c:1369
static const GUID cabGUID
Definition: crypt.c:1367
unsigned int BOOL
Definition: ntddk_ex.h:94
unsigned long DWORD
Definition: ntddk_ex.h:95
unsigned short WORD
Definition: ntddk_ex.h:93
FxAutoRegKey hKey
GLuint GLuint end
Definition: gl.h:1545
GLuint GLuint GLsizei count
Definition: gl.h:1545
GLdouble GLdouble GLdouble r
Definition: gl.h:2055
GLsizeiptr size
Definition: glext.h:5919
GLenum func
Definition: glext.h:6028
GLuint index
Definition: glext.h:6031
#define S_OK
Definition: intsafe.h:52
const char * filename
Definition: ioapi.h:137
char hdr[14]
Definition: iptest.cpp:33
uint32_t entry
Definition: isohybrid.c:63
#define debugstr_guid
Definition: kernel32.h:35
#define debugstr_w
Definition: kernel32.h:32
#define wine_dbgstr_w
Definition: kernel32.h:34
#define REG_SZ
Definition: layer.c:22
LPWSTR WINAPI lstrcatW(LPWSTR lpString1, LPCWSTR lpString2)
Definition: lstring.c:274
const GUID * guid
#define error(str)
Definition: mkdosfs.c:1605
#define sprintf(buf, format,...)
Definition: sprintf.c:55
BOOL(WINAPI * pfnIsFileSupportedName)(WCHAR *, GUID *)
Definition: mssip.h:138
BOOL(WINAPI * pfnIsFileSupported)(HANDLE, GUID *)
Definition: mssip.h:137
#define SIP_MAX_MAGIC_NUMBER
Definition: mssip.h:45
_In_ HANDLE hFile
Definition: mswsock.h:90
#define KEY_READ
Definition: nt_native.h:1023
long LONG
Definition: pedump.c:60
#define IMAGE_DOS_SIGNATURE
Definition: pedump.c:89
#define IsEqualGUID(rguid1, rguid2)
Definition: guiddef.h:147
static unsigned __int64 next
Definition: rand_nt.c:6
const WCHAR * str
static calc_node_t temp
Definition: rpn_ieee.c:38
#define LIST_FOR_EACH_ENTRY(elem, list, type, field)
Definition: list.h:198
#define LIST_FOR_EACH_ENTRY_SAFE(cursor, cursor2, list, type, field)
Definition: list.h:204
#define memset(x, y, z)
Definition: compat.h:39
int zero
Definition: sehframes.cpp:29
#define TRACE(s)
Definition: solgame.cpp:4
WCHAR * pwszPutFuncName
Definition: mssip.h:153
WCHAR * pwszCreateFuncName
Definition: mssip.h:154
GUID * pgSubject
Definition: mssip.h:145
WCHAR * pwszMagicNumber
Definition: mssip.h:148
WCHAR * pwszRemoveFuncName
Definition: mssip.h:156
WCHAR * pwszIsFunctionName
Definition: mssip.h:150
WCHAR * pwszGetFuncName
Definition: mssip.h:152
WCHAR * pwszIsFunctionNameFmt2
Definition: mssip.h:158
WCHAR * pwszVerifyFuncName
Definition: mssip.h:155
WCHAR * pwszDLLFileName
Definition: mssip.h:147
pCryptSIPVerifyIndirectData pfVerify
Definition: mssip.h:132
pCryptSIPRemoveSignedDataMsg pfRemove
Definition: mssip.h:133
pCryptSIPGetSignedDataMsg pfGet
Definition: mssip.h:129
pCryptSIPPutSignedDataMsg pfPut
Definition: mssip.h:130
pCryptSIPCreateIndirectData pfCreate
Definition: mssip.h:131
GUID * pgSubjectType
Definition: mssip.h:52
LIST_ENTRY ProcessLocksList
Definition: winbase.h:883
struct list entry
Definition: sip.c:561
SIP_DISPATCH_INFO info
Definition: sip.c:560
GUID subject
Definition: sip.c:559
Definition: copy.c:22
#define DWORD_PTR
Definition: treelist.c:76
#define FIELD_OFFSET(t, f)
Definition: typedefs.h:255
unsigned char * LPBYTE
Definition: typedefs.h:53
int ret
void WINAPI LeaveCriticalSection(LPCRITICAL_SECTION)
#define FILE_CURRENT
Definition: winbase.h:113
void WINAPI EnterCriticalSection(LPCRITICAL_SECTION)
void WINAPI DeleteCriticalSection(PCRITICAL_SECTION)
_In_ PCCERT_CONTEXT _In_ DWORD dwFlags
Definition: wincrypt.h:1176
#define WINAPI
Definition: msvc.h:6
#define TRUST_E_SUBJECT_FORM_UNKNOWN
Definition: winerror.h:3114
#define HKEY_LOCAL_MACHINE
Definition: winreg.h:12
__wchar_t WCHAR
Definition: xmlstorage.h:180
WCHAR * LPWSTR
Definition: xmlstorage.h:184
const WCHAR * LPCWSTR
Definition: xmlstorage.h:185
unsigned char BYTE
Definition: xxhash.c:193