11#include <cosmos/BitMask.hxx>
12#include <cosmos/fs/DirFD.hxx>
13#include <cosmos/proc/PidFD.hxx>
14#include <cosmos/proc/types.hxx>
15#include <cosmos/proc/SigInfo.hxx>
16#include <cosmos/string.hxx>
17#include <cosmos/SysString.hxx>
18#include <cosmos/types.hxx>
51using WaitFlags = BitMask<WaitFlag>;
57using ChildData = SigInfo::ChildData;
61namespace cosmos::proc {
70COSMOS_API UserID get_real_user_id();
78COSMOS_API UserID get_effective_user_id();
81COSMOS_API GroupID get_real_group_id();
87COSMOS_API GroupID get_effective_group_id();
90COSMOS_API ProcessGroupID get_own_process_group();
103COSMOS_API
ProcessID create_new_session();
118COSMOS_API std::optional<ProcessID> fork();
129COSMOS_API std::optional<ChildData> wait(
const ProcessID pid,
const WaitFlags flags = WaitFlags{WaitFlag::WAIT_FOR_EXITED});
138COSMOS_API std::optional<ChildData> wait(
const ProcessGroupID pgid,
const WaitFlags flags = WaitFlags{WaitFlag::WAIT_FOR_EXITED});
145COSMOS_API std::optional<ChildData> wait(
const WaitFlags flags = WaitFlags{WaitFlag::WAIT_FOR_EXITED});
155COSMOS_API std::optional<ChildData> wait(
const PidFD fd,
const WaitFlags flags = WaitFlags{WaitFlag::WAIT_FOR_EXITED});
181COSMOS_API
void exec(
const SysString path,
182 const CStringVector *args =
nullptr,
const CStringVector *env =
nullptr);
191COSMOS_API
void exec(
const SysString path,
192 const StringViewVector &args,
const StringViewVector *env =
nullptr);
198COSMOS_API
void exec(
const SysString path,
199 const StringVector &args,
const StringVector *env =
nullptr);
212COSMOS_API
void exec_at(
const DirFD dir_fd,
const SysString path,
213 const CStringVector *args =
nullptr,
const CStringVector *env =
nullptr,
214 const FollowSymlinks follow_symlinks = FollowSymlinks{
false});
230COSMOS_API
void fexec(
const FileDescriptor fd,
231 const CStringVector *args =
nullptr,
const CStringVector *env =
nullptr);
242[[ noreturn ]] COSMOS_API
void exit(ExitStatus status);
250COSMOS_API std::optional<SysString> get_env_var(
const SysString name);
254 return get_env_var(name) != std::nullopt;
281COSMOS_API
void clear_env_var(
const SysString name);
287 own_pid{get_own_pid()},
288 parent_pid{get_parent_pid()}
296extern COSMOS_API
PidInfo cached_pids;
Strong template type to wrap boolean values in a named type.
COSMOS_API std::ostream & operator<<(std::ostream &o, const cosmos::ChildData &data)
Outputs a human readable summary of ChildData.
WaitFlag
Different child process wait options used in the proc::wait() family of calls.
@ NO_HANG
If no matching child processes are available don't block but return nothing.
@ WAIT_FOR_CONTINUED
Wait for (previously stopped) child processes that have been continued via SIGCONT.
@ LEAVE_INFO
Don't remove the info from the kernel, a later wait call can be used to retrieve the same information...
@ WAIT_FOR_EXITED
Wait for child processes that have terminated.
@ WAIT_FOR_STOPPED
Wait for child processes that have been stopped due to being signaled.
bool exists_env_var(const SysString name)
Returns whether the given environment variable exists, ignoring its content.
Additional data found in SigInfo with SIGCHILD.
Wrapper type around a C-style string for use with system APIs.
Helper type for caching PID an PPID information.