libcosmos
Linux C++ System Programming Library
|
Wrapper for the SCM_RIGHTS socket ancillary message to pass file descriptors to other processes. More...
#include <unix_aux.hxx>
Public Types | |
using | FileNumVector = std::vector<FileNum> |
A vector to keep a series of FileNum file descriptor numbers to pass between processes. | |
Public Member Functions | |
void | deserialize (const ReceiveMessageHeader::ControlMessage &msg) |
Parse received file descriptors from the given ControlMessage. | |
SendMessageHeader::ControlMessage | serialize () const |
Serialize a ControlMessage for passing file descriptors. | |
void | addFD (cosmos::FileNum fd) |
void | clearFDs () |
void | takeFDs (FileNumVector &fds) |
size_t | numFDs () const |
Static Public Attributes | |
static constexpr size_t | MAX_FDS = 253 |
Maximum number of file descriptors that can be transferred using a single UnixRightsMessage. | |
Protected Member Functions | |
void | closeUnclaimed () |
![]() | |
SendMessageHeader::ControlMessage | createMsg (UnixMessage type, const size_t data_len) const |
void | checkMsg (const ReceiveMessageHeader::ControlMessage &msg, UnixMessage type) const |
uint8_t * | data (SendMessageHeader::ControlMessage &msg) const |
Protected Attributes | |
FileNumVector | m_fds |
bool | m_unclaimed_fds = false |
Flag whether "live" FDs in m_fds have not yet been collected. | |
Wrapper for the SCM_RIGHTS socket ancillary message to pass file descriptors to other processes.
UNIX domain sockets can be used to pass file descriptors between unrelated processes. This class supports both, assembling an ancillary message to pass on file descriptors to another process, and deserializing an ancillary message to access file descriptors received from another process.
For sending add the desired file descriptors to the object using addFD()
. The object will not take ownership of the file descriptors and will never close them. The file descriptors need to stay valid until the ancillary message has been successfully sent out, though. The final ancillary message can be created using the serialize() method. The resulting SendMessageHeader::ControlMessage can be assigned to the control_msg
member of a SendMessageHeader
instance, for sending it via Socket::sendMessage()
or one of its specializations.
For receiving setup a ReceiveMessageHeader
for use with a UNIX domain socket, call setControlBufferSize() on it to allow reception of ancillary data. On successful reception check for a ControlMessage on OptLevel::SOCKET and of type UnixMessage::RIGHTS. Once this message arrives, pass it to the deserialize()
function to parse the file descriptor numbers that have been received. At this point the file descriptors will be allocated in the receiving process and ownership of them needs to be managed. The takeFDs()
function transfers the ownership of received file descriptors to the caller. This operation can only happen once. If for some reason the file descriptors are never claimed, then they are closed internally upon destruction of the object or before the object state is modified in other ways.
There are a number of pitfalls with this mechanism:
Definition at line 106 of file unix_aux.hxx.
using cosmos::UnixRightsMessage::FileNumVector = std::vector<FileNum> |
A vector to keep a series of FileNum file descriptor numbers to pass between processes.
Definition at line 111 of file unix_aux.hxx.
|
inline |
Definition at line 120 of file unix_aux.hxx.
|
inline |
Definition at line 141 of file unix_aux.hxx.
|
inline |
Definition at line 145 of file unix_aux.hxx.
|
protected |
Definition at line 59 of file unix_aux.cxx.
void cosmos::UnixRightsMessage::deserialize | ( | const ReceiveMessageHeader::ControlMessage & | msg | ) |
Parse received file descriptors from the given ControlMessage.
If msg
is not of the right type then an exception is thrown.
On success check numFDs()
to learn of the amount of received file descriptors and use takeFDs()
to transfer ownership of them to the caller.
Definition at line 20 of file unix_aux.cxx.
|
inline |
Definition at line 160 of file unix_aux.hxx.
SendMessageHeader::ControlMessage cosmos::UnixRightsMessage::serialize | ( | ) | const |
Serialize a ControlMessage for passing file descriptors.
This will serialize a ControlMessage containing all file descriptors previously added via addFD()
.
Definition at line 42 of file unix_aux.cxx.
|
inline |
Definition at line 150 of file unix_aux.hxx.
|
protected |
Definition at line 170 of file unix_aux.hxx.
|
protected |
Flag whether "live" FDs in m_fds have not yet been collected.
Definition at line 171 of file unix_aux.hxx.
|
staticconstexpr |
Maximum number of file descriptors that can be transferred using a single UnixRightsMessage.
Definition at line 116 of file unix_aux.hxx.