libcosmos
Linux C++ System Programming Library
Loading...
Searching...
No Matches
network.cxx
1// Linux
2#include <net/if.h>
3
4// cosmos
5#include <cosmos/error/ApiError.hxx>
6#include <cosmos/error/RuntimeError.hxx>
7#include <cosmos/net/UnixConnection.hxx>
8#include <cosmos/net/network.hxx>
9#include <cosmos/utils.hxx>
10
11namespace cosmos::net {
12
13namespace {
14 using cosmos::to_integral;
15 std::pair<FileDescriptor, FileDescriptor> create_socket_pair(const SocketFamily family,
16 const SocketType type, const SocketFlags flags, const SocketProtocol protocol = SocketProtocol{0}) {
17 int fds[2];
18 const auto res = ::socketpair(to_integral(family), to_integral(type) | flags.raw(), to_integral(protocol), fds);
19 if (res != 0) {
20 cosmos_throw(ApiError("socketpair()"));
21 }
22
23 return {FileDescriptor{FileNum{fds[0]}}, FileDescriptor{FileNum{fds[1]}}};
24 }
25}
26
27std::pair<UnixConnection, UnixConnection> create_stream_socket_pair(const SocketFlags flags) {
28 auto [fd1, fd2] = create_socket_pair(SocketFamily::UNIX, SocketType::STREAM, flags);
29 return {UnixConnection{fd1}, UnixConnection{fd2}};
30}
31
32std::pair<UnixConnection, UnixConnection> create_seqpacket_socket_pair(const SocketFlags flags) {
33 auto [fd1, fd2] = create_socket_pair(SocketFamily::UNIX, SocketType::SEQPACKET, flags);
34 return {UnixConnection{fd1}, UnixConnection{fd2}};
35}
36
37std::pair<UnixDatagramSocket, UnixDatagramSocket> create_dgram_socket_pair(const SocketFlags flags) {
38 auto [fd1, fd2] = create_socket_pair(SocketFamily::UNIX, SocketType::DGRAM, flags);
39 return {UnixDatagramSocket{fd1}, UnixDatagramSocket{fd2}};
40}
41
42InterfaceIndex name_to_index(const SysString name) {
43 const auto index = if_nametoindex(name.raw());
44 if (index == 0) {
45 cosmos_throw(ApiError("if_nametoindex()"));
46 }
47 return InterfaceIndex{static_cast<int>(index)};
48}
49
50std::string index_to_name(const InterfaceIndex index) {
51 std::string ret;
52 ret.resize(IF_NAMESIZE);
53 if (!if_indextoname(to_integral(index), ret.data())) {
54 cosmos_throw(ApiError("if_indextoname()"));
55 }
56
57 ret.resize(std::strlen(ret.data()));
58 return ret;
59}
60
61std::string get_hostname() {
62 std::string ret;
63 // for gethosname the HOST_NAME_MAX constant is documented, but our
64 // MAX_HOSTNAME should be usable for this, too
65 ret.resize(MAX_HOSTNAME);
66 ret.back() = 0;
67
68 if (const auto res = ::gethostname(ret.data(), ret.size()); res != 0) {
69 // the semantics for this function are pretty strange. glibc
70 // doesn't even use the gethostname() system call but inspects
71 // the system's uname. It does report truncation via an error,
72 // while POSIX does not guarantee this.
73 cosmos_throw(ApiError("gethostname()"));
74 }
75
76 if (ret.back() != 0) {
77 cosmos_throw(RuntimeError("gethostname() truncation occurred"));
78 }
79
80 ret.resize(std::strlen(ret.c_str()));
81
82 return ret;
83}
84
85} // end ns
FileNum
Primitive file descriptor.
Definition types.hxx:32
InterfaceIndex
A network device interface index.
Definition types.hxx:119