Revision ba91c49dedbde758ba0b72f57ac90b06ddf8e548 authored by Maxim Mikityanskiy on 10 June 2021, 16:40:31 UTC, committed by David S. Miller on 10 June 2021, 21:26:18 UTC
The TCP option parser in cake qdisc (cake_get_tcpopt and
cake_tcph_may_drop) could read one byte out of bounds. When the length
is 1, the execution flow gets into the loop, reads one byte of the
opcode, and if the opcode is neither TCPOPT_EOL nor TCPOPT_NOP, it reads
one more byte, which exceeds the length of 1.

This fix is inspired by commit 9609dad263f8 ("ipv4: tcp_input: fix stack
out of bounds when parsing TCP options.").

v2 changes:

Added doff validation in cake_get_tcphdr to avoid parsing garbage as TCP
header. Although it wasn't strictly an out-of-bounds access (memory was
allocated), garbage values could be read where CAKE expected the TCP
header if doff was smaller than 5.

Cc: Young Xiao <92siuyang@gmail.com>
Fixes: 8b7138814f29 ("sch_cake: Add optional ACK filter")
Signed-off-by: Maxim Mikityanskiy <maximmi@nvidia.com>
Acked-by: Toke Høiland-Jørgensen <toke@toke.dk>
Signed-off-by: David S. Miller <davem@davemloft.net>
1 parent 07718be
History
File Mode Size
Kconfig -rw-r--r-- 1.7 KB
Makefile -rw-r--r-- 230 bytes
hsr_debugfs.c -rw-r--r-- 3.7 KB
hsr_device.c -rw-r--r-- 13.8 KB
hsr_device.h -rw-r--r-- 692 bytes
hsr_forward.c -rw-r--r-- 15.5 KB
hsr_forward.h -rw-r--r-- 1.1 KB
hsr_framereg.c -rw-r--r-- 16.0 KB
hsr_framereg.h -rw-r--r-- 2.4 KB
hsr_main.c -rw-r--r-- 3.9 KB
hsr_main.h -rw-r--r-- 8.5 KB
hsr_netlink.c -rw-r--r-- 12.9 KB
hsr_netlink.h -rw-r--r-- 743 bytes
hsr_slave.c -rw-r--r-- 5.1 KB
hsr_slave.h -rw-r--r-- 982 bytes

back to top