From: Stefano Brivio <sbrivio@redhat.com>
To: David Gibson <david@gibson.dropbear.id.au>
Cc: passt-dev@passt.top
Subject: Re: [PATCH 2/7] udp: Split tap-bound UDP packets into multiple buffers using io vector
Date: Tue, 30 Apr 2024 22:15:34 +0200 [thread overview]
Message-ID: <20240430221534.70dc88ef@elisabeth> (raw)
In-Reply-To: <20240430100541.381350-3-david@gibson.dropbear.id.au>
On Tue, 30 Apr 2024 20:05:36 +1000
David Gibson <david@gibson.dropbear.id.au> wrote:
> When sending to the tap device, currently we assemble the headers and
> payload into a single contiguous buffer. Those are described by a single
> struct iovec, then a batch of frames is sent to the device with
> tap_send_frames().
>
> In order to better integrate the IPv4 and IPv6 paths, we want the IP
> header in a different buffer that might not be contiguous with the
> payload. To prepare for that, split the UDP packet into an iovec of
> buffers. We use the same split that Laurent recently introduced for
> TCP for convenience.
>
> This removes the last use of tap_hdr_len_(), tap_frame_base() and
> tap_frame_len(), so remove those too.
>
> Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
> ---
> tap.h | 38 ------------------------------
> udp.c | 74 +++++++++++++++++++++++++++++++++++++++--------------------
> 2 files changed, 49 insertions(+), 63 deletions(-)
>
> diff --git a/tap.h b/tap.h
> index 75aa3f03..754703d2 100644
> --- a/tap.h
> +++ b/tap.h
> @@ -43,44 +43,6 @@ static inline void tap_hdr_update(struct tap_hdr *thdr, size_t l2len)
> thdr->vnet_len = htonl(l2len);
> }
>
> -static inline size_t tap_hdr_len_(const struct ctx *c)
> -{
> - if (c->mode == MODE_PASST)
> - return sizeof(struct tap_hdr);
> - else
> - return 0;
> -}
> -
> -/**
> - * tap_frame_base() - Find start of tap frame
> - * @c: Execution context
> - * @taph: Pointer to tap specific header buffer
> - *
> - * Returns: pointer to the start of tap frame - suitable for an
> - * iov_base to be passed to tap_send_frames())
> - */
> -static inline void *tap_frame_base(const struct ctx *c, struct tap_hdr *taph)
> -{
> - return (char *)(taph + 1) - tap_hdr_len_(c);
> -}
> -
> -/**
> - * tap_frame_len() - Finalize tap frame and return total length
> - * @c: Execution context
> - * @taph: Tap header to finalize
> - * @plen: L2 packet length (includes L2, excludes tap specific headers)
> - *
> - * Returns: length of the tap frame including tap specific headers - suitable
> - * for an iov_len to be passed to tap_send_frames()
> - */
> -static inline size_t tap_frame_len(const struct ctx *c, struct tap_hdr *taph,
> - size_t plen)
> -{
> - if (c->mode == MODE_PASST)
> - taph->vnet_len = htonl(plen);
> - return plen + tap_hdr_len_(c);
> -}
> -
> struct in_addr tap_ip4_daddr(const struct ctx *c);
> void tap_udp4_send(const struct ctx *c, struct in_addr src, in_port_t sport,
> struct in_addr dst, in_port_t dport,
> diff --git a/udp.c b/udp.c
> index 545212c5..4650b366 100644
> --- a/udp.c
> +++ b/udp.c
> @@ -222,12 +222,28 @@ struct udp6_l2_buf_t {
> #endif
> udp6_l2_buf[UDP_MAX_FRAMES];
>
> +/**
> + * enum udp_iov_idx - Indices for the buffers making up a single UDP frame
> + * @UDP_IOV_TAP TAP specific header
Nits: s/TAP/tap/ and
> + * @UDP_IOV_ETH ethernet header
s/ethernet/Ethernet.
--
Stefano
next prev parent reply other threads:[~2024-04-30 20:16 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-04-30 10:05 [PATCH 0/7] Rework UDP buffers David Gibson
2024-04-30 10:05 ` [PATCH 1/7] test: Allow sftp via vsock-ssh in tests David Gibson
2024-04-30 10:05 ` [PATCH 2/7] udp: Split tap-bound UDP packets into multiple buffers using io vector David Gibson
2024-04-30 20:15 ` Stefano Brivio [this message]
2024-05-01 2:35 ` David Gibson
2024-04-30 10:05 ` [PATCH 3/7] udp: Combine initialisation of IPv4 and IPv6 iovs David Gibson
2024-04-30 10:05 ` [PATCH 4/7] udp: Explicitly set checksum in guest-bound UDP headers David Gibson
2024-04-30 10:05 ` [PATCH 5/7] udp: Share payload buffers between IPv4 and IPv6 David Gibson
2024-04-30 20:16 ` Stefano Brivio
2024-05-01 2:46 ` David Gibson
2024-04-30 10:05 ` [PATCH 6/7] udp: Use the same buffer for the L2 header for all frames David Gibson
2024-04-30 10:05 ` [PATCH 7/7] udp: Single buffer for IPv4, IPv6 headers and metadata David Gibson
2024-04-30 20:16 ` Stefano Brivio
2024-05-01 2:54 ` 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=20240430221534.70dc88ef@elisabeth \
--to=sbrivio@redhat.com \
--cc=david@gibson.dropbear.id.au \
--cc=passt-dev@passt.top \
/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).