Bug 1755813 - bios boot partition can't be created at the disk beginning, if a partition already exists in the middle of the disk
Summary: bios boot partition can't be created at the disk beginning, if a partition al...
Keywords:
Status: CLOSED ERRATA
Alias: None
Product: Fedora
Classification: Fedora
Component: blivet-gui
Version: 31
Hardware: Unspecified
OS: Unspecified
unspecified
unspecified
Target Milestone: ---
Assignee: Vojtech Trefny
QA Contact: Fedora Extras Quality Assurance
URL:
Whiteboard: AcceptedBlocker
Depends On:
Blocks: F31FinalBlocker
TreeView+ depends on / blocked
 
Reported: 2019-09-26 09:25 UTC by Kamil Páral
Modified: 2020-02-15 02:54 UTC (History)
8 users (show)

Fixed In Version: blivet-gui-2.1.11-2.fc31 blivet-gui-2.1.12-1.fc31
Doc Type: If docs needed, set a value
Doc Text:
Clone Of:
Environment:
Last Closed: 2019-10-18 16:57:10 UTC
Type: Bug
Embargoed:


Attachments (Terms of Use)
bug video demonstration (864.11 KB, video/webm)
2019-09-26 09:26 UTC, Kamil Páral
no flags Details
blivet-gui-utils.log (18.67 KB, text/plain)
2019-09-26 09:26 UTC, Kamil Páral
no flags Details
storage.log (244.45 KB, text/plain)
2019-09-26 09:26 UTC, Kamil Páral
no flags Details

Description Kamil Páral 2019-09-26 09:25:37 UTC
Description of problem:
I have an existing partition in the middle of the disk:

$ sudo parted /dev/sda p
Model: QEMU QEMU HARDDISK (scsi)
Disk /dev/sda: 16.1GB
Sector size (logical/physical): 512B/512B
Partition Table: msdos
Disk Flags: 

Number  Start   End     Size    Type     File system  Flags
 2      10.1GB  11.1GB  1072MB  primary  ext4


If I try to use blivet-gui inside anaconda to install Fedora, the BIOS boot partition can't be created at the beginning of the disk, because blivet places it *after* sda2. Please see the attached video.

This is a no-go for system installation, because BIOS boot partition needs to be at the very beginning (to contain MBR).

The same problem affects any other partitions (not just BIOS boot), unless you make them larger than the remaining space after sda2, but smaller than the initial space before sda2. In that case, they are placed correctly. But the point is, you should be able to specify the exact location using blivet-gui, and it doesn't work, only sometimes it does what you needed.


Version-Release number of selected component (if applicable):
Fedora-Workstation-Live-x86_64-31-20190924.n.1.iso
anaconda-31.22.4-1.fc31.x86_64
blivet-gui-runtime-2.1.11-1.fc31.noarch
python3-blivet-3.1.5-2.fc31.noarch

How reproducible:
always

Steps to Reproduce:
1. create MBR disk with sda1 sda2 sda3
2. delete sda1 sda3 (you're left with sda2 in the middle)
3. in anaconda go to blivet partitioning and try to create bios boot partition at the beginning of the disk while keeping sda2 intact

Comment 1 Kamil Páral 2019-09-26 09:26:27 UTC
Created attachment 1619436 [details]
bug video demonstration

Comment 2 Kamil Páral 2019-09-26 09:26:39 UTC
Created attachment 1619437 [details]
blivet-gui-utils.log

Comment 3 Kamil Páral 2019-09-26 09:26:43 UTC
Created attachment 1619438 [details]
storage.log

Comment 4 Kamil Páral 2019-09-26 09:28:24 UTC
Proposing as a blocker:
"The installer must be able to create and install to any workable partition layout using any file system and/or container format combination offered in a default installer configuration. "
https://fedoraproject.org/wiki/Fedora_31_Final_Release_Criteria#Disk_layouts

Comment 5 Adam Williamson 2019-09-26 15:08:08 UTC
just to be clear, this only affects 'advanced custom' (blivet-gui), not 'regular custom'?

Comment 6 Kamil Páral 2019-09-26 15:19:47 UTC
Yes, only blivet-gui. I tested custom partitioning, and it creates biosboot partition correctly at the beginning of the disk.

Comment 7 lnie 2019-09-28 10:18:38 UTC
It looks like a "weight" problem,a simpler reproducer is:
create a none-boot partition(like /) first,then create biosboot.
I have sent a pull request to remove the weight-related code,and it wfm
https://github.com/storaged-project/blivet-gui/pull/131
Please correct me if I'm wrong,thanks.

Comment 8 lnie 2019-09-30 04:24:11 UTC
(In reply to lnie from comment #7)
> It looks like a "weight" problem,a simpler reproducer is:
> create a none-boot partition(like /) first,then create biosboot.
> I have sent a pull request to remove the weight-related code,and it wfm
> https://github.com/storaged-project/blivet-gui/pull/131
> Please correct me if I'm wrong,thanks.

This pull request also fixs 1756288

Comment 9 Geoffrey Marr 2019-09-30 22:23:11 UTC
Discussed during the 2019-09-30 blocker review meeting: [0]

The decision to classify this bug as an "AcceptedBlocker" was made as it violates the following criterion:

"The installer must be able to create and install to any workable partition layout using any file system and/or container format combination offered in a default installer configuration" for installs done via 'advanced custom' partitioning.

[0] https://meetbot.fedoraproject.org/fedora-blocker-review/2019-09-30/f31-blocker-review.2019-09-30-16.00.txt

Comment 10 Chris Murphy 2019-10-07 03:16:28 UTC
I think the bug is that BIOS Boot partition type is even permitted on "Partition Table: msdos" per the description. This partition type is only defined for GPT. And in the case of GPT, it has a unique and unambiguous partition type GUID for the bootloader installer to locate it no matter where it is, i.e. it's location can be arbitrary and grub2-install does find it. If some other bootloaders use BIOS Boot (?) and can only use it when BIOS Boot is the first partition, that's a bootloader installer bug.

I think this is not a blocker bug.

Comment 11 Chris Murphy 2019-10-07 03:19:19 UTC
I also agree this is a bug: "But the point is, you should be able to specify the exact location using blivet-gui, and it doesn't work, only sometimes it does what you needed." but I still don't think it constitutes a blocker as long as a workable layout can be created.

Comment 12 Kamil Páral 2019-10-07 11:45:27 UTC
(In reply to Chris Murphy from comment #10)
> I think this is not a blocker bug.

When we discussed this during the meeting, I tried to be very clear that this problem doesn't affect just biosboot partitions, but any partitions. Once you have a partition in the middle, it always uses the space behind it (or perhaps the larger space available, either way, you can use only one of the areas). That was also considered to be violating the criterion. If you think this hasn't been discussed properly, please remove the AcceptedBlocker tag and we'll discuss it again today.

Comment 14 Kamil Páral 2019-10-11 11:19:25 UTC
(In reply to Vojtech Trefny from comment #13)
> updates image: https://vtrefny.fedorapeople.org/img/rhbz1755813.img

This updates.img fixes the problem.

Comment 15 Fedora Update System 2019-10-14 12:37:02 UTC
FEDORA-2019-9fa73b4b6c has been submitted as an update to Fedora 31. https://bodhi.fedoraproject.org/updates/FEDORA-2019-9fa73b4b6c

Comment 16 Fedora Update System 2019-10-14 14:51:57 UTC
blivet-gui-2.1.11-2.fc31 has been pushed to the Fedora 31 testing repository. If problems still persist, please make note of it in this bug report.
See https://fedoraproject.org/wiki/QA:Updates_Testing for
instructions on how to install test updates.
You can provide feedback for this update here: https://bodhi.fedoraproject.org/updates/FEDORA-2019-9fa73b4b6c

Comment 17 Kamil Páral 2019-10-14 16:08:51 UTC
(In reply to Fedora Update System from comment #16)
> blivet-gui-2.1.11-2.fc31 has been pushed to the Fedora 31 testing

Fixes the problem, thanks.

Comment 18 lnie 2019-10-16 05:18:19 UTC
Sorry for my late feedback,I was busy with my father's funeral events.
https://github.com/storaged-project/blivet-gui/pull/133 fixes kamil's bug,because weight-related code is removed, boot is set to True.
When boot is False and grow is False,blivet will pick a smaller free region,and you will see symptom in kamil's description.
Vojtech's pull request dose not only remove "weight" code but also add "start" code,which will then produce the bug in #comment7.
Should I open a new bug for that one? It looks like also a blocker bug,since it violates"The installer must be able to create and install to any workable partition layout using any file system and/or container format combination offered in a default installer configuration".Please correct me if I'm wrong,thanks.

Comment 19 Kamil Páral 2019-10-16 08:29:59 UTC
(In reply to lnie from comment #18)
> Vojtech's pull request dose not only remove "weight" code but also add
> "start" code,which will then produce the bug in #comment7.

On a clean disk, I created / partition and a biosboot partition and they correctly ended up as vda1 and vda2 (in the order I specified, / first and biosboot second). Please note that biosboot doesn't need to be first, I was wrong in comment 0 and Chris corrected me. Either way, blivet-gui now seems to do exactly what you request of it. If you see some use case broken, please specify exactly the steps to take, and explain why do you consider the end result incorrect and how you think it should be changed instead.

Comment 20 lnie 2019-10-16 11:41:58 UTC
I thought /boot should always be the first partition no matter you create it before or after /,that's the reason why I considered #comment7 is a blocker bug,
but Vojtech explained that the goal of blivet-gui is not reorder partitions,and sounds reasonable to me,so sorry for the noise.

Comment 21 Adam Williamson 2019-10-17 20:25:32 UTC
lili, if you're now happy with the update, can you +1 it? it needs more karma to go stable. thanks!

Comment 22 lnie 2019-10-18 02:07:39 UTC
(In reply to Adam Williamson from comment #21)
> lili, if you're now happy with the update, can you +1 it? it needs more
> karma to go stable. thanks!

  Sure,done.

Comment 23 Fedora Update System 2019-10-18 16:57:10 UTC
blivet-gui-2.1.11-2.fc31 has been pushed to the Fedora 31 stable repository. If problems still persist, please make note of it in this bug report.

Comment 24 Fedora Update System 2020-01-29 20:27:52 UTC
FEDORA-2020-1fdbcfc43f has been submitted as an update to Fedora 30. https://bodhi.fedoraproject.org/updates/FEDORA-2020-1fdbcfc43f

Comment 25 Fedora Update System 2020-01-31 01:30:04 UTC
blivet-gui-2.1.12-1.fc31 has been pushed to the Fedora 31 testing repository. If problems still persist, please make note of it in this bug report.
See https://fedoraproject.org/wiki/QA:Updates_Testing for
instructions on how to install test updates.
You can provide feedback for this update here: https://bodhi.fedoraproject.org/updates/FEDORA-2020-e2356a3d5e

Comment 26 Fedora Update System 2020-01-31 02:25:59 UTC
blivet-gui-2.1.12-1.fc30 has been pushed to the Fedora 30 testing repository. If problems still persist, please make note of it in this bug report.
See https://fedoraproject.org/wiki/QA:Updates_Testing for
instructions on how to install test updates.
You can provide feedback for this update here: https://bodhi.fedoraproject.org/updates/FEDORA-2020-1fdbcfc43f

Comment 27 Fedora Update System 2020-02-02 01:35:01 UTC
blivet-gui-2.1.12-1.fc31 has been pushed to the Fedora 31 stable repository. If problems still persist, please make note of it in this bug report.

Comment 28 Fedora Update System 2020-02-15 02:54:05 UTC
blivet-gui-2.1.12-1.fc30 has been pushed to the Fedora 30 stable repository. If problems still persist, please make note of it in this bug report.


Note You need to log in before you can comment on or make changes to this bug.