summaryrefslogtreecommitdiff
path: root/packaging/linux-exynos-tm2.spec
diff options
context:
space:
mode:
authorPhilip Pettersson <philip.pettersson@gmail.com>2016-12-07 08:51:56 +0900
committerSeung-Woo Kim <sw0312.kim@samsung.com>2016-12-14 13:54:38 +0900
commit67043d756ae5adde318de07ee50e054ba1cf7ea0 (patch)
tree679f4420fee8264fe23d3277332218c1270f4254 /packaging/linux-exynos-tm2.spec
parent4511293ac045639bbdbe5ecc36c76b04c22fa334 (diff)
packet: fix race condition in packet_set_ring
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. Ps. This is CVE-2016-8655 patch, http://seclists.org/oss-sec/2016/q4/607 Change-Id: I3396f1bfe60b03082a981ae9d8a787b41cb5a529 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> Signed-off-by: Inki Dae <inki.dae@samsung.com>
Diffstat (limited to 'packaging/linux-exynos-tm2.spec')
0 files changed, 0 insertions, 0 deletions