blob: d50fc47169c1aba4b4388677dfabfd4f53b11933 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/fs/fat/file.c
3 *
4 * Written 1992,1993 by Werner Almesberger
5 *
6 * regular file handling primitives for fat-based filesystems
7 */
8
Randy Dunlap16f7e0f2006-01-11 12:17:46 -08009#include <linux/capability.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070010#include <linux/module.h>
11#include <linux/time.h>
12#include <linux/msdos_fs.h>
13#include <linux/smp_lock.h>
14#include <linux/buffer_head.h>
OGAWA Hirofumi05eb0b52006-01-08 01:02:13 -080015#include <linux/writeback.h>
Chris Masonae78bf92006-09-29 02:00:03 -070016#include <linux/blkdev.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017
Linus Torvalds1da177e2005-04-16 15:20:36 -070018int fat_generic_ioctl(struct inode *inode, struct file *filp,
19 unsigned int cmd, unsigned long arg)
20{
21 struct msdos_sb_info *sbi = MSDOS_SB(inode->i_sb);
22 u32 __user *user_attr = (u32 __user *)arg;
23
24 switch (cmd) {
25 case FAT_IOCTL_GET_ATTRIBUTES:
26 {
27 u32 attr;
28
29 if (inode->i_ino == MSDOS_ROOT_INO)
30 attr = ATTR_DIR;
31 else
32 attr = fat_attr(inode);
33
34 return put_user(attr, user_attr);
35 }
36 case FAT_IOCTL_SET_ATTRIBUTES:
37 {
38 u32 attr, oldattr;
39 int err, is_dir = S_ISDIR(inode->i_mode);
40 struct iattr ia;
41
42 err = get_user(attr, user_attr);
43 if (err)
44 return err;
45
Jes Sorensen1b1dcc12006-01-09 15:59:24 -080046 mutex_lock(&inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070047
48 if (IS_RDONLY(inode)) {
49 err = -EROFS;
50 goto up;
51 }
52
53 /*
54 * ATTR_VOLUME and ATTR_DIR cannot be changed; this also
55 * prevents the user from turning us into a VFAT
56 * longname entry. Also, we obviously can't set
57 * any of the NTFS attributes in the high 24 bits.
58 */
59 attr &= 0xff & ~(ATTR_VOLUME | ATTR_DIR);
60 /* Merge in ATTR_VOLUME and ATTR_DIR */
61 attr |= (MSDOS_I(inode)->i_attrs & ATTR_VOLUME) |
62 (is_dir ? ATTR_DIR : 0);
63 oldattr = fat_attr(inode);
64
65 /* Equivalent to a chmod() */
66 ia.ia_valid = ATTR_MODE | ATTR_CTIME;
67 if (is_dir) {
68 ia.ia_mode = MSDOS_MKMODE(attr,
69 S_IRWXUGO & ~sbi->options.fs_dmask)
70 | S_IFDIR;
71 } else {
72 ia.ia_mode = MSDOS_MKMODE(attr,
73 (S_IRUGO | S_IWUGO | (inode->i_mode & S_IXUGO))
74 & ~sbi->options.fs_fmask)
75 | S_IFREG;
76 }
77
78 /* The root directory has no attributes */
79 if (inode->i_ino == MSDOS_ROOT_INO && attr != ATTR_DIR) {
80 err = -EINVAL;
81 goto up;
82 }
83
84 if (sbi->options.sys_immutable) {
85 if ((attr | oldattr) & ATTR_SYS) {
86 if (!capable(CAP_LINUX_IMMUTABLE)) {
87 err = -EPERM;
88 goto up;
89 }
90 }
91 }
92
93 /* This MUST be done before doing anything irreversible... */
94 err = notify_change(filp->f_dentry, &ia);
95 if (err)
96 goto up;
97
98 if (sbi->options.sys_immutable) {
99 if (attr & ATTR_SYS)
100 inode->i_flags |= S_IMMUTABLE;
101 else
102 inode->i_flags &= S_IMMUTABLE;
103 }
104
105 MSDOS_I(inode)->i_attrs = attr & ATTR_UNUSED;
106 mark_inode_dirty(inode);
107 up:
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800108 mutex_unlock(&inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109 return err;
110 }
111 default:
112 return -ENOTTY; /* Inappropriate ioctl for device */
113 }
114}
115
Chris Masonae78bf92006-09-29 02:00:03 -0700116static int fat_file_release(struct inode *inode, struct file *filp)
117{
118 if ((filp->f_mode & FMODE_WRITE) &&
119 MSDOS_SB(inode->i_sb)->options.flush) {
120 fat_flush_inodes(inode->i_sb, inode, NULL);
121 blk_congestion_wait(WRITE, HZ/10);
122 }
123 return 0;
124}
125
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -0800126const struct file_operations fat_file_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127 .llseek = generic_file_llseek,
128 .read = do_sync_read,
129 .write = do_sync_write,
130 .readv = generic_file_readv,
OGAWA Hirofumief402262005-09-16 19:28:13 -0700131 .writev = generic_file_writev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 .aio_read = generic_file_aio_read,
OGAWA Hirofumief402262005-09-16 19:28:13 -0700133 .aio_write = generic_file_aio_write,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134 .mmap = generic_file_mmap,
Chris Masonae78bf92006-09-29 02:00:03 -0700135 .release = fat_file_release,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 .ioctl = fat_generic_ioctl,
137 .fsync = file_fsync,
138 .sendfile = generic_file_sendfile,
139};
140
OGAWA Hirofumi05eb0b52006-01-08 01:02:13 -0800141static int fat_cont_expand(struct inode *inode, loff_t size)
142{
143 struct address_space *mapping = inode->i_mapping;
144 loff_t start = inode->i_size, count = size - inode->i_size;
145 int err;
146
147 err = generic_cont_expand_simple(inode, size);
148 if (err)
149 goto out;
150
151 inode->i_ctime = inode->i_mtime = CURRENT_TIME_SEC;
152 mark_inode_dirty(inode);
153 if (IS_SYNC(inode))
154 err = sync_page_range_nolock(inode, mapping, start, count);
155out:
156 return err;
157}
158
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159int fat_notify_change(struct dentry *dentry, struct iattr *attr)
160{
161 struct msdos_sb_info *sbi = MSDOS_SB(dentry->d_sb);
162 struct inode *inode = dentry->d_inode;
163 int mask, error = 0;
164
165 lock_kernel();
166
OGAWA Hirofumi05eb0b52006-01-08 01:02:13 -0800167 /*
168 * Expand the file. Since inode_setattr() updates ->i_size
169 * before calling the ->truncate(), but FAT needs to fill the
170 * hole before it.
171 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 if (attr->ia_valid & ATTR_SIZE) {
173 if (attr->ia_size > inode->i_size) {
OGAWA Hirofumi05eb0b52006-01-08 01:02:13 -0800174 error = fat_cont_expand(inode, attr->ia_size);
175 if (error || attr->ia_valid == ATTR_SIZE)
176 goto out;
177 attr->ia_valid &= ~ATTR_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 }
179 }
180
181 error = inode_change_ok(inode, attr);
182 if (error) {
183 if (sbi->options.quiet)
184 error = 0;
185 goto out;
186 }
187 if (((attr->ia_valid & ATTR_UID) &&
188 (attr->ia_uid != sbi->options.fs_uid)) ||
189 ((attr->ia_valid & ATTR_GID) &&
190 (attr->ia_gid != sbi->options.fs_gid)) ||
191 ((attr->ia_valid & ATTR_MODE) &&
192 (attr->ia_mode & ~MSDOS_VALID_MODE)))
193 error = -EPERM;
194
195 if (error) {
196 if (sbi->options.quiet)
197 error = 0;
198 goto out;
199 }
200 error = inode_setattr(inode, attr);
201 if (error)
202 goto out;
203
204 if (S_ISDIR(inode->i_mode))
205 mask = sbi->options.fs_dmask;
206 else
207 mask = sbi->options.fs_fmask;
208 inode->i_mode &= S_IFMT | (S_IRWXUGO & ~mask);
209out:
210 unlock_kernel();
211 return error;
212}
213
OGAWA Hirofumi7c709d02006-01-08 01:02:10 -0800214EXPORT_SYMBOL_GPL(fat_notify_change);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215
216/* Free all clusters after the skip'th cluster. */
217static int fat_free(struct inode *inode, int skip)
218{
219 struct super_block *sb = inode->i_sb;
220 int err, wait, free_start, i_start, i_logstart;
221
222 if (MSDOS_I(inode)->i_start == 0)
223 return 0;
224
OGAWA Hirofumi3b641402006-02-03 03:04:44 -0800225 fat_cache_inval_inode(inode);
226
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 wait = IS_DIRSYNC(inode);
OGAWA Hirofumi3b641402006-02-03 03:04:44 -0800228 i_start = free_start = MSDOS_I(inode)->i_start;
229 i_logstart = MSDOS_I(inode)->i_logstart;
230
231 /* First, we write the new file size. */
232 if (!skip) {
233 MSDOS_I(inode)->i_start = 0;
234 MSDOS_I(inode)->i_logstart = 0;
235 }
236 MSDOS_I(inode)->i_attrs |= ATTR_ARCH;
237 inode->i_ctime = inode->i_mtime = CURRENT_TIME_SEC;
238 if (wait) {
239 err = fat_sync_inode(inode);
240 if (err) {
241 MSDOS_I(inode)->i_start = i_start;
242 MSDOS_I(inode)->i_logstart = i_logstart;
243 return err;
244 }
245 } else
246 mark_inode_dirty(inode);
247
248 /* Write a new EOF, and get the remaining cluster chain for freeing. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 if (skip) {
250 struct fat_entry fatent;
251 int ret, fclus, dclus;
252
253 ret = fat_get_cluster(inode, skip - 1, &fclus, &dclus);
254 if (ret < 0)
255 return ret;
256 else if (ret == FAT_ENT_EOF)
257 return 0;
258
259 fatent_init(&fatent);
260 ret = fat_ent_read(inode, &fatent, dclus);
261 if (ret == FAT_ENT_EOF) {
262 fatent_brelse(&fatent);
263 return 0;
264 } else if (ret == FAT_ENT_FREE) {
265 fat_fs_panic(sb,
266 "%s: invalid cluster chain (i_pos %lld)",
267 __FUNCTION__, MSDOS_I(inode)->i_pos);
268 ret = -EIO;
269 } else if (ret > 0) {
270 err = fat_ent_write(inode, &fatent, FAT_ENT_EOF, wait);
271 if (err)
272 ret = err;
273 }
274 fatent_brelse(&fatent);
275 if (ret < 0)
276 return ret;
277
278 free_start = ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 inode->i_blocks = skip << (MSDOS_SB(sb)->cluster_bits - 9);
281
282 /* Freeing the remained cluster chain */
283 return fat_free_clusters(inode, free_start);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284}
285
286void fat_truncate(struct inode *inode)
287{
288 struct msdos_sb_info *sbi = MSDOS_SB(inode->i_sb);
289 const unsigned int cluster_size = sbi->cluster_size;
290 int nr_clusters;
291
292 /*
293 * This protects against truncating a file bigger than it was then
294 * trying to write into the hole.
295 */
296 if (MSDOS_I(inode)->mmu_private > inode->i_size)
297 MSDOS_I(inode)->mmu_private = inode->i_size;
298
299 nr_clusters = (inode->i_size + (cluster_size - 1)) >> sbi->cluster_bits;
300
301 lock_kernel();
302 fat_free(inode, nr_clusters);
303 unlock_kernel();
Chris Masonae78bf92006-09-29 02:00:03 -0700304 fat_flush_inodes(inode->i_sb, inode, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305}
306
307struct inode_operations fat_file_inode_operations = {
308 .truncate = fat_truncate,
309 .setattr = fat_notify_change,
310};