ReactOS 0.4.16-dev-942-g91fadeb
KdSystemDebugControl.c
Go to the documentation of this file.
1/*
2 * PROJECT: ReactOS kernel-mode tests
3 * LICENSE: GPL-2.0-or-later (https://spdx.org/licenses/GPL-2.0-or-later)
4 * PURPOSE: Kernel-Mode Test Suite for KdSystemDebugControl (kernel-mode)
5 * COPYRIGHT: Copyright 2024 Hermès Bélusca-Maïto <hermes.belusca-maito@reactos.org>
6 */
7
8#include <kmt_test.h>
9#include <ndk/kdfuncs.h>
10
11#define ok_eq_print_test(testid, value, expected, spec) \
12 ok((value) == (expected), "In test %lu: " #value " = " spec ", expected " spec "\n", testid, value, expected)
13
14#define ok_eq_hex_test(testid, value, expected) \
15 ok_eq_print_test(testid, value, expected, "0x%08lx")
16
17#define ok_neq_print_test(testid, value, expected, spec) \
18 ok((value) != (expected), "In test %lu: " #value " = " spec ", expected != " spec "\n", testid, value, expected)
19
20#define ok_neq_hex_test(testid, value, expected) \
21 ok_neq_print_test(testid, value, expected, "0x%08lx")
22
23
25(NTAPI *pKdRefreshDebuggerNotPresent)(VOID);
26
28(NTAPI *pKdSystemDebugControl)(
36
37
38static
42{
43 return pKdSystemDebugControl(Command,
44 NULL, // _In_ PVOID InputBuffer,
45 0, // _In_ ULONG InputBufferLength,
46 NULL, // _Out_ PVOID OutputBuffer,
47 0, // _In_ ULONG OutputBufferLength,
48 NULL,
50}
51
53{
57 UNICODE_STRING fnName;
58 BOOLEAN IsNT52SP1OrHigher;
59 BOOLEAN IsVistaOrHigher;
60 BOOLEAN IsDebuggerActive;
61
62 /* Test for OS version: KdSystemDebugControl()
63 * exists only on NT 5.2 SP1 and higher */
64 verInfo.dwOSVersionInfoSize = sizeof(verInfo);
66 if (skip(NT_SUCCESS(Status), "RtlGetVersion() returned 0x%08lx\n", Status))
67 return;
68
69 // IsWindowsVersionOrGreater(5, 2, 1);
70 IsNT52SP1OrHigher =
71 (verInfo.dwMajorVersion > 5) ||
72 (verInfo.dwMajorVersion == 5 && verInfo.dwMinorVersion > 2) ||
73 (verInfo.dwMajorVersion == 5 && verInfo.dwMinorVersion == 2 && verInfo.wServicePackMajor >= 1);
74
75 if (skip(IsNT52SP1OrHigher, "KdSystemDebugControl() only exists on NT 5.2 SP1 and higher\n"))
76 return;
77
78 // IsWindowsVersionOrGreater(6, 0, 0);
79 IsVistaOrHigher = (verInfo.dwMajorVersion >= 6);
80
81
82 /* Load the Kd routines at runtime */
83
84 /* Note: KdRefreshDebuggerNotPresent() is NT 5.2+ */
85 RtlInitUnicodeString(&fnName, L"KdRefreshDebuggerNotPresent");
86 pKdRefreshDebuggerNotPresent = MmGetSystemRoutineAddress(&fnName);
87 ok(!!pKdRefreshDebuggerNotPresent,
88 "KdRefreshDebuggerNotPresent() unavailable but OS is NT 5.2 SP1 or higher?\n");
89
90 RtlInitUnicodeString(&fnName, L"KdSystemDebugControl");
91 pKdSystemDebugControl = MmGetSystemRoutineAddress(&fnName);
92 if (skip(!!pKdSystemDebugControl, "KdSystemDebugControl() unavailable but OS is NT 5.2 SP1 or higher?\n"))
93 return;
94
95
96 /* Check whether the kernel debugger is present or not */
97 IsDebuggerActive = (pKdRefreshDebuggerNotPresent
98 ? !pKdRefreshDebuggerNotPresent()
99 : (/*KD_DEBUGGER_ENABLED &&*/ !KD_DEBUGGER_NOT_PRESENT));
100
101 trace("Debugger is %s\n", IsDebuggerActive ? "active" : "inactive");
102
103 /* Unsupported commands */
104 for (Command = 0; Command <= 6; ++Command)
105 {
107 if (!IsVistaOrHigher || IsDebuggerActive)
109 else
111 }
112
113 /*
114 * Supported commands:
115 *
116 * SysDbgQueryVersion = 7,
117 * SysDbgReadVirtual = 8,
118 * SysDbgWriteVirtual = 9,
119 * SysDbgReadPhysical = 10,
120 * SysDbgWritePhysical = 11,
121 * SysDbgReadControlSpace = 12,
122 * SysDbgWriteControlSpace = 13,
123 * SysDbgReadIoSpace = 14,
124 * SysDbgWriteIoSpace = 15,
125 * SysDbgReadMsr = 16,
126 * SysDbgWriteMsr = 17,
127 * SysDbgReadBusData = 18,
128 * SysDbgWriteBusData = 19,
129 * SysDbgCheckLowMemory = 20
130 */
131 for (Command = 7; Command <= 20; ++Command)
132 {
134 if (!IsVistaOrHigher || IsDebuggerActive)
135 ok_neq_hex_test(Command, Status, STATUS_INVALID_INFO_CLASS); // Status must be != STATUS_INVALID_INFO_CLASS
136 else
138 }
139
140 /* Unsupported commands */
141 for (Command = 21; Command <= 40; ++Command)
142 {
144 if (!IsVistaOrHigher || IsDebuggerActive)
146 else
148 }
149}
150
151/* EOF */
#define ok_eq_hex_test(testid, value, expected)
_In_ PVOID _In_ ULONG _Out_ PVOID _In_ ULONG _Inout_ PULONG ReturnLength
_In_ PVOID InputBuffer
static NTSTATUS TestSystemDebugControl(_In_ SYSDBG_COMMAND Command)
#define ok_neq_hex_test(testid, value, expected)
_In_ PVOID _In_ ULONG _Out_ PVOID OutputBuffer
_In_ PVOID _In_ ULONG InputBufferLength
_In_ PVOID _In_ ULONG _Out_ PVOID _In_ ULONG _Inout_ PULONG _In_ KPROCESSOR_MODE PreviousMode
_In_ PVOID _In_ ULONG _Out_ PVOID _In_ ULONG OutputBufferLength
unsigned char BOOLEAN
#define VOID
Definition: acefi.h:82
#define trace
Definition: atltest.h:70
#define ok(value,...)
Definition: atltest.h:57
#define skip(...)
Definition: atltest.h:64
#define START_TEST(x)
Definition: atltest.h:75
LONG NTSTATUS
Definition: precomp.h:26
#define NULL
Definition: types.h:112
#define NT_SUCCESS(StatCode)
Definition: apphelp.c:33
NTSTATUS NTAPI RtlGetVersion(IN OUT PRTL_OSVERSIONINFOW lpVersionInformation)
Definition: version.c:182
#define NTSTATUS
Definition: precomp.h:19
Status
Definition: gdiplustypes.h:25
NTSTATUS NTAPI KdSystemDebugControl(_In_ SYSDBG_COMMAND Command, _In_reads_bytes_(InputBufferLength) PVOID InputBuffer, _In_ ULONG InputBufferLength, _Out_writes_bytes_(OutputBufferLength) PVOID OutputBuffer, _In_ ULONG OutputBufferLength, _Out_opt_ PULONG ReturnLength, _In_ KPROCESSOR_MODE PreviousMode)
Perform various queries to the kernel debugger.
Definition: kdapi.c:2217
#define STATUS_DEBUGGER_INACTIVE
Definition: debugger.c:30
#define KernelMode
Definition: asm.h:38
enum _SYSDBG_COMMAND SYSDBG_COMMAND
#define _Inout_
Definition: no_sal2.h:162
#define _Out_
Definition: no_sal2.h:160
#define _In_
Definition: no_sal2.h:158
NTSYSAPI VOID NTAPI RtlInitUnicodeString(PUNICODE_STRING DestinationString, PCWSTR SourceString)
#define STATUS_INVALID_INFO_CLASS
Definition: ntstatus.h:240
#define L(x)
Definition: ntvdm.h:50
#define BOOLEAN
Definition: pedump.c:73
Definition: shell.h:41
ULONG dwMajorVersion
Definition: rtltypes.h:270
ULONG dwMinorVersion
Definition: rtltypes.h:271
ULONG dwOSVersionInfoSize
Definition: rtltypes.h:269
USHORT wServicePackMajor
Definition: rtltypes.h:275
PVOID NTAPI MmGetSystemRoutineAddress(IN PUNICODE_STRING SystemRoutineName)
Definition: sysldr.c:3615
uint32_t * PULONG
Definition: typedefs.h:59
#define NTAPI
Definition: typedefs.h:36
uint32_t ULONG
Definition: typedefs.h:59
#define KD_DEBUGGER_NOT_PRESENT
Definition: kdfuncs.h:133
CCHAR KPROCESSOR_MODE
Definition: ketypes.h:7