mirror of
https://github.com/rcore-os/rCore-Tutorial-v3.git
synced 2024-11-30 05:13:34 +04:00
94 lines
2.2 KiB
Rust
94 lines
2.2 KiB
Rust
use core::arch::asm;
|
|
|
|
const SYSCALL_DUP: usize = 24;
|
|
const SYSCALL_OPEN: usize = 56;
|
|
const SYSCALL_CLOSE: usize = 57;
|
|
const SYSCALL_PIPE: usize = 59;
|
|
const SYSCALL_READ: usize = 63;
|
|
const SYSCALL_WRITE: usize = 64;
|
|
const SYSCALL_EXIT: usize = 93;
|
|
const SYSCALL_YIELD: usize = 124;
|
|
const SYSCALL_KILL: usize = 129;
|
|
const SYSCALL_GET_TIME: usize = 169;
|
|
const SYSCALL_GETPID: usize = 172;
|
|
const SYSCALL_FORK: usize = 220;
|
|
const SYSCALL_EXEC: usize = 221;
|
|
const SYSCALL_WAITPID: usize = 260;
|
|
|
|
fn syscall(id: usize, args: [usize; 3]) -> isize {
|
|
let mut ret: isize;
|
|
unsafe {
|
|
asm!(
|
|
"ecall",
|
|
inlateout("x10") args[0] => ret,
|
|
in("x11") args[1],
|
|
in("x12") args[2],
|
|
in("x17") id
|
|
);
|
|
}
|
|
ret
|
|
}
|
|
|
|
pub fn sys_dup(fd: usize) -> isize {
|
|
syscall(SYSCALL_DUP, [fd, 0, 0])
|
|
}
|
|
|
|
pub fn sys_open(path: &str, flags: u32) -> isize {
|
|
syscall(SYSCALL_OPEN, [path.as_ptr() as usize, flags as usize, 0])
|
|
}
|
|
|
|
pub fn sys_close(fd: usize) -> isize {
|
|
syscall(SYSCALL_CLOSE, [fd, 0, 0])
|
|
}
|
|
|
|
pub fn sys_pipe(pipe: &mut [usize]) -> isize {
|
|
syscall(SYSCALL_PIPE, [pipe.as_mut_ptr() as usize, 0, 0])
|
|
}
|
|
|
|
pub fn sys_read(fd: usize, buffer: &mut [u8]) -> isize {
|
|
syscall(
|
|
SYSCALL_READ,
|
|
[fd, buffer.as_mut_ptr() as usize, buffer.len()],
|
|
)
|
|
}
|
|
|
|
pub fn sys_write(fd: usize, buffer: &[u8]) -> isize {
|
|
syscall(SYSCALL_WRITE, [fd, buffer.as_ptr() as usize, buffer.len()])
|
|
}
|
|
|
|
pub fn sys_exit(exit_code: i32) -> ! {
|
|
syscall(SYSCALL_EXIT, [exit_code as usize, 0, 0]);
|
|
panic!("sys_exit never returns!");
|
|
}
|
|
|
|
pub fn sys_yield() -> isize {
|
|
syscall(SYSCALL_YIELD, [0, 0, 0])
|
|
}
|
|
|
|
pub fn sys_kill(pid: usize, signal: i32) -> isize {
|
|
syscall(SYSCALL_KILL, [pid, signal as usize, 0])
|
|
}
|
|
|
|
pub fn sys_get_time() -> isize {
|
|
syscall(SYSCALL_GET_TIME, [0, 0, 0])
|
|
}
|
|
|
|
pub fn sys_getpid() -> isize {
|
|
syscall(SYSCALL_GETPID, [0, 0, 0])
|
|
}
|
|
|
|
pub fn sys_fork() -> isize {
|
|
syscall(SYSCALL_FORK, [0, 0, 0])
|
|
}
|
|
|
|
pub fn sys_exec(path: &str, args: &[*const u8]) -> isize {
|
|
syscall(
|
|
SYSCALL_EXEC,
|
|
[path.as_ptr() as usize, args.as_ptr() as usize, 0],
|
|
)
|
|
}
|
|
|
|
pub fn sys_waitpid(pid: isize, exit_code: *mut i32) -> isize {
|
|
syscall(SYSCALL_WAITPID, [pid as usize, exit_code as usize, 0])
|
|
}
|