Welcome to mirror list, hosted at ThFree Co, Russian Federation.

isadmin.c « modules « src « lua « 3rdparty - github.com/windirstat/windirstat.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4e982f30a7bbfeaca7a61d66391e905248414605 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
///////////////////////////////////////////////////////////////////////////////
///
/// Written 2012, Oliver Schneider (assarbad.net) - PUBLIC DOMAIN/CC0
///
/// Original filename: isadmin.c
/// Project          : WinDirStat
/// Author(s)        : Oliver Schneider
///
/// Purpose          : Lua function, implemented in C, to check whether the
///                    user is privileged or not.
///
///////////////////////////////////////////////////////////////////////////////

#include <Windows.h>
#include <tchar.h>
#include <lua.h>

BOOL static IsAdmin_()
{
    SID_IDENTIFIER_AUTHORITY NtAuthority = SECURITY_NT_AUTHORITY;
    PSID pSid;
    if (AllocateAndInitializeSid(&NtAuthority, 2, SECURITY_BUILTIN_DOMAIN_RID, DOMAIN_ALIAS_RID_ADMINS, 0, 0, 0, 0, 0, 0, &pSid))
    {
        BOOL bResult = FALSE;
        if (!CheckTokenMembership( NULL, pSid, &bResult))
        {
            FreeSid(pSid);
            return FALSE;
        }
        FreeSid(pSid);
        return bResult;
    }

    return FALSE;
}

static int luaC_isadmin_(lua_State* L)
{
    static int *pcachedResult = NULL;
    if(!pcachedResult)
    {
        static int cachedResult = 0;
        cachedResult = (IsAdmin_()) ? 1 : 0;
        pcachedResult = &cachedResult;
    }
    lua_pushboolean(L, *pcachedResult);
    return 1;
}

LUA_API const luaL_Reg isadmin_funcs[] = {
    {"isadmin", luaC_isadmin_},
    {NULL, NULL}
};