ソースを参照

Merge pull request #36 from ahmedcharles/cleanup

Various cleanups.
Rob Gries 7 年 前
コミット
aeeb28249e
4 ファイル変更12 行追加6 行削除
  1. 4 3
      src/elf_sections.rs
  2. 3 1
      src/header.rs
  3. 3 1
      src/lib.rs
  4. 2 1
      src/module.rs

+ 4 - 3
src/elf_sections.rs

@@ -45,7 +45,7 @@ impl ElfSectionsTag {
     }
 }
 
-#[derive(Clone)]
+#[derive(Clone, Debug)]
 pub struct ElfSectionIter {
     current_section: *const u8,
     remaining_sections: u32,
@@ -78,6 +78,7 @@ impl Iterator for ElfSectionIter {
     }
 }
 
+#[derive(Debug)]
 pub struct ElfSection {
     inner: *const u8,
     string_section: *const u8,
@@ -85,7 +86,7 @@ pub struct ElfSection {
 }
 
 #[derive(Debug)]
-#[repr(C)]
+#[repr(C, packed)]
 struct ElfSectionInner32 {
     name_index: u32,
     typ: u32,
@@ -100,7 +101,7 @@ struct ElfSectionInner32 {
 }
 
 #[derive(Debug)]
-#[repr(C)]
+#[repr(C, packed)]
 struct ElfSectionInner64 {
     name_index: u32,
     typ: u32,

+ 3 - 1
src/header.rs

@@ -1,10 +1,12 @@
-#[repr(C)]
+#[derive(Debug)]
+#[repr(C, packed)]
 pub struct Tag {
     pub typ: u32,
     pub size: u32,
     // tag specific fields
 }
 
+#[derive(Debug)]
 pub struct TagIter {
     pub current: *const Tag,
 }

+ 3 - 1
src/lib.rs

@@ -1,5 +1,7 @@
 #![no_std]
 
+#![deny(missing_debug_implementations)]
+
 use core::fmt;
 
 use header::{Tag, TagIter};
@@ -33,7 +35,7 @@ pub struct BootInformation {
     inner: *const BootInformationInner,
 }
 
-#[repr(C)]
+#[repr(C, packed)]
 struct BootInformationInner {
     total_size: u32,
     _reserved: u32,

+ 2 - 1
src/module.rs

@@ -1,7 +1,7 @@
 use header::{Tag, TagIter};
 
-#[repr(packed)]
 #[derive(Debug)]
+#[repr(C, packed)]
 pub struct ModuleTag {
     typ: u32,
     size: u32,
@@ -36,6 +36,7 @@ pub fn module_iter(iter: TagIter) -> ModuleIter {
     ModuleIter { iter: iter }
 }
 
+#[derive(Debug)]
 pub struct ModuleIter {
     iter: TagIter,
 }