ioctl.c 10.2 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 44 45 46
			    sizeof(long long) > sizeof(long)) {
				long pstart = start, plength = length;
				if (pstart != start || plength != length
				    || pstart < 0 || plength < 0)
					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 IS_ERR(part) ? PTR_ERR(part) : 0;
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 153 154 155 156 157
			return 0;
		default:
			return -EINVAL;
	}
}

static int blkdev_reread_part(struct block_device *bdev)
{
	struct gendisk *disk = bdev->bd_disk;
	int res;

T
Tejun Heo 已提交
158
	if (!disk_part_scan_enabled(disk) || bdev != bdev->bd_contains)
L
Linus Torvalds 已提交
159 160 161
		return -EINVAL;
	if (!capable(CAP_SYS_ADMIN))
		return -EACCES;
162
	if (!mutex_trylock(&bdev->bd_mutex))
L
Linus Torvalds 已提交
163 164
		return -EBUSY;
	res = rescan_partitions(disk, bdev);
165
	mutex_unlock(&bdev->bd_mutex);
L
Linus Torvalds 已提交
166 167 168
	return res;
}

169
static int blk_ioctl_discard(struct block_device *bdev, uint64_t start,
A
Adrian Hunter 已提交
170
			     uint64_t len, int secure)
171
{
172
	unsigned long flags = 0;
A
Adrian Hunter 已提交
173

174 175 176 177 178 179 180
	if (start & 511)
		return -EINVAL;
	if (len & 511)
		return -EINVAL;
	start >>= 9;
	len >>= 9;

181
	if (start + len > (i_size_read(bdev->bd_inode) >> 9))
182
		return -EINVAL;
A
Adrian Hunter 已提交
183
	if (secure)
184
		flags |= BLKDEV_DISCARD_SECURE;
A
Adrian Hunter 已提交
185
	return blkdev_issue_discard(bdev, start, len, GFP_KERNEL, flags);
186 187
}

L
Linus Torvalds 已提交
188 189 190 191 192 193 194 195 196 197
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 已提交
198 199 200 201 202
static int put_uint(unsigned long arg, unsigned int val)
{
	return put_user(val, (unsigned int __user *)arg);
}

L
Linus Torvalds 已提交
203 204 205 206 207 208 209 210 211 212 213 214 215 216 217
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);
}

218 219 220 221
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 已提交
222 223 224

	if (disk->fops->ioctl)
		return disk->fops->ioctl(bdev, mode, cmd, arg);
225 226 227 228 229 230 231 232 233 234

	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);

235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254
/*
 * 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;
}

255
/*
256
 * always keep this in sync with compat_blkdev_ioctl()
257
 */
258
int blkdev_ioctl(struct block_device *bdev, fmode_t mode, unsigned cmd,
259 260 261
			unsigned long arg)
{
	struct gendisk *disk = bdev->bd_disk;
A
Al Viro 已提交
262 263
	struct backing_dev_info *bdi;
	loff_t size;
264 265 266
	int ret, n;

	switch(cmd) {
L
Linus Torvalds 已提交
267 268 269
	case BLKFLSBUF:
		if (!capable(CAP_SYS_ADMIN))
			return -EACCES;
270

A
Al Viro 已提交
271
		ret = __blkdev_driver_ioctl(bdev, mode, cmd, arg);
272
		if (!is_unrecognized_ioctl(ret))
273 274
			return ret;

L
Linus Torvalds 已提交
275
		fsync_bdev(bdev);
276
		invalidate_bdev(bdev);
L
Linus Torvalds 已提交
277
		return 0;
278

L
Linus Torvalds 已提交
279
	case BLKROSET:
A
Al Viro 已提交
280
		ret = __blkdev_driver_ioctl(bdev, mode, cmd, arg);
281
		if (!is_unrecognized_ioctl(ret))
282
			return ret;
L
Linus Torvalds 已提交
283 284 285 286 287 288
		if (!capable(CAP_SYS_ADMIN))
			return -EACCES;
		if (get_user(n, (int __user *)(arg)))
			return -EFAULT;
		set_device_ro(bdev, n);
		return 0;
289

A
Adrian Hunter 已提交
290 291
	case BLKDISCARD:
	case BLKSECDISCARD: {
292 293
		uint64_t range[2];

A
Al Viro 已提交
294
		if (!(mode & FMODE_WRITE))
295 296 297 298 299
			return -EBADF;

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

A
Adrian Hunter 已提交
300 301
		return blk_ioctl_discard(bdev, range[0], range[1],
					 cmd == BLKSECDISCARD);
302 303
	}

304 305 306 307 308 309 310 311 312 313 314 315
	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.
		 */
316
		memset(&geo, 0, sizeof(geo));
317 318 319 320 321 322 323 324 325
		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 已提交
326 327 328 329 330 331 332 333 334 335
	case BLKRAGET:
	case BLKFRAGET:
		if (!arg)
			return -EINVAL;
		bdi = blk_get_backing_dev_info(bdev);
		if (bdi == NULL)
			return -ENOTTY;
		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 已提交
336
	case BLKBSZGET: /* get block device soft block size (cf. BLKSSZGET) */
A
Al Viro 已提交
337
		return put_int(arg, block_size(bdev));
M
Martin K. Petersen 已提交
338
	case BLKSSZGET: /* get block device logical block size */
339
		return put_int(arg, bdev_logical_block_size(bdev));
M
Martin K. Petersen 已提交
340 341 342 343 344 345 346 347
	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));
348 349
	case BLKDISCARDZEROES:
		return put_uint(arg, bdev_discard_zeroes_data(bdev));
A
Al Viro 已提交
350
	case BLKSECTGET:
351
		return put_ushort(arg, queue_max_sectors(bdev_get_queue(bdev)));
352 353
	case BLKROTATIONAL:
		return put_ushort(arg, !blk_queue_nonrot(bdev_get_queue(bdev)));
A
Al Viro 已提交
354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370
	case BLKRASET:
	case BLKFRASET:
		if(!capable(CAP_SYS_ADMIN))
			return -EACCES;
		bdi = blk_get_backing_dev_info(bdev);
		if (bdi == NULL)
			return -ENOTTY;
		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;
371 372 373 374 375
		if (!(mode & FMODE_EXCL)) {
			bdgrab(bdev);
			if (blkdev_get(bdev, mode | FMODE_EXCL, &bdev) < 0)
				return -EBUSY;
		}
A
Al Viro 已提交
376
		ret = set_blocksize(bdev, n);
377
		if (!(mode & FMODE_EXCL))
378
			blkdev_put(bdev, mode | FMODE_EXCL);
379
		return ret;
A
Al Viro 已提交
380 381 382 383 384 385 386
	case BLKPG:
		ret = blkpg_ioctl(bdev, (struct blkpg_ioctl_arg __user *) arg);
		break;
	case BLKRRPART:
		ret = blkdev_reread_part(bdev);
		break;
	case BLKGETSIZE:
387
		size = i_size_read(bdev->bd_inode);
A
Al Viro 已提交
388 389 390 391
		if ((size >> 9) > ~0UL)
			return -EFBIG;
		return put_ulong(arg, size >> 9);
	case BLKGETSIZE64:
392
		return put_u64(arg, i_size_read(bdev->bd_inode));
A
Al Viro 已提交
393 394 395 396 397 398 399 400 401 402
	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 已提交
403
}
404
EXPORT_SYMBOL_GPL(blkdev_ioctl);