xaizek / tos (License: GPLv3 only) (since 2018-12-07)
This is an alternative version of sources presented as part of Write Your Own OS video tutorial by Viktor Engelmann.
<root> / src / net / arp.hpp (6dc9a96bfc9a14b712707d71f3eb8a1c4f5d46d0) (1,636B) (mode 100644) [raw]
#ifndef TOS__NET__ARP_HPP__
#define TOS__NET__ARP_HPP__

#include "net/etherframe.hpp"
#include "utils/struct.hpp"

namespace net {

struct ARPMsg
{
    NetField<+0, 2, std::uint16_t> hardwareType;
    NetField<+2, 2, std::uint16_t> protocol;
    NetField<+4, 1, std::uint8_t> hardwareAddressSize; // 6
    NetField<+5, 1, std::uint8_t> protocolAddressSize; // 4
    NetField<+6, 2, std::uint16_t> command;

    NetField<+8,  6, std::uint64_t> srcMAC;
    NetField<+14, 4, std::uint32_t> srcIP;
    NetField<+18, 6, std::uint64_t> dstMAC;
    NetField<+24, 4, std::uint32_t> dstIP;

    explicit ARPMsg(std::uint8_t data[])
        : hardwareType(data), protocol(data), hardwareAddressSize(data),
          protocolAddressSize(data), command(data), srcMAC(data), srcIP(data),
          dstMAC(data), dstIP(data)
    {
    }

    static constexpr std::ptrdiff_t size()
    {
        using lastField = decltype(dstIP);
        return lastField::offset + lastField::size;
    }
};

class ARP : public EtherFrameHandler
{
public:
    ARP(EtherFrameProvider &backend);

public:
    void requestMACAddress(NetOrder<std::uint32_t> ip);
    void broadcastMACAddress(NetOrder<std::uint32_t> ip);
    NetOrder<std::uint64_t> getMACFromCache(NetOrder<std::uint32_t> ip);
    NetOrder<std::uint64_t> resolve(NetOrder<std::uint32_t> ip);

private:
    virtual bool onEtherFrameReceived(span<std::uint8_t> msg) override;

private:
    static constexpr int maxCacheEntries = 128;
    NetOrder<std::uint32_t> IPcache[maxCacheEntries];
    NetOrder<std::uint64_t> MACcache[maxCacheEntries];
    int numCacheEntries;
};

}

#endif // TOS__NET__ARP_HPP__
Hints

Before first commit, do not forget to setup your git environment:
git config --global user.name "your_name_here"
git config --global user.email "your@email_here"

Clone this repository using HTTP(S):
git clone https://code.reversed.top/user/xaizek/tos

Clone this repository using ssh (do not forget to upload a key first):
git clone ssh://rocketgit@code.reversed.top/user/xaizek/tos

You are allowed to anonymously push to this repository.
This means that your pushed commits will automatically be transformed into a pull request:
... clone the repository ...
... make some changes and some commits ...
git push origin master