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/ext3_fs.h>
13 #include <linux/ext3_jbd.h>
14 #include <linux/time.h>
15 #include <asm/uaccess.h>
18 int ext3_ioctl (struct inode
* inode
, struct file
* filp
, unsigned int cmd
,
21 struct ext3_inode_info
*ei
= EXT3_I(inode
);
23 unsigned short rsv_window_size
;
25 ext3_debug ("cmd = %u, arg = %lu\n", cmd
, arg
);
28 case EXT3_IOC_GETFLAGS
:
29 flags
= ei
->i_flags
& EXT3_FL_USER_VISIBLE
;
30 return put_user(flags
, (int __user
*) arg
);
31 case EXT3_IOC_SETFLAGS
: {
32 handle_t
*handle
= NULL
;
34 struct ext3_iloc iloc
;
35 unsigned int oldflags
;
41 if ((current
->fsuid
!= inode
->i_uid
) && !capable(CAP_FOWNER
))
44 if (get_user(flags
, (int __user
*) arg
))
47 if (!S_ISDIR(inode
->i_mode
))
48 flags
&= ~EXT3_DIRSYNC_FL
;
50 oldflags
= ei
->i_flags
;
52 /* The JOURNAL_DATA flag is modifiable only by root */
53 jflag
= flags
& EXT3_JOURNAL_DATA_FL
;
56 * The IMMUTABLE and APPEND_ONLY flags can only be changed by
57 * the relevant capability.
59 * This test looks nicer. Thanks to Pauline Middelink
61 if ((flags
^ oldflags
) & (EXT3_APPEND_FL
| EXT3_IMMUTABLE_FL
)) {
62 if (!capable(CAP_LINUX_IMMUTABLE
))
67 * The JOURNAL_DATA flag can only be changed by
68 * the relevant capability.
70 if ((jflag
^ oldflags
) & (EXT3_JOURNAL_DATA_FL
)) {
71 if (!capable(CAP_SYS_RESOURCE
))
76 handle
= ext3_journal_start(inode
, 1);
78 return PTR_ERR(handle
);
81 err
= ext3_reserve_inode_write(handle
, inode
, &iloc
);
85 flags
= flags
& EXT3_FL_USER_MODIFIABLE
;
86 flags
|= oldflags
& ~EXT3_FL_USER_MODIFIABLE
;
89 ext3_set_inode_flags(inode
);
90 inode
->i_ctime
= CURRENT_TIME_SEC
;
92 err
= ext3_mark_iloc_dirty(handle
, inode
, &iloc
);
94 ext3_journal_stop(handle
);
98 if ((jflag
^ oldflags
) & (EXT3_JOURNAL_DATA_FL
))
99 err
= ext3_change_inode_journal_flag(inode
, jflag
);
102 case EXT3_IOC_GETVERSION
:
103 case EXT3_IOC_GETVERSION_OLD
:
104 return put_user(inode
->i_generation
, (int __user
*) arg
);
105 case EXT3_IOC_SETVERSION
:
106 case EXT3_IOC_SETVERSION_OLD
: {
108 struct ext3_iloc iloc
;
112 if ((current
->fsuid
!= inode
->i_uid
) && !capable(CAP_FOWNER
))
114 if (IS_RDONLY(inode
))
116 if (get_user(generation
, (int __user
*) arg
))
119 handle
= ext3_journal_start(inode
, 1);
121 return PTR_ERR(handle
);
122 err
= ext3_reserve_inode_write(handle
, inode
, &iloc
);
124 inode
->i_ctime
= CURRENT_TIME_SEC
;
125 inode
->i_generation
= generation
;
126 err
= ext3_mark_iloc_dirty(handle
, inode
, &iloc
);
128 ext3_journal_stop(handle
);
131 #ifdef CONFIG_JBD_DEBUG
132 case EXT3_IOC_WAIT_FOR_READONLY
:
134 * This is racy - by the time we're woken up and running,
135 * the superblock could be released. And the module could
136 * have been unloaded. So sue me.
138 * Returns 1 if it slept, else zero.
141 struct super_block
*sb
= inode
->i_sb
;
142 DECLARE_WAITQUEUE(wait
, current
);
145 set_current_state(TASK_INTERRUPTIBLE
);
146 add_wait_queue(&EXT3_SB(sb
)->ro_wait_queue
, &wait
);
147 if (timer_pending(&EXT3_SB(sb
)->turn_ro_timer
)) {
151 remove_wait_queue(&EXT3_SB(sb
)->ro_wait_queue
, &wait
);
155 case EXT3_IOC_GETRSVSZ
:
156 if (test_opt(inode
->i_sb
, RESERVATION
)
157 && S_ISREG(inode
->i_mode
)
158 && ei
->i_block_alloc_info
) {
159 rsv_window_size
= ei
->i_block_alloc_info
->rsv_window_node
.rsv_goal_size
;
160 return put_user(rsv_window_size
, (int __user
*)arg
);
163 case EXT3_IOC_SETRSVSZ
: {
165 if (!test_opt(inode
->i_sb
, RESERVATION
) ||!S_ISREG(inode
->i_mode
))
168 if (IS_RDONLY(inode
))
171 if ((current
->fsuid
!= inode
->i_uid
) && !capable(CAP_FOWNER
))
174 if (get_user(rsv_window_size
, (int __user
*)arg
))
177 if (rsv_window_size
> EXT3_MAX_RESERVE_BLOCKS
)
178 rsv_window_size
= EXT3_MAX_RESERVE_BLOCKS
;
181 * need to allocate reservation structure for this inode
182 * before set the window size
184 down(&ei
->truncate_sem
);
185 if (!ei
->i_block_alloc_info
)
186 ext3_init_block_alloc_info(inode
);
188 if (ei
->i_block_alloc_info
){
189 struct ext3_reserve_window_node
*rsv
= &ei
->i_block_alloc_info
->rsv_window_node
;
190 rsv
->rsv_goal_size
= rsv_window_size
;
192 up(&ei
->truncate_sem
);
195 case EXT3_IOC_GROUP_EXTEND
: {
196 unsigned long n_blocks_count
;
197 struct super_block
*sb
= inode
->i_sb
;
200 if (!capable(CAP_SYS_RESOURCE
))
203 if (IS_RDONLY(inode
))
206 if (get_user(n_blocks_count
, (__u32 __user
*)arg
))
209 err
= ext3_group_extend(sb
, EXT3_SB(sb
)->s_es
, n_blocks_count
);
210 journal_lock_updates(EXT3_SB(sb
)->s_journal
);
211 journal_flush(EXT3_SB(sb
)->s_journal
);
212 journal_unlock_updates(EXT3_SB(sb
)->s_journal
);
216 case EXT3_IOC_GROUP_ADD
: {
217 struct ext3_new_group_data input
;
218 struct super_block
*sb
= inode
->i_sb
;
221 if (!capable(CAP_SYS_RESOURCE
))
224 if (IS_RDONLY(inode
))
227 if (copy_from_user(&input
, (struct ext3_new_group_input __user
*)arg
,
231 err
= ext3_group_add(sb
, &input
);
232 journal_lock_updates(EXT3_SB(sb
)->s_journal
);
233 journal_flush(EXT3_SB(sb
)->s_journal
);
234 journal_unlock_updates(EXT3_SB(sb
)->s_journal
);