[REACTOS] Temporarily revert 0ca4e6dcfa, as requested by Hermès

The setup mistakes the unpartitioned disk as GPT.
This reverts commit 0ca4e6dcfa.
This commit is contained in:
Stanislav Motylkov 2024-11-23 23:12:02 +01:00
parent 0ca4e6dcfa
commit bbdcc14b1c
4 changed files with 56 additions and 44 deletions

View file

@ -2818,48 +2818,41 @@ GetAdjUnpartitionedEntry(
return NULL; return NULL;
} }
static ERROR_NUMBER ERROR_NUMBER
MBRPartitionCreateChecks( PartitionCreationChecks(
_In_ PPARTENTRY PartEntry, _In_ PPARTENTRY PartEntry)
_In_opt_ ULONGLONG SizeBytes,
_In_opt_ ULONG_PTR PartitionInfo)
{ {
PDISKENTRY DiskEntry = PartEntry->DiskEntry; PDISKENTRY DiskEntry = PartEntry->DiskEntry;
BOOLEAN isContainer = IsContainerPartition((UCHAR)PartitionInfo);
ASSERT(DiskEntry->DiskStyle == PARTITION_STYLE_MBR); if (DiskEntry->DiskStyle == PARTITION_STYLE_GPT)
ASSERT(!PartEntry->IsPartitioned);
if (isContainer)
{ {
/* Cannot create an extended partition within logical partition space */ DPRINT1("GPT-partitioned disk detected, not currently supported by SETUP!\n");
if (PartEntry->LogicalPartition) return ERROR_WARN_PARTITION;
return ERROR_ONLY_ONE_EXTENDED;
/* Fail if there is another extended partition in the list */
if (DiskEntry->ExtendedPartition)
return ERROR_ONLY_ONE_EXTENDED;
} }
/* Fail if the partition is already in use */
if (PartEntry->IsPartitioned)
return ERROR_NEW_PARTITION;
/* /*
* Primary or Extended partitions * For primary partitions
*/ */
if (!PartEntry->LogicalPartition || isContainer) if (!PartEntry->LogicalPartition)
{ {
/* Only one primary partition is allowed on super-floppy */ /* Only one primary partition is allowed on super-floppy */
if (IsSuperFloppy(DiskEntry)) if (IsSuperFloppy(DiskEntry))
return ERROR_PARTITION_TABLE_FULL; return ERROR_PARTITION_TABLE_FULL;
/* Fail if there are too many primary partitions */ /* Fail if there are already 4 primary partitions in the list */
if (GetPrimaryPartitionCount(DiskEntry) >= 4) if (GetPrimaryPartitionCount(DiskEntry) >= 4)
return ERROR_PARTITION_TABLE_FULL; return ERROR_PARTITION_TABLE_FULL;
} }
/* /*
* Logical partitions * For logical partitions
*/ */
else else
{ {
// TODO: Check that we are inside an extended partition! // TODO: Check that we are inside an extended partition!!
// Then the following check will be useless. // Then the following check will be useless.
/* Only one (primary) partition is allowed on super-floppy */ /* Only one (primary) partition is allowed on super-floppy */
@ -2871,24 +2864,38 @@ MBRPartitionCreateChecks(
} }
ERROR_NUMBER ERROR_NUMBER
PartitionCreateChecks( ExtendedPartitionCreationChecks(
_In_ PPARTENTRY PartEntry, _In_ PPARTENTRY PartEntry)
_In_opt_ ULONGLONG SizeBytes,
_In_opt_ ULONG_PTR PartitionInfo)
{ {
PDISKENTRY DiskEntry = PartEntry->DiskEntry; PDISKENTRY DiskEntry = PartEntry->DiskEntry;
if (DiskEntry->DiskStyle == PARTITION_STYLE_GPT)
{
DPRINT1("GPT-partitioned disk detected, not currently supported by SETUP!\n");
return ERROR_WARN_PARTITION;
}
/* Fail if the partition is already in use */ /* Fail if the partition is already in use */
if (PartEntry->IsPartitioned) if (PartEntry->IsPartitioned)
return ERROR_NEW_PARTITION; return ERROR_NEW_PARTITION;
if (DiskEntry->DiskStyle == PARTITION_STYLE_MBR) /* Cannot create an extended partition within logical partition space */
return MBRPartitionCreateChecks(PartEntry, SizeBytes, PartitionInfo); if (PartEntry->LogicalPartition)
else // if (DiskEntry->DiskStyle == PARTITION_STYLE_GPT) return ERROR_ONLY_ONE_EXTENDED;
{
DPRINT1("GPT-partitioned disk detected, not currently supported by SETUP!\n"); /* Only one primary partition is allowed on super-floppy */
return ERROR_WARN_PARTITION; if (IsSuperFloppy(DiskEntry))
} return ERROR_PARTITION_TABLE_FULL;
/* Fail if there are already 4 primary partitions in the list */
if (GetPrimaryPartitionCount(DiskEntry) >= 4)
return ERROR_PARTITION_TABLE_FULL;
/* Fail if there is another extended partition in the list */
if (DiskEntry->ExtendedPartition)
return ERROR_ONLY_ONE_EXTENDED;
return ERROR_SUCCESS;
} }
// TODO: Improve upon the PartitionInfo parameter later // TODO: Improve upon the PartitionInfo parameter later
@ -2919,10 +2926,13 @@ CreatePartition(
return FALSE; return FALSE;
} }
Error = PartitionCreateChecks(PartEntry, SizeBytes, PartitionInfo); if (isContainer)
Error = ExtendedPartitionCreationChecks(PartEntry);
else
Error = PartitionCreationChecks(PartEntry);
if (Error != NOT_AN_ERROR) if (Error != NOT_AN_ERROR)
{ {
DPRINT1("PartitionCreateChecks(%s) failed with error %lu\n", mainType, Error); DPRINT1("PartitionCreationChecks(%s) failed with error %lu\n", mainType, Error);
return FALSE; return FALSE;
} }

View file

@ -338,10 +338,12 @@ GetAdjUnpartitionedEntry(
_In_ BOOLEAN Direction); _In_ BOOLEAN Direction);
ERROR_NUMBER ERROR_NUMBER
PartitionCreateChecks( PartitionCreationChecks(
_In_ PPARTENTRY PartEntry, _In_ PPARTENTRY PartEntry);
_In_opt_ ULONGLONG SizeBytes,
_In_opt_ ULONG_PTR PartitionInfo); ERROR_NUMBER
ExtendedPartitionCreationChecks(
_In_ PPARTENTRY PartEntry);
BOOLEAN BOOLEAN
CreatePartition( CreatePartition(

View file

@ -1975,7 +1975,7 @@ DriveDlgProc(
// TODO: In the future: first test needs to be augmented with: // TODO: In the future: first test needs to be augmented with:
// (... && PartEntry->Volume->IsSimpleVolume) // (... && PartEntry->Volume->IsSimpleVolume)
if ((PartEntry->IsPartitioned && PartEntry->Volume) || if ((PartEntry->IsPartitioned && PartEntry->Volume) ||
(!PartEntry->IsPartitioned && (PartitionCreateChecks(PartEntry, 0ULL, 0) == NOT_AN_ERROR))) (!PartEntry->IsPartitioned && (PartitionCreationChecks(PartEntry) == NOT_AN_ERROR)))
{ {
// ASSERT(PartEntry != PartEntry->DiskEntry->ExtendedPartition); // ASSERT(PartEntry != PartEntry->DiskEntry->ExtendedPartition);
ASSERT(!IsContainerPartition(PartEntry->PartitionType)); ASSERT(!IsContainerPartition(PartEntry->PartitionType));
@ -2090,7 +2090,7 @@ DisableWizNext:
{ {
ULONG Error; ULONG Error;
Error = PartitionCreateChecks(PartEntry, 0ULL, 0); Error = PartitionCreationChecks(PartEntry);
if (Error != NOT_AN_ERROR) if (Error != NOT_AN_ERROR)
{ {
// MUIDisplayError(Error, Ir, POPUP_WAIT_ANY_KEY); // MUIDisplayError(Error, Ir, POPUP_WAIT_ANY_KEY);

View file

@ -1711,7 +1711,7 @@ SelectPartitionPage(PINPUT_RECORD Ir)
{ {
ASSERT(CurrentPartition); ASSERT(CurrentPartition);
Error = PartitionCreateChecks(CurrentPartition, 0ULL, 0); Error = PartitionCreationChecks(CurrentPartition);
if (Error != NOT_AN_ERROR) if (Error != NOT_AN_ERROR)
{ {
MUIDisplayError(Error, Ir, POPUP_WAIT_ANY_KEY); MUIDisplayError(Error, Ir, POPUP_WAIT_ANY_KEY);
@ -1729,7 +1729,7 @@ SelectPartitionPage(PINPUT_RECORD Ir)
if (CurrentPartition->LogicalPartition) if (CurrentPartition->LogicalPartition)
continue; continue;
Error = PartitionCreateChecks(CurrentPartition, 0ULL, PARTITION_EXTENDED); Error = ExtendedPartitionCreationChecks(CurrentPartition);
if (Error != NOT_AN_ERROR) if (Error != NOT_AN_ERROR)
{ {
MUIDisplayError(Error, Ir, POPUP_WAIT_ANY_KEY); MUIDisplayError(Error, Ir, POPUP_WAIT_ANY_KEY);
@ -1789,7 +1789,7 @@ CreateInstallPartition:
/* Create the partition if the selected region is empty */ /* Create the partition if the selected region is empty */
if (!CurrentPartition->IsPartitioned) if (!CurrentPartition->IsPartitioned)
{ {
Error = PartitionCreateChecks(CurrentPartition, 0ULL, 0); Error = PartitionCreationChecks(CurrentPartition);
if (Error != NOT_AN_ERROR) if (Error != NOT_AN_ERROR)
{ {
MUIDisplayError(Error, Ir, POPUP_WAIT_ANY_KEY); MUIDisplayError(Error, Ir, POPUP_WAIT_ANY_KEY);