]> git.baikalelectronics.ru Git - kernel.git/commit
Bluetooth: Avoid use of session socket after the session gets freed
authorVignesh Raman <Vignesh_Raman@mentor.com>
Tue, 22 Jul 2014 13:54:25 +0000 (19:24 +0530)
committerMarcel Holtmann <marcel@holtmann.org>
Tue, 22 Jul 2014 14:07:31 +0000 (16:07 +0200)
commit3a67c9f045b9431ee7266f409c59ce21e7f410ab
tree3ff5cec73569dde9741d04af5edbc6f0df5a0bb4
parente7f67ed804bf785319d4cfb025211db0c3c4e90e
Bluetooth: Avoid use of session socket after the session gets freed

The commits 19a506e632e9c73fd03ae108a878a048a74e7958 "Bluetooth: Remove
RFCOMM session refcnt" and 25cc51c37875a096b0019050bda236e9d8f00440
"Bluetooth: Return RFCOMM session ptrs to avoid freed session"
allow rfcomm_recv_ua and rfcomm_session_close to delete the session
(and free the corresponding socket) and propagate NULL session pointer
to the upper callers.

Additional fix is required to terminate the loop in rfcomm_process_rx
function to avoid use of freed 'sk' memory.

The issue is only reproducible with kernel option CONFIG_PAGE_POISONING
enabled making freed memory being changed and filled up with fixed char
value used to unmask use-after-free issues.

Signed-off-by: Vignesh Raman <Vignesh_Raman@mentor.com>
Signed-off-by: Vitaly Kuzmichev <Vitaly_Kuzmichev@mentor.com>
Acked-by: Dean Jenkins <Dean_Jenkins@mentor.com>
Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
Cc: stable@vger.kernel.org
net/bluetooth/rfcomm/core.c