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/smp_lock.h>
16 #include <linux/mount.h>
17 #include <asm/uaccess.h>
18 #include "ext4_jbd2.h"
21 long ext4_ioctl(struct file *filp, unsigned int cmd, unsigned long arg)
23 struct inode *inode = filp->f_dentry->d_inode;
24 struct ext4_inode_info *ei = EXT4_I(inode);
27 ext4_debug("cmd = %u, arg = %lu\n", cmd, arg);
30 case EXT4_IOC_GETFLAGS:
31 ext4_get_inode_flags(ei);
32 flags = ei->i_flags & EXT4_FL_USER_VISIBLE;
33 return put_user(flags, (int __user *) arg);
34 case EXT4_IOC_SETFLAGS: {
35 handle_t *handle = NULL;
37 struct ext4_iloc iloc;
38 unsigned int oldflags;
41 if (!is_owner_or_cap(inode))
44 if (get_user(flags, (int __user *) arg))
47 err = mnt_want_write(filp->f_path.mnt);
51 flags = ext4_mask_flags(inode->i_mode, flags);
54 mutex_lock(&inode->i_mutex);
55 /* Is it quota file? Do not allow user to mess with it */
56 if (IS_NOQUOTA(inode))
59 oldflags = ei->i_flags;
61 /* The JOURNAL_DATA flag is modifiable only by root */
62 jflag = flags & EXT4_JOURNAL_DATA_FL;
65 * The IMMUTABLE and APPEND_ONLY flags can only be changed by
66 * the relevant capability.
68 * This test looks nicer. Thanks to Pauline Middelink
70 if ((flags ^ oldflags) & (EXT4_APPEND_FL | EXT4_IMMUTABLE_FL)) {
71 if (!capable(CAP_LINUX_IMMUTABLE))
76 * The JOURNAL_DATA flag can only be changed by
77 * the relevant capability.
79 if ((jflag ^ oldflags) & (EXT4_JOURNAL_DATA_FL)) {
80 if (!capable(CAP_SYS_RESOURCE))
83 if (oldflags & EXT4_EXTENTS_FL) {
84 /* We don't support clearning extent flags */
85 if (!(flags & EXT4_EXTENTS_FL)) {
89 } else if (flags & EXT4_EXTENTS_FL) {
90 /* migrate the file */
92 flags &= ~EXT4_EXTENTS_FL;
95 handle = ext4_journal_start(inode, 1);
97 err = PTR_ERR(handle);
101 ext4_handle_sync(handle);
102 err = ext4_reserve_inode_write(handle, inode, &iloc);
106 flags = flags & EXT4_FL_USER_MODIFIABLE;
107 flags |= oldflags & ~EXT4_FL_USER_MODIFIABLE;
110 ext4_set_inode_flags(inode);
111 inode->i_ctime = ext4_current_time(inode);
113 err = ext4_mark_iloc_dirty(handle, inode, &iloc);
115 ext4_journal_stop(handle);
119 if ((jflag ^ oldflags) & (EXT4_JOURNAL_DATA_FL))
120 err = ext4_change_inode_journal_flag(inode, jflag);
124 err = ext4_ext_migrate(inode);
126 mutex_unlock(&inode->i_mutex);
127 mnt_drop_write(filp->f_path.mnt);
130 case EXT4_IOC_GETVERSION:
131 case EXT4_IOC_GETVERSION_OLD:
132 return put_user(inode->i_generation, (int __user *) arg);
133 case EXT4_IOC_SETVERSION:
134 case EXT4_IOC_SETVERSION_OLD: {
136 struct ext4_iloc iloc;
140 if (!is_owner_or_cap(inode))
143 err = mnt_want_write(filp->f_path.mnt);
146 if (get_user(generation, (int __user *) arg)) {
151 handle = ext4_journal_start(inode, 1);
152 if (IS_ERR(handle)) {
153 err = PTR_ERR(handle);
156 err = ext4_reserve_inode_write(handle, inode, &iloc);
158 inode->i_ctime = ext4_current_time(inode);
159 inode->i_generation = generation;
160 err = ext4_mark_iloc_dirty(handle, inode, &iloc);
162 ext4_journal_stop(handle);
164 mnt_drop_write(filp->f_path.mnt);
167 #ifdef CONFIG_JBD2_DEBUG
168 case EXT4_IOC_WAIT_FOR_READONLY:
170 * This is racy - by the time we're woken up and running,
171 * the superblock could be released. And the module could
172 * have been unloaded. So sue me.
174 * Returns 1 if it slept, else zero.
177 struct super_block *sb = inode->i_sb;
178 DECLARE_WAITQUEUE(wait, current);
181 set_current_state(TASK_INTERRUPTIBLE);
182 add_wait_queue(&EXT4_SB(sb)->ro_wait_queue, &wait);
183 if (timer_pending(&EXT4_SB(sb)->turn_ro_timer)) {
187 remove_wait_queue(&EXT4_SB(sb)->ro_wait_queue, &wait);
191 case EXT4_IOC_GROUP_EXTEND: {
192 ext4_fsblk_t n_blocks_count;
193 struct super_block *sb = inode->i_sb;
196 if (!capable(CAP_SYS_RESOURCE))
199 if (get_user(n_blocks_count, (__u32 __user *)arg))
202 err = mnt_want_write(filp->f_path.mnt);
206 err = ext4_group_extend(sb, EXT4_SB(sb)->s_es, n_blocks_count);
207 jbd2_journal_lock_updates(EXT4_SB(sb)->s_journal);
208 err2 = jbd2_journal_flush(EXT4_SB(sb)->s_journal);
209 jbd2_journal_unlock_updates(EXT4_SB(sb)->s_journal);
212 mnt_drop_write(filp->f_path.mnt);
216 case EXT4_IOC_GROUP_ADD: {
217 struct ext4_new_group_data input;
218 struct super_block *sb = inode->i_sb;
221 if (!capable(CAP_SYS_RESOURCE))
224 if (copy_from_user(&input, (struct ext4_new_group_input __user *)arg,
228 err = mnt_want_write(filp->f_path.mnt);
232 err = ext4_group_add(sb, &input);
233 jbd2_journal_lock_updates(EXT4_SB(sb)->s_journal);
234 err2 = jbd2_journal_flush(EXT4_SB(sb)->s_journal);
235 jbd2_journal_unlock_updates(EXT4_SB(sb)->s_journal);
238 mnt_drop_write(filp->f_path.mnt);
243 case EXT4_IOC_MIGRATE:
246 if (!is_owner_or_cap(inode))
249 err = mnt_want_write(filp->f_path.mnt);
253 * inode_mutex prevent write and truncate on the file.
254 * Read still goes through. We take i_data_sem in
255 * ext4_ext_swap_inode_data before we switch the
256 * inode format to prevent read.
258 mutex_lock(&(inode->i_mutex));
259 err = ext4_ext_migrate(inode);
260 mutex_unlock(&(inode->i_mutex));
261 mnt_drop_write(filp->f_path.mnt);
265 case EXT4_IOC_ALLOC_DA_BLKS:
268 if (!is_owner_or_cap(inode))
271 err = mnt_want_write(filp->f_path.mnt);
274 err = ext4_alloc_da_blocks(inode);
275 mnt_drop_write(filp->f_path.mnt);
285 long ext4_compat_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
287 /* These are just misnamed, they actually get/put from/to user an int */
289 case EXT4_IOC32_GETFLAGS:
290 cmd = EXT4_IOC_GETFLAGS;
292 case EXT4_IOC32_SETFLAGS:
293 cmd = EXT4_IOC_SETFLAGS;
295 case EXT4_IOC32_GETVERSION:
296 cmd = EXT4_IOC_GETVERSION;
298 case EXT4_IOC32_SETVERSION:
299 cmd = EXT4_IOC_SETVERSION;
301 case EXT4_IOC32_GROUP_EXTEND:
302 cmd = EXT4_IOC_GROUP_EXTEND;
304 case EXT4_IOC32_GETVERSION_OLD:
305 cmd = EXT4_IOC_GETVERSION_OLD;
307 case EXT4_IOC32_SETVERSION_OLD:
308 cmd = EXT4_IOC_SETVERSION_OLD;
310 #ifdef CONFIG_JBD2_DEBUG
311 case EXT4_IOC32_WAIT_FOR_READONLY:
312 cmd = EXT4_IOC_WAIT_FOR_READONLY;
315 case EXT4_IOC32_GETRSVSZ:
316 cmd = EXT4_IOC_GETRSVSZ;
318 case EXT4_IOC32_SETRSVSZ:
319 cmd = EXT4_IOC_SETRSVSZ;
321 case EXT4_IOC_GROUP_ADD:
326 return ext4_ioctl(file, cmd, (unsigned long) compat_ptr(arg));