blob: 0d0c70151642faf026c98d53b4179c6395e1b645 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/fs/ext3/ioctl.c
3 *
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)
8 */
9
10#include <linux/fs.h>
11#include <linux/jbd.h>
Randy Dunlap16f7e0f2006-01-11 12:17:46 -080012#include <linux/capability.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#include <linux/ext3_fs.h>
14#include <linux/ext3_jbd.h>
Dave Hansen42a74f22008-02-15 14:37:46 -080015#include <linux/mount.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include <linux/time.h>
David Howells52a700c2006-08-29 19:06:23 +010017#include <linux/compat.h>
18#include <linux/smp_lock.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#include <asm/uaccess.h>
20
Linus Torvalds1da177e2005-04-16 15:20:36 -070021int ext3_ioctl (struct inode * inode, struct file * filp, unsigned int cmd,
22 unsigned long arg)
23{
24 struct ext3_inode_info *ei = EXT3_I(inode);
25 unsigned int flags;
26 unsigned short rsv_window_size;
27
28 ext3_debug ("cmd = %u, arg = %lu\n", cmd, arg);
29
30 switch (cmd) {
31 case EXT3_IOC_GETFLAGS:
Jan Kara28be5ab2007-05-08 00:30:33 -070032 ext3_get_inode_flags(ei);
Linus Torvalds1da177e2005-04-16 15:20:36 -070033 flags = ei->i_flags & EXT3_FL_USER_VISIBLE;
34 return put_user(flags, (int __user *) arg);
35 case EXT3_IOC_SETFLAGS: {
36 handle_t *handle = NULL;
37 int err;
38 struct ext3_iloc iloc;
39 unsigned int oldflags;
40 unsigned int jflag;
41
Dave Hansen42a74f22008-02-15 14:37:46 -080042 err = mnt_want_write(filp->f_path.mnt);
43 if (err)
44 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070045
Dave Hansen42a74f22008-02-15 14:37:46 -080046 if (!is_owner_or_cap(inode)) {
47 err = -EACCES;
48 goto flags_out;
49 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070050
Dave Hansen42a74f22008-02-15 14:37:46 -080051 if (get_user(flags, (int __user *) arg)) {
52 err = -EFAULT;
53 goto flags_out;
54 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070055
56 if (!S_ISDIR(inode->i_mode))
57 flags &= ~EXT3_DIRSYNC_FL;
58
Al Viroa090d912006-04-26 07:32:40 +010059 mutex_lock(&inode->i_mutex);
Jan Karae47776a2007-11-14 16:58:56 -080060 /* Is it quota file? Do not allow user to mess with it */
61 if (IS_NOQUOTA(inode)) {
62 mutex_unlock(&inode->i_mutex);
Dave Hansen42a74f22008-02-15 14:37:46 -080063 err = -EPERM;
64 goto flags_out;
Jan Karae47776a2007-11-14 16:58:56 -080065 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070066 oldflags = ei->i_flags;
67
68 /* The JOURNAL_DATA flag is modifiable only by root */
69 jflag = flags & EXT3_JOURNAL_DATA_FL;
70
71 /*
72 * The IMMUTABLE and APPEND_ONLY flags can only be changed by
73 * the relevant capability.
74 *
75 * This test looks nicer. Thanks to Pauline Middelink
76 */
77 if ((flags ^ oldflags) & (EXT3_APPEND_FL | EXT3_IMMUTABLE_FL)) {
Al Viroa090d912006-04-26 07:32:40 +010078 if (!capable(CAP_LINUX_IMMUTABLE)) {
79 mutex_unlock(&inode->i_mutex);
Dave Hansen42a74f22008-02-15 14:37:46 -080080 err = -EPERM;
81 goto flags_out;
Al Viroa090d912006-04-26 07:32:40 +010082 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070083 }
84
85 /*
86 * The JOURNAL_DATA flag can only be changed by
87 * the relevant capability.
88 */
89 if ((jflag ^ oldflags) & (EXT3_JOURNAL_DATA_FL)) {
Al Viroa090d912006-04-26 07:32:40 +010090 if (!capable(CAP_SYS_RESOURCE)) {
91 mutex_unlock(&inode->i_mutex);
Dave Hansen42a74f22008-02-15 14:37:46 -080092 err = -EPERM;
93 goto flags_out;
Al Viroa090d912006-04-26 07:32:40 +010094 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070095 }
96
97
98 handle = ext3_journal_start(inode, 1);
Al Viroa090d912006-04-26 07:32:40 +010099 if (IS_ERR(handle)) {
100 mutex_unlock(&inode->i_mutex);
Dave Hansen42a74f22008-02-15 14:37:46 -0800101 err = PTR_ERR(handle);
102 goto flags_out;
Al Viroa090d912006-04-26 07:32:40 +0100103 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 if (IS_SYNC(inode))
105 handle->h_sync = 1;
106 err = ext3_reserve_inode_write(handle, inode, &iloc);
107 if (err)
108 goto flags_err;
109
110 flags = flags & EXT3_FL_USER_MODIFIABLE;
111 flags |= oldflags & ~EXT3_FL_USER_MODIFIABLE;
112 ei->i_flags = flags;
113
114 ext3_set_inode_flags(inode);
115 inode->i_ctime = CURRENT_TIME_SEC;
116
117 err = ext3_mark_iloc_dirty(handle, inode, &iloc);
118flags_err:
119 ext3_journal_stop(handle);
Al Viroa090d912006-04-26 07:32:40 +0100120 if (err) {
121 mutex_unlock(&inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122 return err;
Al Viroa090d912006-04-26 07:32:40 +0100123 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124
125 if ((jflag ^ oldflags) & (EXT3_JOURNAL_DATA_FL))
126 err = ext3_change_inode_journal_flag(inode, jflag);
Al Viroa090d912006-04-26 07:32:40 +0100127 mutex_unlock(&inode->i_mutex);
Dave Hansen42a74f22008-02-15 14:37:46 -0800128flags_out:
129 mnt_drop_write(filp->f_path.mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130 return err;
131 }
132 case EXT3_IOC_GETVERSION:
133 case EXT3_IOC_GETVERSION_OLD:
134 return put_user(inode->i_generation, (int __user *) arg);
135 case EXT3_IOC_SETVERSION:
136 case EXT3_IOC_SETVERSION_OLD: {
137 handle_t *handle;
138 struct ext3_iloc iloc;
139 __u32 generation;
140 int err;
141
Satyam Sharma3bd858a2007-07-17 15:00:08 +0530142 if (!is_owner_or_cap(inode))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143 return -EPERM;
Dave Hansen42a74f22008-02-15 14:37:46 -0800144 err = mnt_want_write(filp->f_path.mnt);
145 if (err)
146 return err;
147 if (get_user(generation, (int __user *) arg)) {
148 err = -EFAULT;
149 goto setversion_out;
150 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151 handle = ext3_journal_start(inode, 1);
Dave Hansen42a74f22008-02-15 14:37:46 -0800152 if (IS_ERR(handle)) {
153 err = PTR_ERR(handle);
154 goto setversion_out;
155 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156 err = ext3_reserve_inode_write(handle, inode, &iloc);
157 if (err == 0) {
158 inode->i_ctime = CURRENT_TIME_SEC;
159 inode->i_generation = generation;
160 err = ext3_mark_iloc_dirty(handle, inode, &iloc);
161 }
162 ext3_journal_stop(handle);
Dave Hansen42a74f22008-02-15 14:37:46 -0800163setversion_out:
164 mnt_drop_write(filp->f_path.mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 return err;
166 }
167#ifdef CONFIG_JBD_DEBUG
168 case EXT3_IOC_WAIT_FOR_READONLY:
169 /*
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.
173 *
174 * Returns 1 if it slept, else zero.
175 */
176 {
177 struct super_block *sb = inode->i_sb;
178 DECLARE_WAITQUEUE(wait, current);
179 int ret = 0;
180
181 set_current_state(TASK_INTERRUPTIBLE);
182 add_wait_queue(&EXT3_SB(sb)->ro_wait_queue, &wait);
183 if (timer_pending(&EXT3_SB(sb)->turn_ro_timer)) {
184 schedule();
185 ret = 1;
186 }
187 remove_wait_queue(&EXT3_SB(sb)->ro_wait_queue, &wait);
188 return ret;
189 }
190#endif
191 case EXT3_IOC_GETRSVSZ:
192 if (test_opt(inode->i_sb, RESERVATION)
193 && S_ISREG(inode->i_mode)
194 && ei->i_block_alloc_info) {
195 rsv_window_size = ei->i_block_alloc_info->rsv_window_node.rsv_goal_size;
196 return put_user(rsv_window_size, (int __user *)arg);
197 }
198 return -ENOTTY;
199 case EXT3_IOC_SETRSVSZ: {
Dave Hansen42a74f22008-02-15 14:37:46 -0800200 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201
202 if (!test_opt(inode->i_sb, RESERVATION) ||!S_ISREG(inode->i_mode))
203 return -ENOTTY;
204
Dave Hansen42a74f22008-02-15 14:37:46 -0800205 err = mnt_want_write(filp->f_path.mnt);
206 if (err)
207 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208
Dave Hansen42a74f22008-02-15 14:37:46 -0800209 if (!is_owner_or_cap(inode)) {
210 err = -EACCES;
211 goto setrsvsz_out;
212 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213
Dave Hansen42a74f22008-02-15 14:37:46 -0800214 if (get_user(rsv_window_size, (int __user *)arg)) {
215 err = -EFAULT;
216 goto setrsvsz_out;
217 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218
219 if (rsv_window_size > EXT3_MAX_RESERVE_BLOCKS)
220 rsv_window_size = EXT3_MAX_RESERVE_BLOCKS;
221
222 /*
223 * need to allocate reservation structure for this inode
224 * before set the window size
225 */
Arjan van de Ven97461512006-03-23 03:00:42 -0800226 mutex_lock(&ei->truncate_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 if (!ei->i_block_alloc_info)
228 ext3_init_block_alloc_info(inode);
229
230 if (ei->i_block_alloc_info){
231 struct ext3_reserve_window_node *rsv = &ei->i_block_alloc_info->rsv_window_node;
232 rsv->rsv_goal_size = rsv_window_size;
233 }
Arjan van de Ven97461512006-03-23 03:00:42 -0800234 mutex_unlock(&ei->truncate_mutex);
Dave Hansen42a74f22008-02-15 14:37:46 -0800235setrsvsz_out:
236 mnt_drop_write(filp->f_path.mnt);
237 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 }
239 case EXT3_IOC_GROUP_EXTEND: {
Mingming Cao43d23f92006-06-25 05:48:07 -0700240 ext3_fsblk_t n_blocks_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 struct super_block *sb = inode->i_sb;
242 int err;
243
244 if (!capable(CAP_SYS_RESOURCE))
245 return -EPERM;
246
Dave Hansen42a74f22008-02-15 14:37:46 -0800247 err = mnt_want_write(filp->f_path.mnt);
248 if (err)
249 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250
Dave Hansen42a74f22008-02-15 14:37:46 -0800251 if (get_user(n_blocks_count, (__u32 __user *)arg)) {
252 err = -EFAULT;
253 goto group_extend_out;
254 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 err = ext3_group_extend(sb, EXT3_SB(sb)->s_es, n_blocks_count);
256 journal_lock_updates(EXT3_SB(sb)->s_journal);
257 journal_flush(EXT3_SB(sb)->s_journal);
258 journal_unlock_updates(EXT3_SB(sb)->s_journal);
Dave Hansen42a74f22008-02-15 14:37:46 -0800259group_extend_out:
260 mnt_drop_write(filp->f_path.mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 return err;
262 }
263 case EXT3_IOC_GROUP_ADD: {
264 struct ext3_new_group_data input;
265 struct super_block *sb = inode->i_sb;
266 int err;
267
268 if (!capable(CAP_SYS_RESOURCE))
269 return -EPERM;
270
Dave Hansen42a74f22008-02-15 14:37:46 -0800271 err = mnt_want_write(filp->f_path.mnt);
272 if (err)
273 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274
275 if (copy_from_user(&input, (struct ext3_new_group_input __user *)arg,
Dave Hansen42a74f22008-02-15 14:37:46 -0800276 sizeof(input))) {
277 err = -EFAULT;
278 goto group_add_out;
279 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280
281 err = ext3_group_add(sb, &input);
282 journal_lock_updates(EXT3_SB(sb)->s_journal);
283 journal_flush(EXT3_SB(sb)->s_journal);
284 journal_unlock_updates(EXT3_SB(sb)->s_journal);
Dave Hansen42a74f22008-02-15 14:37:46 -0800285group_add_out:
286 mnt_drop_write(filp->f_path.mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 return err;
288 }
289
290
291 default:
292 return -ENOTTY;
293 }
294}
David Howells52a700c2006-08-29 19:06:23 +0100295
296#ifdef CONFIG_COMPAT
297long ext3_compat_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
298{
Josef "Jeff" Sipekfe21a692006-12-08 02:36:38 -0800299 struct inode *inode = file->f_path.dentry->d_inode;
David Howells52a700c2006-08-29 19:06:23 +0100300 int ret;
301
302 /* These are just misnamed, they actually get/put from/to user an int */
303 switch (cmd) {
304 case EXT3_IOC32_GETFLAGS:
305 cmd = EXT3_IOC_GETFLAGS;
306 break;
307 case EXT3_IOC32_SETFLAGS:
308 cmd = EXT3_IOC_SETFLAGS;
309 break;
310 case EXT3_IOC32_GETVERSION:
311 cmd = EXT3_IOC_GETVERSION;
312 break;
313 case EXT3_IOC32_SETVERSION:
314 cmd = EXT3_IOC_SETVERSION;
315 break;
316 case EXT3_IOC32_GROUP_EXTEND:
317 cmd = EXT3_IOC_GROUP_EXTEND;
318 break;
319 case EXT3_IOC32_GETVERSION_OLD:
320 cmd = EXT3_IOC_GETVERSION_OLD;
321 break;
322 case EXT3_IOC32_SETVERSION_OLD:
323 cmd = EXT3_IOC_SETVERSION_OLD;
324 break;
325#ifdef CONFIG_JBD_DEBUG
326 case EXT3_IOC32_WAIT_FOR_READONLY:
327 cmd = EXT3_IOC_WAIT_FOR_READONLY;
328 break;
329#endif
330 case EXT3_IOC32_GETRSVSZ:
331 cmd = EXT3_IOC_GETRSVSZ;
332 break;
333 case EXT3_IOC32_SETRSVSZ:
334 cmd = EXT3_IOC_SETRSVSZ;
335 break;
336 case EXT3_IOC_GROUP_ADD:
337 break;
338 default:
339 return -ENOIOCTLCMD;
340 }
341 lock_kernel();
342 ret = ext3_ioctl(inode, file, cmd, (unsigned long) compat_ptr(arg));
343 unlock_kernel();
344 return ret;
345}
346#endif