libcosmos
Linux C++ System Programming Library
Loading...
Searching...
No Matches
sockopts.hxx
Go to the documentation of this file.
1#pragma once
2
3// cosmos
4#include <cosmos/error/ApiError.hxx>
5#include <cosmos/error/RangeError.hxx>
6#include <cosmos/error/RuntimeError.hxx>
7#include <cosmos/fs/FileDescriptor.hxx>
8#include <cosmos/utils.hxx>
9
10namespace cosmos {
11
18using cosmos::to_integral;
19
20namespace {
21
23 template <typename T>
24 socklen_t getsockopt(
25 FileDescriptor sock, const OptLevel lvl,
26 const OptName name, T &out) {
27 static_assert(std::is_pointer<T>::value != true,
28 "this doesn't work for pointer types");
29 socklen_t len = sizeof(T);
30
31 const auto res = ::getsockopt(
32 to_integral(sock.raw()),
33 to_integral(lvl),
34 to_integral(name),
35 &out,
36 &len);
37
38 if (res != 0) {
39 if (cosmos::get_errno() == cosmos::Errno::RANGE) {
40 /*
41 * some options indicate with this error that
42 * that a larger buffer is needed. Throw a
43 * special error containing the suggested
44 * length.
45 */
46 cosmos_throw (RangeError("getsockopt", len));
47 } else {
48 cosmos_throw (ApiError("getsockopt()"));
49 }
50 }
51
52 return len;
53 }
54
56 template <typename T>
57 T getsockopt(
58 FileDescriptor sock, const OptLevel lvl,
59 const OptName name) {
60 T out;
61 const auto len = getsockopt(sock, lvl, name, out);
62 // there exist options where the returned data is dynamic in
63 // size, so we cannot judge generically whether a short option
64 // len is okay or not.
65 if (len != sizeof(T)) {
66 cosmos_throw (RuntimeError("short getsockopt read"));
67 }
68
69 return out;
70 }
71
73 template <typename T>
74 socklen_t getsockopt(
75 FileDescriptor sock, const OptLevel lvl,
76 const OptName name, T *ptr, socklen_t ptr_len) {
77
78 const auto res = ::getsockopt(
79 to_integral(sock.raw()),
80 to_integral(lvl),
81 to_integral(name),
82 ptr,
83 &ptr_len);
84
85 if (res != 0) {
86 cosmos_throw (ApiError("getsockopt()"));
87 }
88
89 return ptr_len;
90 }
91
93 template <typename T>
94 void setsockopt(
95 FileDescriptor sock, const OptLevel lvl,
96 const OptName name, const T val) {
97 static_assert(std::is_pointer<T>::value != true,
98 "this doesn't work for pointer types");
99 const auto res = ::setsockopt(
100 to_integral(sock.raw()),
101 to_integral(lvl),
102 to_integral(name),
103 &val,
104 socklen_t{sizeof(T)});
105
106 if (res != 0) {
107 cosmos_throw (ApiError("setsockopt()"));
108 }
109 }
110
112 template <typename T>
113 void setsockopt(
114 FileDescriptor sock, const OptLevel lvl,
115 const OptName name, const T *ptr, socklen_t len) {
116 const auto res = ::setsockopt(
117 to_integral(sock.raw()),
118 to_integral(lvl),
119 to_integral(name),
120 ptr,
121 len);
122
123 if (res != 0) {
124 cosmos_throw (ApiError("setsockopt()"));
125 }
126 }
127
128} // end anon ns
129} // end ns