libcosmos
Linux C++ System Programming Library
Loading...
Searching...
No Matches
cosmos::InterfaceAddress Class Reference

A single network interface address. More...

#include <InterfaceAddress.hxx>

+ Inheritance diagram for cosmos::InterfaceAddress:

Public Member Functions

 InterfaceAddress (const InterfaceAddress &)=delete
 
SysString ifname () const
 Returns the unique string that identifies the network device that this address belongs to.
 
InterfaceFlags flags () const
 Returns the current interface status flags.
 
SocketFamily family () const
 Returns the SocketFamily this address is about.
 
bool hasAddress () const
 Returns whether an address is available in this entry.
 
bool hasNetmask () const
 Returns whether a netmask address is available in this entry.
 
bool hasBroadcastAddress () const
 Returns whether a broadcast address is available in this entry.
 
bool hasPointToPointDest () const
 Returns whether a point-to-point destination is available in this entry.
 
bool isIP4 () const
 Returns whether the interface address is an IPv4 address.
 
bool isIP6 () const
 Returns whether the interface address is an IPv6 address.
 
bool isLinkLayer () const
 Returns whether the interface address is a LinkLayerAddress.
 
std::optional< cosmos::IP4AddressaddrAsIP4 () const
 If this is an IPv4 address, return it.
 
std::optional< cosmos::IP6AddressaddrAsIP6 () const
 If this is an IPv6 address, return it.
 
std::optional< cosmos::LinkLayerAddressaddrAsLLA () const
 If this is a link layer address, return it.
 
std::optional< cosmos::IP4AddressnetmaskAsIP4 () const
 If an IPv4 netmask is available, return it.
 
std::optional< cosmos::IP6AddressnetmaskAsIP6 () const
 If an IPv6 netmask is available, return it.
 
std::optional< cosmos::IP4AddressbroadcastAsIP4 () const
 If an IPv4 broadcast address is available, return it.
 
std::optional< cosmos::IP4AddresspointToPointAsIP4 () const
 If an IPv4 point-to-point destination is available, return it.
 

Detailed Description

A single network interface address.

Instances of this type can be obtained from InterfaceAddressList. The type describes a single local network interface address of a specific SocketFamily. Typically each network interface supports multiple families like IPv4/IPv6 and also lower level families like packet socket addresses (Ethernet level).

Depending on the SocketFamily of the address and whether an address is actually assigned to the network interface, some of the addresses might be unavailable. Various functions like hasAddress() need to be used to determine whether a certain kind of interface address is stored at all.

Definition at line 67 of file InterfaceAddress.hxx.

Member Function Documentation

◆ addrAsIP4()

std::optional< cosmos::IP4Address > cosmos::InterfaceAddress::addrAsIP4 ( ) const
inline

If this is an IPv4 address, return it.

Definition at line 146 of file InterfaceAddress.hxx.

146 {
147 if (!isIP4())
148 return std::nullopt;
149
150 return cosmos::IP4Address{*(reinterpret_cast<sockaddr_in*>(ifa_addr))};
151 }
A 32-bit IPv4 address and 16 bit port number for use with SocketFamily::INET sockets.
bool isIP4() const
Returns whether the interface address is an IPv4 address.

◆ addrAsIP6()

std::optional< cosmos::IP6Address > cosmos::InterfaceAddress::addrAsIP6 ( ) const
inline

If this is an IPv6 address, return it.

Definition at line 154 of file InterfaceAddress.hxx.

154 {
155 if (!isIP6())
156 return std::nullopt;
157
158 return cosmos::IP6Address{*(reinterpret_cast<sockaddr_in6*>(ifa_addr))};
159 }
A 128 bit IPv6 address and 16-bit port number plus some IPv6 specific extra fields.
bool isIP6() const
Returns whether the interface address is an IPv6 address.

◆ addrAsLLA()

std::optional< cosmos::LinkLayerAddress > cosmos::InterfaceAddress::addrAsLLA ( ) const
inline

If this is a link layer address, return it.

Definition at line 162 of file InterfaceAddress.hxx.

162 {
163 if (!isLinkLayer())
164 return std::nullopt;
165
166 return cosmos::LinkLayerAddress{*(reinterpret_cast<sockaddr_ll*>(ifa_addr))};
167 }
bool isLinkLayer() const
Returns whether the interface address is a LinkLayerAddress.
A link layer (network layer 2) socket address.

◆ broadcastAsIP4()

std::optional< cosmos::IP4Address > cosmos::InterfaceAddress::broadcastAsIP4 ( ) const
inline

If an IPv4 broadcast address is available, return it.

Definition at line 186 of file InterfaceAddress.hxx.

186 {
187 if (!hasBroadcastAddress() || SocketFamily{ifa_broadaddr->sa_family} != SocketFamily::INET)
188 return std::nullopt;
189
190 return cosmos::IP4Address{*(reinterpret_cast<sockaddr_in*>(ifa_broadaddr))};
191 }
bool hasBroadcastAddress() const
Returns whether a broadcast address is available in this entry.

◆ family()

SocketFamily cosmos::InterfaceAddress::family ( ) const
inline

Returns the SocketFamily this address is about.

If no address is stored in this entry then SocketFamily::UNSPEC is returned here.

Definition at line 93 of file InterfaceAddress.hxx.

93 {
94 if (!hasAddress())
95 return SocketFamily::UNSPEC;
96
97 return SocketFamily{ifa_addr->sa_family};
98 }
bool hasAddress() const
Returns whether an address is available in this entry.
SocketFamily
A socket's family setting.
Definition types.hxx:37

◆ flags()

InterfaceFlags cosmos::InterfaceAddress::flags ( ) const
inline

Returns the current interface status flags.

Definition at line 84 of file InterfaceAddress.hxx.

84 {
85 return InterfaceFlags{ifa_flags};
86 }

◆ hasAddress()

bool cosmos::InterfaceAddress::hasAddress ( ) const
inline

Returns whether an address is available in this entry.

Definition at line 101 of file InterfaceAddress.hxx.

101 {
102 return ifa_addr != nullptr;
103 }

◆ hasBroadcastAddress()

bool cosmos::InterfaceAddress::hasBroadcastAddress ( ) const
inline

Returns whether a broadcast address is available in this entry.

A broadcast address is only available for IPv4 SocketFamily::INET sockets.

Definition at line 115 of file InterfaceAddress.hxx.

115 {
116 if (!flags()[InterfaceFlag::BROADCAST])
117 return false;
118
119 return ifa_broadaddr != nullptr;
120 }
InterfaceFlags flags() const
Returns the current interface status flags.

◆ hasNetmask()

bool cosmos::InterfaceAddress::hasNetmask ( ) const
inline

Returns whether a netmask address is available in this entry.

Definition at line 106 of file InterfaceAddress.hxx.

106 {
107 return ifa_netmask != nullptr;
108 }

◆ hasPointToPointDest()

bool cosmos::InterfaceAddress::hasPointToPointDest ( ) const
inline

Returns whether a point-to-point destination is available in this entry.

Definition at line 123 of file InterfaceAddress.hxx.

123 {
124 if (!flags()[InterfaceFlag::POINTOPOINT])
125 return false;
126
127 return ifa_dstaddr != nullptr;
128 }

◆ ifname()

SysString cosmos::InterfaceAddress::ifname ( ) const
inline

Returns the unique string that identifies the network device that this address belongs to.

Definition at line 79 of file InterfaceAddress.hxx.

79 {
80 return ifa_name;
81 }

◆ isIP4()

bool cosmos::InterfaceAddress::isIP4 ( ) const
inline

Returns whether the interface address is an IPv4 address.

Definition at line 131 of file InterfaceAddress.hxx.

131 {
132 return family() == SocketFamily::INET;
133 }
SocketFamily family() const
Returns the SocketFamily this address is about.

◆ isIP6()

bool cosmos::InterfaceAddress::isIP6 ( ) const
inline

Returns whether the interface address is an IPv6 address.

Definition at line 136 of file InterfaceAddress.hxx.

136 {
137 return family() == SocketFamily::INET6;
138 }

◆ isLinkLayer()

bool cosmos::InterfaceAddress::isLinkLayer ( ) const
inline

Returns whether the interface address is a LinkLayerAddress.

Definition at line 141 of file InterfaceAddress.hxx.

141 {
142 return family() == SocketFamily::PACKET;
143 }

◆ netmaskAsIP4()

std::optional< cosmos::IP4Address > cosmos::InterfaceAddress::netmaskAsIP4 ( ) const
inline

If an IPv4 netmask is available, return it.

Definition at line 170 of file InterfaceAddress.hxx.

170 {
171 if (!hasNetmask() || SocketFamily{ifa_netmask->sa_family} != SocketFamily::INET)
172 return std::nullopt;
173
174 return cosmos::IP4Address{*(reinterpret_cast<sockaddr_in*>(ifa_netmask))};
175 }
bool hasNetmask() const
Returns whether a netmask address is available in this entry.

◆ netmaskAsIP6()

std::optional< cosmos::IP6Address > cosmos::InterfaceAddress::netmaskAsIP6 ( ) const
inline

If an IPv6 netmask is available, return it.

Definition at line 178 of file InterfaceAddress.hxx.

178 {
179 if (!hasNetmask() || SocketFamily{ifa_netmask->sa_family} != SocketFamily::INET6)
180 return std::nullopt;
181
182 return cosmos::IP6Address{*(reinterpret_cast<sockaddr_in6*>(ifa_netmask))};
183 }

◆ pointToPointAsIP4()

std::optional< cosmos::IP4Address > cosmos::InterfaceAddress::pointToPointAsIP4 ( ) const
inline

If an IPv4 point-to-point destination is available, return it.

Definition at line 194 of file InterfaceAddress.hxx.

194 {
195 if (!hasPointToPointDest() || SocketFamily{ifa_broadaddr->sa_family} != SocketFamily::INET)
196 return std::nullopt;
197
198 return cosmos::IP4Address{*(reinterpret_cast<sockaddr_in*>(ifa_dstaddr))};
199 }
bool hasPointToPointDest() const
Returns whether a point-to-point destination is available in this entry.

The documentation for this class was generated from the following file: