libcosmos
Linux C++ System Programming Library
|
Address type for local UNIX domain sockets. More...
#include <UnixAddress.hxx>
Public Types | |
using | Abstract = NamedBool<struct abstract_address_t, false> |
Strong boolean type to indicate the use an abstract address. | |
Public Member Functions | |
UnixAddress () | |
Creates an empty address. | |
UnixAddress (const std::string_view path, const Abstract abstract=Abstract{false}) | |
Creates an address from the given path which can also be abstract. | |
SocketFamily | family () const override |
Returns the concrete SocketFamily for the implementation address type. | |
size_t | size () const override |
Returns the size of the structure considering the currently set path length only. | |
size_t | maxSize () const override |
Returns the maximum address size without taking into account the currently set path. | |
size_t | maxPathLen () const |
Maximum path length that can be stored in a UnixAddress structure. | |
void | setPath (const std::string_view path, const Abstract abstract=Abstract{false}) |
Sets a new path for the address. | |
std::string_view | getPath () const |
Returns the currently set path. | |
std::string | label () const |
Returns a human readable label for the contained path. | |
bool | isAbstract () const |
Returns whether currently an abstract path is contained. | |
bool | isUnnamed () const |
Returns whether this address is currently unnamed (empty). | |
bool | operator== (const UnixAddress &other) const |
bool | operator!= (const UnixAddress &other) const |
![]() |
Protected Member Functions | |
void | update (size_t new_length) override |
Update the address structure after it has been filled in by the kernel. | |
sockaddr * | basePtr () override |
Returns a mutable pointer to the sockaddr* base structure. | |
const sockaddr * | basePtr () const override |
Returns a const pointer to the sockaddr* base structure. | |
![]() | |
void | clear () |
Clears the complete address structure. | |
Protected Attributes | |
sockaddr_un | m_addr |
size_t | m_path_len = 0 |
used bytes in m_addr.sun_path excluding terminator | |
Static Protected Attributes | |
static constexpr size_t | BASE_SIZE = offsetof(struct sockaddr_un, sun_path) |
Address type for local UNIX domain sockets.
UNIX domain addresses come in three flavours on Linux:
size()
communicated to the kernel will determine the length of the address.There is some ambiguity regarding specifying the size of a sockaddr_un
in system calls. You can either specify the size of the actual number of bytes used in the structure, or you can specify the full size of the structure. For abstract socket addresses this can become problematic, since \0 characters don't terminate paths here, i.e. if you specify the full size of sockaddr_un
then you end up using a different address then when you specify only the actual number of bytes used. For this reason the current implementation only reports the actual number of bytes used for a path. When communicating with applications that follow a different notion here, it can happen that you won't be able to communicate with them.
Definition at line 52 of file UnixAddress.hxx.
using cosmos::UnixAddress::Abstract = NamedBool<struct abstract_address_t, false> |
Strong boolean type to indicate the use an abstract address.
Definition at line 57 of file UnixAddress.hxx.
|
inline |
Creates an empty address.
Definition at line 62 of file UnixAddress.hxx.
|
inlineexplicit |
Creates an address from the given path which can also be abstract.
Definition at line 68 of file UnixAddress.hxx.
|
inlineoverrideprotectedvirtual |
Returns a const pointer to the sockaddr*
base structure.
Implements cosmos::SocketAddress.
Definition at line 160 of file UnixAddress.hxx.
|
inlineoverrideprotectedvirtual |
Returns a mutable pointer to the sockaddr*
base structure.
Implements cosmos::SocketAddress.
Definition at line 156 of file UnixAddress.hxx.
|
inlineoverridevirtual |
Returns the concrete SocketFamily for the implementation address type.
Implements cosmos::SocketAddress.
Definition at line 73 of file UnixAddress.hxx.
|
inline |
Returns the currently set path.
This returns the string used in setPath(). If an abstract path is currently set then the leading '\0' terminator will not be contained in the string_view.
Definition at line 112 of file UnixAddress.hxx.
|
inline |
Returns whether currently an abstract path is contained.
Definition at line 130 of file UnixAddress.hxx.
|
inline |
Returns whether this address is currently unnamed (empty).
Definition at line 135 of file UnixAddress.hxx.
std::string cosmos::UnixAddress::label | ( | ) | const |
Returns a human readable label for the contained path.
This returns an implementation defined, human readable label describing the currently set path. In particular abstract paths are transformed in a way to indicate their abstract nature. Also unnamed addresses are specially marked in the returned string.
Definition at line 45 of file UnixAddress.cxx.
|
inline |
Maximum path length that can be stored in a UnixAddress structure.
The returned value is not counting ‘\0’ terminators. For both abstract and non-abstract addresses one byte for a null terminator (leading or trailing) is subtracted.
Definition at line 93 of file UnixAddress.hxx.
|
inlineoverridevirtual |
Returns the maximum address size without taking into account the currently set path.
Reimplemented from cosmos::SocketAddress.
Definition at line 83 of file UnixAddress.hxx.
|
inline |
Definition at line 148 of file UnixAddress.hxx.
|
inline |
Definition at line 139 of file UnixAddress.hxx.
void cosmos::UnixAddress::setPath | ( | const std::string_view | path, |
const Abstract | abstract = Abstract{false} ) |
Sets a new path for the address.
Depending on the abstract
setting this will be either a file system path, or an abstract label. No '\0' terminators should be embedded into path
for the abstract case. The implementation will take care of this transparently.
Definition at line 7 of file UnixAddress.cxx.
|
inlineoverridevirtual |
Returns the size of the structure considering the currently set path length only.
Implements cosmos::SocketAddress.
Definition at line 78 of file UnixAddress.hxx.
|
overrideprotectedvirtual |
Update the address structure after it has been filled in by the kernel.
Some system calls update the address structure. The obtained number of bytes is found in new_length
. Some address structures have dynamic sizes in which case the new length has to be accommodated for by overriding this function call.
The default implementation only performs a sanity check that the new length matches the old length (considering statically sized addresses).
Reimplemented from cosmos::SocketAddress.
Definition at line 29 of file UnixAddress.cxx.
|
staticconstexprprotected |
Definition at line 166 of file UnixAddress.hxx.
|
protected |
Definition at line 167 of file UnixAddress.hxx.
|
protected |
used bytes in m_addr.sun_path excluding terminator
Definition at line 168 of file UnixAddress.hxx.