Parcourir la source

Merge pull request #169 from rust-osdev/foobar

multiboot2: add test to ensure that boot info is send and sync
Philipp Schuster il y a 1 an
Parent
commit
4078c90a95
3 fichiers modifiés avec 38 ajouts et 18 suppressions
  1. 11 11
      Cargo.lock
  2. 3 3
      integration-test/bins/Cargo.lock
  3. 24 4
      multiboot2/src/lib.rs

+ 11 - 11
Cargo.lock

@@ -4,9 +4,9 @@ version = 3
 
 [[package]]
 name = "bitflags"
-version = "2.3.2"
+version = "2.3.3"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "6dbe3c979c178231552ecba20214a8272df4e09f232a87aef4320cf06539aded"
+checksum = "630be753d4e58660abd17930c71b647fe46c27ea6b63cc59e1e3851406972e42"
 
 [[package]]
 name = "derive_more"
@@ -40,7 +40,7 @@ dependencies = [
 
 [[package]]
 name = "multiboot2"
-version = "0.17.0"
+version = "0.18.1"
 dependencies = [
  "bitflags",
  "derive_more",
@@ -59,9 +59,9 @@ dependencies = [
 
 [[package]]
 name = "proc-macro2"
-version = "1.0.60"
+version = "1.0.64"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "dec2b086b7a862cf4de201096214fa870344cf922b2b30c167badb3af3195406"
+checksum = "78803b62cbf1f46fde80d7c0e803111524b9877184cfe7c3033659490ac7a7da"
 dependencies = [
  "unicode-ident",
 ]
@@ -88,9 +88,9 @@ dependencies = [
 
 [[package]]
 name = "quote"
-version = "1.0.28"
+version = "1.0.29"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "1b9ab9c7eadfd8df19006f1cf1a4aed13540ed5cbc047010ece5826e10825488"
+checksum = "573015e8ab27661678357f27dc26460738fd2b6c86e46f386fde94cb5d913105"
 dependencies = [
  "proc-macro2",
 ]
@@ -119,12 +119,12 @@ dependencies = [
 
 [[package]]
 name = "uguid"
-version = "2.0.0"
+version = "2.0.1"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "594cc87e268a7b43d625d46c63cf1605d0e61bf66e4b1cd58c058ec0191e1f81"
+checksum = "16dfbd255defbd727b3a30e8950695d2e6d045841ee250ff0f1f7ced17917f8d"
 
 [[package]]
 name = "unicode-ident"
-version = "1.0.9"
+version = "1.0.10"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "b15811caf2415fb889178633e7724bad2509101cde276048e013b9def5e51fa0"
+checksum = "22049a19f4a68748a168c0fc439f9516686aa045927ff767eca0a85101fb6e73"

+ 3 - 3
integration-test/bins/Cargo.lock

@@ -109,7 +109,7 @@ dependencies = [
 
 [[package]]
 name = "multiboot2"
-version = "0.17.0"
+version = "0.18.1"
 dependencies = [
  "bitflags 2.3.2",
  "derive_more",
@@ -135,7 +135,7 @@ dependencies = [
  "good_memory_allocator",
  "log",
  "multiboot",
- "multiboot2 0.17.0",
+ "multiboot2 0.18.1",
  "multiboot2-header",
  "util",
 ]
@@ -147,7 +147,7 @@ dependencies = [
  "anyhow",
  "good_memory_allocator",
  "log",
- "multiboot2 0.17.0",
+ "multiboot2 0.18.1",
  "util",
  "x86",
 ]

+ 24 - 4
multiboot2/src/lib.rs

@@ -468,10 +468,6 @@ impl<'a> BootInformation<'a> {
     }
 }
 
-// SAFETY: BootInformation contains a const ptr to memory that is never mutated.
-// Sending this pointer to other threads is sound.
-unsafe impl Send for BootInformation<'_> {}
-
 impl fmt::Debug for BootInformation<'_> {
     fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
         /// Limit how many Elf-Sections should be debug-formatted.
@@ -528,6 +524,30 @@ mod tests {
     use crate::memory_map::MemoryAreaType;
     use core::str::Utf8Error;
 
+    /// Compile time test to check if the boot information is Send and Sync.
+    /// This test is relevant to give library users flexebility in passing the
+    /// struct around.
+    #[test]
+    fn boot_information_is_send_and_sync() {
+        fn accept<T: Send + Sync>(_: T) {}
+
+        #[repr(C, align(8))]
+        struct Bytes([u8; 16]);
+        let bytes: Bytes = Bytes([
+            16, 0, 0, 0, // total_size
+            0, 0, 0, 0, // reserved
+            0, 0, 0, 0, // end tag type
+            8, 0, 0, 0, // end tag size
+        ]);
+        let ptr = bytes.0.as_ptr();
+        let addr = ptr as usize;
+        let bi = unsafe { BootInformation::load(ptr.cast()) };
+        let bi = bi.unwrap();
+
+        // compile time test
+        accept(bi);
+    }
+
     #[test]
     fn no_tags() {
         #[repr(C, align(8))]