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