ReactOS 0.4.16-dev-937-g7afcd2a
NtQueryObject.c File Reference
#include "precomp.h"
Include dependency graph for NtQueryObject.c:

Go to the source code of this file.

Macros

#define FILE_SHARE_ALL    (FILE_SHARE_READ | FILE_SHARE_WRITE | FILE_SHARE_DELETE)
 

Functions

 START_TEST (NtQueryObject)
 

Macro Definition Documentation

◆ FILE_SHARE_ALL

Definition at line 12 of file NtQueryObject.c.

Function Documentation

◆ START_TEST()

START_TEST ( NtQueryObject  )

Definition at line 17 of file NtQueryObject.c.

18{
20 SharedUserData->NtMajorVersion << 8 | SharedUserData->NtMinorVersion;
21
27
28 ULONG BufferSize1, BufferSize2, BufferSize3;
31
32 /* Test the drive containing SystemRoot */
33 WCHAR NtDeviceName[] = L"\\DosDevices\\?:";
34 NtDeviceName[sizeof("\\DosDevices\\")-1] = SharedUserData->NtSystemRoot[0];
35
36 /* Open a handle to the device */
37 RtlInitUnicodeString(&DeviceName, NtDeviceName);
41 NULL,
42 NULL);
50 if (!NT_SUCCESS(Status))
51 {
52 skip("Device '%S': Opening failed\n", NtDeviceName);
53 return;
54 }
55
56 /* Invoke ObjectNameInformation that retrieves the canonical device name */
60 0,
61 &BufferSize1);
63
68 &BufferSize2);
70
74 sizeof(ObjectNameBuffer),
75 &BufferSize3);
77
79
80 /* Compare the returned buffer sizes */
81
82 /* The returned size behaviour changed (when NtQueryObject()'s
83 * input Length is zero) between Windows <= 2003 and Vista+ */
85 ok_eq_ulong(BufferSize1, (ULONG)sizeof(OBJECT_NAME_INFORMATION));
86 else
87 ok_eq_ulong(BufferSize1, (ULONG)sizeof(OBJECT_NAME_INFORMATION) + ObjectName->MaximumLength);
88
89 ok_eq_ulong(BufferSize2, BufferSize3);
90 ok_eq_ulong(BufferSize3, (ULONG)sizeof(OBJECT_NAME_INFORMATION) + ObjectName->MaximumLength);
91
92 /* Test the name buffer */
93 ok(ObjectName->Length > 0, "ObjectName->Length == %hu, expected > 0\n", ObjectName->Length);
94 ok_eq_uint(ObjectName->MaximumLength, ObjectName->Length + sizeof(WCHAR));
95 ok(ObjectName->Buffer[ObjectName->Length / sizeof(WCHAR)] == UNICODE_NULL,
96 "UNICODE_NULL not found at end of ObjectName->Buffer\n");
97 if (ObjectName->Buffer[ObjectName->Length / sizeof(WCHAR)] != UNICODE_NULL)
98 {
99 skip("ObjectName->Buffer string length check skipped\n");
100 return;
101 }
102 /* Verify that ObjectName->Length doesn't count extra NUL-terminators */
103 {
104 SIZE_T strLen = wcslen(ObjectName->Buffer) * sizeof(WCHAR);
105 ok_eq_size(strLen, (SIZE_T)ObjectName->Length);
106 }
107}
@ ObjectNameInformation
Definition: DriverTester.h:55
NTSTATUS NtQueryObject(IN HANDLE Handle, IN OBJECT_INFO_CLASS ObjectInformationClass, OUT PVOID ObjectInformation, IN ULONG ObjectInformationLength, OUT PULONG ReturnLength)
static ULONG g_OsVersion
#define FILE_SHARE_ALL
Definition: NtQueryObject.c:12
#define ok_eq_ulong(value, expected)
Definition: apitest.h:44
#define ok_eq_uint(value, expected)
Definition: apitest.h:42
#define ok_eq_size(value, expected)
Definition: apitest.h:50
#define ok_ntstatus(status, expected)
Definition: atltest.h:135
#define ok(value,...)
Definition: atltest.h:57
#define skip(...)
Definition: atltest.h:64
LONG NTSTATUS
Definition: precomp.h:26
Definition: bufpool.h:45
_In_z_ PCCHAR ObjectNameBuffer
Definition: classpnp.h:982
IN PUNICODE_STRING IN POBJECT_ATTRIBUTES ObjectAttributes
Definition: conport.c:36
#define NULL
Definition: types.h:112
#define NT_SUCCESS(StatCode)
Definition: apphelp.c:33
#define MAX_PATH
Definition: compat.h:34
#define FILE_SYNCHRONOUS_IO_NONALERT
Definition: from_kernel.h:31
Status
Definition: gdiplustypes.h:25
_Inout_ PUSB_DEVICE_HANDLE DeviceHandle
Definition: hubbusif.h:121
_CRTIMP size_t __cdecl wcslen(_In_z_ const wchar_t *_Str)
#define OBJ_CASE_INSENSITIVE
Definition: winternl.h:228
static OUT PIO_STATUS_BLOCK IoStatusBlock
Definition: pipe.c:75
#define InitializeObjectAttributes(p, n, a, r, s)
Definition: reg.c:106
NTSYSAPI NTSTATUS NTAPI NtOpenFile(OUT PHANDLE phFile, IN ACCESS_MASK DesiredAccess, IN POBJECT_ATTRIBUTES ObjectAttributes, OUT PIO_STATUS_BLOCK pIoStatusBlock, IN ULONG ShareMode, IN ULONG OpenMode)
Definition: file.c:3953
#define SYNCHRONIZE
Definition: nt_native.h:61
#define FILE_READ_ATTRIBUTES
Definition: nt_native.h:647
NTSYSAPI VOID NTAPI RtlInitUnicodeString(PUNICODE_STRING DestinationString, PCWSTR SourceString)
struct _OBJECT_NAME_INFORMATION OBJECT_NAME_INFORMATION
NTSTATUS NTAPI NtClose(IN HANDLE Handle)
Definition: obhandle.c:3402
#define UNICODE_NULL
#define L(x)
Definition: ntvdm.h:50
#define SharedUserData
#define _WIN32_WINNT_VISTA
Definition: sdkddkver.h:25
#define STATUS_SUCCESS
Definition: shellext.h:65
#define STATUS_BUFFER_OVERFLOW
Definition: shellext.h:66
ULONG_PTR SIZE_T
Definition: typedefs.h:80
uint32_t ULONG
Definition: typedefs.h:59
#define STATUS_INFO_LENGTH_MISMATCH
Definition: udferr_usr.h:133
_Must_inspect_result_ _In_ PWDFDEVICE_INIT _In_opt_ PCUNICODE_STRING DeviceName
Definition: wdfdevice.h:3275
_In_ PVOID _Out_opt_ PULONG_PTR _Outptr_opt_ PCUNICODE_STRING * ObjectName
Definition: cmfuncs.h:64
__wchar_t WCHAR
Definition: xmlstorage.h:180