public inbox for passt-dev@passt.top
 help / color / mirror / code / Atom feed
From: David Gibson <david@gibson.dropbear.id.au>
To: Jon Maloy <jmaloy@redhat.com>
Cc: sbrivio@redhat.com, dgibson@redhat.com, passt-dev@passt.top
Subject: Re: [PATCH v5 01/10] netlink: add function to extract MAC addresses from NDP/ARP table
Date: Mon, 8 Sep 2025 12:12:31 +1000	[thread overview]
Message-ID: <aL47j_yixHkyzXLD@zatzit> (raw)
In-Reply-To: <20250906021154.2760611-2-jmaloy@redhat.com>

[-- Attachment #1: Type: text/plain, Size: 4873 bytes --]

On Fri, Sep 05, 2025 at 10:11:45PM -0400, Jon Maloy wrote:
> The solution to bug https://bugs.passt.top/show_bug.cgi?id=120
> requires the ability to translate from an IP address to its
> corresponding MAC address in cases where those are present in
> the ARP/NDP table.
> 
> We add this feature here.
> 
> Signed-off-by: Jon Maloy <jmaloy@redhat.com>

Reviewed-by: David Gibson <david@gibson.dropbear.id.au>

> ---
> v3: - Added an attribute contianing NDA_DST to sent message, so
>       that we let the kernel do the filtering of the IP address
>       and return only one entry.
>     - Added interface index to the call signature. Since the only
>       interface we know is the template interface, this limits
>       the number of hosts that will be seen as 'network segment
>       local' from a PASST viewpoint.
> v4: - Made loop independent of attribute order.
>     - Ignoring L2 addresses which are not of size ETH_ALEN.
> v5: - Changed return value of new function, so caller can know if
>       a MAC address really was found.
> ---
>  netlink.c | 84 +++++++++++++++++++++++++++++++++++++++++++++++++++++++
>  netlink.h |  2 ++
>  2 files changed, 86 insertions(+)
> 
> diff --git a/netlink.c b/netlink.c
> index 8f82e73..1ca2c9a 100644
> --- a/netlink.c
> +++ b/netlink.c
> @@ -800,6 +800,90 @@ int nl_addr_get(int s, unsigned int ifi, sa_family_t af,
>  	return status;
>  }
>  
> +/**
> + * nl_neigh_mac_get() - Get neighbor MAC address from the kernel neigh table
> + * @s:    Netlink socket fd
> + * @addr: IPv4 or IPv6 address
> + * @ifi:  Interface index
> + * @mac:  Buffer for Ethernet MAC, left unchanged if not found/usable
> + *
> + * Return: true if a valid address was found, false otherwise.
> + */
> +bool nl_neigh_mac_get(int s, const union inany_addr *addr,
> +		      int ifi, unsigned char *mac)
> +{
> +	const void *ip = inany_v4(addr);
> +	struct req_t {
> +		struct nlmsghdr nlh;
> +		struct ndmsg ndm;
> +		struct rtattr rta;
> +		char ip[RTA_ALIGN(sizeof(struct in6_addr))];
> +	} req;
> +	struct nlmsghdr *nh;
> +	char buf[NLBUFSIZ];
> +	bool found = false;
> +	ssize_t status;
> +	uint32_t seq;
> +	int msglen;
> +	int iplen;
> +
> +	memset(&req, 0, sizeof(req));
> +	req.ndm.ndm_ifindex = ifi;
> +	req.rta.rta_type = NDA_DST;
> +
> +	if (ip) {
> +		req.ndm.ndm_family = AF_INET;
> +		iplen = sizeof(struct in_addr);
> +	} else {
> +		req.ndm.ndm_family = AF_INET6;
> +		ip = &addr;
> +		iplen = sizeof(struct in6_addr);
> +	}
> +
> +	req.rta.rta_len = RTA_LENGTH(iplen);
> +	memcpy(RTA_DATA(&req.rta), ip, iplen);
> +	msglen = NLMSG_ALIGN(sizeof(req.nlh) + sizeof(req.ndm) + RTA_LENGTH(iplen));
> +	seq = nl_send(s, &req, RTM_GETNEIGH, 0, msglen);
> +
> +	/* Drain all RTM_NEWNEIGH replies for this seq */
> +	nl_foreach_oftype(nh, status, s, buf, seq, RTM_NEWNEIGH) {
> +		struct ndmsg *ndm = NLMSG_DATA(nh);
> +		struct rtattr *rta = (struct rtattr *)(ndm + 1);
> +		const uint8_t *lladdr = NULL;
> +		size_t na = RTM_PAYLOAD(nh);
> +		const void *dst = NULL;
> +		size_t lladdr_len = 0;
> +		size_t dstlen = 0;
> +
> +		for (; RTA_OK(rta, na); rta = RTA_NEXT(rta, na)) {
> +			switch (rta->rta_type) {
> +			case NDA_DST:
> +				dst = RTA_DATA(rta);
> +				dstlen = RTA_PAYLOAD(rta);
> +				break;
> +			case NDA_LLADDR:
> +				lladdr = RTA_DATA(rta);
> +				lladdr_len = RTA_PAYLOAD(rta);
> +				break;
> +			default:
> +				break;
> +			}
> +		}
> +
> +		if (dst && dstlen == (size_t)iplen && memcmp(dst, ip, iplen) == 0) {
> +			/* Only copy Ethernet-style addresses; leave unchanged otherwise */
> +			if (lladdr && lladdr_len == ETH_ALEN) {
> +				memcpy(mac, lladdr, ETH_ALEN);
> +				found = true;
> +			}
> +		}
> +	}
> +	if (status < 0)
> +		warn("netlink: RTM_NEWNEIGH failed: %s", strerror_(-status));
> +
> +	return found;
> +}
> +
>  /**
>   * nl_addr_get_ll() - Get first IPv6 link-local address for a given interface
>   * @s:		Netlink socket
> diff --git a/netlink.h b/netlink.h
> index b51e99c..1dbe1db 100644
> --- a/netlink.h
> +++ b/netlink.h
> @@ -17,6 +17,8 @@ int nl_route_dup(int s_src, unsigned int ifi_src,
>  		 int s_dst, unsigned int ifi_dst, sa_family_t af);
>  int nl_addr_get(int s, unsigned int ifi, sa_family_t af,
>  		void *addr, int *prefix_len, void *addr_l);
> +bool nl_neigh_mac_get(int s, const union inany_addr *addr, int ifi,
> +		      unsigned char *mac);
>  int nl_addr_set(int s, unsigned int ifi, sa_family_t af,
>  		const void *addr, int prefix_len);
>  int nl_addr_get_ll(int s, unsigned int ifi, struct in6_addr *addr);
> -- 
> 2.50.1
> 

-- 
David Gibson (he or they)	| I'll have my music baroque, and my code
david AT gibson.dropbear.id.au	| minimalist, thank you, not the other way
				| around.
http://www.ozlabs.org/~dgibson

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

  reply	other threads:[~2025-09-08  3:09 UTC|newest]

Thread overview: 24+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-09-06  2:11 [PATCH v5 00/10] Use true MAC address of LAN local remote hosts Jon Maloy
2025-09-06  2:11 ` [PATCH v5 01/10] netlink: add function to extract MAC addresses from NDP/ARP table Jon Maloy
2025-09-08  2:12   ` David Gibson [this message]
2025-09-06  2:11 ` [PATCH v5 02/10] fwd: Added cache table for ARP/NDP contents Jon Maloy
2025-09-08  2:42   ` David Gibson
2025-09-09 15:02     ` Jon Maloy
2025-09-10  1:49       ` David Gibson
2025-09-08  9:57   ` David Gibson
2025-09-06  2:11 ` [PATCH v5 03/10] fwd: Add entries of ARP/NDP cache table to a FIFO/LRU queue Jon Maloy
2025-09-08  2:51   ` David Gibson
2025-09-06  2:11 ` [PATCH v5 04/10] arp/ndp: respond with true MAC address of LAN local remote hosts Jon Maloy
2025-09-08  3:04   ` David Gibson
2025-09-06  2:11 ` [PATCH v5 05/10] flow: add MAC address of LAN local remote hosts to flow Jon Maloy
2025-09-08  3:07   ` David Gibson
2025-09-06  2:11 ` [PATCH v5 06/10] udp: forward external source MAC address through tap interface Jon Maloy
2025-09-08  3:13   ` David Gibson
2025-09-06  2:11 ` [PATCH v5 07/10] tcp: " Jon Maloy
2025-09-08  3:18   ` David Gibson
2025-09-06  2:11 ` [PATCH v5 08/10] tap: change signature of function tap_push_l2h() Jon Maloy
2025-09-08  3:21   ` David Gibson
2025-09-06  2:11 ` [PATCH v5 09/10] tcp: make tcp_rst_no_conn() respond with correct MAC address Jon Maloy
2025-09-08  3:29   ` David Gibson
2025-09-06  2:11 ` [PATCH v5 10/10] icmp: let icmp use mac address from flowside structure Jon Maloy
2025-09-08  3:35   ` David Gibson

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=aL47j_yixHkyzXLD@zatzit \
    --to=david@gibson.dropbear.id.au \
    --cc=dgibson@redhat.com \
    --cc=jmaloy@redhat.com \
    --cc=passt-dev@passt.top \
    --cc=sbrivio@redhat.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).