Struct yash_env::system::virtual::VirtualSystem

source ·
pub struct VirtualSystem {
    pub state: Rc<RefCell<SystemState>>,
    pub process_id: Pid,
}
Expand description

Simulated system.

See the module-level documentation to grasp a basic understanding of VirtualSystem.

A VirtualSystem instance has two members: state and process_id. The former is a SystemState that effectively contains the state of the system. The state is contained in Rc so that processes can share the same state. The latter is a process ID that identifies a process calling the System interface.

When you clone a virtual system, the clone will have the same process_id as the original. To simulate the fork system call, you would probably want to assign a new process ID and add a new Process to the system state.

Fields§

§state: Rc<RefCell<SystemState>>

State of the system.

§process_id: Pid

Process ID of the process that is interacting with the system.

Implementations§

source§

impl VirtualSystem

source

pub fn new() -> VirtualSystem

Creates a virtual system with an almost empty state.

The process_id of the returned VirtualSystem will be 2. (Process ID 1 has special meaning in some system calls, so we don’t use it as a default value.)

The state of the returned VirtualSystem will have a Process with process ID 2 in the process set (SystemState::processes). The file system will contain files named /dev/stdin, /dev/stdout, and /dev/stderr that are opened in the process with file descriptor 0, 1, and 2, respectively. The file system also contains an empty directory /tmp.

source

pub fn current_process(&self) -> Ref<'_, Process>

Finds the current process from the system state.

§Panics

This function will panic if it cannot find a process having self.process_id.

source

pub fn current_process_mut(&mut self) -> RefMut<'_, Process>

Finds the current process from the system state.

§Panics

This function will panic if it cannot find a process having self.process_id.

source

pub fn with_open_file_description<F, R>(&self, fd: Fd, f: F) -> Result<R>

Calls the given closure passing the open file description for the FD.

Returns Err(Errno::EBADF) if the FD is not open.

source

pub fn with_open_file_description_mut<F, R>( &mut self, fd: Fd, f: F ) -> Result<R>
where F: FnOnce(&mut OpenFileDescription) -> Result<R>,

Calls the given closure passing the open file description for the FD.

Returns Err(Errno::EBADF) if the FD is not open.

Trait Implementations§

source§

impl Clone for VirtualSystem

source§

fn clone(&self) -> VirtualSystem

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for VirtualSystem

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Default for VirtualSystem

source§

fn default() -> Self

Returns the “default value” for a type. Read more
source§

impl System for VirtualSystem

source§

fn fstat(&self, fd: Fd) -> Result<FileStat>

Retrieves metadata of a file.

The current implementation fills only the following values of the returned FileStat:

  • st_mode
  • st_size
  • st_dev (always 1)
  • st_ino (computed from the address of INode)
source§

fn fstatat(&self, dir_fd: Fd, path: &CStr, flags: AtFlags) -> Result<FileStat>

Retrieves metadata of a file.

The current implementation fills only the following values of the returned FileStat:

  • st_mode
  • st_size
  • st_dev (always 1)
  • st_ino (computed from the address of INode)
source§

fn is_executable_file(&self, path: &CStr) -> bool

Tests whether the specified file is executable or not.

The current implementation only checks if the file has any executable bit in the permissions. The file owner and group are not considered.

source§

fn fcntl_setfl(&mut self, _fd: Fd, _flags: OFlag) -> Result<()>

Current implementation does nothing but return Ok(()).

source§

fn now(&self) -> Instant

Returns now in SystemState.

Panics if it is None.

source§

fn times(&self) -> Result<Times>

Returns times in SystemState.

source§

fn kill( &mut self, target: Pid, signal: Option<Signal> ) -> Pin<Box<dyn Future<Output = Result<()>>>>

Sends a signal to the target process.

This function returns a future that enables the executor to block the calling thread until the current process is ready to proceed. If the signal is sent to the current process and it causes the process to stop, the future will be ready only when the process is resumed. Similarly, if the signal causes the current process to terminate, the future will never be ready.

source§

fn select( &mut self, readers: &mut FdSet, writers: &mut FdSet, timeout: Option<&TimeSpec>, signal_mask: Option<&SigSet> ) -> Result<c_int>

Waits for a next event.

The VirtualSystem implementation for this method does not actually block the calling thread. The method returns immediately in any case.

The timeout is ignored if this function returns because of a ready FD or a caught signal. Otherwise, the timeout is added to SystemState::now, which must not be None then.

source§

fn setpgid(&mut self, pid: Pid, pgid: Pid) -> Result<()>

Modifies the process group ID of a process.

The current implementation does not yet support the concept of sessions.

source§

fn tcgetpgrp(&self, fd: Fd) -> Result<Pid>

Returns the current foreground process group ID.

The current implementation does not yet support the concept of controlling terminals and sessions. It accepts any open file descriptor.

source§

fn tcsetpgrp(&mut self, fd: Fd, pgid: Pid) -> Result<()>

Switches the foreground process.

The current implementation does not yet support the concept of controlling terminals and sessions. It accepts any open file descriptor.

source§

fn new_child_process(&mut self) -> Result<ChildProcessStarter>

Creates a new child process.

This implementation does not create any real child process. Instead, it returns a child process starter that runs its task concurrently in the same process.

To run the concurrent task, this function needs an executor that has been set in the system state. If the system state does not have an executor, this function fails with Errno::ENOSYS.

The process ID of the child will be the maximum of existing process IDs plus 1. If there are no other processes, it will be 2.

source§

fn wait(&mut self, target: Pid) -> Result<Option<(Pid, ProcessState)>>

Waits for a child.

TODO: Currently, this function only supports target == -1 || target > 0.

source§

fn execve( &mut self, path: &CStr, args: &[CString], envs: &[CString] ) -> Result<Infallible>

Stub for the execve system call.

The execve system call cannot be simulated in the userland. This function returns ENOSYS if the file at path is a native executable, ENOEXEC if a non-executable file, and ENOENT otherwise.

source§

fn chdir(&mut self, path: &CStr) -> Result<()>

Changes the current working directory.

The current implementation does not canonicalize “.”, “..”, or symbolic links in the new path set to the process.

source§

fn confstr_path(&self) -> Result<OsString>

Returns the standard path for the system.

This function returns the value of SystemState::path. If it is empty, it returns the ENOSYS error.

source§

fn is_directory(&self, path: &CStr) -> bool

Whether there is a directory at the specified path.
source§

fn pipe(&mut self) -> Result<(Fd, Fd)>

Creates an unnamed pipe. Read more
source§

fn dup(&mut self, from: Fd, to_min: Fd, flags: FdFlag) -> Result<Fd>

Duplicates a file descriptor. Read more
source§

fn dup2(&mut self, from: Fd, to: Fd) -> Result<Fd>

Duplicates a file descriptor. Read more
source§

fn open(&mut self, path: &CStr, option: OFlag, mode: Mode) -> Result<Fd>

Opens a file descriptor. Read more
source§

fn open_tmpfile(&mut self, _parent_dir: &Path) -> Result<Fd>

Opens a file descriptor associated with an anonymous temporary file. Read more
source§

fn close(&mut self, fd: Fd) -> Result<()>

Closes a file descriptor. Read more
source§

fn fcntl_getfl(&self, fd: Fd) -> Result<OFlag>

Returns the file status flags for the open file description. Read more
source§

fn fcntl_getfd(&self, fd: Fd) -> Result<FdFlag>

Returns the attributes for the file descriptor. Read more
source§

fn fcntl_setfd(&mut self, fd: Fd, flags: FdFlag) -> Result<()>

Sets attributes for the file descriptor. Read more
source§

fn isatty(&self, _fd: Fd) -> Result<bool>

Tests if a file descriptor is associated with a terminal device.
source§

fn read(&mut self, fd: Fd, buffer: &mut [u8]) -> Result<usize>

Reads from the file descriptor. Read more
source§

fn write(&mut self, fd: Fd, buffer: &[u8]) -> Result<usize>

Writes to the file descriptor. Read more
source§

fn lseek(&mut self, fd: Fd, position: SeekFrom) -> Result<u64>

Moves the position of the open file description.
source§

fn fdopendir(&mut self, fd: Fd) -> Result<Box<dyn Dir>>

Opens a directory for enumerating entries.
source§

fn opendir(&mut self, path: &CStr) -> Result<Box<dyn Dir>>

Opens a directory for enumerating entries.
source§

fn umask(&mut self, mask: Mode) -> Mode

Gets and sets the file creation mode mask. Read more
source§

fn sigmask( &mut self, how: SigmaskHow, set: Option<&SigSet>, oldset: Option<&mut SigSet> ) -> Result<()>

Gets and/or sets the signal blocking mask. Read more
source§

fn sigaction( &mut self, signal: Signal, action: SignalHandling ) -> Result<SignalHandling>

Gets and sets the handler for a signal. Read more
source§

fn caught_signals(&mut self) -> Vec<Signal>

Returns signals this process has caught, if any. Read more
source§

fn getpid(&self) -> Pid

Returns the process ID of the current process.
source§

fn getppid(&self) -> Pid

Returns the process ID of the parent process.
source§

fn getpgrp(&self) -> Pid

Returns the process group ID of the current process.
source§

fn getcwd(&self) -> Result<PathBuf>

Returns the current working directory path.
source§

fn getpwnam_dir(&self, name: &str) -> Result<Option<PathBuf>>

Returns the home directory path of the given user. Read more
source§

fn getrlimit(&self, resource: Resource) -> Result<LimitPair>

Returns the limits for the specified resource. Read more
source§

fn setrlimit(&mut self, resource: Resource, limits: LimitPair) -> Result<()>

Sets the limits for the specified resource. Read more

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> IntoEither for T

source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
source§

impl<T> SystemEx for T
where T: System + ?Sized,

source§

fn move_fd_internal(&mut self, from: Fd) -> Result<Fd>

Moves a file descriptor to MIN_INTERNAL_FD or larger. Read more
source§

fn tcsetpgrp_with_block(&mut self, fd: Fd, pgid: Pid) -> Result<()>

Switches the foreground process group with SIGTTOU blocked. Read more
source§

fn tcsetpgrp_without_block(&mut self, fd: Fd, pgid: Pid) -> Result<()>

Switches the foreground process group with the default SIGTTOU settings. Read more
source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.