drm/amdkfd: fix some range checks in address watch ioctl
authorDan Carpenter <dan.carpenter@oracle.com>
Tue, 16 Jun 2015 10:49:32 +0000 (13:49 +0300)
committerOded Gabbay <oded.gabbay@gmail.com>
Tue, 16 Jun 2015 12:42:26 +0000 (15:42 +0300)
buf_size_in_bytes must be large enough to hold ->num_watch_points and
watch_mode so I have added a sizeof(int) * 2 to the minimum size.

Also we have to subtract sizeof(*args) from the max args_idx limit so
that it matches the allocation.  Also I changed a > to >= for the last
compare.

Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: Oded Gabbay <oded.gabbay@gmail.com>
drivers/gpu/drm/amd/amdkfd/kfd_chardev.c

index 96c904b3acb7a889ddcfff58e491752056a7dc45..c991973019d0b9eebcae91533b2264bf41c2749a 100644 (file)
@@ -553,7 +553,7 @@ static int kfd_ioctl_dbg_address_watch(struct file *filep,
        /* Validate arguments */
 
        if ((args->buf_size_in_bytes > MAX_ALLOWED_AW_BUFF_SIZE) ||
-               (args->buf_size_in_bytes <= sizeof(*args)) ||
+               (args->buf_size_in_bytes <= sizeof(*args) + sizeof(int) * 2) ||
                (cmd_from_user == NULL))
                return -EINVAL;
 
@@ -590,7 +590,7 @@ static int kfd_ioctl_dbg_address_watch(struct file *filep,
        /* skip over the addresses buffer */
        args_idx += sizeof(aw_info.watch_address) * aw_info.num_watch_points;
 
-       if (args_idx >= args->buf_size_in_bytes) {
+       if (args_idx >= args->buf_size_in_bytes - sizeof(*args)) {
                kfree(args_buff);
                return -EINVAL;
        }
@@ -614,7 +614,7 @@ static int kfd_ioctl_dbg_address_watch(struct file *filep,
                args_idx += sizeof(aw_info.watch_mask);
        }
 
-       if (args_idx > args->buf_size_in_bytes) {
+       if (args_idx >= args->buf_size_in_bytes - sizeof(args)) {
                kfree(args_buff);
                return -EINVAL;
        }
This page took 0.028325 seconds and 5 git commands to generate.