libcosmos
Linux C++ System Programming Library
Loading...
Searching...
No Matches
IPOptions.hxx
1#pragma once
2
3// C++
4#include <string>
5#include <utility>
6
7// cosmos
8#include <cosmos/dso_export.h>
9#include <cosmos/net/SockOptBase.hxx>
10#include <cosmos/utils.hxx>
11
12namespace cosmos {
13
14// fwd. decl. for friend declarations below
15template <SocketFamily family>
16class IPSocketT;
17
19
23template <OptLevel LEVEL>
24class IPOptBase :
25 public SockOptBase<LEVEL> {
26public: // types
27
29
33 enum class MTUDiscoveryMode : int {
35 WANT = IP_PMTUDISC_WANT,
37 DONT = IP_PMTUDISC_DONT,
39 DO = IP_PMTUDISC_DO,
41 PROBE = IP_PMTUDISC_PROBE,
42 };
43
44protected: // functions
45
46 using SockOptBase<LEVEL>::SockOptBase;
47};
48
50
57class COSMOS_API IP4Options :
58 public IPOptBase<OptLevel::IP> {
59 friend class IPSocketT<SocketFamily::INET>;
60public: // types
61
63 enum class ToS : uint8_t {
65 LOWDELAY = IPTOS_LOWDELAY,
67 THROUGHPUT = IPTOS_THROUGHPUT,
69 RELIABILITY = IPTOS_RELIABILITY,
71 MINCOST = IPTOS_MINCOST
72 };
73
74public: // functions
75
77
82 void setBindAddressNoPort(const bool on_off) {
83 setBoolOption(OptName{IP_BIND_ADDRESS_NO_PORT}, on_off);
84 }
85
87 void setFreeBind(const bool on_off) {
88 setBoolOption(OptName{IP_FREEBIND}, on_off);
89 }
90
92
97 void setHeaderIncluded(const bool on_off) {
98 setBoolOption(OptName{IP_HDRINCL}, on_off);
99 }
100
102
108 void setLocalPortRange(const uint16_t lower_bound, const uint16_t upper_bound);
109
110 void resetLocalPortRange() {
111 setLocalPortRange(0, 0);
112 }
113
115
121 std::pair<uint16_t, uint16_t> getLocalPortRange() const;
122
124
128 int getMTU() const {
129 return getIntOption(OptName{IP_MTU});
130 }
131
134 const auto int_mode = getIntOption(OptName{IP_MTU_DISCOVER});
135 return MTUDiscoveryMode{int_mode};
136 }
137
140 setIntOption(OptName{IP_MTU_DISCOVER}, to_integral(mode));
141 }
142
144
147 void setNoDefrag(const bool on_off) {
148 setBoolOption(OptName{IP_NODEFRAG}, on_off);
149 }
150
152 void setPassSecurity(const bool on_off) {
153 setBoolOption(OptName{IP_PASSSEC}, on_off);
154 }
155
157 void setPacketInfo(const bool on_off) {
158 setBoolOption(OptName{IP_PKTINFO}, on_off);
159 }
160
162
167 void setReceiveErrors(const bool on_off) {
168 setBoolOption(OptName{IP_RECVERR}, on_off);
169 }
170
172
175 void setReceiveOptions(const bool on_off) {
176 setBoolOption(OptName{IP_RECVOPTS}, on_off);
177 }
178
180
185 void setReceiveRawOptions(const bool on_off) {
186 setBoolOption(OptName{IP_RETOPTS}, on_off);
187 }
188
190
196 void setReceiveOrigDestAddr(const bool on_off) {
197 setBoolOption(OptName{IP_RECVORIGDSTADDR}, on_off);
198 }
199
201
205 void setReceiveTOS(const bool on_off) {
206 setBoolOption(OptName{IP_RECVTOS}, on_off);
207 }
208
210
215 void setReceiveTTL(const bool on_off) {
216 setBoolOption(OptName{IP_RECVTTL}, on_off);
217 }
218
220
225 void setRouterAlert(const bool on_off) {
226 setBoolOption(OptName{IP_ROUTER_ALERT}, on_off);
227 }
228
230 void setTypeOfService(const ToS tos);
231
233 ToS getTypeOfService() const;
234
236
247 void setTransparentProxying(const bool on_off) {
248 setBoolOption(OptName{IP_TRANSPARENT}, on_off);
249 }
250
252 void setTimeToLive(const int ttl) {
253 setIntOption(OptName{IP_TTL}, ttl);
254 }
255
257 int getTimeToLive() const {
258 return getIntOption(OptName{IP_TTL});
259 }
260
261 using SockOptBase::getPeerSec;
262
263protected: // functions
264
265 using IPOptBase::IPOptBase;
266};
267
269
276class COSMOS_API IP6Options :
277 public IPOptBase<OptLevel::IPV6> {
278 friend class IPSocketT<SocketFamily::INET6>;
279public: // functions
280
282
290 void setAddrForm(const SocketFamily family) {
291 setIntOption(OptName{IPV6_ADDRFORM}, to_integral(family));
292 }
293
295
298 int getMTU() const {
299 return getIntOption(OptName{IPV6_MTU});
300 }
301
304 const auto int_mode = getIntOption(OptName{IPV6_MTU_DISCOVER});
305 return MTUDiscoveryMode{int_mode};
306 }
307
310 setIntOption(OptName{IPV6_MTU_DISCOVER}, to_integral(mode));
311 }
312
314
318 void setMTU(const int mtu) {
319 setIntOption(OptName{IPV6_MTU}, mtu);
320 }
321
323
327 void setReceivePktInfo(const bool on_off) {
328 setBoolOption(OptName{IPV6_RECVPKTINFO}, on_off);
329 }
330
332
335 void setReceiveErrors(const bool on_off) {
336 setBoolOption(OptName{IPV6_RECVERR}, on_off);
337 }
338
340 void setReceiveRoutingHeader(const bool on_off) {
341 setBoolOption(OptName{IPV6_RTHDR}, on_off);
342 }
343
345 void setReceiveAuthHeader(const bool on_off) {
346 setBoolOption(OptName{IPV6_AUTHHDR}, on_off);
347 }
348
350 void setReceiveDestOpts(const bool on_off) {
351 setBoolOption(OptName{IPV6_DSTOPTS}, on_off);
352 }
353
355 void setReceiveHopOpts(const bool on_off) {
356 setBoolOption(OptName{IPV6_HOPOPTS}, on_off);
357 }
358
360
364 void setReceiveHopLimit(const bool on_off) {
365 setBoolOption(OptName{IPV6_HOPLIMIT}, on_off);
366 }
367
369
372 void setRouterAlert(const bool on_off) {
373 setBoolOption(OptName{IPV6_ROUTER_ALERT}, on_off);
374 }
375
377
381 void setUnicastHops(const int hops) {
382 setIntOption(OptName{IPV6_UNICAST_HOPS}, hops);
383 }
384
386
392 void setV6Only(const bool on_off) {
393 setBoolOption(OptName{IPV6_V6ONLY}, on_off);
394 }
395
396protected: // functions
397
398 using IPOptBase::IPOptBase;
399};
400
401}; // end ns
IPv4 level socket option setter/getter helper.
Definition IPOptions.hxx:58
MTUDiscoveryMode getMTUDiscoveryMode() const
Gets the current MTU discovery mode setting for the socket.
void setRouterAlert(const bool on_off)
Pass to-be-forwarded packets with the IP router alert option set to this socket.
ToS
IP type-of-service field values as used in setTypeOfService().
Definition IPOptions.hxx:63
void setBindAddressNoPort(const bool on_off)
Don't reserve an ephemeral source port at bind() time if the port is set to 0.
Definition IPOptions.hxx:82
void setReceiveRawOptions(const bool on_off)
Enable reception of raw incoming IP options.
int getTimeToLive() const
Returns the current time-to-live field setting for this socket.
void setReceiveTOS(const bool on_off)
Enable reception of the IP_TOS ancillary message in recvmsg().
void setTransparentProxying(const bool on_off)
Enable transparent proxying on this socket.
void setPassSecurity(const bool on_off)
Enable receiving of labeled IPSEC or NetLabel security context in revmsg().
void setReceiveTTL(const bool on_off)
Enable reception of IP_TTL control messages in recvmsg().
void setMTUDiscoveryMode(const MTUDiscoveryMode mode)
Sets a new MTU discovery mode setting.
void setReceiveOptions(const bool on_off)
Enable reception of incoming IP options in IP_OPTIONS control messages.
void setFreeBind(const bool on_off)
Allow to bind() to a non-local or not yet existing address.
Definition IPOptions.hxx:87
void setPacketInfo(const bool on_off)
Enable receiving of IP_PKTINFO ancillary messages in revmsg().
void setNoDefrag(const bool on_off)
Disable reassembly of outgoing packets in the netfilter layer.
void setReceiveOrigDestAddr(const bool on_off)
Enable reception of the IP_ORIGDSTADDR ancillary message in recvmsg().
void setHeaderIncluded(const bool on_off)
Let userspace supply an IP header in front of the user data when sending.
Definition IPOptions.hxx:97
void setReceiveErrors(const bool on_off)
Enable extended reliable error reporting for datagram sockets.
int getMTU() const
Returns the currently known path MTU for the socket.
void setTimeToLive(const int ttl)
Sets the time-to-live field that is used in every packet sent from this socket.
IPv6 level socket option setter/getter helper.
void setV6Only(const bool on_off)
Restrict the socket to sending and receiving IPv6 packets only.
int getMTU() const
Returns the currently known path MTU of the socket.
void setMTUDiscoveryMode(const MTUDiscoveryMode mode)
Sets a new MTU discovery mode setting.
void setMTU(const int mtu)
Sets the MTU used for the socket.
void setReceiveAuthHeader(const bool on_off)
Enable delivery of auth header control messages.
void setReceivePktInfo(const bool on_off)
Enable delivery of IPV6_PKTINFO control messages on incoming datagrams.
MTUDiscoveryMode getMTUDiscoveryMode() const
Gets the current MTU discovery mode setting for the socket.
void setRouterAlert(const bool on_off)
Pass to-be forwarded packets with the IP router alert option set to this socket.
void setReceiveRoutingHeader(const bool on_off)
Enable delivery of routing header control messages.
void setUnicastHops(const int hops)
Set the unicast hop limit for the socket.
void setReceiveDestOpts(const bool on_off)
Enable delivery of of destination options control messages.
void setReceiveHopLimit(const bool on_off)
Enable delivery of hop limit control messages.
void setReceiveErrors(const bool on_off)
Enable extended reliable error reporting for datagram sockets.
void setReceiveHopOpts(const bool on_off)
Enable delivery of hop options control messages.
Base class for IP4Options and IP6Options.
Definition IPOptions.hxx:25
MTUDiscoveryMode
Discovery mode settings used in setMTUDiscoveryMode().
Definition IPOptions.hxx:33
@ PROBE
set dont-fragment flag but ignore current MTU
@ WANT
use per-route automatic settings
@ DO
always do MTU discovery
@ DONT
never do MTU path discovery
Base class for IPv4 or IPv6 based sockets.
Definition IPSocket.hxx:21
Base class for Socket option helpers for different OptLevels.
SockOptBase(FileDescriptor fd)
Perform socket options on the given file descriptor.
SocketFamily
A socket's family setting.
Definition types.hxx:37
OptName
Representation of socket option names.
Definition types.hxx:103