Skip to content

Commit cdf8073

Browse files
Ian SchramIngo Molnar
authored andcommitted
perf_counter: Fix perf_copy_attr() pointer arithmetic
There is still some weird code in per_copy_attr(). Which supposedly checks that all bytes trailing a struct are zero. It doesn't seem to get pointer arithmetic right. Since it increments an iterating pointer by sizeof(unsigned long) rather than 1. Signed-off-by: Ian Schram <ischram@telenet.be> [ v2: clean up the messy PTR_ALIGN logic as well. ] Signed-off-by: Peter Zijlstra <a.p.zijlstra@chello.nl> Cc: Mike Galbraith <efault@gmx.de> Cc: Paul Mackerras <paulus@samba.org> Cc: Arnaldo Carvalho de Melo <acme@redhat.com> Cc: Frederic Weisbecker <fweisbec@gmail.com> Cc: <stable@kernel.org> # for v2.6.31.x LKML-Reference: <4AB3DEE2.3030600@telenet.be> Signed-off-by: Ingo Molnar <mingo@elte.hu>
1 parent ec60a3f commit cdf8073

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

kernel/perf_counter.c

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -4208,8 +4208,8 @@ perf_counter_alloc(struct perf_counter_attr *attr,
42084208
static int perf_copy_attr(struct perf_counter_attr __user *uattr,
42094209
struct perf_counter_attr *attr)
42104210
{
4211-
int ret;
42124211
u32 size;
4212+
int ret;
42134213

42144214
if (!access_ok(VERIFY_WRITE, uattr, PERF_ATTR_SIZE_VER0))
42154215
return -EFAULT;
@@ -4234,19 +4234,19 @@ static int perf_copy_attr(struct perf_counter_attr __user *uattr,
42344234

42354235
/*
42364236
* If we're handed a bigger struct than we know of,
4237-
* ensure all the unknown bits are 0.
4237+
* ensure all the unknown bits are 0 - i.e. new
4238+
* user-space does not rely on any kernel feature
4239+
* extensions we dont know about yet.
42384240
*/
42394241
if (size > sizeof(*attr)) {
4240-
unsigned long val;
4241-
unsigned long __user *addr;
4242-
unsigned long __user *end;
4242+
unsigned char __user *addr;
4243+
unsigned char __user *end;
4244+
unsigned char val;
42434245

4244-
addr = PTR_ALIGN((void __user *)uattr + sizeof(*attr),
4245-
sizeof(unsigned long));
4246-
end = PTR_ALIGN((void __user *)uattr + size,
4247-
sizeof(unsigned long));
4246+
addr = (void __user *)uattr + sizeof(*attr);
4247+
end = (void __user *)uattr + size;
42484248

4249-
for (; addr < end; addr += sizeof(unsigned long)) {
4249+
for (; addr < end; addr++) {
42504250
ret = get_user(val, addr);
42514251
if (ret)
42524252
return ret;

0 commit comments

Comments
 (0)