dm: don't allow ioctls to targets that don't map to whole devices

.. at least for unprivileged users.  Before we called into the SCSI
ioctl code to allow excemptions for a few SCSI passthrough ioctls,
but this is pretty unsafe and except for this call dm knows nothing
about SCSI ioctls.

As the SCSI ioctl code is now optional, we really don't want to
drag it in for DM, and the exception is not very useful anyway.

Signed-off-by: Christoph Hellwig <hch@lst.de>
Acked-by: Mike Snitzer <snitzer@redhat.com>
Acked-by: Paolo Bonzini <pbonzini@redhat.com>
Reviewed-by: Johannes Thumshirn <jthumshirn@kernel.org>
Signed-off-by: Jens Axboe <axboe@fb.com>
This commit is contained in:
Christoph Hellwig 2017-02-04 10:45:03 +01:00 коммит произвёл Jens Axboe
Родитель e4d750c977
Коммит e980f62353
1 изменённых файлов: 8 добавлений и 5 удалений

Просмотреть файл

@ -465,13 +465,16 @@ static int dm_blk_ioctl(struct block_device *bdev, fmode_t mode,
if (r > 0) { if (r > 0) {
/* /*
* Target determined this ioctl is being issued against * Target determined this ioctl is being issued against a
* a logical partition of the parent bdev; so extra * subset of the parent bdev; require extra privileges.
* validation is needed.
*/ */
r = scsi_verify_blk_ioctl(NULL, cmd); if (!capable(CAP_SYS_RAWIO)) {
if (r) DMWARN_LIMIT(
"%s: sending ioctl %x to DM device without required privilege.",
current->comm, cmd);
r = -ENOIOCTLCMD;
goto out; goto out;
}
} }
r = __blkdev_driver_ioctl(bdev, mode, cmd, arg); r = __blkdev_driver_ioctl(bdev, mode, cmd, arg);