1 // SPDX-License-Identifier: GPL-2.0+
3 * ioctl.c - NILFS ioctl operations.
5 * Copyright (C) 2007, 2008 Nippon Telegraph and Telephone Corporation.
7 * Written by Koji Sato.
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>
27 * nilfs_ioctl_wrap_copy - wrapping function of get/set metadata info
28 * @nilfs: nilfs object
29 * @argv: vector of arguments from userspace
30 * @dir: set of direction flags
31 * @dofunc: concrete function of get/set metadata info
33 * Description: nilfs_ioctl_wrap_copy() gets/sets metadata info by means of
34 * calling dofunc() function on the basis of @argv argument.
36 * Return Value: On success, 0 is returned and requested metadata info
37 * is copied into userspace. On error, one of the following
38 * negative error codes is returned.
40 * %-EINVAL - Invalid arguments from userspace.
42 * %-ENOMEM - Insufficient amount of memory available.
44 * %-EFAULT - Failure during execution of requested operation.
46 static int nilfs_ioctl_wrap_copy(struct the_nilfs
*nilfs
,
47 struct nilfs_argv
*argv
, int dir
,
48 ssize_t (*dofunc
)(struct the_nilfs
*,
50 void *, size_t, size_t))
53 void __user
*base
= (void __user
*)(unsigned long)argv
->v_base
;
54 size_t maxmembs
, total
, n
;
59 if (argv
->v_nmembs
== 0)
62 if (argv
->v_size
> PAGE_SIZE
)
66 * Reject pairs of a start item position (argv->v_index) and a
67 * total count (argv->v_nmembs) which leads position 'pos' to
68 * overflow by the increment at the end of the loop.
70 if (argv
->v_index
> ~(__u64
)0 - argv
->v_nmembs
)
73 buf
= (void *)__get_free_pages(GFP_NOFS
, 0);
76 maxmembs
= PAGE_SIZE
/ argv
->v_size
;
81 for (i
= 0; i
< argv
->v_nmembs
; i
+= n
) {
82 n
= (argv
->v_nmembs
- i
< maxmembs
) ?
83 argv
->v_nmembs
- i
: maxmembs
;
84 if ((dir
& _IOC_WRITE
) &&
85 copy_from_user(buf
, base
+ argv
->v_size
* i
,
91 nr
= dofunc(nilfs
, &pos
, argv
->v_flags
, buf
, argv
->v_size
,
97 if ((dir
& _IOC_READ
) &&
98 copy_to_user(base
+ argv
->v_size
* i
, buf
,
109 argv
->v_nmembs
= total
;
111 free_pages((unsigned long)buf
, 0);
116 * nilfs_ioctl_getflags - ioctl to support lsattr
118 static int nilfs_ioctl_getflags(struct inode
*inode
, void __user
*argp
)
120 unsigned int flags
= NILFS_I(inode
)->i_flags
& FS_FL_USER_VISIBLE
;
122 return put_user(flags
, (int __user
*)argp
);
126 * nilfs_ioctl_setflags - ioctl to support chattr
128 static int nilfs_ioctl_setflags(struct inode
*inode
, struct file
*filp
,
131 struct nilfs_transaction_info ti
;
132 unsigned int flags
, oldflags
;
135 if (!inode_owner_or_capable(inode
))
138 if (get_user(flags
, (int __user
*)argp
))
141 ret
= mnt_want_write_file(filp
);
145 flags
= nilfs_mask_flags(inode
->i_mode
, flags
);
149 oldflags
= NILFS_I(inode
)->i_flags
;
151 ret
= vfs_ioc_setflags_prepare(inode
, oldflags
, flags
);
155 ret
= nilfs_transaction_begin(inode
->i_sb
, &ti
, 0);
159 NILFS_I(inode
)->i_flags
= (oldflags
& ~FS_FL_USER_MODIFIABLE
) |
160 (flags
& FS_FL_USER_MODIFIABLE
);
162 nilfs_set_inode_flags(inode
);
163 inode
->i_ctime
= current_time(inode
);
165 nilfs_set_transaction_flag(NILFS_TI_SYNC
);
167 nilfs_mark_inode_dirty(inode
);
168 ret
= nilfs_transaction_commit(inode
->i_sb
);
171 mnt_drop_write_file(filp
);
176 * nilfs_ioctl_getversion - get info about a file's version (generation number)
178 static int nilfs_ioctl_getversion(struct inode
*inode
, void __user
*argp
)
180 return put_user(inode
->i_generation
, (int __user
*)argp
);
184 * nilfs_ioctl_change_cpmode - change checkpoint mode (checkpoint/snapshot)
185 * @inode: inode object
187 * @cmd: ioctl's request code
188 * @argp: pointer on argument from userspace
190 * Description: nilfs_ioctl_change_cpmode() function changes mode of
191 * given checkpoint between checkpoint and snapshot state. This ioctl
192 * is used in chcp and mkcp utilities.
194 * Return Value: On success, 0 is returned and mode of a checkpoint is
195 * changed. On error, one of the following negative error codes
198 * %-EPERM - Operation not permitted.
200 * %-EFAULT - Failure during checkpoint mode changing.
202 static int nilfs_ioctl_change_cpmode(struct inode
*inode
, struct file
*filp
,
203 unsigned int cmd
, void __user
*argp
)
205 struct the_nilfs
*nilfs
= inode
->i_sb
->s_fs_info
;
206 struct nilfs_transaction_info ti
;
207 struct nilfs_cpmode cpmode
;
210 if (!capable(CAP_SYS_ADMIN
))
213 ret
= mnt_want_write_file(filp
);
218 if (copy_from_user(&cpmode
, argp
, sizeof(cpmode
)))
221 mutex_lock(&nilfs
->ns_snapshot_mount_mutex
);
223 nilfs_transaction_begin(inode
->i_sb
, &ti
, 0);
224 ret
= nilfs_cpfile_change_cpmode(
225 nilfs
->ns_cpfile
, cpmode
.cm_cno
, cpmode
.cm_mode
);
226 if (unlikely(ret
< 0))
227 nilfs_transaction_abort(inode
->i_sb
);
229 nilfs_transaction_commit(inode
->i_sb
); /* never fails */
231 mutex_unlock(&nilfs
->ns_snapshot_mount_mutex
);
233 mnt_drop_write_file(filp
);
238 * nilfs_ioctl_delete_checkpoint - remove checkpoint
239 * @inode: inode object
241 * @cmd: ioctl's request code
242 * @argp: pointer on argument from userspace
244 * Description: nilfs_ioctl_delete_checkpoint() function removes
245 * checkpoint from NILFS2 file system. This ioctl is used in rmcp
248 * Return Value: On success, 0 is returned and a checkpoint is
249 * removed. On error, one of the following negative error codes
252 * %-EPERM - Operation not permitted.
254 * %-EFAULT - Failure during checkpoint removing.
257 nilfs_ioctl_delete_checkpoint(struct inode
*inode
, struct file
*filp
,
258 unsigned int cmd
, void __user
*argp
)
260 struct the_nilfs
*nilfs
= inode
->i_sb
->s_fs_info
;
261 struct nilfs_transaction_info ti
;
265 if (!capable(CAP_SYS_ADMIN
))
268 ret
= mnt_want_write_file(filp
);
273 if (copy_from_user(&cno
, argp
, sizeof(cno
)))
276 nilfs_transaction_begin(inode
->i_sb
, &ti
, 0);
277 ret
= nilfs_cpfile_delete_checkpoint(nilfs
->ns_cpfile
, cno
);
278 if (unlikely(ret
< 0))
279 nilfs_transaction_abort(inode
->i_sb
);
281 nilfs_transaction_commit(inode
->i_sb
); /* never fails */
283 mnt_drop_write_file(filp
);
288 * nilfs_ioctl_do_get_cpinfo - callback method getting info about checkpoints
289 * @nilfs: nilfs object
290 * @posp: pointer on array of checkpoint's numbers
291 * @flags: checkpoint mode (checkpoint or snapshot)
292 * @buf: buffer for storing checkponts' info
293 * @size: size in bytes of one checkpoint info item in array
294 * @nmembs: number of checkpoints in array (numbers and infos)
296 * Description: nilfs_ioctl_do_get_cpinfo() function returns info about
297 * requested checkpoints. The NILFS_IOCTL_GET_CPINFO ioctl is used in
298 * lscp utility and by nilfs_cleanerd daemon.
300 * Return value: count of nilfs_cpinfo structures in output buffer.
303 nilfs_ioctl_do_get_cpinfo(struct the_nilfs
*nilfs
, __u64
*posp
, int flags
,
304 void *buf
, size_t size
, size_t nmembs
)
308 down_read(&nilfs
->ns_segctor_sem
);
309 ret
= nilfs_cpfile_get_cpinfo(nilfs
->ns_cpfile
, posp
, flags
, buf
,
311 up_read(&nilfs
->ns_segctor_sem
);
316 * nilfs_ioctl_get_cpstat - get checkpoints statistics
317 * @inode: inode object
319 * @cmd: ioctl's request code
320 * @argp: pointer on argument from userspace
322 * Description: nilfs_ioctl_get_cpstat() returns information about checkpoints.
323 * The NILFS_IOCTL_GET_CPSTAT ioctl is used by lscp, rmcp utilities
324 * and by nilfs_cleanerd daemon.
326 * Return Value: On success, 0 is returned, and checkpoints information is
327 * copied into userspace pointer @argp. On error, one of the following
328 * negative error codes is returned.
332 * %-ENOMEM - Insufficient amount of memory available.
334 * %-EFAULT - Failure during getting checkpoints statistics.
336 static int nilfs_ioctl_get_cpstat(struct inode
*inode
, struct file
*filp
,
337 unsigned int cmd
, void __user
*argp
)
339 struct the_nilfs
*nilfs
= inode
->i_sb
->s_fs_info
;
340 struct nilfs_cpstat cpstat
;
343 down_read(&nilfs
->ns_segctor_sem
);
344 ret
= nilfs_cpfile_get_stat(nilfs
->ns_cpfile
, &cpstat
);
345 up_read(&nilfs
->ns_segctor_sem
);
349 if (copy_to_user(argp
, &cpstat
, sizeof(cpstat
)))
355 * nilfs_ioctl_do_get_suinfo - callback method getting segment usage info
356 * @nilfs: nilfs object
357 * @posp: pointer on array of segment numbers
359 * @buf: buffer for storing suinfo array
360 * @size: size in bytes of one suinfo item in array
361 * @nmembs: count of segment numbers and suinfos in array
363 * Description: nilfs_ioctl_do_get_suinfo() function returns segment usage
364 * info about requested segments. The NILFS_IOCTL_GET_SUINFO ioctl is used
365 * in lssu, nilfs_resize utilities and by nilfs_cleanerd daemon.
367 * Return value: count of nilfs_suinfo structures in output buffer.
370 nilfs_ioctl_do_get_suinfo(struct the_nilfs
*nilfs
, __u64
*posp
, int flags
,
371 void *buf
, size_t size
, size_t nmembs
)
375 down_read(&nilfs
->ns_segctor_sem
);
376 ret
= nilfs_sufile_get_suinfo(nilfs
->ns_sufile
, *posp
, buf
, size
,
378 up_read(&nilfs
->ns_segctor_sem
);
383 * nilfs_ioctl_get_sustat - get segment usage statistics
384 * @inode: inode object
386 * @cmd: ioctl's request code
387 * @argp: pointer on argument from userspace
389 * Description: nilfs_ioctl_get_sustat() returns segment usage statistics.
390 * The NILFS_IOCTL_GET_SUSTAT ioctl is used in lssu, nilfs_resize utilities
391 * and by nilfs_cleanerd daemon.
393 * Return Value: On success, 0 is returned, and segment usage information is
394 * copied into userspace pointer @argp. On error, one of the following
395 * negative error codes is returned.
399 * %-ENOMEM - Insufficient amount of memory available.
401 * %-EFAULT - Failure during getting segment usage statistics.
403 static int nilfs_ioctl_get_sustat(struct inode
*inode
, struct file
*filp
,
404 unsigned int cmd
, void __user
*argp
)
406 struct the_nilfs
*nilfs
= inode
->i_sb
->s_fs_info
;
407 struct nilfs_sustat sustat
;
410 down_read(&nilfs
->ns_segctor_sem
);
411 ret
= nilfs_sufile_get_stat(nilfs
->ns_sufile
, &sustat
);
412 up_read(&nilfs
->ns_segctor_sem
);
416 if (copy_to_user(argp
, &sustat
, sizeof(sustat
)))
422 * nilfs_ioctl_do_get_vinfo - callback method getting virtual blocks info
423 * @nilfs: nilfs object
426 * @buf: buffer for storing array of nilfs_vinfo structures
427 * @size: size in bytes of one vinfo item in array
428 * @nmembs: count of vinfos in array
430 * Description: nilfs_ioctl_do_get_vinfo() function returns information
431 * on virtual block addresses. The NILFS_IOCTL_GET_VINFO ioctl is used
432 * by nilfs_cleanerd daemon.
434 * Return value: count of nilfs_vinfo structures in output buffer.
437 nilfs_ioctl_do_get_vinfo(struct the_nilfs
*nilfs
, __u64
*posp
, int flags
,
438 void *buf
, size_t size
, size_t nmembs
)
442 down_read(&nilfs
->ns_segctor_sem
);
443 ret
= nilfs_dat_get_vinfo(nilfs
->ns_dat
, buf
, size
, nmembs
);
444 up_read(&nilfs
->ns_segctor_sem
);
449 * nilfs_ioctl_do_get_bdescs - callback method getting disk block descriptors
450 * @nilfs: nilfs object
453 * @buf: buffer for storing array of nilfs_bdesc structures
454 * @size: size in bytes of one bdesc item in array
455 * @nmembs: count of bdescs in array
457 * Description: nilfs_ioctl_do_get_bdescs() function returns information
458 * about descriptors of disk block numbers. The NILFS_IOCTL_GET_BDESCS ioctl
459 * is used by nilfs_cleanerd daemon.
461 * Return value: count of nilfs_bdescs structures in output buffer.
464 nilfs_ioctl_do_get_bdescs(struct the_nilfs
*nilfs
, __u64
*posp
, int flags
,
465 void *buf
, size_t size
, size_t nmembs
)
467 struct nilfs_bmap
*bmap
= NILFS_I(nilfs
->ns_dat
)->i_bmap
;
468 struct nilfs_bdesc
*bdescs
= buf
;
471 down_read(&nilfs
->ns_segctor_sem
);
472 for (i
= 0; i
< nmembs
; i
++) {
473 ret
= nilfs_bmap_lookup_at_level(bmap
,
475 bdescs
[i
].bd_level
+ 1,
476 &bdescs
[i
].bd_blocknr
);
478 if (ret
!= -ENOENT
) {
479 up_read(&nilfs
->ns_segctor_sem
);
482 bdescs
[i
].bd_blocknr
= 0;
485 up_read(&nilfs
->ns_segctor_sem
);
490 * nilfs_ioctl_get_bdescs - get disk block descriptors
491 * @inode: inode object
493 * @cmd: ioctl's request code
494 * @argp: pointer on argument from userspace
496 * Description: nilfs_ioctl_do_get_bdescs() function returns information
497 * about descriptors of disk block numbers. The NILFS_IOCTL_GET_BDESCS ioctl
498 * is used by nilfs_cleanerd daemon.
500 * Return Value: On success, 0 is returned, and disk block descriptors are
501 * copied into userspace pointer @argp. On error, one of the following
502 * negative error codes is returned.
504 * %-EINVAL - Invalid arguments from userspace.
508 * %-ENOMEM - Insufficient amount of memory available.
510 * %-EFAULT - Failure during getting disk block descriptors.
512 static int nilfs_ioctl_get_bdescs(struct inode
*inode
, struct file
*filp
,
513 unsigned int cmd
, void __user
*argp
)
515 struct the_nilfs
*nilfs
= inode
->i_sb
->s_fs_info
;
516 struct nilfs_argv argv
;
519 if (copy_from_user(&argv
, argp
, sizeof(argv
)))
522 if (argv
.v_size
!= sizeof(struct nilfs_bdesc
))
525 ret
= nilfs_ioctl_wrap_copy(nilfs
, &argv
, _IOC_DIR(cmd
),
526 nilfs_ioctl_do_get_bdescs
);
530 if (copy_to_user(argp
, &argv
, sizeof(argv
)))
536 * nilfs_ioctl_move_inode_block - prepare data/node block for moving by GC
537 * @inode: inode object
538 * @vdesc: descriptor of virtual block number
539 * @buffers: list of moving buffers
541 * Description: nilfs_ioctl_move_inode_block() function registers data/node
542 * buffer in the GC pagecache and submit read request.
544 * Return Value: On success, 0 is returned. On error, one of the following
545 * negative error codes is returned.
549 * %-ENOMEM - Insufficient amount of memory available.
551 * %-ENOENT - Requested block doesn't exist.
553 * %-EEXIST - Blocks conflict is detected.
555 static int nilfs_ioctl_move_inode_block(struct inode
*inode
,
556 struct nilfs_vdesc
*vdesc
,
557 struct list_head
*buffers
)
559 struct buffer_head
*bh
;
562 if (vdesc
->vd_flags
== 0)
563 ret
= nilfs_gccache_submit_read_data(
564 inode
, vdesc
->vd_offset
, vdesc
->vd_blocknr
,
565 vdesc
->vd_vblocknr
, &bh
);
567 ret
= nilfs_gccache_submit_read_node(
568 inode
, vdesc
->vd_blocknr
, vdesc
->vd_vblocknr
, &bh
);
570 if (unlikely(ret
< 0)) {
572 nilfs_crit(inode
->i_sb
,
573 "%s: invalid virtual block address (%s): ino=%llu, cno=%llu, offset=%llu, blocknr=%llu, vblocknr=%llu",
574 __func__
, vdesc
->vd_flags
? "node" : "data",
575 (unsigned long long)vdesc
->vd_ino
,
576 (unsigned long long)vdesc
->vd_cno
,
577 (unsigned long long)vdesc
->vd_offset
,
578 (unsigned long long)vdesc
->vd_blocknr
,
579 (unsigned long long)vdesc
->vd_vblocknr
);
582 if (unlikely(!list_empty(&bh
->b_assoc_buffers
))) {
583 nilfs_crit(inode
->i_sb
,
584 "%s: conflicting %s buffer: ino=%llu, cno=%llu, offset=%llu, blocknr=%llu, vblocknr=%llu",
585 __func__
, vdesc
->vd_flags
? "node" : "data",
586 (unsigned long long)vdesc
->vd_ino
,
587 (unsigned long long)vdesc
->vd_cno
,
588 (unsigned long long)vdesc
->vd_offset
,
589 (unsigned long long)vdesc
->vd_blocknr
,
590 (unsigned long long)vdesc
->vd_vblocknr
);
594 list_add_tail(&bh
->b_assoc_buffers
, buffers
);
599 * nilfs_ioctl_move_blocks - move valid inode's blocks during garbage collection
600 * @sb: superblock object
601 * @argv: vector of arguments from userspace
602 * @buf: array of nilfs_vdesc structures
604 * Description: nilfs_ioctl_move_blocks() function reads valid data/node
605 * blocks that garbage collector specified with the array of nilfs_vdesc
606 * structures and stores them into page caches of GC inodes.
608 * Return Value: Number of processed nilfs_vdesc structures or
609 * error code, otherwise.
611 static int nilfs_ioctl_move_blocks(struct super_block
*sb
,
612 struct nilfs_argv
*argv
, void *buf
)
614 size_t nmembs
= argv
->v_nmembs
;
615 struct the_nilfs
*nilfs
= sb
->s_fs_info
;
617 struct nilfs_vdesc
*vdesc
;
618 struct buffer_head
*bh
, *n
;
624 for (i
= 0, vdesc
= buf
; i
< nmembs
; ) {
627 inode
= nilfs_iget_for_gc(sb
, ino
, cno
);
629 ret
= PTR_ERR(inode
);
632 if (list_empty(&NILFS_I(inode
)->i_dirty
)) {
634 * Add the inode to GC inode list. Garbage Collection
635 * is serialized and no two processes manipulate the
636 * list simultaneously.
639 list_add(&NILFS_I(inode
)->i_dirty
,
640 &nilfs
->ns_gc_inodes
);
644 ret
= nilfs_ioctl_move_inode_block(inode
, vdesc
,
646 if (unlikely(ret
< 0)) {
651 } while (++i
< nmembs
&&
652 vdesc
->vd_ino
== ino
&& vdesc
->vd_cno
== cno
);
654 iput(inode
); /* The inode still remains in GC inode list */
657 list_for_each_entry_safe(bh
, n
, &buffers
, b_assoc_buffers
) {
658 ret
= nilfs_gccache_wait_and_mark_dirty(bh
);
659 if (unlikely(ret
< 0)) {
660 WARN_ON(ret
== -EEXIST
);
663 list_del_init(&bh
->b_assoc_buffers
);
669 list_for_each_entry_safe(bh
, n
, &buffers
, b_assoc_buffers
) {
670 list_del_init(&bh
->b_assoc_buffers
);
677 * nilfs_ioctl_delete_checkpoints - delete checkpoints
678 * @nilfs: nilfs object
679 * @argv: vector of arguments from userspace
680 * @buf: array of periods of checkpoints numbers
682 * Description: nilfs_ioctl_delete_checkpoints() function deletes checkpoints
683 * in the period from p_start to p_end, excluding p_end itself. The checkpoints
684 * which have been already deleted are ignored.
686 * Return Value: Number of processed nilfs_period structures or
687 * error code, otherwise.
691 * %-ENOMEM - Insufficient amount of memory available.
693 * %-EINVAL - invalid checkpoints.
695 static int nilfs_ioctl_delete_checkpoints(struct the_nilfs
*nilfs
,
696 struct nilfs_argv
*argv
, void *buf
)
698 size_t nmembs
= argv
->v_nmembs
;
699 struct inode
*cpfile
= nilfs
->ns_cpfile
;
700 struct nilfs_period
*periods
= buf
;
703 for (i
= 0; i
< nmembs
; i
++) {
704 ret
= nilfs_cpfile_delete_checkpoints(
705 cpfile
, periods
[i
].p_start
, periods
[i
].p_end
);
713 * nilfs_ioctl_free_vblocknrs - free virtual block numbers
714 * @nilfs: nilfs object
715 * @argv: vector of arguments from userspace
716 * @buf: array of virtual block numbers
718 * Description: nilfs_ioctl_free_vblocknrs() function frees
719 * the virtual block numbers specified by @buf and @argv->v_nmembs.
721 * Return Value: Number of processed virtual block numbers or
722 * error code, otherwise.
726 * %-ENOMEM - Insufficient amount of memory available.
728 * %-ENOENT - The virtual block number have not been allocated.
730 static int nilfs_ioctl_free_vblocknrs(struct the_nilfs
*nilfs
,
731 struct nilfs_argv
*argv
, void *buf
)
733 size_t nmembs
= argv
->v_nmembs
;
736 ret
= nilfs_dat_freev(nilfs
->ns_dat
, buf
, nmembs
);
738 return (ret
< 0) ? ret
: nmembs
;
742 * nilfs_ioctl_mark_blocks_dirty - mark blocks dirty
743 * @nilfs: nilfs object
744 * @argv: vector of arguments from userspace
745 * @buf: array of block descriptors
747 * Description: nilfs_ioctl_mark_blocks_dirty() function marks
748 * metadata file or data blocks as dirty.
750 * Return Value: Number of processed block descriptors or
751 * error code, otherwise.
753 * %-ENOMEM - Insufficient memory available.
757 * %-ENOENT - the specified block does not exist (hole block)
759 static int nilfs_ioctl_mark_blocks_dirty(struct the_nilfs
*nilfs
,
760 struct nilfs_argv
*argv
, void *buf
)
762 size_t nmembs
= argv
->v_nmembs
;
763 struct nilfs_bmap
*bmap
= NILFS_I(nilfs
->ns_dat
)->i_bmap
;
764 struct nilfs_bdesc
*bdescs
= buf
;
765 struct buffer_head
*bh
;
768 for (i
= 0; i
< nmembs
; i
++) {
769 /* XXX: use macro or inline func to check liveness */
770 ret
= nilfs_bmap_lookup_at_level(bmap
,
772 bdescs
[i
].bd_level
+ 1,
773 &bdescs
[i
].bd_blocknr
);
777 bdescs
[i
].bd_blocknr
= 0;
779 if (bdescs
[i
].bd_blocknr
!= bdescs
[i
].bd_oblocknr
)
780 /* skip dead block */
782 if (bdescs
[i
].bd_level
== 0) {
783 ret
= nilfs_mdt_get_block(nilfs
->ns_dat
,
787 WARN_ON(ret
== -ENOENT
);
790 mark_buffer_dirty(bh
);
791 nilfs_mdt_mark_dirty(nilfs
->ns_dat
);
794 ret
= nilfs_bmap_mark(bmap
, bdescs
[i
].bd_offset
,
797 WARN_ON(ret
== -ENOENT
);
805 int nilfs_ioctl_prepare_clean_segments(struct the_nilfs
*nilfs
,
806 struct nilfs_argv
*argv
, void **kbufs
)
811 ret
= nilfs_ioctl_delete_checkpoints(nilfs
, &argv
[1], kbufs
[1]);
814 * can safely abort because checkpoints can be removed
817 msg
= "cannot delete checkpoints";
820 ret
= nilfs_ioctl_free_vblocknrs(nilfs
, &argv
[2], kbufs
[2]);
823 * can safely abort because DAT file is updated atomically
824 * using a copy-on-write technique.
826 msg
= "cannot delete virtual blocks from DAT file";
829 ret
= nilfs_ioctl_mark_blocks_dirty(nilfs
, &argv
[3], kbufs
[3]);
832 * can safely abort because the operation is nondestructive.
834 msg
= "cannot mark copying blocks dirty";
840 nilfs_err(nilfs
->ns_sb
, "error %d preparing GC: %s", ret
, msg
);
845 * nilfs_ioctl_clean_segments - clean segments
846 * @inode: inode object
848 * @cmd: ioctl's request code
849 * @argp: pointer on argument from userspace
851 * Description: nilfs_ioctl_clean_segments() function makes garbage
852 * collection operation in the environment of requested parameters
853 * from userspace. The NILFS_IOCTL_CLEAN_SEGMENTS ioctl is used by
854 * nilfs_cleanerd daemon.
856 * Return Value: On success, 0 is returned or error code, otherwise.
858 static int nilfs_ioctl_clean_segments(struct inode
*inode
, struct file
*filp
,
859 unsigned int cmd
, void __user
*argp
)
861 struct nilfs_argv argv
[5];
862 static const size_t argsz
[5] = {
863 sizeof(struct nilfs_vdesc
),
864 sizeof(struct nilfs_period
),
866 sizeof(struct nilfs_bdesc
),
871 struct the_nilfs
*nilfs
;
875 if (!capable(CAP_SYS_ADMIN
))
878 ret
= mnt_want_write_file(filp
);
883 if (copy_from_user(argv
, argp
, sizeof(argv
)))
887 nsegs
= argv
[4].v_nmembs
;
888 if (argv
[4].v_size
!= argsz
[4])
890 if (nsegs
> UINT_MAX
/ sizeof(__u64
))
894 * argv[4] points to segment numbers this ioctl cleans. We
895 * use kmalloc() for its buffer because memory used for the
896 * segment numbers is enough small.
898 kbufs
[4] = memdup_user((void __user
*)(unsigned long)argv
[4].v_base
,
899 nsegs
* sizeof(__u64
));
900 if (IS_ERR(kbufs
[4])) {
901 ret
= PTR_ERR(kbufs
[4]);
904 nilfs
= inode
->i_sb
->s_fs_info
;
906 for (n
= 0; n
< 4; n
++) {
908 if (argv
[n
].v_size
!= argsz
[n
])
911 if (argv
[n
].v_nmembs
> nsegs
* nilfs
->ns_blocks_per_segment
)
914 if (argv
[n
].v_nmembs
>= UINT_MAX
/ argv
[n
].v_size
)
917 len
= argv
[n
].v_size
* argv
[n
].v_nmembs
;
918 base
= (void __user
*)(unsigned long)argv
[n
].v_base
;
924 kbufs
[n
] = vmalloc(len
);
929 if (copy_from_user(kbufs
[n
], base
, len
)) {
937 * nilfs_ioctl_move_blocks() will call nilfs_iget_for_gc(),
938 * which will operates an inode list without blocking.
939 * To protect the list from concurrent operations,
940 * nilfs_ioctl_move_blocks should be atomic operation.
942 if (test_and_set_bit(THE_NILFS_GC_RUNNING
, &nilfs
->ns_flags
)) {
947 ret
= nilfs_ioctl_move_blocks(inode
->i_sb
, &argv
[0], kbufs
[0]);
949 nilfs_err(inode
->i_sb
,
950 "error %d preparing GC: cannot read source blocks",
953 if (nilfs_sb_need_update(nilfs
))
954 set_nilfs_discontinued(nilfs
);
955 ret
= nilfs_clean_segments(inode
->i_sb
, argv
, kbufs
);
958 nilfs_remove_all_gcinodes(nilfs
);
959 clear_nilfs_gc_running(nilfs
);
966 mnt_drop_write_file(filp
);
971 * nilfs_ioctl_sync - make a checkpoint
972 * @inode: inode object
974 * @cmd: ioctl's request code
975 * @argp: pointer on argument from userspace
977 * Description: nilfs_ioctl_sync() function constructs a logical segment
978 * for checkpointing. This function guarantees that all modified data
979 * and metadata are written out to the device when it successfully
982 * Return Value: On success, 0 is retured. On errors, one of the following
983 * negative error code is returned.
985 * %-EROFS - Read only filesystem.
989 * %-ENOSPC - No space left on device (only in a panic state).
991 * %-ERESTARTSYS - Interrupted.
993 * %-ENOMEM - Insufficient memory available.
995 * %-EFAULT - Failure during execution of requested operation.
997 static int nilfs_ioctl_sync(struct inode
*inode
, struct file
*filp
,
998 unsigned int cmd
, void __user
*argp
)
1002 struct the_nilfs
*nilfs
;
1004 ret
= nilfs_construct_segment(inode
->i_sb
);
1008 nilfs
= inode
->i_sb
->s_fs_info
;
1009 ret
= nilfs_flush_device(nilfs
);
1014 down_read(&nilfs
->ns_segctor_sem
);
1015 cno
= nilfs
->ns_cno
- 1;
1016 up_read(&nilfs
->ns_segctor_sem
);
1017 if (copy_to_user(argp
, &cno
, sizeof(cno
)))
1024 * nilfs_ioctl_resize - resize NILFS2 volume
1025 * @inode: inode object
1026 * @filp: file object
1027 * @argp: pointer on argument from userspace
1029 * Return Value: On success, 0 is returned or error code, otherwise.
1031 static int nilfs_ioctl_resize(struct inode
*inode
, struct file
*filp
,
1037 if (!capable(CAP_SYS_ADMIN
))
1040 ret
= mnt_want_write_file(filp
);
1045 if (copy_from_user(&newsize
, argp
, sizeof(newsize
)))
1046 goto out_drop_write
;
1048 ret
= nilfs_resize_fs(inode
->i_sb
, newsize
);
1051 mnt_drop_write_file(filp
);
1057 * nilfs_ioctl_trim_fs() - trim ioctl handle function
1058 * @inode: inode object
1059 * @argp: pointer on argument from userspace
1061 * Decription: nilfs_ioctl_trim_fs is the FITRIM ioctl handle function. It
1062 * checks the arguments from userspace and calls nilfs_sufile_trim_fs, which
1063 * performs the actual trim operation.
1065 * Return Value: On success, 0 is returned or negative error code, otherwise.
1067 static int nilfs_ioctl_trim_fs(struct inode
*inode
, void __user
*argp
)
1069 struct the_nilfs
*nilfs
= inode
->i_sb
->s_fs_info
;
1070 struct request_queue
*q
= bdev_get_queue(nilfs
->ns_bdev
);
1071 struct fstrim_range range
;
1074 if (!capable(CAP_SYS_ADMIN
))
1077 if (!blk_queue_discard(q
))
1080 if (copy_from_user(&range
, argp
, sizeof(range
)))
1083 range
.minlen
= max_t(u64
, range
.minlen
, q
->limits
.discard_granularity
);
1085 down_read(&nilfs
->ns_segctor_sem
);
1086 ret
= nilfs_sufile_trim_fs(nilfs
->ns_sufile
, &range
);
1087 up_read(&nilfs
->ns_segctor_sem
);
1092 if (copy_to_user(argp
, &range
, sizeof(range
)))
1099 * nilfs_ioctl_set_alloc_range - limit range of segments to be allocated
1100 * @inode: inode object
1101 * @argp: pointer on argument from userspace
1103 * Decription: nilfs_ioctl_set_alloc_range() function defines lower limit
1104 * of segments in bytes and upper limit of segments in bytes.
1105 * The NILFS_IOCTL_SET_ALLOC_RANGE is used by nilfs_resize utility.
1107 * Return Value: On success, 0 is returned or error code, otherwise.
1109 static int nilfs_ioctl_set_alloc_range(struct inode
*inode
, void __user
*argp
)
1111 struct the_nilfs
*nilfs
= inode
->i_sb
->s_fs_info
;
1113 __u64 minseg
, maxseg
;
1114 unsigned long segbytes
;
1117 if (!capable(CAP_SYS_ADMIN
))
1121 if (copy_from_user(range
, argp
, sizeof(__u64
[2])))
1125 if (range
[1] > i_size_read(inode
->i_sb
->s_bdev
->bd_inode
))
1128 segbytes
= nilfs
->ns_blocks_per_segment
* nilfs
->ns_blocksize
;
1130 minseg
= range
[0] + segbytes
- 1;
1131 do_div(minseg
, segbytes
);
1132 maxseg
= NILFS_SB2_OFFSET_BYTES(range
[1]);
1133 do_div(maxseg
, segbytes
);
1136 ret
= nilfs_sufile_set_alloc_range(nilfs
->ns_sufile
, minseg
, maxseg
);
1142 * nilfs_ioctl_get_info - wrapping function of get metadata info
1143 * @inode: inode object
1144 * @filp: file object
1145 * @cmd: ioctl's request code
1146 * @argp: pointer on argument from userspace
1147 * @membsz: size of an item in bytes
1148 * @dofunc: concrete function of getting metadata info
1150 * Description: nilfs_ioctl_get_info() gets metadata info by means of
1151 * calling dofunc() function.
1153 * Return Value: On success, 0 is returned and requested metadata info
1154 * is copied into userspace. On error, one of the following
1155 * negative error codes is returned.
1157 * %-EINVAL - Invalid arguments from userspace.
1159 * %-ENOMEM - Insufficient amount of memory available.
1161 * %-EFAULT - Failure during execution of requested operation.
1163 static int nilfs_ioctl_get_info(struct inode
*inode
, struct file
*filp
,
1164 unsigned int cmd
, void __user
*argp
,
1166 ssize_t (*dofunc
)(struct the_nilfs
*,
1168 void *, size_t, size_t))
1171 struct the_nilfs
*nilfs
= inode
->i_sb
->s_fs_info
;
1172 struct nilfs_argv argv
;
1175 if (copy_from_user(&argv
, argp
, sizeof(argv
)))
1178 if (argv
.v_size
< membsz
)
1181 ret
= nilfs_ioctl_wrap_copy(nilfs
, &argv
, _IOC_DIR(cmd
), dofunc
);
1185 if (copy_to_user(argp
, &argv
, sizeof(argv
)))
1191 * nilfs_ioctl_set_suinfo - set segment usage info
1192 * @inode: inode object
1193 * @filp: file object
1194 * @cmd: ioctl's request code
1195 * @argp: pointer on argument from userspace
1197 * Description: Expects an array of nilfs_suinfo_update structures
1198 * encapsulated in nilfs_argv and updates the segment usage info
1199 * according to the flags in nilfs_suinfo_update.
1201 * Return Value: On success, 0 is returned. On error, one of the
1202 * following negative error codes is returned.
1204 * %-EPERM - Not enough permissions
1206 * %-EFAULT - Error copying input data
1208 * %-EIO - I/O error.
1210 * %-ENOMEM - Insufficient amount of memory available.
1212 * %-EINVAL - Invalid values in input (segment number, flags or nblocks)
1214 static int nilfs_ioctl_set_suinfo(struct inode
*inode
, struct file
*filp
,
1215 unsigned int cmd
, void __user
*argp
)
1217 struct the_nilfs
*nilfs
= inode
->i_sb
->s_fs_info
;
1218 struct nilfs_transaction_info ti
;
1219 struct nilfs_argv argv
;
1225 if (!capable(CAP_SYS_ADMIN
))
1228 ret
= mnt_want_write_file(filp
);
1233 if (copy_from_user(&argv
, argp
, sizeof(argv
)))
1237 if (argv
.v_size
< sizeof(struct nilfs_suinfo_update
))
1240 if (argv
.v_nmembs
> nilfs
->ns_nsegments
)
1243 if (argv
.v_nmembs
>= UINT_MAX
/ argv
.v_size
)
1246 len
= argv
.v_size
* argv
.v_nmembs
;
1252 base
= (void __user
*)(unsigned long)argv
.v_base
;
1253 kbuf
= vmalloc(len
);
1259 if (copy_from_user(kbuf
, base
, len
)) {
1264 nilfs_transaction_begin(inode
->i_sb
, &ti
, 0);
1265 ret
= nilfs_sufile_set_suinfo(nilfs
->ns_sufile
, kbuf
, argv
.v_size
,
1267 if (unlikely(ret
< 0))
1268 nilfs_transaction_abort(inode
->i_sb
);
1270 nilfs_transaction_commit(inode
->i_sb
); /* never fails */
1275 mnt_drop_write_file(filp
);
1279 long nilfs_ioctl(struct file
*filp
, unsigned int cmd
, unsigned long arg
)
1281 struct inode
*inode
= file_inode(filp
);
1282 void __user
*argp
= (void __user
*)arg
;
1285 case FS_IOC_GETFLAGS
:
1286 return nilfs_ioctl_getflags(inode
, argp
);
1287 case FS_IOC_SETFLAGS
:
1288 return nilfs_ioctl_setflags(inode
, filp
, argp
);
1289 case FS_IOC_GETVERSION
:
1290 return nilfs_ioctl_getversion(inode
, argp
);
1291 case NILFS_IOCTL_CHANGE_CPMODE
:
1292 return nilfs_ioctl_change_cpmode(inode
, filp
, cmd
, argp
);
1293 case NILFS_IOCTL_DELETE_CHECKPOINT
:
1294 return nilfs_ioctl_delete_checkpoint(inode
, filp
, cmd
, argp
);
1295 case NILFS_IOCTL_GET_CPINFO
:
1296 return nilfs_ioctl_get_info(inode
, filp
, cmd
, argp
,
1297 sizeof(struct nilfs_cpinfo
),
1298 nilfs_ioctl_do_get_cpinfo
);
1299 case NILFS_IOCTL_GET_CPSTAT
:
1300 return nilfs_ioctl_get_cpstat(inode
, filp
, cmd
, argp
);
1301 case NILFS_IOCTL_GET_SUINFO
:
1302 return nilfs_ioctl_get_info(inode
, filp
, cmd
, argp
,
1303 sizeof(struct nilfs_suinfo
),
1304 nilfs_ioctl_do_get_suinfo
);
1305 case NILFS_IOCTL_SET_SUINFO
:
1306 return nilfs_ioctl_set_suinfo(inode
, filp
, cmd
, argp
);
1307 case NILFS_IOCTL_GET_SUSTAT
:
1308 return nilfs_ioctl_get_sustat(inode
, filp
, cmd
, argp
);
1309 case NILFS_IOCTL_GET_VINFO
:
1310 return nilfs_ioctl_get_info(inode
, filp
, cmd
, argp
,
1311 sizeof(struct nilfs_vinfo
),
1312 nilfs_ioctl_do_get_vinfo
);
1313 case NILFS_IOCTL_GET_BDESCS
:
1314 return nilfs_ioctl_get_bdescs(inode
, filp
, cmd
, argp
);
1315 case NILFS_IOCTL_CLEAN_SEGMENTS
:
1316 return nilfs_ioctl_clean_segments(inode
, filp
, cmd
, argp
);
1317 case NILFS_IOCTL_SYNC
:
1318 return nilfs_ioctl_sync(inode
, filp
, cmd
, argp
);
1319 case NILFS_IOCTL_RESIZE
:
1320 return nilfs_ioctl_resize(inode
, filp
, argp
);
1321 case NILFS_IOCTL_SET_ALLOC_RANGE
:
1322 return nilfs_ioctl_set_alloc_range(inode
, argp
);
1324 return nilfs_ioctl_trim_fs(inode
, argp
);
1330 #ifdef CONFIG_COMPAT
1331 long nilfs_compat_ioctl(struct file
*filp
, unsigned int cmd
, unsigned long arg
)
1334 case FS_IOC32_GETFLAGS
:
1335 cmd
= FS_IOC_GETFLAGS
;
1337 case FS_IOC32_SETFLAGS
:
1338 cmd
= FS_IOC_SETFLAGS
;
1340 case FS_IOC32_GETVERSION
:
1341 cmd
= FS_IOC_GETVERSION
;
1343 case NILFS_IOCTL_CHANGE_CPMODE
:
1344 case NILFS_IOCTL_DELETE_CHECKPOINT
:
1345 case NILFS_IOCTL_GET_CPINFO
:
1346 case NILFS_IOCTL_GET_CPSTAT
:
1347 case NILFS_IOCTL_GET_SUINFO
:
1348 case NILFS_IOCTL_SET_SUINFO
:
1349 case NILFS_IOCTL_GET_SUSTAT
:
1350 case NILFS_IOCTL_GET_VINFO
:
1351 case NILFS_IOCTL_GET_BDESCS
:
1352 case NILFS_IOCTL_CLEAN_SEGMENTS
:
1353 case NILFS_IOCTL_SYNC
:
1354 case NILFS_IOCTL_RESIZE
:
1355 case NILFS_IOCTL_SET_ALLOC_RANGE
:
1359 return -ENOIOCTLCMD
;
1361 return nilfs_ioctl(filp
, cmd
, (unsigned long)compat_ptr(arg
));