From: Stefano Brivio <sbrivio@redhat.com>
To: David Gibson <david@gibson.dropbear.id.au>
Cc: passt-dev@passt.top, bugs.passt.top@bitsbetwixt.com,
Chris Kuhn <kuhnchris@kuhnchris.eu>
Subject: Re: [PATCH 2/2] udp: Remove socket from udp_{tap,splice}_map when timed out
Date: Tue, 7 Nov 2023 09:35:23 +0100 [thread overview]
Message-ID: <20231107093523.2210a930@elisabeth> (raw)
In-Reply-To: <20231106021709.603571-3-david@gibson.dropbear.id.au>
On Mon, 6 Nov 2023 13:17:09 +1100
David Gibson <david@gibson.dropbear.id.au> wrote:
> We save sockets bound to particular ports in udp_{tap,splice}_map for
> reuse later. If they're not used for a time, we time them out and close
> them. However, when that happened, we weren't actually removing the fds
> from the relevant map. That meant that later interactions on the same port
> could get a stale fd from the map.
>
> The stale fd might be closed, leading to unexpected EBADF errors, or it
> could have been re-used by a completely different socket bound to a
> different port, which could lead to us incorrectly forwarding packets.
>
> Link: https://bugs.passt.top/show_bug.cgi?id=57
Adding:
Reported-by: Reported-by: Chris Kuhn <kuhnchris@kuhnchris.eu>
Reported-by: Jay <bugs.passt.top@bitsbetwixt.com>
> Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
> ---
> udp.c | 12 +++++++-----
> 1 file changed, 7 insertions(+), 5 deletions(-)
>
> diff --git a/udp.c b/udp.c
> index a8473e3..b40d1f3 100644
> --- a/udp.c
> +++ b/udp.c
> @@ -1146,14 +1146,14 @@ static void udp_timer_one(struct ctx *c, int v6, enum udp_act_type type,
> {
> struct udp_splice_port *sp;
> struct udp_tap_port *tp;
> - int s = -1;
> + int *sockp = NULL;
>
> switch (type) {
> case UDP_ACT_TAP:
> tp = &udp_tap_map[v6 ? V6 : V4][port];
>
> if (ts->tv_sec - tp->ts > UDP_CONN_TIMEOUT) {
> - s = tp->sock;
> + sockp = &tp->sock;
> tp->flags = 0;
> }
>
> @@ -1162,21 +1162,23 @@ static void udp_timer_one(struct ctx *c, int v6, enum udp_act_type type,
> sp = &udp_splice_init[v6 ? V6 : V4][port];
>
> if (ts->tv_sec - sp->ts > UDP_CONN_TIMEOUT)
> - s = sp->sock;
> + sockp = &sp->sock;
>
> break;
> case UDP_ACT_SPLICE_NS:
> sp = &udp_splice_ns[v6 ? V6 : V4][port];
>
> if (ts->tv_sec - sp->ts > UDP_CONN_TIMEOUT)
> - s = sp->sock;
> + sockp = &sp->sock;
>
> break;
> default:
> return;
> }
>
> - if (s >= 0) {
> + if (sockp && *sockp >= 0) {
> + int s = *sockp;
> + *sockp = -1;
> epoll_ctl(c->epollfd, EPOLL_CTL_DEL, s, NULL);
> close(s);
> bitmap_clear(udp_act[v6 ? V6 : V4][type], port);
--
Stefano
next prev parent reply other threads:[~2023-11-07 8:35 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-11-06 2:17 [PATCH 0/2] udp: Fix bugs with saved socket fds David Gibson
2023-11-06 2:17 ` [PATCH 1/2] udp: Consistently use -1 to indicate un-opened sockets in maps David Gibson
2023-11-07 8:33 ` Stefano Brivio
2023-11-06 2:17 ` [PATCH 2/2] udp: Remove socket from udp_{tap,splice}_map when timed out David Gibson
2023-11-07 8:35 ` Stefano Brivio [this message]
2023-11-07 12:45 ` [PATCH 0/2] udp: Fix bugs with saved socket fds Stefano Brivio
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=20231107093523.2210a930@elisabeth \
--to=sbrivio@redhat.com \
--cc=bugs.passt.top@bitsbetwixt.com \
--cc=david@gibson.dropbear.id.au \
--cc=kuhnchris@kuhnchris.eu \
--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).