2 * Copyright 1999, 2000 Juergen Schmied <juergen.schmied@debitel.net>
3 * Copyright 2003 CodeWeavers Inc. (Ulrich Czekalla)
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation; either
8 * version 2.1 of the License, or (at your option) any later version.
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Lesser General Public License for more details.
15 * You should have received a copy of the GNU Lesser General Public
16 * License along with this library; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
37 #include "wine/debug.h"
38 #include "wine/unicode.h"
40 WINE_DEFAULT_DEBUG_CHANNEL(advapi);
42 static BOOL ParseStringSidToSid(LPCWSTR StringSid, PSID pSid, LPDWORD cBytes);
43 static BOOL ParseStringAclToAcl(LPCWSTR StringAcl, LPDWORD lpdwFlags,
44 PACL pAcl, LPDWORD cBytes);
45 static BYTE ParseAceStringFlags(LPCWSTR* StringAcl);
46 static BYTE ParseAceStringType(LPCWSTR* StringAcl);
47 static DWORD ParseAceStringRights(LPCWSTR* StringAcl);
48 static BOOL ParseStringSecurityDescriptorToSecurityDescriptor(
49 LPCWSTR StringSecurityDescriptor,
50 SECURITY_DESCRIPTOR* SecurityDescriptor,
52 static DWORD ParseAclStringFlags(LPCWSTR* StringAcl);
54 typedef struct _ACEFLAG
58 } ACEFLAG, *LPACEFLAG;
60 static SID const sidWorld = { SID_REVISION, 1, { SECURITY_WORLD_SID_AUTHORITY} , { SECURITY_WORLD_RID } };
65 static const WCHAR SDDL_READ_CONTROL[] = {'R','C',0};
66 static const WCHAR SDDL_WRITE_DAC[] = {'W','D',0};
67 static const WCHAR SDDL_WRITE_OWNER[] = {'W','O',0};
68 static const WCHAR SDDL_STANDARD_DELETE[] = {'S','D',0};
69 static const WCHAR SDDL_GENERIC_ALL[] = {'G','A',0};
70 static const WCHAR SDDL_GENERIC_READ[] = {'G','R',0};
71 static const WCHAR SDDL_GENERIC_WRITE[] = {'G','W',0};
72 static const WCHAR SDDL_GENERIC_EXECUTE[] = {'G','X',0};
77 static const WCHAR SDDL_ACCESS_ALLOWED[] = {'A',0};
78 static const WCHAR SDDL_ACCESS_DENIED[] = {'D',0};
79 static const WCHAR SDDL_OBJECT_ACCESS_ALLOWED[] = {'O','A',0};
80 static const WCHAR SDDL_OBJECT_ACCESS_DENIED[] = {'O','D',0};
81 static const WCHAR SDDL_AUDIT[] = {'A','U',0};
82 static const WCHAR SDDL_ALARM[] = {'A','L',0};
83 static const WCHAR SDDL_OBJECT_AUDIT[] = {'O','U',0};
84 static const WCHAR SDDL_OBJECT_ALARMp[] = {'O','L',0};
89 static const WCHAR SDDL_CONTAINER_INHERIT[] = {'C','I',0};
90 static const WCHAR SDDL_OBJECT_INHERIT[] = {'O','I',0};
91 static const WCHAR SDDL_NO_PROPAGATE[] = {'N','P',0};
92 static const WCHAR SDDL_INHERIT_ONLY[] = {'I','O',0};
93 static const WCHAR SDDL_INHERITED[] = {'I','D',0};
94 static const WCHAR SDDL_AUDIT_SUCCESS[] = {'S','A',0};
95 static const WCHAR SDDL_AUDIT_FAILURE[] = {'F','A',0};
97 /* set last error code from NT status and get the proper boolean return value */
98 /* used for functions that are a simple wrapper around the corresponding ntdll API */
99 static inline BOOL set_ntstatus( NTSTATUS status )
101 if (status) SetLastError( RtlNtStatusToDosError( status ));
105 static void dumpLsaAttributes( PLSA_OBJECT_ATTRIBUTES oa )
109 TRACE("\n\tlength=%lu, rootdir=%p, objectname=%s\n\tattr=0x%08lx, sid=%p qos=%p\n",
110 oa->Length, oa->RootDirectory,
111 oa->ObjectName?debugstr_w(oa->ObjectName->Buffer):"null",
112 oa->Attributes, oa->SecurityDescriptor, oa->SecurityQualityOfService);
116 #define WINE_SIZE_OF_WORLD_ACCESS_ACL (sizeof(ACL) + sizeof(ACCESS_ALLOWED_ACE) + sizeof(sidWorld) - sizeof(DWORD))
118 static void GetWorldAccessACL(PACL pACL)
120 PACCESS_ALLOWED_ACE pACE = (PACCESS_ALLOWED_ACE) (pACL + 1);
122 pACL->AclRevision = ACL_REVISION;
124 pACL->AclSize = WINE_SIZE_OF_WORLD_ACCESS_ACL;
128 pACE->Header.AceType = ACCESS_ALLOWED_ACE_TYPE;
129 pACE->Header.AceFlags = CONTAINER_INHERIT_ACE;
130 pACE->Header.AceSize = sizeof(ACCESS_ALLOWED_ACE) + sizeof(sidWorld) - sizeof(DWORD);
131 pACE->Mask = 0xf3ffffff; /* Everything except reserved bits */
132 memcpy(&pACE->SidStart, &sidWorld, sizeof(sidWorld));
135 /************************************************************
136 * ADVAPI_IsLocalComputer
138 * Checks whether the server name indicates local machine.
140 static BOOL ADVAPI_IsLocalComputer(LPCWSTR ServerName)
142 DWORD dwSize = MAX_COMPUTERNAME_LENGTH + 1;
146 if (!ServerName || !ServerName[0])
149 buf = HeapAlloc(GetProcessHeap(), 0, dwSize * sizeof(WCHAR));
150 Result = GetComputerNameW(buf, &dwSize);
151 if (Result && (ServerName[0] == '\\') && (ServerName[1] == '\\'))
153 Result = Result && !lstrcmpW(ServerName, buf);
154 HeapFree(GetProcessHeap(), 0, buf);
159 #define ADVAPI_ForceLocalComputer(ServerName, FailureCode) \
160 if (!ADVAPI_IsLocalComputer(ServerName)) \
162 FIXME("Action Implemented for local computer only. " \
163 "Requested for server %s\n", debugstr_w(ServerName)); \
164 return FailureCode; \
167 /* ##############################
168 ###### TOKEN FUNCTIONS ######
169 ##############################
172 /******************************************************************************
173 * OpenProcessToken [ADVAPI32.@]
174 * Opens the access token associated with a process handle.
177 * ProcessHandle [I] Handle to process
178 * DesiredAccess [I] Desired access to process
179 * TokenHandle [O] Pointer to handle of open access token
182 * Success: TRUE. TokenHandle contains the access token.
186 * See NtOpenProcessToken.
189 OpenProcessToken( HANDLE ProcessHandle, DWORD DesiredAccess,
190 HANDLE *TokenHandle )
192 return set_ntstatus(NtOpenProcessToken( ProcessHandle, DesiredAccess, TokenHandle ));
195 /******************************************************************************
196 * OpenThreadToken [ADVAPI32.@]
198 * Opens the access token associated with a thread handle.
201 * ThreadHandle [I] Handle to process
202 * DesiredAccess [I] Desired access to the thread
204 * TokenHandle [O] Destination for the token handle
207 * Success: TRUE. TokenHandle contains the access token.
211 * See NtOpenThreadToken.
214 OpenThreadToken( HANDLE ThreadHandle, DWORD DesiredAccess,
215 BOOL OpenAsSelf, HANDLE *TokenHandle)
217 return set_ntstatus( NtOpenThreadToken(ThreadHandle, DesiredAccess, OpenAsSelf, TokenHandle));
221 AdjustTokenGroups( HANDLE TokenHandle, BOOL ResetToDefault, PTOKEN_GROUPS NewState,
222 DWORD BufferLength, PTOKEN_GROUPS PreviousState, PDWORD ReturnLength )
224 return set_ntstatus( NtAdjustGroupsToken(TokenHandle, ResetToDefault, NewState, BufferLength,
225 PreviousState, ReturnLength));
228 /******************************************************************************
229 * AdjustTokenPrivileges [ADVAPI32.@]
231 * Adjust the privileges of an open token handle.
234 * TokenHandle [I] Handle from OpenProcessToken() or OpenThreadToken()
235 * DisableAllPrivileges [I] TRUE=Remove all privileges, FALSE=Use NewState
236 * NewState [I] Desired new privileges of the token
237 * BufferLength [I] Length of NewState
238 * PreviousState [O] Destination for the previous state
239 * ReturnLength [I/O] Size of PreviousState
243 * Success: TRUE. Privileges are set to NewState and PreviousState is updated.
247 * See NtAdjustPrivilegesToken.
250 AdjustTokenPrivileges( HANDLE TokenHandle, BOOL DisableAllPrivileges,
251 LPVOID NewState, DWORD BufferLength,
252 LPVOID PreviousState, LPDWORD ReturnLength )
258 status = NtAdjustPrivilegesToken(TokenHandle, DisableAllPrivileges,
259 NewState, BufferLength, PreviousState,
261 SetLastError( RtlNtStatusToDosError( status ));
262 if ((status == STATUS_SUCCESS) || (status == STATUS_NOT_ALL_ASSIGNED))
268 /******************************************************************************
269 * CheckTokenMembership [ADVAPI32.@]
271 * Determine if an access token is a member of a SID.
274 * TokenHandle [I] Handle from OpenProcessToken() or OpenThreadToken()
275 * SidToCheck [I] SID that possibly contains the token
276 * IsMember [O] Destination for result.
279 * Success: TRUE. IsMember is TRUE if TokenHandle is a member, FALSE otherwise.
283 CheckTokenMembership( HANDLE TokenHandle, PSID SidToCheck,
286 FIXME("(%p %p %p) stub!\n", TokenHandle, SidToCheck, IsMember);
292 /******************************************************************************
293 * GetTokenInformation [ADVAPI32.@]
296 * token [I] Handle from OpenProcessToken() or OpenThreadToken()
297 * tokeninfoclass [I] A TOKEN_INFORMATION_CLASS from "winnt.h"
298 * tokeninfo [O] Destination for token information
299 * tokeninfolength [I] Length of tokeninfo
300 * retlen [O] Destination for returned token information length
303 * Success: TRUE. tokeninfo contains retlen bytes of token information
307 * See NtQueryInformationToken.
310 GetTokenInformation( HANDLE token, TOKEN_INFORMATION_CLASS tokeninfoclass,
311 LPVOID tokeninfo, DWORD tokeninfolength, LPDWORD retlen )
313 TRACE("(%p, %s, %p, %ld, %p): \n",
315 (tokeninfoclass == TokenUser) ? "TokenUser" :
316 (tokeninfoclass == TokenGroups) ? "TokenGroups" :
317 (tokeninfoclass == TokenPrivileges) ? "TokenPrivileges" :
318 (tokeninfoclass == TokenOwner) ? "TokenOwner" :
319 (tokeninfoclass == TokenPrimaryGroup) ? "TokenPrimaryGroup" :
320 (tokeninfoclass == TokenDefaultDacl) ? "TokenDefaultDacl" :
321 (tokeninfoclass == TokenSource) ? "TokenSource" :
322 (tokeninfoclass == TokenType) ? "TokenType" :
323 (tokeninfoclass == TokenImpersonationLevel) ? "TokenImpersonationLevel" :
324 (tokeninfoclass == TokenStatistics) ? "TokenStatistics" :
325 (tokeninfoclass == TokenRestrictedSids) ? "TokenRestrictedSids" :
326 (tokeninfoclass == TokenSessionId) ? "TokenSessionId" :
327 (tokeninfoclass == TokenGroupsAndPrivileges) ? "TokenGroupsAndPrivileges" :
328 (tokeninfoclass == TokenSessionReference) ? "TokenSessionReference" :
329 (tokeninfoclass == TokenSandBoxInert) ? "TokenSandBoxInert" :
331 tokeninfo, tokeninfolength, retlen);
332 return set_ntstatus( NtQueryInformationToken( token, tokeninfoclass, tokeninfo,
333 tokeninfolength, retlen));
336 /******************************************************************************
337 * SetTokenInformation [ADVAPI32.@]
339 * Set information for an access token.
342 * token [I] Handle from OpenProcessToken() or OpenThreadToken()
343 * tokeninfoclass [I] A TOKEN_INFORMATION_CLASS from "winnt.h"
344 * tokeninfo [I] Token information to set
345 * tokeninfolength [I] Length of tokeninfo
348 * Success: TRUE. The information for the token is set to tokeninfo.
352 SetTokenInformation( HANDLE token, TOKEN_INFORMATION_CLASS tokeninfoclass,
353 LPVOID tokeninfo, DWORD tokeninfolength )
355 TRACE("(%p, %s, %p, %ld): stub\n",
357 (tokeninfoclass == TokenUser) ? "TokenUser" :
358 (tokeninfoclass == TokenGroups) ? "TokenGroups" :
359 (tokeninfoclass == TokenPrivileges) ? "TokenPrivileges" :
360 (tokeninfoclass == TokenOwner) ? "TokenOwner" :
361 (tokeninfoclass == TokenPrimaryGroup) ? "TokenPrimaryGroup" :
362 (tokeninfoclass == TokenDefaultDacl) ? "TokenDefaultDacl" :
363 (tokeninfoclass == TokenSource) ? "TokenSource" :
364 (tokeninfoclass == TokenType) ? "TokenType" :
365 (tokeninfoclass == TokenImpersonationLevel) ? "TokenImpersonationLevel" :
366 (tokeninfoclass == TokenStatistics) ? "TokenStatistics" :
367 (tokeninfoclass == TokenRestrictedSids) ? "TokenRestrictedSids" :
368 (tokeninfoclass == TokenSessionId) ? "TokenSessionId" :
369 (tokeninfoclass == TokenGroupsAndPrivileges) ? "TokenGroupsAndPrivileges" :
370 (tokeninfoclass == TokenSessionReference) ? "TokenSessionReference" :
371 (tokeninfoclass == TokenSandBoxInert) ? "TokenSandBoxInert" :
373 tokeninfo, tokeninfolength);
375 return set_ntstatus( NtSetInformationToken( token, tokeninfoclass, tokeninfo, tokeninfolength ));
378 /*************************************************************************
379 * SetThreadToken [ADVAPI32.@]
381 * Assigns an 'impersonation token' to a thread so it can assume the
382 * security privileges of another thread or process. Can also remove
383 * a previously assigned token.
386 * thread [O] Handle to thread to set the token for
387 * token [I] Token to set
390 * Success: TRUE. The threads access token is set to token
394 * Only supported on NT or higher. On Win9X this function does nothing.
395 * See SetTokenInformation.
397 BOOL WINAPI SetThreadToken(PHANDLE thread, HANDLE token)
399 return set_ntstatus( NtSetInformationThread( thread ? *thread : GetCurrentThread(),
400 ThreadImpersonationToken, &token, sizeof token ));
403 /* ##############################
404 ###### SID FUNCTIONS ######
405 ##############################
408 /******************************************************************************
409 * AllocateAndInitializeSid [ADVAPI32.@]
412 * pIdentifierAuthority []
413 * nSubAuthorityCount []
425 AllocateAndInitializeSid( PSID_IDENTIFIER_AUTHORITY pIdentifierAuthority,
426 BYTE nSubAuthorityCount,
427 DWORD nSubAuthority0, DWORD nSubAuthority1,
428 DWORD nSubAuthority2, DWORD nSubAuthority3,
429 DWORD nSubAuthority4, DWORD nSubAuthority5,
430 DWORD nSubAuthority6, DWORD nSubAuthority7,
433 return set_ntstatus( RtlAllocateAndInitializeSid(
434 pIdentifierAuthority, nSubAuthorityCount,
435 nSubAuthority0, nSubAuthority1, nSubAuthority2, nSubAuthority3,
436 nSubAuthority4, nSubAuthority5, nSubAuthority6, nSubAuthority7,
440 /******************************************************************************
441 * FreeSid [ADVAPI32.@]
450 return NULL; /* is documented like this */
453 /******************************************************************************
454 * CopySid [ADVAPI32.@]
457 * nDestinationSidLength []
462 CopySid( DWORD nDestinationSidLength, PSID pDestinationSid, PSID pSourceSid )
464 return RtlCopySid(nDestinationSidLength, pDestinationSid, pSourceSid);
468 IsTokenRestricted( HANDLE TokenHandle )
470 FIXME("%p - stub\n", TokenHandle);
475 /******************************************************************************
476 * IsValidSid [ADVAPI32.@]
482 IsValidSid( PSID pSid )
484 return RtlValidSid( pSid );
487 /******************************************************************************
488 * EqualSid [ADVAPI32.@]
495 EqualSid( PSID pSid1, PSID pSid2 )
497 return RtlEqualSid( pSid1, pSid2 );
500 /******************************************************************************
501 * EqualPrefixSid [ADVAPI32.@]
503 BOOL WINAPI EqualPrefixSid (PSID pSid1, PSID pSid2)
505 return RtlEqualPrefixSid(pSid1, pSid2);
508 /******************************************************************************
509 * GetSidLengthRequired [ADVAPI32.@]
512 * nSubAuthorityCount []
515 GetSidLengthRequired( BYTE nSubAuthorityCount )
517 return RtlLengthRequiredSid(nSubAuthorityCount);
520 /******************************************************************************
521 * InitializeSid [ADVAPI32.@]
524 * pIdentifierAuthority []
529 PSID_IDENTIFIER_AUTHORITY pIdentifierAuthority,
530 BYTE nSubAuthorityCount)
532 return RtlInitializeSid(pSid, pIdentifierAuthority, nSubAuthorityCount);
536 GetEffectiveRightsFromAclA( PACL pacl, PTRUSTEEA pTrustee, PACCESS_MASK pAccessRights )
538 FIXME("%p %p %p - stub\n", pacl, pTrustee, pAccessRights);
544 GetEffectiveRightsFromAclW( PACL pacl, PTRUSTEEW pTrustee, PACCESS_MASK pAccessRights )
546 FIXME("%p %p %p - stub\n", pacl, pTrustee, pAccessRights);
551 /******************************************************************************
552 * GetSidIdentifierAuthority [ADVAPI32.@]
557 PSID_IDENTIFIER_AUTHORITY WINAPI
558 GetSidIdentifierAuthority( PSID pSid )
560 return RtlIdentifierAuthoritySid(pSid);
563 /******************************************************************************
564 * GetSidSubAuthority [ADVAPI32.@]
571 GetSidSubAuthority( PSID pSid, DWORD nSubAuthority )
573 return RtlSubAuthoritySid(pSid, nSubAuthority);
576 /******************************************************************************
577 * GetSidSubAuthorityCount [ADVAPI32.@]
583 GetSidSubAuthorityCount (PSID pSid)
585 return RtlSubAuthorityCountSid(pSid);
588 /******************************************************************************
589 * GetLengthSid [ADVAPI32.@]
595 GetLengthSid (PSID pSid)
597 return RtlLengthSid(pSid);
600 /* ##############################################
601 ###### SECURITY DESCRIPTOR FUNCTIONS ######
602 ##############################################
605 /******************************************************************************
606 * InitializeSecurityDescriptor [ADVAPI32.@]
613 InitializeSecurityDescriptor( PSECURITY_DESCRIPTOR pDescr, DWORD revision )
615 return set_ntstatus( RtlCreateSecurityDescriptor(pDescr, revision ));
619 /******************************************************************************
620 * MakeAbsoluteSD [ADVAPI32.@]
622 BOOL WINAPI MakeAbsoluteSD (
623 IN PSECURITY_DESCRIPTOR pSelfRelativeSecurityDescriptor,
624 OUT PSECURITY_DESCRIPTOR pAbsoluteSecurityDescriptor,
625 OUT LPDWORD lpdwAbsoluteSecurityDescriptorSize,
627 OUT LPDWORD lpdwDaclSize,
629 OUT LPDWORD lpdwSaclSize,
631 OUT LPDWORD lpdwOwnerSize,
632 OUT PSID pPrimaryGroup,
633 OUT LPDWORD lpdwPrimaryGroupSize)
635 return set_ntstatus( RtlSelfRelativeToAbsoluteSD(pSelfRelativeSecurityDescriptor,
636 pAbsoluteSecurityDescriptor,
637 lpdwAbsoluteSecurityDescriptorSize,
638 pDacl, lpdwDaclSize, pSacl, lpdwSaclSize,
639 pOwner, lpdwOwnerSize,
640 pPrimaryGroup, lpdwPrimaryGroupSize));
643 BOOL WINAPI GetKernelObjectSecurity(
645 SECURITY_INFORMATION RequestedInformation,
646 PSECURITY_DESCRIPTOR pSecurityDescriptor,
648 LPDWORD lpnLengthNeeded )
650 FIXME("%p 0x%08lx %p 0x%08lx %p - stub\n", Handle, RequestedInformation,
651 pSecurityDescriptor, nLength, lpnLengthNeeded);
656 BOOL WINAPI GetPrivateObjectSecurity(
657 PSECURITY_DESCRIPTOR ObjectDescriptor,
658 SECURITY_INFORMATION SecurityInformation,
659 PSECURITY_DESCRIPTOR ResultantDescriptor,
660 DWORD DescriptorLength,
661 PDWORD ReturnLength )
663 FIXME("%p 0x%08lx %p 0x%08lx %p - stub\n", ObjectDescriptor, SecurityInformation,
664 ResultantDescriptor, DescriptorLength, ReturnLength);
669 /******************************************************************************
670 * GetSecurityDescriptorLength [ADVAPI32.@]
672 DWORD WINAPI GetSecurityDescriptorLength( PSECURITY_DESCRIPTOR pDescr)
674 return RtlLengthSecurityDescriptor(pDescr);
677 /******************************************************************************
678 * GetSecurityDescriptorOwner [ADVAPI32.@]
682 * lpbOwnerDefaulted []
685 GetSecurityDescriptorOwner( PSECURITY_DESCRIPTOR pDescr, PSID *pOwner,
686 LPBOOL lpbOwnerDefaulted )
689 BOOL ret = set_ntstatus( RtlGetOwnerSecurityDescriptor( pDescr, pOwner, &defaulted ));
690 *lpbOwnerDefaulted = defaulted;
694 /******************************************************************************
695 * SetSecurityDescriptorOwner [ADVAPI32.@]
699 BOOL WINAPI SetSecurityDescriptorOwner( PSECURITY_DESCRIPTOR pSecurityDescriptor,
700 PSID pOwner, BOOL bOwnerDefaulted)
702 return set_ntstatus( RtlSetOwnerSecurityDescriptor(pSecurityDescriptor, pOwner, bOwnerDefaulted));
704 /******************************************************************************
705 * GetSecurityDescriptorGroup [ADVAPI32.@]
707 BOOL WINAPI GetSecurityDescriptorGroup(
708 PSECURITY_DESCRIPTOR SecurityDescriptor,
710 LPBOOL GroupDefaulted)
713 BOOL ret = set_ntstatus( RtlGetGroupSecurityDescriptor(SecurityDescriptor, Group, &defaulted ));
714 *GroupDefaulted = defaulted;
717 /******************************************************************************
718 * SetSecurityDescriptorGroup [ADVAPI32.@]
720 BOOL WINAPI SetSecurityDescriptorGroup ( PSECURITY_DESCRIPTOR SecurityDescriptor,
721 PSID Group, BOOL GroupDefaulted)
723 return set_ntstatus( RtlSetGroupSecurityDescriptor( SecurityDescriptor, Group, GroupDefaulted));
726 /******************************************************************************
727 * IsValidSecurityDescriptor [ADVAPI32.@]
733 IsValidSecurityDescriptor( PSECURITY_DESCRIPTOR SecurityDescriptor )
735 return set_ntstatus( RtlValidSecurityDescriptor(SecurityDescriptor));
738 /******************************************************************************
739 * GetSecurityDescriptorDacl [ADVAPI32.@]
741 BOOL WINAPI GetSecurityDescriptorDacl(
742 IN PSECURITY_DESCRIPTOR pSecurityDescriptor,
743 OUT LPBOOL lpbDaclPresent,
745 OUT LPBOOL lpbDaclDefaulted)
747 BOOLEAN present, defaulted;
748 BOOL ret = set_ntstatus( RtlGetDaclSecurityDescriptor(pSecurityDescriptor, &present, pDacl, &defaulted));
749 *lpbDaclPresent = present;
750 *lpbDaclDefaulted = defaulted;
754 /******************************************************************************
755 * SetSecurityDescriptorDacl [ADVAPI32.@]
758 SetSecurityDescriptorDacl (
759 PSECURITY_DESCRIPTOR lpsd,
764 return set_ntstatus( RtlSetDaclSecurityDescriptor (lpsd, daclpresent, dacl, dacldefaulted ) );
766 /******************************************************************************
767 * GetSecurityDescriptorSacl [ADVAPI32.@]
769 BOOL WINAPI GetSecurityDescriptorSacl(
770 IN PSECURITY_DESCRIPTOR lpsd,
771 OUT LPBOOL lpbSaclPresent,
773 OUT LPBOOL lpbSaclDefaulted)
775 BOOLEAN present, defaulted;
776 BOOL ret = set_ntstatus( RtlGetSaclSecurityDescriptor(lpsd, &present, pSacl, &defaulted) );
777 *lpbSaclPresent = present;
778 *lpbSaclDefaulted = defaulted;
782 /**************************************************************************
783 * SetSecurityDescriptorSacl [ADVAPI32.@]
785 BOOL WINAPI SetSecurityDescriptorSacl (
786 PSECURITY_DESCRIPTOR lpsd,
791 return set_ntstatus (RtlSetSaclSecurityDescriptor(lpsd, saclpresent, lpsacl, sacldefaulted));
793 /******************************************************************************
794 * MakeSelfRelativeSD [ADVAPI32.@]
803 IN PSECURITY_DESCRIPTOR pAbsoluteSecurityDescriptor,
804 IN PSECURITY_DESCRIPTOR pSelfRelativeSecurityDescriptor,
805 IN OUT LPDWORD lpdwBufferLength)
807 return set_ntstatus( RtlMakeSelfRelativeSD( pAbsoluteSecurityDescriptor,
808 pSelfRelativeSecurityDescriptor, lpdwBufferLength));
811 /******************************************************************************
812 * GetSecurityDescriptorControl [ADVAPI32.@]
815 BOOL WINAPI GetSecurityDescriptorControl ( PSECURITY_DESCRIPTOR pSecurityDescriptor,
816 PSECURITY_DESCRIPTOR_CONTROL pControl, LPDWORD lpdwRevision)
818 return set_ntstatus( RtlGetControlSecurityDescriptor(pSecurityDescriptor,pControl,lpdwRevision));
821 /* ##############################
822 ###### ACL FUNCTIONS ######
823 ##############################
826 /*************************************************************************
827 * InitializeAcl [ADVAPI32.@]
829 BOOL WINAPI InitializeAcl(PACL acl, DWORD size, DWORD rev)
831 return set_ntstatus( RtlCreateAcl(acl, size, rev));
834 BOOL WINAPI ImpersonateNamedPipeClient( HANDLE hNamedPipe )
836 FIXME("%p - stub\n", hNamedPipe);
841 /******************************************************************************
842 * AddAccessAllowedAce [ADVAPI32.@]
844 BOOL WINAPI AddAccessAllowedAce(
846 IN DWORD dwAceRevision,
850 return set_ntstatus(RtlAddAccessAllowedAce(pAcl, dwAceRevision, AccessMask, pSid));
853 /******************************************************************************
854 * AddAccessAllowedAceEx [ADVAPI32.@]
856 BOOL WINAPI AddAccessAllowedAceEx(
858 IN DWORD dwAceRevision,
863 return set_ntstatus(RtlAddAccessAllowedAceEx(pAcl, dwAceRevision, AceFlags, AccessMask, pSid));
866 /******************************************************************************
867 * AddAccessDeniedAce [ADVAPI32.@]
869 BOOL WINAPI AddAccessDeniedAce(
871 IN DWORD dwAceRevision,
875 return set_ntstatus(RtlAddAccessDeniedAce(pAcl, dwAceRevision, AccessMask, pSid));
878 /******************************************************************************
879 * AddAccessDeniedAceEx [ADVAPI32.@]
881 BOOL WINAPI AddAccessDeniedAceEx(
883 IN DWORD dwAceRevision,
888 return set_ntstatus(RtlAddAccessDeniedAceEx(pAcl, dwAceRevision, AceFlags, AccessMask, pSid));
891 /******************************************************************************
892 * AddAce [ADVAPI32.@]
896 IN DWORD dwAceRevision,
897 IN DWORD dwStartingAceIndex,
899 DWORD nAceListLength)
901 return set_ntstatus(RtlAddAce(pAcl, dwAceRevision, dwStartingAceIndex, pAceList, nAceListLength));
904 /******************************************************************************
905 * DeleteAce [ADVAPI32.@]
907 BOOL WINAPI DeleteAce(PACL pAcl, DWORD dwAceIndex)
909 return set_ntstatus(RtlDeleteAce(pAcl, dwAceIndex));
912 /******************************************************************************
913 * FindFirstFreeAce [ADVAPI32.@]
915 BOOL WINAPI FindFirstFreeAce(IN PACL pAcl, LPVOID * pAce)
917 return RtlFirstFreeAce(pAcl, (PACE_HEADER *)pAce);
920 /******************************************************************************
921 * GetAce [ADVAPI32.@]
923 BOOL WINAPI GetAce(PACL pAcl,DWORD dwAceIndex,LPVOID *pAce )
925 return set_ntstatus(RtlGetAce(pAcl, dwAceIndex, pAce));
928 /******************************************************************************
929 * GetAclInformation [ADVAPI32.@]
931 BOOL WINAPI GetAclInformation(
933 LPVOID pAclInformation,
934 DWORD nAclInformationLength,
935 ACL_INFORMATION_CLASS dwAclInformationClass)
937 return set_ntstatus(RtlQueryInformationAcl(pAcl, pAclInformation,
938 nAclInformationLength, dwAclInformationClass));
941 /******************************************************************************
942 * IsValidAcl [ADVAPI32.@]
944 BOOL WINAPI IsValidAcl(IN PACL pAcl)
946 return RtlValidAcl(pAcl);
949 /* ##############################
950 ###### MISC FUNCTIONS ######
951 ##############################
954 /******************************************************************************
955 * AllocateLocallyUniqueId [ADVAPI32.@]
960 BOOL WINAPI AllocateLocallyUniqueId( PLUID lpLuid )
962 return set_ntstatus(NtAllocateLocallyUniqueId(lpLuid));
965 static const WCHAR SE_CREATE_TOKEN_NAME_W[] =
966 { 'S','e','C','r','e','a','t','e','T','o','k','e','n','P','r','i','v','i','l','e','g','e',0 };
967 static const WCHAR SE_ASSIGNPRIMARYTOKEN_NAME_W[] =
968 { 'S','e','A','s','s','i','g','n','P','r','i','m','a','r','y','T','o','k','e','n','P','r','i','v','i','l','e','g','e',0 };
969 static const WCHAR SE_LOCK_MEMORY_NAME_W[] =
970 { 'S','e','L','o','c','k','M','e','m','o','r','y','P','r','i','v','i','l','e','g','e',0 };
971 static const WCHAR SE_INCREASE_QUOTA_NAME_W[] =
972 { 'S','e','I','n','c','r','e','a','s','e','Q','u','o','t','a','P','r','i','v','i','l','e','g','e',0 };
973 static const WCHAR SE_MACHINE_ACCOUNT_NAME_W[] =
974 { 'S','e','M','a','c','h','i','n','e','A','c','c','o','u','n','t','P','r','i','v','i','l','e','g','e',0 };
975 static const WCHAR SE_TCB_NAME_W[] =
976 { 'S','e','T','c','b','P','r','i','v','i','l','e','g','e',0 };
977 static const WCHAR SE_SECURITY_NAME_W[] =
978 { 'S','e','S','e','c','u','r','i','t','y','P','r','i','v','i','l','e','g','e',0 };
979 static const WCHAR SE_TAKE_OWNERSHIP_NAME_W[] =
980 { 'S','e','T','a','k','e','O','w','n','e','r','s','h','i','p','P','r','i','v','i','l','e','g','e',0 };
981 static const WCHAR SE_LOAD_DRIVER_NAME_W[] =
982 { 'S','e','L','o','a','d','D','r','i','v','e','r','P','r','i','v','i','l','e','g','e',0 };
983 static const WCHAR SE_SYSTEM_PROFILE_NAME_W[] =
984 { 'S','e','S','y','s','t','e','m','P','r','o','f','i','l','e','P','r','i','v','i','l','e','g','e',0 };
985 static const WCHAR SE_SYSTEMTIME_NAME_W[] =
986 { 'S','e','S','y','s','t','e','m','t','i','m','e','P','r','i','v','i','l','e','g','e',0 };
987 static const WCHAR SE_PROF_SINGLE_PROCESS_NAME_W[] =
988 { 'S','e','P','r','o','f','i','l','e','S','i','n','g','l','e','P','r','o','c','e','s','s','P','r','i','v','i','l','e','g','e',0 };
989 static const WCHAR SE_INC_BASE_PRIORITY_NAME_W[] =
990 { 'S','e','I','n','c','r','e','a','s','e','B','a','s','e','P','r','i','o','r','i','t','y','P','r','i','v','i','l','e','g','e',0 };
991 static const WCHAR SE_CREATE_PAGEFILE_NAME_W[] =
992 { 'S','e','C','r','e','a','t','e','P','a','g','e','f','i','l','e','P','r','i','v','i','l','e','g','e',0 };
993 static const WCHAR SE_CREATE_PERMANENT_NAME_W[] =
994 { 'S','e','C','r','e','a','t','e','P','e','r','m','a','n','e','n','t','P','r','i','v','i','l','e','g','e',0 };
995 static const WCHAR SE_BACKUP_NAME_W[] =
996 { 'S','e','B','a','c','k','u','p','P','r','i','v','i','l','e','g','e',0 };
997 static const WCHAR SE_RESTORE_NAME_W[] =
998 { 'S','e','R','e','s','t','o','r','e','P','r','i','v','i','l','e','g','e',0 };
999 static const WCHAR SE_SHUTDOWN_NAME_W[] =
1000 { 'S','e','S','h','u','t','d','o','w','n','P','r','i','v','i','l','e','g','e',0 };
1001 static const WCHAR SE_DEBUG_NAME_W[] =
1002 { 'S','e','D','e','b','u','g','P','r','i','v','i','l','e','g','e',0 };
1003 static const WCHAR SE_AUDIT_NAME_W[] =
1004 { 'S','e','A','u','d','i','t','P','r','i','v','i','l','e','g','e',0 };
1005 static const WCHAR SE_SYSTEM_ENVIRONMENT_NAME_W[] =
1006 { 'S','e','S','y','s','t','e','m','E','n','v','i','r','o','n','m','e','n','t','P','r','i','v','i','l','e','g','e',0 };
1007 static const WCHAR SE_CHANGE_NOTIFY_NAME_W[] =
1008 { 'S','e','C','h','a','n','g','e','N','o','t','i','f','y','P','r','i','v','i','l','e','g','e',0 };
1009 static const WCHAR SE_REMOTE_SHUTDOWN_NAME_W[] =
1010 { 'S','e','R','e','m','o','t','e','S','h','u','t','d','o','w','n','P','r','i','v','i','l','e','g','e',0 };
1011 static const WCHAR SE_UNDOCK_NAME_W[] =
1012 { 'S','e','U','n','d','o','c','k','P','r','i','v','i','l','e','g','e',0 };
1013 static const WCHAR SE_SYNC_AGENT_NAME_W[] =
1014 { 'S','e','S','y','n','c','A','g','e','n','t','P','r','i','v','i','l','e','g','e',0 };
1015 static const WCHAR SE_ENABLE_DELEGATION_NAME_W[] =
1016 { 'S','e','E','n','a','b','l','e','D','e','l','e','g','a','t','i','o','n','P','r','i','v','i','l','e','g','e',0 };
1017 static const WCHAR SE_MANAGE_VOLUME_NAME_W[] =
1018 { 'S','e','M','a','n','a','g','e','V','o','l','u','m','e','P','r','i','v','i','l','e','g','e',0 };
1019 static const WCHAR SE_IMPERSONATE_NAME_W[] =
1020 { 'S','e','I','m','p','e','r','s','o','n','a','t','e','P','r','i','v','i','l','e','g','e',0 };
1021 static const WCHAR SE_CREATE_GLOBAL_NAME_W[] =
1022 { 'S','e','C','r','e','a','t','e','G','l','o','b','a','l','P','r','i','v','i','l','e','g','e',0 };
1024 static const WCHAR * const WellKnownPrivNames[SE_MAX_WELL_KNOWN_PRIVILEGE + 1] =
1028 SE_CREATE_TOKEN_NAME_W,
1029 SE_ASSIGNPRIMARYTOKEN_NAME_W,
1030 SE_LOCK_MEMORY_NAME_W,
1031 SE_INCREASE_QUOTA_NAME_W,
1032 SE_MACHINE_ACCOUNT_NAME_W,
1035 SE_TAKE_OWNERSHIP_NAME_W,
1036 SE_LOAD_DRIVER_NAME_W,
1037 SE_SYSTEM_PROFILE_NAME_W,
1038 SE_SYSTEMTIME_NAME_W,
1039 SE_PROF_SINGLE_PROCESS_NAME_W,
1040 SE_INC_BASE_PRIORITY_NAME_W,
1041 SE_CREATE_PAGEFILE_NAME_W,
1042 SE_CREATE_PERMANENT_NAME_W,
1048 SE_SYSTEM_ENVIRONMENT_NAME_W,
1049 SE_CHANGE_NOTIFY_NAME_W,
1050 SE_REMOTE_SHUTDOWN_NAME_W,
1052 SE_SYNC_AGENT_NAME_W,
1053 SE_ENABLE_DELEGATION_NAME_W,
1054 SE_MANAGE_VOLUME_NAME_W,
1055 SE_IMPERSONATE_NAME_W,
1056 SE_CREATE_GLOBAL_NAME_W,
1059 /******************************************************************************
1060 * LookupPrivilegeValueW [ADVAPI32.@]
1062 * See LookupPrivilegeValueA.
1065 LookupPrivilegeValueW( LPCWSTR lpSystemName, LPCWSTR lpName, PLUID lpLuid )
1069 TRACE("%s,%s,%p\n",debugstr_w(lpSystemName), debugstr_w(lpName), lpLuid);
1071 if (!ADVAPI_IsLocalComputer(lpSystemName))
1073 SetLastError(RPC_S_SERVER_UNAVAILABLE);
1078 SetLastError(ERROR_NO_SUCH_PRIVILEGE);
1081 for( i=SE_MIN_WELL_KNOWN_PRIVILEGE; i<SE_MAX_WELL_KNOWN_PRIVILEGE; i++ )
1083 if( !WellKnownPrivNames[i] )
1085 if( strcmpiW( WellKnownPrivNames[i], lpName) )
1087 lpLuid->LowPart = i;
1088 lpLuid->HighPart = 0;
1089 TRACE( "%s -> %08lx-%08lx\n",debugstr_w( lpSystemName ),
1090 lpLuid->HighPart, lpLuid->LowPart );
1093 SetLastError(ERROR_NO_SUCH_PRIVILEGE);
1097 /******************************************************************************
1098 * LookupPrivilegeValueA [ADVAPI32.@]
1100 * Retrieves LUID used on a system to represent the privilege name.
1103 * lpSystemName [I] Name of the system
1104 * lpName [I] Name of the privilege
1105 * lpLuid [O] Destination for the resulting LUID
1108 * Success: TRUE. lpLuid contains the requested LUID.
1112 LookupPrivilegeValueA( LPCSTR lpSystemName, LPCSTR lpName, PLUID lpLuid )
1114 UNICODE_STRING lpSystemNameW;
1115 UNICODE_STRING lpNameW;
1118 RtlCreateUnicodeStringFromAsciiz(&lpSystemNameW, lpSystemName);
1119 RtlCreateUnicodeStringFromAsciiz(&lpNameW,lpName);
1120 ret = LookupPrivilegeValueW(lpSystemNameW.Buffer, lpNameW.Buffer, lpLuid);
1121 RtlFreeUnicodeString(&lpNameW);
1122 RtlFreeUnicodeString(&lpSystemNameW);
1126 BOOL WINAPI LookupPrivilegeDisplayNameA( LPCSTR lpSystemName, LPCSTR lpName, LPSTR lpDisplayName,
1127 LPDWORD cchDisplayName, LPDWORD lpLanguageId )
1129 FIXME("%s %s %s %p %p - stub\n", debugstr_a(lpSystemName), debugstr_a(lpName),
1130 debugstr_a(lpDisplayName), cchDisplayName, lpLanguageId);
1135 BOOL WINAPI LookupPrivilegeDisplayNameW( LPCWSTR lpSystemName, LPCWSTR lpName, LPWSTR lpDisplayName,
1136 LPDWORD cchDisplayName, LPDWORD lpLanguageId )
1138 FIXME("%s %s %s %p %p - stub\n", debugstr_w(lpSystemName), debugstr_w(lpName),
1139 debugstr_w(lpDisplayName), cchDisplayName, lpLanguageId);
1144 /******************************************************************************
1145 * LookupPrivilegeNameA [ADVAPI32.@]
1147 * See LookupPrivilegeNameW
1150 LookupPrivilegeNameA( LPCSTR lpSystemName, PLUID lpLuid, LPSTR lpName,
1153 UNICODE_STRING lpSystemNameW;
1157 TRACE("%s %p %p %p\n", debugstr_a(lpSystemName), lpLuid, lpName, cchName);
1159 RtlCreateUnicodeStringFromAsciiz(&lpSystemNameW, lpSystemName);
1160 ret = LookupPrivilegeNameW(lpSystemNameW.Buffer, lpLuid, NULL, &wLen);
1161 if (!ret && GetLastError() == ERROR_INSUFFICIENT_BUFFER)
1163 LPWSTR lpNameW = HeapAlloc(GetProcessHeap(), 0, wLen * sizeof(WCHAR));
1165 ret = LookupPrivilegeNameW(lpSystemNameW.Buffer, lpLuid, lpNameW,
1169 /* Windows crashes if cchName is NULL, so will I */
1170 int len = WideCharToMultiByte(CP_ACP, 0, lpNameW, -1, lpName,
1171 *cchName, NULL, NULL);
1175 /* WideCharToMultiByte failed */
1178 else if (len > *cchName)
1181 SetLastError(ERROR_INSUFFICIENT_BUFFER);
1186 /* WideCharToMultiByte succeeded, output length needs to be
1187 * length not including NULL terminator
1192 HeapFree(GetProcessHeap(), 0, lpNameW);
1194 RtlFreeUnicodeString(&lpSystemNameW);
1198 /******************************************************************************
1199 * LookupPrivilegeNameW [ADVAPI32.@]
1201 * Retrieves the privilege name referred to by the LUID lpLuid.
1204 * lpSystemName [I] Name of the system
1205 * lpLuid [I] Privilege value
1206 * lpName [O] Name of the privilege
1207 * cchName [I/O] Number of characters in lpName.
1210 * Success: TRUE. lpName contains the name of the privilege whose value is
1215 * Only well-known privilege names (those defined in winnt.h) can be retrieved
1216 * using this function.
1217 * If the length of lpName is too small, on return *cchName will contain the
1218 * number of WCHARs needed to contain the privilege, including the NULL
1219 * terminator, and GetLastError will return ERROR_INSUFFICIENT_BUFFER.
1220 * On success, *cchName will contain the number of characters stored in
1221 * lpName, NOT including the NULL terminator.
1224 LookupPrivilegeNameW( LPCWSTR lpSystemName, PLUID lpLuid, LPWSTR lpName,
1229 TRACE("%s,%p,%p,%p\n",debugstr_w(lpSystemName), lpLuid, lpName, cchName);
1231 if (!ADVAPI_IsLocalComputer(lpSystemName))
1233 SetLastError(RPC_S_SERVER_UNAVAILABLE);
1236 if (lpLuid->HighPart || (lpLuid->LowPart < SE_MIN_WELL_KNOWN_PRIVILEGE ||
1237 lpLuid->LowPart > SE_MAX_WELL_KNOWN_PRIVILEGE))
1239 SetLastError(ERROR_NO_SUCH_PRIVILEGE);
1242 privNameLen = strlenW(WellKnownPrivNames[lpLuid->LowPart]);
1243 /* Windows crashes if cchName is NULL, so will I */
1244 if (*cchName <= privNameLen)
1246 *cchName = privNameLen + 1;
1247 SetLastError(ERROR_INSUFFICIENT_BUFFER);
1252 strcpyW(lpName, WellKnownPrivNames[lpLuid->LowPart]);
1253 *cchName = privNameLen;
1258 /******************************************************************************
1259 * GetFileSecurityA [ADVAPI32.@]
1261 * Obtains Specified information about the security of a file or directory.
1264 * lpFileName [I] Name of the file to get info for
1265 * RequestedInformation [I] SE_ flags from "winnt.h"
1266 * pSecurityDescriptor [O] Destination for security information
1267 * nLength [I] Length of pSecurityDescriptor
1268 * lpnLengthNeeded [O] Destination for length of returned security information
1271 * Success: TRUE. pSecurityDescriptor contains the requested information.
1272 * Failure: FALSE. lpnLengthNeeded contains the required space to return the info.
1275 * The information returned is constrained by the callers access rights and
1279 GetFileSecurityA( LPCSTR lpFileName,
1280 SECURITY_INFORMATION RequestedInformation,
1281 PSECURITY_DESCRIPTOR pSecurityDescriptor,
1282 DWORD nLength, LPDWORD lpnLengthNeeded )
1290 len = MultiByteToWideChar( CP_ACP, 0, lpFileName, -1, NULL, 0 );
1291 name = HeapAlloc( GetProcessHeap(), 0, len*sizeof(WCHAR) );
1292 MultiByteToWideChar( CP_ACP, 0, lpFileName, -1, name, len );
1295 r = GetFileSecurityW( name, RequestedInformation, pSecurityDescriptor,
1296 nLength, lpnLengthNeeded );
1297 HeapFree( GetProcessHeap(), 0, name );
1302 /******************************************************************************
1303 * GetFileSecurityW [ADVAPI32.@]
1305 * See GetFileSecurityA.
1308 GetFileSecurityW( LPCWSTR lpFileName,
1309 SECURITY_INFORMATION RequestedInformation,
1310 PSECURITY_DESCRIPTOR pSecurityDescriptor,
1311 DWORD nLength, LPDWORD lpnLengthNeeded )
1316 SECURITY_DESCRIPTOR_RELATIVE *pSDRelative;
1318 if(INVALID_FILE_ATTRIBUTES == GetFileAttributesW(lpFileName))
1321 FIXME("(%s) : returns fake SECURITY_DESCRIPTOR\n", debugstr_w(lpFileName) );
1323 nNeeded = sizeof(SECURITY_DESCRIPTOR_RELATIVE);
1324 if (RequestedInformation & OWNER_SECURITY_INFORMATION)
1325 nNeeded += sizeof(sidWorld);
1326 if (RequestedInformation & GROUP_SECURITY_INFORMATION)
1327 nNeeded += sizeof(sidWorld);
1328 if (RequestedInformation & DACL_SECURITY_INFORMATION)
1329 nNeeded += WINE_SIZE_OF_WORLD_ACCESS_ACL;
1330 if (RequestedInformation & SACL_SECURITY_INFORMATION)
1331 nNeeded += WINE_SIZE_OF_WORLD_ACCESS_ACL;
1333 *lpnLengthNeeded = nNeeded;
1335 if (nNeeded > nLength)
1338 if (!InitializeSecurityDescriptor(pSecurityDescriptor, SECURITY_DESCRIPTOR_REVISION))
1341 pSDRelative = (PISECURITY_DESCRIPTOR_RELATIVE) pSecurityDescriptor;
1342 pSDRelative->Control |= SE_SELF_RELATIVE;
1343 pBuffer = (LPBYTE) pSDRelative;
1344 iLocNow = sizeof(SECURITY_DESCRIPTOR_RELATIVE);
1346 if (RequestedInformation & OWNER_SECURITY_INFORMATION)
1348 memcpy(pBuffer + iLocNow, &sidWorld, sizeof(sidWorld));
1349 pSDRelative->Owner = iLocNow;
1350 iLocNow += sizeof(sidWorld);
1352 if (RequestedInformation & GROUP_SECURITY_INFORMATION)
1354 memcpy(pBuffer + iLocNow, &sidWorld, sizeof(sidWorld));
1355 pSDRelative->Group = iLocNow;
1356 iLocNow += sizeof(sidWorld);
1358 if (RequestedInformation & DACL_SECURITY_INFORMATION)
1360 GetWorldAccessACL((PACL) (pBuffer + iLocNow));
1361 pSDRelative->Dacl = iLocNow;
1362 iLocNow += WINE_SIZE_OF_WORLD_ACCESS_ACL;
1364 if (RequestedInformation & SACL_SECURITY_INFORMATION)
1366 GetWorldAccessACL((PACL) (pBuffer + iLocNow));
1367 pSDRelative->Sacl = iLocNow;
1368 /* iLocNow += WINE_SIZE_OF_WORLD_ACCESS_ACL; */
1374 /******************************************************************************
1375 * LookupAccountSidA [ADVAPI32.@]
1382 IN OUT LPDWORD accountSize,
1384 IN OUT LPDWORD domainSize,
1385 OUT PSID_NAME_USE name_use )
1387 static const char ac[] = "Administrator";
1388 static const char dm[] = "DOMAIN";
1389 FIXME("(%s,sid=%p,%p,%p(%lu),%p,%p(%lu),%p): semi-stub\n",
1390 debugstr_a(system),sid,
1391 account,accountSize,accountSize?*accountSize:0,
1392 domain,domainSize,domainSize?*domainSize:0,
1395 if (accountSize) *accountSize = strlen(ac)+1;
1396 if (account && (*accountSize > strlen(ac)))
1397 strcpy(account, ac);
1399 if (domainSize) *domainSize = strlen(dm)+1;
1400 if (domain && (*domainSize > strlen(dm)))
1403 if (name_use) *name_use = SidTypeUser;
1407 /******************************************************************************
1408 * LookupAccountSidW [ADVAPI32.@]
1424 IN OUT LPDWORD accountSize,
1426 IN OUT LPDWORD domainSize,
1427 OUT PSID_NAME_USE name_use )
1429 static const WCHAR ac[] = {'A','d','m','i','n','i','s','t','r','a','t','o','r',0};
1430 static const WCHAR dm[] = {'D','O','M','A','I','N',0};
1431 FIXME("(%s,sid=%p,%p,%p(%lu),%p,%p(%lu),%p): semi-stub\n",
1432 debugstr_w(system),sid,
1433 account,accountSize,accountSize?*accountSize:0,
1434 domain,domainSize,domainSize?*domainSize:0,
1437 if (accountSize) *accountSize = strlenW(ac)+1;
1438 if (account && (*accountSize > strlenW(ac)))
1439 strcpyW(account, ac);
1441 if (domainSize) *domainSize = strlenW(dm)+1;
1442 if (domain && (*domainSize > strlenW(dm)))
1445 if (name_use) *name_use = SidTypeUser;
1449 /******************************************************************************
1450 * SetFileSecurityA [ADVAPI32.@]
1451 * Sets the security of a file or directory
1453 BOOL WINAPI SetFileSecurityA( LPCSTR lpFileName,
1454 SECURITY_INFORMATION RequestedInformation,
1455 PSECURITY_DESCRIPTOR pSecurityDescriptor)
1463 len = MultiByteToWideChar( CP_ACP, 0, lpFileName, -1, NULL, 0 );
1464 name = HeapAlloc( GetProcessHeap(), 0, len*sizeof(WCHAR) );
1465 MultiByteToWideChar( CP_ACP, 0, lpFileName, -1, name, len );
1468 r = SetFileSecurityW( name, RequestedInformation, pSecurityDescriptor );
1469 HeapFree( GetProcessHeap(), 0, name );
1474 /******************************************************************************
1475 * SetFileSecurityW [ADVAPI32.@]
1476 * Sets the security of a file or directory
1480 * RequestedInformation []
1481 * pSecurityDescriptor []
1484 SetFileSecurityW( LPCWSTR lpFileName,
1485 SECURITY_INFORMATION RequestedInformation,
1486 PSECURITY_DESCRIPTOR pSecurityDescriptor )
1488 FIXME("(%s) : stub\n", debugstr_w(lpFileName) );
1492 /******************************************************************************
1493 * QueryWindows31FilesMigration [ADVAPI32.@]
1499 QueryWindows31FilesMigration( DWORD x1 )
1501 FIXME("(%ld):stub\n",x1);
1505 /******************************************************************************
1506 * SynchronizeWindows31FilesAndWindowsNTRegistry [ADVAPI32.@]
1515 SynchronizeWindows31FilesAndWindowsNTRegistry( DWORD x1, DWORD x2, DWORD x3,
1518 FIXME("(0x%08lx,0x%08lx,0x%08lx,0x%08lx):stub\n",x1,x2,x3,x4);
1523 LsaEnumerateTrustedDomains(
1524 LSA_HANDLE PolicyHandle,
1525 PLSA_ENUMERATION_HANDLE EnumerationContext,
1527 ULONG PreferedMaximumLength,
1528 PULONG CountReturned)
1530 FIXME("(%p,%p,%p,0x%08lx,%p):stub\n", PolicyHandle, EnumerationContext,
1531 Buffer, PreferedMaximumLength, CountReturned);
1533 if (CountReturned) *CountReturned = 0;
1534 return STATUS_SUCCESS;
1539 LSA_HANDLE PolicyHandle,
1541 PLSA_UNICODE_STRING Names,
1542 PLSA_REFERENCED_DOMAIN_LIST* ReferencedDomains,
1543 PLSA_TRANSLATED_SID* Sids)
1545 FIXME("(%p,0x%08lx,%p,%p,%p):stub\n", PolicyHandle, Count, Names,
1546 ReferencedDomains, Sids);
1548 return STATUS_NONE_MAPPED;
1551 /******************************************************************************
1552 * LsaOpenPolicy [ADVAPI32.@]
1556 * ObjectAttributes [I]
1558 * PolicyHandle [I/O]
1562 IN PLSA_UNICODE_STRING SystemName,
1563 IN PLSA_OBJECT_ATTRIBUTES ObjectAttributes,
1564 IN ACCESS_MASK DesiredAccess,
1565 IN OUT PLSA_HANDLE PolicyHandle)
1567 FIXME("(%s,%p,0x%08lx,%p):stub\n",
1568 SystemName?debugstr_w(SystemName->Buffer):"null",
1569 ObjectAttributes, DesiredAccess, PolicyHandle);
1570 ADVAPI_ForceLocalComputer(SystemName ? SystemName->Buffer : NULL,
1571 STATUS_ACCESS_VIOLATION);
1572 dumpLsaAttributes(ObjectAttributes);
1573 if(PolicyHandle) *PolicyHandle = (LSA_HANDLE)0xcafe;
1574 return STATUS_SUCCESS;
1577 /******************************************************************************
1578 * LsaQueryInformationPolicy [ADVAPI32.@]
1581 LsaQueryInformationPolicy(
1582 IN LSA_HANDLE PolicyHandle,
1583 IN POLICY_INFORMATION_CLASS InformationClass,
1586 FIXME("(%p,0x%08x,%p):stub\n",
1587 PolicyHandle, InformationClass, Buffer);
1589 if(!Buffer) return FALSE;
1590 switch (InformationClass)
1592 case PolicyAuditEventsInformation: /* 2 */
1594 PPOLICY_AUDIT_EVENTS_INFO p = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(POLICY_AUDIT_EVENTS_INFO));
1595 p->AuditingMode = FALSE; /* no auditing */
1599 case PolicyPrimaryDomainInformation: /* 3 */
1600 case PolicyAccountDomainInformation: /* 5 */
1603 { POLICY_PRIMARY_DOMAIN_INFO ppdi;
1606 SID_IDENTIFIER_AUTHORITY localSidAuthority = {SECURITY_NT_AUTHORITY};
1608 struct di * xdi = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(xdi));
1610 BOOL useDefault = TRUE;
1613 if ((ret = RegOpenKeyExA(HKEY_LOCAL_MACHINE,
1614 "System\\CurrentControlSet\\Services\\VxD\\VNETSUP", 0,
1615 KEY_READ, &key)) == ERROR_SUCCESS)
1618 static const WCHAR wg[] = { 'W','o','r','k','g','r','o','u','p',0 };
1620 ret = RegQueryValueExW(key, wg, NULL, NULL, NULL, &size);
1621 if (ret == ERROR_MORE_DATA || ret == ERROR_SUCCESS)
1623 xdi->ppdi.Name.Buffer = HeapAlloc(GetProcessHeap(),
1624 HEAP_ZERO_MEMORY, size);
1625 if ((ret = RegQueryValueExW(key, wg, NULL, NULL,
1626 (LPBYTE)xdi->ppdi.Name.Buffer, &size)) == ERROR_SUCCESS)
1628 xdi->ppdi.Name.Length = (USHORT)size;
1633 HeapFree(GetProcessHeap(), 0, xdi->ppdi.Name.Buffer);
1634 xdi->ppdi.Name.Buffer = NULL;
1640 RtlCreateUnicodeStringFromAsciiz(&(xdi->ppdi.Name), "DOMAIN");
1641 TRACE("setting domain to %s\n", debugstr_w(xdi->ppdi.Name.Buffer));
1643 xdi->ppdi.Sid = &(xdi->sid);
1644 xdi->sid.Revision = SID_REVISION;
1645 xdi->sid.SubAuthorityCount = 1;
1646 xdi->sid.IdentifierAuthority = localSidAuthority;
1647 xdi->sid.SubAuthority[0] = SECURITY_LOCAL_SYSTEM_RID;
1651 case PolicyAuditLogInformation:
1652 case PolicyPdAccountInformation:
1653 case PolicyLsaServerRoleInformation:
1654 case PolicyReplicaSourceInformation:
1655 case PolicyDefaultQuotaInformation:
1656 case PolicyModificationInformation:
1657 case PolicyAuditFullSetInformation:
1658 case PolicyAuditFullQueryInformation:
1659 case PolicyDnsDomainInformation:
1661 FIXME("category not implemented\n");
1668 /******************************************************************************
1669 * LsaSetInformationPolicy [ADVAPI32.@]
1672 LsaSetInformationPolicy(
1673 LSA_HANDLE PolicyHandle,
1674 POLICY_INFORMATION_CLASS InformationClass,
1677 FIXME("(%p,0x%08x,%p):stub\n", PolicyHandle, InformationClass, Buffer);
1679 return STATUS_UNSUCCESSFUL;
1682 /******************************************************************************
1683 * LsaLookupSids [ADVAPI32.@]
1687 IN LSA_HANDLE PolicyHandle,
1690 OUT PLSA_REFERENCED_DOMAIN_LIST *ReferencedDomains,
1691 OUT PLSA_TRANSLATED_NAME *Names )
1693 FIXME("%p %lu %p %p %p\n",
1694 PolicyHandle, Count, Sids, ReferencedDomains, Names);
1698 /******************************************************************************
1699 * LsaFreeMemory [ADVAPI32.@]
1702 LsaFreeMemory(IN PVOID Buffer)
1704 TRACE("(%p)\n",Buffer);
1705 return HeapFree(GetProcessHeap(), 0, Buffer);
1707 /******************************************************************************
1708 * LsaClose [ADVAPI32.@]
1711 LsaClose(IN LSA_HANDLE ObjectHandle)
1713 FIXME("(%p):stub\n",ObjectHandle);
1717 /******************************************************************************
1718 * LsaStorePrivateData [ADVAPI32.@]
1720 NTSTATUS WINAPI LsaStorePrivateData( LSA_HANDLE PolicyHandle,
1721 PLSA_UNICODE_STRING KeyName, PLSA_UNICODE_STRING PrivateData)
1723 FIXME("%p %p %p\n", PolicyHandle, KeyName, PrivateData);
1724 return STATUS_OBJECT_NAME_NOT_FOUND;
1727 /******************************************************************************
1728 * LsaRetrievePrivateData [ADVAPI32.@]
1730 NTSTATUS WINAPI LsaRetrievePrivateData( LSA_HANDLE PolicyHandle,
1731 PLSA_UNICODE_STRING KeyName, PLSA_UNICODE_STRING* PrivateData)
1733 FIXME("%p %p %p\n", PolicyHandle, KeyName, PrivateData);
1734 return STATUS_OBJECT_NAME_NOT_FOUND;
1737 /******************************************************************************
1738 * LsaNtStatusToWinError [ADVAPI32.@]
1744 LsaNtStatusToWinError(NTSTATUS Status)
1746 return RtlNtStatusToDosError(Status);
1749 /******************************************************************************
1750 * NotifyBootConfigStatus [ADVAPI32.@]
1756 NotifyBootConfigStatus( DWORD x1 )
1758 FIXME("(0x%08lx):stub\n",x1);
1762 /******************************************************************************
1763 * RevertToSelf [ADVAPI32.@]
1769 RevertToSelf( void )
1771 FIXME("(), stub\n");
1775 /******************************************************************************
1776 * ImpersonateSelf [ADVAPI32.@]
1779 ImpersonateSelf(SECURITY_IMPERSONATION_LEVEL ImpersonationLevel)
1781 return RtlImpersonateSelf(ImpersonationLevel);
1784 /******************************************************************************
1785 * ImpersonateLoggedOnUser [ADVAPI32.@]
1787 BOOL WINAPI ImpersonateLoggedOnUser(HANDLE hToken)
1789 FIXME("(%p):stub returning FALSE\n", hToken);
1793 /******************************************************************************
1794 * AccessCheck [ADVAPI32.@]
1798 PSECURITY_DESCRIPTOR SecurityDescriptor,
1800 DWORD DesiredAccess,
1801 PGENERIC_MAPPING GenericMapping,
1802 PPRIVILEGE_SET PrivilegeSet,
1803 LPDWORD PrivilegeSetLength,
1804 LPDWORD GrantedAccess,
1805 LPBOOL AccessStatus)
1807 NTSTATUS access_status;
1808 BOOL ret = set_ntstatus( NtAccessCheck(SecurityDescriptor, ClientToken, DesiredAccess,
1809 GenericMapping, PrivilegeSet, PrivilegeSetLength,
1810 GrantedAccess, &access_status) );
1811 if (ret) *AccessStatus = set_ntstatus( access_status );
1816 /******************************************************************************
1817 * AccessCheckByType [ADVAPI32.@]
1819 BOOL WINAPI AccessCheckByType(
1820 PSECURITY_DESCRIPTOR pSecurityDescriptor,
1821 PSID PrincipalSelfSid,
1823 DWORD DesiredAccess,
1824 POBJECT_TYPE_LIST ObjectTypeList,
1825 DWORD ObjectTypeListLength,
1826 PGENERIC_MAPPING GenericMapping,
1827 PPRIVILEGE_SET PrivilegeSet,
1828 LPDWORD PrivilegeSetLength,
1829 LPDWORD GrantedAccess,
1830 LPBOOL AccessStatus)
1834 *AccessStatus = TRUE;
1836 return !*AccessStatus;
1839 VOID WINAPI MapGenericMask( PDWORD AccessMask, PGENERIC_MAPPING GenericMapping )
1841 FIXME("%p %p - stub\n", AccessMask, GenericMapping);
1843 *AccessMask |= GenericMapping->GenericRead;
1844 *AccessMask |= GenericMapping->GenericWrite;
1845 *AccessMask |= GenericMapping->GenericExecute;
1846 *AccessMask |= GenericMapping->GenericAll;
1849 /*************************************************************************
1850 * SetKernelObjectSecurity [ADVAPI32.@]
1852 BOOL WINAPI SetKernelObjectSecurity (
1854 IN SECURITY_INFORMATION SecurityInformation,
1855 IN PSECURITY_DESCRIPTOR SecurityDescriptor )
1857 return set_ntstatus (NtSetSecurityObject (Handle, SecurityInformation, SecurityDescriptor));
1861 /******************************************************************************
1862 * AddAuditAccessAce [ADVAPI32.@]
1864 BOOL WINAPI AddAuditAccessAce(
1866 IN DWORD dwAceRevision,
1867 IN DWORD dwAccessMask,
1869 IN BOOL bAuditSuccess,
1870 IN BOOL bAuditFailure)
1876 /******************************************************************************
1877 * LookupAccountNameA [ADVAPI32.@]
1885 LPSTR ReferencedDomainName,
1886 IN OUT LPDWORD cbReferencedDomainName,
1887 OUT PSID_NAME_USE name_use )
1889 /* Default implementation: Always return a default SID */
1890 SID_IDENTIFIER_AUTHORITY identifierAuthority = {SECURITY_NT_AUTHORITY};
1893 static const char dm[] = "DOMAIN";
1895 FIXME("(%s,%s,%p,%p,%p,%p,%p), stub.\n",system,account,sid,cbSid,ReferencedDomainName,cbReferencedDomainName,name_use);
1897 ret = AllocateAndInitializeSid(&identifierAuthority,
1899 SECURITY_BUILTIN_DOMAIN_RID,
1900 DOMAIN_ALIAS_RID_ADMINS,
1906 if(!RtlValidSid(pSid))
1912 if (sid != NULL && (*cbSid >= GetLengthSid(pSid)))
1913 CopySid(*cbSid, sid, pSid);
1914 if (*cbSid < GetLengthSid(pSid))
1916 SetLastError(ERROR_INSUFFICIENT_BUFFER);
1919 *cbSid = GetLengthSid(pSid);
1921 if (ReferencedDomainName != NULL && (*cbReferencedDomainName > strlen(dm)))
1922 strcpy(ReferencedDomainName, dm);
1923 if (*cbReferencedDomainName <= strlen(dm))
1925 SetLastError(ERROR_INSUFFICIENT_BUFFER);
1928 *cbReferencedDomainName = strlen(dm)+1;
1935 /******************************************************************************
1936 * LookupAccountNameW [ADVAPI32.@]
1938 BOOL WINAPI LookupAccountNameW( LPCWSTR lpSystemName, LPCWSTR lpAccountName, PSID Sid,
1939 LPDWORD cbSid, LPWSTR ReferencedDomainName,
1940 LPDWORD cchReferencedDomainName, PSID_NAME_USE peUse )
1942 FIXME("%s %s %p %p %p %p %p - stub\n", debugstr_w(lpSystemName), debugstr_w(lpAccountName),
1943 Sid, cbSid, ReferencedDomainName, cchReferencedDomainName, peUse);
1948 /******************************************************************************
1949 * PrivilegeCheck [ADVAPI32.@]
1951 BOOL WINAPI PrivilegeCheck( HANDLE ClientToken, PPRIVILEGE_SET RequiredPrivileges, LPBOOL pfResult)
1956 TRACE("%p %p %p\n", ClientToken, RequiredPrivileges, pfResult);
1958 ret = set_ntstatus (NtPrivilegeCheck (ClientToken, RequiredPrivileges, &Result));
1964 /******************************************************************************
1965 * AccessCheckAndAuditAlarmA [ADVAPI32.@]
1967 BOOL WINAPI AccessCheckAndAuditAlarmA(LPCSTR Subsystem, LPVOID HandleId, LPSTR ObjectTypeName,
1968 LPSTR ObjectName, PSECURITY_DESCRIPTOR SecurityDescriptor, DWORD DesiredAccess,
1969 PGENERIC_MAPPING GenericMapping, BOOL ObjectCreation, LPDWORD GrantedAccess,
1970 LPBOOL AccessStatus, LPBOOL pfGenerateOnClose)
1972 FIXME("stub (%s,%p,%s,%s,%p,%08lx,%p,%x,%p,%p,%p)\n", debugstr_a(Subsystem),
1973 HandleId, debugstr_a(ObjectTypeName), debugstr_a(ObjectName),
1974 SecurityDescriptor, DesiredAccess, GenericMapping,
1975 ObjectCreation, GrantedAccess, AccessStatus, pfGenerateOnClose);
1979 /******************************************************************************
1980 * AccessCheckAndAuditAlarmW [ADVAPI32.@]
1982 BOOL WINAPI AccessCheckAndAuditAlarmW(LPCWSTR Subsystem, LPVOID HandleId, LPWSTR ObjectTypeName,
1983 LPWSTR ObjectName, PSECURITY_DESCRIPTOR SecurityDescriptor, DWORD DesiredAccess,
1984 PGENERIC_MAPPING GenericMapping, BOOL ObjectCreation, LPDWORD GrantedAccess,
1985 LPBOOL AccessStatus, LPBOOL pfGenerateOnClose)
1987 FIXME("stub (%s,%p,%s,%s,%p,%08lx,%p,%x,%p,%p,%p)\n", debugstr_w(Subsystem),
1988 HandleId, debugstr_w(ObjectTypeName), debugstr_w(ObjectName),
1989 SecurityDescriptor, DesiredAccess, GenericMapping,
1990 ObjectCreation, GrantedAccess, AccessStatus, pfGenerateOnClose);
1994 BOOL WINAPI ObjectCloseAuditAlarmA(LPCSTR SubsystemName, LPVOID HandleId, BOOL GenerateOnClose)
1996 FIXME("stub (%s,%p,%x)\n", debugstr_a(SubsystemName), HandleId, GenerateOnClose);
2001 BOOL WINAPI ObjectCloseAuditAlarmW(LPCWSTR SubsystemName, LPVOID HandleId, BOOL GenerateOnClose)
2003 FIXME("stub (%s,%p,%x)\n", debugstr_w(SubsystemName), HandleId, GenerateOnClose);
2008 BOOL WINAPI ObjectOpenAuditAlarmA(LPCSTR SubsystemName, LPVOID HandleId, LPSTR ObjectTypeName,
2009 LPSTR ObjectName, PSECURITY_DESCRIPTOR pSecurityDescriptor, HANDLE ClientToken, DWORD DesiredAccess,
2010 DWORD GrantedAccess, PPRIVILEGE_SET Privileges, BOOL ObjectCreation, BOOL AccessGranted,
2011 LPBOOL GenerateOnClose)
2013 FIXME("stub (%s,%p,%s,%s,%p,%p,0x%08lx,0x%08lx,%p,%x,%x,%p)\n", debugstr_a(SubsystemName),
2014 HandleId, debugstr_a(ObjectTypeName), debugstr_a(ObjectName), pSecurityDescriptor,
2015 ClientToken, DesiredAccess, GrantedAccess, Privileges, ObjectCreation, AccessGranted,
2021 BOOL WINAPI ObjectOpenAuditAlarmW(LPCWSTR SubsystemName, LPVOID HandleId, LPWSTR ObjectTypeName,
2022 LPWSTR ObjectName, PSECURITY_DESCRIPTOR pSecurityDescriptor, HANDLE ClientToken, DWORD DesiredAccess,
2023 DWORD GrantedAccess, PPRIVILEGE_SET Privileges, BOOL ObjectCreation, BOOL AccessGranted,
2024 LPBOOL GenerateOnClose)
2026 FIXME("stub (%s,%p,%s,%s,%p,%p,0x%08lx,0x%08lx,%p,%x,%x,%p)\n", debugstr_w(SubsystemName),
2027 HandleId, debugstr_w(ObjectTypeName), debugstr_w(ObjectName), pSecurityDescriptor,
2028 ClientToken, DesiredAccess, GrantedAccess, Privileges, ObjectCreation, AccessGranted,
2034 BOOL WINAPI ObjectPrivilegeAuditAlarmA( LPCSTR SubsystemName, LPVOID HandleId, HANDLE ClientToken,
2035 DWORD DesiredAccess, PPRIVILEGE_SET Privileges, BOOL AccessGranted)
2037 FIXME("stub (%s,%p,%p,0x%08lx,%p,%x)\n", debugstr_a(SubsystemName), HandleId, ClientToken,
2038 DesiredAccess, Privileges, AccessGranted);
2043 BOOL WINAPI ObjectPrivilegeAuditAlarmW( LPCWSTR SubsystemName, LPVOID HandleId, HANDLE ClientToken,
2044 DWORD DesiredAccess, PPRIVILEGE_SET Privileges, BOOL AccessGranted)
2046 FIXME("stub (%s,%p,%p,0x%08lx,%p,%x)\n", debugstr_w(SubsystemName), HandleId, ClientToken,
2047 DesiredAccess, Privileges, AccessGranted);
2052 BOOL WINAPI PrivilegedServiceAuditAlarmA( LPCSTR SubsystemName, LPCSTR ServiceName, HANDLE ClientToken,
2053 PPRIVILEGE_SET Privileges, BOOL AccessGranted)
2055 FIXME("stub (%s,%s,%p,%p,%x)\n", debugstr_a(SubsystemName), debugstr_a(ServiceName),
2056 ClientToken, Privileges, AccessGranted);
2061 BOOL WINAPI PrivilegedServiceAuditAlarmW( LPCWSTR SubsystemName, LPCWSTR ServiceName, HANDLE ClientToken,
2062 PPRIVILEGE_SET Privileges, BOOL AccessGranted)
2064 FIXME("stub %s,%s,%p,%p,%x)\n", debugstr_w(SubsystemName), debugstr_w(ServiceName),
2065 ClientToken, Privileges, AccessGranted);
2070 /******************************************************************************
2071 * GetSecurityInfo [ADVAPI32.@]
2073 DWORD WINAPI GetSecurityInfo(
2074 HANDLE hObject, SE_OBJECT_TYPE ObjectType,
2075 SECURITY_INFORMATION SecurityInfo, PSID *ppsidOwner,
2076 PSID *ppsidGroup, PACL *ppDacl, PACL *ppSacl,
2077 PSECURITY_DESCRIPTOR *ppSecurityDescriptor
2081 return ERROR_BAD_PROVIDER;
2084 /******************************************************************************
2085 * GetSecurityInfoExW [ADVAPI32.@]
2087 DWORD WINAPI GetSecurityInfoExW(
2088 HANDLE hObject, SE_OBJECT_TYPE ObjectType,
2089 SECURITY_INFORMATION SecurityInfo, LPCWSTR lpProvider,
2090 LPCWSTR lpProperty, PACTRL_ACCESSW *ppAccessList,
2091 PACTRL_AUDITW *ppAuditList, LPWSTR *lppOwner, LPWSTR *lppGroup
2095 return ERROR_BAD_PROVIDER;
2098 /******************************************************************************
2099 * BuildExplicitAccessWithNameA [ADVAPI32.@]
2101 VOID WINAPI BuildExplicitAccessWithNameA( PEXPLICIT_ACCESSA pExplicitAccess,
2102 LPSTR pTrusteeName, DWORD AccessPermissions,
2103 ACCESS_MODE AccessMode, DWORD Inheritance )
2105 TRACE("%p %s 0x%08lx 0x%08x 0x%08lx\n", pExplicitAccess, debugstr_a(pTrusteeName),
2106 AccessPermissions, AccessMode, Inheritance);
2108 pExplicitAccess->grfAccessPermissions = AccessPermissions;
2109 pExplicitAccess->grfAccessMode = AccessMode;
2110 pExplicitAccess->grfInheritance = Inheritance;
2112 pExplicitAccess->Trustee.pMultipleTrustee = NULL;
2113 pExplicitAccess->Trustee.MultipleTrusteeOperation = NO_MULTIPLE_TRUSTEE;
2114 pExplicitAccess->Trustee.TrusteeForm = TRUSTEE_IS_NAME;
2115 pExplicitAccess->Trustee.TrusteeType = TRUSTEE_IS_UNKNOWN;
2116 pExplicitAccess->Trustee.ptstrName = pTrusteeName;
2119 /******************************************************************************
2120 * BuildExplicitAccessWithNameW [ADVAPI32.@]
2122 VOID WINAPI BuildExplicitAccessWithNameW( PEXPLICIT_ACCESSW pExplicitAccess,
2123 LPWSTR pTrusteeName, DWORD AccessPermissions,
2124 ACCESS_MODE AccessMode, DWORD Inheritance )
2126 TRACE("%p %s 0x%08lx 0x%08x 0x%08lx\n", pExplicitAccess, debugstr_w(pTrusteeName),
2127 AccessPermissions, AccessMode, Inheritance);
2129 pExplicitAccess->grfAccessPermissions = AccessPermissions;
2130 pExplicitAccess->grfAccessMode = AccessMode;
2131 pExplicitAccess->grfInheritance = Inheritance;
2133 pExplicitAccess->Trustee.pMultipleTrustee = NULL;
2134 pExplicitAccess->Trustee.MultipleTrusteeOperation = NO_MULTIPLE_TRUSTEE;
2135 pExplicitAccess->Trustee.TrusteeForm = TRUSTEE_IS_NAME;
2136 pExplicitAccess->Trustee.TrusteeType = TRUSTEE_IS_UNKNOWN;
2137 pExplicitAccess->Trustee.ptstrName = pTrusteeName;
2140 /******************************************************************************
2141 * BuildTrusteeWithObjectsAndNameA [ADVAPI32.@]
2143 VOID WINAPI BuildTrusteeWithObjectsAndNameA( PTRUSTEEA pTrustee, POBJECTS_AND_NAME_A pObjName,
2144 SE_OBJECT_TYPE ObjectType, LPSTR ObjectTypeName,
2145 LPSTR InheritedObjectTypeName, LPSTR Name )
2147 TRACE("%p %p 0x%08x %p %p %s\n", pTrustee, pObjName,
2148 ObjectType, ObjectTypeName, InheritedObjectTypeName, debugstr_a(Name));
2150 pTrustee->pMultipleTrustee = NULL;
2151 pTrustee->MultipleTrusteeOperation = NO_MULTIPLE_TRUSTEE;
2152 pTrustee->TrusteeForm = TRUSTEE_IS_OBJECTS_AND_NAME;
2153 pTrustee->TrusteeType = TRUSTEE_IS_UNKNOWN;
2154 pTrustee->ptstrName = Name;
2157 /******************************************************************************
2158 * BuildTrusteeWithObjectsAndNameW [ADVAPI32.@]
2160 VOID WINAPI BuildTrusteeWithObjectsAndNameW( PTRUSTEEW pTrustee, POBJECTS_AND_NAME_W pObjName,
2161 SE_OBJECT_TYPE ObjectType, LPWSTR ObjectTypeName,
2162 LPWSTR InheritedObjectTypeName, LPWSTR Name )
2164 TRACE("%p %p 0x%08x %p %p %s\n", pTrustee, pObjName,
2165 ObjectType, ObjectTypeName, InheritedObjectTypeName, debugstr_w(Name));
2167 pTrustee->pMultipleTrustee = NULL;
2168 pTrustee->MultipleTrusteeOperation = NO_MULTIPLE_TRUSTEE;
2169 pTrustee->TrusteeForm = TRUSTEE_IS_OBJECTS_AND_NAME;
2170 pTrustee->TrusteeType = TRUSTEE_IS_UNKNOWN;
2171 pTrustee->ptstrName = Name;
2174 VOID WINAPI BuildTrusteeWithObjectsAndSidA( PTRUSTEEA pTrustee, POBJECTS_AND_SID pObjSid,
2175 GUID* pObjectGuid, GUID* pInheritedObjectGuid, PSID pSid )
2177 TRACE("%p %p %p %p %p\n", pTrustee, pObjSid, pObjectGuid, pInheritedObjectGuid, pSid);
2179 pTrustee->pMultipleTrustee = NULL;
2180 pTrustee->MultipleTrusteeOperation = NO_MULTIPLE_TRUSTEE;
2181 pTrustee->TrusteeForm = TRUSTEE_IS_OBJECTS_AND_SID;
2182 pTrustee->TrusteeType = TRUSTEE_IS_UNKNOWN;
2183 pTrustee->ptstrName = (LPSTR) pSid;
2186 VOID WINAPI BuildTrusteeWithObjectsAndSidW( PTRUSTEEW pTrustee, POBJECTS_AND_SID pObjSid,
2187 GUID* pObjectGuid, GUID* pInheritedObjectGuid, PSID pSid )
2189 TRACE("%p %p %p %p %p\n", pTrustee, pObjSid, pObjectGuid, pInheritedObjectGuid, pSid);
2191 pTrustee->pMultipleTrustee = NULL;
2192 pTrustee->MultipleTrusteeOperation = NO_MULTIPLE_TRUSTEE;
2193 pTrustee->TrusteeForm = TRUSTEE_IS_OBJECTS_AND_SID;
2194 pTrustee->TrusteeType = TRUSTEE_IS_UNKNOWN;
2195 pTrustee->ptstrName = (LPWSTR) pSid;
2198 /******************************************************************************
2199 * BuildTrusteeWithSidA [ADVAPI32.@]
2201 VOID WINAPI BuildTrusteeWithSidA(PTRUSTEEA pTrustee, PSID pSid)
2203 TRACE("%p %p\n", pTrustee, pSid);
2205 pTrustee->pMultipleTrustee = NULL;
2206 pTrustee->MultipleTrusteeOperation = NO_MULTIPLE_TRUSTEE;
2207 pTrustee->TrusteeForm = TRUSTEE_IS_SID;
2208 pTrustee->TrusteeType = TRUSTEE_IS_UNKNOWN;
2209 pTrustee->ptstrName = (LPSTR) pSid;
2212 /******************************************************************************
2213 * BuildTrusteeWithSidW [ADVAPI32.@]
2215 VOID WINAPI BuildTrusteeWithSidW(PTRUSTEEW pTrustee, PSID pSid)
2217 TRACE("%p %p\n", pTrustee, pSid);
2219 pTrustee->pMultipleTrustee = NULL;
2220 pTrustee->MultipleTrusteeOperation = NO_MULTIPLE_TRUSTEE;
2221 pTrustee->TrusteeForm = TRUSTEE_IS_SID;
2222 pTrustee->TrusteeType = TRUSTEE_IS_UNKNOWN;
2223 pTrustee->ptstrName = (LPWSTR) pSid;
2226 /******************************************************************************
2227 * BuildTrusteeWithNameA [ADVAPI32.@]
2229 VOID WINAPI BuildTrusteeWithNameA(PTRUSTEEA pTrustee, LPSTR name)
2231 TRACE("%p %s\n", pTrustee, debugstr_a(name) );
2233 pTrustee->pMultipleTrustee = NULL;
2234 pTrustee->MultipleTrusteeOperation = NO_MULTIPLE_TRUSTEE;
2235 pTrustee->TrusteeForm = TRUSTEE_IS_NAME;
2236 pTrustee->TrusteeType = TRUSTEE_IS_UNKNOWN;
2237 pTrustee->ptstrName = name;
2240 /******************************************************************************
2241 * BuildTrusteeWithNameW [ADVAPI32.@]
2243 VOID WINAPI BuildTrusteeWithNameW(PTRUSTEEW pTrustee, LPWSTR name)
2245 TRACE("%p %s\n", pTrustee, debugstr_w(name) );
2247 pTrustee->pMultipleTrustee = NULL;
2248 pTrustee->MultipleTrusteeOperation = NO_MULTIPLE_TRUSTEE;
2249 pTrustee->TrusteeForm = TRUSTEE_IS_NAME;
2250 pTrustee->TrusteeType = TRUSTEE_IS_UNKNOWN;
2251 pTrustee->ptstrName = name;
2254 BOOL WINAPI SetAclInformation( PACL pAcl, LPVOID pAclInformation,
2255 DWORD nAclInformationLength,
2256 ACL_INFORMATION_CLASS dwAclInformationClass )
2258 FIXME("%p %p 0x%08lx 0x%08x - stub\n", pAcl, pAclInformation,
2259 nAclInformationLength, dwAclInformationClass);
2264 /******************************************************************************
2265 * SetEntriesInAclA [ADVAPI32.@]
2267 DWORD WINAPI SetEntriesInAclA( ULONG count, PEXPLICIT_ACCESSA pEntries,
2268 PACL OldAcl, PACL* NewAcl )
2270 FIXME("%ld %p %p %p\n",count,pEntries,OldAcl,NewAcl);
2271 return ERROR_CALL_NOT_IMPLEMENTED;
2274 /******************************************************************************
2275 * SetEntriesInAclW [ADVAPI32.@]
2277 DWORD WINAPI SetEntriesInAclW( ULONG count, PEXPLICIT_ACCESSW pEntries,
2278 PACL OldAcl, PACL* NewAcl )
2280 FIXME("%ld %p %p %p\n",count,pEntries,OldAcl,NewAcl);
2281 return ERROR_CALL_NOT_IMPLEMENTED;
2284 /******************************************************************************
2285 * SetNamedSecurityInfoA [ADVAPI32.@]
2287 DWORD WINAPI SetNamedSecurityInfoA(LPSTR pObjectName,
2288 SE_OBJECT_TYPE ObjectType, SECURITY_INFORMATION SecurityInfo,
2289 PSID psidOwner, PSID psidGroup, PACL pDacl, PACL pSacl)
2295 TRACE("%s %d %ld %p %p %p %p\n", debugstr_a(pObjectName), ObjectType,
2296 SecurityInfo, psidOwner, psidGroup, pDacl, pSacl);
2300 len = MultiByteToWideChar( CP_ACP, 0, pObjectName, -1, NULL, 0 );
2301 wstr = HeapAlloc( GetProcessHeap(), 0, len*sizeof(WCHAR));
2302 MultiByteToWideChar( CP_ACP, 0, pObjectName, -1, wstr, len );
2305 r = SetNamedSecurityInfoW( wstr, ObjectType, SecurityInfo, psidOwner,
2306 psidGroup, pDacl, pSacl );
2308 HeapFree( GetProcessHeap(), 0, wstr );
2313 BOOL WINAPI SetPrivateObjectSecurity( SECURITY_INFORMATION SecurityInformation,
2314 PSECURITY_DESCRIPTOR ModificationDescriptor,
2315 PSECURITY_DESCRIPTOR* ObjectsSecurityDescriptor,
2316 PGENERIC_MAPPING GenericMapping,
2319 FIXME("0x%08lx %p %p %p %p - stub\n", SecurityInformation, ModificationDescriptor,
2320 ObjectsSecurityDescriptor, GenericMapping, Token);
2325 BOOL WINAPI SetSecurityDescriptorControl( PSECURITY_DESCRIPTOR pSecurityDescriptor,
2326 SECURITY_DESCRIPTOR_CONTROL ControlBitsOfInterest,
2327 SECURITY_DESCRIPTOR_CONTROL ControlBitsToSet )
2329 FIXME("%p 0x%08x 0x%08x - stub\n", pSecurityDescriptor, ControlBitsOfInterest,
2335 BOOL WINAPI AreAllAccessesGranted( DWORD GrantedAccess, DWORD DesiredAccess )
2337 return RtlAreAllAccessesGranted( GrantedAccess, DesiredAccess );
2340 /******************************************************************************
2341 * AreAnyAccessesGranted [ADVAPI32.@]
2343 * Determines whether or not any of a set of specified access permissions have
2344 * been granted or not.
2347 * GrantedAccess [I] The permissions that have been granted.
2348 * DesiredAccess [I] The permissions that you want to have.
2351 * Nonzero if any of the permissions have been granted, zero if none of the
2352 * permissions have been granted.
2355 BOOL WINAPI AreAnyAccessesGranted( DWORD GrantedAccess, DWORD DesiredAccess )
2357 return RtlAreAnyAccessesGranted( GrantedAccess, DesiredAccess );
2360 /******************************************************************************
2361 * SetNamedSecurityInfoW [ADVAPI32.@]
2363 DWORD WINAPI SetNamedSecurityInfoW(LPWSTR pObjectName,
2364 SE_OBJECT_TYPE ObjectType, SECURITY_INFORMATION SecurityInfo,
2365 PSID psidOwner, PSID psidGroup, PACL pDacl, PACL pSacl)
2367 FIXME("%s %d %ld %p %p %p %p\n", debugstr_w(pObjectName), ObjectType,
2368 SecurityInfo, psidOwner, psidGroup, pDacl, pSacl);
2369 return ERROR_SUCCESS;
2372 /******************************************************************************
2373 * GetExplicitEntriesFromAclA [ADVAPI32.@]
2375 DWORD WINAPI GetExplicitEntriesFromAclA( PACL pacl, PULONG pcCountOfExplicitEntries,
2376 PEXPLICIT_ACCESSA* pListOfExplicitEntries)
2378 FIXME("%p %p %p\n",pacl, pcCountOfExplicitEntries, pListOfExplicitEntries);
2379 return ERROR_CALL_NOT_IMPLEMENTED;
2382 /******************************************************************************
2383 * GetExplicitEntriesFromAclW [ADVAPI32.@]
2385 DWORD WINAPI GetExplicitEntriesFromAclW( PACL pacl, PULONG pcCountOfExplicitEntries,
2386 PEXPLICIT_ACCESSW* pListOfExplicitEntries)
2388 FIXME("%p %p %p\n",pacl, pcCountOfExplicitEntries, pListOfExplicitEntries);
2389 return ERROR_CALL_NOT_IMPLEMENTED;
2393 /******************************************************************************
2394 * ParseAclStringFlags
2396 static DWORD ParseAclStringFlags(LPCWSTR* StringAcl)
2399 LPCWSTR szAcl = *StringAcl;
2401 while (*szAcl != '(')
2405 flags |= SE_DACL_PROTECTED;
2407 else if (*szAcl == 'A')
2411 flags |= SE_DACL_AUTO_INHERIT_REQ;
2412 else if (*szAcl == 'I')
2413 flags |= SE_DACL_AUTO_INHERITED;
2422 /******************************************************************************
2423 * ParseAceStringType
2427 { SDDL_ACCESS_ALLOWED, ACCESS_ALLOWED_ACE_TYPE },
2428 { SDDL_ALARM, SYSTEM_ALARM_ACE_TYPE },
2429 { SDDL_AUDIT, SYSTEM_AUDIT_ACE_TYPE },
2430 { SDDL_ACCESS_DENIED, ACCESS_DENIED_ACE_TYPE },
2432 { SDDL_OBJECT_ACCESS_ALLOWED, ACCESS_ALLOWED_OBJECT_ACE_TYPE },
2433 { SDDL_OBJECT_ACCESS_DENIED, ACCESS_DENIED_OBJECT_ACE_TYPE },
2434 { SDDL_OBJECT_ALARM, SYSTEM_ALARM_OBJECT_ACE_TYPE },
2435 { SDDL_OBJECT_AUDIT, SYSTEM_AUDIT_OBJECT_ACE_TYPE },
2440 static BYTE ParseAceStringType(LPCWSTR* StringAcl)
2443 LPCWSTR szAcl = *StringAcl;
2444 LPACEFLAG lpaf = AceType;
2446 while (lpaf->wstr &&
2447 (len = strlenW(lpaf->wstr)) &&
2448 strncmpW(lpaf->wstr, szAcl, len))
2459 /******************************************************************************
2460 * ParseAceStringFlags
2462 ACEFLAG AceFlags[] =
2464 { SDDL_CONTAINER_INHERIT, CONTAINER_INHERIT_ACE },
2465 { SDDL_AUDIT_FAILURE, FAILED_ACCESS_ACE_FLAG },
2466 { SDDL_INHERITED, INHERITED_ACE },
2467 { SDDL_INHERIT_ONLY, INHERIT_ONLY_ACE },
2468 { SDDL_NO_PROPAGATE, NO_PROPAGATE_INHERIT_ACE },
2469 { SDDL_OBJECT_INHERIT, OBJECT_INHERIT_ACE },
2470 { SDDL_AUDIT_SUCCESS, SUCCESSFUL_ACCESS_ACE_FLAG },
2474 static BYTE ParseAceStringFlags(LPCWSTR* StringAcl)
2478 LPCWSTR szAcl = *StringAcl;
2480 while (*szAcl != ';')
2482 LPACEFLAG lpaf = AceFlags;
2484 while (lpaf->wstr &&
2485 (len = strlenW(lpaf->wstr)) &&
2486 strncmpW(lpaf->wstr, szAcl, len))
2492 flags |= lpaf->value;
2501 /******************************************************************************
2502 * ParseAceStringRights
2504 ACEFLAG AceRights[] =
2506 { SDDL_GENERIC_ALL, GENERIC_ALL },
2507 { SDDL_GENERIC_READ, GENERIC_READ },
2508 { SDDL_GENERIC_WRITE, GENERIC_WRITE },
2509 { SDDL_GENERIC_EXECUTE, GENERIC_EXECUTE },
2510 { SDDL_READ_CONTROL, READ_CONTROL },
2511 { SDDL_STANDARD_DELETE, DELETE },
2512 { SDDL_WRITE_DAC, WRITE_DAC },
2513 { SDDL_WRITE_OWNER, WRITE_OWNER },
2517 static DWORD ParseAceStringRights(LPCWSTR* StringAcl)
2521 LPCWSTR szAcl = *StringAcl;
2523 if ((*szAcl == '0') && (*(szAcl + 1) == 'x'))
2527 while (*p && *p != ';')
2532 rights = strtoulW(szAcl, NULL, 16);
2536 WARN("Invalid rights string format: %s\n", debugstr_wn(szAcl, p - szAcl));
2540 while (*szAcl != ';')
2542 LPACEFLAG lpaf = AceRights;
2544 while (lpaf->wstr &&
2545 (len = strlenW(lpaf->wstr)) &&
2546 strncmpW(lpaf->wstr, szAcl, len))
2554 rights |= lpaf->value;
2564 /******************************************************************************
2565 * ParseStringAclToAcl
2567 * dacl_flags(string_ace1)(string_ace2)... (string_acen)
2569 static BOOL ParseStringAclToAcl(LPCWSTR StringAcl, LPDWORD lpdwFlags,
2570 PACL pAcl, LPDWORD cBytes)
2574 DWORD length = sizeof(ACL);
2575 PACCESS_ALLOWED_ACE pAce = NULL; /* pointer to current ACE */
2577 TRACE("%s\n", debugstr_w(StringAcl));
2582 if (pAcl) /* pAce is only useful if we're setting values */
2583 pAce = (PACCESS_ALLOWED_ACE) ((LPBYTE)pAcl + sizeof(PACL));
2585 /* Parse ACL flags */
2586 *lpdwFlags = ParseAclStringFlags(&StringAcl);
2589 while (*StringAcl == '(')
2593 /* Parse ACE type */
2594 val = ParseAceStringType(&StringAcl);
2596 pAce->Header.AceType = (BYTE) val;
2597 if (*StringAcl != ';')
2601 /* Parse ACE flags */
2602 val = ParseAceStringFlags(&StringAcl);
2604 pAce->Header.AceFlags = (BYTE) val;
2605 if (*StringAcl != ';')
2609 /* Parse ACE rights */
2610 val = ParseAceStringRights(&StringAcl);
2613 if (*StringAcl != ';')
2617 /* Parse ACE object guid */
2618 if (*StringAcl != ';')
2620 FIXME("Support for *_OBJECT_ACE_TYPE not implemented\n");
2625 /* Parse ACE inherit object guid */
2626 if (*StringAcl != ';')
2628 FIXME("Support for *_OBJECT_ACE_TYPE not implemented\n");
2633 /* Parse ACE account sid */
2634 if (ParseStringSidToSid(StringAcl, pAce ? (PSID)&pAce->SidStart : NULL, &sidlen))
2636 while (*StringAcl && *StringAcl != ')')
2640 if (*StringAcl != ')')
2644 length += sizeof(ACCESS_ALLOWED_ACE) - sizeof(DWORD) + sidlen;
2651 WARN("Invalid ACE string format\n");
2656 /******************************************************************************
2657 * ParseStringSecurityDescriptorToSecurityDescriptor
2659 static BOOL ParseStringSecurityDescriptorToSecurityDescriptor(
2660 LPCWSTR StringSecurityDescriptor,
2661 SECURITY_DESCRIPTOR* SecurityDescriptor,
2666 WCHAR tok[MAX_PATH];
2668 LPBYTE lpNext = NULL;
2673 if (SecurityDescriptor)
2674 lpNext = ((LPBYTE) SecurityDescriptor) + sizeof(SECURITY_DESCRIPTOR);
2676 while (*StringSecurityDescriptor)
2678 toktype = *StringSecurityDescriptor;
2680 /* Expect char identifier followed by ':' */
2681 StringSecurityDescriptor++;
2682 if (*StringSecurityDescriptor != ':')
2684 SetLastError(ERROR_INVALID_PARAMETER);
2687 StringSecurityDescriptor++;
2690 lptoken = StringSecurityDescriptor;
2691 while (*lptoken && *lptoken != ':')
2697 len = lptoken - StringSecurityDescriptor;
2698 memcpy( tok, StringSecurityDescriptor, len * sizeof(WCHAR) );
2707 if (!ParseStringSidToSid(tok, (PSID)lpNext, &bytes))
2710 if (SecurityDescriptor)
2712 SecurityDescriptor->Owner = (PSID) ((DWORD) lpNext -
2713 (DWORD) SecurityDescriptor);
2714 lpNext += bytes; /* Advance to next token */
2726 if (!ParseStringSidToSid(tok, (PSID)lpNext, &bytes))
2729 if (SecurityDescriptor)
2731 SecurityDescriptor->Group = (PSID) ((DWORD) lpNext -
2732 (DWORD) SecurityDescriptor);
2733 lpNext += bytes; /* Advance to next token */
2746 if (!ParseStringAclToAcl(tok, &flags, (PACL)lpNext, &bytes))
2749 if (SecurityDescriptor)
2751 SecurityDescriptor->Control |= SE_DACL_PRESENT | flags;
2752 SecurityDescriptor->Dacl = (PACL) ((DWORD) lpNext -
2753 (DWORD) SecurityDescriptor);
2754 lpNext += bytes; /* Advance to next token */
2767 if (!ParseStringAclToAcl(tok, &flags, (PACL)lpNext, &bytes))
2770 if (SecurityDescriptor)
2772 SecurityDescriptor->Control |= SE_SACL_PRESENT | flags;
2773 SecurityDescriptor->Sacl = (PACL) ((DWORD) lpNext -
2774 (DWORD) SecurityDescriptor);
2775 lpNext += bytes; /* Advance to next token */
2784 FIXME("Unknown token\n");
2785 SetLastError(ERROR_INVALID_PARAMETER);
2789 StringSecurityDescriptor = lptoken;
2798 /******************************************************************************
2799 * ConvertStringSecurityDescriptorToSecurityDescriptorA [ADVAPI32.@]
2801 BOOL WINAPI ConvertStringSecurityDescriptorToSecurityDescriptorA(
2802 LPCSTR StringSecurityDescriptor,
2803 DWORD StringSDRevision,
2804 PSECURITY_DESCRIPTOR* SecurityDescriptor,
2805 PULONG SecurityDescriptorSize)
2809 LPWSTR StringSecurityDescriptorW;
2811 len = MultiByteToWideChar(CP_ACP, 0, StringSecurityDescriptor, -1, NULL, 0);
2812 StringSecurityDescriptorW = HeapAlloc(GetProcessHeap(), 0, len * sizeof(WCHAR));
2814 if (StringSecurityDescriptorW)
2816 MultiByteToWideChar(CP_ACP, 0, StringSecurityDescriptor, -1, StringSecurityDescriptorW, len);
2818 ret = ConvertStringSecurityDescriptorToSecurityDescriptorW(StringSecurityDescriptorW,
2819 StringSDRevision, SecurityDescriptor,
2820 SecurityDescriptorSize);
2821 HeapFree(GetProcessHeap(), 0, StringSecurityDescriptorW);
2827 /******************************************************************************
2828 * ConvertStringSecurityDescriptorToSecurityDescriptorW [ADVAPI32.@]
2830 BOOL WINAPI ConvertStringSecurityDescriptorToSecurityDescriptorW(
2831 LPCWSTR StringSecurityDescriptor,
2832 DWORD StringSDRevision,
2833 PSECURITY_DESCRIPTOR* SecurityDescriptor,
2834 PULONG SecurityDescriptorSize)
2837 SECURITY_DESCRIPTOR* psd;
2840 TRACE("%s\n", debugstr_w(StringSecurityDescriptor));
2842 if (GetVersion() & 0x80000000)
2844 SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
2847 else if (StringSDRevision != SID_REVISION)
2849 SetLastError(ERROR_UNKNOWN_REVISION);
2853 /* Compute security descriptor length */
2854 if (!ParseStringSecurityDescriptorToSecurityDescriptor(StringSecurityDescriptor,
2858 psd = *SecurityDescriptor = (SECURITY_DESCRIPTOR*) LocalAlloc(
2859 GMEM_ZEROINIT, cBytes);
2861 psd->Revision = SID_REVISION;
2862 psd->Control |= SE_SELF_RELATIVE;
2864 if (!ParseStringSecurityDescriptorToSecurityDescriptor(StringSecurityDescriptor,
2871 if (SecurityDescriptorSize)
2872 *SecurityDescriptorSize = cBytes;
2877 TRACE(" ret=%d\n", bret);
2881 /******************************************************************************
2882 * ConvertStringSidToSidW [ADVAPI32.@]
2884 BOOL WINAPI ConvertStringSidToSidW(LPCWSTR StringSid, PSID* Sid)
2889 TRACE("%s, %p\n", debugstr_w(StringSid), Sid);
2890 if (GetVersion() & 0x80000000)
2891 SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
2892 else if (!StringSid || !Sid)
2893 SetLastError(ERROR_INVALID_PARAMETER);
2894 else if (ParseStringSidToSid(StringSid, NULL, &cBytes))
2896 PSID pSid = *Sid = (PSID) LocalAlloc(0, cBytes);
2898 bret = ParseStringSidToSid(StringSid, pSid, &cBytes);
2902 TRACE("returning %s\n", bret ? "TRUE" : "FALSE");
2906 /******************************************************************************
2907 * ConvertStringSidToSidA [ADVAPI32.@]
2909 BOOL WINAPI ConvertStringSidToSidA(LPCSTR StringSid, PSID* Sid)
2913 TRACE("%s, %p\n", debugstr_a(StringSid), Sid);
2914 if (GetVersion() & 0x80000000)
2915 SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
2916 else if (!StringSid || !Sid)
2917 SetLastError(ERROR_INVALID_PARAMETER);
2920 UINT len = MultiByteToWideChar(CP_ACP, 0, StringSid, -1, NULL, 0);
2921 LPWSTR wStringSid = HeapAlloc(GetProcessHeap(), 0,
2922 len * sizeof(WCHAR));
2924 MultiByteToWideChar(CP_ACP, 0, StringSid, -1, wStringSid, len);
2925 bret = ConvertStringSidToSidW(wStringSid, Sid);
2926 HeapFree(GetProcessHeap(), 0, wStringSid);
2928 TRACE("returning %s\n", bret ? "TRUE" : "FALSE");
2932 /******************************************************************************
2933 * ConvertSidToStringSidW [ADVAPI32.@]
2935 * format of SID string is:
2936 * S-<count>-<auth>-<subauth1>-<subauth2>-<subauth3>...
2938 * <rev> is the revision of the SID encoded as decimal
2939 * <auth> is the identifier authority encoded as hex
2940 * <subauthN> is the subauthority id encoded as decimal
2942 BOOL WINAPI ConvertSidToStringSidW( PSID pSid, LPWSTR *pstr )
2946 WCHAR fmt[] = { 'S','-','%','u','-','%','d',0 };
2947 WCHAR subauthfmt[] = { '-','%','u',0 };
2950 TRACE("%p %p\n", pSid, pstr );
2952 if( !IsValidSid( pSid ) )
2955 if (pisid->Revision != SDDL_REVISION)
2957 if (pisid->IdentifierAuthority.Value[0] ||
2958 pisid->IdentifierAuthority.Value[1])
2960 FIXME("not matching MS' bugs\n");
2964 sz = 14 + pisid->SubAuthorityCount * 11;
2965 str = LocalAlloc( 0, sz*sizeof(WCHAR) );
2966 sprintfW( str, fmt, pisid->Revision, MAKELONG(
2967 MAKEWORD( pisid->IdentifierAuthority.Value[5],
2968 pisid->IdentifierAuthority.Value[4] ),
2969 MAKEWORD( pisid->IdentifierAuthority.Value[3],
2970 pisid->IdentifierAuthority.Value[2] ) ) );
2971 for( i=0; i<pisid->SubAuthorityCount; i++ )
2972 sprintfW( str + strlenW(str), subauthfmt, pisid->SubAuthority[i] );
2978 /******************************************************************************
2979 * ConvertSidToStringSidA [ADVAPI32.@]
2981 BOOL WINAPI ConvertSidToStringSidA(PSID pSid, LPSTR *pstr)
2987 TRACE("%p %p\n", pSid, pstr );
2989 if( !ConvertSidToStringSidW( pSid, &wstr ) )
2992 len = WideCharToMultiByte( CP_ACP, 0, wstr, -1, NULL, 0, NULL, NULL );
2993 str = LocalAlloc( 0, len );
2994 WideCharToMultiByte( CP_ACP, 0, wstr, -1, str, len, NULL, NULL );
3002 BOOL WINAPI CreatePrivateObjectSecurity(
3003 PSECURITY_DESCRIPTOR ParentDescriptor,
3004 PSECURITY_DESCRIPTOR CreatorDescriptor,
3005 PSECURITY_DESCRIPTOR* NewDescriptor,
3006 BOOL IsDirectoryObject,
3008 PGENERIC_MAPPING GenericMapping )
3010 FIXME("%p %p %p %d %p %p - stub\n", ParentDescriptor, CreatorDescriptor,
3011 NewDescriptor, IsDirectoryObject, Token, GenericMapping);
3016 BOOL WINAPI DestroyPrivateObjectSecurity( PSECURITY_DESCRIPTOR* ObjectDescriptor )
3018 FIXME("%p - stub\n", ObjectDescriptor);
3023 BOOL WINAPI CreateProcessAsUserA(
3025 LPCSTR lpApplicationName,
3026 LPSTR lpCommandLine,
3027 LPSECURITY_ATTRIBUTES lpProcessAttributes,
3028 LPSECURITY_ATTRIBUTES lpThreadAttributes,
3029 BOOL bInheritHandles,
3030 DWORD dwCreationFlags,
3031 LPVOID lpEnvironment,
3032 LPCSTR lpCurrentDirectory,
3033 LPSTARTUPINFOA lpStartupInfo,
3034 LPPROCESS_INFORMATION lpProcessInformation )
3036 FIXME("%p %s %s %p %p %d 0x%08lx %p %s %p %p - stub\n", hToken, debugstr_a(lpApplicationName),
3037 debugstr_a(lpCommandLine), lpProcessAttributes, lpThreadAttributes, bInheritHandles,
3038 dwCreationFlags, lpEnvironment, debugstr_a(lpCurrentDirectory), lpStartupInfo, lpProcessInformation);
3043 BOOL WINAPI CreateProcessAsUserW(
3045 LPCWSTR lpApplicationName,
3046 LPWSTR lpCommandLine,
3047 LPSECURITY_ATTRIBUTES lpProcessAttributes,
3048 LPSECURITY_ATTRIBUTES lpThreadAttributes,
3049 BOOL bInheritHandles,
3050 DWORD dwCreationFlags,
3051 LPVOID lpEnvironment,
3052 LPCWSTR lpCurrentDirectory,
3053 LPSTARTUPINFOW lpStartupInfo,
3054 LPPROCESS_INFORMATION lpProcessInformation )
3056 FIXME("%p %s %s %p %p %d 0x%08lx %p %s %p %p - semi- stub\n", hToken,
3057 debugstr_w(lpApplicationName), debugstr_w(lpCommandLine), lpProcessAttributes,
3058 lpThreadAttributes, bInheritHandles, dwCreationFlags, lpEnvironment,
3059 debugstr_w(lpCurrentDirectory), lpStartupInfo, lpProcessInformation);
3061 /* We should create the process with a suspended main thread */
3062 if (!CreateProcessW (lpApplicationName,
3064 lpProcessAttributes,
3067 dwCreationFlags, /* CREATE_SUSPENDED */
3071 lpProcessInformation))
3079 /******************************************************************************
3080 * ComputeStringSidSize
3082 static DWORD ComputeStringSidSize(LPCWSTR StringSid)
3085 DWORD size = sizeof(SID);
3089 if (*StringSid == '-')
3095 size += (ctok - 3) * sizeof(DWORD);
3100 BOOL WINAPI DuplicateTokenEx(
3101 HANDLE ExistingTokenHandle, DWORD dwDesiredAccess,
3102 LPSECURITY_ATTRIBUTES lpTokenAttributes,
3103 SECURITY_IMPERSONATION_LEVEL ImpersonationLevel,
3104 TOKEN_TYPE TokenType,
3105 PHANDLE DuplicateTokenHandle )
3107 OBJECT_ATTRIBUTES ObjectAttributes;
3109 TRACE("%p 0x%08lx 0x%08x 0x%08x %p\n", ExistingTokenHandle, dwDesiredAccess,
3110 ImpersonationLevel, TokenType, DuplicateTokenHandle);
3112 InitializeObjectAttributes(
3115 (lpTokenAttributes && lpTokenAttributes->bInheritHandle) ? OBJ_INHERIT : 0,
3117 lpTokenAttributes ? lpTokenAttributes->lpSecurityDescriptor : NULL );
3119 return set_ntstatus( NtDuplicateToken( ExistingTokenHandle,
3124 DuplicateTokenHandle ) );
3127 BOOL WINAPI DuplicateToken(
3128 HANDLE ExistingTokenHandle,
3129 SECURITY_IMPERSONATION_LEVEL ImpersonationLevel,
3130 PHANDLE DuplicateTokenHandle )
3132 return DuplicateTokenEx( ExistingTokenHandle, TOKEN_IMPERSONATE | TOKEN_QUERY,
3133 NULL, ImpersonationLevel, TokenImpersonation,
3134 DuplicateTokenHandle );
3137 BOOL WINAPI EnumDependentServicesA(
3139 DWORD dwServiceState,
3140 LPENUM_SERVICE_STATUSA lpServices,
3142 LPDWORD pcbBytesNeeded,
3143 LPDWORD lpServicesReturned )
3145 FIXME("%p 0x%08lx %p 0x%08lx %p %p - stub\n", hService, dwServiceState,
3146 lpServices, cbBufSize, pcbBytesNeeded, lpServicesReturned);
3151 BOOL WINAPI EnumDependentServicesW(
3153 DWORD dwServiceState,
3154 LPENUM_SERVICE_STATUSW lpServices,
3156 LPDWORD pcbBytesNeeded,
3157 LPDWORD lpServicesReturned )
3159 FIXME("%p 0x%08lx %p 0x%08lx %p %p - stub\n", hService, dwServiceState,
3160 lpServices, cbBufSize, pcbBytesNeeded, lpServicesReturned);
3165 /******************************************************************************
3166 * ParseStringSidToSid
3168 static BOOL ParseStringSidToSid(LPCWSTR StringSid, PSID pSid, LPDWORD cBytes)
3173 TRACE("%s, %p, %p\n", debugstr_w(StringSid), pSid, cBytes);
3176 SetLastError(ERROR_INVALID_PARAMETER);
3177 TRACE("StringSid is NULL, returning FALSE\n");
3181 *cBytes = ComputeStringSidSize(StringSid);
3182 if (!pisid) /* Simply compute the size */
3184 TRACE("only size requested, returning TRUE\n");
3188 if (*StringSid != 'S' || *StringSid != '-') /* S-R-I-S-S */
3190 DWORD i = 0, identAuth;
3191 DWORD csubauth = ((*cBytes - sizeof(SID)) / sizeof(DWORD)) + 1;
3193 StringSid += 2; /* Advance to Revision */
3194 pisid->Revision = atoiW(StringSid);
3196 if (pisid->Revision != SDDL_REVISION)
3198 TRACE("Revision %d is unknown\n", pisid->Revision);
3199 goto lend; /* ERROR_INVALID_SID */
3203 TRACE("SubAuthorityCount is 0\n");
3204 goto lend; /* ERROR_INVALID_SID */
3207 pisid->SubAuthorityCount = csubauth;
3209 /* Advance to identifier authority */
3210 while (*StringSid && *StringSid != '-')
3212 if (*StringSid == '-')
3215 /* MS' implementation can't handle values greater than 2^32 - 1, so
3216 * we don't either; assume most significant bytes are always 0
3218 pisid->IdentifierAuthority.Value[0] = 0;
3219 pisid->IdentifierAuthority.Value[1] = 0;
3220 identAuth = atoiW(StringSid);
3221 pisid->IdentifierAuthority.Value[5] = identAuth & 0xff;
3222 pisid->IdentifierAuthority.Value[4] = (identAuth & 0xff00) >> 8;
3223 pisid->IdentifierAuthority.Value[3] = (identAuth & 0xff0000) >> 16;
3224 pisid->IdentifierAuthority.Value[2] = (identAuth & 0xff000000) >> 24;
3226 /* Advance to first sub authority */
3227 while (*StringSid && *StringSid != '-')
3229 if (*StringSid == '-')
3234 while (*StringSid && *StringSid != '-')
3237 pisid->SubAuthority[i++] = atoiW(StringSid);
3240 if (i != pisid->SubAuthorityCount)
3241 goto lend; /* ERROR_INVALID_SID */
3245 else /* String constant format - Only available in winxp and above */
3247 pisid->Revision = SDDL_REVISION;
3248 pisid->SubAuthorityCount = 1;
3250 FIXME("String constant not supported: %s\n", debugstr_wn(StringSid, 2));
3252 /* TODO: Lookup string of well-known SIDs in table */
3253 pisid->IdentifierAuthority.Value[5] = 0;
3254 pisid->SubAuthority[0] = 0;
3261 SetLastError(ERROR_INVALID_SID);
3263 TRACE("returning %s\n", bret ? "TRUE" : "FALSE");
3267 /******************************************************************************
3268 * GetNamedSecurityInfoA [ADVAPI32.@]
3270 DWORD WINAPI GetNamedSecurityInfoA(LPSTR pObjectName,
3271 SE_OBJECT_TYPE ObjectType, SECURITY_INFORMATION SecurityInfo,
3272 PSID* ppsidOwner, PSID* ppsidGroup, PACL* ppDacl, PACL* ppSacl,
3273 PSECURITY_DESCRIPTOR* ppSecurityDescriptor)
3279 TRACE("%s %d %ld %p %p %p %p %p\n", pObjectName, ObjectType, SecurityInfo,
3280 ppsidOwner, ppsidGroup, ppDacl, ppSacl, ppSecurityDescriptor);
3284 len = MultiByteToWideChar( CP_ACP, 0, pObjectName, -1, NULL, 0 );
3285 wstr = HeapAlloc( GetProcessHeap(), 0, len*sizeof(WCHAR));
3286 MultiByteToWideChar( CP_ACP, 0, pObjectName, -1, wstr, len );
3289 r = GetNamedSecurityInfoW( wstr, ObjectType, SecurityInfo, ppsidOwner,
3290 ppsidGroup, ppDacl, ppSacl, ppSecurityDescriptor );
3292 HeapFree( GetProcessHeap(), 0, wstr );
3297 /******************************************************************************
3298 * GetNamedSecurityInfoW [ADVAPI32.@]
3300 DWORD WINAPI GetNamedSecurityInfoW( LPWSTR name, SE_OBJECT_TYPE type,
3301 SECURITY_INFORMATION info, PSID* owner, PSID* group, PACL* dacl,
3302 PACL* sacl, PSECURITY_DESCRIPTOR* descriptor )
3304 DWORD needed, offset;
3305 SECURITY_DESCRIPTOR_RELATIVE *relative;
3308 TRACE( "%s %d %ld %p %p %p %p %p\n", debugstr_w(name), type, info, owner,
3309 group, dacl, sacl, descriptor );
3311 if (!name || !descriptor) return ERROR_INVALID_PARAMETER;
3313 needed = sizeof(SECURITY_DESCRIPTOR_RELATIVE);
3314 if (info & OWNER_SECURITY_INFORMATION)
3315 needed += sizeof(sidWorld);
3316 if (info & GROUP_SECURITY_INFORMATION)
3317 needed += sizeof(sidWorld);
3318 if (info & DACL_SECURITY_INFORMATION)
3319 needed += WINE_SIZE_OF_WORLD_ACCESS_ACL;
3320 if (info & SACL_SECURITY_INFORMATION)
3321 needed += WINE_SIZE_OF_WORLD_ACCESS_ACL;
3323 /* must be freed by caller */
3324 *descriptor = HeapAlloc( GetProcessHeap(), 0, needed );
3325 if (!*descriptor) return ERROR_NOT_ENOUGH_MEMORY;
3327 if (!InitializeSecurityDescriptor( *descriptor, SECURITY_DESCRIPTOR_REVISION ))
3329 HeapFree( GetProcessHeap(), 0, *descriptor );
3330 return ERROR_INVALID_SECURITY_DESCR;
3333 relative = (SECURITY_DESCRIPTOR_RELATIVE *)*descriptor;
3334 relative->Control |= SE_SELF_RELATIVE;
3335 buffer = (BYTE *)relative;
3336 offset = sizeof(SECURITY_DESCRIPTOR_RELATIVE);
3338 if (owner && (info & OWNER_SECURITY_INFORMATION))
3340 memcpy( buffer + offset, &sidWorld, sizeof(sidWorld) );
3341 relative->Owner = offset;
3342 *owner = buffer + offset;
3343 offset += sizeof(sidWorld);
3345 if (group && (info & GROUP_SECURITY_INFORMATION))
3347 memcpy( buffer + offset, &sidWorld, sizeof(sidWorld) );
3348 relative->Group = offset;
3349 *group = buffer + offset;
3350 offset += sizeof(sidWorld);
3352 if (dacl && (info & DACL_SECURITY_INFORMATION))
3354 GetWorldAccessACL( (PACL)(buffer + offset) );
3355 relative->Dacl = offset;
3356 *dacl = (PACL)(buffer + offset);
3357 offset += WINE_SIZE_OF_WORLD_ACCESS_ACL;
3359 if (sacl && (info & SACL_SECURITY_INFORMATION))
3361 GetWorldAccessACL( (PACL)(buffer + offset) );
3362 relative->Sacl = offset;
3363 *sacl = (PACL)(buffer + offset);
3365 return ERROR_SUCCESS;
3368 /******************************************************************************
3369 * DecryptFileW [ADVAPI32.@]
3371 BOOL WINAPI DecryptFileW(LPCWSTR lpFileName, DWORD dwReserved)
3373 FIXME("%s %08lx\n", debugstr_w(lpFileName), dwReserved);
3377 /******************************************************************************
3378 * DecryptFileA [ADVAPI32.@]
3380 BOOL WINAPI DecryptFileA(LPCSTR lpFileName, DWORD dwReserved)
3382 FIXME("%s %08lx\n", debugstr_a(lpFileName), dwReserved);
3386 /******************************************************************************
3387 * EncryptFileW [ADVAPI32.@]
3389 BOOL WINAPI EncryptFileW(LPCWSTR lpFileName)
3391 FIXME("%s\n", debugstr_w(lpFileName));
3395 /******************************************************************************
3396 * EncryptFileA [ADVAPI32.@]
3398 BOOL WINAPI EncryptFileA(LPCSTR lpFileName)
3400 FIXME("%s\n", debugstr_a(lpFileName));
3404 /******************************************************************************
3405 * SetSecurityInfo [ADVAPI32.@]
3407 DWORD WINAPI SetSecurityInfo(HANDLE handle, SE_OBJECT_TYPE ObjectType,
3408 SECURITY_INFORMATION SecurityInfo, PSID psidOwner,
3409 PSID psidGroup, PACL pDacl, PACL pSacl) {
3411 return ERROR_SUCCESS;