mirror of
https://github.com/raspberrypi/linux.git
synced 2025-12-06 01:49:46 +00:00
ACPI: CPPC: Avoid out of bounds access when parsing _CPC data
commit40d8abf364upstream. If the NumEntries field in the _CPC return package is less than 2, do not attempt to access the "Revision" element of that package, because it may not be present then. Fixes:337aadff8e("ACPI: Introduce CPU performance controls using CPPC") BugLink: https://lore.kernel.org/lkml/20220322143534.GC32582@xsang-OptiPlex-9020/ Reported-by: kernel test robot <oliver.sang@intel.com> Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com> Reviewed-by: Huang Rui <ray.huang@amd.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
785a53373c
commit
e5b681822c
@@ -719,6 +719,11 @@ int acpi_cppc_processor_probe(struct acpi_processor *pr)
|
|||||||
cpc_obj = &out_obj->package.elements[0];
|
cpc_obj = &out_obj->package.elements[0];
|
||||||
if (cpc_obj->type == ACPI_TYPE_INTEGER) {
|
if (cpc_obj->type == ACPI_TYPE_INTEGER) {
|
||||||
num_ent = cpc_obj->integer.value;
|
num_ent = cpc_obj->integer.value;
|
||||||
|
if (num_ent <= 1) {
|
||||||
|
pr_debug("Unexpected _CPC NumEntries value (%d) for CPU:%d\n",
|
||||||
|
num_ent, pr->id);
|
||||||
|
goto out_free;
|
||||||
|
}
|
||||||
} else {
|
} else {
|
||||||
pr_debug("Unexpected entry type(%d) for NumEntries\n",
|
pr_debug("Unexpected entry type(%d) for NumEntries\n",
|
||||||
cpc_obj->type);
|
cpc_obj->type);
|
||||||
|
|||||||
Reference in New Issue
Block a user