From: David Gibson <david@gibson.dropbear.id.au>
To: Laurent Vivier <lvivier@redhat.com>
Cc: passt-dev@passt.top
Subject: Re: [PATCH v13 07/10] vhost-user: add vhost-user
Date: Thu, 21 Nov 2024 15:20:48 +1100 [thread overview]
Message-ID: <Zz61IEZZyYCDTmg4@zatzit> (raw)
In-Reply-To: <ae86d60b-766c-49e2-a83a-079f1aba7325@redhat.com>
[-- Attachment #1: Type: text/plain, Size: 2158 bytes --]
On Wed, Nov 20, 2024 at 01:40:50PM +0100, Laurent Vivier wrote:
> On 20/11/2024 04:33, David Gibson wrote:
> > > + vu_set_vnethdr(vdev, flags_elem[0].in_sg[0].iov_base, 1);
> > > +
> > > + eh = vu_eth(flags_elem[0].in_sg[0].iov_base);
> > > +
> > > + memcpy(eh->h_dest, c->guest_mac, sizeof(eh->h_dest));
> > > + memcpy(eh->h_source, c->our_tap_mac, sizeof(eh->h_source));
> > > +
> > > + if (CONN_V4(conn)) {
> > > + struct tcp_payload_t *payload;
> > > + struct iphdr *iph;
> > > + uint32_t seq;
> > > +
> > > + eh->h_proto = htons(ETH_P_IP);
> > > +
> > > + iph = vu_ip(flags_elem[0].in_sg[0].iov_base);
> > > + *iph = (struct iphdr)L2_BUF_IP4_INIT(IPPROTO_TCP);
> > > +
> > > + payload = vu_payloadv4(flags_elem[0].in_sg[0].iov_base);
> > > + memset(&payload->th, 0, sizeof(payload->th));
> > > + payload->th.doff = offsetof(struct tcp_payload_t, data) / 4;
> > > + payload->th.ack = 1;
> > > +
> > > + seq = conn->seq_to_tap;
> > > + ret = tcp_prepare_flags(c, conn, flags, &payload->th,
> > > + (struct tcp_syn_opts *)payload->data,
> > > + &optlen);
> > > + if (ret <= 0) {
> > > + vu_queue_rewind(vq, 1);
> > > + return ret;
> > > + }
> > > +
> > > + l4len = tcp_fill_headers4(conn, NULL, iph, payload, optlen,
> > > + NULL, seq, true);
> > > + l2len = sizeof(*iph);
> > Much of the above duplicates tcp_vu_prepare(). Any chance you could
> > call into it instead?
>
> I tried but tcp_fill_headersX() needs the length computed in
> tcp_prepare_flags() but tcp_prepare_flags() needs to be after
> tcp_vu_prepare() because tcp_vu_prepare() resets the TCP header and
> tcp_prepare_flags() updates it with the flags.
> tcp_prepare_flags() should be called in the middle of tcp_vu_prepare().
> It's really simpler to duplicate the code of tcp_vu_prepare() in
> tcp_vu_send_flag() rather than to call tcp_vu_prepare() from
> tcp_vu_send_flag().
Ah, yes, I see your point.
--
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 --]
next prev parent reply other threads:[~2024-11-21 4:21 UTC|newest]
Thread overview: 16+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-11-19 15:10 [PATCH v13 00/10] Add vhost-user support to passt. (part 3) Laurent Vivier
2024-11-19 15:10 ` [PATCH v13 01/10] packet: replace struct desc by struct iovec Laurent Vivier
2024-11-19 15:10 ` [PATCH v13 02/10] vhost-user: introduce virtio API Laurent Vivier
2024-11-19 15:10 ` [PATCH v13 03/10] vhost-user: introduce vhost-user API Laurent Vivier
2024-11-19 15:10 ` [PATCH v13 04/10] udp: Prepare udp.c to be shared with vhost-user Laurent Vivier
2024-11-19 15:10 ` [PATCH v13 05/10] tcp: Export headers functions Laurent Vivier
2024-11-19 15:10 ` [PATCH v13 06/10] passt: rename tap_sock_init() to tap_backend_init() Laurent Vivier
2024-11-19 15:10 ` [PATCH v13 07/10] vhost-user: add vhost-user Laurent Vivier
2024-11-20 3:33 ` David Gibson
2024-11-20 12:40 ` Laurent Vivier
2024-11-21 4:20 ` David Gibson [this message]
2024-11-19 15:10 ` [PATCH v13 08/10] test: Add tests for passt in vhost-user mode Laurent Vivier
2024-11-19 15:10 ` [PATCH v13 09/10] tcp_vu: Share more header construction between IPv4 and IPv6 paths Laurent Vivier
2024-11-19 15:10 ` [PATCH v13 10/10] tcp: Move tcp_l2_buf_fill_headers() to tcp_buf.c Laurent Vivier
2024-11-19 21:19 ` [PATCH v13 00/10] Add vhost-user support to passt. (part 3) Stefano Brivio
2024-11-20 11:35 ` Laurent Vivier
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=Zz61IEZZyYCDTmg4@zatzit \
--to=david@gibson.dropbear.id.au \
--cc=lvivier@redhat.com \
--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).