mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 07:30:19 +00:00
DHCPClient: Retry DISCOVER for interfaces that fail
Attempts are spaced out with exponential backoff, cut at 10 minutes per attempt. Also avoid trying to acquire an IP on interfaces that aren't up. Fixes #6126. Fixes #6125.
This commit is contained in:
parent
8b0f1f816b
commit
c6607719d2
Notes:
sideshowbarker
2024-07-18 20:44:17 +09:00
Author: https://github.com/alimpfard Commit: https://github.com/SerenityOS/serenity/commit/c6607719d2b Pull-request: https://github.com/SerenityOS/serenity/pull/6151 Issue: https://github.com/SerenityOS/serenity/issues/6125 Issue: https://github.com/SerenityOS/serenity/issues/6126
3 changed files with 129 additions and 54 deletions
|
@ -29,22 +29,43 @@
|
|||
#include <AK/Debug.h>
|
||||
#include <AK/Endian.h>
|
||||
#include <AK/Function.h>
|
||||
#include <AK/JsonArray.h>
|
||||
#include <AK/JsonObject.h>
|
||||
#include <AK/JsonParser.h>
|
||||
#include <AK/Random.h>
|
||||
#include <LibCore/File.h>
|
||||
#include <LibCore/SocketAddress.h>
|
||||
#include <LibCore/Timer.h>
|
||||
#include <stdio.h>
|
||||
|
||||
static void send(const InterfaceDescriptor& iface, const DHCPv4Packet& packet, Core::Object*)
|
||||
static u8 mac_part(const Vector<String>& parts, size_t index)
|
||||
{
|
||||
auto result = AK::StringUtils::convert_to_uint_from_hex(parts.at(index));
|
||||
VERIFY(result.has_value());
|
||||
return result.value();
|
||||
}
|
||||
|
||||
static MACAddress mac_from_string(const String& str)
|
||||
{
|
||||
auto chunks = str.split(':');
|
||||
VERIFY(chunks.size() == 6); // should we...worry about this?
|
||||
return {
|
||||
mac_part(chunks, 0), mac_part(chunks, 1), mac_part(chunks, 2),
|
||||
mac_part(chunks, 3), mac_part(chunks, 4), mac_part(chunks, 5)
|
||||
};
|
||||
}
|
||||
|
||||
static bool send(const InterfaceDescriptor& iface, const DHCPv4Packet& packet, Core::Object*)
|
||||
{
|
||||
int fd = socket(AF_INET, SOCK_DGRAM, IPPROTO_UDP);
|
||||
if (fd < 0) {
|
||||
dbgln("ERROR: socket :: {}", strerror(errno));
|
||||
return;
|
||||
return false;
|
||||
}
|
||||
|
||||
if (setsockopt(fd, SOL_SOCKET, SO_BINDTODEVICE, iface.m_ifname.characters(), IFNAMSIZ) < 0) {
|
||||
dbgln("ERROR: setsockopt(SO_BINDTODEVICE) :: {}", strerror(errno));
|
||||
return;
|
||||
return false;
|
||||
}
|
||||
|
||||
sockaddr_in dst;
|
||||
|
@ -59,8 +80,10 @@ static void send(const InterfaceDescriptor& iface, const DHCPv4Packet& packet, C
|
|||
dbgln_if(DHCPV4CLIENT_DEBUG, "sendto({}) = {}", fd, rc);
|
||||
if (rc < 0) {
|
||||
dbgln("sendto failed with {}", strerror(errno));
|
||||
// FIXME: what do we do here?
|
||||
return false;
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
static void set_params(const InterfaceDescriptor& iface, const IPv4Address& ipv4_addr, const IPv4Address& netmask, const IPv4Address& gateway)
|
||||
|
@ -109,8 +132,9 @@ static void set_params(const InterfaceDescriptor& iface, const IPv4Address& ipv4
|
|||
}
|
||||
}
|
||||
|
||||
DHCPv4Client::DHCPv4Client(Vector<InterfaceDescriptor> ifnames)
|
||||
: m_ifnames(ifnames)
|
||||
DHCPv4Client::DHCPv4Client(Vector<InterfaceDescriptor> ifnames_for_immediate_discover, Vector<InterfaceDescriptor> ifnames_for_later)
|
||||
: m_ifnames_for_immediate_discover(move(ifnames_for_immediate_discover))
|
||||
, m_ifnames_for_later(move(ifnames_for_later))
|
||||
{
|
||||
m_server = Core::UDPServer::construct(this);
|
||||
m_server->on_ready_to_receive = [this] {
|
||||
|
@ -129,8 +153,78 @@ DHCPv4Client::DHCPv4Client(Vector<InterfaceDescriptor> ifnames)
|
|||
VERIFY_NOT_REACHED();
|
||||
}
|
||||
|
||||
for (auto& iface : m_ifnames)
|
||||
for (auto& iface : m_ifnames_for_immediate_discover)
|
||||
dhcp_discover(iface);
|
||||
|
||||
m_fail_check_timer = Core::Timer::create_repeating(
|
||||
1000, [this] { try_discover_deferred_ifs(); }, this);
|
||||
|
||||
m_fail_check_timer->start();
|
||||
}
|
||||
|
||||
void DHCPv4Client::try_discover_deferred_ifs()
|
||||
{
|
||||
auto current_interval = m_fail_check_timer->interval();
|
||||
if (current_interval < m_max_timer_backoff_interval)
|
||||
current_interval *= 1.9f;
|
||||
m_fail_check_timer->set_interval(current_interval);
|
||||
|
||||
if (m_ifnames_for_later.is_empty())
|
||||
return;
|
||||
|
||||
// See if any of them are now up.
|
||||
auto ifs_result = get_discoverable_interfaces();
|
||||
if (ifs_result.is_error())
|
||||
return;
|
||||
|
||||
Interfaces& ifs = ifs_result.value();
|
||||
for (auto& iface : ifs.ready) {
|
||||
if (!m_ifnames_for_later.remove_first_matching([&](auto& if_) { return if_.m_ifname == iface.m_ifname; }))
|
||||
continue;
|
||||
|
||||
deferred_invoke([this, iface](auto&) { dhcp_discover(iface); });
|
||||
}
|
||||
}
|
||||
|
||||
Result<DHCPv4Client::Interfaces, String> DHCPv4Client::get_discoverable_interfaces()
|
||||
{
|
||||
auto file = Core::File::construct("/proc/net/adapters");
|
||||
if (!file->open(Core::IODevice::ReadOnly)) {
|
||||
dbgln("Error: Failed to open /proc/net/adapters: {}", file->error_string());
|
||||
return String { file->error_string() };
|
||||
}
|
||||
|
||||
auto file_contents = file->read_all();
|
||||
auto json = JsonValue::from_string(file_contents);
|
||||
|
||||
if (!json.has_value() || !json.value().is_array()) {
|
||||
dbgln("Error: No network adapters available");
|
||||
return String { "No network adapters available" };
|
||||
}
|
||||
|
||||
Vector<InterfaceDescriptor> ifnames_to_immediately_discover, ifnames_to_attempt_later;
|
||||
json.value().as_array().for_each([&ifnames_to_immediately_discover, &ifnames_to_attempt_later](auto& value) {
|
||||
auto if_object = value.as_object();
|
||||
|
||||
if (if_object.get("class_name").to_string() == "LoopbackAdapter")
|
||||
return;
|
||||
|
||||
auto name = if_object.get("name").to_string();
|
||||
auto mac = if_object.get("mac_address").to_string();
|
||||
auto is_up = if_object.get("link_up").to_bool();
|
||||
if (is_up) {
|
||||
dbgln_if(DHCPV4_DEBUG, "Found adapter '{}' with mac {}, and it was up!", name, mac);
|
||||
ifnames_to_immediately_discover.empend(name, mac_from_string(mac));
|
||||
} else {
|
||||
dbgln_if(DHCPV4_DEBUG, "Found adapter '{}' with mac {}, but it was down", name, mac);
|
||||
ifnames_to_attempt_later.empend(name, mac_from_string(mac));
|
||||
}
|
||||
});
|
||||
|
||||
return Interfaces {
|
||||
move(ifnames_to_immediately_discover),
|
||||
move(ifnames_to_attempt_later)
|
||||
};
|
||||
}
|
||||
|
||||
DHCPv4Client::~DHCPv4Client()
|
||||
|
@ -266,7 +360,10 @@ void DHCPv4Client::dhcp_discover(const InterfaceDescriptor& iface)
|
|||
auto& dhcp_packet = builder.build();
|
||||
|
||||
// broadcast the discover request
|
||||
send(iface, dhcp_packet, this);
|
||||
if (!send(iface, dhcp_packet, this)) {
|
||||
m_ifnames_for_later.append(iface);
|
||||
return;
|
||||
}
|
||||
m_ongoing_transactions.set(transaction_id, make<DHCPv4Transaction>(iface));
|
||||
}
|
||||
|
||||
|
@ -292,6 +389,9 @@ void DHCPv4Client::dhcp_request(DHCPv4Transaction& transaction, const DHCPv4Pack
|
|||
auto& dhcp_packet = builder.build();
|
||||
|
||||
// broadcast the "request" request
|
||||
send(iface, dhcp_packet, this);
|
||||
if (!send(iface, dhcp_packet, this)) {
|
||||
m_ifnames_for_later.append(iface);
|
||||
return;
|
||||
}
|
||||
transaction.accepted_offer = true;
|
||||
}
|
||||
|
|
|
@ -29,6 +29,7 @@
|
|||
#include "DHCPv4.h"
|
||||
#include <AK/HashMap.h>
|
||||
#include <AK/OwnPtr.h>
|
||||
#include <AK/Result.h>
|
||||
#include <AK/String.h>
|
||||
#include <AK/Vector.h>
|
||||
#include <LibCore/UDPServer.h>
|
||||
|
@ -59,7 +60,7 @@ class DHCPv4Client final : public Core::Object {
|
|||
C_OBJECT(DHCPv4Client)
|
||||
|
||||
public:
|
||||
explicit DHCPv4Client(Vector<InterfaceDescriptor> ifnames);
|
||||
explicit DHCPv4Client(Vector<InterfaceDescriptor> ifnames_for_immediate_discover, Vector<InterfaceDescriptor> ifnames_for_later);
|
||||
virtual ~DHCPv4Client() override;
|
||||
|
||||
void dhcp_discover(const InterfaceDescriptor& ifname);
|
||||
|
@ -69,10 +70,21 @@ public:
|
|||
|
||||
bool id_is_registered(u32 id) { return m_ongoing_transactions.contains(id); }
|
||||
|
||||
struct Interfaces {
|
||||
Vector<InterfaceDescriptor> ready;
|
||||
Vector<InterfaceDescriptor> not_ready;
|
||||
};
|
||||
static Result<Interfaces, String> get_discoverable_interfaces();
|
||||
|
||||
private:
|
||||
void try_discover_deferred_ifs();
|
||||
|
||||
HashMap<u32, OwnPtr<DHCPv4Transaction>> m_ongoing_transactions;
|
||||
Vector<InterfaceDescriptor> m_ifnames;
|
||||
Vector<InterfaceDescriptor> m_ifnames_for_immediate_discover;
|
||||
Vector<InterfaceDescriptor> m_ifnames_for_later;
|
||||
RefPtr<Core::UDPServer> m_server;
|
||||
RefPtr<Core::Timer> m_fail_check_timer;
|
||||
int m_max_timer_backoff_interval { 600000 }; // 10 minutes
|
||||
|
||||
void handle_offer(const DHCPv4Packet&, const ParsedDHCPv4Options&);
|
||||
void handle_ack(const DHCPv4Packet&, const ParsedDHCPv4Options&);
|
||||
|
|
|
@ -38,23 +38,6 @@
|
|||
#include <string.h>
|
||||
#include <unistd.h>
|
||||
|
||||
static u8 mac_part(const Vector<String>& parts, size_t index)
|
||||
{
|
||||
auto result = AK::StringUtils::convert_to_uint_from_hex(parts.at(index));
|
||||
VERIFY(result.has_value());
|
||||
return result.value();
|
||||
}
|
||||
|
||||
static MACAddress mac_from_string(const String& str)
|
||||
{
|
||||
auto chunks = str.split(':');
|
||||
VERIFY(chunks.size() == 6); // should we...worry about this?
|
||||
return {
|
||||
mac_part(chunks, 0), mac_part(chunks, 1), mac_part(chunks, 2),
|
||||
mac_part(chunks, 3), mac_part(chunks, 4), mac_part(chunks, 5)
|
||||
};
|
||||
}
|
||||
|
||||
int main([[maybe_unused]] int argc, [[maybe_unused]] char** argv)
|
||||
{
|
||||
if (pledge("stdio unix inet cpath rpath fattr", nullptr) < 0) {
|
||||
|
@ -71,36 +54,16 @@ int main([[maybe_unused]] int argc, [[maybe_unused]] char** argv)
|
|||
|
||||
unveil(nullptr, nullptr);
|
||||
|
||||
auto file = Core::File::construct("/proc/net/adapters");
|
||||
if (!file->open(Core::IODevice::ReadOnly)) {
|
||||
dbgln("Error: {}", file->error_string());
|
||||
auto ifs_result = DHCPv4Client::get_discoverable_interfaces();
|
||||
if (ifs_result.is_error()) {
|
||||
warnln("Error: {}", ifs_result.error());
|
||||
return 1;
|
||||
}
|
||||
|
||||
auto file_contents = file->read_all();
|
||||
auto json = JsonValue::from_string(file_contents);
|
||||
auto ifs = ifs_result.release_value();
|
||||
auto client = DHCPv4Client::construct(move(ifs.ready), move(ifs.not_ready));
|
||||
|
||||
if (!json.has_value() || !json.value().is_array()) {
|
||||
dbgln("Error: No network adapters available");
|
||||
return 1;
|
||||
}
|
||||
|
||||
Vector<InterfaceDescriptor> ifnames;
|
||||
json.value().as_array().for_each([&ifnames](auto& value) {
|
||||
auto if_object = value.as_object();
|
||||
|
||||
if (if_object.get("class_name").to_string() == "LoopbackAdapter")
|
||||
return;
|
||||
|
||||
auto name = if_object.get("name").to_string();
|
||||
auto mac = if_object.get("mac_address").to_string();
|
||||
dbgln_if(DHCPV4_DEBUG, "Found adapter '{}' with mac {}", name, mac);
|
||||
ifnames.append({ name, mac_from_string(mac) });
|
||||
});
|
||||
|
||||
auto client = DHCPv4Client::construct(move(ifnames));
|
||||
|
||||
if (pledge("stdio inet", nullptr) < 0) {
|
||||
if (pledge("stdio inet cpath rpath fattr", nullptr) < 0) {
|
||||
perror("pledge");
|
||||
return 1;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue