2020-01-18 05:38:21 -03:00
|
|
|
/*
|
|
|
|
|
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
|
|
|
|
|
*
|
2021-04-22 05:24:48 -03:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
2020-01-18 05:38:21 -03:00
|
|
|
*/
|
|
|
|
|
|
2019-03-10 16:59:23 -03:00
|
|
|
#pragma once
|
|
|
|
|
|
2020-08-25 10:11:15 -03:00
|
|
|
#include <AK/Endian.h>
|
2020-04-04 08:18:28 -03:00
|
|
|
#include <AK/MACAddress.h>
|
2019-04-02 14:54:38 -03:00
|
|
|
#include <Kernel/Net/EtherType.h>
|
2019-05-28 06:53:16 -03:00
|
|
|
#include <Kernel/Net/IPv4.h>
|
2019-03-11 19:21:38 -03:00
|
|
|
|
2020-02-15 21:27:42 -03:00
|
|
|
namespace Kernel {
|
|
|
|
|
|
2019-03-11 21:30:49 -03:00
|
|
|
struct ARPOperation {
|
2019-07-03 16:17:35 -03:00
|
|
|
enum : u16 {
|
2019-05-28 06:53:16 -03:00
|
|
|
Request = 1,
|
|
|
|
|
Response = 2,
|
|
|
|
|
};
|
2019-03-11 21:30:49 -03:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
struct ARPHardwareType {
|
2019-07-03 16:17:35 -03:00
|
|
|
enum : u16 {
|
2019-05-28 06:53:16 -03:00
|
|
|
Ethernet = 1,
|
|
|
|
|
};
|
2019-03-11 21:30:49 -03:00
|
|
|
};
|
|
|
|
|
|
2020-12-30 18:44:54 -03:00
|
|
|
class [[gnu::packed]] ARPPacket {
|
2019-03-10 16:59:23 -03:00
|
|
|
public:
|
2019-07-03 16:17:35 -03:00
|
|
|
u16 hardware_type() const { return m_hardware_type; }
|
|
|
|
|
void set_hardware_type(u16 w) { m_hardware_type = w; }
|
2019-03-11 19:21:38 -03:00
|
|
|
|
2019-07-03 16:17:35 -03:00
|
|
|
u16 protocol_type() const { return m_protocol_type; }
|
|
|
|
|
void set_protocol_type(u16 w) { m_protocol_type = w; }
|
2019-03-11 19:21:38 -03:00
|
|
|
|
2019-07-03 16:17:35 -03:00
|
|
|
u8 hardware_address_length() const { return m_hardware_address_length; }
|
|
|
|
|
void set_hardware_address_length(u8 b) { m_hardware_address_length = b; }
|
2019-03-11 19:21:38 -03:00
|
|
|
|
2019-07-03 16:17:35 -03:00
|
|
|
u8 protocol_address_length() const { return m_protocol_address_length; }
|
|
|
|
|
void set_protocol_address_length(u8 b) { m_protocol_address_length = b; }
|
2019-03-11 19:21:38 -03:00
|
|
|
|
2019-07-03 16:17:35 -03:00
|
|
|
u16 operation() const { return m_operation; }
|
|
|
|
|
void set_operation(u16 w) { m_operation = w; }
|
2019-03-11 19:21:38 -03:00
|
|
|
|
|
|
|
|
const MACAddress& sender_hardware_address() const { return m_sender_hardware_address; }
|
|
|
|
|
void set_sender_hardware_address(const MACAddress& address) { m_sender_hardware_address = address; }
|
|
|
|
|
|
|
|
|
|
const IPv4Address& sender_protocol_address() const { return m_sender_protocol_address; }
|
|
|
|
|
void set_sender_protocol_address(const IPv4Address& address) { m_sender_protocol_address = address; }
|
|
|
|
|
|
|
|
|
|
const MACAddress& target_hardware_address() const { return m_target_hardware_address; }
|
|
|
|
|
void set_target_hardware_address(const MACAddress& address) { m_target_hardware_address = address; }
|
|
|
|
|
|
|
|
|
|
const IPv4Address& target_protocol_address() const { return m_target_protocol_address; }
|
|
|
|
|
void set_target_protocol_address(const IPv4Address& address) { m_target_protocol_address = address; }
|
|
|
|
|
|
|
|
|
|
private:
|
2019-07-03 16:17:35 -03:00
|
|
|
NetworkOrdered<u16> m_hardware_type { ARPHardwareType::Ethernet };
|
|
|
|
|
NetworkOrdered<u16> m_protocol_type { EtherType::IPv4 };
|
|
|
|
|
u8 m_hardware_address_length { sizeof(MACAddress) };
|
|
|
|
|
u8 m_protocol_address_length { sizeof(IPv4Address) };
|
|
|
|
|
NetworkOrdered<u16> m_operation;
|
2019-03-11 19:21:38 -03:00
|
|
|
MACAddress m_sender_hardware_address;
|
|
|
|
|
IPv4Address m_sender_protocol_address;
|
|
|
|
|
MACAddress m_target_hardware_address;
|
|
|
|
|
IPv4Address m_target_protocol_address;
|
2019-03-10 16:59:23 -03:00
|
|
|
};
|
2019-03-11 19:21:38 -03:00
|
|
|
|
|
|
|
|
static_assert(sizeof(ARPPacket) == 28);
|
2020-02-15 21:27:42 -03:00
|
|
|
|
|
|
|
|
}
|