8#include <cosmos/dso_export.h>
9#include <cosmos/net/SockOptBase.hxx>
10#include <cosmos/utils.hxx>
15template <SocketFamily family>
23template <OptLevel LEVEL>
35 WANT = IP_PMTUDISC_WANT,
37 DONT = IP_PMTUDISC_DONT,
41 PROBE = IP_PMTUDISC_PROBE,
63 enum class
ToS : uint8_t {
65 LOWDELAY = IPTOS_LOWDELAY,
67 THROUGHPUT = IPTOS_THROUGHPUT,
69 RELIABILITY = IPTOS_RELIABILITY,
71 MINCOST = IPTOS_MINCOST
83 setBoolOption(
OptName{IP_BIND_ADDRESS_NO_PORT}, on_off);
88 setBoolOption(
OptName{IP_FREEBIND}, on_off);
98 setBoolOption(
OptName{IP_HDRINCL}, on_off);
108 void setLocalPortRange(
const uint16_t lower_bound,
const uint16_t upper_bound);
110 void resetLocalPortRange() {
111 setLocalPortRange(0, 0);
121 std::pair<uint16_t, uint16_t> getLocalPortRange()
const;
129 return getIntOption(
OptName{IP_MTU});
134 const auto int_mode = getIntOption(
OptName{IP_MTU_DISCOVER});
140 setIntOption(
OptName{IP_MTU_DISCOVER}, to_integral(mode));
148 setBoolOption(
OptName{IP_NODEFRAG}, on_off);
153 setBoolOption(
OptName{IP_PASSSEC}, on_off);
158 setBoolOption(
OptName{IP_PKTINFO}, on_off);
168 setBoolOption(
OptName{IP_RECVERR}, on_off);
176 setBoolOption(
OptName{IP_RECVOPTS}, on_off);
186 setBoolOption(
OptName{IP_RETOPTS}, on_off);
197 setBoolOption(
OptName{IP_RECVORIGDSTADDR}, on_off);
206 setBoolOption(
OptName{IP_RECVTOS}, on_off);
216 setBoolOption(
OptName{IP_RECVTTL}, on_off);
226 setBoolOption(
OptName{IP_ROUTER_ALERT}, on_off);
230 void setTypeOfService(
const ToS tos);
233 ToS getTypeOfService()
const;
248 setBoolOption(
OptName{IP_TRANSPARENT}, on_off);
253 setIntOption(
OptName{IP_TTL}, ttl);
258 return getIntOption(
OptName{IP_TTL});
261 using SockOptBase::getPeerSec;
265 using IPOptBase::IPOptBase;
290 void setAddrForm(const SocketFamily family) {
291 setIntOption(
OptName{IPV6_ADDRFORM}, to_integral(family));
299 return getIntOption(
OptName{IPV6_MTU});
304 const auto int_mode = getIntOption(
OptName{IPV6_MTU_DISCOVER});
310 setIntOption(
OptName{IPV6_MTU_DISCOVER}, to_integral(mode));
319 setIntOption(
OptName{IPV6_MTU}, mtu);
328 setBoolOption(
OptName{IPV6_RECVPKTINFO}, on_off);
336 setBoolOption(
OptName{IPV6_RECVERR}, on_off);
341 setBoolOption(
OptName{IPV6_RTHDR}, on_off);
346 setBoolOption(
OptName{IPV6_AUTHHDR}, on_off);
351 setBoolOption(
OptName{IPV6_DSTOPTS}, on_off);
356 setBoolOption(
OptName{IPV6_HOPOPTS}, on_off);
365 setBoolOption(
OptName{IPV6_HOPLIMIT}, on_off);
373 setBoolOption(
OptName{IPV6_ROUTER_ALERT}, on_off);
382 setIntOption(
OptName{IPV6_UNICAST_HOPS}, hops);
393 setBoolOption(
OptName{IPV6_V6ONLY}, on_off);
398 using IPOptBase::IPOptBase;
IPv4 level socket option setter/getter helper.
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().
void setBindAddressNoPort(const bool on_off)
Don't reserve an ephemeral source port at bind() time if the port is set to 0.
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.
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.
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.
MTUDiscoveryMode
Discovery mode settings used in setMTUDiscoveryMode().
@ 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.
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.
OptName
Representation of socket option names.