dynamically load CheckTokenMembership
git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@3012 fc73d0e0-1445-4013-8a0c-d673dee63da5
This commit is contained in:
parent
51989fe5f6
commit
e33bd0bff1
1 changed files with 37 additions and 25 deletions
|
@ -3132,11 +3132,11 @@ void COM_InitFilesystem (void)
|
||||||
#ifdef _WIN32
|
#ifdef _WIN32
|
||||||
{ //win32 sucks.
|
{ //win32 sucks.
|
||||||
HMODULE shfolder = LoadLibrary("shfolder.dll");
|
HMODULE shfolder = LoadLibrary("shfolder.dll");
|
||||||
|
HMODULE advapi32;
|
||||||
DWORD winver = (DWORD)LOBYTE(LOWORD(GetVersion()));
|
DWORD winver = (DWORD)LOBYTE(LOWORD(GetVersion()));
|
||||||
|
|
||||||
if (shfolder)
|
if (shfolder)
|
||||||
{
|
{
|
||||||
//
|
|
||||||
HRESULT (WINAPI *dSHGetFolderPath) (HWND hwndOwner, int nFolder, HANDLE hToken, DWORD dwFlags, LPTSTR pszPath);
|
HRESULT (WINAPI *dSHGetFolderPath) (HWND hwndOwner, int nFolder, HANDLE hToken, DWORD dwFlags, LPTSTR pszPath);
|
||||||
dSHGetFolderPath = (void *)GetProcAddress(shfolder, "SHGetFolderPathA");
|
dSHGetFolderPath = (void *)GetProcAddress(shfolder, "SHGetFolderPathA");
|
||||||
if (dSHGetFolderPath)
|
if (dSHGetFolderPath)
|
||||||
|
@ -3153,38 +3153,50 @@ void COM_InitFilesystem (void)
|
||||||
usehome = true; // always use home directory by default, as Vista+ mimics this behavior anyway
|
usehome = true; // always use home directory by default, as Vista+ mimics this behavior anyway
|
||||||
else if (winver >= 0x5) // Windows 2000/XP/2003
|
else if (winver >= 0x5) // Windows 2000/XP/2003
|
||||||
{
|
{
|
||||||
// on XP systems, only use a home directory by default if we're a limited user or if we're on a network
|
advapi32 = LoadLibrary("advapi32.dll");
|
||||||
BOOL isadmin, isonnetwork;
|
|
||||||
SID_IDENTIFIER_AUTHORITY ntauth = SECURITY_NT_AUTHORITY;
|
|
||||||
PSID adminSID, networkSID;
|
|
||||||
|
|
||||||
isadmin = AllocateAndInitializeSid(&ntauth,
|
if (advapi32)
|
||||||
2,
|
{
|
||||||
SECURITY_BUILTIN_DOMAIN_RID,
|
BOOL (WINAPI *dCheckTokenMembership) (HANDLE TokenHandle, PSID SidToCheck, PBOOL IsMember);
|
||||||
DOMAIN_ALIAS_RID_ADMINS,
|
dCheckTokenMembership = (void *)GetProcAddress(advapi32, "CheckTokenMembership");
|
||||||
0, 0, 0, 0, 0, 0,
|
|
||||||
&adminSID);
|
|
||||||
|
|
||||||
// just checking the network rid should be close enough to matching domain logins
|
if (dCheckTokenMembership)
|
||||||
isonnetwork = AllocateAndInitializeSid(&ntauth,
|
{
|
||||||
1,
|
// on XP systems, only use a home directory by default if we're a limited user or if we're on a network
|
||||||
SECURITY_NETWORK_RID,
|
BOOL isadmin, isonnetwork;
|
||||||
0, 0, 0, 0, 0, 0, 0,
|
SID_IDENTIFIER_AUTHORITY ntauth = SECURITY_NT_AUTHORITY;
|
||||||
&networkSID);
|
PSID adminSID, networkSID;
|
||||||
|
|
||||||
if (isadmin && !CheckTokenMembership(0, adminSID, &isadmin))
|
isadmin = AllocateAndInitializeSid(&ntauth,
|
||||||
isadmin = 0;
|
2,
|
||||||
|
SECURITY_BUILTIN_DOMAIN_RID,
|
||||||
|
DOMAIN_ALIAS_RID_ADMINS,
|
||||||
|
0, 0, 0, 0, 0, 0,
|
||||||
|
&adminSID);
|
||||||
|
|
||||||
if (isonnetwork && !CheckTokenMembership(0, networkSID, &isonnetwork))
|
// just checking the network rid should be close enough to matching domain logins
|
||||||
isonnetwork = 0;
|
isonnetwork = AllocateAndInitializeSid(&ntauth,
|
||||||
|
1,
|
||||||
|
SECURITY_NETWORK_RID,
|
||||||
|
0, 0, 0, 0, 0, 0, 0,
|
||||||
|
&networkSID);
|
||||||
|
|
||||||
usehome = isonnetwork || !isadmin;
|
if (isadmin && !dCheckTokenMembership(0, adminSID, &isadmin))
|
||||||
|
isadmin = 0;
|
||||||
|
|
||||||
FreeSid(networkSID);
|
if (isonnetwork && !dCheckTokenMembership(0, networkSID, &isonnetwork))
|
||||||
FreeSid(adminSID);
|
isonnetwork = 0;
|
||||||
|
|
||||||
|
usehome = isonnetwork || !isadmin;
|
||||||
|
|
||||||
|
FreeSid(networkSID);
|
||||||
|
FreeSid(adminSID);
|
||||||
|
}
|
||||||
|
|
||||||
|
FreeLibrary(advapi32);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
if (!*com_homedir)
|
if (!*com_homedir)
|
||||||
{
|
{
|
||||||
ev = getenv("USERPROFILE");
|
ev = getenv("USERPROFILE");
|
||||||
|
|
Loading…
Reference in a new issue