libcosmos
Linux C++ System Programming Library
Loading...
Searching...
No Matches
clone.hxx
Go to the documentation of this file.
1#pragma once
2
3// C
4#include <stdint.h>
5
6// Linux
7#include <linux/sched.h> // sched headers are needed for clone()
8#include <sched.h>
9
10// cosmos
11#include <cosmos/BitMask.hxx>
12#include <cosmos/proc/PidFD.hxx>
13#include <cosmos/proc/types.hxx>
14#include <cosmos/utils.hxx>
15
25namespace cosmos {
26
27enum class CloneFlag : uint64_t {
28 CHILD_CLEARTID = CLONE_CHILD_CLEARTID,
29 CHILD_SETTID = CLONE_CHILD_SETTID,
30 CLEAR_SIGHAND = CLONE_CLEAR_SIGHAND,
31 DETACHED = CLONE_DETACHED,
32 SHARE_FILES = CLONE_FILES,
33 SHARE_FS = CLONE_FS,
34 INTO_CGROUP = CLONE_INTO_CGROUP,
35 SHARE_IO = CLONE_IO,
36 NEW_CGROUP = CLONE_NEWCGROUP,
37 NEW_IPC = CLONE_NEWIPC,
38 NEW_NET = CLONE_NEWNET,
39 NEW_MOUNT = CLONE_NEWNS,
40 NEW_NS = CLONE_NEWNS, // just a synonym using the old compatibility name
41 NEW_PID = CLONE_NEWPID,
42 NEW_USER = CLONE_NEWUSER,
43 NEW_UTS = CLONE_NEWUTS,
44 SHARE_PARENT = CLONE_PARENT,
45 PARENT_SETTID = CLONE_PARENT_SETTID,
46 PIDFD = CLONE_PIDFD,
47 PTRACE = CLONE_PTRACE,
48 SETTLS = CLONE_SETTLS,
49 SIGHAND = CLONE_SIGHAND,
50 SHARE_SYSVSEM = CLONE_SYSVSEM,
51 THREAD = CLONE_THREAD,
52 UNTRACED = CLONE_UNTRACED,
53 VFORK = CLONE_VFORK,
54 SHARE_VM = CLONE_VM
55};
56
57using CloneFlags = BitMask<CloneFlag>;
58
60struct COSMOS_API CloneArgs :
61 ::clone_args {
62
63 CloneArgs() {
64 clear();
65 }
66
68
73 void clear();
74
75 void setFlags(const CloneFlags p_flags) {
76 this->flags = p_flags.raw();
77 }
78
79 void setPidFD(PidFD &fd) {
80 this->pidfd = reinterpret_cast<uintptr_t>(&fd.m_fd);
81 }
82
83 void setChildTID(ThreadID *tid) {
84 this->child_tid = reinterpret_cast<uint64_t>(tid);
85 }
86
87 void setParentTID(ProcessID *pid) {
88 this->parent_tid = reinterpret_cast<uint64_t>(pid);
89 }
90
92
98 void setExitSignal(const Signal sig) {
99 this->exit_signal = static_cast<uint64_t>(to_integral(sig.raw()));
100 }
101
103
108 void setStack(void *p_stack) {
109 this->stack = reinterpret_cast<uint64_t>(p_stack);
110 }
111
113
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;
127 }
128
130
133 void setCGroup(const FileDescriptor fd) {
134 this->cgroup = static_cast<uint64_t>(fd.raw());
135 }
136};
137
138namespace proc {
139
141
162COSMOS_API std::optional<ProcessID> clone(const CloneArgs &args);
163
164} // end ns proc
165
166} // end ns
A typesafe bit mask representation using class enums.
Definition BitMask.hxx:19
EnumBaseType raw() const
Returns the raw bitfield integer.
Definition BitMask.hxx:56
Thin Wrapper around OS file descriptors.
FileNum raw() const
Returns the primitive file descriptor contained in the object.
A specialized FileDescriptor for pidfds.
Definition PidFD.hxx:36
Represents a POSIX signal number and offers a minimal API around it.
Definition types.hxx:96
SignalNr raw() const
Returns the primitive signal number stored in this object.
Definition types.hxx:115
CloneFlag
Definition clone.hxx:27
@ 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...
ProcessID
Definition types.hxx:25
Argument struct for proc::clone().
Definition clone.hxx:61
void setStack(void *p_stack)
Sets the pointer to the lowest byte of the stack area.
Definition clone.hxx:108
void setExitSignal(const Signal sig)
Sets the signal to be delivered upon child process termination.
Definition clone.hxx:98
void setCGroup(const FileDescriptor fd)
Sets the cgroup2 file descriptor of which the child should become a member.
Definition clone.hxx:133
void setTIDs(const ThreadID *tids, size_t num_tids)
Allows to set an explicit thread ID to use for the child.
Definition clone.hxx:124