2020-01-18 11:38:21 +03:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
|
|
|
|
*
|
2021-04-22 11:24:48 +03:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
2020-01-18 11:38:21 +03:00
|
|
|
*/
|
|
|
|
|
2019-03-10 21:15:22 +03:00
|
|
|
#pragma once
|
|
|
|
|
2020-11-17 04:36:01 +03:00
|
|
|
#include <AK/AllOf.h>
|
2020-11-17 03:41:46 +03:00
|
|
|
#include <AK/Array.h>
|
2019-05-28 12:53:16 +03:00
|
|
|
#include <AK/Assertions.h>
|
2019-03-10 21:15:22 +03:00
|
|
|
#include <AK/Types.h>
|
2021-11-10 13:05:21 +03:00
|
|
|
#include <AK/Vector.h>
|
2019-03-10 21:15:22 +03:00
|
|
|
|
2022-02-15 20:38:35 +03:00
|
|
|
#ifdef KERNEL
|
2023-02-24 21:10:59 +03:00
|
|
|
# include <Kernel/Library/KString.h>
|
2022-02-15 20:38:35 +03:00
|
|
|
#else
|
2023-12-16 17:19:34 +03:00
|
|
|
# include <AK/ByteString.h>
|
2022-02-15 20:38:35 +03:00
|
|
|
#endif
|
|
|
|
|
2020-12-31 00:44:54 +03:00
|
|
|
class [[gnu::packed]] MACAddress {
|
2020-11-17 03:41:46 +03:00
|
|
|
static constexpr size_t s_mac_address_length = 6u;
|
|
|
|
|
2019-03-10 21:15:22 +03:00
|
|
|
public:
|
2020-11-17 03:10:02 +03:00
|
|
|
constexpr MACAddress() = default;
|
|
|
|
|
|
|
|
constexpr MACAddress(u8 a, u8 b, u8 c, u8 d, u8 e, u8 f)
|
2019-08-28 03:46:30 +03:00
|
|
|
{
|
|
|
|
m_data[0] = a;
|
|
|
|
m_data[1] = b;
|
|
|
|
m_data[2] = c;
|
|
|
|
m_data[3] = d;
|
|
|
|
m_data[4] = e;
|
|
|
|
m_data[5] = f;
|
|
|
|
}
|
2019-03-10 21:15:22 +03:00
|
|
|
|
2020-11-17 03:10:02 +03:00
|
|
|
constexpr ~MACAddress() = default;
|
|
|
|
|
2022-04-01 20:58:27 +03:00
|
|
|
constexpr u8 const& operator[](unsigned i) const
|
2019-03-10 21:15:22 +03:00
|
|
|
{
|
2021-02-23 22:42:32 +03:00
|
|
|
VERIFY(i < s_mac_address_length);
|
2020-11-17 03:41:46 +03:00
|
|
|
return m_data[i];
|
|
|
|
}
|
|
|
|
|
|
|
|
constexpr u8& operator[](unsigned i)
|
|
|
|
{
|
2021-02-23 22:42:32 +03:00
|
|
|
VERIFY(i < s_mac_address_length);
|
2019-03-10 21:15:22 +03:00
|
|
|
return m_data[i];
|
|
|
|
}
|
|
|
|
|
2022-04-01 20:58:27 +03:00
|
|
|
constexpr bool operator==(MACAddress const& other) const
|
2019-03-12 02:56:33 +03:00
|
|
|
{
|
2020-11-17 03:41:46 +03:00
|
|
|
for (auto i = 0u; i < m_data.size(); ++i) {
|
|
|
|
if (m_data[i] != other.m_data[i]) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true;
|
2019-03-12 02:56:33 +03:00
|
|
|
}
|
|
|
|
|
2022-02-15 20:38:35 +03:00
|
|
|
#ifdef KERNEL
|
|
|
|
ErrorOr<NonnullOwnPtr<Kernel::KString>> to_string() const
|
|
|
|
{
|
|
|
|
return Kernel::KString::formatted("{:02x}:{:02x}:{:02x}:{:02x}:{:02x}:{:02x}", m_data[0], m_data[1], m_data[2], m_data[3], m_data[4], m_data[5]);
|
|
|
|
}
|
|
|
|
#else
|
2023-12-16 17:19:34 +03:00
|
|
|
ByteString to_byte_string() const
|
2019-03-11 14:43:45 +03:00
|
|
|
{
|
2023-12-16 17:19:34 +03:00
|
|
|
return ByteString::formatted("{:02x}:{:02x}:{:02x}:{:02x}:{:02x}:{:02x}", m_data[0], m_data[1], m_data[2], m_data[3], m_data[4], m_data[5]);
|
2019-03-11 14:43:45 +03:00
|
|
|
}
|
2022-02-15 20:38:35 +03:00
|
|
|
#endif
|
2019-03-11 14:43:45 +03:00
|
|
|
|
2021-11-11 02:55:02 +03:00
|
|
|
static Optional<MACAddress> from_string(StringView string)
|
2021-07-25 03:15:14 +03:00
|
|
|
{
|
|
|
|
if (string.is_null())
|
|
|
|
return {};
|
|
|
|
|
2022-07-11 23:10:18 +03:00
|
|
|
auto const parts = string.split_view(':');
|
2021-07-25 03:15:14 +03:00
|
|
|
if (parts.size() != 6)
|
|
|
|
return {};
|
|
|
|
|
|
|
|
auto a = AK::StringUtils::convert_to_uint_from_hex(parts[0]).value_or(256);
|
|
|
|
auto b = AK::StringUtils::convert_to_uint_from_hex(parts[1]).value_or(256);
|
|
|
|
auto c = AK::StringUtils::convert_to_uint_from_hex(parts[2]).value_or(256);
|
|
|
|
auto d = AK::StringUtils::convert_to_uint_from_hex(parts[3]).value_or(256);
|
|
|
|
auto e = AK::StringUtils::convert_to_uint_from_hex(parts[4]).value_or(256);
|
|
|
|
auto f = AK::StringUtils::convert_to_uint_from_hex(parts[5]).value_or(256);
|
|
|
|
|
|
|
|
if (a > 255 || b > 255 || c > 255 || d > 255 || e > 255 || f > 255)
|
|
|
|
return {};
|
|
|
|
|
|
|
|
return MACAddress(a, b, c, d, e, f);
|
|
|
|
}
|
|
|
|
|
2020-11-17 03:10:02 +03:00
|
|
|
constexpr bool is_zero() const
|
2019-08-28 03:48:35 +03:00
|
|
|
{
|
2022-04-01 20:58:27 +03:00
|
|
|
return all_of(m_data, [](auto const octet) { return octet == 0; });
|
2019-08-28 03:48:35 +03:00
|
|
|
}
|
|
|
|
|
2021-07-26 12:36:55 +03:00
|
|
|
void copy_to(Bytes destination) const
|
|
|
|
{
|
|
|
|
m_data.span().copy_to(destination);
|
|
|
|
}
|
|
|
|
|
2019-03-10 21:15:22 +03:00
|
|
|
private:
|
2021-02-25 23:10:47 +03:00
|
|
|
Array<u8, s_mac_address_length> m_data {};
|
2019-03-10 21:15:22 +03:00
|
|
|
};
|
2019-03-10 22:59:23 +03:00
|
|
|
|
2020-11-17 03:41:46 +03:00
|
|
|
static_assert(sizeof(MACAddress) == 6u);
|
2019-03-12 02:56:33 +03:00
|
|
|
|
|
|
|
namespace AK {
|
|
|
|
|
2020-09-18 10:49:51 +03:00
|
|
|
template<>
|
2023-11-08 22:29:12 +03:00
|
|
|
struct Traits<MACAddress> : public DefaultTraits<MACAddress> {
|
2022-04-01 20:58:27 +03:00
|
|
|
static unsigned hash(MACAddress const& address) { return string_hash((char const*)&address, sizeof(address)); }
|
2019-03-12 02:56:33 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|