Revision d81916910f7498fe7a768697e0101d488f9fe665 authored by Yang Yingliang on 29 October 2022, 08:29:31 UTC, committed by Huacai Chen on 29 October 2022, 08:29:31 UTC
Currently the return value of 'sub_driver->init' is not checked. If
sparse_keymap_setup() called in the init function fails, 'generic_
inputdev' is freed, then it will lead a UAF when using it in generic_
acpi_laptop_init(). Fix it by checking the return value and setting
generic_inputdev to NULL after free, so as to avoid double free it.

The error code in generic_subdriver_init() is always negative, so the
return of generic_subdriver_init() can be simplified.

Fixes: 6246ed09111f ("LoongArch: Add ACPI-based generic laptop driver")
Signed-off-by: Yang Yingliang <yangyingliang@huawei.com>
Signed-off-by: Huacai Chen <chenhuacai@loongson.cn>
1 parent fbe605a
History
File Mode Size
.gitignore -rw-r--r-- 65 bytes
Kconfig -rw-r--r-- 1.7 KB
Makefile -rw-r--r-- 2.5 KB
arm_ssp_per_task_plugin.c -rw-r--r-- 2.4 KB
gcc-common.h -rw-r--r-- 11.4 KB
gcc-generate-gimple-pass.h -rw-r--r-- 3.4 KB
gcc-generate-ipa-pass.h -rw-r--r-- 6.3 KB
gcc-generate-rtl-pass.h -rw-r--r-- 3.3 KB
gcc-generate-simple_ipa-pass.h -rw-r--r-- 3.4 KB
latent_entropy_plugin.c -rw-r--r-- 16.7 KB
randomize_layout_plugin.c -rw-r--r-- 24.1 KB
sancov_plugin.c -rw-r--r-- 3.7 KB
stackleak_plugin.c -rw-r--r-- 18.4 KB
structleak_plugin.c -rw-r--r-- 7.2 KB

back to top