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 void ext4_dax_dontcache(struct inode *inode, unsigned int flags)
297 struct ext4_inode_info *ei = EXT4_I(inode);
299 if (S_ISDIR(inode->i_mode))
302 if (test_opt2(inode->i_sb, DAX_NEVER) ||
303 test_opt(inode->i_sb, DAX_ALWAYS))
306 if ((ei->i_flags ^ flags) & EXT4_DAX_FL)
307 d_mark_dontcache(inode);
310 static bool dax_compatible(struct inode *inode, unsigned int oldflags,
313 if (flags & EXT4_DAX_FL) {
314 if ((oldflags & EXT4_DAX_MUT_EXCL) ||
315 ext4_test_inode_state(inode,
316 EXT4_STATE_VERITY_IN_PROGRESS)) {
321 if ((flags & EXT4_DAX_MUT_EXCL) && (oldflags & EXT4_DAX_FL))
327 static int ext4_ioctl_setflags(struct inode *inode,
330 struct ext4_inode_info *ei = EXT4_I(inode);
331 handle_t *handle = NULL;
332 int err = -EPERM, migrate = 0;
333 struct ext4_iloc iloc;
334 unsigned int oldflags, mask, i;
335 struct super_block *sb = inode->i_sb;
337 /* Is it quota file? Do not allow user to mess with it */
338 if (ext4_is_quota_file(inode))
341 oldflags = ei->i_flags;
343 err = vfs_ioc_setflags_prepare(inode, oldflags, flags);
348 * The JOURNAL_DATA flag can only be changed by
349 * the relevant capability.
351 if ((flags ^ oldflags) & (EXT4_JOURNAL_DATA_FL)) {
352 if (!capable(CAP_SYS_RESOURCE))
356 if (!dax_compatible(inode, oldflags, flags)) {
361 if ((flags ^ oldflags) & EXT4_EXTENTS_FL)
364 if ((flags ^ oldflags) & EXT4_CASEFOLD_FL) {
365 if (!ext4_has_feature_casefold(sb)) {
370 if (!S_ISDIR(inode->i_mode)) {
375 if (!ext4_empty_dir(inode)) {
382 * Wait for all pending directio and then flush all the dirty pages
383 * for this file. The flush marks all the pages readonly, so any
384 * subsequent attempt to write to the file (particularly mmap pages)
385 * will come through the filesystem and fail.
387 if (S_ISREG(inode->i_mode) && !IS_IMMUTABLE(inode) &&
388 (flags & EXT4_IMMUTABLE_FL)) {
389 inode_dio_wait(inode);
390 err = filemap_write_and_wait(inode->i_mapping);
395 handle = ext4_journal_start(inode, EXT4_HT_INODE, 1);
396 if (IS_ERR(handle)) {
397 err = PTR_ERR(handle);
401 ext4_handle_sync(handle);
402 err = ext4_reserve_inode_write(handle, inode, &iloc);
406 ext4_dax_dontcache(inode, flags);
408 for (i = 0, mask = 1; i < 32; i++, mask <<= 1) {
409 if (!(mask & EXT4_FL_USER_MODIFIABLE))
411 /* These flags get special treatment later */
412 if (mask == EXT4_JOURNAL_DATA_FL || mask == EXT4_EXTENTS_FL)
415 ext4_set_inode_flag(inode, i);
417 ext4_clear_inode_flag(inode, i);
420 ext4_set_inode_flags(inode, false);
422 inode->i_ctime = current_time(inode);
424 err = ext4_mark_iloc_dirty(handle, inode, &iloc);
426 ext4_journal_stop(handle);
430 if ((flags ^ oldflags) & (EXT4_JOURNAL_DATA_FL)) {
432 * Changes to the journaling mode can cause unsafe changes to
433 * S_DAX if the inode is DAX
440 err = ext4_change_inode_journal_flag(inode,
441 flags & EXT4_JOURNAL_DATA_FL);
446 if (flags & EXT4_EXTENTS_FL)
447 err = ext4_ext_migrate(inode);
449 err = ext4_ind_migrate(inode);
457 static int ext4_ioctl_setproject(struct file *filp, __u32 projid)
459 struct inode *inode = file_inode(filp);
460 struct super_block *sb = inode->i_sb;
461 struct ext4_inode_info *ei = EXT4_I(inode);
465 struct ext4_iloc iloc;
466 struct ext4_inode *raw_inode;
467 struct dquot *transfer_to[MAXQUOTAS] = { };
469 if (!ext4_has_feature_project(sb)) {
470 if (projid != EXT4_DEF_PROJID)
476 if (EXT4_INODE_SIZE(sb) <= EXT4_GOOD_OLD_INODE_SIZE)
479 kprojid = make_kprojid(&init_user_ns, (projid_t)projid);
481 if (projid_eq(kprojid, EXT4_I(inode)->i_projid))
485 /* Is it quota file? Do not allow user to mess with it */
486 if (ext4_is_quota_file(inode))
489 err = ext4_get_inode_loc(inode, &iloc);
493 raw_inode = ext4_raw_inode(&iloc);
494 if (!EXT4_FITS_IN_INODE(raw_inode, ei, i_projid)) {
495 err = ext4_expand_extra_isize(inode,
496 EXT4_SB(sb)->s_want_extra_isize,
504 err = dquot_initialize(inode);
508 handle = ext4_journal_start(inode, EXT4_HT_QUOTA,
509 EXT4_QUOTA_INIT_BLOCKS(sb) +
510 EXT4_QUOTA_DEL_BLOCKS(sb) + 3);
512 return PTR_ERR(handle);
514 err = ext4_reserve_inode_write(handle, inode, &iloc);
518 transfer_to[PRJQUOTA] = dqget(sb, make_kqid_projid(kprojid));
519 if (!IS_ERR(transfer_to[PRJQUOTA])) {
521 /* __dquot_transfer() calls back ext4_get_inode_usage() which
522 * counts xattr inode references.
524 down_read(&EXT4_I(inode)->xattr_sem);
525 err = __dquot_transfer(inode, transfer_to);
526 up_read(&EXT4_I(inode)->xattr_sem);
527 dqput(transfer_to[PRJQUOTA]);
532 EXT4_I(inode)->i_projid = kprojid;
533 inode->i_ctime = current_time(inode);
535 rc = ext4_mark_iloc_dirty(handle, inode, &iloc);
539 ext4_journal_stop(handle);
543 static int ext4_ioctl_setproject(struct file *filp, __u32 projid)
545 if (projid != EXT4_DEF_PROJID)
551 /* Transfer internal flags to xflags */
552 static inline __u32 ext4_iflags_to_xflags(unsigned long iflags)
556 if (iflags & EXT4_SYNC_FL)
557 xflags |= FS_XFLAG_SYNC;
558 if (iflags & EXT4_IMMUTABLE_FL)
559 xflags |= FS_XFLAG_IMMUTABLE;
560 if (iflags & EXT4_APPEND_FL)
561 xflags |= FS_XFLAG_APPEND;
562 if (iflags & EXT4_NODUMP_FL)
563 xflags |= FS_XFLAG_NODUMP;
564 if (iflags & EXT4_NOATIME_FL)
565 xflags |= FS_XFLAG_NOATIME;
566 if (iflags & EXT4_PROJINHERIT_FL)
567 xflags |= FS_XFLAG_PROJINHERIT;
568 if (iflags & EXT4_DAX_FL)
569 xflags |= FS_XFLAG_DAX;
573 #define EXT4_SUPPORTED_FS_XFLAGS (FS_XFLAG_SYNC | FS_XFLAG_IMMUTABLE | \
574 FS_XFLAG_APPEND | FS_XFLAG_NODUMP | \
575 FS_XFLAG_NOATIME | FS_XFLAG_PROJINHERIT | \
578 /* Transfer xflags flags to internal */
579 static inline unsigned long ext4_xflags_to_iflags(__u32 xflags)
581 unsigned long iflags = 0;
583 if (xflags & FS_XFLAG_SYNC)
584 iflags |= EXT4_SYNC_FL;
585 if (xflags & FS_XFLAG_IMMUTABLE)
586 iflags |= EXT4_IMMUTABLE_FL;
587 if (xflags & FS_XFLAG_APPEND)
588 iflags |= EXT4_APPEND_FL;
589 if (xflags & FS_XFLAG_NODUMP)
590 iflags |= EXT4_NODUMP_FL;
591 if (xflags & FS_XFLAG_NOATIME)
592 iflags |= EXT4_NOATIME_FL;
593 if (xflags & FS_XFLAG_PROJINHERIT)
594 iflags |= EXT4_PROJINHERIT_FL;
595 if (xflags & FS_XFLAG_DAX)
596 iflags |= EXT4_DAX_FL;
601 static int ext4_shutdown(struct super_block *sb, unsigned long arg)
603 struct ext4_sb_info *sbi = EXT4_SB(sb);
606 if (!capable(CAP_SYS_ADMIN))
609 if (get_user(flags, (__u32 __user *)arg))
612 if (flags > EXT4_GOING_FLAGS_NOLOGFLUSH)
615 if (ext4_forced_shutdown(sbi))
618 ext4_msg(sb, KERN_ALERT, "shut down requested (%d)", flags);
619 trace_ext4_shutdown(sb, flags);
622 case EXT4_GOING_FLAGS_DEFAULT:
623 freeze_bdev(sb->s_bdev);
624 set_bit(EXT4_FLAGS_SHUTDOWN, &sbi->s_ext4_flags);
625 thaw_bdev(sb->s_bdev, sb);
627 case EXT4_GOING_FLAGS_LOGFLUSH:
628 set_bit(EXT4_FLAGS_SHUTDOWN, &sbi->s_ext4_flags);
629 if (sbi->s_journal && !is_journal_aborted(sbi->s_journal)) {
630 (void) ext4_force_commit(sb);
631 jbd2_journal_abort(sbi->s_journal, -ESHUTDOWN);
634 case EXT4_GOING_FLAGS_NOLOGFLUSH:
635 set_bit(EXT4_FLAGS_SHUTDOWN, &sbi->s_ext4_flags);
636 if (sbi->s_journal && !is_journal_aborted(sbi->s_journal))
637 jbd2_journal_abort(sbi->s_journal, -ESHUTDOWN);
642 clear_opt(sb, DISCARD);
646 struct getfsmap_info {
647 struct super_block *gi_sb;
648 struct fsmap_head __user *gi_data;
653 static int ext4_getfsmap_format(struct ext4_fsmap *xfm, void *priv)
655 struct getfsmap_info *info = priv;
658 trace_ext4_getfsmap_mapping(info->gi_sb, xfm);
660 info->gi_last_flags = xfm->fmr_flags;
661 ext4_fsmap_from_internal(info->gi_sb, &fm, xfm);
662 if (copy_to_user(&info->gi_data->fmh_recs[info->gi_idx++], &fm,
663 sizeof(struct fsmap)))
669 static int ext4_ioc_getfsmap(struct super_block *sb,
670 struct fsmap_head __user *arg)
672 struct getfsmap_info info = { NULL };
673 struct ext4_fsmap_head xhead = {0};
674 struct fsmap_head head;
675 bool aborted = false;
678 if (copy_from_user(&head, arg, sizeof(struct fsmap_head)))
680 if (memchr_inv(head.fmh_reserved, 0, sizeof(head.fmh_reserved)) ||
681 memchr_inv(head.fmh_keys[0].fmr_reserved, 0,
682 sizeof(head.fmh_keys[0].fmr_reserved)) ||
683 memchr_inv(head.fmh_keys[1].fmr_reserved, 0,
684 sizeof(head.fmh_keys[1].fmr_reserved)))
687 * ext4 doesn't report file extents at all, so the only valid
688 * file offsets are the magic ones (all zeroes or all ones).
690 if (head.fmh_keys[0].fmr_offset ||
691 (head.fmh_keys[1].fmr_offset != 0 &&
692 head.fmh_keys[1].fmr_offset != -1ULL))
695 xhead.fmh_iflags = head.fmh_iflags;
696 xhead.fmh_count = head.fmh_count;
697 ext4_fsmap_to_internal(sb, &xhead.fmh_keys[0], &head.fmh_keys[0]);
698 ext4_fsmap_to_internal(sb, &xhead.fmh_keys[1], &head.fmh_keys[1]);
700 trace_ext4_getfsmap_low_key(sb, &xhead.fmh_keys[0]);
701 trace_ext4_getfsmap_high_key(sb, &xhead.fmh_keys[1]);
705 error = ext4_getfsmap(sb, &xhead, ext4_getfsmap_format, &info);
706 if (error == EXT4_QUERY_RANGE_ABORT) {
712 /* If we didn't abort, set the "last" flag in the last fmx */
713 if (!aborted && info.gi_idx) {
714 info.gi_last_flags |= FMR_OF_LAST;
715 if (copy_to_user(&info.gi_data->fmh_recs[info.gi_idx - 1].fmr_flags,
717 sizeof(info.gi_last_flags)))
721 /* copy back header */
722 head.fmh_entries = xhead.fmh_entries;
723 head.fmh_oflags = xhead.fmh_oflags;
724 if (copy_to_user(arg, &head, sizeof(struct fsmap_head)))
730 static long ext4_ioctl_group_add(struct file *file,
731 struct ext4_new_group_data *input)
733 struct super_block *sb = file_inode(file)->i_sb;
736 err = ext4_resize_begin(sb);
740 if (ext4_has_feature_bigalloc(sb)) {
741 ext4_msg(sb, KERN_ERR,
742 "Online resizing not supported with bigalloc");
747 err = mnt_want_write_file(file);
751 err = ext4_group_add(sb, input);
752 if (EXT4_SB(sb)->s_journal) {
753 jbd2_journal_lock_updates(EXT4_SB(sb)->s_journal);
754 err2 = jbd2_journal_flush(EXT4_SB(sb)->s_journal);
755 jbd2_journal_unlock_updates(EXT4_SB(sb)->s_journal);
759 mnt_drop_write_file(file);
760 if (!err && ext4_has_group_desc_csum(sb) &&
761 test_opt(sb, INIT_INODE_TABLE))
762 err = ext4_register_li_request(sb, input->group);
768 static void ext4_fill_fsxattr(struct inode *inode, struct fsxattr *fa)
770 struct ext4_inode_info *ei = EXT4_I(inode);
772 simple_fill_fsxattr(fa, ext4_iflags_to_xflags(ei->i_flags &
773 EXT4_FL_USER_VISIBLE));
775 if (ext4_has_feature_project(inode->i_sb))
776 fa->fsx_projid = from_kprojid(&init_user_ns, ei->i_projid);
779 /* So that the fiemap access checks can't overflow on 32 bit machines. */
780 #define FIEMAP_MAX_EXTENTS (UINT_MAX / sizeof(struct fiemap_extent))
782 static int ext4_ioctl_get_es_cache(struct file *filp, unsigned long arg)
784 struct fiemap fiemap;
785 struct fiemap __user *ufiemap = (struct fiemap __user *) arg;
786 struct fiemap_extent_info fieinfo = { 0, };
787 struct inode *inode = file_inode(filp);
790 if (copy_from_user(&fiemap, ufiemap, sizeof(fiemap)))
793 if (fiemap.fm_extent_count > FIEMAP_MAX_EXTENTS)
796 fieinfo.fi_flags = fiemap.fm_flags;
797 fieinfo.fi_extents_max = fiemap.fm_extent_count;
798 fieinfo.fi_extents_start = ufiemap->fm_extents;
800 error = ext4_get_es_cache(inode, &fieinfo, fiemap.fm_start,
802 fiemap.fm_flags = fieinfo.fi_flags;
803 fiemap.fm_mapped_extents = fieinfo.fi_extents_mapped;
804 if (copy_to_user(ufiemap, &fiemap, sizeof(fiemap)))
810 long ext4_ioctl(struct file *filp, unsigned int cmd, unsigned long arg)
812 struct inode *inode = file_inode(filp);
813 struct super_block *sb = inode->i_sb;
814 struct ext4_inode_info *ei = EXT4_I(inode);
817 ext4_debug("cmd = %u, arg = %lu\n", cmd, arg);
820 case FS_IOC_GETFSMAP:
821 return ext4_ioc_getfsmap(sb, (void __user *)arg);
822 case EXT4_IOC_GETFLAGS:
823 flags = ei->i_flags & EXT4_FL_USER_VISIBLE;
824 if (S_ISREG(inode->i_mode))
825 flags &= ~EXT4_PROJINHERIT_FL;
826 return put_user(flags, (int __user *) arg);
827 case EXT4_IOC_SETFLAGS: {
830 if (!inode_owner_or_capable(inode))
833 if (get_user(flags, (int __user *) arg))
836 if (flags & ~EXT4_FL_USER_VISIBLE)
839 * chattr(1) grabs flags via GETFLAGS, modifies the result and
840 * passes that to SETFLAGS. So we cannot easily make SETFLAGS
841 * more restrictive than just silently masking off visible but
842 * not settable flags as we always did.
844 flags &= EXT4_FL_USER_MODIFIABLE;
845 if (ext4_mask_flags(inode->i_mode, flags) != flags)
848 err = mnt_want_write_file(filp);
853 err = ext4_ioctl_check_immutable(inode,
854 from_kprojid(&init_user_ns, ei->i_projid),
857 err = ext4_ioctl_setflags(inode, flags);
859 mnt_drop_write_file(filp);
862 case EXT4_IOC_GETVERSION:
863 case EXT4_IOC_GETVERSION_OLD:
864 return put_user(inode->i_generation, (int __user *) arg);
865 case EXT4_IOC_SETVERSION:
866 case EXT4_IOC_SETVERSION_OLD: {
868 struct ext4_iloc iloc;
872 if (!inode_owner_or_capable(inode))
875 if (ext4_has_metadata_csum(inode->i_sb)) {
876 ext4_warning(sb, "Setting inode version is not "
877 "supported with metadata_csum enabled.");
881 err = mnt_want_write_file(filp);
884 if (get_user(generation, (int __user *) arg)) {
890 handle = ext4_journal_start(inode, EXT4_HT_INODE, 1);
891 if (IS_ERR(handle)) {
892 err = PTR_ERR(handle);
895 err = ext4_reserve_inode_write(handle, inode, &iloc);
897 inode->i_ctime = current_time(inode);
898 inode->i_generation = generation;
899 err = ext4_mark_iloc_dirty(handle, inode, &iloc);
901 ext4_journal_stop(handle);
906 mnt_drop_write_file(filp);
909 case EXT4_IOC_GROUP_EXTEND: {
910 ext4_fsblk_t n_blocks_count;
913 err = ext4_resize_begin(sb);
917 if (get_user(n_blocks_count, (__u32 __user *)arg)) {
919 goto group_extend_out;
922 if (ext4_has_feature_bigalloc(sb)) {
923 ext4_msg(sb, KERN_ERR,
924 "Online resizing not supported with bigalloc");
926 goto group_extend_out;
929 err = mnt_want_write_file(filp);
931 goto group_extend_out;
933 err = ext4_group_extend(sb, EXT4_SB(sb)->s_es, n_blocks_count);
934 if (EXT4_SB(sb)->s_journal) {
935 jbd2_journal_lock_updates(EXT4_SB(sb)->s_journal);
936 err2 = jbd2_journal_flush(EXT4_SB(sb)->s_journal);
937 jbd2_journal_unlock_updates(EXT4_SB(sb)->s_journal);
941 mnt_drop_write_file(filp);
947 case EXT4_IOC_MOVE_EXT: {
948 struct move_extent me;
952 if (!(filp->f_mode & FMODE_READ) ||
953 !(filp->f_mode & FMODE_WRITE))
956 if (copy_from_user(&me,
957 (struct move_extent __user *)arg, sizeof(me)))
961 donor = fdget(me.donor_fd);
965 if (!(donor.file->f_mode & FMODE_WRITE)) {
970 if (ext4_has_feature_bigalloc(sb)) {
971 ext4_msg(sb, KERN_ERR,
972 "Online defrag not supported with bigalloc");
975 } else if (IS_DAX(inode)) {
976 ext4_msg(sb, KERN_ERR,
977 "Online defrag not supported with DAX");
982 err = mnt_want_write_file(filp);
986 err = ext4_move_extents(filp, donor.file, me.orig_start,
987 me.donor_start, me.len, &me.moved_len);
988 mnt_drop_write_file(filp);
990 if (copy_to_user((struct move_extent __user *)arg,
998 case EXT4_IOC_GROUP_ADD: {
999 struct ext4_new_group_data input;
1001 if (copy_from_user(&input, (struct ext4_new_group_input __user *)arg,
1005 return ext4_ioctl_group_add(filp, &input);
1008 case EXT4_IOC_MIGRATE:
1011 if (!inode_owner_or_capable(inode))
1014 err = mnt_want_write_file(filp);
1018 * inode_mutex prevent write and truncate on the file.
1019 * Read still goes through. We take i_data_sem in
1020 * ext4_ext_swap_inode_data before we switch the
1021 * inode format to prevent read.
1023 inode_lock((inode));
1024 err = ext4_ext_migrate(inode);
1025 inode_unlock((inode));
1026 mnt_drop_write_file(filp);
1030 case EXT4_IOC_ALLOC_DA_BLKS:
1033 if (!inode_owner_or_capable(inode))
1036 err = mnt_want_write_file(filp);
1039 err = ext4_alloc_da_blocks(inode);
1040 mnt_drop_write_file(filp);
1044 case EXT4_IOC_SWAP_BOOT:
1047 if (!(filp->f_mode & FMODE_WRITE))
1049 err = mnt_want_write_file(filp);
1052 err = swap_inode_boot_loader(sb, inode);
1053 mnt_drop_write_file(filp);
1057 case EXT4_IOC_RESIZE_FS: {
1058 ext4_fsblk_t n_blocks_count;
1059 int err = 0, err2 = 0;
1060 ext4_group_t o_group = EXT4_SB(sb)->s_groups_count;
1062 if (copy_from_user(&n_blocks_count, (__u64 __user *)arg,
1067 err = ext4_resize_begin(sb);
1071 err = mnt_want_write_file(filp);
1075 err = ext4_resize_fs(sb, n_blocks_count);
1076 if (EXT4_SB(sb)->s_journal) {
1077 jbd2_journal_lock_updates(EXT4_SB(sb)->s_journal);
1078 err2 = jbd2_journal_flush(EXT4_SB(sb)->s_journal);
1079 jbd2_journal_unlock_updates(EXT4_SB(sb)->s_journal);
1083 mnt_drop_write_file(filp);
1084 if (!err && (o_group < EXT4_SB(sb)->s_groups_count) &&
1085 ext4_has_group_desc_csum(sb) &&
1086 test_opt(sb, INIT_INODE_TABLE))
1087 err = ext4_register_li_request(sb, o_group);
1090 ext4_resize_end(sb);
1096 struct request_queue *q = bdev_get_queue(sb->s_bdev);
1097 struct fstrim_range range;
1100 if (!capable(CAP_SYS_ADMIN))
1103 if (!blk_queue_discard(q))
1107 * We haven't replayed the journal, so we cannot use our
1108 * block-bitmap-guided storage zapping commands.
1110 if (test_opt(sb, NOLOAD) && ext4_has_feature_journal(sb))
1113 if (copy_from_user(&range, (struct fstrim_range __user *)arg,
1117 range.minlen = max((unsigned int)range.minlen,
1118 q->limits.discard_granularity);
1119 ret = ext4_trim_fs(sb, &range);
1123 if (copy_to_user((struct fstrim_range __user *)arg, &range,
1129 case EXT4_IOC_PRECACHE_EXTENTS:
1130 return ext4_ext_precache(inode);
1132 case EXT4_IOC_SET_ENCRYPTION_POLICY:
1133 if (!ext4_has_feature_encrypt(sb))
1135 return fscrypt_ioctl_set_policy(filp, (const void __user *)arg);
1137 case EXT4_IOC_GET_ENCRYPTION_PWSALT: {
1138 #ifdef CONFIG_FS_ENCRYPTION
1140 struct ext4_sb_info *sbi = EXT4_SB(sb);
1143 if (!ext4_has_feature_encrypt(sb))
1145 if (uuid_is_zero(sbi->s_es->s_encrypt_pw_salt)) {
1146 err = mnt_want_write_file(filp);
1149 handle = ext4_journal_start_sb(sb, EXT4_HT_MISC, 1);
1150 if (IS_ERR(handle)) {
1151 err = PTR_ERR(handle);
1152 goto pwsalt_err_exit;
1154 err = ext4_journal_get_write_access(handle, sbi->s_sbh);
1156 goto pwsalt_err_journal;
1157 generate_random_uuid(sbi->s_es->s_encrypt_pw_salt);
1158 err = ext4_handle_dirty_metadata(handle, NULL,
1161 err2 = ext4_journal_stop(handle);
1165 mnt_drop_write_file(filp);
1169 if (copy_to_user((void __user *) arg,
1170 sbi->s_es->s_encrypt_pw_salt, 16))
1177 case EXT4_IOC_GET_ENCRYPTION_POLICY:
1178 if (!ext4_has_feature_encrypt(sb))
1180 return fscrypt_ioctl_get_policy(filp, (void __user *)arg);
1182 case FS_IOC_GET_ENCRYPTION_POLICY_EX:
1183 if (!ext4_has_feature_encrypt(sb))
1185 return fscrypt_ioctl_get_policy_ex(filp, (void __user *)arg);
1187 case FS_IOC_ADD_ENCRYPTION_KEY:
1188 if (!ext4_has_feature_encrypt(sb))
1190 return fscrypt_ioctl_add_key(filp, (void __user *)arg);
1192 case FS_IOC_REMOVE_ENCRYPTION_KEY:
1193 if (!ext4_has_feature_encrypt(sb))
1195 return fscrypt_ioctl_remove_key(filp, (void __user *)arg);
1197 case FS_IOC_REMOVE_ENCRYPTION_KEY_ALL_USERS:
1198 if (!ext4_has_feature_encrypt(sb))
1200 return fscrypt_ioctl_remove_key_all_users(filp,
1201 (void __user *)arg);
1202 case FS_IOC_GET_ENCRYPTION_KEY_STATUS:
1203 if (!ext4_has_feature_encrypt(sb))
1205 return fscrypt_ioctl_get_key_status(filp, (void __user *)arg);
1207 case FS_IOC_GET_ENCRYPTION_NONCE:
1208 if (!ext4_has_feature_encrypt(sb))
1210 return fscrypt_ioctl_get_nonce(filp, (void __user *)arg);
1212 case EXT4_IOC_CLEAR_ES_CACHE:
1214 if (!inode_owner_or_capable(inode))
1216 ext4_clear_inode_es(inode);
1220 case EXT4_IOC_GETSTATE:
1224 if (ext4_test_inode_state(inode, EXT4_STATE_EXT_PRECACHED))
1225 state |= EXT4_STATE_FLAG_EXT_PRECACHED;
1226 if (ext4_test_inode_state(inode, EXT4_STATE_NEW))
1227 state |= EXT4_STATE_FLAG_NEW;
1228 if (ext4_test_inode_state(inode, EXT4_STATE_NEWENTRY))
1229 state |= EXT4_STATE_FLAG_NEWENTRY;
1230 if (ext4_test_inode_state(inode, EXT4_STATE_DA_ALLOC_CLOSE))
1231 state |= EXT4_STATE_FLAG_DA_ALLOC_CLOSE;
1233 return put_user(state, (__u32 __user *) arg);
1236 case EXT4_IOC_GET_ES_CACHE:
1237 return ext4_ioctl_get_es_cache(filp, arg);
1239 case EXT4_IOC_FSGETXATTR:
1243 ext4_fill_fsxattr(inode, &fa);
1245 if (copy_to_user((struct fsxattr __user *)arg,
1250 case EXT4_IOC_FSSETXATTR:
1252 struct fsxattr fa, old_fa;
1255 if (copy_from_user(&fa, (struct fsxattr __user *)arg,
1259 /* Make sure caller has proper permission */
1260 if (!inode_owner_or_capable(inode))
1263 if (fa.fsx_xflags & ~EXT4_SUPPORTED_FS_XFLAGS)
1266 flags = ext4_xflags_to_iflags(fa.fsx_xflags);
1267 if (ext4_mask_flags(inode->i_mode, flags) != flags)
1270 err = mnt_want_write_file(filp);
1275 ext4_fill_fsxattr(inode, &old_fa);
1276 err = vfs_ioc_fssetxattr_check(inode, &old_fa, &fa);
1279 flags = (ei->i_flags & ~EXT4_FL_XFLAG_VISIBLE) |
1280 (flags & EXT4_FL_XFLAG_VISIBLE);
1281 err = ext4_ioctl_check_immutable(inode, fa.fsx_projid, flags);
1284 err = ext4_ioctl_setflags(inode, flags);
1287 err = ext4_ioctl_setproject(filp, fa.fsx_projid);
1289 inode_unlock(inode);
1290 mnt_drop_write_file(filp);
1293 case EXT4_IOC_SHUTDOWN:
1294 return ext4_shutdown(sb, arg);
1296 case FS_IOC_ENABLE_VERITY:
1297 if (!ext4_has_feature_verity(sb))
1299 return fsverity_ioctl_enable(filp, (const void __user *)arg);
1301 case FS_IOC_MEASURE_VERITY:
1302 if (!ext4_has_feature_verity(sb))
1304 return fsverity_ioctl_measure(filp, (void __user *)arg);
1311 #ifdef CONFIG_COMPAT
1312 long ext4_compat_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
1314 /* These are just misnamed, they actually get/put from/to user an int */
1316 case EXT4_IOC32_GETFLAGS:
1317 cmd = EXT4_IOC_GETFLAGS;
1319 case EXT4_IOC32_SETFLAGS:
1320 cmd = EXT4_IOC_SETFLAGS;
1322 case EXT4_IOC32_GETVERSION:
1323 cmd = EXT4_IOC_GETVERSION;
1325 case EXT4_IOC32_SETVERSION:
1326 cmd = EXT4_IOC_SETVERSION;
1328 case EXT4_IOC32_GROUP_EXTEND:
1329 cmd = EXT4_IOC_GROUP_EXTEND;
1331 case EXT4_IOC32_GETVERSION_OLD:
1332 cmd = EXT4_IOC_GETVERSION_OLD;
1334 case EXT4_IOC32_SETVERSION_OLD:
1335 cmd = EXT4_IOC_SETVERSION_OLD;
1337 case EXT4_IOC32_GETRSVSZ:
1338 cmd = EXT4_IOC_GETRSVSZ;
1340 case EXT4_IOC32_SETRSVSZ:
1341 cmd = EXT4_IOC_SETRSVSZ;
1343 case EXT4_IOC32_GROUP_ADD: {
1344 struct compat_ext4_new_group_input __user *uinput;
1345 struct ext4_new_group_data input;
1348 uinput = compat_ptr(arg);
1349 err = get_user(input.group, &uinput->group);
1350 err |= get_user(input.block_bitmap, &uinput->block_bitmap);
1351 err |= get_user(input.inode_bitmap, &uinput->inode_bitmap);
1352 err |= get_user(input.inode_table, &uinput->inode_table);
1353 err |= get_user(input.blocks_count, &uinput->blocks_count);
1354 err |= get_user(input.reserved_blocks,
1355 &uinput->reserved_blocks);
1358 return ext4_ioctl_group_add(file, &input);
1360 case EXT4_IOC_MOVE_EXT:
1361 case EXT4_IOC_RESIZE_FS:
1363 case EXT4_IOC_PRECACHE_EXTENTS:
1364 case EXT4_IOC_SET_ENCRYPTION_POLICY:
1365 case EXT4_IOC_GET_ENCRYPTION_PWSALT:
1366 case EXT4_IOC_GET_ENCRYPTION_POLICY:
1367 case FS_IOC_GET_ENCRYPTION_POLICY_EX:
1368 case FS_IOC_ADD_ENCRYPTION_KEY:
1369 case FS_IOC_REMOVE_ENCRYPTION_KEY:
1370 case FS_IOC_REMOVE_ENCRYPTION_KEY_ALL_USERS:
1371 case FS_IOC_GET_ENCRYPTION_KEY_STATUS:
1372 case FS_IOC_GET_ENCRYPTION_NONCE:
1373 case EXT4_IOC_SHUTDOWN:
1374 case FS_IOC_GETFSMAP:
1375 case FS_IOC_ENABLE_VERITY:
1376 case FS_IOC_MEASURE_VERITY:
1377 case EXT4_IOC_CLEAR_ES_CACHE:
1378 case EXT4_IOC_GETSTATE:
1379 case EXT4_IOC_GET_ES_CACHE:
1380 case EXT4_IOC_FSGETXATTR:
1381 case EXT4_IOC_FSSETXATTR:
1384 return -ENOIOCTLCMD;
1386 return ext4_ioctl(file, cmd, (unsigned long) compat_ptr(arg));