Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

RFC: Re-design SystemTable/BootServices/RuntimeServices #893

Open
phip1611 opened this issue Jul 12, 2023 · 16 comments
Open

RFC: Re-design SystemTable/BootServices/RuntimeServices #893

phip1611 opened this issue Jul 12, 2023 · 16 comments

Comments

@phip1611
Copy link
Contributor

phip1611 commented Jul 12, 2023

Let's discuss #841 again which was unfortunately closed without further discussions.

Personally, I am in strong favor of the proposed API design. I copy the key points here again:

The application's entry-point is changed to a simple fn main() -> Result signature. The #[entry] (which I would prefer renamed to efi_main) provides the real entry-point internally, stores the SystemTable and image handle somewhere, and calls into the marked main function. On return, it does the right thing(tm) with the Result (print out a message and return status code).

All functions in BootServices/RuntimeServices are changed to associated functions that access the global table pointer internally. As they don't take a this pointer, they are just global functions as is basically done in EDK2 (well, they provide a global pointer to the table struct, same difference). It's more ergonomic and will eliminate some annoying lifetime issues. It also obviates the need for some structs like ScopedProtocol to keep a ref to the table.

To protect against use after exiting boot services, the BootServices table pointer can be replaced by the exit handler with a None or replaced with a custom implementation that panics if actually used.

Access to stdin/stdout/stderr should be provided via associated functions from the Input/Output types (and panic after boot services exit).

An associated function would be provided to get direct access to the tables if needed.

This would also remove the need for a View on SystemTable: any members that go away should be Options and set to None once boot services are exited by the exit handler. (In fact, the UEFI spec recommends doing so.)

I'm especially in strong favor of renaming #[entry] to #[efi_main], simplify the function signature and not having to manually pass bs to so many functions. Instead, it should be provided by a global static.

@phip1611 phip1611 pinned this issue Jul 12, 2023
@phip1611
Copy link
Contributor Author

phip1611 commented Jul 12, 2023

This would also make the uefi-services crate (in its current form) deprecated as we'd already have a static global of boot services in the uefi crate. I'd be in favor of deprecating uefi-services as well (#563 (comment)) eventually.

@nicholasbishop
Copy link
Contributor

I'm cautiously in favor of this proposal. We did something along these lines in #478, where we added a global image handle that gets set automatically by the entry macro.

The only downsides I can think of so far are:

  1. We would lose the compile-time transition from boot services to runtime services, where the user can statically assure that only runtime-services calls are allowed. Instead of compile-time errors when calling boot services after the transition, we'll return an error or panic as appropriate. I think that's probably an OK tradeoff, but worth thinking about carefully to make sure we're not missing any cases where it would make a big difference in usability.
  2. It's a pretty big change in the public API. I'm thinking we can probably mostly keep the old API around temporarily with #[deprecated] attributes to help ease the transition for one or two releases?

@nicholasbishop
Copy link
Contributor

Expanding on downside 1 from my list above with a related problem:

Structs that currently have a lifetime tied to BootServices (like ScopedProtocol and various others) presumably wouldn't have that lifetime in the new design. But that means that you could hold on to such an object after exiting boot services, which seems unfortunate. I guess we could have all accesses to such objects internally check for null bootservices on each access or something like that.

@nicholasbishop
Copy link
Contributor

nicholasbishop commented Jul 29, 2023

I've been playing around with this a bit, to get an idea of what it would look like in practice. I put up what I have for discussion: #905

A few notes:

  • The original proposal had "All functions in BootServices/RuntimeServices are changed to associated functions". In this implementation I went with free-standing functions. This has a couple advantages:
    1. The existing BootServices/RuntimeServices/SystemTable API can remain unchanged for a bit, so we could mark it deprecated but keep it available.
    2. It's a bit shorter to call, e.g. boot::load_image or even just load_image instead of BootServices::load_image.
  • I put the new boot/runtime/system modules at the top level instead of nested under table, again just to shorten the usage a bit. Not something I feel super strongly about though.
  • In a few places I've tried to avoid lifetime issues by adding with methods to get access to things temporarily, rather than returning a reference. For example, system::with_config_table(). That does avoid having to return a 'static lifetime, but I'm not sure it's sufficient; you could still call the boot services function that mutates the config table while that callback is running. In fact, I think this is already a problem with our current API.
  • exit_boot_services becomes unsafe. There are so many potential ways to violate safety by holding on to allocations, handles, protocols, etc... seems very hard to make it safe, and I think it would probably just make other parts of the API worse if we tried to do so.

@nicholasbishop
Copy link
Contributor

A few more thoughts in favor of adding global pointers:

@nicholasbishop
Copy link
Contributor

General notes on API direction:

  1. Add uefi::{system, boot, runtime} modules. These will mostly contain freestanding functions that replace the methods of SystemTable, BootServices, and RuntimeServices. The freestanding functions will use the global system table pointer, so no need for structs. (Akin to std::env).
  2. Various structs that currently have a BootServices reference, such as ScopedProtocol and PoolString will no longer need that reference. Ditto for some methods/functions.
  3. The user's main function will no longer need to take any arguments, since the global image handle and global system table pointer will be set automatically. This will require changes to the entry macro, or possibly a new macro (uefi_main?) with entry marked deprecated.

Something I'm still unsure about is exactly what the intermediate upgrade path will be. I think ideally we'll just mark the current stuff as deprecated for at least one release, but it may be tricky in some areas to have both APIs present at once. I am working on updating the WIP PR.

@nicholasbishop
Copy link
Contributor

Summarizing recent changes:

  1. The published book is now for the latest release instead of main, so breaking changes we make to main won't cause confusion.
  2. The entry macro now works with a zero-arg function.
  3. The helpers::init function no longer takes an arg. This was one of the functions I was unsure about in my previous comment; it would have been nice to avoid an API-breaking change and instead just do deprecations for a release or two, but I couldn't see any good way to do that here (the alternative would be to have a helpers::init_v2 function that takes no arg and leave helpers::init alone, but that didn't feel like a good long-term change to me).
  4. An initial set of functions for the system module has been merged.

Next steps:

  1. Fill out the system, boot, and runtime modules, and keep on eye on whether any more API-breaking changes are needed.
  2. Mark SystemTable, BootServices, and RuntimeServices as deprecated. For one or two releases users will then be able to upgrade to the new release without immediately rewriting everything to use the new free-standing functions.
  3. Eventually, delete the deprecated API.

@nicholasbishop
Copy link
Contributor

nicholasbishop commented Jul 21, 2024

Status of the implementation (I'll keep this updated as changes are merged):

System

  • as_ptr
  • config_table
  • firmware_revision
  • firmware_vendor
  • from_ptr (table::set_system_table)
  • stderr
  • stdin
  • stdout
  • uefi_revision

Runtime

  • delete_variable
  • get_time
  • get_time_and_caps
  • get_variable
  • get_variable_boxed
  • get_variable_size (covered by get_variable)
  • query_capsule_capabilities
  • query_variable_info
  • reset
  • set_time
  • set_variable
  • set_virtual_address_map
  • update_capsule
  • variable_keys

Boot

  • allocate_pages
  • allocate_pool
  • check_event
  • close_event
  • connect_controller
  • create_event
  • create_event_ex
  • disconnect_controller
  • exit
  • exit_boot_services
  • find_handles
  • free_pages
  • free_pool
  • get_handle_for_protocol
  • get_image_file_system
  • image_handle
  • install_configuration_table
  • install_protocol_interface
  • load_image
  • locate_device_path
  • locate_handle
  • locate_handle_buffer
  • memory_map
  • open_protocol
  • open_protocol_exclusive
  • protocols_per_handle
  • raise_tpl
  • register_protocol_notify
  • reinstall_protocol_interface
  • set_image_handle
  • set_timer
  • set_watchdog_timer
  • stall
  • start_image
  • test_protocol
  • uninstall_protocol_interface
  • unload_image
  • wait_for_event

@phip1611
Copy link
Contributor Author

Nice, looks good! All the checkboxes are now checked.

@nicholasbishop
Copy link
Contributor

nicholasbishop commented Aug 13, 2024

Adding a few more tasks:

  • Update the book to stop referring to SystemTable/BootServices/RuntimeServices
  • Update the template app to use the no-arg main style.
  • Update the files under uefi-test-runner/examples to the new style
  • Fix public docstrings that still link to SystemTable/BootServices/RuntimeServices
  • Move ancillary types from uefi::table::{boot,runtime} to uefi::{boot,runtime}
  • Update the entry macro to not use SystemTable when generating args
  • Update FileSystem to work with the new lifetime-less ScopedProtocol
  • Remove places in the public API that still require SystemTable/BootServices/RuntimeServices references
    • DevicePath <-> text conversion
    • ComponentName::open
    • GOP methods
    • uefi::allocator
  • Update internal code to use the global system table so that we don't need to allow(deprecated) in a bunch of places.
    • Logger
    • panic_handler
    • entry macro
    • MemoryMapBackingMemory
    • println
  • Deprecate:
    • BootServices
    • RuntimeServices
    • SystemTable
    • Boot/Runtime (marker structs)
    • table::{system_table_boot,system_table_runtime}
    • ScopedProtocol<'a>

@phip1611
Copy link
Contributor Author

phip1611 commented Aug 13, 2024

It might be already too late to clean this up, but perhaps, it might be a good idea to make a dedicated release with

  • everything that we have right now except for the API deprecation,
  • one with only the API deprecation, and
  • then another one where we remove all deprecated functionality.

How does that sound to you?

This will make adoption and migration easier.

@nicholasbishop
Copy link
Contributor

I think that's a very good idea. I'll put up a revert for #1327, if we're not deprecating stuff yet then that change can wait.

@nicholasbishop
Copy link
Contributor

I went ahead and put up the release PR: #1330, anything else you can think of that we need to do before releasing 0.31?

@phip1611
Copy link
Contributor Author

I went ahead and put up the release PR: #1330, anything else you can think of that we need to do before releasing 0.31?

Maybe we can get #1326 and #1297 quickly merged for 0.31. Then we can release 0.32 with the deprecation.

@nicholasbishop
Copy link
Contributor

The checklist above is done, so I think we're ready for the deprecation release. I'll put up a PR.

@nicholasbishop
Copy link
Contributor

nicholasbishop commented Sep 12, 2024

Next stage:

  • Remove testing of deprecated structs in uefi-test-runner
  • Delete uefi::helpers::system_table (uefi: Delete the deprecated helpers::system_table function #1398)
  • Delete FileSystemInner and the associated conversion from uefi::table::boot::ScopedProtocol
  • Delete deprecated allocator functions
  • Delete RuntimeServices
  • Delete BootServices
  • Delete SystemTable
  • uefi-macros: Stop accepting arguments to the entry macro
  • Update the timeline in docs/funcs_migration.md

Wasabi375 added a commit to Wasabi375/bootloader that referenced this issue Sep 16, 2024
This also switches to the new API of the uefi crate that was
introduced in version 0.31. The old api was deprecated in 0.32 and
will be removed in 0.33.
See https://github.com/rust-osdev/uefi-rs/blob/ac19526656953c32e8e0ef7bc703f7700b151ae4/docs/funcs_migration.md
and rust-osdev/uefi-rs#893
Wasabi375 added a commit to Wasabi375/bootloader that referenced this issue Sep 16, 2024
This also switches to the new API of the uefi crate that was
introduced in version 0.31. The old api was deprecated in 0.32 and
will be removed in 0.33.
See https://github.com/rust-osdev/uefi-rs/blob/ac19526656953c32e8e0ef7bc703f7700b151ae4/docs/funcs_migration.md
and rust-osdev/uefi-rs#893
Wasabi375 added a commit to Wasabi375/bootloader that referenced this issue Sep 16, 2024
This also switches to the new API of the uefi crate that was
introduced in version 0.31. The old api was deprecated in 0.32 and
will be removed in 0.33.
See https://github.com/rust-osdev/uefi-rs/blob/ac19526656953c32e8e0ef7bc703f7700b151ae4/docs/funcs_migration.md
and rust-osdev/uefi-rs#893
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants