mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-05-10 13:12:56 +00:00
We have a new, improved string type coming up in AK (OOM aware, no null state), and while it's going to use UTF-8, the name UTF8String is a mouthful - so let's free up the String name by renaming the existing class. Making the old one have an annoying name will hopefully also help with quick adoption :^)
70 lines
1.9 KiB
C++
70 lines
1.9 KiB
C++
/*
|
|
* Copyright (c) 2020, the SerenityOS developers.
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "DHCPv4.h"
|
|
#include <AK/DeprecatedString.h>
|
|
#include <AK/Error.h>
|
|
#include <AK/HashMap.h>
|
|
#include <AK/OwnPtr.h>
|
|
#include <AK/Vector.h>
|
|
#include <LibCore/UDPServer.h>
|
|
#include <net/if.h>
|
|
#include <net/route.h>
|
|
#include <sys/ioctl.h>
|
|
#include <sys/socket.h>
|
|
|
|
struct InterfaceDescriptor {
|
|
DeprecatedString ifname;
|
|
MACAddress mac_address;
|
|
IPv4Address current_ip_address;
|
|
};
|
|
|
|
struct DHCPv4Transaction {
|
|
DHCPv4Transaction(InterfaceDescriptor ifname)
|
|
: interface(ifname)
|
|
{
|
|
}
|
|
|
|
InterfaceDescriptor interface;
|
|
bool accepted_offer { false };
|
|
bool has_ip { false };
|
|
u32 offered_lease_time { 0 };
|
|
};
|
|
|
|
class DHCPv4Client final : public Core::Object {
|
|
C_OBJECT(DHCPv4Client)
|
|
|
|
public:
|
|
void dhcp_discover(InterfaceDescriptor const& ifname);
|
|
void dhcp_request(DHCPv4Transaction& transaction, DHCPv4Packet const& packet);
|
|
|
|
void process_incoming(DHCPv4Packet const& packet);
|
|
|
|
bool id_is_registered(u32 id) { return m_ongoing_transactions.contains(id); }
|
|
|
|
struct Interfaces {
|
|
Vector<InterfaceDescriptor> ready;
|
|
Vector<InterfaceDescriptor> not_ready;
|
|
};
|
|
static ErrorOr<Interfaces> get_discoverable_interfaces();
|
|
|
|
private:
|
|
explicit DHCPv4Client(Vector<DeprecatedString> interfaces_with_dhcp_enabled);
|
|
|
|
void try_discover_ifs();
|
|
|
|
Vector<DeprecatedString> m_interfaces_with_dhcp_enabled;
|
|
HashMap<u32, OwnPtr<DHCPv4Transaction>> m_ongoing_transactions;
|
|
RefPtr<Core::UDPServer> m_server;
|
|
RefPtr<Core::Timer> m_check_timer;
|
|
int m_max_timer_backoff_interval { 600000 }; // 10 minutes
|
|
|
|
void handle_offer(DHCPv4Packet const&, ParsedDHCPv4Options const&);
|
|
void handle_ack(DHCPv4Packet const&, ParsedDHCPv4Options const&);
|
|
void handle_nak(DHCPv4Packet const&, ParsedDHCPv4Options const&);
|
|
};
|