]> git.baikalelectronics.ru Git - kernel.git/commit
tun: use sk_fullsock() before reading sk->sk_tsflags
authorEric Dumazet <edumazet@google.com>
Fri, 9 Oct 2015 22:42:21 +0000 (15:42 -0700)
committerDavid S. Miller <davem@davemloft.net>
Tue, 13 Oct 2015 02:45:48 +0000 (19:45 -0700)
commitaa94f79bda45231b7be146a82c1627e1ece32cb8
tree3cc46ec8ea75d7ddfed640d2be9b33f1aa80fce7
parent5a4dc7b2a455d0338b09f0c8790951d1fc773a02
tun: use sk_fullsock() before reading sk->sk_tsflags

timewait or request sockets are small and do not contain sk->sk_tsflags

Without this fix, we might read garbage, and crash later in

__skb_complete_tx_timestamp()
 -> sock_queue_err_skb()

(These pseudo sockets do not have an error queue either)

Fixes: 4b6a53b8f218 ("tcp: attach SYNACK messages to request sockets instead of listener")
Signed-off-by: Eric Dumazet <edumazet@google.com>
Cc: Willem de Bruijn <willemb@google.com>
Acked-by: Michael S. Tsirkin <mst@redhat.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/tun.c