]> git.karo-electronics.de Git - karo-tx-linux.git/commit
udp/recvmsg: Clear MSG_TRUNC flag when starting over for a new packet
authorXufeng Zhang <xufeng.zhang@windriver.com>
Tue, 21 Jun 2011 10:43:40 +0000 (10:43 +0000)
committerGreg Kroah-Hartman <gregkh@suse.de>
Wed, 13 Jul 2011 03:31:27 +0000 (05:31 +0200)
commitfae5c27e842fef2c59ea3ab4a9afaf903cbd267e
tree23e5c831d4381bb9b2662d89b62143c3c3abef27
parent05c824cea44ddb773182ac849276a2e0419e3ab2
udp/recvmsg: Clear MSG_TRUNC flag when starting over for a new packet

[ Upstream commit 9cfaa8def1c795a512bc04f2aec333b03724ca2e ]

Consider this scenario: When the size of the first received udp packet
is bigger than the receive buffer, MSG_TRUNC bit is set in msg->msg_flags.
However, if checksum error happens and this is a blocking socket, it will
goto try_again loop to receive the next packet.  But if the size of the
next udp packet is smaller than receive buffer, MSG_TRUNC flag should not
be set, but because MSG_TRUNC bit is not cleared in msg->msg_flags before
receive the next packet, MSG_TRUNC is still set, which is wrong.

Fix this problem by clearing MSG_TRUNC flag when starting over for a
new packet.

Signed-off-by: Xufeng Zhang <xufeng.zhang@windriver.com>
Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
net/ipv4/udp.c
net/ipv6/udp.c