/* * Copyright (c) 2018-2020, Andreas Kling * * SPDX-License-Identifier: BSD-2-Clause */ #pragma once #include #include #include #include #include namespace Kernel { struct Route final : public AtomicRefCounted { Route(IPv4Address const& destination, IPv4Address const& gateway, IPv4Address const& netmask, u16 flags, NonnullRefPtr adapter) : destination(destination) , gateway(gateway) , netmask(netmask) , flags(flags) , adapter(adapter) { } bool operator==(Route const& other) const { return destination == other.destination && netmask == other.netmask && flags == other.flags && adapter.ptr() == other.adapter.ptr(); } bool matches(Route const& other) const { return destination == other.destination && (gateway == other.gateway || other.gateway.is_zero()) && netmask == other.netmask && flags == other.flags && adapter.ptr() == other.adapter.ptr(); } IPv4Address const destination; IPv4Address const gateway; IPv4Address const netmask; u16 const flags; NonnullRefPtr const adapter; IntrusiveListNode> route_list_node {}; using RouteList = IntrusiveList<&Route::route_list_node>; }; struct RoutingDecision { RefPtr adapter; MACAddress next_hop; bool is_zero() const; }; enum class UpdateTable { Set, Delete, }; void update_arp_table(IPv4Address const&, MACAddress const&, UpdateTable update); ErrorOr update_routing_table(IPv4Address const& destination, IPv4Address const& gateway, IPv4Address const& netmask, u16 flags, RefPtr const adapter, UpdateTable update); enum class AllowUsingGateway { Yes, No, }; enum class AllowBroadcast { Yes, No, }; RoutingDecision route_to(IPv4Address const& target, IPv4Address const& source, RefPtr const through = nullptr, AllowBroadcast = AllowBroadcast::No, AllowUsingGateway = AllowUsingGateway::Yes); SpinlockProtected, LockRank::None>& arp_table(); SpinlockProtected& routing_table(); }