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/jbd2.h>
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 <asm/uaccess.h>
18 #include "ext4_jbd2.h"
21 #define MAX_32_NUM ((((unsigned long long) 1) << 32) - 1)
23 long ext4_ioctl(struct file
*filp
, unsigned int cmd
, unsigned long arg
)
25 struct inode
*inode
= filp
->f_dentry
->d_inode
;
26 struct super_block
*sb
= inode
->i_sb
;
27 struct ext4_inode_info
*ei
= EXT4_I(inode
);
30 ext4_debug("cmd = %u, arg = %lu\n", cmd
, arg
);
33 case EXT4_IOC_GETFLAGS
:
34 ext4_get_inode_flags(ei
);
35 flags
= ei
->i_flags
& EXT4_FL_USER_VISIBLE
;
36 return put_user(flags
, (int __user
*) arg
);
37 case EXT4_IOC_SETFLAGS
: {
38 handle_t
*handle
= NULL
;
40 struct ext4_iloc iloc
;
41 unsigned int oldflags
, mask
, i
;
44 if (!inode_owner_or_capable(inode
))
47 if (get_user(flags
, (int __user
*) arg
))
50 err
= mnt_want_write_file(filp
);
54 flags
= ext4_mask_flags(inode
->i_mode
, flags
);
57 mutex_lock(&inode
->i_mutex
);
58 /* Is it quota file? Do not allow user to mess with it */
59 if (IS_NOQUOTA(inode
))
62 oldflags
= ei
->i_flags
;
64 /* The JOURNAL_DATA flag is modifiable only by root */
65 jflag
= flags
& EXT4_JOURNAL_DATA_FL
;
68 * The IMMUTABLE and APPEND_ONLY flags can only be changed by
69 * the relevant capability.
71 * This test looks nicer. Thanks to Pauline Middelink
73 if ((flags
^ oldflags
) & (EXT4_APPEND_FL
| EXT4_IMMUTABLE_FL
)) {
74 if (!capable(CAP_LINUX_IMMUTABLE
))
79 * The JOURNAL_DATA flag can only be changed by
80 * the relevant capability.
82 if ((jflag
^ oldflags
) & (EXT4_JOURNAL_DATA_FL
)) {
83 if (!capable(CAP_SYS_RESOURCE
))
86 if (oldflags
& EXT4_EXTENTS_FL
) {
87 /* We don't support clearning extent flags */
88 if (!(flags
& EXT4_EXTENTS_FL
)) {
92 } else if (flags
& EXT4_EXTENTS_FL
) {
93 /* migrate the file */
95 flags
&= ~EXT4_EXTENTS_FL
;
98 if (flags
& EXT4_EOFBLOCKS_FL
) {
99 /* we don't support adding EOFBLOCKS flag */
100 if (!(oldflags
& EXT4_EOFBLOCKS_FL
)) {
104 } else if (oldflags
& EXT4_EOFBLOCKS_FL
)
105 ext4_truncate(inode
);
107 handle
= ext4_journal_start(inode
, 1);
108 if (IS_ERR(handle
)) {
109 err
= PTR_ERR(handle
);
113 ext4_handle_sync(handle
);
114 err
= ext4_reserve_inode_write(handle
, inode
, &iloc
);
118 for (i
= 0, mask
= 1; i
< 32; i
++, mask
<<= 1) {
119 if (!(mask
& EXT4_FL_USER_MODIFIABLE
))
122 ext4_set_inode_flag(inode
, i
);
124 ext4_clear_inode_flag(inode
, i
);
127 ext4_set_inode_flags(inode
);
128 inode
->i_ctime
= ext4_current_time(inode
);
130 err
= ext4_mark_iloc_dirty(handle
, inode
, &iloc
);
132 ext4_journal_stop(handle
);
136 if ((jflag
^ oldflags
) & (EXT4_JOURNAL_DATA_FL
))
137 err
= ext4_change_inode_journal_flag(inode
, jflag
);
141 err
= ext4_ext_migrate(inode
);
143 mutex_unlock(&inode
->i_mutex
);
144 mnt_drop_write_file(filp
);
147 case EXT4_IOC_GETVERSION
:
148 case EXT4_IOC_GETVERSION_OLD
:
149 return put_user(inode
->i_generation
, (int __user
*) arg
);
150 case EXT4_IOC_SETVERSION
:
151 case EXT4_IOC_SETVERSION_OLD
: {
153 struct ext4_iloc iloc
;
157 if (!inode_owner_or_capable(inode
))
160 if (EXT4_HAS_RO_COMPAT_FEATURE(inode
->i_sb
,
161 EXT4_FEATURE_RO_COMPAT_METADATA_CSUM
)) {
162 ext4_warning(sb
, "Setting inode version is not "
163 "supported with metadata_csum enabled.");
167 err
= mnt_want_write_file(filp
);
170 if (get_user(generation
, (int __user
*) arg
)) {
175 mutex_lock(&inode
->i_mutex
);
176 handle
= ext4_journal_start(inode
, 1);
177 if (IS_ERR(handle
)) {
178 err
= PTR_ERR(handle
);
181 err
= ext4_reserve_inode_write(handle
, inode
, &iloc
);
183 inode
->i_ctime
= ext4_current_time(inode
);
184 inode
->i_generation
= generation
;
185 err
= ext4_mark_iloc_dirty(handle
, inode
, &iloc
);
187 ext4_journal_stop(handle
);
190 mutex_unlock(&inode
->i_mutex
);
192 mnt_drop_write_file(filp
);
195 case EXT4_IOC_GROUP_EXTEND
: {
196 ext4_fsblk_t n_blocks_count
;
199 err
= ext4_resize_begin(sb
);
203 if (get_user(n_blocks_count
, (__u32 __user
*)arg
)) {
205 goto group_extend_out
;
208 if (EXT4_HAS_RO_COMPAT_FEATURE(sb
,
209 EXT4_FEATURE_RO_COMPAT_BIGALLOC
)) {
210 ext4_msg(sb
, KERN_ERR
,
211 "Online resizing not supported with bigalloc");
213 goto group_extend_out
;
216 err
= mnt_want_write_file(filp
);
218 goto group_extend_out
;
220 err
= ext4_group_extend(sb
, EXT4_SB(sb
)->s_es
, n_blocks_count
);
221 if (EXT4_SB(sb
)->s_journal
) {
222 jbd2_journal_lock_updates(EXT4_SB(sb
)->s_journal
);
223 err2
= jbd2_journal_flush(EXT4_SB(sb
)->s_journal
);
224 jbd2_journal_unlock_updates(EXT4_SB(sb
)->s_journal
);
228 mnt_drop_write_file(filp
);
234 case EXT4_IOC_MOVE_EXT
: {
235 struct move_extent me
;
236 struct file
*donor_filp
;
239 if (!(filp
->f_mode
& FMODE_READ
) ||
240 !(filp
->f_mode
& FMODE_WRITE
))
243 if (copy_from_user(&me
,
244 (struct move_extent __user
*)arg
, sizeof(me
)))
248 donor_filp
= fget(me
.donor_fd
);
252 if (!(donor_filp
->f_mode
& FMODE_WRITE
)) {
257 if (EXT4_HAS_RO_COMPAT_FEATURE(sb
,
258 EXT4_FEATURE_RO_COMPAT_BIGALLOC
)) {
259 ext4_msg(sb
, KERN_ERR
,
260 "Online defrag not supported with bigalloc");
264 err
= mnt_want_write_file(filp
);
268 err
= ext4_move_extents(filp
, donor_filp
, me
.orig_start
,
269 me
.donor_start
, me
.len
, &me
.moved_len
);
270 mnt_drop_write_file(filp
);
272 if (copy_to_user((struct move_extent __user
*)arg
,
280 case EXT4_IOC_GROUP_ADD
: {
281 struct ext4_new_group_data input
;
284 err
= ext4_resize_begin(sb
);
288 if (copy_from_user(&input
, (struct ext4_new_group_input __user
*)arg
,
294 if (EXT4_HAS_RO_COMPAT_FEATURE(sb
,
295 EXT4_FEATURE_RO_COMPAT_BIGALLOC
)) {
296 ext4_msg(sb
, KERN_ERR
,
297 "Online resizing not supported with bigalloc");
302 err
= mnt_want_write_file(filp
);
306 err
= ext4_group_add(sb
, &input
);
307 if (EXT4_SB(sb
)->s_journal
) {
308 jbd2_journal_lock_updates(EXT4_SB(sb
)->s_journal
);
309 err2
= jbd2_journal_flush(EXT4_SB(sb
)->s_journal
);
310 jbd2_journal_unlock_updates(EXT4_SB(sb
)->s_journal
);
314 mnt_drop_write_file(filp
);
320 case EXT4_IOC_MIGRATE
:
323 if (!inode_owner_or_capable(inode
))
326 err
= mnt_want_write_file(filp
);
330 * inode_mutex prevent write and truncate on the file.
331 * Read still goes through. We take i_data_sem in
332 * ext4_ext_swap_inode_data before we switch the
333 * inode format to prevent read.
335 mutex_lock(&(inode
->i_mutex
));
336 err
= ext4_ext_migrate(inode
);
337 mutex_unlock(&(inode
->i_mutex
));
338 mnt_drop_write_file(filp
);
342 case EXT4_IOC_ALLOC_DA_BLKS
:
345 if (!inode_owner_or_capable(inode
))
348 err
= mnt_want_write_file(filp
);
351 err
= ext4_alloc_da_blocks(inode
);
352 mnt_drop_write_file(filp
);
356 case EXT4_IOC_RESIZE_FS
: {
357 ext4_fsblk_t n_blocks_count
;
358 struct super_block
*sb
= inode
->i_sb
;
359 int err
= 0, err2
= 0;
361 if (EXT4_HAS_RO_COMPAT_FEATURE(sb
,
362 EXT4_FEATURE_RO_COMPAT_BIGALLOC
)) {
363 ext4_msg(sb
, KERN_ERR
,
364 "Online resizing not (yet) supported with bigalloc");
368 if (EXT4_HAS_INCOMPAT_FEATURE(sb
,
369 EXT4_FEATURE_INCOMPAT_META_BG
)) {
370 ext4_msg(sb
, KERN_ERR
,
371 "Online resizing not (yet) supported with meta_bg");
375 if (copy_from_user(&n_blocks_count
, (__u64 __user
*)arg
,
380 if (n_blocks_count
> MAX_32_NUM
&&
381 !EXT4_HAS_INCOMPAT_FEATURE(sb
,
382 EXT4_FEATURE_INCOMPAT_64BIT
)) {
383 ext4_msg(sb
, KERN_ERR
,
384 "File system only supports 32-bit block numbers");
388 err
= ext4_resize_begin(sb
);
392 err
= mnt_want_write_file(filp
);
396 err
= ext4_resize_fs(sb
, n_blocks_count
);
397 if (EXT4_SB(sb
)->s_journal
) {
398 jbd2_journal_lock_updates(EXT4_SB(sb
)->s_journal
);
399 err2
= jbd2_journal_flush(EXT4_SB(sb
)->s_journal
);
400 jbd2_journal_unlock_updates(EXT4_SB(sb
)->s_journal
);
404 mnt_drop_write_file(filp
);
412 struct request_queue
*q
= bdev_get_queue(sb
->s_bdev
);
413 struct fstrim_range range
;
416 if (!capable(CAP_SYS_ADMIN
))
419 if (!blk_queue_discard(q
))
422 if (EXT4_HAS_RO_COMPAT_FEATURE(sb
,
423 EXT4_FEATURE_RO_COMPAT_BIGALLOC
)) {
424 ext4_msg(sb
, KERN_ERR
,
425 "FITRIM not supported with bigalloc");
429 if (copy_from_user(&range
, (struct fstrim_range __user
*)arg
,
433 range
.minlen
= max((unsigned int)range
.minlen
,
434 q
->limits
.discard_granularity
);
435 ret
= ext4_trim_fs(sb
, &range
);
439 if (copy_to_user((struct fstrim_range __user
*)arg
, &range
,
452 long ext4_compat_ioctl(struct file
*file
, unsigned int cmd
, unsigned long arg
)
454 /* These are just misnamed, they actually get/put from/to user an int */
456 case EXT4_IOC32_GETFLAGS
:
457 cmd
= EXT4_IOC_GETFLAGS
;
459 case EXT4_IOC32_SETFLAGS
:
460 cmd
= EXT4_IOC_SETFLAGS
;
462 case EXT4_IOC32_GETVERSION
:
463 cmd
= EXT4_IOC_GETVERSION
;
465 case EXT4_IOC32_SETVERSION
:
466 cmd
= EXT4_IOC_SETVERSION
;
468 case EXT4_IOC32_GROUP_EXTEND
:
469 cmd
= EXT4_IOC_GROUP_EXTEND
;
471 case EXT4_IOC32_GETVERSION_OLD
:
472 cmd
= EXT4_IOC_GETVERSION_OLD
;
474 case EXT4_IOC32_SETVERSION_OLD
:
475 cmd
= EXT4_IOC_SETVERSION_OLD
;
477 case EXT4_IOC32_GETRSVSZ
:
478 cmd
= EXT4_IOC_GETRSVSZ
;
480 case EXT4_IOC32_SETRSVSZ
:
481 cmd
= EXT4_IOC_SETRSVSZ
;
483 case EXT4_IOC32_GROUP_ADD
: {
484 struct compat_ext4_new_group_input __user
*uinput
;
485 struct ext4_new_group_input input
;
489 uinput
= compat_ptr(arg
);
490 err
= get_user(input
.group
, &uinput
->group
);
491 err
|= get_user(input
.block_bitmap
, &uinput
->block_bitmap
);
492 err
|= get_user(input
.inode_bitmap
, &uinput
->inode_bitmap
);
493 err
|= get_user(input
.inode_table
, &uinput
->inode_table
);
494 err
|= get_user(input
.blocks_count
, &uinput
->blocks_count
);
495 err
|= get_user(input
.reserved_blocks
,
496 &uinput
->reserved_blocks
);
501 err
= ext4_ioctl(file
, EXT4_IOC_GROUP_ADD
,
502 (unsigned long) &input
);
506 case EXT4_IOC_MOVE_EXT
:
508 case EXT4_IOC_RESIZE_FS
:
513 return ext4_ioctl(file
, cmd
, (unsigned long) compat_ptr(arg
));