2020-01-18 09:38:21 +01:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
|
|
|
|
*
|
2021-04-22 01:24:48 -07:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
2020-01-18 09:38:21 +01:00
|
|
|
*/
|
|
|
|
|
2019-03-10 20:59:23 +01:00
|
|
|
#pragma once
|
|
|
|
|
2020-08-25 15:11:15 +02:00
|
|
|
#include <AK/Endian.h>
|
2020-04-04 15:48:28 +04:30
|
|
|
#include <AK/MACAddress.h>
|
2019-04-02 19:54:38 +02:00
|
|
|
#include <Kernel/Net/EtherType.h>
|
2019-05-28 11:53:16 +02:00
|
|
|
#include <Kernel/Net/IPv4.h>
|
2019-03-11 23:21:38 +01:00
|
|
|
|
2020-02-16 01:27:42 +01:00
|
|
|
namespace Kernel {
|
|
|
|
|
2019-03-12 01:30:49 +01:00
|
|
|
struct ARPOperation {
|
2019-07-03 21:17:35 +02:00
|
|
|
enum : u16 {
|
2019-05-28 11:53:16 +02:00
|
|
|
Request = 1,
|
|
|
|
Response = 2,
|
|
|
|
};
|
2019-03-12 01:30:49 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
struct ARPHardwareType {
|
2019-07-03 21:17:35 +02:00
|
|
|
enum : u16 {
|
2019-05-28 11:53:16 +02:00
|
|
|
Ethernet = 1,
|
|
|
|
};
|
2019-03-12 01:30:49 +01:00
|
|
|
};
|
|
|
|
|
2020-12-30 22:44:54 +01:00
|
|
|
class [[gnu::packed]] ARPPacket {
|
2019-03-10 20:59:23 +01:00
|
|
|
public:
|
2019-07-03 21:17:35 +02:00
|
|
|
u16 hardware_type() const { return m_hardware_type; }
|
|
|
|
void set_hardware_type(u16 w) { m_hardware_type = w; }
|
2019-03-11 23:21:38 +01:00
|
|
|
|
2019-07-03 21:17:35 +02:00
|
|
|
u16 protocol_type() const { return m_protocol_type; }
|
|
|
|
void set_protocol_type(u16 w) { m_protocol_type = w; }
|
2019-03-11 23:21:38 +01:00
|
|
|
|
2019-07-03 21:17:35 +02: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 23:21:38 +01:00
|
|
|
|
2019-07-03 21:17:35 +02: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 23:21:38 +01:00
|
|
|
|
2019-07-03 21:17:35 +02:00
|
|
|
u16 operation() const { return m_operation; }
|
|
|
|
void set_operation(u16 w) { m_operation = w; }
|
2019-03-11 23:21:38 +01: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 21:17:35 +02: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 23:21:38 +01:00
|
|
|
MACAddress m_sender_hardware_address;
|
|
|
|
IPv4Address m_sender_protocol_address;
|
|
|
|
MACAddress m_target_hardware_address;
|
|
|
|
IPv4Address m_target_protocol_address;
|
2019-03-10 20:59:23 +01:00
|
|
|
};
|
2019-03-11 23:21:38 +01:00
|
|
|
|
|
|
|
static_assert(sizeof(ARPPacket) == 28);
|
2020-02-16 01:27:42 +01:00
|
|
|
|
|
|
|
}
|