]> rtime.felk.cvut.cz Git - lisovros/linux_canprio.git/commit
net: Limit socket I/O iovec total length to INT_MAX.
authorDavid S. Miller <davem@davemloft.net>
Thu, 28 Oct 2010 18:41:55 +0000 (11:41 -0700)
committerGreg Kroah-Hartman <gregkh@suse.de>
Thu, 9 Dec 2010 21:33:28 +0000 (13:33 -0800)
commit8612ab37c065833ad732341a87d2a2502b7a3b03
tree8790e2f29178e57e3c4c92ba1558e974d99cab76
parent66e854dde3739a30d11accba63a45ce8a7ac02be
net: Limit socket I/O iovec total length to INT_MAX.

commit 8acfe468b0384e834a303f08ebc4953d72fb690a upstream.

This helps protect us from overflow issues down in the
individual protocol sendmsg/recvmsg handlers.  Once
we hit INT_MAX we truncate out the rest of the iovec
by setting the iov_len members to zero.

This works because:

1) For SOCK_STREAM and SOCK_SEQPACKET sockets, partial
   writes are allowed and the application will just continue
   with another write to send the rest of the data.

2) For datagram oriented sockets, where there must be a
   one-to-one correspondance between write() calls and
   packets on the wire, INT_MAX is going to be far larger
   than the packet size limit the protocol is going to
   check for and signal with -EMSGSIZE.

Based upon a patch by Linus Torvalds.

Signed-off-by: David S. Miller <davem@davemloft.net>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
include/linux/socket.h
net/compat.c
net/core/iovec.c