Linux Audio

Check our new training course

Loading...
v6.2
   1// SPDX-License-Identifier: GPL-2.0+
   2/*
   3 * NILFS ioctl operations.
   4 *
   5 * Copyright (C) 2007, 2008 Nippon Telegraph and Telephone Corporation.
   6 *
   7 * Written by Koji Sato.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
   8 */
   9
  10#include <linux/fs.h>
  11#include <linux/wait.h>
  12#include <linux/slab.h>
  13#include <linux/capability.h>	/* capable() */
  14#include <linux/uaccess.h>	/* copy_from_user(), copy_to_user() */
  15#include <linux/vmalloc.h>
  16#include <linux/compat.h>	/* compat_ptr() */
  17#include <linux/mount.h>	/* mnt_want_write_file(), mnt_drop_write_file() */
  18#include <linux/buffer_head.h>
  19#include <linux/fileattr.h>
  20#include "nilfs.h"
  21#include "segment.h"
  22#include "bmap.h"
  23#include "cpfile.h"
  24#include "sufile.h"
  25#include "dat.h"
  26
  27/**
  28 * nilfs_ioctl_wrap_copy - wrapping function of get/set metadata info
  29 * @nilfs: nilfs object
  30 * @argv: vector of arguments from userspace
  31 * @dir: set of direction flags
  32 * @dofunc: concrete function of get/set metadata info
  33 *
  34 * Description: nilfs_ioctl_wrap_copy() gets/sets metadata info by means of
  35 * calling dofunc() function on the basis of @argv argument.
  36 *
  37 * Return Value: On success, 0 is returned and requested metadata info
  38 * is copied into userspace. On error, one of the following
  39 * negative error codes is returned.
  40 *
  41 * %-EINVAL - Invalid arguments from userspace.
  42 *
  43 * %-ENOMEM - Insufficient amount of memory available.
  44 *
  45 * %-EFAULT - Failure during execution of requested operation.
  46 */
  47static int nilfs_ioctl_wrap_copy(struct the_nilfs *nilfs,
  48				 struct nilfs_argv *argv, int dir,
  49				 ssize_t (*dofunc)(struct the_nilfs *,
  50						   __u64 *, int,
  51						   void *, size_t, size_t))
  52{
  53	void *buf;
  54	void __user *base = (void __user *)(unsigned long)argv->v_base;
  55	size_t maxmembs, total, n;
  56	ssize_t nr;
  57	int ret, i;
  58	__u64 pos, ppos;
  59
  60	if (argv->v_nmembs == 0)
  61		return 0;
  62
  63	if (argv->v_size > PAGE_SIZE)
  64		return -EINVAL;
  65
  66	/*
  67	 * Reject pairs of a start item position (argv->v_index) and a
  68	 * total count (argv->v_nmembs) which leads position 'pos' to
  69	 * overflow by the increment at the end of the loop.
  70	 */
  71	if (argv->v_index > ~(__u64)0 - argv->v_nmembs)
  72		return -EINVAL;
  73
  74	buf = (void *)__get_free_pages(GFP_NOFS, 0);
  75	if (unlikely(!buf))
  76		return -ENOMEM;
  77	maxmembs = PAGE_SIZE / argv->v_size;
  78
  79	ret = 0;
  80	total = 0;
  81	pos = argv->v_index;
  82	for (i = 0; i < argv->v_nmembs; i += n) {
  83		n = (argv->v_nmembs - i < maxmembs) ?
  84			argv->v_nmembs - i : maxmembs;
  85		if ((dir & _IOC_WRITE) &&
  86		    copy_from_user(buf, base + argv->v_size * i,
  87				   argv->v_size * n)) {
  88			ret = -EFAULT;
  89			break;
  90		}
  91		ppos = pos;
  92		nr = dofunc(nilfs, &pos, argv->v_flags, buf, argv->v_size,
  93			       n);
  94		if (nr < 0) {
  95			ret = nr;
  96			break;
  97		}
  98		if ((dir & _IOC_READ) &&
  99		    copy_to_user(base + argv->v_size * i, buf,
 100				 argv->v_size * nr)) {
 101			ret = -EFAULT;
 102			break;
 103		}
 104		total += nr;
 105		if ((size_t)nr < n)
 106			break;
 107		if (pos == ppos)
 108			pos += n;
 109	}
 110	argv->v_nmembs = total;
 111
 112	free_pages((unsigned long)buf, 0);
 113	return ret;
 114}
 115
 116/**
 117 * nilfs_fileattr_get - ioctl to support lsattr
 118 */
 119int nilfs_fileattr_get(struct dentry *dentry, struct fileattr *fa)
 120{
 121	struct inode *inode = d_inode(dentry);
 122
 123	fileattr_fill_flags(fa, NILFS_I(inode)->i_flags & FS_FL_USER_VISIBLE);
 124
 125	return 0;
 126}
 127
 128/**
 129 * nilfs_fileattr_set - ioctl to support chattr
 130 */
 131int nilfs_fileattr_set(struct user_namespace *mnt_userns,
 132		       struct dentry *dentry, struct fileattr *fa)
 133{
 134	struct inode *inode = d_inode(dentry);
 135	struct nilfs_transaction_info ti;
 136	unsigned int flags, oldflags;
 137	int ret;
 138
 139	if (fileattr_has_fsx(fa))
 140		return -EOPNOTSUPP;
 141
 142	flags = nilfs_mask_flags(inode->i_mode, fa->flags);
 
 143
 144	ret = nilfs_transaction_begin(inode->i_sb, &ti, 0);
 145	if (ret)
 146		return ret;
 147
 148	oldflags = NILFS_I(inode)->i_flags & ~FS_FL_USER_MODIFIABLE;
 149	NILFS_I(inode)->i_flags = oldflags | (flags & FS_FL_USER_MODIFIABLE);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 150
 151	nilfs_set_inode_flags(inode);
 152	inode->i_ctime = current_time(inode);
 153	if (IS_SYNC(inode))
 154		nilfs_set_transaction_flag(NILFS_TI_SYNC);
 155
 156	nilfs_mark_inode_dirty(inode);
 157	return nilfs_transaction_commit(inode->i_sb);
 
 
 
 
 158}
 159
 160/**
 161 * nilfs_ioctl_getversion - get info about a file's version (generation number)
 162 */
 163static int nilfs_ioctl_getversion(struct inode *inode, void __user *argp)
 164{
 165	return put_user(inode->i_generation, (int __user *)argp);
 166}
 167
 168/**
 169 * nilfs_ioctl_change_cpmode - change checkpoint mode (checkpoint/snapshot)
 170 * @inode: inode object
 171 * @filp: file object
 172 * @cmd: ioctl's request code
 173 * @argp: pointer on argument from userspace
 174 *
 175 * Description: nilfs_ioctl_change_cpmode() function changes mode of
 176 * given checkpoint between checkpoint and snapshot state. This ioctl
 177 * is used in chcp and mkcp utilities.
 178 *
 179 * Return Value: On success, 0 is returned and mode of a checkpoint is
 180 * changed. On error, one of the following negative error codes
 181 * is returned.
 182 *
 183 * %-EPERM - Operation not permitted.
 184 *
 185 * %-EFAULT - Failure during checkpoint mode changing.
 186 */
 187static int nilfs_ioctl_change_cpmode(struct inode *inode, struct file *filp,
 188				     unsigned int cmd, void __user *argp)
 189{
 190	struct the_nilfs *nilfs = inode->i_sb->s_fs_info;
 191	struct nilfs_transaction_info ti;
 192	struct nilfs_cpmode cpmode;
 193	int ret;
 194
 195	if (!capable(CAP_SYS_ADMIN))
 196		return -EPERM;
 197
 198	ret = mnt_want_write_file(filp);
 199	if (ret)
 200		return ret;
 201
 202	ret = -EFAULT;
 203	if (copy_from_user(&cpmode, argp, sizeof(cpmode)))
 204		goto out;
 205
 206	mutex_lock(&nilfs->ns_snapshot_mount_mutex);
 207
 208	nilfs_transaction_begin(inode->i_sb, &ti, 0);
 209	ret = nilfs_cpfile_change_cpmode(
 210		nilfs->ns_cpfile, cpmode.cm_cno, cpmode.cm_mode);
 211	if (unlikely(ret < 0))
 212		nilfs_transaction_abort(inode->i_sb);
 213	else
 214		nilfs_transaction_commit(inode->i_sb); /* never fails */
 215
 216	mutex_unlock(&nilfs->ns_snapshot_mount_mutex);
 217out:
 218	mnt_drop_write_file(filp);
 219	return ret;
 220}
 221
 222/**
 223 * nilfs_ioctl_delete_checkpoint - remove checkpoint
 224 * @inode: inode object
 225 * @filp: file object
 226 * @cmd: ioctl's request code
 227 * @argp: pointer on argument from userspace
 228 *
 229 * Description: nilfs_ioctl_delete_checkpoint() function removes
 230 * checkpoint from NILFS2 file system. This ioctl is used in rmcp
 231 * utility.
 232 *
 233 * Return Value: On success, 0 is returned and a checkpoint is
 234 * removed. On error, one of the following negative error codes
 235 * is returned.
 236 *
 237 * %-EPERM - Operation not permitted.
 238 *
 239 * %-EFAULT - Failure during checkpoint removing.
 240 */
 241static int
 242nilfs_ioctl_delete_checkpoint(struct inode *inode, struct file *filp,
 243			      unsigned int cmd, void __user *argp)
 244{
 245	struct the_nilfs *nilfs = inode->i_sb->s_fs_info;
 246	struct nilfs_transaction_info ti;
 247	__u64 cno;
 248	int ret;
 249
 250	if (!capable(CAP_SYS_ADMIN))
 251		return -EPERM;
 252
 253	ret = mnt_want_write_file(filp);
 254	if (ret)
 255		return ret;
 256
 257	ret = -EFAULT;
 258	if (copy_from_user(&cno, argp, sizeof(cno)))
 259		goto out;
 260
 261	nilfs_transaction_begin(inode->i_sb, &ti, 0);
 262	ret = nilfs_cpfile_delete_checkpoint(nilfs->ns_cpfile, cno);
 263	if (unlikely(ret < 0))
 264		nilfs_transaction_abort(inode->i_sb);
 265	else
 266		nilfs_transaction_commit(inode->i_sb); /* never fails */
 267out:
 268	mnt_drop_write_file(filp);
 269	return ret;
 270}
 271
 272/**
 273 * nilfs_ioctl_do_get_cpinfo - callback method getting info about checkpoints
 274 * @nilfs: nilfs object
 275 * @posp: pointer on array of checkpoint's numbers
 276 * @flags: checkpoint mode (checkpoint or snapshot)
 277 * @buf: buffer for storing checkponts' info
 278 * @size: size in bytes of one checkpoint info item in array
 279 * @nmembs: number of checkpoints in array (numbers and infos)
 280 *
 281 * Description: nilfs_ioctl_do_get_cpinfo() function returns info about
 282 * requested checkpoints. The NILFS_IOCTL_GET_CPINFO ioctl is used in
 283 * lscp utility and by nilfs_cleanerd daemon.
 284 *
 285 * Return value: count of nilfs_cpinfo structures in output buffer.
 286 */
 287static ssize_t
 288nilfs_ioctl_do_get_cpinfo(struct the_nilfs *nilfs, __u64 *posp, int flags,
 289			  void *buf, size_t size, size_t nmembs)
 290{
 291	int ret;
 292
 293	down_read(&nilfs->ns_segctor_sem);
 294	ret = nilfs_cpfile_get_cpinfo(nilfs->ns_cpfile, posp, flags, buf,
 295				      size, nmembs);
 296	up_read(&nilfs->ns_segctor_sem);
 297	return ret;
 298}
 299
 300/**
 301 * nilfs_ioctl_get_cpstat - get checkpoints statistics
 302 * @inode: inode object
 303 * @filp: file object
 304 * @cmd: ioctl's request code
 305 * @argp: pointer on argument from userspace
 306 *
 307 * Description: nilfs_ioctl_get_cpstat() returns information about checkpoints.
 308 * The NILFS_IOCTL_GET_CPSTAT ioctl is used by lscp, rmcp utilities
 309 * and by nilfs_cleanerd daemon.
 310 *
 311 * Return Value: On success, 0 is returned, and checkpoints information is
 312 * copied into userspace pointer @argp. On error, one of the following
 313 * negative error codes is returned.
 314 *
 315 * %-EIO - I/O error.
 316 *
 317 * %-ENOMEM - Insufficient amount of memory available.
 318 *
 319 * %-EFAULT - Failure during getting checkpoints statistics.
 320 */
 321static int nilfs_ioctl_get_cpstat(struct inode *inode, struct file *filp,
 322				  unsigned int cmd, void __user *argp)
 323{
 324	struct the_nilfs *nilfs = inode->i_sb->s_fs_info;
 325	struct nilfs_cpstat cpstat;
 326	int ret;
 327
 328	down_read(&nilfs->ns_segctor_sem);
 329	ret = nilfs_cpfile_get_stat(nilfs->ns_cpfile, &cpstat);
 330	up_read(&nilfs->ns_segctor_sem);
 331	if (ret < 0)
 332		return ret;
 333
 334	if (copy_to_user(argp, &cpstat, sizeof(cpstat)))
 335		ret = -EFAULT;
 336	return ret;
 337}
 338
 339/**
 340 * nilfs_ioctl_do_get_suinfo - callback method getting segment usage info
 341 * @nilfs: nilfs object
 342 * @posp: pointer on array of segment numbers
 343 * @flags: *not used*
 344 * @buf: buffer for storing suinfo array
 345 * @size: size in bytes of one suinfo item in array
 346 * @nmembs: count of segment numbers and suinfos in array
 347 *
 348 * Description: nilfs_ioctl_do_get_suinfo() function returns segment usage
 349 * info about requested segments. The NILFS_IOCTL_GET_SUINFO ioctl is used
 350 * in lssu, nilfs_resize utilities and by nilfs_cleanerd daemon.
 351 *
 352 * Return value: count of nilfs_suinfo structures in output buffer.
 353 */
 354static ssize_t
 355nilfs_ioctl_do_get_suinfo(struct the_nilfs *nilfs, __u64 *posp, int flags,
 356			  void *buf, size_t size, size_t nmembs)
 357{
 358	int ret;
 359
 360	down_read(&nilfs->ns_segctor_sem);
 361	ret = nilfs_sufile_get_suinfo(nilfs->ns_sufile, *posp, buf, size,
 362				      nmembs);
 363	up_read(&nilfs->ns_segctor_sem);
 364	return ret;
 365}
 366
 367/**
 368 * nilfs_ioctl_get_sustat - get segment usage statistics
 369 * @inode: inode object
 370 * @filp: file object
 371 * @cmd: ioctl's request code
 372 * @argp: pointer on argument from userspace
 373 *
 374 * Description: nilfs_ioctl_get_sustat() returns segment usage statistics.
 375 * The NILFS_IOCTL_GET_SUSTAT ioctl is used in lssu, nilfs_resize utilities
 376 * and by nilfs_cleanerd daemon.
 377 *
 378 * Return Value: On success, 0 is returned, and segment usage information is
 379 * copied into userspace pointer @argp. On error, one of the following
 380 * negative error codes is returned.
 381 *
 382 * %-EIO - I/O error.
 383 *
 384 * %-ENOMEM - Insufficient amount of memory available.
 385 *
 386 * %-EFAULT - Failure during getting segment usage statistics.
 387 */
 388static int nilfs_ioctl_get_sustat(struct inode *inode, struct file *filp,
 389				  unsigned int cmd, void __user *argp)
 390{
 391	struct the_nilfs *nilfs = inode->i_sb->s_fs_info;
 392	struct nilfs_sustat sustat;
 393	int ret;
 394
 395	down_read(&nilfs->ns_segctor_sem);
 396	ret = nilfs_sufile_get_stat(nilfs->ns_sufile, &sustat);
 397	up_read(&nilfs->ns_segctor_sem);
 398	if (ret < 0)
 399		return ret;
 400
 401	if (copy_to_user(argp, &sustat, sizeof(sustat)))
 402		ret = -EFAULT;
 403	return ret;
 404}
 405
 406/**
 407 * nilfs_ioctl_do_get_vinfo - callback method getting virtual blocks info
 408 * @nilfs: nilfs object
 409 * @posp: *not used*
 410 * @flags: *not used*
 411 * @buf: buffer for storing array of nilfs_vinfo structures
 412 * @size: size in bytes of one vinfo item in array
 413 * @nmembs: count of vinfos in array
 414 *
 415 * Description: nilfs_ioctl_do_get_vinfo() function returns information
 416 * on virtual block addresses. The NILFS_IOCTL_GET_VINFO ioctl is used
 417 * by nilfs_cleanerd daemon.
 418 *
 419 * Return value: count of nilfs_vinfo structures in output buffer.
 420 */
 421static ssize_t
 422nilfs_ioctl_do_get_vinfo(struct the_nilfs *nilfs, __u64 *posp, int flags,
 423			 void *buf, size_t size, size_t nmembs)
 424{
 425	int ret;
 426
 427	down_read(&nilfs->ns_segctor_sem);
 428	ret = nilfs_dat_get_vinfo(nilfs->ns_dat, buf, size, nmembs);
 429	up_read(&nilfs->ns_segctor_sem);
 430	return ret;
 431}
 432
 433/**
 434 * nilfs_ioctl_do_get_bdescs - callback method getting disk block descriptors
 435 * @nilfs: nilfs object
 436 * @posp: *not used*
 437 * @flags: *not used*
 438 * @buf: buffer for storing array of nilfs_bdesc structures
 439 * @size: size in bytes of one bdesc item in array
 440 * @nmembs: count of bdescs in array
 441 *
 442 * Description: nilfs_ioctl_do_get_bdescs() function returns information
 443 * about descriptors of disk block numbers. The NILFS_IOCTL_GET_BDESCS ioctl
 444 * is used by nilfs_cleanerd daemon.
 445 *
 446 * Return value: count of nilfs_bdescs structures in output buffer.
 447 */
 448static ssize_t
 449nilfs_ioctl_do_get_bdescs(struct the_nilfs *nilfs, __u64 *posp, int flags,
 450			  void *buf, size_t size, size_t nmembs)
 451{
 452	struct nilfs_bmap *bmap = NILFS_I(nilfs->ns_dat)->i_bmap;
 453	struct nilfs_bdesc *bdescs = buf;
 454	int ret, i;
 455
 456	down_read(&nilfs->ns_segctor_sem);
 457	for (i = 0; i < nmembs; i++) {
 458		ret = nilfs_bmap_lookup_at_level(bmap,
 459						 bdescs[i].bd_offset,
 460						 bdescs[i].bd_level + 1,
 461						 &bdescs[i].bd_blocknr);
 462		if (ret < 0) {
 463			if (ret != -ENOENT) {
 464				up_read(&nilfs->ns_segctor_sem);
 465				return ret;
 466			}
 467			bdescs[i].bd_blocknr = 0;
 468		}
 469	}
 470	up_read(&nilfs->ns_segctor_sem);
 471	return nmembs;
 472}
 473
 474/**
 475 * nilfs_ioctl_get_bdescs - get disk block descriptors
 476 * @inode: inode object
 477 * @filp: file object
 478 * @cmd: ioctl's request code
 479 * @argp: pointer on argument from userspace
 480 *
 481 * Description: nilfs_ioctl_do_get_bdescs() function returns information
 482 * about descriptors of disk block numbers. The NILFS_IOCTL_GET_BDESCS ioctl
 483 * is used by nilfs_cleanerd daemon.
 484 *
 485 * Return Value: On success, 0 is returned, and disk block descriptors are
 486 * copied into userspace pointer @argp. On error, one of the following
 487 * negative error codes is returned.
 488 *
 489 * %-EINVAL - Invalid arguments from userspace.
 490 *
 491 * %-EIO - I/O error.
 492 *
 493 * %-ENOMEM - Insufficient amount of memory available.
 494 *
 495 * %-EFAULT - Failure during getting disk block descriptors.
 496 */
 497static int nilfs_ioctl_get_bdescs(struct inode *inode, struct file *filp,
 498				  unsigned int cmd, void __user *argp)
 499{
 500	struct the_nilfs *nilfs = inode->i_sb->s_fs_info;
 501	struct nilfs_argv argv;
 502	int ret;
 503
 504	if (copy_from_user(&argv, argp, sizeof(argv)))
 505		return -EFAULT;
 506
 507	if (argv.v_size != sizeof(struct nilfs_bdesc))
 508		return -EINVAL;
 509
 510	ret = nilfs_ioctl_wrap_copy(nilfs, &argv, _IOC_DIR(cmd),
 511				    nilfs_ioctl_do_get_bdescs);
 512	if (ret < 0)
 513		return ret;
 514
 515	if (copy_to_user(argp, &argv, sizeof(argv)))
 516		ret = -EFAULT;
 517	return ret;
 518}
 519
 520/**
 521 * nilfs_ioctl_move_inode_block - prepare data/node block for moving by GC
 522 * @inode: inode object
 523 * @vdesc: descriptor of virtual block number
 524 * @buffers: list of moving buffers
 525 *
 526 * Description: nilfs_ioctl_move_inode_block() function registers data/node
 527 * buffer in the GC pagecache and submit read request.
 528 *
 529 * Return Value: On success, 0 is returned. On error, one of the following
 530 * negative error codes is returned.
 531 *
 532 * %-EIO - I/O error.
 533 *
 534 * %-ENOMEM - Insufficient amount of memory available.
 535 *
 536 * %-ENOENT - Requested block doesn't exist.
 537 *
 538 * %-EEXIST - Blocks conflict is detected.
 539 */
 540static int nilfs_ioctl_move_inode_block(struct inode *inode,
 541					struct nilfs_vdesc *vdesc,
 542					struct list_head *buffers)
 543{
 544	struct buffer_head *bh;
 545	int ret;
 546
 547	if (vdesc->vd_flags == 0)
 548		ret = nilfs_gccache_submit_read_data(
 549			inode, vdesc->vd_offset, vdesc->vd_blocknr,
 550			vdesc->vd_vblocknr, &bh);
 551	else
 552		ret = nilfs_gccache_submit_read_node(
 553			inode, vdesc->vd_blocknr, vdesc->vd_vblocknr, &bh);
 554
 555	if (unlikely(ret < 0)) {
 556		if (ret == -ENOENT)
 557			nilfs_crit(inode->i_sb,
 558				   "%s: invalid virtual block address (%s): ino=%llu, cno=%llu, offset=%llu, blocknr=%llu, vblocknr=%llu",
 559				   __func__, vdesc->vd_flags ? "node" : "data",
 560				   (unsigned long long)vdesc->vd_ino,
 561				   (unsigned long long)vdesc->vd_cno,
 562				   (unsigned long long)vdesc->vd_offset,
 563				   (unsigned long long)vdesc->vd_blocknr,
 564				   (unsigned long long)vdesc->vd_vblocknr);
 
 
 565		return ret;
 566	}
 567	if (unlikely(!list_empty(&bh->b_assoc_buffers))) {
 568		nilfs_crit(inode->i_sb,
 569			   "%s: conflicting %s buffer: ino=%llu, cno=%llu, offset=%llu, blocknr=%llu, vblocknr=%llu",
 570			   __func__, vdesc->vd_flags ? "node" : "data",
 571			   (unsigned long long)vdesc->vd_ino,
 572			   (unsigned long long)vdesc->vd_cno,
 573			   (unsigned long long)vdesc->vd_offset,
 574			   (unsigned long long)vdesc->vd_blocknr,
 575			   (unsigned long long)vdesc->vd_vblocknr);
 576		brelse(bh);
 577		return -EEXIST;
 578	}
 579	list_add_tail(&bh->b_assoc_buffers, buffers);
 580	return 0;
 581}
 582
 583/**
 584 * nilfs_ioctl_move_blocks - move valid inode's blocks during garbage collection
 585 * @sb: superblock object
 586 * @argv: vector of arguments from userspace
 587 * @buf: array of nilfs_vdesc structures
 588 *
 589 * Description: nilfs_ioctl_move_blocks() function reads valid data/node
 590 * blocks that garbage collector specified with the array of nilfs_vdesc
 591 * structures and stores them into page caches of GC inodes.
 592 *
 593 * Return Value: Number of processed nilfs_vdesc structures or
 594 * error code, otherwise.
 595 */
 596static int nilfs_ioctl_move_blocks(struct super_block *sb,
 597				   struct nilfs_argv *argv, void *buf)
 598{
 599	size_t nmembs = argv->v_nmembs;
 600	struct the_nilfs *nilfs = sb->s_fs_info;
 601	struct inode *inode;
 602	struct nilfs_vdesc *vdesc;
 603	struct buffer_head *bh, *n;
 604	LIST_HEAD(buffers);
 605	ino_t ino;
 606	__u64 cno;
 607	int i, ret;
 608
 609	for (i = 0, vdesc = buf; i < nmembs; ) {
 610		ino = vdesc->vd_ino;
 611		cno = vdesc->vd_cno;
 612		inode = nilfs_iget_for_gc(sb, ino, cno);
 613		if (IS_ERR(inode)) {
 614			ret = PTR_ERR(inode);
 615			goto failed;
 616		}
 617		if (list_empty(&NILFS_I(inode)->i_dirty)) {
 618			/*
 619			 * Add the inode to GC inode list. Garbage Collection
 620			 * is serialized and no two processes manipulate the
 621			 * list simultaneously.
 622			 */
 623			igrab(inode);
 624			list_add(&NILFS_I(inode)->i_dirty,
 625				 &nilfs->ns_gc_inodes);
 626		}
 627
 628		do {
 629			ret = nilfs_ioctl_move_inode_block(inode, vdesc,
 630							   &buffers);
 631			if (unlikely(ret < 0)) {
 632				iput(inode);
 633				goto failed;
 634			}
 635			vdesc++;
 636		} while (++i < nmembs &&
 637			 vdesc->vd_ino == ino && vdesc->vd_cno == cno);
 638
 639		iput(inode); /* The inode still remains in GC inode list */
 640	}
 641
 642	list_for_each_entry_safe(bh, n, &buffers, b_assoc_buffers) {
 643		ret = nilfs_gccache_wait_and_mark_dirty(bh);
 644		if (unlikely(ret < 0)) {
 645			WARN_ON(ret == -EEXIST);
 646			goto failed;
 647		}
 648		list_del_init(&bh->b_assoc_buffers);
 649		brelse(bh);
 650	}
 651	return nmembs;
 652
 653 failed:
 654	list_for_each_entry_safe(bh, n, &buffers, b_assoc_buffers) {
 655		list_del_init(&bh->b_assoc_buffers);
 656		brelse(bh);
 657	}
 658	return ret;
 659}
 660
 661/**
 662 * nilfs_ioctl_delete_checkpoints - delete checkpoints
 663 * @nilfs: nilfs object
 664 * @argv: vector of arguments from userspace
 665 * @buf: array of periods of checkpoints numbers
 666 *
 667 * Description: nilfs_ioctl_delete_checkpoints() function deletes checkpoints
 668 * in the period from p_start to p_end, excluding p_end itself. The checkpoints
 669 * which have been already deleted are ignored.
 670 *
 671 * Return Value: Number of processed nilfs_period structures or
 672 * error code, otherwise.
 673 *
 674 * %-EIO - I/O error.
 675 *
 676 * %-ENOMEM - Insufficient amount of memory available.
 677 *
 678 * %-EINVAL - invalid checkpoints.
 679 */
 680static int nilfs_ioctl_delete_checkpoints(struct the_nilfs *nilfs,
 681					  struct nilfs_argv *argv, void *buf)
 682{
 683	size_t nmembs = argv->v_nmembs;
 684	struct inode *cpfile = nilfs->ns_cpfile;
 685	struct nilfs_period *periods = buf;
 686	int ret, i;
 687
 688	for (i = 0; i < nmembs; i++) {
 689		ret = nilfs_cpfile_delete_checkpoints(
 690			cpfile, periods[i].p_start, periods[i].p_end);
 691		if (ret < 0)
 692			return ret;
 693	}
 694	return nmembs;
 695}
 696
 697/**
 698 * nilfs_ioctl_free_vblocknrs - free virtual block numbers
 699 * @nilfs: nilfs object
 700 * @argv: vector of arguments from userspace
 701 * @buf: array of virtual block numbers
 702 *
 703 * Description: nilfs_ioctl_free_vblocknrs() function frees
 704 * the virtual block numbers specified by @buf and @argv->v_nmembs.
 705 *
 706 * Return Value: Number of processed virtual block numbers or
 707 * error code, otherwise.
 708 *
 709 * %-EIO - I/O error.
 710 *
 711 * %-ENOMEM - Insufficient amount of memory available.
 712 *
 713 * %-ENOENT - The virtual block number have not been allocated.
 714 */
 715static int nilfs_ioctl_free_vblocknrs(struct the_nilfs *nilfs,
 716				      struct nilfs_argv *argv, void *buf)
 717{
 718	size_t nmembs = argv->v_nmembs;
 719	int ret;
 720
 721	ret = nilfs_dat_freev(nilfs->ns_dat, buf, nmembs);
 722
 723	return (ret < 0) ? ret : nmembs;
 724}
 725
 726/**
 727 * nilfs_ioctl_mark_blocks_dirty - mark blocks dirty
 728 * @nilfs: nilfs object
 729 * @argv: vector of arguments from userspace
 730 * @buf: array of block descriptors
 731 *
 732 * Description: nilfs_ioctl_mark_blocks_dirty() function marks
 733 * metadata file or data blocks as dirty.
 734 *
 735 * Return Value: Number of processed block descriptors or
 736 * error code, otherwise.
 737 *
 738 * %-ENOMEM - Insufficient memory available.
 739 *
 740 * %-EIO - I/O error
 741 *
 742 * %-ENOENT - the specified block does not exist (hole block)
 743 */
 744static int nilfs_ioctl_mark_blocks_dirty(struct the_nilfs *nilfs,
 745					 struct nilfs_argv *argv, void *buf)
 746{
 747	size_t nmembs = argv->v_nmembs;
 748	struct nilfs_bmap *bmap = NILFS_I(nilfs->ns_dat)->i_bmap;
 749	struct nilfs_bdesc *bdescs = buf;
 750	struct buffer_head *bh;
 751	int ret, i;
 752
 753	for (i = 0; i < nmembs; i++) {
 754		/* XXX: use macro or inline func to check liveness */
 755		ret = nilfs_bmap_lookup_at_level(bmap,
 756						 bdescs[i].bd_offset,
 757						 bdescs[i].bd_level + 1,
 758						 &bdescs[i].bd_blocknr);
 759		if (ret < 0) {
 760			if (ret != -ENOENT)
 761				return ret;
 762			bdescs[i].bd_blocknr = 0;
 763		}
 764		if (bdescs[i].bd_blocknr != bdescs[i].bd_oblocknr)
 765			/* skip dead block */
 766			continue;
 767		if (bdescs[i].bd_level == 0) {
 768			ret = nilfs_mdt_get_block(nilfs->ns_dat,
 769						  bdescs[i].bd_offset,
 770						  false, NULL, &bh);
 771			if (unlikely(ret)) {
 772				WARN_ON(ret == -ENOENT);
 773				return ret;
 774			}
 775			mark_buffer_dirty(bh);
 776			nilfs_mdt_mark_dirty(nilfs->ns_dat);
 777			put_bh(bh);
 778		} else {
 779			ret = nilfs_bmap_mark(bmap, bdescs[i].bd_offset,
 780					      bdescs[i].bd_level);
 781			if (ret < 0) {
 782				WARN_ON(ret == -ENOENT);
 783				return ret;
 784			}
 785		}
 786	}
 787	return nmembs;
 788}
 789
 790int nilfs_ioctl_prepare_clean_segments(struct the_nilfs *nilfs,
 791				       struct nilfs_argv *argv, void **kbufs)
 792{
 793	const char *msg;
 794	int ret;
 795
 796	ret = nilfs_ioctl_delete_checkpoints(nilfs, &argv[1], kbufs[1]);
 797	if (ret < 0) {
 798		/*
 799		 * can safely abort because checkpoints can be removed
 800		 * independently.
 801		 */
 802		msg = "cannot delete checkpoints";
 803		goto failed;
 804	}
 805	ret = nilfs_ioctl_free_vblocknrs(nilfs, &argv[2], kbufs[2]);
 806	if (ret < 0) {
 807		/*
 808		 * can safely abort because DAT file is updated atomically
 809		 * using a copy-on-write technique.
 810		 */
 811		msg = "cannot delete virtual blocks from DAT file";
 812		goto failed;
 813	}
 814	ret = nilfs_ioctl_mark_blocks_dirty(nilfs, &argv[3], kbufs[3]);
 815	if (ret < 0) {
 816		/*
 817		 * can safely abort because the operation is nondestructive.
 818		 */
 819		msg = "cannot mark copying blocks dirty";
 820		goto failed;
 821	}
 822	return 0;
 823
 824 failed:
 825	nilfs_err(nilfs->ns_sb, "error %d preparing GC: %s", ret, msg);
 
 826	return ret;
 827}
 828
 829/**
 830 * nilfs_ioctl_clean_segments - clean segments
 831 * @inode: inode object
 832 * @filp: file object
 833 * @cmd: ioctl's request code
 834 * @argp: pointer on argument from userspace
 835 *
 836 * Description: nilfs_ioctl_clean_segments() function makes garbage
 837 * collection operation in the environment of requested parameters
 838 * from userspace. The NILFS_IOCTL_CLEAN_SEGMENTS ioctl is used by
 839 * nilfs_cleanerd daemon.
 840 *
 841 * Return Value: On success, 0 is returned or error code, otherwise.
 842 */
 843static int nilfs_ioctl_clean_segments(struct inode *inode, struct file *filp,
 844				      unsigned int cmd, void __user *argp)
 845{
 846	struct nilfs_argv argv[5];
 847	static const size_t argsz[5] = {
 848		sizeof(struct nilfs_vdesc),
 849		sizeof(struct nilfs_period),
 850		sizeof(__u64),
 851		sizeof(struct nilfs_bdesc),
 852		sizeof(__u64),
 853	};
 854	void __user *base;
 855	void *kbufs[5];
 856	struct the_nilfs *nilfs;
 857	size_t len, nsegs;
 858	int n, ret;
 859
 860	if (!capable(CAP_SYS_ADMIN))
 861		return -EPERM;
 862
 863	ret = mnt_want_write_file(filp);
 864	if (ret)
 865		return ret;
 866
 867	ret = -EFAULT;
 868	if (copy_from_user(argv, argp, sizeof(argv)))
 869		goto out;
 870
 871	ret = -EINVAL;
 872	nsegs = argv[4].v_nmembs;
 873	if (argv[4].v_size != argsz[4])
 874		goto out;
 875	if (nsegs > UINT_MAX / sizeof(__u64))
 876		goto out;
 877
 878	/*
 879	 * argv[4] points to segment numbers this ioctl cleans.  We
 880	 * use kmalloc() for its buffer because memory used for the
 881	 * segment numbers is enough small.
 882	 */
 883	kbufs[4] = memdup_user((void __user *)(unsigned long)argv[4].v_base,
 884			       nsegs * sizeof(__u64));
 885	if (IS_ERR(kbufs[4])) {
 886		ret = PTR_ERR(kbufs[4]);
 887		goto out;
 888	}
 889	nilfs = inode->i_sb->s_fs_info;
 890
 891	for (n = 0; n < 4; n++) {
 892		ret = -EINVAL;
 893		if (argv[n].v_size != argsz[n])
 894			goto out_free;
 895
 896		if (argv[n].v_nmembs > nsegs * nilfs->ns_blocks_per_segment)
 897			goto out_free;
 898
 899		if (argv[n].v_nmembs >= UINT_MAX / argv[n].v_size)
 900			goto out_free;
 901
 902		len = argv[n].v_size * argv[n].v_nmembs;
 903		base = (void __user *)(unsigned long)argv[n].v_base;
 904		if (len == 0) {
 905			kbufs[n] = NULL;
 906			continue;
 907		}
 908
 909		kbufs[n] = vmalloc(len);
 910		if (!kbufs[n]) {
 911			ret = -ENOMEM;
 912			goto out_free;
 913		}
 914		if (copy_from_user(kbufs[n], base, len)) {
 915			ret = -EFAULT;
 916			vfree(kbufs[n]);
 917			goto out_free;
 918		}
 919	}
 920
 921	/*
 922	 * nilfs_ioctl_move_blocks() will call nilfs_iget_for_gc(),
 923	 * which will operates an inode list without blocking.
 924	 * To protect the list from concurrent operations,
 925	 * nilfs_ioctl_move_blocks should be atomic operation.
 926	 */
 927	if (test_and_set_bit(THE_NILFS_GC_RUNNING, &nilfs->ns_flags)) {
 928		ret = -EBUSY;
 929		goto out_free;
 930	}
 931
 932	ret = nilfs_ioctl_move_blocks(inode->i_sb, &argv[0], kbufs[0]);
 933	if (ret < 0) {
 934		nilfs_err(inode->i_sb,
 935			  "error %d preparing GC: cannot read source blocks",
 936			  ret);
 937	} else {
 938		if (nilfs_sb_need_update(nilfs))
 939			set_nilfs_discontinued(nilfs);
 940		ret = nilfs_clean_segments(inode->i_sb, argv, kbufs);
 941	}
 942
 943	nilfs_remove_all_gcinodes(nilfs);
 944	clear_nilfs_gc_running(nilfs);
 945
 946out_free:
 947	while (--n >= 0)
 948		vfree(kbufs[n]);
 949	kfree(kbufs[4]);
 950out:
 951	mnt_drop_write_file(filp);
 952	return ret;
 953}
 954
 955/**
 956 * nilfs_ioctl_sync - make a checkpoint
 957 * @inode: inode object
 958 * @filp: file object
 959 * @cmd: ioctl's request code
 960 * @argp: pointer on argument from userspace
 961 *
 962 * Description: nilfs_ioctl_sync() function constructs a logical segment
 963 * for checkpointing.  This function guarantees that all modified data
 964 * and metadata are written out to the device when it successfully
 965 * returned.
 966 *
 967 * Return Value: On success, 0 is retured. On errors, one of the following
 968 * negative error code is returned.
 969 *
 970 * %-EROFS - Read only filesystem.
 971 *
 972 * %-EIO - I/O error
 973 *
 974 * %-ENOSPC - No space left on device (only in a panic state).
 975 *
 976 * %-ERESTARTSYS - Interrupted.
 977 *
 978 * %-ENOMEM - Insufficient memory available.
 979 *
 980 * %-EFAULT - Failure during execution of requested operation.
 981 */
 982static int nilfs_ioctl_sync(struct inode *inode, struct file *filp,
 983			    unsigned int cmd, void __user *argp)
 984{
 985	__u64 cno;
 986	int ret;
 987	struct the_nilfs *nilfs;
 988
 989	ret = nilfs_construct_segment(inode->i_sb);
 990	if (ret < 0)
 991		return ret;
 992
 993	nilfs = inode->i_sb->s_fs_info;
 994	ret = nilfs_flush_device(nilfs);
 995	if (ret < 0)
 996		return ret;
 
 
 997
 998	if (argp != NULL) {
 999		down_read(&nilfs->ns_segctor_sem);
1000		cno = nilfs->ns_cno - 1;
1001		up_read(&nilfs->ns_segctor_sem);
1002		if (copy_to_user(argp, &cno, sizeof(cno)))
1003			return -EFAULT;
1004	}
1005	return 0;
1006}
1007
1008/**
1009 * nilfs_ioctl_resize - resize NILFS2 volume
1010 * @inode: inode object
1011 * @filp: file object
1012 * @argp: pointer on argument from userspace
1013 *
1014 * Return Value: On success, 0 is returned or error code, otherwise.
1015 */
1016static int nilfs_ioctl_resize(struct inode *inode, struct file *filp,
1017			      void __user *argp)
1018{
1019	__u64 newsize;
1020	int ret = -EPERM;
1021
1022	if (!capable(CAP_SYS_ADMIN))
1023		goto out;
1024
1025	ret = mnt_want_write_file(filp);
1026	if (ret)
1027		goto out;
1028
1029	ret = -EFAULT;
1030	if (copy_from_user(&newsize, argp, sizeof(newsize)))
1031		goto out_drop_write;
1032
1033	ret = nilfs_resize_fs(inode->i_sb, newsize);
1034
1035out_drop_write:
1036	mnt_drop_write_file(filp);
1037out:
1038	return ret;
1039}
1040
1041/**
1042 * nilfs_ioctl_trim_fs() - trim ioctl handle function
1043 * @inode: inode object
1044 * @argp: pointer on argument from userspace
1045 *
1046 * Description: nilfs_ioctl_trim_fs is the FITRIM ioctl handle function. It
1047 * checks the arguments from userspace and calls nilfs_sufile_trim_fs, which
1048 * performs the actual trim operation.
1049 *
1050 * Return Value: On success, 0 is returned or negative error code, otherwise.
1051 */
1052static int nilfs_ioctl_trim_fs(struct inode *inode, void __user *argp)
1053{
1054	struct the_nilfs *nilfs = inode->i_sb->s_fs_info;
 
1055	struct fstrim_range range;
1056	int ret;
1057
1058	if (!capable(CAP_SYS_ADMIN))
1059		return -EPERM;
1060
1061	if (!bdev_max_discard_sectors(nilfs->ns_bdev))
1062		return -EOPNOTSUPP;
1063
1064	if (copy_from_user(&range, argp, sizeof(range)))
1065		return -EFAULT;
1066
1067	range.minlen = max_t(u64, range.minlen,
1068			     bdev_discard_granularity(nilfs->ns_bdev));
1069
1070	down_read(&nilfs->ns_segctor_sem);
1071	ret = nilfs_sufile_trim_fs(nilfs->ns_sufile, &range);
1072	up_read(&nilfs->ns_segctor_sem);
1073
1074	if (ret < 0)
1075		return ret;
1076
1077	if (copy_to_user(argp, &range, sizeof(range)))
1078		return -EFAULT;
1079
1080	return 0;
1081}
1082
1083/**
1084 * nilfs_ioctl_set_alloc_range - limit range of segments to be allocated
1085 * @inode: inode object
1086 * @argp: pointer on argument from userspace
1087 *
1088 * Description: nilfs_ioctl_set_alloc_range() function defines lower limit
1089 * of segments in bytes and upper limit of segments in bytes.
1090 * The NILFS_IOCTL_SET_ALLOC_RANGE is used by nilfs_resize utility.
1091 *
1092 * Return Value: On success, 0 is returned or error code, otherwise.
1093 */
1094static int nilfs_ioctl_set_alloc_range(struct inode *inode, void __user *argp)
1095{
1096	struct the_nilfs *nilfs = inode->i_sb->s_fs_info;
1097	__u64 range[2];
1098	__u64 minseg, maxseg;
1099	unsigned long segbytes;
1100	int ret = -EPERM;
1101
1102	if (!capable(CAP_SYS_ADMIN))
1103		goto out;
1104
1105	ret = -EFAULT;
1106	if (copy_from_user(range, argp, sizeof(__u64[2])))
1107		goto out;
1108
1109	ret = -ERANGE;
1110	if (range[1] > bdev_nr_bytes(inode->i_sb->s_bdev))
1111		goto out;
1112
1113	segbytes = nilfs->ns_blocks_per_segment * nilfs->ns_blocksize;
1114
1115	minseg = range[0] + segbytes - 1;
1116	do_div(minseg, segbytes);
1117
1118	if (range[1] < 4096)
1119		goto out;
1120
1121	maxseg = NILFS_SB2_OFFSET_BYTES(range[1]);
1122	if (maxseg < segbytes)
1123		goto out;
1124
1125	do_div(maxseg, segbytes);
1126	maxseg--;
1127
1128	ret = nilfs_sufile_set_alloc_range(nilfs->ns_sufile, minseg, maxseg);
1129out:
1130	return ret;
1131}
1132
1133/**
1134 * nilfs_ioctl_get_info - wrapping function of get metadata info
1135 * @inode: inode object
1136 * @filp: file object
1137 * @cmd: ioctl's request code
1138 * @argp: pointer on argument from userspace
1139 * @membsz: size of an item in bytes
1140 * @dofunc: concrete function of getting metadata info
1141 *
1142 * Description: nilfs_ioctl_get_info() gets metadata info by means of
1143 * calling dofunc() function.
1144 *
1145 * Return Value: On success, 0 is returned and requested metadata info
1146 * is copied into userspace. On error, one of the following
1147 * negative error codes is returned.
1148 *
1149 * %-EINVAL - Invalid arguments from userspace.
1150 *
1151 * %-ENOMEM - Insufficient amount of memory available.
1152 *
1153 * %-EFAULT - Failure during execution of requested operation.
1154 */
1155static int nilfs_ioctl_get_info(struct inode *inode, struct file *filp,
1156				unsigned int cmd, void __user *argp,
1157				size_t membsz,
1158				ssize_t (*dofunc)(struct the_nilfs *,
1159						  __u64 *, int,
1160						  void *, size_t, size_t))
1161
1162{
1163	struct the_nilfs *nilfs = inode->i_sb->s_fs_info;
1164	struct nilfs_argv argv;
1165	int ret;
1166
1167	if (copy_from_user(&argv, argp, sizeof(argv)))
1168		return -EFAULT;
1169
1170	if (argv.v_size < membsz)
1171		return -EINVAL;
1172
1173	ret = nilfs_ioctl_wrap_copy(nilfs, &argv, _IOC_DIR(cmd), dofunc);
1174	if (ret < 0)
1175		return ret;
1176
1177	if (copy_to_user(argp, &argv, sizeof(argv)))
1178		ret = -EFAULT;
1179	return ret;
1180}
1181
1182/**
1183 * nilfs_ioctl_set_suinfo - set segment usage info
1184 * @inode: inode object
1185 * @filp: file object
1186 * @cmd: ioctl's request code
1187 * @argp: pointer on argument from userspace
1188 *
1189 * Description: Expects an array of nilfs_suinfo_update structures
1190 * encapsulated in nilfs_argv and updates the segment usage info
1191 * according to the flags in nilfs_suinfo_update.
1192 *
1193 * Return Value: On success, 0 is returned. On error, one of the
1194 * following negative error codes is returned.
1195 *
1196 * %-EPERM - Not enough permissions
1197 *
1198 * %-EFAULT - Error copying input data
1199 *
1200 * %-EIO - I/O error.
1201 *
1202 * %-ENOMEM - Insufficient amount of memory available.
1203 *
1204 * %-EINVAL - Invalid values in input (segment number, flags or nblocks)
1205 */
1206static int nilfs_ioctl_set_suinfo(struct inode *inode, struct file *filp,
1207				unsigned int cmd, void __user *argp)
1208{
1209	struct the_nilfs *nilfs = inode->i_sb->s_fs_info;
1210	struct nilfs_transaction_info ti;
1211	struct nilfs_argv argv;
1212	size_t len;
1213	void __user *base;
1214	void *kbuf;
1215	int ret;
1216
1217	if (!capable(CAP_SYS_ADMIN))
1218		return -EPERM;
1219
1220	ret = mnt_want_write_file(filp);
1221	if (ret)
1222		return ret;
1223
1224	ret = -EFAULT;
1225	if (copy_from_user(&argv, argp, sizeof(argv)))
1226		goto out;
1227
1228	ret = -EINVAL;
1229	if (argv.v_size < sizeof(struct nilfs_suinfo_update))
1230		goto out;
1231
1232	if (argv.v_nmembs > nilfs->ns_nsegments)
1233		goto out;
1234
1235	if (argv.v_nmembs >= UINT_MAX / argv.v_size)
1236		goto out;
1237
1238	len = argv.v_size * argv.v_nmembs;
1239	if (!len) {
1240		ret = 0;
1241		goto out;
1242	}
1243
1244	base = (void __user *)(unsigned long)argv.v_base;
1245	kbuf = vmalloc(len);
1246	if (!kbuf) {
1247		ret = -ENOMEM;
1248		goto out;
1249	}
1250
1251	if (copy_from_user(kbuf, base, len)) {
1252		ret = -EFAULT;
1253		goto out_free;
1254	}
1255
1256	nilfs_transaction_begin(inode->i_sb, &ti, 0);
1257	ret = nilfs_sufile_set_suinfo(nilfs->ns_sufile, kbuf, argv.v_size,
1258			argv.v_nmembs);
1259	if (unlikely(ret < 0))
1260		nilfs_transaction_abort(inode->i_sb);
1261	else
1262		nilfs_transaction_commit(inode->i_sb); /* never fails */
1263
1264out_free:
1265	vfree(kbuf);
1266out:
1267	mnt_drop_write_file(filp);
1268	return ret;
1269}
1270
1271long nilfs_ioctl(struct file *filp, unsigned int cmd, unsigned long arg)
1272{
1273	struct inode *inode = file_inode(filp);
1274	void __user *argp = (void __user *)arg;
1275
1276	switch (cmd) {
 
 
 
 
1277	case FS_IOC_GETVERSION:
1278		return nilfs_ioctl_getversion(inode, argp);
1279	case NILFS_IOCTL_CHANGE_CPMODE:
1280		return nilfs_ioctl_change_cpmode(inode, filp, cmd, argp);
1281	case NILFS_IOCTL_DELETE_CHECKPOINT:
1282		return nilfs_ioctl_delete_checkpoint(inode, filp, cmd, argp);
1283	case NILFS_IOCTL_GET_CPINFO:
1284		return nilfs_ioctl_get_info(inode, filp, cmd, argp,
1285					    sizeof(struct nilfs_cpinfo),
1286					    nilfs_ioctl_do_get_cpinfo);
1287	case NILFS_IOCTL_GET_CPSTAT:
1288		return nilfs_ioctl_get_cpstat(inode, filp, cmd, argp);
1289	case NILFS_IOCTL_GET_SUINFO:
1290		return nilfs_ioctl_get_info(inode, filp, cmd, argp,
1291					    sizeof(struct nilfs_suinfo),
1292					    nilfs_ioctl_do_get_suinfo);
1293	case NILFS_IOCTL_SET_SUINFO:
1294		return nilfs_ioctl_set_suinfo(inode, filp, cmd, argp);
1295	case NILFS_IOCTL_GET_SUSTAT:
1296		return nilfs_ioctl_get_sustat(inode, filp, cmd, argp);
1297	case NILFS_IOCTL_GET_VINFO:
1298		return nilfs_ioctl_get_info(inode, filp, cmd, argp,
1299					    sizeof(struct nilfs_vinfo),
1300					    nilfs_ioctl_do_get_vinfo);
1301	case NILFS_IOCTL_GET_BDESCS:
1302		return nilfs_ioctl_get_bdescs(inode, filp, cmd, argp);
1303	case NILFS_IOCTL_CLEAN_SEGMENTS:
1304		return nilfs_ioctl_clean_segments(inode, filp, cmd, argp);
1305	case NILFS_IOCTL_SYNC:
1306		return nilfs_ioctl_sync(inode, filp, cmd, argp);
1307	case NILFS_IOCTL_RESIZE:
1308		return nilfs_ioctl_resize(inode, filp, argp);
1309	case NILFS_IOCTL_SET_ALLOC_RANGE:
1310		return nilfs_ioctl_set_alloc_range(inode, argp);
1311	case FITRIM:
1312		return nilfs_ioctl_trim_fs(inode, argp);
1313	default:
1314		return -ENOTTY;
1315	}
1316}
1317
1318#ifdef CONFIG_COMPAT
1319long nilfs_compat_ioctl(struct file *filp, unsigned int cmd, unsigned long arg)
1320{
1321	switch (cmd) {
 
 
 
 
 
 
1322	case FS_IOC32_GETVERSION:
1323		cmd = FS_IOC_GETVERSION;
1324		break;
1325	case NILFS_IOCTL_CHANGE_CPMODE:
1326	case NILFS_IOCTL_DELETE_CHECKPOINT:
1327	case NILFS_IOCTL_GET_CPINFO:
1328	case NILFS_IOCTL_GET_CPSTAT:
1329	case NILFS_IOCTL_GET_SUINFO:
1330	case NILFS_IOCTL_SET_SUINFO:
1331	case NILFS_IOCTL_GET_SUSTAT:
1332	case NILFS_IOCTL_GET_VINFO:
1333	case NILFS_IOCTL_GET_BDESCS:
1334	case NILFS_IOCTL_CLEAN_SEGMENTS:
1335	case NILFS_IOCTL_SYNC:
1336	case NILFS_IOCTL_RESIZE:
1337	case NILFS_IOCTL_SET_ALLOC_RANGE:
1338	case FITRIM:
1339		break;
1340	default:
1341		return -ENOIOCTLCMD;
1342	}
1343	return nilfs_ioctl(filp, cmd, (unsigned long)compat_ptr(arg));
1344}
1345#endif
v3.15
 
   1/*
   2 * ioctl.c - NILFS ioctl operations.
   3 *
   4 * Copyright (C) 2007, 2008 Nippon Telegraph and Telephone Corporation.
   5 *
   6 * This program is free software; you can redistribute it and/or modify
   7 * it under the terms of the GNU General Public License as published by
   8 * the Free Software Foundation; either version 2 of the License, or
   9 * (at your option) any later version.
  10 *
  11 * This program is distributed in the hope that it will be useful,
  12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14 * GNU General Public License for more details.
  15 *
  16 * You should have received a copy of the GNU General Public License
  17 * along with this program; if not, write to the Free Software
  18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
  19 *
  20 * Written by Koji Sato <koji@osrg.net>.
  21 */
  22
  23#include <linux/fs.h>
  24#include <linux/wait.h>
  25#include <linux/slab.h>
  26#include <linux/capability.h>	/* capable() */
  27#include <linux/uaccess.h>	/* copy_from_user(), copy_to_user() */
  28#include <linux/vmalloc.h>
  29#include <linux/compat.h>	/* compat_ptr() */
  30#include <linux/mount.h>	/* mnt_want_write_file(), mnt_drop_write_file() */
  31#include <linux/buffer_head.h>
  32#include <linux/nilfs2_fs.h>
  33#include "nilfs.h"
  34#include "segment.h"
  35#include "bmap.h"
  36#include "cpfile.h"
  37#include "sufile.h"
  38#include "dat.h"
  39
  40/**
  41 * nilfs_ioctl_wrap_copy - wrapping function of get/set metadata info
  42 * @nilfs: nilfs object
  43 * @argv: vector of arguments from userspace
  44 * @dir: set of direction flags
  45 * @dofunc: concrete function of get/set metadata info
  46 *
  47 * Description: nilfs_ioctl_wrap_copy() gets/sets metadata info by means of
  48 * calling dofunc() function on the basis of @argv argument.
  49 *
  50 * Return Value: On success, 0 is returned and requested metadata info
  51 * is copied into userspace. On error, one of the following
  52 * negative error codes is returned.
  53 *
  54 * %-EINVAL - Invalid arguments from userspace.
  55 *
  56 * %-ENOMEM - Insufficient amount of memory available.
  57 *
  58 * %-EFAULT - Failure during execution of requested operation.
  59 */
  60static int nilfs_ioctl_wrap_copy(struct the_nilfs *nilfs,
  61				 struct nilfs_argv *argv, int dir,
  62				 ssize_t (*dofunc)(struct the_nilfs *,
  63						   __u64 *, int,
  64						   void *, size_t, size_t))
  65{
  66	void *buf;
  67	void __user *base = (void __user *)(unsigned long)argv->v_base;
  68	size_t maxmembs, total, n;
  69	ssize_t nr;
  70	int ret, i;
  71	__u64 pos, ppos;
  72
  73	if (argv->v_nmembs == 0)
  74		return 0;
  75
  76	if (argv->v_size > PAGE_SIZE)
  77		return -EINVAL;
  78
  79	/*
  80	 * Reject pairs of a start item position (argv->v_index) and a
  81	 * total count (argv->v_nmembs) which leads position 'pos' to
  82	 * overflow by the increment at the end of the loop.
  83	 */
  84	if (argv->v_index > ~(__u64)0 - argv->v_nmembs)
  85		return -EINVAL;
  86
  87	buf = (void *)__get_free_pages(GFP_NOFS, 0);
  88	if (unlikely(!buf))
  89		return -ENOMEM;
  90	maxmembs = PAGE_SIZE / argv->v_size;
  91
  92	ret = 0;
  93	total = 0;
  94	pos = argv->v_index;
  95	for (i = 0; i < argv->v_nmembs; i += n) {
  96		n = (argv->v_nmembs - i < maxmembs) ?
  97			argv->v_nmembs - i : maxmembs;
  98		if ((dir & _IOC_WRITE) &&
  99		    copy_from_user(buf, base + argv->v_size * i,
 100				   argv->v_size * n)) {
 101			ret = -EFAULT;
 102			break;
 103		}
 104		ppos = pos;
 105		nr = dofunc(nilfs, &pos, argv->v_flags, buf, argv->v_size,
 106			       n);
 107		if (nr < 0) {
 108			ret = nr;
 109			break;
 110		}
 111		if ((dir & _IOC_READ) &&
 112		    copy_to_user(base + argv->v_size * i, buf,
 113				 argv->v_size * nr)) {
 114			ret = -EFAULT;
 115			break;
 116		}
 117		total += nr;
 118		if ((size_t)nr < n)
 119			break;
 120		if (pos == ppos)
 121			pos += n;
 122	}
 123	argv->v_nmembs = total;
 124
 125	free_pages((unsigned long)buf, 0);
 126	return ret;
 127}
 128
 129/**
 130 * nilfs_ioctl_getflags - ioctl to support lsattr
 131 */
 132static int nilfs_ioctl_getflags(struct inode *inode, void __user *argp)
 133{
 134	unsigned int flags = NILFS_I(inode)->i_flags & FS_FL_USER_VISIBLE;
 
 
 135
 136	return put_user(flags, (int __user *)argp);
 137}
 138
 139/**
 140 * nilfs_ioctl_setflags - ioctl to support chattr
 141 */
 142static int nilfs_ioctl_setflags(struct inode *inode, struct file *filp,
 143				void __user *argp)
 144{
 
 145	struct nilfs_transaction_info ti;
 146	unsigned int flags, oldflags;
 147	int ret;
 148
 149	if (!inode_owner_or_capable(inode))
 150		return -EACCES;
 151
 152	if (get_user(flags, (int __user *)argp))
 153		return -EFAULT;
 154
 155	ret = mnt_want_write_file(filp);
 156	if (ret)
 157		return ret;
 158
 159	flags = nilfs_mask_flags(inode->i_mode, flags);
 160
 161	mutex_lock(&inode->i_mutex);
 162
 163	oldflags = NILFS_I(inode)->i_flags;
 164
 165	/*
 166	 * The IMMUTABLE and APPEND_ONLY flags can only be changed by the
 167	 * relevant capability.
 168	 */
 169	ret = -EPERM;
 170	if (((flags ^ oldflags) & (FS_APPEND_FL | FS_IMMUTABLE_FL)) &&
 171	    !capable(CAP_LINUX_IMMUTABLE))
 172		goto out;
 173
 174	ret = nilfs_transaction_begin(inode->i_sb, &ti, 0);
 175	if (ret)
 176		goto out;
 177
 178	NILFS_I(inode)->i_flags = (oldflags & ~FS_FL_USER_MODIFIABLE) |
 179		(flags & FS_FL_USER_MODIFIABLE);
 180
 181	nilfs_set_inode_flags(inode);
 182	inode->i_ctime = CURRENT_TIME;
 183	if (IS_SYNC(inode))
 184		nilfs_set_transaction_flag(NILFS_TI_SYNC);
 185
 186	nilfs_mark_inode_dirty(inode);
 187	ret = nilfs_transaction_commit(inode->i_sb);
 188out:
 189	mutex_unlock(&inode->i_mutex);
 190	mnt_drop_write_file(filp);
 191	return ret;
 192}
 193
 194/**
 195 * nilfs_ioctl_getversion - get info about a file's version (generation number)
 196 */
 197static int nilfs_ioctl_getversion(struct inode *inode, void __user *argp)
 198{
 199	return put_user(inode->i_generation, (int __user *)argp);
 200}
 201
 202/**
 203 * nilfs_ioctl_change_cpmode - change checkpoint mode (checkpoint/snapshot)
 204 * @inode: inode object
 205 * @filp: file object
 206 * @cmd: ioctl's request code
 207 * @argp: pointer on argument from userspace
 208 *
 209 * Description: nilfs_ioctl_change_cpmode() function changes mode of
 210 * given checkpoint between checkpoint and snapshot state. This ioctl
 211 * is used in chcp and mkcp utilities.
 212 *
 213 * Return Value: On success, 0 is returned and mode of a checkpoint is
 214 * changed. On error, one of the following negative error codes
 215 * is returned.
 216 *
 217 * %-EPERM - Operation not permitted.
 218 *
 219 * %-EFAULT - Failure during checkpoint mode changing.
 220 */
 221static int nilfs_ioctl_change_cpmode(struct inode *inode, struct file *filp,
 222				     unsigned int cmd, void __user *argp)
 223{
 224	struct the_nilfs *nilfs = inode->i_sb->s_fs_info;
 225	struct nilfs_transaction_info ti;
 226	struct nilfs_cpmode cpmode;
 227	int ret;
 228
 229	if (!capable(CAP_SYS_ADMIN))
 230		return -EPERM;
 231
 232	ret = mnt_want_write_file(filp);
 233	if (ret)
 234		return ret;
 235
 236	ret = -EFAULT;
 237	if (copy_from_user(&cpmode, argp, sizeof(cpmode)))
 238		goto out;
 239
 240	mutex_lock(&nilfs->ns_snapshot_mount_mutex);
 241
 242	nilfs_transaction_begin(inode->i_sb, &ti, 0);
 243	ret = nilfs_cpfile_change_cpmode(
 244		nilfs->ns_cpfile, cpmode.cm_cno, cpmode.cm_mode);
 245	if (unlikely(ret < 0))
 246		nilfs_transaction_abort(inode->i_sb);
 247	else
 248		nilfs_transaction_commit(inode->i_sb); /* never fails */
 249
 250	mutex_unlock(&nilfs->ns_snapshot_mount_mutex);
 251out:
 252	mnt_drop_write_file(filp);
 253	return ret;
 254}
 255
 256/**
 257 * nilfs_ioctl_delete_checkpoint - remove checkpoint
 258 * @inode: inode object
 259 * @filp: file object
 260 * @cmd: ioctl's request code
 261 * @argp: pointer on argument from userspace
 262 *
 263 * Description: nilfs_ioctl_delete_checkpoint() function removes
 264 * checkpoint from NILFS2 file system. This ioctl is used in rmcp
 265 * utility.
 266 *
 267 * Return Value: On success, 0 is returned and a checkpoint is
 268 * removed. On error, one of the following negative error codes
 269 * is returned.
 270 *
 271 * %-EPERM - Operation not permitted.
 272 *
 273 * %-EFAULT - Failure during checkpoint removing.
 274 */
 275static int
 276nilfs_ioctl_delete_checkpoint(struct inode *inode, struct file *filp,
 277			      unsigned int cmd, void __user *argp)
 278{
 279	struct the_nilfs *nilfs = inode->i_sb->s_fs_info;
 280	struct nilfs_transaction_info ti;
 281	__u64 cno;
 282	int ret;
 283
 284	if (!capable(CAP_SYS_ADMIN))
 285		return -EPERM;
 286
 287	ret = mnt_want_write_file(filp);
 288	if (ret)
 289		return ret;
 290
 291	ret = -EFAULT;
 292	if (copy_from_user(&cno, argp, sizeof(cno)))
 293		goto out;
 294
 295	nilfs_transaction_begin(inode->i_sb, &ti, 0);
 296	ret = nilfs_cpfile_delete_checkpoint(nilfs->ns_cpfile, cno);
 297	if (unlikely(ret < 0))
 298		nilfs_transaction_abort(inode->i_sb);
 299	else
 300		nilfs_transaction_commit(inode->i_sb); /* never fails */
 301out:
 302	mnt_drop_write_file(filp);
 303	return ret;
 304}
 305
 306/**
 307 * nilfs_ioctl_do_get_cpinfo - callback method getting info about checkpoints
 308 * @nilfs: nilfs object
 309 * @posp: pointer on array of checkpoint's numbers
 310 * @flags: checkpoint mode (checkpoint or snapshot)
 311 * @buf: buffer for storing checkponts' info
 312 * @size: size in bytes of one checkpoint info item in array
 313 * @nmembs: number of checkpoints in array (numbers and infos)
 314 *
 315 * Description: nilfs_ioctl_do_get_cpinfo() function returns info about
 316 * requested checkpoints. The NILFS_IOCTL_GET_CPINFO ioctl is used in
 317 * lscp utility and by nilfs_cleanerd daemon.
 318 *
 319 * Return value: count of nilfs_cpinfo structures in output buffer.
 320 */
 321static ssize_t
 322nilfs_ioctl_do_get_cpinfo(struct the_nilfs *nilfs, __u64 *posp, int flags,
 323			  void *buf, size_t size, size_t nmembs)
 324{
 325	int ret;
 326
 327	down_read(&nilfs->ns_segctor_sem);
 328	ret = nilfs_cpfile_get_cpinfo(nilfs->ns_cpfile, posp, flags, buf,
 329				      size, nmembs);
 330	up_read(&nilfs->ns_segctor_sem);
 331	return ret;
 332}
 333
 334/**
 335 * nilfs_ioctl_get_cpstat - get checkpoints statistics
 336 * @inode: inode object
 337 * @filp: file object
 338 * @cmd: ioctl's request code
 339 * @argp: pointer on argument from userspace
 340 *
 341 * Description: nilfs_ioctl_get_cpstat() returns information about checkpoints.
 342 * The NILFS_IOCTL_GET_CPSTAT ioctl is used by lscp, rmcp utilities
 343 * and by nilfs_cleanerd daemon.
 344 *
 345 * Return Value: On success, 0 is returned, and checkpoints information is
 346 * copied into userspace pointer @argp. On error, one of the following
 347 * negative error codes is returned.
 348 *
 349 * %-EIO - I/O error.
 350 *
 351 * %-ENOMEM - Insufficient amount of memory available.
 352 *
 353 * %-EFAULT - Failure during getting checkpoints statistics.
 354 */
 355static int nilfs_ioctl_get_cpstat(struct inode *inode, struct file *filp,
 356				  unsigned int cmd, void __user *argp)
 357{
 358	struct the_nilfs *nilfs = inode->i_sb->s_fs_info;
 359	struct nilfs_cpstat cpstat;
 360	int ret;
 361
 362	down_read(&nilfs->ns_segctor_sem);
 363	ret = nilfs_cpfile_get_stat(nilfs->ns_cpfile, &cpstat);
 364	up_read(&nilfs->ns_segctor_sem);
 365	if (ret < 0)
 366		return ret;
 367
 368	if (copy_to_user(argp, &cpstat, sizeof(cpstat)))
 369		ret = -EFAULT;
 370	return ret;
 371}
 372
 373/**
 374 * nilfs_ioctl_do_get_suinfo - callback method getting segment usage info
 375 * @nilfs: nilfs object
 376 * @posp: pointer on array of segment numbers
 377 * @flags: *not used*
 378 * @buf: buffer for storing suinfo array
 379 * @size: size in bytes of one suinfo item in array
 380 * @nmembs: count of segment numbers and suinfos in array
 381 *
 382 * Description: nilfs_ioctl_do_get_suinfo() function returns segment usage
 383 * info about requested segments. The NILFS_IOCTL_GET_SUINFO ioctl is used
 384 * in lssu, nilfs_resize utilities and by nilfs_cleanerd daemon.
 385 *
 386 * Return value: count of nilfs_suinfo structures in output buffer.
 387 */
 388static ssize_t
 389nilfs_ioctl_do_get_suinfo(struct the_nilfs *nilfs, __u64 *posp, int flags,
 390			  void *buf, size_t size, size_t nmembs)
 391{
 392	int ret;
 393
 394	down_read(&nilfs->ns_segctor_sem);
 395	ret = nilfs_sufile_get_suinfo(nilfs->ns_sufile, *posp, buf, size,
 396				      nmembs);
 397	up_read(&nilfs->ns_segctor_sem);
 398	return ret;
 399}
 400
 401/**
 402 * nilfs_ioctl_get_sustat - get segment usage statistics
 403 * @inode: inode object
 404 * @filp: file object
 405 * @cmd: ioctl's request code
 406 * @argp: pointer on argument from userspace
 407 *
 408 * Description: nilfs_ioctl_get_sustat() returns segment usage statistics.
 409 * The NILFS_IOCTL_GET_SUSTAT ioctl is used in lssu, nilfs_resize utilities
 410 * and by nilfs_cleanerd daemon.
 411 *
 412 * Return Value: On success, 0 is returned, and segment usage information is
 413 * copied into userspace pointer @argp. On error, one of the following
 414 * negative error codes is returned.
 415 *
 416 * %-EIO - I/O error.
 417 *
 418 * %-ENOMEM - Insufficient amount of memory available.
 419 *
 420 * %-EFAULT - Failure during getting segment usage statistics.
 421 */
 422static int nilfs_ioctl_get_sustat(struct inode *inode, struct file *filp,
 423				  unsigned int cmd, void __user *argp)
 424{
 425	struct the_nilfs *nilfs = inode->i_sb->s_fs_info;
 426	struct nilfs_sustat sustat;
 427	int ret;
 428
 429	down_read(&nilfs->ns_segctor_sem);
 430	ret = nilfs_sufile_get_stat(nilfs->ns_sufile, &sustat);
 431	up_read(&nilfs->ns_segctor_sem);
 432	if (ret < 0)
 433		return ret;
 434
 435	if (copy_to_user(argp, &sustat, sizeof(sustat)))
 436		ret = -EFAULT;
 437	return ret;
 438}
 439
 440/**
 441 * nilfs_ioctl_do_get_vinfo - callback method getting virtual blocks info
 442 * @nilfs: nilfs object
 443 * @posp: *not used*
 444 * @flags: *not used*
 445 * @buf: buffer for storing array of nilfs_vinfo structures
 446 * @size: size in bytes of one vinfo item in array
 447 * @nmembs: count of vinfos in array
 448 *
 449 * Description: nilfs_ioctl_do_get_vinfo() function returns information
 450 * on virtual block addresses. The NILFS_IOCTL_GET_VINFO ioctl is used
 451 * by nilfs_cleanerd daemon.
 452 *
 453 * Return value: count of nilfs_vinfo structures in output buffer.
 454 */
 455static ssize_t
 456nilfs_ioctl_do_get_vinfo(struct the_nilfs *nilfs, __u64 *posp, int flags,
 457			 void *buf, size_t size, size_t nmembs)
 458{
 459	int ret;
 460
 461	down_read(&nilfs->ns_segctor_sem);
 462	ret = nilfs_dat_get_vinfo(nilfs->ns_dat, buf, size, nmembs);
 463	up_read(&nilfs->ns_segctor_sem);
 464	return ret;
 465}
 466
 467/**
 468 * nilfs_ioctl_do_get_bdescs - callback method getting disk block descriptors
 469 * @nilfs: nilfs object
 470 * @posp: *not used*
 471 * @flags: *not used*
 472 * @buf: buffer for storing array of nilfs_bdesc structures
 473 * @size: size in bytes of one bdesc item in array
 474 * @nmembs: count of bdescs in array
 475 *
 476 * Description: nilfs_ioctl_do_get_bdescs() function returns information
 477 * about descriptors of disk block numbers. The NILFS_IOCTL_GET_BDESCS ioctl
 478 * is used by nilfs_cleanerd daemon.
 479 *
 480 * Return value: count of nilfs_bdescs structures in output buffer.
 481 */
 482static ssize_t
 483nilfs_ioctl_do_get_bdescs(struct the_nilfs *nilfs, __u64 *posp, int flags,
 484			  void *buf, size_t size, size_t nmembs)
 485{
 486	struct nilfs_bmap *bmap = NILFS_I(nilfs->ns_dat)->i_bmap;
 487	struct nilfs_bdesc *bdescs = buf;
 488	int ret, i;
 489
 490	down_read(&nilfs->ns_segctor_sem);
 491	for (i = 0; i < nmembs; i++) {
 492		ret = nilfs_bmap_lookup_at_level(bmap,
 493						 bdescs[i].bd_offset,
 494						 bdescs[i].bd_level + 1,
 495						 &bdescs[i].bd_blocknr);
 496		if (ret < 0) {
 497			if (ret != -ENOENT) {
 498				up_read(&nilfs->ns_segctor_sem);
 499				return ret;
 500			}
 501			bdescs[i].bd_blocknr = 0;
 502		}
 503	}
 504	up_read(&nilfs->ns_segctor_sem);
 505	return nmembs;
 506}
 507
 508/**
 509 * nilfs_ioctl_get_bdescs - get disk block descriptors
 510 * @inode: inode object
 511 * @filp: file object
 512 * @cmd: ioctl's request code
 513 * @argp: pointer on argument from userspace
 514 *
 515 * Description: nilfs_ioctl_do_get_bdescs() function returns information
 516 * about descriptors of disk block numbers. The NILFS_IOCTL_GET_BDESCS ioctl
 517 * is used by nilfs_cleanerd daemon.
 518 *
 519 * Return Value: On success, 0 is returned, and disk block descriptors are
 520 * copied into userspace pointer @argp. On error, one of the following
 521 * negative error codes is returned.
 522 *
 523 * %-EINVAL - Invalid arguments from userspace.
 524 *
 525 * %-EIO - I/O error.
 526 *
 527 * %-ENOMEM - Insufficient amount of memory available.
 528 *
 529 * %-EFAULT - Failure during getting disk block descriptors.
 530 */
 531static int nilfs_ioctl_get_bdescs(struct inode *inode, struct file *filp,
 532				  unsigned int cmd, void __user *argp)
 533{
 534	struct the_nilfs *nilfs = inode->i_sb->s_fs_info;
 535	struct nilfs_argv argv;
 536	int ret;
 537
 538	if (copy_from_user(&argv, argp, sizeof(argv)))
 539		return -EFAULT;
 540
 541	if (argv.v_size != sizeof(struct nilfs_bdesc))
 542		return -EINVAL;
 543
 544	ret = nilfs_ioctl_wrap_copy(nilfs, &argv, _IOC_DIR(cmd),
 545				    nilfs_ioctl_do_get_bdescs);
 546	if (ret < 0)
 547		return ret;
 548
 549	if (copy_to_user(argp, &argv, sizeof(argv)))
 550		ret = -EFAULT;
 551	return ret;
 552}
 553
 554/**
 555 * nilfs_ioctl_move_inode_block - prepare data/node block for moving by GC
 556 * @inode: inode object
 557 * @vdesc: descriptor of virtual block number
 558 * @buffers: list of moving buffers
 559 *
 560 * Description: nilfs_ioctl_move_inode_block() function registers data/node
 561 * buffer in the GC pagecache and submit read request.
 562 *
 563 * Return Value: On success, 0 is returned. On error, one of the following
 564 * negative error codes is returned.
 565 *
 566 * %-EIO - I/O error.
 567 *
 568 * %-ENOMEM - Insufficient amount of memory available.
 569 *
 570 * %-ENOENT - Requested block doesn't exist.
 571 *
 572 * %-EEXIST - Blocks conflict is detected.
 573 */
 574static int nilfs_ioctl_move_inode_block(struct inode *inode,
 575					struct nilfs_vdesc *vdesc,
 576					struct list_head *buffers)
 577{
 578	struct buffer_head *bh;
 579	int ret;
 580
 581	if (vdesc->vd_flags == 0)
 582		ret = nilfs_gccache_submit_read_data(
 583			inode, vdesc->vd_offset, vdesc->vd_blocknr,
 584			vdesc->vd_vblocknr, &bh);
 585	else
 586		ret = nilfs_gccache_submit_read_node(
 587			inode, vdesc->vd_blocknr, vdesc->vd_vblocknr, &bh);
 588
 589	if (unlikely(ret < 0)) {
 590		if (ret == -ENOENT)
 591			printk(KERN_CRIT
 592			       "%s: invalid virtual block address (%s): "
 593			       "ino=%llu, cno=%llu, offset=%llu, "
 594			       "blocknr=%llu, vblocknr=%llu\n",
 595			       __func__, vdesc->vd_flags ? "node" : "data",
 596			       (unsigned long long)vdesc->vd_ino,
 597			       (unsigned long long)vdesc->vd_cno,
 598			       (unsigned long long)vdesc->vd_offset,
 599			       (unsigned long long)vdesc->vd_blocknr,
 600			       (unsigned long long)vdesc->vd_vblocknr);
 601		return ret;
 602	}
 603	if (unlikely(!list_empty(&bh->b_assoc_buffers))) {
 604		printk(KERN_CRIT "%s: conflicting %s buffer: ino=%llu, "
 605		       "cno=%llu, offset=%llu, blocknr=%llu, vblocknr=%llu\n",
 606		       __func__, vdesc->vd_flags ? "node" : "data",
 607		       (unsigned long long)vdesc->vd_ino,
 608		       (unsigned long long)vdesc->vd_cno,
 609		       (unsigned long long)vdesc->vd_offset,
 610		       (unsigned long long)vdesc->vd_blocknr,
 611		       (unsigned long long)vdesc->vd_vblocknr);
 612		brelse(bh);
 613		return -EEXIST;
 614	}
 615	list_add_tail(&bh->b_assoc_buffers, buffers);
 616	return 0;
 617}
 618
 619/**
 620 * nilfs_ioctl_move_blocks - move valid inode's blocks during garbage collection
 621 * @sb: superblock object
 622 * @argv: vector of arguments from userspace
 623 * @buf: array of nilfs_vdesc structures
 624 *
 625 * Description: nilfs_ioctl_move_blocks() function reads valid data/node
 626 * blocks that garbage collector specified with the array of nilfs_vdesc
 627 * structures and stores them into page caches of GC inodes.
 628 *
 629 * Return Value: Number of processed nilfs_vdesc structures or
 630 * error code, otherwise.
 631 */
 632static int nilfs_ioctl_move_blocks(struct super_block *sb,
 633				   struct nilfs_argv *argv, void *buf)
 634{
 635	size_t nmembs = argv->v_nmembs;
 636	struct the_nilfs *nilfs = sb->s_fs_info;
 637	struct inode *inode;
 638	struct nilfs_vdesc *vdesc;
 639	struct buffer_head *bh, *n;
 640	LIST_HEAD(buffers);
 641	ino_t ino;
 642	__u64 cno;
 643	int i, ret;
 644
 645	for (i = 0, vdesc = buf; i < nmembs; ) {
 646		ino = vdesc->vd_ino;
 647		cno = vdesc->vd_cno;
 648		inode = nilfs_iget_for_gc(sb, ino, cno);
 649		if (IS_ERR(inode)) {
 650			ret = PTR_ERR(inode);
 651			goto failed;
 652		}
 653		if (list_empty(&NILFS_I(inode)->i_dirty)) {
 654			/*
 655			 * Add the inode to GC inode list. Garbage Collection
 656			 * is serialized and no two processes manipulate the
 657			 * list simultaneously.
 658			 */
 659			igrab(inode);
 660			list_add(&NILFS_I(inode)->i_dirty,
 661				 &nilfs->ns_gc_inodes);
 662		}
 663
 664		do {
 665			ret = nilfs_ioctl_move_inode_block(inode, vdesc,
 666							   &buffers);
 667			if (unlikely(ret < 0)) {
 668				iput(inode);
 669				goto failed;
 670			}
 671			vdesc++;
 672		} while (++i < nmembs &&
 673			 vdesc->vd_ino == ino && vdesc->vd_cno == cno);
 674
 675		iput(inode); /* The inode still remains in GC inode list */
 676	}
 677
 678	list_for_each_entry_safe(bh, n, &buffers, b_assoc_buffers) {
 679		ret = nilfs_gccache_wait_and_mark_dirty(bh);
 680		if (unlikely(ret < 0)) {
 681			WARN_ON(ret == -EEXIST);
 682			goto failed;
 683		}
 684		list_del_init(&bh->b_assoc_buffers);
 685		brelse(bh);
 686	}
 687	return nmembs;
 688
 689 failed:
 690	list_for_each_entry_safe(bh, n, &buffers, b_assoc_buffers) {
 691		list_del_init(&bh->b_assoc_buffers);
 692		brelse(bh);
 693	}
 694	return ret;
 695}
 696
 697/**
 698 * nilfs_ioctl_delete_checkpoints - delete checkpoints
 699 * @nilfs: nilfs object
 700 * @argv: vector of arguments from userspace
 701 * @buf: array of periods of checkpoints numbers
 702 *
 703 * Description: nilfs_ioctl_delete_checkpoints() function deletes checkpoints
 704 * in the period from p_start to p_end, excluding p_end itself. The checkpoints
 705 * which have been already deleted are ignored.
 706 *
 707 * Return Value: Number of processed nilfs_period structures or
 708 * error code, otherwise.
 709 *
 710 * %-EIO - I/O error.
 711 *
 712 * %-ENOMEM - Insufficient amount of memory available.
 713 *
 714 * %-EINVAL - invalid checkpoints.
 715 */
 716static int nilfs_ioctl_delete_checkpoints(struct the_nilfs *nilfs,
 717					  struct nilfs_argv *argv, void *buf)
 718{
 719	size_t nmembs = argv->v_nmembs;
 720	struct inode *cpfile = nilfs->ns_cpfile;
 721	struct nilfs_period *periods = buf;
 722	int ret, i;
 723
 724	for (i = 0; i < nmembs; i++) {
 725		ret = nilfs_cpfile_delete_checkpoints(
 726			cpfile, periods[i].p_start, periods[i].p_end);
 727		if (ret < 0)
 728			return ret;
 729	}
 730	return nmembs;
 731}
 732
 733/**
 734 * nilfs_ioctl_free_vblocknrs - free virtual block numbers
 735 * @nilfs: nilfs object
 736 * @argv: vector of arguments from userspace
 737 * @buf: array of virtual block numbers
 738 *
 739 * Description: nilfs_ioctl_free_vblocknrs() function frees
 740 * the virtual block numbers specified by @buf and @argv->v_nmembs.
 741 *
 742 * Return Value: Number of processed virtual block numbers or
 743 * error code, otherwise.
 744 *
 745 * %-EIO - I/O error.
 746 *
 747 * %-ENOMEM - Insufficient amount of memory available.
 748 *
 749 * %-ENOENT - The virtual block number have not been allocated.
 750 */
 751static int nilfs_ioctl_free_vblocknrs(struct the_nilfs *nilfs,
 752				      struct nilfs_argv *argv, void *buf)
 753{
 754	size_t nmembs = argv->v_nmembs;
 755	int ret;
 756
 757	ret = nilfs_dat_freev(nilfs->ns_dat, buf, nmembs);
 758
 759	return (ret < 0) ? ret : nmembs;
 760}
 761
 762/**
 763 * nilfs_ioctl_mark_blocks_dirty - mark blocks dirty
 764 * @nilfs: nilfs object
 765 * @argv: vector of arguments from userspace
 766 * @buf: array of block descriptors
 767 *
 768 * Description: nilfs_ioctl_mark_blocks_dirty() function marks
 769 * metadata file or data blocks as dirty.
 770 *
 771 * Return Value: Number of processed block descriptors or
 772 * error code, otherwise.
 773 *
 774 * %-ENOMEM - Insufficient memory available.
 775 *
 776 * %-EIO - I/O error
 777 *
 778 * %-ENOENT - the specified block does not exist (hole block)
 779 */
 780static int nilfs_ioctl_mark_blocks_dirty(struct the_nilfs *nilfs,
 781					 struct nilfs_argv *argv, void *buf)
 782{
 783	size_t nmembs = argv->v_nmembs;
 784	struct nilfs_bmap *bmap = NILFS_I(nilfs->ns_dat)->i_bmap;
 785	struct nilfs_bdesc *bdescs = buf;
 
 786	int ret, i;
 787
 788	for (i = 0; i < nmembs; i++) {
 789		/* XXX: use macro or inline func to check liveness */
 790		ret = nilfs_bmap_lookup_at_level(bmap,
 791						 bdescs[i].bd_offset,
 792						 bdescs[i].bd_level + 1,
 793						 &bdescs[i].bd_blocknr);
 794		if (ret < 0) {
 795			if (ret != -ENOENT)
 796				return ret;
 797			bdescs[i].bd_blocknr = 0;
 798		}
 799		if (bdescs[i].bd_blocknr != bdescs[i].bd_oblocknr)
 800			/* skip dead block */
 801			continue;
 802		if (bdescs[i].bd_level == 0) {
 803			ret = nilfs_mdt_mark_block_dirty(nilfs->ns_dat,
 804							 bdescs[i].bd_offset);
 805			if (ret < 0) {
 
 806				WARN_ON(ret == -ENOENT);
 807				return ret;
 808			}
 
 
 
 809		} else {
 810			ret = nilfs_bmap_mark(bmap, bdescs[i].bd_offset,
 811					      bdescs[i].bd_level);
 812			if (ret < 0) {
 813				WARN_ON(ret == -ENOENT);
 814				return ret;
 815			}
 816		}
 817	}
 818	return nmembs;
 819}
 820
 821int nilfs_ioctl_prepare_clean_segments(struct the_nilfs *nilfs,
 822				       struct nilfs_argv *argv, void **kbufs)
 823{
 824	const char *msg;
 825	int ret;
 826
 827	ret = nilfs_ioctl_delete_checkpoints(nilfs, &argv[1], kbufs[1]);
 828	if (ret < 0) {
 829		/*
 830		 * can safely abort because checkpoints can be removed
 831		 * independently.
 832		 */
 833		msg = "cannot delete checkpoints";
 834		goto failed;
 835	}
 836	ret = nilfs_ioctl_free_vblocknrs(nilfs, &argv[2], kbufs[2]);
 837	if (ret < 0) {
 838		/*
 839		 * can safely abort because DAT file is updated atomically
 840		 * using a copy-on-write technique.
 841		 */
 842		msg = "cannot delete virtual blocks from DAT file";
 843		goto failed;
 844	}
 845	ret = nilfs_ioctl_mark_blocks_dirty(nilfs, &argv[3], kbufs[3]);
 846	if (ret < 0) {
 847		/*
 848		 * can safely abort because the operation is nondestructive.
 849		 */
 850		msg = "cannot mark copying blocks dirty";
 851		goto failed;
 852	}
 853	return 0;
 854
 855 failed:
 856	printk(KERN_ERR "NILFS: GC failed during preparation: %s: err=%d\n",
 857	       msg, ret);
 858	return ret;
 859}
 860
 861/**
 862 * nilfs_ioctl_clean_segments - clean segments
 863 * @inode: inode object
 864 * @filp: file object
 865 * @cmd: ioctl's request code
 866 * @argp: pointer on argument from userspace
 867 *
 868 * Description: nilfs_ioctl_clean_segments() function makes garbage
 869 * collection operation in the environment of requested parameters
 870 * from userspace. The NILFS_IOCTL_CLEAN_SEGMENTS ioctl is used by
 871 * nilfs_cleanerd daemon.
 872 *
 873 * Return Value: On success, 0 is returned or error code, otherwise.
 874 */
 875static int nilfs_ioctl_clean_segments(struct inode *inode, struct file *filp,
 876				      unsigned int cmd, void __user *argp)
 877{
 878	struct nilfs_argv argv[5];
 879	static const size_t argsz[5] = {
 880		sizeof(struct nilfs_vdesc),
 881		sizeof(struct nilfs_period),
 882		sizeof(__u64),
 883		sizeof(struct nilfs_bdesc),
 884		sizeof(__u64),
 885	};
 886	void __user *base;
 887	void *kbufs[5];
 888	struct the_nilfs *nilfs;
 889	size_t len, nsegs;
 890	int n, ret;
 891
 892	if (!capable(CAP_SYS_ADMIN))
 893		return -EPERM;
 894
 895	ret = mnt_want_write_file(filp);
 896	if (ret)
 897		return ret;
 898
 899	ret = -EFAULT;
 900	if (copy_from_user(argv, argp, sizeof(argv)))
 901		goto out;
 902
 903	ret = -EINVAL;
 904	nsegs = argv[4].v_nmembs;
 905	if (argv[4].v_size != argsz[4])
 906		goto out;
 907	if (nsegs > UINT_MAX / sizeof(__u64))
 908		goto out;
 909
 910	/*
 911	 * argv[4] points to segment numbers this ioctl cleans.  We
 912	 * use kmalloc() for its buffer because memory used for the
 913	 * segment numbers is enough small.
 914	 */
 915	kbufs[4] = memdup_user((void __user *)(unsigned long)argv[4].v_base,
 916			       nsegs * sizeof(__u64));
 917	if (IS_ERR(kbufs[4])) {
 918		ret = PTR_ERR(kbufs[4]);
 919		goto out;
 920	}
 921	nilfs = inode->i_sb->s_fs_info;
 922
 923	for (n = 0; n < 4; n++) {
 924		ret = -EINVAL;
 925		if (argv[n].v_size != argsz[n])
 926			goto out_free;
 927
 928		if (argv[n].v_nmembs > nsegs * nilfs->ns_blocks_per_segment)
 929			goto out_free;
 930
 931		if (argv[n].v_nmembs >= UINT_MAX / argv[n].v_size)
 932			goto out_free;
 933
 934		len = argv[n].v_size * argv[n].v_nmembs;
 935		base = (void __user *)(unsigned long)argv[n].v_base;
 936		if (len == 0) {
 937			kbufs[n] = NULL;
 938			continue;
 939		}
 940
 941		kbufs[n] = vmalloc(len);
 942		if (!kbufs[n]) {
 943			ret = -ENOMEM;
 944			goto out_free;
 945		}
 946		if (copy_from_user(kbufs[n], base, len)) {
 947			ret = -EFAULT;
 948			vfree(kbufs[n]);
 949			goto out_free;
 950		}
 951	}
 952
 953	/*
 954	 * nilfs_ioctl_move_blocks() will call nilfs_iget_for_gc(),
 955	 * which will operates an inode list without blocking.
 956	 * To protect the list from concurrent operations,
 957	 * nilfs_ioctl_move_blocks should be atomic operation.
 958	 */
 959	if (test_and_set_bit(THE_NILFS_GC_RUNNING, &nilfs->ns_flags)) {
 960		ret = -EBUSY;
 961		goto out_free;
 962	}
 963
 964	ret = nilfs_ioctl_move_blocks(inode->i_sb, &argv[0], kbufs[0]);
 965	if (ret < 0)
 966		printk(KERN_ERR "NILFS: GC failed during preparation: "
 967			"cannot read source blocks: err=%d\n", ret);
 968	else {
 
 969		if (nilfs_sb_need_update(nilfs))
 970			set_nilfs_discontinued(nilfs);
 971		ret = nilfs_clean_segments(inode->i_sb, argv, kbufs);
 972	}
 973
 974	nilfs_remove_all_gcinodes(nilfs);
 975	clear_nilfs_gc_running(nilfs);
 976
 977out_free:
 978	while (--n >= 0)
 979		vfree(kbufs[n]);
 980	kfree(kbufs[4]);
 981out:
 982	mnt_drop_write_file(filp);
 983	return ret;
 984}
 985
 986/**
 987 * nilfs_ioctl_sync - make a checkpoint
 988 * @inode: inode object
 989 * @filp: file object
 990 * @cmd: ioctl's request code
 991 * @argp: pointer on argument from userspace
 992 *
 993 * Description: nilfs_ioctl_sync() function constructs a logical segment
 994 * for checkpointing.  This function guarantees that all modified data
 995 * and metadata are written out to the device when it successfully
 996 * returned.
 997 *
 998 * Return Value: On success, 0 is retured. On errors, one of the following
 999 * negative error code is returned.
1000 *
1001 * %-EROFS - Read only filesystem.
1002 *
1003 * %-EIO - I/O error
1004 *
1005 * %-ENOSPC - No space left on device (only in a panic state).
1006 *
1007 * %-ERESTARTSYS - Interrupted.
1008 *
1009 * %-ENOMEM - Insufficient memory available.
1010 *
1011 * %-EFAULT - Failure during execution of requested operation.
1012 */
1013static int nilfs_ioctl_sync(struct inode *inode, struct file *filp,
1014			    unsigned int cmd, void __user *argp)
1015{
1016	__u64 cno;
1017	int ret;
1018	struct the_nilfs *nilfs;
1019
1020	ret = nilfs_construct_segment(inode->i_sb);
1021	if (ret < 0)
1022		return ret;
1023
1024	nilfs = inode->i_sb->s_fs_info;
1025	if (nilfs_test_opt(nilfs, BARRIER)) {
1026		ret = blkdev_issue_flush(inode->i_sb->s_bdev, GFP_KERNEL, NULL);
1027		if (ret == -EIO)
1028			return ret;
1029	}
1030
1031	if (argp != NULL) {
1032		down_read(&nilfs->ns_segctor_sem);
1033		cno = nilfs->ns_cno - 1;
1034		up_read(&nilfs->ns_segctor_sem);
1035		if (copy_to_user(argp, &cno, sizeof(cno)))
1036			return -EFAULT;
1037	}
1038	return 0;
1039}
1040
1041/**
1042 * nilfs_ioctl_resize - resize NILFS2 volume
1043 * @inode: inode object
1044 * @filp: file object
1045 * @argp: pointer on argument from userspace
1046 *
1047 * Return Value: On success, 0 is returned or error code, otherwise.
1048 */
1049static int nilfs_ioctl_resize(struct inode *inode, struct file *filp,
1050			      void __user *argp)
1051{
1052	__u64 newsize;
1053	int ret = -EPERM;
1054
1055	if (!capable(CAP_SYS_ADMIN))
1056		goto out;
1057
1058	ret = mnt_want_write_file(filp);
1059	if (ret)
1060		goto out;
1061
1062	ret = -EFAULT;
1063	if (copy_from_user(&newsize, argp, sizeof(newsize)))
1064		goto out_drop_write;
1065
1066	ret = nilfs_resize_fs(inode->i_sb, newsize);
1067
1068out_drop_write:
1069	mnt_drop_write_file(filp);
1070out:
1071	return ret;
1072}
1073
1074/**
1075 * nilfs_ioctl_trim_fs() - trim ioctl handle function
1076 * @inode: inode object
1077 * @argp: pointer on argument from userspace
1078 *
1079 * Decription: nilfs_ioctl_trim_fs is the FITRIM ioctl handle function. It
1080 * checks the arguments from userspace and calls nilfs_sufile_trim_fs, which
1081 * performs the actual trim operation.
1082 *
1083 * Return Value: On success, 0 is returned or negative error code, otherwise.
1084 */
1085static int nilfs_ioctl_trim_fs(struct inode *inode, void __user *argp)
1086{
1087	struct the_nilfs *nilfs = inode->i_sb->s_fs_info;
1088	struct request_queue *q = bdev_get_queue(nilfs->ns_bdev);
1089	struct fstrim_range range;
1090	int ret;
1091
1092	if (!capable(CAP_SYS_ADMIN))
1093		return -EPERM;
1094
1095	if (!blk_queue_discard(q))
1096		return -EOPNOTSUPP;
1097
1098	if (copy_from_user(&range, argp, sizeof(range)))
1099		return -EFAULT;
1100
1101	range.minlen = max_t(u64, range.minlen, q->limits.discard_granularity);
 
1102
1103	down_read(&nilfs->ns_segctor_sem);
1104	ret = nilfs_sufile_trim_fs(nilfs->ns_sufile, &range);
1105	up_read(&nilfs->ns_segctor_sem);
1106
1107	if (ret < 0)
1108		return ret;
1109
1110	if (copy_to_user(argp, &range, sizeof(range)))
1111		return -EFAULT;
1112
1113	return 0;
1114}
1115
1116/**
1117 * nilfs_ioctl_set_alloc_range - limit range of segments to be allocated
1118 * @inode: inode object
1119 * @argp: pointer on argument from userspace
1120 *
1121 * Decription: nilfs_ioctl_set_alloc_range() function defines lower limit
1122 * of segments in bytes and upper limit of segments in bytes.
1123 * The NILFS_IOCTL_SET_ALLOC_RANGE is used by nilfs_resize utility.
1124 *
1125 * Return Value: On success, 0 is returned or error code, otherwise.
1126 */
1127static int nilfs_ioctl_set_alloc_range(struct inode *inode, void __user *argp)
1128{
1129	struct the_nilfs *nilfs = inode->i_sb->s_fs_info;
1130	__u64 range[2];
1131	__u64 minseg, maxseg;
1132	unsigned long segbytes;
1133	int ret = -EPERM;
1134
1135	if (!capable(CAP_SYS_ADMIN))
1136		goto out;
1137
1138	ret = -EFAULT;
1139	if (copy_from_user(range, argp, sizeof(__u64[2])))
1140		goto out;
1141
1142	ret = -ERANGE;
1143	if (range[1] > i_size_read(inode->i_sb->s_bdev->bd_inode))
1144		goto out;
1145
1146	segbytes = nilfs->ns_blocks_per_segment * nilfs->ns_blocksize;
1147
1148	minseg = range[0] + segbytes - 1;
1149	do_div(minseg, segbytes);
 
 
 
 
1150	maxseg = NILFS_SB2_OFFSET_BYTES(range[1]);
 
 
 
1151	do_div(maxseg, segbytes);
1152	maxseg--;
1153
1154	ret = nilfs_sufile_set_alloc_range(nilfs->ns_sufile, minseg, maxseg);
1155out:
1156	return ret;
1157}
1158
1159/**
1160 * nilfs_ioctl_get_info - wrapping function of get metadata info
1161 * @inode: inode object
1162 * @filp: file object
1163 * @cmd: ioctl's request code
1164 * @argp: pointer on argument from userspace
1165 * @membsz: size of an item in bytes
1166 * @dofunc: concrete function of getting metadata info
1167 *
1168 * Description: nilfs_ioctl_get_info() gets metadata info by means of
1169 * calling dofunc() function.
1170 *
1171 * Return Value: On success, 0 is returned and requested metadata info
1172 * is copied into userspace. On error, one of the following
1173 * negative error codes is returned.
1174 *
1175 * %-EINVAL - Invalid arguments from userspace.
1176 *
1177 * %-ENOMEM - Insufficient amount of memory available.
1178 *
1179 * %-EFAULT - Failure during execution of requested operation.
1180 */
1181static int nilfs_ioctl_get_info(struct inode *inode, struct file *filp,
1182				unsigned int cmd, void __user *argp,
1183				size_t membsz,
1184				ssize_t (*dofunc)(struct the_nilfs *,
1185						  __u64 *, int,
1186						  void *, size_t, size_t))
1187
1188{
1189	struct the_nilfs *nilfs = inode->i_sb->s_fs_info;
1190	struct nilfs_argv argv;
1191	int ret;
1192
1193	if (copy_from_user(&argv, argp, sizeof(argv)))
1194		return -EFAULT;
1195
1196	if (argv.v_size < membsz)
1197		return -EINVAL;
1198
1199	ret = nilfs_ioctl_wrap_copy(nilfs, &argv, _IOC_DIR(cmd), dofunc);
1200	if (ret < 0)
1201		return ret;
1202
1203	if (copy_to_user(argp, &argv, sizeof(argv)))
1204		ret = -EFAULT;
1205	return ret;
1206}
1207
1208/**
1209 * nilfs_ioctl_set_suinfo - set segment usage info
1210 * @inode: inode object
1211 * @filp: file object
1212 * @cmd: ioctl's request code
1213 * @argp: pointer on argument from userspace
1214 *
1215 * Description: Expects an array of nilfs_suinfo_update structures
1216 * encapsulated in nilfs_argv and updates the segment usage info
1217 * according to the flags in nilfs_suinfo_update.
1218 *
1219 * Return Value: On success, 0 is returned. On error, one of the
1220 * following negative error codes is returned.
1221 *
1222 * %-EPERM - Not enough permissions
1223 *
1224 * %-EFAULT - Error copying input data
1225 *
1226 * %-EIO - I/O error.
1227 *
1228 * %-ENOMEM - Insufficient amount of memory available.
1229 *
1230 * %-EINVAL - Invalid values in input (segment number, flags or nblocks)
1231 */
1232static int nilfs_ioctl_set_suinfo(struct inode *inode, struct file *filp,
1233				unsigned int cmd, void __user *argp)
1234{
1235	struct the_nilfs *nilfs = inode->i_sb->s_fs_info;
1236	struct nilfs_transaction_info ti;
1237	struct nilfs_argv argv;
1238	size_t len;
1239	void __user *base;
1240	void *kbuf;
1241	int ret;
1242
1243	if (!capable(CAP_SYS_ADMIN))
1244		return -EPERM;
1245
1246	ret = mnt_want_write_file(filp);
1247	if (ret)
1248		return ret;
1249
1250	ret = -EFAULT;
1251	if (copy_from_user(&argv, argp, sizeof(argv)))
1252		goto out;
1253
1254	ret = -EINVAL;
1255	if (argv.v_size < sizeof(struct nilfs_suinfo_update))
1256		goto out;
1257
1258	if (argv.v_nmembs > nilfs->ns_nsegments)
1259		goto out;
1260
1261	if (argv.v_nmembs >= UINT_MAX / argv.v_size)
1262		goto out;
1263
1264	len = argv.v_size * argv.v_nmembs;
1265	if (!len) {
1266		ret = 0;
1267		goto out;
1268	}
1269
1270	base = (void __user *)(unsigned long)argv.v_base;
1271	kbuf = vmalloc(len);
1272	if (!kbuf) {
1273		ret = -ENOMEM;
1274		goto out;
1275	}
1276
1277	if (copy_from_user(kbuf, base, len)) {
1278		ret = -EFAULT;
1279		goto out_free;
1280	}
1281
1282	nilfs_transaction_begin(inode->i_sb, &ti, 0);
1283	ret = nilfs_sufile_set_suinfo(nilfs->ns_sufile, kbuf, argv.v_size,
1284			argv.v_nmembs);
1285	if (unlikely(ret < 0))
1286		nilfs_transaction_abort(inode->i_sb);
1287	else
1288		nilfs_transaction_commit(inode->i_sb); /* never fails */
1289
1290out_free:
1291	vfree(kbuf);
1292out:
1293	mnt_drop_write_file(filp);
1294	return ret;
1295}
1296
1297long nilfs_ioctl(struct file *filp, unsigned int cmd, unsigned long arg)
1298{
1299	struct inode *inode = file_inode(filp);
1300	void __user *argp = (void __user *)arg;
1301
1302	switch (cmd) {
1303	case FS_IOC_GETFLAGS:
1304		return nilfs_ioctl_getflags(inode, argp);
1305	case FS_IOC_SETFLAGS:
1306		return nilfs_ioctl_setflags(inode, filp, argp);
1307	case FS_IOC_GETVERSION:
1308		return nilfs_ioctl_getversion(inode, argp);
1309	case NILFS_IOCTL_CHANGE_CPMODE:
1310		return nilfs_ioctl_change_cpmode(inode, filp, cmd, argp);
1311	case NILFS_IOCTL_DELETE_CHECKPOINT:
1312		return nilfs_ioctl_delete_checkpoint(inode, filp, cmd, argp);
1313	case NILFS_IOCTL_GET_CPINFO:
1314		return nilfs_ioctl_get_info(inode, filp, cmd, argp,
1315					    sizeof(struct nilfs_cpinfo),
1316					    nilfs_ioctl_do_get_cpinfo);
1317	case NILFS_IOCTL_GET_CPSTAT:
1318		return nilfs_ioctl_get_cpstat(inode, filp, cmd, argp);
1319	case NILFS_IOCTL_GET_SUINFO:
1320		return nilfs_ioctl_get_info(inode, filp, cmd, argp,
1321					    sizeof(struct nilfs_suinfo),
1322					    nilfs_ioctl_do_get_suinfo);
1323	case NILFS_IOCTL_SET_SUINFO:
1324		return nilfs_ioctl_set_suinfo(inode, filp, cmd, argp);
1325	case NILFS_IOCTL_GET_SUSTAT:
1326		return nilfs_ioctl_get_sustat(inode, filp, cmd, argp);
1327	case NILFS_IOCTL_GET_VINFO:
1328		return nilfs_ioctl_get_info(inode, filp, cmd, argp,
1329					    sizeof(struct nilfs_vinfo),
1330					    nilfs_ioctl_do_get_vinfo);
1331	case NILFS_IOCTL_GET_BDESCS:
1332		return nilfs_ioctl_get_bdescs(inode, filp, cmd, argp);
1333	case NILFS_IOCTL_CLEAN_SEGMENTS:
1334		return nilfs_ioctl_clean_segments(inode, filp, cmd, argp);
1335	case NILFS_IOCTL_SYNC:
1336		return nilfs_ioctl_sync(inode, filp, cmd, argp);
1337	case NILFS_IOCTL_RESIZE:
1338		return nilfs_ioctl_resize(inode, filp, argp);
1339	case NILFS_IOCTL_SET_ALLOC_RANGE:
1340		return nilfs_ioctl_set_alloc_range(inode, argp);
1341	case FITRIM:
1342		return nilfs_ioctl_trim_fs(inode, argp);
1343	default:
1344		return -ENOTTY;
1345	}
1346}
1347
1348#ifdef CONFIG_COMPAT
1349long nilfs_compat_ioctl(struct file *filp, unsigned int cmd, unsigned long arg)
1350{
1351	switch (cmd) {
1352	case FS_IOC32_GETFLAGS:
1353		cmd = FS_IOC_GETFLAGS;
1354		break;
1355	case FS_IOC32_SETFLAGS:
1356		cmd = FS_IOC_SETFLAGS;
1357		break;
1358	case FS_IOC32_GETVERSION:
1359		cmd = FS_IOC_GETVERSION;
1360		break;
1361	case NILFS_IOCTL_CHANGE_CPMODE:
1362	case NILFS_IOCTL_DELETE_CHECKPOINT:
1363	case NILFS_IOCTL_GET_CPINFO:
1364	case NILFS_IOCTL_GET_CPSTAT:
1365	case NILFS_IOCTL_GET_SUINFO:
1366	case NILFS_IOCTL_SET_SUINFO:
1367	case NILFS_IOCTL_GET_SUSTAT:
1368	case NILFS_IOCTL_GET_VINFO:
1369	case NILFS_IOCTL_GET_BDESCS:
1370	case NILFS_IOCTL_CLEAN_SEGMENTS:
1371	case NILFS_IOCTL_SYNC:
1372	case NILFS_IOCTL_RESIZE:
1373	case NILFS_IOCTL_SET_ALLOC_RANGE:
1374	case FITRIM:
1375		break;
1376	default:
1377		return -ENOIOCTLCMD;
1378	}
1379	return nilfs_ioctl(filp, cmd, (unsigned long)compat_ptr(arg));
1380}
1381#endif