2019-04-30 14:42:43 -04:00
|
|
|
// SPDX-License-Identifier: GPL-2.0
|
2006-01-11 12:17:46 -08:00
|
|
|
#include <linux/capability.h>
|
2019-11-28 15:48:10 +01:00
|
|
|
#include <linux/compat.h>
|
2005-04-16 15:20:36 -07:00
|
|
|
#include <linux/blkdev.h>
|
2011-05-26 16:00:52 -04:00
|
|
|
#include <linux/export.h>
|
2010-03-24 17:04:11 +09:00
|
|
|
#include <linux/gfp.h>
|
2005-04-16 15:20:36 -07:00
|
|
|
#include <linux/blkpg.h>
|
2006-01-08 01:02:50 -08:00
|
|
|
#include <linux/hdreg.h>
|
2005-04-16 15:20:36 -07:00
|
|
|
#include <linux/backing-dev.h>
|
2011-09-16 02:31:11 -04:00
|
|
|
#include <linux/fs.h>
|
2006-03-23 20:00:26 +01:00
|
|
|
#include <linux/blktrace_api.h>
|
2015-10-15 14:10:48 +02:00
|
|
|
#include <linux/pr.h>
|
2016-12-24 11:46:01 -08:00
|
|
|
#include <linux/uaccess.h>
|
2024-09-11 17:34:41 +01:00
|
|
|
#include <linux/pagemap.h>
|
|
|
|
|
#include <linux/io_uring/cmd.h>
|
2025-06-30 14:35:48 +05:30
|
|
|
#include <linux/blk-integrity.h>
|
2024-09-11 17:34:41 +01:00
|
|
|
#include <uapi/linux/blkdev.h>
|
2020-03-25 16:48:41 +01:00
|
|
|
#include "blk.h"
|
2025-02-03 22:00:37 -08:00
|
|
|
#include "blk-crypto-internal.h"
|
2005-04-16 15:20:36 -07:00
|
|
|
|
2019-11-28 11:28:41 +01:00
|
|
|
static int blkpg_do_ioctl(struct block_device *bdev,
|
|
|
|
|
struct blkpg_partition __user *upart, int op)
|
2005-04-16 15:20:36 -07:00
|
|
|
{
|
2021-08-10 17:45:10 +02:00
|
|
|
struct gendisk *disk = bdev->bd_disk;
|
2005-04-16 15:20:36 -07:00
|
|
|
struct blkpg_partition p;
|
2024-03-05 11:21:32 +08:00
|
|
|
sector_t start, length, capacity, end;
|
2005-04-16 15:20:36 -07:00
|
|
|
|
|
|
|
|
if (!capable(CAP_SYS_ADMIN))
|
|
|
|
|
return -EACCES;
|
2019-11-28 11:28:41 +01:00
|
|
|
if (copy_from_user(&p, upart, sizeof(struct blkpg_partition)))
|
2005-04-16 15:20:36 -07:00
|
|
|
return -EFAULT;
|
2020-09-03 07:40:57 +02:00
|
|
|
if (bdev_is_partition(bdev))
|
2005-04-16 15:20:36 -07:00
|
|
|
return -EINVAL;
|
2020-04-14 09:28:53 +02:00
|
|
|
|
|
|
|
|
if (p.pno <= 0)
|
2005-04-16 15:20:36 -07:00
|
|
|
return -EINVAL;
|
2008-08-25 19:30:16 +09:00
|
|
|
|
2020-04-14 09:28:53 +02:00
|
|
|
if (op == BLKPG_DEL_PARTITION)
|
2021-08-10 17:45:11 +02:00
|
|
|
return bdev_del_partition(disk, p.pno);
|
2008-08-25 19:30:16 +09:00
|
|
|
|
2024-05-07 03:53:49 +00:00
|
|
|
if (p.start < 0 || p.length <= 0 || LLONG_MAX - p.length < p.start)
|
2023-06-29 14:25:17 +00:00
|
|
|
return -EINVAL;
|
|
|
|
|
/* Check that the partition is aligned to the block size */
|
|
|
|
|
if (!IS_ALIGNED(p.start | p.length, bdev_logical_block_size(bdev)))
|
|
|
|
|
return -EINVAL;
|
|
|
|
|
|
2020-04-14 09:28:53 +02:00
|
|
|
start = p.start >> SECTOR_SHIFT;
|
|
|
|
|
length = p.length >> SECTOR_SHIFT;
|
2024-03-05 11:21:32 +08:00
|
|
|
capacity = get_capacity(disk);
|
|
|
|
|
|
|
|
|
|
if (check_add_overflow(start, length, &end))
|
|
|
|
|
return -EINVAL;
|
|
|
|
|
|
|
|
|
|
if (start >= capacity || end > capacity)
|
|
|
|
|
return -EINVAL;
|
2008-09-03 09:03:02 +02:00
|
|
|
|
2020-04-14 09:28:53 +02:00
|
|
|
switch (op) {
|
|
|
|
|
case BLKPG_ADD_PARTITION:
|
2021-08-10 17:45:10 +02:00
|
|
|
return bdev_add_partition(disk, p.pno, start, length);
|
2020-04-14 09:28:53 +02:00
|
|
|
case BLKPG_RESIZE_PARTITION:
|
2021-08-10 17:45:12 +02:00
|
|
|
return bdev_resize_partition(disk, p.pno, start, length);
|
2020-04-14 09:28:53 +02:00
|
|
|
default:
|
|
|
|
|
return -EINVAL;
|
|
|
|
|
}
|
2005-04-16 15:20:36 -07:00
|
|
|
}
|
|
|
|
|
|
2019-11-28 11:28:41 +01:00
|
|
|
static int blkpg_ioctl(struct block_device *bdev,
|
|
|
|
|
struct blkpg_ioctl_arg __user *arg)
|
|
|
|
|
{
|
|
|
|
|
struct blkpg_partition __user *udata;
|
|
|
|
|
int op;
|
|
|
|
|
|
|
|
|
|
if (get_user(op, &arg->op) || get_user(udata, &arg->data))
|
|
|
|
|
return -EFAULT;
|
|
|
|
|
|
|
|
|
|
return blkpg_do_ioctl(bdev, udata, op);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#ifdef CONFIG_COMPAT
|
|
|
|
|
struct compat_blkpg_ioctl_arg {
|
|
|
|
|
compat_int_t op;
|
|
|
|
|
compat_int_t flags;
|
|
|
|
|
compat_int_t datalen;
|
|
|
|
|
compat_caddr_t data;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
static int compat_blkpg_ioctl(struct block_device *bdev,
|
|
|
|
|
struct compat_blkpg_ioctl_arg __user *arg)
|
|
|
|
|
{
|
|
|
|
|
compat_caddr_t udata;
|
|
|
|
|
int op;
|
|
|
|
|
|
|
|
|
|
if (get_user(op, &arg->op) || get_user(udata, &arg->data))
|
|
|
|
|
return -EFAULT;
|
|
|
|
|
|
|
|
|
|
return blkpg_do_ioctl(bdev, compat_ptr(udata), op);
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
2024-09-11 17:34:40 +01:00
|
|
|
/*
|
|
|
|
|
* Check that [start, start + len) is a valid range from the block device's
|
|
|
|
|
* perspective, including verifying that it can be correctly translated into
|
|
|
|
|
* logical block addresses.
|
|
|
|
|
*/
|
|
|
|
|
static int blk_validate_byte_range(struct block_device *bdev,
|
|
|
|
|
uint64_t start, uint64_t len)
|
|
|
|
|
{
|
|
|
|
|
unsigned int bs_mask = bdev_logical_block_size(bdev) - 1;
|
|
|
|
|
uint64_t end;
|
|
|
|
|
|
|
|
|
|
if ((start | len) & bs_mask)
|
|
|
|
|
return -EINVAL;
|
|
|
|
|
if (!len)
|
|
|
|
|
return -EINVAL;
|
|
|
|
|
if (check_add_overflow(start, len, &end) || end > bdev_nr_bytes(bdev))
|
|
|
|
|
return -EINVAL;
|
|
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2023-06-08 13:02:55 +02:00
|
|
|
static int blk_ioctl_discard(struct block_device *bdev, blk_mode_t mode,
|
2022-04-15 06:52:57 +02:00
|
|
|
unsigned long arg)
|
2008-08-11 15:58:42 +01:00
|
|
|
{
|
2024-09-11 17:34:40 +01:00
|
|
|
uint64_t range[2], start, len;
|
2024-05-06 06:20:27 +02:00
|
|
|
struct bio *prev = NULL, *bio;
|
|
|
|
|
sector_t sector, nr_sects;
|
|
|
|
|
struct blk_plug plug;
|
2020-09-04 10:58:52 +02:00
|
|
|
int err;
|
2015-10-15 14:10:47 +02:00
|
|
|
|
|
|
|
|
if (copy_from_user(range, (void __user *)arg, sizeof(range)))
|
|
|
|
|
return -EFAULT;
|
|
|
|
|
start = range[0];
|
|
|
|
|
len = range[1];
|
2010-08-11 14:17:49 -07:00
|
|
|
|
2024-09-11 17:34:40 +01:00
|
|
|
if (!bdev_max_discard_sectors(bdev))
|
|
|
|
|
return -EOPNOTSUPP;
|
2008-08-11 15:58:42 +01:00
|
|
|
|
2024-09-11 17:34:40 +01:00
|
|
|
if (!(mode & BLK_OPEN_WRITE))
|
|
|
|
|
return -EBADF;
|
|
|
|
|
if (bdev_read_only(bdev))
|
|
|
|
|
return -EPERM;
|
|
|
|
|
err = blk_validate_byte_range(bdev, start, len);
|
|
|
|
|
if (err)
|
|
|
|
|
return err;
|
2020-09-04 10:58:52 +02:00
|
|
|
|
2025-04-23 12:53:42 -07:00
|
|
|
inode_lock(bdev->bd_mapping->host);
|
2024-04-11 15:53:41 +01:00
|
|
|
filemap_invalidate_lock(bdev->bd_mapping);
|
2024-09-11 17:34:40 +01:00
|
|
|
err = truncate_bdev_range(bdev, mode, start, start + len - 1);
|
2020-09-04 10:58:52 +02:00
|
|
|
if (err)
|
2021-11-09 19:47:22 +09:00
|
|
|
goto fail;
|
2024-05-06 06:20:27 +02:00
|
|
|
|
|
|
|
|
sector = start >> SECTOR_SHIFT;
|
|
|
|
|
nr_sects = len >> SECTOR_SHIFT;
|
|
|
|
|
|
|
|
|
|
blk_start_plug(&plug);
|
2026-04-07 16:05:27 +02:00
|
|
|
while (!fatal_signal_pending(current)) {
|
2024-05-06 06:20:27 +02:00
|
|
|
bio = blk_alloc_discard_bio(bdev, §or, &nr_sects,
|
|
|
|
|
GFP_KERNEL);
|
|
|
|
|
if (!bio)
|
|
|
|
|
break;
|
|
|
|
|
prev = bio_chain_and_submit(prev, bio);
|
|
|
|
|
}
|
|
|
|
|
if (prev) {
|
2026-04-07 16:05:27 +02:00
|
|
|
err = bio_submit_or_kill(prev, BLKDEV_ZERO_KILLABLE);
|
2024-05-06 06:20:27 +02:00
|
|
|
if (err == -EOPNOTSUPP)
|
|
|
|
|
err = 0;
|
|
|
|
|
bio_put(prev);
|
|
|
|
|
}
|
|
|
|
|
blk_finish_plug(&plug);
|
2021-11-09 19:47:22 +09:00
|
|
|
fail:
|
2024-04-11 15:53:41 +01:00
|
|
|
filemap_invalidate_unlock(bdev->bd_mapping);
|
2025-04-23 12:53:42 -07:00
|
|
|
inode_unlock(bdev->bd_mapping->host);
|
2021-11-09 19:47:22 +09:00
|
|
|
return err;
|
2008-08-11 15:58:42 +01:00
|
|
|
}
|
|
|
|
|
|
2023-06-08 13:02:55 +02:00
|
|
|
static int blk_ioctl_secure_erase(struct block_device *bdev, blk_mode_t mode,
|
2022-04-15 06:52:57 +02:00
|
|
|
void __user *argp)
|
|
|
|
|
{
|
2024-09-03 22:48:19 +03:00
|
|
|
uint64_t start, len, end;
|
2022-04-15 06:52:57 +02:00
|
|
|
uint64_t range[2];
|
|
|
|
|
int err;
|
|
|
|
|
|
2023-06-08 13:02:55 +02:00
|
|
|
if (!(mode & BLK_OPEN_WRITE))
|
2022-04-15 06:52:57 +02:00
|
|
|
return -EBADF;
|
|
|
|
|
if (!bdev_max_secure_erase_sectors(bdev))
|
|
|
|
|
return -EOPNOTSUPP;
|
|
|
|
|
if (copy_from_user(range, argp, sizeof(range)))
|
|
|
|
|
return -EFAULT;
|
|
|
|
|
|
|
|
|
|
start = range[0];
|
|
|
|
|
len = range[1];
|
|
|
|
|
if ((start & 511) || (len & 511))
|
|
|
|
|
return -EINVAL;
|
2024-09-03 22:48:19 +03:00
|
|
|
if (check_add_overflow(start, len, &end) ||
|
|
|
|
|
end > bdev_nr_bytes(bdev))
|
2022-04-15 06:52:57 +02:00
|
|
|
return -EINVAL;
|
|
|
|
|
|
2025-04-23 12:53:42 -07:00
|
|
|
inode_lock(bdev->bd_mapping->host);
|
2024-04-11 15:53:37 +01:00
|
|
|
filemap_invalidate_lock(bdev->bd_mapping);
|
2024-09-03 22:48:19 +03:00
|
|
|
err = truncate_bdev_range(bdev, mode, start, end - 1);
|
2022-04-15 06:52:57 +02:00
|
|
|
if (!err)
|
|
|
|
|
err = blkdev_issue_secure_erase(bdev, start >> 9, len >> 9,
|
|
|
|
|
GFP_KERNEL);
|
2024-04-11 15:53:37 +01:00
|
|
|
filemap_invalidate_unlock(bdev->bd_mapping);
|
2025-04-23 12:53:42 -07:00
|
|
|
inode_unlock(bdev->bd_mapping->host);
|
2022-04-15 06:52:57 +02:00
|
|
|
return err;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2023-06-08 13:02:55 +02:00
|
|
|
static int blk_ioctl_zeroout(struct block_device *bdev, blk_mode_t mode,
|
2015-10-15 14:10:47 +02:00
|
|
|
unsigned long arg)
|
2012-09-18 12:19:29 -04:00
|
|
|
{
|
2015-10-15 14:10:47 +02:00
|
|
|
uint64_t range[2];
|
2016-10-11 13:51:05 -07:00
|
|
|
uint64_t start, end, len;
|
2020-09-04 10:58:52 +02:00
|
|
|
int err;
|
2015-10-15 14:10:47 +02:00
|
|
|
|
2023-06-08 13:02:55 +02:00
|
|
|
if (!(mode & BLK_OPEN_WRITE))
|
2015-10-15 14:10:47 +02:00
|
|
|
return -EBADF;
|
|
|
|
|
|
|
|
|
|
if (copy_from_user(range, (void __user *)arg, sizeof(range)))
|
|
|
|
|
return -EFAULT;
|
|
|
|
|
|
|
|
|
|
start = range[0];
|
|
|
|
|
len = range[1];
|
2016-10-11 13:51:05 -07:00
|
|
|
end = start + len - 1;
|
2015-10-15 14:10:47 +02:00
|
|
|
|
2012-09-18 12:19:29 -04:00
|
|
|
if (start & 511)
|
|
|
|
|
return -EINVAL;
|
|
|
|
|
if (len & 511)
|
|
|
|
|
return -EINVAL;
|
2021-10-19 08:20:22 +02:00
|
|
|
if (end >= (uint64_t)bdev_nr_bytes(bdev))
|
2016-10-11 13:51:05 -07:00
|
|
|
return -EINVAL;
|
|
|
|
|
if (end < start)
|
2012-09-18 12:19:29 -04:00
|
|
|
return -EINVAL;
|
|
|
|
|
|
2016-10-11 13:51:05 -07:00
|
|
|
/* Invalidate the page cache, including dirty pages */
|
2025-04-23 12:53:42 -07:00
|
|
|
inode_lock(bdev->bd_mapping->host);
|
2024-04-11 15:53:41 +01:00
|
|
|
filemap_invalidate_lock(bdev->bd_mapping);
|
2020-09-04 10:58:52 +02:00
|
|
|
err = truncate_bdev_range(bdev, mode, start, end);
|
|
|
|
|
if (err)
|
2021-11-09 19:47:23 +09:00
|
|
|
goto fail;
|
2016-10-11 13:51:05 -07:00
|
|
|
|
2021-11-09 19:47:23 +09:00
|
|
|
err = blkdev_issue_zeroout(bdev, start >> 9, len >> 9, GFP_KERNEL,
|
2024-07-01 18:51:20 +02:00
|
|
|
BLKDEV_ZERO_NOUNMAP | BLKDEV_ZERO_KILLABLE);
|
2021-11-09 19:47:23 +09:00
|
|
|
|
|
|
|
|
fail:
|
2024-04-11 15:53:41 +01:00
|
|
|
filemap_invalidate_unlock(bdev->bd_mapping);
|
2025-04-23 12:53:42 -07:00
|
|
|
inode_unlock(bdev->bd_mapping->host);
|
2021-11-09 19:47:23 +09:00
|
|
|
return err;
|
2012-09-18 12:19:29 -04:00
|
|
|
}
|
|
|
|
|
|
2019-11-29 11:48:31 +01:00
|
|
|
static int put_ushort(unsigned short __user *argp, unsigned short val)
|
2005-04-16 15:20:36 -07:00
|
|
|
{
|
2019-11-29 11:48:31 +01:00
|
|
|
return put_user(val, argp);
|
2005-04-16 15:20:36 -07:00
|
|
|
}
|
|
|
|
|
|
2019-11-29 11:48:31 +01:00
|
|
|
static int put_int(int __user *argp, int val)
|
2005-04-16 15:20:36 -07:00
|
|
|
{
|
2019-11-29 11:48:31 +01:00
|
|
|
return put_user(val, argp);
|
2005-04-16 15:20:36 -07:00
|
|
|
}
|
|
|
|
|
|
2019-11-29 11:48:31 +01:00
|
|
|
static int put_uint(unsigned int __user *argp, unsigned int val)
|
2009-10-03 20:52:01 +02:00
|
|
|
{
|
2019-11-29 11:48:31 +01:00
|
|
|
return put_user(val, argp);
|
2009-10-03 20:52:01 +02:00
|
|
|
}
|
|
|
|
|
|
2019-11-29 11:48:31 +01:00
|
|
|
static int put_long(long __user *argp, long val)
|
2005-04-16 15:20:36 -07:00
|
|
|
{
|
2019-11-29 11:48:31 +01:00
|
|
|
return put_user(val, argp);
|
2005-04-16 15:20:36 -07:00
|
|
|
}
|
|
|
|
|
|
2019-11-29 11:48:31 +01:00
|
|
|
static int put_ulong(unsigned long __user *argp, unsigned long val)
|
2005-04-16 15:20:36 -07:00
|
|
|
{
|
2019-11-29 11:48:31 +01:00
|
|
|
return put_user(val, argp);
|
2005-04-16 15:20:36 -07:00
|
|
|
}
|
|
|
|
|
|
2019-11-29 11:48:31 +01:00
|
|
|
static int put_u64(u64 __user *argp, u64 val)
|
2005-04-16 15:20:36 -07:00
|
|
|
{
|
2019-11-29 11:48:31 +01:00
|
|
|
return put_user(val, argp);
|
2005-04-16 15:20:36 -07:00
|
|
|
}
|
|
|
|
|
|
2019-11-29 11:45:30 +01:00
|
|
|
#ifdef CONFIG_COMPAT
|
2020-05-18 21:07:34 -07:00
|
|
|
static int compat_put_long(compat_long_t __user *argp, long val)
|
2019-11-29 11:45:30 +01:00
|
|
|
{
|
2019-11-29 11:48:31 +01:00
|
|
|
return put_user(val, argp);
|
2019-11-29 11:45:30 +01:00
|
|
|
}
|
|
|
|
|
|
2020-05-18 21:07:34 -07:00
|
|
|
static int compat_put_ulong(compat_ulong_t __user *argp, compat_ulong_t val)
|
2019-11-29 11:45:30 +01:00
|
|
|
{
|
2019-11-29 11:48:31 +01:00
|
|
|
return put_user(val, argp);
|
2019-11-29 11:45:30 +01:00
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
2019-11-28 15:48:10 +01:00
|
|
|
#ifdef CONFIG_COMPAT
|
|
|
|
|
/*
|
|
|
|
|
* This is the equivalent of compat_ptr_ioctl(), to be used by block
|
|
|
|
|
* drivers that implement only commands that are completely compatible
|
|
|
|
|
* between 32-bit and 64-bit user space
|
|
|
|
|
*/
|
2023-06-08 13:02:55 +02:00
|
|
|
int blkdev_compat_ptr_ioctl(struct block_device *bdev, blk_mode_t mode,
|
2019-11-28 15:48:10 +01:00
|
|
|
unsigned cmd, unsigned long arg)
|
|
|
|
|
{
|
|
|
|
|
struct gendisk *disk = bdev->bd_disk;
|
|
|
|
|
|
|
|
|
|
if (disk->fops->ioctl)
|
|
|
|
|
return disk->fops->ioctl(bdev, mode, cmd,
|
|
|
|
|
(unsigned long)compat_ptr(arg));
|
|
|
|
|
|
|
|
|
|
return -ENOIOCTLCMD;
|
|
|
|
|
}
|
|
|
|
|
EXPORT_SYMBOL(blkdev_compat_ptr_ioctl);
|
|
|
|
|
#endif
|
|
|
|
|
|
2026-02-10 11:36:17 -05:00
|
|
|
enum pr_direction {
|
|
|
|
|
PR_IN, /* read from device */
|
|
|
|
|
PR_OUT, /* write to device */
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
static bool blkdev_pr_allowed(struct block_device *bdev, blk_mode_t mode,
|
|
|
|
|
enum pr_direction dir)
|
2023-06-13 16:40:07 +08:00
|
|
|
{
|
|
|
|
|
/* no sense to make reservations for partitions */
|
|
|
|
|
if (bdev_is_partition(bdev))
|
|
|
|
|
return false;
|
|
|
|
|
|
|
|
|
|
if (capable(CAP_SYS_ADMIN))
|
|
|
|
|
return true;
|
2026-02-10 11:36:17 -05:00
|
|
|
|
2023-06-13 16:40:08 +08:00
|
|
|
/*
|
2026-02-10 11:36:17 -05:00
|
|
|
* Only allow unprivileged reservation _out_ commands if the file
|
|
|
|
|
* descriptor is open for writing. Allow reservation _in_ commands if
|
|
|
|
|
* the file descriptor is open for reading since they do not modify the
|
|
|
|
|
* device.
|
2023-06-13 16:40:08 +08:00
|
|
|
*/
|
2026-02-10 11:36:17 -05:00
|
|
|
if (dir == PR_IN)
|
|
|
|
|
return mode & BLK_OPEN_READ;
|
|
|
|
|
else
|
|
|
|
|
return mode & BLK_OPEN_WRITE;
|
2023-06-13 16:40:07 +08:00
|
|
|
}
|
|
|
|
|
|
2023-06-13 16:40:08 +08:00
|
|
|
static int blkdev_pr_register(struct block_device *bdev, blk_mode_t mode,
|
2015-10-15 14:10:48 +02:00
|
|
|
struct pr_registration __user *arg)
|
|
|
|
|
{
|
|
|
|
|
const struct pr_ops *ops = bdev->bd_disk->fops->pr_ops;
|
|
|
|
|
struct pr_registration reg;
|
|
|
|
|
|
2026-02-10 11:36:17 -05:00
|
|
|
if (!blkdev_pr_allowed(bdev, mode, PR_OUT))
|
2015-10-15 14:10:48 +02:00
|
|
|
return -EPERM;
|
|
|
|
|
if (!ops || !ops->pr_register)
|
|
|
|
|
return -EOPNOTSUPP;
|
|
|
|
|
if (copy_from_user(®, arg, sizeof(reg)))
|
|
|
|
|
return -EFAULT;
|
|
|
|
|
|
|
|
|
|
if (reg.flags & ~PR_FL_IGNORE_KEY)
|
|
|
|
|
return -EOPNOTSUPP;
|
|
|
|
|
return ops->pr_register(bdev, reg.old_key, reg.new_key, reg.flags);
|
|
|
|
|
}
|
|
|
|
|
|
2023-06-13 16:40:08 +08:00
|
|
|
static int blkdev_pr_reserve(struct block_device *bdev, blk_mode_t mode,
|
2015-10-15 14:10:48 +02:00
|
|
|
struct pr_reservation __user *arg)
|
|
|
|
|
{
|
|
|
|
|
const struct pr_ops *ops = bdev->bd_disk->fops->pr_ops;
|
|
|
|
|
struct pr_reservation rsv;
|
|
|
|
|
|
2026-02-10 11:36:17 -05:00
|
|
|
if (!blkdev_pr_allowed(bdev, mode, PR_OUT))
|
2015-10-15 14:10:48 +02:00
|
|
|
return -EPERM;
|
|
|
|
|
if (!ops || !ops->pr_reserve)
|
|
|
|
|
return -EOPNOTSUPP;
|
|
|
|
|
if (copy_from_user(&rsv, arg, sizeof(rsv)))
|
|
|
|
|
return -EFAULT;
|
|
|
|
|
|
|
|
|
|
if (rsv.flags & ~PR_FL_IGNORE_KEY)
|
|
|
|
|
return -EOPNOTSUPP;
|
|
|
|
|
return ops->pr_reserve(bdev, rsv.key, rsv.type, rsv.flags);
|
|
|
|
|
}
|
|
|
|
|
|
2023-06-13 16:40:08 +08:00
|
|
|
static int blkdev_pr_release(struct block_device *bdev, blk_mode_t mode,
|
2015-10-15 14:10:48 +02:00
|
|
|
struct pr_reservation __user *arg)
|
|
|
|
|
{
|
|
|
|
|
const struct pr_ops *ops = bdev->bd_disk->fops->pr_ops;
|
|
|
|
|
struct pr_reservation rsv;
|
|
|
|
|
|
2026-02-10 11:36:17 -05:00
|
|
|
if (!blkdev_pr_allowed(bdev, mode, PR_OUT))
|
2015-10-15 14:10:48 +02:00
|
|
|
return -EPERM;
|
|
|
|
|
if (!ops || !ops->pr_release)
|
|
|
|
|
return -EOPNOTSUPP;
|
|
|
|
|
if (copy_from_user(&rsv, arg, sizeof(rsv)))
|
|
|
|
|
return -EFAULT;
|
|
|
|
|
|
|
|
|
|
if (rsv.flags)
|
|
|
|
|
return -EOPNOTSUPP;
|
|
|
|
|
return ops->pr_release(bdev, rsv.key, rsv.type);
|
|
|
|
|
}
|
|
|
|
|
|
2023-06-13 16:40:08 +08:00
|
|
|
static int blkdev_pr_preempt(struct block_device *bdev, blk_mode_t mode,
|
2015-10-15 14:10:48 +02:00
|
|
|
struct pr_preempt __user *arg, bool abort)
|
|
|
|
|
{
|
|
|
|
|
const struct pr_ops *ops = bdev->bd_disk->fops->pr_ops;
|
|
|
|
|
struct pr_preempt p;
|
|
|
|
|
|
2026-02-10 11:36:17 -05:00
|
|
|
if (!blkdev_pr_allowed(bdev, mode, PR_OUT))
|
2015-10-15 14:10:48 +02:00
|
|
|
return -EPERM;
|
|
|
|
|
if (!ops || !ops->pr_preempt)
|
|
|
|
|
return -EOPNOTSUPP;
|
|
|
|
|
if (copy_from_user(&p, arg, sizeof(p)))
|
|
|
|
|
return -EFAULT;
|
|
|
|
|
|
|
|
|
|
if (p.flags)
|
|
|
|
|
return -EOPNOTSUPP;
|
|
|
|
|
return ops->pr_preempt(bdev, p.old_key, p.new_key, p.type, abort);
|
|
|
|
|
}
|
|
|
|
|
|
2023-06-13 16:40:08 +08:00
|
|
|
static int blkdev_pr_clear(struct block_device *bdev, blk_mode_t mode,
|
2015-10-15 14:10:48 +02:00
|
|
|
struct pr_clear __user *arg)
|
|
|
|
|
{
|
|
|
|
|
const struct pr_ops *ops = bdev->bd_disk->fops->pr_ops;
|
|
|
|
|
struct pr_clear c;
|
|
|
|
|
|
2026-02-10 11:36:17 -05:00
|
|
|
if (!blkdev_pr_allowed(bdev, mode, PR_OUT))
|
2015-10-15 14:10:48 +02:00
|
|
|
return -EPERM;
|
|
|
|
|
if (!ops || !ops->pr_clear)
|
|
|
|
|
return -EOPNOTSUPP;
|
|
|
|
|
if (copy_from_user(&c, arg, sizeof(c)))
|
|
|
|
|
return -EFAULT;
|
|
|
|
|
|
|
|
|
|
if (c.flags)
|
|
|
|
|
return -EOPNOTSUPP;
|
|
|
|
|
return ops->pr_clear(bdev, c.key);
|
|
|
|
|
}
|
|
|
|
|
|
2025-12-01 16:43:28 -05:00
|
|
|
static int blkdev_pr_read_keys(struct block_device *bdev, blk_mode_t mode,
|
|
|
|
|
struct pr_read_keys __user *arg)
|
|
|
|
|
{
|
|
|
|
|
const struct pr_ops *ops = bdev->bd_disk->fops->pr_ops;
|
|
|
|
|
struct pr_keys *keys_info;
|
|
|
|
|
struct pr_read_keys read_keys;
|
|
|
|
|
u64 __user *keys_ptr;
|
|
|
|
|
size_t keys_info_len;
|
|
|
|
|
size_t keys_copy_len;
|
|
|
|
|
int ret;
|
|
|
|
|
|
2026-02-10 11:36:17 -05:00
|
|
|
if (!blkdev_pr_allowed(bdev, mode, PR_IN))
|
2025-12-01 16:43:28 -05:00
|
|
|
return -EPERM;
|
|
|
|
|
if (!ops || !ops->pr_read_keys)
|
|
|
|
|
return -EOPNOTSUPP;
|
|
|
|
|
|
|
|
|
|
if (copy_from_user(&read_keys, arg, sizeof(read_keys)))
|
|
|
|
|
return -EFAULT;
|
|
|
|
|
|
2025-12-17 07:17:12 +05:30
|
|
|
if (read_keys.num_keys > PR_KEYS_MAX)
|
2025-12-01 16:43:28 -05:00
|
|
|
return -EINVAL;
|
|
|
|
|
|
2025-12-17 07:17:12 +05:30
|
|
|
keys_info_len = struct_size(keys_info, keys, read_keys.num_keys);
|
|
|
|
|
|
|
|
|
|
keys_info = kvzalloc(keys_info_len, GFP_KERNEL);
|
2025-12-01 16:43:28 -05:00
|
|
|
if (!keys_info)
|
|
|
|
|
return -ENOMEM;
|
|
|
|
|
|
|
|
|
|
keys_info->num_keys = read_keys.num_keys;
|
|
|
|
|
|
|
|
|
|
ret = ops->pr_read_keys(bdev, keys_info);
|
|
|
|
|
if (ret)
|
|
|
|
|
goto out;
|
|
|
|
|
|
|
|
|
|
/* Copy out individual keys */
|
|
|
|
|
keys_ptr = u64_to_user_ptr(read_keys.keys_ptr);
|
|
|
|
|
keys_copy_len = min(read_keys.num_keys, keys_info->num_keys) *
|
|
|
|
|
sizeof(keys_info->keys[0]);
|
|
|
|
|
|
|
|
|
|
if (copy_to_user(keys_ptr, keys_info->keys, keys_copy_len)) {
|
|
|
|
|
ret = -EFAULT;
|
|
|
|
|
goto out;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Copy out the arg struct */
|
|
|
|
|
read_keys.generation = keys_info->generation;
|
|
|
|
|
read_keys.num_keys = keys_info->num_keys;
|
|
|
|
|
|
|
|
|
|
if (copy_to_user(arg, &read_keys, sizeof(read_keys)))
|
|
|
|
|
ret = -EFAULT;
|
|
|
|
|
out:
|
2025-12-17 07:17:12 +05:30
|
|
|
kvfree(keys_info);
|
2025-12-01 16:43:28 -05:00
|
|
|
return ret;
|
|
|
|
|
}
|
|
|
|
|
|
2025-12-01 16:43:29 -05:00
|
|
|
static int blkdev_pr_read_reservation(struct block_device *bdev,
|
|
|
|
|
blk_mode_t mode, struct pr_read_reservation __user *arg)
|
|
|
|
|
{
|
|
|
|
|
const struct pr_ops *ops = bdev->bd_disk->fops->pr_ops;
|
|
|
|
|
struct pr_held_reservation rsv = {};
|
|
|
|
|
struct pr_read_reservation out = {};
|
|
|
|
|
int ret;
|
|
|
|
|
|
2026-02-10 11:36:17 -05:00
|
|
|
if (!blkdev_pr_allowed(bdev, mode, PR_IN))
|
2025-12-01 16:43:29 -05:00
|
|
|
return -EPERM;
|
|
|
|
|
if (!ops || !ops->pr_read_reservation)
|
|
|
|
|
return -EOPNOTSUPP;
|
|
|
|
|
|
|
|
|
|
ret = ops->pr_read_reservation(bdev, &rsv);
|
|
|
|
|
if (ret)
|
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
|
|
out.key = rsv.key;
|
|
|
|
|
out.generation = rsv.generation;
|
|
|
|
|
out.type = rsv.type;
|
|
|
|
|
|
|
|
|
|
if (copy_to_user(arg, &out, sizeof(out)))
|
|
|
|
|
return -EFAULT;
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2023-06-08 13:02:54 +02:00
|
|
|
static int blkdev_flushbuf(struct block_device *bdev, unsigned cmd,
|
|
|
|
|
unsigned long arg)
|
2015-10-15 14:10:47 +02:00
|
|
|
{
|
|
|
|
|
if (!capable(CAP_SYS_ADMIN))
|
|
|
|
|
return -EACCES;
|
2023-08-11 12:08:26 +02:00
|
|
|
|
|
|
|
|
mutex_lock(&bdev->bd_holder_lock);
|
|
|
|
|
if (bdev->bd_holder_ops && bdev->bd_holder_ops->sync)
|
|
|
|
|
bdev->bd_holder_ops->sync(bdev);
|
2023-10-18 17:29:24 +02:00
|
|
|
else {
|
|
|
|
|
mutex_unlock(&bdev->bd_holder_lock);
|
2023-08-11 12:08:26 +02:00
|
|
|
sync_blockdev(bdev);
|
2023-10-18 17:29:24 +02:00
|
|
|
}
|
2023-08-11 12:08:26 +02:00
|
|
|
|
2015-10-15 14:10:47 +02:00
|
|
|
invalidate_bdev(bdev);
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2023-06-08 13:02:54 +02:00
|
|
|
static int blkdev_roset(struct block_device *bdev, unsigned cmd,
|
|
|
|
|
unsigned long arg)
|
2015-10-15 14:10:47 +02:00
|
|
|
{
|
|
|
|
|
int ret, n;
|
|
|
|
|
|
2017-10-18 14:38:38 +02:00
|
|
|
if (!capable(CAP_SYS_ADMIN))
|
|
|
|
|
return -EACCES;
|
|
|
|
|
|
2015-10-15 14:10:47 +02:00
|
|
|
if (get_user(n, (int __user *)arg))
|
|
|
|
|
return -EFAULT;
|
2020-11-03 11:00:11 +01:00
|
|
|
if (bdev->bd_disk->fops->set_read_only) {
|
|
|
|
|
ret = bdev->bd_disk->fops->set_read_only(bdev, n);
|
|
|
|
|
if (ret)
|
|
|
|
|
return ret;
|
|
|
|
|
}
|
2024-04-12 01:15:55 -04:00
|
|
|
if (n)
|
|
|
|
|
bdev_set_flag(bdev, BD_READ_ONLY);
|
|
|
|
|
else
|
|
|
|
|
bdev_clear_flag(bdev, BD_READ_ONLY);
|
2015-10-15 14:10:47 +02:00
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static int blkdev_getgeo(struct block_device *bdev,
|
|
|
|
|
struct hd_geometry __user *argp)
|
|
|
|
|
{
|
|
|
|
|
struct gendisk *disk = bdev->bd_disk;
|
|
|
|
|
struct hd_geometry geo;
|
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
|
|
if (!argp)
|
|
|
|
|
return -EINVAL;
|
|
|
|
|
if (!disk->fops->getgeo)
|
|
|
|
|
return -ENOTTY;
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* We need to set the startsect first, the driver may
|
|
|
|
|
* want to override it.
|
|
|
|
|
*/
|
|
|
|
|
memset(&geo, 0, sizeof(geo));
|
|
|
|
|
geo.start = get_start_sect(bdev);
|
2024-05-21 22:19:55 -04:00
|
|
|
ret = disk->fops->getgeo(disk, &geo);
|
2015-10-15 14:10:47 +02:00
|
|
|
if (ret)
|
|
|
|
|
return ret;
|
|
|
|
|
if (copy_to_user(argp, &geo, sizeof(geo)))
|
|
|
|
|
return -EFAULT;
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2019-11-29 11:45:30 +01:00
|
|
|
#ifdef CONFIG_COMPAT
|
|
|
|
|
struct compat_hd_geometry {
|
|
|
|
|
unsigned char heads;
|
|
|
|
|
unsigned char sectors;
|
|
|
|
|
unsigned short cylinders;
|
|
|
|
|
u32 start;
|
|
|
|
|
};
|
|
|
|
|
|
2019-11-29 11:48:31 +01:00
|
|
|
static int compat_hdio_getgeo(struct block_device *bdev,
|
|
|
|
|
struct compat_hd_geometry __user *ugeo)
|
2019-11-29 11:45:30 +01:00
|
|
|
{
|
2019-11-29 11:48:31 +01:00
|
|
|
struct gendisk *disk = bdev->bd_disk;
|
2019-11-29 11:45:30 +01:00
|
|
|
struct hd_geometry geo;
|
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
|
|
if (!ugeo)
|
|
|
|
|
return -EINVAL;
|
|
|
|
|
if (!disk->fops->getgeo)
|
|
|
|
|
return -ENOTTY;
|
|
|
|
|
|
|
|
|
|
memset(&geo, 0, sizeof(geo));
|
|
|
|
|
/*
|
|
|
|
|
* We need to set the startsect first, the driver may
|
|
|
|
|
* want to override it.
|
|
|
|
|
*/
|
|
|
|
|
geo.start = get_start_sect(bdev);
|
2024-05-21 22:19:55 -04:00
|
|
|
ret = disk->fops->getgeo(disk, &geo);
|
2019-11-29 11:45:30 +01:00
|
|
|
if (ret)
|
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
|
|
ret = copy_to_user(ugeo, &geo, 4);
|
|
|
|
|
ret |= put_user(geo.start, &ugeo->start);
|
|
|
|
|
if (ret)
|
|
|
|
|
ret = -EFAULT;
|
|
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
2015-10-15 14:10:47 +02:00
|
|
|
/* set the logical block size */
|
2024-04-18 00:34:31 -04:00
|
|
|
static int blkdev_bszset(struct file *file, blk_mode_t mode,
|
2015-10-15 14:10:47 +02:00
|
|
|
int __user *argp)
|
|
|
|
|
{
|
2024-04-18 00:34:31 -04:00
|
|
|
// this one might be file_inode(file)->i_rdev - a rare valid
|
|
|
|
|
// use of file_inode() for those.
|
|
|
|
|
dev_t dev = I_BDEV(file->f_mapping->host)->bd_dev;
|
|
|
|
|
struct file *excl_file;
|
2015-10-15 14:10:47 +02:00
|
|
|
int ret, n;
|
|
|
|
|
|
|
|
|
|
if (!capable(CAP_SYS_ADMIN))
|
|
|
|
|
return -EACCES;
|
|
|
|
|
if (!argp)
|
|
|
|
|
return -EINVAL;
|
|
|
|
|
if (get_user(n, argp))
|
|
|
|
|
return -EFAULT;
|
|
|
|
|
|
2023-06-08 13:02:55 +02:00
|
|
|
if (mode & BLK_OPEN_EXCL)
|
2024-04-18 00:34:31 -04:00
|
|
|
return set_blocksize(file, n);
|
2015-10-15 14:10:47 +02:00
|
|
|
|
2024-04-18 00:34:31 -04:00
|
|
|
excl_file = bdev_file_open_by_dev(dev, mode, &dev, NULL);
|
|
|
|
|
if (IS_ERR(excl_file))
|
2020-09-21 09:19:47 +02:00
|
|
|
return -EBUSY;
|
2024-04-18 00:34:31 -04:00
|
|
|
ret = set_blocksize(excl_file, n);
|
|
|
|
|
fput(excl_file);
|
2015-10-15 14:10:47 +02:00
|
|
|
return ret;
|
|
|
|
|
}
|
|
|
|
|
|
2007-10-09 13:23:51 +02:00
|
|
|
/*
|
2019-11-29 11:48:31 +01:00
|
|
|
* Common commands that are handled the same way on native and compat
|
|
|
|
|
* user space. Note the separate arg/argp parameters that are needed
|
|
|
|
|
* to deal with the compat_ptr() conversion.
|
2007-10-09 13:23:51 +02:00
|
|
|
*/
|
2023-06-08 13:02:55 +02:00
|
|
|
static int blkdev_common_ioctl(struct block_device *bdev, blk_mode_t mode,
|
2023-02-17 10:21:59 +08:00
|
|
|
unsigned int cmd, unsigned long arg,
|
|
|
|
|
void __user *argp)
|
2005-06-23 00:10:15 -07:00
|
|
|
{
|
2014-05-25 21:43:33 +09:00
|
|
|
unsigned int max_sectors;
|
2005-06-23 00:10:15 -07:00
|
|
|
|
2015-10-15 14:10:47 +02:00
|
|
|
switch (cmd) {
|
2005-04-16 15:20:36 -07:00
|
|
|
case BLKFLSBUF:
|
2023-06-08 13:02:54 +02:00
|
|
|
return blkdev_flushbuf(bdev, cmd, arg);
|
2005-04-16 15:20:36 -07:00
|
|
|
case BLKROSET:
|
2023-06-08 13:02:54 +02:00
|
|
|
return blkdev_roset(bdev, cmd, arg);
|
2010-08-11 14:17:49 -07:00
|
|
|
case BLKDISCARD:
|
2022-04-15 06:52:57 +02:00
|
|
|
return blk_ioctl_discard(bdev, mode, arg);
|
2015-10-15 14:10:47 +02:00
|
|
|
case BLKSECDISCARD:
|
2022-04-15 06:52:57 +02:00
|
|
|
return blk_ioctl_secure_erase(bdev, mode, argp);
|
2015-10-15 14:10:47 +02:00
|
|
|
case BLKZEROOUT:
|
|
|
|
|
return blk_ioctl_zeroout(bdev, mode, arg);
|
2021-07-13 01:05:27 +02:00
|
|
|
case BLKGETDISKSEQ:
|
|
|
|
|
return put_u64(argp, bdev->bd_disk->diskseq);
|
2016-10-18 15:40:35 +09:00
|
|
|
case BLKREPORTZONE:
|
2025-11-05 06:22:45 +09:00
|
|
|
case BLKREPORTZONEV2:
|
2023-06-08 13:02:54 +02:00
|
|
|
return blkdev_report_zones_ioctl(bdev, cmd, arg);
|
2016-10-18 15:40:35 +09:00
|
|
|
case BLKRESETZONE:
|
2019-10-27 23:05:46 +09:00
|
|
|
case BLKOPENZONE:
|
|
|
|
|
case BLKCLOSEZONE:
|
|
|
|
|
case BLKFINISHZONE:
|
|
|
|
|
return blkdev_zone_mgmt_ioctl(bdev, mode, cmd, arg);
|
2018-10-12 19:08:45 +09:00
|
|
|
case BLKGETZONESZ:
|
2019-11-29 11:48:31 +01:00
|
|
|
return put_uint(argp, bdev_zone_sectors(bdev));
|
2018-10-12 19:08:46 +09:00
|
|
|
case BLKGETNRZONES:
|
2022-07-06 09:03:45 +02:00
|
|
|
return put_uint(argp, bdev_nr_zones(bdev));
|
2008-09-18 15:53:24 -04:00
|
|
|
case BLKROGET:
|
2019-11-29 11:48:31 +01:00
|
|
|
return put_int(argp, bdev_read_only(bdev) != 0);
|
2009-10-03 20:52:01 +02:00
|
|
|
case BLKSSZGET: /* get block device logical block size */
|
2019-11-29 11:48:31 +01:00
|
|
|
return put_int(argp, bdev_logical_block_size(bdev));
|
2009-10-03 20:52:01 +02:00
|
|
|
case BLKPBSZGET: /* get block device physical block size */
|
2019-11-29 11:48:31 +01:00
|
|
|
return put_uint(argp, bdev_physical_block_size(bdev));
|
2009-10-03 20:52:01 +02:00
|
|
|
case BLKIOMIN:
|
2019-11-29 11:48:31 +01:00
|
|
|
return put_uint(argp, bdev_io_min(bdev));
|
2009-10-03 20:52:01 +02:00
|
|
|
case BLKIOOPT:
|
2019-11-29 11:48:31 +01:00
|
|
|
return put_uint(argp, bdev_io_opt(bdev));
|
2009-10-03 20:52:01 +02:00
|
|
|
case BLKALIGNOFF:
|
2019-11-29 11:48:31 +01:00
|
|
|
return put_int(argp, bdev_alignment_offset(bdev));
|
2009-12-03 09:24:48 +01:00
|
|
|
case BLKDISCARDZEROES:
|
2019-11-29 11:48:31 +01:00
|
|
|
return put_uint(argp, 0);
|
2008-09-18 15:53:24 -04:00
|
|
|
case BLKSECTGET:
|
2014-05-25 21:43:33 +09:00
|
|
|
max_sectors = min_t(unsigned int, USHRT_MAX,
|
|
|
|
|
queue_max_sectors(bdev_get_queue(bdev)));
|
2019-11-29 11:48:31 +01:00
|
|
|
return put_ushort(argp, max_sectors);
|
2012-01-11 16:29:31 +01:00
|
|
|
case BLKROTATIONAL:
|
2026-01-30 15:28:45 +09:00
|
|
|
return put_ushort(argp, bdev_rot(bdev));
|
2008-09-18 15:53:24 -04:00
|
|
|
case BLKRASET:
|
|
|
|
|
case BLKFRASET:
|
|
|
|
|
if(!capable(CAP_SYS_ADMIN))
|
|
|
|
|
return -EACCES;
|
2021-08-09 16:17:44 +02:00
|
|
|
bdev->bd_disk->bdi->ra_pages = (arg * 512) / PAGE_SIZE;
|
2008-09-18 15:53:24 -04:00
|
|
|
return 0;
|
|
|
|
|
case BLKRRPART:
|
2021-11-22 14:06:16 +01:00
|
|
|
if (!capable(CAP_SYS_ADMIN))
|
|
|
|
|
return -EACCES;
|
|
|
|
|
if (bdev_is_partition(bdev))
|
|
|
|
|
return -EINVAL;
|
2024-04-17 16:47:43 +02:00
|
|
|
return disk_scan_partitions(bdev->bd_disk,
|
|
|
|
|
mode | BLK_OPEN_STRICT_SCAN);
|
2008-09-18 15:53:24 -04:00
|
|
|
case BLKTRACESTART:
|
|
|
|
|
case BLKTRACESTOP:
|
|
|
|
|
case BLKTRACETEARDOWN:
|
2015-10-15 14:10:47 +02:00
|
|
|
return blk_trace_ioctl(bdev, cmd, argp);
|
2025-02-03 22:00:37 -08:00
|
|
|
case BLKCRYPTOIMPORTKEY:
|
|
|
|
|
case BLKCRYPTOGENERATEKEY:
|
|
|
|
|
case BLKCRYPTOPREPAREKEY:
|
|
|
|
|
return blk_crypto_ioctl(bdev, cmd, argp);
|
2015-10-15 14:10:48 +02:00
|
|
|
case IOC_PR_REGISTER:
|
2023-06-13 16:40:08 +08:00
|
|
|
return blkdev_pr_register(bdev, mode, argp);
|
2015-10-15 14:10:48 +02:00
|
|
|
case IOC_PR_RESERVE:
|
2023-06-13 16:40:08 +08:00
|
|
|
return blkdev_pr_reserve(bdev, mode, argp);
|
2015-10-15 14:10:48 +02:00
|
|
|
case IOC_PR_RELEASE:
|
2023-06-13 16:40:08 +08:00
|
|
|
return blkdev_pr_release(bdev, mode, argp);
|
2015-10-15 14:10:48 +02:00
|
|
|
case IOC_PR_PREEMPT:
|
2023-06-13 16:40:08 +08:00
|
|
|
return blkdev_pr_preempt(bdev, mode, argp, false);
|
2015-10-15 14:10:48 +02:00
|
|
|
case IOC_PR_PREEMPT_ABORT:
|
2023-06-13 16:40:08 +08:00
|
|
|
return blkdev_pr_preempt(bdev, mode, argp, true);
|
2015-10-15 14:10:48 +02:00
|
|
|
case IOC_PR_CLEAR:
|
2023-06-13 16:40:08 +08:00
|
|
|
return blkdev_pr_clear(bdev, mode, argp);
|
2025-12-01 16:43:28 -05:00
|
|
|
case IOC_PR_READ_KEYS:
|
|
|
|
|
return blkdev_pr_read_keys(bdev, mode, argp);
|
2025-12-01 16:43:29 -05:00
|
|
|
case IOC_PR_READ_RESERVATION:
|
|
|
|
|
return blkdev_pr_read_reservation(bdev, mode, argp);
|
2008-09-18 15:53:24 -04:00
|
|
|
default:
|
2025-07-28 15:12:00 -07:00
|
|
|
return blk_get_meta_cap(bdev, cmd, argp);
|
2008-09-18 15:53:24 -04:00
|
|
|
}
|
2005-04-16 15:20:36 -07:00
|
|
|
}
|
2019-11-29 11:48:31 +01:00
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Always keep this in sync with compat_blkdev_ioctl()
|
|
|
|
|
* to handle all incompatible commands in both functions.
|
|
|
|
|
*
|
|
|
|
|
* New commands must be compatible and go into blkdev_common_ioctl
|
|
|
|
|
*/
|
2021-10-12 12:44:50 +02:00
|
|
|
long blkdev_ioctl(struct file *file, unsigned cmd, unsigned long arg)
|
2019-11-29 11:48:31 +01:00
|
|
|
{
|
2021-10-12 12:44:50 +02:00
|
|
|
struct block_device *bdev = I_BDEV(file->f_mapping->host);
|
2019-11-29 11:48:31 +01:00
|
|
|
void __user *argp = (void __user *)arg;
|
2023-06-08 13:02:55 +02:00
|
|
|
blk_mode_t mode = file_to_blk_mode(file);
|
2021-10-12 12:44:50 +02:00
|
|
|
int ret;
|
|
|
|
|
|
2019-11-29 11:48:31 +01:00
|
|
|
switch (cmd) {
|
|
|
|
|
/* These need separate implementations for the data structure */
|
|
|
|
|
case HDIO_GETGEO:
|
|
|
|
|
return blkdev_getgeo(bdev, argp);
|
|
|
|
|
case BLKPG:
|
|
|
|
|
return blkpg_ioctl(bdev, argp);
|
|
|
|
|
|
|
|
|
|
/* Compat mode returns 32-bit data instead of 'long' */
|
|
|
|
|
case BLKRAGET:
|
|
|
|
|
case BLKFRAGET:
|
|
|
|
|
if (!argp)
|
|
|
|
|
return -EINVAL;
|
2021-08-09 16:17:44 +02:00
|
|
|
return put_long(argp,
|
|
|
|
|
(bdev->bd_disk->bdi->ra_pages * PAGE_SIZE) / 512);
|
2019-11-29 11:48:31 +01:00
|
|
|
case BLKGETSIZE:
|
2021-10-19 08:20:22 +02:00
|
|
|
if (bdev_nr_sectors(bdev) > ~0UL)
|
2019-11-29 11:48:31 +01:00
|
|
|
return -EFBIG;
|
2021-10-19 08:20:22 +02:00
|
|
|
return put_ulong(argp, bdev_nr_sectors(bdev));
|
2019-11-29 11:48:31 +01:00
|
|
|
|
|
|
|
|
/* The data is compatible, but the command number is different */
|
|
|
|
|
case BLKBSZGET: /* get block device soft block size (cf. BLKSSZGET) */
|
|
|
|
|
return put_int(argp, block_size(bdev));
|
|
|
|
|
case BLKBSZSET:
|
2024-04-18 00:34:31 -04:00
|
|
|
return blkdev_bszset(file, mode, argp);
|
2019-11-29 11:48:31 +01:00
|
|
|
case BLKGETSIZE64:
|
2021-10-19 08:20:22 +02:00
|
|
|
return put_u64(argp, bdev_nr_bytes(bdev));
|
2019-11-29 11:48:31 +01:00
|
|
|
|
|
|
|
|
/* Incompatible alignment on i386 */
|
|
|
|
|
case BLKTRACESETUP:
|
2025-10-22 13:41:15 +02:00
|
|
|
case BLKTRACESETUP2:
|
2019-11-29 11:48:31 +01:00
|
|
|
return blk_trace_ioctl(bdev, cmd, argp);
|
|
|
|
|
default:
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
2023-02-17 10:21:59 +08:00
|
|
|
ret = blkdev_common_ioctl(bdev, mode, cmd, arg, argp);
|
2020-11-03 11:00:18 +01:00
|
|
|
if (ret != -ENOIOCTLCMD)
|
|
|
|
|
return ret;
|
2019-11-29 11:48:31 +01:00
|
|
|
|
2020-11-03 11:00:18 +01:00
|
|
|
if (!bdev->bd_disk->fops->ioctl)
|
|
|
|
|
return -ENOTTY;
|
|
|
|
|
return bdev->bd_disk->fops->ioctl(bdev, mode, cmd, arg);
|
2019-11-29 11:48:31 +01:00
|
|
|
}
|
2019-11-29 11:45:30 +01:00
|
|
|
|
|
|
|
|
#ifdef CONFIG_COMPAT
|
2019-11-29 11:48:31 +01:00
|
|
|
|
2019-11-29 11:45:30 +01:00
|
|
|
#define BLKBSZGET_32 _IOR(0x12, 112, int)
|
|
|
|
|
#define BLKBSZSET_32 _IOW(0x12, 113, int)
|
|
|
|
|
#define BLKGETSIZE64_32 _IOR(0x12, 114, int)
|
|
|
|
|
|
|
|
|
|
/* Most of the generic ioctls are handled in the normal fallback path.
|
|
|
|
|
This assumes the blkdev's low level compat_ioctl always returns
|
|
|
|
|
ENOIOCTLCMD for unknown ioctls. */
|
|
|
|
|
long compat_blkdev_ioctl(struct file *file, unsigned cmd, unsigned long arg)
|
|
|
|
|
{
|
2019-11-29 11:48:31 +01:00
|
|
|
int ret;
|
|
|
|
|
void __user *argp = compat_ptr(arg);
|
2020-11-23 13:38:40 +01:00
|
|
|
struct block_device *bdev = I_BDEV(file->f_mapping->host);
|
2019-11-29 11:45:30 +01:00
|
|
|
struct gendisk *disk = bdev->bd_disk;
|
2023-06-08 13:02:55 +02:00
|
|
|
blk_mode_t mode = file_to_blk_mode(file);
|
2019-11-29 11:45:30 +01:00
|
|
|
|
|
|
|
|
switch (cmd) {
|
2019-11-29 11:48:31 +01:00
|
|
|
/* These need separate implementations for the data structure */
|
2019-11-29 11:45:30 +01:00
|
|
|
case HDIO_GETGEO:
|
2019-11-29 11:48:31 +01:00
|
|
|
return compat_hdio_getgeo(bdev, argp);
|
2019-11-29 11:45:30 +01:00
|
|
|
case BLKPG:
|
2019-11-29 11:48:31 +01:00
|
|
|
return compat_blkpg_ioctl(bdev, argp);
|
|
|
|
|
|
|
|
|
|
/* Compat mode returns 32-bit data instead of 'long' */
|
2019-11-29 11:45:30 +01:00
|
|
|
case BLKRAGET:
|
|
|
|
|
case BLKFRAGET:
|
2019-11-29 11:48:31 +01:00
|
|
|
if (!argp)
|
2019-11-29 11:45:30 +01:00
|
|
|
return -EINVAL;
|
2019-11-29 11:48:31 +01:00
|
|
|
return compat_put_long(argp,
|
2021-08-09 16:17:44 +02:00
|
|
|
(bdev->bd_disk->bdi->ra_pages * PAGE_SIZE) / 512);
|
2019-11-29 11:45:30 +01:00
|
|
|
case BLKGETSIZE:
|
2022-04-14 15:40:56 -07:00
|
|
|
if (bdev_nr_sectors(bdev) > ~(compat_ulong_t)0)
|
2019-11-29 11:45:30 +01:00
|
|
|
return -EFBIG;
|
2021-10-19 08:20:22 +02:00
|
|
|
return compat_put_ulong(argp, bdev_nr_sectors(bdev));
|
2019-11-29 11:45:30 +01:00
|
|
|
|
2019-11-29 11:48:31 +01:00
|
|
|
/* The data is compatible, but the command number is different */
|
|
|
|
|
case BLKBSZGET_32: /* get the logical block size (cf. BLKSSZGET) */
|
|
|
|
|
return put_int(argp, bdev_logical_block_size(bdev));
|
|
|
|
|
case BLKBSZSET_32:
|
2024-04-18 00:34:31 -04:00
|
|
|
return blkdev_bszset(file, mode, argp);
|
2019-11-29 11:45:30 +01:00
|
|
|
case BLKGETSIZE64_32:
|
2021-10-19 08:20:22 +02:00
|
|
|
return put_u64(argp, bdev_nr_bytes(bdev));
|
2019-11-29 11:45:30 +01:00
|
|
|
|
2019-11-29 11:48:31 +01:00
|
|
|
/* Incompatible alignment on i386 */
|
2019-11-29 11:45:30 +01:00
|
|
|
case BLKTRACESETUP32:
|
2019-11-29 11:48:31 +01:00
|
|
|
return blk_trace_ioctl(bdev, cmd, argp);
|
2019-11-29 11:45:30 +01:00
|
|
|
default:
|
2019-11-29 11:48:31 +01:00
|
|
|
break;
|
2019-11-29 11:45:30 +01:00
|
|
|
}
|
2019-11-29 11:48:31 +01:00
|
|
|
|
2023-02-17 10:21:59 +08:00
|
|
|
ret = blkdev_common_ioctl(bdev, mode, cmd, arg, argp);
|
2019-11-29 11:48:31 +01:00
|
|
|
if (ret == -ENOIOCTLCMD && disk->fops->compat_ioctl)
|
|
|
|
|
ret = disk->fops->compat_ioctl(bdev, mode, cmd, arg);
|
|
|
|
|
|
|
|
|
|
return ret;
|
2019-11-29 11:45:30 +01:00
|
|
|
}
|
|
|
|
|
#endif
|
2024-09-11 17:34:41 +01:00
|
|
|
|
|
|
|
|
struct blk_iou_cmd {
|
2026-05-04 08:34:32 -06:00
|
|
|
u64 start;
|
|
|
|
|
u64 len;
|
2024-09-11 17:34:41 +01:00
|
|
|
int res;
|
|
|
|
|
bool nowait;
|
|
|
|
|
};
|
|
|
|
|
|
2025-10-31 14:34:30 -06:00
|
|
|
static void blk_cmd_complete(struct io_tw_req tw_req, io_tw_token_t tw)
|
2024-09-11 17:34:41 +01:00
|
|
|
{
|
2025-10-31 14:34:30 -06:00
|
|
|
struct io_uring_cmd *cmd = io_uring_cmd_from_tw(tw_req);
|
2024-09-11 17:34:41 +01:00
|
|
|
struct blk_iou_cmd *bic = io_uring_cmd_to_pdu(cmd, struct blk_iou_cmd);
|
|
|
|
|
|
|
|
|
|
if (bic->res == -EAGAIN && bic->nowait)
|
|
|
|
|
io_uring_cmd_issue_blocking(cmd);
|
|
|
|
|
else
|
2025-10-31 14:34:30 -06:00
|
|
|
io_uring_cmd_done(cmd, bic->res,
|
|
|
|
|
IO_URING_CMD_TASK_WORK_ISSUE_FLAGS);
|
2024-09-11 17:34:41 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void bio_cmd_bio_end_io(struct bio *bio)
|
|
|
|
|
{
|
|
|
|
|
struct io_uring_cmd *cmd = bio->bi_private;
|
|
|
|
|
struct blk_iou_cmd *bic = io_uring_cmd_to_pdu(cmd, struct blk_iou_cmd);
|
|
|
|
|
|
|
|
|
|
if (unlikely(bio->bi_status) && !bic->res)
|
|
|
|
|
bic->res = blk_status_to_errno(bio->bi_status);
|
|
|
|
|
|
|
|
|
|
io_uring_cmd_do_in_task_lazy(cmd, blk_cmd_complete);
|
|
|
|
|
bio_put(bio);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static int blkdev_cmd_discard(struct io_uring_cmd *cmd,
|
|
|
|
|
struct block_device *bdev,
|
|
|
|
|
uint64_t start, uint64_t len, bool nowait)
|
|
|
|
|
{
|
|
|
|
|
struct blk_iou_cmd *bic = io_uring_cmd_to_pdu(cmd, struct blk_iou_cmd);
|
|
|
|
|
gfp_t gfp = nowait ? GFP_NOWAIT : GFP_KERNEL;
|
|
|
|
|
sector_t sector = start >> SECTOR_SHIFT;
|
|
|
|
|
sector_t nr_sects = len >> SECTOR_SHIFT;
|
|
|
|
|
struct bio *prev = NULL, *bio;
|
|
|
|
|
int err;
|
|
|
|
|
|
|
|
|
|
if (!bdev_max_discard_sectors(bdev))
|
|
|
|
|
return -EOPNOTSUPP;
|
|
|
|
|
if (!(file_to_blk_mode(cmd->file) & BLK_OPEN_WRITE))
|
|
|
|
|
return -EBADF;
|
|
|
|
|
if (bdev_read_only(bdev))
|
|
|
|
|
return -EPERM;
|
|
|
|
|
err = blk_validate_byte_range(bdev, start, len);
|
|
|
|
|
if (err)
|
|
|
|
|
return err;
|
|
|
|
|
|
|
|
|
|
err = filemap_invalidate_pages(bdev->bd_mapping, start,
|
|
|
|
|
start + len - 1, nowait);
|
|
|
|
|
if (err)
|
|
|
|
|
return err;
|
|
|
|
|
|
|
|
|
|
while (true) {
|
|
|
|
|
bio = blk_alloc_discard_bio(bdev, §or, &nr_sects, gfp);
|
|
|
|
|
if (!bio)
|
|
|
|
|
break;
|
|
|
|
|
if (nowait) {
|
|
|
|
|
/*
|
|
|
|
|
* Don't allow multi-bio non-blocking submissions as
|
|
|
|
|
* subsequent bios may fail but we won't get a direct
|
|
|
|
|
* indication of that. Normally, the caller should
|
|
|
|
|
* retry from a blocking context.
|
|
|
|
|
*/
|
|
|
|
|
if (unlikely(nr_sects)) {
|
|
|
|
|
bio_put(bio);
|
|
|
|
|
return -EAGAIN;
|
|
|
|
|
}
|
|
|
|
|
bio->bi_opf |= REQ_NOWAIT;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
prev = bio_chain_and_submit(prev, bio);
|
|
|
|
|
}
|
|
|
|
|
if (unlikely(!prev))
|
|
|
|
|
return -EAGAIN;
|
|
|
|
|
if (unlikely(nr_sects))
|
|
|
|
|
bic->res = -EAGAIN;
|
|
|
|
|
|
|
|
|
|
prev->bi_private = cmd;
|
|
|
|
|
prev->bi_end_io = bio_cmd_bio_end_io;
|
|
|
|
|
submit_bio(prev);
|
|
|
|
|
return -EIOCBQUEUED;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int blkdev_uring_cmd(struct io_uring_cmd *cmd, unsigned int issue_flags)
|
|
|
|
|
{
|
|
|
|
|
struct block_device *bdev = I_BDEV(cmd->file->f_mapping->host);
|
|
|
|
|
struct blk_iou_cmd *bic = io_uring_cmd_to_pdu(cmd, struct blk_iou_cmd);
|
|
|
|
|
u32 cmd_op = cmd->cmd_op;
|
|
|
|
|
|
2026-05-04 08:34:32 -06:00
|
|
|
/* Read what we need from the SQE on the first issue */
|
|
|
|
|
if (!(issue_flags & IORING_URING_CMD_REISSUE)) {
|
|
|
|
|
const struct io_uring_sqe *sqe = cmd->sqe;
|
|
|
|
|
|
|
|
|
|
if (unlikely(sqe->ioprio || sqe->__pad1 || sqe->len ||
|
|
|
|
|
sqe->rw_flags || sqe->file_index))
|
|
|
|
|
return -EINVAL;
|
|
|
|
|
|
|
|
|
|
bic->start = READ_ONCE(sqe->addr);
|
|
|
|
|
bic->len = READ_ONCE(sqe->addr3);
|
|
|
|
|
}
|
2024-09-11 17:34:41 +01:00
|
|
|
|
|
|
|
|
bic->res = 0;
|
|
|
|
|
bic->nowait = issue_flags & IO_URING_F_NONBLOCK;
|
|
|
|
|
|
|
|
|
|
switch (cmd_op) {
|
|
|
|
|
case BLOCK_URING_CMD_DISCARD:
|
2026-05-04 08:34:32 -06:00
|
|
|
return blkdev_cmd_discard(cmd, bdev, bic->start, bic->len,
|
|
|
|
|
bic->nowait);
|
2024-09-11 17:34:41 +01:00
|
|
|
}
|
|
|
|
|
return -EINVAL;
|
|
|
|
|
}
|