2 * linux/fs/ext3/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/jbd.h>
12 #include <linux/capability.h>
13 #include <linux/ext3_fs.h>
14 #include <linux/ext3_jbd.h>
15 #include <linux/time.h>
16 #include <linux/compat.h>
17 #include <linux/smp_lock.h>
18 #include <asm/uaccess.h>
20 int ext3_ioctl (struct inode * inode, struct file * filp, unsigned int cmd,
23 struct ext3_inode_info *ei = EXT3_I(inode);
25 unsigned short rsv_window_size;
27 ext3_debug ("cmd = %u, arg = %lu\n", cmd, arg);
30 case EXT3_IOC_GETFLAGS:
31 ext3_get_inode_flags(ei);
32 flags = ei->i_flags & EXT3_FL_USER_VISIBLE;
33 return put_user(flags, (int __user *) arg);
34 case EXT3_IOC_SETFLAGS: {
35 handle_t *handle = NULL;
37 struct ext3_iloc iloc;
38 unsigned int oldflags;
44 if (!is_owner_or_cap(inode))
47 if (get_user(flags, (int __user *) arg))
50 if (!S_ISDIR(inode->i_mode))
51 flags &= ~EXT3_DIRSYNC_FL;
53 mutex_lock(&inode->i_mutex);
54 /* Is it quota file? Do not allow user to mess with it */
55 if (IS_NOQUOTA(inode)) {
56 mutex_unlock(&inode->i_mutex);
59 oldflags = ei->i_flags;
61 /* The JOURNAL_DATA flag is modifiable only by root */
62 jflag = flags & EXT3_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) & (EXT3_APPEND_FL | EXT3_IMMUTABLE_FL)) {
71 if (!capable(CAP_LINUX_IMMUTABLE)) {
72 mutex_unlock(&inode->i_mutex);
78 * The JOURNAL_DATA flag can only be changed by
79 * the relevant capability.
81 if ((jflag ^ oldflags) & (EXT3_JOURNAL_DATA_FL)) {
82 if (!capable(CAP_SYS_RESOURCE)) {
83 mutex_unlock(&inode->i_mutex);
89 handle = ext3_journal_start(inode, 1);
91 mutex_unlock(&inode->i_mutex);
92 return PTR_ERR(handle);
96 err = ext3_reserve_inode_write(handle, inode, &iloc);
100 flags = flags & EXT3_FL_USER_MODIFIABLE;
101 flags |= oldflags & ~EXT3_FL_USER_MODIFIABLE;
104 ext3_set_inode_flags(inode);
105 inode->i_ctime = CURRENT_TIME_SEC;
107 err = ext3_mark_iloc_dirty(handle, inode, &iloc);
109 ext3_journal_stop(handle);
111 mutex_unlock(&inode->i_mutex);
115 if ((jflag ^ oldflags) & (EXT3_JOURNAL_DATA_FL))
116 err = ext3_change_inode_journal_flag(inode, jflag);
117 mutex_unlock(&inode->i_mutex);
120 case EXT3_IOC_GETVERSION:
121 case EXT3_IOC_GETVERSION_OLD:
122 return put_user(inode->i_generation, (int __user *) arg);
123 case EXT3_IOC_SETVERSION:
124 case EXT3_IOC_SETVERSION_OLD: {
126 struct ext3_iloc iloc;
130 if (!is_owner_or_cap(inode))
132 if (IS_RDONLY(inode))
134 if (get_user(generation, (int __user *) arg))
137 handle = ext3_journal_start(inode, 1);
139 return PTR_ERR(handle);
140 err = ext3_reserve_inode_write(handle, inode, &iloc);
142 inode->i_ctime = CURRENT_TIME_SEC;
143 inode->i_generation = generation;
144 err = ext3_mark_iloc_dirty(handle, inode, &iloc);
146 ext3_journal_stop(handle);
149 #ifdef CONFIG_JBD_DEBUG
150 case EXT3_IOC_WAIT_FOR_READONLY:
152 * This is racy - by the time we're woken up and running,
153 * the superblock could be released. And the module could
154 * have been unloaded. So sue me.
156 * Returns 1 if it slept, else zero.
159 struct super_block *sb = inode->i_sb;
160 DECLARE_WAITQUEUE(wait, current);
163 set_current_state(TASK_INTERRUPTIBLE);
164 add_wait_queue(&EXT3_SB(sb)->ro_wait_queue, &wait);
165 if (timer_pending(&EXT3_SB(sb)->turn_ro_timer)) {
169 remove_wait_queue(&EXT3_SB(sb)->ro_wait_queue, &wait);
173 case EXT3_IOC_GETRSVSZ:
174 if (test_opt(inode->i_sb, RESERVATION)
175 && S_ISREG(inode->i_mode)
176 && ei->i_block_alloc_info) {
177 rsv_window_size = ei->i_block_alloc_info->rsv_window_node.rsv_goal_size;
178 return put_user(rsv_window_size, (int __user *)arg);
181 case EXT3_IOC_SETRSVSZ: {
183 if (!test_opt(inode->i_sb, RESERVATION) ||!S_ISREG(inode->i_mode))
186 if (IS_RDONLY(inode))
189 if (!is_owner_or_cap(inode))
192 if (get_user(rsv_window_size, (int __user *)arg))
195 if (rsv_window_size > EXT3_MAX_RESERVE_BLOCKS)
196 rsv_window_size = EXT3_MAX_RESERVE_BLOCKS;
199 * need to allocate reservation structure for this inode
200 * before set the window size
202 mutex_lock(&ei->truncate_mutex);
203 if (!ei->i_block_alloc_info)
204 ext3_init_block_alloc_info(inode);
206 if (ei->i_block_alloc_info){
207 struct ext3_reserve_window_node *rsv = &ei->i_block_alloc_info->rsv_window_node;
208 rsv->rsv_goal_size = rsv_window_size;
210 mutex_unlock(&ei->truncate_mutex);
213 case EXT3_IOC_GROUP_EXTEND: {
214 ext3_fsblk_t n_blocks_count;
215 struct super_block *sb = inode->i_sb;
218 if (!capable(CAP_SYS_RESOURCE))
221 if (IS_RDONLY(inode))
224 if (get_user(n_blocks_count, (__u32 __user *)arg))
227 err = ext3_group_extend(sb, EXT3_SB(sb)->s_es, n_blocks_count);
228 journal_lock_updates(EXT3_SB(sb)->s_journal);
229 journal_flush(EXT3_SB(sb)->s_journal);
230 journal_unlock_updates(EXT3_SB(sb)->s_journal);
234 case EXT3_IOC_GROUP_ADD: {
235 struct ext3_new_group_data input;
236 struct super_block *sb = inode->i_sb;
239 if (!capable(CAP_SYS_RESOURCE))
242 if (IS_RDONLY(inode))
245 if (copy_from_user(&input, (struct ext3_new_group_input __user *)arg,
249 err = ext3_group_add(sb, &input);
250 journal_lock_updates(EXT3_SB(sb)->s_journal);
251 journal_flush(EXT3_SB(sb)->s_journal);
252 journal_unlock_updates(EXT3_SB(sb)->s_journal);
264 long ext3_compat_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
266 struct inode *inode = file->f_path.dentry->d_inode;
269 /* These are just misnamed, they actually get/put from/to user an int */
271 case EXT3_IOC32_GETFLAGS:
272 cmd = EXT3_IOC_GETFLAGS;
274 case EXT3_IOC32_SETFLAGS:
275 cmd = EXT3_IOC_SETFLAGS;
277 case EXT3_IOC32_GETVERSION:
278 cmd = EXT3_IOC_GETVERSION;
280 case EXT3_IOC32_SETVERSION:
281 cmd = EXT3_IOC_SETVERSION;
283 case EXT3_IOC32_GROUP_EXTEND:
284 cmd = EXT3_IOC_GROUP_EXTEND;
286 case EXT3_IOC32_GETVERSION_OLD:
287 cmd = EXT3_IOC_GETVERSION_OLD;
289 case EXT3_IOC32_SETVERSION_OLD:
290 cmd = EXT3_IOC_SETVERSION_OLD;
292 #ifdef CONFIG_JBD_DEBUG
293 case EXT3_IOC32_WAIT_FOR_READONLY:
294 cmd = EXT3_IOC_WAIT_FOR_READONLY;
297 case EXT3_IOC32_GETRSVSZ:
298 cmd = EXT3_IOC_GETRSVSZ;
300 case EXT3_IOC32_SETRSVSZ:
301 cmd = EXT3_IOC_SETRSVSZ;
303 case EXT3_IOC_GROUP_ADD:
309 ret = ext3_ioctl(inode, file, cmd, (unsigned long) compat_ptr(arg));