mirror of
https://github.com/reactos/reactos.git
synced 2024-12-29 10:35:28 +00:00
134 lines
4.7 KiB
C
134 lines
4.7 KiB
C
/*
|
|
* PROJECT: ReactOS API tests
|
|
* LICENSE: GPL-2.0-or-later (https://spdx.org/licenses/GPL-2.0-or-later)
|
|
* PURPOSE: Tests for the NtSetInformationThread API
|
|
* COPYRIGHT: Copyright 2020 George Bișoc <george.bisoc@reactos.org>
|
|
*/
|
|
|
|
#include "precomp.h"
|
|
#include <internal/ps_i.h>
|
|
|
|
static
|
|
void
|
|
Test_ThreadPriorityClass(void)
|
|
{
|
|
NTSTATUS Status;
|
|
KPRIORITY *Priority;
|
|
|
|
Priority = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(KPRIORITY));
|
|
if (Priority == NULL)
|
|
{
|
|
skip("Failed to allocate memory for thread priority variable!\n");
|
|
return;
|
|
}
|
|
|
|
/* Assign a priority */
|
|
*Priority = 11;
|
|
|
|
/* Everything is NULL */
|
|
Status = NtSetInformationThread(NULL,
|
|
ThreadPriority,
|
|
NULL,
|
|
0);
|
|
ok_hex(Status, STATUS_INFO_LENGTH_MISMATCH);
|
|
|
|
/* Give an invalid thread handle */
|
|
Status = NtSetInformationThread(NULL,
|
|
ThreadPriority,
|
|
Priority,
|
|
sizeof(KPRIORITY));
|
|
ok_hex(Status, STATUS_INVALID_HANDLE);
|
|
|
|
/* Don't set any priority to the thread */
|
|
Status = NtSetInformationThread(GetCurrentThread(),
|
|
ThreadPriority,
|
|
NULL,
|
|
sizeof(KPRIORITY));
|
|
ok_hex(Status, STATUS_ACCESS_VIOLATION);
|
|
|
|
/* The information length is incorrect */
|
|
Status = NtSetInformationThread(GetCurrentThread(),
|
|
ThreadPriority,
|
|
Priority,
|
|
0);
|
|
ok_hex(Status, STATUS_INFO_LENGTH_MISMATCH);
|
|
|
|
/* The buffer is misaligned and information length is incorrect */
|
|
Status = NtSetInformationThread(GetCurrentThread(),
|
|
ThreadPriority,
|
|
(PVOID)1,
|
|
0);
|
|
ok_hex(Status, STATUS_INFO_LENGTH_MISMATCH);
|
|
|
|
/* The buffer is misaligned */
|
|
Status = NtSetInformationThread(GetCurrentThread(),
|
|
ThreadPriority,
|
|
(PVOID)1,
|
|
sizeof(KPRIORITY));
|
|
ok_hex(Status, STATUS_DATATYPE_MISALIGNMENT);
|
|
|
|
/* The buffer is misaligned -- try with an alignment size of 2 */
|
|
Status = NtSetInformationThread(GetCurrentThread(),
|
|
ThreadPriority,
|
|
(PVOID)2,
|
|
sizeof(KPRIORITY));
|
|
ok_hex(Status, STATUS_DATATYPE_MISALIGNMENT);
|
|
|
|
/* Set the priority to the current thread */
|
|
Status = NtSetInformationThread(GetCurrentThread(),
|
|
ThreadPriority,
|
|
Priority,
|
|
sizeof(KPRIORITY));
|
|
ok_hex(Status, STATUS_SUCCESS);
|
|
|
|
/*
|
|
* Set the priority as LOW_REALTIME_PRIORITY,
|
|
* we don't have privileges to do so.
|
|
*/
|
|
*Priority = LOW_REALTIME_PRIORITY;
|
|
Status = NtSetInformationThread(GetCurrentThread(),
|
|
ThreadPriority,
|
|
Priority,
|
|
sizeof(KPRIORITY));
|
|
ok_hex(Status, STATUS_PRIVILEGE_NOT_HELD);
|
|
|
|
HeapFree(GetProcessHeap(), 0, Priority);
|
|
}
|
|
|
|
static
|
|
void
|
|
Test_ThreadSetAlignmentProbe(void)
|
|
{
|
|
ULONG InfoClass;
|
|
|
|
/* Iterate over the process info classes and begin the tests */
|
|
for (InfoClass = 0; InfoClass < _countof(PsThreadInfoClass); InfoClass++)
|
|
{
|
|
/* The buffer is misaligned */
|
|
QuerySetThreadValidator(SET,
|
|
InfoClass,
|
|
(PVOID)(ULONG_PTR)1,
|
|
PsThreadInfoClass[InfoClass].RequiredSizeSET,
|
|
STATUS_DATATYPE_MISALIGNMENT);
|
|
|
|
/* We set an invalid buffer address */
|
|
QuerySetThreadValidator(SET,
|
|
InfoClass,
|
|
(PVOID)(ULONG_PTR)PsThreadInfoClass[InfoClass].AlignmentSET,
|
|
PsThreadInfoClass[InfoClass].RequiredSizeSET,
|
|
STATUS_ACCESS_VIOLATION);
|
|
|
|
/* The information length is wrong */
|
|
QuerySetThreadValidator(SET,
|
|
InfoClass,
|
|
(PVOID)(ULONG_PTR)PsThreadInfoClass[InfoClass].AlignmentSET,
|
|
PsThreadInfoClass[InfoClass].RequiredSizeSET - 1,
|
|
STATUS_INFO_LENGTH_MISMATCH);
|
|
}
|
|
}
|
|
|
|
START_TEST(NtSetInformationThread)
|
|
{
|
|
Test_ThreadPriorityClass();
|
|
Test_ThreadSetAlignmentProbe();
|
|
}
|