Opened 8 years ago

Last modified 4 years ago

#12644 assigned bug

MBR & stage1 do not handle boot partition passing for chainloading (makebootable should not be required)

Reported by: mmu_man Owned by: nobody
Priority: normal Milestone: Unscheduled
Component: System/Boot Loader/BIOS Version: R1/Development
Keywords: chainload, partition, GRUB, MBR, stage1 Cc:
Blocked By: Blocking: #11345
Platform: All

Description

Unlike GRUB, GRUB2, LILO, and most other MBR loaders, our own MBR sector does not pass the selected partition info properly, and our stage1 loader does not attempt to use it, which is why we require running makebootable on install. But it should not be necessary.

Most MBR pass the selected boot partition entry in a register (ds:si) with a flag set to let the chainloaded OS know about it. There is no reason not to do it as well, as it would eliminate the need for makebootable.

This is not about BIOSes, buggy or not, since it's only the MBR which does this, and except if the user does not install our own MBR or GRUB or GRUB2 or the many other MBRs which support this convention, it would just work without makebootable.

We can still ship with makebootable just in case, but it shouldn't be required anymore once this is fixed.

cf. http://www.gnu.org/software/grub/manual/legacy/root.html#root http://f.osdev.org/viewtopic.php?f=1&t=26015 http://forum.osdev.org/viewtopic.php?f=1&t=22470 http://forum.osdev.org/viewtopic.php?f=1&t=27371 http://forum.osdev.org/viewtopic.php?f=2&t=23227 http://stackoverflow.com/questions/17517813/grub2-chainloading-how-does-it-pass-drive-number-and-partition-entry-point

Change History (13)

comment:1 by mmu_man, 8 years ago

Related to #3545 although I don't understand the wording.

Version 0, edited 8 years ago by mmu_man (next)

comment:2 by starsseed, 8 years ago

Our booting process does not handle the "drive number" passed in the DL register, either, stopping us to boot Haiku from "BootManager" when it's not installed on the boot drive.

Both issues should be adressed simultaneously.

in reply to:  2 comment:4 by mmu_man, 8 years ago

Replying to starsseed:

Our booting process does not handle the "drive number" passed in the DL register, either, stopping us to boot Haiku from "BootManager" when it's not installed on the boot drive.

I'm quite sure I've seen DL being passed around in several places as boot drive, at least the MBR code and stage1, didn't check bootman though.

comment:5 by mmu_man, 8 years ago

Actually, we would still need makebootable though, since it writes all of the stage1 loader, not only the partition offset...

comment:6 by mmu_man, 8 years ago

But the raw image could now be dd-ed onto a partition without any need for makebootable.

comment:7 by axeld, 8 years ago

Milestone: R1/beta1R1
Owner: changed from axeld to nobody
Priority: highnormal
Status: newassigned

It's more of a "nice to have" thing than a requirement in any case.

comment:8 by waddlesplash, 6 years ago

Blocking: 11345 added

comment:9 by pulkomandy, 6 years ago

Milestone: R1R1/beta2

comment:10 by pulkomandy, 5 years ago

So, there are some problems with this:

  • According to Wikipedia(https://en.wikipedia.org/wiki/Master_boot_record#MBR_to_VBR_interface), "The Windows Vista/7 MBRs no longer provide this DS:SI pointer." They do provide the pointer in DS:BP instead, so we have to check both in stage1 now.
  • When our MBR finds a GPT, it will use that to find the partition to boot from (by checking for the boot signature in each partition). In that case, there is no MBR entry to point to. As far as I can see, the suggestion is to build one that points to the right place on disk and use that. There is no space free in the boot sector for this.

So, the stage1 loader has to:

  • Check if the address in either DS:SI or DS:BP points to a valid partition entry, and if so, load from there
  • Otherwise, parse the GPT partition table again and look for the boot signature (assuming only the boot partition has the boot signature set - but this is similar to the "active" partition flag)

This seems quite difficult to fit in stage1, which already includes a (very) minimal BFS filesystem implementation and HPKG file reader. We could, however, free some space in both mbr and stage1, by removing the non-LBA disk reading code (still using cylinders/head/sectors).

comment:11 by mmu_man, 5 years ago

Why do I think Microsoft likes to screw up things for others…

comment:12 by waddlesplash, 5 years ago

Milestone: R1/beta2Unscheduled

comment:13 by pulkomandy, 4 years ago

Component: System/Boot LoaderSystem/Boot Loader/BIOS
Note: See TracTickets for help on using tickets.