ReactOS 0.4.15-dev-7924-g5949c20
sip.c File Reference
#include <stdio.h>
#include <stdarg.h>
#include <windef.h>
#include <winbase.h>
#include <winerror.h>
#include <winnls.h>
#include <wincrypt.h>
#include <mssip.h>
#include "wine/test.h"
Include dependency graph for sip.c:

Go to the source code of this file.

Functions

static BOOL (WINAPI *funcCryptSIPGetSignedDataMsg)(SIP_SUBJECTINFO *
 
static void test_AddRemoveProvider (void)
 
static void test_SIPRetrieveSubjectGUID (void)
 
static void test_SIPLoad (void)
 
 START_TEST (sip)
 

Variables

static DWORD DWORD
 
static const BYTE cabFileData []
 

Function Documentation

◆ BOOL()

static BOOL ( WINAPI funcCryptSIPGetSignedDataMsg)
static

◆ START_TEST()

START_TEST ( sip  )

Definition at line 437 of file sip.c.

438{
440 /* It seems that the caching for loaded dlls is shared between CryptSIPRetrieveSubjectGUID
441 * and CryptSIPLoad. The tests have to be in this order to succeed. This is because in the last
442 * test for CryptSIPRetrieveSubjectGUID, several SIPs will be loaded (on Windows).
443 */
444 test_SIPLoad();
446}
static void test_SIPLoad(void)
Definition: sip.c:308
static void test_AddRemoveProvider(void)
Definition: sip.c:39
static void test_SIPRetrieveSubjectGUID(void)
Definition: sip.c:143

◆ test_AddRemoveProvider()

static void test_AddRemoveProvider ( void  )
static

Definition at line 39 of file sip.c.

40{
41 BOOL ret;
42 SIP_ADD_NEWPROVIDER newprov;
43 GUID actionid = { 0xdeadbe, 0xefde, 0xadbe, { 0xef,0xde,0xad,0xbe,0xef,0xde,0xad,0xbe }};
44 static WCHAR dummydll[] = {'d','e','a','d','b','e','e','f','.','d','l','l',0 };
45 static WCHAR dummyfunction[] = {'d','u','m','m','y','f','u','n','c','t','i','o','n',0 };
46
47 /* NULL check */
48 SetLastError(0xdeadbeef);
50 ok (!ret, "Expected CryptSIPRemoveProvider to fail.\n");
52 "Expected ERROR_INVALID_PARAMETER, got %d.\n", GetLastError());
53
54 /* nonexistent provider should result in a registry error */
55 SetLastError(0xdeadbeef);
56 ret = CryptSIPRemoveProvider(&actionid);
58 {
59 /* Apparently the needed rights are checked before the existence of the provider */
60 skip("Need admin rights\n");
61 }
62 else
63 {
64 /* On some Win98 systems, CryptSIPRemoveProvider always succeeds if
65 * the arguments are correct, whether or not the registry key is
66 * present, so don't test ret, just check the last error if it does
67 * return FALSE.
68 */
69 if (!ret)
71 "Expected ERROR_FILE_NOT_FOUND, got %d.\n", GetLastError());
72 }
73
74 /* Everything OK, pwszIsFunctionName and pwszIsFunctionNameFmt2 are left NULL
75 * as allowed */
76
77 memset(&newprov, 0, sizeof(SIP_ADD_NEWPROVIDER));
78 newprov.cbStruct = sizeof(SIP_ADD_NEWPROVIDER);
79 newprov.pgSubject = &actionid;
80 newprov.pwszDLLFileName = dummydll;
81 newprov.pwszGetFuncName = dummyfunction;
82 newprov.pwszPutFuncName = dummyfunction;
83 newprov.pwszCreateFuncName = dummyfunction;
84 newprov.pwszVerifyFuncName = dummyfunction;
85 newprov.pwszRemoveFuncName = dummyfunction;
86 SetLastError(0xdeadbeef);
87 ret = CryptSIPAddProvider(&newprov);
89 {
90 skip("Need admin rights\n");
91 return;
92 }
93 ok ( ret, "CryptSIPAddProvider should have succeeded, last error %d\n", GetLastError());
94
95 /* Dummy provider will be deleted, but the function still fails because
96 * pwszIsFunctionName and pwszIsFunctionNameFmt2 are not present in the
97 * registry.
98 */
99 SetLastError(0xdeadbeef);
100 ret = CryptSIPRemoveProvider(&actionid);
101 /* On some Win98 systems, CryptSIPRemoveProvider always succeeds if
102 * the arguments are correct, whether or not the registry key is
103 * present, so don't test ret, just check the last error if it does
104 * return FALSE.
105 */
106 if (!ret)
108 "Expected ERROR_FILE_NOT_FOUND, got %d.\n", GetLastError());
109
110 /* Everything OK */
111 memset(&newprov, 0, sizeof(SIP_ADD_NEWPROVIDER));
112 newprov.cbStruct = sizeof(SIP_ADD_NEWPROVIDER);
113 newprov.pgSubject = &actionid;
114 newprov.pwszDLLFileName = dummydll;
115 newprov.pwszGetFuncName = dummyfunction;
116 newprov.pwszPutFuncName = dummyfunction;
117 newprov.pwszCreateFuncName = dummyfunction;
118 newprov.pwszVerifyFuncName = dummyfunction;
119 newprov.pwszRemoveFuncName = dummyfunction;
120 newprov.pwszIsFunctionNameFmt2 = dummyfunction;
121 newprov.pwszIsFunctionName = dummyfunction;
122 /* If GetCapFuncName set to NULL, then CryptSIPRemoveProvider fails on win 8 */
123 newprov.pwszGetCapFuncName = dummyfunction;
124
125 SetLastError(0xdeadbeef);
126 ret = CryptSIPAddProvider(&newprov);
127 ok ( ret, "CryptSIPAddProvider should have succeeded, last error %d\n", GetLastError());
128
129 /* Dummy provider should be deleted */
130 SetLastError(0xdeadbeef);
131 ret = CryptSIPRemoveProvider(&actionid);
132 ok ( ret, "CryptSIPRemoveProvider should have succeeded, last error %d\n", GetLastError());
133}
#define ok(value,...)
Definition: atltest.h:57
#define skip(...)
Definition: atltest.h:64
#define NULL
Definition: types.h:112
BOOL WINAPI CryptSIPRemoveProvider(GUID *pgProv)
Definition: sip.c:112
BOOL WINAPI CryptSIPAddProvider(SIP_ADD_NEWPROVIDER *psNewProv)
Definition: sip.c:207
#define ERROR_INVALID_PARAMETER
Definition: compat.h:101
#define SetLastError(x)
Definition: compat.h:752
#define ERROR_ACCESS_DENIED
Definition: compat.h:97
unsigned int BOOL
Definition: ntddk_ex.h:94
#define ERROR_FILE_NOT_FOUND
Definition: disk.h:79
struct SIP_ADD_NEWPROVIDER_ SIP_ADD_NEWPROVIDER
#define memset(x, y, z)
Definition: compat.h:39
WCHAR * pwszPutFuncName
Definition: mssip.h:153
WCHAR * pwszCreateFuncName
Definition: mssip.h:154
GUID * pgSubject
Definition: mssip.h:145
WCHAR * pwszGetCapFuncName
Definition: mssip.h:161
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
int ret
DWORD WINAPI GetLastError(void)
Definition: except.c:1042
__wchar_t WCHAR
Definition: xmlstorage.h:180

Referenced by START_TEST().

◆ test_SIPLoad()

static void test_SIPLoad ( void  )
static

Definition at line 308 of file sip.c.

309{
310 BOOL ret;
311 GUID subject;
312 static GUID dummySubject = { 0xdeadbeef, 0xdead, 0xbeef, { 0xde,0xad,0xbe,0xef,0xde,0xad,0xbe,0xef }};
313 static GUID unknown = { 0xC689AABA, 0x8E78, 0x11D0, { 0x8C,0x47,0x00,0xC0,0x4F,0xC2,0x95,0xEE }}; /* WINTRUST.DLL */
314 static GUID unknown2 = { 0xDE351A43, 0x8E59, 0x11D0, { 0x8C,0x47,0x00,0xC0,0x4F,0xC2,0x95,0xEE }}; /* WINTRUST.DLL */
315 /* The next SIP is available on Windows and on Wine */
316 static GUID unknown3 = { 0x000C10F1, 0x0000, 0x0000, { 0xC0,0x00,0x00,0x00,0x00,0x00,0x00,0x46 }}; /* MSISIP.DLL */
319
320 /* All NULL */
321 SetLastError(0xdeadbeef);
322 ret = CryptSIPLoad(NULL, 0, NULL);
323 ok ( !ret, "Expected CryptSIPLoad to fail\n");
325 "Expected ERROR_INVALID_PARAMETER, got 0x%08x\n", GetLastError());
326
327 /* Only pSipDispatch NULL */
328 SetLastError(0xdeadbeef);
329 ret = CryptSIPLoad(&subject, 0, NULL);
330 ok ( !ret, "Expected CryptSIPLoad to fail\n");
332 "Expected ERROR_INVALID_PARAMETER, got 0x%08x\n", GetLastError());
333
334 /* No NULLs, but nonexistent pgSubject */
335 SetLastError(0xdeadbeef);
336 memset(&sdi, 0, sizeof(SIP_DISPATCH_INFO));
337 sdi.cbSize = sizeof(SIP_DISPATCH_INFO);
338 sdi.pfGet = (pCryptSIPGetSignedDataMsg)0xdeadbeef;
339 ret = CryptSIPLoad(&dummySubject, 0, &sdi);
340 ok ( !ret, "Expected CryptSIPLoad to fail\n");
342 "Expected TRUST_E_SUBJECT_FORM_UNKNOWN, got 0x%08x\n", GetLastError());
343 ok( sdi.pfGet == (pCryptSIPGetSignedDataMsg)0xdeadbeef, "Expected no change to the function pointer\n");
344
345 hCrypt = GetModuleHandleA("crypt32.dll");
346 funcCryptSIPGetSignedDataMsg = (void*)GetProcAddress(hCrypt, "CryptSIPGetSignedDataMsg");
347 funcCryptSIPPutSignedDataMsg = (void*)GetProcAddress(hCrypt, "CryptSIPPutSignedDataMsg");
348 funcCryptSIPCreateIndirectData = (void*)GetProcAddress(hCrypt, "CryptSIPCreateIndirectData");
349 funcCryptSIPVerifyIndirectData = (void*)GetProcAddress(hCrypt, "CryptSIPVerifyIndirectData");
350 funcCryptSIPRemoveSignedDataMsg = (void*)GetProcAddress(hCrypt, "CryptSIPRemoveSignedDataMsg");
351
352 /* All OK */
353 SetLastError(0xdeadbeef);
354 memset(&sdi, 0, sizeof(SIP_DISPATCH_INFO));
355 sdi.cbSize = sizeof(SIP_DISPATCH_INFO);
356 sdi.pfGet = (pCryptSIPGetSignedDataMsg)0xdeadbeef;
357 ret = CryptSIPLoad(&unknown, 0, &sdi);
358 ok ( ret, "Expected CryptSIPLoad to succeed\n");
359 /* On native the last error will always be ERROR_PROC_NOT_FOUND as native searches for the function DllCanUnloadNow
360 * in WINTRUST.DLL (in this case). This function is not available in WINTRUST.DLL.
361 * For now there's no need to implement this is Wine as I doubt any program will rely on
362 * this last error when the call succeeded.
363 */
364 ok( sdi.pfGet != (pCryptSIPGetSignedDataMsg)0xdeadbeef, "Expected a function pointer to be loaded.\n");
365
366 /* The function addresses returned by CryptSIPLoad are actually the addresses of
367 * crypt32's own functions. A function calling these addresses will end up first
368 * calling crypt32 functions which in its turn call the equivalent in the SIP
369 * as dictated by the given GUID.
370 */
371 if (funcCryptSIPGetSignedDataMsg && funcCryptSIPPutSignedDataMsg && funcCryptSIPCreateIndirectData &&
372 funcCryptSIPVerifyIndirectData && funcCryptSIPRemoveSignedDataMsg)
373 ok (sdi.pfGet == funcCryptSIPGetSignedDataMsg &&
374 sdi.pfPut == funcCryptSIPPutSignedDataMsg &&
375 sdi.pfCreate == funcCryptSIPCreateIndirectData &&
376 sdi.pfVerify == funcCryptSIPVerifyIndirectData &&
377 sdi.pfRemove == funcCryptSIPRemoveSignedDataMsg,
378 "Expected function addresses to be from crypt32\n");
379 else
380 trace("Couldn't load function pointers\n");
381
382 /* All OK, but different GUID (same SIP though) */
383 SetLastError(0xdeadbeef);
384 memset(&sdi, 0, sizeof(SIP_DISPATCH_INFO));
385 sdi.cbSize = sizeof(SIP_DISPATCH_INFO);
386 sdi.pfGet = (pCryptSIPGetSignedDataMsg)0xdeadbeef;
387 ret = CryptSIPLoad(&unknown2, 0, &sdi);
388 ok ( ret, "Expected CryptSIPLoad to succeed\n");
389 /* This call on its own would have resulted in an ERROR_PROC_NOT_FOUND, but the previous
390 * call to CryptSIPLoad already loaded wintrust.dll. As this information is cached,
391 * CryptSIPLoad will not try to search for the already mentioned DllCanUnloadNow.
392 */
393 ok( sdi.pfGet != (pCryptSIPGetSignedDataMsg)0xdeadbeef, "Expected a function pointer to be loaded.\n");
394
395 /* All OK, but other SIP */
396 SetLastError(0xdeadbeef);
397 memset(&sdi, 0, sizeof(SIP_DISPATCH_INFO));
398 sdi.cbSize = sizeof(SIP_DISPATCH_INFO);
399 sdi.pfGet = (pCryptSIPGetSignedDataMsg)0xdeadbeef;
400 ret = CryptSIPLoad(&unknown3, 0, &sdi);
401 if (ret)
402 {
403 /* The SIP is known so we can safely assume that the next tests can be done */
404
405 /* As msisip.dll is not checked yet by any of the previous calls, the
406 * function DllCanUnloadNow will be checked again in msisip.dll (it's not present)
407 */
408 ok( sdi.pfGet != (pCryptSIPGetSignedDataMsg)0xdeadbeef, "Expected a function pointer to be loaded.\n");
409
410 /* This is another SIP but this test proves the function addresses are the same as
411 * in the previous test.
412 */
413 if (funcCryptSIPGetSignedDataMsg && funcCryptSIPPutSignedDataMsg && funcCryptSIPCreateIndirectData &&
414 funcCryptSIPVerifyIndirectData && funcCryptSIPRemoveSignedDataMsg)
415 ok (sdi.pfGet == funcCryptSIPGetSignedDataMsg &&
416 sdi.pfPut == funcCryptSIPPutSignedDataMsg &&
417 sdi.pfCreate == funcCryptSIPCreateIndirectData &&
418 sdi.pfVerify == funcCryptSIPVerifyIndirectData &&
419 sdi.pfRemove == funcCryptSIPRemoveSignedDataMsg,
420 "Expected function addresses to be from crypt32\n");
421 else
422 trace("Couldn't load function pointers\n");
423 }
424
425 /* Reserved parameter not 0 */
426 SetLastError(0xdeadbeef);
427 memset(&sdi, 0, sizeof(SIP_DISPATCH_INFO));
428 sdi.cbSize = sizeof(SIP_DISPATCH_INFO);
429 sdi.pfGet = (pCryptSIPGetSignedDataMsg)0xdeadbeef;
430 ret = CryptSIPLoad(&unknown, 1, &sdi);
431 ok ( !ret, "Expected CryptSIPLoad to fail\n");
433 "Expected ERROR_INVALID_PARAMETER, got 0x%08x\n", GetLastError());
434 ok( sdi.pfGet == (pCryptSIPGetSignedDataMsg)0xdeadbeef, "Expected no change to the function pointer\n");
435}
#define trace
Definition: atltest.h:70
static WCHAR unknown[MAX_STRING_RESOURCE_LEN]
Definition: object.c:1605
BOOL WINAPI CryptSIPLoad(const GUID *pgSubject, DWORD dwFlags, SIP_DISPATCH_INFO *pSipDispatch)
Definition: sip.c:690
#define GetProcAddress(x, y)
Definition: compat.h:753
HMODULE WINAPI DECLSPEC_HOTPATCH GetModuleHandleA(LPCSTR lpModuleName)
Definition: loader.c:812
static HMODULE hCrypt
Definition: main.c:31
BOOL(WINAPI * pCryptSIPGetSignedDataMsg)(SIP_SUBJECTINFO *, DWORD *, DWORD, DWORD *, BYTE *)
Definition: mssip.h:117
struct SIP_DISPATCH_INFO_ SIP_DISPATCH_INFO
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
#define TRUST_E_SUBJECT_FORM_UNKNOWN
Definition: winerror.h:3114

Referenced by START_TEST().

◆ test_SIPRetrieveSubjectGUID()

static void test_SIPRetrieveSubjectGUID ( void  )
static

Definition at line 143 of file sip.c.

144{
145 BOOL ret;
146 GUID subject;
147 HANDLE file;
148 static const CHAR windir[] = "windir";
149 static const CHAR regeditExe[] = "regedit.exe";
150 static const GUID nullSubject = { 0x0, 0x0, 0x0, { 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0 }};
151 static const WCHAR deadbeef[] = { 'c',':','\\','d','e','a','d','b','e','e','f','.','d','b','f',0 };
152 /* Couldn't find a name for this GUID, it's the one used for 95% of the files */
153 static const GUID unknownGUID = { 0xC689AAB8, 0x8E78, 0x11D0, { 0x8C,0x47,0x00,0xC0,0x4F,0xC2,0x95,0xEE }};
154 static const GUID cabGUID = { 0xc689aaba, 0x8e78, 0x11d0, {0x8c,0x47,0x00,0xc0,0x4f,0xc2,0x95,0xee }};
155 static CHAR regeditPath[MAX_PATH];
156 static WCHAR regeditPathW[MAX_PATH];
157 static CHAR path[MAX_PATH];
158 static CHAR tempfile[MAX_PATH];
159 static WCHAR tempfileW[MAX_PATH];
160 DWORD written;
161
162 /* NULL check */
163 SetLastError(0xdeadbeef);
165 ok ( !ret, "Expected CryptSIPRetrieveSubjectGuid to fail\n");
167 "Expected ERROR_INVALID_PARAMETER, got %d.\n", GetLastError());
168
169 /* Test with a nonexistent file (hopefully) */
170 SetLastError(0xdeadbeef);
171 /* Set subject to something other than zeros */
172 memset(&subject, 1, sizeof(GUID));
173 ret = CryptSIPRetrieveSubjectGuid(deadbeef, NULL, &subject);
174 ok ( !ret, "Expected CryptSIPRetrieveSubjectGuid to fail\n");
177 "Expected ERROR_FILE_NOT_FOUND or ERROR_PATH_NOT_FOUND, got %d.\n",
178 GetLastError());
179 ok(IsEqualGUID(&subject, &nullSubject),
180 "Expected a NULL GUID for c:\\deadbeef.dbf, not %s\n", wine_dbgstr_guid(&subject));
181
182 /* Now with an executable that should exist
183 *
184 * Use A-functions where possible as that should be available on all platforms
185 */
186 ret = GetEnvironmentVariableA(windir, regeditPath, MAX_PATH);
187 ok (ret > 0, "expected GEVA(windir) to succeed, last error %d\n", GetLastError());
188 strcat(regeditPath, "\\");
189 strcat(regeditPath, regeditExe);
190 MultiByteToWideChar(CP_ACP, 0, regeditPath, strlen(regeditPath)+1, regeditPathW,
191 ARRAY_SIZE(regeditPathW));
192
193 SetLastError(0xdeadbeef);
194 memset(&subject, 1, sizeof(GUID));
195 ret = CryptSIPRetrieveSubjectGuid(regeditPathW, NULL, &subject);
196 ok ( ret, "Expected CryptSIPRetrieveSubjectGuid to succeed\n");
197 ok(IsEqualGUID(&subject, &unknownGUID),
198 "Expected (%s), got (%s).\n", wine_dbgstr_guid(&unknownGUID), wine_dbgstr_guid(&subject));
199
200 /* The same thing but now with a handle instead of a filename */
201 file = CreateFileA(regeditPath, GENERIC_READ, 0, NULL, OPEN_EXISTING, 0, NULL);
202 SetLastError(0xdeadbeef);
203 memset(&subject, 1, sizeof(GUID));
205 ok ( ret, "Expected CryptSIPRetrieveSubjectGuid to succeed\n");
206 ok(IsEqualGUID(&subject, &unknownGUID),
207 "Expected (%s), got (%s).\n", wine_dbgstr_guid(&unknownGUID), wine_dbgstr_guid(&subject));
209
210 /* And both */
211 file = CreateFileA(regeditPath, GENERIC_READ, 0, NULL, OPEN_EXISTING, 0, NULL);
212 SetLastError(0xdeadbeef);
213 memset(&subject, 1, sizeof(GUID));
214 ret = CryptSIPRetrieveSubjectGuid(regeditPathW, file, &subject);
215 ok ( ret, "Expected CryptSIPRetrieveSubjectGuid to succeed\n");
216 ok(IsEqualGUID(&subject, &unknownGUID),
217 "Expected (%s), got (%s).\n", wine_dbgstr_guid(&unknownGUID), wine_dbgstr_guid(&subject));
219
220 /* Now with an empty file */
221 GetTempPathA(sizeof(path), path);
222 GetTempFileNameA(path, "sip", 0 , tempfile);
223 MultiByteToWideChar(CP_ACP, 0, tempfile, strlen(tempfile)+1, tempfileW, ARRAY_SIZE(tempfileW));
224
225 SetLastError(0xdeadbeef);
226 memset(&subject, 1, sizeof(GUID));
228 ok ( !ret, "Expected CryptSIPRetrieveSubjectGuid to fail\n");
230 GetLastError() == ERROR_INVALID_PARAMETER /* Vista */ ||
231 GetLastError() == ERROR_SUCCESS /* most Win98 */ ||
232 GetLastError() == TRUST_E_SUBJECT_FORM_UNKNOWN /* some Win98 */,
233 "Expected ERROR_FILE_INVALID, ERROR_INVALID_PARAMETER, ERROR_SUCCESS or TRUST_E_SUBJECT_FORM_UNKNOWN, got 0x%08x\n", GetLastError());
234 ok(IsEqualGUID(&subject, &nullSubject),
235 "Expected a NULL GUID for empty file %s, not %s\n", tempfile, wine_dbgstr_guid(&subject));
236
237 /* Use a file with a size of 3 (at least < 4) */
238 file = CreateFileA(tempfile, GENERIC_WRITE, 0, NULL, OPEN_EXISTING, 0, NULL);
239 WriteFile(file, "123", 3, &written, NULL);
241
242 SetLastError(0xdeadbeef);
243 memset(&subject, 1, sizeof(GUID));
245 ok ( !ret, "Expected CryptSIPRetrieveSubjectGuid to fail\n");
247 GetLastError() == ERROR_SUCCESS /* most Win98 */ ||
248 GetLastError() == TRUST_E_SUBJECT_FORM_UNKNOWN /* some Win98 */,
249 "Expected ERROR_INVALID_PARAMETER, ERROR_SUCCESS or TRUST_E_SUBJECT_FORM_UNKNOWN, got 0x%08x\n", GetLastError());
250 ok(IsEqualGUID(&subject, &nullSubject),
251 "Expected a NULL GUID for empty file %s, not %s\n", tempfile, wine_dbgstr_guid(&subject));
252
253 /* And now >= 4 */
254 file = CreateFileA(tempfile, GENERIC_WRITE, 0, NULL, OPEN_EXISTING, 0, NULL);
255 WriteFile(file, "1234", 4, &written, NULL);
257
258 SetLastError(0xdeadbeef);
259 memset(&subject, 1, sizeof(GUID));
261 ok ( !ret, "Expected CryptSIPRetrieveSubjectGuid to fail\n");
263 GetLastError() == ERROR_SUCCESS /* Win98 */,
264 "Expected TRUST_E_SUBJECT_FORM_UNKNOWN or ERROR_SUCCESS, got 0x%08x\n", GetLastError());
265 ok(IsEqualGUID(&subject, &nullSubject),
266 "Expected a NULL GUID for empty file %s, not %s\n", tempfile, wine_dbgstr_guid(&subject));
267
268 /* Clean up */
269 DeleteFileA(tempfile);
270
271 /* Create a file with just the .cab header 'MSCF' */
272 SetLastError(0xdeadbeef);
273 file = CreateFileA(tempfile, GENERIC_WRITE, 0, NULL, CREATE_NEW, 0, NULL);
274 ok(file != INVALID_HANDLE_VALUE, "failed with %u\n", GetLastError());
275 WriteFile(file, cabFileData, 4, &written, NULL);
277
278 SetLastError(0xdeadbeef);
279 memset(&subject, 1, sizeof(GUID));
281 ok( ret, "CryptSIPRetrieveSubjectGuid failed: %d (0x%08x)\n",
283 ok(IsEqualGUID(&subject, &cabGUID),
284 "Expected GUID %s for cabinet file, not %s\n", wine_dbgstr_guid(&cabGUID), wine_dbgstr_guid(&subject));
285
286 /* Clean up */
287 DeleteFileA(tempfile);
288
289 /* Create a .cab file */
290 SetLastError(0xdeadbeef);
291 file = CreateFileA(tempfile, GENERIC_WRITE, 0, NULL, CREATE_NEW, 0, NULL);
292 ok(file != INVALID_HANDLE_VALUE, "failed with %u\n", GetLastError());
293 WriteFile(file, cabFileData, sizeof(cabFileData), &written, NULL);
295
296 SetLastError(0xdeadbeef);
297 memset(&subject, 1, sizeof(GUID));
299 ok( ret, "CryptSIPRetrieveSubjectGuid failed: %d (0x%08x)\n",
301 ok(IsEqualGUID(&subject, &cabGUID),
302 "Expected GUID %s for cabinet file, not %s\n", wine_dbgstr_guid(&cabGUID), wine_dbgstr_guid(&subject));
303
304 /* Clean up */
305 DeleteFileA(tempfile);
306}
char * strcat(char *DstString, const char *SrcString)
Definition: utclib.c:568
ACPI_SIZE strlen(const char *String)
Definition: utclib.c:269
#define ARRAY_SIZE(A)
Definition: main.h:33
#define ERROR_SUCCESS
Definition: deptool.c:10
BOOL WINAPI CryptSIPRetrieveSubjectGuid(LPCWSTR FileName, HANDLE hFileIn, GUID *pgSubject)
Definition: sip.c:310
#define CloseHandle
Definition: compat.h:739
#define CP_ACP
Definition: compat.h:109
#define OPEN_EXISTING
Definition: compat.h:775
#define INVALID_HANDLE_VALUE
Definition: compat.h:731
#define CreateFileA(a, b, c, d, e, f, g)
Definition: compat.h:740
#define GENERIC_READ
Definition: compat.h:135
#define MAX_PATH
Definition: compat.h:34
#define GetEnvironmentVariableA(x, y, z)
Definition: compat.h:754
#define MultiByteToWideChar
Definition: compat.h:110
BOOL WINAPI DeleteFileA(IN LPCSTR lpFileName)
Definition: delete.c:24
BOOL WINAPI WriteFile(IN HANDLE hFile, IN LPCVOID lpBuffer, IN DWORD nNumberOfBytesToWrite OPTIONAL, OUT LPDWORD lpNumberOfBytesWritten, IN LPOVERLAPPED lpOverlapped OPTIONAL)
Definition: rw.c:24
DWORD WINAPI GetTempPathA(IN DWORD nBufferLength, OUT LPSTR lpBuffer)
Definition: path.c:2054
static const GUID cabGUID
Definition: crypt.c:1367
UINT WINAPI GetTempFileNameA(IN LPCSTR lpPathName, IN LPCSTR lpPrefixString, IN UINT uUnique, OUT LPSTR lpTempFileName)
Definition: filename.c:26
unsigned long DWORD
Definition: ntddk_ex.h:95
static WCHAR tempfileW[MAX_PATH]
Definition: localmon.c:131
#define CREATE_NEW
Definition: disk.h:69
static const BYTE cabFileData[]
Definition: sip.c:135
#define GENERIC_WRITE
Definition: nt_native.h:90
#define IsEqualGUID(rguid1, rguid2)
Definition: guiddef.h:147
static __inline const char * wine_dbgstr_guid(const GUID *id)
Definition: debug.h:197
Definition: fci.c:127
#define ERROR_PATH_NOT_FOUND
Definition: winerror.h:106
#define ERROR_FILE_INVALID
Definition: winerror.h:585
char CHAR
Definition: xmlstorage.h:175

Referenced by START_TEST().

Variable Documentation

◆ cabFileData

const BYTE cabFileData[]
static
Initial value:
= {
0x4d,0x53,0x43,0x46,0x00,0x00,0x00,0x00,0x50,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x2c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x03,0x01,0x01,0x00,0x01,0x00,0x00,0x00,
0xef,0xbe,0xff,0xff,0x42,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x06,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0xf7,0x38,0x4b,0xac,0x00,0x00,0x61,0x2e,0x74,0x78,
0x74,0x00,0x6d,0x5a,0x72,0x78,0x06,0x00,0x06,0x00,0x61,0x2e,0x74,0x78,0x74,0x0a,
}

Definition at line 135 of file sip.c.

Referenced by test_SIPRetrieveSubjectGUID().

◆ DWORD

Definition at line 33 of file sip.c.