2 * ioctl.c - NILFS ioctl operations.
4 * Copyright (C) 2007, 2008 Nippon Telegraph and Telephone Corporation.
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.
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.
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
20 * Written by Koji Sato <koji@osrg.net>.
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>
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
47 * Description: nilfs_ioctl_wrap_copy() gets/sets metadata info by means of
48 * calling dofunc() function on the basis of @argv argument.
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.
54 * %-EINVAL - Invalid arguments from userspace.
56 * %-ENOMEM - Insufficient amount of memory available.
58 * %-EFAULT - Failure during execution of requested operation.
60 static int nilfs_ioctl_wrap_copy(struct the_nilfs
*nilfs
,
61 struct nilfs_argv
*argv
, int dir
,
62 ssize_t (*dofunc
)(struct the_nilfs
*,
64 void *, size_t, size_t))
67 void __user
*base
= (void __user
*)(unsigned long)argv
->v_base
;
68 size_t maxmembs
, total
, n
;
73 if (argv
->v_nmembs
== 0)
76 if (argv
->v_size
> PAGE_SIZE
)
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.
84 if (argv
->v_index
> ~(__u64
)0 - argv
->v_nmembs
)
87 buf
= (void *)__get_free_pages(GFP_NOFS
, 0);
90 maxmembs
= PAGE_SIZE
/ argv
->v_size
;
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
,
105 nr
= dofunc(nilfs
, &pos
, argv
->v_flags
, buf
, argv
->v_size
,
111 if ((dir
& _IOC_READ
) &&
112 copy_to_user(base
+ argv
->v_size
* i
, buf
,
113 argv
->v_size
* nr
)) {
123 argv
->v_nmembs
= total
;
125 free_pages((unsigned long)buf
, 0);
130 * nilfs_ioctl_getflags - ioctl to support lsattr
132 static int nilfs_ioctl_getflags(struct inode
*inode
, void __user
*argp
)
134 unsigned int flags
= NILFS_I(inode
)->i_flags
& FS_FL_USER_VISIBLE
;
136 return put_user(flags
, (int __user
*)argp
);
140 * nilfs_ioctl_setflags - ioctl to support chattr
142 static int nilfs_ioctl_setflags(struct inode
*inode
, struct file
*filp
,
145 struct nilfs_transaction_info ti
;
146 unsigned int flags
, oldflags
;
149 if (!inode_owner_or_capable(inode
))
152 if (get_user(flags
, (int __user
*)argp
))
155 ret
= mnt_want_write_file(filp
);
159 flags
= nilfs_mask_flags(inode
->i_mode
, flags
);
161 mutex_lock(&inode
->i_mutex
);
163 oldflags
= NILFS_I(inode
)->i_flags
;
166 * The IMMUTABLE and APPEND_ONLY flags can only be changed by the
167 * relevant capability.
170 if (((flags
^ oldflags
) & (FS_APPEND_FL
| FS_IMMUTABLE_FL
)) &&
171 !capable(CAP_LINUX_IMMUTABLE
))
174 ret
= nilfs_transaction_begin(inode
->i_sb
, &ti
, 0);
178 NILFS_I(inode
)->i_flags
= (oldflags
& ~FS_FL_USER_MODIFIABLE
) |
179 (flags
& FS_FL_USER_MODIFIABLE
);
181 nilfs_set_inode_flags(inode
);
182 inode
->i_ctime
= CURRENT_TIME
;
184 nilfs_set_transaction_flag(NILFS_TI_SYNC
);
186 nilfs_mark_inode_dirty(inode
);
187 ret
= nilfs_transaction_commit(inode
->i_sb
);
189 mutex_unlock(&inode
->i_mutex
);
190 mnt_drop_write_file(filp
);
195 * nilfs_ioctl_getversion - get info about a file's version (generation number)
197 static int nilfs_ioctl_getversion(struct inode
*inode
, void __user
*argp
)
199 return put_user(inode
->i_generation
, (int __user
*)argp
);
203 * nilfs_ioctl_change_cpmode - change checkpoint mode (checkpoint/snapshot)
204 * @inode: inode object
206 * @cmd: ioctl's request code
207 * @argp: pointer on argument from userspace
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.
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
217 * %-EPERM - Operation not permitted.
219 * %-EFAULT - Failure during checkpoint mode changing.
221 static int nilfs_ioctl_change_cpmode(struct inode
*inode
, struct file
*filp
,
222 unsigned int cmd
, void __user
*argp
)
224 struct the_nilfs
*nilfs
= inode
->i_sb
->s_fs_info
;
225 struct nilfs_transaction_info ti
;
226 struct nilfs_cpmode cpmode
;
229 if (!capable(CAP_SYS_ADMIN
))
232 ret
= mnt_want_write_file(filp
);
237 if (copy_from_user(&cpmode
, argp
, sizeof(cpmode
)))
240 mutex_lock(&nilfs
->ns_snapshot_mount_mutex
);
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
);
248 nilfs_transaction_commit(inode
->i_sb
); /* never fails */
250 mutex_unlock(&nilfs
->ns_snapshot_mount_mutex
);
252 mnt_drop_write_file(filp
);
257 * nilfs_ioctl_delete_checkpoint - remove checkpoint
258 * @inode: inode object
260 * @cmd: ioctl's request code
261 * @argp: pointer on argument from userspace
263 * Description: nilfs_ioctl_delete_checkpoint() function removes
264 * checkpoint from NILFS2 file system. This ioctl is used in rmcp
267 * Return Value: On success, 0 is returned and a checkpoint is
268 * removed. On error, one of the following negative error codes
271 * %-EPERM - Operation not permitted.
273 * %-EFAULT - Failure during checkpoint removing.
276 nilfs_ioctl_delete_checkpoint(struct inode
*inode
, struct file
*filp
,
277 unsigned int cmd
, void __user
*argp
)
279 struct the_nilfs
*nilfs
= inode
->i_sb
->s_fs_info
;
280 struct nilfs_transaction_info ti
;
284 if (!capable(CAP_SYS_ADMIN
))
287 ret
= mnt_want_write_file(filp
);
292 if (copy_from_user(&cno
, argp
, sizeof(cno
)))
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
);
300 nilfs_transaction_commit(inode
->i_sb
); /* never fails */
302 mnt_drop_write_file(filp
);
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)
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.
319 * Return value: count of nilfs_cpinfo structures in output buffer.
322 nilfs_ioctl_do_get_cpinfo(struct the_nilfs
*nilfs
, __u64
*posp
, int flags
,
323 void *buf
, size_t size
, size_t nmembs
)
327 down_read(&nilfs
->ns_segctor_sem
);
328 ret
= nilfs_cpfile_get_cpinfo(nilfs
->ns_cpfile
, posp
, flags
, buf
,
330 up_read(&nilfs
->ns_segctor_sem
);
335 * nilfs_ioctl_get_cpstat - get checkpoints statistics
336 * @inode: inode object
338 * @cmd: ioctl's request code
339 * @argp: pointer on argument from userspace
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.
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.
351 * %-ENOMEM - Insufficient amount of memory available.
353 * %-EFAULT - Failure during getting checkpoints statistics.
355 static int nilfs_ioctl_get_cpstat(struct inode
*inode
, struct file
*filp
,
356 unsigned int cmd
, void __user
*argp
)
358 struct the_nilfs
*nilfs
= inode
->i_sb
->s_fs_info
;
359 struct nilfs_cpstat cpstat
;
362 down_read(&nilfs
->ns_segctor_sem
);
363 ret
= nilfs_cpfile_get_stat(nilfs
->ns_cpfile
, &cpstat
);
364 up_read(&nilfs
->ns_segctor_sem
);
368 if (copy_to_user(argp
, &cpstat
, sizeof(cpstat
)))
374 * nilfs_ioctl_do_get_suinfo - callback method getting segment usage info
375 * @nilfs: nilfs object
376 * @posp: pointer on array of segment numbers
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
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.
386 * Return value: count of nilfs_suinfo structures in output buffer.
389 nilfs_ioctl_do_get_suinfo(struct the_nilfs
*nilfs
, __u64
*posp
, int flags
,
390 void *buf
, size_t size
, size_t nmembs
)
394 down_read(&nilfs
->ns_segctor_sem
);
395 ret
= nilfs_sufile_get_suinfo(nilfs
->ns_sufile
, *posp
, buf
, size
,
397 up_read(&nilfs
->ns_segctor_sem
);
402 * nilfs_ioctl_get_sustat - get segment usage statistics
403 * @inode: inode object
405 * @cmd: ioctl's request code
406 * @argp: pointer on argument from userspace
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.
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.
418 * %-ENOMEM - Insufficient amount of memory available.
420 * %-EFAULT - Failure during getting segment usage statistics.
422 static int nilfs_ioctl_get_sustat(struct inode
*inode
, struct file
*filp
,
423 unsigned int cmd
, void __user
*argp
)
425 struct the_nilfs
*nilfs
= inode
->i_sb
->s_fs_info
;
426 struct nilfs_sustat sustat
;
429 down_read(&nilfs
->ns_segctor_sem
);
430 ret
= nilfs_sufile_get_stat(nilfs
->ns_sufile
, &sustat
);
431 up_read(&nilfs
->ns_segctor_sem
);
435 if (copy_to_user(argp
, &sustat
, sizeof(sustat
)))
441 * nilfs_ioctl_do_get_vinfo - callback method getting virtual blocks info
442 * @nilfs: nilfs object
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
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.
453 * Return value: count of nilfs_vinfo structures in output buffer.
456 nilfs_ioctl_do_get_vinfo(struct the_nilfs
*nilfs
, __u64
*posp
, int flags
,
457 void *buf
, size_t size
, size_t nmembs
)
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
);
468 * nilfs_ioctl_do_get_bdescs - callback method getting disk block descriptors
469 * @nilfs: nilfs object
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
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.
480 * Return value: count of nilfs_bdescs structures in output buffer.
483 nilfs_ioctl_do_get_bdescs(struct the_nilfs
*nilfs
, __u64
*posp
, int flags
,
484 void *buf
, size_t size
, size_t nmembs
)
486 struct nilfs_bmap
*bmap
= NILFS_I(nilfs
->ns_dat
)->i_bmap
;
487 struct nilfs_bdesc
*bdescs
= buf
;
490 down_read(&nilfs
->ns_segctor_sem
);
491 for (i
= 0; i
< nmembs
; i
++) {
492 ret
= nilfs_bmap_lookup_at_level(bmap
,
494 bdescs
[i
].bd_level
+ 1,
495 &bdescs
[i
].bd_blocknr
);
497 if (ret
!= -ENOENT
) {
498 up_read(&nilfs
->ns_segctor_sem
);
501 bdescs
[i
].bd_blocknr
= 0;
504 up_read(&nilfs
->ns_segctor_sem
);
509 * nilfs_ioctl_get_bdescs - get disk block descriptors
510 * @inode: inode object
512 * @cmd: ioctl's request code
513 * @argp: pointer on argument from userspace
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.
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.
523 * %-EINVAL - Invalid arguments from userspace.
527 * %-ENOMEM - Insufficient amount of memory available.
529 * %-EFAULT - Failure during getting disk block descriptors.
531 static int nilfs_ioctl_get_bdescs(struct inode
*inode
, struct file
*filp
,
532 unsigned int cmd
, void __user
*argp
)
534 struct the_nilfs
*nilfs
= inode
->i_sb
->s_fs_info
;
535 struct nilfs_argv argv
;
538 if (copy_from_user(&argv
, argp
, sizeof(argv
)))
541 if (argv
.v_size
!= sizeof(struct nilfs_bdesc
))
544 ret
= nilfs_ioctl_wrap_copy(nilfs
, &argv
, _IOC_DIR(cmd
),
545 nilfs_ioctl_do_get_bdescs
);
549 if (copy_to_user(argp
, &argv
, sizeof(argv
)))
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
560 * Description: nilfs_ioctl_move_inode_block() function registers data/node
561 * buffer in the GC pagecache and submit read request.
563 * Return Value: On success, 0 is returned. On error, one of the following
564 * negative error codes is returned.
568 * %-ENOMEM - Insufficient amount of memory available.
570 * %-ENOENT - Requested block doesn't exist.
572 * %-EEXIST - Blocks conflict is detected.
574 static int nilfs_ioctl_move_inode_block(struct inode
*inode
,
575 struct nilfs_vdesc
*vdesc
,
576 struct list_head
*buffers
)
578 struct buffer_head
*bh
;
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
);
586 ret
= nilfs_gccache_submit_read_node(
587 inode
, vdesc
->vd_blocknr
, vdesc
->vd_vblocknr
, &bh
);
589 if (unlikely(ret
< 0)) {
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
);
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
);
615 list_add_tail(&bh
->b_assoc_buffers
, buffers
);
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
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.
629 * Return Value: Number of processed nilfs_vdesc structures or
630 * error code, otherwise.
632 static int nilfs_ioctl_move_blocks(struct super_block
*sb
,
633 struct nilfs_argv
*argv
, void *buf
)
635 size_t nmembs
= argv
->v_nmembs
;
636 struct the_nilfs
*nilfs
= sb
->s_fs_info
;
638 struct nilfs_vdesc
*vdesc
;
639 struct buffer_head
*bh
, *n
;
645 for (i
= 0, vdesc
= buf
; i
< nmembs
; ) {
648 inode
= nilfs_iget_for_gc(sb
, ino
, cno
);
650 ret
= PTR_ERR(inode
);
653 if (list_empty(&NILFS_I(inode
)->i_dirty
)) {
655 * Add the inode to GC inode list. Garbage Collection
656 * is serialized and no two processes manipulate the
657 * list simultaneously.
660 list_add(&NILFS_I(inode
)->i_dirty
,
661 &nilfs
->ns_gc_inodes
);
665 ret
= nilfs_ioctl_move_inode_block(inode
, vdesc
,
667 if (unlikely(ret
< 0)) {
672 } while (++i
< nmembs
&&
673 vdesc
->vd_ino
== ino
&& vdesc
->vd_cno
== cno
);
675 iput(inode
); /* The inode still remains in GC inode list */
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
);
684 list_del_init(&bh
->b_assoc_buffers
);
690 list_for_each_entry_safe(bh
, n
, &buffers
, b_assoc_buffers
) {
691 list_del_init(&bh
->b_assoc_buffers
);
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
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.
707 * Return Value: Number of processed nilfs_period structures or
708 * error code, otherwise.
712 * %-ENOMEM - Insufficient amount of memory available.
714 * %-EINVAL - invalid checkpoints.
716 static int nilfs_ioctl_delete_checkpoints(struct the_nilfs
*nilfs
,
717 struct nilfs_argv
*argv
, void *buf
)
719 size_t nmembs
= argv
->v_nmembs
;
720 struct inode
*cpfile
= nilfs
->ns_cpfile
;
721 struct nilfs_period
*periods
= buf
;
724 for (i
= 0; i
< nmembs
; i
++) {
725 ret
= nilfs_cpfile_delete_checkpoints(
726 cpfile
, periods
[i
].p_start
, periods
[i
].p_end
);
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
739 * Description: nilfs_ioctl_free_vblocknrs() function frees
740 * the virtual block numbers specified by @buf and @argv->v_nmembs.
742 * Return Value: Number of processed virtual block numbers or
743 * error code, otherwise.
747 * %-ENOMEM - Insufficient amount of memory available.
749 * %-ENOENT - The virtual block number have not been allocated.
751 static int nilfs_ioctl_free_vblocknrs(struct the_nilfs
*nilfs
,
752 struct nilfs_argv
*argv
, void *buf
)
754 size_t nmembs
= argv
->v_nmembs
;
757 ret
= nilfs_dat_freev(nilfs
->ns_dat
, buf
, nmembs
);
759 return (ret
< 0) ? ret
: nmembs
;
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
768 * Description: nilfs_ioctl_mark_blocks_dirty() function marks
769 * metadata file or data blocks as dirty.
771 * Return Value: Number of processed block descriptors or
772 * error code, otherwise.
774 * %-ENOMEM - Insufficient memory available.
778 * %-ENOENT - the specified block does not exist (hole block)
780 static int nilfs_ioctl_mark_blocks_dirty(struct the_nilfs
*nilfs
,
781 struct nilfs_argv
*argv
, void *buf
)
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
;
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
,
792 bdescs
[i
].bd_level
+ 1,
793 &bdescs
[i
].bd_blocknr
);
797 bdescs
[i
].bd_blocknr
= 0;
799 if (bdescs
[i
].bd_blocknr
!= bdescs
[i
].bd_oblocknr
)
800 /* skip dead block */
802 if (bdescs
[i
].bd_level
== 0) {
803 ret
= nilfs_mdt_mark_block_dirty(nilfs
->ns_dat
,
804 bdescs
[i
].bd_offset
);
806 WARN_ON(ret
== -ENOENT
);
810 ret
= nilfs_bmap_mark(bmap
, bdescs
[i
].bd_offset
,
813 WARN_ON(ret
== -ENOENT
);
821 int nilfs_ioctl_prepare_clean_segments(struct the_nilfs
*nilfs
,
822 struct nilfs_argv
*argv
, void **kbufs
)
827 ret
= nilfs_ioctl_delete_checkpoints(nilfs
, &argv
[1], kbufs
[1]);
830 * can safely abort because checkpoints can be removed
833 msg
= "cannot delete checkpoints";
836 ret
= nilfs_ioctl_free_vblocknrs(nilfs
, &argv
[2], kbufs
[2]);
839 * can safely abort because DAT file is updated atomically
840 * using a copy-on-write technique.
842 msg
= "cannot delete virtual blocks from DAT file";
845 ret
= nilfs_ioctl_mark_blocks_dirty(nilfs
, &argv
[3], kbufs
[3]);
848 * can safely abort because the operation is nondestructive.
850 msg
= "cannot mark copying blocks dirty";
856 printk(KERN_ERR
"NILFS: GC failed during preparation: %s: err=%d\n",
862 * nilfs_ioctl_clean_segments - clean segments
863 * @inode: inode object
865 * @cmd: ioctl's request code
866 * @argp: pointer on argument from userspace
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.
873 * Return Value: On success, 0 is returned or error code, otherwise.
875 static int nilfs_ioctl_clean_segments(struct inode
*inode
, struct file
*filp
,
876 unsigned int cmd
, void __user
*argp
)
878 struct nilfs_argv argv
[5];
879 static const size_t argsz
[5] = {
880 sizeof(struct nilfs_vdesc
),
881 sizeof(struct nilfs_period
),
883 sizeof(struct nilfs_bdesc
),
888 struct the_nilfs
*nilfs
;
892 if (!capable(CAP_SYS_ADMIN
))
895 ret
= mnt_want_write_file(filp
);
900 if (copy_from_user(argv
, argp
, sizeof(argv
)))
904 nsegs
= argv
[4].v_nmembs
;
905 if (argv
[4].v_size
!= argsz
[4])
907 if (nsegs
> UINT_MAX
/ sizeof(__u64
))
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.
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]);
921 nilfs
= inode
->i_sb
->s_fs_info
;
923 for (n
= 0; n
< 4; n
++) {
925 if (argv
[n
].v_size
!= argsz
[n
])
928 if (argv
[n
].v_nmembs
> nsegs
* nilfs
->ns_blocks_per_segment
)
931 if (argv
[n
].v_nmembs
>= UINT_MAX
/ argv
[n
].v_size
)
934 len
= argv
[n
].v_size
* argv
[n
].v_nmembs
;
935 base
= (void __user
*)(unsigned long)argv
[n
].v_base
;
941 kbufs
[n
] = vmalloc(len
);
946 if (copy_from_user(kbufs
[n
], base
, len
)) {
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.
959 if (test_and_set_bit(THE_NILFS_GC_RUNNING
, &nilfs
->ns_flags
)) {
964 ret
= nilfs_ioctl_move_blocks(inode
->i_sb
, &argv
[0], kbufs
[0]);
966 printk(KERN_ERR
"NILFS: GC failed during preparation: "
967 "cannot read source blocks: err=%d\n", ret
);
969 if (nilfs_sb_need_update(nilfs
))
970 set_nilfs_discontinued(nilfs
);
971 ret
= nilfs_clean_segments(inode
->i_sb
, argv
, kbufs
);
974 nilfs_remove_all_gcinodes(nilfs
);
975 clear_nilfs_gc_running(nilfs
);
982 mnt_drop_write_file(filp
);
987 * nilfs_ioctl_sync - make a checkpoint
988 * @inode: inode object
990 * @cmd: ioctl's request code
991 * @argp: pointer on argument from userspace
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
998 * Return Value: On success, 0 is retured. On errors, one of the following
999 * negative error code is returned.
1001 * %-EROFS - Read only filesystem.
1005 * %-ENOSPC - No space left on device (only in a panic state).
1007 * %-ERESTARTSYS - Interrupted.
1009 * %-ENOMEM - Insufficient memory available.
1011 * %-EFAULT - Failure during execution of requested operation.
1013 static int nilfs_ioctl_sync(struct inode
*inode
, struct file
*filp
,
1014 unsigned int cmd
, void __user
*argp
)
1018 struct the_nilfs
*nilfs
;
1020 ret
= nilfs_construct_segment(inode
->i_sb
);
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
);
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
)))
1042 * nilfs_ioctl_resize - resize NILFS2 volume
1043 * @inode: inode object
1044 * @filp: file object
1045 * @argp: pointer on argument from userspace
1047 * Return Value: On success, 0 is returned or error code, otherwise.
1049 static int nilfs_ioctl_resize(struct inode
*inode
, struct file
*filp
,
1055 if (!capable(CAP_SYS_ADMIN
))
1058 ret
= mnt_want_write_file(filp
);
1063 if (copy_from_user(&newsize
, argp
, sizeof(newsize
)))
1064 goto out_drop_write
;
1066 ret
= nilfs_resize_fs(inode
->i_sb
, newsize
);
1069 mnt_drop_write_file(filp
);
1075 * nilfs_ioctl_trim_fs() - trim ioctl handle function
1076 * @inode: inode object
1077 * @argp: pointer on argument from userspace
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.
1083 * Return Value: On success, 0 is returned or negative error code, otherwise.
1085 static int nilfs_ioctl_trim_fs(struct inode
*inode
, void __user
*argp
)
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
;
1092 if (!capable(CAP_SYS_ADMIN
))
1095 if (!blk_queue_discard(q
))
1098 if (copy_from_user(&range
, argp
, sizeof(range
)))
1101 range
.minlen
= max_t(u64
, range
.minlen
, q
->limits
.discard_granularity
);
1103 down_read(&nilfs
->ns_segctor_sem
);
1104 ret
= nilfs_sufile_trim_fs(nilfs
->ns_sufile
, &range
);
1105 up_read(&nilfs
->ns_segctor_sem
);
1110 if (copy_to_user(argp
, &range
, sizeof(range
)))
1117 * nilfs_ioctl_set_alloc_range - limit range of segments to be allocated
1118 * @inode: inode object
1119 * @argp: pointer on argument from userspace
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.
1125 * Return Value: On success, 0 is returned or error code, otherwise.
1127 static int nilfs_ioctl_set_alloc_range(struct inode
*inode
, void __user
*argp
)
1129 struct the_nilfs
*nilfs
= inode
->i_sb
->s_fs_info
;
1131 __u64 minseg
, maxseg
;
1132 unsigned long segbytes
;
1135 if (!capable(CAP_SYS_ADMIN
))
1139 if (copy_from_user(range
, argp
, sizeof(__u64
[2])))
1143 if (range
[1] > i_size_read(inode
->i_sb
->s_bdev
->bd_inode
))
1146 segbytes
= nilfs
->ns_blocks_per_segment
* nilfs
->ns_blocksize
;
1148 minseg
= range
[0] + segbytes
- 1;
1149 do_div(minseg
, segbytes
);
1150 maxseg
= NILFS_SB2_OFFSET_BYTES(range
[1]);
1151 do_div(maxseg
, segbytes
);
1154 ret
= nilfs_sufile_set_alloc_range(nilfs
->ns_sufile
, minseg
, maxseg
);
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
1168 * Description: nilfs_ioctl_get_info() gets metadata info by means of
1169 * calling dofunc() function.
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.
1175 * %-EINVAL - Invalid arguments from userspace.
1177 * %-ENOMEM - Insufficient amount of memory available.
1179 * %-EFAULT - Failure during execution of requested operation.
1181 static int nilfs_ioctl_get_info(struct inode
*inode
, struct file
*filp
,
1182 unsigned int cmd
, void __user
*argp
,
1184 ssize_t (*dofunc
)(struct the_nilfs
*,
1186 void *, size_t, size_t))
1189 struct the_nilfs
*nilfs
= inode
->i_sb
->s_fs_info
;
1190 struct nilfs_argv argv
;
1193 if (copy_from_user(&argv
, argp
, sizeof(argv
)))
1196 if (argv
.v_size
< membsz
)
1199 ret
= nilfs_ioctl_wrap_copy(nilfs
, &argv
, _IOC_DIR(cmd
), dofunc
);
1203 if (copy_to_user(argp
, &argv
, sizeof(argv
)))
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
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.
1219 * Return Value: On success, 0 is returned. On error, one of the
1220 * following negative error codes is returned.
1222 * %-EPERM - Not enough permissions
1224 * %-EFAULT - Error copying input data
1226 * %-EIO - I/O error.
1228 * %-ENOMEM - Insufficient amount of memory available.
1230 * %-EINVAL - Invalid values in input (segment number, flags or nblocks)
1232 static int nilfs_ioctl_set_suinfo(struct inode
*inode
, struct file
*filp
,
1233 unsigned int cmd
, void __user
*argp
)
1235 struct the_nilfs
*nilfs
= inode
->i_sb
->s_fs_info
;
1236 struct nilfs_transaction_info ti
;
1237 struct nilfs_argv argv
;
1243 if (!capable(CAP_SYS_ADMIN
))
1246 ret
= mnt_want_write_file(filp
);
1251 if (copy_from_user(&argv
, argp
, sizeof(argv
)))
1255 if (argv
.v_size
< sizeof(struct nilfs_suinfo_update
))
1258 if (argv
.v_nmembs
> nilfs
->ns_nsegments
)
1261 if (argv
.v_nmembs
>= UINT_MAX
/ argv
.v_size
)
1264 len
= argv
.v_size
* argv
.v_nmembs
;
1270 base
= (void __user
*)(unsigned long)argv
.v_base
;
1271 kbuf
= vmalloc(len
);
1277 if (copy_from_user(kbuf
, base
, len
)) {
1282 nilfs_transaction_begin(inode
->i_sb
, &ti
, 0);
1283 ret
= nilfs_sufile_set_suinfo(nilfs
->ns_sufile
, kbuf
, argv
.v_size
,
1285 if (unlikely(ret
< 0))
1286 nilfs_transaction_abort(inode
->i_sb
);
1288 nilfs_transaction_commit(inode
->i_sb
); /* never fails */
1293 mnt_drop_write_file(filp
);
1297 long nilfs_ioctl(struct file
*filp
, unsigned int cmd
, unsigned long arg
)
1299 struct inode
*inode
= file_inode(filp
);
1300 void __user
*argp
= (void __user
*)arg
;
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
);
1342 return nilfs_ioctl_trim_fs(inode
, argp
);
1348 #ifdef CONFIG_COMPAT
1349 long nilfs_compat_ioctl(struct file
*filp
, unsigned int cmd
, unsigned long arg
)
1352 case FS_IOC32_GETFLAGS
:
1353 cmd
= FS_IOC_GETFLAGS
;
1355 case FS_IOC32_SETFLAGS
:
1356 cmd
= FS_IOC_SETFLAGS
;
1358 case FS_IOC32_GETVERSION
:
1359 cmd
= FS_IOC_GETVERSION
;
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
:
1377 return -ENOIOCTLCMD
;
1379 return nilfs_ioctl(filp
, cmd
, (unsigned long)compat_ptr(arg
));