* [PATCH v3] dm: don't allow ioctls to targets that don't map to whole devices
@ 2017-02-03 16:37 Christoph Hellwig
2017-02-03 16:39 ` Mike Snitzer
2017-02-03 16:56 ` Paolo Bonzini
0 siblings, 2 replies; 7+ messages in thread
From: Christoph Hellwig @ 2017-02-03 16:37 UTC (permalink / raw)
To: snitzer, axboe; +Cc: agk, pbonzini, dm-devel, linux-block
.. 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>
---
drivers/md/dm.c | 13 ++++++++-----
1 file changed, 8 insertions(+), 5 deletions(-)
diff --git a/drivers/md/dm.c b/drivers/md/dm.c
index 9e958bc94fed..fd4331aa2e19 100644
--- a/drivers/md/dm.c
+++ b/drivers/md/dm.c
@@ -465,13 +465,16 @@ static int dm_blk_ioctl(struct block_device *bdev, fmode_t mode,
if (r > 0) {
/*
- * Target determined this ioctl is being issued against
- * a logical partition of the parent bdev; so extra
- * validation is needed.
+ * Target determined this ioctl is being issued against a
+ * subset of the parent bdev; require extra privileges.
*/
- r = scsi_verify_blk_ioctl(NULL, cmd);
- if (r)
+ if (!capable(CAP_SYS_RAWIO)) {
+ DMWARN_LIMIT(
+ "%s: sending ioctl %x to DM device without required privilege.\n",
+ current->comm, cmd);
+ r = -ENOIOCTLCMD;
goto out;
+ }
}
r = __blkdev_driver_ioctl(bdev, mode, cmd, arg);
--
2.11.0
^ permalink raw reply related [flat|nested] 7+ messages in thread
* Re: [PATCH v3] dm: don't allow ioctls to targets that don't map to whole devices
2017-02-03 16:37 [PATCH v3] dm: don't allow ioctls to targets that don't map to whole devices Christoph Hellwig
@ 2017-02-03 16:39 ` Mike Snitzer
2017-02-03 16:41 ` Christoph Hellwig
2017-02-03 16:56 ` Paolo Bonzini
1 sibling, 1 reply; 7+ messages in thread
From: Mike Snitzer @ 2017-02-03 16:39 UTC (permalink / raw)
To: Christoph Hellwig; +Cc: axboe, agk, pbonzini, dm-devel, linux-block
On Fri, Feb 03 2017 at 11:37am -0500,
Christoph Hellwig <hch@lst.de> wrote:
> .. 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>
> ---
> drivers/md/dm.c | 13 ++++++++-----
> 1 file changed, 8 insertions(+), 5 deletions(-)
>
> diff --git a/drivers/md/dm.c b/drivers/md/dm.c
> index 9e958bc94fed..fd4331aa2e19 100644
> --- a/drivers/md/dm.c
> +++ b/drivers/md/dm.c
> @@ -465,13 +465,16 @@ static int dm_blk_ioctl(struct block_device *bdev, fmode_t mode,
>
> if (r > 0) {
> /*
> - * Target determined this ioctl is being issued against
> - * a logical partition of the parent bdev; so extra
> - * validation is needed.
> + * Target determined this ioctl is being issued against a
> + * subset of the parent bdev; require extra privileges.
> */
> - r = scsi_verify_blk_ioctl(NULL, cmd);
> - if (r)
> + if (!capable(CAP_SYS_RAWIO)) {
> + DMWARN_LIMIT(
> + "%s: sending ioctl %x to DM device without required privilege.\n",
I assume you meant for v3 to remove the newline? ;)
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH v3] dm: don't allow ioctls to targets that don't map to whole devices
2017-02-03 16:39 ` Mike Snitzer
@ 2017-02-03 16:41 ` Christoph Hellwig
2017-02-03 18:17 ` Johannes Thumshirn
0 siblings, 1 reply; 7+ messages in thread
From: Christoph Hellwig @ 2017-02-03 16:41 UTC (permalink / raw)
To: Mike Snitzer
Cc: Christoph Hellwig, axboe, agk, pbonzini, dm-devel, linux-block
On Fri, Feb 03, 2017 at 11:39:22AM -0500, Mike Snitzer wrote:
> I assume you meant for v3 to remove the newline? ;)
I did. And I swear I did edit the file, but I guess the ammend
didn't work. I guess it's time for the weekend.. I'll resend after
I got some rest.
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH v3] dm: don't allow ioctls to targets that don't map to whole devices
2017-02-03 16:37 [PATCH v3] dm: don't allow ioctls to targets that don't map to whole devices Christoph Hellwig
2017-02-03 16:39 ` Mike Snitzer
@ 2017-02-03 16:56 ` Paolo Bonzini
1 sibling, 0 replies; 7+ messages in thread
From: Paolo Bonzini @ 2017-02-03 16:56 UTC (permalink / raw)
To: Christoph Hellwig, snitzer, axboe; +Cc: agk, dm-devel, linux-block
On 03/02/2017 08:37, Christoph Hellwig wrote:
> .. 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>
> ---
> drivers/md/dm.c | 13 ++++++++-----
> 1 file changed, 8 insertions(+), 5 deletions(-)
>
> diff --git a/drivers/md/dm.c b/drivers/md/dm.c
> index 9e958bc94fed..fd4331aa2e19 100644
> --- a/drivers/md/dm.c
> +++ b/drivers/md/dm.c
> @@ -465,13 +465,16 @@ static int dm_blk_ioctl(struct block_device *bdev, fmode_t mode,
>
> if (r > 0) {
> /*
> - * Target determined this ioctl is being issued against
> - * a logical partition of the parent bdev; so extra
> - * validation is needed.
> + * Target determined this ioctl is being issued against a
> + * subset of the parent bdev; require extra privileges.
> */
> - r = scsi_verify_blk_ioctl(NULL, cmd);
> - if (r)
> + if (!capable(CAP_SYS_RAWIO)) {
> + DMWARN_LIMIT(
> + "%s: sending ioctl %x to DM device without required privilege.\n",
> + current->comm, cmd);
> + r = -ENOIOCTLCMD;
> goto out;
> + }
> }
>
> r = __blkdev_driver_ioctl(bdev, mode, cmd, arg);
>
Acked-by: Paolo Bonzini <pbonzini@redhat.com>
Thanks,
Paolo
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH v3] dm: don't allow ioctls to targets that don't map to whole devices
2017-02-03 16:41 ` Christoph Hellwig
@ 2017-02-03 18:17 ` Johannes Thumshirn
2017-02-03 21:41 ` Bart Van Assche
0 siblings, 1 reply; 7+ messages in thread
From: Johannes Thumshirn @ 2017-02-03 18:17 UTC (permalink / raw)
To: Christoph Hellwig, Mike Snitzer
Cc: axboe, agk, pbonzini, dm-devel, linux-block
On 02/03/2017 05:41 PM, Christoph Hellwig wrote:
> On Fri, Feb 03, 2017 at 11:39:22AM -0500, Mike Snitzer wrote:
>> I assume you meant for v3 to remove the newline? ;)
> I did. And I swear I did edit the file, but I guess the ammend
> didn't work. I guess it's time for the weekend.. I'll resend after
> I got some rest.
Forgotten git add? git commit --amend without git add is such a classic
mistake on my side as well :-/
Anyways,
Reviewed-by: Johannes Thumshirn <jthumshirn@kernel.org>
--
Johannes Thumshirn Storage
jthumshirn@suse.de +49 911 74053 689
SUSE LINUX GmbH, Maxfeldstr. 5, 90409 N�rnberg
GF: Felix Imend�rffer, Jane Smithard, Graham Norton
HRB 21284 (AG N�rnberg)
Key fingerprint = EC38 9CAB C2C4 F25D 8600 D0D0 0393 969D 2D76 0850
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH v3] dm: don't allow ioctls to targets that don't map to whole devices
2017-02-03 18:17 ` Johannes Thumshirn
@ 2017-02-03 21:41 ` Bart Van Assche
2017-02-06 7:29 ` Johannes Thumshirn
0 siblings, 1 reply; 7+ messages in thread
From: Bart Van Assche @ 2017-02-03 21:41 UTC (permalink / raw)
To: hch@lst.de, jthumshirn@suse.de, snitzer@redhat.com
Cc: agk@redhat.com, dm-devel@redhat.com, linux-block@vger.kernel.org,
pbonzini@redhat.com, axboe@kernel.dk
On Fri, 2017-02-03 at 19:17 +0100, Johannes Thumshirn wrote:
> Forgotten git add? git commit --amend without git add is such a classic=20
> mistake on my side as well :-/
Are you familiar with the -a option of git commit? Just run
git commit -a --amend
Bart.=
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH v3] dm: don't allow ioctls to targets that don't map to whole devices
2017-02-03 21:41 ` Bart Van Assche
@ 2017-02-06 7:29 ` Johannes Thumshirn
0 siblings, 0 replies; 7+ messages in thread
From: Johannes Thumshirn @ 2017-02-06 7:29 UTC (permalink / raw)
To: Bart Van Assche, hch@lst.de, snitzer@redhat.com
Cc: agk@redhat.com, dm-devel@redhat.com, linux-block@vger.kernel.org,
pbonzini@redhat.com, axboe@kernel.dk
On 02/03/2017 10:41 PM, Bart Van Assche wrote:
> On Fri, 2017-02-03 at 19:17 +0100, Johannes Thumshirn wrote:
>> Forgotten git add? git commit --amend without git add is such a classic
>> mistake on my side as well :-/
> Are you familiar with the -a option of git commit? Just run
>
> git commit -a --amend
Yes I try to train my muscle memory to do so. But this has drawbacks as
well,
like adding unrelated files you've edited and then amend them.
Byte,
Johannes
--
Johannes Thumshirn Storage
jthumshirn@suse.de +49 911 74053 689
SUSE LINUX GmbH, Maxfeldstr. 5, 90409 N�rnberg
GF: Felix Imend�rffer, Jane Smithard, Graham Norton
HRB 21284 (AG N�rnberg)
Key fingerprint = EC38 9CAB C2C4 F25D 8600 D0D0 0393 969D 2D76 0850
^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2017-02-06 7:29 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-02-03 16:37 [PATCH v3] dm: don't allow ioctls to targets that don't map to whole devices Christoph Hellwig
2017-02-03 16:39 ` Mike Snitzer
2017-02-03 16:41 ` Christoph Hellwig
2017-02-03 18:17 ` Johannes Thumshirn
2017-02-03 21:41 ` Bart Van Assche
2017-02-06 7:29 ` Johannes Thumshirn
2017-02-03 16:56 ` Paolo Bonzini
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).