mirror of
https://github.com/hardkernel/linux.git
synced 2026-06-07 11:26:02 +09:00
xen, cpu_hotplug: Prevent an out of bounds access
[ Upstream commit201676095d] The "cpu" variable comes from the sscanf() so Smatch marks it as untrusted data. We can't pass a higher value than "nr_cpu_ids" to cpu_possible() or it results in an out of bounds access. Fixes:d68d82afd4("xen: implement CPU hotplugging") Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com> Reviewed-by: Juergen Gross <jgross@suse.com> Signed-off-by: Juergen Gross <jgross@suse.com> Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
@@ -53,7 +53,7 @@ static int vcpu_online(unsigned int cpu)
|
||||
}
|
||||
static void vcpu_hotplug(unsigned int cpu)
|
||||
{
|
||||
if (!cpu_possible(cpu))
|
||||
if (cpu >= nr_cpu_ids || !cpu_possible(cpu))
|
||||
return;
|
||||
|
||||
switch (vcpu_online(cpu)) {
|
||||
|
||||
Reference in New Issue
Block a user