2019-02-22 10:10:24 +04:00
|
|
|
//! Syscalls for process
|
|
|
|
|
|
|
|
use super::*;
|
|
|
|
|
|
|
|
/// Fork the current process. Return the child's PID.
|
|
|
|
pub fn sys_fork(tf: &TrapFrame) -> SysResult {
|
|
|
|
let context = current_thread().fork(tf);
|
|
|
|
let pid = processor().manager().add(context, thread::current().id());
|
|
|
|
info!("fork: {} -> {}", thread::current().id(), pid);
|
|
|
|
Ok(pid as isize)
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Wait the process exit.
|
|
|
|
/// Return the PID. Store exit code to `code` if it's not null.
|
|
|
|
pub fn sys_wait(pid: usize, code: *mut i32) -> SysResult {
|
2019-03-07 19:32:47 +04:00
|
|
|
info!("wait: pid {} code {:?}", pid, code);
|
|
|
|
if !code.is_null() {
|
|
|
|
process().memory_set.check_mut_ptr(code)?;
|
|
|
|
}
|
2019-02-22 10:10:24 +04:00
|
|
|
loop {
|
|
|
|
use alloc::vec;
|
|
|
|
let wait_procs = match pid {
|
|
|
|
0 => processor().manager().get_children(thread::current().id()),
|
2019-03-07 19:32:47 +04:00
|
|
|
// check if pid is a child
|
|
|
|
_ => {
|
|
|
|
if processor().manager().get_children(thread::current().id()).iter()
|
|
|
|
.find(|p| **p == pid).is_some() {
|
|
|
|
vec![pid]
|
|
|
|
} else {
|
|
|
|
vec![]
|
|
|
|
}
|
|
|
|
}
|
2019-02-22 10:10:24 +04:00
|
|
|
};
|
|
|
|
if wait_procs.is_empty() {
|
2019-03-07 19:32:47 +04:00
|
|
|
return Err(SysError::ECHILD);
|
2019-02-22 10:10:24 +04:00
|
|
|
}
|
2019-03-07 19:32:47 +04:00
|
|
|
|
2019-02-22 10:10:24 +04:00
|
|
|
for pid in wait_procs {
|
|
|
|
match processor().manager().get_status(pid) {
|
|
|
|
Some(Status::Exited(exit_code)) => {
|
|
|
|
if !code.is_null() {
|
|
|
|
unsafe { code.write(exit_code as i32); }
|
|
|
|
}
|
|
|
|
processor().manager().remove(pid);
|
|
|
|
info!("wait: {} -> {}", thread::current().id(), pid);
|
2019-03-07 19:32:47 +04:00
|
|
|
return Ok(pid as isize);
|
2019-02-22 10:10:24 +04:00
|
|
|
}
|
|
|
|
None => return Ok(-1),
|
|
|
|
_ => {}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
info!("wait: {} -> {}, sleep", thread::current().id(), pid);
|
|
|
|
if pid == 0 {
|
|
|
|
processor().manager().wait_child(thread::current().id());
|
|
|
|
processor().yield_now();
|
|
|
|
} else {
|
|
|
|
processor().manager().wait(thread::current().id(), pid);
|
|
|
|
processor().yield_now();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-03-07 10:21:26 +04:00
|
|
|
pub fn sys_exec(name: *const u8, argv: *const *const u8, envp: *const *const u8, tf: &mut TrapFrame) -> SysResult {
|
|
|
|
info!("exec: name: {:?}, argv: {:?} envp: {:?}", name, argv, envp);
|
2019-03-02 15:09:39 +04:00
|
|
|
let proc = process();
|
|
|
|
let name = if name.is_null() { String::from("") } else {
|
2019-03-02 21:27:30 +04:00
|
|
|
unsafe { proc.memory_set.check_and_clone_cstr(name)? }
|
2019-02-22 10:10:24 +04:00
|
|
|
};
|
2019-03-07 10:21:26 +04:00
|
|
|
|
|
|
|
if argv.is_null() {
|
2019-02-28 06:59:52 +04:00
|
|
|
return Err(SysError::EINVAL);
|
2019-02-22 10:10:24 +04:00
|
|
|
}
|
2019-03-02 15:09:39 +04:00
|
|
|
// Check and copy args to kernel
|
|
|
|
let mut args = Vec::new();
|
|
|
|
unsafe {
|
2019-03-07 10:21:26 +04:00
|
|
|
let mut current_argv = argv as *const *const u8;
|
|
|
|
while !(*current_argv).is_null() {
|
|
|
|
let arg = proc.memory_set.check_and_clone_cstr(*current_argv)?;
|
2019-03-02 15:09:39 +04:00
|
|
|
args.push(arg);
|
2019-03-07 10:21:26 +04:00
|
|
|
current_argv = current_argv.add(1);
|
2019-03-02 15:09:39 +04:00
|
|
|
}
|
|
|
|
}
|
2019-03-07 10:21:26 +04:00
|
|
|
info!("exec: args {:?}", args);
|
2019-03-02 15:09:39 +04:00
|
|
|
|
2019-02-22 10:10:24 +04:00
|
|
|
// Read program file
|
|
|
|
let path = args[0].as_str();
|
|
|
|
let inode = crate::fs::ROOT_INODE.lookup(path)?;
|
2019-02-22 13:10:07 +04:00
|
|
|
let size = inode.metadata()?.size;
|
2019-02-22 10:10:24 +04:00
|
|
|
let mut buf = Vec::with_capacity(size);
|
|
|
|
unsafe { buf.set_len(size); }
|
|
|
|
inode.read_at(0, buf.as_mut_slice())?;
|
|
|
|
|
|
|
|
// Make new Thread
|
|
|
|
let iter = args.iter().map(|s| s.as_str());
|
|
|
|
let mut thread = Thread::new_user(buf.as_slice(), iter);
|
2019-03-07 10:21:26 +04:00
|
|
|
thread.proc.lock().files = proc.files.clone();
|
|
|
|
thread.proc.lock().cwd = proc.cwd.clone();
|
2019-02-22 10:10:24 +04:00
|
|
|
|
|
|
|
// Activate new page table
|
|
|
|
unsafe { thread.proc.lock().memory_set.activate(); }
|
|
|
|
|
|
|
|
// Modify the TrapFrame
|
|
|
|
*tf = unsafe { thread.context.get_init_tf() };
|
|
|
|
|
|
|
|
// Swap Context but keep KStack
|
|
|
|
::core::mem::swap(&mut current_thread().kstack, &mut thread.kstack);
|
|
|
|
::core::mem::swap(current_thread(), &mut *thread);
|
|
|
|
|
|
|
|
Ok(0)
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn sys_yield() -> SysResult {
|
|
|
|
thread::yield_now();
|
|
|
|
Ok(0)
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Kill the process
|
|
|
|
pub fn sys_kill(pid: usize) -> SysResult {
|
|
|
|
info!("{} killed: {}", thread::current().id(), pid);
|
|
|
|
processor().manager().exit(pid, 0x100);
|
|
|
|
if pid == thread::current().id() {
|
|
|
|
processor().yield_now();
|
|
|
|
}
|
|
|
|
Ok(0)
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Get the current process id
|
|
|
|
pub fn sys_getpid() -> SysResult {
|
|
|
|
Ok(thread::current().id() as isize)
|
|
|
|
}
|
|
|
|
|
2019-03-07 19:04:52 +04:00
|
|
|
/// Get the current thread id
|
|
|
|
pub fn sys_gettid() -> SysResult {
|
|
|
|
// use pid as tid for now
|
|
|
|
Ok(thread::current().id() as isize)
|
|
|
|
}
|
|
|
|
|
2019-03-02 15:09:39 +04:00
|
|
|
/// Get the parent process id
|
|
|
|
pub fn sys_getppid() -> SysResult {
|
|
|
|
let pid = thread::current().id();
|
|
|
|
let ppid = processor().manager().get_parent(pid);
|
|
|
|
Ok(ppid as isize)
|
|
|
|
}
|
|
|
|
|
2019-02-22 10:10:24 +04:00
|
|
|
/// Exit the current process
|
2019-02-27 20:15:33 +04:00
|
|
|
pub fn sys_exit(exit_code: isize) -> ! {
|
2019-02-22 10:10:24 +04:00
|
|
|
let pid = thread::current().id();
|
|
|
|
info!("exit: {}, code: {}", pid, exit_code);
|
2019-03-07 10:55:31 +04:00
|
|
|
|
|
|
|
// close all files.
|
|
|
|
// TODO: close them in all possible ways a process can exit
|
|
|
|
let mut proc = process();
|
|
|
|
let fds: Vec<usize> = proc.files.keys().cloned().collect();
|
|
|
|
for fd in fds.into_iter() {
|
2019-03-07 15:31:46 +04:00
|
|
|
sys_close_internal(&mut proc, fd).unwrap();
|
2019-03-07 10:55:31 +04:00
|
|
|
}
|
|
|
|
drop(proc);
|
|
|
|
|
2019-02-22 10:10:24 +04:00
|
|
|
processor().manager().exit(pid, exit_code as usize);
|
|
|
|
processor().yield_now();
|
|
|
|
unreachable!();
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn sys_sleep(time: usize) -> SysResult {
|
2019-03-08 10:22:00 +04:00
|
|
|
info!("sleep: time: {}", time);
|
2019-02-22 10:10:24 +04:00
|
|
|
if time >= 1 << 31 {
|
|
|
|
thread::park();
|
|
|
|
} else {
|
|
|
|
use core::time::Duration;
|
|
|
|
thread::sleep(Duration::from_millis(time as u64 * 10));
|
|
|
|
}
|
|
|
|
Ok(0)
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn sys_set_priority(priority: usize) -> SysResult {
|
|
|
|
let pid = thread::current().id();
|
|
|
|
processor().manager().set_priority(pid, priority as u8);
|
|
|
|
Ok(0)
|
|
|
|
}
|