libcosmos
Linux C++ System Programming Library
Loading...
Searching...
No Matches
types.hxx
Go to the documentation of this file.
1#pragma once
2
3// C++
4#include <array>
5
6// Linux
7#include <net/if.h>
8// LOWER_UP and higher InterfaceFlag bits are only found in the kernel
9// headers, not in net/if.h. The latter conflicts with the kernel header, if
10// pulled in in the wrong order.
11#include <linux/if_arp.h>
12#include <netdb.h>
13#include <netinet/in.h>
14#include <netinet/ip.h>
15#include <sys/socket.h>
16
17// cosmos
18#include <cosmos/BitMask.hxx>
19#include <cosmos/net/byte_order.hxx>
20
27namespace cosmos {
28
30
37enum class SocketFamily : int {
38 UNSPEC = AF_UNSPEC,
39 INET = AF_INET,
40 INET6 = AF_INET6,
41 UNIX = AF_UNIX,
42 NETLINK = AF_NETLINK,
43 PACKET = AF_PACKET,
44};
45
47
52enum class SocketType : int {
53 ANY = 0,
54 STREAM = SOCK_STREAM,
55 DGRAM = SOCK_DGRAM,
56 RAW = SOCK_RAW,
57 SEQPACKET = SOCK_SEQPACKET,
58 RDM = SOCK_RDM,
59};
60
62
71enum class SocketProtocol : int {
72 DEFAULT = 0,
73};
74
76enum class SocketFlag : int {
77 CLOEXEC = SOCK_CLOEXEC,
78 NONBLOCK = SOCK_NONBLOCK,
79};
80
83
85
90enum class OptLevel : int {
91 SOCKET = SOL_SOCKET,
92 IP = IPPROTO_IP,
93 IPV6 = IPPROTO_IPV6,
94 TCP = IPPROTO_TCP,
95 UDP = IPPROTO_UDP
96};
97
99
103enum class OptName : int {};
104
106constexpr size_t MAX_NET_INTERFACE_NAME = IFNAMSIZ;
107
109constexpr size_t MAX_HOSTNAME = NI_MAXHOST;
111constexpr size_t MAX_SERVICE = NI_MAXSERV;
112
114
119enum class InterfaceIndex : int {
120 INVALID = 0,
121 ANY = 0,
122};
123
125class IPPort : public net::NetInt16 {
127};
128
133
135constexpr net::HostInt32 IP4_LOOPBACK_ADDR{INADDR_LOOPBACK};
137constexpr net::HostInt32 IP4_ANY_ADDR{INADDR_ANY};
139constexpr net::HostInt32 IP4_BROADCAST_ADDR{INADDR_BROADCAST};
140
142
148 public std::array<uint8_t, 16> {
149};
150
151/*
152 * NOTE: there exist preprocessor defines for these IN6ADDR_ANY_INIT and
153 * `in6_addr_any` but it seems easier to just redefine them and avoid all the
154 * struct handling.
155 */
156
158constexpr IP6RawAddress IP6_LOOPBACK{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1};
161
164 public std::array<uint8_t, 6> {
165};
166
168enum class MessageFlag : int {
170
175 CONFIRM = MSG_CONFIRM,
177
181 DONT_ROUTE = MSG_DONTROUTE,
183
188 DONT_WAIT = MSG_DONTWAIT,
190
194 END_OF_RECORD = MSG_EOR,
196
202 MORE_DATA = MSG_MORE,
204 NO_SIGNAL = MSG_NOSIGNAL,
206 OUT_OF_BAND = MSG_OOB,
208 FASTOPEN = MSG_FASTOPEN,
210 CLOEXEC = MSG_CMSG_CLOEXEC,
212 ERRQUEUE = MSG_ERRQUEUE,
214 PEEK = MSG_PEEK,
216
221 TRUNCATE = MSG_TRUNC,
223 CTL_WAS_TRUNCATED = MSG_CTRUNC,
225
230 WAIT_ALL = MSG_WAITALL,
232 WAIT_FOR_ONE = MSG_WAITFORONE,
234
251 ZEROCOPY = MSG_ZEROCOPY
252};
253
254using MessageFlags = BitMask<MessageFlag>;
255
256// hint: the SCM prefix stands for socket-level control message
257
259enum class UnixMessage : int {
260 RIGHTS = SCM_RIGHTS,
261 CREDENTIALS = SCM_CREDENTIALS
262 //SECURITY = SCM_SECURITY // the define for this seems to be missing?
263};
264
266enum class IP4Message : int {
268 RECVERR = IP_RECVERR,
270 PKTINFO = IP_PKTINFO,
272 ORIGDSTADDR = IP_ORIGDSTADDR,
274 TOS = IP_TOS,
276 TTL = IP_TTL,
277};
278
280enum class IP6Message : int {
281 RECVERR = IPV6_RECVERR,
282 PKTINFO = IPV6_PKTINFO
283};
284
285} // end ns
A typesafe bit mask representation using class enums.
Definition BitMask.hxx:19
A 32-bit IPv4 binary address in network byte order.
Definition types.hxx:130
A 16-bit IP port in network byte order.
Definition types.hxx:125
An endianness aware unsigned integer.
constexpr EndianNumber()
Construct a zero-initialized integer.
@ TRUNCATE
If write access was requested and is allowed then an already existing file object is truncated to zer...
@ NONBLOCK
Attempt to open the file in non-blocking mode causing I/O operations not to block.
InterfaceIndex
A network device interface index.
Definition types.hxx:119
constexpr net::HostInt32 IP4_BROADCAST_ADDR
The IPv4 broadcast address to reach all hosts in the neighborhood.
Definition types.hxx:139
constexpr size_t MAX_HOSTNAME
Maximum length of a DNS hostname.
Definition types.hxx:109
IP6Message
Ancillary message types available for IPv6 based sockets.
Definition types.hxx:280
SocketProtocol
Specific protocol to use on a socket.
Definition types.hxx:71
@ DEFAULT
if used on a packet socket then no packets will be received (until bind).
OptLevel
Representation of socket option levels.
Definition types.hxx:90
@ SOCKET
used for generic socket options and UNIX domain sockets
SocketFamily
A socket's family setting.
Definition types.hxx:37
@ PACKET
Network device level packets (raw).
@ UNIX
UNIX domain sockets.
@ UNSPEC
Unknown / not specified.
@ NETLINK
Netlink sockets talking to the kernel.
MessageFlag
Flags available for the send() and recv() family of socket I/O functions.
Definition types.hxx:168
@ DONT_ROUTE
Don't use a gateway to send out the packet, send only to directly connected networks.
@ NO_SIGNAL
Don't send a SIGPIPE signal if a stream oriented connection is closed.
@ WAIT_FOR_ONE
Only for recvmsg(): Turn on DONT_WAIT after the first message has been received.
@ ZEROCOPY
Operate in zerocopy I/O mode.
@ OUT_OF_BAND
Send or receive out of band data on protocols that support this.
@ PEEK
Return data from the beginning of the receive queue, without removing it from the queue.
@ DONT_WAIT
Use non-blocking semantics for the I/O call.
@ MORE_DATA
Indicate that more data to send is to follow.
@ CTL_WAS_TRUNCATED
In recvmsg() msg_flags this indicates that some control data was discarded due to lack of space in th...
@ ERRQUEUE
Request extended error messages to be received as ancillary messages.
@ CONFIRM
Inform the link layer that a successful reply was received from the other side.
@ WAIT_ALL
Block on receiving until all requested data has been received.
@ FASTOPEN
Attempt a TCP fast-open and send data in the SYNC like a combined connect() and write().
@ END_OF_RECORD
Terminates a record.
SocketFlag
Additional socket settings used during socket creation.
Definition types.hxx:76
constexpr net::HostInt32 IP4_ANY_ADDR
The any IPv4 address specifying all possible addresses or a "don't care" address for automatic assign...
Definition types.hxx:137
constexpr IP6RawAddress IP6_LOOPBACK
The binary loopback IPv6 address ::1 referring to the localhost.
Definition types.hxx:158
SocketType
A socket's type setting.
Definition types.hxx:52
@ RDM
reliably delivered messages, datagrams without ordering, keeps boundaries.
@ STREAM
connection oriented, reliable, in-order, but no record boundaries.
@ RAW
raw packets as seen on network device level.
@ DGRAM
connection-less, unreliable, unordered with length limitation, keeps message boundaries.
@ ANY
can be used in AddressHints to return any socket types.
@ SEQPACKET
connection oriented, in-order, reliable with length limitation, keeps message boundaries.
constexpr size_t MAX_SERVICE
Maximum length of a port service name (from /etc/services).
Definition types.hxx:111
OptName
Representation of socket option names.
Definition types.hxx:103
constexpr net::HostInt32 IP4_LOOPBACK_ADDR
The loopback IPv4 address referring to the localhost.
Definition types.hxx:135
constexpr IP6RawAddress IP6_ANY_ADDR
The binary IPv6 "any" address :: specifying all possible addresses or a "don't care" address for auto...
Definition types.hxx:160
constexpr size_t MAX_NET_INTERFACE_NAME
Maximum length of a network device name in bytes.
Definition types.hxx:106
UnixMessage
Ancillary message types available for UNIX domain sockets.
Definition types.hxx:259
@ RIGHTS
file descriptor passing.
IP4Message
Ancillary message types available for IPv4 based sockets.
Definition types.hxx:266
A 128-bit IPv6 address.
Definition types.hxx:148
A 48-bit ethernet 802.3 MAC address.
Definition types.hxx:164