1 // SPDX-License-Identifier: GPL-2.0
3 * linux/fs/ext4/ioctl.c
5 * Copyright (C) 1993, 1994, 1995
7 * Laboratoire MASI - Institut Blaise Pascal
8 * Universite Pierre et Marie Curie (Paris VI)
12 #include <linux/capability.h>
13 #include <linux/time.h>
14 #include <linux/compat.h>
15 #include <linux/mount.h>
16 #include <linux/file.h>
17 #include <linux/quotaops.h>
18 #include <linux/random.h>
19 #include <linux/uuid.h>
20 #include <linux/uaccess.h>
21 #include <linux/delay.h>
22 #include <linux/iversion.h>
23 #include "ext4_jbd2.h"
25 #include <linux/fsmap.h>
27 #include <trace/events/ext4.h>
30 * Swap memory between @a and @b for @len bytes.
32 * @a: pointer to first memory area
33 * @b: pointer to second memory area
34 * @len: number of bytes to swap
37 static void memswap(void *a, void *b, size_t len)
39 unsigned char *ap, *bp;
41 ap = (unsigned char *)a;
42 bp = (unsigned char *)b;
51 * Swap i_data and associated attributes between @inode1 and @inode2.
52 * This function is used for the primary swap between inode1 and inode2
53 * and also to revert this primary swap in case of errors.
55 * Therefore you have to make sure, that calling this method twice
56 * will revert all changes.
58 * @inode1: pointer to first inode
59 * @inode2: pointer to second inode
61 static void swap_inode_data(struct inode *inode1, struct inode *inode2)
64 struct ext4_inode_info *ei1;
65 struct ext4_inode_info *ei2;
71 swap(inode1->i_version, inode2->i_version);
72 swap(inode1->i_atime, inode2->i_atime);
73 swap(inode1->i_mtime, inode2->i_mtime);
75 memswap(ei1->i_data, ei2->i_data, sizeof(ei1->i_data));
76 tmp = ei1->i_flags & EXT4_FL_SHOULD_SWAP;
77 ei1->i_flags = (ei2->i_flags & EXT4_FL_SHOULD_SWAP) |
78 (ei1->i_flags & ~EXT4_FL_SHOULD_SWAP);
79 ei2->i_flags = tmp | (ei2->i_flags & ~EXT4_FL_SHOULD_SWAP);
80 swap(ei1->i_disksize, ei2->i_disksize);
81 ext4_es_remove_extent(inode1, 0, EXT_MAX_BLOCKS);
82 ext4_es_remove_extent(inode2, 0, EXT_MAX_BLOCKS);
84 isize = i_size_read(inode1);
85 i_size_write(inode1, i_size_read(inode2));
86 i_size_write(inode2, isize);
89 static void reset_inode_seed(struct inode *inode)
91 struct ext4_inode_info *ei = EXT4_I(inode);
92 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
93 __le32 inum = cpu_to_le32(inode->i_ino);
94 __le32 gen = cpu_to_le32(inode->i_generation);
97 if (!ext4_has_metadata_csum(inode->i_sb))
100 csum = ext4_chksum(sbi, sbi->s_csum_seed, (__u8 *)&inum, sizeof(inum));
101 ei->i_csum_seed = ext4_chksum(sbi, csum, (__u8 *)&gen, sizeof(gen));
105 * Swap the information from the given @inode and the inode
106 * EXT4_BOOT_LOADER_INO. It will basically swap i_data and all other
107 * important fields of the inodes.
109 * @sb: the super block of the filesystem
110 * @inode: the inode to swap with EXT4_BOOT_LOADER_INO
113 static long swap_inode_boot_loader(struct super_block *sb,
118 struct inode *inode_bl;
119 struct ext4_inode_info *ei_bl;
120 qsize_t size, size_bl, diff;
122 unsigned short bytes;
124 inode_bl = ext4_iget(sb, EXT4_BOOT_LOADER_INO, EXT4_IGET_SPECIAL);
125 if (IS_ERR(inode_bl))
126 return PTR_ERR(inode_bl);
127 ei_bl = EXT4_I(inode_bl);
129 /* Protect orig inodes against a truncate and make sure,
130 * that only 1 swap_inode_boot_loader is running. */
131 lock_two_nondirectories(inode, inode_bl);
133 if (inode->i_nlink != 1 || !S_ISREG(inode->i_mode) ||
134 IS_SWAPFILE(inode) || IS_ENCRYPTED(inode) ||
135 (EXT4_I(inode)->i_flags & EXT4_JOURNAL_DATA_FL) ||
136 ext4_has_inline_data(inode)) {
138 goto journal_err_out;
141 if (IS_RDONLY(inode) || IS_APPEND(inode) || IS_IMMUTABLE(inode) ||
142 !inode_owner_or_capable(inode) || !capable(CAP_SYS_ADMIN)) {
144 goto journal_err_out;
147 down_write(&EXT4_I(inode)->i_mmap_sem);
148 err = filemap_write_and_wait(inode->i_mapping);
152 err = filemap_write_and_wait(inode_bl->i_mapping);
156 /* Wait for all existing dio workers */
157 inode_dio_wait(inode);
158 inode_dio_wait(inode_bl);
160 truncate_inode_pages(&inode->i_data, 0);
161 truncate_inode_pages(&inode_bl->i_data, 0);
163 handle = ext4_journal_start(inode_bl, EXT4_HT_MOVE_EXTENTS, 2);
164 if (IS_ERR(handle)) {
169 /* Protect extent tree against block allocations via delalloc */
170 ext4_double_down_write_data_sem(inode, inode_bl);
172 if (inode_bl->i_nlink == 0) {
173 /* this inode has never been used as a BOOT_LOADER */
174 set_nlink(inode_bl, 1);
175 i_uid_write(inode_bl, 0);
176 i_gid_write(inode_bl, 0);
177 inode_bl->i_flags = 0;
179 inode_set_iversion(inode_bl, 1);
180 i_size_write(inode_bl, 0);
181 inode_bl->i_mode = S_IFREG;
182 if (ext4_has_feature_extents(sb)) {
183 ext4_set_inode_flag(inode_bl, EXT4_INODE_EXTENTS);
184 ext4_ext_tree_init(handle, inode_bl);
186 memset(ei_bl->i_data, 0, sizeof(ei_bl->i_data));
189 err = dquot_initialize(inode);
193 size = (qsize_t)(inode->i_blocks) * (1 << 9) + inode->i_bytes;
194 size_bl = (qsize_t)(inode_bl->i_blocks) * (1 << 9) + inode_bl->i_bytes;
195 diff = size - size_bl;
196 swap_inode_data(inode, inode_bl);
198 inode->i_ctime = inode_bl->i_ctime = current_time(inode);
200 inode->i_generation = prandom_u32();
201 inode_bl->i_generation = prandom_u32();
202 reset_inode_seed(inode);
203 reset_inode_seed(inode_bl);
205 ext4_discard_preallocations(inode);
207 err = ext4_mark_inode_dirty(handle, inode);
209 /* No need to update quota information. */
210 ext4_warning(inode->i_sb,
211 "couldn't mark inode #%lu dirty (err %d)",
213 /* Revert all changes: */
214 swap_inode_data(inode, inode_bl);
215 ext4_mark_inode_dirty(handle, inode);
219 blocks = inode_bl->i_blocks;
220 bytes = inode_bl->i_bytes;
221 inode_bl->i_blocks = inode->i_blocks;
222 inode_bl->i_bytes = inode->i_bytes;
223 err = ext4_mark_inode_dirty(handle, inode_bl);
225 /* No need to update quota information. */
226 ext4_warning(inode_bl->i_sb,
227 "couldn't mark inode #%lu dirty (err %d)",
228 inode_bl->i_ino, err);
232 /* Bootloader inode should not be counted into quota information. */
234 dquot_free_space(inode, diff);
236 err = dquot_alloc_space(inode, -1 * diff);
240 /* Revert all changes: */
241 inode_bl->i_blocks = blocks;
242 inode_bl->i_bytes = bytes;
243 swap_inode_data(inode, inode_bl);
244 ext4_mark_inode_dirty(handle, inode);
245 ext4_mark_inode_dirty(handle, inode_bl);
249 ext4_journal_stop(handle);
250 ext4_double_up_write_data_sem(inode, inode_bl);
253 up_write(&EXT4_I(inode)->i_mmap_sem);
255 unlock_two_nondirectories(inode, inode_bl);
260 #ifdef CONFIG_FS_ENCRYPTION
261 static int uuid_is_zero(__u8 u[16])
265 for (i = 0; i < 16; i++)
273 * If immutable is set and we are not clearing it, we're not allowed to change
274 * anything else in the inode. Don't error out if we're only trying to set
275 * immutable on an immutable file.
277 static int ext4_ioctl_check_immutable(struct inode *inode, __u32 new_projid,
280 struct ext4_inode_info *ei = EXT4_I(inode);
281 unsigned int oldflags = ei->i_flags;
283 if (!(oldflags & EXT4_IMMUTABLE_FL) || !(flags & EXT4_IMMUTABLE_FL))
286 if ((oldflags & ~EXT4_IMMUTABLE_FL) != (flags & ~EXT4_IMMUTABLE_FL))
288 if (ext4_has_feature_project(inode->i_sb) &&
289 __kprojid_val(ei->i_projid) != new_projid)
295 static int ext4_ioctl_setflags(struct inode *inode,
298 struct ext4_inode_info *ei = EXT4_I(inode);
299 handle_t *handle = NULL;
300 int err = -EPERM, migrate = 0;
301 struct ext4_iloc iloc;
302 unsigned int oldflags, mask, i;
304 struct super_block *sb = inode->i_sb;
306 /* Is it quota file? Do not allow user to mess with it */
307 if (ext4_is_quota_file(inode))
310 oldflags = ei->i_flags;
312 /* The JOURNAL_DATA flag is modifiable only by root */
313 jflag = flags & EXT4_JOURNAL_DATA_FL;
315 err = vfs_ioc_setflags_prepare(inode, oldflags, flags);
320 * The JOURNAL_DATA flag can only be changed by
321 * the relevant capability.
323 if ((jflag ^ oldflags) & (EXT4_JOURNAL_DATA_FL)) {
324 if (!capable(CAP_SYS_RESOURCE))
327 if ((flags ^ oldflags) & EXT4_EXTENTS_FL)
330 if (flags & EXT4_EOFBLOCKS_FL) {
331 /* we don't support adding EOFBLOCKS flag */
332 if (!(oldflags & EXT4_EOFBLOCKS_FL)) {
336 } else if (oldflags & EXT4_EOFBLOCKS_FL) {
337 err = ext4_truncate(inode);
342 if ((flags ^ oldflags) & EXT4_CASEFOLD_FL) {
343 if (!ext4_has_feature_casefold(sb)) {
348 if (!S_ISDIR(inode->i_mode)) {
353 if (!ext4_empty_dir(inode)) {
360 * Wait for all pending directio and then flush all the dirty pages
361 * for this file. The flush marks all the pages readonly, so any
362 * subsequent attempt to write to the file (particularly mmap pages)
363 * will come through the filesystem and fail.
365 if (S_ISREG(inode->i_mode) && !IS_IMMUTABLE(inode) &&
366 (flags & EXT4_IMMUTABLE_FL)) {
367 inode_dio_wait(inode);
368 err = filemap_write_and_wait(inode->i_mapping);
373 handle = ext4_journal_start(inode, EXT4_HT_INODE, 1);
374 if (IS_ERR(handle)) {
375 err = PTR_ERR(handle);
379 ext4_handle_sync(handle);
380 err = ext4_reserve_inode_write(handle, inode, &iloc);
384 for (i = 0, mask = 1; i < 32; i++, mask <<= 1) {
385 if (!(mask & EXT4_FL_USER_MODIFIABLE))
387 /* These flags get special treatment later */
388 if (mask == EXT4_JOURNAL_DATA_FL || mask == EXT4_EXTENTS_FL)
391 ext4_set_inode_flag(inode, i);
393 ext4_clear_inode_flag(inode, i);
396 ext4_set_inode_flags(inode);
397 inode->i_ctime = current_time(inode);
399 err = ext4_mark_iloc_dirty(handle, inode, &iloc);
401 ext4_journal_stop(handle);
405 if ((jflag ^ oldflags) & (EXT4_JOURNAL_DATA_FL)) {
407 * Changes to the journaling mode can cause unsafe changes to
408 * S_DAX if we are using the DAX mount option.
410 if (test_opt(inode->i_sb, DAX)) {
415 err = ext4_change_inode_journal_flag(inode, jflag);
420 if (flags & EXT4_EXTENTS_FL)
421 err = ext4_ext_migrate(inode);
423 err = ext4_ind_migrate(inode);
431 static int ext4_ioctl_setproject(struct file *filp, __u32 projid)
433 struct inode *inode = file_inode(filp);
434 struct super_block *sb = inode->i_sb;
435 struct ext4_inode_info *ei = EXT4_I(inode);
439 struct ext4_iloc iloc;
440 struct ext4_inode *raw_inode;
441 struct dquot *transfer_to[MAXQUOTAS] = { };
443 if (!ext4_has_feature_project(sb)) {
444 if (projid != EXT4_DEF_PROJID)
450 if (EXT4_INODE_SIZE(sb) <= EXT4_GOOD_OLD_INODE_SIZE)
453 kprojid = make_kprojid(&init_user_ns, (projid_t)projid);
455 if (projid_eq(kprojid, EXT4_I(inode)->i_projid))
459 /* Is it quota file? Do not allow user to mess with it */
460 if (ext4_is_quota_file(inode))
463 err = ext4_get_inode_loc(inode, &iloc);
467 raw_inode = ext4_raw_inode(&iloc);
468 if (!EXT4_FITS_IN_INODE(raw_inode, ei, i_projid)) {
469 err = ext4_expand_extra_isize(inode,
470 EXT4_SB(sb)->s_want_extra_isize,
478 err = dquot_initialize(inode);
482 handle = ext4_journal_start(inode, EXT4_HT_QUOTA,
483 EXT4_QUOTA_INIT_BLOCKS(sb) +
484 EXT4_QUOTA_DEL_BLOCKS(sb) + 3);
486 return PTR_ERR(handle);
488 err = ext4_reserve_inode_write(handle, inode, &iloc);
492 transfer_to[PRJQUOTA] = dqget(sb, make_kqid_projid(kprojid));
493 if (!IS_ERR(transfer_to[PRJQUOTA])) {
495 /* __dquot_transfer() calls back ext4_get_inode_usage() which
496 * counts xattr inode references.
498 down_read(&EXT4_I(inode)->xattr_sem);
499 err = __dquot_transfer(inode, transfer_to);
500 up_read(&EXT4_I(inode)->xattr_sem);
501 dqput(transfer_to[PRJQUOTA]);
506 EXT4_I(inode)->i_projid = kprojid;
507 inode->i_ctime = current_time(inode);
509 rc = ext4_mark_iloc_dirty(handle, inode, &iloc);
513 ext4_journal_stop(handle);
517 static int ext4_ioctl_setproject(struct file *filp, __u32 projid)
519 if (projid != EXT4_DEF_PROJID)
525 /* Transfer internal flags to xflags */
526 static inline __u32 ext4_iflags_to_xflags(unsigned long iflags)
530 if (iflags & EXT4_SYNC_FL)
531 xflags |= FS_XFLAG_SYNC;
532 if (iflags & EXT4_IMMUTABLE_FL)
533 xflags |= FS_XFLAG_IMMUTABLE;
534 if (iflags & EXT4_APPEND_FL)
535 xflags |= FS_XFLAG_APPEND;
536 if (iflags & EXT4_NODUMP_FL)
537 xflags |= FS_XFLAG_NODUMP;
538 if (iflags & EXT4_NOATIME_FL)
539 xflags |= FS_XFLAG_NOATIME;
540 if (iflags & EXT4_PROJINHERIT_FL)
541 xflags |= FS_XFLAG_PROJINHERIT;
545 #define EXT4_SUPPORTED_FS_XFLAGS (FS_XFLAG_SYNC | FS_XFLAG_IMMUTABLE | \
546 FS_XFLAG_APPEND | FS_XFLAG_NODUMP | \
547 FS_XFLAG_NOATIME | FS_XFLAG_PROJINHERIT)
549 /* Transfer xflags flags to internal */
550 static inline unsigned long ext4_xflags_to_iflags(__u32 xflags)
552 unsigned long iflags = 0;
554 if (xflags & FS_XFLAG_SYNC)
555 iflags |= EXT4_SYNC_FL;
556 if (xflags & FS_XFLAG_IMMUTABLE)
557 iflags |= EXT4_IMMUTABLE_FL;
558 if (xflags & FS_XFLAG_APPEND)
559 iflags |= EXT4_APPEND_FL;
560 if (xflags & FS_XFLAG_NODUMP)
561 iflags |= EXT4_NODUMP_FL;
562 if (xflags & FS_XFLAG_NOATIME)
563 iflags |= EXT4_NOATIME_FL;
564 if (xflags & FS_XFLAG_PROJINHERIT)
565 iflags |= EXT4_PROJINHERIT_FL;
570 static int ext4_shutdown(struct super_block *sb, unsigned long arg)
572 struct ext4_sb_info *sbi = EXT4_SB(sb);
575 if (!capable(CAP_SYS_ADMIN))
578 if (get_user(flags, (__u32 __user *)arg))
581 if (flags > EXT4_GOING_FLAGS_NOLOGFLUSH)
584 if (ext4_forced_shutdown(sbi))
587 ext4_msg(sb, KERN_ALERT, "shut down requested (%d)", flags);
588 trace_ext4_shutdown(sb, flags);
591 case EXT4_GOING_FLAGS_DEFAULT:
592 freeze_bdev(sb->s_bdev);
593 set_bit(EXT4_FLAGS_SHUTDOWN, &sbi->s_ext4_flags);
594 thaw_bdev(sb->s_bdev, sb);
596 case EXT4_GOING_FLAGS_LOGFLUSH:
597 set_bit(EXT4_FLAGS_SHUTDOWN, &sbi->s_ext4_flags);
598 if (sbi->s_journal && !is_journal_aborted(sbi->s_journal)) {
599 (void) ext4_force_commit(sb);
600 jbd2_journal_abort(sbi->s_journal, -ESHUTDOWN);
603 case EXT4_GOING_FLAGS_NOLOGFLUSH:
604 set_bit(EXT4_FLAGS_SHUTDOWN, &sbi->s_ext4_flags);
605 if (sbi->s_journal && !is_journal_aborted(sbi->s_journal))
606 jbd2_journal_abort(sbi->s_journal, -ESHUTDOWN);
611 clear_opt(sb, DISCARD);
615 struct getfsmap_info {
616 struct super_block *gi_sb;
617 struct fsmap_head __user *gi_data;
622 static int ext4_getfsmap_format(struct ext4_fsmap *xfm, void *priv)
624 struct getfsmap_info *info = priv;
627 trace_ext4_getfsmap_mapping(info->gi_sb, xfm);
629 info->gi_last_flags = xfm->fmr_flags;
630 ext4_fsmap_from_internal(info->gi_sb, &fm, xfm);
631 if (copy_to_user(&info->gi_data->fmh_recs[info->gi_idx++], &fm,
632 sizeof(struct fsmap)))
638 static int ext4_ioc_getfsmap(struct super_block *sb,
639 struct fsmap_head __user *arg)
641 struct getfsmap_info info = { NULL };
642 struct ext4_fsmap_head xhead = {0};
643 struct fsmap_head head;
644 bool aborted = false;
647 if (copy_from_user(&head, arg, sizeof(struct fsmap_head)))
649 if (memchr_inv(head.fmh_reserved, 0, sizeof(head.fmh_reserved)) ||
650 memchr_inv(head.fmh_keys[0].fmr_reserved, 0,
651 sizeof(head.fmh_keys[0].fmr_reserved)) ||
652 memchr_inv(head.fmh_keys[1].fmr_reserved, 0,
653 sizeof(head.fmh_keys[1].fmr_reserved)))
656 * ext4 doesn't report file extents at all, so the only valid
657 * file offsets are the magic ones (all zeroes or all ones).
659 if (head.fmh_keys[0].fmr_offset ||
660 (head.fmh_keys[1].fmr_offset != 0 &&
661 head.fmh_keys[1].fmr_offset != -1ULL))
664 xhead.fmh_iflags = head.fmh_iflags;
665 xhead.fmh_count = head.fmh_count;
666 ext4_fsmap_to_internal(sb, &xhead.fmh_keys[0], &head.fmh_keys[0]);
667 ext4_fsmap_to_internal(sb, &xhead.fmh_keys[1], &head.fmh_keys[1]);
669 trace_ext4_getfsmap_low_key(sb, &xhead.fmh_keys[0]);
670 trace_ext4_getfsmap_high_key(sb, &xhead.fmh_keys[1]);
674 error = ext4_getfsmap(sb, &xhead, ext4_getfsmap_format, &info);
675 if (error == EXT4_QUERY_RANGE_ABORT) {
681 /* If we didn't abort, set the "last" flag in the last fmx */
682 if (!aborted && info.gi_idx) {
683 info.gi_last_flags |= FMR_OF_LAST;
684 if (copy_to_user(&info.gi_data->fmh_recs[info.gi_idx - 1].fmr_flags,
686 sizeof(info.gi_last_flags)))
690 /* copy back header */
691 head.fmh_entries = xhead.fmh_entries;
692 head.fmh_oflags = xhead.fmh_oflags;
693 if (copy_to_user(arg, &head, sizeof(struct fsmap_head)))
699 static long ext4_ioctl_group_add(struct file *file,
700 struct ext4_new_group_data *input)
702 struct super_block *sb = file_inode(file)->i_sb;
705 err = ext4_resize_begin(sb);
709 if (ext4_has_feature_bigalloc(sb)) {
710 ext4_msg(sb, KERN_ERR,
711 "Online resizing not supported with bigalloc");
716 err = mnt_want_write_file(file);
720 err = ext4_group_add(sb, input);
721 if (EXT4_SB(sb)->s_journal) {
722 jbd2_journal_lock_updates(EXT4_SB(sb)->s_journal);
723 err2 = jbd2_journal_flush(EXT4_SB(sb)->s_journal);
724 jbd2_journal_unlock_updates(EXT4_SB(sb)->s_journal);
728 mnt_drop_write_file(file);
729 if (!err && ext4_has_group_desc_csum(sb) &&
730 test_opt(sb, INIT_INODE_TABLE))
731 err = ext4_register_li_request(sb, input->group);
737 static void ext4_fill_fsxattr(struct inode *inode, struct fsxattr *fa)
739 struct ext4_inode_info *ei = EXT4_I(inode);
741 simple_fill_fsxattr(fa, ext4_iflags_to_xflags(ei->i_flags &
742 EXT4_FL_USER_VISIBLE));
744 if (ext4_has_feature_project(inode->i_sb))
745 fa->fsx_projid = from_kprojid(&init_user_ns, ei->i_projid);
748 long ext4_ioctl(struct file *filp, unsigned int cmd, unsigned long arg)
750 struct inode *inode = file_inode(filp);
751 struct super_block *sb = inode->i_sb;
752 struct ext4_inode_info *ei = EXT4_I(inode);
755 ext4_debug("cmd = %u, arg = %lu\n", cmd, arg);
758 case FS_IOC_GETFSMAP:
759 return ext4_ioc_getfsmap(sb, (void __user *)arg);
760 case EXT4_IOC_GETFLAGS:
761 flags = ei->i_flags & EXT4_FL_USER_VISIBLE;
762 if (S_ISREG(inode->i_mode))
763 flags &= ~EXT4_PROJINHERIT_FL;
764 return put_user(flags, (int __user *) arg);
765 case EXT4_IOC_SETFLAGS: {
768 if (!inode_owner_or_capable(inode))
771 if (get_user(flags, (int __user *) arg))
774 if (flags & ~EXT4_FL_USER_VISIBLE)
777 * chattr(1) grabs flags via GETFLAGS, modifies the result and
778 * passes that to SETFLAGS. So we cannot easily make SETFLAGS
779 * more restrictive than just silently masking off visible but
780 * not settable flags as we always did.
782 flags &= EXT4_FL_USER_MODIFIABLE;
783 if (ext4_mask_flags(inode->i_mode, flags) != flags)
786 err = mnt_want_write_file(filp);
791 err = ext4_ioctl_check_immutable(inode,
792 from_kprojid(&init_user_ns, ei->i_projid),
795 err = ext4_ioctl_setflags(inode, flags);
797 mnt_drop_write_file(filp);
800 case EXT4_IOC_GETVERSION:
801 case EXT4_IOC_GETVERSION_OLD:
802 return put_user(inode->i_generation, (int __user *) arg);
803 case EXT4_IOC_SETVERSION:
804 case EXT4_IOC_SETVERSION_OLD: {
806 struct ext4_iloc iloc;
810 if (!inode_owner_or_capable(inode))
813 if (ext4_has_metadata_csum(inode->i_sb)) {
814 ext4_warning(sb, "Setting inode version is not "
815 "supported with metadata_csum enabled.");
819 err = mnt_want_write_file(filp);
822 if (get_user(generation, (int __user *) arg)) {
828 handle = ext4_journal_start(inode, EXT4_HT_INODE, 1);
829 if (IS_ERR(handle)) {
830 err = PTR_ERR(handle);
833 err = ext4_reserve_inode_write(handle, inode, &iloc);
835 inode->i_ctime = current_time(inode);
836 inode->i_generation = generation;
837 err = ext4_mark_iloc_dirty(handle, inode, &iloc);
839 ext4_journal_stop(handle);
844 mnt_drop_write_file(filp);
847 case EXT4_IOC_GROUP_EXTEND: {
848 ext4_fsblk_t n_blocks_count;
851 err = ext4_resize_begin(sb);
855 if (get_user(n_blocks_count, (__u32 __user *)arg)) {
857 goto group_extend_out;
860 if (ext4_has_feature_bigalloc(sb)) {
861 ext4_msg(sb, KERN_ERR,
862 "Online resizing not supported with bigalloc");
864 goto group_extend_out;
867 err = mnt_want_write_file(filp);
869 goto group_extend_out;
871 err = ext4_group_extend(sb, EXT4_SB(sb)->s_es, n_blocks_count);
872 if (EXT4_SB(sb)->s_journal) {
873 jbd2_journal_lock_updates(EXT4_SB(sb)->s_journal);
874 err2 = jbd2_journal_flush(EXT4_SB(sb)->s_journal);
875 jbd2_journal_unlock_updates(EXT4_SB(sb)->s_journal);
879 mnt_drop_write_file(filp);
885 case EXT4_IOC_MOVE_EXT: {
886 struct move_extent me;
890 if (!(filp->f_mode & FMODE_READ) ||
891 !(filp->f_mode & FMODE_WRITE))
894 if (copy_from_user(&me,
895 (struct move_extent __user *)arg, sizeof(me)))
899 donor = fdget(me.donor_fd);
903 if (!(donor.file->f_mode & FMODE_WRITE)) {
908 if (ext4_has_feature_bigalloc(sb)) {
909 ext4_msg(sb, KERN_ERR,
910 "Online defrag not supported with bigalloc");
913 } else if (IS_DAX(inode)) {
914 ext4_msg(sb, KERN_ERR,
915 "Online defrag not supported with DAX");
920 err = mnt_want_write_file(filp);
924 err = ext4_move_extents(filp, donor.file, me.orig_start,
925 me.donor_start, me.len, &me.moved_len);
926 mnt_drop_write_file(filp);
928 if (copy_to_user((struct move_extent __user *)arg,
936 case EXT4_IOC_GROUP_ADD: {
937 struct ext4_new_group_data input;
939 if (copy_from_user(&input, (struct ext4_new_group_input __user *)arg,
943 return ext4_ioctl_group_add(filp, &input);
946 case EXT4_IOC_MIGRATE:
949 if (!inode_owner_or_capable(inode))
952 err = mnt_want_write_file(filp);
956 * inode_mutex prevent write and truncate on the file.
957 * Read still goes through. We take i_data_sem in
958 * ext4_ext_swap_inode_data before we switch the
959 * inode format to prevent read.
962 err = ext4_ext_migrate(inode);
963 inode_unlock((inode));
964 mnt_drop_write_file(filp);
968 case EXT4_IOC_ALLOC_DA_BLKS:
971 if (!inode_owner_or_capable(inode))
974 err = mnt_want_write_file(filp);
977 err = ext4_alloc_da_blocks(inode);
978 mnt_drop_write_file(filp);
982 case EXT4_IOC_SWAP_BOOT:
985 if (!(filp->f_mode & FMODE_WRITE))
987 err = mnt_want_write_file(filp);
990 err = swap_inode_boot_loader(sb, inode);
991 mnt_drop_write_file(filp);
995 case EXT4_IOC_RESIZE_FS: {
996 ext4_fsblk_t n_blocks_count;
997 int err = 0, err2 = 0;
998 ext4_group_t o_group = EXT4_SB(sb)->s_groups_count;
1000 if (copy_from_user(&n_blocks_count, (__u64 __user *)arg,
1005 err = ext4_resize_begin(sb);
1009 err = mnt_want_write_file(filp);
1013 err = ext4_resize_fs(sb, n_blocks_count);
1014 if (EXT4_SB(sb)->s_journal) {
1015 jbd2_journal_lock_updates(EXT4_SB(sb)->s_journal);
1016 err2 = jbd2_journal_flush(EXT4_SB(sb)->s_journal);
1017 jbd2_journal_unlock_updates(EXT4_SB(sb)->s_journal);
1021 mnt_drop_write_file(filp);
1022 if (!err && (o_group < EXT4_SB(sb)->s_groups_count) &&
1023 ext4_has_group_desc_csum(sb) &&
1024 test_opt(sb, INIT_INODE_TABLE))
1025 err = ext4_register_li_request(sb, o_group);
1028 ext4_resize_end(sb);
1034 struct request_queue *q = bdev_get_queue(sb->s_bdev);
1035 struct fstrim_range range;
1038 if (!capable(CAP_SYS_ADMIN))
1041 if (!blk_queue_discard(q))
1045 * We haven't replayed the journal, so we cannot use our
1046 * block-bitmap-guided storage zapping commands.
1048 if (test_opt(sb, NOLOAD) && ext4_has_feature_journal(sb))
1051 if (copy_from_user(&range, (struct fstrim_range __user *)arg,
1055 range.minlen = max((unsigned int)range.minlen,
1056 q->limits.discard_granularity);
1057 ret = ext4_trim_fs(sb, &range);
1061 if (copy_to_user((struct fstrim_range __user *)arg, &range,
1067 case EXT4_IOC_PRECACHE_EXTENTS:
1068 return ext4_ext_precache(inode);
1070 case EXT4_IOC_SET_ENCRYPTION_POLICY:
1071 if (!ext4_has_feature_encrypt(sb))
1073 return fscrypt_ioctl_set_policy(filp, (const void __user *)arg);
1075 case EXT4_IOC_GET_ENCRYPTION_PWSALT: {
1076 #ifdef CONFIG_FS_ENCRYPTION
1078 struct ext4_sb_info *sbi = EXT4_SB(sb);
1081 if (!ext4_has_feature_encrypt(sb))
1083 if (uuid_is_zero(sbi->s_es->s_encrypt_pw_salt)) {
1084 err = mnt_want_write_file(filp);
1087 handle = ext4_journal_start_sb(sb, EXT4_HT_MISC, 1);
1088 if (IS_ERR(handle)) {
1089 err = PTR_ERR(handle);
1090 goto pwsalt_err_exit;
1092 err = ext4_journal_get_write_access(handle, sbi->s_sbh);
1094 goto pwsalt_err_journal;
1095 generate_random_uuid(sbi->s_es->s_encrypt_pw_salt);
1096 err = ext4_handle_dirty_metadata(handle, NULL,
1099 err2 = ext4_journal_stop(handle);
1103 mnt_drop_write_file(filp);
1107 if (copy_to_user((void __user *) arg,
1108 sbi->s_es->s_encrypt_pw_salt, 16))
1115 case EXT4_IOC_GET_ENCRYPTION_POLICY:
1116 return fscrypt_ioctl_get_policy(filp, (void __user *)arg);
1118 case EXT4_IOC_FSGETXATTR:
1122 ext4_fill_fsxattr(inode, &fa);
1124 if (copy_to_user((struct fsxattr __user *)arg,
1129 case EXT4_IOC_FSSETXATTR:
1131 struct fsxattr fa, old_fa;
1134 if (copy_from_user(&fa, (struct fsxattr __user *)arg,
1138 /* Make sure caller has proper permission */
1139 if (!inode_owner_or_capable(inode))
1142 if (fa.fsx_xflags & ~EXT4_SUPPORTED_FS_XFLAGS)
1145 flags = ext4_xflags_to_iflags(fa.fsx_xflags);
1146 if (ext4_mask_flags(inode->i_mode, flags) != flags)
1149 err = mnt_want_write_file(filp);
1154 ext4_fill_fsxattr(inode, &old_fa);
1155 err = vfs_ioc_fssetxattr_check(inode, &old_fa, &fa);
1158 flags = (ei->i_flags & ~EXT4_FL_XFLAG_VISIBLE) |
1159 (flags & EXT4_FL_XFLAG_VISIBLE);
1160 err = ext4_ioctl_check_immutable(inode, fa.fsx_projid, flags);
1163 err = ext4_ioctl_setflags(inode, flags);
1166 err = ext4_ioctl_setproject(filp, fa.fsx_projid);
1168 inode_unlock(inode);
1169 mnt_drop_write_file(filp);
1172 case EXT4_IOC_SHUTDOWN:
1173 return ext4_shutdown(sb, arg);
1179 #ifdef CONFIG_COMPAT
1180 long ext4_compat_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
1182 /* These are just misnamed, they actually get/put from/to user an int */
1184 case EXT4_IOC32_GETFLAGS:
1185 cmd = EXT4_IOC_GETFLAGS;
1187 case EXT4_IOC32_SETFLAGS:
1188 cmd = EXT4_IOC_SETFLAGS;
1190 case EXT4_IOC32_GETVERSION:
1191 cmd = EXT4_IOC_GETVERSION;
1193 case EXT4_IOC32_SETVERSION:
1194 cmd = EXT4_IOC_SETVERSION;
1196 case EXT4_IOC32_GROUP_EXTEND:
1197 cmd = EXT4_IOC_GROUP_EXTEND;
1199 case EXT4_IOC32_GETVERSION_OLD:
1200 cmd = EXT4_IOC_GETVERSION_OLD;
1202 case EXT4_IOC32_SETVERSION_OLD:
1203 cmd = EXT4_IOC_SETVERSION_OLD;
1205 case EXT4_IOC32_GETRSVSZ:
1206 cmd = EXT4_IOC_GETRSVSZ;
1208 case EXT4_IOC32_SETRSVSZ:
1209 cmd = EXT4_IOC_SETRSVSZ;
1211 case EXT4_IOC32_GROUP_ADD: {
1212 struct compat_ext4_new_group_input __user *uinput;
1213 struct ext4_new_group_data input;
1216 uinput = compat_ptr(arg);
1217 err = get_user(input.group, &uinput->group);
1218 err |= get_user(input.block_bitmap, &uinput->block_bitmap);
1219 err |= get_user(input.inode_bitmap, &uinput->inode_bitmap);
1220 err |= get_user(input.inode_table, &uinput->inode_table);
1221 err |= get_user(input.blocks_count, &uinput->blocks_count);
1222 err |= get_user(input.reserved_blocks,
1223 &uinput->reserved_blocks);
1226 return ext4_ioctl_group_add(file, &input);
1228 case EXT4_IOC_MOVE_EXT:
1229 case EXT4_IOC_RESIZE_FS:
1230 case EXT4_IOC_PRECACHE_EXTENTS:
1231 case EXT4_IOC_SET_ENCRYPTION_POLICY:
1232 case EXT4_IOC_GET_ENCRYPTION_PWSALT:
1233 case EXT4_IOC_GET_ENCRYPTION_POLICY:
1234 case EXT4_IOC_SHUTDOWN:
1235 case FS_IOC_GETFSMAP:
1238 return -ENOIOCTLCMD;
1240 return ext4_ioctl(file, cmd, (unsigned long) compat_ptr(arg));