ReactOS 0.4.15-dev-7907-g95bf896
NtAdjustGroupsToken.c File Reference
#include "precomp.h"
Include dependency graph for NtAdjustGroupsToken.c:

Go to the source code of this file.

Functions

static HANDLE GetProcessToken (_In_ DWORD Access)
 
 START_TEST (NtAdjustGroupsToken)
 

Function Documentation

◆ GetProcessToken()

static HANDLE GetProcessToken ( _In_ DWORD  Access)
static

Definition at line 12 of file NtAdjustGroupsToken.c.

14{
17
19 if (!Success)
20 {
21 skip("Failed to open the process' token (error code: %lu)!\n", GetLastError());
22 return NULL;
23 }
24
25 return Token;
26}
#define skip(...)
Definition: atltest.h:64
#define NULL
Definition: types.h:112
BOOL WINAPI OpenProcessToken(HANDLE ProcessHandle, DWORD DesiredAccess, PHANDLE TokenHandle)
Definition: security.c:294
#define GetCurrentProcess()
Definition: compat.h:759
@ Success
Definition: eventcreate.c:712
unsigned int BOOL
Definition: ntddk_ex.h:94
DWORD WINAPI GetLastError(void)
Definition: except.c:1042

Referenced by START_TEST().

◆ START_TEST()

START_TEST ( NtAdjustGroupsToken  )

Definition at line 28 of file NtAdjustGroupsToken.c.

29{
32
33 /* Get the token from current process but with incorrect rights */
35
36 /* We give an invalid handle */
38 TRUE,
39 NULL,
40 0,
41 NULL,
42 NULL);
44
45 /* We're trying to adjust the token's groups with wrong rights */
47 TRUE,
48 NULL,
49 0,
50 NULL,
51 NULL);
53
54 /* Close our handle and open a new one with right access right */
57
58 /* We don't give a list of groups to be adjusted in token */
60 FALSE,
61 NULL,
62 0,
63 NULL,
64 NULL);
66
67 /* Reset the groups of an access token to default */
69 TRUE,
70 NULL,
71 0,
72 NULL,
73 NULL);
75
77}
static HANDLE GetProcessToken(_In_ DWORD Access)
#define ok_hex(expression, result)
Definition: atltest.h:94
LONG NTSTATUS
Definition: precomp.h:26
#define TRUE
Definition: types.h:120
#define FALSE
Definition: types.h:117
#define CloseHandle
Definition: compat.h:739
Status
Definition: gdiplustypes.h:25
_In_ ACCESS_MASK _In_ ULONG _Out_ PHANDLE TokenHandle
Definition: psfuncs.h:726
#define STATUS_INVALID_HANDLE
Definition: ntstatus.h:245
#define STATUS_SUCCESS
Definition: shellext.h:65
NTSTATUS NTAPI NtAdjustGroupsToken(_In_ HANDLE TokenHandle, _In_ BOOLEAN ResetToDefault, _In_ PTOKEN_GROUPS NewState, _In_ ULONG BufferLength, _Out_writes_bytes_to_opt_(BufferLength, *ReturnLength) PTOKEN_GROUPS PreviousState, _When_(PreviousState !=NULL, _Out_) PULONG ReturnLength)
Changes the list of groups by enabling or disabling them in an access token. Unlike NtAdjustPrivilege...
Definition: tokenadj.c:695
#define STATUS_ACCESS_DENIED
Definition: udferr_usr.h:145
#define STATUS_INVALID_PARAMETER
Definition: udferr_usr.h:135
#define TOKEN_DUPLICATE
Definition: setypes.h:926
#define TOKEN_ADJUST_GROUPS
Definition: setypes.h:931