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>
11namespace cosmos::net {
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}) {
18 const auto res = ::socketpair(to_integral(family), to_integral(type) | flags.raw(), to_integral(protocol), fds);
20 cosmos_throw(ApiError(
"socketpair()"));
23 return {FileDescriptor{
FileNum{fds[0]}}, FileDescriptor{
FileNum{fds[1]}}};
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}};
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}};
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}};
43 const auto index = if_nametoindex(name.raw());
45 cosmos_throw(ApiError(
"if_nametoindex()"));
50std::string index_to_name(
const InterfaceIndex index) {
52 ret.resize(IF_NAMESIZE);
53 if (!if_indextoname(to_integral(index), ret.data())) {
54 cosmos_throw(ApiError(
"if_indextoname()"));
57 ret.resize(std::strlen(ret.data()));
61std::string get_hostname() {
65 ret.resize(MAX_HOSTNAME);
68 if (
const auto res = ::gethostname(ret.data(), ret.size()); res != 0) {
73 cosmos_throw(ApiError(
"gethostname()"));
76 if (ret.back() != 0) {
77 cosmos_throw(RuntimeError(
"gethostname() truncation occurred"));
80 ret.resize(std::strlen(ret.c_str()));
FileNum
Primitive file descriptor.
InterfaceIndex
A network device interface index.