ioctl.c 16.3 KB
Newer Older
K
Koji Sato 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
/*
 * ioctl.c - NILFS ioctl operations.
 *
 * Copyright (C) 2007, 2008 Nippon Telegraph and Telephone Corporation.
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 *
 * Written by Koji Sato <koji@osrg.net>.
 */

#include <linux/fs.h>
#include <linux/wait.h>
#include <linux/smp_lock.h>	/* lock_kernel(), unlock_kernel() */
#include <linux/capability.h>	/* capable() */
#include <linux/uaccess.h>	/* copy_from_user(), copy_to_user() */
28
#include <linux/vmalloc.h>
K
Koji Sato 已提交
29 30 31 32 33 34 35 36 37 38 39 40
#include <linux/nilfs2_fs.h>
#include "nilfs.h"
#include "segment.h"
#include "bmap.h"
#include "cpfile.h"
#include "sufile.h"
#include "dat.h"


static int nilfs_ioctl_wrap_copy(struct the_nilfs *nilfs,
				 struct nilfs_argv *argv, int dir,
				 ssize_t (*dofunc)(struct the_nilfs *,
41
						   __u64 *, int,
K
Koji Sato 已提交
42 43 44
						   void *, size_t, size_t))
{
	void *buf;
45
	void __user *base = (void __user *)(unsigned long)argv->v_base;
46
	size_t maxmembs, total, n;
K
Koji Sato 已提交
47 48
	ssize_t nr;
	int ret, i;
49
	__u64 pos, ppos;
K
Koji Sato 已提交
50 51 52 53

	if (argv->v_nmembs == 0)
		return 0;

54 55 56 57 58
	if (argv->v_size > PAGE_SIZE)
		return -EINVAL;

	buf = (void *)__get_free_pages(GFP_NOFS, 0);
	if (unlikely(!buf))
K
Koji Sato 已提交
59
		return -ENOMEM;
60
	maxmembs = PAGE_SIZE / argv->v_size;
K
Koji Sato 已提交
61 62 63

	ret = 0;
	total = 0;
64
	pos = argv->v_index;
K
Koji Sato 已提交
65 66 67 68
	for (i = 0; i < argv->v_nmembs; i += n) {
		n = (argv->v_nmembs - i < maxmembs) ?
			argv->v_nmembs - i : maxmembs;
		if ((dir & _IOC_WRITE) &&
69 70
		    copy_from_user(buf, base + argv->v_size * i,
				   argv->v_size * n)) {
K
Koji Sato 已提交
71 72 73
			ret = -EFAULT;
			break;
		}
74
		ppos = pos;
75
		nr = dofunc(nilfs, &pos, argv->v_flags, buf, argv->v_size,
76
			       n);
K
Koji Sato 已提交
77 78 79 80 81
		if (nr < 0) {
			ret = nr;
			break;
		}
		if ((dir & _IOC_READ) &&
82 83
		    copy_to_user(base + argv->v_size * i, buf,
				 argv->v_size * nr)) {
K
Koji Sato 已提交
84 85 86 87
			ret = -EFAULT;
			break;
		}
		total += nr;
88 89 90 91
		if ((size_t)nr < n)
			break;
		if (pos == ppos)
			pos += n;
K
Koji Sato 已提交
92 93 94
	}
	argv->v_nmembs = total;

95
	free_pages((unsigned long)buf, 0);
K
Koji Sato 已提交
96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114
	return ret;
}

static int nilfs_ioctl_change_cpmode(struct inode *inode, struct file *filp,
				     unsigned int cmd, void __user *argp)
{
	struct inode *cpfile = NILFS_SB(inode->i_sb)->s_nilfs->ns_cpfile;
	struct nilfs_transaction_info ti;
	struct nilfs_cpmode cpmode;
	int ret;

	if (!capable(CAP_SYS_ADMIN))
		return -EPERM;
	if (copy_from_user(&cpmode, argp, sizeof(cpmode)))
		return -EFAULT;

	nilfs_transaction_begin(inode->i_sb, &ti, 0);
	ret = nilfs_cpfile_change_cpmode(
		cpfile, cpmode.cm_cno, cpmode.cm_mode);
115 116 117 118 119
	if (unlikely(ret < 0)) {
		nilfs_transaction_abort(inode->i_sb);
		return ret;
	}
	nilfs_transaction_commit(inode->i_sb); /* never fails */
K
Koji Sato 已提交
120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138
	return ret;
}

static int
nilfs_ioctl_delete_checkpoint(struct inode *inode, struct file *filp,
			      unsigned int cmd, void __user *argp)
{
	struct inode *cpfile = NILFS_SB(inode->i_sb)->s_nilfs->ns_cpfile;
	struct nilfs_transaction_info ti;
	__u64 cno;
	int ret;

	if (!capable(CAP_SYS_ADMIN))
		return -EPERM;
	if (copy_from_user(&cno, argp, sizeof(cno)))
		return -EFAULT;

	nilfs_transaction_begin(inode->i_sb, &ti, 0);
	ret = nilfs_cpfile_delete_checkpoint(cpfile, cno);
139 140 141 142 143
	if (unlikely(ret < 0)) {
		nilfs_transaction_abort(inode->i_sb);
		return ret;
	}
	nilfs_transaction_commit(inode->i_sb); /* never fails */
K
Koji Sato 已提交
144 145 146 147
	return ret;
}

static ssize_t
148
nilfs_ioctl_do_get_cpinfo(struct the_nilfs *nilfs, __u64 *posp, int flags,
K
Koji Sato 已提交
149 150 151 152
			  void *buf, size_t size, size_t nmembs)
{
	int ret;

153
	down_read(&nilfs->ns_segctor_sem);
154
	ret = nilfs_cpfile_get_cpinfo(nilfs->ns_cpfile, posp, flags, buf,
155
				      size, nmembs);
156
	up_read(&nilfs->ns_segctor_sem);
K
Koji Sato 已提交
157 158 159 160 161 162
	return ret;
}

static int nilfs_ioctl_get_cpstat(struct inode *inode, struct file *filp,
				  unsigned int cmd, void __user *argp)
{
163
	struct the_nilfs *nilfs = NILFS_SB(inode->i_sb)->s_nilfs;
K
Koji Sato 已提交
164 165 166
	struct nilfs_cpstat cpstat;
	int ret;

167 168 169
	down_read(&nilfs->ns_segctor_sem);
	ret = nilfs_cpfile_get_stat(nilfs->ns_cpfile, &cpstat);
	up_read(&nilfs->ns_segctor_sem);
K
Koji Sato 已提交
170 171 172 173 174 175 176 177 178
	if (ret < 0)
		return ret;

	if (copy_to_user(argp, &cpstat, sizeof(cpstat)))
		ret = -EFAULT;
	return ret;
}

static ssize_t
179
nilfs_ioctl_do_get_suinfo(struct the_nilfs *nilfs, __u64 *posp, int flags,
K
Koji Sato 已提交
180 181 182 183
			  void *buf, size_t size, size_t nmembs)
{
	int ret;

184
	down_read(&nilfs->ns_segctor_sem);
185 186
	ret = nilfs_sufile_get_suinfo(nilfs->ns_sufile, *posp, buf, size,
				      nmembs);
187
	up_read(&nilfs->ns_segctor_sem);
K
Koji Sato 已提交
188 189 190 191 192 193
	return ret;
}

static int nilfs_ioctl_get_sustat(struct inode *inode, struct file *filp,
				  unsigned int cmd, void __user *argp)
{
194
	struct the_nilfs *nilfs = NILFS_SB(inode->i_sb)->s_nilfs;
K
Koji Sato 已提交
195 196 197
	struct nilfs_sustat sustat;
	int ret;

198 199 200
	down_read(&nilfs->ns_segctor_sem);
	ret = nilfs_sufile_get_stat(nilfs->ns_sufile, &sustat);
	up_read(&nilfs->ns_segctor_sem);
K
Koji Sato 已提交
201 202 203 204 205 206 207 208 209
	if (ret < 0)
		return ret;

	if (copy_to_user(argp, &sustat, sizeof(sustat)))
		ret = -EFAULT;
	return ret;
}

static ssize_t
210
nilfs_ioctl_do_get_vinfo(struct the_nilfs *nilfs, __u64 *posp, int flags,
K
Koji Sato 已提交
211 212 213 214
			 void *buf, size_t size, size_t nmembs)
{
	int ret;

215
	down_read(&nilfs->ns_segctor_sem);
216
	ret = nilfs_dat_get_vinfo(nilfs_dat_inode(nilfs), buf, size, nmembs);
217
	up_read(&nilfs->ns_segctor_sem);
K
Koji Sato 已提交
218 219 220 221
	return ret;
}

static ssize_t
222
nilfs_ioctl_do_get_bdescs(struct the_nilfs *nilfs, __u64 *posp, int flags,
K
Koji Sato 已提交
223 224 225 226 227 228 229
			  void *buf, size_t size, size_t nmembs)
{
	struct inode *dat = nilfs_dat_inode(nilfs);
	struct nilfs_bmap *bmap = NILFS_I(dat)->i_bmap;
	struct nilfs_bdesc *bdescs = buf;
	int ret, i;

230
	down_read(&nilfs->ns_segctor_sem);
K
Koji Sato 已提交
231 232 233 234 235 236
	for (i = 0; i < nmembs; i++) {
		ret = nilfs_bmap_lookup_at_level(bmap,
						 bdescs[i].bd_offset,
						 bdescs[i].bd_level + 1,
						 &bdescs[i].bd_blocknr);
		if (ret < 0) {
237 238
			if (ret != -ENOENT) {
				up_read(&nilfs->ns_segctor_sem);
K
Koji Sato 已提交
239
				return ret;
240
			}
K
Koji Sato 已提交
241 242 243
			bdescs[i].bd_blocknr = 0;
		}
	}
244
	up_read(&nilfs->ns_segctor_sem);
K
Koji Sato 已提交
245 246 247 248 249 250 251 252 253 254 255 256 257
	return nmembs;
}

static int nilfs_ioctl_get_bdescs(struct inode *inode, struct file *filp,
				  unsigned int cmd, void __user *argp)
{
	struct the_nilfs *nilfs = NILFS_SB(inode->i_sb)->s_nilfs;
	struct nilfs_argv argv;
	int ret;

	if (copy_from_user(&argv, argp, sizeof(argv)))
		return -EFAULT;

258 259 260
	if (argv.v_size != sizeof(struct nilfs_bdesc))
		return -EINVAL;

K
Koji Sato 已提交
261 262
	ret = nilfs_ioctl_wrap_copy(nilfs, &argv, _IOC_DIR(cmd),
				    nilfs_ioctl_do_get_bdescs);
263 264
	if (ret < 0)
		return ret;
K
Koji Sato 已提交
265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299

	if (copy_to_user(argp, &argv, sizeof(argv)))
		ret = -EFAULT;
	return ret;
}

static int nilfs_ioctl_move_inode_block(struct inode *inode,
					struct nilfs_vdesc *vdesc,
					struct list_head *buffers)
{
	struct buffer_head *bh;
	int ret;

	if (vdesc->vd_flags == 0)
		ret = nilfs_gccache_submit_read_data(
			inode, vdesc->vd_offset, vdesc->vd_blocknr,
			vdesc->vd_vblocknr, &bh);
	else
		ret = nilfs_gccache_submit_read_node(
			inode, vdesc->vd_blocknr, vdesc->vd_vblocknr, &bh);

	if (unlikely(ret < 0)) {
		if (ret == -ENOENT)
			printk(KERN_CRIT
			       "%s: invalid virtual block address (%s): "
			       "ino=%llu, cno=%llu, offset=%llu, "
			       "blocknr=%llu, vblocknr=%llu\n",
			       __func__, vdesc->vd_flags ? "node" : "data",
			       (unsigned long long)vdesc->vd_ino,
			       (unsigned long long)vdesc->vd_cno,
			       (unsigned long long)vdesc->vd_offset,
			       (unsigned long long)vdesc->vd_blocknr,
			       (unsigned long long)vdesc->vd_vblocknr);
		return ret;
	}
300 301 302 303 304 305 306 307 308 309 310 311
	if (unlikely(!list_empty(&bh->b_assoc_buffers))) {
		printk(KERN_CRIT "%s: conflicting %s buffer: ino=%llu, "
		       "cno=%llu, offset=%llu, blocknr=%llu, vblocknr=%llu\n",
		       __func__, vdesc->vd_flags ? "node" : "data",
		       (unsigned long long)vdesc->vd_ino,
		       (unsigned long long)vdesc->vd_cno,
		       (unsigned long long)vdesc->vd_offset,
		       (unsigned long long)vdesc->vd_blocknr,
		       (unsigned long long)vdesc->vd_vblocknr);
		brelse(bh);
		return -EEXIST;
	}
K
Koji Sato 已提交
312 313 314 315
	list_add_tail(&bh->b_assoc_buffers, buffers);
	return 0;
}

316 317
static int nilfs_ioctl_move_blocks(struct the_nilfs *nilfs,
				   struct nilfs_argv *argv, void *buf)
K
Koji Sato 已提交
318
{
319
	size_t nmembs = argv->v_nmembs;
K
Koji Sato 已提交
320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348
	struct inode *inode;
	struct nilfs_vdesc *vdesc;
	struct buffer_head *bh, *n;
	LIST_HEAD(buffers);
	ino_t ino;
	__u64 cno;
	int i, ret;

	for (i = 0, vdesc = buf; i < nmembs; ) {
		ino = vdesc->vd_ino;
		cno = vdesc->vd_cno;
		inode = nilfs_gc_iget(nilfs, ino, cno);
		if (unlikely(inode == NULL)) {
			ret = -ENOMEM;
			goto failed;
		}
		do {
			ret = nilfs_ioctl_move_inode_block(inode, vdesc,
							   &buffers);
			if (unlikely(ret < 0))
				goto failed;
			vdesc++;
		} while (++i < nmembs &&
			 vdesc->vd_ino == ino && vdesc->vd_cno == cno);
	}

	list_for_each_entry_safe(bh, n, &buffers, b_assoc_buffers) {
		ret = nilfs_gccache_wait_and_mark_dirty(bh);
		if (unlikely(ret < 0)) {
349
			WARN_ON(ret == -EEXIST);
K
Koji Sato 已提交
350 351 352 353 354 355 356 357 358 359 360 361 362 363 364
			goto failed;
		}
		list_del_init(&bh->b_assoc_buffers);
		brelse(bh);
	}
	return nmembs;

 failed:
	list_for_each_entry_safe(bh, n, &buffers, b_assoc_buffers) {
		list_del_init(&bh->b_assoc_buffers);
		brelse(bh);
	}
	return ret;
}

365 366
static int nilfs_ioctl_delete_checkpoints(struct the_nilfs *nilfs,
					  struct nilfs_argv *argv, void *buf)
K
Koji Sato 已提交
367
{
368
	size_t nmembs = argv->v_nmembs;
K
Koji Sato 已提交
369 370 371 372 373 374 375 376 377 378 379 380 381
	struct inode *cpfile = nilfs->ns_cpfile;
	struct nilfs_period *periods = buf;
	int ret, i;

	for (i = 0; i < nmembs; i++) {
		ret = nilfs_cpfile_delete_checkpoints(
			cpfile, periods[i].p_start, periods[i].p_end);
		if (ret < 0)
			return ret;
	}
	return nmembs;
}

382 383
static int nilfs_ioctl_free_vblocknrs(struct the_nilfs *nilfs,
				      struct nilfs_argv *argv, void *buf)
K
Koji Sato 已提交
384
{
385 386
	size_t nmembs = argv->v_nmembs;
	int ret;
K
Koji Sato 已提交
387

388
	ret = nilfs_dat_freev(nilfs_dat_inode(nilfs), buf, nmembs);
K
Koji Sato 已提交
389 390 391 392

	return (ret < 0) ? ret : nmembs;
}

393 394
static int nilfs_ioctl_mark_blocks_dirty(struct the_nilfs *nilfs,
					 struct nilfs_argv *argv, void *buf)
K
Koji Sato 已提交
395
{
396
	size_t nmembs = argv->v_nmembs;
K
Koji Sato 已提交
397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419
	struct inode *dat = nilfs_dat_inode(nilfs);
	struct nilfs_bmap *bmap = NILFS_I(dat)->i_bmap;
	struct nilfs_bdesc *bdescs = buf;
	int ret, i;

	for (i = 0; i < nmembs; i++) {
		/* XXX: use macro or inline func to check liveness */
		ret = nilfs_bmap_lookup_at_level(bmap,
						 bdescs[i].bd_offset,
						 bdescs[i].bd_level + 1,
						 &bdescs[i].bd_blocknr);
		if (ret < 0) {
			if (ret != -ENOENT)
				return ret;
			bdescs[i].bd_blocknr = 0;
		}
		if (bdescs[i].bd_blocknr != bdescs[i].bd_oblocknr)
			/* skip dead block */
			continue;
		if (bdescs[i].bd_level == 0) {
			ret = nilfs_mdt_mark_block_dirty(dat,
							 bdescs[i].bd_offset);
			if (ret < 0) {
420
				WARN_ON(ret == -ENOENT);
K
Koji Sato 已提交
421 422 423 424 425 426
				return ret;
			}
		} else {
			ret = nilfs_bmap_mark(bmap, bdescs[i].bd_offset,
					      bdescs[i].bd_level);
			if (ret < 0) {
427
				WARN_ON(ret == -ENOENT);
K
Koji Sato 已提交
428 429 430 431 432 433 434 435
				return ret;
			}
		}
	}
	return nmembs;
}

int nilfs_ioctl_prepare_clean_segments(struct the_nilfs *nilfs,
436
				       struct nilfs_argv *argv, void **kbufs)
K
Koji Sato 已提交
437
{
438
	const char *msg;
439
	int ret;
K
Koji Sato 已提交
440

441
	ret = nilfs_ioctl_delete_checkpoints(nilfs, &argv[1], kbufs[1]);
442 443 444 445 446 447 448 449
	if (ret < 0) {
		/*
		 * can safely abort because checkpoints can be removed
		 * independently.
		 */
		msg = "cannot delete checkpoints";
		goto failed;
	}
450
	ret = nilfs_ioctl_free_vblocknrs(nilfs, &argv[2], kbufs[2]);
451 452 453 454 455 456 457 458
	if (ret < 0) {
		/*
		 * can safely abort because DAT file is updated atomically
		 * using a copy-on-write technique.
		 */
		msg = "cannot delete virtual blocks from DAT file";
		goto failed;
	}
459
	ret = nilfs_ioctl_mark_blocks_dirty(nilfs, &argv[3], kbufs[3]);
460 461 462 463 464 465 466
	if (ret < 0) {
		/*
		 * can safely abort because the operation is nondestructive.
		 */
		msg = "cannot mark copying blocks dirty";
		goto failed;
	}
K
Koji Sato 已提交
467 468
	return 0;

469 470 471
 failed:
	printk(KERN_ERR "NILFS: GC failed during preparation: %s: err=%d\n",
	       msg, ret);
K
Koji Sato 已提交
472 473 474 475 476 477
	return ret;
}

static int nilfs_ioctl_clean_segments(struct inode *inode, struct file *filp,
				      unsigned int cmd, void __user *argp)
{
478 479 480 481 482 483 484 485 486 487 488 489 490 491
	struct nilfs_argv argv[5];
	const static size_t argsz[5] = {
		sizeof(struct nilfs_vdesc),
		sizeof(struct nilfs_period),
		sizeof(__u64),
		sizeof(struct nilfs_bdesc),
		sizeof(__u64),
	};
	void __user *base;
	void *kbufs[5];
	struct the_nilfs *nilfs;
	size_t len, nsegs;
	int n, ret;

K
Koji Sato 已提交
492 493
	if (!capable(CAP_SYS_ADMIN))
		return -EPERM;
494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539

	if (copy_from_user(argv, argp, sizeof(argv)))
		return -EFAULT;

	nsegs = argv[4].v_nmembs;
	if (argv[4].v_size != argsz[4])
		return -EINVAL;
	/*
	 * argv[4] points to segment numbers this ioctl cleans.  We
	 * use kmalloc() for its buffer because memory used for the
	 * segment numbers is enough small.
	 */
	kbufs[4] = memdup_user((void __user *)(unsigned long)argv[4].v_base,
			       nsegs * sizeof(__u64));
	if (IS_ERR(kbufs[4]))
		return PTR_ERR(kbufs[4]);

	nilfs = NILFS_SB(inode->i_sb)->s_nilfs;

	for (n = 0; n < 4; n++) {
		ret = -EINVAL;
		if (argv[n].v_size != argsz[n])
			goto out_free;

		if (argv[n].v_nmembs > nsegs * nilfs->ns_blocks_per_segment)
			goto out_free;

		len = argv[n].v_size * argv[n].v_nmembs;
		base = (void __user *)(unsigned long)argv[n].v_base;
		if (len == 0) {
			kbufs[n] = NULL;
			continue;
		}

		kbufs[n] = vmalloc(len);
		if (!kbufs[n]) {
			ret = -ENOMEM;
			goto out_free;
		}
		if (copy_from_user(kbufs[n], base, len)) {
			ret = -EFAULT;
			vfree(kbufs[n]);
			goto out_free;
		}
	}

540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557
	/*
	 * nilfs_ioctl_move_blocks() will call nilfs_gc_iget(),
	 * which will operates an inode list without blocking.
	 * To protect the list from concurrent operations,
	 * nilfs_ioctl_move_blocks should be atomic operation.
	 */
	if (test_and_set_bit(THE_NILFS_GC_RUNNING, &nilfs->ns_flags)) {
		ret = -EBUSY;
		goto out_free;
	}

	ret = nilfs_ioctl_move_blocks(nilfs, &argv[0], kbufs[0]);
	if (ret < 0)
		printk(KERN_ERR "NILFS: GC failed during preparation: "
			"cannot read source blocks: err=%d\n", ret);
	else
		ret = nilfs_clean_segments(inode->i_sb, argv, kbufs);

558 559
	if (ret < 0)
		nilfs_remove_all_gcinode(nilfs);
560
	clear_nilfs_gc_running(nilfs);
561 562

 out_free:
563
	while (--n >= 0)
564 565 566
		vfree(kbufs[n]);
	kfree(kbufs[4]);
	return ret;
K
Koji Sato 已提交
567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586
}

static int nilfs_ioctl_sync(struct inode *inode, struct file *filp,
			    unsigned int cmd, void __user *argp)
{
	__u64 cno;
	int ret;

	ret = nilfs_construct_segment(inode->i_sb);
	if (ret < 0)
		return ret;

	if (argp != NULL) {
		cno = NILFS_SB(inode->i_sb)->s_nilfs->ns_cno - 1;
		if (copy_to_user(argp, &cno, sizeof(cno)))
			return -EFAULT;
	}
	return 0;
}

587 588
static int nilfs_ioctl_get_info(struct inode *inode, struct file *filp,
				unsigned int cmd, void __user *argp,
589
				size_t membsz,
590 591 592 593 594 595 596 597 598 599 600 601
				ssize_t (*dofunc)(struct the_nilfs *,
						  __u64 *, int,
						  void *, size_t, size_t))

{
	struct the_nilfs *nilfs = NILFS_SB(inode->i_sb)->s_nilfs;
	struct nilfs_argv argv;
	int ret;

	if (copy_from_user(&argv, argp, sizeof(argv)))
		return -EFAULT;

602
	if (argv.v_size < membsz)
603 604
		return -EINVAL;

605 606 607 608 609 610 611 612 613
	ret = nilfs_ioctl_wrap_copy(nilfs, &argv, _IOC_DIR(cmd), dofunc);
	if (ret < 0)
		return ret;

	if (copy_to_user(argp, &argv, sizeof(argv)))
		ret = -EFAULT;
	return ret;
}

R
Ryusuke Konishi 已提交
614
long nilfs_ioctl(struct file *filp, unsigned int cmd, unsigned long arg)
K
Koji Sato 已提交
615
{
R
Ryusuke Konishi 已提交
616
	struct inode *inode = filp->f_dentry->d_inode;
K
Koji Sato 已提交
617 618 619 620 621 622 623 624
	void __user *argp = (void * __user *)arg;

	switch (cmd) {
	case NILFS_IOCTL_CHANGE_CPMODE:
		return nilfs_ioctl_change_cpmode(inode, filp, cmd, argp);
	case NILFS_IOCTL_DELETE_CHECKPOINT:
		return nilfs_ioctl_delete_checkpoint(inode, filp, cmd, argp);
	case NILFS_IOCTL_GET_CPINFO:
625
		return nilfs_ioctl_get_info(inode, filp, cmd, argp,
626
					    sizeof(struct nilfs_cpinfo),
627
					    nilfs_ioctl_do_get_cpinfo);
K
Koji Sato 已提交
628 629 630
	case NILFS_IOCTL_GET_CPSTAT:
		return nilfs_ioctl_get_cpstat(inode, filp, cmd, argp);
	case NILFS_IOCTL_GET_SUINFO:
631
		return nilfs_ioctl_get_info(inode, filp, cmd, argp,
632
					    sizeof(struct nilfs_suinfo),
633
					    nilfs_ioctl_do_get_suinfo);
K
Koji Sato 已提交
634 635 636
	case NILFS_IOCTL_GET_SUSTAT:
		return nilfs_ioctl_get_sustat(inode, filp, cmd, argp);
	case NILFS_IOCTL_GET_VINFO:
637
		return nilfs_ioctl_get_info(inode, filp, cmd, argp,
638
					    sizeof(struct nilfs_vinfo),
639
					    nilfs_ioctl_do_get_vinfo);
K
Koji Sato 已提交
640 641 642 643 644 645 646 647 648 649
	case NILFS_IOCTL_GET_BDESCS:
		return nilfs_ioctl_get_bdescs(inode, filp, cmd, argp);
	case NILFS_IOCTL_CLEAN_SEGMENTS:
		return nilfs_ioctl_clean_segments(inode, filp, cmd, argp);
	case NILFS_IOCTL_SYNC:
		return nilfs_ioctl_sync(inode, filp, cmd, argp);
	default:
		return -ENOTTY;
	}
}