summaryrefslogtreecommitdiff
path: root/vdagent/as_user.cpp
blob: c8016dab4482ffb88e429f437e4f5735c3d0d547 (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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
/*
   Copyright (C) 2013 Red Hat, Inc.

   This program is free software; you can redistribute it and/or
   modify it under the terms of the GNU General Public License as
   published by the Free Software Foundation; either version 2 of
   the License, or (at your option) any later version.

   This program is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   GNU General Public License for more details.

   You should have received a copy of the GNU General Public License
   along with this program.  If not, see <http://www.gnu.org/licenses/>.
*/

#include "vdcommon.h"
#include "as_user.h"

#include <wtsapi32.h>

AsUser::AsUser(DWORD session_id):
    _session_id(session_id),
    _token(INVALID_HANDLE_VALUE),
    _started(false)
{
}

bool AsUser::begin()
{
    BOOL ret;

    if (_session_id == (DWORD)-1) {
        ret = ProcessIdToSessionId(GetCurrentProcessId(), &_session_id);
        if (!ret) {
            vd_printf("ProcessIdToSessionId failed %lu", GetLastError());
            return false;
        }
    }
    if (_token == INVALID_HANDLE_VALUE) {
        ret = WTSQueryUserToken(_session_id, &_token);
        if (!ret) {
            vd_printf("WTSQueryUserToken failed -- %lu", GetLastError());
        return false;
        }
    }

    ret = ImpersonateLoggedOnUser(_token);
    if (!ret) {
        vd_printf("ImpersonateLoggedOnUser failed: %lu", GetLastError());
        return false;
    }

    _started = true;
    return true;
}

void AsUser::end()
{
    if (_started) {
        RevertToSelf();
        _started = false;
    }
}

AsUser::~AsUser()
{
    end();
    if (_token != INVALID_HANDLE_VALUE) {
        CloseHandle(_token);
    }
}