]> git.baikalelectronics.ru Git - kernel.git/commit
netlink: Fix handling of error from netlink_dump().
authorBen Pfaff <blp@nicira.com>
Wed, 9 Jul 2014 17:31:22 +0000 (10:31 -0700)
committerDavid S. Miller <davem@davemloft.net>
Wed, 9 Jul 2014 21:33:47 +0000 (14:33 -0700)
commit8de94bdac915ce511d872ceae6d535672106d32a
tree8a65858cef97946794e8ac01e3f82405a85643bb
parente58a70262cc5650e21bec6b598fedde463cfa376
netlink: Fix handling of error from netlink_dump().

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 ab8cfc9 (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

This commit also fixes the same bug in netlink_poll(), introduced in commit
e363adfe8 (netlink: add flow control for memory mapped I/O).

Signed-off-by: Ben Pfaff <blp@nicira.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/netlink/af_netlink.c