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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
25 #define WIN32_NO_STATUS
39 #include "wine/debug.h"
40 #include "wine/unicode.h"
42 WINE_DEFAULT_DEBUG_CHANNEL(advapi);
44 static BOOL ParseStringSidToSid(LPCWSTR StringSid, PSID pSid, LPDWORD cBytes);
45 static BOOL ParseStringAclToAcl(LPCWSTR StringAcl, LPDWORD lpdwFlags,
46 PACL pAcl, LPDWORD cBytes);
47 static BYTE ParseAceStringFlags(LPCWSTR* StringAcl);
48 static BYTE ParseAceStringType(LPCWSTR* StringAcl);
49 static DWORD ParseAceStringRights(LPCWSTR* StringAcl);
50 static BOOL ParseStringSecurityDescriptorToSecurityDescriptor(
51 LPCWSTR StringSecurityDescriptor,
52 SECURITY_DESCRIPTOR* SecurityDescriptor,
54 static DWORD ParseAclStringFlags(LPCWSTR* StringAcl);
56 typedef struct _ACEFLAG
60 } ACEFLAG, *LPACEFLAG;
62 static SID const sidWorld = { SID_REVISION, 1, { SECURITY_WORLD_SID_AUTHORITY} , { SECURITY_WORLD_RID } };
67 static const WCHAR SDDL_READ_CONTROL[] = {'R','C',0};
68 static const WCHAR SDDL_WRITE_DAC[] = {'W','D',0};
69 static const WCHAR SDDL_WRITE_OWNER[] = {'W','O',0};
70 static const WCHAR SDDL_STANDARD_DELETE[] = {'S','D',0};
71 static const WCHAR SDDL_GENERIC_ALL[] = {'G','A',0};
72 static const WCHAR SDDL_GENERIC_READ[] = {'G','R',0};
73 static const WCHAR SDDL_GENERIC_WRITE[] = {'G','W',0};
74 static const WCHAR SDDL_GENERIC_EXECUTE[] = {'G','X',0};
79 static const WCHAR SDDL_ACCESS_ALLOWED[] = {'A',0};
80 static const WCHAR SDDL_ACCESS_DENIED[] = {'D',0};
81 static const WCHAR SDDL_OBJECT_ACCESS_ALLOWED[] = {'O','A',0};
82 static const WCHAR SDDL_OBJECT_ACCESS_DENIED[] = {'O','D',0};
83 static const WCHAR SDDL_AUDIT[] = {'A','U',0};
84 static const WCHAR SDDL_ALARM[] = {'A','L',0};
85 static const WCHAR SDDL_OBJECT_AUDIT[] = {'O','U',0};
86 static const WCHAR SDDL_OBJECT_ALARMp[] = {'O','L',0};
91 static const WCHAR SDDL_CONTAINER_INHERIT[] = {'C','I',0};
92 static const WCHAR SDDL_OBJECT_INHERIT[] = {'O','I',0};
93 static const WCHAR SDDL_NO_PROPAGATE[] = {'N','P',0};
94 static const WCHAR SDDL_INHERIT_ONLY[] = {'I','O',0};
95 static const WCHAR SDDL_INHERITED[] = {'I','D',0};
96 static const WCHAR SDDL_AUDIT_SUCCESS[] = {'S','A',0};
97 static const WCHAR SDDL_AUDIT_FAILURE[] = {'F','A',0};
99 /* set last error code from NT status and get the proper boolean return value */
100 /* used for functions that are a simple wrapper around the corresponding ntdll API */
101 static inline BOOL set_ntstatus( NTSTATUS status )
103 if (status) SetLastError( RtlNtStatusToDosError( status ));
107 #define WINE_SIZE_OF_WORLD_ACCESS_ACL (sizeof(ACL) + sizeof(ACCESS_ALLOWED_ACE) + sizeof(sidWorld) - sizeof(DWORD))
109 static void GetWorldAccessACL(PACL pACL)
111 PACCESS_ALLOWED_ACE pACE = (PACCESS_ALLOWED_ACE) (pACL + 1);
113 pACL->AclRevision = ACL_REVISION;
115 pACL->AclSize = WINE_SIZE_OF_WORLD_ACCESS_ACL;
119 pACE->Header.AceType = ACCESS_ALLOWED_ACE_TYPE;
120 pACE->Header.AceFlags = CONTAINER_INHERIT_ACE;
121 pACE->Header.AceSize = sizeof(ACCESS_ALLOWED_ACE) + sizeof(sidWorld) - sizeof(DWORD);
122 pACE->Mask = 0xf3ffffff; /* Everything except reserved bits */
123 memcpy(&pACE->SidStart, &sidWorld, sizeof(sidWorld));
126 /************************************************************
127 * ADVAPI_IsLocalComputer
129 * Checks whether the server name indicates local machine.
131 static BOOL ADVAPI_IsLocalComputer(LPCWSTR ServerName)
133 DWORD dwSize = MAX_COMPUTERNAME_LENGTH + 1;
137 if (!ServerName || !ServerName[0])
140 buf = HeapAlloc(GetProcessHeap(), 0, dwSize * sizeof(WCHAR));
141 Result = GetComputerNameW(buf, &dwSize);
142 if (Result && (ServerName[0] == '\\') && (ServerName[1] == '\\'))
144 Result = Result && !lstrcmpW(ServerName, buf);
145 HeapFree(GetProcessHeap(), 0, buf);
150 /* ##############################
151 ###### TOKEN FUNCTIONS ######
152 ##############################
155 /******************************************************************************
156 * OpenProcessToken [ADVAPI32.@]
157 * Opens the access token associated with a process handle.
160 * ProcessHandle [I] Handle to process
161 * DesiredAccess [I] Desired access to process
162 * TokenHandle [O] Pointer to handle of open access token
165 * Success: TRUE. TokenHandle contains the access token.
169 * See NtOpenProcessToken.
172 OpenProcessToken( HANDLE ProcessHandle, DWORD DesiredAccess,
173 HANDLE *TokenHandle )
175 return set_ntstatus(NtOpenProcessToken( ProcessHandle, DesiredAccess, TokenHandle ));
178 /******************************************************************************
179 * OpenThreadToken [ADVAPI32.@]
181 * Opens the access token associated with a thread handle.
184 * ThreadHandle [I] Handle to process
185 * DesiredAccess [I] Desired access to the thread
187 * TokenHandle [O] Destination for the token handle
190 * Success: TRUE. TokenHandle contains the access token.
194 * See NtOpenThreadToken.
197 OpenThreadToken( HANDLE ThreadHandle, DWORD DesiredAccess,
198 BOOL OpenAsSelf, HANDLE *TokenHandle)
200 return set_ntstatus( NtOpenThreadToken(ThreadHandle, DesiredAccess, OpenAsSelf, TokenHandle));
204 AdjustTokenGroups( HANDLE TokenHandle, BOOL ResetToDefault, PTOKEN_GROUPS NewState,
205 DWORD BufferLength, PTOKEN_GROUPS PreviousState, PDWORD ReturnLength )
207 return set_ntstatus( NtAdjustGroupsToken(TokenHandle, ResetToDefault, NewState, BufferLength,
208 PreviousState, ReturnLength));
211 /******************************************************************************
212 * AdjustTokenPrivileges [ADVAPI32.@]
214 * Adjust the privileges of an open token handle.
217 * TokenHandle [I] Handle from OpenProcessToken() or OpenThreadToken()
218 * DisableAllPrivileges [I] TRUE=Remove all privileges, FALSE=Use NewState
219 * NewState [I] Desired new privileges of the token
220 * BufferLength [I] Length of NewState
221 * PreviousState [O] Destination for the previous state
222 * ReturnLength [I/O] Size of PreviousState
226 * Success: TRUE. Privileges are set to NewState and PreviousState is updated.
230 * See NtAdjustPrivilegesToken.
233 AdjustTokenPrivileges( HANDLE TokenHandle, BOOL DisableAllPrivileges,
234 LPVOID NewState, DWORD BufferLength,
235 LPVOID PreviousState, LPDWORD ReturnLength )
241 status = NtAdjustPrivilegesToken(TokenHandle, DisableAllPrivileges,
242 NewState, BufferLength, PreviousState,
244 SetLastError( RtlNtStatusToDosError( status ));
245 if ((status == STATUS_SUCCESS) || (status == STATUS_NOT_ALL_ASSIGNED))
251 /******************************************************************************
252 * CheckTokenMembership [ADVAPI32.@]
254 * Determine if an access token is a member of a SID.
257 * TokenHandle [I] Handle from OpenProcessToken() or OpenThreadToken()
258 * SidToCheck [I] SID that possibly contains the token
259 * IsMember [O] Destination for result.
262 * Success: TRUE. IsMember is TRUE if TokenHandle is a member, FALSE otherwise.
266 CheckTokenMembership( HANDLE TokenHandle, PSID SidToCheck,
269 FIXME("(%p %p %p) stub!\n", TokenHandle, SidToCheck, IsMember);
275 /******************************************************************************
276 * GetTokenInformation [ADVAPI32.@]
278 * Get a type of information about an access token.
281 * token [I] Handle from OpenProcessToken() or OpenThreadToken()
282 * tokeninfoclass [I] A TOKEN_INFORMATION_CLASS from "winnt.h"
283 * tokeninfo [O] Destination for token information
284 * tokeninfolength [I] Length of tokeninfo
285 * retlen [O] Destination for returned token information length
288 * Success: TRUE. tokeninfo contains retlen bytes of token information
292 * See NtQueryInformationToken.
295 GetTokenInformation( HANDLE token, TOKEN_INFORMATION_CLASS tokeninfoclass,
296 LPVOID tokeninfo, DWORD tokeninfolength, LPDWORD retlen )
298 TRACE("(%p, %s, %p, %ld, %p):\n",
300 (tokeninfoclass == TokenUser) ? "TokenUser" :
301 (tokeninfoclass == TokenGroups) ? "TokenGroups" :
302 (tokeninfoclass == TokenPrivileges) ? "TokenPrivileges" :
303 (tokeninfoclass == TokenOwner) ? "TokenOwner" :
304 (tokeninfoclass == TokenPrimaryGroup) ? "TokenPrimaryGroup" :
305 (tokeninfoclass == TokenDefaultDacl) ? "TokenDefaultDacl" :
306 (tokeninfoclass == TokenSource) ? "TokenSource" :
307 (tokeninfoclass == TokenType) ? "TokenType" :
308 (tokeninfoclass == TokenImpersonationLevel) ? "TokenImpersonationLevel" :
309 (tokeninfoclass == TokenStatistics) ? "TokenStatistics" :
310 (tokeninfoclass == TokenRestrictedSids) ? "TokenRestrictedSids" :
311 (tokeninfoclass == TokenSessionId) ? "TokenSessionId" :
312 (tokeninfoclass == TokenGroupsAndPrivileges) ? "TokenGroupsAndPrivileges" :
313 (tokeninfoclass == TokenSessionReference) ? "TokenSessionReference" :
314 (tokeninfoclass == TokenSandBoxInert) ? "TokenSandBoxInert" :
316 tokeninfo, tokeninfolength, retlen);
317 return set_ntstatus( NtQueryInformationToken( token, tokeninfoclass, tokeninfo,
318 tokeninfolength, retlen));
321 /******************************************************************************
322 * SetTokenInformation [ADVAPI32.@]
324 * Set information for an access token.
327 * token [I] Handle from OpenProcessToken() or OpenThreadToken()
328 * tokeninfoclass [I] A TOKEN_INFORMATION_CLASS from "winnt.h"
329 * tokeninfo [I] Token information to set
330 * tokeninfolength [I] Length of tokeninfo
333 * Success: TRUE. The information for the token is set to tokeninfo.
337 SetTokenInformation( HANDLE token, TOKEN_INFORMATION_CLASS tokeninfoclass,
338 LPVOID tokeninfo, DWORD tokeninfolength )
340 TRACE("(%p, %s, %p, %ld): stub\n",
342 (tokeninfoclass == TokenUser) ? "TokenUser" :
343 (tokeninfoclass == TokenGroups) ? "TokenGroups" :
344 (tokeninfoclass == TokenPrivileges) ? "TokenPrivileges" :
345 (tokeninfoclass == TokenOwner) ? "TokenOwner" :
346 (tokeninfoclass == TokenPrimaryGroup) ? "TokenPrimaryGroup" :
347 (tokeninfoclass == TokenDefaultDacl) ? "TokenDefaultDacl" :
348 (tokeninfoclass == TokenSource) ? "TokenSource" :
349 (tokeninfoclass == TokenType) ? "TokenType" :
350 (tokeninfoclass == TokenImpersonationLevel) ? "TokenImpersonationLevel" :
351 (tokeninfoclass == TokenStatistics) ? "TokenStatistics" :
352 (tokeninfoclass == TokenRestrictedSids) ? "TokenRestrictedSids" :
353 (tokeninfoclass == TokenSessionId) ? "TokenSessionId" :
354 (tokeninfoclass == TokenGroupsAndPrivileges) ? "TokenGroupsAndPrivileges" :
355 (tokeninfoclass == TokenSessionReference) ? "TokenSessionReference" :
356 (tokeninfoclass == TokenSandBoxInert) ? "TokenSandBoxInert" :
358 tokeninfo, tokeninfolength);
360 return set_ntstatus( NtSetInformationToken( token, tokeninfoclass, tokeninfo, tokeninfolength ));
363 /*************************************************************************
364 * SetThreadToken [ADVAPI32.@]
366 * Assigns an 'impersonation token' to a thread so it can assume the
367 * security privileges of another thread or process. Can also remove
368 * a previously assigned token.
371 * thread [O] Handle to thread to set the token for
372 * token [I] Token to set
375 * Success: TRUE. The threads access token is set to token
379 * Only supported on NT or higher. On Win9X this function does nothing.
380 * See SetTokenInformation.
382 BOOL WINAPI SetThreadToken(PHANDLE thread, HANDLE token)
384 return set_ntstatus( NtSetInformationThread( thread ? *thread : GetCurrentThread(),
385 ThreadImpersonationToken, &token, sizeof token ));
388 /* ##############################
389 ###### SID FUNCTIONS ######
390 ##############################
393 /******************************************************************************
394 * AllocateAndInitializeSid [ADVAPI32.@]
397 * pIdentifierAuthority []
398 * nSubAuthorityCount []
410 AllocateAndInitializeSid( PSID_IDENTIFIER_AUTHORITY pIdentifierAuthority,
411 BYTE nSubAuthorityCount,
412 DWORD nSubAuthority0, DWORD nSubAuthority1,
413 DWORD nSubAuthority2, DWORD nSubAuthority3,
414 DWORD nSubAuthority4, DWORD nSubAuthority5,
415 DWORD nSubAuthority6, DWORD nSubAuthority7,
418 return set_ntstatus( RtlAllocateAndInitializeSid(
419 pIdentifierAuthority, nSubAuthorityCount,
420 nSubAuthority0, nSubAuthority1, nSubAuthority2, nSubAuthority3,
421 nSubAuthority4, nSubAuthority5, nSubAuthority6, nSubAuthority7,
425 /******************************************************************************
426 * FreeSid [ADVAPI32.@]
435 return NULL; /* is documented like this */
438 /******************************************************************************
439 * CopySid [ADVAPI32.@]
442 * nDestinationSidLength []
447 CopySid( DWORD nDestinationSidLength, PSID pDestinationSid, PSID pSourceSid )
449 return RtlCopySid(nDestinationSidLength, pDestinationSid, pSourceSid);
453 IsTokenRestricted( HANDLE TokenHandle )
455 TOKEN_GROUPS *groups;
460 TRACE("(%p)\n", TokenHandle);
462 status = NtQueryInformationToken(TokenHandle, TokenRestrictedSids, NULL, 0, &size);
463 if (status != STATUS_BUFFER_TOO_SMALL)
466 groups = HeapAlloc(GetProcessHeap(), 0, size);
469 SetLastError(ERROR_OUTOFMEMORY);
473 status = NtQueryInformationToken(TokenHandle, TokenRestrictedSids, groups, size, &size);
474 if (status != STATUS_SUCCESS)
476 HeapFree(GetProcessHeap(), 0, groups);
477 return set_ntstatus(status);
480 if (groups->GroupCount)
485 HeapFree(GetProcessHeap(), 0, groups);
490 /******************************************************************************
491 * IsValidSid [ADVAPI32.@]
497 IsValidSid( PSID pSid )
499 return RtlValidSid( pSid );
502 /******************************************************************************
503 * EqualSid [ADVAPI32.@]
510 EqualSid( PSID pSid1, PSID pSid2 )
512 return RtlEqualSid( pSid1, pSid2 );
515 /******************************************************************************
516 * EqualPrefixSid [ADVAPI32.@]
518 BOOL WINAPI EqualPrefixSid (PSID pSid1, PSID pSid2)
520 return RtlEqualPrefixSid(pSid1, pSid2);
523 /******************************************************************************
524 * GetSidLengthRequired [ADVAPI32.@]
527 * nSubAuthorityCount []
530 GetSidLengthRequired( BYTE nSubAuthorityCount )
532 return RtlLengthRequiredSid(nSubAuthorityCount);
535 /******************************************************************************
536 * InitializeSid [ADVAPI32.@]
539 * pIdentifierAuthority []
544 PSID_IDENTIFIER_AUTHORITY pIdentifierAuthority,
545 BYTE nSubAuthorityCount)
547 return RtlInitializeSid(pSid, pIdentifierAuthority, nSubAuthorityCount);
551 GetEffectiveRightsFromAclA( PACL pacl, PTRUSTEEA pTrustee, PACCESS_MASK pAccessRights )
553 FIXME("%p %p %p - stub\n", pacl, pTrustee, pAccessRights);
559 GetEffectiveRightsFromAclW( PACL pacl, PTRUSTEEW pTrustee, PACCESS_MASK pAccessRights )
561 FIXME("%p %p %p - stub\n", pacl, pTrustee, pAccessRights);
566 /******************************************************************************
567 * GetSidIdentifierAuthority [ADVAPI32.@]
572 PSID_IDENTIFIER_AUTHORITY WINAPI
573 GetSidIdentifierAuthority( PSID pSid )
575 return RtlIdentifierAuthoritySid(pSid);
578 /******************************************************************************
579 * GetSidSubAuthority [ADVAPI32.@]
586 GetSidSubAuthority( PSID pSid, DWORD nSubAuthority )
588 return RtlSubAuthoritySid(pSid, nSubAuthority);
591 /******************************************************************************
592 * GetSidSubAuthorityCount [ADVAPI32.@]
598 GetSidSubAuthorityCount (PSID pSid)
600 return RtlSubAuthorityCountSid(pSid);
603 /******************************************************************************
604 * GetLengthSid [ADVAPI32.@]
610 GetLengthSid (PSID pSid)
612 return RtlLengthSid(pSid);
615 /* ##############################################
616 ###### SECURITY DESCRIPTOR FUNCTIONS ######
617 ##############################################
620 /******************************************************************************
621 * BuildSecurityDescriptorA [ADVAPI32.@]
628 * cCountOfAccessEntries [I]
629 * pListOfAccessEntries [I]
630 * cCountOfAuditEntries [I]
631 * pListofAuditEntries [I]
633 * lpdwBufferLength [I/O]
637 * Success: ERROR_SUCCESS
638 * Failure: nonzero error code from Winerror.h
640 DWORD WINAPI BuildSecurityDescriptorA(
643 IN ULONG cCountOfAccessEntries,
644 IN PEXPLICIT_ACCESSA pListOfAccessEntries,
645 IN ULONG cCountOfAuditEntries,
646 IN PEXPLICIT_ACCESSA pListofAuditEntries,
647 IN PSECURITY_DESCRIPTOR pOldSD,
648 IN OUT PULONG lpdwBufferLength,
649 OUT PSECURITY_DESCRIPTOR* pNewSD)
651 FIXME("(%p,%p,%ld,%p,%ld,%p,%p,%p,%p) stub!\n",pOwner,pGroup,
652 cCountOfAccessEntries,pListOfAccessEntries,cCountOfAuditEntries,
653 pListofAuditEntries,pOldSD,lpdwBufferLength,pNewSD);
655 return ERROR_CALL_NOT_IMPLEMENTED;
658 /******************************************************************************
659 * BuildSecurityDescriptorW [ADVAPI32.@]
661 * See BuildSecurityDescriptorA.
663 DWORD WINAPI BuildSecurityDescriptorW(
666 IN ULONG cCountOfAccessEntries,
667 IN PEXPLICIT_ACCESSW pListOfAccessEntries,
668 IN ULONG cCountOfAuditEntries,
669 IN PEXPLICIT_ACCESSW pListofAuditEntries,
670 IN PSECURITY_DESCRIPTOR pOldSD,
671 IN OUT PULONG lpdwBufferLength,
672 OUT PSECURITY_DESCRIPTOR* pNewSD)
674 FIXME("(%p,%p,%ld,%p,%ld,%p,%p,%p,%p) stub!\n",pOwner,pGroup,
675 cCountOfAccessEntries,pListOfAccessEntries,cCountOfAuditEntries,
676 pListofAuditEntries,pOldSD,lpdwBufferLength,pNewSD);
678 return ERROR_CALL_NOT_IMPLEMENTED;
681 /******************************************************************************
682 * InitializeSecurityDescriptor [ADVAPI32.@]
689 InitializeSecurityDescriptor( PSECURITY_DESCRIPTOR pDescr, DWORD revision )
691 return set_ntstatus( RtlCreateSecurityDescriptor(pDescr, revision ));
695 /******************************************************************************
696 * MakeAbsoluteSD [ADVAPI32.@]
698 BOOL WINAPI MakeAbsoluteSD (
699 IN PSECURITY_DESCRIPTOR pSelfRelativeSecurityDescriptor,
700 OUT PSECURITY_DESCRIPTOR pAbsoluteSecurityDescriptor,
701 OUT LPDWORD lpdwAbsoluteSecurityDescriptorSize,
703 OUT LPDWORD lpdwDaclSize,
705 OUT LPDWORD lpdwSaclSize,
707 OUT LPDWORD lpdwOwnerSize,
708 OUT PSID pPrimaryGroup,
709 OUT LPDWORD lpdwPrimaryGroupSize)
711 return set_ntstatus( RtlSelfRelativeToAbsoluteSD(pSelfRelativeSecurityDescriptor,
712 pAbsoluteSecurityDescriptor,
713 lpdwAbsoluteSecurityDescriptorSize,
714 pDacl, lpdwDaclSize, pSacl, lpdwSaclSize,
715 pOwner, lpdwOwnerSize,
716 pPrimaryGroup, lpdwPrimaryGroupSize));
719 /******************************************************************************
720 * GetKernelObjectSecurity [ADVAPI32.@]
722 BOOL WINAPI GetKernelObjectSecurity(
724 SECURITY_INFORMATION RequestedInformation,
725 PSECURITY_DESCRIPTOR pSecurityDescriptor,
727 LPDWORD lpnLengthNeeded )
729 TRACE("(%p,0x%08lx,%p,0x%08lx,%p)\n", Handle, RequestedInformation,
730 pSecurityDescriptor, nLength, lpnLengthNeeded);
732 return set_ntstatus( NtQuerySecurityObject(Handle, RequestedInformation, pSecurityDescriptor,
733 nLength, lpnLengthNeeded ));
736 /******************************************************************************
737 * GetPrivateObjectSecurity [ADVAPI32.@]
739 BOOL WINAPI GetPrivateObjectSecurity(
740 PSECURITY_DESCRIPTOR ObjectDescriptor,
741 SECURITY_INFORMATION SecurityInformation,
742 PSECURITY_DESCRIPTOR ResultantDescriptor,
743 DWORD DescriptorLength,
744 PDWORD ReturnLength )
746 TRACE("(%p,0x%08lx,%p,0x%08lx,%p)\n", ObjectDescriptor, SecurityInformation,
747 ResultantDescriptor, DescriptorLength, ReturnLength);
749 return set_ntstatus( NtQuerySecurityObject(ObjectDescriptor, SecurityInformation,
750 ResultantDescriptor, DescriptorLength, ReturnLength ));
753 /******************************************************************************
754 * GetSecurityDescriptorLength [ADVAPI32.@]
756 DWORD WINAPI GetSecurityDescriptorLength( PSECURITY_DESCRIPTOR pDescr)
758 return RtlLengthSecurityDescriptor(pDescr);
761 /******************************************************************************
762 * GetSecurityDescriptorOwner [ADVAPI32.@]
766 * lpbOwnerDefaulted []
769 GetSecurityDescriptorOwner( PSECURITY_DESCRIPTOR pDescr, PSID *pOwner,
770 LPBOOL lpbOwnerDefaulted )
773 BOOL ret = set_ntstatus( RtlGetOwnerSecurityDescriptor( pDescr, pOwner, &defaulted ));
774 *lpbOwnerDefaulted = defaulted;
778 /******************************************************************************
779 * SetSecurityDescriptorOwner [ADVAPI32.@]
783 BOOL WINAPI SetSecurityDescriptorOwner( PSECURITY_DESCRIPTOR pSecurityDescriptor,
784 PSID pOwner, BOOL bOwnerDefaulted)
786 return set_ntstatus( RtlSetOwnerSecurityDescriptor(pSecurityDescriptor, pOwner, bOwnerDefaulted));
788 /******************************************************************************
789 * GetSecurityDescriptorGroup [ADVAPI32.@]
791 BOOL WINAPI GetSecurityDescriptorGroup(
792 PSECURITY_DESCRIPTOR SecurityDescriptor,
794 LPBOOL GroupDefaulted)
797 BOOL ret = set_ntstatus( RtlGetGroupSecurityDescriptor(SecurityDescriptor, Group, &defaulted ));
798 *GroupDefaulted = defaulted;
801 /******************************************************************************
802 * SetSecurityDescriptorGroup [ADVAPI32.@]
804 BOOL WINAPI SetSecurityDescriptorGroup ( PSECURITY_DESCRIPTOR SecurityDescriptor,
805 PSID Group, BOOL GroupDefaulted)
807 return set_ntstatus( RtlSetGroupSecurityDescriptor( SecurityDescriptor, Group, GroupDefaulted));
810 /******************************************************************************
811 * IsValidSecurityDescriptor [ADVAPI32.@]
817 IsValidSecurityDescriptor( PSECURITY_DESCRIPTOR SecurityDescriptor )
819 return set_ntstatus( RtlValidSecurityDescriptor(SecurityDescriptor));
822 /******************************************************************************
823 * GetSecurityDescriptorDacl [ADVAPI32.@]
825 BOOL WINAPI GetSecurityDescriptorDacl(
826 IN PSECURITY_DESCRIPTOR pSecurityDescriptor,
827 OUT LPBOOL lpbDaclPresent,
829 OUT LPBOOL lpbDaclDefaulted)
831 BOOLEAN present, defaulted;
832 BOOL ret = set_ntstatus( RtlGetDaclSecurityDescriptor(pSecurityDescriptor, &present, pDacl, &defaulted));
833 *lpbDaclPresent = present;
834 *lpbDaclDefaulted = defaulted;
838 /******************************************************************************
839 * SetSecurityDescriptorDacl [ADVAPI32.@]
842 SetSecurityDescriptorDacl (
843 PSECURITY_DESCRIPTOR lpsd,
848 return set_ntstatus( RtlSetDaclSecurityDescriptor (lpsd, daclpresent, dacl, dacldefaulted ) );
850 /******************************************************************************
851 * GetSecurityDescriptorSacl [ADVAPI32.@]
853 BOOL WINAPI GetSecurityDescriptorSacl(
854 IN PSECURITY_DESCRIPTOR lpsd,
855 OUT LPBOOL lpbSaclPresent,
857 OUT LPBOOL lpbSaclDefaulted)
859 BOOLEAN present, defaulted;
860 BOOL ret = set_ntstatus( RtlGetSaclSecurityDescriptor(lpsd, &present, pSacl, &defaulted) );
861 *lpbSaclPresent = present;
862 *lpbSaclDefaulted = defaulted;
866 /**************************************************************************
867 * SetSecurityDescriptorSacl [ADVAPI32.@]
869 BOOL WINAPI SetSecurityDescriptorSacl (
870 PSECURITY_DESCRIPTOR lpsd,
875 return set_ntstatus (RtlSetSaclSecurityDescriptor(lpsd, saclpresent, lpsacl, sacldefaulted));
877 /******************************************************************************
878 * MakeSelfRelativeSD [ADVAPI32.@]
887 IN PSECURITY_DESCRIPTOR pAbsoluteSecurityDescriptor,
888 IN PSECURITY_DESCRIPTOR pSelfRelativeSecurityDescriptor,
889 IN OUT LPDWORD lpdwBufferLength)
891 return set_ntstatus( RtlMakeSelfRelativeSD( pAbsoluteSecurityDescriptor,
892 pSelfRelativeSecurityDescriptor, lpdwBufferLength));
895 /******************************************************************************
896 * GetSecurityDescriptorControl [ADVAPI32.@]
899 BOOL WINAPI GetSecurityDescriptorControl ( PSECURITY_DESCRIPTOR pSecurityDescriptor,
900 PSECURITY_DESCRIPTOR_CONTROL pControl, LPDWORD lpdwRevision)
902 return set_ntstatus( RtlGetControlSecurityDescriptor(pSecurityDescriptor,pControl,lpdwRevision));
905 /* ##############################
906 ###### ACL FUNCTIONS ######
907 ##############################
910 /*************************************************************************
911 * InitializeAcl [ADVAPI32.@]
913 BOOL WINAPI InitializeAcl(PACL acl, DWORD size, DWORD rev)
915 return set_ntstatus( RtlCreateAcl(acl, size, rev));
918 BOOL WINAPI ImpersonateNamedPipeClient( HANDLE hNamedPipe )
920 TRACE("(%p)\n", hNamedPipe);
922 return set_ntstatus( NtFsControlFile(hNamedPipe, NULL, NULL, NULL, NULL,
923 FSCTL_PIPE_IMPERSONATE, NULL, 0, NULL, 0) );
926 /******************************************************************************
927 * AddAccessAllowedAce [ADVAPI32.@]
929 BOOL WINAPI AddAccessAllowedAce(
931 IN DWORD dwAceRevision,
935 return set_ntstatus(RtlAddAccessAllowedAce(pAcl, dwAceRevision, AccessMask, pSid));
938 /******************************************************************************
939 * AddAccessAllowedAceEx [ADVAPI32.@]
941 BOOL WINAPI AddAccessAllowedAceEx(
943 IN DWORD dwAceRevision,
948 return set_ntstatus(RtlAddAccessAllowedAceEx(pAcl, dwAceRevision, AceFlags, AccessMask, pSid));
951 /******************************************************************************
952 * AddAccessDeniedAce [ADVAPI32.@]
954 BOOL WINAPI AddAccessDeniedAce(
956 IN DWORD dwAceRevision,
960 return set_ntstatus(RtlAddAccessDeniedAce(pAcl, dwAceRevision, AccessMask, pSid));
963 /******************************************************************************
964 * AddAccessDeniedAceEx [ADVAPI32.@]
966 BOOL WINAPI AddAccessDeniedAceEx(
968 IN DWORD dwAceRevision,
973 return set_ntstatus(RtlAddAccessDeniedAceEx(pAcl, dwAceRevision, AceFlags, AccessMask, pSid));
976 /******************************************************************************
977 * AddAce [ADVAPI32.@]
981 IN DWORD dwAceRevision,
982 IN DWORD dwStartingAceIndex,
984 DWORD nAceListLength)
986 return set_ntstatus(RtlAddAce(pAcl, dwAceRevision, dwStartingAceIndex, pAceList, nAceListLength));
989 /******************************************************************************
990 * DeleteAce [ADVAPI32.@]
992 BOOL WINAPI DeleteAce(PACL pAcl, DWORD dwAceIndex)
994 return set_ntstatus(RtlDeleteAce(pAcl, dwAceIndex));
997 /******************************************************************************
998 * FindFirstFreeAce [ADVAPI32.@]
1000 BOOL WINAPI FindFirstFreeAce(IN PACL pAcl, LPVOID * pAce)
1002 return RtlFirstFreeAce(pAcl, (PACE_HEADER *)pAce);
1005 /******************************************************************************
1006 * GetAce [ADVAPI32.@]
1008 BOOL WINAPI GetAce(PACL pAcl,DWORD dwAceIndex,LPVOID *pAce )
1010 return set_ntstatus(RtlGetAce(pAcl, dwAceIndex, pAce));
1013 /******************************************************************************
1014 * GetAclInformation [ADVAPI32.@]
1016 BOOL WINAPI GetAclInformation(
1018 LPVOID pAclInformation,
1019 DWORD nAclInformationLength,
1020 ACL_INFORMATION_CLASS dwAclInformationClass)
1022 return set_ntstatus(RtlQueryInformationAcl(pAcl, pAclInformation,
1023 nAclInformationLength, dwAclInformationClass));
1026 /******************************************************************************
1027 * IsValidAcl [ADVAPI32.@]
1029 BOOL WINAPI IsValidAcl(IN PACL pAcl)
1031 return RtlValidAcl(pAcl);
1034 /* ##############################
1035 ###### MISC FUNCTIONS ######
1036 ##############################
1039 /******************************************************************************
1040 * AllocateLocallyUniqueId [ADVAPI32.@]
1045 BOOL WINAPI AllocateLocallyUniqueId( PLUID lpLuid )
1047 return set_ntstatus(NtAllocateLocallyUniqueId(lpLuid));
1050 static const WCHAR SE_CREATE_TOKEN_NAME_W[] =
1051 { 'S','e','C','r','e','a','t','e','T','o','k','e','n','P','r','i','v','i','l','e','g','e',0 };
1052 static const WCHAR SE_ASSIGNPRIMARYTOKEN_NAME_W[] =
1053 { '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 };
1054 static const WCHAR SE_LOCK_MEMORY_NAME_W[] =
1055 { 'S','e','L','o','c','k','M','e','m','o','r','y','P','r','i','v','i','l','e','g','e',0 };
1056 static const WCHAR SE_INCREASE_QUOTA_NAME_W[] =
1057 { '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 };
1058 static const WCHAR SE_MACHINE_ACCOUNT_NAME_W[] =
1059 { '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 };
1060 static const WCHAR SE_TCB_NAME_W[] =
1061 { 'S','e','T','c','b','P','r','i','v','i','l','e','g','e',0 };
1062 static const WCHAR SE_SECURITY_NAME_W[] =
1063 { 'S','e','S','e','c','u','r','i','t','y','P','r','i','v','i','l','e','g','e',0 };
1064 static const WCHAR SE_TAKE_OWNERSHIP_NAME_W[] =
1065 { '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 };
1066 static const WCHAR SE_LOAD_DRIVER_NAME_W[] =
1067 { 'S','e','L','o','a','d','D','r','i','v','e','r','P','r','i','v','i','l','e','g','e',0 };
1068 static const WCHAR SE_SYSTEM_PROFILE_NAME_W[] =
1069 { '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 };
1070 static const WCHAR SE_SYSTEMTIME_NAME_W[] =
1071 { 'S','e','S','y','s','t','e','m','t','i','m','e','P','r','i','v','i','l','e','g','e',0 };
1072 static const WCHAR SE_PROF_SINGLE_PROCESS_NAME_W[] =
1073 { '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 };
1074 static const WCHAR SE_INC_BASE_PRIORITY_NAME_W[] =
1075 { '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 };
1076 static const WCHAR SE_CREATE_PAGEFILE_NAME_W[] =
1077 { '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 };
1078 static const WCHAR SE_CREATE_PERMANENT_NAME_W[] =
1079 { '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 };
1080 static const WCHAR SE_BACKUP_NAME_W[] =
1081 { 'S','e','B','a','c','k','u','p','P','r','i','v','i','l','e','g','e',0 };
1082 static const WCHAR SE_RESTORE_NAME_W[] =
1083 { 'S','e','R','e','s','t','o','r','e','P','r','i','v','i','l','e','g','e',0 };
1084 static const WCHAR SE_SHUTDOWN_NAME_W[] =
1085 { 'S','e','S','h','u','t','d','o','w','n','P','r','i','v','i','l','e','g','e',0 };
1086 static const WCHAR SE_DEBUG_NAME_W[] =
1087 { 'S','e','D','e','b','u','g','P','r','i','v','i','l','e','g','e',0 };
1088 static const WCHAR SE_AUDIT_NAME_W[] =
1089 { 'S','e','A','u','d','i','t','P','r','i','v','i','l','e','g','e',0 };
1090 static const WCHAR SE_SYSTEM_ENVIRONMENT_NAME_W[] =
1091 { '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 };
1092 static const WCHAR SE_CHANGE_NOTIFY_NAME_W[] =
1093 { 'S','e','C','h','a','n','g','e','N','o','t','i','f','y','P','r','i','v','i','l','e','g','e',0 };
1094 static const WCHAR SE_REMOTE_SHUTDOWN_NAME_W[] =
1095 { '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 };
1096 static const WCHAR SE_UNDOCK_NAME_W[] =
1097 { 'S','e','U','n','d','o','c','k','P','r','i','v','i','l','e','g','e',0 };
1098 static const WCHAR SE_SYNC_AGENT_NAME_W[] =
1099 { 'S','e','S','y','n','c','A','g','e','n','t','P','r','i','v','i','l','e','g','e',0 };
1100 static const WCHAR SE_ENABLE_DELEGATION_NAME_W[] =
1101 { '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 };
1102 static const WCHAR SE_MANAGE_VOLUME_NAME_W[] =
1103 { 'S','e','M','a','n','a','g','e','V','o','l','u','m','e','P','r','i','v','i','l','e','g','e',0 };
1104 static const WCHAR SE_IMPERSONATE_NAME_W[] =
1105 { 'S','e','I','m','p','e','r','s','o','n','a','t','e','P','r','i','v','i','l','e','g','e',0 };
1106 static const WCHAR SE_CREATE_GLOBAL_NAME_W[] =
1107 { 'S','e','C','r','e','a','t','e','G','l','o','b','a','l','P','r','i','v','i','l','e','g','e',0 };
1109 static const WCHAR * const WellKnownPrivNames[SE_MAX_WELL_KNOWN_PRIVILEGE + 1] =
1113 SE_CREATE_TOKEN_NAME_W,
1114 SE_ASSIGNPRIMARYTOKEN_NAME_W,
1115 SE_LOCK_MEMORY_NAME_W,
1116 SE_INCREASE_QUOTA_NAME_W,
1117 SE_MACHINE_ACCOUNT_NAME_W,
1120 SE_TAKE_OWNERSHIP_NAME_W,
1121 SE_LOAD_DRIVER_NAME_W,
1122 SE_SYSTEM_PROFILE_NAME_W,
1123 SE_SYSTEMTIME_NAME_W,
1124 SE_PROF_SINGLE_PROCESS_NAME_W,
1125 SE_INC_BASE_PRIORITY_NAME_W,
1126 SE_CREATE_PAGEFILE_NAME_W,
1127 SE_CREATE_PERMANENT_NAME_W,
1133 SE_SYSTEM_ENVIRONMENT_NAME_W,
1134 SE_CHANGE_NOTIFY_NAME_W,
1135 SE_REMOTE_SHUTDOWN_NAME_W,
1137 SE_SYNC_AGENT_NAME_W,
1138 SE_ENABLE_DELEGATION_NAME_W,
1139 SE_MANAGE_VOLUME_NAME_W,
1140 SE_IMPERSONATE_NAME_W,
1141 SE_CREATE_GLOBAL_NAME_W,
1144 /******************************************************************************
1145 * LookupPrivilegeValueW [ADVAPI32.@]
1147 * See LookupPrivilegeValueA.
1150 LookupPrivilegeValueW( LPCWSTR lpSystemName, LPCWSTR lpName, PLUID lpLuid )
1154 TRACE("%s,%s,%p\n",debugstr_w(lpSystemName), debugstr_w(lpName), lpLuid);
1156 if (!ADVAPI_IsLocalComputer(lpSystemName))
1158 SetLastError(RPC_S_SERVER_UNAVAILABLE);
1163 SetLastError(ERROR_NO_SUCH_PRIVILEGE);
1166 for( i=SE_MIN_WELL_KNOWN_PRIVILEGE; i<SE_MAX_WELL_KNOWN_PRIVILEGE; i++ )
1168 if( !WellKnownPrivNames[i] )
1170 if( strcmpiW( WellKnownPrivNames[i], lpName) )
1172 lpLuid->LowPart = i;
1173 lpLuid->HighPart = 0;
1174 TRACE( "%s -> %08lx-%08lx\n",debugstr_w( lpSystemName ),
1175 lpLuid->HighPart, lpLuid->LowPart );
1178 SetLastError(ERROR_NO_SUCH_PRIVILEGE);
1182 /******************************************************************************
1183 * LookupPrivilegeValueA [ADVAPI32.@]
1185 * Retrieves LUID used on a system to represent the privilege name.
1188 * lpSystemName [I] Name of the system
1189 * lpName [I] Name of the privilege
1190 * lpLuid [O] Destination for the resulting LUID
1193 * Success: TRUE. lpLuid contains the requested LUID.
1197 LookupPrivilegeValueA( LPCSTR lpSystemName, LPCSTR lpName, PLUID lpLuid )
1199 UNICODE_STRING lpSystemNameW;
1200 UNICODE_STRING lpNameW;
1203 RtlCreateUnicodeStringFromAsciiz(&lpSystemNameW, lpSystemName);
1204 RtlCreateUnicodeStringFromAsciiz(&lpNameW,lpName);
1205 ret = LookupPrivilegeValueW(lpSystemNameW.Buffer, lpNameW.Buffer, lpLuid);
1206 RtlFreeUnicodeString(&lpNameW);
1207 RtlFreeUnicodeString(&lpSystemNameW);
1211 BOOL WINAPI LookupPrivilegeDisplayNameA( LPCSTR lpSystemName, LPCSTR lpName, LPSTR lpDisplayName,
1212 LPDWORD cchDisplayName, LPDWORD lpLanguageId )
1214 FIXME("%s %s %s %p %p - stub\n", debugstr_a(lpSystemName), debugstr_a(lpName),
1215 debugstr_a(lpDisplayName), cchDisplayName, lpLanguageId);
1220 BOOL WINAPI LookupPrivilegeDisplayNameW( LPCWSTR lpSystemName, LPCWSTR lpName, LPWSTR lpDisplayName,
1221 LPDWORD cchDisplayName, LPDWORD lpLanguageId )
1223 FIXME("%s %s %s %p %p - stub\n", debugstr_w(lpSystemName), debugstr_w(lpName),
1224 debugstr_w(lpDisplayName), cchDisplayName, lpLanguageId);
1229 /******************************************************************************
1230 * LookupPrivilegeNameA [ADVAPI32.@]
1232 * See LookupPrivilegeNameW.
1235 LookupPrivilegeNameA( LPCSTR lpSystemName, PLUID lpLuid, LPSTR lpName,
1238 UNICODE_STRING lpSystemNameW;
1242 TRACE("%s %p %p %p\n", debugstr_a(lpSystemName), lpLuid, lpName, cchName);
1244 RtlCreateUnicodeStringFromAsciiz(&lpSystemNameW, lpSystemName);
1245 ret = LookupPrivilegeNameW(lpSystemNameW.Buffer, lpLuid, NULL, &wLen);
1246 if (!ret && GetLastError() == ERROR_INSUFFICIENT_BUFFER)
1248 LPWSTR lpNameW = HeapAlloc(GetProcessHeap(), 0, wLen * sizeof(WCHAR));
1250 ret = LookupPrivilegeNameW(lpSystemNameW.Buffer, lpLuid, lpNameW,
1254 /* Windows crashes if cchName is NULL, so will I */
1255 int len = WideCharToMultiByte(CP_ACP, 0, lpNameW, -1, lpName,
1256 *cchName, NULL, NULL);
1260 /* WideCharToMultiByte failed */
1263 else if (len > *cchName)
1266 SetLastError(ERROR_INSUFFICIENT_BUFFER);
1271 /* WideCharToMultiByte succeeded, output length needs to be
1272 * length not including NULL terminator
1277 HeapFree(GetProcessHeap(), 0, lpNameW);
1279 RtlFreeUnicodeString(&lpSystemNameW);
1283 /******************************************************************************
1284 * LookupPrivilegeNameW [ADVAPI32.@]
1286 * Retrieves the privilege name referred to by the LUID lpLuid.
1289 * lpSystemName [I] Name of the system
1290 * lpLuid [I] Privilege value
1291 * lpName [O] Name of the privilege
1292 * cchName [I/O] Number of characters in lpName.
1295 * Success: TRUE. lpName contains the name of the privilege whose value is
1300 * Only well-known privilege names (those defined in winnt.h) can be retrieved
1301 * using this function.
1302 * If the length of lpName is too small, on return *cchName will contain the
1303 * number of WCHARs needed to contain the privilege, including the NULL
1304 * terminator, and GetLastError will return ERROR_INSUFFICIENT_BUFFER.
1305 * On success, *cchName will contain the number of characters stored in
1306 * lpName, NOT including the NULL terminator.
1309 LookupPrivilegeNameW( LPCWSTR lpSystemName, PLUID lpLuid, LPWSTR lpName,
1314 TRACE("%s,%p,%p,%p\n",debugstr_w(lpSystemName), lpLuid, lpName, cchName);
1316 if (!ADVAPI_IsLocalComputer(lpSystemName))
1318 SetLastError(RPC_S_SERVER_UNAVAILABLE);
1321 if (lpLuid->HighPart || (lpLuid->LowPart < SE_MIN_WELL_KNOWN_PRIVILEGE ||
1322 lpLuid->LowPart > SE_MAX_WELL_KNOWN_PRIVILEGE))
1324 SetLastError(ERROR_NO_SUCH_PRIVILEGE);
1327 privNameLen = strlenW(WellKnownPrivNames[lpLuid->LowPart]);
1328 /* Windows crashes if cchName is NULL, so will I */
1329 if (*cchName <= privNameLen)
1331 *cchName = privNameLen + 1;
1332 SetLastError(ERROR_INSUFFICIENT_BUFFER);
1337 strcpyW(lpName, WellKnownPrivNames[lpLuid->LowPart]);
1338 *cchName = privNameLen;
1343 /******************************************************************************
1344 * GetFileSecurityA [ADVAPI32.@]
1346 * Obtains Specified information about the security of a file or directory.
1349 * lpFileName [I] Name of the file to get info for
1350 * RequestedInformation [I] SE_ flags from "winnt.h"
1351 * pSecurityDescriptor [O] Destination for security information
1352 * nLength [I] Length of pSecurityDescriptor
1353 * lpnLengthNeeded [O] Destination for length of returned security information
1356 * Success: TRUE. pSecurityDescriptor contains the requested information.
1357 * Failure: FALSE. lpnLengthNeeded contains the required space to return the info.
1360 * The information returned is constrained by the callers access rights and
1364 GetFileSecurityA( LPCSTR lpFileName,
1365 SECURITY_INFORMATION RequestedInformation,
1366 PSECURITY_DESCRIPTOR pSecurityDescriptor,
1367 DWORD nLength, LPDWORD lpnLengthNeeded )
1375 len = MultiByteToWideChar( CP_ACP, 0, lpFileName, -1, NULL, 0 );
1376 name = HeapAlloc( GetProcessHeap(), 0, len*sizeof(WCHAR) );
1377 MultiByteToWideChar( CP_ACP, 0, lpFileName, -1, name, len );
1380 r = GetFileSecurityW( name, RequestedInformation, pSecurityDescriptor,
1381 nLength, lpnLengthNeeded );
1382 HeapFree( GetProcessHeap(), 0, name );
1387 /******************************************************************************
1388 * GetFileSecurityW [ADVAPI32.@]
1390 * See GetFileSecurityA.
1393 GetFileSecurityW( LPCWSTR lpFileName,
1394 SECURITY_INFORMATION RequestedInformation,
1395 PSECURITY_DESCRIPTOR pSecurityDescriptor,
1396 DWORD nLength, LPDWORD lpnLengthNeeded )
1401 SECURITY_DESCRIPTOR_RELATIVE *pSDRelative;
1403 if(INVALID_FILE_ATTRIBUTES == GetFileAttributesW(lpFileName))
1406 FIXME("(%s) : returns fake SECURITY_DESCRIPTOR\n", debugstr_w(lpFileName) );
1408 nNeeded = sizeof(SECURITY_DESCRIPTOR_RELATIVE);
1409 if (RequestedInformation & OWNER_SECURITY_INFORMATION)
1410 nNeeded += sizeof(sidWorld);
1411 if (RequestedInformation & GROUP_SECURITY_INFORMATION)
1412 nNeeded += sizeof(sidWorld);
1413 if (RequestedInformation & DACL_SECURITY_INFORMATION)
1414 nNeeded += WINE_SIZE_OF_WORLD_ACCESS_ACL;
1415 if (RequestedInformation & SACL_SECURITY_INFORMATION)
1416 nNeeded += WINE_SIZE_OF_WORLD_ACCESS_ACL;
1418 *lpnLengthNeeded = nNeeded;
1420 if (nNeeded > nLength)
1423 if (!InitializeSecurityDescriptor(pSecurityDescriptor, SECURITY_DESCRIPTOR_REVISION))
1426 pSDRelative = (PISECURITY_DESCRIPTOR_RELATIVE) pSecurityDescriptor;
1427 pSDRelative->Control |= SE_SELF_RELATIVE;
1428 pBuffer = (LPBYTE) pSDRelative;
1429 iLocNow = sizeof(SECURITY_DESCRIPTOR_RELATIVE);
1431 if (RequestedInformation & OWNER_SECURITY_INFORMATION)
1433 memcpy(pBuffer + iLocNow, &sidWorld, sizeof(sidWorld));
1434 pSDRelative->Owner = iLocNow;
1435 iLocNow += sizeof(sidWorld);
1437 if (RequestedInformation & GROUP_SECURITY_INFORMATION)
1439 memcpy(pBuffer + iLocNow, &sidWorld, sizeof(sidWorld));
1440 pSDRelative->Group = iLocNow;
1441 iLocNow += sizeof(sidWorld);
1443 if (RequestedInformation & DACL_SECURITY_INFORMATION)
1445 GetWorldAccessACL((PACL) (pBuffer + iLocNow));
1446 pSDRelative->Dacl = iLocNow;
1447 iLocNow += WINE_SIZE_OF_WORLD_ACCESS_ACL;
1449 if (RequestedInformation & SACL_SECURITY_INFORMATION)
1451 GetWorldAccessACL((PACL) (pBuffer + iLocNow));
1452 pSDRelative->Sacl = iLocNow;
1453 /* iLocNow += WINE_SIZE_OF_WORLD_ACCESS_ACL; */
1459 /******************************************************************************
1460 * LookupAccountSidA [ADVAPI32.@]
1467 IN OUT LPDWORD accountSize,
1469 IN OUT LPDWORD domainSize,
1470 OUT PSID_NAME_USE name_use )
1472 static const char ac[] = "Administrator";
1473 static const char dm[] = "DOMAIN";
1474 FIXME("(%s,sid=%p,%p,%p(%lu),%p,%p(%lu),%p): semi-stub\n",
1475 debugstr_a(system),sid,
1476 account,accountSize,accountSize?*accountSize:0,
1477 domain,domainSize,domainSize?*domainSize:0,
1480 if (accountSize) *accountSize = strlen(ac)+1;
1481 if (account && (*accountSize > strlen(ac)))
1482 strcpy(account, ac);
1484 if (domainSize) *domainSize = strlen(dm)+1;
1485 if (domain && (*domainSize > strlen(dm)))
1488 if (name_use) *name_use = SidTypeUser;
1492 /******************************************************************************
1493 * LookupAccountSidW [ADVAPI32.@]
1509 IN OUT LPDWORD accountSize,
1511 IN OUT LPDWORD domainSize,
1512 OUT PSID_NAME_USE name_use )
1514 static const WCHAR ac[] = {'A','d','m','i','n','i','s','t','r','a','t','o','r',0};
1515 static const WCHAR dm[] = {'D','O','M','A','I','N',0};
1516 FIXME("(%s,sid=%p,%p,%p(%lu),%p,%p(%lu),%p): semi-stub\n",
1517 debugstr_w(system),sid,
1518 account,accountSize,accountSize?*accountSize:0,
1519 domain,domainSize,domainSize?*domainSize:0,
1522 if (accountSize) *accountSize = strlenW(ac)+1;
1523 if (account && (*accountSize > strlenW(ac)))
1524 strcpyW(account, ac);
1526 if (domainSize) *domainSize = strlenW(dm)+1;
1527 if (domain && (*domainSize > strlenW(dm)))
1530 if (name_use) *name_use = SidTypeUser;
1534 /******************************************************************************
1535 * SetFileSecurityA [ADVAPI32.@]
1537 * See SetFileSecurityW.
1539 BOOL WINAPI SetFileSecurityA( LPCSTR lpFileName,
1540 SECURITY_INFORMATION RequestedInformation,
1541 PSECURITY_DESCRIPTOR pSecurityDescriptor)
1549 len = MultiByteToWideChar( CP_ACP, 0, lpFileName, -1, NULL, 0 );
1550 name = HeapAlloc( GetProcessHeap(), 0, len*sizeof(WCHAR) );
1551 MultiByteToWideChar( CP_ACP, 0, lpFileName, -1, name, len );
1554 r = SetFileSecurityW( name, RequestedInformation, pSecurityDescriptor );
1555 HeapFree( GetProcessHeap(), 0, name );
1560 /******************************************************************************
1561 * SetFileSecurityW [ADVAPI32.@]
1563 * Sets the security of a file or directory.
1567 * RequestedInformation []
1568 * pSecurityDescriptor []
1575 SetFileSecurityW( LPCWSTR lpFileName,
1576 SECURITY_INFORMATION RequestedInformation,
1577 PSECURITY_DESCRIPTOR pSecurityDescriptor )
1579 FIXME("(%s) : stub\n", debugstr_w(lpFileName) );
1583 /******************************************************************************
1584 * QueryWindows31FilesMigration [ADVAPI32.@]
1590 QueryWindows31FilesMigration( DWORD x1 )
1592 FIXME("(%ld):stub\n",x1);
1596 /******************************************************************************
1597 * SynchronizeWindows31FilesAndWindowsNTRegistry [ADVAPI32.@]
1606 SynchronizeWindows31FilesAndWindowsNTRegistry( DWORD x1, DWORD x2, DWORD x3,
1609 FIXME("(0x%08lx,0x%08lx,0x%08lx,0x%08lx):stub\n",x1,x2,x3,x4);
1613 /******************************************************************************
1614 * NotifyBootConfigStatus [ADVAPI32.@]
1620 NotifyBootConfigStatus( BOOL x1 )
1622 FIXME("(0x%08d):stub\n",x1);
1626 /******************************************************************************
1627 * RevertToSelf [ADVAPI32.@]
1629 * Ends the impersonation of a user.
1639 RevertToSelf( void )
1641 HANDLE Token = NULL;
1642 return set_ntstatus( NtSetInformationThread( GetCurrentThread(),
1643 ThreadImpersonationToken, &Token, sizeof(Token) ) );
1646 /******************************************************************************
1647 * ImpersonateSelf [ADVAPI32.@]
1649 * Makes an impersonation token that represents the process user and assigns
1650 * to the current thread.
1653 * ImpersonationLevel [I] Level at which to impersonate.
1660 ImpersonateSelf(SECURITY_IMPERSONATION_LEVEL ImpersonationLevel)
1662 return set_ntstatus( RtlImpersonateSelf( ImpersonationLevel ) );
1665 /******************************************************************************
1666 * ImpersonateLoggedOnUser [ADVAPI32.@]
1668 BOOL WINAPI ImpersonateLoggedOnUser(HANDLE hToken)
1671 HANDLE ImpersonationToken;
1672 TOKEN_TYPE Type = TokenImpersonation;
1674 FIXME( "(%p)\n", hToken );
1676 /* FIXME: get token type */
1678 if (Type == TokenPrimary)
1680 OBJECT_ATTRIBUTES ObjectAttributes;
1682 InitializeObjectAttributes( &ObjectAttributes, NULL, 0, NULL, NULL );
1684 Status = NtDuplicateToken( hToken,
1685 TOKEN_IMPERSONATE | TOKEN_QUERY,
1687 SecurityImpersonation,
1689 &ImpersonationToken );
1690 if (Status != STATUS_SUCCESS)
1692 ERR( "NtDuplicateToken failed with error 0x%08lx\n", Status );
1693 SetLastError( RtlNtStatusToDosError( Status ) );
1698 ImpersonationToken = hToken;
1700 Status = NtSetInformationThread( GetCurrentThread(),
1701 ThreadImpersonationToken,
1702 &ImpersonationToken,
1703 sizeof(ImpersonationToken) );
1705 if (Type == TokenPrimary)
1706 NtClose( ImpersonationToken );
1708 if (Status != STATUS_SUCCESS)
1710 ERR( "NtSetInformationThread failed with error 0x%08lx\n", Status );
1711 SetLastError( RtlNtStatusToDosError( Status ) );
1718 /******************************************************************************
1719 * AccessCheck [ADVAPI32.@]
1723 PSECURITY_DESCRIPTOR SecurityDescriptor,
1725 DWORD DesiredAccess,
1726 PGENERIC_MAPPING GenericMapping,
1727 PPRIVILEGE_SET PrivilegeSet,
1728 LPDWORD PrivilegeSetLength,
1729 LPDWORD GrantedAccess,
1730 LPBOOL AccessStatus)
1732 NTSTATUS access_status;
1733 BOOL ret = set_ntstatus( NtAccessCheck(SecurityDescriptor, ClientToken, DesiredAccess,
1734 GenericMapping, PrivilegeSet, PrivilegeSetLength,
1735 GrantedAccess, &access_status) );
1736 if (ret) *AccessStatus = set_ntstatus( access_status );
1741 /******************************************************************************
1742 * AccessCheckByType [ADVAPI32.@]
1744 BOOL WINAPI AccessCheckByType(
1745 PSECURITY_DESCRIPTOR pSecurityDescriptor,
1746 PSID PrincipalSelfSid,
1748 DWORD DesiredAccess,
1749 POBJECT_TYPE_LIST ObjectTypeList,
1750 DWORD ObjectTypeListLength,
1751 PGENERIC_MAPPING GenericMapping,
1752 PPRIVILEGE_SET PrivilegeSet,
1753 LPDWORD PrivilegeSetLength,
1754 LPDWORD GrantedAccess,
1755 LPBOOL AccessStatus)
1759 *AccessStatus = TRUE;
1761 return !*AccessStatus;
1764 /******************************************************************************
1765 * MapGenericMask [ADVAPI32.@]
1767 * Maps generic access rights into specific access rights according to the
1771 * AccessMask [I/O] Access rights.
1772 * GenericMapping [I] The mapping between generic and specific rights.
1777 VOID WINAPI MapGenericMask( PDWORD AccessMask, PGENERIC_MAPPING GenericMapping )
1779 RtlMapGenericMask( AccessMask, GenericMapping );
1782 /*************************************************************************
1783 * SetKernelObjectSecurity [ADVAPI32.@]
1785 BOOL WINAPI SetKernelObjectSecurity (
1787 IN SECURITY_INFORMATION SecurityInformation,
1788 IN PSECURITY_DESCRIPTOR SecurityDescriptor )
1790 return set_ntstatus (NtSetSecurityObject (Handle, SecurityInformation, SecurityDescriptor));
1794 /******************************************************************************
1795 * AddAuditAccessAce [ADVAPI32.@]
1797 BOOL WINAPI AddAuditAccessAce(
1799 IN DWORD dwAceRevision,
1800 IN DWORD dwAccessMask,
1802 IN BOOL bAuditSuccess,
1803 IN BOOL bAuditFailure)
1805 return set_ntstatus( RtlAddAuditAccessAce(pAcl, dwAceRevision, dwAccessMask, pSid,
1806 bAuditSuccess, bAuditFailure) );
1809 /******************************************************************************
1810 * LookupAccountNameA [ADVAPI32.@]
1818 LPSTR ReferencedDomainName,
1819 IN OUT LPDWORD cbReferencedDomainName,
1820 OUT PSID_NAME_USE name_use )
1823 UNICODE_STRING lpSystemW;
1824 UNICODE_STRING lpAccountW;
1825 LPWSTR lpReferencedDomainNameW = NULL;
1827 RtlCreateUnicodeStringFromAsciiz(&lpSystemW, system);
1828 RtlCreateUnicodeStringFromAsciiz(&lpAccountW, account);
1830 if (ReferencedDomainName)
1831 lpReferencedDomainNameW = HeapAlloc(GetProcessHeap(), 0, *cbReferencedDomainName * sizeof(WCHAR));
1833 ret = LookupAccountNameW(lpSystemW.Buffer, lpAccountW.Buffer, sid, cbSid, lpReferencedDomainNameW,
1834 cbReferencedDomainName, name_use);
1836 if (ret && lpReferencedDomainNameW)
1838 WideCharToMultiByte(CP_ACP, 0, lpReferencedDomainNameW, *cbReferencedDomainName,
1839 ReferencedDomainName, *cbReferencedDomainName, NULL, NULL);
1842 RtlFreeUnicodeString(&lpSystemW);
1843 RtlFreeUnicodeString(&lpAccountW);
1844 HeapFree(GetProcessHeap(), 0, lpReferencedDomainNameW);
1849 /******************************************************************************
1850 * LookupAccountNameW [ADVAPI32.@]
1852 BOOL WINAPI LookupAccountNameW( LPCWSTR lpSystemName, LPCWSTR lpAccountName, PSID Sid,
1853 LPDWORD cbSid, LPWSTR ReferencedDomainName,
1854 LPDWORD cchReferencedDomainName, PSID_NAME_USE peUse )
1856 /* Default implementation: Always return a default SID */
1857 SID_IDENTIFIER_AUTHORITY identifierAuthority = {SECURITY_NT_AUTHORITY};
1860 static const WCHAR dm[] = {'D','O','M','A','I','N'};
1862 FIXME("%s %s %p %p %p %p %p - stub\n", debugstr_w(lpSystemName), debugstr_w(lpAccountName),
1863 Sid, cbSid, ReferencedDomainName, cchReferencedDomainName, peUse);
1865 ret = AllocateAndInitializeSid(&identifierAuthority,
1867 SECURITY_BUILTIN_DOMAIN_RID,
1868 DOMAIN_ALIAS_RID_ADMINS,
1875 if (!RtlValidSid(pSid))
1881 if (Sid != NULL && (*cbSid >= GetLengthSid(pSid)))
1882 CopySid(*cbSid, Sid, pSid);
1883 if (*cbSid < GetLengthSid(pSid))
1885 SetLastError(ERROR_INSUFFICIENT_BUFFER);
1888 *cbSid = GetLengthSid(pSid);
1890 if (ReferencedDomainName != NULL && (*cchReferencedDomainName > strlenW(dm)))
1891 strcpyW(ReferencedDomainName, dm);
1893 if (*cchReferencedDomainName <= strlenW(dm))
1895 SetLastError(ERROR_INSUFFICIENT_BUFFER);
1899 *cchReferencedDomainName = strlenW(dm)+1;
1906 /******************************************************************************
1907 * PrivilegeCheck [ADVAPI32.@]
1909 BOOL WINAPI PrivilegeCheck( HANDLE ClientToken, PPRIVILEGE_SET RequiredPrivileges, LPBOOL pfResult)
1914 TRACE("%p %p %p\n", ClientToken, RequiredPrivileges, pfResult);
1916 ret = set_ntstatus (NtPrivilegeCheck (ClientToken, RequiredPrivileges, &Result));
1922 /******************************************************************************
1923 * AccessCheckAndAuditAlarmA [ADVAPI32.@]
1925 BOOL WINAPI AccessCheckAndAuditAlarmA(LPCSTR Subsystem, LPVOID HandleId, LPSTR ObjectTypeName,
1926 LPSTR ObjectName, PSECURITY_DESCRIPTOR SecurityDescriptor, DWORD DesiredAccess,
1927 PGENERIC_MAPPING GenericMapping, BOOL ObjectCreation, LPDWORD GrantedAccess,
1928 LPBOOL AccessStatus, LPBOOL pfGenerateOnClose)
1930 FIXME("stub (%s,%p,%s,%s,%p,%08lx,%p,%x,%p,%p,%p)\n", debugstr_a(Subsystem),
1931 HandleId, debugstr_a(ObjectTypeName), debugstr_a(ObjectName),
1932 SecurityDescriptor, DesiredAccess, GenericMapping,
1933 ObjectCreation, GrantedAccess, AccessStatus, pfGenerateOnClose);
1937 /******************************************************************************
1938 * AccessCheckAndAuditAlarmW [ADVAPI32.@]
1940 BOOL WINAPI AccessCheckAndAuditAlarmW(LPCWSTR Subsystem, LPVOID HandleId, LPWSTR ObjectTypeName,
1941 LPWSTR ObjectName, PSECURITY_DESCRIPTOR SecurityDescriptor, DWORD DesiredAccess,
1942 PGENERIC_MAPPING GenericMapping, BOOL ObjectCreation, LPDWORD GrantedAccess,
1943 LPBOOL AccessStatus, LPBOOL pfGenerateOnClose)
1945 FIXME("stub (%s,%p,%s,%s,%p,%08lx,%p,%x,%p,%p,%p)\n", debugstr_w(Subsystem),
1946 HandleId, debugstr_w(ObjectTypeName), debugstr_w(ObjectName),
1947 SecurityDescriptor, DesiredAccess, GenericMapping,
1948 ObjectCreation, GrantedAccess, AccessStatus, pfGenerateOnClose);
1952 BOOL WINAPI ObjectCloseAuditAlarmA(LPCSTR SubsystemName, LPVOID HandleId, BOOL GenerateOnClose)
1954 FIXME("stub (%s,%p,%x)\n", debugstr_a(SubsystemName), HandleId, GenerateOnClose);
1959 BOOL WINAPI ObjectCloseAuditAlarmW(LPCWSTR SubsystemName, LPVOID HandleId, BOOL GenerateOnClose)
1961 FIXME("stub (%s,%p,%x)\n", debugstr_w(SubsystemName), HandleId, GenerateOnClose);
1966 BOOL WINAPI ObjectDeleteAuditAlarmW(LPCWSTR SubsystemName, LPVOID HandleId, BOOL GenerateOnClose)
1968 FIXME("stub (%s,%p,%x)\n", debugstr_w(SubsystemName), HandleId, GenerateOnClose);
1973 BOOL WINAPI ObjectOpenAuditAlarmA(LPCSTR SubsystemName, LPVOID HandleId, LPSTR ObjectTypeName,
1974 LPSTR ObjectName, PSECURITY_DESCRIPTOR pSecurityDescriptor, HANDLE ClientToken, DWORD DesiredAccess,
1975 DWORD GrantedAccess, PPRIVILEGE_SET Privileges, BOOL ObjectCreation, BOOL AccessGranted,
1976 LPBOOL GenerateOnClose)
1978 FIXME("stub (%s,%p,%s,%s,%p,%p,0x%08lx,0x%08lx,%p,%x,%x,%p)\n", debugstr_a(SubsystemName),
1979 HandleId, debugstr_a(ObjectTypeName), debugstr_a(ObjectName), pSecurityDescriptor,
1980 ClientToken, DesiredAccess, GrantedAccess, Privileges, ObjectCreation, AccessGranted,
1986 BOOL WINAPI ObjectOpenAuditAlarmW(LPCWSTR SubsystemName, LPVOID HandleId, LPWSTR ObjectTypeName,
1987 LPWSTR ObjectName, PSECURITY_DESCRIPTOR pSecurityDescriptor, HANDLE ClientToken, DWORD DesiredAccess,
1988 DWORD GrantedAccess, PPRIVILEGE_SET Privileges, BOOL ObjectCreation, BOOL AccessGranted,
1989 LPBOOL GenerateOnClose)
1991 FIXME("stub (%s,%p,%s,%s,%p,%p,0x%08lx,0x%08lx,%p,%x,%x,%p)\n", debugstr_w(SubsystemName),
1992 HandleId, debugstr_w(ObjectTypeName), debugstr_w(ObjectName), pSecurityDescriptor,
1993 ClientToken, DesiredAccess, GrantedAccess, Privileges, ObjectCreation, AccessGranted,
1999 BOOL WINAPI ObjectPrivilegeAuditAlarmA( LPCSTR SubsystemName, LPVOID HandleId, HANDLE ClientToken,
2000 DWORD DesiredAccess, PPRIVILEGE_SET Privileges, BOOL AccessGranted)
2002 FIXME("stub (%s,%p,%p,0x%08lx,%p,%x)\n", debugstr_a(SubsystemName), HandleId, ClientToken,
2003 DesiredAccess, Privileges, AccessGranted);
2008 BOOL WINAPI ObjectPrivilegeAuditAlarmW( LPCWSTR SubsystemName, LPVOID HandleId, HANDLE ClientToken,
2009 DWORD DesiredAccess, PPRIVILEGE_SET Privileges, BOOL AccessGranted)
2011 FIXME("stub (%s,%p,%p,0x%08lx,%p,%x)\n", debugstr_w(SubsystemName), HandleId, ClientToken,
2012 DesiredAccess, Privileges, AccessGranted);
2017 BOOL WINAPI PrivilegedServiceAuditAlarmA( LPCSTR SubsystemName, LPCSTR ServiceName, HANDLE ClientToken,
2018 PPRIVILEGE_SET Privileges, BOOL AccessGranted)
2020 FIXME("stub (%s,%s,%p,%p,%x)\n", debugstr_a(SubsystemName), debugstr_a(ServiceName),
2021 ClientToken, Privileges, AccessGranted);
2026 BOOL WINAPI PrivilegedServiceAuditAlarmW( LPCWSTR SubsystemName, LPCWSTR ServiceName, HANDLE ClientToken,
2027 PPRIVILEGE_SET Privileges, BOOL AccessGranted)
2029 FIXME("stub %s,%s,%p,%p,%x)\n", debugstr_w(SubsystemName), debugstr_w(ServiceName),
2030 ClientToken, Privileges, AccessGranted);
2035 /******************************************************************************
2036 * GetSecurityInfo [ADVAPI32.@]
2038 DWORD WINAPI GetSecurityInfo(
2039 HANDLE hObject, SE_OBJECT_TYPE ObjectType,
2040 SECURITY_INFORMATION SecurityInfo, PSID *ppsidOwner,
2041 PSID *ppsidGroup, PACL *ppDacl, PACL *ppSacl,
2042 PSECURITY_DESCRIPTOR *ppSecurityDescriptor
2046 return ERROR_BAD_PROVIDER;
2049 /******************************************************************************
2050 * GetSecurityInfoExW [ADVAPI32.@]
2052 DWORD WINAPI GetSecurityInfoExW(
2053 HANDLE hObject, SE_OBJECT_TYPE ObjectType,
2054 SECURITY_INFORMATION SecurityInfo, LPCWSTR lpProvider,
2055 LPCWSTR lpProperty, PACTRL_ACCESSW *ppAccessList,
2056 PACTRL_AUDITW *ppAuditList, LPWSTR *lppOwner, LPWSTR *lppGroup
2060 return ERROR_BAD_PROVIDER;
2063 /******************************************************************************
2064 * BuildExplicitAccessWithNameA [ADVAPI32.@]
2066 VOID WINAPI BuildExplicitAccessWithNameA( PEXPLICIT_ACCESSA pExplicitAccess,
2067 LPSTR pTrusteeName, DWORD AccessPermissions,
2068 ACCESS_MODE AccessMode, DWORD Inheritance )
2070 TRACE("%p %s 0x%08lx 0x%08x 0x%08lx\n", pExplicitAccess, debugstr_a(pTrusteeName),
2071 AccessPermissions, AccessMode, Inheritance);
2073 pExplicitAccess->grfAccessPermissions = AccessPermissions;
2074 pExplicitAccess->grfAccessMode = AccessMode;
2075 pExplicitAccess->grfInheritance = Inheritance;
2077 pExplicitAccess->Trustee.pMultipleTrustee = NULL;
2078 pExplicitAccess->Trustee.MultipleTrusteeOperation = NO_MULTIPLE_TRUSTEE;
2079 pExplicitAccess->Trustee.TrusteeForm = TRUSTEE_IS_NAME;
2080 pExplicitAccess->Trustee.TrusteeType = TRUSTEE_IS_UNKNOWN;
2081 pExplicitAccess->Trustee.ptstrName = pTrusteeName;
2084 /******************************************************************************
2085 * BuildExplicitAccessWithNameW [ADVAPI32.@]
2087 VOID WINAPI BuildExplicitAccessWithNameW( PEXPLICIT_ACCESSW pExplicitAccess,
2088 LPWSTR pTrusteeName, DWORD AccessPermissions,
2089 ACCESS_MODE AccessMode, DWORD Inheritance )
2091 TRACE("%p %s 0x%08lx 0x%08x 0x%08lx\n", pExplicitAccess, debugstr_w(pTrusteeName),
2092 AccessPermissions, AccessMode, Inheritance);
2094 pExplicitAccess->grfAccessPermissions = AccessPermissions;
2095 pExplicitAccess->grfAccessMode = AccessMode;
2096 pExplicitAccess->grfInheritance = Inheritance;
2098 pExplicitAccess->Trustee.pMultipleTrustee = NULL;
2099 pExplicitAccess->Trustee.MultipleTrusteeOperation = NO_MULTIPLE_TRUSTEE;
2100 pExplicitAccess->Trustee.TrusteeForm = TRUSTEE_IS_NAME;
2101 pExplicitAccess->Trustee.TrusteeType = TRUSTEE_IS_UNKNOWN;
2102 pExplicitAccess->Trustee.ptstrName = pTrusteeName;
2105 /******************************************************************************
2106 * BuildTrusteeWithObjectsAndNameA [ADVAPI32.@]
2108 VOID WINAPI BuildTrusteeWithObjectsAndNameA( PTRUSTEEA pTrustee, POBJECTS_AND_NAME_A pObjName,
2109 SE_OBJECT_TYPE ObjectType, LPSTR ObjectTypeName,
2110 LPSTR InheritedObjectTypeName, LPSTR Name )
2112 DWORD ObjectsPresent = 0;
2114 TRACE("%p %p 0x%08x %p %p %s\n", pTrustee, pObjName,
2115 ObjectType, ObjectTypeName, InheritedObjectTypeName, debugstr_a(Name));
2117 /* Fill the OBJECTS_AND_NAME structure */
2118 pObjName->ObjectType = ObjectType;
2119 if (ObjectTypeName != NULL)
2121 ObjectsPresent |= ACE_OBJECT_TYPE_PRESENT;
2124 pObjName->InheritedObjectTypeName = InheritedObjectTypeName;
2125 if (InheritedObjectTypeName != NULL)
2127 ObjectsPresent |= ACE_INHERITED_OBJECT_TYPE_PRESENT;
2130 pObjName->ObjectsPresent = ObjectsPresent;
2131 pObjName->ptstrName = Name;
2133 /* Fill the TRUSTEE structure */
2134 pTrustee->pMultipleTrustee = NULL;
2135 pTrustee->MultipleTrusteeOperation = NO_MULTIPLE_TRUSTEE;
2136 pTrustee->TrusteeForm = TRUSTEE_IS_OBJECTS_AND_NAME;
2137 pTrustee->TrusteeType = TRUSTEE_IS_UNKNOWN;
2138 pTrustee->ptstrName = (LPSTR)pObjName;
2141 /******************************************************************************
2142 * BuildTrusteeWithObjectsAndNameW [ADVAPI32.@]
2144 VOID WINAPI BuildTrusteeWithObjectsAndNameW( PTRUSTEEW pTrustee, POBJECTS_AND_NAME_W pObjName,
2145 SE_OBJECT_TYPE ObjectType, LPWSTR ObjectTypeName,
2146 LPWSTR InheritedObjectTypeName, LPWSTR Name )
2148 DWORD ObjectsPresent = 0;
2150 TRACE("%p %p 0x%08x %p %p %s\n", pTrustee, pObjName,
2151 ObjectType, ObjectTypeName, InheritedObjectTypeName, debugstr_w(Name));
2153 /* Fill the OBJECTS_AND_NAME structure */
2154 pObjName->ObjectType = ObjectType;
2155 if (ObjectTypeName != NULL)
2157 ObjectsPresent |= ACE_OBJECT_TYPE_PRESENT;
2160 pObjName->InheritedObjectTypeName = InheritedObjectTypeName;
2161 if (InheritedObjectTypeName != NULL)
2163 ObjectsPresent |= ACE_INHERITED_OBJECT_TYPE_PRESENT;
2166 pObjName->ObjectsPresent = ObjectsPresent;
2167 pObjName->ptstrName = Name;
2169 /* Fill the TRUSTEE structure */
2170 pTrustee->pMultipleTrustee = NULL;
2171 pTrustee->MultipleTrusteeOperation = NO_MULTIPLE_TRUSTEE;
2172 pTrustee->TrusteeForm = TRUSTEE_IS_OBJECTS_AND_NAME;
2173 pTrustee->TrusteeType = TRUSTEE_IS_UNKNOWN;
2174 pTrustee->ptstrName = (LPWSTR)pObjName;
2177 /******************************************************************************
2178 * BuildTrusteeWithObjectsAndSidA [ADVAPI32.@]
2180 VOID WINAPI BuildTrusteeWithObjectsAndSidA( PTRUSTEEA pTrustee, POBJECTS_AND_SID pObjSid,
2181 GUID* pObjectGuid, GUID* pInheritedObjectGuid, PSID pSid )
2183 DWORD ObjectsPresent = 0;
2185 TRACE("%p %p %p %p %p\n", pTrustee, pObjSid, pObjectGuid, pInheritedObjectGuid, pSid);
2187 /* Fill the OBJECTS_AND_SID structure */
2188 if (pObjectGuid != NULL)
2190 pObjSid->ObjectTypeGuid = *pObjectGuid;
2191 ObjectsPresent |= ACE_OBJECT_TYPE_PRESENT;
2195 ZeroMemory(&pObjSid->ObjectTypeGuid,
2199 if (pInheritedObjectGuid != NULL)
2201 pObjSid->InheritedObjectTypeGuid = *pInheritedObjectGuid;
2202 ObjectsPresent |= ACE_INHERITED_OBJECT_TYPE_PRESENT;
2206 ZeroMemory(&pObjSid->InheritedObjectTypeGuid,
2210 pObjSid->ObjectsPresent = ObjectsPresent;
2211 pObjSid->pSid = pSid;
2213 /* Fill the TRUSTEE structure */
2214 pTrustee->pMultipleTrustee = NULL;
2215 pTrustee->MultipleTrusteeOperation = NO_MULTIPLE_TRUSTEE;
2216 pTrustee->TrusteeForm = TRUSTEE_IS_OBJECTS_AND_SID;
2217 pTrustee->TrusteeType = TRUSTEE_IS_UNKNOWN;
2218 pTrustee->ptstrName = (LPSTR) pObjSid;
2221 /******************************************************************************
2222 * BuildTrusteeWithObjectsAndSidW [ADVAPI32.@]
2224 VOID WINAPI BuildTrusteeWithObjectsAndSidW( PTRUSTEEW pTrustee, POBJECTS_AND_SID pObjSid,
2225 GUID* pObjectGuid, GUID* pInheritedObjectGuid, PSID pSid )
2227 DWORD ObjectsPresent = 0;
2229 TRACE("%p %p %p %p %p\n", pTrustee, pObjSid, pObjectGuid, pInheritedObjectGuid, pSid);
2231 /* Fill the OBJECTS_AND_SID structure */
2232 if (pObjectGuid != NULL)
2234 pObjSid->ObjectTypeGuid = *pObjectGuid;
2235 ObjectsPresent |= ACE_OBJECT_TYPE_PRESENT;
2239 ZeroMemory(&pObjSid->ObjectTypeGuid,
2243 if (pInheritedObjectGuid != NULL)
2245 pObjSid->InheritedObjectTypeGuid = *pInheritedObjectGuid;
2246 ObjectsPresent |= ACE_INHERITED_OBJECT_TYPE_PRESENT;
2250 ZeroMemory(&pObjSid->InheritedObjectTypeGuid,
2254 pObjSid->ObjectsPresent = ObjectsPresent;
2255 pObjSid->pSid = pSid;
2257 /* Fill the TRUSTEE structure */
2258 pTrustee->pMultipleTrustee = NULL;
2259 pTrustee->MultipleTrusteeOperation = NO_MULTIPLE_TRUSTEE;
2260 pTrustee->TrusteeForm = TRUSTEE_IS_OBJECTS_AND_SID;
2261 pTrustee->TrusteeType = TRUSTEE_IS_UNKNOWN;
2262 pTrustee->ptstrName = (LPWSTR) pObjSid;
2265 /******************************************************************************
2266 * BuildTrusteeWithSidA [ADVAPI32.@]
2268 VOID WINAPI BuildTrusteeWithSidA(PTRUSTEEA pTrustee, PSID pSid)
2270 TRACE("%p %p\n", pTrustee, pSid);
2272 pTrustee->pMultipleTrustee = NULL;
2273 pTrustee->MultipleTrusteeOperation = NO_MULTIPLE_TRUSTEE;
2274 pTrustee->TrusteeForm = TRUSTEE_IS_SID;
2275 pTrustee->TrusteeType = TRUSTEE_IS_UNKNOWN;
2276 pTrustee->ptstrName = (LPSTR) pSid;
2279 /******************************************************************************
2280 * BuildTrusteeWithSidW [ADVAPI32.@]
2282 VOID WINAPI BuildTrusteeWithSidW(PTRUSTEEW pTrustee, PSID pSid)
2284 TRACE("%p %p\n", pTrustee, pSid);
2286 pTrustee->pMultipleTrustee = NULL;
2287 pTrustee->MultipleTrusteeOperation = NO_MULTIPLE_TRUSTEE;
2288 pTrustee->TrusteeForm = TRUSTEE_IS_SID;
2289 pTrustee->TrusteeType = TRUSTEE_IS_UNKNOWN;
2290 pTrustee->ptstrName = (LPWSTR) pSid;
2293 /******************************************************************************
2294 * BuildTrusteeWithNameA [ADVAPI32.@]
2296 VOID WINAPI BuildTrusteeWithNameA(PTRUSTEEA pTrustee, LPSTR name)
2298 TRACE("%p %s\n", pTrustee, debugstr_a(name) );
2300 pTrustee->pMultipleTrustee = NULL;
2301 pTrustee->MultipleTrusteeOperation = NO_MULTIPLE_TRUSTEE;
2302 pTrustee->TrusteeForm = TRUSTEE_IS_NAME;
2303 pTrustee->TrusteeType = TRUSTEE_IS_UNKNOWN;
2304 pTrustee->ptstrName = name;
2307 /******************************************************************************
2308 * BuildTrusteeWithNameW [ADVAPI32.@]
2310 VOID WINAPI BuildTrusteeWithNameW(PTRUSTEEW pTrustee, LPWSTR name)
2312 TRACE("%p %s\n", pTrustee, debugstr_w(name) );
2314 pTrustee->pMultipleTrustee = NULL;
2315 pTrustee->MultipleTrusteeOperation = NO_MULTIPLE_TRUSTEE;
2316 pTrustee->TrusteeForm = TRUSTEE_IS_NAME;
2317 pTrustee->TrusteeType = TRUSTEE_IS_UNKNOWN;
2318 pTrustee->ptstrName = name;
2321 /******************************************************************************
2322 * GetTrusteeFormA [ADVAPI32.@]
2324 TRUSTEE_FORM WINAPI GetTrusteeFormA(PTRUSTEEA pTrustee)
2326 TRACE("(%p)\n", pTrustee);
2329 return TRUSTEE_BAD_FORM;
2331 return pTrustee->TrusteeForm;
2334 /******************************************************************************
2335 * GetTrusteeFormW [ADVAPI32.@]
2337 TRUSTEE_FORM WINAPI GetTrusteeFormW(PTRUSTEEW pTrustee)
2339 TRACE("(%p)\n", pTrustee);
2342 return TRUSTEE_BAD_FORM;
2344 return pTrustee->TrusteeForm;
2347 /******************************************************************************
2348 * GetTrusteeNameA [ADVAPI32.@]
2350 LPSTR WINAPI GetTrusteeNameA(PTRUSTEEA pTrustee)
2352 TRACE("(%p)\n", pTrustee);
2357 return pTrustee->ptstrName;
2360 /******************************************************************************
2361 * GetTrusteeNameW [ADVAPI32.@]
2363 LPWSTR WINAPI GetTrusteeNameW(PTRUSTEEW pTrustee)
2365 TRACE("(%p)\n", pTrustee);
2370 return pTrustee->ptstrName;
2373 /******************************************************************************
2374 * GetTrusteeTypeA [ADVAPI32.@]
2376 TRUSTEE_TYPE WINAPI GetTrusteeTypeA(PTRUSTEEA pTrustee)
2378 TRACE("(%p)\n", pTrustee);
2381 return TRUSTEE_IS_UNKNOWN;
2383 return pTrustee->TrusteeType;
2386 /******************************************************************************
2387 * GetTrusteeTypeW [ADVAPI32.@]
2389 TRUSTEE_TYPE WINAPI GetTrusteeTypeW(PTRUSTEEW pTrustee)
2391 TRACE("(%p)\n", pTrustee);
2394 return TRUSTEE_IS_UNKNOWN;
2396 return pTrustee->TrusteeType;
2399 BOOL WINAPI SetAclInformation( PACL pAcl, LPVOID pAclInformation,
2400 DWORD nAclInformationLength,
2401 ACL_INFORMATION_CLASS dwAclInformationClass )
2403 FIXME("%p %p 0x%08lx 0x%08x - stub\n", pAcl, pAclInformation,
2404 nAclInformationLength, dwAclInformationClass);
2409 /******************************************************************************
2410 * SetEntriesInAclA [ADVAPI32.@]
2412 DWORD WINAPI SetEntriesInAclA( ULONG count, PEXPLICIT_ACCESSA pEntries,
2413 PACL OldAcl, PACL* NewAcl )
2415 FIXME("%ld %p %p %p\n",count,pEntries,OldAcl,NewAcl);
2416 return ERROR_CALL_NOT_IMPLEMENTED;
2419 /******************************************************************************
2420 * SetEntriesInAclW [ADVAPI32.@]
2422 DWORD WINAPI SetEntriesInAclW( ULONG count, PEXPLICIT_ACCESSW pEntries,
2423 PACL OldAcl, PACL* NewAcl )
2425 FIXME("%ld %p %p %p\n",count,pEntries,OldAcl,NewAcl);
2426 return ERROR_CALL_NOT_IMPLEMENTED;
2429 /******************************************************************************
2430 * SetNamedSecurityInfoA [ADVAPI32.@]
2432 DWORD WINAPI SetNamedSecurityInfoA(LPSTR pObjectName,
2433 SE_OBJECT_TYPE ObjectType, SECURITY_INFORMATION SecurityInfo,
2434 PSID psidOwner, PSID psidGroup, PACL pDacl, PACL pSacl)
2440 TRACE("%s %d %ld %p %p %p %p\n", debugstr_a(pObjectName), ObjectType,
2441 SecurityInfo, psidOwner, psidGroup, pDacl, pSacl);
2445 len = MultiByteToWideChar( CP_ACP, 0, pObjectName, -1, NULL, 0 );
2446 wstr = HeapAlloc( GetProcessHeap(), 0, len*sizeof(WCHAR));
2447 MultiByteToWideChar( CP_ACP, 0, pObjectName, -1, wstr, len );
2450 r = SetNamedSecurityInfoW( wstr, ObjectType, SecurityInfo, psidOwner,
2451 psidGroup, pDacl, pSacl );
2453 HeapFree( GetProcessHeap(), 0, wstr );
2458 BOOL WINAPI SetPrivateObjectSecurity( SECURITY_INFORMATION SecurityInformation,
2459 PSECURITY_DESCRIPTOR ModificationDescriptor,
2460 PSECURITY_DESCRIPTOR* ObjectsSecurityDescriptor,
2461 PGENERIC_MAPPING GenericMapping,
2464 FIXME("0x%08lx %p %p %p %p - stub\n", SecurityInformation, ModificationDescriptor,
2465 ObjectsSecurityDescriptor, GenericMapping, Token);
2470 BOOL WINAPI SetSecurityDescriptorControl( PSECURITY_DESCRIPTOR pSecurityDescriptor,
2471 SECURITY_DESCRIPTOR_CONTROL ControlBitsOfInterest,
2472 SECURITY_DESCRIPTOR_CONTROL ControlBitsToSet )
2474 FIXME("%p 0x%08x 0x%08x - stub\n", pSecurityDescriptor, ControlBitsOfInterest,
2480 BOOL WINAPI AreAllAccessesGranted( DWORD GrantedAccess, DWORD DesiredAccess )
2482 return RtlAreAllAccessesGranted( GrantedAccess, DesiredAccess );
2485 /******************************************************************************
2486 * AreAnyAccessesGranted [ADVAPI32.@]
2488 * Determines whether or not any of a set of specified access permissions have
2489 * been granted or not.
2492 * GrantedAccess [I] The permissions that have been granted.
2493 * DesiredAccess [I] The permissions that you want to have.
2496 * Nonzero if any of the permissions have been granted, zero if none of the
2497 * permissions have been granted.
2500 BOOL WINAPI AreAnyAccessesGranted( DWORD GrantedAccess, DWORD DesiredAccess )
2502 return RtlAreAnyAccessesGranted( GrantedAccess, DesiredAccess );
2505 /******************************************************************************
2506 * SetNamedSecurityInfoW [ADVAPI32.@]
2508 DWORD WINAPI SetNamedSecurityInfoW(LPWSTR pObjectName,
2509 SE_OBJECT_TYPE ObjectType, SECURITY_INFORMATION SecurityInfo,
2510 PSID psidOwner, PSID psidGroup, PACL pDacl, PACL pSacl)
2512 FIXME("%s %d %ld %p %p %p %p\n", debugstr_w(pObjectName), ObjectType,
2513 SecurityInfo, psidOwner, psidGroup, pDacl, pSacl);
2514 return ERROR_SUCCESS;
2517 /******************************************************************************
2518 * GetExplicitEntriesFromAclA [ADVAPI32.@]
2520 DWORD WINAPI GetExplicitEntriesFromAclA( PACL pacl, PULONG pcCountOfExplicitEntries,
2521 PEXPLICIT_ACCESSA* pListOfExplicitEntries)
2523 FIXME("%p %p %p\n",pacl, pcCountOfExplicitEntries, pListOfExplicitEntries);
2524 return ERROR_CALL_NOT_IMPLEMENTED;
2527 /******************************************************************************
2528 * GetExplicitEntriesFromAclW [ADVAPI32.@]
2530 DWORD WINAPI GetExplicitEntriesFromAclW( PACL pacl, PULONG pcCountOfExplicitEntries,
2531 PEXPLICIT_ACCESSW* pListOfExplicitEntries)
2533 FIXME("%p %p %p\n",pacl, pcCountOfExplicitEntries, pListOfExplicitEntries);
2534 return ERROR_CALL_NOT_IMPLEMENTED;
2538 /******************************************************************************
2539 * ParseAclStringFlags
2541 static DWORD ParseAclStringFlags(LPCWSTR* StringAcl)
2544 LPCWSTR szAcl = *StringAcl;
2546 while (*szAcl != '(')
2550 flags |= SE_DACL_PROTECTED;
2552 else if (*szAcl == 'A')
2556 flags |= SE_DACL_AUTO_INHERIT_REQ;
2557 else if (*szAcl == 'I')
2558 flags |= SE_DACL_AUTO_INHERITED;
2567 /******************************************************************************
2568 * ParseAceStringType
2572 { SDDL_ACCESS_ALLOWED, ACCESS_ALLOWED_ACE_TYPE },
2573 { SDDL_ALARM, SYSTEM_ALARM_ACE_TYPE },
2574 { SDDL_AUDIT, SYSTEM_AUDIT_ACE_TYPE },
2575 { SDDL_ACCESS_DENIED, ACCESS_DENIED_ACE_TYPE },
2577 { SDDL_OBJECT_ACCESS_ALLOWED, ACCESS_ALLOWED_OBJECT_ACE_TYPE },
2578 { SDDL_OBJECT_ACCESS_DENIED, ACCESS_DENIED_OBJECT_ACE_TYPE },
2579 { SDDL_OBJECT_ALARM, SYSTEM_ALARM_OBJECT_ACE_TYPE },
2580 { SDDL_OBJECT_AUDIT, SYSTEM_AUDIT_OBJECT_ACE_TYPE },
2585 static BYTE ParseAceStringType(LPCWSTR* StringAcl)
2588 LPCWSTR szAcl = *StringAcl;
2589 LPACEFLAG lpaf = AceType;
2591 while (lpaf->wstr &&
2592 (len = strlenW(lpaf->wstr)) &&
2593 strncmpW(lpaf->wstr, szAcl, len))
2604 /******************************************************************************
2605 * ParseAceStringFlags
2607 ACEFLAG AceFlags[] =
2609 { SDDL_CONTAINER_INHERIT, CONTAINER_INHERIT_ACE },
2610 { SDDL_AUDIT_FAILURE, FAILED_ACCESS_ACE_FLAG },
2611 { SDDL_INHERITED, INHERITED_ACE },
2612 { SDDL_INHERIT_ONLY, INHERIT_ONLY_ACE },
2613 { SDDL_NO_PROPAGATE, NO_PROPAGATE_INHERIT_ACE },
2614 { SDDL_OBJECT_INHERIT, OBJECT_INHERIT_ACE },
2615 { SDDL_AUDIT_SUCCESS, SUCCESSFUL_ACCESS_ACE_FLAG },
2619 static BYTE ParseAceStringFlags(LPCWSTR* StringAcl)
2623 LPCWSTR szAcl = *StringAcl;
2625 while (*szAcl != ';')
2627 LPACEFLAG lpaf = AceFlags;
2629 while (lpaf->wstr &&
2630 (len = strlenW(lpaf->wstr)) &&
2631 strncmpW(lpaf->wstr, szAcl, len))
2637 flags |= lpaf->value;
2646 /******************************************************************************
2647 * ParseAceStringRights
2649 ACEFLAG AceRights[] =
2651 { SDDL_GENERIC_ALL, GENERIC_ALL },
2652 { SDDL_GENERIC_READ, GENERIC_READ },
2653 { SDDL_GENERIC_WRITE, GENERIC_WRITE },
2654 { SDDL_GENERIC_EXECUTE, GENERIC_EXECUTE },
2655 { SDDL_READ_CONTROL, READ_CONTROL },
2656 { SDDL_STANDARD_DELETE, DELETE },
2657 { SDDL_WRITE_DAC, WRITE_DAC },
2658 { SDDL_WRITE_OWNER, WRITE_OWNER },
2662 static DWORD ParseAceStringRights(LPCWSTR* StringAcl)
2666 LPCWSTR szAcl = *StringAcl;
2668 if ((*szAcl == '0') && (*(szAcl + 1) == 'x'))
2672 while (*p && *p != ';')
2677 rights = strtoulW(szAcl, NULL, 16);
2681 WARN("Invalid rights string format: %s\n", debugstr_wn(szAcl, p - szAcl));
2685 while (*szAcl != ';')
2687 LPACEFLAG lpaf = AceRights;
2689 while (lpaf->wstr &&
2690 (len = strlenW(lpaf->wstr)) &&
2691 strncmpW(lpaf->wstr, szAcl, len))
2699 rights |= lpaf->value;
2709 /******************************************************************************
2710 * ParseStringAclToAcl
2712 * dacl_flags(string_ace1)(string_ace2)... (string_acen)
2714 static BOOL ParseStringAclToAcl(LPCWSTR StringAcl, LPDWORD lpdwFlags,
2715 PACL pAcl, LPDWORD cBytes)
2719 DWORD length = sizeof(ACL);
2720 PACCESS_ALLOWED_ACE pAce = NULL; /* pointer to current ACE */
2722 TRACE("%s\n", debugstr_w(StringAcl));
2727 if (pAcl) /* pAce is only useful if we're setting values */
2728 pAce = (PACCESS_ALLOWED_ACE) ((LPBYTE)pAcl + sizeof(PACL));
2730 /* Parse ACL flags */
2731 *lpdwFlags = ParseAclStringFlags(&StringAcl);
2734 while (*StringAcl == '(')
2738 /* Parse ACE type */
2739 val = ParseAceStringType(&StringAcl);
2741 pAce->Header.AceType = (BYTE) val;
2742 if (*StringAcl != ';')
2746 /* Parse ACE flags */
2747 val = ParseAceStringFlags(&StringAcl);
2749 pAce->Header.AceFlags = (BYTE) val;
2750 if (*StringAcl != ';')
2754 /* Parse ACE rights */
2755 val = ParseAceStringRights(&StringAcl);
2758 if (*StringAcl != ';')
2762 /* Parse ACE object guid */
2763 if (*StringAcl != ';')
2765 FIXME("Support for *_OBJECT_ACE_TYPE not implemented\n");
2770 /* Parse ACE inherit object guid */
2771 if (*StringAcl != ';')
2773 FIXME("Support for *_OBJECT_ACE_TYPE not implemented\n");
2778 /* Parse ACE account sid */
2779 if (ParseStringSidToSid(StringAcl, pAce ? (PSID)&pAce->SidStart : NULL, &sidlen))
2781 while (*StringAcl && *StringAcl != ')')
2785 if (*StringAcl != ')')
2789 length += sizeof(ACCESS_ALLOWED_ACE) - sizeof(DWORD) + sidlen;
2796 WARN("Invalid ACE string format\n");
2801 /******************************************************************************
2802 * ParseStringSecurityDescriptorToSecurityDescriptor
2804 static BOOL ParseStringSecurityDescriptorToSecurityDescriptor(
2805 LPCWSTR StringSecurityDescriptor,
2806 SECURITY_DESCRIPTOR* SecurityDescriptor,
2811 WCHAR tok[MAX_PATH];
2813 LPBYTE lpNext = NULL;
2818 if (SecurityDescriptor)
2819 lpNext = ((LPBYTE) SecurityDescriptor) + sizeof(SECURITY_DESCRIPTOR);
2821 while (*StringSecurityDescriptor)
2823 toktype = *StringSecurityDescriptor;
2825 /* Expect char identifier followed by ':' */
2826 StringSecurityDescriptor++;
2827 if (*StringSecurityDescriptor != ':')
2829 SetLastError(ERROR_INVALID_PARAMETER);
2832 StringSecurityDescriptor++;
2835 lptoken = StringSecurityDescriptor;
2836 while (*lptoken && *lptoken != ':')
2842 len = lptoken - StringSecurityDescriptor;
2843 memcpy( tok, StringSecurityDescriptor, len * sizeof(WCHAR) );
2852 if (!ParseStringSidToSid(tok, (PSID)lpNext, &bytes))
2855 if (SecurityDescriptor)
2857 SecurityDescriptor->Owner = (PSID)(lpNext - (LPBYTE)SecurityDescriptor);
2858 lpNext += bytes; /* Advance to next token */
2870 if (!ParseStringSidToSid(tok, (PSID)lpNext, &bytes))
2873 if (SecurityDescriptor)
2875 SecurityDescriptor->Group = (PSID)(lpNext - (LPBYTE)SecurityDescriptor);
2876 lpNext += bytes; /* Advance to next token */
2889 if (!ParseStringAclToAcl(tok, &flags, (PACL)lpNext, &bytes))
2892 if (SecurityDescriptor)
2894 SecurityDescriptor->Control |= SE_DACL_PRESENT | flags;
2895 SecurityDescriptor->Dacl = (PACL)(lpNext - (LPBYTE)SecurityDescriptor);
2896 lpNext += bytes; /* Advance to next token */
2909 if (!ParseStringAclToAcl(tok, &flags, (PACL)lpNext, &bytes))
2912 if (SecurityDescriptor)
2914 SecurityDescriptor->Control |= SE_SACL_PRESENT | flags;
2915 SecurityDescriptor->Sacl = (PACL)(lpNext - (LPBYTE)SecurityDescriptor);
2916 lpNext += bytes; /* Advance to next token */
2925 FIXME("Unknown token\n");
2926 SetLastError(ERROR_INVALID_PARAMETER);
2930 StringSecurityDescriptor = lptoken;
2939 /******************************************************************************
2940 * ConvertStringSecurityDescriptorToSecurityDescriptorA [ADVAPI32.@]
2942 BOOL WINAPI ConvertStringSecurityDescriptorToSecurityDescriptorA(
2943 LPCSTR StringSecurityDescriptor,
2944 DWORD StringSDRevision,
2945 PSECURITY_DESCRIPTOR* SecurityDescriptor,
2946 PULONG SecurityDescriptorSize)
2950 LPWSTR StringSecurityDescriptorW;
2952 len = MultiByteToWideChar(CP_ACP, 0, StringSecurityDescriptor, -1, NULL, 0);
2953 StringSecurityDescriptorW = HeapAlloc(GetProcessHeap(), 0, len * sizeof(WCHAR));
2955 if (StringSecurityDescriptorW)
2957 MultiByteToWideChar(CP_ACP, 0, StringSecurityDescriptor, -1, StringSecurityDescriptorW, len);
2959 ret = ConvertStringSecurityDescriptorToSecurityDescriptorW(StringSecurityDescriptorW,
2960 StringSDRevision, SecurityDescriptor,
2961 SecurityDescriptorSize);
2962 HeapFree(GetProcessHeap(), 0, StringSecurityDescriptorW);
2968 /******************************************************************************
2969 * ConvertStringSecurityDescriptorToSecurityDescriptorW [ADVAPI32.@]
2971 BOOL WINAPI ConvertStringSecurityDescriptorToSecurityDescriptorW(
2972 LPCWSTR StringSecurityDescriptor,
2973 DWORD StringSDRevision,
2974 PSECURITY_DESCRIPTOR* SecurityDescriptor,
2975 PULONG SecurityDescriptorSize)
2978 SECURITY_DESCRIPTOR* psd;
2981 TRACE("%s\n", debugstr_w(StringSecurityDescriptor));
2983 if (GetVersion() & 0x80000000)
2985 SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
2988 else if (StringSDRevision != SID_REVISION)
2990 SetLastError(ERROR_UNKNOWN_REVISION);
2994 /* Compute security descriptor length */
2995 if (!ParseStringSecurityDescriptorToSecurityDescriptor(StringSecurityDescriptor,
2999 psd = *SecurityDescriptor = (SECURITY_DESCRIPTOR*) LocalAlloc(
3000 GMEM_ZEROINIT, cBytes);
3002 psd->Revision = SID_REVISION;
3003 psd->Control |= SE_SELF_RELATIVE;
3005 if (!ParseStringSecurityDescriptorToSecurityDescriptor(StringSecurityDescriptor,
3012 if (SecurityDescriptorSize)
3013 *SecurityDescriptorSize = cBytes;
3018 TRACE(" ret=%d\n", bret);
3022 /******************************************************************************
3023 * ConvertStringSidToSidW [ADVAPI32.@]
3025 BOOL WINAPI ConvertStringSidToSidW(LPCWSTR StringSid, PSID* Sid)
3030 TRACE("%s, %p\n", debugstr_w(StringSid), Sid);
3031 if (GetVersion() & 0x80000000)
3032 SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
3033 else if (!StringSid || !Sid)
3034 SetLastError(ERROR_INVALID_PARAMETER);
3035 else if (ParseStringSidToSid(StringSid, NULL, &cBytes))
3037 PSID pSid = *Sid = (PSID) LocalAlloc(0, cBytes);
3039 bret = ParseStringSidToSid(StringSid, pSid, &cBytes);
3043 TRACE("returning %s\n", bret ? "TRUE" : "FALSE");
3047 /******************************************************************************
3048 * ConvertStringSidToSidA [ADVAPI32.@]
3050 BOOL WINAPI ConvertStringSidToSidA(LPCSTR StringSid, PSID* Sid)
3054 TRACE("%s, %p\n", debugstr_a(StringSid), Sid);
3055 if (GetVersion() & 0x80000000)
3056 SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
3057 else if (!StringSid || !Sid)
3058 SetLastError(ERROR_INVALID_PARAMETER);
3061 UINT len = MultiByteToWideChar(CP_ACP, 0, StringSid, -1, NULL, 0);
3062 LPWSTR wStringSid = HeapAlloc(GetProcessHeap(), 0,
3063 len * sizeof(WCHAR));
3065 MultiByteToWideChar(CP_ACP, 0, StringSid, -1, wStringSid, len);
3066 bret = ConvertStringSidToSidW(wStringSid, Sid);
3067 HeapFree(GetProcessHeap(), 0, wStringSid);
3069 TRACE("returning %s\n", bret ? "TRUE" : "FALSE");
3073 /******************************************************************************
3074 * ConvertSidToStringSidW [ADVAPI32.@]
3076 * format of SID string is:
3077 * S-<count>-<auth>-<subauth1>-<subauth2>-<subauth3>...
3079 * <rev> is the revision of the SID encoded as decimal
3080 * <auth> is the identifier authority encoded as hex
3081 * <subauthN> is the subauthority id encoded as decimal
3083 BOOL WINAPI ConvertSidToStringSidW( PSID pSid, LPWSTR *pstr )
3087 WCHAR fmt[] = { 'S','-','%','u','-','%','d',0 };
3088 WCHAR subauthfmt[] = { '-','%','u',0 };
3091 TRACE("%p %p\n", pSid, pstr );
3093 if( !IsValidSid( pSid ) )
3096 if (pisid->Revision != SDDL_REVISION)
3098 if (pisid->IdentifierAuthority.Value[0] ||
3099 pisid->IdentifierAuthority.Value[1])
3101 FIXME("not matching MS' bugs\n");
3105 sz = 14 + pisid->SubAuthorityCount * 11;
3106 str = LocalAlloc( 0, sz*sizeof(WCHAR) );
3107 sprintfW( str, fmt, pisid->Revision, MAKELONG(
3108 MAKEWORD( pisid->IdentifierAuthority.Value[5],
3109 pisid->IdentifierAuthority.Value[4] ),
3110 MAKEWORD( pisid->IdentifierAuthority.Value[3],
3111 pisid->IdentifierAuthority.Value[2] ) ) );
3112 for( i=0; i<pisid->SubAuthorityCount; i++ )
3113 sprintfW( str + strlenW(str), subauthfmt, pisid->SubAuthority[i] );
3119 /******************************************************************************
3120 * ConvertSidToStringSidA [ADVAPI32.@]
3122 BOOL WINAPI ConvertSidToStringSidA(PSID pSid, LPSTR *pstr)
3128 TRACE("%p %p\n", pSid, pstr );
3130 if( !ConvertSidToStringSidW( pSid, &wstr ) )
3133 len = WideCharToMultiByte( CP_ACP, 0, wstr, -1, NULL, 0, NULL, NULL );
3134 str = LocalAlloc( 0, len );
3135 WideCharToMultiByte( CP_ACP, 0, wstr, -1, str, len, NULL, NULL );
3143 BOOL WINAPI CreatePrivateObjectSecurity(
3144 PSECURITY_DESCRIPTOR ParentDescriptor,
3145 PSECURITY_DESCRIPTOR CreatorDescriptor,
3146 PSECURITY_DESCRIPTOR* NewDescriptor,
3147 BOOL IsDirectoryObject,
3149 PGENERIC_MAPPING GenericMapping )
3151 FIXME("%p %p %p %d %p %p - stub\n", ParentDescriptor, CreatorDescriptor,
3152 NewDescriptor, IsDirectoryObject, Token, GenericMapping);
3157 BOOL WINAPI DestroyPrivateObjectSecurity( PSECURITY_DESCRIPTOR* ObjectDescriptor )
3159 FIXME("%p - stub\n", ObjectDescriptor);
3164 BOOL WINAPI CreateProcessAsUserA(
3166 LPCSTR lpApplicationName,
3167 LPSTR lpCommandLine,
3168 LPSECURITY_ATTRIBUTES lpProcessAttributes,
3169 LPSECURITY_ATTRIBUTES lpThreadAttributes,
3170 BOOL bInheritHandles,
3171 DWORD dwCreationFlags,
3172 LPVOID lpEnvironment,
3173 LPCSTR lpCurrentDirectory,
3174 LPSTARTUPINFOA lpStartupInfo,
3175 LPPROCESS_INFORMATION lpProcessInformation )
3177 FIXME("%p %s %s %p %p %d 0x%08lx %p %s %p %p - stub\n", hToken, debugstr_a(lpApplicationName),
3178 debugstr_a(lpCommandLine), lpProcessAttributes, lpThreadAttributes, bInheritHandles,
3179 dwCreationFlags, lpEnvironment, debugstr_a(lpCurrentDirectory), lpStartupInfo, lpProcessInformation);
3184 BOOL WINAPI CreateProcessAsUserW(
3186 LPCWSTR lpApplicationName,
3187 LPWSTR lpCommandLine,
3188 LPSECURITY_ATTRIBUTES lpProcessAttributes,
3189 LPSECURITY_ATTRIBUTES lpThreadAttributes,
3190 BOOL bInheritHandles,
3191 DWORD dwCreationFlags,
3192 LPVOID lpEnvironment,
3193 LPCWSTR lpCurrentDirectory,
3194 LPSTARTUPINFOW lpStartupInfo,
3195 LPPROCESS_INFORMATION lpProcessInformation )
3197 FIXME("%p %s %s %p %p %d 0x%08lx %p %s %p %p - semi- stub\n", hToken,
3198 debugstr_w(lpApplicationName), debugstr_w(lpCommandLine), lpProcessAttributes,
3199 lpThreadAttributes, bInheritHandles, dwCreationFlags, lpEnvironment,
3200 debugstr_w(lpCurrentDirectory), lpStartupInfo, lpProcessInformation);
3202 /* We should create the process with a suspended main thread */
3203 if (!CreateProcessW (lpApplicationName,
3205 lpProcessAttributes,
3208 dwCreationFlags, /* CREATE_SUSPENDED */
3212 lpProcessInformation))
3220 /******************************************************************************
3221 * ComputeStringSidSize
3223 static DWORD ComputeStringSidSize(LPCWSTR StringSid)
3226 DWORD size = sizeof(SID);
3230 if (*StringSid == '-')
3236 size += (ctok - 3) * sizeof(DWORD);
3241 BOOL WINAPI DuplicateTokenEx(
3242 HANDLE ExistingTokenHandle, DWORD dwDesiredAccess,
3243 LPSECURITY_ATTRIBUTES lpTokenAttributes,
3244 SECURITY_IMPERSONATION_LEVEL ImpersonationLevel,
3245 TOKEN_TYPE TokenType,
3246 PHANDLE DuplicateTokenHandle )
3248 OBJECT_ATTRIBUTES ObjectAttributes;
3250 TRACE("%p 0x%08lx 0x%08x 0x%08x %p\n", ExistingTokenHandle, dwDesiredAccess,
3251 ImpersonationLevel, TokenType, DuplicateTokenHandle);
3253 InitializeObjectAttributes(
3256 (lpTokenAttributes && lpTokenAttributes->bInheritHandle) ? OBJ_INHERIT : 0,
3258 lpTokenAttributes ? lpTokenAttributes->lpSecurityDescriptor : NULL );
3260 return set_ntstatus( NtDuplicateToken( ExistingTokenHandle,
3265 DuplicateTokenHandle ) );
3268 BOOL WINAPI DuplicateToken(
3269 HANDLE ExistingTokenHandle,
3270 SECURITY_IMPERSONATION_LEVEL ImpersonationLevel,
3271 PHANDLE DuplicateTokenHandle )
3273 return DuplicateTokenEx( ExistingTokenHandle, TOKEN_IMPERSONATE | TOKEN_QUERY,
3274 NULL, ImpersonationLevel, TokenImpersonation,
3275 DuplicateTokenHandle );
3278 BOOL WINAPI EnumDependentServicesA(
3280 DWORD dwServiceState,
3281 LPENUM_SERVICE_STATUSA lpServices,
3283 LPDWORD pcbBytesNeeded,
3284 LPDWORD lpServicesReturned )
3286 FIXME("%p 0x%08lx %p 0x%08lx %p %p - stub\n", hService, dwServiceState,
3287 lpServices, cbBufSize, pcbBytesNeeded, lpServicesReturned);
3292 BOOL WINAPI EnumDependentServicesW(
3294 DWORD dwServiceState,
3295 LPENUM_SERVICE_STATUSW lpServices,
3297 LPDWORD pcbBytesNeeded,
3298 LPDWORD lpServicesReturned )
3300 FIXME("%p 0x%08lx %p 0x%08lx %p %p - stub\n", hService, dwServiceState,
3301 lpServices, cbBufSize, pcbBytesNeeded, lpServicesReturned);
3306 /******************************************************************************
3307 * ParseStringSidToSid
3309 static BOOL ParseStringSidToSid(LPCWSTR StringSid, PSID pSid, LPDWORD cBytes)
3314 TRACE("%s, %p, %p\n", debugstr_w(StringSid), pSid, cBytes);
3317 SetLastError(ERROR_INVALID_PARAMETER);
3318 TRACE("StringSid is NULL, returning FALSE\n");
3322 *cBytes = ComputeStringSidSize(StringSid);
3323 if (!pisid) /* Simply compute the size */
3325 TRACE("only size requested, returning TRUE\n");
3329 if (StringSid[0] == 'S' && StringSid[1] == '-') /* S-R-I-S-S */
3331 DWORD i = 0, identAuth;
3332 DWORD csubauth = ((*cBytes - sizeof(SID)) / sizeof(DWORD)) + 1;
3334 StringSid += 2; /* Advance to Revision */
3335 pisid->Revision = atoiW(StringSid);
3337 if (pisid->Revision != SDDL_REVISION)
3339 TRACE("Revision %d is unknown\n", pisid->Revision);
3340 goto lend; /* ERROR_INVALID_SID */
3344 TRACE("SubAuthorityCount is 0\n");
3345 goto lend; /* ERROR_INVALID_SID */
3348 pisid->SubAuthorityCount = csubauth;
3350 /* Advance to identifier authority */
3351 while (*StringSid && *StringSid != '-')
3353 if (*StringSid == '-')
3356 /* MS' implementation can't handle values greater than 2^32 - 1, so
3357 * we don't either; assume most significant bytes are always 0
3359 pisid->IdentifierAuthority.Value[0] = 0;
3360 pisid->IdentifierAuthority.Value[1] = 0;
3361 identAuth = atoiW(StringSid);
3362 pisid->IdentifierAuthority.Value[5] = identAuth & 0xff;
3363 pisid->IdentifierAuthority.Value[4] = (identAuth & 0xff00) >> 8;
3364 pisid->IdentifierAuthority.Value[3] = (identAuth & 0xff0000) >> 16;
3365 pisid->IdentifierAuthority.Value[2] = (identAuth & 0xff000000) >> 24;
3367 /* Advance to first sub authority */
3368 while (*StringSid && *StringSid != '-')
3370 if (*StringSid == '-')
3375 while (*StringSid && *StringSid != '-')
3378 pisid->SubAuthority[i++] = atoiW(StringSid);
3381 if (i != pisid->SubAuthorityCount)
3382 goto lend; /* ERROR_INVALID_SID */
3386 else /* String constant format - Only available in winxp and above */
3388 pisid->Revision = SDDL_REVISION;
3389 pisid->SubAuthorityCount = 1;
3391 FIXME("String constant not supported: %s\n", debugstr_wn(StringSid, 2));
3393 /* TODO: Lookup string of well-known SIDs in table */
3394 pisid->IdentifierAuthority.Value[5] = 0;
3395 pisid->SubAuthority[0] = 0;
3402 SetLastError(ERROR_INVALID_SID);
3404 TRACE("returning %s\n", bret ? "TRUE" : "FALSE");
3408 /******************************************************************************
3409 * GetNamedSecurityInfoA [ADVAPI32.@]
3411 DWORD WINAPI GetNamedSecurityInfoA(LPSTR pObjectName,
3412 SE_OBJECT_TYPE ObjectType, SECURITY_INFORMATION SecurityInfo,
3413 PSID* ppsidOwner, PSID* ppsidGroup, PACL* ppDacl, PACL* ppSacl,
3414 PSECURITY_DESCRIPTOR* ppSecurityDescriptor)
3420 TRACE("%s %d %ld %p %p %p %p %p\n", pObjectName, ObjectType, SecurityInfo,
3421 ppsidOwner, ppsidGroup, ppDacl, ppSacl, ppSecurityDescriptor);
3425 len = MultiByteToWideChar( CP_ACP, 0, pObjectName, -1, NULL, 0 );
3426 wstr = HeapAlloc( GetProcessHeap(), 0, len*sizeof(WCHAR));
3427 MultiByteToWideChar( CP_ACP, 0, pObjectName, -1, wstr, len );
3430 r = GetNamedSecurityInfoW( wstr, ObjectType, SecurityInfo, ppsidOwner,
3431 ppsidGroup, ppDacl, ppSacl, ppSecurityDescriptor );
3433 HeapFree( GetProcessHeap(), 0, wstr );
3438 /******************************************************************************
3439 * GetNamedSecurityInfoW [ADVAPI32.@]
3441 DWORD WINAPI GetNamedSecurityInfoW( LPWSTR name, SE_OBJECT_TYPE type,
3442 SECURITY_INFORMATION info, PSID* owner, PSID* group, PACL* dacl,
3443 PACL* sacl, PSECURITY_DESCRIPTOR* descriptor )
3445 DWORD needed, offset;
3446 SECURITY_DESCRIPTOR_RELATIVE *relative;
3449 TRACE( "%s %d %ld %p %p %p %p %p\n", debugstr_w(name), type, info, owner,
3450 group, dacl, sacl, descriptor );
3452 if (!name || !descriptor) return ERROR_INVALID_PARAMETER;
3454 needed = sizeof(SECURITY_DESCRIPTOR_RELATIVE);
3455 if (info & OWNER_SECURITY_INFORMATION)
3456 needed += sizeof(sidWorld);
3457 if (info & GROUP_SECURITY_INFORMATION)
3458 needed += sizeof(sidWorld);
3459 if (info & DACL_SECURITY_INFORMATION)
3460 needed += WINE_SIZE_OF_WORLD_ACCESS_ACL;
3461 if (info & SACL_SECURITY_INFORMATION)
3462 needed += WINE_SIZE_OF_WORLD_ACCESS_ACL;
3464 /* must be freed by caller */
3465 *descriptor = HeapAlloc( GetProcessHeap(), 0, needed );
3466 if (!*descriptor) return ERROR_NOT_ENOUGH_MEMORY;
3468 if (!InitializeSecurityDescriptor( *descriptor, SECURITY_DESCRIPTOR_REVISION ))
3470 HeapFree( GetProcessHeap(), 0, *descriptor );
3471 return ERROR_INVALID_SECURITY_DESCR;
3474 relative = (SECURITY_DESCRIPTOR_RELATIVE *)*descriptor;
3475 relative->Control |= SE_SELF_RELATIVE;
3476 buffer = (BYTE *)relative;
3477 offset = sizeof(SECURITY_DESCRIPTOR_RELATIVE);
3479 if (owner && (info & OWNER_SECURITY_INFORMATION))
3481 memcpy( buffer + offset, &sidWorld, sizeof(sidWorld) );
3482 relative->Owner = offset;
3483 *owner = buffer + offset;
3484 offset += sizeof(sidWorld);
3486 if (group && (info & GROUP_SECURITY_INFORMATION))
3488 memcpy( buffer + offset, &sidWorld, sizeof(sidWorld) );
3489 relative->Group = offset;
3490 *group = buffer + offset;
3491 offset += sizeof(sidWorld);
3493 if (dacl && (info & DACL_SECURITY_INFORMATION))
3495 GetWorldAccessACL( (PACL)(buffer + offset) );
3496 relative->Dacl = offset;
3497 *dacl = (PACL)(buffer + offset);
3498 offset += WINE_SIZE_OF_WORLD_ACCESS_ACL;
3500 if (sacl && (info & SACL_SECURITY_INFORMATION))
3502 GetWorldAccessACL( (PACL)(buffer + offset) );
3503 relative->Sacl = offset;
3504 *sacl = (PACL)(buffer + offset);
3506 return ERROR_SUCCESS;
3509 /******************************************************************************
3510 * DecryptFileW [ADVAPI32.@]
3512 BOOL WINAPI DecryptFileW(LPCWSTR lpFileName, DWORD dwReserved)
3514 FIXME("%s %08lx\n", debugstr_w(lpFileName), dwReserved);
3518 /******************************************************************************
3519 * DecryptFileA [ADVAPI32.@]
3521 BOOL WINAPI DecryptFileA(LPCSTR lpFileName, DWORD dwReserved)
3523 FIXME("%s %08lx\n", debugstr_a(lpFileName), dwReserved);
3527 /******************************************************************************
3528 * EncryptFileW [ADVAPI32.@]
3530 BOOL WINAPI EncryptFileW(LPCWSTR lpFileName)
3532 FIXME("%s\n", debugstr_w(lpFileName));
3536 /******************************************************************************
3537 * EncryptFileA [ADVAPI32.@]
3539 BOOL WINAPI EncryptFileA(LPCSTR lpFileName)
3541 FIXME("%s\n", debugstr_a(lpFileName));
3545 /******************************************************************************
3546 * FileEncryptionStatusW [ADVAPI32.@]
3548 BOOL WINAPI FileEncryptionStatusW(LPCWSTR lpFileName, LPDWORD lpStatus)
3550 FIXME("(%s %p): stub\n", debugstr_w(lpFileName), lpStatus);
3553 *lpStatus = FILE_SYSTEM_NOT_SUPPORT;
3557 /******************************************************************************
3558 * FileEncryptionStatusA [ADVAPI32.@]
3560 BOOL WINAPI FileEncryptionStatusA(LPCSTR lpFileName, LPDWORD lpStatus)
3562 FIXME("(%s %p): stub\n", debugstr_a(lpFileName), lpStatus);
3565 *lpStatus = FILE_SYSTEM_NOT_SUPPORT;
3569 /******************************************************************************
3570 * SetSecurityInfo [ADVAPI32.@]
3572 DWORD WINAPI SetSecurityInfo(HANDLE handle, SE_OBJECT_TYPE ObjectType,
3573 SECURITY_INFORMATION SecurityInfo, PSID psidOwner,
3574 PSID psidGroup, PACL pDacl, PACL pSacl) {
3576 return ERROR_SUCCESS;