]> git.karo-electronics.de Git - karo-tx-linux.git/commit
[PATCH] NET: "wrong timeout value" in sk_wait_data() v2
authorVasily Averin <vvs@sw.ru>
Thu, 7 Jun 2007 05:51:03 +0000 (22:51 -0700)
committerChris Wright <chrisw@sous-sol.org>
Mon, 11 Jun 2007 18:36:53 +0000 (11:36 -0700)
commitd7921bb5af49a1f0ee872040b8de62b120d1433a
treeaafbf9e4a2687c2ed1e9bdab0e7bf6c3044a3aff
parentbd6363577de84223b2a2f798648cd88f87a12f94
[PATCH] NET: "wrong timeout value" in sk_wait_data() v2

sys_setsockopt() do not check properly timeout values for
SO_RCVTIMEO/SO_SNDTIMEO, for example it's possible to set negative timeout
values. POSIX do not defines behaviour for sys_setsockopt in case negative
timeouts, but requires that setsockopt() shall fail with -EDOM if the send and
receive timeout values are too big to fit into the timeout fields in the socket
structure.
In current implementation negative timeout can lead to error messages like
"schedule_timeout: wrong timeout value".

Proposed patch:
- checks tv_usec and returns -EDOM if it is wrong
- do not allows to set negative timeout values (sets 0 instead) and outputs
ratelimited information message about such attempts.

Signed-off-By: Vasily Averin <vvs@sw.ru>
Signed-off-by: David S. Miller <davem@davemloft.net>
Signed-off-by: Chris Wright <chrisw@sous-sol.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
net/core/sock.c