aboutsummaryrefslogtreecommitdiffstats
path: root/kernel
diff options
context:
space:
mode:
Diffstat (limited to 'kernel')
-rw-r--r--kernel/perf_counter.c20
1 files changed, 10 insertions, 10 deletions
diff --git a/kernel/perf_counter.c b/kernel/perf_counter.c
index d5899b62b276..cc768ab81ac8 100644
--- a/kernel/perf_counter.c
+++ b/kernel/perf_counter.c
@@ -4208,8 +4208,8 @@ done:
4208static int perf_copy_attr(struct perf_counter_attr __user *uattr, 4208static int perf_copy_attr(struct perf_counter_attr __user *uattr,
4209 struct perf_counter_attr *attr) 4209 struct perf_counter_attr *attr)
4210{ 4210{
4211 int ret;
4212 u32 size; 4211 u32 size;
4212 int ret;
4213 4213
4214 if (!access_ok(VERIFY_WRITE, uattr, PERF_ATTR_SIZE_VER0)) 4214 if (!access_ok(VERIFY_WRITE, uattr, PERF_ATTR_SIZE_VER0))
4215 return -EFAULT; 4215 return -EFAULT;
@@ -4234,19 +4234,19 @@ static int perf_copy_attr(struct perf_counter_attr __user *uattr,
4234 4234
4235 /* 4235 /*
4236 * If we're handed a bigger struct than we know of, 4236 * 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.
4238 */ 4240 */
4239 if (size > sizeof(*attr)) { 4241 if (size > sizeof(*attr)) {
4240 unsigned long val; 4242 unsigned char __user *addr;
4241 unsigned long __user *addr; 4243 unsigned char __user *end;
4242 unsigned long __user *end; 4244 unsigned char val;
4243 4245
4244 addr = PTR_ALIGN((void __user *)uattr + sizeof(*attr), 4246 addr = (void __user *)uattr + sizeof(*attr);
4245 sizeof(unsigned long)); 4247 end = (void __user *)uattr + size;
4246 end = PTR_ALIGN((void __user *)uattr + size,
4247 sizeof(unsigned long));
4248 4248
4249 for (; addr < end; addr += sizeof(unsigned long)) { 4249 for (; addr < end; addr++) {
4250 ret = get_user(val, addr); 4250 ret = get_user(val, addr);
4251 if (ret) 4251 if (ret)
4252 return ret; 4252 return ret;