]> git.baikalelectronics.ru Git - kernel.git/commit
rxrpc: bogus MSG_PEEK test in rxrpc_recvmsg()
authorAl Viro <viro@ZenIV.linux.org.uk>
Sat, 14 Mar 2015 05:34:56 +0000 (05:34 +0000)
committerDavid S. Miller <davem@davemloft.net>
Mon, 16 Mar 2015 02:20:09 +0000 (22:20 -0400)
commite0b326a5cbcd78d86ce164910a999185e2a1a4c9
tree5c2f66223b407b0c6ebcf3e1042c05c7b420643c
parentb28d168cb3f156f8bffd86e1b82b0686a6d2a8ac
rxrpc: bogus MSG_PEEK test in rxrpc_recvmsg()

[I would really like an ACK on that one from dhowells; it appears to be
quite straightforward, but...]

MSG_PEEK isn't passed to ->recvmsg() via msg->msg_flags; as the matter of
fact, neither the kernel users of rxrpc, nor the syscalls ever set that bit
in there.  It gets passed via flags; in fact, another such check in the same
function is done correctly - as flags & MSG_PEEK.

It had been that way (effectively disabled) for 8 years, though, so the patch
needs beating up - that case had never been tested.  If it is correct, it's
-stable fodder.

Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/rxrpc/ar-recvmsg.c