mirror of
https://github.com/asterinas/asterinas.git
synced 2025-06-18 03:56:42 +00:00
121 lines
3.9 KiB
Rust
121 lines
3.9 KiB
Rust
// SPDX-License-Identifier: MPL-2.0
|
|
|
|
use super::SyscallReturn;
|
|
use crate::{
|
|
prelude::*,
|
|
process::{posix_thread::MAX_THREAD_NAME_LEN, signal::sig_num::SigNum},
|
|
};
|
|
|
|
pub fn sys_prctl(
|
|
option: i32,
|
|
arg2: u64,
|
|
arg3: u64,
|
|
arg4: u64,
|
|
arg5: u64,
|
|
ctx: &Context,
|
|
) -> Result<SyscallReturn> {
|
|
let prctl_cmd = PrctlCmd::from_args(option, arg2, arg3, arg4, arg5)?;
|
|
debug!("prctl cmd = {:x?}", prctl_cmd);
|
|
match prctl_cmd {
|
|
PrctlCmd::PR_SET_PDEATHSIG(signum) => {
|
|
ctx.process.set_parent_death_signal(signum);
|
|
}
|
|
PrctlCmd::PR_GET_PDEATHSIG(write_to_addr) => {
|
|
let write_val = {
|
|
match ctx.process.parent_death_signal() {
|
|
None => 0i32,
|
|
Some(signum) => signum.as_u8() as i32,
|
|
}
|
|
};
|
|
|
|
CurrentUserSpace::get().write_val(write_to_addr, &write_val)?;
|
|
}
|
|
PrctlCmd::PR_GET_DUMPABLE => {
|
|
// TODO: when coredump is supported, return the actual value
|
|
return Ok(SyscallReturn::Return(Dumpable::Disable as _));
|
|
}
|
|
PrctlCmd::PR_SET_DUMPABLE(dumpable) => {
|
|
if dumpable != Dumpable::Disable && dumpable != Dumpable::User {
|
|
return_errno!(Errno::EINVAL)
|
|
}
|
|
|
|
// TODO: implement coredump
|
|
}
|
|
PrctlCmd::PR_GET_NAME(write_to_addr) => {
|
|
let thread_name = ctx.posix_thread.thread_name().lock();
|
|
if let Some(thread_name) = &*thread_name {
|
|
if let Some(thread_name) = thread_name.name()? {
|
|
CurrentUserSpace::get().write_bytes(
|
|
write_to_addr,
|
|
&mut VmReader::from(thread_name.to_bytes_with_nul()),
|
|
)?;
|
|
}
|
|
}
|
|
}
|
|
PrctlCmd::PR_SET_NAME(read_addr) => {
|
|
let mut thread_name = ctx.posix_thread.thread_name().lock();
|
|
if let Some(thread_name) = &mut *thread_name {
|
|
let new_thread_name =
|
|
CurrentUserSpace::get().read_cstring(read_addr, MAX_THREAD_NAME_LEN)?;
|
|
thread_name.set_name(&new_thread_name)?;
|
|
}
|
|
}
|
|
_ => todo!(),
|
|
}
|
|
Ok(SyscallReturn::Return(0))
|
|
}
|
|
|
|
const PR_SET_PDEATHSIG: i32 = 1;
|
|
const PR_GET_PDEATHSIG: i32 = 2;
|
|
const PR_GET_DUMPABLE: i32 = 3;
|
|
const PR_SET_DUMPABLE: i32 = 4;
|
|
const PR_SET_NAME: i32 = 15;
|
|
const PR_GET_NAME: i32 = 16;
|
|
const PR_SET_TIMERSLACK: i32 = 29;
|
|
const PR_GET_TIMERSLACK: i32 = 30;
|
|
|
|
#[allow(non_camel_case_types)]
|
|
#[derive(Debug, Clone, Copy)]
|
|
pub enum PrctlCmd {
|
|
PR_SET_PDEATHSIG(SigNum),
|
|
PR_GET_PDEATHSIG(Vaddr),
|
|
PR_SET_NAME(Vaddr),
|
|
PR_GET_NAME(Vaddr),
|
|
#[allow(dead_code)]
|
|
PR_SET_TIMERSLACK(u64),
|
|
#[allow(dead_code)]
|
|
PR_GET_TIMERSLACK,
|
|
PR_SET_DUMPABLE(Dumpable),
|
|
PR_GET_DUMPABLE,
|
|
}
|
|
|
|
#[repr(u64)]
|
|
#[derive(Debug, Clone, Copy, PartialEq, Eq, TryFromInt)]
|
|
pub enum Dumpable {
|
|
Disable = 0, /* No setuid dumping */
|
|
User = 1, /* Dump as user of process */
|
|
Root = 2, /* Dump as root */
|
|
}
|
|
|
|
impl PrctlCmd {
|
|
fn from_args(option: i32, arg2: u64, _arg3: u64, _arg4: u64, _arg5: u64) -> Result<PrctlCmd> {
|
|
match option {
|
|
PR_SET_PDEATHSIG => {
|
|
let signum = SigNum::try_from(arg2 as u8)?;
|
|
Ok(PrctlCmd::PR_SET_PDEATHSIG(signum))
|
|
}
|
|
PR_GET_PDEATHSIG => Ok(PrctlCmd::PR_GET_PDEATHSIG(arg2 as _)),
|
|
PR_GET_DUMPABLE => Ok(PrctlCmd::PR_GET_DUMPABLE),
|
|
PR_SET_DUMPABLE => Ok(PrctlCmd::PR_SET_DUMPABLE(Dumpable::try_from(arg2)?)),
|
|
PR_SET_NAME => Ok(PrctlCmd::PR_SET_NAME(arg2 as _)),
|
|
PR_GET_NAME => Ok(PrctlCmd::PR_GET_NAME(arg2 as _)),
|
|
PR_GET_TIMERSLACK => todo!(),
|
|
PR_SET_TIMERSLACK => todo!(),
|
|
_ => {
|
|
debug!("prctl cmd number: {}", option);
|
|
return_errno_with_message!(Errno::EINVAL, "unsupported prctl command");
|
|
}
|
|
}
|
|
}
|
|
}
|