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 oldflags
= ei
->i_flags
;
56 /* The JOURNAL_DATA flag is modifiable only by root */
57 jflag
= flags
& EXT3_JOURNAL_DATA_FL
;
60 * The IMMUTABLE and APPEND_ONLY flags can only be changed by
61 * the relevant capability.
63 * This test looks nicer. Thanks to Pauline Middelink
65 if ((flags
^ oldflags
) & (EXT3_APPEND_FL
| EXT3_IMMUTABLE_FL
)) {
66 if (!capable(CAP_LINUX_IMMUTABLE
)) {
67 mutex_unlock(&inode
->i_mutex
);
73 * The JOURNAL_DATA flag can only be changed by
74 * the relevant capability.
76 if ((jflag
^ oldflags
) & (EXT3_JOURNAL_DATA_FL
)) {
77 if (!capable(CAP_SYS_RESOURCE
)) {
78 mutex_unlock(&inode
->i_mutex
);
84 handle
= ext3_journal_start(inode
, 1);
86 mutex_unlock(&inode
->i_mutex
);
87 return PTR_ERR(handle
);
91 err
= ext3_reserve_inode_write(handle
, inode
, &iloc
);
95 flags
= flags
& EXT3_FL_USER_MODIFIABLE
;
96 flags
|= oldflags
& ~EXT3_FL_USER_MODIFIABLE
;
99 ext3_set_inode_flags(inode
);
100 inode
->i_ctime
= CURRENT_TIME_SEC
;
102 err
= ext3_mark_iloc_dirty(handle
, inode
, &iloc
);
104 ext3_journal_stop(handle
);
106 mutex_unlock(&inode
->i_mutex
);
110 if ((jflag
^ oldflags
) & (EXT3_JOURNAL_DATA_FL
))
111 err
= ext3_change_inode_journal_flag(inode
, jflag
);
112 mutex_unlock(&inode
->i_mutex
);
115 case EXT3_IOC_GETVERSION
:
116 case EXT3_IOC_GETVERSION_OLD
:
117 return put_user(inode
->i_generation
, (int __user
*) arg
);
118 case EXT3_IOC_SETVERSION
:
119 case EXT3_IOC_SETVERSION_OLD
: {
121 struct ext3_iloc iloc
;
125 if (!is_owner_or_cap(inode
))
127 if (IS_RDONLY(inode
))
129 if (get_user(generation
, (int __user
*) arg
))
132 handle
= ext3_journal_start(inode
, 1);
134 return PTR_ERR(handle
);
135 err
= ext3_reserve_inode_write(handle
, inode
, &iloc
);
137 inode
->i_ctime
= CURRENT_TIME_SEC
;
138 inode
->i_generation
= generation
;
139 err
= ext3_mark_iloc_dirty(handle
, inode
, &iloc
);
141 ext3_journal_stop(handle
);
144 #ifdef CONFIG_JBD_DEBUG
145 case EXT3_IOC_WAIT_FOR_READONLY
:
147 * This is racy - by the time we're woken up and running,
148 * the superblock could be released. And the module could
149 * have been unloaded. So sue me.
151 * Returns 1 if it slept, else zero.
154 struct super_block
*sb
= inode
->i_sb
;
155 DECLARE_WAITQUEUE(wait
, current
);
158 set_current_state(TASK_INTERRUPTIBLE
);
159 add_wait_queue(&EXT3_SB(sb
)->ro_wait_queue
, &wait
);
160 if (timer_pending(&EXT3_SB(sb
)->turn_ro_timer
)) {
164 remove_wait_queue(&EXT3_SB(sb
)->ro_wait_queue
, &wait
);
168 case EXT3_IOC_GETRSVSZ
:
169 if (test_opt(inode
->i_sb
, RESERVATION
)
170 && S_ISREG(inode
->i_mode
)
171 && ei
->i_block_alloc_info
) {
172 rsv_window_size
= ei
->i_block_alloc_info
->rsv_window_node
.rsv_goal_size
;
173 return put_user(rsv_window_size
, (int __user
*)arg
);
176 case EXT3_IOC_SETRSVSZ
: {
178 if (!test_opt(inode
->i_sb
, RESERVATION
) ||!S_ISREG(inode
->i_mode
))
181 if (IS_RDONLY(inode
))
184 if (!is_owner_or_cap(inode
))
187 if (get_user(rsv_window_size
, (int __user
*)arg
))
190 if (rsv_window_size
> EXT3_MAX_RESERVE_BLOCKS
)
191 rsv_window_size
= EXT3_MAX_RESERVE_BLOCKS
;
194 * need to allocate reservation structure for this inode
195 * before set the window size
197 mutex_lock(&ei
->truncate_mutex
);
198 if (!ei
->i_block_alloc_info
)
199 ext3_init_block_alloc_info(inode
);
201 if (ei
->i_block_alloc_info
){
202 struct ext3_reserve_window_node
*rsv
= &ei
->i_block_alloc_info
->rsv_window_node
;
203 rsv
->rsv_goal_size
= rsv_window_size
;
205 mutex_unlock(&ei
->truncate_mutex
);
208 case EXT3_IOC_GROUP_EXTEND
: {
209 ext3_fsblk_t n_blocks_count
;
210 struct super_block
*sb
= inode
->i_sb
;
213 if (!capable(CAP_SYS_RESOURCE
))
216 if (IS_RDONLY(inode
))
219 if (get_user(n_blocks_count
, (__u32 __user
*)arg
))
222 err
= ext3_group_extend(sb
, EXT3_SB(sb
)->s_es
, n_blocks_count
);
223 journal_lock_updates(EXT3_SB(sb
)->s_journal
);
224 journal_flush(EXT3_SB(sb
)->s_journal
);
225 journal_unlock_updates(EXT3_SB(sb
)->s_journal
);
229 case EXT3_IOC_GROUP_ADD
: {
230 struct ext3_new_group_data input
;
231 struct super_block
*sb
= inode
->i_sb
;
234 if (!capable(CAP_SYS_RESOURCE
))
237 if (IS_RDONLY(inode
))
240 if (copy_from_user(&input
, (struct ext3_new_group_input __user
*)arg
,
244 err
= ext3_group_add(sb
, &input
);
245 journal_lock_updates(EXT3_SB(sb
)->s_journal
);
246 journal_flush(EXT3_SB(sb
)->s_journal
);
247 journal_unlock_updates(EXT3_SB(sb
)->s_journal
);
259 long ext3_compat_ioctl(struct file
*file
, unsigned int cmd
, unsigned long arg
)
261 struct inode
*inode
= file
->f_path
.dentry
->d_inode
;
264 /* These are just misnamed, they actually get/put from/to user an int */
266 case EXT3_IOC32_GETFLAGS
:
267 cmd
= EXT3_IOC_GETFLAGS
;
269 case EXT3_IOC32_SETFLAGS
:
270 cmd
= EXT3_IOC_SETFLAGS
;
272 case EXT3_IOC32_GETVERSION
:
273 cmd
= EXT3_IOC_GETVERSION
;
275 case EXT3_IOC32_SETVERSION
:
276 cmd
= EXT3_IOC_SETVERSION
;
278 case EXT3_IOC32_GROUP_EXTEND
:
279 cmd
= EXT3_IOC_GROUP_EXTEND
;
281 case EXT3_IOC32_GETVERSION_OLD
:
282 cmd
= EXT3_IOC_GETVERSION_OLD
;
284 case EXT3_IOC32_SETVERSION_OLD
:
285 cmd
= EXT3_IOC_SETVERSION_OLD
;
287 #ifdef CONFIG_JBD_DEBUG
288 case EXT3_IOC32_WAIT_FOR_READONLY
:
289 cmd
= EXT3_IOC_WAIT_FOR_READONLY
;
292 case EXT3_IOC32_GETRSVSZ
:
293 cmd
= EXT3_IOC_GETRSVSZ
;
295 case EXT3_IOC32_SETRSVSZ
:
296 cmd
= EXT3_IOC_SETRSVSZ
;
298 case EXT3_IOC_GROUP_ADD
:
304 ret
= ext3_ioctl(inode
, file
, cmd
, (unsigned long) compat_ptr(arg
));