libcosmos
Linux C++ System Programming Library
Loading...
Searching...
No Matches
SockOptBase.cxx
1// cosmos
2#include <cosmos/limits.hxx>
3#include <cosmos/net/SockOptBase.hxx>
5
6namespace cosmos {
7
8template <OptLevel LEVEL>
10 const auto val = getsockopt<int>(m_sock, M_LEVEL, name);
11 return val != 0;
12}
13
14template <OptLevel LEVEL>
15void SockOptBase<LEVEL>::setBoolOption(const OptName name, const bool val) {
16 setIntOption(name, int{val ? 1 : 0});
17}
18
19template <OptLevel LEVEL>
21 return getsockopt<int>(m_sock, M_LEVEL, name);
22}
23
24template <OptLevel LEVEL>
25void SockOptBase<LEVEL>::setIntOption(const OptName name, const int val) {
26 setsockopt(m_sock, M_LEVEL, name, val);
27}
29template <OptLevel LEVEL>
30std::string SockOptBase<LEVEL>::getStringOption(const OptName name, size_t max_len) const {
31 std::string ret(max_len, '\0');
32 max_len = getsockopt(m_sock, M_LEVEL, name, ret.data(), ret.size());
33 ret.resize(max_len - 1);
34 return ret;
35}
37template <OptLevel LEVEL>
39 setsockopt(m_sock, M_LEVEL, name, str.raw(), str.length());
40}
41
42template <OptLevel LEVEL>
43std::string SockOptBase<LEVEL>::getPeerSec() const {
44 std::string ret;
45 ret.resize(cosmos::max::NAME);
46
47 socklen_t length;
48
49 while (true) {
50 try {
51 length = getsockopt(m_sock, M_LEVEL, OptName{SO_PEERSEC}, ret.data(), ret.size());
52
53 if (ret[length-1] == '\0')
54 // it is not guaranteed that the string is
55 // null terminated, thus check this
56 length--;
57
58 ret.resize(length);
59 return ret;
60 } catch (const RangeError &ex) {
61 if (!ex.requiredLengthKnown() || ex.requiredLength() < ret.size()) {
62 throw;
63 }
64
65 // retry with larger size
66 ret.resize(ret.size());
67 }
68 }
69}
70
71// explicit template instantiations for exporting the template implementation
72template class SockOptBase<OptLevel::SOCKET>;
73template class SockOptBase<OptLevel::IP>;
74template class SockOptBase<OptLevel::IPV6>;
75template class SockOptBase<OptLevel::TCP>;
76template class SockOptBase<OptLevel::UDP>;
77
78} // end ns
Specialized exception type for out of range errors reported by the OS.
void setStringOption(const OptName name, const SysString str)
Set a null terminated string option.
void setBoolOption(const OptName name, const bool val)
Set a boolean style option.
int getIntOption(const OptName name) const
Return an integer option.
std::string getPeerSec() const
Returns the labeled IPSEC or NetLabel of the peer.
void setIntOption(const OptName name, const int val)
Set an integer option.
bool getBoolOption(const OptName name) const
Return a boolean style option.
std::string getStringOption(const OptName name, size_t max_len) const
Return a null terminated string option.
OptName
Representation of socket option names.
Definition types.hxx:103
Wrapper type around a C-style string for use with system APIs.
Definition SysString.hxx:33