123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214 |
- /**
- * WinPR: Windows Portable Runtime
- * Base Security Functions
- *
- * Copyright 2013 Marc-Andre Moreau <marcandre.moreau@gmail.com>
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
- #ifdef HAVE_CONFIG_H
- #include "config.h"
- #endif
- #include <winpr/crt.h>
- #ifdef HAVE_UNISTD_H
- #include <unistd.h>
- #endif
- #include <winpr/security.h>
- /**
- * api-ms-win-security-base-l1-2-0.dll:
- *
- * AccessCheck
- * AccessCheckAndAuditAlarmW
- * AccessCheckByType
- * AccessCheckByTypeAndAuditAlarmW
- * AccessCheckByTypeResultList
- * AccessCheckByTypeResultListAndAuditAlarmByHandleW
- * AccessCheckByTypeResultListAndAuditAlarmW
- * AddAccessAllowedAce
- * AddAccessAllowedAceEx
- * AddAccessAllowedObjectAce
- * AddAccessDeniedAce
- * AddAccessDeniedAceEx
- * AddAccessDeniedObjectAce
- * AddAce
- * AddAuditAccessAce
- * AddAuditAccessAceEx
- * AddAuditAccessObjectAce
- * AddMandatoryAce
- * AddResourceAttributeAce
- * AddScopedPolicyIDAce
- * AdjustTokenGroups
- * AdjustTokenPrivileges
- * AllocateAndInitializeSid
- * AllocateLocallyUniqueId
- * AreAllAccessesGranted
- * AreAnyAccessesGranted
- * CheckTokenCapability
- * CheckTokenMembership
- * CheckTokenMembershipEx
- * ConvertToAutoInheritPrivateObjectSecurity
- * CopySid
- * CreatePrivateObjectSecurity
- * CreatePrivateObjectSecurityEx
- * CreatePrivateObjectSecurityWithMultipleInheritance
- * CreateRestrictedToken
- * CreateWellKnownSid
- * DeleteAce
- * DestroyPrivateObjectSecurity
- * DuplicateToken
- * DuplicateTokenEx
- * EqualDomainSid
- * EqualPrefixSid
- * EqualSid
- * FindFirstFreeAce
- * FreeSid
- * GetAce
- * GetAclInformation
- * GetAppContainerAce
- * GetCachedSigningLevel
- * GetFileSecurityW
- * GetKernelObjectSecurity
- * GetLengthSid
- * GetPrivateObjectSecurity
- * GetSidIdentifierAuthority
- * GetSidLengthRequired
- * GetSidSubAuthority
- * GetSidSubAuthorityCount
- * GetTokenInformation
- * GetWindowsAccountDomainSid
- * ImpersonateAnonymousToken
- * ImpersonateLoggedOnUser
- * ImpersonateSelf
- * InitializeAcl
- * InitializeSid
- * IsTokenRestricted
- * IsValidAcl
- * IsValidSid
- * IsWellKnownSid
- * MakeAbsoluteSD
- * MakeSelfRelativeSD
- * MapGenericMask
- * ObjectCloseAuditAlarmW
- * ObjectDeleteAuditAlarmW
- * ObjectOpenAuditAlarmW
- * ObjectPrivilegeAuditAlarmW
- * PrivilegeCheck
- * PrivilegedServiceAuditAlarmW
- * QuerySecurityAccessMask
- * RevertToSelf
- * SetAclInformation
- * SetCachedSigningLevel
- * SetFileSecurityW
- * SetKernelObjectSecurity
- * SetPrivateObjectSecurity
- * SetPrivateObjectSecurityEx
- * SetSecurityAccessMask
- * SetTokenInformation
- */
- #ifndef _WIN32
- #include "security.h"
- BOOL InitializeSecurityDescriptor(PSECURITY_DESCRIPTOR pSecurityDescriptor, DWORD dwRevision)
- {
- return TRUE;
- }
- DWORD GetSecurityDescriptorLength(PSECURITY_DESCRIPTOR pSecurityDescriptor)
- {
- return 0;
- }
- BOOL IsValidSecurityDescriptor(PSECURITY_DESCRIPTOR pSecurityDescriptor)
- {
- return TRUE;
- }
- BOOL GetSecurityDescriptorControl(PSECURITY_DESCRIPTOR pSecurityDescriptor,
- PSECURITY_DESCRIPTOR_CONTROL pControl, LPDWORD lpdwRevision)
- {
- return TRUE;
- }
- BOOL SetSecurityDescriptorControl(PSECURITY_DESCRIPTOR pSecurityDescriptor,
- SECURITY_DESCRIPTOR_CONTROL ControlBitsOfInterest,
- SECURITY_DESCRIPTOR_CONTROL ControlBitsToSet)
- {
- return TRUE;
- }
- BOOL GetSecurityDescriptorDacl(PSECURITY_DESCRIPTOR pSecurityDescriptor, LPBOOL lpbDaclPresent,
- PACL* pDacl, LPBOOL lpbDaclDefaulted)
- {
- return TRUE;
- }
- BOOL SetSecurityDescriptorDacl(PSECURITY_DESCRIPTOR pSecurityDescriptor, BOOL bDaclPresent,
- PACL pDacl, BOOL bDaclDefaulted)
- {
- return TRUE;
- }
- BOOL GetSecurityDescriptorGroup(PSECURITY_DESCRIPTOR pSecurityDescriptor, PSID* pGroup,
- LPBOOL lpbGroupDefaulted)
- {
- return TRUE;
- }
- BOOL SetSecurityDescriptorGroup(PSECURITY_DESCRIPTOR pSecurityDescriptor, PSID pGroup,
- BOOL bGroupDefaulted)
- {
- return TRUE;
- }
- BOOL GetSecurityDescriptorOwner(PSECURITY_DESCRIPTOR pSecurityDescriptor, PSID* pOwner,
- LPBOOL lpbOwnerDefaulted)
- {
- return TRUE;
- }
- BOOL SetSecurityDescriptorOwner(PSECURITY_DESCRIPTOR pSecurityDescriptor, PSID pOwner,
- BOOL bOwnerDefaulted)
- {
- return TRUE;
- }
- DWORD GetSecurityDescriptorRMControl(PSECURITY_DESCRIPTOR SecurityDescriptor, PUCHAR RMControl)
- {
- return 0;
- }
- DWORD SetSecurityDescriptorRMControl(PSECURITY_DESCRIPTOR SecurityDescriptor, PUCHAR RMControl)
- {
- return 0;
- }
- BOOL GetSecurityDescriptorSacl(PSECURITY_DESCRIPTOR pSecurityDescriptor, LPBOOL lpbSaclPresent,
- PACL* pSacl, LPBOOL lpbSaclDefaulted)
- {
- return TRUE;
- }
- BOOL SetSecurityDescriptorSacl(PSECURITY_DESCRIPTOR pSecurityDescriptor, BOOL bSaclPresent,
- PACL pSacl, BOOL bSaclDefaulted)
- {
- return TRUE;
- }
- #endif
|