netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] netlink: Fix netlink_recvmsg() handling of error from netlink_dump().
@ 2014-06-30 22:35 Ben Pfaff
  2014-07-08  2:37 ` David Miller
  0 siblings, 1 reply; 3+ messages in thread
From: Ben Pfaff @ 2014-06-30 22:35 UTC (permalink / raw)
  To: netdev; +Cc: Ben Pfaff

netlink_dump() returns a negative errno value on error.  Until now,
netlink_recvmsg() directly recorded that negative value in sk->sk_err,
but that's wrong since sk_err takes positive errno values.  (This manifests
as userspace receiving a positive return value from the recv() system call,
falsely indicating success.)

This bug was introduced in the commit that started checking the
netlink_dump() return value, commit b44d211 (netlink: handle errors from
netlink_dump()).

Multithreaded Netlink dumps are one way to trigger this behavior in
practice, as described in the commit message for the userspace workaround
posted here:
    http://openvswitch.org/pipermail/dev/2014-June/042339.html

Signed-off-by: Ben Pfaff <blp@nicira.com>
---
 net/netlink/af_netlink.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net/netlink/af_netlink.c b/net/netlink/af_netlink.c
index 15c731f..b7514b3 100644
--- a/net/netlink/af_netlink.c
+++ b/net/netlink/af_netlink.c
@@ -2483,7 +2483,7 @@ static int netlink_recvmsg(struct kiocb *kiocb, struct socket *sock,
 	    atomic_read(&sk->sk_rmem_alloc) <= sk->sk_rcvbuf / 2) {
 		ret = netlink_dump(sk);
 		if (ret) {
-			sk->sk_err = ret;
+			sk->sk_err = -ret;
 			sk->sk_error_report(sk);
 		}
 	}
-- 
1.7.10.4

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH] netlink: Fix netlink_recvmsg() handling of error from netlink_dump().
  2014-06-30 22:35 [PATCH] netlink: Fix netlink_recvmsg() handling of error from netlink_dump() Ben Pfaff
@ 2014-07-08  2:37 ` David Miller
  2014-07-09 17:32   ` Ben Pfaff
  0 siblings, 1 reply; 3+ messages in thread
From: David Miller @ 2014-07-08  2:37 UTC (permalink / raw)
  To: blp; +Cc: netdev

From: Ben Pfaff <blp@nicira.com>
Date: Mon, 30 Jun 2014 15:35:04 -0700

> netlink_dump() returns a negative errno value on error.  Until now,
> netlink_recvmsg() directly recorded that negative value in sk->sk_err,
> but that's wrong since sk_err takes positive errno values.  (This manifests
> as userspace receiving a positive return value from the recv() system call,
> falsely indicating success.)
> 
> This bug was introduced in the commit that started checking the
> netlink_dump() return value, commit b44d211 (netlink: handle errors from
> netlink_dump()).
> 
> Multithreaded Netlink dumps are one way to trigger this behavior in
> practice, as described in the commit message for the userspace workaround
> posted here:
>     http://openvswitch.org/pipermail/dev/2014-June/042339.html
> 
> Signed-off-by: Ben Pfaff <blp@nicira.com>

There's another place, later in this file, doing the same exact thing.

Please respin this patch, fixing that location too.

Thanks.

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] netlink: Fix netlink_recvmsg() handling of error from netlink_dump().
  2014-07-08  2:37 ` David Miller
@ 2014-07-09 17:32   ` Ben Pfaff
  0 siblings, 0 replies; 3+ messages in thread
From: Ben Pfaff @ 2014-07-09 17:32 UTC (permalink / raw)
  To: David Miller; +Cc: netdev

On Mon, Jul 07, 2014 at 07:37:35PM -0700, David Miller wrote:
> From: Ben Pfaff <blp@nicira.com>
> Date: Mon, 30 Jun 2014 15:35:04 -0700
> 
> > netlink_dump() returns a negative errno value on error.  Until now,
> > netlink_recvmsg() directly recorded that negative value in sk->sk_err,
> > but that's wrong since sk_err takes positive errno values.  (This manifests
> > as userspace receiving a positive return value from the recv() system call,
> > falsely indicating success.)
> > 
> > This bug was introduced in the commit that started checking the
> > netlink_dump() return value, commit b44d211 (netlink: handle errors from
> > netlink_dump()).
> > 
> > Multithreaded Netlink dumps are one way to trigger this behavior in
> > practice, as described in the commit message for the userspace workaround
> > posted here:
> >     http://openvswitch.org/pipermail/dev/2014-June/042339.html
> > 
> > Signed-off-by: Ben Pfaff <blp@nicira.com>
> 
> There's another place, later in this file, doing the same exact thing.
> 
> Please respin this patch, fixing that location too.

Thanks for pointing that out, I sent out v2.

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2014-07-09 17:33 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-06-30 22:35 [PATCH] netlink: Fix netlink_recvmsg() handling of error from netlink_dump() Ben Pfaff
2014-07-08  2:37 ` David Miller
2014-07-09 17:32   ` Ben Pfaff

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 NNTP newsgroup(s).