1
0
mirror of https://github.com/rcore-os/rCore.git synced 2024-11-27 02:03:29 +04:00
rCore/kernel/src/syscall.rs

155 lines
4.0 KiB
Rust
Raw Normal View History

2018-05-21 12:30:30 +04:00
//! 系统调用解析执行模块
2018-06-03 19:05:43 +04:00
#![allow(unused)]
2018-05-12 23:41:41 +04:00
use arch::interrupt::TrapFrame;
2018-05-21 12:30:30 +04:00
use process::*;
2018-05-31 16:26:25 +04:00
use thread;
2018-05-21 12:30:30 +04:00
use util;
2018-05-12 23:41:41 +04:00
2018-05-21 12:30:30 +04:00
/// 系统调用入口点
///
/// 当发生系统调用中断时,中断服务例程将控制权转移到这里。
2018-07-14 08:28:55 +04:00
pub fn syscall(id: usize, args: [usize; 6], tf: &TrapFrame) -> i32 {
2018-05-12 23:41:41 +04:00
match id {
2018-07-14 08:28:55 +04:00
SYS_WRITE => sys_write(args[0], args[1] as *const u8, args[2]),
SYS_OPEN => sys_open(args[0] as *const u8, args[1]),
SYS_CLOSE => sys_close(args[0]),
SYS_WAIT => sys_wait(args[0], args[1] as *mut i32),
SYS_FORK => sys_fork(tf),
SYS_KILL => sys_kill(args[0]),
SYS_EXIT => sys_exit(args[0]),
SYS_YIELD => sys_yield(),
SYS_GETPID => sys_getpid(),
SYS_SLEEP => sys_sleep(args[0]),
SYS_GETTIME => sys_get_time(),
SYS_LAB6_SET_PRIORITY => sys_lab6_set_priority(args[0]),
SYS_PUTC => sys_putc(args[0] as u8 as char),
2018-05-12 23:41:41 +04:00
_ => {
2018-05-19 20:22:52 +04:00
error!("unknown syscall {:#x?}", id);
2018-05-12 23:41:41 +04:00
-1
2018-05-19 20:22:52 +04:00
}
2018-05-12 23:41:41 +04:00
}
}
2018-05-21 12:30:30 +04:00
fn sys_write(fd: usize, base: *const u8, len: usize) -> i32 {
info!("write: fd: {}, base: {:?}, len: {:#x}", fd, base, len);
use core::slice;
use core::str;
let slice = unsafe { slice::from_raw_parts(base, len) };
print!("{}", str::from_utf8(slice).unwrap());
0
}
fn sys_open(path: *const u8, flags: usize) -> i32 {
let path = unsafe { util::from_cstr(path) };
info!("open: path: {:?}, flags: {:?}", path, flags);
match path {
"stdin:" => 0,
"stdout:" => 1,
_ => -1,
}
}
fn sys_close(fd: usize) -> i32 {
info!("close: fd: {:?}", fd);
0
}
/// Fork the current process. Return the child's PID.
fn sys_fork(tf: &TrapFrame) -> i32 {
let mut processor = PROCESSOR.try().unwrap().lock();
let new = processor.current().fork(tf);
2018-05-21 12:30:30 +04:00
let pid = processor.add(new);
info!("fork: {} -> {}", processor.current_pid(), pid);
pid as i32
}
/// Wait the process exit.
/// Return the PID. Store exit code to `code` if it's not null.
fn sys_wait(pid: usize, code: *mut i32) -> i32 {
2018-05-21 12:30:30 +04:00
let mut processor = PROCESSOR.try().unwrap().lock();
match processor.current_wait_for(pid) {
WaitResult::Ok(pid, error_code) => {
if !code.is_null() {
unsafe { *code = error_code as i32 };
}
0
2018-07-14 08:28:55 +04:00
}
2018-05-21 12:30:30 +04:00
WaitResult::NotExist => -1,
}
}
fn sys_yield() -> i32 {
2018-05-31 16:26:25 +04:00
thread::yield_now();
2018-05-21 12:30:30 +04:00
0
}
/// Kill the process
fn sys_kill(pid: usize) -> i32 {
PROCESSOR.try().unwrap().lock().kill(pid);
0
}
/// Get the current process id
fn sys_getpid() -> i32 {
2018-05-31 16:26:25 +04:00
thread::current().id() as i32
2018-05-21 12:30:30 +04:00
}
/// Exit the current process
fn sys_exit(error_code: usize) -> i32 {
2018-05-21 12:30:30 +04:00
let mut processor = PROCESSOR.try().unwrap().lock();
let pid = processor.current_pid();
processor.exit(pid, error_code);
0
}
fn sys_sleep(time: usize) -> i32 {
use core::time::Duration;
thread::sleep(Duration::from_millis(time as u64 * 10));
2018-05-21 12:30:30 +04:00
0
}
fn sys_get_time() -> i32 {
let processor = PROCESSOR.try().unwrap().lock();
processor.get_time() as i32
}
fn sys_lab6_set_priority(priority: usize) -> i32 {
let mut processor = PROCESSOR.try().unwrap().lock();
processor.lab6_set_priority(priority as u8);
0
}
2018-07-14 08:28:55 +04:00
fn sys_putc(c: char) -> i32 {
print!("{}", c);
0
2018-05-17 18:15:26 +04:00
}
2018-07-14 08:28:55 +04:00
const SYS_EXIT: usize = 1;
const SYS_FORK: usize = 2;
2018-05-12 23:41:41 +04:00
const SYS_WAIT: usize = 3;
2018-07-14 08:28:55 +04:00
const SYS_EXEC: usize = 4;
const SYS_CLONE: usize = 5;
const SYS_YIELD: usize = 10;
const SYS_SLEEP: usize = 11;
const SYS_KILL: usize = 12;
const SYS_GETTIME: usize = 17;
const SYS_GETPID: usize = 18;
const SYS_MMAP: usize = 20;
const SYS_MUNMAP: usize = 21;
const SYS_SHMEM: usize = 22;
const SYS_PUTC: usize = 30;
const SYS_PGDIR: usize = 31;
const SYS_OPEN: usize = 100;
const SYS_CLOSE: usize = 101;
const SYS_READ: usize = 102;
const SYS_WRITE: usize = 103;
const SYS_SEEK: usize = 104;
const SYS_FSTAT: usize = 110;
const SYS_FSYNC: usize = 111;
const SYS_GETCWD: usize = 121;
const SYS_GETDIRENTRY: usize = 128;
const SYS_DUP: usize = 130;
const SYS_LAB6_SET_PRIORITY: usize = 255;