module.rs 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. use header::{Tag, TagIter};
  2. #[repr(packed)]
  3. #[derive(Debug)]
  4. pub struct ModuleTag {
  5. typ: u32,
  6. size: u32,
  7. mod_start: u32,
  8. mod_end: u32,
  9. name_byte: u8,
  10. }
  11. impl ModuleTag {
  12. // The multiboot specification defines the module str
  13. // as valid utf-8, therefore this function produces
  14. // defined behavior
  15. pub fn name(&self) -> &str {
  16. use core::{mem,str,slice};
  17. let strlen = self.size as usize - mem::size_of::<ModuleTag>();
  18. unsafe {
  19. str::from_utf8_unchecked(
  20. slice::from_raw_parts(&self.name_byte as *const u8, strlen))
  21. }
  22. }
  23. pub fn start_address(&self) -> u32 {
  24. self.mod_start
  25. }
  26. pub fn end_address(&self) -> u32 {
  27. self.mod_end
  28. }
  29. }
  30. pub struct ModuleIter {
  31. pub iter: TagIter,
  32. }
  33. impl Iterator for ModuleIter {
  34. type Item = &'static ModuleTag;
  35. fn next(&mut self) -> Option<&'static ModuleTag> {
  36. self.iter.find(|x| x.typ == 3)
  37. .map(|tag| unsafe{&*(tag as *const Tag as *const ModuleTag)})
  38. }
  39. }