1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 10:17:35 +00:00

Kernel: Start adding IPv4 support, starting with ICMP echo messages.

This doesn't work correctly yet, but it's getting nice enough to commit.
This commit is contained in:
Andreas Kling 2019-03-12 04:11:20 +01:00
parent d5dbb602b8
commit 5bd9844dd6
6 changed files with 237 additions and 0 deletions

51
Kernel/ICMP.h Normal file
View file

@ -0,0 +1,51 @@
#pragma once
#include <Kernel/MACAddress.h>
#include <Kernel/IPv4Packet.h>
#include <Kernel/NetworkOrdered.h>
struct ICMPType {
enum {
EchoReply = 0,
EchoRequest = 8,
};
};
class [[gnu::packed]] ICMPHeader {
public:
ICMPHeader() { }
~ICMPHeader() { }
byte type() const { return m_type; }
void set_type(byte b) { m_type = b; }
byte code() const { return m_code; }
void set_code(byte b) { m_code = b; }
word checksum() const { return ntohs(m_checksum); }
void set_checksum(word w) { m_checksum = htons(w); }
const void* payload() const { return &m_payload[0]; }
void* payload() { return &m_payload[0]; }
private:
byte m_type { 0 };
byte m_code { 0 };
word m_checksum { 0 };
dword m_rest_of_header { 0 };
byte m_payload[0];
};
static_assert(sizeof(ICMPHeader) == 8);
struct [[gnu::packed]] IPv4ICMPPacket {
IPv4Packet ipv4_packet;
ICMPHeader icmp_header;
};
struct [[gnu::packed]] ICMPEchoPacket {
ICMPHeader header;
NetworkOrdered<word> identifier;
NetworkOrdered<word> sequence_number;
byte payload[];
};