ddraw: Declare some functions static.
[wine] / dlls / advapi32 / tests / security.c
1 /*
2  * Unit tests for security functions
3  *
4  * Copyright (c) 2004 Mike McCormack
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 "ntstatus.h"
25 #define WIN32_NO_STATUS
26 #include "windef.h"
27 #include "winbase.h"
28 #include "winerror.h"
29 #include "aclapi.h"
30 #include "winnt.h"
31 #include "sddl.h"
32 #include "ntsecapi.h"
33 #include "lmcons.h"
34
35 #include "wine/test.h"
36
37 typedef VOID (WINAPI *fnBuildTrusteeWithSidA)( PTRUSTEEA pTrustee, PSID pSid );
38 typedef VOID (WINAPI *fnBuildTrusteeWithNameA)( PTRUSTEEA pTrustee, LPSTR pName );
39 typedef VOID (WINAPI *fnBuildTrusteeWithObjectsAndNameA)( PTRUSTEEA pTrustee,
40                                                           POBJECTS_AND_NAME_A pObjName,
41                                                           SE_OBJECT_TYPE ObjectType,
42                                                           LPSTR ObjectTypeName,
43                                                           LPSTR InheritedObjectTypeName,
44                                                           LPSTR Name );
45 typedef VOID (WINAPI *fnBuildTrusteeWithObjectsAndSidA)( PTRUSTEEA pTrustee,
46                                                          POBJECTS_AND_SID pObjSid,
47                                                          GUID* pObjectGuid,
48                                                          GUID* pInheritedObjectGuid,
49                                                          PSID pSid );
50 typedef LPSTR (WINAPI *fnGetTrusteeNameA)( PTRUSTEEA pTrustee );
51 typedef BOOL (WINAPI *fnConvertSidToStringSidA)( PSID pSid, LPSTR *str );
52 typedef BOOL (WINAPI *fnConvertStringSidToSidA)( LPCSTR str, PSID pSid );
53 typedef BOOL (WINAPI *fnGetFileSecurityA)(LPCSTR, SECURITY_INFORMATION,
54                                           PSECURITY_DESCRIPTOR, DWORD, LPDWORD);
55 typedef DWORD (WINAPI *fnRtlAdjustPrivilege)(ULONG,BOOLEAN,BOOLEAN,PBOOLEAN);
56 typedef BOOL (WINAPI *fnCreateWellKnownSid)(WELL_KNOWN_SID_TYPE,PSID,PSID,DWORD*);
57
58 typedef NTSTATUS (WINAPI *fnLsaQueryInformationPolicy)(LSA_HANDLE,POLICY_INFORMATION_CLASS,PVOID*);
59 typedef NTSTATUS (WINAPI *fnLsaClose)(LSA_HANDLE);
60 typedef NTSTATUS (WINAPI *fnLsaFreeMemory)(PVOID);
61 typedef NTSTATUS (WINAPI *fnLsaOpenPolicy)(PLSA_UNICODE_STRING,PLSA_OBJECT_ATTRIBUTES,ACCESS_MASK,PLSA_HANDLE);
62
63 static HMODULE hmod;
64
65 fnBuildTrusteeWithSidA   pBuildTrusteeWithSidA;
66 fnBuildTrusteeWithNameA  pBuildTrusteeWithNameA;
67 fnBuildTrusteeWithObjectsAndNameA pBuildTrusteeWithObjectsAndNameA;
68 fnBuildTrusteeWithObjectsAndSidA pBuildTrusteeWithObjectsAndSidA;
69 fnGetTrusteeNameA pGetTrusteeNameA;
70 fnConvertSidToStringSidA pConvertSidToStringSidA;
71 fnConvertStringSidToSidA pConvertStringSidToSidA;
72 fnGetFileSecurityA pGetFileSecurityA;
73 fnRtlAdjustPrivilege pRtlAdjustPrivilege;
74 fnCreateWellKnownSid pCreateWellKnownSid;
75 fnLsaQueryInformationPolicy pLsaQueryInformationPolicy;
76 fnLsaClose pLsaClose;
77 fnLsaFreeMemory pLsaFreeMemory;
78 fnLsaOpenPolicy pLsaOpenPolicy;
79
80 struct sidRef
81 {
82     SID_IDENTIFIER_AUTHORITY auth;
83     const char *refStr;
84 };
85
86 static void init(void)
87 {
88     hmod = GetModuleHandle("advapi32.dll");
89 }
90
91 static void test_str_sid(const char *str_sid)
92 {
93     PSID psid;
94     char *temp;
95
96     if (pConvertStringSidToSidA(str_sid, &psid))
97     {
98         if (pConvertSidToStringSidA(psid, &temp))
99         {
100             trace(" %s: %s\n", str_sid, temp);
101             LocalFree(temp);
102         }
103         LocalFree(psid);
104     }
105     else
106     {
107         if (GetLastError() != ERROR_INVALID_SID)
108             trace(" %s: couldn't be converted, returned %d\n", str_sid, GetLastError());
109         else
110             trace(" %s: couldn't be converted\n", str_sid);
111     }
112 }
113
114 static void test_sid(void)
115 {
116     struct sidRef refs[] = {
117      { { {0x00,0x00,0x33,0x44,0x55,0x66} }, "S-1-860116326-1" },
118      { { {0x00,0x00,0x01,0x02,0x03,0x04} }, "S-1-16909060-1"  },
119      { { {0x00,0x00,0x00,0x01,0x02,0x03} }, "S-1-66051-1"     },
120      { { {0x00,0x00,0x00,0x00,0x01,0x02} }, "S-1-258-1"       },
121      { { {0x00,0x00,0x00,0x00,0x00,0x02} }, "S-1-2-1"         },
122      { { {0x00,0x00,0x00,0x00,0x00,0x0c} }, "S-1-12-1"        },
123     };
124     const char noSubAuthStr[] = "S-1-5";
125     unsigned int i;
126     PSID psid = NULL;
127     BOOL r;
128     LPSTR str = NULL;
129
130     pConvertSidToStringSidA = (fnConvertSidToStringSidA)
131                     GetProcAddress( hmod, "ConvertSidToStringSidA" );
132     if( !pConvertSidToStringSidA )
133         return;
134     pConvertStringSidToSidA = (fnConvertStringSidToSidA)
135                     GetProcAddress( hmod, "ConvertStringSidToSidA" );
136     if( !pConvertStringSidToSidA )
137         return;
138
139     r = pConvertStringSidToSidA( NULL, NULL );
140     ok( !r, "expected failure with NULL parameters\n" );
141     if( GetLastError() == ERROR_CALL_NOT_IMPLEMENTED )
142         return;
143     ok( GetLastError() == ERROR_INVALID_PARAMETER,
144      "expected GetLastError() is ERROR_INVALID_PARAMETER, got %d\n",
145      GetLastError() );
146
147     r = pConvertStringSidToSidA( refs[0].refStr, NULL );
148     ok( !r && GetLastError() == ERROR_INVALID_PARAMETER,
149      "expected GetLastError() is ERROR_INVALID_PARAMETER, got %d\n",
150      GetLastError() );
151
152     r = pConvertStringSidToSidA( NULL, &str );
153     ok( !r && GetLastError() == ERROR_INVALID_PARAMETER,
154      "expected GetLastError() is ERROR_INVALID_PARAMETER, got %d\n",
155      GetLastError() );
156
157     r = pConvertStringSidToSidA( noSubAuthStr, &psid );
158     ok( !r,
159      "expected failure with no sub authorities\n" );
160     ok( GetLastError() == ERROR_INVALID_SID,
161      "expected GetLastError() is ERROR_INVALID_SID, got %d\n",
162      GetLastError() );
163
164     for( i = 0; i < sizeof(refs) / sizeof(refs[0]); i++ )
165     {
166         PISID pisid;
167
168         r = AllocateAndInitializeSid( &refs[i].auth, 1,1,0,0,0,0,0,0,0,
169          &psid );
170         ok( r, "failed to allocate sid\n" );
171         r = pConvertSidToStringSidA( psid, &str );
172         ok( r, "failed to convert sid\n" );
173         if (r)
174         {
175             ok( !strcmp( str, refs[i].refStr ),
176                 "incorrect sid, expected %s, got %s\n", refs[i].refStr, str );
177             LocalFree( str );
178         }
179         if( psid )
180             FreeSid( psid );
181
182         r = pConvertStringSidToSidA( refs[i].refStr, &psid );
183         ok( r, "failed to parse sid string\n" );
184         pisid = (PISID)psid;
185         ok( pisid &&
186          !memcmp( pisid->IdentifierAuthority.Value, refs[i].auth.Value,
187          sizeof(refs[i].auth) ),
188          "string sid %s didn't parse to expected value\n"
189          "(got 0x%04x%08x, expected 0x%04x%08x)\n",
190          refs[i].refStr,
191          MAKEWORD( pisid->IdentifierAuthority.Value[1],
192          pisid->IdentifierAuthority.Value[0] ),
193          MAKELONG( MAKEWORD( pisid->IdentifierAuthority.Value[5],
194          pisid->IdentifierAuthority.Value[4] ),
195          MAKEWORD( pisid->IdentifierAuthority.Value[3],
196          pisid->IdentifierAuthority.Value[2] ) ),
197          MAKEWORD( refs[i].auth.Value[1], refs[i].auth.Value[0] ),
198          MAKELONG( MAKEWORD( refs[i].auth.Value[5], refs[i].auth.Value[4] ),
199          MAKEWORD( refs[i].auth.Value[3], refs[i].auth.Value[2] ) ) );
200         if( psid )
201             LocalFree( psid );
202     }
203
204     trace("String SIDs:\n");
205     test_str_sid("AO");
206     test_str_sid("RU");
207     test_str_sid("AN");
208     test_str_sid("AU");
209     test_str_sid("BA");
210     test_str_sid("BG");
211     test_str_sid("BO");
212     test_str_sid("BU");
213     test_str_sid("CA");
214     test_str_sid("CG");
215     test_str_sid("CO");
216     test_str_sid("DA");
217     test_str_sid("DC");
218     test_str_sid("DD");
219     test_str_sid("DG");
220     test_str_sid("DU");
221     test_str_sid("EA");
222     test_str_sid("ED");
223     test_str_sid("WD");
224     test_str_sid("PA");
225     test_str_sid("IU");
226     test_str_sid("LA");
227     test_str_sid("LG");
228     test_str_sid("LS");
229     test_str_sid("SY");
230     test_str_sid("NU");
231     test_str_sid("NO");
232     test_str_sid("NS");
233     test_str_sid("PO");
234     test_str_sid("PS");
235     test_str_sid("PU");
236     test_str_sid("RS");
237     test_str_sid("RD");
238     test_str_sid("RE");
239     test_str_sid("RC");
240     test_str_sid("SA");
241     test_str_sid("SO");
242     test_str_sid("SU");
243 }
244
245 static void test_trustee(void)
246 {
247     GUID ObjectType = {0x12345678, 0x1234, 0x5678, {0x11, 0x22, 0x33, 0x44, 0x55, 0x66, 0x77, 0x88}};
248     GUID InheritedObjectType = {0x23456789, 0x2345, 0x6786, {0x2, 0x33, 0x44, 0x55, 0x66, 0x77, 0x88, 0x99}};
249     GUID ZeroGuid;
250     OBJECTS_AND_NAME_ oan;
251     OBJECTS_AND_SID oas;
252     TRUSTEE trustee;
253     PSID psid;
254     char szObjectTypeName[] = "ObjectTypeName";
255     char szInheritedObjectTypeName[] = "InheritedObjectTypeName";
256     char szTrusteeName[] = "szTrusteeName";
257     SID_IDENTIFIER_AUTHORITY auth = { {0x11,0x22,0,0,0, 0} };
258
259     memset( &ZeroGuid, 0x00, sizeof (ZeroGuid) );
260
261     pBuildTrusteeWithSidA = (fnBuildTrusteeWithSidA)
262                     GetProcAddress( hmod, "BuildTrusteeWithSidA" );
263     pBuildTrusteeWithNameA = (fnBuildTrusteeWithNameA)
264                     GetProcAddress( hmod, "BuildTrusteeWithNameA" );
265     pBuildTrusteeWithObjectsAndNameA = (fnBuildTrusteeWithObjectsAndNameA)
266                     GetProcAddress (hmod, "BuildTrusteeWithObjectsAndNameA" );
267     pBuildTrusteeWithObjectsAndSidA = (fnBuildTrusteeWithObjectsAndSidA)
268                     GetProcAddress (hmod, "BuildTrusteeWithObjectsAndSidA" );
269     pGetTrusteeNameA = (fnGetTrusteeNameA)
270                     GetProcAddress (hmod, "GetTrusteeNameA" );
271     if( !pBuildTrusteeWithSidA || !pBuildTrusteeWithNameA ||
272         !pBuildTrusteeWithObjectsAndNameA || !pBuildTrusteeWithObjectsAndSidA ||
273         !pGetTrusteeNameA )
274         return;
275
276     if ( ! AllocateAndInitializeSid( &auth, 1, 42, 0,0,0,0,0,0,0,&psid ) )
277     {
278         trace( "failed to init SID\n" );
279        return;
280     }
281
282     /* test BuildTrusteeWithSidA */
283     memset( &trustee, 0xff, sizeof trustee );
284     pBuildTrusteeWithSidA( &trustee, psid );
285
286     ok( trustee.pMultipleTrustee == NULL, "pMultipleTrustee wrong\n");
287     ok( trustee.MultipleTrusteeOperation == NO_MULTIPLE_TRUSTEE, 
288         "MultipleTrusteeOperation wrong\n");
289     ok( trustee.TrusteeForm == TRUSTEE_IS_SID, "TrusteeForm wrong\n");
290     ok( trustee.TrusteeType == TRUSTEE_IS_UNKNOWN, "TrusteeType wrong\n");
291     ok( trustee.ptstrName == (LPSTR) psid, "ptstrName wrong\n" );
292
293     /* test BuildTrusteeWithObjectsAndSidA (test 1) */
294     memset( &trustee, 0xff, sizeof trustee );
295     memset( &oas, 0xff, sizeof(oas) );
296     pBuildTrusteeWithObjectsAndSidA(&trustee, &oas, &ObjectType,
297                                     &InheritedObjectType, psid);
298
299     ok(trustee.pMultipleTrustee == NULL, "pMultipleTrustee wrong\n");
300     ok(trustee.MultipleTrusteeOperation == NO_MULTIPLE_TRUSTEE, "MultipleTrusteeOperation wrong\n");
301     ok(trustee.TrusteeForm == TRUSTEE_IS_OBJECTS_AND_SID, "TrusteeForm wrong\n");
302     ok(trustee.TrusteeType == TRUSTEE_IS_UNKNOWN, "TrusteeType wrong\n");
303     ok(trustee.ptstrName == (LPSTR)&oas, "ptstrName wrong\n");
304  
305     ok(oas.ObjectsPresent == (ACE_OBJECT_TYPE_PRESENT | ACE_INHERITED_OBJECT_TYPE_PRESENT), "ObjectsPresent wrong\n");
306     ok(!memcmp(&oas.ObjectTypeGuid, &ObjectType, sizeof(GUID)), "ObjectTypeGuid wrong\n");
307     ok(!memcmp(&oas.InheritedObjectTypeGuid, &InheritedObjectType, sizeof(GUID)), "InheritedObjectTypeGuid wrong\n");
308     ok(oas.pSid == psid, "pSid wrong\n");
309
310     /* test GetTrusteeNameA */
311     ok(pGetTrusteeNameA(&trustee) == (LPSTR)&oas, "GetTrusteeName returned wrong value\n");
312
313     /* test BuildTrusteeWithObjectsAndSidA (test 2) */
314     memset( &trustee, 0xff, sizeof trustee );
315     memset( &oas, 0xff, sizeof(oas) );
316     pBuildTrusteeWithObjectsAndSidA(&trustee, &oas, NULL,
317                                     &InheritedObjectType, psid);
318
319     ok(trustee.pMultipleTrustee == NULL, "pMultipleTrustee wrong\n");
320     ok(trustee.MultipleTrusteeOperation == NO_MULTIPLE_TRUSTEE, "MultipleTrusteeOperation wrong\n");
321     ok(trustee.TrusteeForm == TRUSTEE_IS_OBJECTS_AND_SID, "TrusteeForm wrong\n");
322     ok(trustee.TrusteeType == TRUSTEE_IS_UNKNOWN, "TrusteeType wrong\n");
323     ok(trustee.ptstrName == (LPSTR)&oas, "ptstrName wrong\n");
324  
325     ok(oas.ObjectsPresent == ACE_INHERITED_OBJECT_TYPE_PRESENT, "ObjectsPresent wrong\n");
326     ok(!memcmp(&oas.ObjectTypeGuid, &ZeroGuid, sizeof(GUID)), "ObjectTypeGuid wrong\n");
327     ok(!memcmp(&oas.InheritedObjectTypeGuid, &InheritedObjectType, sizeof(GUID)), "InheritedObjectTypeGuid wrong\n");
328     ok(oas.pSid == psid, "pSid wrong\n");
329
330     FreeSid( psid );
331
332     /* test BuildTrusteeWithNameA */
333     memset( &trustee, 0xff, sizeof trustee );
334     pBuildTrusteeWithNameA( &trustee, szTrusteeName );
335
336     ok( trustee.pMultipleTrustee == NULL, "pMultipleTrustee wrong\n");
337     ok( trustee.MultipleTrusteeOperation == NO_MULTIPLE_TRUSTEE, 
338         "MultipleTrusteeOperation wrong\n");
339     ok( trustee.TrusteeForm == TRUSTEE_IS_NAME, "TrusteeForm wrong\n");
340     ok( trustee.TrusteeType == TRUSTEE_IS_UNKNOWN, "TrusteeType wrong\n");
341     ok( trustee.ptstrName == szTrusteeName, "ptstrName wrong\n" );
342
343     /* test BuildTrusteeWithObjectsAndNameA (test 1) */
344     memset( &trustee, 0xff, sizeof trustee );
345     memset( &oan, 0xff, sizeof(oan) );
346     pBuildTrusteeWithObjectsAndNameA(&trustee, &oan, SE_KERNEL_OBJECT, szObjectTypeName,
347                                      szInheritedObjectTypeName, szTrusteeName);
348
349     ok(trustee.pMultipleTrustee == NULL, "pMultipleTrustee wrong\n");
350     ok(trustee.MultipleTrusteeOperation == NO_MULTIPLE_TRUSTEE, "MultipleTrusteeOperation wrong\n");
351     ok(trustee.TrusteeForm == TRUSTEE_IS_OBJECTS_AND_NAME, "TrusteeForm wrong\n");
352     ok(trustee.TrusteeType == TRUSTEE_IS_UNKNOWN, "TrusteeType wrong\n");
353     ok(trustee.ptstrName == (LPTSTR)&oan, "ptstrName wrong\n");
354  
355     ok(oan.ObjectsPresent == (ACE_OBJECT_TYPE_PRESENT | ACE_INHERITED_OBJECT_TYPE_PRESENT), "ObjectsPresent wrong\n");
356     ok(oan.ObjectType == SE_KERNEL_OBJECT, "ObjectType wrong\n");
357     ok(oan.InheritedObjectTypeName == szInheritedObjectTypeName, "InheritedObjectTypeName wrong\n");
358     ok(oan.ptstrName == szTrusteeName, "szTrusteeName wrong\n");
359
360     /* test GetTrusteeNameA */
361     ok(pGetTrusteeNameA(&trustee) == (LPSTR)&oan, "GetTrusteeName returned wrong value\n");
362
363     /* test BuildTrusteeWithObjectsAndNameA (test 2) */
364     memset( &trustee, 0xff, sizeof trustee );
365     memset( &oan, 0xff, sizeof(oan) );
366     pBuildTrusteeWithObjectsAndNameA(&trustee, &oan, SE_KERNEL_OBJECT, NULL,
367                                      szInheritedObjectTypeName, szTrusteeName);
368
369     ok(trustee.pMultipleTrustee == NULL, "pMultipleTrustee wrong\n");
370     ok(trustee.MultipleTrusteeOperation == NO_MULTIPLE_TRUSTEE, "MultipleTrusteeOperation wrong\n");
371     ok(trustee.TrusteeForm == TRUSTEE_IS_OBJECTS_AND_NAME, "TrusteeForm wrong\n");
372     ok(trustee.TrusteeType == TRUSTEE_IS_UNKNOWN, "TrusteeType wrong\n");
373     ok(trustee.ptstrName == (LPSTR)&oan, "ptstrName wrong\n");
374  
375     ok(oan.ObjectsPresent == ACE_INHERITED_OBJECT_TYPE_PRESENT, "ObjectsPresent wrong\n");
376     ok(oan.ObjectType == SE_KERNEL_OBJECT, "ObjectType wrong\n");
377     ok(oan.InheritedObjectTypeName == szInheritedObjectTypeName, "InheritedObjectTypeName wrong\n");
378     ok(oan.ptstrName == szTrusteeName, "szTrusteeName wrong\n");
379
380     /* test BuildTrusteeWithObjectsAndNameA (test 3) */
381     memset( &trustee, 0xff, sizeof trustee );
382     memset( &oan, 0xff, sizeof(oan) );
383     pBuildTrusteeWithObjectsAndNameA(&trustee, &oan, SE_KERNEL_OBJECT, szObjectTypeName,
384                                      NULL, szTrusteeName);
385
386     ok(trustee.pMultipleTrustee == NULL, "pMultipleTrustee wrong\n");
387     ok(trustee.MultipleTrusteeOperation == NO_MULTIPLE_TRUSTEE, "MultipleTrusteeOperation wrong\n");
388     ok(trustee.TrusteeForm == TRUSTEE_IS_OBJECTS_AND_NAME, "TrusteeForm wrong\n");
389     ok(trustee.TrusteeType == TRUSTEE_IS_UNKNOWN, "TrusteeType wrong\n");
390     ok(trustee.ptstrName == (LPTSTR)&oan, "ptstrName wrong\n");
391  
392     ok(oan.ObjectsPresent == ACE_OBJECT_TYPE_PRESENT, "ObjectsPresent wrong\n");
393     ok(oan.ObjectType == SE_KERNEL_OBJECT, "ObjectType wrong\n");
394     ok(oan.InheritedObjectTypeName == NULL, "InheritedObjectTypeName wrong\n");
395     ok(oan.ptstrName == szTrusteeName, "szTrusteeName wrong\n");
396 }
397  
398 /* If the first isn't defined, assume none is */
399 #ifndef SE_MIN_WELL_KNOWN_PRIVILEGE
400 #define SE_MIN_WELL_KNOWN_PRIVILEGE       2L
401 #define SE_CREATE_TOKEN_PRIVILEGE         2L
402 #define SE_ASSIGNPRIMARYTOKEN_PRIVILEGE   3L
403 #define SE_LOCK_MEMORY_PRIVILEGE          4L
404 #define SE_INCREASE_QUOTA_PRIVILEGE       5L
405 #define SE_MACHINE_ACCOUNT_PRIVILEGE      6L
406 #define SE_TCB_PRIVILEGE                  7L
407 #define SE_SECURITY_PRIVILEGE             8L
408 #define SE_TAKE_OWNERSHIP_PRIVILEGE       9L
409 #define SE_LOAD_DRIVER_PRIVILEGE         10L
410 #define SE_SYSTEM_PROFILE_PRIVILEGE      11L
411 #define SE_SYSTEMTIME_PRIVILEGE          12L
412 #define SE_PROF_SINGLE_PROCESS_PRIVILEGE 13L
413 #define SE_INC_BASE_PRIORITY_PRIVILEGE   14L
414 #define SE_CREATE_PAGEFILE_PRIVILEGE     15L
415 #define SE_CREATE_PERMANENT_PRIVILEGE    16L
416 #define SE_BACKUP_PRIVILEGE              17L
417 #define SE_RESTORE_PRIVILEGE             18L
418 #define SE_SHUTDOWN_PRIVILEGE            19L
419 #define SE_DEBUG_PRIVILEGE               20L
420 #define SE_AUDIT_PRIVILEGE               21L
421 #define SE_SYSTEM_ENVIRONMENT_PRIVILEGE  22L
422 #define SE_CHANGE_NOTIFY_PRIVILLEGE      23L
423 #define SE_REMOTE_SHUTDOWN_PRIVILEGE     24L
424 #define SE_UNDOCK_PRIVILEGE              25L
425 #define SE_SYNC_AGENT_PRIVILEGE          26L
426 #define SE_ENABLE_DELEGATION_PRIVILEGE   27L
427 #define SE_MANAGE_VOLUME_PRIVILEGE       28L
428 #define SE_IMPERSONATE_PRIVILEGE         29L
429 #define SE_CREATE_GLOBAL_PRIVILEGE       30L
430 #define SE_MAX_WELL_KNOWN_PRIVILEGE      SE_CREATE_GLOBAL_PRIVILEGE
431 #endif /* ndef SE_MIN_WELL_KNOWN_PRIVILEGE */
432
433 static void test_allocateLuid(void)
434 {
435     BOOL (WINAPI *pAllocateLocallyUniqueId)(PLUID);
436     LUID luid1, luid2;
437     BOOL ret;
438
439     pAllocateLocallyUniqueId = (void*)GetProcAddress(hmod, "AllocateLocallyUniqueId");
440     if (!pAllocateLocallyUniqueId) return;
441
442     ret = pAllocateLocallyUniqueId(&luid1);
443     if (!ret && GetLastError() == ERROR_CALL_NOT_IMPLEMENTED)
444         return;
445
446     ok(ret,
447      "AllocateLocallyUniqueId failed: %d\n", GetLastError());
448     ret = pAllocateLocallyUniqueId(&luid2);
449     ok( ret,
450      "AllocateLocallyUniqueId failed: %d\n", GetLastError());
451     ok(luid1.LowPart > SE_MAX_WELL_KNOWN_PRIVILEGE || luid1.HighPart != 0,
452      "AllocateLocallyUniqueId returned a well-known LUID\n");
453     ok(luid1.LowPart != luid2.LowPart || luid1.HighPart != luid2.HighPart,
454      "AllocateLocallyUniqueId returned non-unique LUIDs\n");
455     ret = pAllocateLocallyUniqueId(NULL);
456     ok( !ret && GetLastError() == ERROR_NOACCESS,
457      "AllocateLocallyUniqueId(NULL) didn't return ERROR_NOACCESS: %d\n",
458      GetLastError());
459 }
460
461 static void test_lookupPrivilegeName(void)
462 {
463     BOOL (WINAPI *pLookupPrivilegeNameA)(LPCSTR, PLUID, LPSTR, LPDWORD);
464     char buf[MAX_PATH]; /* arbitrary, seems long enough */
465     DWORD cchName = sizeof(buf);
466     LUID luid = { 0, 0 };
467     LONG i;
468     BOOL ret;
469
470     /* check whether it's available first */
471     pLookupPrivilegeNameA = (void*)GetProcAddress(hmod, "LookupPrivilegeNameA");
472     if (!pLookupPrivilegeNameA) return;
473     luid.LowPart = SE_CREATE_TOKEN_PRIVILEGE;
474     ret = pLookupPrivilegeNameA(NULL, &luid, buf, &cchName);
475     if (!ret && GetLastError() == ERROR_CALL_NOT_IMPLEMENTED)
476         return;
477
478     /* check with a short buffer */
479     cchName = 0;
480     luid.LowPart = SE_CREATE_TOKEN_PRIVILEGE;
481     ret = pLookupPrivilegeNameA(NULL, &luid, NULL, &cchName);
482     ok( !ret && GetLastError() == ERROR_INSUFFICIENT_BUFFER,
483      "LookupPrivilegeNameA didn't fail with ERROR_INSUFFICIENT_BUFFER: %d\n",
484      GetLastError());
485     ok(cchName == strlen("SeCreateTokenPrivilege") + 1,
486      "LookupPrivilegeNameA returned an incorrect required length for\n"
487      "SeCreateTokenPrivilege (got %d, expected %d)\n", cchName,
488      lstrlenA("SeCreateTokenPrivilege") + 1);
489     /* check a known value and its returned length on success */
490     cchName = sizeof(buf);
491     ok(pLookupPrivilegeNameA(NULL, &luid, buf, &cchName) &&
492      cchName == strlen("SeCreateTokenPrivilege"),
493      "LookupPrivilegeNameA returned an incorrect output length for\n"
494      "SeCreateTokenPrivilege (got %d, expected %d)\n", cchName,
495      (int)strlen("SeCreateTokenPrivilege"));
496     /* check known values */
497     for (i = SE_MIN_WELL_KNOWN_PRIVILEGE; i < SE_MAX_WELL_KNOWN_PRIVILEGE; i++)
498     {
499         luid.LowPart = i;
500         cchName = sizeof(buf);
501         ret = pLookupPrivilegeNameA(NULL, &luid, buf, &cchName);
502         ok( ret || GetLastError() == ERROR_NO_SUCH_PRIVILEGE,
503          "LookupPrivilegeNameA(0.%d) failed: %d\n", i, GetLastError());
504     }
505     /* check a bogus LUID */
506     luid.LowPart = 0xdeadbeef;
507     cchName = sizeof(buf);
508     ret = pLookupPrivilegeNameA(NULL, &luid, buf, &cchName);
509     ok( !ret && GetLastError() == ERROR_NO_SUCH_PRIVILEGE,
510      "LookupPrivilegeNameA didn't fail with ERROR_NO_SUCH_PRIVILEGE: %d\n",
511      GetLastError());
512     /* check on a bogus system */
513     luid.LowPart = SE_CREATE_TOKEN_PRIVILEGE;
514     cchName = sizeof(buf);
515     ret = pLookupPrivilegeNameA("b0gu5.Nam3", &luid, buf, &cchName);
516     ok( !ret && GetLastError() == RPC_S_SERVER_UNAVAILABLE,
517      "LookupPrivilegeNameA didn't fail with RPC_S_SERVER_UNAVAILABLE: %d\n",
518      GetLastError());
519 }
520
521 struct NameToLUID
522 {
523     const char *name;
524     DWORD lowPart;
525 };
526
527 static void test_lookupPrivilegeValue(void)
528 {
529     static const struct NameToLUID privs[] = {
530      { "SeCreateTokenPrivilege", SE_CREATE_TOKEN_PRIVILEGE },
531      { "SeAssignPrimaryTokenPrivilege", SE_ASSIGNPRIMARYTOKEN_PRIVILEGE },
532      { "SeLockMemoryPrivilege", SE_LOCK_MEMORY_PRIVILEGE },
533      { "SeIncreaseQuotaPrivilege", SE_INCREASE_QUOTA_PRIVILEGE },
534      { "SeMachineAccountPrivilege", SE_MACHINE_ACCOUNT_PRIVILEGE },
535      { "SeTcbPrivilege", SE_TCB_PRIVILEGE },
536      { "SeSecurityPrivilege", SE_SECURITY_PRIVILEGE },
537      { "SeTakeOwnershipPrivilege", SE_TAKE_OWNERSHIP_PRIVILEGE },
538      { "SeLoadDriverPrivilege", SE_LOAD_DRIVER_PRIVILEGE },
539      { "SeSystemProfilePrivilege", SE_SYSTEM_PROFILE_PRIVILEGE },
540      { "SeSystemtimePrivilege", SE_SYSTEMTIME_PRIVILEGE },
541      { "SeProfileSingleProcessPrivilege", SE_PROF_SINGLE_PROCESS_PRIVILEGE },
542      { "SeIncreaseBasePriorityPrivilege", SE_INC_BASE_PRIORITY_PRIVILEGE },
543      { "SeCreatePagefilePrivilege", SE_CREATE_PAGEFILE_PRIVILEGE },
544      { "SeCreatePermanentPrivilege", SE_CREATE_PERMANENT_PRIVILEGE },
545      { "SeBackupPrivilege", SE_BACKUP_PRIVILEGE },
546      { "SeRestorePrivilege", SE_RESTORE_PRIVILEGE },
547      { "SeShutdownPrivilege", SE_SHUTDOWN_PRIVILEGE },
548      { "SeDebugPrivilege", SE_DEBUG_PRIVILEGE },
549      { "SeAuditPrivilege", SE_AUDIT_PRIVILEGE },
550      { "SeSystemEnvironmentPrivilege", SE_SYSTEM_ENVIRONMENT_PRIVILEGE },
551      { "SeChangeNotifyPrivilege", SE_CHANGE_NOTIFY_PRIVILLEGE },
552      { "SeRemoteShutdownPrivilege", SE_REMOTE_SHUTDOWN_PRIVILEGE },
553      { "SeUndockPrivilege", SE_UNDOCK_PRIVILEGE },
554      { "SeSyncAgentPrivilege", SE_SYNC_AGENT_PRIVILEGE },
555      { "SeEnableDelegationPrivilege", SE_ENABLE_DELEGATION_PRIVILEGE },
556      { "SeManageVolumePrivilege", SE_MANAGE_VOLUME_PRIVILEGE },
557      { "SeImpersonatePrivilege", SE_IMPERSONATE_PRIVILEGE },
558      { "SeCreateGlobalPrivilege", SE_CREATE_GLOBAL_PRIVILEGE },
559     };
560     BOOL (WINAPI *pLookupPrivilegeValueA)(LPCSTR, LPCSTR, PLUID);
561     int i;
562     LUID luid;
563     BOOL ret;
564
565     /* check whether it's available first */
566     pLookupPrivilegeValueA = (void*)GetProcAddress(hmod, "LookupPrivilegeValueA");
567     if (!pLookupPrivilegeValueA) return;
568     ret = pLookupPrivilegeValueA(NULL, "SeCreateTokenPrivilege", &luid);
569     if (!ret && GetLastError() == ERROR_CALL_NOT_IMPLEMENTED)
570         return;
571
572     /* check a bogus system name */
573     ret = pLookupPrivilegeValueA("b0gu5.Nam3", "SeCreateTokenPrivilege", &luid);
574     ok( !ret && GetLastError() == RPC_S_SERVER_UNAVAILABLE,
575      "LookupPrivilegeValueA didn't fail with RPC_S_SERVER_UNAVAILABLE: %d\n",
576      GetLastError());
577     /* check a NULL string */
578     ret = pLookupPrivilegeValueA(NULL, 0, &luid);
579     ok( !ret && GetLastError() == ERROR_NO_SUCH_PRIVILEGE,
580      "LookupPrivilegeValueA didn't fail with ERROR_NO_SUCH_PRIVILEGE: %d\n",
581      GetLastError());
582     /* check a bogus privilege name */
583     ret = pLookupPrivilegeValueA(NULL, "SeBogusPrivilege", &luid);
584     ok( !ret && GetLastError() == ERROR_NO_SUCH_PRIVILEGE,
585      "LookupPrivilegeValueA didn't fail with ERROR_NO_SUCH_PRIVILEGE: %d\n",
586      GetLastError());
587     /* check case insensitive */
588     ret = pLookupPrivilegeValueA(NULL, "sEcREATEtOKENpRIVILEGE", &luid);
589     ok( ret,
590      "LookupPrivilegeValueA(NULL, sEcREATEtOKENpRIVILEGE, &luid) failed: %d\n",
591      GetLastError());
592     for (i = 0; i < sizeof(privs) / sizeof(privs[0]); i++)
593     {
594         /* Not all privileges are implemented on all Windows versions, so
595          * don't worry if the call fails
596          */
597         if (pLookupPrivilegeValueA(NULL, privs[i].name, &luid))
598         {
599             ok(luid.LowPart == privs[i].lowPart,
600              "LookupPrivilegeValueA returned an invalid LUID for %s\n",
601              privs[i].name);
602         }
603     }
604 }
605
606 static void test_luid(void)
607 {
608     test_allocateLuid();
609     test_lookupPrivilegeName();
610     test_lookupPrivilegeValue();
611 }
612
613 static void test_FileSecurity(void)
614 {
615     char directory[MAX_PATH];
616     DWORD retval, outSize;
617     BOOL result;
618     BYTE buffer[0x40];
619
620     pGetFileSecurityA = (fnGetFileSecurityA)
621                     GetProcAddress( hmod, "GetFileSecurityA" );
622     if( !pGetFileSecurityA )
623         return;
624
625     retval = GetTempPathA(sizeof(directory), directory);
626     if (!retval) {
627         trace("GetTempPathA failed\n");
628         return;
629     }
630
631     strcpy(directory, "\\Should not exist");
632
633     SetLastError(NO_ERROR);
634     result = pGetFileSecurityA( directory,OWNER_SECURITY_INFORMATION,buffer,0x40,&outSize);
635     ok(!result, "GetFileSecurityA should fail for not existing directories/files\n"); 
636     ok( (GetLastError() == ERROR_FILE_NOT_FOUND ) ||
637         (GetLastError() == ERROR_CALL_NOT_IMPLEMENTED) , 
638         "last error ERROR_FILE_NOT_FOUND / ERROR_CALL_NOT_IMPLEMENTED (98) "
639         "expected, got %d\n", GetLastError());
640 }
641
642 static void test_AccessCheck(void)
643 {
644     PSID EveryoneSid = NULL, AdminSid = NULL, UsersSid = NULL;
645     PACL Acl = NULL;
646     SECURITY_DESCRIPTOR *SecurityDescriptor = NULL;
647     SID_IDENTIFIER_AUTHORITY SIDAuthWorld = { SECURITY_WORLD_SID_AUTHORITY };
648     SID_IDENTIFIER_AUTHORITY SIDAuthNT = { SECURITY_NT_AUTHORITY };
649     GENERIC_MAPPING Mapping = { KEY_READ, KEY_WRITE, KEY_EXECUTE, KEY_ALL_ACCESS };
650     ACCESS_MASK Access;
651     BOOL AccessStatus;
652     HANDLE Token;
653     BOOL ret;
654     DWORD PrivSetLen;
655     PRIVILEGE_SET *PrivSet;
656     BOOL res;
657     HMODULE NtDllModule;
658     BOOLEAN Enabled;
659
660     NtDllModule = GetModuleHandle("ntdll.dll");
661
662     if (!NtDllModule)
663     {
664         trace("not running on NT, skipping test\n");
665         return;
666     }
667     pRtlAdjustPrivilege = (fnRtlAdjustPrivilege)
668                           GetProcAddress(NtDllModule, "RtlAdjustPrivilege");
669     if (!pRtlAdjustPrivilege) return;
670
671     Acl = HeapAlloc(GetProcessHeap(), 0, 256);
672     res = InitializeAcl(Acl, 256, ACL_REVISION);
673     if(!res && GetLastError() == ERROR_CALL_NOT_IMPLEMENTED)
674     {
675         trace("ACLs not implemented - skipping tests\n");
676         return;
677     }
678     ok(res, "InitializeAcl failed with error %d\n", GetLastError());
679
680     res = AllocateAndInitializeSid( &SIDAuthWorld, 1, SECURITY_WORLD_RID, 0, 0, 0, 0, 0, 0, 0, &EveryoneSid);
681     ok(res, "AllocateAndInitializeSid failed with error %d\n", GetLastError());
682
683     res = AllocateAndInitializeSid( &SIDAuthNT, 2, SECURITY_BUILTIN_DOMAIN_RID,
684         DOMAIN_ALIAS_RID_ADMINS, 0, 0, 0, 0, 0, 0, &AdminSid);
685     ok(res, "AllocateAndInitializeSid failed with error %d\n", GetLastError());
686
687     res = AllocateAndInitializeSid( &SIDAuthNT, 2, SECURITY_BUILTIN_DOMAIN_RID,
688         DOMAIN_ALIAS_RID_USERS, 0, 0, 0, 0, 0, 0, &UsersSid);
689     ok(res, "AllocateAndInitializeSid failed with error %d\n", GetLastError());
690
691     res = AddAccessAllowedAce(Acl, ACL_REVISION, KEY_READ, EveryoneSid);
692     ok(res, "AddAccessAllowedAceEx failed with error %d\n", GetLastError());
693
694     res = AddAccessAllowedAce(Acl, ACL_REVISION, KEY_ALL_ACCESS, AdminSid);
695     ok(res, "AddAccessAllowedAceEx failed with error %d\n", GetLastError());
696
697     SecurityDescriptor = HeapAlloc(GetProcessHeap(), 0, SECURITY_DESCRIPTOR_MIN_LENGTH);
698
699     res = InitializeSecurityDescriptor(SecurityDescriptor, SECURITY_DESCRIPTOR_REVISION);
700     ok(res, "InitializeSecurityDescriptor failed with error %d\n", GetLastError());
701
702     res = SetSecurityDescriptorDacl(SecurityDescriptor, TRUE, Acl, FALSE);
703     ok(res, "SetSecurityDescriptorDacl failed with error %d\n", GetLastError());
704
705     res = SetSecurityDescriptorOwner(SecurityDescriptor, AdminSid, FALSE);
706     ok(res, "SetSecurityDescriptorOwner failed with error %d\n", GetLastError());
707
708     res = SetSecurityDescriptorGroup(SecurityDescriptor, UsersSid, TRUE);
709     ok(res, "SetSecurityDescriptorGroup failed with error %d\n", GetLastError());
710
711     PrivSetLen = FIELD_OFFSET(PRIVILEGE_SET, Privilege[16]);
712     PrivSet = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, PrivSetLen);
713     PrivSet->PrivilegeCount = 16;
714
715     ImpersonateSelf(SecurityImpersonation);
716
717     pRtlAdjustPrivilege(SE_SECURITY_PRIVILEGE, FALSE, TRUE, &Enabled);
718
719     ret = OpenThreadToken(GetCurrentThread(),
720                           TOKEN_QUERY, TRUE, &Token);
721     ok(ret, "OpenThreadToken failed with error %d\n", GetLastError());
722
723     ret = AccessCheck(SecurityDescriptor, Token, KEY_READ, &Mapping,
724                       PrivSet, &PrivSetLen, &Access, &AccessStatus);
725     ok(ret, "AccessCheck failed with error %d\n", GetLastError());
726     ok(AccessStatus && (Access == KEY_READ),
727         "AccessCheck failed to grant access with error %d\n",
728         GetLastError());
729
730     ret = AccessCheck(SecurityDescriptor, Token, MAXIMUM_ALLOWED, &Mapping,
731                       PrivSet, &PrivSetLen, &Access, &AccessStatus);
732     ok(ret, "AccessCheck failed with error %d\n", GetLastError());
733     ok(AccessStatus,
734         "AccessCheck failed to grant any access with error %d\n",
735         GetLastError());
736     trace("AccessCheck with MAXIMUM_ALLOWED got Access 0x%08x\n", Access);
737
738     SetLastError(0);
739     PrivSet->PrivilegeCount = 16;
740     ret = AccessCheck(SecurityDescriptor, Token, ACCESS_SYSTEM_SECURITY, &Mapping,
741                       PrivSet, &PrivSetLen, &Access, &AccessStatus);
742     ok(ret && !AccessStatus && GetLastError() == ERROR_PRIVILEGE_NOT_HELD,
743         "AccessCheck should have failed with ERROR_PRIVILEGE_NOT_HELD, instead of %d\n",
744         GetLastError());
745
746     ret = pRtlAdjustPrivilege(SE_SECURITY_PRIVILEGE, TRUE, TRUE, &Enabled);
747     if (!ret)
748     {
749         SetLastError(0);
750         PrivSet->PrivilegeCount = 16;
751         ret = AccessCheck(SecurityDescriptor, Token, ACCESS_SYSTEM_SECURITY, &Mapping,
752                           PrivSet, &PrivSetLen, &Access, &AccessStatus);
753         ok(ret && AccessStatus && GetLastError() == 0,
754             "AccessCheck should have succeeded, error %d\n",
755             GetLastError());
756         ok(Access == ACCESS_SYSTEM_SECURITY,
757             "Access should be equal to ACCESS_SYSTEM_SECURITY instead of 0x%08x\n",
758             Access);
759     }
760     else
761         trace("Couldn't get SE_SECURITY_PRIVILEGE (0x%08x), skipping ACCESS_SYSTEM_SECURITY test\n",
762             ret);
763
764     RevertToSelf();
765
766     if (EveryoneSid)
767         FreeSid(EveryoneSid);
768     if (AdminSid)
769         FreeSid(AdminSid);
770     if (UsersSid)
771         FreeSid(UsersSid);
772     HeapFree(GetProcessHeap(), 0, Acl);
773     HeapFree(GetProcessHeap(), 0, SecurityDescriptor);
774     HeapFree(GetProcessHeap(), 0, PrivSet);
775 }
776
777 /* test GetTokenInformation for the various attributes */
778 static void test_token_attr(void)
779 {
780     HANDLE Token;
781     DWORD Size;
782     TOKEN_PRIVILEGES *Privileges;
783     TOKEN_GROUPS *Groups;
784     TOKEN_USER *User;
785     BOOL ret;
786     DWORD i, GLE;
787     LPSTR SidString;
788
789     /* cygwin-like use case */
790     ret = OpenProcessToken(GetCurrentProcess(), MAXIMUM_ALLOWED, &Token);
791     ok(ret, "OpenProcessToken failed with error %d\n", GetLastError());
792     if (ret)
793     {
794         BYTE buf[1024];
795         DWORD bufsize = sizeof(buf);
796         ret = GetTokenInformation(Token, TokenUser,(void*)buf, bufsize, &bufsize);
797         todo_wine ok(ret, "GetTokenInformation failed with error %d\n", GetLastError());
798         CloseHandle(Token);
799     }
800
801     if(!pConvertSidToStringSidA)
802         return;
803
804     ret = OpenProcessToken(GetCurrentProcess(), TOKEN_QUERY, &Token);
805     GLE = GetLastError();
806     ok(ret || (GLE == ERROR_CALL_NOT_IMPLEMENTED), 
807         "OpenProcessToken failed with error %d\n", GLE);
808     if(!ret && (GLE == ERROR_CALL_NOT_IMPLEMENTED))
809     {
810         trace("OpenProcessToken() not implemented, skipping test_token_attr()\n");
811         return;
812     }
813
814     /* groups */
815     ret = GetTokenInformation(Token, TokenGroups, NULL, 0, &Size);
816     Groups = HeapAlloc(GetProcessHeap(), 0, Size);
817     ret = GetTokenInformation(Token, TokenGroups, Groups, Size, &Size);
818     ok(ret, "GetTokenInformation(TokenGroups) failed with error %d\n", GetLastError());
819     trace("TokenGroups:\n");
820     for (i = 0; i < Groups->GroupCount; i++)
821     {
822         DWORD NameLength = 255;
823         TCHAR Name[255];
824         DWORD DomainLength = 255;
825         TCHAR Domain[255];
826         SID_NAME_USE SidNameUse;
827         pConvertSidToStringSidA(Groups->Groups[i].Sid, &SidString);
828         Name[0] = '\0';
829         Domain[0] = '\0';
830         ret = LookupAccountSid(NULL, Groups->Groups[i].Sid, Name, &NameLength, Domain, &DomainLength, &SidNameUse);
831         ok(ret, "LookupAccountSid(%s) failed with error %d\n", SidString, GetLastError());
832         trace("\t%s, %s\\%s use: %d attr: 0x%08x\n", SidString, Domain, Name, SidNameUse, Groups->Groups[i].Attributes);
833         LocalFree(SidString);
834     }
835     HeapFree(GetProcessHeap(), 0, Groups);
836
837     /* user */
838     ret = GetTokenInformation(Token, TokenUser, NULL, 0, &Size);
839     ok(!ret && (GetLastError() == ERROR_INSUFFICIENT_BUFFER),
840         "GetTokenInformation(TokenUser) failed with error %d\n", GetLastError());
841     User = HeapAlloc(GetProcessHeap(), 0, Size);
842     ret = GetTokenInformation(Token, TokenUser, User, Size, &Size);
843     ok(ret,
844         "GetTokenInformation(TokenUser) failed with error %d\n", GetLastError());
845
846     pConvertSidToStringSidA(User->User.Sid, &SidString);
847     trace("TokenUser: %s attr: 0x%08x\n", SidString, User->User.Attributes);
848     LocalFree(SidString);
849     HeapFree(GetProcessHeap(), 0, User);
850
851     /* privileges */
852     ret = GetTokenInformation(Token, TokenPrivileges, NULL, 0, &Size);
853     ok(!ret && (GetLastError() == ERROR_INSUFFICIENT_BUFFER),
854         "GetTokenInformation(TokenPrivileges) failed with error %d\n", GetLastError());
855     Privileges = HeapAlloc(GetProcessHeap(), 0, Size);
856     ret = GetTokenInformation(Token, TokenPrivileges, Privileges, Size, &Size);
857     ok(ret,
858         "GetTokenInformation(TokenPrivileges) failed with error %d\n", GetLastError());
859     trace("TokenPrivileges:\n");
860     for (i = 0; i < Privileges->PrivilegeCount; i++)
861     {
862         TCHAR Name[256];
863         DWORD NameLen = sizeof(Name)/sizeof(Name[0]);
864         LookupPrivilegeName(NULL, &Privileges->Privileges[i].Luid, Name, &NameLen);
865         trace("\t%s, 0x%x\n", Name, Privileges->Privileges[i].Attributes);
866     }
867     HeapFree(GetProcessHeap(), 0, Privileges);
868 }
869
870 typedef union _MAX_SID
871 {
872     SID sid;
873     char max[SECURITY_MAX_SID_SIZE];
874 } MAX_SID;
875
876 static void test_sid_str(PSID * sid)
877 {
878     char *str_sid;
879     BOOL ret = pConvertSidToStringSidA(sid, &str_sid);
880     ok(ret, "ConvertSidToStringSidA() failed: %d\n", GetLastError());
881     if (ret)
882     {
883         char account[MAX_PATH], domain[MAX_PATH];
884         SID_NAME_USE use;
885         DWORD acc_size = MAX_PATH;
886         DWORD dom_size = MAX_PATH;
887         ret = LookupAccountSid(NULL, sid, account, &acc_size, domain, &dom_size, &use);
888         ok(ret || (!ret && (GetLastError() == ERROR_NONE_MAPPED)),
889            "LookupAccountSid(%s) failed: %d\n", str_sid, GetLastError());
890         if (ret)
891             trace(" %s %s\\%s %d\n", str_sid, domain, account, use);
892         else if (GetLastError() == ERROR_NONE_MAPPED)
893             trace(" %s couldn't be mapped\n", str_sid);
894         LocalFree(str_sid);
895     }
896 }
897
898 static void test_LookupAccountSid(void)
899 {
900     SID_IDENTIFIER_AUTHORITY SIDAuthNT = { SECURITY_NT_AUTHORITY };
901     CHAR accountA[MAX_PATH], domainA[MAX_PATH];
902     DWORD acc_sizeA, dom_sizeA;
903     DWORD real_acc_sizeA, real_dom_sizeA;
904     WCHAR accountW[MAX_PATH], domainW[MAX_PATH];
905     DWORD acc_sizeW, dom_sizeW;
906     DWORD real_acc_sizeW, real_dom_sizeW;
907     PSID pUsersSid = NULL;
908     SID_NAME_USE use;
909     BOOL ret;
910     DWORD size;
911     MAX_SID  max_sid;
912     CHAR *str_sidA;
913     int i;
914
915     /* native windows crashes if account size, domain size, or name use is NULL */
916
917     ret = AllocateAndInitializeSid(&SIDAuthNT, 2, SECURITY_BUILTIN_DOMAIN_RID,
918         DOMAIN_ALIAS_RID_USERS, 0, 0, 0, 0, 0, 0, &pUsersSid);
919     ok(ret || (GetLastError() == ERROR_CALL_NOT_IMPLEMENTED),
920        "AllocateAndInitializeSid failed with error %d\n", GetLastError());
921
922     /* not running on NT so give up */
923     if (!ret && (GetLastError() == ERROR_CALL_NOT_IMPLEMENTED))
924         return;
925
926     real_acc_sizeA = MAX_PATH;
927     real_dom_sizeA = MAX_PATH;
928     ret = LookupAccountSidA(NULL, pUsersSid, accountA, &real_acc_sizeA, domainA, &real_dom_sizeA, &use);
929     ok(ret, "LookupAccountSidA() Expected TRUE, got FALSE\n");
930
931     /* try NULL account */
932     acc_sizeA = MAX_PATH;
933     dom_sizeA = MAX_PATH;
934     ret = LookupAccountSidA(NULL, pUsersSid, NULL, &acc_sizeA, domainA, &dom_sizeA, &use);
935     ok(ret, "LookupAccountSidA() Expected TRUE, got FALSE\n");
936
937     /* try NULL domain */
938     acc_sizeA = MAX_PATH;
939     dom_sizeA = MAX_PATH;
940     ret = LookupAccountSidA(NULL, pUsersSid, accountA, &acc_sizeA, NULL, &dom_sizeA, &use);
941     ok(ret, "LookupAccountSidA() Expected TRUE, got FALSE\n");
942
943     /* try a small account buffer */
944     acc_sizeA = 1;
945     dom_sizeA = MAX_PATH;
946     accountA[0] = 0;
947     ret = LookupAccountSidA(NULL, pUsersSid, accountA, &acc_sizeA, domainA, &dom_sizeA, &use);
948     ok(!ret, "LookupAccountSidA() Expected FALSE got TRUE\n");
949     ok(GetLastError() == ERROR_INSUFFICIENT_BUFFER,
950        "LookupAccountSidA() Expected ERROR_NOT_ENOUGH_MEMORY, got %u\n", GetLastError());
951
952     /* try a 0 sized account buffer */
953     acc_sizeA = 0;
954     dom_sizeA = MAX_PATH;
955     accountA[0] = 0;
956     ret = LookupAccountSidA(NULL, pUsersSid, accountA, &acc_sizeA, domainA, &dom_sizeA, &use);
957     /* this can fail or succeed depending on OS version but the size will always be returned */
958     ok(acc_sizeA == real_acc_sizeA + 1,
959        "LookupAccountSidA() Expected acc_size = %u, got %u\n",
960        real_acc_sizeA + 1, acc_sizeA);
961
962     /* try a 0 sized account buffer */
963     acc_sizeA = 0;
964     dom_sizeA = MAX_PATH;
965     ret = LookupAccountSidA(NULL, pUsersSid, NULL, &acc_sizeA, domainA, &dom_sizeA, &use);
966     /* this can fail or succeed depending on OS version but the size will always be returned */
967     ok(acc_sizeA == real_acc_sizeA + 1,
968        "LookupAccountSid() Expected acc_size = %u, got %u\n",
969        real_acc_sizeA + 1, acc_sizeA);
970
971     /* try a small domain buffer */
972     dom_sizeA = 1;
973     acc_sizeA = MAX_PATH;
974     accountA[0] = 0;
975     ret = LookupAccountSidA(NULL, pUsersSid, accountA, &acc_sizeA, domainA, &dom_sizeA, &use);
976     ok(!ret, "LookupAccountSidA() Expected FALSE got TRUE\n");
977     ok(GetLastError() == ERROR_INSUFFICIENT_BUFFER,
978        "LookupAccountSidA() Expected ERROR_NOT_ENOUGH_MEMORY, got %u\n", GetLastError());
979
980     /* try a 0 sized domain buffer */
981     dom_sizeA = 0;
982     acc_sizeA = MAX_PATH;
983     accountA[0] = 0;
984     ret = LookupAccountSidA(NULL, pUsersSid, accountA, &acc_sizeA, domainA, &dom_sizeA, &use);
985     /* this can fail or succeed depending on OS version but the size will always be returned */
986     ok(dom_sizeA == real_dom_sizeA + 1,
987        "LookupAccountSidA() Expected dom_size = %u, got %u\n",
988        real_dom_sizeA + 1, dom_sizeA);
989
990     /* try a 0 sized domain buffer */
991     dom_sizeA = 0;
992     acc_sizeA = MAX_PATH;
993     ret = LookupAccountSidA(NULL, pUsersSid, accountA, &acc_sizeA, NULL, &dom_sizeA, &use);
994     /* this can fail or succeed depending on OS version but the size will always be returned */
995     ok(dom_sizeA == real_dom_sizeA + 1,
996        "LookupAccountSidA() Expected dom_size = %u, got %u\n",
997        real_dom_sizeA + 1, dom_sizeA);
998
999     real_acc_sizeW = MAX_PATH;
1000     real_dom_sizeW = MAX_PATH;
1001     ret = LookupAccountSidW(NULL, pUsersSid, accountW, &real_acc_sizeW, domainW, &real_dom_sizeW, &use);
1002     ok(ret, "LookupAccountSidW() Expected TRUE, got FALSE\n");
1003
1004     /* native windows crashes if domainW or accountW is NULL */
1005
1006     /* try a small account buffer */
1007     acc_sizeW = 1;
1008     dom_sizeW = MAX_PATH;
1009     accountW[0] = 0;
1010     ret = LookupAccountSidW(NULL, pUsersSid, accountW, &acc_sizeW, domainW, &dom_sizeW, &use);
1011     ok(!ret, "LookupAccountSidW() Expected FALSE got TRUE\n");
1012     ok(GetLastError() == ERROR_INSUFFICIENT_BUFFER,
1013        "LookupAccountSidW() Expected ERROR_NOT_ENOUGH_MEMORY, got %u\n", GetLastError());
1014
1015     /* try a 0 sized account buffer */
1016     acc_sizeW = 0;
1017     dom_sizeW = MAX_PATH;
1018     accountW[0] = 0;
1019     ret = LookupAccountSidW(NULL, pUsersSid, accountW, &acc_sizeW, domainW, &dom_sizeW, &use);
1020     /* this can fail or succeed depending on OS version but the size will always be returned */
1021     ok(acc_sizeW == real_acc_sizeW + 1,
1022        "LookupAccountSidW() Expected acc_size = %u, got %u\n",
1023        real_acc_sizeW + 1, acc_sizeW);
1024
1025     /* try a 0 sized account buffer */
1026     acc_sizeW = 0;
1027     dom_sizeW = MAX_PATH;
1028     ret = LookupAccountSidW(NULL, pUsersSid, NULL, &acc_sizeW, domainW, &dom_sizeW, &use);
1029     /* this can fail or succeed depending on OS version but the size will always be returned */
1030     ok(acc_sizeW == real_acc_sizeW + 1,
1031        "LookupAccountSidW() Expected acc_size = %u, got %u\n",
1032        real_acc_sizeW + 1, acc_sizeW);
1033
1034     /* try a small domain buffer */
1035     dom_sizeW = 1;
1036     acc_sizeW = MAX_PATH;
1037     accountW[0] = 0;
1038     ret = LookupAccountSidW(NULL, pUsersSid, accountW, &acc_sizeW, domainW, &dom_sizeW, &use);
1039     ok(!ret, "LookupAccountSidW() Expected FALSE got TRUE\n");
1040     ok(GetLastError() == ERROR_INSUFFICIENT_BUFFER,
1041        "LookupAccountSidW() Expected ERROR_NOT_ENOUGH_MEMORY, got %u\n", GetLastError());
1042
1043     /* try a 0 sized domain buffer */
1044     dom_sizeW = 0;
1045     acc_sizeW = MAX_PATH;
1046     accountW[0] = 0;
1047     ret = LookupAccountSidW(NULL, pUsersSid, accountW, &acc_sizeW, domainW, &dom_sizeW, &use);
1048     /* this can fail or succeed depending on OS version but the size will always be returned */
1049     ok(dom_sizeW == real_dom_sizeW + 1,
1050        "LookupAccountSidW() Expected dom_size = %u, got %u\n",
1051        real_dom_sizeW + 1, dom_sizeW);
1052
1053     /* try a 0 sized domain buffer */
1054     dom_sizeW = 0;
1055     acc_sizeW = MAX_PATH;
1056     ret = LookupAccountSidW(NULL, pUsersSid, accountW, &acc_sizeW, NULL, &dom_sizeW, &use);
1057     /* this can fail or succeed depending on OS version but the size will always be returned */
1058     ok(dom_sizeW == real_dom_sizeW + 1,
1059        "LookupAccountSidW() Expected dom_size = %u, got %u\n",
1060        real_dom_sizeW + 1, dom_sizeW);
1061
1062     FreeSid(pUsersSid);
1063
1064     pCreateWellKnownSid = (fnCreateWellKnownSid)GetProcAddress( hmod, "CreateWellKnownSid" );
1065
1066     if (pCreateWellKnownSid && pConvertSidToStringSidA)
1067     {
1068         trace("Well Known SIDs:\n");
1069         for (i = 0; i <= 60; i++)
1070         {
1071             size = SECURITY_MAX_SID_SIZE;
1072             if (pCreateWellKnownSid(i, NULL, &max_sid.sid, &size))
1073             {
1074                 if (pConvertSidToStringSidA(&max_sid.sid, &str_sidA))
1075                 {
1076                     acc_sizeA = MAX_PATH;
1077                     dom_sizeA = MAX_PATH;
1078                     if (LookupAccountSidA(NULL, &max_sid.sid, accountA, &acc_sizeA, domainA, &dom_sizeA, &use))
1079                         trace(" %d: %s %s\\%s %d\n", i, str_sidA, domainA, accountA, use);
1080                     LocalFree(str_sidA);
1081                 }
1082             }
1083             else
1084             {
1085                 if (GetLastError() != ERROR_INVALID_PARAMETER)
1086                     trace(" CreateWellKnownSid(%d) failed: %d\n", i, GetLastError());
1087                 else
1088                     trace(" %d: not supported\n", i);
1089             }
1090         }
1091
1092         pLsaQueryInformationPolicy = (fnLsaQueryInformationPolicy)GetProcAddress( hmod, "LsaQueryInformationPolicy");
1093         pLsaOpenPolicy = (fnLsaOpenPolicy)GetProcAddress( hmod, "LsaOpenPolicy");
1094         pLsaFreeMemory = (fnLsaFreeMemory)GetProcAddress( hmod, "LsaFreeMemory");
1095         pLsaClose = (fnLsaClose)GetProcAddress( hmod, "LsaClose");
1096
1097         if (pLsaQueryInformationPolicy && pLsaOpenPolicy && pLsaFreeMemory && pLsaClose)
1098         {
1099             NTSTATUS status;
1100             LSA_HANDLE handle;
1101             LSA_OBJECT_ATTRIBUTES object_attributes;
1102
1103             ZeroMemory(&object_attributes, sizeof(object_attributes));
1104             object_attributes.Length = sizeof(object_attributes);
1105
1106             status = pLsaOpenPolicy( NULL, &object_attributes, POLICY_ALL_ACCESS, &handle);
1107             ok(status == STATUS_SUCCESS || status == STATUS_ACCESS_DENIED,
1108                "LsaOpenPolicy(POLICY_ALL_ACCESS) returned 0x%08x\n", status);
1109
1110             /* try a more restricted access mask if necessary */
1111             if (status == STATUS_ACCESS_DENIED) {
1112                 trace("LsaOpenPolicy(POLICY_ALL_ACCESS) failed, trying POLICY_VIEW_LOCAL_INFORMATION\n");
1113                 status = pLsaOpenPolicy( NULL, &object_attributes, POLICY_VIEW_LOCAL_INFORMATION, &handle);
1114                 ok(status == STATUS_SUCCESS, "LsaOpenPolicy(POLICY_VIEW_LOCAL_INFORMATION) returned 0x%08x\n", status);
1115             }
1116
1117             if (status == STATUS_SUCCESS)
1118             {
1119                 PPOLICY_ACCOUNT_DOMAIN_INFO info;
1120                 status = pLsaQueryInformationPolicy(handle, PolicyAccountDomainInformation, (PVOID*)&info);
1121                 ok(status == STATUS_SUCCESS, "LsaQueryInformationPolicy() failed, returned 0x%08x\n", status);
1122                 if (status == STATUS_SUCCESS)
1123                 {
1124                     ok(info->DomainSid!=0, "LsaQueryInformationPolicy(PolicyAccountDomainInformation) missing SID\n");
1125                     if (info->DomainSid)
1126                     {
1127                         int count = *GetSidSubAuthorityCount(info->DomainSid);
1128                         CopySid(GetSidLengthRequired(count), &max_sid, info->DomainSid);
1129                         test_sid_str((PSID)&max_sid.sid);
1130                         max_sid.sid.SubAuthority[count] = DOMAIN_USER_RID_ADMIN;
1131                         max_sid.sid.SubAuthorityCount = count + 1;
1132                         test_sid_str((PSID)&max_sid.sid);
1133                         max_sid.sid.SubAuthority[count] = DOMAIN_USER_RID_GUEST;
1134                         test_sid_str((PSID)&max_sid.sid);
1135                         max_sid.sid.SubAuthority[count] = DOMAIN_GROUP_RID_ADMINS;
1136                         test_sid_str((PSID)&max_sid.sid);
1137                         max_sid.sid.SubAuthority[count] = DOMAIN_GROUP_RID_USERS;
1138                         test_sid_str((PSID)&max_sid.sid);
1139                         max_sid.sid.SubAuthority[count] = DOMAIN_GROUP_RID_GUESTS;
1140                         test_sid_str((PSID)&max_sid.sid);
1141                         max_sid.sid.SubAuthority[count] = DOMAIN_GROUP_RID_COMPUTERS;
1142                         test_sid_str((PSID)&max_sid.sid);
1143                         max_sid.sid.SubAuthority[count] = DOMAIN_GROUP_RID_CONTROLLERS;
1144                         test_sid_str((PSID)&max_sid.sid);
1145                         max_sid.sid.SubAuthority[count] = DOMAIN_GROUP_RID_CERT_ADMINS;
1146                         test_sid_str((PSID)&max_sid.sid);
1147                         max_sid.sid.SubAuthority[count] = DOMAIN_GROUP_RID_SCHEMA_ADMINS;
1148                         test_sid_str((PSID)&max_sid.sid);
1149                         max_sid.sid.SubAuthority[count] = DOMAIN_GROUP_RID_ENTERPRISE_ADMINS;
1150                         test_sid_str((PSID)&max_sid.sid);
1151                         max_sid.sid.SubAuthority[count] = DOMAIN_GROUP_RID_POLICY_ADMINS;
1152                         test_sid_str((PSID)&max_sid.sid);
1153                         max_sid.sid.SubAuthority[count] = DOMAIN_ALIAS_RID_RAS_SERVERS;
1154                         test_sid_str((PSID)&max_sid.sid);
1155                         max_sid.sid.SubAuthority[count] = 1000; /* first user account */
1156                         test_sid_str((PSID)&max_sid.sid);
1157                     }
1158
1159                     pLsaFreeMemory((LPVOID)info);
1160                 }
1161
1162                 status = pLsaClose(handle);
1163                 ok(status == STATUS_SUCCESS, "LsaClose() failed, returned 0x%08x\n", status);
1164             }
1165         }
1166     }
1167 }
1168
1169 static void get_sid_info(PSID psid, LPSTR *user, LPSTR *dom)
1170 {
1171     static CHAR account[UNLEN + 1];
1172     static CHAR domain[UNLEN + 1];
1173     DWORD size, dom_size;
1174     SID_NAME_USE use;
1175
1176     *user = account;
1177     *dom = domain;
1178
1179     size = dom_size = UNLEN + 1;
1180     account[0] = '\0';
1181     domain[0] = '\0';
1182     LookupAccountSidA(NULL, psid, account, &size, domain, &dom_size, &use);
1183 }
1184
1185 static void test_LookupAccountName(void)
1186 {
1187     DWORD sid_size, domain_size, user_size;
1188     DWORD sid_save, domain_save;
1189     CHAR user_name[UNLEN + 1];
1190     SID_NAME_USE sid_use;
1191     LPSTR domain, account, sid_dom;
1192     PSID psid;
1193     BOOL ret;
1194
1195     /* native crashes if (assuming all other parameters correct):
1196      *  - peUse is NULL
1197      *  - Sid is NULL and cbSid is > 0
1198      *  - cbSid or cchReferencedDomainName are NULL
1199      *  - ReferencedDomainName is NULL and cchReferencedDomainName is the correct size
1200      */
1201
1202     user_size = UNLEN + 1;
1203     ret = GetUserNameA(user_name, &user_size);
1204     ok(ret, "Failed to get user name\n");
1205
1206     /* get sizes */
1207     sid_size = 0;
1208     domain_size = 0;
1209     sid_use = 0xcafebabe;
1210     SetLastError(0xdeadbeef);
1211     ret = LookupAccountNameA(NULL, user_name, NULL, &sid_size, NULL, &domain_size, &sid_use);
1212     ok(!ret, "Expected 0, got %d\n", ret);
1213     ok(GetLastError() == ERROR_INSUFFICIENT_BUFFER,
1214        "Expected ERROR_INSUFFICIENT_BUFFER, got %d\n", GetLastError());
1215     ok(sid_size != 0, "Expected non-zero sid size\n");
1216     ok(domain_size != 0, "Expected non-zero domain size\n");
1217     ok(sid_use == 0xcafebabe, "Expected 0xcafebabe, got %d\n", sid_use);
1218
1219     sid_save = sid_size;
1220     domain_save = domain_size;
1221
1222     psid = HeapAlloc(GetProcessHeap(), 0, sid_size);
1223     domain = HeapAlloc(GetProcessHeap(), 0, domain_size);
1224
1225     /* try valid account name */
1226     ret = LookupAccountNameA(NULL, user_name, psid, &sid_size, domain, &domain_size, &sid_use);
1227     get_sid_info(psid, &account, &sid_dom);
1228     ok(ret, "Failed to lookup account name\n");
1229     ok(sid_size == GetLengthSid(psid), "Expected %d, got %d\n", GetLengthSid(psid), sid_size);
1230     todo_wine
1231     {
1232         ok(!lstrcmp(account, user_name), "Expected %s, got %s\n", user_name, account);
1233         ok(!lstrcmp(domain, sid_dom), "Expected %s, got %s\n", sid_dom, domain);
1234         ok(domain_size == domain_save - 1, "Expected %d, got %d\n", domain_save - 1, domain_size);
1235         ok(lstrlen(domain) == domain_size, "Expected %d\n", lstrlen(domain));
1236         ok(sid_use == SidTypeUser, "Expected SidTypeUser, got %d\n", SidTypeUser);
1237     }
1238     domain_size = domain_save;
1239
1240     /* NULL Sid with zero sid size */
1241     SetLastError(0xdeadbeef);
1242     sid_size = 0;
1243     ret = LookupAccountNameA(NULL, user_name, NULL, &sid_size, domain, &domain_size, &sid_use);
1244     ok(!ret, "Expected 0, got %d\n", ret);
1245     ok(GetLastError() == ERROR_INSUFFICIENT_BUFFER,
1246        "Expected ERROR_INSUFFICIENT_BUFFER, got %d\n", GetLastError());
1247     ok(sid_size == sid_save, "Expected %d, got %d\n", sid_save, sid_size);
1248     ok(domain_size == domain_save, "Expected %d, got %d\n", domain_save, domain_size);
1249
1250     /* try cchReferencedDomainName - 1 */
1251     SetLastError(0xdeadbeef);
1252     domain_size--;
1253     ret = LookupAccountNameA(NULL, user_name, NULL, &sid_size, domain, &domain_size, &sid_use);
1254     ok(!ret, "Expected 0, got %d\n", ret);
1255     ok(GetLastError() == ERROR_INSUFFICIENT_BUFFER,
1256        "Expected ERROR_INSUFFICIENT_BUFFER, got %d\n", GetLastError());
1257     ok(sid_size == sid_save, "Expected %d, got %d\n", sid_save, sid_size);
1258     ok(domain_size == domain_save, "Expected %d, got %d\n", domain_save, domain_size);
1259
1260     /* NULL ReferencedDomainName with zero domain name size */
1261     SetLastError(0xdeadbeef);
1262     domain_size = 0;
1263     ret = LookupAccountNameA(NULL, user_name, psid, &sid_size, NULL, &domain_size, &sid_use);
1264     ok(!ret, "Expected 0, got %d\n", ret);
1265     ok(GetLastError() == ERROR_INSUFFICIENT_BUFFER,
1266        "Expected ERROR_INSUFFICIENT_BUFFER, got %d\n", GetLastError());
1267     ok(sid_size == sid_save, "Expected %d, got %d\n", sid_save, sid_size);
1268     ok(domain_size == domain_save, "Expected %d, got %d\n", domain_save, domain_size);
1269
1270     HeapFree(GetProcessHeap(), 0, psid);
1271     HeapFree(GetProcessHeap(), 0, domain);
1272
1273     /* get sizes for NULL account name */
1274     sid_size = 0;
1275     domain_size = 0;
1276     sid_use = 0xcafebabe;
1277     SetLastError(0xdeadbeef);
1278     ret = LookupAccountNameA(NULL, NULL, NULL, &sid_size, NULL, &domain_size, &sid_use);
1279     ok(!ret, "Expected 0, got %d\n", ret);
1280     ok(GetLastError() == ERROR_INSUFFICIENT_BUFFER,
1281        "Expected ERROR_INSUFFICIENT_BUFFER, got %d\n", GetLastError());
1282     ok(sid_size != 0, "Expected non-zero sid size\n");
1283     ok(domain_size != 0, "Expected non-zero domain size\n");
1284     ok(sid_use == 0xcafebabe, "Expected 0xcafebabe, got %d\n", sid_use);
1285
1286     psid = HeapAlloc(GetProcessHeap(), 0, sid_size);
1287     domain = HeapAlloc(GetProcessHeap(), 0, domain_size);
1288
1289     /* try NULL account name */
1290     ret = LookupAccountNameA(NULL, NULL, psid, &sid_size, domain, &domain_size, &sid_use);
1291     get_sid_info(psid, &account, &sid_dom);
1292     ok(ret, "Failed to lookup account name\n");
1293     todo_wine
1294     {
1295         ok(!lstrcmp(account, "BUILTIN"), "Expected BUILTIN, got %s\n", account);
1296         ok(!lstrcmp(domain, "BUILTIN"), "Expected BUILTIN, got %s\n", domain);
1297         ok(sid_use == SidTypeDomain, "Expected SidTypeDomain, got %d\n", SidTypeDomain);
1298     }
1299
1300     /* try an invalid account name */
1301     SetLastError(0xdeadbeef);
1302     sid_size = 0;
1303     domain_size = 0;
1304     ret = LookupAccountNameA(NULL, "oogabooga", NULL, &sid_size, NULL, &domain_size, &sid_use);
1305     ok(!ret, "Expected 0, got %d\n", ret);
1306     todo_wine
1307     {
1308         ok(GetLastError() == ERROR_NONE_MAPPED,
1309            "Expected ERROR_NONE_MAPPED, got %d\n", GetLastError());
1310         ok(sid_size == 0, "Expected 0, got %d\n", sid_size);
1311         ok(domain_size == 0, "Expected 0, got %d\n", domain_size);
1312     }
1313
1314     HeapFree(GetProcessHeap(), 0, psid);
1315     HeapFree(GetProcessHeap(), 0, domain);
1316 }
1317
1318 START_TEST(security)
1319 {
1320     init();
1321     if (!hmod) return;
1322     test_sid();
1323     test_trustee();
1324     test_luid();
1325     test_FileSecurity();
1326     test_AccessCheck();
1327     test_token_attr();
1328     test_LookupAccountSid();
1329     test_LookupAccountName();
1330 }