ReactOS 0.4.16-dev-937-g7afcd2a
IoVolume.c File Reference
#include <kmt_test.h>
#include <mountmgr.h>
Include dependency graph for IoVolume.c:

Go to the source code of this file.

Functions

static void TestIoVolumeDeviceToDosName (void)
 
 START_TEST (IoVolume)
 

Function Documentation

◆ START_TEST()

START_TEST ( IoVolume  )

Definition at line 95 of file IoVolume.c.

96{
98}
static void TestIoVolumeDeviceToDosName(void)
Definition: IoVolume.c:13

◆ TestIoVolumeDeviceToDosName()

static void TestIoVolumeDeviceToDosName ( void  )
static

Definition at line 13 of file IoVolume.c.

14{
16 ULONG VolumeNumber;
17 WCHAR VolumeDeviceNameBuffer[32];
18 UNICODE_STRING VolumeDeviceName;
22 UNICODE_STRING DosVolumePrefix = RTL_CONSTANT_STRING(L"\\\\?\\Volume");
23
24 RtlInitEmptyUnicodeString(&VolumeDeviceName,
25 VolumeDeviceNameBuffer,
26 sizeof(VolumeDeviceNameBuffer));
27 // TODO: Query the partition/volume manager for the list of volumes.
28 for (VolumeNumber = 0; VolumeNumber < 32; ++VolumeNumber)
29 {
30 Status = RtlStringCbPrintfW(VolumeDeviceName.Buffer,
31 VolumeDeviceName.MaximumLength,
32 L"\\Device\\HarddiskVolume%lu",
33 VolumeNumber);
34 if (!NT_SUCCESS(Status))
35 {
36 trace("RtlStringCbPrintfW(%lu) failed with 0x%lx\n",
37 VolumeNumber, Status);
38 break;
39 }
40
41 RtlInitUnicodeString(&VolumeDeviceName, VolumeDeviceNameBuffer);
42 Status = IoGetDeviceObjectPointer(&VolumeDeviceName,
46 if (!NT_SUCCESS(Status))
47 {
48 trace("IoGetDeviceObjectPointer(%wZ) failed with 0x%lx\n",
49 &VolumeDeviceName, Status);
50 continue;
51 }
52
55 if (!skip(NT_SUCCESS(Status), "No DOS name\n"))
56 {
57 trace("DOS name for %wZ is %wZ\n", &VolumeDeviceName, &DosName);
58
59 /* The DosName should contain one NUL-terminated string (always there?),
60 * plus one final NUL-terminator */
62 "Unexpected DOS name maximum length %hu, expected %hu\n",
64 ok(DosName.Length >= sizeof(UNICODE_NULL),
65 "DOS name too short (length: %lu)\n",
66 DosName.Length / sizeof(WCHAR));
68 "Missing NUL-terminator (1)\n");
70 "Missing NUL-terminator (2)\n");
71
72 /* The DOS name is either a drive letter, or a
73 * volume GUID name (if the volume is not mounted) */
74 if (DosName.Length == 2 * sizeof(WCHAR))
75 {
76 ok(DosName.Buffer[0] >= L'A' &&
77 DosName.Buffer[0] <= L'Z' &&
78 DosName.Buffer[1] == L':',
79 "Unexpected drive letter: %wZ\n", &DosName);
80 }
81 else
82 {
83 ok(RtlPrefixUnicodeString(&DosVolumePrefix, &DosName, FALSE),
84 "Unexpected volume path: %wZ\n", &DosName);
86 "Invalid DOS volume path returned: %wZ\n", &DosName);
87 }
89 }
91 }
92 ok(VolumeNumber > 1, "No volumes found\n");
93}
#define ok_eq_hex(value, expected)
Definition: apitest.h:58
#define trace
Definition: atltest.h:70
#define ok(value,...)
Definition: atltest.h:57
#define skip(...)
Definition: atltest.h:64
LONG NTSTATUS
Definition: precomp.h:26
#define FALSE
Definition: types.h:117
#define NT_SUCCESS(StatCode)
Definition: apphelp.c:33
Status
Definition: gdiplustypes.h:25
#define MOUNTMGR_IS_DOS_VOLUME_NAME(s)
Definition: mountmgr.h:152
NTSYSAPI VOID NTAPI RtlInitUnicodeString(PUNICODE_STRING DestinationString, PCWSTR SourceString)
NTSYSAPI VOID NTAPI RtlFreeUnicodeString(PUNICODE_STRING UnicodeString)
NTSYSAPI BOOLEAN NTAPI RtlPrefixUnicodeString(IN PUNICODE_STRING String1, IN PUNICODE_STRING String2, IN BOOLEAN CaseInSensitive)
#define READ_CONTROL
Definition: nt_native.h:58
#define UNICODE_NULL
NTSTATUS NTAPI IoGetDeviceObjectPointer(IN PUNICODE_STRING ObjectName, IN ACCESS_MASK DesiredAccess, OUT PFILE_OBJECT *FileObject, OUT PDEVICE_OBJECT *DeviceObject)
Definition: device.c:1435
NTSTATUS NTAPI IoVolumeDeviceToDosName(_In_ PVOID VolumeDeviceObject, _Out_ _When_(return==0, _At_(DosName->Buffer, __drv_allocatesMem(Mem))) PUNICODE_STRING DosName)
Definition: volume.c:1279
NTSTRSAFEVAPI RtlStringCbPrintfW(_Out_writes_bytes_(cbDest) _Always_(_Post_z_) NTSTRSAFE_PWSTR pszDest, _In_ size_t cbDest, _In_ _Printf_format_string_ NTSTRSAFE_PCWSTR pszFormat,...)
Definition: ntstrsafe.h:1173
#define L(x)
Definition: ntvdm.h:50
#define STATUS_SUCCESS
Definition: shellext.h:65
USHORT MaximumLength
Definition: env_spec_w32.h:370
#define RTL_CONSTANT_STRING(s)
Definition: tunneltest.c:14
uint32_t ULONG
Definition: typedefs.h:59
_In_ PDEVICE_OBJECT DeviceObject
Definition: wdfdevice.h:2055
_In_ WDFREQUEST _In_ WDFFILEOBJECT FileObject
Definition: wdfdevice.h:550
* PFILE_OBJECT
Definition: iotypes.h:1998
#define ObDereferenceObject
Definition: obfuncs.h:203
_Out_ PUNICODE_STRING DosName
Definition: rtlfuncs.h:1286
__wchar_t WCHAR
Definition: xmlstorage.h:180

Referenced by START_TEST().