libcosmos
Linux C++ System Programming Library
Loading...
Searching...
No Matches
process.hxx
Go to the documentation of this file.
1#pragma once
2
3// Linux
4#include <sys/wait.h>
5
6// C++
7#include <iosfwd>
8#include <optional>
9
10// cosmos
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>
19
26namespace cosmos {
27
28/*
29 * Declare these here, since they require pulling in the fat SigInfo header
30 * and sys/wait.h, which would cause conflicts when done so in types.hxx
31 * directly.
32 *
33 * WaitFlags and ChildData is needed across different classes, thus don't
34 * place them in the proc sub-namespace.
35 */
36
38enum class WaitFlag : int {
40 WAIT_FOR_EXITED = WEXITED,
42 WAIT_FOR_STOPPED = WSTOPPED,
44 WAIT_FOR_CONTINUED = WCONTINUED,
46 NO_HANG = WNOHANG,
48 LEAVE_INFO = WNOWAIT
49};
50
51using WaitFlags = BitMask<WaitFlag>;
52
53/*
54 * This is the same basic structure as found in SigInfo, only that waitid() &
55 * friends don't fill in the user and sys times
56 */
57using ChildData = SigInfo::ChildData;
58
59} // end ns
60
61namespace cosmos::proc {
62
64COSMOS_API ProcessID get_own_pid();
65
67COSMOS_API ProcessID get_parent_pid();
68
70COSMOS_API UserID get_real_user_id();
71
73
78COSMOS_API UserID get_effective_user_id();
79
81COSMOS_API GroupID get_real_group_id();
82
84
87COSMOS_API GroupID get_effective_group_id();
88
90COSMOS_API ProcessGroupID get_own_process_group();
91
93
103COSMOS_API ProcessID create_new_session();
104
106
118COSMOS_API std::optional<ProcessID> fork();
119
121
129COSMOS_API std::optional<ChildData> wait(const ProcessID pid, const WaitFlags flags = WaitFlags{WaitFlag::WAIT_FOR_EXITED});
130
132
138COSMOS_API std::optional<ChildData> wait(const ProcessGroupID pgid, const WaitFlags flags = WaitFlags{WaitFlag::WAIT_FOR_EXITED});
139
141
145COSMOS_API std::optional<ChildData> wait(const WaitFlags flags = WaitFlags{WaitFlag::WAIT_FOR_EXITED});
146
148
155COSMOS_API std::optional<ChildData> wait(const PidFD fd, const WaitFlags flags = WaitFlags{WaitFlag::WAIT_FOR_EXITED});
156
158
181COSMOS_API void exec(const SysString path,
182 const CStringVector *args = nullptr, const CStringVector *env = nullptr);
183
185
191COSMOS_API void exec(const SysString path,
192 const StringViewVector &args, const StringViewVector *env = nullptr);
193
195
198COSMOS_API void exec(const SysString path,
199 const StringVector &args, const StringVector *env = nullptr);
200
202
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});
215
217
230COSMOS_API void fexec(const FileDescriptor fd,
231 const CStringVector *args = nullptr, const CStringVector *env = nullptr);
232
234
242[[ noreturn ]] COSMOS_API void exit(ExitStatus status);
243
245
250COSMOS_API std::optional<SysString> get_env_var(const SysString name);
251
253inline bool exists_env_var(const SysString name) {
254 return get_env_var(name) != std::nullopt;
255}
256
259
261
270COSMOS_API void set_env_var(const SysString name, const SysString val, const OverwriteEnv overwrite);
271
273
281COSMOS_API void clear_env_var(const SysString name);
282
284struct PidInfo {
285
286 PidInfo() :
287 own_pid{get_own_pid()},
288 parent_pid{get_parent_pid()}
289 {}
290
291 const ProcessID own_pid;
292 const ProcessID parent_pid;
293};
294
296extern COSMOS_API PidInfo cached_pids;
297
298}; // end ns
299
301COSMOS_API std::ostream& operator<<(std::ostream &o, const cosmos::ChildData &data);
Strong template type to wrap boolean values in a named type.
Definition utils.hxx:50
ProcessID
Definition types.hxx:25
COSMOS_API std::ostream & operator<<(std::ostream &o, const cosmos::ChildData &data)
Outputs a human readable summary of ChildData.
Definition process.cxx:254
WaitFlag
Different child process wait options used in the proc::wait() family of calls.
Definition process.hxx:38
@ 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.
Definition process.hxx:253
Additional data found in SigInfo with SIGCHILD.
Definition SigInfo.hxx:321
Wrapper type around a C-style string for use with system APIs.
Definition SysString.hxx:33
Helper type for caching PID an PPID information.
Definition process.hxx:284