summaryrefslogtreecommitdiff
path: root/Kernel/Net/Routing.cpp
diff options
context:
space:
mode:
authorGunnar Beutner <gbeutner@serenityos.org>2021-05-12 12:14:03 +0200
committerAndreas Kling <kling@serenityos.org>2021-05-12 13:47:07 +0200
commit532db9f76881b574924b7fb26772cc911e343a5a (patch)
tree538b77a4867b8b6e38c105aa8d803e24c1553047 /Kernel/Net/Routing.cpp
parentaf59f64bc0ca4446deb3265a4b1a37be3fb5d2ab (diff)
downloadserenity-532db9f76881b574924b7fb26772cc911e343a5a.zip
Kernel: Treat 0.0.0.0 as a loopback address
This matches what other operating systems like Linux do: $ ip route get 0.0.0.0 local 0.0.0.0 dev lo src 127.0.0.1 uid 1000 cache <local> $ ssh 0.0.0.0 gunnar@0.0.0.0's password: $ ss -na | grep :22 | grep ESTAB tcp ESTAB 0 0 127.0.0.1:43118 127.0.0.1:22 tcp ESTAB 0 0 127.0.0.1:22 127.0.0.1:43118
Diffstat (limited to 'Kernel/Net/Routing.cpp')
-rw-r--r--Kernel/Net/Routing.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/Kernel/Net/Routing.cpp b/Kernel/Net/Routing.cpp
index e207cd35f4..3c6a6d0aac 100644
--- a/Kernel/Net/Routing.cpp
+++ b/Kernel/Net/Routing.cpp
@@ -141,6 +141,8 @@ RoutingDecision route_to(const IPv4Address& target, const IPv4Address& source, c
return { adapter, mac };
};
+ if (target[0] == 0 && target[1] == 0 && target[2] == 0 && target[3] == 0)
+ return if_matches(LoopbackAdapter::the(), LoopbackAdapter::the().mac_address());
if (target[0] == 127)
return if_matches(LoopbackAdapter::the(), LoopbackAdapter::the().mac_address());