Parcourir la source

Add the command line tag (#19)

Michael Spencer il y a 8 ans
Parent
commit
9eaf3ecb3f
2 fichiers modifiés avec 25 ajouts et 0 suppressions
  1. 19 0
      src/command_line.rs
  2. 6 0
      src/lib.rs

+ 19 - 0
src/command_line.rs

@@ -0,0 +1,19 @@
+
+#[derive(Debug)]
+#[repr(packed)] // repr(C) would add unwanted padding before first_section
+pub struct CommandLineTag {
+    typ: u32,
+    size: u32,
+    string: u8,
+}
+
+impl CommandLineTag {
+    pub fn command_line(&self) -> &str {
+        use core::{mem,str,slice};
+        unsafe {
+            let strlen = self.size as usize - mem::size_of::<CommandLineTag>();
+            str::from_utf8_unchecked(
+                slice::from_raw_parts((&self.string) as *const u8, strlen))
+        }
+    }
+}

+ 6 - 0
src/lib.rs

@@ -6,6 +6,7 @@ pub use elf_sections::{ElfSectionsTag, ElfSection, ElfSectionIter, ElfSectionTyp
 pub use elf_sections::{ELF_SECTION_WRITABLE, ELF_SECTION_ALLOCATED, ELF_SECTION_EXECUTABLE};
 pub use memory_map::{MemoryMapTag, MemoryArea, MemoryAreaIter};
 pub use module::{ModuleTag, ModuleIter};
+pub use command_line::CommandLineTag;
 
 #[macro_use]
 extern crate bitflags;
@@ -15,6 +16,7 @@ mod boot_loader_name;
 mod elf_sections;
 mod memory_map;
 mod module;
+mod command_line;
 
 pub unsafe fn load(address: usize) -> &'static BootInformation {
     let multiboot = &*(address as *const BootInformation);
@@ -54,6 +56,10 @@ impl BootInformation {
         self.get_tag(2).map(|tag| unsafe{&*(tag as *const Tag as *const BootLoaderNameTag)})
     }
 
+    pub fn command_line_tag(&self) -> Option<&'static CommandLineTag> {
+        self.get_tag(1).map(|tag| unsafe{&*(tag as *const Tag as *const CommandLineTag)})
+    }
+
     fn has_valid_end_tag(&self) -> bool {
         const END_TAG: Tag = Tag{typ:0, size:8};