2 * linux/fs/ext4/ioctl.c
4 * Copyright (C) 1993, 1994, 1995
5 * Remy Card (card@masi.ibp.fr)
6 * Laboratoire MASI - Institut Blaise Pascal
7 * Universite Pierre et Marie Curie (Paris VI)
11 #include <linux/capability.h>
12 #include <linux/time.h>
13 #include <linux/compat.h>
14 #include <linux/mount.h>
15 #include <linux/file.h>
16 #include <linux/quotaops.h>
17 #include <linux/uuid.h>
18 #include <linux/uaccess.h>
19 #include "ext4_jbd2.h"
23 * Swap memory between @a and @b for @len bytes.
25 * @a: pointer to first memory area
26 * @b: pointer to second memory area
27 * @len: number of bytes to swap
30 static void memswap(void *a
, void *b
, size_t len
)
32 unsigned char *ap
, *bp
;
34 ap
= (unsigned char *)a
;
35 bp
= (unsigned char *)b
;
44 * Swap i_data and associated attributes between @inode1 and @inode2.
45 * This function is used for the primary swap between inode1 and inode2
46 * and also to revert this primary swap in case of errors.
48 * Therefore you have to make sure, that calling this method twice
49 * will revert all changes.
51 * @inode1: pointer to first inode
52 * @inode2: pointer to second inode
54 static void swap_inode_data(struct inode
*inode1
, struct inode
*inode2
)
57 struct ext4_inode_info
*ei1
;
58 struct ext4_inode_info
*ei2
;
63 memswap(&inode1
->i_flags
, &inode2
->i_flags
, sizeof(inode1
->i_flags
));
64 memswap(&inode1
->i_version
, &inode2
->i_version
,
65 sizeof(inode1
->i_version
));
66 memswap(&inode1
->i_blocks
, &inode2
->i_blocks
,
67 sizeof(inode1
->i_blocks
));
68 memswap(&inode1
->i_bytes
, &inode2
->i_bytes
, sizeof(inode1
->i_bytes
));
69 memswap(&inode1
->i_atime
, &inode2
->i_atime
, sizeof(inode1
->i_atime
));
70 memswap(&inode1
->i_mtime
, &inode2
->i_mtime
, sizeof(inode1
->i_mtime
));
72 memswap(ei1
->i_data
, ei2
->i_data
, sizeof(ei1
->i_data
));
73 memswap(&ei1
->i_flags
, &ei2
->i_flags
, sizeof(ei1
->i_flags
));
74 memswap(&ei1
->i_disksize
, &ei2
->i_disksize
, sizeof(ei1
->i_disksize
));
75 ext4_es_remove_extent(inode1
, 0, EXT_MAX_BLOCKS
);
76 ext4_es_remove_extent(inode2
, 0, EXT_MAX_BLOCKS
);
78 isize
= i_size_read(inode1
);
79 i_size_write(inode1
, i_size_read(inode2
));
80 i_size_write(inode2
, isize
);
84 * Swap the information from the given @inode and the inode
85 * EXT4_BOOT_LOADER_INO. It will basically swap i_data and all other
86 * important fields of the inodes.
88 * @sb: the super block of the filesystem
89 * @inode: the inode to swap with EXT4_BOOT_LOADER_INO
92 static long swap_inode_boot_loader(struct super_block
*sb
,
97 struct inode
*inode_bl
;
98 struct ext4_inode_info
*ei_bl
;
99 struct ext4_sb_info
*sbi
= EXT4_SB(sb
);
101 if (inode
->i_nlink
!= 1 || !S_ISREG(inode
->i_mode
))
104 if (!inode_owner_or_capable(inode
) || !capable(CAP_SYS_ADMIN
))
107 inode_bl
= ext4_iget(sb
, EXT4_BOOT_LOADER_INO
);
108 if (IS_ERR(inode_bl
))
109 return PTR_ERR(inode_bl
);
110 ei_bl
= EXT4_I(inode_bl
);
112 filemap_flush(inode
->i_mapping
);
113 filemap_flush(inode_bl
->i_mapping
);
115 /* Protect orig inodes against a truncate and make sure,
116 * that only 1 swap_inode_boot_loader is running. */
117 lock_two_nondirectories(inode
, inode_bl
);
119 truncate_inode_pages(&inode
->i_data
, 0);
120 truncate_inode_pages(&inode_bl
->i_data
, 0);
122 /* Wait for all existing dio workers */
123 ext4_inode_block_unlocked_dio(inode
);
124 ext4_inode_block_unlocked_dio(inode_bl
);
125 inode_dio_wait(inode
);
126 inode_dio_wait(inode_bl
);
128 handle
= ext4_journal_start(inode_bl
, EXT4_HT_MOVE_EXTENTS
, 2);
129 if (IS_ERR(handle
)) {
131 goto journal_err_out
;
134 /* Protect extent tree against block allocations via delalloc */
135 ext4_double_down_write_data_sem(inode
, inode_bl
);
137 if (inode_bl
->i_nlink
== 0) {
138 /* this inode has never been used as a BOOT_LOADER */
139 set_nlink(inode_bl
, 1);
140 i_uid_write(inode_bl
, 0);
141 i_gid_write(inode_bl
, 0);
142 inode_bl
->i_flags
= 0;
144 inode_bl
->i_version
= 1;
145 i_size_write(inode_bl
, 0);
146 inode_bl
->i_mode
= S_IFREG
;
147 if (ext4_has_feature_extents(sb
)) {
148 ext4_set_inode_flag(inode_bl
, EXT4_INODE_EXTENTS
);
149 ext4_ext_tree_init(handle
, inode_bl
);
151 memset(ei_bl
->i_data
, 0, sizeof(ei_bl
->i_data
));
154 swap_inode_data(inode
, inode_bl
);
156 inode
->i_ctime
= inode_bl
->i_ctime
= current_time(inode
);
158 spin_lock(&sbi
->s_next_gen_lock
);
159 inode
->i_generation
= sbi
->s_next_generation
++;
160 inode_bl
->i_generation
= sbi
->s_next_generation
++;
161 spin_unlock(&sbi
->s_next_gen_lock
);
163 ext4_discard_preallocations(inode
);
165 err
= ext4_mark_inode_dirty(handle
, inode
);
167 ext4_warning(inode
->i_sb
,
168 "couldn't mark inode #%lu dirty (err %d)",
170 /* Revert all changes: */
171 swap_inode_data(inode
, inode_bl
);
173 err
= ext4_mark_inode_dirty(handle
, inode_bl
);
175 ext4_warning(inode_bl
->i_sb
,
176 "couldn't mark inode #%lu dirty (err %d)",
177 inode_bl
->i_ino
, err
);
178 /* Revert all changes: */
179 swap_inode_data(inode
, inode_bl
);
180 ext4_mark_inode_dirty(handle
, inode
);
183 ext4_journal_stop(handle
);
184 ext4_double_up_write_data_sem(inode
, inode_bl
);
187 ext4_inode_resume_unlocked_dio(inode
);
188 ext4_inode_resume_unlocked_dio(inode_bl
);
189 unlock_two_nondirectories(inode
, inode_bl
);
194 #ifdef CONFIG_EXT4_FS_ENCRYPTION
195 static int uuid_is_zero(__u8 u
[16])
199 for (i
= 0; i
< 16; i
++)
206 static int ext4_ioctl_setflags(struct inode
*inode
,
209 struct ext4_inode_info
*ei
= EXT4_I(inode
);
210 handle_t
*handle
= NULL
;
211 int err
= -EPERM
, migrate
= 0;
212 struct ext4_iloc iloc
;
213 unsigned int oldflags
, mask
, i
;
216 /* Is it quota file? Do not allow user to mess with it */
217 if (IS_NOQUOTA(inode
))
220 oldflags
= ei
->i_flags
;
222 /* The JOURNAL_DATA flag is modifiable only by root */
223 jflag
= flags
& EXT4_JOURNAL_DATA_FL
;
226 * The IMMUTABLE and APPEND_ONLY flags can only be changed by
227 * the relevant capability.
229 * This test looks nicer. Thanks to Pauline Middelink
231 if ((flags
^ oldflags
) & (EXT4_APPEND_FL
| EXT4_IMMUTABLE_FL
)) {
232 if (!capable(CAP_LINUX_IMMUTABLE
))
237 * The JOURNAL_DATA flag can only be changed by
238 * the relevant capability.
240 if ((jflag
^ oldflags
) & (EXT4_JOURNAL_DATA_FL
)) {
241 if (!capable(CAP_SYS_RESOURCE
))
244 if ((flags
^ oldflags
) & EXT4_EXTENTS_FL
)
247 if (flags
& EXT4_EOFBLOCKS_FL
) {
248 /* we don't support adding EOFBLOCKS flag */
249 if (!(oldflags
& EXT4_EOFBLOCKS_FL
)) {
253 } else if (oldflags
& EXT4_EOFBLOCKS_FL
) {
254 err
= ext4_truncate(inode
);
259 handle
= ext4_journal_start(inode
, EXT4_HT_INODE
, 1);
260 if (IS_ERR(handle
)) {
261 err
= PTR_ERR(handle
);
265 ext4_handle_sync(handle
);
266 err
= ext4_reserve_inode_write(handle
, inode
, &iloc
);
270 for (i
= 0, mask
= 1; i
< 32; i
++, mask
<<= 1) {
271 if (!(mask
& EXT4_FL_USER_MODIFIABLE
))
273 /* These flags get special treatment later */
274 if (mask
== EXT4_JOURNAL_DATA_FL
|| mask
== EXT4_EXTENTS_FL
)
277 ext4_set_inode_flag(inode
, i
);
279 ext4_clear_inode_flag(inode
, i
);
282 ext4_set_inode_flags(inode
);
283 inode
->i_ctime
= current_time(inode
);
285 err
= ext4_mark_iloc_dirty(handle
, inode
, &iloc
);
287 ext4_journal_stop(handle
);
291 if ((jflag
^ oldflags
) & (EXT4_JOURNAL_DATA_FL
))
292 err
= ext4_change_inode_journal_flag(inode
, jflag
);
296 if (flags
& EXT4_EXTENTS_FL
)
297 err
= ext4_ext_migrate(inode
);
299 err
= ext4_ind_migrate(inode
);
307 static int ext4_ioctl_setproject(struct file
*filp
, __u32 projid
)
309 struct inode
*inode
= file_inode(filp
);
310 struct super_block
*sb
= inode
->i_sb
;
311 struct ext4_inode_info
*ei
= EXT4_I(inode
);
315 struct ext4_iloc iloc
;
316 struct ext4_inode
*raw_inode
;
317 struct dquot
*transfer_to
[MAXQUOTAS
] = { };
319 if (!ext4_has_feature_project(sb
)) {
320 if (projid
!= EXT4_DEF_PROJID
)
326 if (EXT4_INODE_SIZE(sb
) <= EXT4_GOOD_OLD_INODE_SIZE
)
329 kprojid
= make_kprojid(&init_user_ns
, (projid_t
)projid
);
331 if (projid_eq(kprojid
, EXT4_I(inode
)->i_projid
))
334 err
= mnt_want_write_file(filp
);
340 /* Is it quota file? Do not allow user to mess with it */
341 if (IS_NOQUOTA(inode
))
344 err
= ext4_get_inode_loc(inode
, &iloc
);
348 raw_inode
= ext4_raw_inode(&iloc
);
349 if (!EXT4_FITS_IN_INODE(raw_inode
, ei
, i_projid
)) {
356 dquot_initialize(inode
);
358 handle
= ext4_journal_start(inode
, EXT4_HT_QUOTA
,
359 EXT4_QUOTA_INIT_BLOCKS(sb
) +
360 EXT4_QUOTA_DEL_BLOCKS(sb
) + 3);
361 if (IS_ERR(handle
)) {
362 err
= PTR_ERR(handle
);
366 err
= ext4_reserve_inode_write(handle
, inode
, &iloc
);
370 transfer_to
[PRJQUOTA
] = dqget(sb
, make_kqid_projid(kprojid
));
371 if (!IS_ERR(transfer_to
[PRJQUOTA
])) {
372 err
= __dquot_transfer(inode
, transfer_to
);
373 dqput(transfer_to
[PRJQUOTA
]);
378 EXT4_I(inode
)->i_projid
= kprojid
;
379 inode
->i_ctime
= current_time(inode
);
381 rc
= ext4_mark_iloc_dirty(handle
, inode
, &iloc
);
385 ext4_journal_stop(handle
);
388 mnt_drop_write_file(filp
);
392 static int ext4_ioctl_setproject(struct file
*filp
, __u32 projid
)
394 if (projid
!= EXT4_DEF_PROJID
)
400 /* Transfer internal flags to xflags */
401 static inline __u32
ext4_iflags_to_xflags(unsigned long iflags
)
405 if (iflags
& EXT4_SYNC_FL
)
406 xflags
|= FS_XFLAG_SYNC
;
407 if (iflags
& EXT4_IMMUTABLE_FL
)
408 xflags
|= FS_XFLAG_IMMUTABLE
;
409 if (iflags
& EXT4_APPEND_FL
)
410 xflags
|= FS_XFLAG_APPEND
;
411 if (iflags
& EXT4_NODUMP_FL
)
412 xflags
|= FS_XFLAG_NODUMP
;
413 if (iflags
& EXT4_NOATIME_FL
)
414 xflags
|= FS_XFLAG_NOATIME
;
415 if (iflags
& EXT4_PROJINHERIT_FL
)
416 xflags
|= FS_XFLAG_PROJINHERIT
;
420 #define EXT4_SUPPORTED_FS_XFLAGS (FS_XFLAG_SYNC | FS_XFLAG_IMMUTABLE | \
421 FS_XFLAG_APPEND | FS_XFLAG_NODUMP | \
422 FS_XFLAG_NOATIME | FS_XFLAG_PROJINHERIT)
424 /* Transfer xflags flags to internal */
425 static inline unsigned long ext4_xflags_to_iflags(__u32 xflags
)
427 unsigned long iflags
= 0;
429 if (xflags
& FS_XFLAG_SYNC
)
430 iflags
|= EXT4_SYNC_FL
;
431 if (xflags
& FS_XFLAG_IMMUTABLE
)
432 iflags
|= EXT4_IMMUTABLE_FL
;
433 if (xflags
& FS_XFLAG_APPEND
)
434 iflags
|= EXT4_APPEND_FL
;
435 if (xflags
& FS_XFLAG_NODUMP
)
436 iflags
|= EXT4_NODUMP_FL
;
437 if (xflags
& FS_XFLAG_NOATIME
)
438 iflags
|= EXT4_NOATIME_FL
;
439 if (xflags
& FS_XFLAG_PROJINHERIT
)
440 iflags
|= EXT4_PROJINHERIT_FL
;
445 long ext4_ioctl(struct file
*filp
, unsigned int cmd
, unsigned long arg
)
447 struct inode
*inode
= file_inode(filp
);
448 struct super_block
*sb
= inode
->i_sb
;
449 struct ext4_inode_info
*ei
= EXT4_I(inode
);
452 ext4_debug("cmd = %u, arg = %lu\n", cmd
, arg
);
455 case EXT4_IOC_GETFLAGS
:
456 ext4_get_inode_flags(ei
);
457 flags
= ei
->i_flags
& EXT4_FL_USER_VISIBLE
;
458 return put_user(flags
, (int __user
*) arg
);
459 case EXT4_IOC_SETFLAGS
: {
462 if (!inode_owner_or_capable(inode
))
465 if (get_user(flags
, (int __user
*) arg
))
468 if (flags
& ~EXT4_FL_USER_VISIBLE
)
471 * chattr(1) grabs flags via GETFLAGS, modifies the result and
472 * passes that to SETFLAGS. So we cannot easily make SETFLAGS
473 * more restrictive than just silently masking off visible but
474 * not settable flags as we always did.
476 flags
&= EXT4_FL_USER_MODIFIABLE
;
477 if (ext4_mask_flags(inode
->i_mode
, flags
) != flags
)
480 err
= mnt_want_write_file(filp
);
485 err
= ext4_ioctl_setflags(inode
, flags
);
487 mnt_drop_write_file(filp
);
490 case EXT4_IOC_GETVERSION
:
491 case EXT4_IOC_GETVERSION_OLD
:
492 return put_user(inode
->i_generation
, (int __user
*) arg
);
493 case EXT4_IOC_SETVERSION
:
494 case EXT4_IOC_SETVERSION_OLD
: {
496 struct ext4_iloc iloc
;
500 if (!inode_owner_or_capable(inode
))
503 if (ext4_has_metadata_csum(inode
->i_sb
)) {
504 ext4_warning(sb
, "Setting inode version is not "
505 "supported with metadata_csum enabled.");
509 err
= mnt_want_write_file(filp
);
512 if (get_user(generation
, (int __user
*) arg
)) {
518 handle
= ext4_journal_start(inode
, EXT4_HT_INODE
, 1);
519 if (IS_ERR(handle
)) {
520 err
= PTR_ERR(handle
);
523 err
= ext4_reserve_inode_write(handle
, inode
, &iloc
);
525 inode
->i_ctime
= current_time(inode
);
526 inode
->i_generation
= generation
;
527 err
= ext4_mark_iloc_dirty(handle
, inode
, &iloc
);
529 ext4_journal_stop(handle
);
534 mnt_drop_write_file(filp
);
537 case EXT4_IOC_GROUP_EXTEND
: {
538 ext4_fsblk_t n_blocks_count
;
541 err
= ext4_resize_begin(sb
);
545 if (get_user(n_blocks_count
, (__u32 __user
*)arg
)) {
547 goto group_extend_out
;
550 if (ext4_has_feature_bigalloc(sb
)) {
551 ext4_msg(sb
, KERN_ERR
,
552 "Online resizing not supported with bigalloc");
554 goto group_extend_out
;
557 err
= mnt_want_write_file(filp
);
559 goto group_extend_out
;
561 err
= ext4_group_extend(sb
, EXT4_SB(sb
)->s_es
, n_blocks_count
);
562 if (EXT4_SB(sb
)->s_journal
) {
563 jbd2_journal_lock_updates(EXT4_SB(sb
)->s_journal
);
564 err2
= jbd2_journal_flush(EXT4_SB(sb
)->s_journal
);
565 jbd2_journal_unlock_updates(EXT4_SB(sb
)->s_journal
);
569 mnt_drop_write_file(filp
);
575 case EXT4_IOC_MOVE_EXT
: {
576 struct move_extent me
;
580 if (!(filp
->f_mode
& FMODE_READ
) ||
581 !(filp
->f_mode
& FMODE_WRITE
))
584 if (copy_from_user(&me
,
585 (struct move_extent __user
*)arg
, sizeof(me
)))
589 donor
= fdget(me
.donor_fd
);
593 if (!(donor
.file
->f_mode
& FMODE_WRITE
)) {
598 if (ext4_has_feature_bigalloc(sb
)) {
599 ext4_msg(sb
, KERN_ERR
,
600 "Online defrag not supported with bigalloc");
603 } else if (IS_DAX(inode
)) {
604 ext4_msg(sb
, KERN_ERR
,
605 "Online defrag not supported with DAX");
610 err
= mnt_want_write_file(filp
);
614 err
= ext4_move_extents(filp
, donor
.file
, me
.orig_start
,
615 me
.donor_start
, me
.len
, &me
.moved_len
);
616 mnt_drop_write_file(filp
);
618 if (copy_to_user((struct move_extent __user
*)arg
,
626 case EXT4_IOC_GROUP_ADD
: {
627 struct ext4_new_group_data input
;
630 err
= ext4_resize_begin(sb
);
634 if (copy_from_user(&input
, (struct ext4_new_group_input __user
*)arg
,
640 if (ext4_has_feature_bigalloc(sb
)) {
641 ext4_msg(sb
, KERN_ERR
,
642 "Online resizing not supported with bigalloc");
647 err
= mnt_want_write_file(filp
);
651 err
= ext4_group_add(sb
, &input
);
652 if (EXT4_SB(sb
)->s_journal
) {
653 jbd2_journal_lock_updates(EXT4_SB(sb
)->s_journal
);
654 err2
= jbd2_journal_flush(EXT4_SB(sb
)->s_journal
);
655 jbd2_journal_unlock_updates(EXT4_SB(sb
)->s_journal
);
659 mnt_drop_write_file(filp
);
660 if (!err
&& ext4_has_group_desc_csum(sb
) &&
661 test_opt(sb
, INIT_INODE_TABLE
))
662 err
= ext4_register_li_request(sb
, input
.group
);
668 case EXT4_IOC_MIGRATE
:
671 if (!inode_owner_or_capable(inode
))
674 err
= mnt_want_write_file(filp
);
678 * inode_mutex prevent write and truncate on the file.
679 * Read still goes through. We take i_data_sem in
680 * ext4_ext_swap_inode_data before we switch the
681 * inode format to prevent read.
684 err
= ext4_ext_migrate(inode
);
685 inode_unlock((inode
));
686 mnt_drop_write_file(filp
);
690 case EXT4_IOC_ALLOC_DA_BLKS
:
693 if (!inode_owner_or_capable(inode
))
696 err
= mnt_want_write_file(filp
);
699 err
= ext4_alloc_da_blocks(inode
);
700 mnt_drop_write_file(filp
);
704 case EXT4_IOC_SWAP_BOOT
:
707 if (!(filp
->f_mode
& FMODE_WRITE
))
709 err
= mnt_want_write_file(filp
);
712 err
= swap_inode_boot_loader(sb
, inode
);
713 mnt_drop_write_file(filp
);
717 case EXT4_IOC_RESIZE_FS
: {
718 ext4_fsblk_t n_blocks_count
;
719 int err
= 0, err2
= 0;
720 ext4_group_t o_group
= EXT4_SB(sb
)->s_groups_count
;
722 if (ext4_has_feature_bigalloc(sb
)) {
723 ext4_msg(sb
, KERN_ERR
,
724 "Online resizing not (yet) supported with bigalloc");
728 if (copy_from_user(&n_blocks_count
, (__u64 __user
*)arg
,
733 err
= ext4_resize_begin(sb
);
737 err
= mnt_want_write_file(filp
);
741 err
= ext4_resize_fs(sb
, n_blocks_count
);
742 if (EXT4_SB(sb
)->s_journal
) {
743 jbd2_journal_lock_updates(EXT4_SB(sb
)->s_journal
);
744 err2
= jbd2_journal_flush(EXT4_SB(sb
)->s_journal
);
745 jbd2_journal_unlock_updates(EXT4_SB(sb
)->s_journal
);
749 mnt_drop_write_file(filp
);
750 if (!err
&& (o_group
> EXT4_SB(sb
)->s_groups_count
) &&
751 ext4_has_group_desc_csum(sb
) &&
752 test_opt(sb
, INIT_INODE_TABLE
))
753 err
= ext4_register_li_request(sb
, o_group
);
762 struct request_queue
*q
= bdev_get_queue(sb
->s_bdev
);
763 struct fstrim_range range
;
766 if (!capable(CAP_SYS_ADMIN
))
769 if (!blk_queue_discard(q
))
772 if (copy_from_user(&range
, (struct fstrim_range __user
*)arg
,
776 range
.minlen
= max((unsigned int)range
.minlen
,
777 q
->limits
.discard_granularity
);
778 ret
= ext4_trim_fs(sb
, &range
);
782 if (copy_to_user((struct fstrim_range __user
*)arg
, &range
,
788 case EXT4_IOC_PRECACHE_EXTENTS
:
789 return ext4_ext_precache(inode
);
791 case EXT4_IOC_SET_ENCRYPTION_POLICY
:
792 if (!ext4_has_feature_encrypt(sb
))
794 return fscrypt_ioctl_set_policy(filp
, (const void __user
*)arg
);
796 case EXT4_IOC_GET_ENCRYPTION_PWSALT
: {
797 #ifdef CONFIG_EXT4_FS_ENCRYPTION
799 struct ext4_sb_info
*sbi
= EXT4_SB(sb
);
802 if (!ext4_has_feature_encrypt(sb
))
804 if (uuid_is_zero(sbi
->s_es
->s_encrypt_pw_salt
)) {
805 err
= mnt_want_write_file(filp
);
808 handle
= ext4_journal_start_sb(sb
, EXT4_HT_MISC
, 1);
809 if (IS_ERR(handle
)) {
810 err
= PTR_ERR(handle
);
811 goto pwsalt_err_exit
;
813 err
= ext4_journal_get_write_access(handle
, sbi
->s_sbh
);
815 goto pwsalt_err_journal
;
816 generate_random_uuid(sbi
->s_es
->s_encrypt_pw_salt
);
817 err
= ext4_handle_dirty_metadata(handle
, NULL
,
820 err2
= ext4_journal_stop(handle
);
824 mnt_drop_write_file(filp
);
828 if (copy_to_user((void __user
*) arg
,
829 sbi
->s_es
->s_encrypt_pw_salt
, 16))
836 case EXT4_IOC_GET_ENCRYPTION_POLICY
:
837 return fscrypt_ioctl_get_policy(filp
, (void __user
*)arg
);
839 case EXT4_IOC_FSGETXATTR
:
843 memset(&fa
, 0, sizeof(struct fsxattr
));
844 ext4_get_inode_flags(ei
);
845 fa
.fsx_xflags
= ext4_iflags_to_xflags(ei
->i_flags
& EXT4_FL_USER_VISIBLE
);
847 if (ext4_has_feature_project(inode
->i_sb
)) {
848 fa
.fsx_projid
= (__u32
)from_kprojid(&init_user_ns
,
849 EXT4_I(inode
)->i_projid
);
852 if (copy_to_user((struct fsxattr __user
*)arg
,
857 case EXT4_IOC_FSSETXATTR
:
862 if (copy_from_user(&fa
, (struct fsxattr __user
*)arg
,
866 /* Make sure caller has proper permission */
867 if (!inode_owner_or_capable(inode
))
870 if (fa
.fsx_xflags
& ~EXT4_SUPPORTED_FS_XFLAGS
)
873 flags
= ext4_xflags_to_iflags(fa
.fsx_xflags
);
874 if (ext4_mask_flags(inode
->i_mode
, flags
) != flags
)
877 err
= mnt_want_write_file(filp
);
882 flags
= (ei
->i_flags
& ~EXT4_FL_XFLAG_VISIBLE
) |
883 (flags
& EXT4_FL_XFLAG_VISIBLE
);
884 err
= ext4_ioctl_setflags(inode
, flags
);
886 mnt_drop_write_file(filp
);
890 err
= ext4_ioctl_setproject(filp
, fa
.fsx_projid
);
902 long ext4_compat_ioctl(struct file
*file
, unsigned int cmd
, unsigned long arg
)
904 /* These are just misnamed, they actually get/put from/to user an int */
906 case EXT4_IOC32_GETFLAGS
:
907 cmd
= EXT4_IOC_GETFLAGS
;
909 case EXT4_IOC32_SETFLAGS
:
910 cmd
= EXT4_IOC_SETFLAGS
;
912 case EXT4_IOC32_GETVERSION
:
913 cmd
= EXT4_IOC_GETVERSION
;
915 case EXT4_IOC32_SETVERSION
:
916 cmd
= EXT4_IOC_SETVERSION
;
918 case EXT4_IOC32_GROUP_EXTEND
:
919 cmd
= EXT4_IOC_GROUP_EXTEND
;
921 case EXT4_IOC32_GETVERSION_OLD
:
922 cmd
= EXT4_IOC_GETVERSION_OLD
;
924 case EXT4_IOC32_SETVERSION_OLD
:
925 cmd
= EXT4_IOC_SETVERSION_OLD
;
927 case EXT4_IOC32_GETRSVSZ
:
928 cmd
= EXT4_IOC_GETRSVSZ
;
930 case EXT4_IOC32_SETRSVSZ
:
931 cmd
= EXT4_IOC_SETRSVSZ
;
933 case EXT4_IOC32_GROUP_ADD
: {
934 struct compat_ext4_new_group_input __user
*uinput
;
935 struct ext4_new_group_input input
;
939 uinput
= compat_ptr(arg
);
940 err
= get_user(input
.group
, &uinput
->group
);
941 err
|= get_user(input
.block_bitmap
, &uinput
->block_bitmap
);
942 err
|= get_user(input
.inode_bitmap
, &uinput
->inode_bitmap
);
943 err
|= get_user(input
.inode_table
, &uinput
->inode_table
);
944 err
|= get_user(input
.blocks_count
, &uinput
->blocks_count
);
945 err
|= get_user(input
.reserved_blocks
,
946 &uinput
->reserved_blocks
);
951 err
= ext4_ioctl(file
, EXT4_IOC_GROUP_ADD
,
952 (unsigned long) &input
);
956 case EXT4_IOC_MOVE_EXT
:
957 case EXT4_IOC_RESIZE_FS
:
958 case EXT4_IOC_PRECACHE_EXTENTS
:
959 case EXT4_IOC_SET_ENCRYPTION_POLICY
:
960 case EXT4_IOC_GET_ENCRYPTION_PWSALT
:
961 case EXT4_IOC_GET_ENCRYPTION_POLICY
:
966 return ext4_ioctl(file
, cmd
, (unsigned long) compat_ptr(arg
));