mirror of
https://github.com/phil-opp/blog_os.git
synced 2025-12-17 14:57:49 +00:00
Compare commits
35 Commits
post-04-no
...
3280a0afc7
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
3280a0afc7 | ||
|
|
6393247a3b | ||
|
|
a387a00c85 | ||
|
|
faa8d15cb7 | ||
|
|
4c9cd3ae32 | ||
|
|
26f1f5b896 | ||
|
|
cbead25b43 | ||
|
|
1f49e2e9fe | ||
|
|
8708b54756 | ||
|
|
2c25d55810 | ||
|
|
021762cf30 | ||
|
|
ec95ac0e5a | ||
|
|
d8f280315f | ||
|
|
e39c7d8ad8 | ||
|
|
066c278277 | ||
|
|
bdb6a424a8 | ||
|
|
f40717901b | ||
|
|
96844f6519 | ||
|
|
1501669819 | ||
|
|
195f4489e6 | ||
|
|
1b86d7fd62 | ||
|
|
deb0f63dff | ||
|
|
fbdcd45d16 | ||
|
|
d658949f5b | ||
|
|
d12842bcd5 | ||
|
|
0e52ccbebb | ||
|
|
ea5aad0e0c | ||
|
|
4e38e7ddf8 | ||
|
|
1afa3af79d | ||
|
|
49dce7ada7 | ||
|
|
552eb97f75 | ||
|
|
c42cee8d89 | ||
|
|
eace075f2c | ||
|
|
2d5150f2a3 | ||
|
|
ebb9f0b8a7 |
@@ -1,11 +1,9 @@
|
|||||||
[unstable]
|
[unstable]
|
||||||
# build-std = ["core", "compiler_builtins"]
|
build-std = ["core", "compiler_builtins"]
|
||||||
|
build-std-features = ["compiler-builtins-mem"]
|
||||||
|
|
||||||
[build]
|
[build]
|
||||||
# target = "x86_64-blog_os.json"
|
target = "x86_64-blog_os.json"
|
||||||
|
|
||||||
[target.'cfg(target_os = "none")']
|
[target.'cfg(target_os = "none")']
|
||||||
runner = "cargo run --manifest-path disk_image/Cargo.toml --bin runner --quiet"
|
runner = "bootimage runner"
|
||||||
|
|
||||||
[alias]
|
|
||||||
bootimage = "run --manifest-path disk_image/Cargo.toml --bin disk_image --quiet"
|
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
name: Build Code
|
name: Code
|
||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
@@ -16,6 +16,7 @@ jobs:
|
|||||||
check:
|
check:
|
||||||
name: Check
|
name: Check
|
||||||
strategy:
|
strategy:
|
||||||
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
platform: [
|
platform: [
|
||||||
ubuntu-latest,
|
ubuntu-latest,
|
||||||
@@ -41,6 +42,7 @@ jobs:
|
|||||||
test:
|
test:
|
||||||
name: Test
|
name: Test
|
||||||
strategy:
|
strategy:
|
||||||
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
platform: [
|
platform: [
|
||||||
ubuntu-latest,
|
ubuntu-latest,
|
||||||
@@ -65,35 +67,6 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
command: bootimage
|
command: bootimage
|
||||||
|
|
||||||
# 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 ::add-path::$HOME\scoop\shims
|
|
||||||
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
|
|
||||||
|
|
||||||
check_formatting:
|
check_formatting:
|
||||||
name: Check Formatting
|
name: Check Formatting
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
236
Cargo.lock
generated
236
Cargo.lock
generated
@@ -1,22 +1,6 @@
|
|||||||
# This file is automatically @generated by Cargo.
|
# This file is automatically @generated by Cargo.
|
||||||
# It is not intended for manual editing.
|
# It is not intended for manual editing.
|
||||||
[[package]]
|
version = 3
|
||||||
name = "anyhow"
|
|
||||||
version = "1.0.32"
|
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
||||||
checksum = "6b602bfe940d21c130f3895acd65221e8a61270debe89d628b9cb4e3ccb8569b"
|
|
||||||
|
|
||||||
[[package]]
|
|
||||||
name = "bit_field"
|
|
||||||
version = "0.9.0"
|
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
||||||
checksum = "ed8765909f9009617974ab6b7d332625b320b33c326b1e9321382ef1999b5d56"
|
|
||||||
|
|
||||||
[[package]]
|
|
||||||
name = "bitflags"
|
|
||||||
version = "1.2.1"
|
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
||||||
checksum = "cf1de2fe8c75bc145a2f577add951f8134889b4795d47466a54a5c846d691693"
|
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "blog_os"
|
name = "blog_os"
|
||||||
@@ -24,58 +8,15 @@ version = "0.1.0"
|
|||||||
dependencies = [
|
dependencies = [
|
||||||
"bootloader",
|
"bootloader",
|
||||||
"lazy_static",
|
"lazy_static",
|
||||||
"rlibc",
|
|
||||||
"spin",
|
"spin",
|
||||||
"uart_16550",
|
|
||||||
"volatile",
|
"volatile",
|
||||||
"x86_64",
|
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "bootloader"
|
name = "bootloader"
|
||||||
version = "0.9.8"
|
version = "0.9.23"
|
||||||
|
|
||||||
[[package]]
|
|
||||||
name = "bootloader-locator"
|
|
||||||
version = "0.0.3"
|
|
||||||
dependencies = [
|
|
||||||
"cargo_metadata",
|
|
||||||
"locate-cargo-manifest",
|
|
||||||
"thiserror",
|
|
||||||
]
|
|
||||||
|
|
||||||
[[package]]
|
|
||||||
name = "cargo_metadata"
|
|
||||||
version = "0.11.1"
|
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "89fec17b16f1ac67908af82e47d0a90a7afd0e1827b181cd77504323d3263d35"
|
checksum = "b6e02311b16c9819e7c72866d379cdd3026c3b7b25c1edf161f548f8e887e7ff"
|
||||||
dependencies = [
|
|
||||||
"semver",
|
|
||||||
"serde",
|
|
||||||
"serde_json",
|
|
||||||
]
|
|
||||||
|
|
||||||
[[package]]
|
|
||||||
name = "disk_image"
|
|
||||||
version = "0.1.0"
|
|
||||||
dependencies = [
|
|
||||||
"anyhow",
|
|
||||||
"bootloader-locator",
|
|
||||||
"locate-cargo-manifest",
|
|
||||||
"runner-utils",
|
|
||||||
]
|
|
||||||
|
|
||||||
[[package]]
|
|
||||||
name = "itoa"
|
|
||||||
version = "0.4.6"
|
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
||||||
checksum = "dc6f3ad7b9d11a0c00842ff8de1b60ee58661048eb8049ed33c73594f359d7e6"
|
|
||||||
|
|
||||||
[[package]]
|
|
||||||
name = "json"
|
|
||||||
version = "0.12.4"
|
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
||||||
checksum = "078e285eafdfb6c4b434e0d31e8cfcb5115b651496faca5749b88fafd4f23bfd"
|
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "lazy_static"
|
name = "lazy_static"
|
||||||
@@ -86,107 +27,6 @@ dependencies = [
|
|||||||
"spin",
|
"spin",
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
|
||||||
name = "libc"
|
|
||||||
version = "0.2.76"
|
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
||||||
checksum = "755456fae044e6fa1ebbbd1b3e902ae19e73097ed4ed87bb79934a867c007bc3"
|
|
||||||
|
|
||||||
[[package]]
|
|
||||||
name = "locate-cargo-manifest"
|
|
||||||
version = "0.2.0"
|
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
||||||
checksum = "d264d672563b20c0a2eb9045f4072e1352002f6c316cc0677bed8b767e17b7e1"
|
|
||||||
dependencies = [
|
|
||||||
"json",
|
|
||||||
"thiserror",
|
|
||||||
]
|
|
||||||
|
|
||||||
[[package]]
|
|
||||||
name = "proc-macro2"
|
|
||||||
version = "1.0.19"
|
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
||||||
checksum = "04f5f085b5d71e2188cb8271e5da0161ad52c3f227a661a3c135fdf28e258b12"
|
|
||||||
dependencies = [
|
|
||||||
"unicode-xid",
|
|
||||||
]
|
|
||||||
|
|
||||||
[[package]]
|
|
||||||
name = "quote"
|
|
||||||
version = "1.0.7"
|
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
||||||
checksum = "aa563d17ecb180e500da1cfd2b028310ac758de548efdd203e18f283af693f37"
|
|
||||||
dependencies = [
|
|
||||||
"proc-macro2",
|
|
||||||
]
|
|
||||||
|
|
||||||
[[package]]
|
|
||||||
name = "rlibc"
|
|
||||||
version = "1.0.0"
|
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
||||||
checksum = "fc874b127765f014d792f16763a81245ab80500e2ad921ed4ee9e82481ee08fe"
|
|
||||||
|
|
||||||
[[package]]
|
|
||||||
name = "runner-utils"
|
|
||||||
version = "0.0.2"
|
|
||||||
dependencies = [
|
|
||||||
"thiserror",
|
|
||||||
"wait-timeout",
|
|
||||||
]
|
|
||||||
|
|
||||||
[[package]]
|
|
||||||
name = "ryu"
|
|
||||||
version = "1.0.5"
|
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
||||||
checksum = "71d301d4193d031abdd79ff7e3dd721168a9572ef3fe51a1517aba235bd8f86e"
|
|
||||||
|
|
||||||
[[package]]
|
|
||||||
name = "semver"
|
|
||||||
version = "0.10.0"
|
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
||||||
checksum = "394cec28fa623e00903caf7ba4fa6fb9a0e260280bb8cdbbba029611108a0190"
|
|
||||||
dependencies = [
|
|
||||||
"semver-parser",
|
|
||||||
"serde",
|
|
||||||
]
|
|
||||||
|
|
||||||
[[package]]
|
|
||||||
name = "semver-parser"
|
|
||||||
version = "0.7.0"
|
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
||||||
checksum = "388a1df253eca08550bef6c72392cfe7c30914bf41df5269b68cbd6ff8f570a3"
|
|
||||||
|
|
||||||
[[package]]
|
|
||||||
name = "serde"
|
|
||||||
version = "1.0.115"
|
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
||||||
checksum = "e54c9a88f2da7238af84b5101443f0c0d0a3bbdc455e34a5c9497b1903ed55d5"
|
|
||||||
dependencies = [
|
|
||||||
"serde_derive",
|
|
||||||
]
|
|
||||||
|
|
||||||
[[package]]
|
|
||||||
name = "serde_derive"
|
|
||||||
version = "1.0.115"
|
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
||||||
checksum = "609feed1d0a73cc36a0182a840a9b37b4a82f0b1150369f0536a9e3f2a31dc48"
|
|
||||||
dependencies = [
|
|
||||||
"proc-macro2",
|
|
||||||
"quote",
|
|
||||||
"syn",
|
|
||||||
]
|
|
||||||
|
|
||||||
[[package]]
|
|
||||||
name = "serde_json"
|
|
||||||
version = "1.0.57"
|
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
||||||
checksum = "164eacbdb13512ec2745fb09d51fd5b22b0d65ed294a1dcf7285a360c80a675c"
|
|
||||||
dependencies = [
|
|
||||||
"itoa",
|
|
||||||
"ryu",
|
|
||||||
"serde",
|
|
||||||
]
|
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "spin"
|
name = "spin"
|
||||||
version = "0.5.2"
|
version = "0.5.2"
|
||||||
@@ -194,73 +34,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|||||||
checksum = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d"
|
checksum = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d"
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "syn"
|
name = "volatile"
|
||||||
version = "1.0.39"
|
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
||||||
checksum = "891d8d6567fe7c7f8835a3a98af4208f3846fba258c1bc3c31d6e506239f11f9"
|
|
||||||
dependencies = [
|
|
||||||
"proc-macro2",
|
|
||||||
"quote",
|
|
||||||
"unicode-xid",
|
|
||||||
]
|
|
||||||
|
|
||||||
[[package]]
|
|
||||||
name = "thiserror"
|
|
||||||
version = "1.0.20"
|
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
||||||
checksum = "7dfdd070ccd8ccb78f4ad66bf1982dc37f620ef696c6b5028fe2ed83dd3d0d08"
|
|
||||||
dependencies = [
|
|
||||||
"thiserror-impl",
|
|
||||||
]
|
|
||||||
|
|
||||||
[[package]]
|
|
||||||
name = "thiserror-impl"
|
|
||||||
version = "1.0.20"
|
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
||||||
checksum = "bd80fc12f73063ac132ac92aceea36734f04a1d93c1240c6944e23a3b8841793"
|
|
||||||
dependencies = [
|
|
||||||
"proc-macro2",
|
|
||||||
"quote",
|
|
||||||
"syn",
|
|
||||||
]
|
|
||||||
|
|
||||||
[[package]]
|
|
||||||
name = "uart_16550"
|
|
||||||
version = "0.2.7"
|
version = "0.2.7"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "e58fc40dc1712664fc9b0a7bd8ca2f21ab49960924fb245a80a05e1e92f3dfe9"
|
checksum = "f6b06ad3ed06fef1713569d547cdbdb439eafed76341820fb0e0344f29a41945"
|
||||||
dependencies = [
|
|
||||||
"bitflags",
|
|
||||||
"x86_64",
|
|
||||||
]
|
|
||||||
|
|
||||||
[[package]]
|
|
||||||
name = "unicode-xid"
|
|
||||||
version = "0.2.1"
|
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
||||||
checksum = "f7fe0bb3479651439c9112f72b6c505038574c9fbb575ed1bf3b797fa39dd564"
|
|
||||||
|
|
||||||
[[package]]
|
|
||||||
name = "volatile"
|
|
||||||
version = "0.4.0-alpha.00"
|
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
||||||
checksum = "9a1da81878b88e2b57ca8b3d62c0c3e9979d9531cfe0e6d1c094174d8458eac6"
|
|
||||||
|
|
||||||
[[package]]
|
|
||||||
name = "wait-timeout"
|
|
||||||
version = "0.2.0"
|
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
||||||
checksum = "9f200f5b12eb75f8c1ed65abd4b2db8a6e1b138a20de009dacee265a2498f3f6"
|
|
||||||
dependencies = [
|
|
||||||
"libc",
|
|
||||||
]
|
|
||||||
|
|
||||||
[[package]]
|
|
||||||
name = "x86_64"
|
|
||||||
version = "0.11.0"
|
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
||||||
checksum = "365de37eb7c6da582cbb510dd0f3f1235d24ff6309a8a96e8a9909cc9bfd608f"
|
|
||||||
dependencies = [
|
|
||||||
"bit_field",
|
|
||||||
"bitflags",
|
|
||||||
]
|
|
||||||
|
|||||||
24
Cargo.toml
24
Cargo.toml
@@ -4,31 +4,11 @@ version = "0.1.0"
|
|||||||
authors = ["Philipp Oppermann <dev@phil-opp.com>"]
|
authors = ["Philipp Oppermann <dev@phil-opp.com>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
|
|
||||||
[workspace]
|
|
||||||
members = [
|
|
||||||
"disk_image",
|
|
||||||
]
|
|
||||||
|
|
||||||
[[test]]
|
|
||||||
name = "should_panic"
|
|
||||||
harness = false
|
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
bootloader = { path = "../../uefi-test"}
|
bootloader = "0.9.8"
|
||||||
rlibc = "1.0.0"
|
volatile = "0.2.6"
|
||||||
volatile = "0.4.0-alpha"
|
|
||||||
spin = "0.5.2"
|
spin = "0.5.2"
|
||||||
x86_64 = "0.11.0"
|
|
||||||
uart_16550 = "0.2.0"
|
|
||||||
|
|
||||||
[dependencies.lazy_static]
|
[dependencies.lazy_static]
|
||||||
version = "1.0"
|
version = "1.0"
|
||||||
features = ["spin_no_std"]
|
features = ["spin_no_std"]
|
||||||
|
|
||||||
|
|
||||||
[package.metadata.bootimage]
|
|
||||||
test-args = [
|
|
||||||
"-device", "isa-debug-exit,iobase=0xf4,iosize=0x04", "-serial", "stdio",
|
|
||||||
"-display", "none"
|
|
||||||
]
|
|
||||||
test-success-exit-code = 33 # (0x10 << 1) | 1
|
|
||||||
|
|||||||
12
README.md
12
README.md
@@ -1,10 +1,10 @@
|
|||||||
# Blog OS (Testing)
|
# Blog OS (VGA Text Mode)
|
||||||
|
|
||||||
[](https://github.com/phil-opp/blog_os/actions?query=workflow%3A%22Build+Code%22+branch%3Apost-04)
|
[](https://github.com/phil-opp/blog_os/actions?query=workflow%3A%22Code%22+branch%3Apost-03)
|
||||||
|
|
||||||
This repository contains the source code for the [Testing][post] post of the [Writing an OS in Rust](https://os.phil-opp.com) series.
|
This repository contains the source code for the [VGA Text Mode][post] post of the [Writing an OS in Rust](https://os.phil-opp.com) series.
|
||||||
|
|
||||||
[post]: https://os.phil-opp.com/testing/
|
[post]: https://os.phil-opp.com/vga-text-mode/
|
||||||
|
|
||||||
**Check out the [master branch](https://github.com/phil-opp/blog_os) for more information.**
|
**Check out the [master branch](https://github.com/phil-opp/blog_os) for more information.**
|
||||||
|
|
||||||
@@ -56,10 +56,6 @@ dd if=target/x86_64-blog_os/debug/bootimage-blog_os.bin of=/dev/sdX && sync
|
|||||||
|
|
||||||
Where `sdX` is the device name of your USB stick. **Be careful** to choose the correct device name, because everything on that device is overwritten.
|
Where `sdX` is the device name of your USB stick. **Be careful** to choose the correct device name, because everything on that device is overwritten.
|
||||||
|
|
||||||
## Testing
|
|
||||||
|
|
||||||
To run the unit and integration tests, execute `cargo xtest`.
|
|
||||||
|
|
||||||
## License
|
## License
|
||||||
|
|
||||||
Licensed under either of
|
Licensed under either of
|
||||||
|
|||||||
@@ -1,13 +0,0 @@
|
|||||||
[package]
|
|
||||||
name = "disk_image"
|
|
||||||
version = "0.1.0"
|
|
||||||
authors = ["Philipp Oppermann <dev@phil-opp.com>"]
|
|
||||||
edition = "2018"
|
|
||||||
|
|
||||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
||||||
|
|
||||||
[dependencies]
|
|
||||||
anyhow = "1.0.32"
|
|
||||||
bootloader-locator = {path = "../../../bootloader-locator"}
|
|
||||||
runner-utils = { path = "../../../runner-utils/" }
|
|
||||||
locate-cargo-manifest = "0.2.0"
|
|
||||||
@@ -1,57 +0,0 @@
|
|||||||
use anyhow::anyhow;
|
|
||||||
use std::{
|
|
||||||
path::PathBuf,
|
|
||||||
process::{Command, ExitStatus},
|
|
||||||
time::Duration,
|
|
||||||
};
|
|
||||||
|
|
||||||
const RUN_ARGS: &[&str] = &["-d", "int", "--no-reboot", "-s"];
|
|
||||||
const TEST_ARGS: &[&str] = &[
|
|
||||||
"-device",
|
|
||||||
"isa-debug-exit,iobase=0xf4,iosize=0x04",
|
|
||||||
"-serial",
|
|
||||||
"stdio",
|
|
||||||
"-display",
|
|
||||||
"none",
|
|
||||||
"--no-reboot",
|
|
||||||
];
|
|
||||||
const TEST_TIMEOUT_SECS: u64 = 10;
|
|
||||||
|
|
||||||
fn main() -> anyhow::Result<()> {
|
|
||||||
let kernel_binary_path = {
|
|
||||||
let path = PathBuf::from(std::env::args().nth(1).unwrap());
|
|
||||||
path.canonicalize()?
|
|
||||||
};
|
|
||||||
|
|
||||||
let disk_image = disk_image::create_disk_image(&kernel_binary_path, true)?;
|
|
||||||
|
|
||||||
let mut run_cmd = Command::new("qemu-system-x86_64");
|
|
||||||
run_cmd
|
|
||||||
.arg("-drive")
|
|
||||||
.arg(format!("format=raw,file={}", disk_image.display()));
|
|
||||||
|
|
||||||
let binary_kind = runner_utils::binary_kind(&kernel_binary_path);
|
|
||||||
if binary_kind.is_test() {
|
|
||||||
run_cmd.args(TEST_ARGS);
|
|
||||||
|
|
||||||
let exit_status = run_test_command(run_cmd)?;
|
|
||||||
match exit_status.code() {
|
|
||||||
Some(33) => {} // success
|
|
||||||
other => return Err(anyhow!("Test failed (exit code: {:?})", other)),
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
run_cmd.args(RUN_ARGS);
|
|
||||||
|
|
||||||
let exit_status = run_cmd.status()?;
|
|
||||||
if !exit_status.success() {
|
|
||||||
std::process::exit(exit_status.code().unwrap_or(1));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
Ok(())
|
|
||||||
}
|
|
||||||
|
|
||||||
fn run_test_command(mut cmd: Command) -> anyhow::Result<ExitStatus> {
|
|
||||||
let status = runner_utils::run_with_timeout(&mut cmd, Duration::from_secs(TEST_TIMEOUT_SECS))?;
|
|
||||||
Ok(status)
|
|
||||||
}
|
|
||||||
@@ -1,45 +0,0 @@
|
|||||||
use anyhow::anyhow;
|
|
||||||
use std::{
|
|
||||||
path::{Path, PathBuf},
|
|
||||||
process::Command,
|
|
||||||
};
|
|
||||||
|
|
||||||
pub fn create_disk_image(kernel_binary_path: &Path, bios_only: bool) -> anyhow::Result<PathBuf> {
|
|
||||||
let bootloader_info = bootloader_locator::locate_bootloader()?;
|
|
||||||
let kernel_manifest_path = &bootloader_info.kernel_manifest_path;
|
|
||||||
|
|
||||||
let mut build_cmd = Command::new(env!("CARGO"));
|
|
||||||
build_cmd.current_dir(bootloader_info.package.manifest_path.parent().unwrap());
|
|
||||||
build_cmd.arg("builder");
|
|
||||||
build_cmd
|
|
||||||
.arg("--kernel-manifest")
|
|
||||||
.arg(&kernel_manifest_path);
|
|
||||||
build_cmd.arg("--kernel-binary").arg(&kernel_binary_path);
|
|
||||||
build_cmd
|
|
||||||
.arg("--target-dir")
|
|
||||||
.arg(kernel_manifest_path.parent().unwrap().join("target"));
|
|
||||||
build_cmd
|
|
||||||
.arg("--out-dir")
|
|
||||||
.arg(kernel_binary_path.parent().unwrap());
|
|
||||||
build_cmd.arg("--quiet");
|
|
||||||
if bios_only {
|
|
||||||
build_cmd.arg("--firmware").arg("bios");
|
|
||||||
}
|
|
||||||
|
|
||||||
if !build_cmd.status()?.success() {
|
|
||||||
return Err(anyhow!("build failed"));
|
|
||||||
}
|
|
||||||
|
|
||||||
let kernel_binary_name = kernel_binary_path.file_name().unwrap().to_str().unwrap();
|
|
||||||
let disk_image = kernel_binary_path
|
|
||||||
.parent()
|
|
||||||
.unwrap()
|
|
||||||
.join(format!("bootimage-bios-{}.bin", kernel_binary_name));
|
|
||||||
if !disk_image.exists() {
|
|
||||||
return Err(anyhow!(
|
|
||||||
"Disk image does not exist at {} after bootloader build",
|
|
||||||
disk_image.display()
|
|
||||||
));
|
|
||||||
}
|
|
||||||
Ok(disk_image)
|
|
||||||
}
|
|
||||||
@@ -1,40 +0,0 @@
|
|||||||
use anyhow::anyhow;
|
|
||||||
use std::process::Command;
|
|
||||||
|
|
||||||
const TARGET_NAME: &str = "x86_64-blog_os";
|
|
||||||
const KERNEL_BINARIES: &[&str] = &["blog_os"];
|
|
||||||
|
|
||||||
fn main() -> anyhow::Result<()> {
|
|
||||||
// build all binaries
|
|
||||||
let mut build_cmd = Command::new(env!("CARGO"));
|
|
||||||
build_cmd.arg("build");
|
|
||||||
build_cmd.arg("--release");
|
|
||||||
build_cmd.arg("-Zbuild-std=core");
|
|
||||||
build_cmd
|
|
||||||
.arg("--target")
|
|
||||||
.arg(format!("{}.json", TARGET_NAME));
|
|
||||||
if !build_cmd.status()?.success() {
|
|
||||||
return Err(anyhow!("build failed"));
|
|
||||||
};
|
|
||||||
|
|
||||||
let kernel_manifest = locate_cargo_manifest::locate_manifest()?;
|
|
||||||
let target_dir_root = kernel_manifest.parent().unwrap().join("target");
|
|
||||||
let target_dir = target_dir_root.join(TARGET_NAME).join("release");
|
|
||||||
|
|
||||||
for binary_name in KERNEL_BINARIES {
|
|
||||||
let binary_path = {
|
|
||||||
let path = target_dir.join(binary_name);
|
|
||||||
path.canonicalize()?
|
|
||||||
};
|
|
||||||
|
|
||||||
let disk_image = disk_image::create_disk_image(&binary_path, false)?;
|
|
||||||
|
|
||||||
println!(
|
|
||||||
"Created disk image for binary {} at {}",
|
|
||||||
binary_name,
|
|
||||||
disk_image.display()
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
Ok(())
|
|
||||||
}
|
|
||||||
72
src/lib.rs
72
src/lib.rs
@@ -1,72 +0,0 @@
|
|||||||
#![no_std]
|
|
||||||
#![cfg_attr(test, no_main)]
|
|
||||||
#![feature(custom_test_frameworks)]
|
|
||||||
#![test_runner(crate::test_runner)]
|
|
||||||
#![reexport_test_harness_main = "test_main"]
|
|
||||||
|
|
||||||
extern crate rlibc;
|
|
||||||
|
|
||||||
use core::panic::PanicInfo;
|
|
||||||
|
|
||||||
pub mod serial;
|
|
||||||
//pub mod vga_buffer;
|
|
||||||
|
|
||||||
pub trait Testable {
|
|
||||||
fn run(&self) -> ();
|
|
||||||
}
|
|
||||||
|
|
||||||
impl<T> Testable for T
|
|
||||||
where
|
|
||||||
T: Fn(),
|
|
||||||
{
|
|
||||||
fn run(&self) {
|
|
||||||
serial_print!("{}...\t", core::any::type_name::<T>());
|
|
||||||
self();
|
|
||||||
serial_println!("[ok]");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
pub fn test_runner(tests: &[&dyn Testable]) {
|
|
||||||
serial_println!("Running {} tests", tests.len());
|
|
||||||
for test in tests {
|
|
||||||
test.run();
|
|
||||||
}
|
|
||||||
exit_qemu(QemuExitCode::Success);
|
|
||||||
}
|
|
||||||
|
|
||||||
pub fn test_panic_handler(info: &PanicInfo) -> ! {
|
|
||||||
serial_println!("[failed]\n");
|
|
||||||
serial_println!("Error: {}\n", info);
|
|
||||||
exit_qemu(QemuExitCode::Failed);
|
|
||||||
loop {}
|
|
||||||
}
|
|
||||||
|
|
||||||
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
|
|
||||||
#[repr(u32)]
|
|
||||||
pub enum QemuExitCode {
|
|
||||||
Success = 0x10,
|
|
||||||
Failed = 0x11,
|
|
||||||
}
|
|
||||||
|
|
||||||
pub fn exit_qemu(exit_code: QemuExitCode) {
|
|
||||||
use x86_64::instructions::port::Port;
|
|
||||||
|
|
||||||
unsafe {
|
|
||||||
let mut port = Port::new(0xf4);
|
|
||||||
port.write(exit_code as u32);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Entry point for `cargo xtest`
|
|
||||||
#[cfg(test)]
|
|
||||||
#[no_mangle]
|
|
||||||
pub extern "C" fn _start() -> ! {
|
|
||||||
test_main();
|
|
||||||
loop {}
|
|
||||||
}
|
|
||||||
|
|
||||||
#[cfg(test)]
|
|
||||||
#[panic_handler]
|
|
||||||
fn panic(info: &PanicInfo) -> ! {
|
|
||||||
test_panic_handler(info)
|
|
||||||
}
|
|
||||||
45
src/main.rs
45
src/main.rs
@@ -1,49 +1,20 @@
|
|||||||
#![no_std]
|
#![no_std]
|
||||||
#![no_main]
|
#![no_main]
|
||||||
#![feature(custom_test_frameworks)]
|
|
||||||
#![test_runner(blog_os::test_runner)]
|
|
||||||
#![reexport_test_harness_main = "test_main"]
|
|
||||||
|
|
||||||
use blog_os::serial_println;
|
use core::panic::PanicInfo;
|
||||||
use core::{panic::PanicInfo, ptr, slice};
|
|
||||||
|
mod vga_buffer;
|
||||||
|
|
||||||
#[no_mangle]
|
#[no_mangle]
|
||||||
pub extern "C" fn _start(boot_info: &'static mut bootloader::boot_info::BootInfo) -> ! {
|
pub extern "C" fn _start() -> ! {
|
||||||
#[cfg(test)]
|
println!("Hello World{}", "!");
|
||||||
test_main();
|
|
||||||
|
|
||||||
let mut framebuffer = {
|
|
||||||
let ptr = boot_info.framebuffer.start_addr as *mut u8;
|
|
||||||
let slice = unsafe { slice::from_raw_parts_mut(ptr, boot_info.framebuffer.len) };
|
|
||||||
volatile::Volatile::new(slice)
|
|
||||||
};
|
|
||||||
|
|
||||||
//serial_println!("Hello World{}", "!");
|
|
||||||
|
|
||||||
for i in 0..boot_info.framebuffer.len {
|
|
||||||
framebuffer.index_mut(i).write(0x99);
|
|
||||||
}
|
|
||||||
|
|
||||||
loop {
|
|
||||||
x86_64::instructions::hlt();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/// This function is called on panic.
|
|
||||||
#[cfg(not(test))]
|
|
||||||
#[panic_handler]
|
|
||||||
fn panic(info: &PanicInfo) -> ! {
|
|
||||||
serial_println!("{}", info);
|
|
||||||
loop {}
|
loop {}
|
||||||
}
|
}
|
||||||
|
|
||||||
#[cfg(test)]
|
/// This function is called on panic.
|
||||||
#[panic_handler]
|
#[panic_handler]
|
||||||
fn panic(info: &PanicInfo) -> ! {
|
fn panic(info: &PanicInfo) -> ! {
|
||||||
blog_os::test_panic_handler(info)
|
println!("{}", info);
|
||||||
}
|
loop {}
|
||||||
|
|
||||||
#[test_case]
|
|
||||||
fn trivial_assertion() {
|
|
||||||
assert_eq!(1, 1);
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,37 +0,0 @@
|
|||||||
use lazy_static::lazy_static;
|
|
||||||
use spin::Mutex;
|
|
||||||
use uart_16550::SerialPort;
|
|
||||||
|
|
||||||
lazy_static! {
|
|
||||||
pub static ref SERIAL1: Mutex<SerialPort> = {
|
|
||||||
let mut serial_port = unsafe { SerialPort::new(0x3F8) };
|
|
||||||
serial_port.init();
|
|
||||||
Mutex::new(serial_port)
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
#[doc(hidden)]
|
|
||||||
pub fn _print(args: ::core::fmt::Arguments) {
|
|
||||||
use core::fmt::Write;
|
|
||||||
SERIAL1
|
|
||||||
.lock()
|
|
||||||
.write_fmt(args)
|
|
||||||
.expect("Printing to serial failed");
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Prints to the host through the serial interface.
|
|
||||||
#[macro_export]
|
|
||||||
macro_rules! serial_print {
|
|
||||||
($($arg:tt)*) => {
|
|
||||||
$crate::serial::_print(format_args!($($arg)*));
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Prints to the host through the serial interface, appending a newline.
|
|
||||||
#[macro_export]
|
|
||||||
macro_rules! serial_println {
|
|
||||||
() => ($crate::serial_print!("\n"));
|
|
||||||
($fmt:expr) => ($crate::serial_print!(concat!($fmt, "\n")));
|
|
||||||
($fmt:expr, $($arg:tt)*) => ($crate::serial_print!(
|
|
||||||
concat!($fmt, "\n"), $($arg)*));
|
|
||||||
}
|
|
||||||
@@ -169,25 +169,3 @@ pub fn _print(args: fmt::Arguments) {
|
|||||||
use core::fmt::Write;
|
use core::fmt::Write;
|
||||||
WRITER.lock().write_fmt(args).unwrap();
|
WRITER.lock().write_fmt(args).unwrap();
|
||||||
}
|
}
|
||||||
|
|
||||||
#[test_case]
|
|
||||||
fn test_println_simple() {
|
|
||||||
println!("test_println_simple output");
|
|
||||||
}
|
|
||||||
|
|
||||||
#[test_case]
|
|
||||||
fn test_println_many() {
|
|
||||||
for _ in 0..200 {
|
|
||||||
println!("test_println_many output");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
#[test_case]
|
|
||||||
fn test_println_output() {
|
|
||||||
let s = "Some test string that fits on a single line";
|
|
||||||
println!("{}", s);
|
|
||||||
for (i, c) in s.chars().enumerate() {
|
|
||||||
let screen_char = WRITER.lock().buffer.chars[BUFFER_HEIGHT - 2][i].read();
|
|
||||||
assert_eq!(char::from(screen_char.ascii_character), c);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|||||||
@@ -1,24 +0,0 @@
|
|||||||
#![no_std]
|
|
||||||
#![no_main]
|
|
||||||
#![feature(custom_test_frameworks)]
|
|
||||||
#![test_runner(blog_os::test_runner)]
|
|
||||||
#![reexport_test_harness_main = "test_main"]
|
|
||||||
|
|
||||||
use core::panic::PanicInfo;
|
|
||||||
|
|
||||||
#[no_mangle] // don't mangle the name of this function
|
|
||||||
pub extern "C" fn _start() -> ! {
|
|
||||||
test_main();
|
|
||||||
|
|
||||||
loop {}
|
|
||||||
}
|
|
||||||
|
|
||||||
#[panic_handler]
|
|
||||||
fn panic(info: &PanicInfo) -> ! {
|
|
||||||
blog_os::test_panic_handler(info)
|
|
||||||
}
|
|
||||||
|
|
||||||
#[test_case]
|
|
||||||
fn test_println() {
|
|
||||||
//println!("test_println output");
|
|
||||||
}
|
|
||||||
@@ -1,25 +0,0 @@
|
|||||||
#![no_std]
|
|
||||||
#![no_main]
|
|
||||||
|
|
||||||
use blog_os::{exit_qemu, serial_print, serial_println, QemuExitCode};
|
|
||||||
use core::panic::PanicInfo;
|
|
||||||
|
|
||||||
#[no_mangle]
|
|
||||||
pub extern "C" fn _start() -> ! {
|
|
||||||
should_fail();
|
|
||||||
serial_println!("[test did not panic]");
|
|
||||||
exit_qemu(QemuExitCode::Failed);
|
|
||||||
loop {}
|
|
||||||
}
|
|
||||||
|
|
||||||
fn should_fail() {
|
|
||||||
serial_print!("should_panic::should_fail...\t");
|
|
||||||
assert_eq!(0, 1);
|
|
||||||
}
|
|
||||||
|
|
||||||
#[panic_handler]
|
|
||||||
fn panic(_info: &PanicInfo) -> ! {
|
|
||||||
serial_println!("[ok]");
|
|
||||||
exit_qemu(QemuExitCode::Success);
|
|
||||||
loop {}
|
|
||||||
}
|
|
||||||
Reference in New Issue
Block a user