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_file(filp
);
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_file(filp
);
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_file(filp
);
132 if (get_user(generation
, (int __user
*) arg
)) {
137 mutex_lock(&inode
->i_mutex
);
138 handle
= ext3_journal_start(inode
, 1);
139 if (IS_ERR(handle
)) {
140 err
= PTR_ERR(handle
);
143 err
= ext3_reserve_inode_write(handle
, inode
, &iloc
);
145 inode
->i_ctime
= CURRENT_TIME_SEC
;
146 inode
->i_generation
= generation
;
147 err
= ext3_mark_iloc_dirty(handle
, inode
, &iloc
);
149 ext3_journal_stop(handle
);
152 mutex_unlock(&inode
->i_mutex
);
154 mnt_drop_write_file(filp
);
157 case EXT3_IOC_GETRSVSZ
:
158 if (test_opt(inode
->i_sb
, RESERVATION
)
159 && S_ISREG(inode
->i_mode
)
160 && ei
->i_block_alloc_info
) {
161 rsv_window_size
= ei
->i_block_alloc_info
->rsv_window_node
.rsv_goal_size
;
162 return put_user(rsv_window_size
, (int __user
*)arg
);
165 case EXT3_IOC_SETRSVSZ
: {
168 if (!test_opt(inode
->i_sb
, RESERVATION
) ||!S_ISREG(inode
->i_mode
))
171 err
= mnt_want_write_file(filp
);
175 if (!inode_owner_or_capable(inode
)) {
180 if (get_user(rsv_window_size
, (int __user
*)arg
)) {
185 if (rsv_window_size
> EXT3_MAX_RESERVE_BLOCKS
)
186 rsv_window_size
= EXT3_MAX_RESERVE_BLOCKS
;
189 * need to allocate reservation structure for this inode
190 * before set the window size
192 mutex_lock(&ei
->truncate_mutex
);
193 if (!ei
->i_block_alloc_info
)
194 ext3_init_block_alloc_info(inode
);
196 if (ei
->i_block_alloc_info
){
197 struct ext3_reserve_window_node
*rsv
= &ei
->i_block_alloc_info
->rsv_window_node
;
198 rsv
->rsv_goal_size
= rsv_window_size
;
200 mutex_unlock(&ei
->truncate_mutex
);
202 mnt_drop_write_file(filp
);
205 case EXT3_IOC_GROUP_EXTEND
: {
206 ext3_fsblk_t n_blocks_count
;
207 struct super_block
*sb
= inode
->i_sb
;
210 if (!capable(CAP_SYS_RESOURCE
))
213 err
= mnt_want_write_file(filp
);
217 if (get_user(n_blocks_count
, (__u32 __user
*)arg
)) {
219 goto group_extend_out
;
221 err
= ext3_group_extend(sb
, EXT3_SB(sb
)->s_es
, n_blocks_count
);
222 journal_lock_updates(EXT3_SB(sb
)->s_journal
);
223 err2
= journal_flush(EXT3_SB(sb
)->s_journal
);
224 journal_unlock_updates(EXT3_SB(sb
)->s_journal
);
228 mnt_drop_write_file(filp
);
231 case EXT3_IOC_GROUP_ADD
: {
232 struct ext3_new_group_data input
;
233 struct super_block
*sb
= inode
->i_sb
;
236 if (!capable(CAP_SYS_RESOURCE
))
239 err
= mnt_want_write_file(filp
);
243 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 err2
= journal_flush(EXT3_SB(sb
)->s_journal
);
252 journal_unlock_updates(EXT3_SB(sb
)->s_journal
);
256 mnt_drop_write_file(filp
);
261 struct super_block
*sb
= inode
->i_sb
;
262 struct fstrim_range range
;
265 if (!capable(CAP_SYS_ADMIN
))
268 if (copy_from_user(&range
, (struct fstrim_range __user
*)arg
,
272 ret
= ext3_trim_fs(sb
, &range
);
276 if (copy_to_user((struct fstrim_range __user
*)arg
, &range
,
289 long ext3_compat_ioctl(struct file
*file
, unsigned int cmd
, unsigned long arg
)
291 /* These are just misnamed, they actually get/put from/to user an int */
293 case EXT3_IOC32_GETFLAGS
:
294 cmd
= EXT3_IOC_GETFLAGS
;
296 case EXT3_IOC32_SETFLAGS
:
297 cmd
= EXT3_IOC_SETFLAGS
;
299 case EXT3_IOC32_GETVERSION
:
300 cmd
= EXT3_IOC_GETVERSION
;
302 case EXT3_IOC32_SETVERSION
:
303 cmd
= EXT3_IOC_SETVERSION
;
305 case EXT3_IOC32_GROUP_EXTEND
:
306 cmd
= EXT3_IOC_GROUP_EXTEND
;
308 case EXT3_IOC32_GETVERSION_OLD
:
309 cmd
= EXT3_IOC_GETVERSION_OLD
;
311 case EXT3_IOC32_SETVERSION_OLD
:
312 cmd
= EXT3_IOC_SETVERSION_OLD
;
314 #ifdef CONFIG_JBD_DEBUG
315 case EXT3_IOC32_WAIT_FOR_READONLY
:
316 cmd
= EXT3_IOC_WAIT_FOR_READONLY
;
319 case EXT3_IOC32_GETRSVSZ
:
320 cmd
= EXT3_IOC_GETRSVSZ
;
322 case EXT3_IOC32_SETRSVSZ
:
323 cmd
= EXT3_IOC_SETRSVSZ
;
325 case EXT3_IOC_GROUP_ADD
:
330 return ext3_ioctl(file
, cmd
, (unsigned long) compat_ptr(arg
));