2020-01-18 09:38:21 +01:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
|
2022-02-26 09:09:45 -07:00
|
|
|
* Copyright (c) 2022, the SerenityOS developers.
|
2020-01-18 09:38:21 +01:00
|
|
|
*
|
2021-04-22 01:24:48 -07:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
2020-01-18 09:38:21 +01:00
|
|
|
*/
|
|
|
|
|
2019-04-08 17:19:35 +02:00
|
|
|
#pragma once
|
|
|
|
|
2019-06-18 11:28:48 +02:00
|
|
|
#include <AK/IPv4Address.h>
|
2019-08-05 20:47:30 +10:00
|
|
|
#include <arpa/inet.h>
|
2020-01-01 20:46:26 -06:00
|
|
|
#include <netinet/in.h>
|
2020-03-08 12:05:14 +01:00
|
|
|
#include <string.h>
|
2019-07-26 22:39:16 +02:00
|
|
|
#include <sys/socket.h>
|
|
|
|
#include <sys/un.h>
|
2019-04-08 17:19:35 +02:00
|
|
|
|
2020-02-02 12:34:39 +01:00
|
|
|
namespace Core {
|
|
|
|
|
|
|
|
class SocketAddress {
|
2019-04-08 17:19:35 +02:00
|
|
|
public:
|
2019-06-07 17:13:23 +02:00
|
|
|
enum class Type {
|
2019-05-28 11:53:16 +02:00
|
|
|
Invalid,
|
|
|
|
IPv4,
|
|
|
|
Local
|
|
|
|
};
|
2019-04-08 17:19:35 +02:00
|
|
|
|
2022-02-26 09:09:45 -07:00
|
|
|
SocketAddress() = default;
|
2022-04-01 20:58:27 +03:00
|
|
|
SocketAddress(IPv4Address const& address)
|
2019-04-08 17:19:35 +02:00
|
|
|
: m_type(Type::IPv4)
|
|
|
|
, m_ipv4_address(address)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2022-04-01 20:58:27 +03:00
|
|
|
SocketAddress(IPv4Address const& address, u16 port)
|
2019-08-05 20:47:30 +10:00
|
|
|
: m_type(Type::IPv4)
|
|
|
|
, m_ipv4_address(address)
|
|
|
|
, m_port(port)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2022-12-04 18:02:33 +00:00
|
|
|
static SocketAddress local(DeprecatedString const& address)
|
2019-07-13 19:42:03 +02:00
|
|
|
{
|
2020-02-02 12:34:39 +01:00
|
|
|
SocketAddress addr;
|
2019-07-13 19:42:03 +02:00
|
|
|
addr.m_type = Type::Local;
|
|
|
|
addr.m_local_address = address;
|
|
|
|
return addr;
|
|
|
|
}
|
|
|
|
|
2019-04-08 17:19:35 +02:00
|
|
|
Type type() const { return m_type; }
|
|
|
|
bool is_valid() const { return m_type != Type::Invalid; }
|
|
|
|
IPv4Address ipv4_address() const { return m_ipv4_address; }
|
2019-08-05 20:47:30 +10:00
|
|
|
u16 port() const { return m_port; }
|
2019-04-08 17:19:35 +02:00
|
|
|
|
2022-12-06 01:12:49 +00:00
|
|
|
DeprecatedString to_deprecated_string() const
|
2019-04-08 17:19:35 +02:00
|
|
|
{
|
|
|
|
switch (m_type) {
|
2019-05-28 11:53:16 +02:00
|
|
|
case Type::IPv4:
|
2022-12-04 18:02:33 +00:00
|
|
|
return DeprecatedString::formatted("{}:{}", m_ipv4_address, m_port);
|
2019-07-13 19:42:03 +02:00
|
|
|
case Type::Local:
|
|
|
|
return m_local_address;
|
2019-05-28 11:53:16 +02:00
|
|
|
default:
|
2020-03-07 11:37:51 +13:00
|
|
|
return "[SocketAddress]";
|
2019-04-08 17:19:35 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-08-23 13:47:52 +02:00
|
|
|
Optional<sockaddr_un> to_sockaddr_un() const
|
2019-07-26 22:39:16 +02:00
|
|
|
{
|
2021-02-23 20:42:32 +01:00
|
|
|
VERIFY(type() == Type::Local);
|
2019-07-26 22:39:16 +02:00
|
|
|
sockaddr_un address;
|
|
|
|
address.sun_family = AF_LOCAL;
|
2020-08-25 17:32:01 +03:00
|
|
|
bool fits = m_local_address.copy_characters_to_buffer(address.sun_path, sizeof(address.sun_path));
|
|
|
|
if (!fits)
|
2020-08-23 13:47:52 +02:00
|
|
|
return {};
|
2019-07-26 22:39:16 +02:00
|
|
|
return address;
|
|
|
|
}
|
|
|
|
|
2019-08-05 20:47:30 +10:00
|
|
|
sockaddr_in to_sockaddr_in() const
|
|
|
|
{
|
2021-02-23 20:42:32 +01:00
|
|
|
VERIFY(type() == Type::IPv4);
|
2020-08-16 18:29:00 -07:00
|
|
|
sockaddr_in address {};
|
2019-08-05 20:47:30 +10:00
|
|
|
address.sin_family = AF_INET;
|
|
|
|
address.sin_addr.s_addr = m_ipv4_address.to_in_addr_t();
|
|
|
|
address.sin_port = htons(m_port);
|
|
|
|
return address;
|
|
|
|
}
|
|
|
|
|
2023-07-13 15:30:13 -04:00
|
|
|
bool operator==(SocketAddress const& other) const = default;
|
|
|
|
bool operator!=(SocketAddress const& other) const = default;
|
|
|
|
|
2019-04-08 17:19:35 +02:00
|
|
|
private:
|
|
|
|
Type m_type { Type::Invalid };
|
|
|
|
IPv4Address m_ipv4_address;
|
2019-08-06 22:58:32 +10:00
|
|
|
u16 m_port { 0 };
|
2022-12-04 18:02:33 +00:00
|
|
|
DeprecatedString m_local_address;
|
2019-04-08 17:19:35 +02:00
|
|
|
};
|
2019-07-14 11:02:40 +02:00
|
|
|
|
2020-02-02 12:34:39 +01:00
|
|
|
}
|
2021-01-15 21:46:23 +01:00
|
|
|
|
|
|
|
template<>
|
2022-12-04 18:02:33 +00:00
|
|
|
struct AK::Formatter<Core::SocketAddress> : Formatter<DeprecatedString> {
|
2021-11-16 01:15:21 +01:00
|
|
|
ErrorOr<void> format(FormatBuilder& builder, Core::SocketAddress const& value)
|
2021-01-15 21:46:23 +01:00
|
|
|
{
|
2022-12-06 01:12:49 +00:00
|
|
|
return Formatter<DeprecatedString>::format(builder, value.to_deprecated_string());
|
2021-01-15 21:46:23 +01:00
|
|
|
}
|
|
|
|
};
|
2023-07-13 15:30:13 -04:00
|
|
|
|
|
|
|
template<>
|
2023-11-08 20:29:12 +01:00
|
|
|
struct AK::Traits<Core::SocketAddress> : public DefaultTraits<Core::SocketAddress> {
|
2023-07-13 15:30:13 -04:00
|
|
|
static unsigned hash(Core::SocketAddress const& socket_address)
|
|
|
|
{
|
|
|
|
return pair_int_hash(Traits<IPv4Address>::hash(socket_address.ipv4_address()), Traits<u16>::hash(socket_address.port()));
|
|
|
|
}
|
|
|
|
};
|