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/mount.h>
16 #include <linux/time.h>
17 #include <linux/compat.h>
18 #include <asm/uaccess.h>
20 long ext3_ioctl(struct file
*filp
, unsigned int cmd
, unsigned long arg
)
22 struct inode
*inode
= filp
->f_dentry
->d_inode
;
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
;
41 if (!inode_owner_or_capable(inode
))
44 if (get_user(flags
, (int __user
*) arg
))
47 err
= mnt_want_write(filp
->f_path
.mnt
);
51 flags
= ext3_mask_flags(inode
->i_mode
, flags
);
53 mutex_lock(&inode
->i_mutex
);
55 /* Is it quota file? Do not allow user to mess with it */
57 if (IS_NOQUOTA(inode
))
60 oldflags
= ei
->i_flags
;
62 /* The JOURNAL_DATA flag is modifiable only by root */
63 jflag
= flags
& EXT3_JOURNAL_DATA_FL
;
66 * The IMMUTABLE and APPEND_ONLY flags can only be changed by
67 * the relevant capability.
69 * This test looks nicer. Thanks to Pauline Middelink
71 if ((flags
^ oldflags
) & (EXT3_APPEND_FL
| EXT3_IMMUTABLE_FL
)) {
72 if (!capable(CAP_LINUX_IMMUTABLE
))
77 * The JOURNAL_DATA flag can only be changed by
78 * the relevant capability.
80 if ((jflag
^ oldflags
) & (EXT3_JOURNAL_DATA_FL
)) {
81 if (!capable(CAP_SYS_RESOURCE
))
85 handle
= ext3_journal_start(inode
, 1);
87 err
= PTR_ERR(handle
);
92 err
= ext3_reserve_inode_write(handle
, inode
, &iloc
);
96 flags
= flags
& EXT3_FL_USER_MODIFIABLE
;
97 flags
|= oldflags
& ~EXT3_FL_USER_MODIFIABLE
;
100 ext3_set_inode_flags(inode
);
101 inode
->i_ctime
= CURRENT_TIME_SEC
;
103 err
= ext3_mark_iloc_dirty(handle
, inode
, &iloc
);
105 ext3_journal_stop(handle
);
109 if ((jflag
^ oldflags
) & (EXT3_JOURNAL_DATA_FL
))
110 err
= ext3_change_inode_journal_flag(inode
, jflag
);
112 mutex_unlock(&inode
->i_mutex
);
113 mnt_drop_write(filp
->f_path
.mnt
);
116 case EXT3_IOC_GETVERSION
:
117 case EXT3_IOC_GETVERSION_OLD
:
118 return put_user(inode
->i_generation
, (int __user
*) arg
);
119 case EXT3_IOC_SETVERSION
:
120 case EXT3_IOC_SETVERSION_OLD
: {
122 struct ext3_iloc iloc
;
126 if (!inode_owner_or_capable(inode
))
129 err
= mnt_want_write(filp
->f_path
.mnt
);
132 if (get_user(generation
, (int __user
*) arg
)) {
137 handle
= ext3_journal_start(inode
, 1);
138 if (IS_ERR(handle
)) {
139 err
= PTR_ERR(handle
);
142 err
= ext3_reserve_inode_write(handle
, inode
, &iloc
);
144 inode
->i_ctime
= CURRENT_TIME_SEC
;
145 inode
->i_generation
= generation
;
146 err
= ext3_mark_iloc_dirty(handle
, inode
, &iloc
);
148 ext3_journal_stop(handle
);
150 mnt_drop_write(filp
->f_path
.mnt
);
153 #ifdef CONFIG_JBD_DEBUG
154 case EXT3_IOC_WAIT_FOR_READONLY
:
156 * This is racy - by the time we're woken up and running,
157 * the superblock could be released. And the module could
158 * have been unloaded. So sue me.
160 * Returns 1 if it slept, else zero.
163 struct super_block
*sb
= inode
->i_sb
;
164 DECLARE_WAITQUEUE(wait
, current
);
167 set_current_state(TASK_INTERRUPTIBLE
);
168 add_wait_queue(&EXT3_SB(sb
)->ro_wait_queue
, &wait
);
169 if (timer_pending(&EXT3_SB(sb
)->turn_ro_timer
)) {
173 remove_wait_queue(&EXT3_SB(sb
)->ro_wait_queue
, &wait
);
177 case EXT3_IOC_GETRSVSZ
:
178 if (test_opt(inode
->i_sb
, RESERVATION
)
179 && S_ISREG(inode
->i_mode
)
180 && ei
->i_block_alloc_info
) {
181 rsv_window_size
= ei
->i_block_alloc_info
->rsv_window_node
.rsv_goal_size
;
182 return put_user(rsv_window_size
, (int __user
*)arg
);
185 case EXT3_IOC_SETRSVSZ
: {
188 if (!test_opt(inode
->i_sb
, RESERVATION
) ||!S_ISREG(inode
->i_mode
))
191 err
= mnt_want_write(filp
->f_path
.mnt
);
195 if (!inode_owner_or_capable(inode
)) {
200 if (get_user(rsv_window_size
, (int __user
*)arg
)) {
205 if (rsv_window_size
> EXT3_MAX_RESERVE_BLOCKS
)
206 rsv_window_size
= EXT3_MAX_RESERVE_BLOCKS
;
209 * need to allocate reservation structure for this inode
210 * before set the window size
212 mutex_lock(&ei
->truncate_mutex
);
213 if (!ei
->i_block_alloc_info
)
214 ext3_init_block_alloc_info(inode
);
216 if (ei
->i_block_alloc_info
){
217 struct ext3_reserve_window_node
*rsv
= &ei
->i_block_alloc_info
->rsv_window_node
;
218 rsv
->rsv_goal_size
= rsv_window_size
;
220 mutex_unlock(&ei
->truncate_mutex
);
222 mnt_drop_write(filp
->f_path
.mnt
);
225 case EXT3_IOC_GROUP_EXTEND
: {
226 ext3_fsblk_t n_blocks_count
;
227 struct super_block
*sb
= inode
->i_sb
;
230 if (!capable(CAP_SYS_RESOURCE
))
233 err
= mnt_want_write(filp
->f_path
.mnt
);
237 if (get_user(n_blocks_count
, (__u32 __user
*)arg
)) {
239 goto group_extend_out
;
241 err
= ext3_group_extend(sb
, EXT3_SB(sb
)->s_es
, n_blocks_count
);
242 journal_lock_updates(EXT3_SB(sb
)->s_journal
);
243 err2
= journal_flush(EXT3_SB(sb
)->s_journal
);
244 journal_unlock_updates(EXT3_SB(sb
)->s_journal
);
248 mnt_drop_write(filp
->f_path
.mnt
);
251 case EXT3_IOC_GROUP_ADD
: {
252 struct ext3_new_group_data input
;
253 struct super_block
*sb
= inode
->i_sb
;
256 if (!capable(CAP_SYS_RESOURCE
))
259 err
= mnt_want_write(filp
->f_path
.mnt
);
263 if (copy_from_user(&input
, (struct ext3_new_group_input __user
*)arg
,
269 err
= ext3_group_add(sb
, &input
);
270 journal_lock_updates(EXT3_SB(sb
)->s_journal
);
271 err2
= journal_flush(EXT3_SB(sb
)->s_journal
);
272 journal_unlock_updates(EXT3_SB(sb
)->s_journal
);
276 mnt_drop_write(filp
->f_path
.mnt
);
281 struct super_block
*sb
= inode
->i_sb
;
282 struct fstrim_range range
;
285 if (!capable(CAP_SYS_ADMIN
))
288 if (copy_from_user(&range
, (struct fstrim_range
*)arg
,
292 ret
= ext3_trim_fs(sb
, &range
);
296 if (copy_to_user((struct fstrim_range
*)arg
, &range
,
309 long ext3_compat_ioctl(struct file
*file
, unsigned int cmd
, unsigned long arg
)
311 /* These are just misnamed, they actually get/put from/to user an int */
313 case EXT3_IOC32_GETFLAGS
:
314 cmd
= EXT3_IOC_GETFLAGS
;
316 case EXT3_IOC32_SETFLAGS
:
317 cmd
= EXT3_IOC_SETFLAGS
;
319 case EXT3_IOC32_GETVERSION
:
320 cmd
= EXT3_IOC_GETVERSION
;
322 case EXT3_IOC32_SETVERSION
:
323 cmd
= EXT3_IOC_SETVERSION
;
325 case EXT3_IOC32_GROUP_EXTEND
:
326 cmd
= EXT3_IOC_GROUP_EXTEND
;
328 case EXT3_IOC32_GETVERSION_OLD
:
329 cmd
= EXT3_IOC_GETVERSION_OLD
;
331 case EXT3_IOC32_SETVERSION_OLD
:
332 cmd
= EXT3_IOC_SETVERSION_OLD
;
334 #ifdef CONFIG_JBD_DEBUG
335 case EXT3_IOC32_WAIT_FOR_READONLY
:
336 cmd
= EXT3_IOC_WAIT_FOR_READONLY
;
339 case EXT3_IOC32_GETRSVSZ
:
340 cmd
= EXT3_IOC_GETRSVSZ
;
342 case EXT3_IOC32_SETRSVSZ
:
343 cmd
= EXT3_IOC_SETRSVSZ
;
345 case EXT3_IOC_GROUP_ADD
:
350 return ext3_ioctl(file
, cmd
, (unsigned long) compat_ptr(arg
));