projects
/
firefly-linux-kernel-4.4.55.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
2184192
)
net: Truncate recvfrom and sendto length to INT_MAX.
author
Linus Torvalds
<torvalds@linux-foundation.org>
Sat, 30 Oct 2010 23:43:10 +0000
(16:43 -0700)
committer
Greg Kroah-Hartman
<gregkh@suse.de>
Thu, 9 Dec 2010 21:33:27 +0000
(13:33 -0800)
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
patch
|
blob
|
history
diff --git
a/net/socket.c
b/net/socket.c
index 2270b941bcc76ec0e52cc0d1321d8572164299e1..58dfc915a3a5fc83865d5341886b99d7fe801cb5 100644
(file)
--- a/
net/socket.c
+++ b/
net/socket.c
@@
-1651,6
+1651,8
@@
SYSCALL_DEFINE6(sendto, int, fd, void __user *, buff, size_t, len,
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;
@@
-1708,6
+1710,8
@@
SYSCALL_DEFINE6(recvfrom, int, fd, void __user *, ubuf, size_t, size,
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;