| | Date | Tue, 07 Dec 2010 16:45:05 -0800 | | From | Greg KH <> | | Subject | [119/127] net: Truncate recvfrom and sendto length to INT_MAX. |
| |
2.6.32-stable review patch. If anyone has any objections, please let us know.
------------------ From: Linus Torvalds <torvalds@linux-foundation.org>
commit 253eacc070b114c2ec1f81b067d2fed7305467b0 upstream.
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org> Signed-off-by: David S. Miller <davem@davemloft.net> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
--- net/socket.c | 4 ++++ 1 file changed, 4 insertions(+) --- a/net/socket.c +++ b/net/socket.c @@ -1673,6 +1673,8 @@ SYSCALL_DEFINE6(sendto, int, fd, void __ struct iovec iov; int fput_needed; + if (len > INT_MAX) + len = INT_MAX; sock = sockfd_lookup_light(fd, &err, &fput_needed); if (!sock) goto out; @@ -1730,6 +1732,8 @@ SYSCALL_DEFINE6(recvfrom, int, fd, void int err, err2; int fput_needed; + if (size > INT_MAX) + size = INT_MAX; sock = sockfd_lookup_light(fd, &err, &fput_needed); if (!sock) goto out;
|