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 void ext4_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 * @mnt_userns: user namespace of the mount the inode was found from
111 * @inode: the inode to swap with EXT4_BOOT_LOADER_INO
114 static long swap_inode_boot_loader(struct super_block *sb,
115 struct user_namespace *mnt_userns,
120 struct inode *inode_bl;
121 struct ext4_inode_info *ei_bl;
122 qsize_t size, size_bl, diff;
124 unsigned short bytes;
126 inode_bl = ext4_iget(sb, EXT4_BOOT_LOADER_INO, EXT4_IGET_SPECIAL);
127 if (IS_ERR(inode_bl))
128 return PTR_ERR(inode_bl);
129 ei_bl = EXT4_I(inode_bl);
131 /* Protect orig inodes against a truncate and make sure,
132 * that only 1 swap_inode_boot_loader is running. */
133 lock_two_nondirectories(inode, inode_bl);
135 if (inode->i_nlink != 1 || !S_ISREG(inode->i_mode) ||
136 IS_SWAPFILE(inode) || IS_ENCRYPTED(inode) ||
137 (EXT4_I(inode)->i_flags & EXT4_JOURNAL_DATA_FL) ||
138 ext4_has_inline_data(inode)) {
140 goto journal_err_out;
143 if (IS_RDONLY(inode) || IS_APPEND(inode) || IS_IMMUTABLE(inode) ||
144 !inode_owner_or_capable(mnt_userns, inode) ||
145 !capable(CAP_SYS_ADMIN)) {
147 goto journal_err_out;
150 down_write(&EXT4_I(inode)->i_mmap_sem);
151 err = filemap_write_and_wait(inode->i_mapping);
155 err = filemap_write_and_wait(inode_bl->i_mapping);
159 /* Wait for all existing dio workers */
160 inode_dio_wait(inode);
161 inode_dio_wait(inode_bl);
163 truncate_inode_pages(&inode->i_data, 0);
164 truncate_inode_pages(&inode_bl->i_data, 0);
166 handle = ext4_journal_start(inode_bl, EXT4_HT_MOVE_EXTENTS, 2);
167 if (IS_ERR(handle)) {
171 ext4_fc_start_ineligible(sb, EXT4_FC_REASON_SWAP_BOOT);
173 /* Protect extent tree against block allocations via delalloc */
174 ext4_double_down_write_data_sem(inode, inode_bl);
176 if (inode_bl->i_nlink == 0) {
177 /* this inode has never been used as a BOOT_LOADER */
178 set_nlink(inode_bl, 1);
179 i_uid_write(inode_bl, 0);
180 i_gid_write(inode_bl, 0);
181 inode_bl->i_flags = 0;
183 inode_set_iversion(inode_bl, 1);
184 i_size_write(inode_bl, 0);
185 inode_bl->i_mode = S_IFREG;
186 if (ext4_has_feature_extents(sb)) {
187 ext4_set_inode_flag(inode_bl, EXT4_INODE_EXTENTS);
188 ext4_ext_tree_init(handle, inode_bl);
190 memset(ei_bl->i_data, 0, sizeof(ei_bl->i_data));
193 err = dquot_initialize(inode);
197 size = (qsize_t)(inode->i_blocks) * (1 << 9) + inode->i_bytes;
198 size_bl = (qsize_t)(inode_bl->i_blocks) * (1 << 9) + inode_bl->i_bytes;
199 diff = size - size_bl;
200 swap_inode_data(inode, inode_bl);
202 inode->i_ctime = inode_bl->i_ctime = current_time(inode);
204 inode->i_generation = prandom_u32();
205 inode_bl->i_generation = prandom_u32();
206 ext4_reset_inode_seed(inode);
207 ext4_reset_inode_seed(inode_bl);
209 ext4_discard_preallocations(inode, 0);
211 err = ext4_mark_inode_dirty(handle, inode);
213 /* No need to update quota information. */
214 ext4_warning(inode->i_sb,
215 "couldn't mark inode #%lu dirty (err %d)",
217 /* Revert all changes: */
218 swap_inode_data(inode, inode_bl);
219 ext4_mark_inode_dirty(handle, inode);
223 blocks = inode_bl->i_blocks;
224 bytes = inode_bl->i_bytes;
225 inode_bl->i_blocks = inode->i_blocks;
226 inode_bl->i_bytes = inode->i_bytes;
227 err = ext4_mark_inode_dirty(handle, inode_bl);
229 /* No need to update quota information. */
230 ext4_warning(inode_bl->i_sb,
231 "couldn't mark inode #%lu dirty (err %d)",
232 inode_bl->i_ino, err);
236 /* Bootloader inode should not be counted into quota information. */
238 dquot_free_space(inode, diff);
240 err = dquot_alloc_space(inode, -1 * diff);
244 /* Revert all changes: */
245 inode_bl->i_blocks = blocks;
246 inode_bl->i_bytes = bytes;
247 swap_inode_data(inode, inode_bl);
248 ext4_mark_inode_dirty(handle, inode);
249 ext4_mark_inode_dirty(handle, inode_bl);
253 ext4_journal_stop(handle);
254 ext4_fc_stop_ineligible(sb);
255 ext4_double_up_write_data_sem(inode, inode_bl);
258 up_write(&EXT4_I(inode)->i_mmap_sem);
260 unlock_two_nondirectories(inode, inode_bl);
265 #ifdef CONFIG_FS_ENCRYPTION
266 static int uuid_is_zero(__u8 u[16])
270 for (i = 0; i < 16; i++)
278 * If immutable is set and we are not clearing it, we're not allowed to change
279 * anything else in the inode. Don't error out if we're only trying to set
280 * immutable on an immutable file.
282 static int ext4_ioctl_check_immutable(struct inode *inode, __u32 new_projid,
285 struct ext4_inode_info *ei = EXT4_I(inode);
286 unsigned int oldflags = ei->i_flags;
288 if (!(oldflags & EXT4_IMMUTABLE_FL) || !(flags & EXT4_IMMUTABLE_FL))
291 if ((oldflags & ~EXT4_IMMUTABLE_FL) != (flags & ~EXT4_IMMUTABLE_FL))
293 if (ext4_has_feature_project(inode->i_sb) &&
294 __kprojid_val(ei->i_projid) != new_projid)
300 static void ext4_dax_dontcache(struct inode *inode, unsigned int flags)
302 struct ext4_inode_info *ei = EXT4_I(inode);
304 if (S_ISDIR(inode->i_mode))
307 if (test_opt2(inode->i_sb, DAX_NEVER) ||
308 test_opt(inode->i_sb, DAX_ALWAYS))
311 if ((ei->i_flags ^ flags) & EXT4_DAX_FL)
312 d_mark_dontcache(inode);
315 static bool dax_compatible(struct inode *inode, unsigned int oldflags,
318 if (flags & EXT4_DAX_FL) {
319 if ((oldflags & EXT4_DAX_MUT_EXCL) ||
320 ext4_test_inode_state(inode,
321 EXT4_STATE_VERITY_IN_PROGRESS)) {
326 if ((flags & EXT4_DAX_MUT_EXCL) && (oldflags & EXT4_DAX_FL))
332 static int ext4_ioctl_setflags(struct inode *inode,
335 struct ext4_inode_info *ei = EXT4_I(inode);
336 handle_t *handle = NULL;
337 int err = -EPERM, migrate = 0;
338 struct ext4_iloc iloc;
339 unsigned int oldflags, mask, i;
340 struct super_block *sb = inode->i_sb;
342 /* Is it quota file? Do not allow user to mess with it */
343 if (ext4_is_quota_file(inode))
346 oldflags = ei->i_flags;
348 err = vfs_ioc_setflags_prepare(inode, oldflags, flags);
353 * The JOURNAL_DATA flag can only be changed by
354 * the relevant capability.
356 if ((flags ^ oldflags) & (EXT4_JOURNAL_DATA_FL)) {
357 if (!capable(CAP_SYS_RESOURCE))
361 if (!dax_compatible(inode, oldflags, flags)) {
366 if ((flags ^ oldflags) & EXT4_EXTENTS_FL)
369 if ((flags ^ oldflags) & EXT4_CASEFOLD_FL) {
370 if (!ext4_has_feature_casefold(sb)) {
375 if (!S_ISDIR(inode->i_mode)) {
380 if (!ext4_empty_dir(inode)) {
387 * Wait for all pending directio and then flush all the dirty pages
388 * for this file. The flush marks all the pages readonly, so any
389 * subsequent attempt to write to the file (particularly mmap pages)
390 * will come through the filesystem and fail.
392 if (S_ISREG(inode->i_mode) && !IS_IMMUTABLE(inode) &&
393 (flags & EXT4_IMMUTABLE_FL)) {
394 inode_dio_wait(inode);
395 err = filemap_write_and_wait(inode->i_mapping);
400 handle = ext4_journal_start(inode, EXT4_HT_INODE, 1);
401 if (IS_ERR(handle)) {
402 err = PTR_ERR(handle);
406 ext4_handle_sync(handle);
407 err = ext4_reserve_inode_write(handle, inode, &iloc);
411 ext4_dax_dontcache(inode, flags);
413 for (i = 0, mask = 1; i < 32; i++, mask <<= 1) {
414 if (!(mask & EXT4_FL_USER_MODIFIABLE))
416 /* These flags get special treatment later */
417 if (mask == EXT4_JOURNAL_DATA_FL || mask == EXT4_EXTENTS_FL)
420 ext4_set_inode_flag(inode, i);
422 ext4_clear_inode_flag(inode, i);
425 ext4_set_inode_flags(inode, false);
427 inode->i_ctime = current_time(inode);
429 err = ext4_mark_iloc_dirty(handle, inode, &iloc);
431 ext4_journal_stop(handle);
435 if ((flags ^ oldflags) & (EXT4_JOURNAL_DATA_FL)) {
437 * Changes to the journaling mode can cause unsafe changes to
438 * S_DAX if the inode is DAX
445 err = ext4_change_inode_journal_flag(inode,
446 flags & EXT4_JOURNAL_DATA_FL);
451 if (flags & EXT4_EXTENTS_FL)
452 err = ext4_ext_migrate(inode);
454 err = ext4_ind_migrate(inode);
462 static int ext4_ioctl_setproject(struct file *filp, __u32 projid)
464 struct inode *inode = file_inode(filp);
465 struct super_block *sb = inode->i_sb;
466 struct ext4_inode_info *ei = EXT4_I(inode);
470 struct ext4_iloc iloc;
471 struct ext4_inode *raw_inode;
472 struct dquot *transfer_to[MAXQUOTAS] = { };
474 if (!ext4_has_feature_project(sb)) {
475 if (projid != EXT4_DEF_PROJID)
481 if (EXT4_INODE_SIZE(sb) <= EXT4_GOOD_OLD_INODE_SIZE)
484 kprojid = make_kprojid(&init_user_ns, (projid_t)projid);
486 if (projid_eq(kprojid, EXT4_I(inode)->i_projid))
490 /* Is it quota file? Do not allow user to mess with it */
491 if (ext4_is_quota_file(inode))
494 err = ext4_get_inode_loc(inode, &iloc);
498 raw_inode = ext4_raw_inode(&iloc);
499 if (!EXT4_FITS_IN_INODE(raw_inode, ei, i_projid)) {
500 err = ext4_expand_extra_isize(inode,
501 EXT4_SB(sb)->s_want_extra_isize,
509 err = dquot_initialize(inode);
513 handle = ext4_journal_start(inode, EXT4_HT_QUOTA,
514 EXT4_QUOTA_INIT_BLOCKS(sb) +
515 EXT4_QUOTA_DEL_BLOCKS(sb) + 3);
517 return PTR_ERR(handle);
519 err = ext4_reserve_inode_write(handle, inode, &iloc);
523 transfer_to[PRJQUOTA] = dqget(sb, make_kqid_projid(kprojid));
524 if (!IS_ERR(transfer_to[PRJQUOTA])) {
526 /* __dquot_transfer() calls back ext4_get_inode_usage() which
527 * counts xattr inode references.
529 down_read(&EXT4_I(inode)->xattr_sem);
530 err = __dquot_transfer(inode, transfer_to);
531 up_read(&EXT4_I(inode)->xattr_sem);
532 dqput(transfer_to[PRJQUOTA]);
537 EXT4_I(inode)->i_projid = kprojid;
538 inode->i_ctime = current_time(inode);
540 rc = ext4_mark_iloc_dirty(handle, inode, &iloc);
544 ext4_journal_stop(handle);
548 static int ext4_ioctl_setproject(struct file *filp, __u32 projid)
550 if (projid != EXT4_DEF_PROJID)
556 /* Transfer internal flags to xflags */
557 static inline __u32 ext4_iflags_to_xflags(unsigned long iflags)
561 if (iflags & EXT4_SYNC_FL)
562 xflags |= FS_XFLAG_SYNC;
563 if (iflags & EXT4_IMMUTABLE_FL)
564 xflags |= FS_XFLAG_IMMUTABLE;
565 if (iflags & EXT4_APPEND_FL)
566 xflags |= FS_XFLAG_APPEND;
567 if (iflags & EXT4_NODUMP_FL)
568 xflags |= FS_XFLAG_NODUMP;
569 if (iflags & EXT4_NOATIME_FL)
570 xflags |= FS_XFLAG_NOATIME;
571 if (iflags & EXT4_PROJINHERIT_FL)
572 xflags |= FS_XFLAG_PROJINHERIT;
573 if (iflags & EXT4_DAX_FL)
574 xflags |= FS_XFLAG_DAX;
578 #define EXT4_SUPPORTED_FS_XFLAGS (FS_XFLAG_SYNC | FS_XFLAG_IMMUTABLE | \
579 FS_XFLAG_APPEND | FS_XFLAG_NODUMP | \
580 FS_XFLAG_NOATIME | FS_XFLAG_PROJINHERIT | \
583 /* Transfer xflags flags to internal */
584 static inline unsigned long ext4_xflags_to_iflags(__u32 xflags)
586 unsigned long iflags = 0;
588 if (xflags & FS_XFLAG_SYNC)
589 iflags |= EXT4_SYNC_FL;
590 if (xflags & FS_XFLAG_IMMUTABLE)
591 iflags |= EXT4_IMMUTABLE_FL;
592 if (xflags & FS_XFLAG_APPEND)
593 iflags |= EXT4_APPEND_FL;
594 if (xflags & FS_XFLAG_NODUMP)
595 iflags |= EXT4_NODUMP_FL;
596 if (xflags & FS_XFLAG_NOATIME)
597 iflags |= EXT4_NOATIME_FL;
598 if (xflags & FS_XFLAG_PROJINHERIT)
599 iflags |= EXT4_PROJINHERIT_FL;
600 if (xflags & FS_XFLAG_DAX)
601 iflags |= EXT4_DAX_FL;
606 static int ext4_shutdown(struct super_block *sb, unsigned long arg)
608 struct ext4_sb_info *sbi = EXT4_SB(sb);
611 if (!capable(CAP_SYS_ADMIN))
614 if (get_user(flags, (__u32 __user *)arg))
617 if (flags > EXT4_GOING_FLAGS_NOLOGFLUSH)
620 if (ext4_forced_shutdown(sbi))
623 ext4_msg(sb, KERN_ALERT, "shut down requested (%d)", flags);
624 trace_ext4_shutdown(sb, flags);
627 case EXT4_GOING_FLAGS_DEFAULT:
628 freeze_bdev(sb->s_bdev);
629 set_bit(EXT4_FLAGS_SHUTDOWN, &sbi->s_ext4_flags);
630 thaw_bdev(sb->s_bdev);
632 case EXT4_GOING_FLAGS_LOGFLUSH:
633 set_bit(EXT4_FLAGS_SHUTDOWN, &sbi->s_ext4_flags);
634 if (sbi->s_journal && !is_journal_aborted(sbi->s_journal)) {
635 (void) ext4_force_commit(sb);
636 jbd2_journal_abort(sbi->s_journal, -ESHUTDOWN);
639 case EXT4_GOING_FLAGS_NOLOGFLUSH:
640 set_bit(EXT4_FLAGS_SHUTDOWN, &sbi->s_ext4_flags);
641 if (sbi->s_journal && !is_journal_aborted(sbi->s_journal))
642 jbd2_journal_abort(sbi->s_journal, -ESHUTDOWN);
647 clear_opt(sb, DISCARD);
651 struct getfsmap_info {
652 struct super_block *gi_sb;
653 struct fsmap_head __user *gi_data;
658 static int ext4_getfsmap_format(struct ext4_fsmap *xfm, void *priv)
660 struct getfsmap_info *info = priv;
663 trace_ext4_getfsmap_mapping(info->gi_sb, xfm);
665 info->gi_last_flags = xfm->fmr_flags;
666 ext4_fsmap_from_internal(info->gi_sb, &fm, xfm);
667 if (copy_to_user(&info->gi_data->fmh_recs[info->gi_idx++], &fm,
668 sizeof(struct fsmap)))
674 static int ext4_ioc_getfsmap(struct super_block *sb,
675 struct fsmap_head __user *arg)
677 struct getfsmap_info info = { NULL };
678 struct ext4_fsmap_head xhead = {0};
679 struct fsmap_head head;
680 bool aborted = false;
683 if (copy_from_user(&head, arg, sizeof(struct fsmap_head)))
685 if (memchr_inv(head.fmh_reserved, 0, sizeof(head.fmh_reserved)) ||
686 memchr_inv(head.fmh_keys[0].fmr_reserved, 0,
687 sizeof(head.fmh_keys[0].fmr_reserved)) ||
688 memchr_inv(head.fmh_keys[1].fmr_reserved, 0,
689 sizeof(head.fmh_keys[1].fmr_reserved)))
692 * ext4 doesn't report file extents at all, so the only valid
693 * file offsets are the magic ones (all zeroes or all ones).
695 if (head.fmh_keys[0].fmr_offset ||
696 (head.fmh_keys[1].fmr_offset != 0 &&
697 head.fmh_keys[1].fmr_offset != -1ULL))
700 xhead.fmh_iflags = head.fmh_iflags;
701 xhead.fmh_count = head.fmh_count;
702 ext4_fsmap_to_internal(sb, &xhead.fmh_keys[0], &head.fmh_keys[0]);
703 ext4_fsmap_to_internal(sb, &xhead.fmh_keys[1], &head.fmh_keys[1]);
705 trace_ext4_getfsmap_low_key(sb, &xhead.fmh_keys[0]);
706 trace_ext4_getfsmap_high_key(sb, &xhead.fmh_keys[1]);
710 error = ext4_getfsmap(sb, &xhead, ext4_getfsmap_format, &info);
711 if (error == EXT4_QUERY_RANGE_ABORT) {
717 /* If we didn't abort, set the "last" flag in the last fmx */
718 if (!aborted && info.gi_idx) {
719 info.gi_last_flags |= FMR_OF_LAST;
720 if (copy_to_user(&info.gi_data->fmh_recs[info.gi_idx - 1].fmr_flags,
722 sizeof(info.gi_last_flags)))
726 /* copy back header */
727 head.fmh_entries = xhead.fmh_entries;
728 head.fmh_oflags = xhead.fmh_oflags;
729 if (copy_to_user(arg, &head, sizeof(struct fsmap_head)))
735 static long ext4_ioctl_group_add(struct file *file,
736 struct ext4_new_group_data *input)
738 struct super_block *sb = file_inode(file)->i_sb;
741 err = ext4_resize_begin(sb);
745 if (ext4_has_feature_bigalloc(sb)) {
746 ext4_msg(sb, KERN_ERR,
747 "Online resizing not supported with bigalloc");
752 err = mnt_want_write_file(file);
756 err = ext4_group_add(sb, input);
757 if (EXT4_SB(sb)->s_journal) {
758 jbd2_journal_lock_updates(EXT4_SB(sb)->s_journal);
759 err2 = jbd2_journal_flush(EXT4_SB(sb)->s_journal);
760 jbd2_journal_unlock_updates(EXT4_SB(sb)->s_journal);
764 mnt_drop_write_file(file);
765 if (!err && ext4_has_group_desc_csum(sb) &&
766 test_opt(sb, INIT_INODE_TABLE))
767 err = ext4_register_li_request(sb, input->group);
773 static void ext4_fill_fsxattr(struct inode *inode, struct fsxattr *fa)
775 struct ext4_inode_info *ei = EXT4_I(inode);
777 simple_fill_fsxattr(fa, ext4_iflags_to_xflags(ei->i_flags &
778 EXT4_FL_USER_VISIBLE));
780 if (ext4_has_feature_project(inode->i_sb))
781 fa->fsx_projid = from_kprojid(&init_user_ns, ei->i_projid);
784 /* So that the fiemap access checks can't overflow on 32 bit machines. */
785 #define FIEMAP_MAX_EXTENTS (UINT_MAX / sizeof(struct fiemap_extent))
787 static int ext4_ioctl_get_es_cache(struct file *filp, unsigned long arg)
789 struct fiemap fiemap;
790 struct fiemap __user *ufiemap = (struct fiemap __user *) arg;
791 struct fiemap_extent_info fieinfo = { 0, };
792 struct inode *inode = file_inode(filp);
795 if (copy_from_user(&fiemap, ufiemap, sizeof(fiemap)))
798 if (fiemap.fm_extent_count > FIEMAP_MAX_EXTENTS)
801 fieinfo.fi_flags = fiemap.fm_flags;
802 fieinfo.fi_extents_max = fiemap.fm_extent_count;
803 fieinfo.fi_extents_start = ufiemap->fm_extents;
805 error = ext4_get_es_cache(inode, &fieinfo, fiemap.fm_start,
807 fiemap.fm_flags = fieinfo.fi_flags;
808 fiemap.fm_mapped_extents = fieinfo.fi_extents_mapped;
809 if (copy_to_user(ufiemap, &fiemap, sizeof(fiemap)))
815 static long __ext4_ioctl(struct file *filp, unsigned int cmd, unsigned long arg)
817 struct inode *inode = file_inode(filp);
818 struct super_block *sb = inode->i_sb;
819 struct ext4_inode_info *ei = EXT4_I(inode);
820 struct user_namespace *mnt_userns = file_mnt_user_ns(filp);
823 ext4_debug("cmd = %u, arg = %lu\n", cmd, arg);
826 case FS_IOC_GETFSMAP:
827 return ext4_ioc_getfsmap(sb, (void __user *)arg);
828 case FS_IOC_GETFLAGS:
829 flags = ei->i_flags & EXT4_FL_USER_VISIBLE;
830 if (S_ISREG(inode->i_mode))
831 flags &= ~EXT4_PROJINHERIT_FL;
832 return put_user(flags, (int __user *) arg);
833 case FS_IOC_SETFLAGS: {
836 if (!inode_owner_or_capable(mnt_userns, inode))
839 if (get_user(flags, (int __user *) arg))
842 if (flags & ~EXT4_FL_USER_VISIBLE)
845 * chattr(1) grabs flags via GETFLAGS, modifies the result and
846 * passes that to SETFLAGS. So we cannot easily make SETFLAGS
847 * more restrictive than just silently masking off visible but
848 * not settable flags as we always did.
850 flags &= EXT4_FL_USER_MODIFIABLE;
851 if (ext4_mask_flags(inode->i_mode, flags) != flags)
854 err = mnt_want_write_file(filp);
859 err = ext4_ioctl_check_immutable(inode,
860 from_kprojid(&init_user_ns, ei->i_projid),
863 err = ext4_ioctl_setflags(inode, flags);
865 mnt_drop_write_file(filp);
868 case EXT4_IOC_GETVERSION:
869 case EXT4_IOC_GETVERSION_OLD:
870 return put_user(inode->i_generation, (int __user *) arg);
871 case EXT4_IOC_SETVERSION:
872 case EXT4_IOC_SETVERSION_OLD: {
874 struct ext4_iloc iloc;
878 if (!inode_owner_or_capable(mnt_userns, inode))
881 if (ext4_has_metadata_csum(inode->i_sb)) {
882 ext4_warning(sb, "Setting inode version is not "
883 "supported with metadata_csum enabled.");
887 err = mnt_want_write_file(filp);
890 if (get_user(generation, (int __user *) arg)) {
896 handle = ext4_journal_start(inode, EXT4_HT_INODE, 1);
897 if (IS_ERR(handle)) {
898 err = PTR_ERR(handle);
901 err = ext4_reserve_inode_write(handle, inode, &iloc);
903 inode->i_ctime = current_time(inode);
904 inode->i_generation = generation;
905 err = ext4_mark_iloc_dirty(handle, inode, &iloc);
907 ext4_journal_stop(handle);
912 mnt_drop_write_file(filp);
915 case EXT4_IOC_GROUP_EXTEND: {
916 ext4_fsblk_t n_blocks_count;
919 err = ext4_resize_begin(sb);
923 if (get_user(n_blocks_count, (__u32 __user *)arg)) {
925 goto group_extend_out;
928 if (ext4_has_feature_bigalloc(sb)) {
929 ext4_msg(sb, KERN_ERR,
930 "Online resizing not supported with bigalloc");
932 goto group_extend_out;
935 err = mnt_want_write_file(filp);
937 goto group_extend_out;
939 err = ext4_group_extend(sb, EXT4_SB(sb)->s_es, n_blocks_count);
940 if (EXT4_SB(sb)->s_journal) {
941 jbd2_journal_lock_updates(EXT4_SB(sb)->s_journal);
942 err2 = jbd2_journal_flush(EXT4_SB(sb)->s_journal);
943 jbd2_journal_unlock_updates(EXT4_SB(sb)->s_journal);
947 mnt_drop_write_file(filp);
953 case EXT4_IOC_MOVE_EXT: {
954 struct move_extent me;
958 if (!(filp->f_mode & FMODE_READ) ||
959 !(filp->f_mode & FMODE_WRITE))
962 if (copy_from_user(&me,
963 (struct move_extent __user *)arg, sizeof(me)))
967 donor = fdget(me.donor_fd);
971 if (!(donor.file->f_mode & FMODE_WRITE)) {
976 if (ext4_has_feature_bigalloc(sb)) {
977 ext4_msg(sb, KERN_ERR,
978 "Online defrag not supported with bigalloc");
981 } else if (IS_DAX(inode)) {
982 ext4_msg(sb, KERN_ERR,
983 "Online defrag not supported with DAX");
988 err = mnt_want_write_file(filp);
992 err = ext4_move_extents(filp, donor.file, me.orig_start,
993 me.donor_start, me.len, &me.moved_len);
994 mnt_drop_write_file(filp);
996 if (copy_to_user((struct move_extent __user *)arg,
1004 case EXT4_IOC_GROUP_ADD: {
1005 struct ext4_new_group_data input;
1007 if (copy_from_user(&input, (struct ext4_new_group_input __user *)arg,
1011 return ext4_ioctl_group_add(filp, &input);
1014 case EXT4_IOC_MIGRATE:
1017 if (!inode_owner_or_capable(mnt_userns, inode))
1020 err = mnt_want_write_file(filp);
1024 * inode_mutex prevent write and truncate on the file.
1025 * Read still goes through. We take i_data_sem in
1026 * ext4_ext_swap_inode_data before we switch the
1027 * inode format to prevent read.
1029 inode_lock((inode));
1030 err = ext4_ext_migrate(inode);
1031 inode_unlock((inode));
1032 mnt_drop_write_file(filp);
1036 case EXT4_IOC_ALLOC_DA_BLKS:
1039 if (!inode_owner_or_capable(mnt_userns, inode))
1042 err = mnt_want_write_file(filp);
1045 err = ext4_alloc_da_blocks(inode);
1046 mnt_drop_write_file(filp);
1050 case EXT4_IOC_SWAP_BOOT:
1053 if (!(filp->f_mode & FMODE_WRITE))
1055 err = mnt_want_write_file(filp);
1058 err = swap_inode_boot_loader(sb, mnt_userns, inode);
1059 mnt_drop_write_file(filp);
1063 case EXT4_IOC_RESIZE_FS: {
1064 ext4_fsblk_t n_blocks_count;
1065 int err = 0, err2 = 0;
1066 ext4_group_t o_group = EXT4_SB(sb)->s_groups_count;
1068 if (copy_from_user(&n_blocks_count, (__u64 __user *)arg,
1073 err = ext4_resize_begin(sb);
1077 err = mnt_want_write_file(filp);
1081 err = ext4_resize_fs(sb, n_blocks_count);
1082 if (EXT4_SB(sb)->s_journal) {
1083 ext4_fc_mark_ineligible(sb, EXT4_FC_REASON_RESIZE);
1084 jbd2_journal_lock_updates(EXT4_SB(sb)->s_journal);
1085 err2 = jbd2_journal_flush(EXT4_SB(sb)->s_journal);
1086 jbd2_journal_unlock_updates(EXT4_SB(sb)->s_journal);
1090 mnt_drop_write_file(filp);
1091 if (!err && (o_group < EXT4_SB(sb)->s_groups_count) &&
1092 ext4_has_group_desc_csum(sb) &&
1093 test_opt(sb, INIT_INODE_TABLE))
1094 err = ext4_register_li_request(sb, o_group);
1097 ext4_resize_end(sb);
1103 struct request_queue *q = bdev_get_queue(sb->s_bdev);
1104 struct fstrim_range range;
1107 if (!capable(CAP_SYS_ADMIN))
1110 if (!blk_queue_discard(q))
1114 * We haven't replayed the journal, so we cannot use our
1115 * block-bitmap-guided storage zapping commands.
1117 if (test_opt(sb, NOLOAD) && ext4_has_feature_journal(sb))
1120 if (copy_from_user(&range, (struct fstrim_range __user *)arg,
1124 range.minlen = max((unsigned int)range.minlen,
1125 q->limits.discard_granularity);
1126 ret = ext4_trim_fs(sb, &range);
1130 if (copy_to_user((struct fstrim_range __user *)arg, &range,
1136 case EXT4_IOC_PRECACHE_EXTENTS:
1137 return ext4_ext_precache(inode);
1139 case FS_IOC_SET_ENCRYPTION_POLICY:
1140 if (!ext4_has_feature_encrypt(sb))
1142 return fscrypt_ioctl_set_policy(filp, (const void __user *)arg);
1144 case FS_IOC_GET_ENCRYPTION_PWSALT: {
1145 #ifdef CONFIG_FS_ENCRYPTION
1147 struct ext4_sb_info *sbi = EXT4_SB(sb);
1150 if (!ext4_has_feature_encrypt(sb))
1152 if (uuid_is_zero(sbi->s_es->s_encrypt_pw_salt)) {
1153 err = mnt_want_write_file(filp);
1156 handle = ext4_journal_start_sb(sb, EXT4_HT_MISC, 1);
1157 if (IS_ERR(handle)) {
1158 err = PTR_ERR(handle);
1159 goto pwsalt_err_exit;
1161 err = ext4_journal_get_write_access(handle, sbi->s_sbh);
1163 goto pwsalt_err_journal;
1164 lock_buffer(sbi->s_sbh);
1165 generate_random_uuid(sbi->s_es->s_encrypt_pw_salt);
1166 ext4_superblock_csum_set(sb);
1167 unlock_buffer(sbi->s_sbh);
1168 err = ext4_handle_dirty_metadata(handle, NULL,
1171 err2 = ext4_journal_stop(handle);
1175 mnt_drop_write_file(filp);
1179 if (copy_to_user((void __user *) arg,
1180 sbi->s_es->s_encrypt_pw_salt, 16))
1187 case FS_IOC_GET_ENCRYPTION_POLICY:
1188 if (!ext4_has_feature_encrypt(sb))
1190 return fscrypt_ioctl_get_policy(filp, (void __user *)arg);
1192 case FS_IOC_GET_ENCRYPTION_POLICY_EX:
1193 if (!ext4_has_feature_encrypt(sb))
1195 return fscrypt_ioctl_get_policy_ex(filp, (void __user *)arg);
1197 case FS_IOC_ADD_ENCRYPTION_KEY:
1198 if (!ext4_has_feature_encrypt(sb))
1200 return fscrypt_ioctl_add_key(filp, (void __user *)arg);
1202 case FS_IOC_REMOVE_ENCRYPTION_KEY:
1203 if (!ext4_has_feature_encrypt(sb))
1205 return fscrypt_ioctl_remove_key(filp, (void __user *)arg);
1207 case FS_IOC_REMOVE_ENCRYPTION_KEY_ALL_USERS:
1208 if (!ext4_has_feature_encrypt(sb))
1210 return fscrypt_ioctl_remove_key_all_users(filp,
1211 (void __user *)arg);
1212 case FS_IOC_GET_ENCRYPTION_KEY_STATUS:
1213 if (!ext4_has_feature_encrypt(sb))
1215 return fscrypt_ioctl_get_key_status(filp, (void __user *)arg);
1217 case FS_IOC_GET_ENCRYPTION_NONCE:
1218 if (!ext4_has_feature_encrypt(sb))
1220 return fscrypt_ioctl_get_nonce(filp, (void __user *)arg);
1222 case EXT4_IOC_CLEAR_ES_CACHE:
1224 if (!inode_owner_or_capable(mnt_userns, inode))
1226 ext4_clear_inode_es(inode);
1230 case EXT4_IOC_GETSTATE:
1234 if (ext4_test_inode_state(inode, EXT4_STATE_EXT_PRECACHED))
1235 state |= EXT4_STATE_FLAG_EXT_PRECACHED;
1236 if (ext4_test_inode_state(inode, EXT4_STATE_NEW))
1237 state |= EXT4_STATE_FLAG_NEW;
1238 if (ext4_test_inode_state(inode, EXT4_STATE_NEWENTRY))
1239 state |= EXT4_STATE_FLAG_NEWENTRY;
1240 if (ext4_test_inode_state(inode, EXT4_STATE_DA_ALLOC_CLOSE))
1241 state |= EXT4_STATE_FLAG_DA_ALLOC_CLOSE;
1243 return put_user(state, (__u32 __user *) arg);
1246 case EXT4_IOC_GET_ES_CACHE:
1247 return ext4_ioctl_get_es_cache(filp, arg);
1249 case FS_IOC_FSGETXATTR:
1253 ext4_fill_fsxattr(inode, &fa);
1255 if (copy_to_user((struct fsxattr __user *)arg,
1260 case FS_IOC_FSSETXATTR:
1262 struct fsxattr fa, old_fa;
1265 if (copy_from_user(&fa, (struct fsxattr __user *)arg,
1269 /* Make sure caller has proper permission */
1270 if (!inode_owner_or_capable(mnt_userns, inode))
1273 if (fa.fsx_xflags & ~EXT4_SUPPORTED_FS_XFLAGS)
1276 flags = ext4_xflags_to_iflags(fa.fsx_xflags);
1277 if (ext4_mask_flags(inode->i_mode, flags) != flags)
1280 err = mnt_want_write_file(filp);
1285 ext4_fill_fsxattr(inode, &old_fa);
1286 err = vfs_ioc_fssetxattr_check(inode, &old_fa, &fa);
1289 flags = (ei->i_flags & ~EXT4_FL_XFLAG_VISIBLE) |
1290 (flags & EXT4_FL_XFLAG_VISIBLE);
1291 err = ext4_ioctl_check_immutable(inode, fa.fsx_projid, flags);
1294 err = ext4_ioctl_setflags(inode, flags);
1297 err = ext4_ioctl_setproject(filp, fa.fsx_projid);
1299 inode_unlock(inode);
1300 mnt_drop_write_file(filp);
1303 case EXT4_IOC_SHUTDOWN:
1304 return ext4_shutdown(sb, arg);
1306 case FS_IOC_ENABLE_VERITY:
1307 if (!ext4_has_feature_verity(sb))
1309 return fsverity_ioctl_enable(filp, (const void __user *)arg);
1311 case FS_IOC_MEASURE_VERITY:
1312 if (!ext4_has_feature_verity(sb))
1314 return fsverity_ioctl_measure(filp, (void __user *)arg);
1316 case FS_IOC_READ_VERITY_METADATA:
1317 if (!ext4_has_feature_verity(sb))
1319 return fsverity_ioctl_read_metadata(filp,
1320 (const void __user *)arg);
1327 long ext4_ioctl(struct file *filp, unsigned int cmd, unsigned long arg)
1331 ext4_fc_start_update(file_inode(filp));
1332 ret = __ext4_ioctl(filp, cmd, arg);
1333 ext4_fc_stop_update(file_inode(filp));
1338 #ifdef CONFIG_COMPAT
1339 long ext4_compat_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
1341 /* These are just misnamed, they actually get/put from/to user an int */
1343 case FS_IOC32_GETFLAGS:
1344 cmd = FS_IOC_GETFLAGS;
1346 case FS_IOC32_SETFLAGS:
1347 cmd = FS_IOC_SETFLAGS;
1349 case EXT4_IOC32_GETVERSION:
1350 cmd = EXT4_IOC_GETVERSION;
1352 case EXT4_IOC32_SETVERSION:
1353 cmd = EXT4_IOC_SETVERSION;
1355 case EXT4_IOC32_GROUP_EXTEND:
1356 cmd = EXT4_IOC_GROUP_EXTEND;
1358 case EXT4_IOC32_GETVERSION_OLD:
1359 cmd = EXT4_IOC_GETVERSION_OLD;
1361 case EXT4_IOC32_SETVERSION_OLD:
1362 cmd = EXT4_IOC_SETVERSION_OLD;
1364 case EXT4_IOC32_GETRSVSZ:
1365 cmd = EXT4_IOC_GETRSVSZ;
1367 case EXT4_IOC32_SETRSVSZ:
1368 cmd = EXT4_IOC_SETRSVSZ;
1370 case EXT4_IOC32_GROUP_ADD: {
1371 struct compat_ext4_new_group_input __user *uinput;
1372 struct ext4_new_group_data input;
1375 uinput = compat_ptr(arg);
1376 err = get_user(input.group, &uinput->group);
1377 err |= get_user(input.block_bitmap, &uinput->block_bitmap);
1378 err |= get_user(input.inode_bitmap, &uinput->inode_bitmap);
1379 err |= get_user(input.inode_table, &uinput->inode_table);
1380 err |= get_user(input.blocks_count, &uinput->blocks_count);
1381 err |= get_user(input.reserved_blocks,
1382 &uinput->reserved_blocks);
1385 return ext4_ioctl_group_add(file, &input);
1387 case EXT4_IOC_MOVE_EXT:
1388 case EXT4_IOC_RESIZE_FS:
1390 case EXT4_IOC_PRECACHE_EXTENTS:
1391 case FS_IOC_SET_ENCRYPTION_POLICY:
1392 case FS_IOC_GET_ENCRYPTION_PWSALT:
1393 case FS_IOC_GET_ENCRYPTION_POLICY:
1394 case FS_IOC_GET_ENCRYPTION_POLICY_EX:
1395 case FS_IOC_ADD_ENCRYPTION_KEY:
1396 case FS_IOC_REMOVE_ENCRYPTION_KEY:
1397 case FS_IOC_REMOVE_ENCRYPTION_KEY_ALL_USERS:
1398 case FS_IOC_GET_ENCRYPTION_KEY_STATUS:
1399 case FS_IOC_GET_ENCRYPTION_NONCE:
1400 case EXT4_IOC_SHUTDOWN:
1401 case FS_IOC_GETFSMAP:
1402 case FS_IOC_ENABLE_VERITY:
1403 case FS_IOC_MEASURE_VERITY:
1404 case FS_IOC_READ_VERITY_METADATA:
1405 case EXT4_IOC_CLEAR_ES_CACHE:
1406 case EXT4_IOC_GETSTATE:
1407 case EXT4_IOC_GET_ES_CACHE:
1408 case FS_IOC_FSGETXATTR:
1409 case FS_IOC_FSSETXATTR:
1412 return -ENOIOCTLCMD;
1414 return ext4_ioctl(file, cmd, (unsigned long) compat_ptr(arg));