Go-boot: bare metal Go UEFI boot manager

2 months ago (github.com)

I really like this idea but can anyone please summarize what it does for me. To me it feels very fascinating (bare metal golang in general) but I am not sure I truly understand its usecase and I would love to know more.

  • The use cases is not writing unsafe C in first place, and proving the point Go is usable in such scenarios, regardless of naysayers.

    The creators of USB Armory also created TamaGo, instead of using Rust, exactly for the same reasons, to prove a point.

    https://github.com/usbarmory/tamago

    https://reversec.com/usb-armory/

    Because in IT, seeing is believing.

    • Quite apart from that, an EFI shell that's less awful than the standard UEFI one is an interesting project in its own right...

    • I've been idly following this stuff on & off for years, but I never saw proving a point "instead of using Rust" as one of the motivations of the project. Was that ever stated anywhere?

      1 reply →

    • If one can't write safe C code, then maybe stick to web development and leave the bootloaders and UEFI stuff to people who can.

      Training wheels are merely a race to the bottom for barely-literate programmers.

      5 replies →

  • When you turn on a computer, it transfers code to software required to get the machine up and running reliably--the boot process. That used start in a chip called the BIOS. It's a 40-year old holdover from the early days of the IBM PC. UEFI is a more complex and feature-rich protocol. Due to its default memory management Go hasn't been considered the first choice for such purposes but this proof of concept uses Go for the very low level code needed for UEFI.

  • There aren't that many UEFI shells and the ones that exist are certainly not modern. Anything new is helpful, especially if its written in a popular language like Go.

  • There’s some more context in a proposal from the folks behind this project to upstream the needed Go runtime hooks into Go proper.

    From what I can tell, the core Go team seems generally favorable to it, so seems like a decent chance it will happen.

    From:

    #73608 proposal: all: add bare metal support

    https://github.com/golang/go/issues/73608

    > Go applications built with GOOS=none would run on bare metal, without any underlying OS. All required support is provided by the Go runtime and external driver packages, also written in Go.

    And:

    > These hooks act as a "Rosetta Stone" for integration of a freestanding Go runtime within an arbitrary environment, whether bare metal or OS supported.

I'm confused, is it bare metal or is it an EFI application? (bare metal used to mean that something can run without services, like those that UEFI provides)

  • I think what it means is:

    1. It's an EFI application

    2. It doesn't require any external runtimes, any setup, etc. (i.e. your UEFI system can boot straight into it without anything in between).

    At least, that seems to be the case.

The TamaGo project (which this uses for running on bare metal) looks super impressive! Kudos to the authors for getting this working.

I wonder what GC changes had to be made, if any.

I wonder if it supports multiprocessing.

> Go-boot: bare metal Go UEFI boot manager

The bare metal list is quiet thin.

Why is so HW focused ? I use refind and it seems to be HW independent.

  • That's the list of hardware they've explicitly tested on. Always bear in mind that, for any given standard, no matter how straightforward, there are going to be dozens of vendors who screw it up for no real reason other than incompetence or malice.

    The older a piece of software is, the more workarounds it will have accrued for various hardware bugs or vendor misdeeds, so it's reasonable for the project to disclaim that it's only been tested on a small number of physical hardware devices even if, in theory, it should work out of the box on all of them.