lists.openwall.net | lists / announce owl-users owl-dev john-users john-dev passwdqc-users yescrypt popa3d-users / oss-security kernel-hardening musl sabotage tlsify passwords / crypt-dev xvendor / Bugtraq Full-Disclosure linux-kernel linux-netdev linux-ext4 linux-hardening PHC | |
Open Source and information security mailing list archives
| ||
|
Date: Thu, 30 Aug 2018 17:11:27 +0800 From: Su Hua <suhua.tanke@...il.com> To: axboe@...nel.dk Cc: linux-block@...r.kernel.org, linux-kernel@...r.kernel.org, Su Hua <suhua.tanke@...il.com> Subject: [PATCH] block: Add a check for fdisk When a block device is acquired in the form of FMODE_EXCL, I think it should not be allowed to perform partition operations, similar to when mount is executed. Signed-off-by: Su Hua <suhua.tanke@...il.com> --- block/partition-generic.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/block/partition-generic.c b/block/partition-generic.c index 5a8975a..a8daa31 100644 --- a/block/partition-generic.c +++ b/block/partition-generic.c @@ -440,7 +440,7 @@ static int drop_partitions(struct gendisk *disk, struct block_device *bdev) struct hd_struct *part; int res; - if (bdev->bd_part_count || bdev->bd_super) + if (bdev->bd_part_count || bdev->bd_super || bdev->bd_holders) return -EBUSY; res = invalidate_partition(disk, 0); if (res) -- 2.7.4
Powered by blists - more mailing lists