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

Rewrite for UEFI support #130

Merged
merged 179 commits into from
Apr 6, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
179 commits
Select commit Hold shift + click to select a range
052f8ee
Initial Commit
phil-opp Apr 15, 2020
7352a28
Create a minimal UEFI application
phil-opp Apr 15, 2020
ba6b02e
Add rust-analyzer configuration for VSCode
phil-opp Apr 15, 2020
dca9ddf
Use a general `x` alias for cross compiling
phil-opp Jun 16, 2020
4769e94
Initialize framebuffer and exit boot services
phil-opp Jun 16, 2020
45b36ff
Start a bootloader library to abstract over differences between BIOS …
phil-opp Jun 16, 2020
695c210
Make uefi app use bootloader lib
phil-opp Jun 16, 2020
3b337b5
Add a runner executable for supporting `cargo x run`
phil-opp Jun 16, 2020
52611f4
Update Cargo.lock
phil-opp Jun 16, 2020
959a75d
Enable overflow checks also in release mode
phil-opp Jun 16, 2020
4960b20
Set logging level to minimum (all messages)
phil-opp Jun 16, 2020
d89c56e
Fix overflow bug in logger
phil-opp Jun 16, 2020
ac42e11
Start using x86_64 crate to map kernel ELF in new page table
phil-opp Jul 18, 2020
3b59bab
Start QEMU with `-d int` and `--no-reboot`
phil-opp Jul 18, 2020
eff8661
Add FIXME note about handling bss sections
phil-opp Jul 19, 2020
e6a65bf
Implement a frame allocator
phil-opp Jul 19, 2020
7377097
No longer error in `load_kernel`
phil-opp Jul 19, 2020
6ea0afd
Fix, improve, and document kernel loading code
phil-opp Jul 24, 2020
1825f1b
Return the entry point address from `load_kernel`
phil-opp Jul 24, 2020
2824872
Deny unsafe_op_in_unsafe_fn lint to make things safer
phil-opp Jul 24, 2020
85bbec4
Halt cpu when panicking
phil-opp Jul 24, 2020
adc0b6a
Create a kernel stack and do the context switch to the kernel
phil-opp Jul 24, 2020
c2d0ad7
Move `main.rs` to `bin/uefi.rs`
phil-opp Jul 24, 2020
2121bd7
Fix two minor issues in uefi.rs
phil-opp Jul 24, 2020
f1f5215
Fix type inference errors
phil-opp Jul 24, 2020
6aa62eb
Move uefi related files to uefi subdirectory
phil-opp Jul 24, 2020
4acaff2
Merge remote-tracking branch 'bootloader/master'
phil-opp Jul 24, 2020
16a7814
Rename main.rs to bin/bios.rs
phil-opp Jul 24, 2020
a123733
Include uefi.rs in bootloader binaries
phil-opp Jul 24, 2020
60d5ed5
Move runner crate to top level
phil-opp Jul 24, 2020
347fb16
Remove superfluous files from uefi folder
phil-opp Jul 24, 2020
10f714f
Merge UEFI Cargo.toml into main Cargo.toml
phil-opp Jul 24, 2020
9bff6bb
Merge UEFI cargo config into main cargo config
phil-opp Jul 24, 2020
0690101
Fix Cargo.toml syntax
phil-opp Jul 24, 2020
bd2388f
Make the binary feature required for both the bios and uefi executables
phil-opp Jul 24, 2020
c7c90b0
Separate binary feature into `bios_bin` and `uefi_bin` features
phil-opp Jul 24, 2020
c6960f3
Update Cargo.lock
phil-opp Jul 24, 2020
55267b3
Add command aliases for building/running bios and uefi binaries
phil-opp Jul 24, 2020
9fb60a3
Reintroduce the `binary` feature as parent feature of bios_bin and ue…
phil-opp Jul 24, 2020
f37f587
Add a build script for the uefi bootloader
phil-opp Jul 24, 2020
dcb422c
Update to uefi-rs 0.5.0 + custom patch
phil-opp Aug 20, 2020
d9eb62d
Run cargo fmt
phil-opp Aug 20, 2020
b0ef3f9
Update Cargo.lock
phil-opp Aug 20, 2020
bb1eaf0
Identity-map framebuffer
phil-opp Aug 20, 2020
eaa29c1
Prototype implementation of a new UEFI memory map
phil-opp Aug 20, 2020
62e7a1c
Start implementing a new boot info struct that works with UEFI
phil-opp Aug 20, 2020
b3bde0e
Use upstream version of uefi again (my patch was merged)
phil-opp Aug 20, 2020
534dde8
Refactor and add support for arbitrary-sized memory map
phil-opp Aug 21, 2020
11a2f05
Add some documentation
phil-opp Aug 21, 2020
258d9df
Fix typo
phil-opp Aug 21, 2020
c2c4115
Add a builder binary
phil-opp Aug 21, 2020
98a4e03
Remove no longer needed MemoryMap type
phil-opp Aug 21, 2020
9e158a2
Move uefi-specific panic handler to uefi binary
phil-opp Aug 21, 2020
d1f6fa7
Merge bootloader-lib into `bootloader`
phil-opp Aug 21, 2020
0bb5884
Merge runner as binary into main bootloader crate
phil-opp Aug 21, 2020
6005ec7
Remove old aliases
phil-opp Aug 21, 2020
41b5d51
Reserve one more slot for memory regions
phil-opp Aug 21, 2020
dac7681
Integrate bios binary into new structure; add disk image creation fro…
phil-opp Aug 21, 2020
dfee1c7
Use `--quiet` for cargo run of builder executable
phil-opp Aug 23, 2020
09c4aee
Update builder executable with more flags
phil-opp Aug 23, 2020
1f1142f
Make frame allocator generic and move it to lib
phil-opp Aug 23, 2020
7aa096a
Update uefi crate to latest master
phil-opp Aug 24, 2020
bc48c7e
Group binary functionality into new `binary` submodule
phil-opp Aug 24, 2020
e40735e
Add support for loading bootloaders >64KiB
phil-opp Aug 24, 2020
402ba9e
Identity-map first gigabyte in assembly
phil-opp Aug 24, 2020
2952138
Run cargo fmt
phil-opp Aug 24, 2020
d0cf36b
Increase self.next_frame if smaller than descriptor start
phil-opp Aug 24, 2020
c47cb9c
Move more code from uefi binary to `binary` module of library
phil-opp Aug 24, 2020
90a36ad
Run cargo fmt for builder executable
phil-opp Aug 24, 2020
07697e9
Port bios executable to the new abstractions in the `binary` module
phil-opp Aug 24, 2020
9713bd7
Refactor build script and redesign configuration
phil-opp Aug 24, 2020
87e85b0
Respect configured addresses and fall back to dynamic search for free…
phil-opp Aug 24, 2020
61f4a7f
Run cargo fmt
phil-opp Aug 24, 2020
a1d2136
Implement support for mapping physical memory
phil-opp Aug 24, 2020
6bee406
Set up a 1024x768 framebuffer for BIOS executable
phil-opp Aug 30, 2020
1ae1a21
Export new BootInfo struct
phil-opp Aug 30, 2020
053adfd
Remove old example kernel
phil-opp Aug 30, 2020
03dee1b
Create a test framework
phil-opp Aug 30, 2020
772ccc9
Fix name of panic=abort setting in target JSON file
phil-opp Aug 30, 2020
0eeb833
Fix module structure
phil-opp Aug 30, 2020
1353705
Enable NXE bit before loading kernel
phil-opp Aug 30, 2020
aee9105
Run cargo fmt
phil-opp Aug 30, 2020
672a2c1
Pass additional command line arguments to runner for test kernels
phil-opp Aug 30, 2020
36d697e
Update CI script for new test framework
phil-opp Aug 30, 2020
57aad9f
Also create uefi images in test framework
phil-opp Aug 30, 2020
a4e69db
Remove unreachable statement in test
phil-opp Aug 30, 2020
47bdc02
Init new FramebufferInfo::bytes_per_pixel field for uefi executable
phil-opp Aug 30, 2020
41d6d77
Use raw strings for include path to fix build on Windows
phil-opp Aug 31, 2020
3237429
Pass more framebuffer information to kernel
phil-opp Sep 9, 2020
1ae2bbc
Remove some old helper functions that are no longer needed
phil-opp Sep 9, 2020
8ff1624
Include .bss input sections in bootloader section
phil-opp Sep 9, 2020
86e2b05
Parse map-framebuffer option in build.rs
phil-opp Sep 9, 2020
f2a29b7
Fix BIOS framebuffer size
phil-opp Sep 9, 2020
86fd671
Update to latest Rust nightly
phil-opp Sep 9, 2020
d782493
Reduce and improve log output
phil-opp Sep 9, 2020
694d313
Pass RSDP address in boot info
phil-opp Sep 20, 2020
3b76179
Run cargo update
phil-opp Sep 21, 2020
450b83b
Update to x86_64 0.12.1
phil-opp Sep 25, 2020
cb8345b
Use published `rsdp` crate
phil-opp Sep 25, 2020
53e5c25
Remove commented out BIOS code that was already reimplemented in the …
phil-opp Sep 27, 2020
34a5da8
Re-add support for setting up a recursive page table mapping
phil-opp Sep 27, 2020
5884d15
Remove more commented out code that was already reimplmented
phil-opp Sep 27, 2020
7be3221
Use new `uefi` crates.io release
phil-opp Sep 28, 2020
dfa82bd
Use compiler_builtins mem feature instead of rlibc
phil-opp Oct 1, 2020
119beee
Don't add support for enabling SSE for now
phil-opp Oct 30, 2020
3e49682
Make the kernel respect the write protection bits by default
phil-opp Oct 30, 2020
3dbe8d4
Removed unneeded `>= 0` check in build script
phil-opp Oct 30, 2020
15ce0e4
Report UEFI/BIOS memory type IDs in memory map
phil-opp Oct 30, 2020
bf68296
Remove some unused imports
phil-opp Oct 30, 2020
76df3e5
Clarify that the `BootInfo` struct is _not_ FFI-safe
phil-opp Oct 30, 2020
4c7f3f2
Add support for TLS templates
phil-opp Oct 30, 2020
e0b68c6
Delete the old `bootinfo` module
phil-opp Oct 30, 2020
cbfc6be
Rename `memory_map` module to `memory_region`
phil-opp Oct 30, 2020
464e80e
Fix test framework
phil-opp Oct 30, 2020
924131f
Remove old `test-kernel`
phil-opp Oct 30, 2020
bc3a136
Update to master version of x86_64
phil-opp Oct 30, 2020
9ddeaaa
Use the `components` key of the `toolchain` action
phil-opp Oct 30, 2020
a9f2d21
Merge remote-tracking branch 'master' into uefi
phil-opp Oct 30, 2020
aae44b2
Reimplement custom config parsing with serde
phil-opp Oct 30, 2020
06f41a2
Update uefi crate to v0.7.0
phil-opp Jan 9, 2021
d169a31
Remove stabilized features
phil-opp Jan 9, 2021
0c33cec
Add bootloader version to boot info
phil-opp Jan 9, 2021
86d1db7
Make boot info FFI-safe
phil-opp Jan 9, 2021
92b069a
Start providing API docs for all public items
phil-opp Jan 10, 2021
391f743
Remove `LegacyMemoryRegion::set_start` method
phil-opp Jan 10, 2021
aac1825
Document the remaining API items
phil-opp Jan 10, 2021
7d93994
Run cargo fmt
phil-opp Jan 10, 2021
9312d95
Merge remote-tracking branch 'bootloader/master' into uefi
phil-opp Jan 10, 2021
44c7616
Add serial output to test framework
phil-opp Jan 10, 2021
3aafb30
Add method to get immutable slice of framebuffer bytes
phil-opp Jan 10, 2021
ba526a5
Implement Eq for PixelFormat
phil-opp Jan 10, 2021
6aaf882
Add more conversion methods for `Optional`
phil-opp Jan 10, 2021
dc1267b
Add a test that checks boot info values
phil-opp Jan 10, 2021
2ac0c82
Create FAT file system image from `.efi` image
phil-opp Jan 13, 2021
a818c27
Implementing `From` for foreign types is actually possible
phil-opp Jan 14, 2021
f20ac53
Remove bors from this repo
phil-opp Jan 14, 2021
c7828d3
Create a GPT disk image with an UEFI boot partition
phil-opp Jan 14, 2021
ea64759
The disk image extension was changed from `bin` to `img`
phil-opp Jan 14, 2021
ca0a90a
Bump version to 0.10.0-alpha-01
phil-opp Jan 14, 2021
8c82e68
Update to x86_64 0.13.1
phil-opp Jan 14, 2021
ec33e72
Build uefi binary with optimizations
phil-opp Jan 15, 2021
14c4e62
Only copy first level 4 entry to bootloader page table
phil-opp Jan 15, 2021
3c80c41
Fix: Don't use `MemoryType::custom` for matching against known types
phil-opp Jan 15, 2021
937aac9
Merge branch 'main' into uefi
phil-opp Feb 8, 2021
83ad380
Update to latest x86_64 and uart_16550 versions
phil-opp Feb 8, 2021
7d5adcf
Bump version to 0.10.0-alpha-02
phil-opp Feb 8, 2021
f43bd4c
Fix `non_fmt_panic` warning
phil-opp Feb 8, 2021
f238337
Run cargo fmt
phil-opp Feb 8, 2021
d55f1c8
Improve reporting of config parse errors
phil-opp Feb 21, 2021
2511448
Make doc test runnable
phil-opp Feb 21, 2021
d2053b0
Rename default_settings test kernel and target file
phil-opp Feb 21, 2021
6a0fd74
Add a test for the `map-physical-memory` config key
phil-opp Feb 21, 2021
3a3169b
Bump version to 0.10.0-alpha-03
phil-opp Feb 21, 2021
3c1dfc4
Run cargo fmt
phil-opp Feb 21, 2021
38fd486
Check that the `--kernel-manifest` path points to a file named `Cargo…
phil-opp Feb 22, 2021
9a8ace7
Check that the `--kernel-manifest` path exists
phil-opp Feb 22, 2021
873351c
Check that the kernel Cargo.toml depends on the bootloader
phil-opp Feb 22, 2021
39c6bbb
Merge branch 'main' into uefi
phil-opp Mar 24, 2021
15fda23
Remove stabilized feature
phil-opp Mar 24, 2021
7f7fec7
Set up VESA mode properly instead of hardcoding it
phil-opp Mar 24, 2021
b7ff05b
Adjust tests for new vesa mode detection
phil-opp Mar 24, 2021
5856491
Detect actual pixel format instead of hardcoding it (BIOS)
phil-opp Mar 25, 2021
2d7e064
Adjust tests for proper pixel format
phil-opp Mar 25, 2021
f7478eb
Use `quote` crate for creating `Config` struct instead of debug impls
phil-opp Mar 25, 2021
373169a
Move memory region structs to `boot_info` module
phil-opp Mar 25, 2021
cbf6b61
Make config module private and reexport `Config`
phil-opp Mar 25, 2021
2855304
Remove unused `runner` binary
phil-opp Mar 25, 2021
bbb97cf
Remove unused features
phil-opp Mar 25, 2021
c3526ff
Don't include a `;` after `compile_error`
phil-opp Mar 25, 2021
512d5ae
Don't escape serde error messages
phil-opp Mar 25, 2021
88e20d3
Improve error messages on config parse errors
phil-opp Mar 25, 2021
a2d55d4
Allow grouping address values with `_`
phil-opp Mar 25, 2021
4431c3b
Set `physical-memory-offset` in config for test
phil-opp Mar 25, 2021
ba9d943
Allow specifying addresses as TOML integers too
phil-opp Mar 25, 2021
fb4813d
Remove unused `Default` implementation for `Config`
phil-opp Mar 25, 2021
536e0f6
Add docs for crate and `Config` struct
phil-opp Mar 25, 2021
2058af6
Rename the output images from `bootimage-*` to `boot-*`
phil-opp Mar 25, 2021
eccb89d
Document the created disk images
phil-opp Mar 25, 2021
d741a8e
Rewrite Readme
phil-opp Apr 5, 2021
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions .cargo/config

This file was deleted.

5 changes: 5 additions & 0 deletions .cargo/config.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
[target.x86_64-unknown-uefi]
runner = "cargo run -p runner"

[alias]
builder = "run --bin builder --features builder --quiet --"
182 changes: 80 additions & 102 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,122 +2,100 @@ name: Build

on:
push:
branches:
- '*'
- '!staging.tmp'
tags:
- '*'
pull_request:

jobs:
test:
name: "Test"
check:
name: Check

strategy:
fail-fast: false
matrix:
platform: [
ubuntu-latest,
macos-latest,
windows-latest
]

runs-on: ${{ matrix.platform }}
timeout-minutes: 15
runs-on: ubuntu-latest
timeout-minutes: 10

steps:
- name: "Checkout Repository"
uses: actions/checkout@v1

- name: "Print Rust Version"
run: |
rustc -Vv
cargo -Vv

- name: "Install Rustup Components"
run: rustup component add rust-src llvm-tools-preview
- name: "Install cargo-xbuild"
run: cargo install cargo-xbuild --debug
- name: "Install cargo-binutils"
run: cargo install cargo-binutils --version 0.1.7 --debug

- run: cargo xbuild
working-directory: test-kernel
name: 'Build Test Kernel'

- name: 'Build Bootloader'
run: cargo xbuild --bin bootloader --features binary --release
env:
KERNEL: "test-kernel/target/x86_64-test-kernel/debug/test-kernel"
KERNEL_MANIFEST: "test-kernel/Cargo.toml"

- name: 'Convert Bootloader ELF to Binary'
run: cargo objcopy -- -I elf64-x86-64 -O binary --binary-architecture=i386:x86-64 target/x86_64-bootloader/release/bootloader target/x86_64-bootloader/release/bootloader.bin

# install QEMU
- name: Install QEMU (Linux)
run: sudo apt update && sudo apt install qemu-system-x86
if: runner.os == 'Linux'
- name: Install QEMU (macOS)
run: brew install qemu
if: runner.os == 'macOS'
env:
HOMEBREW_NO_AUTO_UPDATE: 1
HOMEBREW_NO_BOTTLE_SOURCE_FALLBACK: 1
HOMEBREW_NO_INSTALL_CLEANUP: 1
- name: Install Scoop (Windows)
run: |
Invoke-Expression (New-Object System.Net.WebClient).DownloadString('https://get.scoop.sh')
echo "$HOME\scoop\shims" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append
if: runner.os == 'Windows'
shell: pwsh
- name: Install QEMU (Windows)
run: scoop install qemu
if: runner.os == 'Windows'
shell: pwsh
- name: "Print QEMU Version"
run: qemu-system-x86_64 --version
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
profile: minimal
override: true
- name: "Run `cargo check`"
uses: actions-rs/cargo@v1
with:
command: check

- name: 'Run Test Kernel with Bootloader'
run: |
qemu-system-x86_64 -drive format=raw,file=target/x86_64-bootloader/release/bootloader.bin -device isa-debug-exit,iobase=0xf4,iosize=0x04 -display none
if [ $? -eq 123 ]; then (exit 0); else (exit 1); fi
shell: 'bash {0}'
test:
name: Test

build_example_kernel:
name: "Build Example Kernel"
strategy:
fail-fast: false
matrix:
platform: [
ubuntu-latest,
macos-latest,
windows-latest
]
runs-on: ${{ matrix.platform }}
timeout-minutes: 10
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
timeout-minutes: 30

steps:
- uses: actions/checkout@v1
- name: "Install Rustup Components"
run: rustup component add rust-src llvm-tools-preview
- name: "Install cargo-xbuild"
run: cargo install cargo-xbuild --debug
- name: 'Build Example Kernel'
run: cargo xbuild
working-directory: example-kernel


check_formatting:
name: "Check Formatting"
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
profile: minimal
override: true
components: rust-src, llvm-tools-preview

# install QEMU
- name: Install QEMU (Linux)
run: sudo apt update && sudo apt install qemu-system-x86
if: runner.os == 'Linux'
- name: Install QEMU (macOS)
run: brew install qemu
if: runner.os == 'macOS'
env:
HOMEBREW_NO_AUTO_UPDATE: 1
HOMEBREW_NO_BOTTLE_SOURCE_FALLBACK: 1
HOMEBREW_NO_INSTALL_CLEANUP: 1
- name: Install Scoop (Windows)
run: |
Invoke-Expression (New-Object System.Net.WebClient).DownloadString('https://get.scoop.sh')
echo "$HOME\scoop\shims" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append
if: runner.os == 'Windows'
shell: pwsh
- name: Install QEMU (Windows)
run: scoop install qemu
if: runner.os == 'Windows'
shell: pwsh
- name: "Print QEMU Version"
run: qemu-system-x86_64 --version

- name: Run `cargo test`
uses: actions-rs/cargo@v1
with:
command: test

fmt:
name: Check Formatting
runs-on: ubuntu-latest
timeout-minutes: 2
steps:
- uses: actions/checkout@v1
- name: "Use the latest Rust nightly with rustfmt"
uses: actions-rs/toolchain@v1
with:
toolchain: nightly
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
profile: minimal
override: true
components: rustfmt
- name: Run `cargo fmt --all -- --check`
uses: actions-rs/cargo@v1
with:
command: fmt
args: --all -- --check

clippy:
name: Clippy
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
profile: minimal
override: true
- run: cargo fmt -- --check
components: clippy
- name: Run `cargo clippy`
uses: actions-rs/cargo@v1
with:
command: clippy
6 changes: 6 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"rust-analyzer.checkOnSave.allTargets": false,
"rust-analyzer.checkOnSave.extraArgs": [
"-Zbuild-std=core,alloc"
]
}
Loading