2018-04-27 19:10:39 +04:00
|
|
|
use super::*;
|
2018-05-12 20:47:16 +04:00
|
|
|
use memory::{Stack, InactivePageTable};
|
2018-05-12 18:57:30 +04:00
|
|
|
use xmas_elf::{ElfFile, program::{Flags, ProgramHeader}};
|
2018-04-28 06:40:31 +04:00
|
|
|
use core::slice;
|
2018-05-12 07:45:31 +04:00
|
|
|
use alloc::rc::Rc;
|
2018-04-27 19:10:39 +04:00
|
|
|
|
|
|
|
#[derive(Debug)]
|
|
|
|
pub struct Process {
|
|
|
|
pub(in process) pid: Pid,
|
|
|
|
name: &'static str,
|
|
|
|
kstack: Stack,
|
2018-05-12 20:47:16 +04:00
|
|
|
pub(in process) memory_set: Option<MemorySet>,
|
|
|
|
pub(in process) page_table: Option<InactivePageTable>,
|
2018-04-27 19:10:39 +04:00
|
|
|
pub(in process) status: Status,
|
|
|
|
pub(in process) rsp: usize,
|
2018-05-12 18:57:30 +04:00
|
|
|
pub(in process) is_user: bool,
|
2018-04-27 19:10:39 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
pub type Pid = usize;
|
|
|
|
|
|
|
|
#[derive(Debug)]
|
|
|
|
pub enum Status {
|
|
|
|
Ready, Running, Sleeping(usize), Exited
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Process {
|
|
|
|
/// Make a new kernel thread
|
|
|
|
pub fn new(name: &'static str, entry: extern fn(), mc: &mut MemoryController) -> Self {
|
|
|
|
let kstack = mc.alloc_stack(7).unwrap();
|
2018-05-12 18:57:30 +04:00
|
|
|
let tf = TrapFrame::new_kernel_thread(entry, kstack.top());
|
|
|
|
let rsp = kstack.push_at_top(tf);
|
2018-04-27 19:10:39 +04:00
|
|
|
|
|
|
|
Process {
|
|
|
|
pid: 0,
|
|
|
|
name,
|
|
|
|
kstack,
|
2018-05-12 20:47:16 +04:00
|
|
|
memory_set: None,
|
|
|
|
page_table: None,
|
2018-04-27 19:10:39 +04:00
|
|
|
status: Status::Ready,
|
|
|
|
rsp,
|
2018-05-12 18:57:30 +04:00
|
|
|
is_user: false,
|
2018-04-27 19:10:39 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
/// Make the first kernel thread `initproc`
|
|
|
|
/// Should be called only once
|
|
|
|
pub fn new_init(mc: &mut MemoryController) -> Self {
|
|
|
|
assert_has_not_been_called!();
|
|
|
|
Process {
|
|
|
|
pid: 0,
|
|
|
|
name: "init",
|
|
|
|
kstack: mc.kernel_stack.take().unwrap(),
|
2018-05-12 20:47:16 +04:00
|
|
|
memory_set: None,
|
|
|
|
page_table: None,
|
2018-04-27 19:10:39 +04:00
|
|
|
status: Status::Running,
|
|
|
|
rsp: 0, // will be set at first schedule
|
2018-05-12 18:57:30 +04:00
|
|
|
is_user: false,
|
2018-04-27 19:10:39 +04:00
|
|
|
}
|
|
|
|
}
|
2018-04-28 06:40:31 +04:00
|
|
|
|
2018-05-11 20:22:00 +04:00
|
|
|
pub fn new_user(begin: usize, end: usize, mc: &mut MemoryController) -> Self {
|
2018-04-28 06:40:31 +04:00
|
|
|
let slice = unsafe{ slice::from_raw_parts(begin as *const u8, end - begin) };
|
|
|
|
let elf = ElfFile::new(slice).expect("failed to read elf");
|
2018-05-12 18:57:30 +04:00
|
|
|
let phys_start = PhysAddr::from_kernel_virtual(begin);
|
2018-05-12 20:47:16 +04:00
|
|
|
let mut memory_set = MemorySet::from((&elf, phys_start));
|
|
|
|
let page_table = mc.make_page_table(&mut memory_set);
|
|
|
|
debug!("{:#x?}", memory_set);
|
2018-05-12 18:57:30 +04:00
|
|
|
|
|
|
|
use xmas_elf::header::HeaderPt2;
|
|
|
|
let entry_addr = match elf.header.pt2 {
|
|
|
|
HeaderPt2::Header64(header) => header.entry_point,
|
|
|
|
_ => unimplemented!(),
|
|
|
|
} as usize;
|
|
|
|
|
|
|
|
let kstack = mc.alloc_stack(7).unwrap();
|
|
|
|
let tf = TrapFrame::new_user_thread(entry_addr, kstack.top());
|
|
|
|
let rsp = kstack.push_at_top(tf);
|
|
|
|
|
|
|
|
Process {
|
|
|
|
pid: 0,
|
|
|
|
name: "user",
|
|
|
|
kstack,
|
2018-05-12 20:47:16 +04:00
|
|
|
memory_set: Some(memory_set),
|
|
|
|
page_table: Some(page_table),
|
2018-05-12 18:57:30 +04:00
|
|
|
status: Status::Ready,
|
|
|
|
rsp,
|
|
|
|
is_user: true,
|
|
|
|
}
|
2018-04-28 06:40:31 +04:00
|
|
|
}
|
2018-05-11 20:22:00 +04:00
|
|
|
}
|
|
|
|
|
2018-05-12 18:57:30 +04:00
|
|
|
use memory::{MemorySet, MemoryArea, PhysAddr, FromToVirtualAddress, EntryFlags};
|
2018-05-11 20:22:00 +04:00
|
|
|
|
2018-05-12 18:57:30 +04:00
|
|
|
impl<'a> From<(&'a ElfFile<'a>, PhysAddr)> for MemorySet {
|
|
|
|
fn from(input: (&'a ElfFile<'a>, PhysAddr)) -> Self {
|
|
|
|
let (elf, phys_start) = input;
|
2018-05-12 07:45:31 +04:00
|
|
|
let mut set = MemorySet::new();
|
|
|
|
for ph in elf.program_iter() {
|
2018-05-12 18:57:30 +04:00
|
|
|
let ph = match ph {
|
|
|
|
ProgramHeader::Ph64(ph) => ph,
|
|
|
|
_ => unimplemented!(),
|
|
|
|
};
|
|
|
|
set.push(MemoryArea {
|
|
|
|
start_addr: ph.virtual_addr as usize,
|
|
|
|
end_addr: (ph.virtual_addr + ph.mem_size) as usize,
|
|
|
|
phys_start_addr: Some(PhysAddr(phys_start.get() as u64 + ph.offset)),
|
|
|
|
flags: EntryFlags::from(ph.flags).bits() as u32,
|
|
|
|
name: "",
|
|
|
|
mapped: false,
|
|
|
|
});
|
2018-05-11 20:22:00 +04:00
|
|
|
}
|
2018-05-12 07:45:31 +04:00
|
|
|
set
|
2018-05-11 20:22:00 +04:00
|
|
|
}
|
2018-05-12 18:57:30 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
impl From<Flags> for EntryFlags {
|
|
|
|
fn from(elf_flags: Flags) -> Self {
|
2018-05-12 20:47:16 +04:00
|
|
|
let mut flags = EntryFlags::PRESENT | EntryFlags::USER_ACCESSIBLE;
|
2018-05-12 18:57:30 +04:00
|
|
|
if elf_flags.is_write() {
|
|
|
|
flags = flags | EntryFlags::WRITABLE;
|
|
|
|
}
|
|
|
|
if !elf_flags.is_execute() {
|
|
|
|
flags = flags | EntryFlags::NO_EXECUTE;
|
|
|
|
}
|
|
|
|
flags
|
|
|
|
}
|
2018-04-27 19:10:39 +04:00
|
|
|
}
|