libcosmos
Linux C++ System Programming Library
|
#include <array>
#include <net/if.h>
#include <linux/if_arp.h>
#include <netdb.h>
#include <netinet/in.h>
#include <netinet/ip.h>
#include <sys/socket.h>
#include <cosmos/BitMask.hxx>
#include <cosmos/net/byte_order.hxx>
Go to the source code of this file.
Classes | |
class | cosmos::IPPort |
A 16-bit IP port in network byte order. More... | |
class | cosmos::IP4RawAddress |
A 32-bit IPv4 binary address in network byte order. More... | |
struct | cosmos::IP6RawAddress |
A 128-bit IPv6 address. More... | |
struct | cosmos::MACAddress |
A 48-bit ethernet 802.3 MAC address. More... | |
Typedefs | |
using | cosmos::SocketFlags = BitMask<SocketFlag> |
Collection of SocketFlag used for creating sockets. | |
using | cosmos::MessageFlags = BitMask<MessageFlag> |
Enumerations | |
enum class | cosmos::SocketFamily : int { UNSPEC = AF_UNSPEC , INET = AF_INET , INET6 = AF_INET6 , UNIX = AF_UNIX , NETLINK = AF_NETLINK , PACKET = AF_PACKET } |
A socket's family setting. More... | |
enum class | cosmos::SocketType : int { ANY = 0 , STREAM = SOCK_STREAM , DGRAM = SOCK_DGRAM , RAW = SOCK_RAW , SEQPACKET = SOCK_SEQPACKET , RDM = SOCK_RDM } |
A socket's type setting. More... | |
enum class | cosmos::SocketProtocol : int { DEFAULT = 0 } |
Specific protocol to use on a socket. More... | |
enum class | cosmos::SocketFlag : int { CLOEXEC = SOCK_CLOEXEC , NONBLOCK = SOCK_NONBLOCK } |
Additional socket settings used during socket creation. More... | |
enum class | cosmos::OptLevel : int { SOCKET = SOL_SOCKET , IP = IPPROTO_IP , IPV6 = IPPROTO_IPV6 , TCP = IPPROTO_TCP , UDP = IPPROTO_UDP } |
Representation of socket option levels. More... | |
enum class | cosmos::OptName : int |
Representation of socket option names. More... | |
enum class | cosmos::InterfaceIndex : int { INVALID = 0 , ANY = 0 } |
A network device interface index. More... | |
enum class | cosmos::MessageFlag : int { CONFIRM = MSG_CONFIRM , DONT_ROUTE = MSG_DONTROUTE , DONT_WAIT = MSG_DONTWAIT , END_OF_RECORD = MSG_EOR , MORE_DATA = MSG_MORE , NO_SIGNAL = MSG_NOSIGNAL , OUT_OF_BAND = MSG_OOB , FASTOPEN = MSG_FASTOPEN , CLOEXEC = MSG_CMSG_CLOEXEC , ERRQUEUE = MSG_ERRQUEUE , PEEK = MSG_PEEK , TRUNCATE = MSG_TRUNC , CTL_WAS_TRUNCATED = MSG_CTRUNC , WAIT_ALL = MSG_WAITALL , WAIT_FOR_ONE = MSG_WAITFORONE , ZEROCOPY = MSG_ZEROCOPY } |
Flags available for the send() and recv() family of socket I/O functions. More... | |
enum class | cosmos::UnixMessage : int { RIGHTS = SCM_RIGHTS , CREDENTIALS = SCM_CREDENTIALS } |
Ancillary message types available for UNIX domain sockets. More... | |
enum class | cosmos::IP4Message : int { RECVERR = IP_RECVERR , PKTINFO = IP_PKTINFO , ORIGDSTADDR = IP_ORIGDSTADDR , TOS = IP_TOS , TTL = IP_TTL } |
Ancillary message types available for IPv4 based sockets. More... | |
enum class | cosmos::IP6Message : int { RECVERR = IPV6_RECVERR , PKTINFO = IPV6_PKTINFO } |
Ancillary message types available for IPv6 based sockets. More... | |
Variables | |
constexpr size_t | cosmos::MAX_NET_INTERFACE_NAME = IFNAMSIZ |
Maximum length of a network device name in bytes. | |
constexpr size_t | cosmos::MAX_HOSTNAME = NI_MAXHOST |
Maximum length of a DNS hostname. | |
constexpr size_t | cosmos::MAX_SERVICE = NI_MAXSERV |
Maximum length of a port service name (from /etc/services). | |
constexpr net::HostInt32 | cosmos::IP4_LOOPBACK_ADDR {INADDR_LOOPBACK} |
The loopback IPv4 address referring to the localhost. | |
constexpr net::HostInt32 | cosmos::IP4_ANY_ADDR {INADDR_ANY} |
The any IPv4 address specifying all possible addresses or a "don't care" address for automatic assignment, depending on context. | |
constexpr net::HostInt32 | cosmos::IP4_BROADCAST_ADDR {INADDR_BROADCAST} |
The IPv4 broadcast address to reach all hosts in the neighborhood. | |
constexpr IP6RawAddress | cosmos::IP6_LOOPBACK {0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1} |
The binary loopback IPv6 address ::1 referring to the localhost. | |
constexpr IP6RawAddress | cosmos::IP6_ANY_ADDR {} |
The binary IPv6 "any" address :: specifying all possible addresses or a "don't care" address for automatic assignment, depending on context. | |
Basic types used in networking APIs.
Definition in file types.hxx.
using cosmos::MessageFlags = BitMask<MessageFlag> |
using cosmos::SocketFlags = BitMask<SocketFlag> |
|
strong |
A network device interface index.
Linux APIs are somewhat inconsistent about the type of this. E.g. in the sockaddr_in6
structure it is an uint32_t
while in netdevice it is an int
. So the signedness is unclear. In LinkLayerAddress it is also an int
.
Enumerator | |
---|---|
ANY | zero is in some contexts used for invalid (non-existing) devices. |
|
strong |
Ancillary message types available for IPv4 based sockets.
Definition at line 266 of file types.hxx.
|
strong |
|
strong |
Flags available for the send() and recv() family of socket I/O functions.
Enumerator | |
---|---|
CONFIRM | Inform the link layer that a successful reply was received from the other side. If this is not received then the link layer will probe the peer using ARP. This flag is only supported for SocketType::DGRAM and SocketType::RAW on SocketFamily::INET and SocketFamily::INET6. |
DONT_ROUTE | Don't use a gateway to send out the packet, send only to directly connected networks. This is only supported for protocol families that route. It is typically used for routing protocols or diagnostic programs. |
DONT_WAIT | Use non-blocking semantics for the I/O call. This is similar to setting OpenFlag::NONBLOCK on the file descriptor, but only affects a single I/O call as opposed to all calls referring to the same open file description. |
END_OF_RECORD | Terminates a record. This is only for socket types that support it like SocketType::SEQPACKET. |
MORE_DATA | Indicate that more data to send is to follow. This is supported for UDP and TCP sockets. Data from multiple |
NO_SIGNAL | Don't send a SIGPIPE signal if a stream oriented connection is closed. |
OUT_OF_BAND | Send or receive out of band data on protocols that support this. |
FASTOPEN | Attempt a TCP fast-open and send data in the SYNC like a combined connect() and write(). |
CLOEXEC | For SocketFamily::UNIX this requests for received file descriptors to carry the CLOEXEC flag. |
ERRQUEUE | Request extended error messages to be received as ancillary messages. |
PEEK | Return data from the beginning of the receive queue, without removing it from the queue. |
TRUNCATE | Return the real length of a packet or datagram, even if longer than the supplied buffer.
|
CTL_WAS_TRUNCATED | In recvmsg() |
WAIT_ALL | Block on receiving until all requested data has been received. This may still return with (short, or empty) reads if a signal is caught, an error or disconnect occurs or the next data is of a different type. This has no effect on datagram sockets. |
WAIT_FOR_ONE | Only for recvmsg(): Turn on DONT_WAIT after the first message has been received. |
ZEROCOPY | Operate in zerocopy I/O mode. In this mode the call will return immediately and the kernel will use the userspace buffer while the process continues to run. This of course opens the possibility for buffer corruption while the kernel still uses it. Kernel stability will not be affected, but the processed network data can suffer from this, naturally. This is currently only supported for TCP. See Linux kernel documentation When the kernel has finished transferring the data then an extended socket error message will be sent that can be obtained via To use this flag socket SocketOptions::setZeroCopy() needs to be set on the socket. |
Definition at line 168 of file types.hxx.
|
strong |
Representation of socket option levels.
These levels are used in the different socket options available for sockets. It is an ioctl like API that differentiates the available controls based on this option level.
Enumerator | |
---|---|
SOCKET | used for generic socket options and UNIX domain sockets |
Definition at line 90 of file types.hxx.
|
strong |
|
strong |
A socket's family setting.
The socket family determines the basic underlying mechanism used for the socket.
int
at the socket()
call but an unsigned short int
(sa_family_t
) within sockaddr
structures. Enumerator | |
---|---|
UNSPEC | Unknown / not specified. |
INET | IPv4. |
INET6 | IPv6. |
UNIX | UNIX domain sockets. |
NETLINK | Netlink sockets talking to the kernel. |
PACKET | Network device level packets (raw). |
|
strong |
Additional socket settings used during socket creation.
Enumerator | |
---|---|
CLOEXEC | the new socket fd will be automatically closed on exec(). |
NONBLOCK | the socket will be operating in non-blocking mode. |
|
strong |
Specific protocol to use on a socket.
This is usually specified as zero (DEFAULT) but some special sockets may offer different options.
For IP these numbers correspond to the protocols found in /etc/protocols.
For packet sockets these numbers correspond to the ethernet 802.3 ethernet protocol ID.
Enumerator | |
---|---|
DEFAULT | if used on a packet socket then no packets will be received (until bind). |
Definition at line 71 of file types.hxx.
|
strong |
A socket's type setting.
The socket type defines a socket's properties in more detail beyond what the SocketFamily already does. In particular it defines the kind of guarantees that the network communication using this socket will offer.
Enumerator | |
---|---|
ANY | can be used in AddressHints to return any socket types. |
STREAM | connection oriented, reliable, in-order, but no record boundaries. |
DGRAM | connection-less, unreliable, unordered with length limitation, keeps message boundaries. |
RAW | raw packets as seen on network device level. |
SEQPACKET | connection oriented, in-order, reliable with length limitation, keeps message boundaries. |
RDM | reliably delivered messages, datagrams without ordering, keeps boundaries. |
Definition at line 52 of file types.hxx.
|
strong |
|
constexpr |
|
constexpr |
|
constexpr |
|
constexpr |
|
constexpr |
|
constexpr |
|
constexpr |