pci: fix section mismatch warning
[linux-2.6.22.y-op.git] / fs / ext3 / ioctl.c
blob9b8090d94e6c4c1702914478a6ba859c93e2ed22
1 /*
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)
8 */
10 #include <linux/fs.h>
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,
21 unsigned long arg)
23 struct ext3_inode_info *ei = EXT3_I(inode);
24 unsigned int flags;
25 unsigned short rsv_window_size;
27 ext3_debug ("cmd = %u, arg = %lu\n", cmd, arg);
29 switch (cmd) {
30 case EXT3_IOC_GETFLAGS:
31 flags = ei->i_flags & EXT3_FL_USER_VISIBLE;
32 return put_user(flags, (int __user *) arg);
33 case EXT3_IOC_SETFLAGS: {
34 handle_t *handle = NULL;
35 int err;
36 struct ext3_iloc iloc;
37 unsigned int oldflags;
38 unsigned int jflag;
40 if (IS_RDONLY(inode))
41 return -EROFS;
43 if ((current->fsuid != inode->i_uid) && !capable(CAP_FOWNER))
44 return -EACCES;
46 if (get_user(flags, (int __user *) arg))
47 return -EFAULT;
49 if (!S_ISDIR(inode->i_mode))
50 flags &= ~EXT3_DIRSYNC_FL;
52 mutex_lock(&inode->i_mutex);
53 oldflags = ei->i_flags;
55 /* The JOURNAL_DATA flag is modifiable only by root */
56 jflag = flags & EXT3_JOURNAL_DATA_FL;
59 * The IMMUTABLE and APPEND_ONLY flags can only be changed by
60 * the relevant capability.
62 * This test looks nicer. Thanks to Pauline Middelink
64 if ((flags ^ oldflags) & (EXT3_APPEND_FL | EXT3_IMMUTABLE_FL)) {
65 if (!capable(CAP_LINUX_IMMUTABLE)) {
66 mutex_unlock(&inode->i_mutex);
67 return -EPERM;
72 * The JOURNAL_DATA flag can only be changed by
73 * the relevant capability.
75 if ((jflag ^ oldflags) & (EXT3_JOURNAL_DATA_FL)) {
76 if (!capable(CAP_SYS_RESOURCE)) {
77 mutex_unlock(&inode->i_mutex);
78 return -EPERM;
83 handle = ext3_journal_start(inode, 1);
84 if (IS_ERR(handle)) {
85 mutex_unlock(&inode->i_mutex);
86 return PTR_ERR(handle);
88 if (IS_SYNC(inode))
89 handle->h_sync = 1;
90 err = ext3_reserve_inode_write(handle, inode, &iloc);
91 if (err)
92 goto flags_err;
94 flags = flags & EXT3_FL_USER_MODIFIABLE;
95 flags |= oldflags & ~EXT3_FL_USER_MODIFIABLE;
96 ei->i_flags = flags;
98 ext3_set_inode_flags(inode);
99 inode->i_ctime = CURRENT_TIME_SEC;
101 err = ext3_mark_iloc_dirty(handle, inode, &iloc);
102 flags_err:
103 ext3_journal_stop(handle);
104 if (err) {
105 mutex_unlock(&inode->i_mutex);
106 return err;
109 if ((jflag ^ oldflags) & (EXT3_JOURNAL_DATA_FL))
110 err = ext3_change_inode_journal_flag(inode, jflag);
111 mutex_unlock(&inode->i_mutex);
112 return err;
114 case EXT3_IOC_GETVERSION:
115 case EXT3_IOC_GETVERSION_OLD:
116 return put_user(inode->i_generation, (int __user *) arg);
117 case EXT3_IOC_SETVERSION:
118 case EXT3_IOC_SETVERSION_OLD: {
119 handle_t *handle;
120 struct ext3_iloc iloc;
121 __u32 generation;
122 int err;
124 if ((current->fsuid != inode->i_uid) && !capable(CAP_FOWNER))
125 return -EPERM;
126 if (IS_RDONLY(inode))
127 return -EROFS;
128 if (get_user(generation, (int __user *) arg))
129 return -EFAULT;
131 handle = ext3_journal_start(inode, 1);
132 if (IS_ERR(handle))
133 return PTR_ERR(handle);
134 err = ext3_reserve_inode_write(handle, inode, &iloc);
135 if (err == 0) {
136 inode->i_ctime = CURRENT_TIME_SEC;
137 inode->i_generation = generation;
138 err = ext3_mark_iloc_dirty(handle, inode, &iloc);
140 ext3_journal_stop(handle);
141 return err;
143 #ifdef CONFIG_JBD_DEBUG
144 case EXT3_IOC_WAIT_FOR_READONLY:
146 * This is racy - by the time we're woken up and running,
147 * the superblock could be released. And the module could
148 * have been unloaded. So sue me.
150 * Returns 1 if it slept, else zero.
153 struct super_block *sb = inode->i_sb;
154 DECLARE_WAITQUEUE(wait, current);
155 int ret = 0;
157 set_current_state(TASK_INTERRUPTIBLE);
158 add_wait_queue(&EXT3_SB(sb)->ro_wait_queue, &wait);
159 if (timer_pending(&EXT3_SB(sb)->turn_ro_timer)) {
160 schedule();
161 ret = 1;
163 remove_wait_queue(&EXT3_SB(sb)->ro_wait_queue, &wait);
164 return ret;
166 #endif
167 case EXT3_IOC_GETRSVSZ:
168 if (test_opt(inode->i_sb, RESERVATION)
169 && S_ISREG(inode->i_mode)
170 && ei->i_block_alloc_info) {
171 rsv_window_size = ei->i_block_alloc_info->rsv_window_node.rsv_goal_size;
172 return put_user(rsv_window_size, (int __user *)arg);
174 return -ENOTTY;
175 case EXT3_IOC_SETRSVSZ: {
177 if (!test_opt(inode->i_sb, RESERVATION) ||!S_ISREG(inode->i_mode))
178 return -ENOTTY;
180 if (IS_RDONLY(inode))
181 return -EROFS;
183 if ((current->fsuid != inode->i_uid) && !capable(CAP_FOWNER))
184 return -EACCES;
186 if (get_user(rsv_window_size, (int __user *)arg))
187 return -EFAULT;
189 if (rsv_window_size > EXT3_MAX_RESERVE_BLOCKS)
190 rsv_window_size = EXT3_MAX_RESERVE_BLOCKS;
193 * need to allocate reservation structure for this inode
194 * before set the window size
196 mutex_lock(&ei->truncate_mutex);
197 if (!ei->i_block_alloc_info)
198 ext3_init_block_alloc_info(inode);
200 if (ei->i_block_alloc_info){
201 struct ext3_reserve_window_node *rsv = &ei->i_block_alloc_info->rsv_window_node;
202 rsv->rsv_goal_size = rsv_window_size;
204 mutex_unlock(&ei->truncate_mutex);
205 return 0;
207 case EXT3_IOC_GROUP_EXTEND: {
208 ext3_fsblk_t n_blocks_count;
209 struct super_block *sb = inode->i_sb;
210 int err;
212 if (!capable(CAP_SYS_RESOURCE))
213 return -EPERM;
215 if (IS_RDONLY(inode))
216 return -EROFS;
218 if (get_user(n_blocks_count, (__u32 __user *)arg))
219 return -EFAULT;
221 err = ext3_group_extend(sb, EXT3_SB(sb)->s_es, n_blocks_count);
222 journal_lock_updates(EXT3_SB(sb)->s_journal);
223 journal_flush(EXT3_SB(sb)->s_journal);
224 journal_unlock_updates(EXT3_SB(sb)->s_journal);
226 return err;
228 case EXT3_IOC_GROUP_ADD: {
229 struct ext3_new_group_data input;
230 struct super_block *sb = inode->i_sb;
231 int err;
233 if (!capable(CAP_SYS_RESOURCE))
234 return -EPERM;
236 if (IS_RDONLY(inode))
237 return -EROFS;
239 if (copy_from_user(&input, (struct ext3_new_group_input __user *)arg,
240 sizeof(input)))
241 return -EFAULT;
243 err = ext3_group_add(sb, &input);
244 journal_lock_updates(EXT3_SB(sb)->s_journal);
245 journal_flush(EXT3_SB(sb)->s_journal);
246 journal_unlock_updates(EXT3_SB(sb)->s_journal);
248 return err;
252 default:
253 return -ENOTTY;
257 #ifdef CONFIG_COMPAT
258 long ext3_compat_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
260 struct inode *inode = file->f_path.dentry->d_inode;
261 int ret;
263 /* These are just misnamed, they actually get/put from/to user an int */
264 switch (cmd) {
265 case EXT3_IOC32_GETFLAGS:
266 cmd = EXT3_IOC_GETFLAGS;
267 break;
268 case EXT3_IOC32_SETFLAGS:
269 cmd = EXT3_IOC_SETFLAGS;
270 break;
271 case EXT3_IOC32_GETVERSION:
272 cmd = EXT3_IOC_GETVERSION;
273 break;
274 case EXT3_IOC32_SETVERSION:
275 cmd = EXT3_IOC_SETVERSION;
276 break;
277 case EXT3_IOC32_GROUP_EXTEND:
278 cmd = EXT3_IOC_GROUP_EXTEND;
279 break;
280 case EXT3_IOC32_GETVERSION_OLD:
281 cmd = EXT3_IOC_GETVERSION_OLD;
282 break;
283 case EXT3_IOC32_SETVERSION_OLD:
284 cmd = EXT3_IOC_SETVERSION_OLD;
285 break;
286 #ifdef CONFIG_JBD_DEBUG
287 case EXT3_IOC32_WAIT_FOR_READONLY:
288 cmd = EXT3_IOC_WAIT_FOR_READONLY;
289 break;
290 #endif
291 case EXT3_IOC32_GETRSVSZ:
292 cmd = EXT3_IOC_GETRSVSZ;
293 break;
294 case EXT3_IOC32_SETRSVSZ:
295 cmd = EXT3_IOC_SETRSVSZ;
296 break;
297 case EXT3_IOC_GROUP_ADD:
298 break;
299 default:
300 return -ENOIOCTLCMD;
302 lock_kernel();
303 ret = ext3_ioctl(inode, file, cmd, (unsigned long) compat_ptr(arg));
304 unlock_kernel();
305 return ret;
307 #endif