security.hpp 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. // security.hpp --------------------------------------------------------------//
  2. // Copyright 2010 Vicente J. Botet Escriba
  3. // Copyright 2015 Andrey Semashev
  4. // Distributed under the Boost Software License, Version 1.0.
  5. // See http://www.boost.org/LICENSE_1_0.txt
  6. #ifndef BOOST_DETAIL_WINAPI_SECURITY_HPP
  7. #define BOOST_DETAIL_WINAPI_SECURITY_HPP
  8. #include <boost/detail/winapi/basic_types.hpp>
  9. #ifdef BOOST_HAS_PRAGMA_ONCE
  10. #pragma once
  11. #endif
  12. #if !defined( BOOST_USE_WINDOWS_H )
  13. extern "C" {
  14. struct _ACL;
  15. struct _SECURITY_DESCRIPTOR;
  16. #if defined( BOOST_WINAPI_IS_MINGW )
  17. typedef _SECURITY_DESCRIPTOR *PSECURITY_DESCRIPTOR;
  18. #else
  19. typedef boost::detail::winapi::PVOID_ PSECURITY_DESCRIPTOR;
  20. #endif
  21. BOOST_SYMBOL_IMPORT boost::detail::winapi::BOOL_ WINAPI
  22. InitializeSecurityDescriptor(
  23. PSECURITY_DESCRIPTOR pSecurityDescriptor,
  24. boost::detail::winapi::DWORD_ dwRevision);
  25. BOOST_SYMBOL_IMPORT boost::detail::winapi::BOOL_ WINAPI
  26. SetSecurityDescriptorDacl(
  27. PSECURITY_DESCRIPTOR pSecurityDescriptor,
  28. boost::detail::winapi::BOOL_ bDaclPresent,
  29. ::_ACL* pDacl,
  30. boost::detail::winapi::BOOL_ bDaclDefaulted);
  31. }
  32. #endif
  33. namespace boost {
  34. namespace detail {
  35. namespace winapi {
  36. typedef PVOID_ PSID_;
  37. typedef WORD_ SECURITY_DESCRIPTOR_CONTROL_, *PSECURITY_DESCRIPTOR_CONTROL_;
  38. typedef struct BOOST_DETAIL_WINAPI_MAY_ALIAS _ACL {
  39. BYTE_ AclRevision;
  40. BYTE_ Sbz1;
  41. WORD_ AclSize;
  42. WORD_ AceCount;
  43. WORD_ Sbz2;
  44. } ACL_, *PACL_;
  45. typedef struct BOOST_DETAIL_WINAPI_MAY_ALIAS _SECURITY_DESCRIPTOR {
  46. BYTE_ Revision;
  47. BYTE_ Sbz1;
  48. SECURITY_DESCRIPTOR_CONTROL_ Control;
  49. PSID_ Owner;
  50. PSID_ Group;
  51. PACL_ Sacl;
  52. PACL_ Dacl;
  53. } SECURITY_DESCRIPTOR_, *PISECURITY_DESCRIPTOR_;
  54. typedef ::PSECURITY_DESCRIPTOR PSECURITY_DESCRIPTOR_;
  55. using ::InitializeSecurityDescriptor;
  56. BOOST_FORCEINLINE BOOL_ SetSecurityDescriptorDacl(PSECURITY_DESCRIPTOR_ pSecurityDescriptor, BOOL_ bDaclPresent, PACL_ pDacl, BOOL_ bDaclDefaulted)
  57. {
  58. return ::SetSecurityDescriptorDacl(pSecurityDescriptor, bDaclPresent, reinterpret_cast< ::_ACL* >(pDacl), bDaclDefaulted);
  59. }
  60. }
  61. }
  62. }
  63. #endif // BOOST_DETAIL_WINAPI_SECURITY_HPP