7#include <linux/sched.h>
11#include <cosmos/BitMask.hxx>
12#include <cosmos/proc/PidFD.hxx>
13#include <cosmos/proc/types.hxx>
14#include <cosmos/utils.hxx>
57using CloneFlags = BitMask<CloneFlag>;
76 this->flags = p_flags.
raw();
79 void setPidFD(
PidFD &fd) {
80 this->pidfd =
reinterpret_cast<uintptr_t
>(&fd.m_fd);
83 void setChildTID(ThreadID *tid) {
84 this->child_tid =
reinterpret_cast<uint64_t
>(tid);
88 this->parent_tid =
reinterpret_cast<uint64_t
>(pid);
99 this->exit_signal =
static_cast<uint64_t
>(to_integral(sig.
raw()));
109 this->stack =
reinterpret_cast<uint64_t
>(p_stack);
124 void setTIDs(
const ThreadID *tids,
size_t num_tids) {
125 this->set_tid =
reinterpret_cast<uint64_t
>(tids);
126 this->set_tid_size = num_tids;
134 this->cgroup =
static_cast<uint64_t
>(fd.
raw());
162COSMOS_API std::optional<ProcessID> clone(
const CloneArgs &args);
A typesafe bit mask representation using class enums.
EnumBaseType raw() const
Returns the raw bitfield integer.
Thin Wrapper around OS file descriptors.
FileNum raw() const
Returns the primitive file descriptor contained in the object.
A specialized FileDescriptor for pidfds.
Represents a POSIX signal number and offers a minimal API around it.
SignalNr raw() const
Returns the primitive signal number stored in this object.
@ CHILD_SETTID
Store the child's thread ID in the child_tid CloneArgs member in child's memory before the child runs...
@ CHILD_CLEARTID
Clear the child_tid CloneArgs member in child's memory when the child exits, used by threading librar...
@ VFORK
The calling process is suspended until the child calls execve() or _exit(), see vfork(); should not b...
@ SETTLS
The TLS descriptor is set to the tls member of CloneArgs (architecture dependent meaning).
@ DETACHED
Historical, should not be used.
@ NEW_IPC
Create the child in a new IPC namespace (requires CAP_SYS_ADMIN).
@ SHARE_SYSVSEM
Parent and child share a single list of semaphore adjustment values.
@ PTRACE
If the current process is being traced then the child will also be traced.
@ NEW_NET
Create the child in a new network namespace (requires CAP_SYS_ADMIN).
@ SHARE_VM
Parent and child share the same address space and thus observe the same memory writes and mappings/un...
@ NEW_CGROUP
Create the child in a new cgroup namespace (requires CAP_SYS_ADMIN).
@ THREAD
The child shares the same thread group as the parent. Thread groups are used to implement thread sema...
@ NEW_UTS
Create the child in a new UTS namespace (requires CAP_SYS_ADMIN).
@ CLEAR_SIGHAND
Reset all signal handling dispositions to their defaults in the child.
@ NEW_USER
Create the child in a new user namespace.
@ SHARE_FILES
Share the file descriptor table between parent and child.
@ SHARE_PARENT
Make the caller's parent also the child's parent.
@ INTO_CGROUP
Place the child into a different version 2 cgroup, according to the cgroup field file descriptor in C...
@ NEW_PID
Create the child in a new PID namespace (requires CAP_SYS_ADMIN).
@ NEW_MOUNT
Create the child in a new mount namespace (requires CAP_SYS_ADMIN).
@ SIGHAND
Parent and child share the same table of signal handlers. Signal masks and list of pending signals ar...
@ PIDFD
Allocate a PIDFD file descriptor for the child and store it at the location pointed to by the pidfd C...
@ SHARE_FS
Parent and child share file system information like CWD, the root (/) directory and the umask.
@ PARENT_SETTID
Store the child's thread ID in the parent_tid CloneArgs member in parent's memory.
@ UNTRACED
A tracing process cannot force CLONE_PTRACE on the child.
@ SHARE_IO
Share the I/O context between parent and child. This affects I/O scheduling, processes that share the...
Argument struct for proc::clone().
void setStack(void *p_stack)
Sets the pointer to the lowest byte of the stack area.
void setExitSignal(const Signal sig)
Sets the signal to be delivered upon child process termination.
void setCGroup(const FileDescriptor fd)
Sets the cgroup2 file descriptor of which the child should become a member.
void setTIDs(const ThreadID *tids, size_t num_tids)
Allows to set an explicit thread ID to use for the child.