From: Eric Dumazet <eric.dumazet@gmail.com>
To: Tom Marshall <tdm.code@gmail.com>
Cc: netdev@vger.kernel.org
Subject: Re: [PATCH] Fix race in tcp_poll
Date: Mon, 20 Sep 2010 23:54:06 +0200 [thread overview]
Message-ID: <1285019646.2323.267.camel@edumazet-laptop> (raw)
In-Reply-To: <20100920185719.GA13355@gmail.com>
Le lundi 20 septembre 2010 à 12:18 -0700, Tom Marshall a écrit :
> If a RST comes in immediately after checking sk->sk_err, tcp_poll will
> return POLLIN but not POLLOUT. Fix this by checking sk->sk_err at the end
> of tcp_poll. Additionally, ensure the correct order of operations on SMP
> machines with memory barriers.
>
> Signed-off-by: Tom Marshall <tdm.code@gmail.com>
>
> diff --git a/net/ipv4/tcp.c b/net/ipv4/tcp.c
> index 3fb1428..95d75d4 100644
> --- a/net/ipv4/tcp.c
> +++ b/net/ipv4/tcp.c
> @@ -386,8 +386,6 @@ unsigned int tcp_poll(struct file *file, struct socket *sock, poll_table *wait)
> */
>
> mask = 0;
> - if (sk->sk_err)
> - mask = POLLERR;
>
> /*
> * POLLHUP is certainly not done right. But poll() doesn't
> @@ -457,6 +455,11 @@ unsigned int tcp_poll(struct file *file, struct socket *sock, poll_table *wait)
> if (tp->urg_data & TCP_URG_VALID)
> mask |= POLLPRI;
> }
> + /* This barrier is coupled with smp_wmb() in tcp_reset() */
> + smp_rmb();
> + if (sk->sk_err)
> + mask |= POLLERR;
> +
> return mask;
> }
> EXPORT_SYMBOL(tcp_poll);
> diff --git a/net/ipv4/tcp_input.c b/net/ipv4/tcp_input.c
> index e663b78..149e79a 100644
> --- a/net/ipv4/tcp_input.c
> +++ b/net/ipv4/tcp_input.c
> @@ -4048,6 +4048,8 @@ static void tcp_reset(struct sock *sk)
> default:
> sk->sk_err = ECONNRESET;
> }
> + /* This barrier is coupled with smp_rmb() in tcp_poll() */
> + smp_wmb();
>
> if (!sock_flag(sk, SOCK_DEAD))
> sk->sk_error_report(sk);
>
Signed-off-by: Eric Dumazet <eric.dumazet@gmail.com>
Maybe this is the last time we can avoid taking socket lock in
tcp_poll() ;)
next prev parent reply other threads:[~2010-09-20 21:54 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2010-09-20 19:18 [PATCH] Fix race in tcp_poll Tom Marshall
2010-09-20 21:54 ` Eric Dumazet [this message]
2010-09-20 22:42 ` David Miller
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=1285019646.2323.267.camel@edumazet-laptop \
--to=eric.dumazet@gmail.com \
--cc=netdev@vger.kernel.org \
--cc=tdm.code@gmail.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.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox