aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/include/winapi/sid.hpp
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2020-10-18 04:05:48 +0300
committerEgor Tensin <Egor.Tensin@gmail.com>2020-10-18 04:08:01 +0300
commit512a25658dd6b737a16b91fb7eba43deef004d87 (patch)
treee9b5fe69f55d9e1ca124b13814f01f280778c165 /include/winapi/sid.hpp
parentProcess: add get_exe_path() (diff)
downloadwinapi-common-512a25658dd6b737a16b91fb7eba43deef004d87.tar.gz
winapi-common-512a25658dd6b737a16b91fb7eba43deef004d87.zip
add Sid class
It's another newcomer straight from privilege-check.
Diffstat (limited to 'include/winapi/sid.hpp')
-rw-r--r--include/winapi/sid.hpp43
1 files changed, 43 insertions, 0 deletions
diff --git a/include/winapi/sid.hpp b/include/winapi/sid.hpp
new file mode 100644
index 0000000..f418b89
--- /dev/null
+++ b/include/winapi/sid.hpp
@@ -0,0 +1,43 @@
+// Copyright (c) 2020 Egor Tensin <Egor.Tensin@gmail.com>
+// This file is part of the "winapi-common" project.
+// For details, see https://github.com/egor-tensin/winapi-common.
+// Distributed under the MIT License.
+
+#pragma once
+
+#include "buffer.hpp"
+
+#include <boost/config.hpp>
+
+#include <windows.h>
+
+#include <cstddef>
+#include <string>
+
+namespace winapi {
+
+class Sid {
+public:
+ BOOST_STATIC_CONSTEXPR std::size_t MAX_SID_SIZE = SECURITY_MAX_SID_SIZE;
+
+ typedef SID Impl;
+
+ static Sid well_known(WELL_KNOWN_SID_TYPE type);
+
+ static Sid builtin_administrators();
+
+ explicit Sid(const Buffer& buffer) : m_buffer(buffer) {}
+
+ explicit operator SID&() { return get_impl(); }
+ explicit operator const SID&() const { return get_impl(); }
+
+ std::string to_string() const;
+
+private:
+ Impl& get_impl() { return *reinterpret_cast<SID*>(m_buffer.data()); }
+ const Impl& get_impl() const { return *reinterpret_cast<const SID*>(m_buffer.data()); }
+
+ Buffer m_buffer;
+};
+
+} // namespace winapi