summaryrefslogtreecommitdiff
path: root/security/selinux/hooks.c
diff options
context:
space:
mode:
authorPhilip Pettersson <philip.pettersson@gmail.com>2016-11-30 14:55:36 -0800
committerLorenzo Colitti <lorenzo@google.com>2017-01-13 09:33:03 +0000
commita11f71fcd94d5315bc6fbfe74ec6c5cbb19104d1 (patch)
tree2543e691d0f3079d1b72053fd43ea9b97a991e7e /security/selinux/hooks.c
parent56ea977b0fc3d2e7e68e5a93a2b44aa3e25e34ed (diff)
UPSTREAM: packet: fix race condition in packet_set_ring
(cherry picked from commit 84ac7260236a49c79eede91617700174c2c19b0c) When packet_set_ring creates a ring buffer it will initialize a struct timer_list if the packet version is TPACKET_V3. This value can then be raced by a different thread calling setsockopt to set the version to TPACKET_V1 before packet_set_ring has finished. This leads to a use-after-free on a function pointer in the struct timer_list when the socket is closed as the previously initialized timer will not be deleted. The bug is fixed by taking lock_sock(sk) in packet_setsockopt when changing the packet version while also taking the lock at the start of packet_set_ring. Fixes: f6fb8f100b80 ("af-packet: TPACKET_V3 flexible buffer implementation.") Signed-off-by: Philip Pettersson <philip.pettersson@gmail.com> Signed-off-by: Eric Dumazet <edumazet@google.com> Signed-off-by: David S. Miller <davem@davemloft.net> Change-Id: Ice451620ecf2c2a5ba3709f45fbb5f3f5c5bb389 Bug: 33358926
Diffstat (limited to 'security/selinux/hooks.c')
0 files changed, 0 insertions, 0 deletions