7#include <cosmos/dso_export.h>
8#include <cosmos/fs/types.hxx>
9#include <cosmos/net/message_header.hxx>
10#include <cosmos/net/types.hxx>
11#include <cosmos/proc/process.hxx>
38 pid = cosmos::to_integral(p_pid);
39 uid = cosmos::to_integral(p_uid);
40 gid = cosmos::to_integral(p_gid);
48 void setCurrentCreds();
50 auto processID() {
return ProcessID{pid}; }
51 auto userID() {
return UserID{uid}; }
52 auto groupID() {
return GroupID{gid}; }
116 constexpr static size_t MAX_FDS = 253;
150 void takeFDs(FileNumVector &fds) {
151 if (!m_unclaimed_fds) {
155 fds = std::move(m_fds);
156 m_fds = FileNumVector{};
157 m_unclaimed_fds =
false;
160 size_t numFDs()
const {
161 return m_unclaimed_fds ? m_fds.size() : 0;
166 void closeUnclaimed();
171 bool m_unclaimed_fds =
false;
Base class for types that deal with (de)serializing ancillary socket messages.
Wrapper for the SCM_CREDENTIALS socket ancillary message to transfer process credentials between proc...
Wrapper for the SCM_RIGHTS socket ancillary message to pass file descriptors to other processes.
std::vector< FileNum > FileNumVector
A vector to keep a series of FileNum file descriptor numbers to pass between processes.
FileNum
Primitive file descriptor.
User and group credentials of a peer process.
UnixCredentials(const ProcessID p_pid, const UserID p_uid, const GroupID p_gid)
Create credentials using the given values.
UnixCredentials()
Create credentials all set to INVALID values.