aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86/kernel/tlb_uv.c
diff options
context:
space:
mode:
authorCliff Wickman <cpw@sgi.com>2008-06-23 09:32:25 -0400
committerIngo Molnar <mingo@elte.hu>2008-07-08 06:23:31 -0400
commite7eb8726d0e144f0925972c4ecee945e91a42753 (patch)
tree63dbc5c4ca72cdc2ea2ec11a31ad69e74fc3e3ab /arch/x86/kernel/tlb_uv.c
parentcef53278682eb2604cbd99de64cdb59a8b35235a (diff)
x86, SGI UV: uv_ptc_proc_write fix
Someone could write 0 bytes to /proc/sgi_uv/ptc_statistics, causing optstr[count - 1] = '\0'; to write to who-knows-where. (Andi Kleen noticed this need from a patch I sent for similar code in the ia64 world (sn2_ptc_proc_write()).) (count less than zero is not possible here, as count is unsigned) Signed-off-by: Cliff Wickman <cpw@sgi.com> Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'arch/x86/kernel/tlb_uv.c')
-rw-r--r--arch/x86/kernel/tlb_uv.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/kernel/tlb_uv.c b/arch/x86/kernel/tlb_uv.c
index c503b7f04481..d0fbb7712ab0 100644
--- a/arch/x86/kernel/tlb_uv.c
+++ b/arch/x86/kernel/tlb_uv.c
@@ -492,7 +492,7 @@ static ssize_t uv_ptc_proc_write(struct file *file, const char __user *user,
492 long newmode; 492 long newmode;
493 char optstr[64]; 493 char optstr[64];
494 494
495 if (count > 64) 495 if (count == 0 || count > sizeof(optstr))
496 return -EINVAL; 496 return -EINVAL;
497 if (copy_from_user(optstr, user, count)) 497 if (copy_from_user(optstr, user, count))
498 return -EFAULT; 498 return -EFAULT;