libcosmos
Linux C++ System Programming Library
Loading...
Searching...
No Matches
cosmos::UnixCredentialsMessage Class Reference

Wrapper for the SCM_CREDENTIALS socket ancillary message to transfer process credentials between processes. More...

#include <unix_aux.hxx>

+ Inheritance diagram for cosmos::UnixCredentialsMessage:

Public Member Functions

void deserialize (const ReceiveMessageHeader::ControlMessage &msg)
 
SendMessageHeader::ControlMessage serialize () const
 
void setCreds (const UnixCredentials &creds)
 
const UnixCredentialscreds () const
 

Protected Attributes

UnixCredentials m_creds
 

Additional Inherited Members

- Protected Member Functions inherited from cosmos::AncillaryMessage< OptLevel::SOCKET, UnixMessage >
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
 

Detailed Description

Wrapper for the SCM_CREDENTIALS socket ancillary message to transfer process credentials between processes.

This ancillary message carries a UnixCredentials structure consisting of a ProcessID, UserID and GroupID. Both ends of a UNIX domain socket need to enable UnixOptions::setPassCredentials() for this to work.

On the sending side only the caller's ProcessID and one of its real, effective or saved UserIDs and/or GroupIDs may be specified. Privileged processes with CAP_SYS_ADMIN may specify arbitrary ProcessID, with CAP_SETUID may specify arbitrary UserIDs and GroupIDs.

Once the socket option is set each received message will carry an implicit UnixCredentialsMessage, even if the peer did not send one. This is automatically filled in by the kernel with the process's PID and real UserID and GroupID.

Definition at line 190 of file unix_aux.hxx.

Member Function Documentation

◆ creds()

const UnixCredentials & cosmos::UnixCredentialsMessage::creds ( ) const
inline

Definition at line 202 of file unix_aux.hxx.

202 {
203 return m_creds;
204 }

◆ deserialize()

void cosmos::UnixCredentialsMessage::deserialize ( const ReceiveMessageHeader::ControlMessage & msg)

Definition at line 71 of file unix_aux.cxx.

71 {
72 checkMsg(msg, UnixMessage::CREDENTIALS);
73
74 const uint8_t *data = reinterpret_cast<const uint8_t*>(msg.data());
75 const auto bytes = msg.dataLength();
76
77 if (bytes != sizeof(m_creds)) {
78 cosmos_throw (RuntimeError("SCM_CREDS message with mismatching length encountered"));
79 }
80
81 std::memcpy(&m_creds, data, bytes);
82}

◆ serialize()

SendMessageHeader::ControlMessage cosmos::UnixCredentialsMessage::serialize ( ) const

Definition at line 84 of file unix_aux.cxx.

84 {
85 auto ret = this->createMsg(UnixMessage::CREDENTIALS, sizeof(m_creds));
86
87 auto data = this->data(ret);
88
89 std::memcpy(data, &m_creds, sizeof(m_creds));
90
91 return ret;
92}

◆ setCreds()

void cosmos::UnixCredentialsMessage::setCreds ( const UnixCredentials & creds)
inline

Definition at line 198 of file unix_aux.hxx.

198 {
199 m_creds = creds;
200 }

Member Data Documentation

◆ m_creds

UnixCredentials cosmos::UnixCredentialsMessage::m_creds
protected

Definition at line 208 of file unix_aux.hxx.


The documentation for this class was generated from the following files: