mirror of
https://github.com/reactos/reactos.git
synced 2025-04-04 04:26:32 +00:00

CORE-13525 This greatly helps in reducing code complexity in some areas: code that previously iterated over all partitions of a given disk, just to find which ones were partitioned and contained a valid file system, now just have to iterate over mounted volumes. See in particular, `lib/utils/osdetect.c` and `lib/fsutil.c` . - Remove FORMATSTATE "Preformatted" enum value; - Cleanup osdetect code after introducing Volume support; - Some simplifications for FormatState. - Differentiate between 'new' partition and 'new' volume: * "New" partition: it has been created and added in the cached list, but not yet actually written into the disk. * "New" volume: newly-created volume (may be backed by a partition or not), not yet formatted. May exist on either new, or not new partition, or elsewhere. - Cache partition and volume NT device names. These do not change across repartitioning operations, as long as the partition or the filesystem volume hasn't been deleted/recreated. This avoids doing \Device\Harddisk%u\Partition%u sprintf's everytime we need to retrieve the given partition or volume device name. When a partition/fileysystem volume is "virtually" created (i.e. in the partition list, but not yet committed to disk and exposed to the OS), no device partition number and device name are available yet. In particular, validate that no manipulation of \Device\HarddiskM\Partition0 (i.e. the whole disk) is being made.
48 lines
1.2 KiB
C
48 lines
1.2 KiB
C
/*
|
|
* PROJECT: ReactOS Setup Library
|
|
* LICENSE: GPL-2.0-or-later (https://spdx.org/licenses/GPL-2.0-or-later)
|
|
* PURPOSE: Volume utility functions
|
|
* COPYRIGHT: Copyright 2024 Hermès Bélusca-Maïto <hermes.belusca-maito@reactos.org>
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
typedef struct _VOLINFO
|
|
{
|
|
// WCHAR VolumeName[MAX_PATH]; ///< Name in the DOS/Win32 namespace: "\??\Volume{GUID}\"
|
|
WCHAR DeviceName[MAX_PATH]; ///< NT device name: "\Device\HarddiskVolumeN"
|
|
|
|
WCHAR DriveLetter;
|
|
WCHAR VolumeLabel[20];
|
|
WCHAR FileSystem[MAX_PATH+1];
|
|
|
|
// VOLUME_TYPE VolumeType;
|
|
// ULARGE_INTEGER Size;
|
|
// PVOLUME_DISK_EXTENTS Extents;
|
|
} VOLINFO, *PVOLINFO;
|
|
|
|
/* RawFS "RAW" file system name */
|
|
#define IS_RAWFS(fs) \
|
|
((fs)[0] == 'R' && (fs)[1] == 'A' && (fs)[2] == 'W' && (fs)[3] == 0)
|
|
|
|
#define IsUnknown(VolInfo) \
|
|
(!*(VolInfo)->FileSystem)
|
|
|
|
#define IsUnformatted(VolInfo) \
|
|
IS_RAWFS((VolInfo)->FileSystem)
|
|
|
|
#define IsFormatted(VolInfo) \
|
|
(!IsUnknown(VolInfo) && !IsUnformatted(VolInfo))
|
|
|
|
|
|
NTSTATUS
|
|
MountVolume(
|
|
_Inout_ PVOLINFO Volume,
|
|
_In_opt_ UCHAR MbrPartitionType);
|
|
|
|
NTSTATUS
|
|
DismountVolume(
|
|
_Inout_ PVOLINFO Volume,
|
|
_In_ BOOLEAN Force);
|
|
|
|
/* EOF */
|