Skip to content
Commit 6a706db0 authored by Zhang Zixun's avatar Zhang Zixun Committed by Greg Kroah-Hartman
Browse files

x86/mce/inject: Avoid out-of-bounds write when setting flags

[ Upstream commit de768416 ]

A contrived zero-length write, for example, by using write(2):

  ...
  ret = write(fd, str, 0);
  ...

to the "flags" file causes:

  BUG: KASAN: stack-out-of-bounds in flags_write
  Write of size 1 at addr ffff888019be7ddf by task writefile/3787

  CPU: 4 PID: 3787 Comm: writefile Not tainted 5.16.0-rc7+ #12
  Hardware name: QEMU Standard PC (i440FX + PIIX, 1996), BIOS 1.14.0-2 04/01/2014

due to accessing buf one char before its start.

Prevent such out-of-bounds access.

  [ bp: Productize into a proper patch. Link below is the next best
    thing because the original mail didn't get archived on lore. ]

Fixes: 0451d14d

 ("EDAC, mce_amd_inj: Modify flags attribute to use string arguments")
Signed-off-by: default avatarZhang Zixun <zhang133010@icloud.com>
Signed-off-by: default avatarBorislav Petkov <bp@suse.de>
Link: https://lore.kernel.org/linux-edac/YcnePfF1OOqoQwrX@zn.tnic/
Signed-off-by: default avatarSasha Levin <sashal@kernel.org>
parent 27b198a8
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment