mirror of
https://github.com/decompals/wibo.git
synced 2025-10-15 22:55:11 +00:00
118 lines
4.0 KiB
C++
118 lines
4.0 KiB
C++
#include "winbase.h"
|
|
|
|
#include "errors.h"
|
|
#include "internal.h"
|
|
#include "strutil.h"
|
|
|
|
#include <algorithm>
|
|
#include <cstring>
|
|
|
|
namespace {
|
|
|
|
constexpr WCHAR kAccountSystem[] = {u'S', u'Y', u'S', u'T', u'E', u'M', u'\0'};
|
|
constexpr WCHAR kDomainNtAuthority[] = {u'N', u'T', u' ', u'A', u'U', u'T', u'H', u'O', u'R', u'I', u'T', u'Y', u'\0'};
|
|
|
|
} // namespace
|
|
|
|
namespace advapi32 {
|
|
|
|
BOOL WIN_FUNC LookupAccountSidW(LPCWSTR lpSystemName, PSID Sid, LPWSTR Name, LPDWORD cchName,
|
|
LPWSTR ReferencedDomainName, LPDWORD cchReferencedDomainName, SID_NAME_USE *peUse) {
|
|
std::string systemName = lpSystemName ? wideStringToString(lpSystemName) : std::string("(null)");
|
|
DEBUG_LOG("LookupAccountSidW(%s, %p, %p, %p, %p, %p, %p)\n", systemName.c_str(), Sid, Name, cchName,
|
|
ReferencedDomainName, cchReferencedDomainName, peUse);
|
|
if (!Sid || !cchName || !cchReferencedDomainName || !peUse) {
|
|
wibo::lastError = ERROR_INVALID_PARAMETER;
|
|
return FALSE;
|
|
}
|
|
auto *sidStruct = reinterpret_cast<const ::advapi32::Sid *>(Sid);
|
|
if (!isLocalSystemSid(sidStruct)) {
|
|
wibo::lastError = ERROR_NONE_MAPPED;
|
|
return FALSE;
|
|
}
|
|
DWORD requiredAccount = static_cast<DWORD>(wstrlen(kAccountSystem));
|
|
DWORD requiredDomain = static_cast<DWORD>(wstrlen(kDomainNtAuthority));
|
|
if (!Name || *cchName <= requiredAccount || !ReferencedDomainName || *cchReferencedDomainName <= requiredDomain) {
|
|
*cchName = requiredAccount + 1;
|
|
*cchReferencedDomainName = requiredDomain + 1;
|
|
wibo::lastError = ERROR_INSUFFICIENT_BUFFER;
|
|
return FALSE;
|
|
}
|
|
std::copy_n(kAccountSystem, requiredAccount + 1, Name);
|
|
std::copy_n(kDomainNtAuthority, requiredDomain + 1, ReferencedDomainName);
|
|
*peUse = SidTypeWellKnownGroup;
|
|
*cchName = requiredAccount;
|
|
*cchReferencedDomainName = requiredDomain;
|
|
wibo::lastError = ERROR_SUCCESS;
|
|
return TRUE;
|
|
}
|
|
|
|
BOOL WIN_FUNC LookupPrivilegeValueA(LPCSTR lpSystemName, LPCSTR lpName, PLUID lpLuid) {
|
|
DEBUG_LOG("LookupPrivilegeValueA(%s, %s, %p)\n", lpSystemName ? lpSystemName : "(null)", lpName ? lpName : "(null)",
|
|
lpLuid);
|
|
(void)lpSystemName; // only local lookup supported
|
|
if (!lpName || !lpLuid) {
|
|
wibo::lastError = ERROR_INVALID_PARAMETER;
|
|
return FALSE;
|
|
}
|
|
std::string normalized = normalizePrivilegeName(lpName);
|
|
LUID luid = lookupOrGeneratePrivilegeLuid(normalized);
|
|
*lpLuid = luid;
|
|
wibo::lastError = ERROR_SUCCESS;
|
|
return TRUE;
|
|
}
|
|
|
|
BOOL WIN_FUNC LookupPrivilegeValueW(LPCWSTR lpSystemName, LPCWSTR lpName, PLUID lpLuid) {
|
|
DEBUG_LOG("LookupPrivilegeValueW(%p, %p, %p)\n", lpSystemName, lpName, lpLuid);
|
|
(void)lpSystemName; // only local lookup supported
|
|
if (!lpName || !lpLuid) {
|
|
wibo::lastError = ERROR_INVALID_PARAMETER;
|
|
return FALSE;
|
|
}
|
|
std::string ansiName = wideStringToString(lpName);
|
|
std::string normalized = normalizePrivilegeName(ansiName);
|
|
LUID luid = lookupOrGeneratePrivilegeLuid(normalized);
|
|
*lpLuid = luid;
|
|
wibo::lastError = ERROR_SUCCESS;
|
|
return TRUE;
|
|
}
|
|
|
|
BOOL WIN_FUNC GetUserNameA(LPSTR lpBuffer, LPDWORD pcbBuffer) {
|
|
DEBUG_LOG("GetUserNameA(%p, %p)\n", lpBuffer, pcbBuffer);
|
|
if (!pcbBuffer) {
|
|
wibo::lastError = ERROR_INVALID_PARAMETER;
|
|
return FALSE;
|
|
}
|
|
const char *name = "SYSTEM";
|
|
size_t needed = std::strlen(name) + 1;
|
|
if (!lpBuffer || *pcbBuffer < needed) {
|
|
*pcbBuffer = static_cast<DWORD>(needed);
|
|
wibo::lastError = ERROR_INSUFFICIENT_BUFFER;
|
|
return FALSE;
|
|
}
|
|
std::memcpy(lpBuffer, name, needed);
|
|
*pcbBuffer = static_cast<DWORD>(needed);
|
|
wibo::lastError = ERROR_SUCCESS;
|
|
return TRUE;
|
|
}
|
|
|
|
BOOL WIN_FUNC GetUserNameW(LPWSTR lpBuffer, LPDWORD pcbBuffer) {
|
|
DEBUG_LOG("GetUserNameW(%p, %p)\n", lpBuffer, pcbBuffer);
|
|
if (!pcbBuffer) {
|
|
wibo::lastError = ERROR_INVALID_PARAMETER;
|
|
return FALSE;
|
|
}
|
|
size_t needed = wstrlen(kAccountSystem) + 1;
|
|
if (!lpBuffer || *pcbBuffer < needed) {
|
|
*pcbBuffer = static_cast<DWORD>(needed);
|
|
wibo::lastError = ERROR_INSUFFICIENT_BUFFER;
|
|
return FALSE;
|
|
}
|
|
std::memcpy(lpBuffer, kAccountSystem, needed * sizeof(WCHAR));
|
|
*pcbBuffer = static_cast<DWORD>(needed);
|
|
wibo::lastError = ERROR_SUCCESS;
|
|
return TRUE;
|
|
}
|
|
|
|
} // namespace advapi32
|