]> git.kernelconcepts.de Git - karo-tx-linux.git/commit
tcp: tcp_probe buffer overflow and incorrect return value
authorTom Quetchenbach <virtualphtn@gmail.com>
Fri, 25 Apr 2008 04:11:58 +0000 (21:11 -0700)
committerDavid S. Miller <davem@davemloft.net>
Fri, 25 Apr 2008 04:11:58 +0000 (21:11 -0700)
commit8d390efd903485923419584275fd0c2aa4c94183
treeb7ca93c9bb5d90ed31003106b9f8a73675f3ae3a
parenta5d6ab56daa439d681aab29955498486e452224d
tcp: tcp_probe buffer overflow and incorrect return value

tcp_probe has a bounds-checking bug that causes many programs (less,
python) to crash reading /proc/net/tcp_probe. When it outputs a log
line to the reader, it only checks if that line alone will fit in the
reader's buffer, rather than that line and all the previous lines it
has already written.

tcpprobe_read also returns the wrong value if copy_to_user fails--it
just passes on the return value of copy_to_user (number of bytes not
copied), which makes a failure look like a success.

This patch fixes the buffer overflow and sets the return value to
-EFAULT if copy_to_user fails.

Patch is against latest net-2.6; tested briefly and seems to fix the
crashes in less and python.

Signed-off-by: Tom Quetchenbach <virtualphtn@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/ipv4/tcp_probe.c