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/uaccess.h>
20 #include <linux/delay.h>
21 #include <linux/iversion.h>
22 #include <linux/fileattr.h>
23 #include <linux/uuid.h>
24 #include "ext4_jbd2.h"
26 #include <linux/fsmap.h>
28 #include <trace/events/ext4.h>
30 typedef void ext4_update_sb_callback(struct ext4_super_block *es,
34 * Superblock modification callback function for changing file system
37 static void ext4_sb_setlabel(struct ext4_super_block *es, const void *arg)
39 /* Sanity check, this should never happen */
40 BUILD_BUG_ON(sizeof(es->s_volume_name) < EXT4_LABEL_MAX);
42 memcpy(es->s_volume_name, (char *)arg, EXT4_LABEL_MAX);
46 * Superblock modification callback function for changing file system
49 static void ext4_sb_setuuid(struct ext4_super_block *es, const void *arg)
51 memcpy(es->s_uuid, (__u8 *)arg, UUID_SIZE);
55 int ext4_update_primary_sb(struct super_block *sb, handle_t *handle,
56 ext4_update_sb_callback func,
60 struct ext4_sb_info *sbi = EXT4_SB(sb);
61 struct buffer_head *bh = sbi->s_sbh;
62 struct ext4_super_block *es = sbi->s_es;
64 trace_ext4_update_sb(sb, bh->b_blocknr, 1);
66 BUFFER_TRACE(bh, "get_write_access");
67 err = ext4_journal_get_write_access(handle, sb,
75 ext4_superblock_csum_set(sb);
78 if (buffer_write_io_error(bh) || !buffer_uptodate(bh)) {
79 ext4_msg(sbi->s_sb, KERN_ERR, "previous I/O error to "
80 "superblock detected");
81 clear_buffer_write_io_error(bh);
82 set_buffer_uptodate(bh);
85 err = ext4_handle_dirty_metadata(handle, NULL, bh);
88 err = sync_dirty_buffer(bh);
90 ext4_std_error(sb, err);
95 * Update one backup superblock in the group 'grp' using the callback
96 * function 'func' and argument 'arg'. If the handle is NULL the
97 * modification is not journalled.
99 * Returns: 0 when no modification was done (no superblock in the group)
100 * 1 when the modification was successful
103 static int ext4_update_backup_sb(struct super_block *sb,
104 handle_t *handle, ext4_group_t grp,
105 ext4_update_sb_callback func, const void *arg)
108 ext4_fsblk_t sb_block;
109 struct buffer_head *bh;
110 unsigned long offset = 0;
111 struct ext4_super_block *es;
113 if (!ext4_bg_has_super(sb, grp))
117 * For the group 0 there is always 1k padding, so we have
118 * either adjust offset, or sb_block depending on blocksize
121 sb_block = 1 * EXT4_MIN_BLOCK_SIZE;
122 offset = do_div(sb_block, sb->s_blocksize);
124 sb_block = ext4_group_first_block_no(sb, grp);
128 trace_ext4_update_sb(sb, sb_block, handle ? 1 : 0);
130 bh = ext4_sb_bread(sb, sb_block, 0);
135 BUFFER_TRACE(bh, "get_write_access");
136 err = ext4_journal_get_write_access(handle, sb,
143 es = (struct ext4_super_block *) (bh->b_data + offset);
145 if (ext4_has_metadata_csum(sb) &&
146 es->s_checksum != ext4_superblock_csum(sb, es)) {
147 ext4_msg(sb, KERN_ERR, "Invalid checksum for backup "
148 "superblock %llu\n", sb_block);
154 if (ext4_has_metadata_csum(sb))
155 es->s_checksum = ext4_superblock_csum(sb, es);
156 set_buffer_uptodate(bh);
163 err = ext4_handle_dirty_metadata(handle, NULL, bh);
167 BUFFER_TRACE(bh, "marking dirty");
168 mark_buffer_dirty(bh);
170 err = sync_dirty_buffer(bh);
174 ext4_std_error(sb, err);
175 return (err) ? err : 1;
179 * Update primary and backup superblocks using the provided function
180 * func and argument arg.
182 * Only the primary superblock and at most two backup superblock
183 * modifications are journalled; the rest is modified without journal.
184 * This is safe because e2fsck will re-write them if there is a problem,
185 * and we're very unlikely to ever need more than two backups.
188 int ext4_update_superblocks_fn(struct super_block *sb,
189 ext4_update_sb_callback func,
193 ext4_group_t ngroups;
194 unsigned int three = 1;
195 unsigned int five = 5;
196 unsigned int seven = 7;
198 ext4_group_t grp, primary_grp;
199 struct ext4_sb_info *sbi = EXT4_SB(sb);
202 * We can't update superblocks while the online resize is running
204 if (test_and_set_bit_lock(EXT4_FLAGS_RESIZING,
205 &sbi->s_ext4_flags)) {
206 ext4_msg(sb, KERN_ERR, "Can't modify superblock while"
207 "performing online resize");
212 * We're only going to update primary superblock and two
213 * backup superblocks in this transaction.
215 handle = ext4_journal_start_sb(sb, EXT4_HT_MISC, 3);
216 if (IS_ERR(handle)) {
217 err = PTR_ERR(handle);
221 /* Update primary superblock */
222 err = ext4_update_primary_sb(sb, handle, func, arg);
224 ext4_msg(sb, KERN_ERR, "Failed to update primary "
229 primary_grp = ext4_get_group_number(sb, sbi->s_sbh->b_blocknr);
230 ngroups = ext4_get_groups_count(sb);
233 * Update backup superblocks. We have to start from group 0
234 * because it might not be where the primary superblock is
235 * if the fs is mounted with -o sb=<backup_sb_block>
239 while (grp < ngroups) {
240 /* Skip primary superblock */
241 if (grp == primary_grp)
244 ret = ext4_update_backup_sb(sb, handle, grp, func, arg);
246 /* Ignore bad checksum; try to update next sb */
247 if (ret == -EFSBADCRC)
254 if (handle && i > 1) {
256 * We're only journalling primary superblock and
257 * two backup superblocks; the rest is not
260 err = ext4_journal_stop(handle);
266 grp = ext4_list_backups(sb, &three, &five, &seven);
271 ret = ext4_journal_stop(handle);
276 clear_bit_unlock(EXT4_FLAGS_RESIZING, &sbi->s_ext4_flags);
277 smp_mb__after_atomic();
278 return err ? err : 0;
282 * Swap memory between @a and @b for @len bytes.
284 * @a: pointer to first memory area
285 * @b: pointer to second memory area
286 * @len: number of bytes to swap
289 static void memswap(void *a, void *b, size_t len)
291 unsigned char *ap, *bp;
293 ap = (unsigned char *)a;
294 bp = (unsigned char *)b;
303 * Swap i_data and associated attributes between @inode1 and @inode2.
304 * This function is used for the primary swap between inode1 and inode2
305 * and also to revert this primary swap in case of errors.
307 * Therefore you have to make sure, that calling this method twice
308 * will revert all changes.
310 * @inode1: pointer to first inode
311 * @inode2: pointer to second inode
313 static void swap_inode_data(struct inode *inode1, struct inode *inode2)
316 struct ext4_inode_info *ei1;
317 struct ext4_inode_info *ei2;
320 ei1 = EXT4_I(inode1);
321 ei2 = EXT4_I(inode2);
323 swap(inode1->i_version, inode2->i_version);
324 swap(inode1->i_atime, inode2->i_atime);
325 swap(inode1->i_mtime, inode2->i_mtime);
327 memswap(ei1->i_data, ei2->i_data, sizeof(ei1->i_data));
328 tmp = ei1->i_flags & EXT4_FL_SHOULD_SWAP;
329 ei1->i_flags = (ei2->i_flags & EXT4_FL_SHOULD_SWAP) |
330 (ei1->i_flags & ~EXT4_FL_SHOULD_SWAP);
331 ei2->i_flags = tmp | (ei2->i_flags & ~EXT4_FL_SHOULD_SWAP);
332 swap(ei1->i_disksize, ei2->i_disksize);
333 ext4_es_remove_extent(inode1, 0, EXT_MAX_BLOCKS);
334 ext4_es_remove_extent(inode2, 0, EXT_MAX_BLOCKS);
336 isize = i_size_read(inode1);
337 i_size_write(inode1, i_size_read(inode2));
338 i_size_write(inode2, isize);
341 void ext4_reset_inode_seed(struct inode *inode)
343 struct ext4_inode_info *ei = EXT4_I(inode);
344 struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);
345 __le32 inum = cpu_to_le32(inode->i_ino);
346 __le32 gen = cpu_to_le32(inode->i_generation);
349 if (!ext4_has_metadata_csum(inode->i_sb))
352 csum = ext4_chksum(sbi, sbi->s_csum_seed, (__u8 *)&inum, sizeof(inum));
353 ei->i_csum_seed = ext4_chksum(sbi, csum, (__u8 *)&gen, sizeof(gen));
357 * Swap the information from the given @inode and the inode
358 * EXT4_BOOT_LOADER_INO. It will basically swap i_data and all other
359 * important fields of the inodes.
361 * @sb: the super block of the filesystem
362 * @mnt_userns: user namespace of the mount the inode was found from
363 * @inode: the inode to swap with EXT4_BOOT_LOADER_INO
366 static long swap_inode_boot_loader(struct super_block *sb,
367 struct user_namespace *mnt_userns,
372 struct inode *inode_bl;
373 struct ext4_inode_info *ei_bl;
374 qsize_t size, size_bl, diff;
376 unsigned short bytes;
378 inode_bl = ext4_iget(sb, EXT4_BOOT_LOADER_INO, EXT4_IGET_SPECIAL);
379 if (IS_ERR(inode_bl))
380 return PTR_ERR(inode_bl);
381 ei_bl = EXT4_I(inode_bl);
383 /* Protect orig inodes against a truncate and make sure,
384 * that only 1 swap_inode_boot_loader is running. */
385 lock_two_nondirectories(inode, inode_bl);
387 if (inode->i_nlink != 1 || !S_ISREG(inode->i_mode) ||
388 IS_SWAPFILE(inode) || IS_ENCRYPTED(inode) ||
389 (EXT4_I(inode)->i_flags & EXT4_JOURNAL_DATA_FL) ||
390 ext4_has_inline_data(inode)) {
392 goto journal_err_out;
395 if (IS_RDONLY(inode) || IS_APPEND(inode) || IS_IMMUTABLE(inode) ||
396 !inode_owner_or_capable(mnt_userns, inode) ||
397 !capable(CAP_SYS_ADMIN)) {
399 goto journal_err_out;
402 filemap_invalidate_lock(inode->i_mapping);
403 err = filemap_write_and_wait(inode->i_mapping);
407 err = filemap_write_and_wait(inode_bl->i_mapping);
411 /* Wait for all existing dio workers */
412 inode_dio_wait(inode);
413 inode_dio_wait(inode_bl);
415 truncate_inode_pages(&inode->i_data, 0);
416 truncate_inode_pages(&inode_bl->i_data, 0);
418 handle = ext4_journal_start(inode_bl, EXT4_HT_MOVE_EXTENTS, 2);
419 if (IS_ERR(handle)) {
423 ext4_fc_mark_ineligible(sb, EXT4_FC_REASON_SWAP_BOOT, handle);
425 /* Protect extent tree against block allocations via delalloc */
426 ext4_double_down_write_data_sem(inode, inode_bl);
428 if (inode_bl->i_nlink == 0) {
429 /* this inode has never been used as a BOOT_LOADER */
430 set_nlink(inode_bl, 1);
431 i_uid_write(inode_bl, 0);
432 i_gid_write(inode_bl, 0);
433 inode_bl->i_flags = 0;
435 inode_set_iversion(inode_bl, 1);
436 i_size_write(inode_bl, 0);
437 inode_bl->i_mode = S_IFREG;
438 if (ext4_has_feature_extents(sb)) {
439 ext4_set_inode_flag(inode_bl, EXT4_INODE_EXTENTS);
440 ext4_ext_tree_init(handle, inode_bl);
442 memset(ei_bl->i_data, 0, sizeof(ei_bl->i_data));
445 err = dquot_initialize(inode);
449 size = (qsize_t)(inode->i_blocks) * (1 << 9) + inode->i_bytes;
450 size_bl = (qsize_t)(inode_bl->i_blocks) * (1 << 9) + inode_bl->i_bytes;
451 diff = size - size_bl;
452 swap_inode_data(inode, inode_bl);
454 inode->i_ctime = inode_bl->i_ctime = current_time(inode);
456 inode->i_generation = prandom_u32();
457 inode_bl->i_generation = prandom_u32();
458 ext4_reset_inode_seed(inode);
459 ext4_reset_inode_seed(inode_bl);
461 ext4_discard_preallocations(inode, 0);
463 err = ext4_mark_inode_dirty(handle, inode);
465 /* No need to update quota information. */
466 ext4_warning(inode->i_sb,
467 "couldn't mark inode #%lu dirty (err %d)",
469 /* Revert all changes: */
470 swap_inode_data(inode, inode_bl);
471 ext4_mark_inode_dirty(handle, inode);
475 blocks = inode_bl->i_blocks;
476 bytes = inode_bl->i_bytes;
477 inode_bl->i_blocks = inode->i_blocks;
478 inode_bl->i_bytes = inode->i_bytes;
479 err = ext4_mark_inode_dirty(handle, inode_bl);
481 /* No need to update quota information. */
482 ext4_warning(inode_bl->i_sb,
483 "couldn't mark inode #%lu dirty (err %d)",
484 inode_bl->i_ino, err);
488 /* Bootloader inode should not be counted into quota information. */
490 dquot_free_space(inode, diff);
492 err = dquot_alloc_space(inode, -1 * diff);
496 /* Revert all changes: */
497 inode_bl->i_blocks = blocks;
498 inode_bl->i_bytes = bytes;
499 swap_inode_data(inode, inode_bl);
500 ext4_mark_inode_dirty(handle, inode);
501 ext4_mark_inode_dirty(handle, inode_bl);
505 ext4_journal_stop(handle);
506 ext4_double_up_write_data_sem(inode, inode_bl);
509 filemap_invalidate_unlock(inode->i_mapping);
511 unlock_two_nondirectories(inode, inode_bl);
517 * If immutable is set and we are not clearing it, we're not allowed to change
518 * anything else in the inode. Don't error out if we're only trying to set
519 * immutable on an immutable file.
521 static int ext4_ioctl_check_immutable(struct inode *inode, __u32 new_projid,
524 struct ext4_inode_info *ei = EXT4_I(inode);
525 unsigned int oldflags = ei->i_flags;
527 if (!(oldflags & EXT4_IMMUTABLE_FL) || !(flags & EXT4_IMMUTABLE_FL))
530 if ((oldflags & ~EXT4_IMMUTABLE_FL) != (flags & ~EXT4_IMMUTABLE_FL))
532 if (ext4_has_feature_project(inode->i_sb) &&
533 __kprojid_val(ei->i_projid) != new_projid)
539 static void ext4_dax_dontcache(struct inode *inode, unsigned int flags)
541 struct ext4_inode_info *ei = EXT4_I(inode);
543 if (S_ISDIR(inode->i_mode))
546 if (test_opt2(inode->i_sb, DAX_NEVER) ||
547 test_opt(inode->i_sb, DAX_ALWAYS))
550 if ((ei->i_flags ^ flags) & EXT4_DAX_FL)
551 d_mark_dontcache(inode);
554 static bool dax_compatible(struct inode *inode, unsigned int oldflags,
557 /* Allow the DAX flag to be changed on inline directories */
558 if (S_ISDIR(inode->i_mode)) {
559 flags &= ~EXT4_INLINE_DATA_FL;
560 oldflags &= ~EXT4_INLINE_DATA_FL;
563 if (flags & EXT4_DAX_FL) {
564 if ((oldflags & EXT4_DAX_MUT_EXCL) ||
565 ext4_test_inode_state(inode,
566 EXT4_STATE_VERITY_IN_PROGRESS)) {
571 if ((flags & EXT4_DAX_MUT_EXCL) && (oldflags & EXT4_DAX_FL))
577 static int ext4_ioctl_setflags(struct inode *inode,
580 struct ext4_inode_info *ei = EXT4_I(inode);
581 handle_t *handle = NULL;
582 int err = -EPERM, migrate = 0;
583 struct ext4_iloc iloc;
584 unsigned int oldflags, mask, i;
585 struct super_block *sb = inode->i_sb;
587 /* Is it quota file? Do not allow user to mess with it */
588 if (ext4_is_quota_file(inode))
591 oldflags = ei->i_flags;
593 * The JOURNAL_DATA flag can only be changed by
594 * the relevant capability.
596 if ((flags ^ oldflags) & (EXT4_JOURNAL_DATA_FL)) {
597 if (!capable(CAP_SYS_RESOURCE))
601 if (!dax_compatible(inode, oldflags, flags)) {
606 if ((flags ^ oldflags) & EXT4_EXTENTS_FL)
609 if ((flags ^ oldflags) & EXT4_CASEFOLD_FL) {
610 if (!ext4_has_feature_casefold(sb)) {
615 if (!S_ISDIR(inode->i_mode)) {
620 if (!ext4_empty_dir(inode)) {
627 * Wait for all pending directio and then flush all the dirty pages
628 * for this file. The flush marks all the pages readonly, so any
629 * subsequent attempt to write to the file (particularly mmap pages)
630 * will come through the filesystem and fail.
632 if (S_ISREG(inode->i_mode) && !IS_IMMUTABLE(inode) &&
633 (flags & EXT4_IMMUTABLE_FL)) {
634 inode_dio_wait(inode);
635 err = filemap_write_and_wait(inode->i_mapping);
640 handle = ext4_journal_start(inode, EXT4_HT_INODE, 1);
641 if (IS_ERR(handle)) {
642 err = PTR_ERR(handle);
646 ext4_handle_sync(handle);
647 err = ext4_reserve_inode_write(handle, inode, &iloc);
651 ext4_dax_dontcache(inode, flags);
653 for (i = 0, mask = 1; i < 32; i++, mask <<= 1) {
654 if (!(mask & EXT4_FL_USER_MODIFIABLE))
656 /* These flags get special treatment later */
657 if (mask == EXT4_JOURNAL_DATA_FL || mask == EXT4_EXTENTS_FL)
660 ext4_set_inode_flag(inode, i);
662 ext4_clear_inode_flag(inode, i);
665 ext4_set_inode_flags(inode, false);
667 inode->i_ctime = current_time(inode);
669 err = ext4_mark_iloc_dirty(handle, inode, &iloc);
671 ext4_journal_stop(handle);
675 if ((flags ^ oldflags) & (EXT4_JOURNAL_DATA_FL)) {
677 * Changes to the journaling mode can cause unsafe changes to
678 * S_DAX if the inode is DAX
685 err = ext4_change_inode_journal_flag(inode,
686 flags & EXT4_JOURNAL_DATA_FL);
691 if (flags & EXT4_EXTENTS_FL)
692 err = ext4_ext_migrate(inode);
694 err = ext4_ind_migrate(inode);
702 static int ext4_ioctl_setproject(struct inode *inode, __u32 projid)
704 struct super_block *sb = inode->i_sb;
705 struct ext4_inode_info *ei = EXT4_I(inode);
709 struct ext4_iloc iloc;
710 struct ext4_inode *raw_inode;
711 struct dquot *transfer_to[MAXQUOTAS] = { };
713 if (!ext4_has_feature_project(sb)) {
714 if (projid != EXT4_DEF_PROJID)
720 if (EXT4_INODE_SIZE(sb) <= EXT4_GOOD_OLD_INODE_SIZE)
723 kprojid = make_kprojid(&init_user_ns, (projid_t)projid);
725 if (projid_eq(kprojid, EXT4_I(inode)->i_projid))
729 /* Is it quota file? Do not allow user to mess with it */
730 if (ext4_is_quota_file(inode))
733 err = ext4_get_inode_loc(inode, &iloc);
737 raw_inode = ext4_raw_inode(&iloc);
738 if (!EXT4_FITS_IN_INODE(raw_inode, ei, i_projid)) {
739 err = ext4_expand_extra_isize(inode,
740 EXT4_SB(sb)->s_want_extra_isize,
748 err = dquot_initialize(inode);
752 handle = ext4_journal_start(inode, EXT4_HT_QUOTA,
753 EXT4_QUOTA_INIT_BLOCKS(sb) +
754 EXT4_QUOTA_DEL_BLOCKS(sb) + 3);
756 return PTR_ERR(handle);
758 err = ext4_reserve_inode_write(handle, inode, &iloc);
762 transfer_to[PRJQUOTA] = dqget(sb, make_kqid_projid(kprojid));
763 if (!IS_ERR(transfer_to[PRJQUOTA])) {
765 /* __dquot_transfer() calls back ext4_get_inode_usage() which
766 * counts xattr inode references.
768 down_read(&EXT4_I(inode)->xattr_sem);
769 err = __dquot_transfer(inode, transfer_to);
770 up_read(&EXT4_I(inode)->xattr_sem);
771 dqput(transfer_to[PRJQUOTA]);
776 EXT4_I(inode)->i_projid = kprojid;
777 inode->i_ctime = current_time(inode);
779 rc = ext4_mark_iloc_dirty(handle, inode, &iloc);
783 ext4_journal_stop(handle);
787 static int ext4_ioctl_setproject(struct inode *inode, __u32 projid)
789 if (projid != EXT4_DEF_PROJID)
795 static int ext4_shutdown(struct super_block *sb, unsigned long arg)
797 struct ext4_sb_info *sbi = EXT4_SB(sb);
800 if (!capable(CAP_SYS_ADMIN))
803 if (get_user(flags, (__u32 __user *)arg))
806 if (flags > EXT4_GOING_FLAGS_NOLOGFLUSH)
809 if (ext4_forced_shutdown(sbi))
812 ext4_msg(sb, KERN_ALERT, "shut down requested (%d)", flags);
813 trace_ext4_shutdown(sb, flags);
816 case EXT4_GOING_FLAGS_DEFAULT:
817 freeze_bdev(sb->s_bdev);
818 set_bit(EXT4_FLAGS_SHUTDOWN, &sbi->s_ext4_flags);
819 thaw_bdev(sb->s_bdev);
821 case EXT4_GOING_FLAGS_LOGFLUSH:
822 set_bit(EXT4_FLAGS_SHUTDOWN, &sbi->s_ext4_flags);
823 if (sbi->s_journal && !is_journal_aborted(sbi->s_journal)) {
824 (void) ext4_force_commit(sb);
825 jbd2_journal_abort(sbi->s_journal, -ESHUTDOWN);
828 case EXT4_GOING_FLAGS_NOLOGFLUSH:
829 set_bit(EXT4_FLAGS_SHUTDOWN, &sbi->s_ext4_flags);
830 if (sbi->s_journal && !is_journal_aborted(sbi->s_journal))
831 jbd2_journal_abort(sbi->s_journal, -ESHUTDOWN);
836 clear_opt(sb, DISCARD);
840 struct getfsmap_info {
841 struct super_block *gi_sb;
842 struct fsmap_head __user *gi_data;
847 static int ext4_getfsmap_format(struct ext4_fsmap *xfm, void *priv)
849 struct getfsmap_info *info = priv;
852 trace_ext4_getfsmap_mapping(info->gi_sb, xfm);
854 info->gi_last_flags = xfm->fmr_flags;
855 ext4_fsmap_from_internal(info->gi_sb, &fm, xfm);
856 if (copy_to_user(&info->gi_data->fmh_recs[info->gi_idx++], &fm,
857 sizeof(struct fsmap)))
863 static int ext4_ioc_getfsmap(struct super_block *sb,
864 struct fsmap_head __user *arg)
866 struct getfsmap_info info = { NULL };
867 struct ext4_fsmap_head xhead = {0};
868 struct fsmap_head head;
869 bool aborted = false;
872 if (copy_from_user(&head, arg, sizeof(struct fsmap_head)))
874 if (memchr_inv(head.fmh_reserved, 0, sizeof(head.fmh_reserved)) ||
875 memchr_inv(head.fmh_keys[0].fmr_reserved, 0,
876 sizeof(head.fmh_keys[0].fmr_reserved)) ||
877 memchr_inv(head.fmh_keys[1].fmr_reserved, 0,
878 sizeof(head.fmh_keys[1].fmr_reserved)))
881 * ext4 doesn't report file extents at all, so the only valid
882 * file offsets are the magic ones (all zeroes or all ones).
884 if (head.fmh_keys[0].fmr_offset ||
885 (head.fmh_keys[1].fmr_offset != 0 &&
886 head.fmh_keys[1].fmr_offset != -1ULL))
889 xhead.fmh_iflags = head.fmh_iflags;
890 xhead.fmh_count = head.fmh_count;
891 ext4_fsmap_to_internal(sb, &xhead.fmh_keys[0], &head.fmh_keys[0]);
892 ext4_fsmap_to_internal(sb, &xhead.fmh_keys[1], &head.fmh_keys[1]);
894 trace_ext4_getfsmap_low_key(sb, &xhead.fmh_keys[0]);
895 trace_ext4_getfsmap_high_key(sb, &xhead.fmh_keys[1]);
899 error = ext4_getfsmap(sb, &xhead, ext4_getfsmap_format, &info);
900 if (error == EXT4_QUERY_RANGE_ABORT)
905 /* If we didn't abort, set the "last" flag in the last fmx */
906 if (!aborted && info.gi_idx) {
907 info.gi_last_flags |= FMR_OF_LAST;
908 if (copy_to_user(&info.gi_data->fmh_recs[info.gi_idx - 1].fmr_flags,
910 sizeof(info.gi_last_flags)))
914 /* copy back header */
915 head.fmh_entries = xhead.fmh_entries;
916 head.fmh_oflags = xhead.fmh_oflags;
917 if (copy_to_user(arg, &head, sizeof(struct fsmap_head)))
923 static long ext4_ioctl_group_add(struct file *file,
924 struct ext4_new_group_data *input)
926 struct super_block *sb = file_inode(file)->i_sb;
929 err = ext4_resize_begin(sb);
933 if (ext4_has_feature_bigalloc(sb)) {
934 ext4_msg(sb, KERN_ERR,
935 "Online resizing not supported with bigalloc");
940 err = mnt_want_write_file(file);
944 err = ext4_group_add(sb, input);
945 if (EXT4_SB(sb)->s_journal) {
946 jbd2_journal_lock_updates(EXT4_SB(sb)->s_journal);
947 err2 = jbd2_journal_flush(EXT4_SB(sb)->s_journal, 0);
948 jbd2_journal_unlock_updates(EXT4_SB(sb)->s_journal);
952 mnt_drop_write_file(file);
953 if (!err && ext4_has_group_desc_csum(sb) &&
954 test_opt(sb, INIT_INODE_TABLE))
955 err = ext4_register_li_request(sb, input->group);
957 err2 = ext4_resize_end(sb, false);
963 int ext4_fileattr_get(struct dentry *dentry, struct fileattr *fa)
965 struct inode *inode = d_inode(dentry);
966 struct ext4_inode_info *ei = EXT4_I(inode);
967 u32 flags = ei->i_flags & EXT4_FL_USER_VISIBLE;
969 if (S_ISREG(inode->i_mode))
970 flags &= ~FS_PROJINHERIT_FL;
972 fileattr_fill_flags(fa, flags);
973 if (ext4_has_feature_project(inode->i_sb))
974 fa->fsx_projid = from_kprojid(&init_user_ns, ei->i_projid);
979 int ext4_fileattr_set(struct user_namespace *mnt_userns,
980 struct dentry *dentry, struct fileattr *fa)
982 struct inode *inode = d_inode(dentry);
983 u32 flags = fa->flags;
984 int err = -EOPNOTSUPP;
986 if (flags & ~EXT4_FL_USER_VISIBLE)
990 * chattr(1) grabs flags via GETFLAGS, modifies the result and
991 * passes that to SETFLAGS. So we cannot easily make SETFLAGS
992 * more restrictive than just silently masking off visible but
993 * not settable flags as we always did.
995 flags &= EXT4_FL_USER_MODIFIABLE;
996 if (ext4_mask_flags(inode->i_mode, flags) != flags)
998 err = ext4_ioctl_check_immutable(inode, fa->fsx_projid, flags);
1001 err = ext4_ioctl_setflags(inode, flags);
1004 err = ext4_ioctl_setproject(inode, fa->fsx_projid);
1009 /* So that the fiemap access checks can't overflow on 32 bit machines. */
1010 #define FIEMAP_MAX_EXTENTS (UINT_MAX / sizeof(struct fiemap_extent))
1012 static int ext4_ioctl_get_es_cache(struct file *filp, unsigned long arg)
1014 struct fiemap fiemap;
1015 struct fiemap __user *ufiemap = (struct fiemap __user *) arg;
1016 struct fiemap_extent_info fieinfo = { 0, };
1017 struct inode *inode = file_inode(filp);
1020 if (copy_from_user(&fiemap, ufiemap, sizeof(fiemap)))
1023 if (fiemap.fm_extent_count > FIEMAP_MAX_EXTENTS)
1026 fieinfo.fi_flags = fiemap.fm_flags;
1027 fieinfo.fi_extents_max = fiemap.fm_extent_count;
1028 fieinfo.fi_extents_start = ufiemap->fm_extents;
1030 error = ext4_get_es_cache(inode, &fieinfo, fiemap.fm_start,
1032 fiemap.fm_flags = fieinfo.fi_flags;
1033 fiemap.fm_mapped_extents = fieinfo.fi_extents_mapped;
1034 if (copy_to_user(ufiemap, &fiemap, sizeof(fiemap)))
1040 static int ext4_ioctl_checkpoint(struct file *filp, unsigned long arg)
1044 unsigned int flush_flags = 0;
1045 struct super_block *sb = file_inode(filp)->i_sb;
1047 if (copy_from_user(&flags, (__u32 __user *)arg,
1051 if (!capable(CAP_SYS_ADMIN))
1054 /* check for invalid bits set */
1055 if ((flags & ~EXT4_IOC_CHECKPOINT_FLAG_VALID) ||
1056 ((flags & JBD2_JOURNAL_FLUSH_DISCARD) &&
1057 (flags & JBD2_JOURNAL_FLUSH_ZEROOUT)))
1060 if (!EXT4_SB(sb)->s_journal)
1063 if (flags & ~EXT4_IOC_CHECKPOINT_FLAG_VALID)
1066 if ((flags & JBD2_JOURNAL_FLUSH_DISCARD) &&
1067 !bdev_max_discard_sectors(EXT4_SB(sb)->s_journal->j_dev))
1070 if (flags & EXT4_IOC_CHECKPOINT_FLAG_DRY_RUN)
1073 if (flags & EXT4_IOC_CHECKPOINT_FLAG_DISCARD)
1074 flush_flags |= JBD2_JOURNAL_FLUSH_DISCARD;
1076 if (flags & EXT4_IOC_CHECKPOINT_FLAG_ZEROOUT) {
1077 flush_flags |= JBD2_JOURNAL_FLUSH_ZEROOUT;
1078 pr_info_ratelimited("warning: checkpointing journal with EXT4_IOC_CHECKPOINT_FLAG_ZEROOUT can be slow");
1081 jbd2_journal_lock_updates(EXT4_SB(sb)->s_journal);
1082 err = jbd2_journal_flush(EXT4_SB(sb)->s_journal, flush_flags);
1083 jbd2_journal_unlock_updates(EXT4_SB(sb)->s_journal);
1088 static int ext4_ioctl_setlabel(struct file *filp, const char __user *user_label)
1092 char new_label[EXT4_LABEL_MAX + 1];
1093 struct super_block *sb = file_inode(filp)->i_sb;
1095 if (!capable(CAP_SYS_ADMIN))
1099 * Copy the maximum length allowed for ext4 label with one more to
1100 * find the required terminating null byte in order to test the
1101 * label length. The on disk label doesn't need to be null terminated.
1103 if (copy_from_user(new_label, user_label, EXT4_LABEL_MAX + 1))
1106 len = strnlen(new_label, EXT4_LABEL_MAX + 1);
1107 if (len > EXT4_LABEL_MAX)
1111 * Clear the buffer after the new label
1113 memset(new_label + len, 0, EXT4_LABEL_MAX - len);
1115 ret = mnt_want_write_file(filp);
1119 ret = ext4_update_superblocks_fn(sb, ext4_sb_setlabel, new_label);
1121 mnt_drop_write_file(filp);
1125 static int ext4_ioctl_getlabel(struct ext4_sb_info *sbi, char __user *user_label)
1127 char label[EXT4_LABEL_MAX + 1];
1130 * EXT4_LABEL_MAX must always be smaller than FSLABEL_MAX because
1131 * FSLABEL_MAX must include terminating null byte, while s_volume_name
1134 BUILD_BUG_ON(EXT4_LABEL_MAX >= FSLABEL_MAX);
1136 memset(label, 0, sizeof(label));
1137 lock_buffer(sbi->s_sbh);
1138 strncpy(label, sbi->s_es->s_volume_name, EXT4_LABEL_MAX);
1139 unlock_buffer(sbi->s_sbh);
1141 if (copy_to_user(user_label, label, sizeof(label)))
1146 static int ext4_ioctl_getuuid(struct ext4_sb_info *sbi,
1147 struct fsuuid __user *ufsuuid)
1149 struct fsuuid fsuuid;
1150 __u8 uuid[UUID_SIZE];
1152 if (copy_from_user(&fsuuid, ufsuuid, sizeof(fsuuid)))
1155 if (fsuuid.fsu_len == 0) {
1156 fsuuid.fsu_len = UUID_SIZE;
1157 if (copy_to_user(ufsuuid, &fsuuid, sizeof(fsuuid.fsu_len)))
1162 if (fsuuid.fsu_len != UUID_SIZE || fsuuid.fsu_flags != 0)
1165 lock_buffer(sbi->s_sbh);
1166 memcpy(uuid, sbi->s_es->s_uuid, UUID_SIZE);
1167 unlock_buffer(sbi->s_sbh);
1169 if (copy_to_user(&ufsuuid->fsu_uuid[0], uuid, UUID_SIZE))
1174 static int ext4_ioctl_setuuid(struct file *filp,
1175 const struct fsuuid __user *ufsuuid)
1178 struct super_block *sb = file_inode(filp)->i_sb;
1179 struct fsuuid fsuuid;
1180 __u8 uuid[UUID_SIZE];
1182 if (!capable(CAP_SYS_ADMIN))
1186 * If any checksums (group descriptors or metadata) are being used
1187 * then the checksum seed feature is required to change the UUID.
1189 if (((ext4_has_feature_gdt_csum(sb) || ext4_has_metadata_csum(sb))
1190 && !ext4_has_feature_csum_seed(sb))
1191 || ext4_has_feature_stable_inodes(sb))
1194 if (copy_from_user(&fsuuid, ufsuuid, sizeof(fsuuid)))
1197 if (fsuuid.fsu_len != UUID_SIZE || fsuuid.fsu_flags != 0)
1200 if (copy_from_user(uuid, &ufsuuid->fsu_uuid[0], UUID_SIZE))
1203 ret = mnt_want_write_file(filp);
1207 ret = ext4_update_superblocks_fn(sb, ext4_sb_setuuid, &uuid);
1208 mnt_drop_write_file(filp);
1213 static long __ext4_ioctl(struct file *filp, unsigned int cmd, unsigned long arg)
1215 struct inode *inode = file_inode(filp);
1216 struct super_block *sb = inode->i_sb;
1217 struct user_namespace *mnt_userns = file_mnt_user_ns(filp);
1219 ext4_debug("cmd = %u, arg = %lu\n", cmd, arg);
1222 case FS_IOC_GETFSMAP:
1223 return ext4_ioc_getfsmap(sb, (void __user *)arg);
1224 case EXT4_IOC_GETVERSION:
1225 case EXT4_IOC_GETVERSION_OLD:
1226 return put_user(inode->i_generation, (int __user *) arg);
1227 case EXT4_IOC_SETVERSION:
1228 case EXT4_IOC_SETVERSION_OLD: {
1230 struct ext4_iloc iloc;
1234 if (!inode_owner_or_capable(mnt_userns, inode))
1237 if (ext4_has_metadata_csum(inode->i_sb)) {
1238 ext4_warning(sb, "Setting inode version is not "
1239 "supported with metadata_csum enabled.");
1243 err = mnt_want_write_file(filp);
1246 if (get_user(generation, (int __user *) arg)) {
1248 goto setversion_out;
1252 handle = ext4_journal_start(inode, EXT4_HT_INODE, 1);
1253 if (IS_ERR(handle)) {
1254 err = PTR_ERR(handle);
1257 err = ext4_reserve_inode_write(handle, inode, &iloc);
1259 inode->i_ctime = current_time(inode);
1260 inode->i_generation = generation;
1261 err = ext4_mark_iloc_dirty(handle, inode, &iloc);
1263 ext4_journal_stop(handle);
1266 inode_unlock(inode);
1268 mnt_drop_write_file(filp);
1271 case EXT4_IOC_GROUP_EXTEND: {
1272 ext4_fsblk_t n_blocks_count;
1275 err = ext4_resize_begin(sb);
1279 if (get_user(n_blocks_count, (__u32 __user *)arg)) {
1281 goto group_extend_out;
1284 if (ext4_has_feature_bigalloc(sb)) {
1285 ext4_msg(sb, KERN_ERR,
1286 "Online resizing not supported with bigalloc");
1288 goto group_extend_out;
1291 err = mnt_want_write_file(filp);
1293 goto group_extend_out;
1295 err = ext4_group_extend(sb, EXT4_SB(sb)->s_es, n_blocks_count);
1296 if (EXT4_SB(sb)->s_journal) {
1297 jbd2_journal_lock_updates(EXT4_SB(sb)->s_journal);
1298 err2 = jbd2_journal_flush(EXT4_SB(sb)->s_journal, 0);
1299 jbd2_journal_unlock_updates(EXT4_SB(sb)->s_journal);
1303 mnt_drop_write_file(filp);
1305 err2 = ext4_resize_end(sb, false);
1311 case EXT4_IOC_MOVE_EXT: {
1312 struct move_extent me;
1316 if (!(filp->f_mode & FMODE_READ) ||
1317 !(filp->f_mode & FMODE_WRITE))
1320 if (copy_from_user(&me,
1321 (struct move_extent __user *)arg, sizeof(me)))
1325 donor = fdget(me.donor_fd);
1329 if (!(donor.file->f_mode & FMODE_WRITE)) {
1334 if (ext4_has_feature_bigalloc(sb)) {
1335 ext4_msg(sb, KERN_ERR,
1336 "Online defrag not supported with bigalloc");
1339 } else if (IS_DAX(inode)) {
1340 ext4_msg(sb, KERN_ERR,
1341 "Online defrag not supported with DAX");
1346 err = mnt_want_write_file(filp);
1350 err = ext4_move_extents(filp, donor.file, me.orig_start,
1351 me.donor_start, me.len, &me.moved_len);
1352 mnt_drop_write_file(filp);
1354 if (copy_to_user((struct move_extent __user *)arg,
1362 case EXT4_IOC_GROUP_ADD: {
1363 struct ext4_new_group_data input;
1365 if (copy_from_user(&input, (struct ext4_new_group_input __user *)arg,
1369 return ext4_ioctl_group_add(filp, &input);
1372 case EXT4_IOC_MIGRATE:
1375 if (!inode_owner_or_capable(mnt_userns, inode))
1378 err = mnt_want_write_file(filp);
1382 * inode_mutex prevent write and truncate on the file.
1383 * Read still goes through. We take i_data_sem in
1384 * ext4_ext_swap_inode_data before we switch the
1385 * inode format to prevent read.
1387 inode_lock((inode));
1388 err = ext4_ext_migrate(inode);
1389 inode_unlock((inode));
1390 mnt_drop_write_file(filp);
1394 case EXT4_IOC_ALLOC_DA_BLKS:
1397 if (!inode_owner_or_capable(mnt_userns, inode))
1400 err = mnt_want_write_file(filp);
1403 err = ext4_alloc_da_blocks(inode);
1404 mnt_drop_write_file(filp);
1408 case EXT4_IOC_SWAP_BOOT:
1411 if (!(filp->f_mode & FMODE_WRITE))
1413 err = mnt_want_write_file(filp);
1416 err = swap_inode_boot_loader(sb, mnt_userns, inode);
1417 mnt_drop_write_file(filp);
1421 case EXT4_IOC_RESIZE_FS: {
1422 ext4_fsblk_t n_blocks_count;
1423 int err = 0, err2 = 0;
1424 ext4_group_t o_group = EXT4_SB(sb)->s_groups_count;
1426 if (copy_from_user(&n_blocks_count, (__u64 __user *)arg,
1431 err = ext4_resize_begin(sb);
1435 err = mnt_want_write_file(filp);
1439 err = ext4_resize_fs(sb, n_blocks_count);
1440 if (EXT4_SB(sb)->s_journal) {
1441 ext4_fc_mark_ineligible(sb, EXT4_FC_REASON_RESIZE, NULL);
1442 jbd2_journal_lock_updates(EXT4_SB(sb)->s_journal);
1443 err2 = jbd2_journal_flush(EXT4_SB(sb)->s_journal, 0);
1444 jbd2_journal_unlock_updates(EXT4_SB(sb)->s_journal);
1448 mnt_drop_write_file(filp);
1449 if (!err && (o_group < EXT4_SB(sb)->s_groups_count) &&
1450 ext4_has_group_desc_csum(sb) &&
1451 test_opt(sb, INIT_INODE_TABLE))
1452 err = ext4_register_li_request(sb, o_group);
1455 err2 = ext4_resize_end(sb, true);
1463 struct fstrim_range range;
1466 if (!capable(CAP_SYS_ADMIN))
1469 if (!bdev_max_discard_sectors(sb->s_bdev))
1473 * We haven't replayed the journal, so we cannot use our
1474 * block-bitmap-guided storage zapping commands.
1476 if (test_opt(sb, NOLOAD) && ext4_has_feature_journal(sb))
1479 if (copy_from_user(&range, (struct fstrim_range __user *)arg,
1483 ret = ext4_trim_fs(sb, &range);
1487 if (copy_to_user((struct fstrim_range __user *)arg, &range,
1493 case EXT4_IOC_PRECACHE_EXTENTS:
1494 return ext4_ext_precache(inode);
1496 case FS_IOC_SET_ENCRYPTION_POLICY:
1497 if (!ext4_has_feature_encrypt(sb))
1499 return fscrypt_ioctl_set_policy(filp, (const void __user *)arg);
1501 case FS_IOC_GET_ENCRYPTION_PWSALT:
1502 return ext4_ioctl_get_encryption_pwsalt(filp, (void __user *)arg);
1504 case FS_IOC_GET_ENCRYPTION_POLICY:
1505 if (!ext4_has_feature_encrypt(sb))
1507 return fscrypt_ioctl_get_policy(filp, (void __user *)arg);
1509 case FS_IOC_GET_ENCRYPTION_POLICY_EX:
1510 if (!ext4_has_feature_encrypt(sb))
1512 return fscrypt_ioctl_get_policy_ex(filp, (void __user *)arg);
1514 case FS_IOC_ADD_ENCRYPTION_KEY:
1515 if (!ext4_has_feature_encrypt(sb))
1517 return fscrypt_ioctl_add_key(filp, (void __user *)arg);
1519 case FS_IOC_REMOVE_ENCRYPTION_KEY:
1520 if (!ext4_has_feature_encrypt(sb))
1522 return fscrypt_ioctl_remove_key(filp, (void __user *)arg);
1524 case FS_IOC_REMOVE_ENCRYPTION_KEY_ALL_USERS:
1525 if (!ext4_has_feature_encrypt(sb))
1527 return fscrypt_ioctl_remove_key_all_users(filp,
1528 (void __user *)arg);
1529 case FS_IOC_GET_ENCRYPTION_KEY_STATUS:
1530 if (!ext4_has_feature_encrypt(sb))
1532 return fscrypt_ioctl_get_key_status(filp, (void __user *)arg);
1534 case FS_IOC_GET_ENCRYPTION_NONCE:
1535 if (!ext4_has_feature_encrypt(sb))
1537 return fscrypt_ioctl_get_nonce(filp, (void __user *)arg);
1539 case EXT4_IOC_CLEAR_ES_CACHE:
1541 if (!inode_owner_or_capable(mnt_userns, inode))
1543 ext4_clear_inode_es(inode);
1547 case EXT4_IOC_GETSTATE:
1551 if (ext4_test_inode_state(inode, EXT4_STATE_EXT_PRECACHED))
1552 state |= EXT4_STATE_FLAG_EXT_PRECACHED;
1553 if (ext4_test_inode_state(inode, EXT4_STATE_NEW))
1554 state |= EXT4_STATE_FLAG_NEW;
1555 if (ext4_test_inode_state(inode, EXT4_STATE_NEWENTRY))
1556 state |= EXT4_STATE_FLAG_NEWENTRY;
1557 if (ext4_test_inode_state(inode, EXT4_STATE_DA_ALLOC_CLOSE))
1558 state |= EXT4_STATE_FLAG_DA_ALLOC_CLOSE;
1560 return put_user(state, (__u32 __user *) arg);
1563 case EXT4_IOC_GET_ES_CACHE:
1564 return ext4_ioctl_get_es_cache(filp, arg);
1566 case EXT4_IOC_SHUTDOWN:
1567 return ext4_shutdown(sb, arg);
1569 case FS_IOC_ENABLE_VERITY:
1570 if (!ext4_has_feature_verity(sb))
1572 return fsverity_ioctl_enable(filp, (const void __user *)arg);
1574 case FS_IOC_MEASURE_VERITY:
1575 if (!ext4_has_feature_verity(sb))
1577 return fsverity_ioctl_measure(filp, (void __user *)arg);
1579 case FS_IOC_READ_VERITY_METADATA:
1580 if (!ext4_has_feature_verity(sb))
1582 return fsverity_ioctl_read_metadata(filp,
1583 (const void __user *)arg);
1585 case EXT4_IOC_CHECKPOINT:
1586 return ext4_ioctl_checkpoint(filp, arg);
1588 case FS_IOC_GETFSLABEL:
1589 return ext4_ioctl_getlabel(EXT4_SB(sb), (void __user *)arg);
1591 case FS_IOC_SETFSLABEL:
1592 return ext4_ioctl_setlabel(filp,
1593 (const void __user *)arg);
1595 case EXT4_IOC_GETFSUUID:
1596 return ext4_ioctl_getuuid(EXT4_SB(sb), (void __user *)arg);
1597 case EXT4_IOC_SETFSUUID:
1598 return ext4_ioctl_setuuid(filp, (const void __user *)arg);
1604 long ext4_ioctl(struct file *filp, unsigned int cmd, unsigned long arg)
1606 return __ext4_ioctl(filp, cmd, arg);
1609 #ifdef CONFIG_COMPAT
1610 long ext4_compat_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
1612 /* These are just misnamed, they actually get/put from/to user an int */
1614 case EXT4_IOC32_GETVERSION:
1615 cmd = EXT4_IOC_GETVERSION;
1617 case EXT4_IOC32_SETVERSION:
1618 cmd = EXT4_IOC_SETVERSION;
1620 case EXT4_IOC32_GROUP_EXTEND:
1621 cmd = EXT4_IOC_GROUP_EXTEND;
1623 case EXT4_IOC32_GETVERSION_OLD:
1624 cmd = EXT4_IOC_GETVERSION_OLD;
1626 case EXT4_IOC32_SETVERSION_OLD:
1627 cmd = EXT4_IOC_SETVERSION_OLD;
1629 case EXT4_IOC32_GETRSVSZ:
1630 cmd = EXT4_IOC_GETRSVSZ;
1632 case EXT4_IOC32_SETRSVSZ:
1633 cmd = EXT4_IOC_SETRSVSZ;
1635 case EXT4_IOC32_GROUP_ADD: {
1636 struct compat_ext4_new_group_input __user *uinput;
1637 struct ext4_new_group_data input;
1640 uinput = compat_ptr(arg);
1641 err = get_user(input.group, &uinput->group);
1642 err |= get_user(input.block_bitmap, &uinput->block_bitmap);
1643 err |= get_user(input.inode_bitmap, &uinput->inode_bitmap);
1644 err |= get_user(input.inode_table, &uinput->inode_table);
1645 err |= get_user(input.blocks_count, &uinput->blocks_count);
1646 err |= get_user(input.reserved_blocks,
1647 &uinput->reserved_blocks);
1650 return ext4_ioctl_group_add(file, &input);
1652 case EXT4_IOC_MOVE_EXT:
1653 case EXT4_IOC_RESIZE_FS:
1655 case EXT4_IOC_PRECACHE_EXTENTS:
1656 case FS_IOC_SET_ENCRYPTION_POLICY:
1657 case FS_IOC_GET_ENCRYPTION_PWSALT:
1658 case FS_IOC_GET_ENCRYPTION_POLICY:
1659 case FS_IOC_GET_ENCRYPTION_POLICY_EX:
1660 case FS_IOC_ADD_ENCRYPTION_KEY:
1661 case FS_IOC_REMOVE_ENCRYPTION_KEY:
1662 case FS_IOC_REMOVE_ENCRYPTION_KEY_ALL_USERS:
1663 case FS_IOC_GET_ENCRYPTION_KEY_STATUS:
1664 case FS_IOC_GET_ENCRYPTION_NONCE:
1665 case EXT4_IOC_SHUTDOWN:
1666 case FS_IOC_GETFSMAP:
1667 case FS_IOC_ENABLE_VERITY:
1668 case FS_IOC_MEASURE_VERITY:
1669 case FS_IOC_READ_VERITY_METADATA:
1670 case EXT4_IOC_CLEAR_ES_CACHE:
1671 case EXT4_IOC_GETSTATE:
1672 case EXT4_IOC_GET_ES_CACHE:
1673 case EXT4_IOC_CHECKPOINT:
1674 case FS_IOC_GETFSLABEL:
1675 case FS_IOC_SETFSLABEL:
1676 case EXT4_IOC_GETFSUUID:
1677 case EXT4_IOC_SETFSUUID:
1680 return -ENOIOCTLCMD;
1682 return ext4_ioctl(file, cmd, (unsigned long) compat_ptr(arg));
1686 static void set_overhead(struct ext4_super_block *es, const void *arg)
1688 es->s_overhead_clusters = cpu_to_le32(*((unsigned long *) arg));
1691 int ext4_update_overhead(struct super_block *sb, bool force)
1693 struct ext4_sb_info *sbi = EXT4_SB(sb);
1698 (sbi->s_overhead == 0 ||
1699 sbi->s_overhead == le32_to_cpu(sbi->s_es->s_overhead_clusters)))
1701 return ext4_update_superblocks_fn(sb, set_overhead, &sbi->s_overhead);