libcosmos
Linux C++ System Programming Library
Loading...
Searching...
No Matches
unix_aux.hxx
Go to the documentation of this file.
1#pragma once
2
3// C++
4#include <vector>
5
6// Cosmos
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>
12
13namespace cosmos {
14
23
28struct COSMOS_API UnixCredentials :
29 protected ::ucred {
30
33 UnixCredentials{ProcessID::INVALID, UserID::INVALID, GroupID::INVALID} {
34 }
35
37 UnixCredentials(const ProcessID p_pid, const UserID p_uid, const GroupID p_gid) {
38 pid = cosmos::to_integral(p_pid);
39 uid = cosmos::to_integral(p_uid);
40 gid = cosmos::to_integral(p_gid);
41 }
42
44
48 void setCurrentCreds();
49
50 auto processID() { return ProcessID{pid}; }
51 auto userID() { return UserID{uid}; }
52 auto groupID() { return GroupID{gid}; }
53};
54
56
106class COSMOS_API UnixRightsMessage :
107 public AncillaryMessage<OptLevel::SOCKET, UnixMessage> {
108public: // types
109
111 using FileNumVector = std::vector<FileNum>;
112
113public: // data
114
116 constexpr static size_t MAX_FDS = 253; /* SCM_MAX_FD, only found in kernel headers */
117
118public: // functions
119
121 closeUnclaimed();
122 }
123
125
132 void deserialize(const ReceiveMessageHeader::ControlMessage &msg);
133
135
139 SendMessageHeader::ControlMessage serialize() const;
140
141 void addFD(cosmos::FileNum fd) {
142 m_fds.push_back(fd);
143 }
144
145 void clearFDs() {
146 closeUnclaimed();
147 m_fds.clear();
148 }
149
150 void takeFDs(FileNumVector &fds) {
151 if (!m_unclaimed_fds) {
152 fds.clear();
153 return;
154 }
155 fds = std::move(m_fds);
156 m_fds = FileNumVector{};
157 m_unclaimed_fds = false;
158 }
159
160 size_t numFDs() const {
161 return m_unclaimed_fds ? m_fds.size() : 0;
162 }
163
164protected: // functions
165
166 void closeUnclaimed();
167
168protected: // data
169
170 FileNumVector m_fds;
171 bool m_unclaimed_fds = false;
172};
173
175
190class COSMOS_API UnixCredentialsMessage :
191 public AncillaryMessage<OptLevel::SOCKET, UnixMessage> {
192public: // functions
193
194 void deserialize(const ReceiveMessageHeader::ControlMessage &msg);
195
196 SendMessageHeader::ControlMessage serialize() const;
197
198 void setCreds(const UnixCredentials &creds) {
199 m_creds = creds;
200 }
201
202 const UnixCredentials& creds() const {
203 return m_creds;
204 }
205
206protected: // data
207
208 UnixCredentials m_creds;
209};
210
211} // end ns
Base class for types that deal with (de)serializing ancillary socket messages.
Wrapper for struct cmsghdr used for iterating over received control messages.
Wrapper for struct cmsghdr used for creating new control messages for sending.
Wrapper for the SCM_CREDENTIALS socket ancillary message to transfer process credentials between proc...
Definition unix_aux.hxx:191
Wrapper for the SCM_RIGHTS socket ancillary message to pass file descriptors to other processes.
Definition unix_aux.hxx:107
std::vector< FileNum > FileNumVector
A vector to keep a series of FileNum file descriptor numbers to pass between processes.
Definition unix_aux.hxx:111
FileNum
Primitive file descriptor.
Definition types.hxx:32
ProcessID
Definition types.hxx:25
User and group credentials of a peer process.
Definition unix_aux.hxx:29
UnixCredentials(const ProcessID p_pid, const UserID p_uid, const GroupID p_gid)
Create credentials using the given values.
Definition unix_aux.hxx:37
UnixCredentials()
Create credentials all set to INVALID values.
Definition unix_aux.hxx:32