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;
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 = fdget(me.donor_fd);
252 if (!(donor.file->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");
265 err = mnt_want_write_file(filp);
269 err = ext4_move_extents(filp, donor.file, me.orig_start,
270 me.donor_start, me.len, &me.moved_len);
271 mnt_drop_write_file(filp);
273 if (copy_to_user((struct move_extent __user *)arg,
281 case EXT4_IOC_GROUP_ADD: {
282 struct ext4_new_group_data input;
285 err = ext4_resize_begin(sb);
289 if (copy_from_user(&input, (struct ext4_new_group_input __user *)arg,
295 if (EXT4_HAS_RO_COMPAT_FEATURE(sb,
296 EXT4_FEATURE_RO_COMPAT_BIGALLOC)) {
297 ext4_msg(sb, KERN_ERR,
298 "Online resizing not supported with bigalloc");
303 err = mnt_want_write_file(filp);
307 err = ext4_group_add(sb, &input);
308 if (EXT4_SB(sb)->s_journal) {
309 jbd2_journal_lock_updates(EXT4_SB(sb)->s_journal);
310 err2 = jbd2_journal_flush(EXT4_SB(sb)->s_journal);
311 jbd2_journal_unlock_updates(EXT4_SB(sb)->s_journal);
315 mnt_drop_write_file(filp);
321 case EXT4_IOC_MIGRATE:
324 if (!inode_owner_or_capable(inode))
327 err = mnt_want_write_file(filp);
331 * inode_mutex prevent write and truncate on the file.
332 * Read still goes through. We take i_data_sem in
333 * ext4_ext_swap_inode_data before we switch the
334 * inode format to prevent read.
336 mutex_lock(&(inode->i_mutex));
337 err = ext4_ext_migrate(inode);
338 mutex_unlock(&(inode->i_mutex));
339 mnt_drop_write_file(filp);
343 case EXT4_IOC_ALLOC_DA_BLKS:
346 if (!inode_owner_or_capable(inode))
349 err = mnt_want_write_file(filp);
352 err = ext4_alloc_da_blocks(inode);
353 mnt_drop_write_file(filp);
357 case EXT4_IOC_RESIZE_FS: {
358 ext4_fsblk_t n_blocks_count;
359 struct super_block *sb = inode->i_sb;
360 int err = 0, err2 = 0;
362 if (EXT4_HAS_RO_COMPAT_FEATURE(sb,
363 EXT4_FEATURE_RO_COMPAT_BIGALLOC)) {
364 ext4_msg(sb, KERN_ERR,
365 "Online resizing not (yet) supported with bigalloc");
369 if (copy_from_user(&n_blocks_count, (__u64 __user *)arg,
374 err = ext4_resize_begin(sb);
378 err = mnt_want_write_file(filp);
382 err = ext4_resize_fs(sb, n_blocks_count);
383 if (EXT4_SB(sb)->s_journal) {
384 jbd2_journal_lock_updates(EXT4_SB(sb)->s_journal);
385 err2 = jbd2_journal_flush(EXT4_SB(sb)->s_journal);
386 jbd2_journal_unlock_updates(EXT4_SB(sb)->s_journal);
390 mnt_drop_write_file(filp);
398 struct request_queue *q = bdev_get_queue(sb->s_bdev);
399 struct fstrim_range range;
402 if (!capable(CAP_SYS_ADMIN))
405 if (!blk_queue_discard(q))
408 if (copy_from_user(&range, (struct fstrim_range __user *)arg,
412 range.minlen = max((unsigned int)range.minlen,
413 q->limits.discard_granularity);
414 ret = ext4_trim_fs(sb, &range);
418 if (copy_to_user((struct fstrim_range __user *)arg, &range,
431 long ext4_compat_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
433 /* These are just misnamed, they actually get/put from/to user an int */
435 case EXT4_IOC32_GETFLAGS:
436 cmd = EXT4_IOC_GETFLAGS;
438 case EXT4_IOC32_SETFLAGS:
439 cmd = EXT4_IOC_SETFLAGS;
441 case EXT4_IOC32_GETVERSION:
442 cmd = EXT4_IOC_GETVERSION;
444 case EXT4_IOC32_SETVERSION:
445 cmd = EXT4_IOC_SETVERSION;
447 case EXT4_IOC32_GROUP_EXTEND:
448 cmd = EXT4_IOC_GROUP_EXTEND;
450 case EXT4_IOC32_GETVERSION_OLD:
451 cmd = EXT4_IOC_GETVERSION_OLD;
453 case EXT4_IOC32_SETVERSION_OLD:
454 cmd = EXT4_IOC_SETVERSION_OLD;
456 case EXT4_IOC32_GETRSVSZ:
457 cmd = EXT4_IOC_GETRSVSZ;
459 case EXT4_IOC32_SETRSVSZ:
460 cmd = EXT4_IOC_SETRSVSZ;
462 case EXT4_IOC32_GROUP_ADD: {
463 struct compat_ext4_new_group_input __user *uinput;
464 struct ext4_new_group_input input;
468 uinput = compat_ptr(arg);
469 err = get_user(input.group, &uinput->group);
470 err |= get_user(input.block_bitmap, &uinput->block_bitmap);
471 err |= get_user(input.inode_bitmap, &uinput->inode_bitmap);
472 err |= get_user(input.inode_table, &uinput->inode_table);
473 err |= get_user(input.blocks_count, &uinput->blocks_count);
474 err |= get_user(input.reserved_blocks,
475 &uinput->reserved_blocks);
480 err = ext4_ioctl(file, EXT4_IOC_GROUP_ADD,
481 (unsigned long) &input);
485 case EXT4_IOC_MOVE_EXT:
487 case EXT4_IOC_RESIZE_FS:
492 return ext4_ioctl(file, cmd, (unsigned long) compat_ptr(arg));