anolis-cloud-kernel/drivers/tee
Rijo Thomas 39691d0a59 tee: amdtee: fix use-after-free vulnerability in amdtee_close_session
ANBZ: #12682

commit f4384b3e54 upstream.

There is a potential race condition in amdtee_close_session that may
cause use-after-free in amdtee_open_session. For instance, if a session
has refcount == 1, and one thread tries to free this session via:

    kref_put(&sess->refcount, destroy_session);

the reference count will get decremented, and the next step would be to
call destroy_session(). However, if in another thread,
amdtee_open_session() is called before destroy_session() has completed
execution, alloc_session() may return 'sess' that will be freed up
later in destroy_session() leading to use-after-free in
amdtee_open_session.

To fix this issue, treat decrement of sess->refcount and removal of
'sess' from session list in destroy_session() as a critical section, so
that it is executed atomically.

Fixes: CVE-2023-52503
Fixes: 757cc3e9ff ("tee: add AMD-TEE driver")
Cc: stable@vger.kernel.org
Signed-off-by: Rijo Thomas <Rijo-john.Thomas@amd.com>
Reviewed-by: Sumit Garg <sumit.garg@linaro.org>
Signed-off-by: Jens Wiklander <jens.wiklander@linaro.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Signed-off-by: Guixin Liu <kanie@linux.alibaba.com>
Reviewed-by: Bitao Hu <yaoma@linux.alibaba.com>
Link: https://gitee.com/anolis/cloud-kernel/pulls/4845
2025-03-19 11:50:42 +08:00
..
amdtee tee: amdtee: fix use-after-free vulnerability in amdtee_close_session 2025-03-19 11:50:42 +08:00
optee optee: use driver internal tee_context for some rpc 2022-03-02 11:42:47 +01:00
Kconfig
Makefile
tee_core.c tee: export teedev_open() and teedev_close_context() 2022-03-02 11:42:47 +01:00
tee_private.h
tee_shm.c tee: handle lookup of shm with reference count 0 2021-12-29 12:26:02 +01:00
tee_shm_pool.c