2004-08-09 20:47:22 +02:00
/*
* Unit tests for security functions
*
* Copyright ( c ) 2004 Mike McCormack
*
* This library is free software ; you can redistribute it and / or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation ; either
* version 2.1 of the License , or ( at your option ) any later version .
*
* This library is distributed in the hope that it will be useful ,
* but WITHOUT ANY WARRANTY ; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE . See the GNU
* Lesser General Public License for more details .
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library ; if not , write to the Free Software
2006-05-18 14:49:52 +02:00
* Foundation , Inc . , 51 Franklin St , Fifth Floor , Boston , MA 02110 - 1301 , USA
2004-08-09 20:47:22 +02:00
*/
2006-08-04 14:17:58 +02:00
# include <stdarg.h>
2004-08-09 20:47:22 +02:00
# include <stdio.h>
2006-08-04 14:17:58 +02:00
# include "ntstatus.h"
# define WIN32_NO_STATUS
2004-08-09 20:47:22 +02:00
# include "windef.h"
# include "winbase.h"
# include "winerror.h"
2004-08-16 23:07:50 +02:00
# include "aclapi.h"
2004-09-16 22:27:52 +02:00
# include "winnt.h"
2006-05-13 17:56:59 +02:00
# include "sddl.h"
2006-08-04 14:17:58 +02:00
# include "ntsecapi.h"
2006-12-01 00:53:21 +01:00
# include "lmcons.h"
2006-08-04 14:17:58 +02:00
# include "wine/test.h"
2004-08-09 20:47:22 +02:00
2007-10-21 08:58:21 +02:00
/* copied from Wine winternl.h - not included in the Windows SDK */
typedef enum _OBJECT_INFORMATION_CLASS {
ObjectBasicInformation ,
ObjectNameInformation ,
ObjectTypeInformation ,
ObjectAllInformation ,
ObjectDataInformation
} OBJECT_INFORMATION_CLASS , * POBJECT_INFORMATION_CLASS ;
typedef struct _OBJECT_BASIC_INFORMATION {
ULONG Attributes ;
ACCESS_MASK GrantedAccess ;
ULONG HandleCount ;
ULONG PointerCount ;
ULONG PagedPoolUsage ;
ULONG NonPagedPoolUsage ;
ULONG Reserved [ 3 ] ;
ULONG NameInformationLength ;
ULONG TypeInformationLength ;
ULONG SecurityDescriptorLength ;
LARGE_INTEGER CreateTime ;
} OBJECT_BASIC_INFORMATION , * POBJECT_BASIC_INFORMATION ;
2007-09-27 19:34:53 +02:00
# define expect_eq(expr, value, type, format) { type ret = expr; ok((value) == ret, #expr " expected " format " got " format "\n", (value), (ret)); }
2007-11-02 11:33:36 +01:00
static BOOL ( WINAPI * pAddAccessAllowedAceEx ) ( PACL , DWORD , DWORD , DWORD , PSID ) ;
static BOOL ( WINAPI * pAddAccessDeniedAceEx ) ( PACL , DWORD , DWORD , DWORD , PSID ) ;
static BOOL ( WINAPI * pAddAuditAccessAceEx ) ( PACL , DWORD , DWORD , DWORD , PSID , BOOL , BOOL ) ;
2006-03-26 13:39:58 +02:00
typedef VOID ( WINAPI * fnBuildTrusteeWithSidA ) ( PTRUSTEEA pTrustee , PSID pSid ) ;
typedef VOID ( WINAPI * fnBuildTrusteeWithNameA ) ( PTRUSTEEA pTrustee , LPSTR pName ) ;
typedef VOID ( WINAPI * fnBuildTrusteeWithObjectsAndNameA ) ( PTRUSTEEA pTrustee ,
POBJECTS_AND_NAME_A pObjName ,
SE_OBJECT_TYPE ObjectType ,
LPSTR ObjectTypeName ,
LPSTR InheritedObjectTypeName ,
LPSTR Name ) ;
typedef VOID ( WINAPI * fnBuildTrusteeWithObjectsAndSidA ) ( PTRUSTEEA pTrustee ,
POBJECTS_AND_SID pObjSid ,
GUID * pObjectGuid ,
GUID * pInheritedObjectGuid ,
PSID pSid ) ;
typedef LPSTR ( WINAPI * fnGetTrusteeNameA ) ( PTRUSTEEA pTrustee ) ;
2007-09-27 19:34:53 +02:00
typedef BOOL ( WINAPI * fnMakeSelfRelativeSD ) ( PSECURITY_DESCRIPTOR , PSECURITY_DESCRIPTOR , LPDWORD ) ;
2004-08-09 20:47:22 +02:00
typedef BOOL ( WINAPI * fnConvertSidToStringSidA ) ( PSID pSid , LPSTR * str ) ;
2004-09-16 22:27:52 +02:00
typedef BOOL ( WINAPI * fnConvertStringSidToSidA ) ( LPCSTR str , PSID pSid ) ;
2007-07-20 13:53:44 +02:00
static BOOL ( WINAPI * pConvertStringSecurityDescriptorToSecurityDescriptorA ) ( LPCSTR , DWORD ,
PSECURITY_DESCRIPTOR * , PULONG ) ;
2008-10-13 23:02:06 +02:00
static BOOL ( WINAPI * pConvertStringSecurityDescriptorToSecurityDescriptorW ) ( LPCWSTR , DWORD ,
PSECURITY_DESCRIPTOR * , PULONG ) ;
2007-09-25 22:12:50 +02:00
static BOOL ( WINAPI * pConvertSecurityDescriptorToStringSecurityDescriptorA ) ( PSECURITY_DESCRIPTOR , DWORD ,
SECURITY_INFORMATION , LPSTR * , PULONG ) ;
2005-03-28 12:00:59 +02:00
typedef BOOL ( WINAPI * fnGetFileSecurityA ) ( LPCSTR , SECURITY_INFORMATION ,
PSECURITY_DESCRIPTOR , DWORD , LPDWORD ) ;
2008-11-05 08:01:46 +01:00
typedef BOOL ( WINAPI * fnSetFileSecurityA ) ( LPCSTR , SECURITY_INFORMATION ,
PSECURITY_DESCRIPTOR ) ;
2007-08-14 11:05:04 +02:00
static DWORD ( WINAPI * pGetNamedSecurityInfoA ) ( LPSTR , SE_OBJECT_TYPE , SECURITY_INFORMATION ,
PSID * , PSID * , PACL * , PACL * ,
PSECURITY_DESCRIPTOR * ) ;
2005-06-27 21:48:35 +02:00
typedef DWORD ( WINAPI * fnRtlAdjustPrivilege ) ( ULONG , BOOLEAN , BOOLEAN , PBOOLEAN ) ;
2006-07-20 13:05:46 +02:00
typedef BOOL ( WINAPI * fnCreateWellKnownSid ) ( WELL_KNOWN_SID_TYPE , PSID , PSID , DWORD * ) ;
2007-03-16 22:37:14 +01:00
typedef BOOL ( WINAPI * fnDuplicateTokenEx ) ( HANDLE , DWORD , LPSECURITY_ATTRIBUTES ,
SECURITY_IMPERSONATION_LEVEL , TOKEN_TYPE , PHANDLE ) ;
2004-08-09 20:47:22 +02:00
2006-08-04 14:17:58 +02:00
typedef NTSTATUS ( WINAPI * fnLsaQueryInformationPolicy ) ( LSA_HANDLE , POLICY_INFORMATION_CLASS , PVOID * ) ;
typedef NTSTATUS ( WINAPI * fnLsaClose ) ( LSA_HANDLE ) ;
typedef NTSTATUS ( WINAPI * fnLsaFreeMemory ) ( PVOID ) ;
typedef NTSTATUS ( WINAPI * fnLsaOpenPolicy ) ( PLSA_UNICODE_STRING , PLSA_OBJECT_ATTRIBUTES , ACCESS_MASK , PLSA_HANDLE ) ;
2007-01-25 07:43:18 +01:00
static NTSTATUS ( WINAPI * pNtQueryObject ) ( HANDLE , OBJECT_INFORMATION_CLASS , PVOID , ULONG , PULONG ) ;
2007-08-14 11:05:04 +02:00
static DWORD ( WINAPI * pSetEntriesInAclW ) ( ULONG , PEXPLICIT_ACCESSW , PACL , PACL * ) ;
2007-11-02 11:33:36 +01:00
static BOOL ( WINAPI * pSetSecurityDescriptorControl ) ( PSECURITY_DESCRIPTOR , SECURITY_DESCRIPTOR_CONTROL ,
SECURITY_DESCRIPTOR_CONTROL ) ;
2008-08-25 14:16:25 +02:00
static DWORD ( WINAPI * pGetSecurityInfo ) ( HANDLE , SE_OBJECT_TYPE , SECURITY_INFORMATION ,
PSID * , PSID * , PACL * , PACL * , PSECURITY_DESCRIPTOR * ) ;
2009-01-13 20:54:32 +01:00
static NTSTATUS ( WINAPI * pNtAccessCheck ) ( PSECURITY_DESCRIPTOR , HANDLE , ACCESS_MASK , PGENERIC_MAPPING ,
PPRIVILEGE_SET , PULONG , PULONG , NTSTATUS * ) ;
2006-08-04 14:17:58 +02:00
2004-11-04 05:52:17 +01:00
static HMODULE hmod ;
2007-01-25 07:43:18 +01:00
static int myARGC ;
static char * * myARGV ;
2004-11-04 05:52:17 +01:00
2005-02-14 12:06:16 +01:00
fnBuildTrusteeWithSidA pBuildTrusteeWithSidA ;
fnBuildTrusteeWithNameA pBuildTrusteeWithNameA ;
2006-03-26 13:39:58 +02:00
fnBuildTrusteeWithObjectsAndNameA pBuildTrusteeWithObjectsAndNameA ;
fnBuildTrusteeWithObjectsAndSidA pBuildTrusteeWithObjectsAndSidA ;
fnGetTrusteeNameA pGetTrusteeNameA ;
2007-09-27 19:34:53 +02:00
fnMakeSelfRelativeSD pMakeSelfRelativeSD ;
2004-08-09 20:47:22 +02:00
fnConvertSidToStringSidA pConvertSidToStringSidA ;
2004-09-16 22:27:52 +02:00
fnConvertStringSidToSidA pConvertStringSidToSidA ;
2005-03-28 12:00:59 +02:00
fnGetFileSecurityA pGetFileSecurityA ;
2008-11-05 08:01:46 +01:00
fnSetFileSecurityA pSetFileSecurityA ;
2005-06-27 21:48:35 +02:00
fnRtlAdjustPrivilege pRtlAdjustPrivilege ;
2006-07-20 13:05:46 +02:00
fnCreateWellKnownSid pCreateWellKnownSid ;
2007-03-16 22:37:14 +01:00
fnDuplicateTokenEx pDuplicateTokenEx ;
2006-08-04 14:17:58 +02:00
fnLsaQueryInformationPolicy pLsaQueryInformationPolicy ;
fnLsaClose pLsaClose ;
fnLsaFreeMemory pLsaFreeMemory ;
fnLsaOpenPolicy pLsaOpenPolicy ;
2004-09-16 22:27:52 +02:00
struct sidRef
{
SID_IDENTIFIER_AUTHORITY auth ;
const char * refStr ;
} ;
2004-08-09 20:47:22 +02:00
2004-11-04 05:52:17 +01:00
static void init ( void )
{
2007-07-20 13:53:44 +02:00
HMODULE hntdll ;
hntdll = GetModuleHandleA ( " ntdll.dll " ) ;
pNtQueryObject = ( void * ) GetProcAddress ( hntdll , " NtQueryObject " ) ;
2009-01-13 20:54:32 +01:00
pNtAccessCheck = ( void * ) GetProcAddress ( hntdll , " NtAccessCheck " ) ;
2007-01-25 07:43:18 +01:00
2004-11-04 05:52:17 +01:00
hmod = GetModuleHandle ( " advapi32.dll " ) ;
2007-11-02 11:33:36 +01:00
pAddAccessAllowedAceEx = ( void * ) GetProcAddress ( hmod , " AddAccessAllowedAceEx " ) ;
pAddAccessDeniedAceEx = ( void * ) GetProcAddress ( hmod , " AddAccessDeniedAceEx " ) ;
pAddAuditAccessAceEx = ( void * ) GetProcAddress ( hmod , " AddAuditAccessAceEx " ) ;
2007-07-20 13:53:44 +02:00
pConvertStringSecurityDescriptorToSecurityDescriptorA =
( void * ) GetProcAddress ( hmod , " ConvertStringSecurityDescriptorToSecurityDescriptorA " ) ;
2008-10-13 23:02:06 +02:00
pConvertStringSecurityDescriptorToSecurityDescriptorW =
( void * ) GetProcAddress ( hmod , " ConvertStringSecurityDescriptorToSecurityDescriptorW " ) ;
2007-09-25 22:12:50 +02:00
pConvertSecurityDescriptorToStringSecurityDescriptorA =
( void * ) GetProcAddress ( hmod , " ConvertSecurityDescriptorToStringSecurityDescriptorA " ) ;
2008-11-05 08:01:46 +01:00
pGetFileSecurityA = ( fnGetFileSecurityA ) GetProcAddress ( hmod , " GetFileSecurityA " ) ;
pSetFileSecurityA = ( fnSetFileSecurityA ) GetProcAddress ( hmod , " SetFileSecurityA " ) ;
2007-11-02 11:33:36 +01:00
pCreateWellKnownSid = ( fnCreateWellKnownSid ) GetProcAddress ( hmod , " CreateWellKnownSid " ) ;
2007-08-14 11:05:04 +02:00
pGetNamedSecurityInfoA = ( void * ) GetProcAddress ( hmod , " GetNamedSecurityInfoA " ) ;
2007-11-02 11:33:36 +01:00
pMakeSelfRelativeSD = ( void * ) GetProcAddress ( hmod , " MakeSelfRelativeSD " ) ;
2007-08-14 11:05:04 +02:00
pSetEntriesInAclW = ( void * ) GetProcAddress ( hmod , " SetEntriesInAclW " ) ;
2007-11-02 11:33:36 +01:00
pSetSecurityDescriptorControl = ( void * ) GetProcAddress ( hmod , " SetSecurityDescriptorControl " ) ;
2008-08-25 14:16:25 +02:00
pGetSecurityInfo = ( void * ) GetProcAddress ( hmod , " GetSecurityInfo " ) ;
2007-01-25 07:43:18 +01:00
2007-07-20 13:53:44 +02:00
myARGC = winetest_get_mainargs ( & myARGV ) ;
2004-11-04 05:52:17 +01:00
}
2006-08-13 10:53:29 +02:00
static void test_str_sid ( const char * str_sid )
2006-07-29 13:45:23 +02:00
{
PSID psid ;
char * temp ;
if ( pConvertStringSidToSidA ( str_sid , & psid ) )
{
if ( pConvertSidToStringSidA ( psid , & temp ) )
{
trace ( " %s: %s \n " , str_sid , temp ) ;
LocalFree ( temp ) ;
}
2006-10-17 21:32:00 +02:00
LocalFree ( psid ) ;
2006-07-29 13:45:23 +02:00
}
else
2006-08-27 22:36:23 +02:00
{
if ( GetLastError ( ) ! = ERROR_INVALID_SID )
2006-10-04 12:37:30 +02:00
trace ( " %s: couldn't be converted, returned %d \n " , str_sid , GetLastError ( ) ) ;
2006-08-27 22:36:23 +02:00
else
trace ( " %s: couldn't be converted \n " , str_sid ) ;
}
2006-07-29 13:45:23 +02:00
}
2005-06-09 11:48:36 +02:00
static void test_sid ( void )
2004-08-09 20:47:22 +02:00
{
2004-09-16 22:27:52 +02:00
struct sidRef refs [ ] = {
{ { { 0x00 , 0x00 , 0x33 , 0x44 , 0x55 , 0x66 } } , " S-1-860116326-1 " } ,
{ { { 0x00 , 0x00 , 0x01 , 0x02 , 0x03 , 0x04 } } , " S-1-16909060-1 " } ,
{ { { 0x00 , 0x00 , 0x00 , 0x01 , 0x02 , 0x03 } } , " S-1-66051-1 " } ,
{ { { 0x00 , 0x00 , 0x00 , 0x00 , 0x01 , 0x02 } } , " S-1-258-1 " } ,
{ { { 0x00 , 0x00 , 0x00 , 0x00 , 0x00 , 0x02 } } , " S-1-2-1 " } ,
{ { { 0x00 , 0x00 , 0x00 , 0x00 , 0x00 , 0x0c } } , " S-1-12-1 " } ,
} ;
const char noSubAuthStr [ ] = " S-1-5 " ;
unsigned int i ;
PSID psid = NULL ;
2007-09-25 04:04:11 +02:00
SID * pisid ;
2004-08-09 20:47:22 +02:00
BOOL r ;
2004-09-16 22:27:52 +02:00
LPSTR str = NULL ;
2004-08-09 20:47:22 +02:00
2004-09-16 22:27:52 +02:00
pConvertSidToStringSidA = ( fnConvertSidToStringSidA )
GetProcAddress ( hmod , " ConvertSidToStringSidA " ) ;
if ( ! pConvertSidToStringSidA )
return ;
pConvertStringSidToSidA = ( fnConvertStringSidToSidA )
GetProcAddress ( hmod , " ConvertStringSidToSidA " ) ;
if ( ! pConvertStringSidToSidA )
return ;
2004-08-09 20:47:22 +02:00
2004-09-16 22:27:52 +02:00
r = pConvertStringSidToSidA ( NULL , NULL ) ;
ok ( ! r , " expected failure with NULL parameters \n " ) ;
if ( GetLastError ( ) = = ERROR_CALL_NOT_IMPLEMENTED )
2004-08-09 20:47:22 +02:00
return ;
2004-09-16 22:27:52 +02:00
ok ( GetLastError ( ) = = ERROR_INVALID_PARAMETER ,
2006-10-04 12:37:30 +02:00
" expected GetLastError() is ERROR_INVALID_PARAMETER, got %d \n " ,
2004-09-16 22:27:52 +02:00
GetLastError ( ) ) ;
r = pConvertStringSidToSidA ( refs [ 0 ] . refStr , NULL ) ;
ok ( ! r & & GetLastError ( ) = = ERROR_INVALID_PARAMETER ,
2006-10-04 12:37:30 +02:00
" expected GetLastError() is ERROR_INVALID_PARAMETER, got %d \n " ,
2004-09-16 22:27:52 +02:00
GetLastError ( ) ) ;
r = pConvertStringSidToSidA ( NULL , & str ) ;
ok ( ! r & & GetLastError ( ) = = ERROR_INVALID_PARAMETER ,
2006-10-04 12:37:30 +02:00
" expected GetLastError() is ERROR_INVALID_PARAMETER, got %d \n " ,
2004-09-16 22:27:52 +02:00
GetLastError ( ) ) ;
r = pConvertStringSidToSidA ( noSubAuthStr , & psid ) ;
ok ( ! r ,
" expected failure with no sub authorities \n " ) ;
ok ( GetLastError ( ) = = ERROR_INVALID_SID ,
2006-10-04 12:37:30 +02:00
" expected GetLastError() is ERROR_INVALID_SID, got %d \n " ,
2004-09-16 22:27:52 +02:00
GetLastError ( ) ) ;
2007-09-25 04:04:11 +02:00
ok ( pConvertStringSidToSidA ( " S-1-5-21-93476-23408-4576 " , & psid ) , " ConvertStringSidToSidA failed \n " ) ;
2009-01-13 10:57:53 +01:00
pisid = psid ;
2007-09-25 04:04:11 +02:00
ok ( pisid - > SubAuthorityCount = = 4 , " Invalid sub authority count - expected 4, got %d \n " , pisid - > SubAuthorityCount ) ;
ok ( pisid - > SubAuthority [ 0 ] = = 21 , " Invalid subauthority 0 - expceted 21, got %d \n " , pisid - > SubAuthority [ 0 ] ) ;
ok ( pisid - > SubAuthority [ 3 ] = = 4576 , " Invalid subauthority 0 - expceted 4576, got %d \n " , pisid - > SubAuthority [ 3 ] ) ;
LocalFree ( str ) ;
2004-09-16 22:27:52 +02:00
for ( i = 0 ; i < sizeof ( refs ) / sizeof ( refs [ 0 ] ) ; i + + )
{
PISID pisid ;
r = AllocateAndInitializeSid ( & refs [ i ] . auth , 1 , 1 , 0 , 0 , 0 , 0 , 0 , 0 , 0 ,
& psid ) ;
ok ( r , " failed to allocate sid \n " ) ;
r = pConvertSidToStringSidA ( psid , & str ) ;
ok ( r , " failed to convert sid \n " ) ;
2005-03-14 18:20:58 +01:00
if ( r )
{
ok ( ! strcmp ( str , refs [ i ] . refStr ) ,
" incorrect sid, expected %s, got %s \n " , refs [ i ] . refStr , str ) ;
2004-09-16 22:27:52 +02:00
LocalFree ( str ) ;
2005-03-14 18:20:58 +01:00
}
2004-09-16 22:27:52 +02:00
if ( psid )
FreeSid ( psid ) ;
r = pConvertStringSidToSidA ( refs [ i ] . refStr , & psid ) ;
ok ( r , " failed to parse sid string \n " ) ;
2009-01-13 10:57:53 +01:00
pisid = psid ;
2004-09-16 22:27:52 +02:00
ok ( pisid & &
! memcmp ( pisid - > IdentifierAuthority . Value , refs [ i ] . auth . Value ,
sizeof ( refs [ i ] . auth ) ) ,
" string sid %s didn't parse to expected value \n "
2006-10-04 12:37:30 +02:00
" (got 0x%04x%08x, expected 0x%04x%08x) \n " ,
2004-09-16 22:27:52 +02:00
refs [ i ] . refStr ,
MAKEWORD ( pisid - > IdentifierAuthority . Value [ 1 ] ,
pisid - > IdentifierAuthority . Value [ 0 ] ) ,
MAKELONG ( MAKEWORD ( pisid - > IdentifierAuthority . Value [ 5 ] ,
pisid - > IdentifierAuthority . Value [ 4 ] ) ,
MAKEWORD ( pisid - > IdentifierAuthority . Value [ 3 ] ,
pisid - > IdentifierAuthority . Value [ 2 ] ) ) ,
MAKEWORD ( refs [ i ] . auth . Value [ 1 ] , refs [ i ] . auth . Value [ 0 ] ) ,
MAKELONG ( MAKEWORD ( refs [ i ] . auth . Value [ 5 ] , refs [ i ] . auth . Value [ 4 ] ) ,
MAKEWORD ( refs [ i ] . auth . Value [ 3 ] , refs [ i ] . auth . Value [ 2 ] ) ) ) ;
if ( psid )
LocalFree ( psid ) ;
}
2006-07-29 13:45:23 +02:00
2006-08-12 14:27:57 +02:00
trace ( " String SIDs: \n " ) ;
2006-07-29 13:45:23 +02:00
test_str_sid ( " AO " ) ;
test_str_sid ( " RU " ) ;
test_str_sid ( " AN " ) ;
test_str_sid ( " AU " ) ;
test_str_sid ( " BA " ) ;
test_str_sid ( " BG " ) ;
test_str_sid ( " BO " ) ;
test_str_sid ( " BU " ) ;
test_str_sid ( " CA " ) ;
test_str_sid ( " CG " ) ;
test_str_sid ( " CO " ) ;
test_str_sid ( " DA " ) ;
test_str_sid ( " DC " ) ;
test_str_sid ( " DD " ) ;
test_str_sid ( " DG " ) ;
test_str_sid ( " DU " ) ;
test_str_sid ( " EA " ) ;
test_str_sid ( " ED " ) ;
test_str_sid ( " WD " ) ;
test_str_sid ( " PA " ) ;
test_str_sid ( " IU " ) ;
test_str_sid ( " LA " ) ;
test_str_sid ( " LG " ) ;
test_str_sid ( " LS " ) ;
test_str_sid ( " SY " ) ;
test_str_sid ( " NU " ) ;
test_str_sid ( " NO " ) ;
test_str_sid ( " NS " ) ;
test_str_sid ( " PO " ) ;
test_str_sid ( " PS " ) ;
test_str_sid ( " PU " ) ;
test_str_sid ( " RS " ) ;
test_str_sid ( " RD " ) ;
test_str_sid ( " RE " ) ;
test_str_sid ( " RC " ) ;
test_str_sid ( " SA " ) ;
test_str_sid ( " SO " ) ;
test_str_sid ( " SU " ) ;
2004-08-16 23:07:50 +02:00
}
2005-06-09 11:48:36 +02:00
static void test_trustee ( void )
2004-08-16 23:07:50 +02:00
{
2006-03-26 13:39:58 +02:00
GUID ObjectType = { 0x12345678 , 0x1234 , 0x5678 , { 0x11 , 0x22 , 0x33 , 0x44 , 0x55 , 0x66 , 0x77 , 0x88 } } ;
GUID InheritedObjectType = { 0x23456789 , 0x2345 , 0x6786 , { 0x2 , 0x33 , 0x44 , 0x55 , 0x66 , 0x77 , 0x88 , 0x99 } } ;
GUID ZeroGuid ;
OBJECTS_AND_NAME_ oan ;
OBJECTS_AND_SID oas ;
2004-08-16 23:07:50 +02:00
TRUSTEE trustee ;
PSID psid ;
2006-03-26 13:39:58 +02:00
char szObjectTypeName [ ] = " ObjectTypeName " ;
char szInheritedObjectTypeName [ ] = " InheritedObjectTypeName " ;
char szTrusteeName [ ] = " szTrusteeName " ;
2006-03-28 14:43:18 +02:00
SID_IDENTIFIER_AUTHORITY auth = { { 0x11 , 0x22 , 0 , 0 , 0 , 0 } } ;
2006-03-26 13:39:58 +02:00
memset ( & ZeroGuid , 0x00 , sizeof ( ZeroGuid ) ) ;
2004-08-16 23:07:50 +02:00
2005-02-14 12:06:16 +01:00
pBuildTrusteeWithSidA = ( fnBuildTrusteeWithSidA )
GetProcAddress ( hmod , " BuildTrusteeWithSidA " ) ;
pBuildTrusteeWithNameA = ( fnBuildTrusteeWithNameA )
GetProcAddress ( hmod , " BuildTrusteeWithNameA " ) ;
2006-03-26 13:39:58 +02:00
pBuildTrusteeWithObjectsAndNameA = ( fnBuildTrusteeWithObjectsAndNameA )
GetProcAddress ( hmod , " BuildTrusteeWithObjectsAndNameA " ) ;
pBuildTrusteeWithObjectsAndSidA = ( fnBuildTrusteeWithObjectsAndSidA )
GetProcAddress ( hmod , " BuildTrusteeWithObjectsAndSidA " ) ;
pGetTrusteeNameA = ( fnGetTrusteeNameA )
GetProcAddress ( hmod , " GetTrusteeNameA " ) ;
if ( ! pBuildTrusteeWithSidA | | ! pBuildTrusteeWithNameA | |
! pBuildTrusteeWithObjectsAndNameA | | ! pBuildTrusteeWithObjectsAndSidA | |
! pGetTrusteeNameA )
2005-02-14 12:06:16 +01:00
return ;
2004-11-03 23:14:55 +01:00
if ( ! AllocateAndInitializeSid ( & auth , 1 , 42 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , & psid ) )
{
trace ( " failed to init SID \n " ) ;
return ;
}
2004-08-16 23:07:50 +02:00
2006-03-26 13:39:58 +02:00
/* test BuildTrusteeWithSidA */
2004-08-16 23:07:50 +02:00
memset ( & trustee , 0xff , sizeof trustee ) ;
2005-02-14 12:06:16 +01:00
pBuildTrusteeWithSidA ( & trustee , psid ) ;
2004-08-16 23:07:50 +02:00
ok ( trustee . pMultipleTrustee = = NULL , " pMultipleTrustee wrong \n " ) ;
ok ( trustee . MultipleTrusteeOperation = = NO_MULTIPLE_TRUSTEE ,
" MultipleTrusteeOperation wrong \n " ) ;
ok ( trustee . TrusteeForm = = TRUSTEE_IS_SID , " TrusteeForm wrong \n " ) ;
ok ( trustee . TrusteeType = = TRUSTEE_IS_UNKNOWN , " TrusteeType wrong \n " ) ;
2009-01-13 10:57:53 +01:00
ok ( trustee . ptstrName = = psid , " ptstrName wrong \n " ) ;
2006-03-26 13:39:58 +02:00
/* test BuildTrusteeWithObjectsAndSidA (test 1) */
memset ( & trustee , 0xff , sizeof trustee ) ;
memset ( & oas , 0xff , sizeof ( oas ) ) ;
pBuildTrusteeWithObjectsAndSidA ( & trustee , & oas , & ObjectType ,
& InheritedObjectType , psid ) ;
ok ( trustee . pMultipleTrustee = = NULL , " pMultipleTrustee wrong \n " ) ;
ok ( trustee . MultipleTrusteeOperation = = NO_MULTIPLE_TRUSTEE , " MultipleTrusteeOperation wrong \n " ) ;
ok ( trustee . TrusteeForm = = TRUSTEE_IS_OBJECTS_AND_SID , " TrusteeForm wrong \n " ) ;
ok ( trustee . TrusteeType = = TRUSTEE_IS_UNKNOWN , " TrusteeType wrong \n " ) ;
ok ( trustee . ptstrName = = ( LPSTR ) & oas , " ptstrName wrong \n " ) ;
ok ( oas . ObjectsPresent = = ( ACE_OBJECT_TYPE_PRESENT | ACE_INHERITED_OBJECT_TYPE_PRESENT ) , " ObjectsPresent wrong \n " ) ;
ok ( ! memcmp ( & oas . ObjectTypeGuid , & ObjectType , sizeof ( GUID ) ) , " ObjectTypeGuid wrong \n " ) ;
ok ( ! memcmp ( & oas . InheritedObjectTypeGuid , & InheritedObjectType , sizeof ( GUID ) ) , " InheritedObjectTypeGuid wrong \n " ) ;
ok ( oas . pSid = = psid , " pSid wrong \n " ) ;
/* test GetTrusteeNameA */
ok ( pGetTrusteeNameA ( & trustee ) = = ( LPSTR ) & oas , " GetTrusteeName returned wrong value \n " ) ;
/* test BuildTrusteeWithObjectsAndSidA (test 2) */
memset ( & trustee , 0xff , sizeof trustee ) ;
memset ( & oas , 0xff , sizeof ( oas ) ) ;
pBuildTrusteeWithObjectsAndSidA ( & trustee , & oas , NULL ,
& InheritedObjectType , psid ) ;
ok ( trustee . pMultipleTrustee = = NULL , " pMultipleTrustee wrong \n " ) ;
ok ( trustee . MultipleTrusteeOperation = = NO_MULTIPLE_TRUSTEE , " MultipleTrusteeOperation wrong \n " ) ;
ok ( trustee . TrusteeForm = = TRUSTEE_IS_OBJECTS_AND_SID , " TrusteeForm wrong \n " ) ;
ok ( trustee . TrusteeType = = TRUSTEE_IS_UNKNOWN , " TrusteeType wrong \n " ) ;
ok ( trustee . ptstrName = = ( LPSTR ) & oas , " ptstrName wrong \n " ) ;
ok ( oas . ObjectsPresent = = ACE_INHERITED_OBJECT_TYPE_PRESENT , " ObjectsPresent wrong \n " ) ;
ok ( ! memcmp ( & oas . ObjectTypeGuid , & ZeroGuid , sizeof ( GUID ) ) , " ObjectTypeGuid wrong \n " ) ;
ok ( ! memcmp ( & oas . InheritedObjectTypeGuid , & InheritedObjectType , sizeof ( GUID ) ) , " InheritedObjectTypeGuid wrong \n " ) ;
ok ( oas . pSid = = psid , " pSid wrong \n " ) ;
2004-08-16 23:07:50 +02:00
FreeSid ( psid ) ;
2004-08-09 20:47:22 +02:00
2004-08-19 21:01:12 +02:00
/* test BuildTrusteeWithNameA */
memset ( & trustee , 0xff , sizeof trustee ) ;
2006-03-26 13:39:58 +02:00
pBuildTrusteeWithNameA ( & trustee , szTrusteeName ) ;
2004-08-19 21:01:12 +02:00
ok ( trustee . pMultipleTrustee = = NULL , " pMultipleTrustee wrong \n " ) ;
ok ( trustee . MultipleTrusteeOperation = = NO_MULTIPLE_TRUSTEE ,
" MultipleTrusteeOperation wrong \n " ) ;
ok ( trustee . TrusteeForm = = TRUSTEE_IS_NAME , " TrusteeForm wrong \n " ) ;
ok ( trustee . TrusteeType = = TRUSTEE_IS_UNKNOWN , " TrusteeType wrong \n " ) ;
2006-03-26 13:39:58 +02:00
ok ( trustee . ptstrName = = szTrusteeName , " ptstrName wrong \n " ) ;
/* test BuildTrusteeWithObjectsAndNameA (test 1) */
memset ( & trustee , 0xff , sizeof trustee ) ;
memset ( & oan , 0xff , sizeof ( oan ) ) ;
pBuildTrusteeWithObjectsAndNameA ( & trustee , & oan , SE_KERNEL_OBJECT , szObjectTypeName ,
szInheritedObjectTypeName , szTrusteeName ) ;
ok ( trustee . pMultipleTrustee = = NULL , " pMultipleTrustee wrong \n " ) ;
ok ( trustee . MultipleTrusteeOperation = = NO_MULTIPLE_TRUSTEE , " MultipleTrusteeOperation wrong \n " ) ;
ok ( trustee . TrusteeForm = = TRUSTEE_IS_OBJECTS_AND_NAME , " TrusteeForm wrong \n " ) ;
ok ( trustee . TrusteeType = = TRUSTEE_IS_UNKNOWN , " TrusteeType wrong \n " ) ;
ok ( trustee . ptstrName = = ( LPTSTR ) & oan , " ptstrName wrong \n " ) ;
ok ( oan . ObjectsPresent = = ( ACE_OBJECT_TYPE_PRESENT | ACE_INHERITED_OBJECT_TYPE_PRESENT ) , " ObjectsPresent wrong \n " ) ;
ok ( oan . ObjectType = = SE_KERNEL_OBJECT , " ObjectType wrong \n " ) ;
ok ( oan . InheritedObjectTypeName = = szInheritedObjectTypeName , " InheritedObjectTypeName wrong \n " ) ;
ok ( oan . ptstrName = = szTrusteeName , " szTrusteeName wrong \n " ) ;
/* test GetTrusteeNameA */
ok ( pGetTrusteeNameA ( & trustee ) = = ( LPSTR ) & oan , " GetTrusteeName returned wrong value \n " ) ;
/* test BuildTrusteeWithObjectsAndNameA (test 2) */
memset ( & trustee , 0xff , sizeof trustee ) ;
memset ( & oan , 0xff , sizeof ( oan ) ) ;
pBuildTrusteeWithObjectsAndNameA ( & trustee , & oan , SE_KERNEL_OBJECT , NULL ,
szInheritedObjectTypeName , szTrusteeName ) ;
ok ( trustee . pMultipleTrustee = = NULL , " pMultipleTrustee wrong \n " ) ;
ok ( trustee . MultipleTrusteeOperation = = NO_MULTIPLE_TRUSTEE , " MultipleTrusteeOperation wrong \n " ) ;
ok ( trustee . TrusteeForm = = TRUSTEE_IS_OBJECTS_AND_NAME , " TrusteeForm wrong \n " ) ;
ok ( trustee . TrusteeType = = TRUSTEE_IS_UNKNOWN , " TrusteeType wrong \n " ) ;
ok ( trustee . ptstrName = = ( LPSTR ) & oan , " ptstrName wrong \n " ) ;
ok ( oan . ObjectsPresent = = ACE_INHERITED_OBJECT_TYPE_PRESENT , " ObjectsPresent wrong \n " ) ;
ok ( oan . ObjectType = = SE_KERNEL_OBJECT , " ObjectType wrong \n " ) ;
ok ( oan . InheritedObjectTypeName = = szInheritedObjectTypeName , " InheritedObjectTypeName wrong \n " ) ;
ok ( oan . ptstrName = = szTrusteeName , " szTrusteeName wrong \n " ) ;
/* test BuildTrusteeWithObjectsAndNameA (test 3) */
memset ( & trustee , 0xff , sizeof trustee ) ;
memset ( & oan , 0xff , sizeof ( oan ) ) ;
pBuildTrusteeWithObjectsAndNameA ( & trustee , & oan , SE_KERNEL_OBJECT , szObjectTypeName ,
NULL , szTrusteeName ) ;
ok ( trustee . pMultipleTrustee = = NULL , " pMultipleTrustee wrong \n " ) ;
ok ( trustee . MultipleTrusteeOperation = = NO_MULTIPLE_TRUSTEE , " MultipleTrusteeOperation wrong \n " ) ;
ok ( trustee . TrusteeForm = = TRUSTEE_IS_OBJECTS_AND_NAME , " TrusteeForm wrong \n " ) ;
ok ( trustee . TrusteeType = = TRUSTEE_IS_UNKNOWN , " TrusteeType wrong \n " ) ;
ok ( trustee . ptstrName = = ( LPTSTR ) & oan , " ptstrName wrong \n " ) ;
ok ( oan . ObjectsPresent = = ACE_OBJECT_TYPE_PRESENT , " ObjectsPresent wrong \n " ) ;
ok ( oan . ObjectType = = SE_KERNEL_OBJECT , " ObjectType wrong \n " ) ;
ok ( oan . InheritedObjectTypeName = = NULL , " InheritedObjectTypeName wrong \n " ) ;
ok ( oan . ptstrName = = szTrusteeName , " szTrusteeName wrong \n " ) ;
2004-08-19 21:01:12 +02:00
}
2004-11-04 05:52:17 +01:00
/* If the first isn't defined, assume none is */
# ifndef SE_MIN_WELL_KNOWN_PRIVILEGE
# define SE_MIN_WELL_KNOWN_PRIVILEGE 2L
# define SE_CREATE_TOKEN_PRIVILEGE 2L
# define SE_ASSIGNPRIMARYTOKEN_PRIVILEGE 3L
# define SE_LOCK_MEMORY_PRIVILEGE 4L
# define SE_INCREASE_QUOTA_PRIVILEGE 5L
# define SE_MACHINE_ACCOUNT_PRIVILEGE 6L
# define SE_TCB_PRIVILEGE 7L
# define SE_SECURITY_PRIVILEGE 8L
# define SE_TAKE_OWNERSHIP_PRIVILEGE 9L
# define SE_LOAD_DRIVER_PRIVILEGE 10L
# define SE_SYSTEM_PROFILE_PRIVILEGE 11L
# define SE_SYSTEMTIME_PRIVILEGE 12L
# define SE_PROF_SINGLE_PROCESS_PRIVILEGE 13L
# define SE_INC_BASE_PRIORITY_PRIVILEGE 14L
# define SE_CREATE_PAGEFILE_PRIVILEGE 15L
# define SE_CREATE_PERMANENT_PRIVILEGE 16L
# define SE_BACKUP_PRIVILEGE 17L
# define SE_RESTORE_PRIVILEGE 18L
# define SE_SHUTDOWN_PRIVILEGE 19L
# define SE_DEBUG_PRIVILEGE 20L
# define SE_AUDIT_PRIVILEGE 21L
# define SE_SYSTEM_ENVIRONMENT_PRIVILEGE 22L
2008-11-10 09:48:15 +01:00
# define SE_CHANGE_NOTIFY_PRIVILEGE 23L
2004-11-04 05:52:17 +01:00
# define SE_REMOTE_SHUTDOWN_PRIVILEGE 24L
# define SE_UNDOCK_PRIVILEGE 25L
# define SE_SYNC_AGENT_PRIVILEGE 26L
# define SE_ENABLE_DELEGATION_PRIVILEGE 27L
# define SE_MANAGE_VOLUME_PRIVILEGE 28L
# define SE_IMPERSONATE_PRIVILEGE 29L
# define SE_CREATE_GLOBAL_PRIVILEGE 30L
# define SE_MAX_WELL_KNOWN_PRIVILEGE SE_CREATE_GLOBAL_PRIVILEGE
# endif /* ndef SE_MIN_WELL_KNOWN_PRIVILEGE */
static void test_allocateLuid ( void )
{
BOOL ( WINAPI * pAllocateLocallyUniqueId ) ( PLUID ) ;
LUID luid1 , luid2 ;
BOOL ret ;
2005-02-14 22:04:45 +01:00
pAllocateLocallyUniqueId = ( void * ) GetProcAddress ( hmod , " AllocateLocallyUniqueId " ) ;
2004-11-04 05:52:17 +01:00
if ( ! pAllocateLocallyUniqueId ) return ;
ret = pAllocateLocallyUniqueId ( & luid1 ) ;
if ( ! ret & & GetLastError ( ) = = ERROR_CALL_NOT_IMPLEMENTED )
return ;
ok ( ret ,
2006-10-04 12:37:30 +02:00
" AllocateLocallyUniqueId failed: %d \n " , GetLastError ( ) ) ;
2004-12-27 18:26:37 +01:00
ret = pAllocateLocallyUniqueId ( & luid2 ) ;
ok ( ret ,
2006-10-04 12:37:30 +02:00
" AllocateLocallyUniqueId failed: %d \n " , GetLastError ( ) ) ;
2004-11-04 05:52:17 +01:00
ok ( luid1 . LowPart > SE_MAX_WELL_KNOWN_PRIVILEGE | | luid1 . HighPart ! = 0 ,
" AllocateLocallyUniqueId returned a well-known LUID \n " ) ;
ok ( luid1 . LowPart ! = luid2 . LowPart | | luid1 . HighPart ! = luid2 . HighPart ,
" AllocateLocallyUniqueId returned non-unique LUIDs \n " ) ;
2004-12-27 18:26:37 +01:00
ret = pAllocateLocallyUniqueId ( NULL ) ;
ok ( ! ret & & GetLastError ( ) = = ERROR_NOACCESS ,
2006-10-04 12:37:30 +02:00
" AllocateLocallyUniqueId(NULL) didn't return ERROR_NOACCESS: %d \n " ,
2004-11-04 05:52:17 +01:00
GetLastError ( ) ) ;
}
static void test_lookupPrivilegeName ( void )
{
2005-06-09 11:48:36 +02:00
BOOL ( WINAPI * pLookupPrivilegeNameA ) ( LPCSTR , PLUID , LPSTR , LPDWORD ) ;
2004-11-04 05:52:17 +01:00
char buf [ MAX_PATH ] ; /* arbitrary, seems long enough */
DWORD cchName = sizeof ( buf ) ;
LUID luid = { 0 , 0 } ;
LONG i ;
BOOL ret ;
/* check whether it's available first */
2005-02-14 22:04:45 +01:00
pLookupPrivilegeNameA = ( void * ) GetProcAddress ( hmod , " LookupPrivilegeNameA " ) ;
2004-11-04 05:52:17 +01:00
if ( ! pLookupPrivilegeNameA ) return ;
luid . LowPart = SE_CREATE_TOKEN_PRIVILEGE ;
ret = pLookupPrivilegeNameA ( NULL , & luid , buf , & cchName ) ;
if ( ! ret & & GetLastError ( ) = = ERROR_CALL_NOT_IMPLEMENTED )
return ;
/* check with a short buffer */
cchName = 0 ;
luid . LowPart = SE_CREATE_TOKEN_PRIVILEGE ;
2004-12-27 18:26:37 +01:00
ret = pLookupPrivilegeNameA ( NULL , & luid , NULL , & cchName ) ;
ok ( ! ret & & GetLastError ( ) = = ERROR_INSUFFICIENT_BUFFER ,
2006-10-04 12:37:30 +02:00
" LookupPrivilegeNameA didn't fail with ERROR_INSUFFICIENT_BUFFER: %d \n " ,
2004-11-04 05:52:17 +01:00
GetLastError ( ) ) ;
ok ( cchName = = strlen ( " SeCreateTokenPrivilege " ) + 1 ,
" LookupPrivilegeNameA returned an incorrect required length for \n "
2006-10-04 12:37:30 +02:00
" SeCreateTokenPrivilege (got %d, expected %d) \n " , cchName ,
2006-06-13 13:56:18 +02:00
lstrlenA ( " SeCreateTokenPrivilege " ) + 1 ) ;
2004-11-04 05:52:17 +01:00
/* check a known value and its returned length on success */
cchName = sizeof ( buf ) ;
ok ( pLookupPrivilegeNameA ( NULL , & luid , buf , & cchName ) & &
cchName = = strlen ( " SeCreateTokenPrivilege " ) ,
" LookupPrivilegeNameA returned an incorrect output length for \n "
2006-10-04 12:37:30 +02:00
" SeCreateTokenPrivilege (got %d, expected %d) \n " , cchName ,
2005-02-14 12:52:48 +01:00
( int ) strlen ( " SeCreateTokenPrivilege " ) ) ;
2004-11-04 05:52:17 +01:00
/* check known values */
2008-11-10 09:47:29 +01:00
for ( i = SE_MIN_WELL_KNOWN_PRIVILEGE ; i < = SE_MAX_WELL_KNOWN_PRIVILEGE ; i + + )
2004-11-04 05:52:17 +01:00
{
luid . LowPart = i ;
cchName = sizeof ( buf ) ;
2004-12-27 18:26:37 +01:00
ret = pLookupPrivilegeNameA ( NULL , & luid , buf , & cchName ) ;
2005-03-22 17:39:02 +01:00
ok ( ret | | GetLastError ( ) = = ERROR_NO_SUCH_PRIVILEGE ,
2006-10-04 12:37:30 +02:00
" LookupPrivilegeNameA(0.%d) failed: %d \n " , i , GetLastError ( ) ) ;
2004-11-04 05:52:17 +01:00
}
/* check a bogus LUID */
luid . LowPart = 0xdeadbeef ;
cchName = sizeof ( buf ) ;
2004-12-27 18:26:37 +01:00
ret = pLookupPrivilegeNameA ( NULL , & luid , buf , & cchName ) ;
ok ( ! ret & & GetLastError ( ) = = ERROR_NO_SUCH_PRIVILEGE ,
2006-10-04 12:37:30 +02:00
" LookupPrivilegeNameA didn't fail with ERROR_NO_SUCH_PRIVILEGE: %d \n " ,
2004-11-04 05:52:17 +01:00
GetLastError ( ) ) ;
/* check on a bogus system */
luid . LowPart = SE_CREATE_TOKEN_PRIVILEGE ;
cchName = sizeof ( buf ) ;
2004-12-27 18:26:37 +01:00
ret = pLookupPrivilegeNameA ( " b0gu5.Nam3 " , & luid , buf , & cchName ) ;
2008-08-07 12:57:44 +02:00
ok ( ! ret & & ( GetLastError ( ) = = RPC_S_SERVER_UNAVAILABLE | |
GetLastError ( ) = = RPC_S_INVALID_NET_ADDR ) /* w2k8 */ ,
" LookupPrivilegeNameA didn't fail with RPC_S_SERVER_UNAVAILABLE or RPC_S_INVALID_NET_ADDR: %d \n " ,
2004-11-04 05:52:17 +01:00
GetLastError ( ) ) ;
}
struct NameToLUID
{
const char * name ;
2005-02-14 22:04:45 +01:00
DWORD lowPart ;
2004-11-04 05:52:17 +01:00
} ;
static void test_lookupPrivilegeValue ( void )
{
static const struct NameToLUID privs [ ] = {
{ " SeCreateTokenPrivilege " , SE_CREATE_TOKEN_PRIVILEGE } ,
{ " SeAssignPrimaryTokenPrivilege " , SE_ASSIGNPRIMARYTOKEN_PRIVILEGE } ,
{ " SeLockMemoryPrivilege " , SE_LOCK_MEMORY_PRIVILEGE } ,
{ " SeIncreaseQuotaPrivilege " , SE_INCREASE_QUOTA_PRIVILEGE } ,
{ " SeMachineAccountPrivilege " , SE_MACHINE_ACCOUNT_PRIVILEGE } ,
{ " SeTcbPrivilege " , SE_TCB_PRIVILEGE } ,
{ " SeSecurityPrivilege " , SE_SECURITY_PRIVILEGE } ,
{ " SeTakeOwnershipPrivilege " , SE_TAKE_OWNERSHIP_PRIVILEGE } ,
{ " SeLoadDriverPrivilege " , SE_LOAD_DRIVER_PRIVILEGE } ,
{ " SeSystemProfilePrivilege " , SE_SYSTEM_PROFILE_PRIVILEGE } ,
{ " SeSystemtimePrivilege " , SE_SYSTEMTIME_PRIVILEGE } ,
{ " SeProfileSingleProcessPrivilege " , SE_PROF_SINGLE_PROCESS_PRIVILEGE } ,
{ " SeIncreaseBasePriorityPrivilege " , SE_INC_BASE_PRIORITY_PRIVILEGE } ,
{ " SeCreatePagefilePrivilege " , SE_CREATE_PAGEFILE_PRIVILEGE } ,
{ " SeCreatePermanentPrivilege " , SE_CREATE_PERMANENT_PRIVILEGE } ,
{ " SeBackupPrivilege " , SE_BACKUP_PRIVILEGE } ,
{ " SeRestorePrivilege " , SE_RESTORE_PRIVILEGE } ,
{ " SeShutdownPrivilege " , SE_SHUTDOWN_PRIVILEGE } ,
{ " SeDebugPrivilege " , SE_DEBUG_PRIVILEGE } ,
{ " SeAuditPrivilege " , SE_AUDIT_PRIVILEGE } ,
{ " SeSystemEnvironmentPrivilege " , SE_SYSTEM_ENVIRONMENT_PRIVILEGE } ,
2008-11-10 09:48:15 +01:00
{ " SeChangeNotifyPrivilege " , SE_CHANGE_NOTIFY_PRIVILEGE } ,
2004-11-04 05:52:17 +01:00
{ " SeRemoteShutdownPrivilege " , SE_REMOTE_SHUTDOWN_PRIVILEGE } ,
{ " SeUndockPrivilege " , SE_UNDOCK_PRIVILEGE } ,
{ " SeSyncAgentPrivilege " , SE_SYNC_AGENT_PRIVILEGE } ,
{ " SeEnableDelegationPrivilege " , SE_ENABLE_DELEGATION_PRIVILEGE } ,
{ " SeManageVolumePrivilege " , SE_MANAGE_VOLUME_PRIVILEGE } ,
{ " SeImpersonatePrivilege " , SE_IMPERSONATE_PRIVILEGE } ,
{ " SeCreateGlobalPrivilege " , SE_CREATE_GLOBAL_PRIVILEGE } ,
} ;
BOOL ( WINAPI * pLookupPrivilegeValueA ) ( LPCSTR , LPCSTR , PLUID ) ;
int i ;
LUID luid ;
BOOL ret ;
/* check whether it's available first */
2005-02-14 22:04:45 +01:00
pLookupPrivilegeValueA = ( void * ) GetProcAddress ( hmod , " LookupPrivilegeValueA " ) ;
2004-11-04 05:52:17 +01:00
if ( ! pLookupPrivilegeValueA ) return ;
ret = pLookupPrivilegeValueA ( NULL , " SeCreateTokenPrivilege " , & luid ) ;
if ( ! ret & & GetLastError ( ) = = ERROR_CALL_NOT_IMPLEMENTED )
return ;
/* check a bogus system name */
2004-12-27 18:26:37 +01:00
ret = pLookupPrivilegeValueA ( " b0gu5.Nam3 " , " SeCreateTokenPrivilege " , & luid ) ;
2008-08-07 12:57:44 +02:00
ok ( ! ret & & ( GetLastError ( ) = = RPC_S_SERVER_UNAVAILABLE | |
GetLastError ( ) = = RPC_S_INVALID_NET_ADDR ) /* w2k8 */ ,
" LookupPrivilegeValueA didn't fail with RPC_S_SERVER_UNAVAILABLE or RPC_S_INVALID_NET_ADDR: %d \n " ,
2004-11-04 05:52:17 +01:00
GetLastError ( ) ) ;
/* check a NULL string */
2004-12-27 18:26:37 +01:00
ret = pLookupPrivilegeValueA ( NULL , 0 , & luid ) ;
ok ( ! ret & & GetLastError ( ) = = ERROR_NO_SUCH_PRIVILEGE ,
2006-10-04 12:37:30 +02:00
" LookupPrivilegeValueA didn't fail with ERROR_NO_SUCH_PRIVILEGE: %d \n " ,
2004-11-04 05:52:17 +01:00
GetLastError ( ) ) ;
/* check a bogus privilege name */
2004-12-27 18:26:37 +01:00
ret = pLookupPrivilegeValueA ( NULL , " SeBogusPrivilege " , & luid ) ;
ok ( ! ret & & GetLastError ( ) = = ERROR_NO_SUCH_PRIVILEGE ,
2006-10-04 12:37:30 +02:00
" LookupPrivilegeValueA didn't fail with ERROR_NO_SUCH_PRIVILEGE: %d \n " ,
2004-11-04 05:52:17 +01:00
GetLastError ( ) ) ;
/* check case insensitive */
2004-12-27 18:26:37 +01:00
ret = pLookupPrivilegeValueA ( NULL , " sEcREATEtOKENpRIVILEGE " , & luid ) ;
ok ( ret ,
2006-10-04 12:37:30 +02:00
" LookupPrivilegeValueA(NULL, sEcREATEtOKENpRIVILEGE, &luid) failed: %d \n " ,
2004-11-04 05:52:17 +01:00
GetLastError ( ) ) ;
for ( i = 0 ; i < sizeof ( privs ) / sizeof ( privs [ 0 ] ) ; i + + )
{
/* Not all privileges are implemented on all Windows versions, so
* don ' t worry if the call fails
*/
if ( pLookupPrivilegeValueA ( NULL , privs [ i ] . name , & luid ) )
{
ok ( luid . LowPart = = privs [ i ] . lowPart ,
" LookupPrivilegeValueA returned an invalid LUID for %s \n " ,
privs [ i ] . name ) ;
}
}
}
static void test_luid ( void )
{
test_allocateLuid ( ) ;
test_lookupPrivilegeName ( ) ;
test_lookupPrivilegeValue ( ) ;
}
2005-03-28 12:00:59 +02:00
static void test_FileSecurity ( void )
{
2008-11-05 08:01:46 +01:00
char wintmpdir [ MAX_PATH ] ;
char path [ MAX_PATH ] ;
char file [ MAX_PATH ] ;
BOOL rc ;
HANDLE fh ;
DWORD sdSize ;
DWORD retSize ;
BYTE * sd ;
SECURITY_INFORMATION const request = OWNER_SECURITY_INFORMATION
| GROUP_SECURITY_INFORMATION
| DACL_SECURITY_INFORMATION ;
if ( ! pGetFileSecurityA ) {
win_skip ( " GetFileSecurity is not available \n " ) ;
2005-03-28 12:00:59 +02:00
return ;
2008-11-05 08:01:46 +01:00
}
2005-03-28 12:00:59 +02:00
2008-11-05 08:01:46 +01:00
if ( ! pSetFileSecurityA ) {
win_skip ( " SetFileSecurity is not available \n " ) ;
2005-03-28 12:00:59 +02:00
return ;
}
2008-11-05 08:01:46 +01:00
if ( ! GetTempPathA ( sizeof ( wintmpdir ) , wintmpdir ) ) {
win_skip ( " GetTempPathA failed \n " ) ;
return ;
}
2005-03-28 12:00:59 +02:00
2008-11-05 08:01:46 +01:00
/* Create a temporary directory and in it a temporary file */
strcat ( strcpy ( path , wintmpdir ) , " rary " ) ;
2008-11-09 22:05:08 +01:00
SetLastError ( 0xdeadbeef ) ;
2008-11-05 08:01:46 +01:00
rc = CreateDirectoryA ( path , NULL ) ;
ok ( rc | | GetLastError ( ) = = ERROR_ALREADY_EXISTS , " CreateDirectoryA "
" failed for '%s' with %d \n " , path , GetLastError ( ) ) ;
strcat ( strcpy ( file , path ) , " \\ ess " ) ;
2008-11-09 22:05:08 +01:00
SetLastError ( 0xdeadbeef ) ;
2008-11-05 08:01:46 +01:00
fh = CreateFileA ( file , GENERIC_WRITE , 0 , NULL , CREATE_ALWAYS , 0 , NULL ) ;
ok ( fh ! = INVALID_HANDLE_VALUE , " CreateFileA "
" failed for '%s' with %d \n " , file , GetLastError ( ) ) ;
CloseHandle ( fh ) ;
/* For the temporary file ... */
/* Get size needed */
retSize = 0 ;
2008-11-09 22:05:08 +01:00
SetLastError ( 0xdeadbeef ) ;
2008-11-05 08:01:46 +01:00
rc = pGetFileSecurityA ( file , request , NULL , 0 , & retSize ) ;
2008-11-09 20:50:51 +01:00
if ( ! rc & & ( GetLastError ( ) = = ERROR_CALL_NOT_IMPLEMENTED ) ) {
win_skip ( " GetFileSecurityA is not implemented \n " ) ;
goto cleanup ;
}
2008-11-05 08:01:46 +01:00
ok ( ! rc , " GetFileSecurityA "
" was expected to fail for '%s' \n " , file ) ;
ok ( GetLastError ( ) = = ERROR_INSUFFICIENT_BUFFER , " GetFileSecurityA "
" returned %d; expected ERROR_INSUFFICIENT_BUFFER \n " , GetLastError ( ) ) ;
2008-11-07 13:34:11 +01:00
ok ( retSize > sizeof ( SECURITY_DESCRIPTOR ) , " GetFileSecurityA returned size %d \n " , retSize ) ;
2008-11-05 08:01:46 +01:00
sdSize = retSize ;
sd = HeapAlloc ( GetProcessHeap ( ) , 0 , sdSize ) ;
/* Get security descriptor for real */
2008-12-06 12:43:55 +01:00
retSize = - 1 ;
2008-11-09 22:05:08 +01:00
SetLastError ( 0xdeadbeef ) ;
2008-11-05 08:01:46 +01:00
rc = pGetFileSecurityA ( file , request , sd , sdSize , & retSize ) ;
ok ( rc , " GetFileSecurityA "
2008-11-09 22:05:08 +01:00
" was not expected to fail '%s': %d \n " , file , GetLastError ( ) ) ;
2008-12-06 12:43:55 +01:00
ok ( retSize = = sdSize | |
broken ( retSize = = 0 ) , /* NT4 */
" GetFileSecurityA returned size %d; expected %d \n " , retSize , sdSize ) ;
2008-11-05 08:01:46 +01:00
/* Use it to set security descriptor */
2008-11-09 22:05:08 +01:00
SetLastError ( 0xdeadbeef ) ;
2008-11-05 08:01:46 +01:00
rc = pSetFileSecurityA ( file , request , sd ) ;
ok ( rc , " SetFileSecurityA "
2008-11-09 22:05:08 +01:00
" was not expected to fail '%s': %d \n " , file , GetLastError ( ) ) ;
2008-11-05 08:01:46 +01:00
HeapFree ( GetProcessHeap ( ) , 0 , sd ) ;
2008-11-03 23:37:17 +01:00
/* Repeat for the temporary directory ... */
/* Get size needed */
retSize = 0 ;
2008-11-09 22:05:08 +01:00
SetLastError ( 0xdeadbeef ) ;
2008-11-03 23:37:17 +01:00
rc = pGetFileSecurityA ( path , request , NULL , 0 , & retSize ) ;
ok ( ! rc , " GetFileSecurityA "
" was expected to fail for '%s' \n " , path ) ;
ok ( GetLastError ( ) = = ERROR_INSUFFICIENT_BUFFER , " GetFileSecurityA "
" returned %d; expected ERROR_INSUFFICIENT_BUFFER \n " , GetLastError ( ) ) ;
2008-11-07 13:34:11 +01:00
ok ( retSize > sizeof ( SECURITY_DESCRIPTOR ) , " GetFileSecurityA returned size %d \n " , retSize ) ;
2008-11-03 23:37:17 +01:00
sdSize = retSize ;
sd = HeapAlloc ( GetProcessHeap ( ) , 0 , sdSize ) ;
/* Get security descriptor for real */
2008-12-06 12:43:55 +01:00
retSize = - 1 ;
2008-11-09 22:05:08 +01:00
SetLastError ( 0xdeadbeef ) ;
2008-11-03 23:37:17 +01:00
rc = pGetFileSecurityA ( path , request , sd , sdSize , & retSize ) ;
ok ( rc , " GetFileSecurityA "
2008-11-09 22:05:08 +01:00
" was not expected to fail '%s': %d \n " , path , GetLastError ( ) ) ;
2008-12-06 12:43:55 +01:00
ok ( retSize = = sdSize | |
broken ( retSize = = 0 ) , /* NT4 */
" GetFileSecurityA returned size %d; expected %d \n " , retSize , sdSize ) ;
2008-11-03 23:37:17 +01:00
/* Use it to set security descriptor */
2008-11-09 22:05:08 +01:00
SetLastError ( 0xdeadbeef ) ;
2008-11-03 23:37:17 +01:00
rc = pSetFileSecurityA ( path , request , sd ) ;
ok ( rc , " SetFileSecurityA "
2008-11-09 22:05:08 +01:00
" was not expected to fail '%s': %d \n " , path , GetLastError ( ) ) ;
2008-11-03 23:37:17 +01:00
HeapFree ( GetProcessHeap ( ) , 0 , sd ) ;
2008-11-05 08:01:46 +01:00
/* Old test */
strcpy ( wintmpdir , " \\ Should not exist " ) ;
2008-11-09 22:05:08 +01:00
SetLastError ( 0xdeadbeef ) ;
2008-11-05 08:01:46 +01:00
rc = pGetFileSecurityA ( wintmpdir , OWNER_SECURITY_INFORMATION , NULL , 0 , & sdSize ) ;
ok ( ! rc , " GetFileSecurityA should fail for not existing directories/files \n " ) ;
2008-11-09 20:50:51 +01:00
ok ( GetLastError ( ) = = ERROR_FILE_NOT_FOUND ,
" last error ERROR_FILE_NOT_FOUND expected, got %d \n " , GetLastError ( ) ) ;
cleanup :
/* Remove temporary file and directory */
DeleteFileA ( file ) ;
RemoveDirectoryA ( path ) ;
2005-03-28 12:00:59 +02:00
}
2005-06-09 12:03:11 +02:00
static void test_AccessCheck ( void )
{
PSID EveryoneSid = NULL , AdminSid = NULL , UsersSid = NULL ;
PACL Acl = NULL ;
SECURITY_DESCRIPTOR * SecurityDescriptor = NULL ;
SID_IDENTIFIER_AUTHORITY SIDAuthWorld = { SECURITY_WORLD_SID_AUTHORITY } ;
SID_IDENTIFIER_AUTHORITY SIDAuthNT = { SECURITY_NT_AUTHORITY } ;
GENERIC_MAPPING Mapping = { KEY_READ , KEY_WRITE , KEY_EXECUTE , KEY_ALL_ACCESS } ;
ACCESS_MASK Access ;
BOOL AccessStatus ;
HANDLE Token ;
2007-02-15 17:25:20 +01:00
HANDLE ProcessToken ;
2005-06-09 12:03:11 +02:00
BOOL ret ;
DWORD PrivSetLen ;
PRIVILEGE_SET * PrivSet ;
BOOL res ;
2005-06-27 21:48:35 +02:00
HMODULE NtDllModule ;
BOOLEAN Enabled ;
2007-01-25 07:41:39 +01:00
DWORD err ;
2009-01-13 20:54:32 +01:00
NTSTATUS ntret , ntAccessStatus ;
2005-06-27 21:48:35 +02:00
NtDllModule = GetModuleHandle ( " ntdll.dll " ) ;
if ( ! NtDllModule )
{
2007-03-28 10:00:28 +02:00
skip ( " not running on NT, skipping test \n " ) ;
2005-06-27 21:48:35 +02:00
return ;
}
pRtlAdjustPrivilege = ( fnRtlAdjustPrivilege )
GetProcAddress ( NtDllModule , " RtlAdjustPrivilege " ) ;
2007-03-28 10:00:28 +02:00
if ( ! pRtlAdjustPrivilege )
{
skip ( " missing RtlAdjustPrivilege, skipping test \n " ) ;
return ;
}
2005-06-09 12:03:11 +02:00
2005-06-22 14:00:01 +02:00
Acl = HeapAlloc ( GetProcessHeap ( ) , 0 , 256 ) ;
res = InitializeAcl ( Acl , 256 , ACL_REVISION ) ;
if ( ! res & & GetLastError ( ) = = ERROR_CALL_NOT_IMPLEMENTED )
{
2007-01-25 07:43:18 +01:00
skip ( " ACLs not implemented - skipping tests \n " ) ;
2007-10-02 08:59:02 +02:00
HeapFree ( GetProcessHeap ( ) , 0 , Acl ) ;
2005-06-22 14:00:01 +02:00
return ;
}
2006-10-04 12:37:30 +02:00
ok ( res , " InitializeAcl failed with error %d \n " , GetLastError ( ) ) ;
2005-06-22 14:00:01 +02:00
2005-06-09 12:03:11 +02:00
res = AllocateAndInitializeSid ( & SIDAuthWorld , 1 , SECURITY_WORLD_RID , 0 , 0 , 0 , 0 , 0 , 0 , 0 , & EveryoneSid ) ;
2006-10-04 12:37:30 +02:00
ok ( res , " AllocateAndInitializeSid failed with error %d \n " , GetLastError ( ) ) ;
2005-06-09 12:03:11 +02:00
res = AllocateAndInitializeSid ( & SIDAuthNT , 2 , SECURITY_BUILTIN_DOMAIN_RID ,
DOMAIN_ALIAS_RID_ADMINS , 0 , 0 , 0 , 0 , 0 , 0 , & AdminSid ) ;
2006-10-04 12:37:30 +02:00
ok ( res , " AllocateAndInitializeSid failed with error %d \n " , GetLastError ( ) ) ;
2005-06-09 12:03:11 +02:00
res = AllocateAndInitializeSid ( & SIDAuthNT , 2 , SECURITY_BUILTIN_DOMAIN_RID ,
DOMAIN_ALIAS_RID_USERS , 0 , 0 , 0 , 0 , 0 , 0 , & UsersSid ) ;
2006-10-04 12:37:30 +02:00
ok ( res , " AllocateAndInitializeSid failed with error %d \n " , GetLastError ( ) ) ;
2005-06-09 12:03:11 +02:00
SecurityDescriptor = HeapAlloc ( GetProcessHeap ( ) , 0 , SECURITY_DESCRIPTOR_MIN_LENGTH ) ;
res = InitializeSecurityDescriptor ( SecurityDescriptor , SECURITY_DESCRIPTOR_REVISION ) ;
2006-10-04 12:37:30 +02:00
ok ( res , " InitializeSecurityDescriptor failed with error %d \n " , GetLastError ( ) ) ;
2005-06-09 12:03:11 +02:00
res = SetSecurityDescriptorDacl ( SecurityDescriptor , TRUE , Acl , FALSE ) ;
2006-10-04 12:37:30 +02:00
ok ( res , " SetSecurityDescriptorDacl failed with error %d \n " , GetLastError ( ) ) ;
2005-06-09 12:03:11 +02:00
PrivSetLen = FIELD_OFFSET ( PRIVILEGE_SET , Privilege [ 16 ] ) ;
PrivSet = HeapAlloc ( GetProcessHeap ( ) , HEAP_ZERO_MEMORY , PrivSetLen ) ;
PrivSet - > PrivilegeCount = 16 ;
2007-02-15 17:25:20 +01:00
res = OpenProcessToken ( GetCurrentProcess ( ) , TOKEN_DUPLICATE | TOKEN_QUERY , & ProcessToken ) ;
ok ( res , " OpenProcessToken failed with error %d \n " , GetLastError ( ) ) ;
2005-06-09 12:03:11 +02:00
2005-06-27 21:48:35 +02:00
pRtlAdjustPrivilege ( SE_SECURITY_PRIVILEGE , FALSE , TRUE , & Enabled ) ;
2008-02-18 20:39:19 +01:00
res = DuplicateToken ( ProcessToken , SecurityImpersonation , & Token ) ;
2007-02-15 17:25:20 +01:00
ok ( res , " DuplicateToken failed with error %d \n " , GetLastError ( ) ) ;
2005-06-09 12:03:11 +02:00
2007-01-25 07:41:39 +01:00
/* SD without owner/group */
SetLastError ( 0xdeadbeef ) ;
Access = AccessStatus = 0xdeadbeef ;
ret = AccessCheck ( SecurityDescriptor , Token , KEY_QUERY_VALUE , & Mapping ,
PrivSet , & PrivSetLen , & Access , & AccessStatus ) ;
err = GetLastError ( ) ;
ok ( ! ret & & err = = ERROR_INVALID_SECURITY_DESCR , " AccessCheck should have "
" failed with ERROR_INVALID_SECURITY_DESCR, instead of %d \n " , err ) ;
ok ( Access = = 0xdeadbeef & & AccessStatus = = 0xdeadbeef ,
" Access and/or AccessStatus were changed! \n " ) ;
/* Set owner and group */
res = SetSecurityDescriptorOwner ( SecurityDescriptor , AdminSid , FALSE ) ;
ok ( res , " SetSecurityDescriptorOwner failed with error %d \n " , GetLastError ( ) ) ;
res = SetSecurityDescriptorGroup ( SecurityDescriptor , UsersSid , TRUE ) ;
ok ( res , " SetSecurityDescriptorGroup failed with error %d \n " , GetLastError ( ) ) ;
/* Generic access mask */
SetLastError ( 0xdeadbeef ) ;
2009-01-13 20:54:32 +01:00
Access = AccessStatus = 0xdeadbeef ;
2007-01-25 07:41:39 +01:00
ret = AccessCheck ( SecurityDescriptor , Token , GENERIC_READ , & Mapping ,
PrivSet , & PrivSetLen , & Access , & AccessStatus ) ;
err = GetLastError ( ) ;
ok ( ! ret & & err = = ERROR_GENERIC_NOT_MAPPED , " AccessCheck should have failed "
" with ERROR_GENERIC_NOT_MAPPED, instead of %d \n " , err ) ;
ok ( Access = = 0xdeadbeef & & AccessStatus = = 0xdeadbeef ,
" Access and/or AccessStatus were changed! \n " ) ;
2009-01-13 20:54:32 +01:00
/* Generic access mask - no privilegeset buffer */
SetLastError ( 0xdeadbeef ) ;
Access = AccessStatus = 0xdeadbeef ;
ret = AccessCheck ( SecurityDescriptor , Token , GENERIC_READ , & Mapping ,
NULL , & PrivSetLen , & Access , & AccessStatus ) ;
err = GetLastError ( ) ;
ok ( ! ret & & err = = ERROR_NOACCESS , " AccessCheck should have failed "
" with ERROR_NOACCESS, instead of %d \n " , err ) ;
ok ( Access = = 0xdeadbeef & & AccessStatus = = 0xdeadbeef ,
" Access and/or AccessStatus were changed! \n " ) ;
/* Generic access mask - no returnlength */
SetLastError ( 0xdeadbeef ) ;
Access = AccessStatus = 0xdeadbeef ;
ret = AccessCheck ( SecurityDescriptor , Token , GENERIC_READ , & Mapping ,
PrivSet , NULL , & Access , & AccessStatus ) ;
err = GetLastError ( ) ;
ok ( ! ret & & err = = ERROR_NOACCESS , " AccessCheck should have failed "
" with ERROR_NOACCESS, instead of %d \n " , err ) ;
ok ( Access = = 0xdeadbeef & & AccessStatus = = 0xdeadbeef ,
" Access and/or AccessStatus were changed! \n " ) ;
/* Generic access mask - no privilegeset buffer, no returnlength */
SetLastError ( 0xdeadbeef ) ;
Access = AccessStatus = 0xdeadbeef ;
ret = AccessCheck ( SecurityDescriptor , Token , GENERIC_READ , & Mapping ,
NULL , NULL , & Access , & AccessStatus ) ;
err = GetLastError ( ) ;
ok ( ! ret & & err = = ERROR_NOACCESS , " AccessCheck should have failed "
" with ERROR_NOACCESS, instead of %d \n " , err ) ;
ok ( Access = = 0xdeadbeef & & AccessStatus = = 0xdeadbeef ,
" Access and/or AccessStatus were changed! \n " ) ;
2007-10-16 10:50:15 +02:00
/* sd with no dacl present */
2009-01-13 20:54:32 +01:00
Access = AccessStatus = 0xdeadbeef ;
2007-10-16 10:50:15 +02:00
ret = SetSecurityDescriptorDacl ( SecurityDescriptor , FALSE , NULL , FALSE ) ;
ok ( ret , " SetSecurityDescriptorDacl failed with error %d \n " , GetLastError ( ) ) ;
ret = AccessCheck ( SecurityDescriptor , Token , KEY_READ , & Mapping ,
PrivSet , & PrivSetLen , & Access , & AccessStatus ) ;
ok ( ret , " AccessCheck failed with error %d \n " , GetLastError ( ) ) ;
ok ( AccessStatus & & ( Access = = KEY_READ ) ,
" AccessCheck failed to grant access with error %d \n " ,
GetLastError ( ) ) ;
2009-01-13 20:54:32 +01:00
/* sd with no dacl present - no privilegeset buffer */
SetLastError ( 0xdeadbeef ) ;
Access = AccessStatus = 0xdeadbeef ;
ret = AccessCheck ( SecurityDescriptor , Token , GENERIC_READ , & Mapping ,
NULL , & PrivSetLen , & Access , & AccessStatus ) ;
err = GetLastError ( ) ;
ok ( ! ret & & err = = ERROR_NOACCESS , " AccessCheck should have failed "
" with ERROR_NOACCESS, instead of %d \n " , err ) ;
ok ( Access = = 0xdeadbeef & & AccessStatus = = 0xdeadbeef ,
" Access and/or AccessStatus were changed! \n " ) ;
if ( pNtAccessCheck )
{
/* Generic access mask - no privilegeset buffer */
SetLastError ( 0xdeadbeef ) ;
Access = ntAccessStatus = 0xdeadbeef ;
ntret = pNtAccessCheck ( SecurityDescriptor , Token , GENERIC_READ , & Mapping ,
NULL , & PrivSetLen , & Access , & ntAccessStatus ) ;
err = GetLastError ( ) ;
ok ( ntret = = STATUS_ACCESS_VIOLATION ,
" NtAccessCheck should have failed with STATUS_ACCESS_VIOLATION, got %x \n " , ntret ) ;
ok ( err = = 0xdeadbeef ,
" NtAccessCheck shouldn't set last error, got %d \n " , err ) ;
ok ( Access = = 0xdeadbeef & & ntAccessStatus = = 0xdeadbeef ,
" Access and/or AccessStatus were changed! \n " ) ;
/* Generic access mask - no returnlength */
SetLastError ( 0xdeadbeef ) ;
Access = ntAccessStatus = 0xdeadbeef ;
ntret = pNtAccessCheck ( SecurityDescriptor , Token , GENERIC_READ , & Mapping ,
PrivSet , NULL , & Access , & ntAccessStatus ) ;
err = GetLastError ( ) ;
ok ( ntret = = STATUS_ACCESS_VIOLATION ,
" NtAccessCheck should have failed with STATUS_ACCESS_VIOLATION, got %x \n " , ntret ) ;
ok ( err = = 0xdeadbeef ,
" NtAccessCheck shouldn't set last error, got %d \n " , err ) ;
ok ( Access = = 0xdeadbeef & & ntAccessStatus = = 0xdeadbeef ,
" Access and/or AccessStatus were changed! \n " ) ;
/* Generic access mask - no privilegeset buffer, no returnlength */
SetLastError ( 0xdeadbeef ) ;
Access = ntAccessStatus = 0xdeadbeef ;
ntret = pNtAccessCheck ( SecurityDescriptor , Token , GENERIC_READ , & Mapping ,
NULL , NULL , & Access , & ntAccessStatus ) ;
err = GetLastError ( ) ;
ok ( ntret = = STATUS_ACCESS_VIOLATION ,
" NtAccessCheck should have failed with STATUS_ACCESS_VIOLATION, got %x \n " , ntret ) ;
ok ( err = = 0xdeadbeef ,
" NtAccessCheck shouldn't set last error, got %d \n " , err ) ;
ok ( Access = = 0xdeadbeef & & ntAccessStatus = = 0xdeadbeef ,
" Access and/or AccessStatus were changed! \n " ) ;
}
else
win_skip ( " NtAccessCheck unavailable. Skipping. \n " ) ;
2007-10-16 10:50:15 +02:00
/* sd with NULL dacl */
2009-01-13 20:54:32 +01:00
Access = AccessStatus = 0xdeadbeef ;
2007-10-16 10:50:15 +02:00
ret = SetSecurityDescriptorDacl ( SecurityDescriptor , TRUE , NULL , FALSE ) ;
ok ( ret , " SetSecurityDescriptorDacl failed with error %d \n " , GetLastError ( ) ) ;
ret = AccessCheck ( SecurityDescriptor , Token , KEY_READ , & Mapping ,
PrivSet , & PrivSetLen , & Access , & AccessStatus ) ;
ok ( ret , " AccessCheck failed with error %d \n " , GetLastError ( ) ) ;
ok ( AccessStatus & & ( Access = = KEY_READ ) ,
" AccessCheck failed to grant access with error %d \n " ,
GetLastError ( ) ) ;
/* sd with blank dacl */
ret = SetSecurityDescriptorDacl ( SecurityDescriptor , TRUE , Acl , FALSE ) ;
ok ( ret , " SetSecurityDescriptorDacl failed with error %d \n " , GetLastError ( ) ) ;
ret = AccessCheck ( SecurityDescriptor , Token , KEY_READ , & Mapping ,
PrivSet , & PrivSetLen , & Access , & AccessStatus ) ;
ok ( ret , " AccessCheck failed with error %d \n " , GetLastError ( ) ) ;
err = GetLastError ( ) ;
ok ( ! AccessStatus & & err = = ERROR_ACCESS_DENIED , " AccessCheck should have failed "
" with ERROR_ACCESS_DENIED, instead of %d \n " , err ) ;
ok ( ! Access , " Should have failed to grant any access, got 0x%08x \n " , Access ) ;
res = AddAccessAllowedAce ( Acl , ACL_REVISION , KEY_READ , EveryoneSid ) ;
2007-11-02 11:33:36 +01:00
ok ( res , " AddAccessAllowedAce failed with error %d \n " , GetLastError ( ) ) ;
2007-10-16 10:50:15 +02:00
res = AddAccessDeniedAce ( Acl , ACL_REVISION , KEY_SET_VALUE , AdminSid ) ;
ok ( res , " AddAccessDeniedAce failed with error %d \n " , GetLastError ( ) ) ;
/* sd with dacl */
2009-01-13 20:54:32 +01:00
Access = AccessStatus = 0xdeadbeef ;
2005-06-09 12:03:11 +02:00
ret = AccessCheck ( SecurityDescriptor , Token , KEY_READ , & Mapping ,
PrivSet , & PrivSetLen , & Access , & AccessStatus ) ;
2006-10-04 12:37:30 +02:00
ok ( ret , " AccessCheck failed with error %d \n " , GetLastError ( ) ) ;
2005-06-29 22:14:16 +02:00
ok ( AccessStatus & & ( Access = = KEY_READ ) ,
2006-10-04 12:37:30 +02:00
" AccessCheck failed to grant access with error %d \n " ,
2005-06-09 12:03:11 +02:00
GetLastError ( ) ) ;
ret = AccessCheck ( SecurityDescriptor , Token , MAXIMUM_ALLOWED , & Mapping ,
PrivSet , & PrivSetLen , & Access , & AccessStatus ) ;
2006-10-04 12:37:30 +02:00
ok ( ret , " AccessCheck failed with error %d \n " , GetLastError ( ) ) ;
2005-06-29 22:14:16 +02:00
ok ( AccessStatus ,
2006-10-04 12:37:30 +02:00
" AccessCheck failed to grant any access with error %d \n " ,
2005-06-09 12:03:11 +02:00
GetLastError ( ) ) ;
2006-10-04 12:37:30 +02:00
trace ( " AccessCheck with MAXIMUM_ALLOWED got Access 0x%08x \n " , Access ) ;
2005-06-09 12:03:11 +02:00
2007-01-25 07:41:39 +01:00
/* Access denied by SD */
SetLastError ( 0xdeadbeef ) ;
2009-01-13 20:54:32 +01:00
Access = AccessStatus = 0xdeadbeef ;
2007-01-25 07:41:39 +01:00
ret = AccessCheck ( SecurityDescriptor , Token , KEY_WRITE , & Mapping ,
PrivSet , & PrivSetLen , & Access , & AccessStatus ) ;
ok ( ret , " AccessCheck failed with error %d \n " , GetLastError ( ) ) ;
err = GetLastError ( ) ;
ok ( ! AccessStatus & & err = = ERROR_ACCESS_DENIED , " AccessCheck should have failed "
" with ERROR_ACCESS_DENIED, instead of %d \n " , err ) ;
ok ( ! Access , " Should have failed to grant any access, got 0x%08x \n " , Access ) ;
2005-06-27 21:48:35 +02:00
SetLastError ( 0 ) ;
PrivSet - > PrivilegeCount = 16 ;
ret = AccessCheck ( SecurityDescriptor , Token , ACCESS_SYSTEM_SECURITY , & Mapping ,
PrivSet , & PrivSetLen , & Access , & AccessStatus ) ;
ok ( ret & & ! AccessStatus & & GetLastError ( ) = = ERROR_PRIVILEGE_NOT_HELD ,
2006-10-04 12:37:30 +02:00
" AccessCheck should have failed with ERROR_PRIVILEGE_NOT_HELD, instead of %d \n " ,
2005-06-27 21:48:35 +02:00
GetLastError ( ) ) ;
2007-10-25 17:19:37 +02:00
ret = ImpersonateLoggedOnUser ( Token ) ;
ok ( ret , " ImpersonateLoggedOnUser failed with error %d \n " , GetLastError ( ) ) ;
2005-06-27 21:48:35 +02:00
ret = pRtlAdjustPrivilege ( SE_SECURITY_PRIVILEGE , TRUE , TRUE , & Enabled ) ;
if ( ! ret )
{
SetLastError ( 0 ) ;
PrivSet - > PrivilegeCount = 16 ;
ret = AccessCheck ( SecurityDescriptor , Token , ACCESS_SYSTEM_SECURITY , & Mapping ,
PrivSet , & PrivSetLen , & Access , & AccessStatus ) ;
ok ( ret & & AccessStatus & & GetLastError ( ) = = 0 ,
2006-10-04 12:37:30 +02:00
" AccessCheck should have succeeded, error %d \n " ,
2005-06-27 21:48:35 +02:00
GetLastError ( ) ) ;
ok ( Access = = ACCESS_SYSTEM_SECURITY ,
2006-10-04 12:37:30 +02:00
" Access should be equal to ACCESS_SYSTEM_SECURITY instead of 0x%08x \n " ,
2005-06-27 21:48:35 +02:00
Access ) ;
}
else
2005-06-28 15:52:01 +02:00
trace ( " Couldn't get SE_SECURITY_PRIVILEGE (0x%08x), skipping ACCESS_SYSTEM_SECURITY test \n " ,
2005-06-27 21:48:35 +02:00
ret ) ;
2007-10-25 17:19:37 +02:00
ret = RevertToSelf ( ) ;
ok ( ret , " RevertToSelf failed with error %d \n " , GetLastError ( ) ) ;
2005-06-27 21:48:35 +02:00
2007-10-25 17:19:23 +02:00
/* test INHERIT_ONLY_ACE */
ret = InitializeAcl ( Acl , 256 , ACL_REVISION ) ;
ok ( ret , " InitializeAcl failed with error %d \n " , GetLastError ( ) ) ;
2008-03-03 10:46:06 +01:00
/* NT doesn't have AddAccessAllowedAceEx. Skipping this call/test doesn't influence
* the next ones .
*/
if ( pAddAccessAllowedAceEx )
{
ret = pAddAccessAllowedAceEx ( Acl , ACL_REVISION , INHERIT_ONLY_ACE , KEY_READ , EveryoneSid ) ;
ok ( ret , " AddAccessAllowedAceEx failed with error %d \n " , GetLastError ( ) ) ;
}
else
skip ( " AddAccessAllowedAceEx is not available \n " ) ;
2007-10-25 17:19:23 +02:00
ret = AccessCheck ( SecurityDescriptor , Token , KEY_READ , & Mapping ,
PrivSet , & PrivSetLen , & Access , & AccessStatus ) ;
ok ( ret , " AccessCheck failed with error %d \n " , GetLastError ( ) ) ;
err = GetLastError ( ) ;
ok ( ! AccessStatus & & err = = ERROR_ACCESS_DENIED , " AccessCheck should have failed "
" with ERROR_ACCESS_DENIED, instead of %d \n " , err ) ;
ok ( ! Access , " Should have failed to grant any access, got 0x%08x \n " , Access ) ;
2007-02-15 17:25:20 +01:00
CloseHandle ( Token ) ;
res = DuplicateToken ( ProcessToken , SecurityAnonymous , & Token ) ;
ok ( res , " DuplicateToken failed with error %d \n " , GetLastError ( ) ) ;
SetLastError ( 0xdeadbeef ) ;
ret = AccessCheck ( SecurityDescriptor , Token , MAXIMUM_ALLOWED , & Mapping ,
PrivSet , & PrivSetLen , & Access , & AccessStatus ) ;
err = GetLastError ( ) ;
ok ( ! ret & & err = = ERROR_BAD_IMPERSONATION_LEVEL , " AccessCheck should have failed "
" with ERROR_BAD_IMPERSONATION_LEVEL, instead of %d \n " , err ) ;
CloseHandle ( Token ) ;
SetLastError ( 0xdeadbeef ) ;
ret = AccessCheck ( SecurityDescriptor , ProcessToken , KEY_READ , & Mapping ,
PrivSet , & PrivSetLen , & Access , & AccessStatus ) ;
err = GetLastError ( ) ;
ok ( ! ret & & err = = ERROR_NO_IMPERSONATION_TOKEN , " AccessCheck should have failed "
" with ERROR_NO_IMPERSONATION_TOKEN, instead of %d \n " , err ) ;
CloseHandle ( ProcessToken ) ;
2005-06-09 12:03:11 +02:00
if ( EveryoneSid )
FreeSid ( EveryoneSid ) ;
if ( AdminSid )
FreeSid ( AdminSid ) ;
if ( UsersSid )
FreeSid ( UsersSid ) ;
HeapFree ( GetProcessHeap ( ) , 0 , Acl ) ;
HeapFree ( GetProcessHeap ( ) , 0 , SecurityDescriptor ) ;
HeapFree ( GetProcessHeap ( ) , 0 , PrivSet ) ;
}
2006-05-13 17:56:59 +02:00
/* test GetTokenInformation for the various attributes */
static void test_token_attr ( void )
{
2007-02-21 18:10:45 +01:00
HANDLE Token , ImpersonationToken ;
2006-05-13 17:56:59 +02:00
DWORD Size ;
TOKEN_PRIVILEGES * Privileges ;
TOKEN_GROUPS * Groups ;
TOKEN_USER * User ;
BOOL ret ;
2006-05-21 23:06:47 +02:00
DWORD i , GLE ;
LPSTR SidString ;
2007-02-21 18:10:45 +01:00
SECURITY_IMPERSONATION_LEVEL ImpersonationLevel ;
2006-05-13 17:56:59 +02:00
2006-11-06 12:35:37 +01:00
/* cygwin-like use case */
2007-03-29 20:47:14 +02:00
SetLastError ( 0xdeadbeef ) ;
2006-11-06 12:35:37 +01:00
ret = OpenProcessToken ( GetCurrentProcess ( ) , MAXIMUM_ALLOWED , & Token ) ;
2007-03-29 20:47:14 +02:00
if ( ! ret & & ( GetLastError ( ) = = ERROR_CALL_NOT_IMPLEMENTED ) )
{
skip ( " OpenProcessToken is not implemented \n " ) ;
return ;
}
2006-11-06 12:35:37 +01:00
ok ( ret , " OpenProcessToken failed with error %d \n " , GetLastError ( ) ) ;
if ( ret )
{
BYTE buf [ 1024 ] ;
2007-02-21 18:10:45 +01:00
Size = sizeof ( buf ) ;
ret = GetTokenInformation ( Token , TokenUser , ( void * ) buf , Size , & Size ) ;
2007-02-21 14:59:59 +01:00
ok ( ret , " GetTokenInformation failed with error %d \n " , GetLastError ( ) ) ;
2007-02-21 18:10:45 +01:00
Size = sizeof ( ImpersonationLevel ) ;
ret = GetTokenInformation ( Token , TokenImpersonationLevel , & ImpersonationLevel , Size , & Size ) ;
GLE = GetLastError ( ) ;
ok ( ! ret & & ( GLE = = ERROR_INVALID_PARAMETER ) , " GetTokenInformation(TokenImpersonationLevel) on primary token should have failed with ERROR_INVALID_PARAMETER instead of %d \n " , GLE ) ;
2006-11-06 12:35:37 +01:00
CloseHandle ( Token ) ;
}
2006-06-24 23:36:40 +02:00
if ( ! pConvertSidToStringSidA )
2007-03-29 20:47:02 +02:00
{
skip ( " ConvertSidToStringSidA is not available \n " ) ;
2006-06-24 23:36:40 +02:00
return ;
2007-03-29 20:47:02 +02:00
}
2006-06-24 23:36:40 +02:00
2007-03-29 20:47:14 +02:00
SetLastError ( 0xdeadbeef ) ;
2007-02-21 18:10:45 +01:00
ret = OpenProcessToken ( GetCurrentProcess ( ) , TOKEN_QUERY | TOKEN_DUPLICATE , & Token ) ;
2007-03-29 20:47:14 +02:00
ok ( ret , " OpenProcessToken failed with error %d \n " , GetLastError ( ) ) ;
2006-05-13 17:56:59 +02:00
/* groups */
ret = GetTokenInformation ( Token , TokenGroups , NULL , 0 , & Size ) ;
Groups = HeapAlloc ( GetProcessHeap ( ) , 0 , Size ) ;
ret = GetTokenInformation ( Token , TokenGroups , Groups , Size , & Size ) ;
2006-10-04 12:37:30 +02:00
ok ( ret , " GetTokenInformation(TokenGroups) failed with error %d \n " , GetLastError ( ) ) ;
2006-05-13 17:56:59 +02:00
trace ( " TokenGroups: \n " ) ;
for ( i = 0 ; i < Groups - > GroupCount ; i + + )
{
DWORD NameLength = 255 ;
TCHAR Name [ 255 ] ;
DWORD DomainLength = 255 ;
TCHAR Domain [ 255 ] ;
SID_NAME_USE SidNameUse ;
2006-05-21 22:25:44 +02:00
pConvertSidToStringSidA ( Groups - > Groups [ i ] . Sid , & SidString ) ;
2006-05-13 17:56:59 +02:00
Name [ 0 ] = ' \0 ' ;
Domain [ 0 ] = ' \0 ' ;
ret = LookupAccountSid ( NULL , Groups - > Groups [ i ] . Sid , Name , & NameLength , Domain , & DomainLength , & SidNameUse ) ;
2007-03-16 02:39:47 +01:00
if ( ret )
trace ( " \t %s, %s \\ %s use: %d attr: 0x%08x \n " , SidString , Domain , Name , SidNameUse , Groups - > Groups [ i ] . Attributes ) ;
else
trace ( " \t %s, attr: 0x%08x LookupAccountSid failed with error %d \n " , SidString , Groups - > Groups [ i ] . Attributes , GetLastError ( ) ) ;
2006-05-13 17:56:59 +02:00
LocalFree ( SidString ) ;
}
2006-08-04 14:17:58 +02:00
HeapFree ( GetProcessHeap ( ) , 0 , Groups ) ;
2006-05-13 17:56:59 +02:00
/* user */
ret = GetTokenInformation ( Token , TokenUser , NULL , 0 , & Size ) ;
ok ( ! ret & & ( GetLastError ( ) = = ERROR_INSUFFICIENT_BUFFER ) ,
2006-10-04 12:37:30 +02:00
" GetTokenInformation(TokenUser) failed with error %d \n " , GetLastError ( ) ) ;
2006-05-13 17:56:59 +02:00
User = HeapAlloc ( GetProcessHeap ( ) , 0 , Size ) ;
ret = GetTokenInformation ( Token , TokenUser , User , Size , & Size ) ;
ok ( ret ,
2006-10-04 12:37:30 +02:00
" GetTokenInformation(TokenUser) failed with error %d \n " , GetLastError ( ) ) ;
2006-05-13 17:56:59 +02:00
2006-05-21 22:25:44 +02:00
pConvertSidToStringSidA ( User - > User . Sid , & SidString ) ;
2006-10-04 12:37:30 +02:00
trace ( " TokenUser: %s attr: 0x%08x \n " , SidString , User - > User . Attributes ) ;
2006-05-13 17:56:59 +02:00
LocalFree ( SidString ) ;
2006-10-17 21:32:00 +02:00
HeapFree ( GetProcessHeap ( ) , 0 , User ) ;
2006-05-13 17:56:59 +02:00
/* privileges */
ret = GetTokenInformation ( Token , TokenPrivileges , NULL , 0 , & Size ) ;
ok ( ! ret & & ( GetLastError ( ) = = ERROR_INSUFFICIENT_BUFFER ) ,
2006-10-04 12:37:30 +02:00
" GetTokenInformation(TokenPrivileges) failed with error %d \n " , GetLastError ( ) ) ;
2006-05-13 17:56:59 +02:00
Privileges = HeapAlloc ( GetProcessHeap ( ) , 0 , Size ) ;
ret = GetTokenInformation ( Token , TokenPrivileges , Privileges , Size , & Size ) ;
ok ( ret ,
2006-10-04 12:37:30 +02:00
" GetTokenInformation(TokenPrivileges) failed with error %d \n " , GetLastError ( ) ) ;
2006-05-13 17:56:59 +02:00
trace ( " TokenPrivileges: \n " ) ;
for ( i = 0 ; i < Privileges - > PrivilegeCount ; i + + )
{
TCHAR Name [ 256 ] ;
DWORD NameLen = sizeof ( Name ) / sizeof ( Name [ 0 ] ) ;
LookupPrivilegeName ( NULL , & Privileges - > Privileges [ i ] . Luid , Name , & NameLen ) ;
2006-10-04 12:37:30 +02:00
trace ( " \t %s, 0x%x \n " , Name , Privileges - > Privileges [ i ] . Attributes ) ;
2006-05-13 17:56:59 +02:00
}
2006-12-04 21:25:13 +01:00
HeapFree ( GetProcessHeap ( ) , 0 , Privileges ) ;
2007-02-21 18:10:45 +01:00
ret = DuplicateToken ( Token , SecurityAnonymous , & ImpersonationToken ) ;
ok ( ret , " DuplicateToken failed with error %d \n " , GetLastError ( ) ) ;
Size = sizeof ( ImpersonationLevel ) ;
ret = GetTokenInformation ( ImpersonationToken , TokenImpersonationLevel , & ImpersonationLevel , Size , & Size ) ;
ok ( ret , " GetTokenInformation(TokenImpersonationLevel) failed with error %d \n " , GetLastError ( ) ) ;
ok ( ImpersonationLevel = = SecurityAnonymous , " ImpersonationLevel should have been SecurityAnonymous instead of %d \n " , ImpersonationLevel ) ;
CloseHandle ( ImpersonationToken ) ;
CloseHandle ( Token ) ;
2006-05-13 17:56:59 +02:00
}
2006-08-12 14:27:57 +02:00
typedef union _MAX_SID
{
SID sid ;
char max [ SECURITY_MAX_SID_SIZE ] ;
} MAX_SID ;
static void test_sid_str ( PSID * sid )
{
char * str_sid ;
BOOL ret = pConvertSidToStringSidA ( sid , & str_sid ) ;
2006-10-04 12:37:30 +02:00
ok ( ret , " ConvertSidToStringSidA() failed: %d \n " , GetLastError ( ) ) ;
2006-08-12 14:27:57 +02:00
if ( ret )
{
char account [ MAX_PATH ] , domain [ MAX_PATH ] ;
SID_NAME_USE use ;
DWORD acc_size = MAX_PATH ;
DWORD dom_size = MAX_PATH ;
ret = LookupAccountSid ( NULL , sid , account , & acc_size , domain , & dom_size , & use ) ;
ok ( ret | | ( ! ret & & ( GetLastError ( ) = = ERROR_NONE_MAPPED ) ) ,
2006-10-04 12:37:30 +02:00
" LookupAccountSid(%s) failed: %d \n " , str_sid , GetLastError ( ) ) ;
2006-08-12 14:27:57 +02:00
if ( ret )
trace ( " %s %s \\ %s %d \n " , str_sid , domain , account , use ) ;
else if ( GetLastError ( ) = = ERROR_NONE_MAPPED )
2006-08-27 22:36:23 +02:00
trace ( " %s couldn't be mapped \n " , str_sid ) ;
2006-08-12 14:27:57 +02:00
LocalFree ( str_sid ) ;
}
}
2007-10-21 09:41:54 +02:00
struct well_known_sid_value
{
BOOL without_domain ;
const char * sid_string ;
} well_known_sid_values [ ] = {
/* 0 */ { TRUE , " S-1-0-0 " } , { TRUE , " S-1-1-0 " } , { TRUE , " S-1-2-0 " } , { TRUE , " S-1-3-0 " } ,
/* 4 */ { TRUE , " S-1-3-1 " } , { TRUE , " S-1-3-2 " } , { TRUE , " S-1-3-3 " } , { TRUE , " S-1-5 " } ,
/* 8 */ { FALSE , " S-1-5-1 " } , { TRUE , " S-1-5-2 " } , { TRUE , " S-1-5-3 " } , { TRUE , " S-1-5-4 " } ,
/* 12 */ { TRUE , " S-1-5-6 " } , { TRUE , " S-1-5-7 " } , { TRUE , " S-1-5-8 " } , { TRUE , " S-1-5-9 " } ,
/* 16 */ { TRUE , " S-1-5-10 " } , { TRUE , " S-1-5-11 " } , { TRUE , " S-1-5-12 " } , { TRUE , " S-1-5-13 " } ,
/* 20 */ { TRUE , " S-1-5-14 " } , { FALSE , NULL } , { TRUE , " S-1-5-18 " } , { TRUE , " S-1-5-19 " } ,
/* 24 */ { TRUE , " S-1-5-20 " } , { TRUE , " S-1-5-32 " } ,
/* 26 */ { FALSE , " S-1-5-32-544 " } , { TRUE , " S-1-5-32-545 " } , { TRUE , " S-1-5-32-546 " } ,
/* 29 */ { TRUE , " S-1-5-32-547 " } , { TRUE , " S-1-5-32-548 " } , { TRUE , " S-1-5-32-549 " } ,
/* 32 */ { TRUE , " S-1-5-32-550 " } , { TRUE , " S-1-5-32-551 " } , { TRUE , " S-1-5-32-552 " } ,
/* 35 */ { TRUE , " S-1-5-32-554 " } , { TRUE , " S-1-5-32-555 " } , { TRUE , " S-1-5-32-556 " } ,
/* 38 */ { FALSE , " S-1-5-21-12-23-34-45-56-500 " } , { FALSE , " S-1-5-21-12-23-34-45-56-501 " } ,
/* 40 */ { FALSE , " S-1-5-21-12-23-34-45-56-502 " } , { FALSE , " S-1-5-21-12-23-34-45-56-512 " } ,
/* 42 */ { FALSE , " S-1-5-21-12-23-34-45-56-513 " } , { FALSE , " S-1-5-21-12-23-34-45-56-514 " } ,
/* 44 */ { FALSE , " S-1-5-21-12-23-34-45-56-515 " } , { FALSE , " S-1-5-21-12-23-34-45-56-516 " } ,
/* 46 */ { FALSE , " S-1-5-21-12-23-34-45-56-517 " } , { FALSE , " S-1-5-21-12-23-34-45-56-518 " } ,
/* 48 */ { FALSE , " S-1-5-21-12-23-34-45-56-519 " } , { FALSE , " S-1-5-21-12-23-34-45-56-520 " } ,
/* 50 */ { FALSE , " S-1-5-21-12-23-34-45-56-553 " } ,
2007-10-25 20:41:43 +02:00
/* Added in Windows Server 2003 */
2007-10-21 09:41:54 +02:00
/* 51 */ { TRUE , " S-1-5-64-10 " } , { TRUE , " S-1-5-64-21 " } , { TRUE , " S-1-5-64-14 " } ,
/* 54 */ { TRUE , " S-1-5-15 " } , { TRUE , " S-1-5-1000 " } , { FALSE , " S-1-5-32-557 " } ,
/* 57 */ { TRUE , " S-1-5-32-558 " } , { TRUE , " S-1-5-32-559 " } , { TRUE , " S-1-5-32-560 " } ,
2007-10-25 20:41:43 +02:00
/* 60 */ { TRUE , " S-1-5-32-561 " } , { TRUE , " S-1-5-32-562 " } ,
2007-10-21 09:41:54 +02:00
/* Added in Windows Vista: */
2007-10-25 20:41:43 +02:00
/* 62 */ { TRUE , " S-1-5-32-568 " } ,
2007-10-21 09:41:54 +02:00
/* 63 */ { TRUE , " S-1-5-17 " } , { FALSE , " S-1-5-32-569 " } , { TRUE , " S-1-16-0 " } ,
/* 66 */ { TRUE , " S-1-16-4096 " } , { TRUE , " S-1-16-8192 " } , { TRUE , " S-1-16-12288 " } ,
/* 69 */ { TRUE , " S-1-16-16384 " } , { TRUE , " S-1-5-33 " } , { TRUE , " S-1-3-4 " } ,
/* 72 */ { FALSE , " S-1-5-21-12-23-34-45-56-571 " } , { FALSE , " S-1-5-21-12-23-34-45-56-572 " } ,
/* 74 */ { TRUE , " S-1-5-22 " } , { FALSE , " S-1-5-21-12-23-34-45-56-521 " } , { TRUE , " S-1-5-32-573 " }
} ;
2009-01-25 23:27:04 +01:00
static void test_CreateWellKnownSid ( void )
2007-10-21 09:41:54 +02:00
{
SID_IDENTIFIER_AUTHORITY ident = { SECURITY_NT_AUTHORITY } ;
PSID domainsid ;
int i ;
if ( ! pCreateWellKnownSid )
{
skip ( " CreateWellKnownSid not available \n " ) ;
return ;
}
/* a domain sid usually have three subauthorities but we test that CreateWellKnownSid doesn't check it */
AllocateAndInitializeSid ( & ident , 6 , SECURITY_NT_NON_UNIQUE , 12 , 23 , 34 , 45 , 56 , 0 , 0 , & domainsid ) ;
for ( i = 0 ; i < sizeof ( well_known_sid_values ) / sizeof ( well_known_sid_values [ 0 ] ) ; i + + )
{
struct well_known_sid_value * value = & well_known_sid_values [ i ] ;
char sid_buffer [ SECURITY_MAX_SID_SIZE ] ;
LPSTR str ;
DWORD cb ;
2007-10-21 11:01:56 +02:00
if ( value - > sid_string = = NULL )
2007-10-21 09:41:54 +02:00
continue ;
2007-10-25 20:41:43 +02:00
if ( i > WinAccountRasAndIasServersSid )
2007-10-21 09:41:54 +02:00
{
/* These SIDs aren't implemented by all Windows versions - detect it and break the loop */
cb = sizeof ( sid_buffer ) ;
if ( ! pCreateWellKnownSid ( i , domainsid , sid_buffer , & cb ) )
{
2008-03-18 15:21:13 +01:00
skip ( " Well known SIDs starting from %d are not implemented \n " , i ) ;
2007-10-21 09:41:54 +02:00
break ;
}
}
cb = sizeof ( sid_buffer ) ;
2007-10-23 14:38:27 +02:00
ok ( pCreateWellKnownSid ( i , value - > without_domain ? NULL : domainsid , sid_buffer , & cb ) , " Couldn't create well known sid %d \n " , i ) ;
2007-10-21 09:41:54 +02:00
expect_eq ( GetSidLengthRequired ( * GetSidSubAuthorityCount ( sid_buffer ) ) , cb , DWORD , " %d " ) ;
ok ( IsValidSid ( sid_buffer ) , " The sid is not valid \n " ) ;
2007-11-02 11:33:36 +01:00
ok ( pConvertSidToStringSidA ( sid_buffer , & str ) , " Couldn't convert SID to string \n " ) ;
2007-10-21 09:41:54 +02:00
ok ( strcmp ( str , value - > sid_string ) = = 0 , " SID mismatch - expected %s, got %s \n " ,
value - > sid_string , str ) ;
LocalFree ( str ) ;
2007-10-21 11:01:56 +02:00
if ( value - > without_domain )
{
char buf2 [ SECURITY_MAX_SID_SIZE ] ;
cb = sizeof ( buf2 ) ;
2007-10-23 14:38:27 +02:00
ok ( pCreateWellKnownSid ( i , domainsid , buf2 , & cb ) , " Couldn't create well known sid %d with optional domain \n " , i ) ;
2007-10-21 11:01:56 +02:00
expect_eq ( GetSidLengthRequired ( * GetSidSubAuthorityCount ( sid_buffer ) ) , cb , DWORD , " %d " ) ;
ok ( memcmp ( buf2 , sid_buffer , cb ) = = 0 , " SID create with domain is different than without (%d) \n " , i ) ;
}
2007-10-21 09:41:54 +02:00
}
}
2006-07-06 04:53:52 +02:00
static void test_LookupAccountSid ( void )
{
SID_IDENTIFIER_AUTHORITY SIDAuthNT = { SECURITY_NT_AUTHORITY } ;
2006-08-26 00:14:58 +02:00
CHAR accountA [ MAX_PATH ] , domainA [ MAX_PATH ] ;
DWORD acc_sizeA , dom_sizeA ;
DWORD real_acc_sizeA , real_dom_sizeA ;
WCHAR accountW [ MAX_PATH ] , domainW [ MAX_PATH ] ;
DWORD acc_sizeW , dom_sizeW ;
DWORD real_acc_sizeW , real_dom_sizeW ;
2006-07-06 04:53:52 +02:00
PSID pUsersSid = NULL ;
SID_NAME_USE use ;
BOOL ret ;
2006-07-20 13:05:46 +02:00
DWORD size ;
2006-08-12 14:27:57 +02:00
MAX_SID max_sid ;
2006-08-26 00:14:58 +02:00
CHAR * str_sidA ;
2006-07-20 13:05:46 +02:00
int i ;
2006-07-06 04:53:52 +02:00
/* native windows crashes if account size, domain size, or name use is NULL */
ret = AllocateAndInitializeSid ( & SIDAuthNT , 2 , SECURITY_BUILTIN_DOMAIN_RID ,
DOMAIN_ALIAS_RID_USERS , 0 , 0 , 0 , 0 , 0 , 0 , & pUsersSid ) ;
2006-08-17 21:24:21 +02:00
ok ( ret | | ( GetLastError ( ) = = ERROR_CALL_NOT_IMPLEMENTED ) ,
2006-10-04 12:37:30 +02:00
" AllocateAndInitializeSid failed with error %d \n " , GetLastError ( ) ) ;
2006-08-17 21:24:21 +02:00
/* not running on NT so give up */
if ( ! ret & & ( GetLastError ( ) = = ERROR_CALL_NOT_IMPLEMENTED ) )
return ;
2006-07-06 04:53:52 +02:00
2006-08-26 00:14:58 +02:00
real_acc_sizeA = MAX_PATH ;
real_dom_sizeA = MAX_PATH ;
ret = LookupAccountSidA ( NULL , pUsersSid , accountA , & real_acc_sizeA , domainA , & real_dom_sizeA , & use ) ;
ok ( ret , " LookupAccountSidA() Expected TRUE, got FALSE \n " ) ;
/* try NULL account */
acc_sizeA = MAX_PATH ;
dom_sizeA = MAX_PATH ;
ret = LookupAccountSidA ( NULL , pUsersSid , NULL , & acc_sizeA , domainA , & dom_sizeA , & use ) ;
ok ( ret , " LookupAccountSidA() Expected TRUE, got FALSE \n " ) ;
/* try NULL domain */
acc_sizeA = MAX_PATH ;
dom_sizeA = MAX_PATH ;
ret = LookupAccountSidA ( NULL , pUsersSid , accountA , & acc_sizeA , NULL , & dom_sizeA , & use ) ;
ok ( ret , " LookupAccountSidA() Expected TRUE, got FALSE \n " ) ;
/* try a small account buffer */
acc_sizeA = 1 ;
dom_sizeA = MAX_PATH ;
accountA [ 0 ] = 0 ;
ret = LookupAccountSidA ( NULL , pUsersSid , accountA , & acc_sizeA , domainA , & dom_sizeA , & use ) ;
ok ( ! ret , " LookupAccountSidA() Expected FALSE got TRUE \n " ) ;
ok ( GetLastError ( ) = = ERROR_INSUFFICIENT_BUFFER ,
2006-10-04 12:37:30 +02:00
" LookupAccountSidA() Expected ERROR_NOT_ENOUGH_MEMORY, got %u \n " , GetLastError ( ) ) ;
2006-08-26 00:14:58 +02:00
/* try a 0 sized account buffer */
acc_sizeA = 0 ;
dom_sizeA = MAX_PATH ;
accountA [ 0 ] = 0 ;
ret = LookupAccountSidA ( NULL , pUsersSid , accountA , & acc_sizeA , domainA , & dom_sizeA , & use ) ;
/* this can fail or succeed depending on OS version but the size will always be returned */
ok ( acc_sizeA = = real_acc_sizeA + 1 ,
2006-10-04 12:37:30 +02:00
" LookupAccountSidA() Expected acc_size = %u, got %u \n " ,
2006-08-26 00:14:58 +02:00
real_acc_sizeA + 1 , acc_sizeA ) ;
/* try a 0 sized account buffer */
acc_sizeA = 0 ;
dom_sizeA = MAX_PATH ;
ret = LookupAccountSidA ( NULL , pUsersSid , NULL , & acc_sizeA , domainA , & dom_sizeA , & use ) ;
/* this can fail or succeed depending on OS version but the size will always be returned */
ok ( acc_sizeA = = real_acc_sizeA + 1 ,
2006-10-04 12:37:30 +02:00
" LookupAccountSid() Expected acc_size = %u, got %u \n " ,
2006-08-26 00:14:58 +02:00
real_acc_sizeA + 1 , acc_sizeA ) ;
/* try a small domain buffer */
dom_sizeA = 1 ;
acc_sizeA = MAX_PATH ;
accountA [ 0 ] = 0 ;
ret = LookupAccountSidA ( NULL , pUsersSid , accountA , & acc_sizeA , domainA , & dom_sizeA , & use ) ;
ok ( ! ret , " LookupAccountSidA() Expected FALSE got TRUE \n " ) ;
ok ( GetLastError ( ) = = ERROR_INSUFFICIENT_BUFFER ,
2006-10-04 12:37:30 +02:00
" LookupAccountSidA() Expected ERROR_NOT_ENOUGH_MEMORY, got %u \n " , GetLastError ( ) ) ;
2006-08-26 00:14:58 +02:00
/* try a 0 sized domain buffer */
dom_sizeA = 0 ;
acc_sizeA = MAX_PATH ;
accountA [ 0 ] = 0 ;
ret = LookupAccountSidA ( NULL , pUsersSid , accountA , & acc_sizeA , domainA , & dom_sizeA , & use ) ;
/* this can fail or succeed depending on OS version but the size will always be returned */
ok ( dom_sizeA = = real_dom_sizeA + 1 ,
2006-10-04 12:37:30 +02:00
" LookupAccountSidA() Expected dom_size = %u, got %u \n " ,
2006-08-26 00:14:58 +02:00
real_dom_sizeA + 1 , dom_sizeA ) ;
/* try a 0 sized domain buffer */
dom_sizeA = 0 ;
acc_sizeA = MAX_PATH ;
ret = LookupAccountSidA ( NULL , pUsersSid , accountA , & acc_sizeA , NULL , & dom_sizeA , & use ) ;
/* this can fail or succeed depending on OS version but the size will always be returned */
ok ( dom_sizeA = = real_dom_sizeA + 1 ,
2006-10-04 12:37:30 +02:00
" LookupAccountSidA() Expected dom_size = %u, got %u \n " ,
2006-08-26 00:14:58 +02:00
real_dom_sizeA + 1 , dom_sizeA ) ;
real_acc_sizeW = MAX_PATH ;
real_dom_sizeW = MAX_PATH ;
ret = LookupAccountSidW ( NULL , pUsersSid , accountW , & real_acc_sizeW , domainW , & real_dom_sizeW , & use ) ;
ok ( ret , " LookupAccountSidW() Expected TRUE, got FALSE \n " ) ;
2006-08-19 15:17:30 +02:00
2008-10-18 23:09:14 +02:00
/* try an invalid system name */
real_acc_sizeA = MAX_PATH ;
real_dom_sizeA = MAX_PATH ;
ret = LookupAccountSidA ( " deepthought " , pUsersSid , accountA , & real_acc_sizeA , domainA , & real_dom_sizeA , & use ) ;
ok ( ! ret , " LookupAccountSidA() Expected FALSE got TRUE \n " ) ;
2008-10-27 21:24:52 +01:00
ok ( GetLastError ( ) = = RPC_S_SERVER_UNAVAILABLE | | GetLastError ( ) = = RPC_S_INVALID_NET_ADDR /* Vista */ ,
" LookupAccountSidA() Expected RPC_S_SERVER_UNAVAILABLE or RPC_S_INVALID_NET_ADDR, got %u \n " , GetLastError ( ) ) ;
2008-10-18 23:09:14 +02:00
2006-08-27 22:36:23 +02:00
/* native windows crashes if domainW or accountW is NULL */
2006-07-20 13:05:46 +02:00
2006-08-19 15:17:30 +02:00
/* try a small account buffer */
2006-08-26 00:14:58 +02:00
acc_sizeW = 1 ;
dom_sizeW = MAX_PATH ;
accountW [ 0 ] = 0 ;
ret = LookupAccountSidW ( NULL , pUsersSid , accountW , & acc_sizeW , domainW , & dom_sizeW , & use ) ;
ok ( ! ret , " LookupAccountSidW() Expected FALSE got TRUE \n " ) ;
ok ( GetLastError ( ) = = ERROR_INSUFFICIENT_BUFFER ,
2006-10-04 12:37:30 +02:00
" LookupAccountSidW() Expected ERROR_NOT_ENOUGH_MEMORY, got %u \n " , GetLastError ( ) ) ;
2006-08-19 15:17:30 +02:00
/* try a 0 sized account buffer */
2006-08-26 00:14:58 +02:00
acc_sizeW = 0 ;
dom_sizeW = MAX_PATH ;
accountW [ 0 ] = 0 ;
ret = LookupAccountSidW ( NULL , pUsersSid , accountW , & acc_sizeW , domainW , & dom_sizeW , & use ) ;
2006-08-19 15:17:30 +02:00
/* this can fail or succeed depending on OS version but the size will always be returned */
2006-08-26 00:14:58 +02:00
ok ( acc_sizeW = = real_acc_sizeW + 1 ,
2006-10-04 12:37:30 +02:00
" LookupAccountSidW() Expected acc_size = %u, got %u \n " ,
2006-08-26 00:14:58 +02:00
real_acc_sizeW + 1 , acc_sizeW ) ;
2006-08-19 15:17:30 +02:00
/* try a 0 sized account buffer */
2006-08-26 00:14:58 +02:00
acc_sizeW = 0 ;
dom_sizeW = MAX_PATH ;
ret = LookupAccountSidW ( NULL , pUsersSid , NULL , & acc_sizeW , domainW , & dom_sizeW , & use ) ;
2006-08-19 15:17:30 +02:00
/* this can fail or succeed depending on OS version but the size will always be returned */
2006-08-26 00:14:58 +02:00
ok ( acc_sizeW = = real_acc_sizeW + 1 ,
2006-10-04 12:37:30 +02:00
" LookupAccountSidW() Expected acc_size = %u, got %u \n " ,
2006-08-26 00:14:58 +02:00
real_acc_sizeW + 1 , acc_sizeW ) ;
2006-08-19 15:17:30 +02:00
/* try a small domain buffer */
2006-08-26 00:14:58 +02:00
dom_sizeW = 1 ;
acc_sizeW = MAX_PATH ;
accountW [ 0 ] = 0 ;
ret = LookupAccountSidW ( NULL , pUsersSid , accountW , & acc_sizeW , domainW , & dom_sizeW , & use ) ;
ok ( ! ret , " LookupAccountSidW() Expected FALSE got TRUE \n " ) ;
ok ( GetLastError ( ) = = ERROR_INSUFFICIENT_BUFFER ,
2006-10-04 12:37:30 +02:00
" LookupAccountSidW() Expected ERROR_NOT_ENOUGH_MEMORY, got %u \n " , GetLastError ( ) ) ;
2006-08-19 15:17:30 +02:00
/* try a 0 sized domain buffer */
2006-08-26 00:14:58 +02:00
dom_sizeW = 0 ;
acc_sizeW = MAX_PATH ;
accountW [ 0 ] = 0 ;
ret = LookupAccountSidW ( NULL , pUsersSid , accountW , & acc_sizeW , domainW , & dom_sizeW , & use ) ;
2006-08-19 15:17:30 +02:00
/* this can fail or succeed depending on OS version but the size will always be returned */
2006-08-26 00:14:58 +02:00
ok ( dom_sizeW = = real_dom_sizeW + 1 ,
2006-10-04 12:37:30 +02:00
" LookupAccountSidW() Expected dom_size = %u, got %u \n " ,
2006-08-26 00:14:58 +02:00
real_dom_sizeW + 1 , dom_sizeW ) ;
2006-08-19 15:17:30 +02:00
/* try a 0 sized domain buffer */
2006-08-26 00:14:58 +02:00
dom_sizeW = 0 ;
acc_sizeW = MAX_PATH ;
ret = LookupAccountSidW ( NULL , pUsersSid , accountW , & acc_sizeW , NULL , & dom_sizeW , & use ) ;
2006-08-19 15:17:30 +02:00
/* this can fail or succeed depending on OS version but the size will always be returned */
2006-08-26 00:14:58 +02:00
ok ( dom_sizeW = = real_dom_sizeW + 1 ,
2006-10-04 12:37:30 +02:00
" LookupAccountSidW() Expected dom_size = %u, got %u \n " ,
2006-08-26 00:14:58 +02:00
real_dom_sizeW + 1 , dom_sizeW ) ;
2006-08-19 15:17:30 +02:00
2006-10-17 21:32:00 +02:00
FreeSid ( pUsersSid ) ;
2006-07-20 13:05:46 +02:00
if ( pCreateWellKnownSid & & pConvertSidToStringSidA )
{
trace ( " Well Known SIDs: \n " ) ;
for ( i = 0 ; i < = 60 ; i + + )
{
size = SECURITY_MAX_SID_SIZE ;
if ( pCreateWellKnownSid ( i , NULL , & max_sid . sid , & size ) )
{
2006-08-26 00:14:58 +02:00
if ( pConvertSidToStringSidA ( & max_sid . sid , & str_sidA ) )
2006-07-20 13:05:46 +02:00
{
2006-08-26 00:14:58 +02:00
acc_sizeA = MAX_PATH ;
dom_sizeA = MAX_PATH ;
if ( LookupAccountSidA ( NULL , & max_sid . sid , accountA , & acc_sizeA , domainA , & dom_sizeA , & use ) )
trace ( " %d: %s %s \\ %s %d \n " , i , str_sidA , domainA , accountA , use ) ;
LocalFree ( str_sidA ) ;
2006-07-20 13:05:46 +02:00
}
}
else
2006-08-27 22:36:23 +02:00
{
if ( GetLastError ( ) ! = ERROR_INVALID_PARAMETER )
2006-10-04 12:37:30 +02:00
trace ( " CreateWellKnownSid(%d) failed: %d \n " , i , GetLastError ( ) ) ;
2006-08-27 22:36:23 +02:00
else
trace ( " %d: not supported \n " , i ) ;
}
2006-08-04 14:17:58 +02:00
}
pLsaQueryInformationPolicy = ( fnLsaQueryInformationPolicy ) GetProcAddress ( hmod , " LsaQueryInformationPolicy " ) ;
pLsaOpenPolicy = ( fnLsaOpenPolicy ) GetProcAddress ( hmod , " LsaOpenPolicy " ) ;
pLsaFreeMemory = ( fnLsaFreeMemory ) GetProcAddress ( hmod , " LsaFreeMemory " ) ;
pLsaClose = ( fnLsaClose ) GetProcAddress ( hmod , " LsaClose " ) ;
if ( pLsaQueryInformationPolicy & & pLsaOpenPolicy & & pLsaFreeMemory & & pLsaClose )
{
NTSTATUS status ;
LSA_HANDLE handle ;
LSA_OBJECT_ATTRIBUTES object_attributes ;
ZeroMemory ( & object_attributes , sizeof ( object_attributes ) ) ;
2006-08-14 13:17:55 +02:00
object_attributes . Length = sizeof ( object_attributes ) ;
2006-08-04 14:17:58 +02:00
status = pLsaOpenPolicy ( NULL , & object_attributes , POLICY_ALL_ACCESS , & handle ) ;
2006-08-14 13:17:55 +02:00
ok ( status = = STATUS_SUCCESS | | status = = STATUS_ACCESS_DENIED ,
2006-10-04 12:37:30 +02:00
" LsaOpenPolicy(POLICY_ALL_ACCESS) returned 0x%08x \n " , status ) ;
2006-08-14 13:17:55 +02:00
/* try a more restricted access mask if necessary */
if ( status = = STATUS_ACCESS_DENIED ) {
trace ( " LsaOpenPolicy(POLICY_ALL_ACCESS) failed, trying POLICY_VIEW_LOCAL_INFORMATION \n " ) ;
status = pLsaOpenPolicy ( NULL , & object_attributes , POLICY_VIEW_LOCAL_INFORMATION , & handle ) ;
2006-10-04 12:37:30 +02:00
ok ( status = = STATUS_SUCCESS , " LsaOpenPolicy(POLICY_VIEW_LOCAL_INFORMATION) returned 0x%08x \n " , status ) ;
2006-08-14 13:17:55 +02:00
}
2006-08-04 14:17:58 +02:00
if ( status = = STATUS_SUCCESS )
{
PPOLICY_ACCOUNT_DOMAIN_INFO info ;
status = pLsaQueryInformationPolicy ( handle , PolicyAccountDomainInformation , ( PVOID * ) & info ) ;
2006-10-04 12:37:30 +02:00
ok ( status = = STATUS_SUCCESS , " LsaQueryInformationPolicy() failed, returned 0x%08x \n " , status ) ;
2006-08-04 14:17:58 +02:00
if ( status = = STATUS_SUCCESS )
{
ok ( info - > DomainSid ! = 0 , " LsaQueryInformationPolicy(PolicyAccountDomainInformation) missing SID \n " ) ;
if ( info - > DomainSid )
{
int count = * GetSidSubAuthorityCount ( info - > DomainSid ) ;
2006-08-12 14:27:57 +02:00
CopySid ( GetSidLengthRequired ( count ) , & max_sid , info - > DomainSid ) ;
test_sid_str ( ( PSID ) & max_sid . sid ) ;
2006-08-04 14:17:58 +02:00
max_sid . sid . SubAuthority [ count ] = DOMAIN_USER_RID_ADMIN ;
max_sid . sid . SubAuthorityCount = count + 1 ;
2006-08-12 14:27:57 +02:00
test_sid_str ( ( PSID ) & max_sid . sid ) ;
2006-08-04 14:17:58 +02:00
max_sid . sid . SubAuthority [ count ] = DOMAIN_USER_RID_GUEST ;
2006-08-12 14:27:57 +02:00
test_sid_str ( ( PSID ) & max_sid . sid ) ;
max_sid . sid . SubAuthority [ count ] = DOMAIN_GROUP_RID_ADMINS ;
test_sid_str ( ( PSID ) & max_sid . sid ) ;
max_sid . sid . SubAuthority [ count ] = DOMAIN_GROUP_RID_USERS ;
test_sid_str ( ( PSID ) & max_sid . sid ) ;
max_sid . sid . SubAuthority [ count ] = DOMAIN_GROUP_RID_GUESTS ;
test_sid_str ( ( PSID ) & max_sid . sid ) ;
max_sid . sid . SubAuthority [ count ] = DOMAIN_GROUP_RID_COMPUTERS ;
test_sid_str ( ( PSID ) & max_sid . sid ) ;
max_sid . sid . SubAuthority [ count ] = DOMAIN_GROUP_RID_CONTROLLERS ;
test_sid_str ( ( PSID ) & max_sid . sid ) ;
max_sid . sid . SubAuthority [ count ] = DOMAIN_GROUP_RID_CERT_ADMINS ;
test_sid_str ( ( PSID ) & max_sid . sid ) ;
max_sid . sid . SubAuthority [ count ] = DOMAIN_GROUP_RID_SCHEMA_ADMINS ;
test_sid_str ( ( PSID ) & max_sid . sid ) ;
max_sid . sid . SubAuthority [ count ] = DOMAIN_GROUP_RID_ENTERPRISE_ADMINS ;
test_sid_str ( ( PSID ) & max_sid . sid ) ;
max_sid . sid . SubAuthority [ count ] = DOMAIN_GROUP_RID_POLICY_ADMINS ;
test_sid_str ( ( PSID ) & max_sid . sid ) ;
max_sid . sid . SubAuthority [ count ] = DOMAIN_ALIAS_RID_RAS_SERVERS ;
test_sid_str ( ( PSID ) & max_sid . sid ) ;
max_sid . sid . SubAuthority [ count ] = 1000 ; /* first user account */
test_sid_str ( ( PSID ) & max_sid . sid ) ;
2006-08-04 14:17:58 +02:00
}
pLsaFreeMemory ( ( LPVOID ) info ) ;
}
status = pLsaClose ( handle ) ;
2006-10-04 12:37:30 +02:00
ok ( status = = STATUS_SUCCESS , " LsaClose() failed, returned 0x%08x \n " , status ) ;
2006-08-04 14:17:58 +02:00
}
2006-07-20 13:05:46 +02:00
}
}
2006-07-06 04:53:52 +02:00
}
2006-12-01 00:53:21 +01:00
static void get_sid_info ( PSID psid , LPSTR * user , LPSTR * dom )
{
static CHAR account [ UNLEN + 1 ] ;
static CHAR domain [ UNLEN + 1 ] ;
DWORD size , dom_size ;
SID_NAME_USE use ;
* user = account ;
* dom = domain ;
size = dom_size = UNLEN + 1 ;
account [ 0 ] = ' \0 ' ;
domain [ 0 ] = ' \0 ' ;
LookupAccountSidA ( NULL , psid , account , & size , domain , & dom_size , & use ) ;
}
static void test_LookupAccountName ( void )
{
DWORD sid_size , domain_size , user_size ;
DWORD sid_save , domain_save ;
CHAR user_name [ UNLEN + 1 ] ;
SID_NAME_USE sid_use ;
LPSTR domain , account , sid_dom ;
PSID psid ;
BOOL ret ;
/* native crashes if (assuming all other parameters correct):
* - peUse is NULL
* - Sid is NULL and cbSid is > 0
* - cbSid or cchReferencedDomainName are NULL
* - ReferencedDomainName is NULL and cchReferencedDomainName is the correct size
*/
user_size = UNLEN + 1 ;
2007-08-16 14:07:36 +02:00
SetLastError ( 0xdeadbeef ) ;
2006-12-01 00:53:21 +01:00
ret = GetUserNameA ( user_name , & user_size ) ;
2007-08-16 14:07:36 +02:00
if ( ! ret & & ( GetLastError ( ) = = ERROR_NOT_LOGGED_ON ) )
{
/* Probably on win9x where the user used 'Cancel' instead of properly logging in */
skip ( " Cannot get the user name (win9x and not logged in properly) \n " ) ;
return ;
}
ok ( ret , " Failed to get user name : %d \n " , GetLastError ( ) ) ;
2006-12-01 00:53:21 +01:00
/* get sizes */
sid_size = 0 ;
domain_size = 0 ;
sid_use = 0xcafebabe ;
SetLastError ( 0xdeadbeef ) ;
ret = LookupAccountNameA ( NULL , user_name , NULL , & sid_size , NULL , & domain_size , & sid_use ) ;
2007-03-29 21:08:22 +02:00
if ( ! ret & & ( GetLastError ( ) = = ERROR_CALL_NOT_IMPLEMENTED ) )
{
skip ( " LookupAccountNameA is not implemented \n " ) ;
return ;
}
2006-12-01 00:53:21 +01:00
ok ( ! ret , " Expected 0, got %d \n " , ret ) ;
ok ( GetLastError ( ) = = ERROR_INSUFFICIENT_BUFFER ,
" Expected ERROR_INSUFFICIENT_BUFFER, got %d \n " , GetLastError ( ) ) ;
ok ( sid_size ! = 0 , " Expected non-zero sid size \n " ) ;
ok ( domain_size ! = 0 , " Expected non-zero domain size \n " ) ;
ok ( sid_use = = 0xcafebabe , " Expected 0xcafebabe, got %d \n " , sid_use ) ;
sid_save = sid_size ;
domain_save = domain_size ;
psid = HeapAlloc ( GetProcessHeap ( ) , 0 , sid_size ) ;
domain = HeapAlloc ( GetProcessHeap ( ) , 0 , domain_size ) ;
/* try valid account name */
ret = LookupAccountNameA ( NULL , user_name , psid , & sid_size , domain , & domain_size , & sid_use ) ;
get_sid_info ( psid , & account , & sid_dom ) ;
ok ( ret , " Failed to lookup account name \n " ) ;
ok ( sid_size = = GetLengthSid ( psid ) , " Expected %d, got %d \n " , GetLengthSid ( psid ) , sid_size ) ;
todo_wine
{
ok ( ! lstrcmp ( account , user_name ) , " Expected %s, got %s \n " , user_name , account ) ;
ok ( ! lstrcmp ( domain , sid_dom ) , " Expected %s, got %s \n " , sid_dom , domain ) ;
2008-01-22 16:36:45 +01:00
}
2008-10-18 21:46:35 +02:00
ok ( domain_size = = domain_save - 1 , " Expected %d, got %d \n " , domain_save - 1 , domain_size ) ;
ok ( lstrlen ( domain ) = = domain_size , " Expected %d, got %d \n " , lstrlen ( domain ) , domain_size ) ;
2008-10-18 21:36:36 +02:00
ok ( sid_use = = SidTypeUser , " Expected SidTypeUser (%d), got %d \n " , SidTypeUser , sid_use ) ;
2008-01-22 16:36:45 +01:00
domain_size = domain_save ;
sid_size = sid_save ;
2008-02-16 14:11:57 +01:00
if ( PRIMARYLANGID ( LANGIDFROMLCID ( GetThreadLocale ( ) ) ) ! = LANG_ENGLISH )
{
skip ( " Non-english locale (test with hardcoded 'Everyone') \n " ) ;
}
else
{
ret = LookupAccountNameA ( NULL , " Everyone " , psid , & sid_size , domain , & domain_size , & sid_use ) ;
get_sid_info ( psid , & account , & sid_dom ) ;
ok ( ret , " Failed to lookup account name \n " ) ;
ok ( sid_size ! = 0 , " sid_size was zero \n " ) ;
ok ( ! lstrcmp ( account , " Everyone " ) , " Expected Everyone, got %s \n " , account ) ;
ok ( ! lstrcmp ( domain , sid_dom ) , " Expected %s, got %s \n " , sid_dom , domain ) ;
ok ( domain_size = = 0 , " Expected 0, got %d \n " , domain_size ) ;
ok ( lstrlen ( domain ) = = domain_size , " Expected %d, got %d \n " , lstrlen ( domain ) , domain_size ) ;
2008-10-18 20:54:32 +02:00
ok ( sid_use = = SidTypeWellKnownGroup , " Expected SidTypeWellKnownGroup (%d), got %d \n " , SidTypeWellKnownGroup , sid_use ) ;
2008-02-16 14:11:57 +01:00
domain_size = domain_save ;
}
2006-12-01 00:53:21 +01:00
/* NULL Sid with zero sid size */
SetLastError ( 0xdeadbeef ) ;
sid_size = 0 ;
ret = LookupAccountNameA ( NULL , user_name , NULL , & sid_size , domain , & domain_size , & sid_use ) ;
ok ( ! ret , " Expected 0, got %d \n " , ret ) ;
ok ( GetLastError ( ) = = ERROR_INSUFFICIENT_BUFFER ,
" Expected ERROR_INSUFFICIENT_BUFFER, got %d \n " , GetLastError ( ) ) ;
ok ( sid_size = = sid_save , " Expected %d, got %d \n " , sid_save , sid_size ) ;
ok ( domain_size = = domain_save , " Expected %d, got %d \n " , domain_save , domain_size ) ;
/* try cchReferencedDomainName - 1 */
SetLastError ( 0xdeadbeef ) ;
domain_size - - ;
ret = LookupAccountNameA ( NULL , user_name , NULL , & sid_size , domain , & domain_size , & sid_use ) ;
ok ( ! ret , " Expected 0, got %d \n " , ret ) ;
ok ( GetLastError ( ) = = ERROR_INSUFFICIENT_BUFFER ,
" Expected ERROR_INSUFFICIENT_BUFFER, got %d \n " , GetLastError ( ) ) ;
ok ( sid_size = = sid_save , " Expected %d, got %d \n " , sid_save , sid_size ) ;
ok ( domain_size = = domain_save , " Expected %d, got %d \n " , domain_save , domain_size ) ;
/* NULL ReferencedDomainName with zero domain name size */
SetLastError ( 0xdeadbeef ) ;
domain_size = 0 ;
ret = LookupAccountNameA ( NULL , user_name , psid , & sid_size , NULL , & domain_size , & sid_use ) ;
ok ( ! ret , " Expected 0, got %d \n " , ret ) ;
ok ( GetLastError ( ) = = ERROR_INSUFFICIENT_BUFFER ,
" Expected ERROR_INSUFFICIENT_BUFFER, got %d \n " , GetLastError ( ) ) ;
ok ( sid_size = = sid_save , " Expected %d, got %d \n " , sid_save , sid_size ) ;
ok ( domain_size = = domain_save , " Expected %d, got %d \n " , domain_save , domain_size ) ;
HeapFree ( GetProcessHeap ( ) , 0 , psid ) ;
HeapFree ( GetProcessHeap ( ) , 0 , domain ) ;
/* get sizes for NULL account name */
sid_size = 0 ;
domain_size = 0 ;
sid_use = 0xcafebabe ;
SetLastError ( 0xdeadbeef ) ;
ret = LookupAccountNameA ( NULL , NULL , NULL , & sid_size , NULL , & domain_size , & sid_use ) ;
2008-12-09 14:14:25 +01:00
if ( ! ret & & GetLastError ( ) = = ERROR_NONE_MAPPED )
win_skip ( " NULL account name doesn't work on NT4 \n " ) ;
else
2008-12-09 11:53:48 +01:00
{
ok ( ! ret , " Expected 0, got %d \n " , ret ) ;
ok ( GetLastError ( ) = = ERROR_INSUFFICIENT_BUFFER ,
" Expected ERROR_INSUFFICIENT_BUFFER, got %d \n " , GetLastError ( ) ) ;
ok ( sid_size ! = 0 , " Expected non-zero sid size \n " ) ;
ok ( domain_size ! = 0 , " Expected non-zero domain size \n " ) ;
ok ( sid_use = = 0xcafebabe , " Expected 0xcafebabe, got %d \n " , sid_use ) ;
psid = HeapAlloc ( GetProcessHeap ( ) , 0 , sid_size ) ;
domain = HeapAlloc ( GetProcessHeap ( ) , 0 , domain_size ) ;
/* try NULL account name */
ret = LookupAccountNameA ( NULL , NULL , psid , & sid_size , domain , & domain_size , & sid_use ) ;
get_sid_info ( psid , & account , & sid_dom ) ;
ok ( ret , " Failed to lookup account name \n " ) ;
/* Using a fixed string will not work on different locales */
ok ( ! lstrcmp ( account , domain ) ,
" Got %s for account and %s for domain, these should be the same \n " ,
account , domain ) ;
ok ( sid_use = = SidTypeDomain , " Expected SidTypeDomain (%d), got %d \n " , SidTypeDomain , sid_use ) ;
HeapFree ( GetProcessHeap ( ) , 0 , psid ) ;
HeapFree ( GetProcessHeap ( ) , 0 , domain ) ;
}
2006-12-01 00:53:21 +01:00
/* try an invalid account name */
SetLastError ( 0xdeadbeef ) ;
sid_size = 0 ;
domain_size = 0 ;
ret = LookupAccountNameA ( NULL , " oogabooga " , NULL , & sid_size , NULL , & domain_size , & sid_use ) ;
ok ( ! ret , " Expected 0, got %d \n " , ret ) ;
2008-10-18 23:09:14 +02:00
ok ( GetLastError ( ) = = ERROR_NONE_MAPPED | |
broken ( GetLastError ( ) = = ERROR_TRUSTED_RELATIONSHIP_FAILURE ) ,
" Expected ERROR_NONE_MAPPED, got %d \n " , GetLastError ( ) ) ;
ok ( sid_size = = 0 , " Expected 0, got %d \n " , sid_size ) ;
ok ( domain_size = = 0 , " Expected 0, got %d \n " , domain_size ) ;
/* try an invalid system name */
SetLastError ( 0xdeadbeef ) ;
sid_size = 0 ;
domain_size = 0 ;
ret = LookupAccountNameA ( " deepthought " , NULL , NULL , & sid_size , NULL , & domain_size , & sid_use ) ;
ok ( ! ret , " Expected 0, got %d \n " , ret ) ;
2008-10-27 21:24:52 +01:00
ok ( GetLastError ( ) = = RPC_S_SERVER_UNAVAILABLE | | GetLastError ( ) = = RPC_S_INVALID_NET_ADDR /* Vista */ ,
" Expected RPC_S_SERVER_UNAVAILABLE or RPC_S_INVALID_NET_ADDR, got %d \n " , GetLastError ( ) ) ;
2008-10-18 23:09:14 +02:00
ok ( sid_size = = 0 , " Expected 0, got %d \n " , sid_size ) ;
ok ( domain_size = = 0 , " Expected 0, got %d \n " , domain_size ) ;
2006-12-01 00:53:21 +01:00
}
2007-09-27 19:34:53 +02:00
static void test_security_descriptor ( void )
{
SECURITY_DESCRIPTOR sd ;
char buf [ 8192 ] ;
DWORD size ;
2008-01-08 10:18:17 +01:00
BOOL isDefault , isPresent , ret ;
2007-09-27 19:34:53 +02:00
PACL pacl ;
PSID psid ;
2008-01-08 10:18:17 +01:00
SetLastError ( 0xdeadbeef ) ;
ret = InitializeSecurityDescriptor ( & sd , SECURITY_DESCRIPTOR_REVISION ) ;
if ( ret & & GetLastError ( ) = = ERROR_CALL_NOT_IMPLEMENTED )
{
skip ( " InitializeSecurityDescriptor is not implemented \n " ) ;
return ;
}
2007-09-27 19:34:53 +02:00
ok ( GetSecurityDescriptorOwner ( & sd , & psid , & isDefault ) , " GetSecurityDescriptorOwner failed \n " ) ;
expect_eq ( psid , NULL , PSID , " %p " ) ;
2007-09-27 19:36:58 +02:00
expect_eq ( isDefault , FALSE , BOOL , " %d " ) ;
2007-09-27 19:34:53 +02:00
sd . Control | = SE_DACL_PRESENT | SE_SACL_PRESENT ;
SetLastError ( 0xdeadbeef ) ;
size = 5 ;
expect_eq ( MakeSelfRelativeSD ( & sd , buf , & size ) , FALSE , BOOL , " %d " ) ;
expect_eq ( GetLastError ( ) , ERROR_INSUFFICIENT_BUFFER , DWORD , " %u " ) ;
ok ( size > 5 , " Size not increased \n " ) ;
if ( size < = 8192 )
{
expect_eq ( MakeSelfRelativeSD ( & sd , buf , & size ) , TRUE , BOOL , " %d " ) ;
ok ( GetSecurityDescriptorOwner ( & sd , & psid , & isDefault ) , " GetSecurityDescriptorOwner failed \n " ) ;
expect_eq ( psid , NULL , PSID , " %p " ) ;
2007-09-27 19:36:58 +02:00
expect_eq ( isDefault , FALSE , BOOL , " %d " ) ;
2008-03-06 21:10:49 +01:00
ok ( GetSecurityDescriptorGroup ( & sd , & psid , & isDefault ) , " GetSecurityDescriptorGroup failed \n " ) ;
2007-09-27 19:34:53 +02:00
expect_eq ( psid , NULL , PSID , " %p " ) ;
2007-09-27 19:36:58 +02:00
expect_eq ( isDefault , FALSE , BOOL , " %d " ) ;
2008-03-06 21:10:49 +01:00
ok ( GetSecurityDescriptorDacl ( & sd , & isPresent , & pacl , & isDefault ) , " GetSecurityDescriptorDacl failed \n " ) ;
2007-09-27 19:34:53 +02:00
expect_eq ( isPresent , TRUE , BOOL , " %d " ) ;
expect_eq ( psid , NULL , PSID , " %p " ) ;
expect_eq ( isDefault , FALSE , BOOL , " %d " ) ;
2008-03-06 21:10:49 +01:00
ok ( GetSecurityDescriptorSacl ( & sd , & isPresent , & pacl , & isDefault ) , " GetSecurityDescriptorSacl failed \n " ) ;
2007-09-27 19:34:53 +02:00
expect_eq ( isPresent , TRUE , BOOL , " %d " ) ;
expect_eq ( psid , NULL , PSID , " %p " ) ;
expect_eq ( isDefault , FALSE , BOOL , " %d " ) ;
}
}
2008-08-29 04:10:51 +02:00
# define TEST_GRANTED_ACCESS(a,b) test_granted_access(a,b,0,__LINE__)
# define TEST_GRANTED_ACCESS2(a,b,c) test_granted_access(a,b,c,__LINE__)
static void test_granted_access ( HANDLE handle , ACCESS_MASK access ,
ACCESS_MASK alt , int line )
2007-01-25 07:43:18 +01:00
{
OBJECT_BASIC_INFORMATION obj_info ;
NTSTATUS status ;
if ( ! pNtQueryObject )
{
skip_ ( __FILE__ , line ) ( " Not NT platform - skipping tests \n " ) ;
return ;
}
status = pNtQueryObject ( handle , ObjectBasicInformation , & obj_info ,
sizeof ( obj_info ) , NULL ) ;
ok_ ( __FILE__ , line ) ( ! status , " NtQueryObject with err: %08x \n " , status ) ;
2008-08-29 04:10:51 +02:00
if ( alt )
ok_ ( __FILE__ , line ) ( obj_info . GrantedAccess = = access | |
obj_info . GrantedAccess = = alt , " Granted access should be 0x%08x "
" or 0x%08x, instead of 0x%08x \n " , access , alt , obj_info . GrantedAccess ) ;
else
ok_ ( __FILE__ , line ) ( obj_info . GrantedAccess = = access , " Granted access should "
" be 0x%08x, instead of 0x%08x \n " , access , obj_info . GrantedAccess ) ;
2007-01-25 07:43:18 +01:00
}
2007-02-07 05:55:24 +01:00
# define CHECK_SET_SECURITY(o,i,e) \
do { \
BOOL res ; \
DWORD err ; \
SetLastError ( 0xdeadbeef ) ; \
res = SetKernelObjectSecurity ( o , i , SecurityDescriptor ) ; \
err = GetLastError ( ) ; \
if ( e = = ERROR_SUCCESS ) \
ok ( res , " SetKernelObjectSecurity failed with %d \n " , err ) ; \
else \
ok ( ! res & & err = = e , " SetKernelObjectSecurity should have failed " \
" with %s, instead of %d \n " , # e , err ) ; \
} while ( 0 )
2007-01-25 07:43:18 +01:00
static void test_process_security ( void )
{
BOOL res ;
2009-01-02 08:20:54 +01:00
PTOKEN_OWNER owner ;
PTOKEN_PRIMARY_GROUP group ;
2007-01-25 07:43:18 +01:00
PSID AdminSid = NULL , UsersSid = NULL ;
PACL Acl = NULL ;
SECURITY_DESCRIPTOR * SecurityDescriptor = NULL ;
char buffer [ MAX_PATH ] ;
PROCESS_INFORMATION info ;
STARTUPINFOA startup ;
SECURITY_ATTRIBUTES psa ;
2007-02-07 05:55:24 +01:00
HANDLE token , event ;
2009-01-02 08:20:54 +01:00
DWORD size ;
2007-01-25 07:43:18 +01:00
Acl = HeapAlloc ( GetProcessHeap ( ) , 0 , 256 ) ;
res = InitializeAcl ( Acl , 256 , ACL_REVISION ) ;
if ( ! res & & GetLastError ( ) = = ERROR_CALL_NOT_IMPLEMENTED )
{
skip ( " ACLs not implemented - skipping tests \n " ) ;
2007-10-02 08:59:02 +02:00
HeapFree ( GetProcessHeap ( ) , 0 , Acl ) ;
2007-01-25 07:43:18 +01:00
return ;
}
ok ( res , " InitializeAcl failed with error %d \n " , GetLastError ( ) ) ;
2007-02-07 05:55:24 +01:00
/* get owner from the token we might be running as a user not admin */
res = OpenProcessToken ( GetCurrentProcess ( ) , MAXIMUM_ALLOWED , & token ) ;
ok ( res , " OpenProcessToken failed with error %d \n " , GetLastError ( ) ) ;
2007-10-02 08:59:02 +02:00
if ( ! res )
{
HeapFree ( GetProcessHeap ( ) , 0 , Acl ) ;
return ;
}
2007-02-07 05:55:24 +01:00
2009-01-02 08:20:54 +01:00
res = GetTokenInformation ( token , TokenOwner , NULL , 0 , & size ) ;
ok ( ! res , " Expected failure, got %d \n " , res ) ;
ok ( GetLastError ( ) = = ERROR_INSUFFICIENT_BUFFER ,
" Expected ERROR_INSUFFICIENT_BUFFER, got %d \n " , GetLastError ( ) ) ;
owner = HeapAlloc ( GetProcessHeap ( ) , 0 , size ) ;
res = GetTokenInformation ( token , TokenOwner , owner , size , & size ) ;
2007-02-07 05:55:24 +01:00
ok ( res , " GetTokenInformation failed with error %d \n " , GetLastError ( ) ) ;
AdminSid = ( ( TOKEN_OWNER * ) owner ) - > Owner ;
2009-01-02 08:20:54 +01:00
res = GetTokenInformation ( token , TokenPrimaryGroup , NULL , 0 , & size ) ;
ok ( ! res , " Expected failure, got %d \n " , res ) ;
ok ( GetLastError ( ) = = ERROR_INSUFFICIENT_BUFFER ,
" Expected ERROR_INSUFFICIENT_BUFFER, got %d \n " , GetLastError ( ) ) ;
group = HeapAlloc ( GetProcessHeap ( ) , 0 , size ) ;
res = GetTokenInformation ( token , TokenPrimaryGroup , group , size , & size ) ;
2007-02-07 05:55:24 +01:00
ok ( res , " GetTokenInformation failed with error %d \n " , GetLastError ( ) ) ;
UsersSid = ( ( TOKEN_PRIMARY_GROUP * ) group ) - > PrimaryGroup ;
CloseHandle ( token ) ;
2007-10-02 08:59:02 +02:00
if ( ! res )
{
2009-01-02 08:20:54 +01:00
HeapFree ( GetProcessHeap ( ) , 0 , group ) ;
HeapFree ( GetProcessHeap ( ) , 0 , owner ) ;
2007-10-02 08:59:02 +02:00
HeapFree ( GetProcessHeap ( ) , 0 , Acl ) ;
return ;
}
2007-01-25 07:43:18 +01:00
res = AddAccessDeniedAce ( Acl , ACL_REVISION , PROCESS_VM_READ , AdminSid ) ;
ok ( res , " AddAccessDeniedAce failed with error %d \n " , GetLastError ( ) ) ;
res = AddAccessAllowedAce ( Acl , ACL_REVISION , PROCESS_ALL_ACCESS , AdminSid ) ;
2007-11-02 11:33:36 +01:00
ok ( res , " AddAccessAllowedAce failed with error %d \n " , GetLastError ( ) ) ;
2007-01-25 07:43:18 +01:00
SecurityDescriptor = HeapAlloc ( GetProcessHeap ( ) , 0 , SECURITY_DESCRIPTOR_MIN_LENGTH ) ;
res = InitializeSecurityDescriptor ( SecurityDescriptor , SECURITY_DESCRIPTOR_REVISION ) ;
ok ( res , " InitializeSecurityDescriptor failed with error %d \n " , GetLastError ( ) ) ;
2007-02-07 05:55:24 +01:00
event = CreateEvent ( NULL , TRUE , TRUE , " test_event " ) ;
ok ( event ! = NULL , " CreateEvent %d \n " , GetLastError ( ) ) ;
2007-02-27 15:28:18 +01:00
SecurityDescriptor - > Revision = 0 ;
CHECK_SET_SECURITY ( event , OWNER_SECURITY_INFORMATION , ERROR_UNKNOWN_REVISION ) ;
SecurityDescriptor - > Revision = SECURITY_DESCRIPTOR_REVISION ;
2007-02-07 05:55:24 +01:00
CHECK_SET_SECURITY ( event , OWNER_SECURITY_INFORMATION , ERROR_INVALID_SECURITY_DESCR ) ;
CHECK_SET_SECURITY ( event , GROUP_SECURITY_INFORMATION , ERROR_INVALID_SECURITY_DESCR ) ;
CHECK_SET_SECURITY ( event , SACL_SECURITY_INFORMATION , ERROR_ACCESS_DENIED ) ;
CHECK_SET_SECURITY ( event , DACL_SECURITY_INFORMATION , ERROR_SUCCESS ) ;
2007-02-27 15:28:18 +01:00
/* NULL DACL is valid and means default DACL from token */
SecurityDescriptor - > Control | = SE_DACL_PRESENT ;
CHECK_SET_SECURITY ( event , DACL_SECURITY_INFORMATION , ERROR_SUCCESS ) ;
2007-02-07 05:55:24 +01:00
2007-01-25 07:43:18 +01:00
/* Set owner and group and dacl */
res = SetSecurityDescriptorOwner ( SecurityDescriptor , AdminSid , FALSE ) ;
ok ( res , " SetSecurityDescriptorOwner failed with error %d \n " , GetLastError ( ) ) ;
2007-02-07 05:55:24 +01:00
CHECK_SET_SECURITY ( event , OWNER_SECURITY_INFORMATION , ERROR_SUCCESS ) ;
res = SetSecurityDescriptorGroup ( SecurityDescriptor , UsersSid , FALSE ) ;
2007-01-25 07:43:18 +01:00
ok ( res , " SetSecurityDescriptorGroup failed with error %d \n " , GetLastError ( ) ) ;
2007-02-07 05:55:24 +01:00
CHECK_SET_SECURITY ( event , GROUP_SECURITY_INFORMATION , ERROR_SUCCESS ) ;
2007-01-25 07:43:18 +01:00
res = SetSecurityDescriptorDacl ( SecurityDescriptor , TRUE , Acl , FALSE ) ;
ok ( res , " SetSecurityDescriptorDacl failed with error %d \n " , GetLastError ( ) ) ;
2007-02-07 05:55:24 +01:00
CHECK_SET_SECURITY ( event , DACL_SECURITY_INFORMATION , ERROR_SUCCESS ) ;
2007-01-25 07:43:18 +01:00
sprintf ( buffer , " %s tests/security.c test " , myARGV [ 0 ] ) ;
memset ( & startup , 0 , sizeof ( startup ) ) ;
startup . cb = sizeof ( startup ) ;
startup . dwFlags = STARTF_USESHOWWINDOW ;
startup . wShowWindow = SW_SHOWNORMAL ;
psa . nLength = sizeof ( psa ) ;
psa . lpSecurityDescriptor = SecurityDescriptor ;
psa . bInheritHandle = TRUE ;
/* Doesn't matter what ACL say we should get full access for ourselves */
ok ( CreateProcessA ( NULL , buffer , & psa , NULL , FALSE , 0 , NULL , NULL , & startup , & info ) ,
" CreateProcess with err:%d \n " , GetLastError ( ) ) ;
2008-08-29 04:10:51 +02:00
TEST_GRANTED_ACCESS2 ( info . hProcess , PROCESS_ALL_ACCESS ,
STANDARD_RIGHTS_ALL | SPECIFIC_RIGHTS_ALL ) ;
2008-02-07 12:56:00 +01:00
winetest_wait_child_process ( info . hProcess ) ;
2007-01-25 07:43:18 +01:00
2008-02-07 12:56:00 +01:00
CloseHandle ( info . hProcess ) ;
CloseHandle ( info . hThread ) ;
2007-02-07 05:55:24 +01:00
CloseHandle ( event ) ;
2009-01-02 08:20:54 +01:00
HeapFree ( GetProcessHeap ( ) , 0 , group ) ;
HeapFree ( GetProcessHeap ( ) , 0 , owner ) ;
2007-01-25 07:43:18 +01:00
HeapFree ( GetProcessHeap ( ) , 0 , Acl ) ;
HeapFree ( GetProcessHeap ( ) , 0 , SecurityDescriptor ) ;
}
static void test_process_security_child ( void )
{
HANDLE handle , handle1 ;
2007-02-07 05:55:24 +01:00
BOOL ret ;
DWORD err ;
2007-01-25 07:43:18 +01:00
handle = OpenProcess ( PROCESS_TERMINATE , FALSE , GetCurrentProcessId ( ) ) ;
ok ( handle ! = NULL , " OpenProcess(PROCESS_TERMINATE) with err:%d \n " , GetLastError ( ) ) ;
TEST_GRANTED_ACCESS ( handle , PROCESS_TERMINATE ) ;
ok ( DuplicateHandle ( GetCurrentProcess ( ) , handle , GetCurrentProcess ( ) ,
2007-02-07 05:55:24 +01:00
& handle1 , 0 , TRUE , DUPLICATE_SAME_ACCESS ) ,
2007-01-25 07:43:18 +01:00
" duplicating handle err:%d \n " , GetLastError ( ) ) ;
2007-02-07 05:55:24 +01:00
TEST_GRANTED_ACCESS ( handle1 , PROCESS_TERMINATE ) ;
2007-01-25 07:43:18 +01:00
CloseHandle ( handle1 ) ;
2007-02-07 05:55:24 +01:00
SetLastError ( 0xdeadbeef ) ;
ret = DuplicateHandle ( GetCurrentProcess ( ) , handle , GetCurrentProcess ( ) ,
& handle1 , PROCESS_ALL_ACCESS , TRUE , 0 ) ;
err = GetLastError ( ) ;
todo_wine
ok ( ! ret & & err = = ERROR_ACCESS_DENIED , " duplicating handle should have failed "
" with STATUS_ACCESS_DENIED, instead of err:%d \n " , err ) ;
2007-01-25 07:43:18 +01:00
CloseHandle ( handle ) ;
/* These two should fail - they are denied by ACL */
handle = OpenProcess ( PROCESS_VM_READ , FALSE , GetCurrentProcessId ( ) ) ;
todo_wine
ok ( handle = = NULL , " OpenProcess(PROCESS_VM_READ) should have failed \n " ) ;
handle = OpenProcess ( PROCESS_ALL_ACCESS , FALSE , GetCurrentProcessId ( ) ) ;
todo_wine
ok ( handle = = NULL , " OpenProcess(PROCESS_ALL_ACCESS) should have failed \n " ) ;
/* Documented privilege elevation */
ok ( DuplicateHandle ( GetCurrentProcess ( ) , GetCurrentProcess ( ) , GetCurrentProcess ( ) ,
2007-02-07 05:55:24 +01:00
& handle , 0 , TRUE , DUPLICATE_SAME_ACCESS ) ,
2007-01-25 07:43:18 +01:00
" duplicating handle err:%d \n " , GetLastError ( ) ) ;
2008-08-29 04:10:51 +02:00
TEST_GRANTED_ACCESS2 ( handle , PROCESS_ALL_ACCESS ,
STANDARD_RIGHTS_ALL | SPECIFIC_RIGHTS_ALL ) ;
2007-01-25 07:43:18 +01:00
CloseHandle ( handle ) ;
2007-02-07 05:55:24 +01:00
/* Same only explicitly asking for all access rights */
ok ( DuplicateHandle ( GetCurrentProcess ( ) , GetCurrentProcess ( ) , GetCurrentProcess ( ) ,
& handle , PROCESS_ALL_ACCESS , TRUE , 0 ) ,
" duplicating handle err:%d \n " , GetLastError ( ) ) ;
2008-08-29 04:10:51 +02:00
TEST_GRANTED_ACCESS2 ( handle , PROCESS_ALL_ACCESS ,
2008-09-02 07:52:33 +02:00
PROCESS_ALL_ACCESS | PROCESS_QUERY_LIMITED_INFORMATION ) ;
2007-02-07 05:55:24 +01:00
ok ( DuplicateHandle ( GetCurrentProcess ( ) , handle , GetCurrentProcess ( ) ,
& handle1 , PROCESS_VM_READ , TRUE , 0 ) ,
" duplicating handle err:%d \n " , GetLastError ( ) ) ;
TEST_GRANTED_ACCESS ( handle1 , PROCESS_VM_READ ) ;
CloseHandle ( handle1 ) ;
CloseHandle ( handle ) ;
2007-01-25 07:43:18 +01:00
}
2007-02-15 17:25:58 +01:00
static void test_impersonation_level ( void )
{
HANDLE Token , ProcessToken ;
HANDLE Token2 ;
DWORD Size ;
TOKEN_PRIVILEGES * Privileges ;
TOKEN_USER * User ;
PRIVILEGE_SET * PrivilegeSet ;
BOOL AccessGranted ;
BOOL ret ;
HKEY hkey ;
DWORD error ;
2007-03-16 22:37:14 +01:00
pDuplicateTokenEx = ( fnDuplicateTokenEx ) GetProcAddress ( hmod , " DuplicateTokenEx " ) ;
if ( ! pDuplicateTokenEx ) {
2007-03-29 21:19:32 +02:00
skip ( " DuplicateTokenEx is not available \n " ) ;
2007-03-16 22:37:14 +01:00
return ;
}
2007-03-29 21:19:32 +02:00
SetLastError ( 0xdeadbeef ) ;
2007-02-15 17:25:58 +01:00
ret = ImpersonateSelf ( SecurityAnonymous ) ;
2007-03-29 21:19:32 +02:00
if ( ! ret & & ( GetLastError ( ) = = ERROR_CALL_NOT_IMPLEMENTED ) )
{
skip ( " ImpersonateSelf is not implemented \n " ) ;
return ;
}
2007-02-15 17:25:58 +01:00
ok ( ret , " ImpersonateSelf(SecurityAnonymous) failed with error %d \n " , GetLastError ( ) ) ;
ret = OpenThreadToken ( GetCurrentThread ( ) , TOKEN_QUERY | TOKEN_ADJUST_PRIVILEGES | TOKEN_QUERY_SOURCE | TOKEN_IMPERSONATE | TOKEN_ADJUST_DEFAULT , TRUE , & Token ) ;
ok ( ! ret , " OpenThreadToken should have failed \n " ) ;
error = GetLastError ( ) ;
ok ( error = = ERROR_CANT_OPEN_ANONYMOUS , " OpenThreadToken on anonymous token should have returned ERROR_CANT_OPEN_ANONYMOUS instead of %d \n " , error ) ;
/* can't perform access check when opening object against an anonymous impersonation token */
2007-02-16 00:21:40 +01:00
todo_wine {
2007-02-15 17:25:58 +01:00
error = RegOpenKeyEx ( HKEY_CURRENT_USER , " Software " , 0 , KEY_READ , & hkey ) ;
ok ( error = = ERROR_INVALID_HANDLE , " RegOpenKeyEx should have failed with ERROR_INVALID_HANDLE instead of %d \n " , error ) ;
}
RevertToSelf ( ) ;
ret = OpenProcessToken ( GetCurrentProcess ( ) , TOKEN_DUPLICATE , & ProcessToken ) ;
ok ( ret , " OpenProcessToken failed with error %d \n " , GetLastError ( ) ) ;
2007-03-16 22:37:14 +01:00
ret = pDuplicateTokenEx ( ProcessToken ,
2007-02-15 17:25:58 +01:00
TOKEN_QUERY | TOKEN_DUPLICATE | TOKEN_IMPERSONATE , NULL ,
SecurityAnonymous , TokenImpersonation , & Token ) ;
ok ( ret , " DuplicateTokenEx failed with error %d \n " , GetLastError ( ) ) ;
/* can't increase the impersonation level */
ret = DuplicateToken ( Token , SecurityIdentification , & Token2 ) ;
error = GetLastError ( ) ;
ok ( ! ret & & error = = ERROR_BAD_IMPERSONATION_LEVEL ,
" Duplicating a token and increasing the impersonation level should have failed with ERROR_BAD_IMPERSONATION_LEVEL instead of %d \n " , error ) ;
/* we can query anything from an anonymous token, including the user */
ret = GetTokenInformation ( Token , TokenUser , NULL , 0 , & Size ) ;
error = GetLastError ( ) ;
ok ( ! ret & & error = = ERROR_INSUFFICIENT_BUFFER , " GetTokenInformation(TokenUser) should have failed with ERROR_INSUFFICIENT_BUFFER instead of %d \n " , error ) ;
2008-10-15 23:17:24 +02:00
User = HeapAlloc ( GetProcessHeap ( ) , 0 , Size ) ;
2007-02-15 17:25:58 +01:00
ret = GetTokenInformation ( Token , TokenUser , User , Size , & Size ) ;
ok ( ret , " GetTokenInformation(TokenUser) failed with error %d \n " , GetLastError ( ) ) ;
HeapFree ( GetProcessHeap ( ) , 0 , User ) ;
/* PrivilegeCheck fails with SecurityAnonymous level */
ret = GetTokenInformation ( Token , TokenPrivileges , NULL , 0 , & Size ) ;
error = GetLastError ( ) ;
ok ( ! ret & & error = = ERROR_INSUFFICIENT_BUFFER , " GetTokenInformation(TokenPrivileges) should have failed with ERROR_INSUFFICIENT_BUFFER instead of %d \n " , error ) ;
2008-10-15 23:17:24 +02:00
Privileges = HeapAlloc ( GetProcessHeap ( ) , 0 , Size ) ;
2007-02-15 17:25:58 +01:00
ret = GetTokenInformation ( Token , TokenPrivileges , Privileges , Size , & Size ) ;
ok ( ret , " GetTokenInformation(TokenPrivileges) failed with error %d \n " , GetLastError ( ) ) ;
2008-10-15 23:17:24 +02:00
PrivilegeSet = HeapAlloc ( GetProcessHeap ( ) , 0 , FIELD_OFFSET ( PRIVILEGE_SET , Privilege [ Privileges - > PrivilegeCount ] ) ) ;
2007-02-15 17:25:58 +01:00
PrivilegeSet - > PrivilegeCount = Privileges - > PrivilegeCount ;
memcpy ( PrivilegeSet - > Privilege , Privileges - > Privileges , PrivilegeSet - > PrivilegeCount * sizeof ( PrivilegeSet - > Privilege [ 0 ] ) ) ;
PrivilegeSet - > Control = PRIVILEGE_SET_ALL_NECESSARY ;
HeapFree ( GetProcessHeap ( ) , 0 , Privileges ) ;
ret = PrivilegeCheck ( Token , PrivilegeSet , & AccessGranted ) ;
error = GetLastError ( ) ;
ok ( ! ret & & error = = ERROR_BAD_IMPERSONATION_LEVEL , " PrivilegeCheck for SecurityAnonymous token should have failed with ERROR_BAD_IMPERSONATION_LEVEL instead of %d \n " , error ) ;
CloseHandle ( Token ) ;
ret = ImpersonateSelf ( SecurityIdentification ) ;
ok ( ret , " ImpersonateSelf(SecurityIdentification) failed with error %d \n " , GetLastError ( ) ) ;
ret = OpenThreadToken ( GetCurrentThread ( ) , TOKEN_QUERY | TOKEN_ADJUST_PRIVILEGES | TOKEN_QUERY_SOURCE | TOKEN_IMPERSONATE | TOKEN_ADJUST_DEFAULT , TRUE , & Token ) ;
ok ( ret , " OpenThreadToken failed with error %d \n " , GetLastError ( ) ) ;
/* can't perform access check when opening object against an identification impersonation token */
error = RegOpenKeyEx ( HKEY_CURRENT_USER , " Software " , 0 , KEY_READ , & hkey ) ;
todo_wine {
ok ( error = = ERROR_INVALID_HANDLE , " RegOpenKeyEx should have failed with ERROR_INVALID_HANDLE instead of %d \n " , error ) ;
}
ret = PrivilegeCheck ( Token , PrivilegeSet , & AccessGranted ) ;
ok ( ret , " PrivilegeCheck for SecurityIdentification failed with error %d \n " , GetLastError ( ) ) ;
CloseHandle ( Token ) ;
RevertToSelf ( ) ;
ret = ImpersonateSelf ( SecurityImpersonation ) ;
ok ( ret , " ImpersonateSelf(SecurityImpersonation) failed with error %d \n " , GetLastError ( ) ) ;
ret = OpenThreadToken ( GetCurrentThread ( ) , TOKEN_QUERY | TOKEN_ADJUST_PRIVILEGES | TOKEN_QUERY_SOURCE | TOKEN_IMPERSONATE | TOKEN_ADJUST_DEFAULT , TRUE , & Token ) ;
ok ( ret , " OpenThreadToken failed with error %d \n " , GetLastError ( ) ) ;
error = RegOpenKeyEx ( HKEY_CURRENT_USER , " Software " , 0 , KEY_READ , & hkey ) ;
ok ( error = = ERROR_SUCCESS , " RegOpenKeyEx should have succeeded instead of failing with %d \n " , error ) ;
RegCloseKey ( hkey ) ;
ret = PrivilegeCheck ( Token , PrivilegeSet , & AccessGranted ) ;
ok ( ret , " PrivilegeCheck for SecurityImpersonation failed with error %d \n " , GetLastError ( ) ) ;
RevertToSelf ( ) ;
CloseHandle ( Token ) ;
CloseHandle ( ProcessToken ) ;
HeapFree ( GetProcessHeap ( ) , 0 , PrivilegeSet ) ;
}
2007-03-19 15:05:52 +01:00
static void test_SetEntriesInAcl ( void )
{
DWORD res ;
2008-01-22 16:36:04 +01:00
PSID EveryoneSid = NULL , UsersSid = NULL ;
PACL OldAcl = NULL , NewAcl ;
SID_IDENTIFIER_AUTHORITY SIDAuthWorld = { SECURITY_WORLD_SID_AUTHORITY } ;
SID_IDENTIFIER_AUTHORITY SIDAuthNT = { SECURITY_NT_AUTHORITY } ;
EXPLICIT_ACCESSW ExplicitAccess ;
static const WCHAR wszEveryone [ ] = { ' E ' , ' v ' , ' e ' , ' r ' , ' y ' , ' o ' , ' n ' , ' e ' , 0 } ;
2007-03-19 15:05:52 +01:00
2007-08-14 11:05:04 +02:00
if ( ! pSetEntriesInAclW )
{
2008-11-29 12:38:30 +01:00
win_skip ( " SetEntriesInAclW is not available \n " ) ;
2007-08-14 11:05:04 +02:00
return ;
}
2008-01-22 16:36:04 +01:00
NewAcl = ( PACL ) 0xdeadbeef ;
res = pSetEntriesInAclW ( 0 , NULL , NULL , & NewAcl ) ;
2007-03-29 21:33:11 +02:00
if ( res = = ERROR_CALL_NOT_IMPLEMENTED )
{
2008-11-29 12:38:30 +01:00
win_skip ( " SetEntriesInAclW is not implemented \n " ) ;
2007-03-29 21:33:11 +02:00
return ;
}
ok ( res = = ERROR_SUCCESS , " SetEntriesInAclW failed: %u \n " , res ) ;
2008-12-06 12:43:55 +01:00
ok ( NewAcl = = NULL | |
broken ( NewAcl ! = NULL ) , /* NT4 */
" NewAcl=%p, expected NULL \n " , NewAcl ) ;
LocalFree ( NewAcl ) ;
2008-01-22 16:36:04 +01:00
OldAcl = HeapAlloc ( GetProcessHeap ( ) , 0 , 256 ) ;
res = InitializeAcl ( OldAcl , 256 , ACL_REVISION ) ;
if ( ! res & & GetLastError ( ) = = ERROR_CALL_NOT_IMPLEMENTED )
{
2008-11-29 12:38:30 +01:00
win_skip ( " ACLs not implemented - skipping tests \n " ) ;
2008-01-22 16:36:04 +01:00
HeapFree ( GetProcessHeap ( ) , 0 , OldAcl ) ;
return ;
}
ok ( res , " InitializeAcl failed with error %d \n " , GetLastError ( ) ) ;
res = AllocateAndInitializeSid ( & SIDAuthWorld , 1 , SECURITY_WORLD_RID , 0 , 0 , 0 , 0 , 0 , 0 , 0 , & EveryoneSid ) ;
ok ( res , " AllocateAndInitializeSid failed with error %d \n " , GetLastError ( ) ) ;
res = AllocateAndInitializeSid ( & SIDAuthNT , 2 , SECURITY_BUILTIN_DOMAIN_RID ,
DOMAIN_ALIAS_RID_USERS , 0 , 0 , 0 , 0 , 0 , 0 , & UsersSid ) ;
ok ( res , " AllocateAndInitializeSid failed with error %d \n " , GetLastError ( ) ) ;
res = AddAccessAllowedAce ( OldAcl , ACL_REVISION , KEY_READ , UsersSid ) ;
ok ( res , " AddAccessAllowedAce failed with error %d \n " , GetLastError ( ) ) ;
ExplicitAccess . grfAccessPermissions = KEY_WRITE ;
ExplicitAccess . grfAccessMode = GRANT_ACCESS ;
ExplicitAccess . grfInheritance = NO_INHERITANCE ;
ExplicitAccess . Trustee . pMultipleTrustee = NULL ;
ExplicitAccess . Trustee . MultipleTrusteeOperation = NO_MULTIPLE_TRUSTEE ;
ExplicitAccess . Trustee . TrusteeForm = TRUSTEE_IS_SID ;
ExplicitAccess . Trustee . TrusteeType = TRUSTEE_IS_UNKNOWN ;
2009-01-13 10:57:53 +01:00
ExplicitAccess . Trustee . ptstrName = EveryoneSid ;
2008-01-22 16:36:04 +01:00
res = pSetEntriesInAclW ( 1 , & ExplicitAccess , OldAcl , & NewAcl ) ;
ok ( res = = ERROR_SUCCESS , " SetEntriesInAclW failed: %u \n " , res ) ;
ok ( NewAcl ! = NULL , " returned acl was NULL \n " ) ;
LocalFree ( NewAcl ) ;
2008-02-16 14:11:57 +01:00
if ( PRIMARYLANGID ( LANGIDFROMLCID ( GetThreadLocale ( ) ) ) ! = LANG_ENGLISH )
{
skip ( " Non-english locale (test with hardcoded 'Everyone') \n " ) ;
}
else
{
ExplicitAccess . Trustee . TrusteeForm = TRUSTEE_IS_USER ;
ExplicitAccess . Trustee . ptstrName = ( LPWSTR ) wszEveryone ;
res = pSetEntriesInAclW ( 1 , & ExplicitAccess , OldAcl , & NewAcl ) ;
ok ( res = = ERROR_SUCCESS , " SetEntriesInAclW failed: %u \n " , res ) ;
ok ( NewAcl ! = NULL , " returned acl was NULL \n " ) ;
LocalFree ( NewAcl ) ;
ExplicitAccess . Trustee . TrusteeForm = TRUSTEE_BAD_FORM ;
res = pSetEntriesInAclW ( 1 , & ExplicitAccess , OldAcl , & NewAcl ) ;
2008-12-06 12:43:55 +01:00
ok ( res = = ERROR_INVALID_PARAMETER | |
broken ( res = = ERROR_NOT_SUPPORTED ) , /* NT4 */
" SetEntriesInAclW failed: %u \n " , res ) ;
2008-11-29 12:38:30 +01:00
ok ( NewAcl = = NULL | |
broken ( NewAcl ! = NULL ) , /* NT4 */
" returned acl wasn't NULL: %p \n " , NewAcl ) ;
2008-02-16 14:11:57 +01:00
ExplicitAccess . Trustee . TrusteeForm = TRUSTEE_IS_USER ;
ExplicitAccess . Trustee . MultipleTrusteeOperation = TRUSTEE_IS_IMPERSONATE ;
res = pSetEntriesInAclW ( 1 , & ExplicitAccess , OldAcl , & NewAcl ) ;
2008-12-06 12:43:55 +01:00
ok ( res = = ERROR_INVALID_PARAMETER | |
broken ( res = = ERROR_NOT_SUPPORTED ) , /* NT4 */
" SetEntriesInAclW failed: %u \n " , res ) ;
2008-11-29 12:38:30 +01:00
ok ( NewAcl = = NULL | |
broken ( NewAcl ! = NULL ) , /* NT4 */
" returned acl wasn't NULL: %p \n " , NewAcl ) ;
2008-02-16 14:11:57 +01:00
ExplicitAccess . Trustee . MultipleTrusteeOperation = NO_MULTIPLE_TRUSTEE ;
ExplicitAccess . grfAccessMode = SET_ACCESS ;
res = pSetEntriesInAclW ( 1 , & ExplicitAccess , OldAcl , & NewAcl ) ;
ok ( res = = ERROR_SUCCESS , " SetEntriesInAclW failed: %u \n " , res ) ;
ok ( NewAcl ! = NULL , " returned acl was NULL \n " ) ;
LocalFree ( NewAcl ) ;
}
2008-01-22 16:36:04 +01:00
ExplicitAccess . grfAccessMode = REVOKE_ACCESS ;
ExplicitAccess . Trustee . TrusteeForm = TRUSTEE_IS_SID ;
2009-01-13 10:57:53 +01:00
ExplicitAccess . Trustee . ptstrName = UsersSid ;
2008-01-22 16:36:04 +01:00
res = pSetEntriesInAclW ( 1 , & ExplicitAccess , OldAcl , & NewAcl ) ;
ok ( res = = ERROR_SUCCESS , " SetEntriesInAclW failed: %u \n " , res ) ;
ok ( NewAcl ! = NULL , " returned acl was NULL \n " ) ;
LocalFree ( NewAcl ) ;
LocalFree ( UsersSid ) ;
LocalFree ( EveryoneSid ) ;
HeapFree ( GetProcessHeap ( ) , 0 , OldAcl ) ;
2007-03-19 15:05:52 +01:00
}
2007-06-25 16:00:38 +02:00
static void test_GetNamedSecurityInfoA ( void )
{
PSECURITY_DESCRIPTOR pSecDesc ;
DWORD revision ;
SECURITY_DESCRIPTOR_CONTROL control ;
PSID owner ;
PSID group ;
BOOL owner_defaulted ;
BOOL group_defaulted ;
DWORD error ;
BOOL ret ;
CHAR windows_dir [ MAX_PATH ] ;
2007-08-14 11:05:04 +02:00
if ( ! pGetNamedSecurityInfoA )
{
skip ( " GetNamedSecurityInfoA is not available \n " ) ;
return ;
}
2007-06-25 16:00:38 +02:00
ret = GetWindowsDirectoryA ( windows_dir , MAX_PATH ) ;
ok ( ret , " GetWindowsDirectory failed with error %d \n " , GetLastError ( ) ) ;
2007-07-05 17:22:27 +02:00
SetLastError ( 0xdeadbeef ) ;
2007-08-14 11:05:04 +02:00
error = pGetNamedSecurityInfoA ( windows_dir , SE_FILE_OBJECT ,
2007-06-25 16:00:38 +02:00
OWNER_SECURITY_INFORMATION | GROUP_SECURITY_INFORMATION | DACL_SECURITY_INFORMATION ,
NULL , NULL , NULL , NULL , & pSecDesc ) ;
2007-07-05 17:22:27 +02:00
if ( error ! = ERROR_SUCCESS & & ( GetLastError ( ) = = ERROR_CALL_NOT_IMPLEMENTED ) )
{
skip ( " GetNamedSecurityInfoA is not implemented \n " ) ;
return ;
}
2007-06-25 16:00:38 +02:00
ok ( ! error , " GetNamedSecurityInfo failed with error %d \n " , error ) ;
ret = GetSecurityDescriptorControl ( pSecDesc , & control , & revision ) ;
ok ( ret , " GetSecurityDescriptorControl failed with error %d \n " , GetLastError ( ) ) ;
2008-12-09 17:44:50 +01:00
ok ( ( control & ( SE_SELF_RELATIVE | SE_DACL_PRESENT ) ) = = ( SE_SELF_RELATIVE | SE_DACL_PRESENT ) | |
broken ( ( control & ( SE_SELF_RELATIVE | SE_DACL_PRESENT ) ) = = SE_DACL_PRESENT ) , /* NT4 */
2007-06-25 16:00:38 +02:00
" control (0x%x) doesn't have (SE_SELF_RELATIVE|SE_DACL_PRESENT) flags set \n " , control ) ;
ok ( revision = = SECURITY_DESCRIPTOR_REVISION1 , " revision was %d instead of 1 \n " , revision ) ;
ret = GetSecurityDescriptorOwner ( pSecDesc , & owner , & owner_defaulted ) ;
ok ( ret , " GetSecurityDescriptorOwner failed with error %d \n " , GetLastError ( ) ) ;
ok ( owner ! = NULL , " owner should not be NULL \n " ) ;
ret = GetSecurityDescriptorGroup ( pSecDesc , & group , & group_defaulted ) ;
ok ( ret , " GetSecurityDescriptorGroup failed with error %d \n " , GetLastError ( ) ) ;
ok ( group ! = NULL , " group should not be NULL \n " ) ;
2008-12-09 17:44:50 +01:00
LocalFree ( pSecDesc ) ;
2007-06-25 16:00:38 +02:00
}
2007-07-20 10:26:35 +02:00
static void test_ConvertStringSecurityDescriptor ( void )
2007-07-18 19:13:25 +02:00
{
BOOL ret ;
PSECURITY_DESCRIPTOR pSD ;
2008-10-13 23:02:06 +02:00
static const WCHAR Blank [ ] = { 0 } ;
2007-07-18 19:13:25 +02:00
2007-07-20 13:53:44 +02:00
if ( ! pConvertStringSecurityDescriptorToSecurityDescriptorA )
{
skip ( " ConvertStringSecurityDescriptorToSecurityDescriptor is not available \n " ) ;
return ;
}
2007-07-18 19:13:25 +02:00
SetLastError ( 0xdeadbeef ) ;
2007-07-20 13:53:44 +02:00
ret = pConvertStringSecurityDescriptorToSecurityDescriptorA (
2007-07-18 19:13:25 +02:00
" D:(A;;GA;;;WD) " , 0xdeadbeef , & pSD , NULL ) ;
ok ( ! ret & & GetLastError ( ) = = ERROR_UNKNOWN_REVISION ,
" ConvertStringSecurityDescriptorToSecurityDescriptor should have failed with ERROR_UNKNOWN_REVISION instead of %d \n " ,
GetLastError ( ) ) ;
/* test ACE string type */
SetLastError ( 0xdeadbeef ) ;
2007-07-20 13:53:44 +02:00
ret = pConvertStringSecurityDescriptorToSecurityDescriptorA (
2007-07-18 19:13:25 +02:00
" D:(A;;GA;;;WD) " , SDDL_REVISION_1 , & pSD , NULL ) ;
ok ( ret , " ConvertStringSecurityDescriptorToSecurityDescriptor failed with error %d \n " , GetLastError ( ) ) ;
LocalFree ( pSD ) ;
SetLastError ( 0xdeadbeef ) ;
2007-07-20 13:53:44 +02:00
ret = pConvertStringSecurityDescriptorToSecurityDescriptorA (
2007-07-18 19:13:25 +02:00
" D:(D;;GA;;;WD) " , SDDL_REVISION_1 , & pSD , NULL ) ;
ok ( ret , " ConvertStringSecurityDescriptorToSecurityDescriptor failed with error %d \n " , GetLastError ( ) ) ;
LocalFree ( pSD ) ;
SetLastError ( 0xdeadbeef ) ;
2007-07-20 13:53:44 +02:00
ret = pConvertStringSecurityDescriptorToSecurityDescriptorA (
2007-07-18 19:13:25 +02:00
" ERROR:(D;;GA;;;WD) " , SDDL_REVISION_1 , & pSD , NULL ) ;
ok ( ! ret & & GetLastError ( ) = = ERROR_INVALID_PARAMETER ,
" ConvertStringSecurityDescriptorToSecurityDescriptor should have failed with ERROR_INVALID_PARAMETER instead of %d \n " ,
GetLastError ( ) ) ;
/* test ACE string access rights */
SetLastError ( 0xdeadbeef ) ;
2007-07-20 13:53:44 +02:00
ret = pConvertStringSecurityDescriptorToSecurityDescriptorA (
2007-07-18 19:13:25 +02:00
" D:(A;;GA;;;WD) " , SDDL_REVISION_1 , & pSD , NULL ) ;
ok ( ret , " ConvertStringSecurityDescriptorToSecurityDescriptor failed with error %d \n " , GetLastError ( ) ) ;
LocalFree ( pSD ) ;
SetLastError ( 0xdeadbeef ) ;
2007-07-20 13:53:44 +02:00
ret = pConvertStringSecurityDescriptorToSecurityDescriptorA (
2007-07-18 19:13:25 +02:00
" D:(A;;GRGWGX;;;WD) " , SDDL_REVISION_1 , & pSD , NULL ) ;
ok ( ret , " ConvertStringSecurityDescriptorToSecurityDescriptor failed with error %d \n " , GetLastError ( ) ) ;
LocalFree ( pSD ) ;
SetLastError ( 0xdeadbeef ) ;
2007-07-20 13:53:44 +02:00
ret = pConvertStringSecurityDescriptorToSecurityDescriptorA (
2007-07-18 19:13:25 +02:00
" D:(A;;RCSDWDWO;;;WD) " , SDDL_REVISION_1 , & pSD , NULL ) ;
ok ( ret , " ConvertStringSecurityDescriptorToSecurityDescriptor failed with error %d \n " , GetLastError ( ) ) ;
LocalFree ( pSD ) ;
SetLastError ( 0xdeadbeef ) ;
2007-07-20 13:53:44 +02:00
ret = pConvertStringSecurityDescriptorToSecurityDescriptorA (
2007-07-18 19:13:25 +02:00
" D:(A;;RPWPCCDCLCSWLODTCR;;;WD) " , SDDL_REVISION_1 , & pSD , NULL ) ;
ok ( ret , " ConvertStringSecurityDescriptorToSecurityDescriptor failed with error %d \n " , GetLastError ( ) ) ;
LocalFree ( pSD ) ;
SetLastError ( 0xdeadbeef ) ;
2007-07-20 13:53:44 +02:00
ret = pConvertStringSecurityDescriptorToSecurityDescriptorA (
2007-07-18 19:13:25 +02:00
" D:(A;;FAFRFWFX;;;WD) " , SDDL_REVISION_1 , & pSD , NULL ) ;
ok ( ret , " ConvertStringSecurityDescriptorToSecurityDescriptor failed with error %d \n " , GetLastError ( ) ) ;
LocalFree ( pSD ) ;
SetLastError ( 0xdeadbeef ) ;
2007-07-20 13:53:44 +02:00
ret = pConvertStringSecurityDescriptorToSecurityDescriptorA (
2007-07-18 19:13:25 +02:00
" D:(A;;KAKRKWKX;;;WD) " , SDDL_REVISION_1 , & pSD , NULL ) ;
ok ( ret , " ConvertStringSecurityDescriptorToSecurityDescriptor failed with error %d \n " , GetLastError ( ) ) ;
LocalFree ( pSD ) ;
SetLastError ( 0xdeadbeef ) ;
2007-07-20 13:53:44 +02:00
ret = pConvertStringSecurityDescriptorToSecurityDescriptorA (
2007-07-18 19:13:25 +02:00
" D:(A;;0xFFFFFFFF;;;WD) " , SDDL_REVISION_1 , & pSD , NULL ) ;
ok ( ret , " ConvertStringSecurityDescriptorToSecurityDescriptor failed with error %d \n " , GetLastError ( ) ) ;
LocalFree ( pSD ) ;
2007-09-27 20:55:11 +02:00
SetLastError ( 0xdeadbeef ) ;
ret = pConvertStringSecurityDescriptorToSecurityDescriptorA (
" S:(AU;;0xFFFFFFFF;;;WD) " , SDDL_REVISION_1 , & pSD , NULL ) ;
ok ( ret , " ConvertStringSecurityDescriptorToSecurityDescriptor failed with error %d \n " , GetLastError ( ) ) ;
LocalFree ( pSD ) ;
2007-07-18 19:13:25 +02:00
/* test ACE string access right error case */
SetLastError ( 0xdeadbeef ) ;
2007-07-20 13:53:44 +02:00
ret = pConvertStringSecurityDescriptorToSecurityDescriptorA (
2007-07-18 19:13:25 +02:00
" D:(A;;ROB;;;WD) " , SDDL_REVISION_1 , & pSD , NULL ) ;
ok ( ! ret & & GetLastError ( ) = = ERROR_INVALID_ACL ,
" ConvertStringSecurityDescriptorToSecurityDescriptor should have failed with ERROR_INVALID_ACL instead of %d \n " ,
GetLastError ( ) ) ;
2008-10-13 23:02:06 +02:00
/* test behaviour with NULL parameters */
SetLastError ( 0xdeadbeef ) ;
ret = pConvertStringSecurityDescriptorToSecurityDescriptorA (
NULL , 0xdeadbeef , & pSD , NULL ) ;
todo_wine
ok ( ! ret & & GetLastError ( ) = = ERROR_INVALID_PARAMETER ,
" ConvertStringSecurityDescriptorToSecurityDescriptor should have failed with ERROR_INVALID_PARAMETER instead of %d \n " ,
GetLastError ( ) ) ;
SetLastError ( 0xdeadbeef ) ;
ret = pConvertStringSecurityDescriptorToSecurityDescriptorW (
NULL , 0xdeadbeef , & pSD , NULL ) ;
ok ( ! ret & & GetLastError ( ) = = ERROR_INVALID_PARAMETER ,
" ConvertStringSecurityDescriptorToSecurityDescriptor should have failed with ERROR_INVALID_PARAMETER instead of %d \n " ,
GetLastError ( ) ) ;
SetLastError ( 0xdeadbeef ) ;
ret = pConvertStringSecurityDescriptorToSecurityDescriptorA (
" D:(A;;ROB;;;WD) " , 0xdeadbeef , NULL , NULL ) ;
ok ( ! ret & & GetLastError ( ) = = ERROR_INVALID_PARAMETER ,
" ConvertStringSecurityDescriptorToSecurityDescriptor should have failed with ERROR_INVALID_PARAMETER instead of %d \n " ,
GetLastError ( ) ) ;
SetLastError ( 0xdeadbeef ) ;
ret = pConvertStringSecurityDescriptorToSecurityDescriptorA (
" D:(A;;ROB;;;WD) " , SDDL_REVISION_1 , NULL , NULL ) ;
ok ( ! ret & & GetLastError ( ) = = ERROR_INVALID_PARAMETER ,
" ConvertStringSecurityDescriptorToSecurityDescriptor should have failed with ERROR_INVALID_PARAMETER instead of %d \n " ,
GetLastError ( ) ) ;
/* test behaviour with empty strings */
SetLastError ( 0xdeadbeef ) ;
ret = pConvertStringSecurityDescriptorToSecurityDescriptorA (
" " , SDDL_REVISION_1 , & pSD , NULL ) ;
ok ( ret , " ConvertStringSecurityDescriptorToSecurityDescriptor failed with error %d \n " , GetLastError ( ) ) ;
SetLastError ( 0xdeadbeef ) ;
ret = pConvertStringSecurityDescriptorToSecurityDescriptorW (
Blank , SDDL_REVISION_1 , & pSD , NULL ) ;
ok ( ret , " ConvertStringSecurityDescriptorToSecurityDescriptor failed with error %d \n " , GetLastError ( ) ) ;
2007-07-18 19:13:25 +02:00
/* test ACE string SID */
SetLastError ( 0xdeadbeef ) ;
2007-07-20 13:53:44 +02:00
ret = pConvertStringSecurityDescriptorToSecurityDescriptorA (
2007-07-18 19:13:25 +02:00
" D:(D;;GA;;;S-1-0-0) " , SDDL_REVISION_1 , & pSD , NULL ) ;
ok ( ret , " ConvertStringSecurityDescriptorToSecurityDescriptor failed with error %d \n " , GetLastError ( ) ) ;
LocalFree ( pSD ) ;
SetLastError ( 0xdeadbeef ) ;
2007-07-20 13:53:44 +02:00
ret = pConvertStringSecurityDescriptorToSecurityDescriptorA (
2007-07-31 18:57:34 +02:00
" D:(D;;GA;;;Nonexistent account) " , SDDL_REVISION_1 , & pSD , NULL ) ;
2008-04-11 01:05:30 +02:00
ok ( ! ret , " Expected failure, got %d \n " , ret ) ;
ok ( GetLastError ( ) = = ERROR_INVALID_ACL | | GetLastError ( ) = = ERROR_INVALID_SID ,
" Expected ERROR_INVALID_ACL or ERROR_INVALID_SID, got %d \n " , GetLastError ( ) ) ;
2007-07-18 19:13:25 +02:00
}
2009-01-25 23:27:04 +01:00
static void test_ConvertSecurityDescriptorToString ( void )
2007-09-25 22:12:50 +02:00
{
SECURITY_DESCRIPTOR desc ;
SECURITY_INFORMATION sec_info = OWNER_SECURITY_INFORMATION | GROUP_SECURITY_INFORMATION | DACL_SECURITY_INFORMATION | SACL_SECURITY_INFORMATION ;
LPSTR string ;
DWORD size ;
PSID psid , psid2 ;
PACL pacl ;
char sid_buf [ 256 ] ;
char acl_buf [ 8192 ] ;
ULONG len ;
if ( ! pConvertSecurityDescriptorToStringSecurityDescriptorA )
{
skip ( " ConvertSecurityDescriptorToStringSecurityDescriptor is not available \n " ) ;
return ;
}
2007-10-16 10:51:00 +02:00
if ( ! pCreateWellKnownSid )
{
skip ( " CreateWellKnownSid is not available \n " ) ;
return ;
}
2007-09-25 22:12:50 +02:00
2007-10-11 18:31:26 +02:00
/* It seems Windows XP adds an extra character to the length of the string for each ACE in an ACL. We
2007-09-25 22:12:50 +02:00
* don ' t replicate this feature so we only test len > = strlen + 1. */
# define CHECK_RESULT_AND_FREE(exp_str) \
ok ( strcmp ( string , ( exp_str ) ) = = 0 , " String mismatch (expected \" %s \" , got \" %s \" ) \n " , ( exp_str ) , string ) ; \
2007-12-07 18:49:18 +01:00
ok ( len > = ( lstrlen ( exp_str ) + 1 ) , " Length mismatch (expected %d, got %d) \n " , lstrlen ( exp_str ) + 1 , len ) ; \
2007-09-25 22:12:50 +02:00
LocalFree ( string ) ;
2007-10-21 08:46:40 +02:00
# define CHECK_ONE_OF_AND_FREE(exp_str1, exp_str2) \
ok ( strcmp ( string , ( exp_str1 ) ) = = 0 | | strcmp ( string , ( exp_str2 ) ) = = 0 , " String mismatch (expected \n \" %s \" or \n \" %s \" , got \n \" %s \" ) \n " , ( exp_str1 ) , ( exp_str2 ) , string ) ; \
2007-12-07 18:49:18 +01:00
ok ( len > = ( strlen ( string ) + 1 ) , " Length mismatch (expected %d, got %d) \n " , lstrlen ( string ) + 1 , len ) ; \
2007-10-21 08:46:40 +02:00
LocalFree ( string ) ;
2007-09-25 22:12:50 +02:00
InitializeSecurityDescriptor ( & desc , SECURITY_DESCRIPTOR_REVISION ) ;
2007-10-02 09:19:49 +02:00
ok ( pConvertSecurityDescriptorToStringSecurityDescriptorA ( & desc , SDDL_REVISION_1 , sec_info , & string , & len ) , " Conversion failed \n " ) ;
2007-09-25 22:12:50 +02:00
CHECK_RESULT_AND_FREE ( " " ) ;
size = 4096 ;
2007-10-16 10:51:00 +02:00
pCreateWellKnownSid ( WinLocalSid , NULL , sid_buf , & size ) ;
2009-01-13 10:57:53 +01:00
SetSecurityDescriptorOwner ( & desc , sid_buf , FALSE ) ;
2007-10-02 09:19:49 +02:00
ok ( pConvertSecurityDescriptorToStringSecurityDescriptorA ( & desc , SDDL_REVISION_1 , sec_info , & string , & len ) , " Conversion failed \n " ) ;
2007-09-25 22:12:50 +02:00
CHECK_RESULT_AND_FREE ( " O:S-1-2-0 " ) ;
2009-01-13 10:57:53 +01:00
SetSecurityDescriptorOwner ( & desc , sid_buf , TRUE ) ;
2007-10-02 09:19:49 +02:00
ok ( pConvertSecurityDescriptorToStringSecurityDescriptorA ( & desc , SDDL_REVISION_1 , sec_info , & string , & len ) , " Conversion failed \n " ) ;
2007-09-25 22:12:50 +02:00
CHECK_RESULT_AND_FREE ( " O:S-1-2-0 " ) ;
size = sizeof ( sid_buf ) ;
2007-10-16 10:51:00 +02:00
pCreateWellKnownSid ( WinLocalSystemSid , NULL , sid_buf , & size ) ;
2009-01-13 10:57:53 +01:00
SetSecurityDescriptorOwner ( & desc , sid_buf , TRUE ) ;
2007-10-02 09:19:49 +02:00
ok ( pConvertSecurityDescriptorToStringSecurityDescriptorA ( & desc , SDDL_REVISION_1 , sec_info , & string , & len ) , " Conversion failed \n " ) ;
2007-09-25 22:12:50 +02:00
CHECK_RESULT_AND_FREE ( " O:SY " ) ;
2007-11-02 11:33:36 +01:00
pConvertStringSidToSidA ( " S-1-5-21-93476-23408-4576 " , & psid ) ;
2007-09-25 22:12:50 +02:00
SetSecurityDescriptorGroup ( & desc , psid , TRUE ) ;
2007-10-02 09:19:49 +02:00
ok ( pConvertSecurityDescriptorToStringSecurityDescriptorA ( & desc , SDDL_REVISION_1 , sec_info , & string , & len ) , " Conversion failed \n " ) ;
2007-09-25 22:12:50 +02:00
CHECK_RESULT_AND_FREE ( " O:SYG:S-1-5-21-93476-23408-4576 " ) ;
2007-10-02 09:19:49 +02:00
ok ( pConvertSecurityDescriptorToStringSecurityDescriptorA ( & desc , SDDL_REVISION_1 , GROUP_SECURITY_INFORMATION , & string , & len ) , " Conversion failed \n " ) ;
2007-09-25 22:12:50 +02:00
CHECK_RESULT_AND_FREE ( " G:S-1-5-21-93476-23408-4576 " ) ;
pacl = ( PACL ) acl_buf ;
InitializeAcl ( pacl , sizeof ( acl_buf ) , ACL_REVISION ) ;
SetSecurityDescriptorDacl ( & desc , TRUE , pacl , TRUE ) ;
2007-10-02 09:19:49 +02:00
ok ( pConvertSecurityDescriptorToStringSecurityDescriptorA ( & desc , SDDL_REVISION_1 , sec_info , & string , & len ) , " Conversion failed \n " ) ;
2007-09-25 22:12:50 +02:00
CHECK_RESULT_AND_FREE ( " O:SYG:S-1-5-21-93476-23408-4576D: " ) ;
SetSecurityDescriptorDacl ( & desc , TRUE , pacl , FALSE ) ;
2007-10-02 09:19:49 +02:00
ok ( pConvertSecurityDescriptorToStringSecurityDescriptorA ( & desc , SDDL_REVISION_1 , sec_info , & string , & len ) , " Conversion failed \n " ) ;
2007-09-25 22:12:50 +02:00
CHECK_RESULT_AND_FREE ( " O:SYG:S-1-5-21-93476-23408-4576D: " ) ;
2007-11-02 11:33:36 +01:00
pConvertStringSidToSidA ( " S-1-5-6 " , & psid2 ) ;
pAddAccessAllowedAceEx ( pacl , ACL_REVISION , NO_PROPAGATE_INHERIT_ACE , 0xf0000000 , psid2 ) ;
2007-10-02 09:19:49 +02:00
ok ( pConvertSecurityDescriptorToStringSecurityDescriptorA ( & desc , SDDL_REVISION_1 , sec_info , & string , & len ) , " Conversion failed \n " ) ;
2007-09-25 22:12:50 +02:00
CHECK_RESULT_AND_FREE ( " O:SYG:S-1-5-21-93476-23408-4576D:(A;NP;GAGXGWGR;;;SU) " ) ;
2007-11-02 11:33:36 +01:00
pAddAccessAllowedAceEx ( pacl , ACL_REVISION , INHERIT_ONLY_ACE | INHERITED_ACE , 0x00000003 , psid2 ) ;
2007-10-02 09:19:49 +02:00
ok ( pConvertSecurityDescriptorToStringSecurityDescriptorA ( & desc , SDDL_REVISION_1 , sec_info , & string , & len ) , " Conversion failed \n " ) ;
2007-09-25 22:12:50 +02:00
CHECK_RESULT_AND_FREE ( " O:SYG:S-1-5-21-93476-23408-4576D:(A;NP;GAGXGWGR;;;SU)(A;IOID;CCDC;;;SU) " ) ;
2007-11-02 11:33:36 +01:00
pAddAccessDeniedAceEx ( pacl , ACL_REVISION , OBJECT_INHERIT_ACE | CONTAINER_INHERIT_ACE , 0xffffffff , psid ) ;
2007-10-02 09:19:49 +02:00
ok ( pConvertSecurityDescriptorToStringSecurityDescriptorA ( & desc , SDDL_REVISION_1 , sec_info , & string , & len ) , " Conversion failed \n " ) ;
2007-09-25 22:12:50 +02:00
CHECK_RESULT_AND_FREE ( " O:SYG:S-1-5-21-93476-23408-4576D:(A;NP;GAGXGWGR;;;SU)(A;IOID;CCDC;;;SU)(D;OICI;0xffffffff;;;S-1-5-21-93476-23408-4576) " ) ;
pacl = ( PACL ) acl_buf ;
InitializeAcl ( pacl , sizeof ( acl_buf ) , ACL_REVISION ) ;
SetSecurityDescriptorSacl ( & desc , TRUE , pacl , FALSE ) ;
2007-10-02 09:19:49 +02:00
ok ( pConvertSecurityDescriptorToStringSecurityDescriptorA ( & desc , SDDL_REVISION_1 , sec_info , & string , & len ) , " Conversion failed \n " ) ;
2007-09-25 22:12:50 +02:00
CHECK_RESULT_AND_FREE ( " O:SYG:S-1-5-21-93476-23408-4576D:S: " ) ;
2008-04-11 01:05:30 +02:00
/* fails in win2k */
2007-09-25 22:12:50 +02:00
SetSecurityDescriptorDacl ( & desc , TRUE , NULL , FALSE ) ;
2007-11-02 11:33:36 +01:00
pAddAuditAccessAceEx ( pacl , ACL_REVISION , VALID_INHERIT_FLAGS , KEY_READ | KEY_WRITE , psid2 , TRUE , TRUE ) ;
2008-04-11 01:05:30 +02:00
if ( pConvertSecurityDescriptorToStringSecurityDescriptorA ( & desc , SDDL_REVISION_1 , sec_info , & string , & len ) )
{
CHECK_ONE_OF_AND_FREE ( " O:SYG:S-1-5-21-93476-23408-4576D:S:(AU;OICINPIOIDSAFA;CCDCLCSWRPRC;;;SU) " , /* XP */
" O:SYG:S-1-5-21-93476-23408-4576D:NO_ACCESS_CONTROLS:(AU;OICINPIOIDSAFA;CCDCLCSWRPRC;;;SU) " /* Vista */ ) ;
}
2007-09-25 22:12:50 +02:00
2008-04-11 01:05:30 +02:00
/* fails in win2k */
2007-11-02 11:33:36 +01:00
pAddAuditAccessAceEx ( pacl , ACL_REVISION , NO_PROPAGATE_INHERIT_ACE , FILE_GENERIC_READ | FILE_GENERIC_WRITE , psid2 , TRUE , FALSE ) ;
2008-04-11 01:05:30 +02:00
if ( pConvertSecurityDescriptorToStringSecurityDescriptorA ( & desc , SDDL_REVISION_1 , sec_info , & string , & len ) )
{
CHECK_ONE_OF_AND_FREE ( " O:SYG:S-1-5-21-93476-23408-4576D:S:(AU;OICINPIOIDSAFA;CCDCLCSWRPRC;;;SU)(AU;NPSA;0x12019f;;;SU) " , /* XP */
" O:SYG:S-1-5-21-93476-23408-4576D:NO_ACCESS_CONTROLS:(AU;OICINPIOIDSAFA;CCDCLCSWRPRC;;;SU)(AU;NPSA;0x12019f;;;SU) " /* Vista */ ) ;
}
2007-09-27 21:01:49 +02:00
}
2008-10-17 19:44:14 +02:00
static void test_SetSecurityDescriptorControl ( PSECURITY_DESCRIPTOR sec )
{
SECURITY_DESCRIPTOR_CONTROL ref ;
SECURITY_DESCRIPTOR_CONTROL test ;
SECURITY_DESCRIPTOR_CONTROL const mutable
= SE_DACL_AUTO_INHERIT_REQ | SE_SACL_AUTO_INHERIT_REQ
| SE_DACL_AUTO_INHERITED | SE_SACL_AUTO_INHERITED
| SE_DACL_PROTECTED | SE_SACL_PROTECTED
| 0x00000040 | 0x00000080 /* not defined in winnt.h */
;
SECURITY_DESCRIPTOR_CONTROL const immutable
= SE_OWNER_DEFAULTED | SE_GROUP_DEFAULTED
| SE_DACL_PRESENT | SE_DACL_DEFAULTED
| SE_SACL_PRESENT | SE_SACL_DEFAULTED
| SE_RM_CONTROL_VALID | SE_SELF_RELATIVE
;
int bit ;
DWORD dwRevision ;
LPCSTR fmt = " Expected error %s, got %u \n " ;
GetSecurityDescriptorControl ( sec , & ref , & dwRevision ) ;
/* The mutable bits are mutable regardless of the truth of
SE_DACL_PRESENT and / or SE_SACL_PRESENT */
/* Check call barfs if any bit-of-interest is immutable */
for ( bit = 0 ; bit < 16 ; + + bit )
{
SECURITY_DESCRIPTOR_CONTROL const bitOfInterest = 1 < < bit ;
SECURITY_DESCRIPTOR_CONTROL setOrClear = ref & bitOfInterest ;
SECURITY_DESCRIPTOR_CONTROL ctrl ;
DWORD dwExpect = ( bitOfInterest & immutable )
? ERROR_INVALID_PARAMETER : 0xbebecaca ;
LPCSTR strExpect = ( bitOfInterest & immutable )
? " ERROR_INVALID_PARAMETER " : " 0xbebecaca " ;
ctrl = ( bitOfInterest & mutable ) ? ref + bitOfInterest : ref ;
setOrClear ^ = bitOfInterest ;
SetLastError ( 0xbebecaca ) ;
pSetSecurityDescriptorControl ( sec , bitOfInterest , setOrClear ) ;
ok ( GetLastError ( ) = = dwExpect , fmt , strExpect , GetLastError ( ) ) ;
GetSecurityDescriptorControl ( sec , & test , & dwRevision ) ;
expect_eq ( test , ctrl , int , " %x " ) ;
ctrl = ref ;
setOrClear ^ = bitOfInterest ;
SetLastError ( 0xbebecaca ) ;
pSetSecurityDescriptorControl ( sec , bitOfInterest , setOrClear ) ;
ok ( GetLastError ( ) = = dwExpect , fmt , strExpect , GetLastError ( ) ) ;
GetSecurityDescriptorControl ( sec , & test , & dwRevision ) ;
expect_eq ( test , ref , int , " %x " ) ;
}
/* Check call barfs if any bit-to-set is immutable
even when not a bit - of - interest */
for ( bit = 0 ; bit < 16 ; + + bit )
{
SECURITY_DESCRIPTOR_CONTROL const bitsOfInterest = mutable ;
SECURITY_DESCRIPTOR_CONTROL setOrClear = ref & bitsOfInterest ;
SECURITY_DESCRIPTOR_CONTROL ctrl ;
DWORD dwExpect = ( ( 1 < < bit ) & immutable )
? ERROR_INVALID_PARAMETER : 0xbebecaca ;
LPCSTR strExpect = ( ( 1 < < bit ) & immutable )
? " ERROR_INVALID_PARAMETER " : " 0xbebecaca " ;
ctrl = ( ( 1 < < bit ) & immutable ) ? test : ref | mutable ;
setOrClear ^ = bitsOfInterest ;
SetLastError ( 0xbebecaca ) ;
pSetSecurityDescriptorControl ( sec , bitsOfInterest , setOrClear | ( 1 < < bit ) ) ;
ok ( GetLastError ( ) = = dwExpect , fmt , strExpect , GetLastError ( ) ) ;
GetSecurityDescriptorControl ( sec , & test , & dwRevision ) ;
expect_eq ( test , ctrl , int , " %x " ) ;
ctrl = ( ( 1 < < bit ) & immutable ) ? test : ref | ( 1 < < bit ) ;
setOrClear ^ = bitsOfInterest ;
SetLastError ( 0xbebecaca ) ;
pSetSecurityDescriptorControl ( sec , bitsOfInterest , setOrClear | ( 1 < < bit ) ) ;
ok ( GetLastError ( ) = = dwExpect , fmt , strExpect , GetLastError ( ) ) ;
GetSecurityDescriptorControl ( sec , & test , & dwRevision ) ;
expect_eq ( test , ctrl , int , " %x " ) ;
}
}
2007-09-27 21:01:49 +02:00
static void test_PrivateObjectSecurity ( void )
{
SECURITY_INFORMATION sec_info = OWNER_SECURITY_INFORMATION | GROUP_SECURITY_INFORMATION | DACL_SECURITY_INFORMATION | SACL_SECURITY_INFORMATION ;
SECURITY_DESCRIPTOR_CONTROL ctrl ;
PSECURITY_DESCRIPTOR sec ;
DWORD dwDescSize ;
DWORD dwRevision ;
DWORD retSize ;
LPSTR string ;
ULONG len ;
PSECURITY_DESCRIPTOR buf ;
2008-01-08 10:18:17 +01:00
if ( ! pConvertStringSecurityDescriptorToSecurityDescriptorA )
{
skip ( " ConvertStringSecurityDescriptorToSecurityDescriptor is not available \n " ) ;
return ;
}
2008-10-17 19:44:14 +02:00
ok ( pConvertStringSecurityDescriptorToSecurityDescriptorA (
" O:SY "
" G:S-1-5-21-93476-23408-4576 "
" D:(A;NP;GAGXGWGR;;;SU)(A;IOID;CCDC;;;SU) "
" (D;OICI;0xffffffff;;;S-1-5-21-93476-23408-4576) "
" S:(AU;OICINPIOIDSAFA;CCDCLCSWRPRC;;;SU)(AU;NPSA;0x12019f;;;SU) " ,
SDDL_REVISION_1 , & sec , & dwDescSize ) , " Creating descriptor failed \n " ) ;
test_SetSecurityDescriptorControl ( sec ) ;
LocalFree ( sec ) ;
ok ( pConvertStringSecurityDescriptorToSecurityDescriptorA (
" O:SY "
" G:S-1-5-21-93476-23408-4576 " ,
SDDL_REVISION_1 , & sec , & dwDescSize ) , " Creating descriptor failed \n " ) ;
test_SetSecurityDescriptorControl ( sec ) ;
LocalFree ( sec ) ;
2007-11-02 11:33:36 +01:00
ok ( pConvertStringSecurityDescriptorToSecurityDescriptorA (
2007-09-27 21:01:49 +02:00
" O:SY "
" G:S-1-5-21-93476-23408-4576 "
" D:(A;NP;GAGXGWGR;;;SU)(A;IOID;CCDC;;;SU)(D;OICI;0xffffffff;;;S-1-5-21-93476-23408-4576) "
" S:(AU;OICINPIOIDSAFA;CCDCLCSWRPRC;;;SU)(AU;NPSA;0x12019f;;;SU) " , SDDL_REVISION_1 , & sec , & dwDescSize ) , " Creating descriptor failed \n " ) ;
buf = HeapAlloc ( GetProcessHeap ( ) , 0 , dwDescSize ) ;
2007-11-02 11:33:36 +01:00
pSetSecurityDescriptorControl ( sec , SE_DACL_PROTECTED , SE_DACL_PROTECTED ) ;
2007-09-27 21:01:49 +02:00
GetSecurityDescriptorControl ( sec , & ctrl , & dwRevision ) ;
2008-10-17 19:44:14 +02:00
expect_eq ( ctrl , 0x9014 , int , " %x " ) ;
2007-09-27 21:01:49 +02:00
ok ( GetPrivateObjectSecurity ( sec , GROUP_SECURITY_INFORMATION , buf , dwDescSize , & retSize ) ,
" GetPrivateObjectSecurity failed (err=%u) \n " , GetLastError ( ) ) ;
ok ( retSize < = dwDescSize , " Buffer too small (%d vs %d) \n " , retSize , dwDescSize ) ;
2007-10-02 09:19:49 +02:00
ok ( pConvertSecurityDescriptorToStringSecurityDescriptorA ( buf , SDDL_REVISION_1 , sec_info , & string , & len ) , " Conversion failed \n " ) ;
2007-09-27 21:01:49 +02:00
CHECK_RESULT_AND_FREE ( " G:S-1-5-21-93476-23408-4576 " ) ;
GetSecurityDescriptorControl ( buf , & ctrl , & dwRevision ) ;
expect_eq ( ctrl , 0x8000 , int , " %x " ) ;
ok ( GetPrivateObjectSecurity ( sec , GROUP_SECURITY_INFORMATION | DACL_SECURITY_INFORMATION , buf , dwDescSize , & retSize ) ,
" GetPrivateObjectSecurity failed (err=%u) \n " , GetLastError ( ) ) ;
ok ( retSize < = dwDescSize , " Buffer too small (%d vs %d) \n " , retSize , dwDescSize ) ;
2007-10-02 09:19:49 +02:00
ok ( pConvertSecurityDescriptorToStringSecurityDescriptorA ( buf , SDDL_REVISION_1 , sec_info , & string , & len ) , " Conversion failed err=%u \n " , GetLastError ( ) ) ;
2007-09-27 21:01:49 +02:00
CHECK_RESULT_AND_FREE ( " G:S-1-5-21-93476-23408-4576D:(A;NP;GAGXGWGR;;;SU)(A;IOID;CCDC;;;SU)(D;OICI;0xffffffff;;;S-1-5-21-93476-23408-4576) " ) ;
GetSecurityDescriptorControl ( buf , & ctrl , & dwRevision ) ;
expect_eq ( ctrl , 0x8004 , int , " %x " ) ;
ok ( GetPrivateObjectSecurity ( sec , sec_info , buf , dwDescSize , & retSize ) ,
" GetPrivateObjectSecurity failed (err=%u) \n " , GetLastError ( ) ) ;
ok ( retSize = = dwDescSize , " Buffer too small (%d vs %d) \n " , retSize , dwDescSize ) ;
2007-10-02 09:19:49 +02:00
ok ( pConvertSecurityDescriptorToStringSecurityDescriptorA ( buf , SDDL_REVISION_1 , sec_info , & string , & len ) , " Conversion failed \n " ) ;
2007-09-27 21:01:49 +02:00
CHECK_RESULT_AND_FREE ( " O:SY "
" G:S-1-5-21-93476-23408-4576 "
" D:(A;NP;GAGXGWGR;;;SU)(A;IOID;CCDC;;;SU)(D;OICI;0xffffffff;;;S-1-5-21-93476-23408-4576) "
" S:(AU;OICINPIOIDSAFA;CCDCLCSWRPRC;;;SU)(AU;NPSA;0x12019f;;;SU) " ) ;
GetSecurityDescriptorControl ( buf , & ctrl , & dwRevision ) ;
expect_eq ( ctrl , 0x8014 , int , " %x " ) ;
2007-09-25 22:12:50 +02:00
2007-09-27 21:01:49 +02:00
SetLastError ( 0xdeadbeef ) ;
ok ( GetPrivateObjectSecurity ( sec , sec_info , buf , 5 , & retSize ) = = FALSE , " GetPrivateObjectSecurity should have failed \n " ) ;
ok ( GetLastError ( ) = = ERROR_INSUFFICIENT_BUFFER , " Expected error ERROR_INSUFFICIENT_BUFFER, got %u \n " , GetLastError ( ) ) ;
2007-09-25 22:12:50 +02:00
2007-09-27 21:01:49 +02:00
LocalFree ( sec ) ;
2007-10-02 08:59:02 +02:00
HeapFree ( GetProcessHeap ( ) , 0 , buf ) ;
2007-09-25 22:12:50 +02:00
}
2007-09-27 21:01:49 +02:00
# undef CHECK_RESULT_AND_FREE
2007-10-21 08:46:40 +02:00
# undef CHECK_ONE_OF_AND_FREE
2007-09-25 22:12:50 +02:00
2007-10-23 14:38:47 +02:00
static void test_acls ( void )
{
char buffer [ 256 ] ;
PACL pAcl = ( PACL ) buffer ;
BOOL ret ;
SetLastError ( 0xdeadbeef ) ;
ret = InitializeAcl ( pAcl , sizeof ( ACL ) - 1 , ACL_REVISION ) ;
2008-01-08 10:18:17 +01:00
if ( ! ret & & GetLastError ( ) = = ERROR_CALL_NOT_IMPLEMENTED )
{
skip ( " InitializeAcl is not implemented \n " ) ;
return ;
}
2007-10-23 14:38:47 +02:00
ok ( ! ret & & GetLastError ( ) = = ERROR_INSUFFICIENT_BUFFER , " InitializeAcl with too small a buffer should have failed with ERROR_INSUFFICIENT_BUFFER instead of %d \n " , GetLastError ( ) ) ;
SetLastError ( 0xdeadbeef ) ;
ret = InitializeAcl ( pAcl , 0xffffffff , ACL_REVISION ) ;
ok ( ! ret & & GetLastError ( ) = = ERROR_INVALID_PARAMETER , " InitializeAcl with too large a buffer should have failed with ERROR_INVALID_PARAMETER instead of %d \n " , GetLastError ( ) ) ;
SetLastError ( 0xdeadbeef ) ;
ret = InitializeAcl ( pAcl , sizeof ( buffer ) , ACL_REVISION1 ) ;
ok ( ! ret & & GetLastError ( ) = = ERROR_INVALID_PARAMETER , " InitializeAcl(ACL_REVISION1) should have failed with ERROR_INVALID_PARAMETER instead of %d \n " , GetLastError ( ) ) ;
ret = InitializeAcl ( pAcl , sizeof ( buffer ) , ACL_REVISION2 ) ;
ok ( ret , " InitializeAcl(ACL_REVISION2) failed with error %d \n " , GetLastError ( ) ) ;
ret = IsValidAcl ( pAcl ) ;
ok ( ret , " IsValidAcl failed with error %d \n " , GetLastError ( ) ) ;
ret = InitializeAcl ( pAcl , sizeof ( buffer ) , ACL_REVISION3 ) ;
ok ( ret , " InitializeAcl(ACL_REVISION3) failed with error %d \n " , GetLastError ( ) ) ;
ret = IsValidAcl ( pAcl ) ;
ok ( ret , " IsValidAcl failed with error %d \n " , GetLastError ( ) ) ;
2008-12-06 12:43:55 +01:00
SetLastError ( 0xdeadbeef ) ;
2007-10-23 14:38:47 +02:00
ret = InitializeAcl ( pAcl , sizeof ( buffer ) , ACL_REVISION4 ) ;
2008-12-06 12:43:55 +01:00
if ( GetLastError ( ) ! = ERROR_INVALID_PARAMETER )
{
ok ( ret , " InitializeAcl(ACL_REVISION4) failed with error %d \n " , GetLastError ( ) ) ;
2007-10-23 14:38:47 +02:00
2008-12-06 12:43:55 +01:00
ret = IsValidAcl ( pAcl ) ;
ok ( ret , " IsValidAcl failed with error %d \n " , GetLastError ( ) ) ;
}
else
win_skip ( " ACL_REVISION4 is not implemented on NT4 \n " ) ;
2007-10-23 14:38:47 +02:00
SetLastError ( 0xdeadbeef ) ;
ret = InitializeAcl ( pAcl , sizeof ( buffer ) , - 1 ) ;
ok ( ! ret & & GetLastError ( ) = = ERROR_INVALID_PARAMETER , " InitializeAcl(-1) failed with error %d \n " , GetLastError ( ) ) ;
}
2008-08-07 21:54:58 +02:00
static void test_GetSecurityInfo ( void )
{
HANDLE obj ;
PSECURITY_DESCRIPTOR sd ;
PSID owner , group ;
PACL dacl ;
DWORD ret ;
2008-08-25 14:16:25 +02:00
if ( ! pGetSecurityInfo )
{
win_skip ( " GetSecurityInfo is not available \n " ) ;
return ;
}
2008-08-07 21:54:58 +02:00
/* Create something. Files have lots of associated security info. */
obj = CreateFile ( myARGV [ 0 ] , GENERIC_READ , FILE_SHARE_READ , NULL ,
OPEN_EXISTING , FILE_ATTRIBUTE_NORMAL , NULL ) ;
2008-08-18 22:31:22 +02:00
if ( obj = = INVALID_HANDLE_VALUE )
2008-08-07 21:54:58 +02:00
{
skip ( " Couldn't create an object for GetSecurityInfo test \n " ) ;
return ;
}
2008-08-25 14:16:25 +02:00
ret = pGetSecurityInfo ( obj , SE_FILE_OBJECT ,
2008-08-07 21:54:58 +02:00
OWNER_SECURITY_INFORMATION | GROUP_SECURITY_INFORMATION | DACL_SECURITY_INFORMATION ,
& owner , & group , & dacl , NULL , & sd ) ;
2008-08-25 14:16:25 +02:00
if ( ret = = ERROR_CALL_NOT_IMPLEMENTED )
{
win_skip ( " GetSecurityInfo is not implemented \n " ) ;
CloseHandle ( obj ) ;
return ;
}
2008-08-07 21:54:58 +02:00
ok ( ret = = ERROR_SUCCESS , " GetSecurityInfo returned %d \n " , ret ) ;
ok ( sd ! = NULL , " GetSecurityInfo \n " ) ;
ok ( owner ! = NULL , " GetSecurityInfo \n " ) ;
ok ( group ! = NULL , " GetSecurityInfo \n " ) ;
ok ( dacl ! = NULL , " GetSecurityInfo \n " ) ;
ok ( IsValidAcl ( dacl ) , " GetSecurityInfo \n " ) ;
LocalFree ( sd ) ;
2008-08-08 00:14:06 +02:00
2008-11-29 12:38:30 +01:00
if ( ! pCreateWellKnownSid )
{
win_skip ( " NULL parameter test would crash on NT4 \n " ) ;
CloseHandle ( obj ) ;
return ;
}
2008-08-08 00:14:06 +02:00
/* If we don't ask for the security descriptor, Windows will still give us
the other stuff , leaving us no way to free it . */
2008-08-25 14:16:25 +02:00
ret = pGetSecurityInfo ( obj , SE_FILE_OBJECT ,
2008-08-08 00:14:06 +02:00
OWNER_SECURITY_INFORMATION | GROUP_SECURITY_INFORMATION | DACL_SECURITY_INFORMATION ,
& owner , & group , & dacl , NULL , NULL ) ;
ok ( ret = = ERROR_SUCCESS , " GetSecurityInfo returned %d \n " , ret ) ;
ok ( owner ! = NULL , " GetSecurityInfo \n " ) ;
ok ( group ! = NULL , " GetSecurityInfo \n " ) ;
ok ( dacl ! = NULL , " GetSecurityInfo \n " ) ;
ok ( IsValidAcl ( dacl ) , " GetSecurityInfo \n " ) ;
2008-08-07 21:54:58 +02:00
CloseHandle ( obj ) ;
}
2004-08-09 20:47:22 +02:00
START_TEST ( security )
{
2004-11-04 05:52:17 +01:00
init ( ) ;
if ( ! hmod ) return ;
2007-01-25 07:43:18 +01:00
if ( myARGC > = 3 )
{
test_process_security_child ( ) ;
return ;
}
2004-08-09 20:47:22 +02:00
test_sid ( ) ;
2004-08-16 23:07:50 +02:00
test_trustee ( ) ;
2004-11-04 05:52:17 +01:00
test_luid ( ) ;
2007-10-21 09:41:54 +02:00
test_CreateWellKnownSid ( ) ;
2005-03-28 12:00:59 +02:00
test_FileSecurity ( ) ;
2005-06-09 12:03:11 +02:00
test_AccessCheck ( ) ;
2006-05-13 17:56:59 +02:00
test_token_attr ( ) ;
2006-07-06 04:53:52 +02:00
test_LookupAccountSid ( ) ;
2006-12-01 00:53:21 +01:00
test_LookupAccountName ( ) ;
2007-09-27 19:34:53 +02:00
test_security_descriptor ( ) ;
2007-01-25 07:43:18 +01:00
test_process_security ( ) ;
2007-02-15 17:25:58 +01:00
test_impersonation_level ( ) ;
2007-03-19 15:05:52 +01:00
test_SetEntriesInAcl ( ) ;
2007-06-25 16:00:38 +02:00
test_GetNamedSecurityInfoA ( ) ;
2007-07-20 10:26:35 +02:00
test_ConvertStringSecurityDescriptor ( ) ;
2007-09-25 22:12:50 +02:00
test_ConvertSecurityDescriptorToString ( ) ;
2007-09-27 21:01:49 +02:00
test_PrivateObjectSecurity ( ) ;
2007-10-23 14:38:47 +02:00
test_acls ( ) ;
2008-08-07 21:54:58 +02:00
test_GetSecurityInfo ( ) ;
2004-08-09 20:47:22 +02:00
}