public inbox for passt-dev@passt.top
 help / color / mirror / code / Atom feed
* [PATCH] arp: only send ARP replies for --gateway address
@ 2023-09-15 14:20 Nikolay Edigaryev
  2023-09-18  2:26 ` David Gibson
  0 siblings, 1 reply; 6+ messages in thread
From: Nikolay Edigaryev @ 2023-09-15 14:20 UTC (permalink / raw)
  To: passt-dev; +Cc: Nikolay Edigaryev

Problem: when passt/pasta are working in a broadcast domain with more
than one host machine, it will answer for all of these machines,
except for the one having --address. This is akin to ARP spoofing
and breaks connection with these machines if passt/pasta ARP reply
arrives before the original one.

Solution: only be responsible and send ARP replies
for the --gateway's address.
---
 arp.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/arp.c b/arp.c
index a35c1b6..f873491 100644
--- a/arp.c
+++ b/arp.c
@@ -67,8 +67,8 @@ int arp(const struct ctx *c, const struct pool *p)
 	    !memcmp(am->sip, am->tip, sizeof(am->sip)))
 		return 1;
 
-	/* Don't resolve our own address, either. */
-	if (!memcmp(am->tip, &c->ip4.addr, sizeof(am->tip)))
+	/* Don't resolve anything but gateway address. */
+	if (memcmp(am->tip, &c->ip4.gw, sizeof(am->tip)) != 0)
 		return 1;
 
 	ah->ar_op = htons(ARPOP_REPLY);
-- 
@@ -67,8 +67,8 @@ int arp(const struct ctx *c, const struct pool *p)
 	    !memcmp(am->sip, am->tip, sizeof(am->sip)))
 		return 1;
 
-	/* Don't resolve our own address, either. */
-	if (!memcmp(am->tip, &c->ip4.addr, sizeof(am->tip)))
+	/* Don't resolve anything but gateway address. */
+	if (memcmp(am->tip, &c->ip4.gw, sizeof(am->tip)) != 0)
 		return 1;
 
 	ah->ar_op = htons(ARPOP_REPLY);
-- 
2.39.2 (Apple Git-144)


^ permalink raw reply related	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2023-10-12  4:36 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-09-15 14:20 [PATCH] arp: only send ARP replies for --gateway address Nikolay Edigaryev
2023-09-18  2:26 ` David Gibson
2023-09-18 14:01   ` Stefano Brivio
2023-09-18 15:52     ` Nikolay Edigaryev
2023-09-19  2:09       ` David Gibson
2023-10-12  4:35         ` David Gibson

Code repositories for project(s) associated with this public inbox

	https://passt.top/passt

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for IMAP folder(s).