ioctl.c 11.5 KB
Newer Older
1
#include <linux/capability.h>
L
Linus Torvalds 已提交
2
#include <linux/blkdev.h>
3
#include <linux/export.h>
4
#include <linux/gfp.h>
L
Linus Torvalds 已提交
5
#include <linux/blkpg.h>
6
#include <linux/hdreg.h>
L
Linus Torvalds 已提交
7
#include <linux/backing-dev.h>
A
Al Viro 已提交
8
#include <linux/fs.h>
9
#include <linux/blktrace_api.h>
L
Linus Torvalds 已提交
10 11 12 13 14 15
#include <asm/uaccess.h>

static int blkpg_ioctl(struct block_device *bdev, struct blkpg_ioctl_arg __user *arg)
{
	struct block_device *bdevp;
	struct gendisk *disk;
16
	struct hd_struct *part, *lpart;
L
Linus Torvalds 已提交
17 18
	struct blkpg_ioctl_arg a;
	struct blkpg_partition p;
19
	struct disk_part_iter piter;
L
Linus Torvalds 已提交
20
	long long start, length;
21
	int partno;
L
Linus Torvalds 已提交
22 23 24 25 26 27 28 29 30 31

	if (!capable(CAP_SYS_ADMIN))
		return -EACCES;
	if (copy_from_user(&a, arg, sizeof(struct blkpg_ioctl_arg)))
		return -EFAULT;
	if (copy_from_user(&p, a.data, sizeof(struct blkpg_partition)))
		return -EFAULT;
	disk = bdev->bd_disk;
	if (bdev != bdev->bd_contains)
		return -EINVAL;
32
	partno = p.pno;
T
Tejun Heo 已提交
33
	if (partno <= 0)
L
Linus Torvalds 已提交
34 35 36 37 38
		return -EINVAL;
	switch (a.op) {
		case BLKPG_ADD_PARTITION:
			start = p.start >> 9;
			length = p.length >> 9;
39 40
			/* check for fit in a hd_struct */
			if (sizeof(sector_t) == sizeof(long) &&
L
Linus Torvalds 已提交
41 42 43
			    sizeof(long long) > sizeof(long)) {
				long pstart = start, plength = length;
				if (pstart != start || plength != length
44
				    || pstart < 0 || plength < 0 || partno > 65535)
L
Linus Torvalds 已提交
45 46
					return -EINVAL;
			}
47

48
			mutex_lock(&bdev->bd_mutex);
49

L
Linus Torvalds 已提交
50
			/* overlap? */
51 52 53 54 55 56
			disk_part_iter_init(&piter, disk,
					    DISK_PITER_INCL_EMPTY);
			while ((part = disk_part_iter_next(&piter))) {
				if (!(start + length <= part->start_sect ||
				      start >= part->start_sect + part->nr_sects)) {
					disk_part_iter_exit(&piter);
57
					mutex_unlock(&bdev->bd_mutex);
L
Linus Torvalds 已提交
58 59 60
					return -EBUSY;
				}
			}
61 62
			disk_part_iter_exit(&piter);

L
Linus Torvalds 已提交
63
			/* all seems OK */
64
			part = add_partition(disk, partno, start, length,
65
					     ADDPART_FLAG_NONE, NULL);
66
			mutex_unlock(&bdev->bd_mutex);
67
			return PTR_ERR_OR_ZERO(part);
L
Linus Torvalds 已提交
68
		case BLKPG_DEL_PARTITION:
69 70
			part = disk_get_part(disk, partno);
			if (!part)
L
Linus Torvalds 已提交
71
				return -ENXIO;
72 73 74

			bdevp = bdget(part_devt(part));
			disk_put_part(part);
L
Linus Torvalds 已提交
75 76
			if (!bdevp)
				return -ENOMEM;
77

78
			mutex_lock(&bdevp->bd_mutex);
L
Linus Torvalds 已提交
79
			if (bdevp->bd_openers) {
80
				mutex_unlock(&bdevp->bd_mutex);
L
Linus Torvalds 已提交
81 82 83 84 85
				bdput(bdevp);
				return -EBUSY;
			}
			/* all seems OK */
			fsync_bdev(bdevp);
86
			invalidate_bdev(bdevp);
L
Linus Torvalds 已提交
87

88
			mutex_lock_nested(&bdev->bd_mutex, 1);
89
			delete_partition(disk, partno);
90 91
			mutex_unlock(&bdev->bd_mutex);
			mutex_unlock(&bdevp->bd_mutex);
L
Linus Torvalds 已提交
92 93
			bdput(bdevp);

94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146
			return 0;
		case BLKPG_RESIZE_PARTITION:
			start = p.start >> 9;
			/* new length of partition in bytes */
			length = p.length >> 9;
			/* check for fit in a hd_struct */
			if (sizeof(sector_t) == sizeof(long) &&
			    sizeof(long long) > sizeof(long)) {
				long pstart = start, plength = length;
				if (pstart != start || plength != length
				    || pstart < 0 || plength < 0)
					return -EINVAL;
			}
			part = disk_get_part(disk, partno);
			if (!part)
				return -ENXIO;
			bdevp = bdget(part_devt(part));
			if (!bdevp) {
				disk_put_part(part);
				return -ENOMEM;
			}
			mutex_lock(&bdevp->bd_mutex);
			mutex_lock_nested(&bdev->bd_mutex, 1);
			if (start != part->start_sect) {
				mutex_unlock(&bdevp->bd_mutex);
				mutex_unlock(&bdev->bd_mutex);
				bdput(bdevp);
				disk_put_part(part);
				return -EINVAL;
			}
			/* overlap? */
			disk_part_iter_init(&piter, disk,
					    DISK_PITER_INCL_EMPTY);
			while ((lpart = disk_part_iter_next(&piter))) {
				if (lpart->partno != partno &&
				   !(start + length <= lpart->start_sect ||
				   start >= lpart->start_sect + lpart->nr_sects)
				   ) {
					disk_part_iter_exit(&piter);
					mutex_unlock(&bdevp->bd_mutex);
					mutex_unlock(&bdev->bd_mutex);
					bdput(bdevp);
					disk_put_part(part);
					return -EBUSY;
				}
			}
			disk_part_iter_exit(&piter);
			part_nr_sects_write(part, (sector_t)length);
			i_size_write(bdevp->bd_inode, p.length);
			mutex_unlock(&bdevp->bd_mutex);
			mutex_unlock(&bdev->bd_mutex);
			bdput(bdevp);
			disk_put_part(part);
L
Linus Torvalds 已提交
147 148 149 150 151 152
			return 0;
		default:
			return -EINVAL;
	}
}

153 154 155 156 157 158
/*
 * This is an exported API for the block driver, and will not
 * acquire bd_mutex. This API should be used in case that
 * caller has held bd_mutex already.
 */
int __blkdev_reread_part(struct block_device *bdev)
L
Linus Torvalds 已提交
159 160 161
{
	struct gendisk *disk = bdev->bd_disk;

T
Tejun Heo 已提交
162
	if (!disk_part_scan_enabled(disk) || bdev != bdev->bd_contains)
L
Linus Torvalds 已提交
163 164 165
		return -EINVAL;
	if (!capable(CAP_SYS_ADMIN))
		return -EACCES;
166 167 168 169 170 171 172 173 174 175 176

	lockdep_assert_held(&bdev->bd_mutex);

	return rescan_partitions(disk, bdev);
}
EXPORT_SYMBOL(__blkdev_reread_part);

/*
 * This is an exported API for the block driver, and will
 * try to acquire bd_mutex. If bd_mutex has been held already
 * in current context, please call __blkdev_reread_part().
177 178 179 180 181 182
 *
 * Make sure the held locks in current context aren't required
 * in open()/close() handler and I/O path for avoiding ABBA deadlock:
 * - bd_mutex is held before calling block driver's open/close
 *   handler
 * - reading partition table may submit I/O to the block device
183 184 185 186 187
 */
int blkdev_reread_part(struct block_device *bdev)
{
	int res;

188
	mutex_lock(&bdev->bd_mutex);
189
	res = __blkdev_reread_part(bdev);
190
	mutex_unlock(&bdev->bd_mutex);
191

L
Linus Torvalds 已提交
192 193
	return res;
}
194
EXPORT_SYMBOL(blkdev_reread_part);
L
Linus Torvalds 已提交
195

196
static int blk_ioctl_discard(struct block_device *bdev, uint64_t start,
A
Adrian Hunter 已提交
197
			     uint64_t len, int secure)
198
{
199
	unsigned long flags = 0;
A
Adrian Hunter 已提交
200

201 202 203 204 205 206 207
	if (start & 511)
		return -EINVAL;
	if (len & 511)
		return -EINVAL;
	start >>= 9;
	len >>= 9;

208
	if (start + len > (i_size_read(bdev->bd_inode) >> 9))
209
		return -EINVAL;
A
Adrian Hunter 已提交
210
	if (secure)
211
		flags |= BLKDEV_DISCARD_SECURE;
A
Adrian Hunter 已提交
212
	return blkdev_issue_discard(bdev, start, len, GFP_KERNEL, flags);
213 214
}

215 216 217 218 219 220 221 222 223 224 225 226 227
static int blk_ioctl_zeroout(struct block_device *bdev, uint64_t start,
			     uint64_t len)
{
	if (start & 511)
		return -EINVAL;
	if (len & 511)
		return -EINVAL;
	start >>= 9;
	len >>= 9;

	if (start + len > (i_size_read(bdev->bd_inode) >> 9))
		return -EINVAL;

228
	return blkdev_issue_zeroout(bdev, start, len, GFP_KERNEL, false);
229 230
}

L
Linus Torvalds 已提交
231 232 233 234 235 236 237 238 239 240
static int put_ushort(unsigned long arg, unsigned short val)
{
	return put_user(val, (unsigned short __user *)arg);
}

static int put_int(unsigned long arg, int val)
{
	return put_user(val, (int __user *)arg);
}

M
Martin K. Petersen 已提交
241 242 243 244 245
static int put_uint(unsigned long arg, unsigned int val)
{
	return put_user(val, (unsigned int __user *)arg);
}

L
Linus Torvalds 已提交
246 247 248 249 250 251 252 253 254 255 256 257 258 259 260
static int put_long(unsigned long arg, long val)
{
	return put_user(val, (long __user *)arg);
}

static int put_ulong(unsigned long arg, unsigned long val)
{
	return put_user(val, (unsigned long __user *)arg);
}

static int put_u64(unsigned long arg, u64 val)
{
	return put_user(val, (u64 __user *)arg);
}

261 262 263 264
int __blkdev_driver_ioctl(struct block_device *bdev, fmode_t mode,
			unsigned cmd, unsigned long arg)
{
	struct gendisk *disk = bdev->bd_disk;
A
Al Viro 已提交
265 266 267

	if (disk->fops->ioctl)
		return disk->fops->ioctl(bdev, mode, cmd, arg);
268 269 270 271 272 273 274 275 276 277

	return -ENOTTY;
}
/*
 * For the record: _GPL here is only because somebody decided to slap it
 * on the previous export.  Sheer idiocy, since it wasn't copyrightable
 * at all and could be open-coded without any exports by anybody who cares.
 */
EXPORT_SYMBOL_GPL(__blkdev_driver_ioctl);

278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297
/*
 * Is it an unrecognized ioctl? The correct returns are either
 * ENOTTY (final) or ENOIOCTLCMD ("I don't know this one, try a
 * fallback"). ENOIOCTLCMD gets turned into ENOTTY by the ioctl
 * code before returning.
 *
 * Confused drivers sometimes return EINVAL, which is wrong. It
 * means "I understood the ioctl command, but the parameters to
 * it were wrong".
 *
 * We should aim to just fix the broken drivers, the EINVAL case
 * should go away.
 */
static inline int is_unrecognized_ioctl(int ret)
{
	return	ret == -EINVAL ||
		ret == -ENOTTY ||
		ret == -ENOIOCTLCMD;
}

298
/*
299
 * always keep this in sync with compat_blkdev_ioctl()
300
 */
301
int blkdev_ioctl(struct block_device *bdev, fmode_t mode, unsigned cmd,
302 303 304
			unsigned long arg)
{
	struct gendisk *disk = bdev->bd_disk;
A
Al Viro 已提交
305 306
	struct backing_dev_info *bdi;
	loff_t size;
307
	int ret, n;
308
	unsigned int max_sectors;
309 310

	switch(cmd) {
L
Linus Torvalds 已提交
311 312 313
	case BLKFLSBUF:
		if (!capable(CAP_SYS_ADMIN))
			return -EACCES;
314

A
Al Viro 已提交
315
		ret = __blkdev_driver_ioctl(bdev, mode, cmd, arg);
316
		if (!is_unrecognized_ioctl(ret))
317 318
			return ret;

L
Linus Torvalds 已提交
319
		fsync_bdev(bdev);
320
		invalidate_bdev(bdev);
L
Linus Torvalds 已提交
321
		return 0;
322

L
Linus Torvalds 已提交
323
	case BLKROSET:
A
Al Viro 已提交
324
		ret = __blkdev_driver_ioctl(bdev, mode, cmd, arg);
325
		if (!is_unrecognized_ioctl(ret))
326
			return ret;
L
Linus Torvalds 已提交
327 328 329 330 331 332
		if (!capable(CAP_SYS_ADMIN))
			return -EACCES;
		if (get_user(n, (int __user *)(arg)))
			return -EFAULT;
		set_device_ro(bdev, n);
		return 0;
333

A
Adrian Hunter 已提交
334 335
	case BLKDISCARD:
	case BLKSECDISCARD: {
336 337
		uint64_t range[2];

A
Al Viro 已提交
338
		if (!(mode & FMODE_WRITE))
339 340 341 342 343
			return -EBADF;

		if (copy_from_user(range, (void __user *)arg, sizeof(range)))
			return -EFAULT;

A
Adrian Hunter 已提交
344 345
		return blk_ioctl_discard(bdev, range[0], range[1],
					 cmd == BLKSECDISCARD);
346
	}
347 348 349 350 351 352 353 354 355 356 357
	case BLKZEROOUT: {
		uint64_t range[2];

		if (!(mode & FMODE_WRITE))
			return -EBADF;

		if (copy_from_user(range, (void __user *)arg, sizeof(range)))
			return -EFAULT;

		return blk_ioctl_zeroout(bdev, range[0], range[1]);
	}
358

359 360 361 362 363 364 365 366 367 368 369 370
	case HDIO_GETGEO: {
		struct hd_geometry geo;

		if (!arg)
			return -EINVAL;
		if (!disk->fops->getgeo)
			return -ENOTTY;

		/*
		 * We need to set the startsect first, the driver may
		 * want to override it.
		 */
371
		memset(&geo, 0, sizeof(geo));
372 373 374 375 376 377 378 379 380
		geo.start = get_start_sect(bdev);
		ret = disk->fops->getgeo(bdev, &geo);
		if (ret)
			return ret;
		if (copy_to_user((struct hd_geometry __user *)arg, &geo,
					sizeof(geo)))
			return -EFAULT;
		return 0;
	}
A
Al Viro 已提交
381 382 383 384 385 386 387 388
	case BLKRAGET:
	case BLKFRAGET:
		if (!arg)
			return -EINVAL;
		bdi = blk_get_backing_dev_info(bdev);
		return put_long(arg, (bdi->ra_pages * PAGE_CACHE_SIZE) / 512);
	case BLKROGET:
		return put_int(arg, bdev_read_only(bdev) != 0);
M
Martin K. Petersen 已提交
389
	case BLKBSZGET: /* get block device soft block size (cf. BLKSSZGET) */
A
Al Viro 已提交
390
		return put_int(arg, block_size(bdev));
M
Martin K. Petersen 已提交
391
	case BLKSSZGET: /* get block device logical block size */
392
		return put_int(arg, bdev_logical_block_size(bdev));
M
Martin K. Petersen 已提交
393 394 395 396 397 398 399 400
	case BLKPBSZGET: /* get block device physical block size */
		return put_uint(arg, bdev_physical_block_size(bdev));
	case BLKIOMIN:
		return put_uint(arg, bdev_io_min(bdev));
	case BLKIOOPT:
		return put_uint(arg, bdev_io_opt(bdev));
	case BLKALIGNOFF:
		return put_int(arg, bdev_alignment_offset(bdev));
401 402
	case BLKDISCARDZEROES:
		return put_uint(arg, bdev_discard_zeroes_data(bdev));
A
Al Viro 已提交
403
	case BLKSECTGET:
404 405 406
		max_sectors = min_t(unsigned int, USHRT_MAX,
				    queue_max_sectors(bdev_get_queue(bdev)));
		return put_ushort(arg, max_sectors);
407 408
	case BLKROTATIONAL:
		return put_ushort(arg, !blk_queue_nonrot(bdev_get_queue(bdev)));
A
Al Viro 已提交
409 410 411 412 413 414 415 416 417 418 419 420 421 422 423
	case BLKRASET:
	case BLKFRASET:
		if(!capable(CAP_SYS_ADMIN))
			return -EACCES;
		bdi = blk_get_backing_dev_info(bdev);
		bdi->ra_pages = (arg * 512) / PAGE_CACHE_SIZE;
		return 0;
	case BLKBSZSET:
		/* set the logical block size */
		if (!capable(CAP_SYS_ADMIN))
			return -EACCES;
		if (!arg)
			return -EINVAL;
		if (get_user(n, (int __user *) arg))
			return -EFAULT;
424 425 426 427 428
		if (!(mode & FMODE_EXCL)) {
			bdgrab(bdev);
			if (blkdev_get(bdev, mode | FMODE_EXCL, &bdev) < 0)
				return -EBUSY;
		}
A
Al Viro 已提交
429
		ret = set_blocksize(bdev, n);
430
		if (!(mode & FMODE_EXCL))
431
			blkdev_put(bdev, mode | FMODE_EXCL);
432
		return ret;
A
Al Viro 已提交
433 434 435 436 437 438 439
	case BLKPG:
		ret = blkpg_ioctl(bdev, (struct blkpg_ioctl_arg __user *) arg);
		break;
	case BLKRRPART:
		ret = blkdev_reread_part(bdev);
		break;
	case BLKGETSIZE:
440
		size = i_size_read(bdev->bd_inode);
A
Al Viro 已提交
441 442 443 444
		if ((size >> 9) > ~0UL)
			return -EFBIG;
		return put_ulong(arg, size >> 9);
	case BLKGETSIZE64:
445
		return put_u64(arg, i_size_read(bdev->bd_inode));
A
Al Viro 已提交
446 447 448 449 450 451 452 453 454 455
	case BLKTRACESTART:
	case BLKTRACESTOP:
	case BLKTRACESETUP:
	case BLKTRACETEARDOWN:
		ret = blk_trace_ioctl(bdev, cmd, (char __user *) arg);
		break;
	default:
		ret = __blkdev_driver_ioctl(bdev, mode, cmd, arg);
	}
	return ret;
L
Linus Torvalds 已提交
456
}
457
EXPORT_SYMBOL_GPL(blkdev_ioctl);