Skip to content
Snippets Groups Projects
Commit d2dd3f94 authored by Leon Dietrich's avatar Leon Dietrich Committed by Benny Baumann
Browse files

fix: unix socketaddr generation

parent 44e50bf6
No related branches found
No related tags found
No related merge requests found
...@@ -162,6 +162,17 @@ namespace rmrf::net { ...@@ -162,6 +162,17 @@ namespace rmrf::net {
} }
std::list<socketaddr> get_socketaddr_list(const std::string &interface_description, const std::string &service_or_port, const socket_t socket_type) { std::list<socketaddr> get_socketaddr_list(const std::string &interface_description, const std::string &service_or_port, const socket_t socket_type) {
if (socket_type == socket_t::UNIX) {
sockaddr_un storage;
strncpy(storage.sun_path, interface_description.c_str(), sizeof(storage.sun_path));
// Required as the automatic initialization of sockaddr_un is broken on linux.
// This will be optimized out on platforms where it is not.
((sockaddr*) &storage)->sa_family = AF_UNIX;
const socketaddr sa{storage};
std::list<socketaddr> l = {sa};
return l;
}
int port = -1; int port = -1;
try { try {
...@@ -177,9 +188,9 @@ namespace rmrf::net { ...@@ -177,9 +188,9 @@ namespace rmrf::net {
return l; return l;
} }
// Attempt DNS lookup
struct addrinfo hints = {}; struct addrinfo hints = {};
struct addrinfo* addrs = nullptr;
struct addrinfo* addrs;
hints.ai_family = AF_INET6; hints.ai_family = AF_INET6;
hints.ai_socktype = get_socket_type_hint(socket_type); hints.ai_socktype = get_socket_type_hint(socket_type);
...@@ -190,8 +201,10 @@ namespace rmrf::net { ...@@ -190,8 +201,10 @@ namespace rmrf::net {
dns_error = getaddrinfo(interface_description.c_str(), NULL, &hints, &addrs); dns_error = getaddrinfo(interface_description.c_str(), NULL, &hints, &addrs);
if (dns_error != 0) { if (dns_error != 0) {
freeaddrinfo(addrs); if (addrs != nullptr) {
throw std::invalid_argument("Something went wrong with the DNS lookup. Error code: " + format_network_error(dns_error)); freeaddrinfo(addrs);
}
throw std::invalid_argument("Something went wrong with the DNS lookup. Error: " + format_network_error(dns_error));
} }
} }
......
...@@ -70,7 +70,7 @@ public: ...@@ -70,7 +70,7 @@ public:
template <typename T, typename std::enable_if<has_field<T>::value, T>::type * = nullptr> template <typename T, typename std::enable_if<has_field<T>::value, T>::type * = nullptr>
explicit socketaddr(T *other) : addr{}, len{} { explicit socketaddr(T *other) : addr{}, len{} {
if (other->*(family_map<T>::sa_family_field) != family_map<T>::sa_family) { if (other->*(family_map<T>::sa_family_field) != family_map<T>::sa_family) {
throw netio_exception("Address family mismatch in sockaddr structure."); throw netio_exception("Unable to construct socketaddr object. Address family mismatch in sockaddr structure.");
} }
memcpy(&addr, other, sizeof(T)); memcpy(&addr, other, sizeof(T));
...@@ -88,7 +88,7 @@ public: ...@@ -88,7 +88,7 @@ public:
template <typename T, typename std::enable_if<has_field<T>::value, T>::type * = nullptr> template <typename T, typename std::enable_if<has_field<T>::value, T>::type * = nullptr>
explicit socketaddr(const T& other) : addr{}, len{} { explicit socketaddr(const T& other) : addr{}, len{} {
if (other.*(family_map<T>::sa_family_field) != family_map<T>::sa_family) { if (other.*(family_map<T>::sa_family_field) != family_map<T>::sa_family) {
throw netio_exception("Address family mismatch in sockaddr structure."); throw netio_exception("Unable to construct socketaddr object from reference. Address family mismatch in sockaddr structure.");
} }
memcpy(&addr, &other, sizeof(T)); memcpy(&addr, &other, sizeof(T));
...@@ -98,7 +98,7 @@ public: ...@@ -98,7 +98,7 @@ public:
template <typename T> template <typename T>
socketaddr& operator=(const T *rhs) { socketaddr& operator=(const T *rhs) {
if (rhs->*(family_map<T>::sa_family_field) != family_map<T>::sa_family) { if (rhs->*(family_map<T>::sa_family_field) != family_map<T>::sa_family) {
throw netio_exception("Address family mismatch in sockaddr structure."); throw netio_exception("Unable to construct socketaddr object from rhs. Address family mismatch in sockaddr structure.");
} }
memcpy(&addr, rhs, sizeof(T)); memcpy(&addr, rhs, sizeof(T));
......
...@@ -65,5 +65,5 @@ BOOST_AUTO_TEST_CASE(Socketaddr_comparison) { ...@@ -65,5 +65,5 @@ BOOST_AUTO_TEST_CASE(Socketaddr_comparison) {
BOOST_AUTO_TEST_CASE(Unix_socket_construction_test) { BOOST_AUTO_TEST_CASE(Unix_socket_construction_test) {
const auto sa = get_first_general_socketaddr("/tmp/9Lq7BNBnBycd6nxy.socket", "", socket_t::UNIX); const auto sa = get_first_general_socketaddr("/tmp/9Lq7BNBnBycd6nxy.socket", "", socket_t::UNIX);
BOOST_CHECK_EQUAL(sa.str(), "FileSocket /tmp/9Lq7BNBnBycd6nxy.socket"); BOOST_CHECK_EQUAL(sa.str(), "SocketAddress: FileSocket /tmp/9Lq7BNBnBycd6nxy.socket");
} }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment