diff options
author | Christoph Paasch <cpaasch@apple.com> | 2019-03-11 14:41:05 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2019-03-11 18:36:49 -0400 |
commit | f2feaefdabb0a6253aa020f65e7388f07a9ed47c (patch) | |
tree | d79b2b98513771ba6e4460a58cf8d25ae93fcded | |
parent | 0b31d98d90f09868dce71319615e19cd1f146fb6 (diff) |
tcp: Don't access TCP_SKB_CB before initializing it
Since commit eeea10b83a13 ("tcp: add
tcp_v4_fill_cb()/tcp_v4_restore_cb()"), tcp_vX_fill_cb is only called
after tcp_filter(). That means, TCP_SKB_CB(skb)->end_seq still points to
the IP-part of the cb.
We thus should not mock with it, as this can trigger bugs (thanks
syzkaller):
[ 12.349396] ==================================================================
[ 12.350188] BUG: KASAN: slab-out-of-bounds in ip6_datagram_recv_specific_ctl+0x19b3/0x1a20
[ 12.351035] Read of size 1 at addr ffff88006adbc208 by task test_ip6_datagr/1799
Setting end_seq is actually no more necessary in tcp_filter as it gets
initialized later on in tcp_vX_fill_cb.
Cc: Eric Dumazet <edumazet@google.com>
Fixes: eeea10b83a13 ("tcp: add tcp_v4_fill_cb()/tcp_v4_restore_cb()")
Signed-off-by: Christoph Paasch <cpaasch@apple.com>
Signed-off-by: Eric Dumazet <edumazet@google.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
-rw-r--r-- | net/ipv4/tcp_ipv4.c | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/net/ipv4/tcp_ipv4.c b/net/ipv4/tcp_ipv4.c index 831d844a27ca..277d71239d75 100644 --- a/net/ipv4/tcp_ipv4.c +++ b/net/ipv4/tcp_ipv4.c | |||
@@ -1734,15 +1734,8 @@ EXPORT_SYMBOL(tcp_add_backlog); | |||
1734 | int tcp_filter(struct sock *sk, struct sk_buff *skb) | 1734 | int tcp_filter(struct sock *sk, struct sk_buff *skb) |
1735 | { | 1735 | { |
1736 | struct tcphdr *th = (struct tcphdr *)skb->data; | 1736 | struct tcphdr *th = (struct tcphdr *)skb->data; |
1737 | unsigned int eaten = skb->len; | ||
1738 | int err; | ||
1739 | 1737 | ||
1740 | err = sk_filter_trim_cap(sk, skb, th->doff * 4); | 1738 | return sk_filter_trim_cap(sk, skb, th->doff * 4); |
1741 | if (!err) { | ||
1742 | eaten -= skb->len; | ||
1743 | TCP_SKB_CB(skb)->end_seq -= eaten; | ||
1744 | } | ||
1745 | return err; | ||
1746 | } | 1739 | } |
1747 | EXPORT_SYMBOL(tcp_filter); | 1740 | EXPORT_SYMBOL(tcp_filter); |
1748 | 1741 | ||