ioctl.c 8.1 KB
Newer Older
1
#include <linux/capability.h>
L
Linus Torvalds 已提交
2 3
#include <linux/blkdev.h>
#include <linux/blkpg.h>
4
#include <linux/hdreg.h>
L
Linus Torvalds 已提交
5 6 7
#include <linux/backing-dev.h>
#include <linux/buffer_head.h>
#include <linux/smp_lock.h>
8
#include <linux/blktrace_api.h>
L
Linus Torvalds 已提交
9 10 11 12 13 14
#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;
15
	struct hd_struct *part;
L
Linus Torvalds 已提交
16 17
	struct blkpg_ioctl_arg a;
	struct blkpg_partition p;
18
	struct disk_part_iter piter;
L
Linus Torvalds 已提交
19
	long long start, length;
20
	int partno;
L
Linus Torvalds 已提交
21 22 23 24 25 26 27 28 29 30

	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;
31
	partno = p.pno;
32
	if (partno <= 0)
L
Linus Torvalds 已提交
33 34 35 36 37 38 39 40 41 42 43 44 45
		return -EINVAL;
	switch (a.op) {
		case BLKPG_ADD_PARTITION:
			start = p.start >> 9;
			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;
			}
46

47
			mutex_lock(&bdev->bd_mutex);
48

L
Linus Torvalds 已提交
49
			/* overlap? */
50 51 52 53 54 55
			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);
56
					mutex_unlock(&bdev->bd_mutex);
L
Linus Torvalds 已提交
57 58 59
					return -EBUSY;
				}
			}
60 61
			disk_part_iter_exit(&piter);

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

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

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

87
			mutex_lock_nested(&bdev->bd_mutex, 1);
88
			delete_partition(disk, partno);
89 90
			mutex_unlock(&bdev->bd_mutex);
			mutex_unlock(&bdevp->bd_mutex);
L
Linus Torvalds 已提交
91 92 93 94 95 96 97 98 99 100 101 102 103
			bdput(bdevp);

			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 已提交
104
	if (!disk_partitionable(disk) || bdev != bdev->bd_contains)
L
Linus Torvalds 已提交
105 106 107
		return -EINVAL;
	if (!capable(CAP_SYS_ADMIN))
		return -EACCES;
108
	if (!mutex_trylock(&bdev->bd_mutex))
L
Linus Torvalds 已提交
109 110
		return -EBUSY;
	res = rescan_partitions(disk, bdev);
111
	mutex_unlock(&bdev->bd_mutex);
L
Linus Torvalds 已提交
112 113 114
	return res;
}

115 116 117 118 119 120 121 122 123 124 125 126
static int blk_ioctl_discard(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 > (bdev->bd_inode->i_size >> 9))
		return -EINVAL;
127 128
	return blkdev_issue_discard(bdev, start, len, GFP_KERNEL,
				    DISCARD_FL_WAIT);
129 130
}

L
Linus Torvalds 已提交
131 132 133 134 135 136 137 138 139 140
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);
}

141 142 143 144 145
static int put_uint(unsigned long arg, unsigned int val)
{
	return put_user(val, (unsigned int __user *)arg);
}

L
Linus Torvalds 已提交
146 147 148 149 150 151 152 153 154 155 156 157 158 159 160
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);
}

161 162 163 164 165
int __blkdev_driver_ioctl(struct block_device *bdev, fmode_t mode,
			unsigned cmd, unsigned long arg)
{
	struct gendisk *disk = bdev->bd_disk;
	int ret;
166 167 168

	if (disk->fops->ioctl)
		return disk->fops->ioctl(bdev, mode, cmd, arg);
169

170
	if (disk->fops->locked_ioctl) {
171
		lock_kernel();
172
		ret = disk->fops->locked_ioctl(bdev, mode, cmd, arg);
173 174 175 176 177 178 179 180 181 182 183 184 185
		unlock_kernel();
		return ret;
	}

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

186 187 188 189
/*
 * always keep this in sync with compat_blkdev_ioctl() and
 * compat_blkdev_locked_ioctl()
 */
190
int blkdev_ioctl(struct block_device *bdev, fmode_t mode, unsigned cmd,
191 192 193
			unsigned long arg)
{
	struct gendisk *disk = bdev->bd_disk;
194 195
	struct backing_dev_info *bdi;
	loff_t size;
196 197 198
	int ret, n;

	switch(cmd) {
L
Linus Torvalds 已提交
199 200 201
	case BLKFLSBUF:
		if (!capable(CAP_SYS_ADMIN))
			return -EACCES;
202

203
		ret = __blkdev_driver_ioctl(bdev, mode, cmd, arg);
204 205 206 207 208
		/* -EINVAL to handle old uncorrected drivers */
		if (ret != -EINVAL && ret != -ENOTTY)
			return ret;

		lock_kernel();
L
Linus Torvalds 已提交
209
		fsync_bdev(bdev);
210
		invalidate_bdev(bdev);
211
		unlock_kernel();
L
Linus Torvalds 已提交
212
		return 0;
213

L
Linus Torvalds 已提交
214
	case BLKROSET:
215
		ret = __blkdev_driver_ioctl(bdev, mode, cmd, arg);
216 217 218
		/* -EINVAL to handle old uncorrected drivers */
		if (ret != -EINVAL && ret != -ENOTTY)
			return ret;
L
Linus Torvalds 已提交
219 220 221 222
		if (!capable(CAP_SYS_ADMIN))
			return -EACCES;
		if (get_user(n, (int __user *)(arg)))
			return -EFAULT;
223
		lock_kernel();
L
Linus Torvalds 已提交
224
		set_device_ro(bdev, n);
225
		unlock_kernel();
L
Linus Torvalds 已提交
226
		return 0;
227 228 229 230

	case BLKDISCARD: {
		uint64_t range[2];

231
		if (!(mode & FMODE_WRITE))
232 233 234 235 236 237 238 239
			return -EBADF;

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

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

240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260
	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.
		 */
		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;
	}
261 262 263 264 265 266 267 268 269 270
	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);
271
	case BLKBSZGET: /* get block device soft block size (cf. BLKSSZGET) */
272
		return put_int(arg, block_size(bdev));
273
	case BLKSSZGET: /* get block device logical block size */
274
		return put_int(arg, bdev_logical_block_size(bdev));
275 276 277 278 279 280 281 282
	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));
283
	case BLKSECTGET:
284
		return put_ushort(arg, queue_max_sectors(bdev_get_queue(bdev)));
285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301
	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;
302
		if (!(mode & FMODE_EXCL) && bd_claim(bdev, &bdev) < 0)
303 304
			return -EBUSY;
		ret = set_blocksize(bdev, n);
305 306
		if (!(mode & FMODE_EXCL))
			bd_release(bdev);
307
		return ret;
308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336
	case BLKPG:
		lock_kernel();
		ret = blkpg_ioctl(bdev, (struct blkpg_ioctl_arg __user *) arg);
		unlock_kernel();
		break;
	case BLKRRPART:
		lock_kernel();
		ret = blkdev_reread_part(bdev);
		unlock_kernel();
		break;
	case BLKGETSIZE:
		size = bdev->bd_inode->i_size;
		if ((size >> 9) > ~0UL)
			return -EFBIG;
		return put_ulong(arg, size >> 9);
	case BLKGETSIZE64:
		return put_u64(arg, bdev->bd_inode->i_size);
	case BLKTRACESTART:
	case BLKTRACESTOP:
	case BLKTRACESETUP:
	case BLKTRACETEARDOWN:
		lock_kernel();
		ret = blk_trace_ioctl(bdev, cmd, (char __user *) arg);
		unlock_kernel();
		break;
	default:
		ret = __blkdev_driver_ioctl(bdev, mode, cmd, arg);
	}
	return ret;
L
Linus Torvalds 已提交
337
}
338
EXPORT_SYMBOL_GPL(blkdev_ioctl);
反馈
建议
客服 返回
顶部