Commit e910d7ebecd1aac43125944a8641b6cb1a0dfabe

Authored by Alasdair G Kergon
1 parent 550929faf8

dm ioctl: prevent unsafe change to dm_ioctl data_size

Abort dm ioctl processing if userspace changes the data_size parameter
after we validated it but before we finished copying the data buffer
from userspace.

The dm ioctl parameters are processed in the following sequence:
 1. ctl_ioctl() calls copy_params();
 2. copy_params() makes a first copy of the fixed-sized portion of the
    userspace parameters into the local variable "tmp";
 3. copy_params() then validates tmp.data_size and allocates a new
    structure big enough to hold the complete data and copies the whole
    userspace buffer there;
 4. ctl_ioctl() reads userspace data the second time and copies the whole
    buffer into the pointer "param";
 5. ctl_ioctl() reads param->data_size without any validation and stores it
    in the variable "input_param_size";
 6. "input_param_size" is further used as the authoritative size of the
    kernel buffer.

The problem is that userspace code could change the contents of user
memory between steps 2 and 4.  In particular, the data_size parameter
can be changed to an invalid value after the kernel has validated it.
This lets userspace force the kernel to access invalid kernel memory.

The fix is to ensure that the size has not changed at step 4.

This patch shouldn't have a security impact because CAP_SYS_ADMIN is
required to run this code, but it should be fixed anyway.

Reported-by: Mikulas Patocka <mpatocka@redhat.com>
Signed-off-by: Alasdair G Kergon <agk@redhat.com>
Cc: stable@kernel.org

Showing 1 changed file with 8 additions and 0 deletions Side-by-side Diff

drivers/md/dm-ioctl.c
... ... @@ -1566,6 +1566,14 @@
1566 1566 if (copy_from_user(dmi, user, tmp.data_size))
1567 1567 goto bad;
1568 1568  
  1569 + /*
  1570 + * Abort if something changed the ioctl data while it was being copied.
  1571 + */
  1572 + if (dmi->data_size != tmp.data_size) {
  1573 + DMERR("rejecting ioctl: data size modified while processing parameters");
  1574 + goto bad;
  1575 + }
  1576 +
1569 1577 /* Wipe the user buffer so we do not return it to userspace */
1570 1578 if (secure_data && clear_user(user, tmp.data_size))
1571 1579 goto bad;