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 <asm/uaccess.h>
19 int ext3_ioctl (struct inode * inode, struct file * filp, unsigned int cmd,
22 struct ext3_inode_info *ei = EXT3_I(inode);
24 unsigned short rsv_window_size;
26 ext3_debug ("cmd = %u, arg = %lu\n", cmd, arg);
29 case EXT3_IOC_GETFLAGS:
30 flags = ei->i_flags & EXT3_FL_USER_VISIBLE;
31 return put_user(flags, (int __user *) arg);
32 case EXT3_IOC_SETFLAGS: {
33 handle_t *handle = NULL;
35 struct ext3_iloc iloc;
36 unsigned int oldflags;
42 if ((current->fsuid != inode->i_uid) && !capable(CAP_FOWNER))
45 if (get_user(flags, (int __user *) arg))
48 if (!S_ISDIR(inode->i_mode))
49 flags &= ~EXT3_DIRSYNC_FL;
51 oldflags = ei->i_flags;
53 /* The JOURNAL_DATA flag is modifiable only by root */
54 jflag = flags & EXT3_JOURNAL_DATA_FL;
57 * The IMMUTABLE and APPEND_ONLY flags can only be changed by
58 * the relevant capability.
60 * This test looks nicer. Thanks to Pauline Middelink
62 if ((flags ^ oldflags) & (EXT3_APPEND_FL | EXT3_IMMUTABLE_FL)) {
63 if (!capable(CAP_LINUX_IMMUTABLE))
68 * The JOURNAL_DATA flag can only be changed by
69 * the relevant capability.
71 if ((jflag ^ oldflags) & (EXT3_JOURNAL_DATA_FL)) {
72 if (!capable(CAP_SYS_RESOURCE))
77 handle = ext3_journal_start(inode, 1);
79 return PTR_ERR(handle);
82 err = ext3_reserve_inode_write(handle, inode, &iloc);
86 flags = flags & EXT3_FL_USER_MODIFIABLE;
87 flags |= oldflags & ~EXT3_FL_USER_MODIFIABLE;
90 ext3_set_inode_flags(inode);
91 inode->i_ctime = CURRENT_TIME_SEC;
93 err = ext3_mark_iloc_dirty(handle, inode, &iloc);
95 ext3_journal_stop(handle);
99 if ((jflag ^ oldflags) & (EXT3_JOURNAL_DATA_FL))
100 err = ext3_change_inode_journal_flag(inode, jflag);
103 case EXT3_IOC_GETVERSION:
104 case EXT3_IOC_GETVERSION_OLD:
105 return put_user(inode->i_generation, (int __user *) arg);
106 case EXT3_IOC_SETVERSION:
107 case EXT3_IOC_SETVERSION_OLD: {
109 struct ext3_iloc iloc;
113 if ((current->fsuid != inode->i_uid) && !capable(CAP_FOWNER))
115 if (IS_RDONLY(inode))
117 if (get_user(generation, (int __user *) arg))
120 handle = ext3_journal_start(inode, 1);
122 return PTR_ERR(handle);
123 err = ext3_reserve_inode_write(handle, inode, &iloc);
125 inode->i_ctime = CURRENT_TIME_SEC;
126 inode->i_generation = generation;
127 err = ext3_mark_iloc_dirty(handle, inode, &iloc);
129 ext3_journal_stop(handle);
132 #ifdef CONFIG_JBD_DEBUG
133 case EXT3_IOC_WAIT_FOR_READONLY:
135 * This is racy - by the time we're woken up and running,
136 * the superblock could be released. And the module could
137 * have been unloaded. So sue me.
139 * Returns 1 if it slept, else zero.
142 struct super_block *sb = inode->i_sb;
143 DECLARE_WAITQUEUE(wait, current);
146 set_current_state(TASK_INTERRUPTIBLE);
147 add_wait_queue(&EXT3_SB(sb)->ro_wait_queue, &wait);
148 if (timer_pending(&EXT3_SB(sb)->turn_ro_timer)) {
152 remove_wait_queue(&EXT3_SB(sb)->ro_wait_queue, &wait);
156 case EXT3_IOC_GETRSVSZ:
157 if (test_opt(inode->i_sb, RESERVATION)
158 && S_ISREG(inode->i_mode)
159 && ei->i_block_alloc_info) {
160 rsv_window_size = ei->i_block_alloc_info->rsv_window_node.rsv_goal_size;
161 return put_user(rsv_window_size, (int __user *)arg);
164 case EXT3_IOC_SETRSVSZ: {
166 if (!test_opt(inode->i_sb, RESERVATION) ||!S_ISREG(inode->i_mode))
169 if (IS_RDONLY(inode))
172 if ((current->fsuid != inode->i_uid) && !capable(CAP_FOWNER))
175 if (get_user(rsv_window_size, (int __user *)arg))
178 if (rsv_window_size > EXT3_MAX_RESERVE_BLOCKS)
179 rsv_window_size = EXT3_MAX_RESERVE_BLOCKS;
182 * need to allocate reservation structure for this inode
183 * before set the window size
185 mutex_lock(&ei->truncate_mutex);
186 if (!ei->i_block_alloc_info)
187 ext3_init_block_alloc_info(inode);
189 if (ei->i_block_alloc_info){
190 struct ext3_reserve_window_node *rsv = &ei->i_block_alloc_info->rsv_window_node;
191 rsv->rsv_goal_size = rsv_window_size;
193 mutex_unlock(&ei->truncate_mutex);
196 case EXT3_IOC_GROUP_EXTEND: {
197 unsigned long n_blocks_count;
198 struct super_block *sb = inode->i_sb;
201 if (!capable(CAP_SYS_RESOURCE))
204 if (IS_RDONLY(inode))
207 if (get_user(n_blocks_count, (__u32 __user *)arg))
210 err = ext3_group_extend(sb, EXT3_SB(sb)->s_es, n_blocks_count);
211 journal_lock_updates(EXT3_SB(sb)->s_journal);
212 journal_flush(EXT3_SB(sb)->s_journal);
213 journal_unlock_updates(EXT3_SB(sb)->s_journal);
217 case EXT3_IOC_GROUP_ADD: {
218 struct ext3_new_group_data input;
219 struct super_block *sb = inode->i_sb;
222 if (!capable(CAP_SYS_RESOURCE))
225 if (IS_RDONLY(inode))
228 if (copy_from_user(&input, (struct ext3_new_group_input __user *)arg,
232 err = ext3_group_add(sb, &input);
233 journal_lock_updates(EXT3_SB(sb)->s_journal);
234 journal_flush(EXT3_SB(sb)->s_journal);
235 journal_unlock_updates(EXT3_SB(sb)->s_journal);