blob: 7aaa21cf019a5ac4929643c35e39c5628640437c [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/fs/fat/inode.c
3 *
4 * Written 1992,1993 by Werner Almesberger
5 * VFAT extensions by Gordon Chaffee, merged with msdos fs by Henrik Storner
6 * Rewritten for the constant inumbers support by Al Viro
7 *
8 * Fixes:
9 *
10 * Max Cohan: Fixed invalid FSINFO offset when info_sector is 0
11 */
12
13#include <linux/module.h>
14#include <linux/init.h>
15#include <linux/time.h>
16#include <linux/slab.h>
17#include <linux/smp_lock.h>
18#include <linux/seq_file.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#include <linux/pagemap.h>
OGAWA Hirofumia5425d22006-01-08 01:02:10 -080020#include <linux/mpage.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include <linux/buffer_head.h>
Christoph Hellwiga5694252007-07-17 04:04:28 -070022#include <linux/exportfs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include <linux/mount.h>
24#include <linux/vfs.h>
25#include <linux/parser.h>
OGAWA Hirofumie5174ba2006-01-08 01:02:11 -080026#include <linux/uio.h>
Chris Masonae78bf92006-09-29 02:00:03 -070027#include <linux/writeback.h>
Vignesh Babu BMe7d709c2007-05-08 00:24:27 -070028#include <linux/log2.h>
OGAWA Hirofumid3dfa822008-11-06 12:53:49 -080029#include <linux/hash.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include <asm/unaligned.h>
OGAWA Hirofumi9e975da2008-11-06 12:53:46 -080031#include "fat.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070032
33#ifndef CONFIG_FAT_DEFAULT_IOCHARSET
34/* if user don't select VFAT, this is undefined. */
35#define CONFIG_FAT_DEFAULT_IOCHARSET ""
36#endif
37
38static int fat_default_codepage = CONFIG_FAT_DEFAULT_CODEPAGE;
39static char fat_default_iocharset[] = CONFIG_FAT_DEFAULT_IOCHARSET;
40
41
42static int fat_add_cluster(struct inode *inode)
43{
44 int err, cluster;
45
46 err = fat_alloc_clusters(inode, &cluster, 1);
47 if (err)
48 return err;
49 /* FIXME: this cluster should be added after data of this
50 * cluster is writed */
51 err = fat_chain_add(inode, cluster, 1);
52 if (err)
53 fat_free_clusters(inode, cluster);
54 return err;
55}
56
OGAWA Hirofumi6a1d9802006-09-27 01:50:45 -070057static inline int __fat_get_block(struct inode *inode, sector_t iblock,
58 unsigned long *max_blocks,
59 struct buffer_head *bh_result, int create)
Linus Torvalds1da177e2005-04-16 15:20:36 -070060{
61 struct super_block *sb = inode->i_sb;
OGAWA Hirofumie5174ba2006-01-08 01:02:11 -080062 struct msdos_sb_info *sbi = MSDOS_SB(sb);
OGAWA Hirofumie5174ba2006-01-08 01:02:11 -080063 unsigned long mapped_blocks;
OGAWA Hirofumi6a1d9802006-09-27 01:50:45 -070064 sector_t phys;
OGAWA Hirofumie5174ba2006-01-08 01:02:11 -080065 int err, offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -070066
OGAWA Hirofumie5174ba2006-01-08 01:02:11 -080067 err = fat_bmap(inode, iblock, &phys, &mapped_blocks);
Linus Torvalds1da177e2005-04-16 15:20:36 -070068 if (err)
69 return err;
70 if (phys) {
71 map_bh(bh_result, sb, phys);
OGAWA Hirofumie5174ba2006-01-08 01:02:11 -080072 *max_blocks = min(mapped_blocks, *max_blocks);
Linus Torvalds1da177e2005-04-16 15:20:36 -070073 return 0;
74 }
75 if (!create)
76 return 0;
OGAWA Hirofumie5174ba2006-01-08 01:02:11 -080077
Linus Torvalds1da177e2005-04-16 15:20:36 -070078 if (iblock != MSDOS_I(inode)->mmu_private >> sb->s_blocksize_bits) {
79 fat_fs_panic(sb, "corrupted file size (i_pos %lld, %lld)",
OGAWA Hirofumi6a1d9802006-09-27 01:50:45 -070080 MSDOS_I(inode)->i_pos, MSDOS_I(inode)->mmu_private);
Linus Torvalds1da177e2005-04-16 15:20:36 -070081 return -EIO;
82 }
OGAWA Hirofumie5174ba2006-01-08 01:02:11 -080083
84 offset = (unsigned long)iblock & (sbi->sec_per_clus - 1);
85 if (!offset) {
86 /* TODO: multiple cluster allocation would be desirable. */
Linus Torvalds1da177e2005-04-16 15:20:36 -070087 err = fat_add_cluster(inode);
88 if (err)
89 return err;
90 }
OGAWA Hirofumie5174ba2006-01-08 01:02:11 -080091 /* available blocks on this cluster */
92 mapped_blocks = sbi->sec_per_clus - offset;
93
94 *max_blocks = min(mapped_blocks, *max_blocks);
95 MSDOS_I(inode)->mmu_private += *max_blocks << sb->s_blocksize_bits;
96
97 err = fat_bmap(inode, iblock, &phys, &mapped_blocks);
Linus Torvalds1da177e2005-04-16 15:20:36 -070098 if (err)
99 return err;
OGAWA Hirofumi6a1d9802006-09-27 01:50:45 -0700100
OGAWA Hirofumie5174ba2006-01-08 01:02:11 -0800101 BUG_ON(!phys);
102 BUG_ON(*max_blocks != mapped_blocks);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103 set_buffer_new(bh_result);
104 map_bh(bh_result, sb, phys);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105
OGAWA Hirofumie5174ba2006-01-08 01:02:11 -0800106 return 0;
107}
108
109static int fat_get_block(struct inode *inode, sector_t iblock,
110 struct buffer_head *bh_result, int create)
111{
OGAWA Hirofumi6a1d9802006-09-27 01:50:45 -0700112 struct super_block *sb = inode->i_sb;
113 unsigned long max_blocks = bh_result->b_size >> inode->i_blkbits;
114 int err;
115
116 err = __fat_get_block(inode, iblock, &max_blocks, bh_result, create);
117 if (err)
118 return err;
119 bh_result->b_size = max_blocks << sb->s_blocksize_bits;
120 return 0;
OGAWA Hirofumie5174ba2006-01-08 01:02:11 -0800121}
122
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123static int fat_writepage(struct page *page, struct writeback_control *wbc)
124{
125 return block_write_full_page(page, fat_get_block, wbc);
126}
127
OGAWA Hirofumia5425d22006-01-08 01:02:10 -0800128static int fat_writepages(struct address_space *mapping,
129 struct writeback_control *wbc)
130{
131 return mpage_writepages(mapping, wbc, fat_get_block);
132}
133
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134static int fat_readpage(struct file *file, struct page *page)
135{
OGAWA Hirofumia5425d22006-01-08 01:02:10 -0800136 return mpage_readpage(page, fat_get_block);
137}
138
139static int fat_readpages(struct file *file, struct address_space *mapping,
140 struct list_head *pages, unsigned nr_pages)
141{
142 return mpage_readpages(mapping, pages, nr_pages, fat_get_block);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143}
144
Nick Piggind7777a22007-10-16 01:25:08 -0700145static int fat_write_begin(struct file *file, struct address_space *mapping,
146 loff_t pos, unsigned len, unsigned flags,
147 struct page **pagep, void **fsdata)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148{
Nick Piggind7777a22007-10-16 01:25:08 -0700149 *pagep = NULL;
150 return cont_write_begin(file, mapping, pos, len, flags, pagep, fsdata,
151 fat_get_block,
152 &MSDOS_I(mapping->host)->mmu_private);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153}
154
Nick Piggind7777a22007-10-16 01:25:08 -0700155static int fat_write_end(struct file *file, struct address_space *mapping,
156 loff_t pos, unsigned len, unsigned copied,
157 struct page *pagep, void *fsdata)
OGAWA Hirofumief402262005-09-16 19:28:13 -0700158{
Nick Piggind7777a22007-10-16 01:25:08 -0700159 struct inode *inode = mapping->host;
160 int err;
161 err = generic_write_end(file, mapping, pos, len, copied, pagep, fsdata);
162 if (!(err < 0) && !(MSDOS_I(inode)->i_attrs & ATTR_ARCH)) {
OGAWA Hirofumief402262005-09-16 19:28:13 -0700163 inode->i_mtime = inode->i_ctime = CURRENT_TIME_SEC;
164 MSDOS_I(inode)->i_attrs |= ATTR_ARCH;
165 mark_inode_dirty(inode);
166 }
167 return err;
168}
169
OGAWA Hirofumie5174ba2006-01-08 01:02:11 -0800170static ssize_t fat_direct_IO(int rw, struct kiocb *iocb,
171 const struct iovec *iov,
172 loff_t offset, unsigned long nr_segs)
173{
174 struct file *file = iocb->ki_filp;
175 struct inode *inode = file->f_mapping->host;
176
177 if (rw == WRITE) {
178 /*
Nick Piggin4e02ed42008-10-29 14:00:55 -0700179 * FIXME: blockdev_direct_IO() doesn't use ->write_begin(),
OGAWA Hirofumie5174ba2006-01-08 01:02:11 -0800180 * so we need to update the ->mmu_private to block boundary.
181 *
182 * But we must fill the remaining area or hole by nul for
183 * updating ->mmu_private.
OGAWA Hirofumi94412a92007-02-20 13:57:55 -0800184 *
185 * Return 0, and fallback to normal buffered write.
OGAWA Hirofumie5174ba2006-01-08 01:02:11 -0800186 */
187 loff_t size = offset + iov_length(iov, nr_segs);
188 if (MSDOS_I(inode)->mmu_private < size)
OGAWA Hirofumi94412a92007-02-20 13:57:55 -0800189 return 0;
OGAWA Hirofumie5174ba2006-01-08 01:02:11 -0800190 }
191
192 /*
193 * FAT need to use the DIO_LOCKING for avoiding the race
194 * condition of fat_get_block() and ->truncate().
195 */
196 return blockdev_direct_IO(rw, iocb, inode, inode->i_sb->s_bdev, iov,
OGAWA Hirofumi6a1d9802006-09-27 01:50:45 -0700197 offset, nr_segs, fat_get_block, NULL);
OGAWA Hirofumie5174ba2006-01-08 01:02:11 -0800198}
199
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200static sector_t _fat_bmap(struct address_space *mapping, sector_t block)
201{
202 return generic_block_bmap(mapping, block, fat_get_block);
203}
204
Christoph Hellwigf5e54d62006-06-28 04:26:44 -0700205static const struct address_space_operations fat_aops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 .readpage = fat_readpage,
OGAWA Hirofumia5425d22006-01-08 01:02:10 -0800207 .readpages = fat_readpages,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208 .writepage = fat_writepage,
OGAWA Hirofumia5425d22006-01-08 01:02:10 -0800209 .writepages = fat_writepages,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 .sync_page = block_sync_page,
Nick Piggind7777a22007-10-16 01:25:08 -0700211 .write_begin = fat_write_begin,
212 .write_end = fat_write_end,
OGAWA Hirofumie5174ba2006-01-08 01:02:11 -0800213 .direct_IO = fat_direct_IO,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 .bmap = _fat_bmap
215};
216
217/*
218 * New FAT inode stuff. We do the following:
219 * a) i_ino is constant and has nothing with on-disk location.
220 * b) FAT manages its own cache of directory entries.
221 * c) *This* cache is indexed by on-disk location.
222 * d) inode has an associated directory entry, all right, but
223 * it may be unhashed.
224 * e) currently entries are stored within struct inode. That should
225 * change.
226 * f) we deal with races in the following way:
227 * 1. readdir() and lookup() do FAT-dir-cache lookup.
228 * 2. rename() unhashes the F-d-c entry and rehashes it in
229 * a new place.
230 * 3. unlink() and rmdir() unhash F-d-c entry.
231 * 4. fat_write_inode() checks whether the thing is unhashed.
232 * If it is we silently return. If it isn't we do bread(),
233 * check if the location is still valid and retry if it
234 * isn't. Otherwise we do changes.
235 * 5. Spinlock is used to protect hash/unhash/location check/lookup
236 * 6. fat_clear_inode() unhashes the F-d-c entry.
237 * 7. lookup() and readdir() do igrab() if they find a F-d-c entry
238 * and consider negative result as cache miss.
239 */
240
241static void fat_hash_init(struct super_block *sb)
242{
243 struct msdos_sb_info *sbi = MSDOS_SB(sb);
244 int i;
245
246 spin_lock_init(&sbi->inode_hash_lock);
247 for (i = 0; i < FAT_HASH_SIZE; i++)
248 INIT_HLIST_HEAD(&sbi->inode_hashtable[i]);
249}
250
OGAWA Hirofumid3dfa822008-11-06 12:53:49 -0800251static inline unsigned long fat_hash(loff_t i_pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252{
OGAWA Hirofumid3dfa822008-11-06 12:53:49 -0800253 return hash_32(i_pos, FAT_HASH_BITS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254}
255
256void fat_attach(struct inode *inode, loff_t i_pos)
257{
OGAWA Hirofumid3dfa822008-11-06 12:53:49 -0800258 struct msdos_sb_info *sbi = MSDOS_SB(inode->i_sb);
259 struct hlist_head *head = sbi->inode_hashtable + fat_hash(i_pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260
261 spin_lock(&sbi->inode_hash_lock);
262 MSDOS_I(inode)->i_pos = i_pos;
OGAWA Hirofumid3dfa822008-11-06 12:53:49 -0800263 hlist_add_head(&MSDOS_I(inode)->i_fat_hash, head);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264 spin_unlock(&sbi->inode_hash_lock);
265}
OGAWA Hirofumi7c709d02006-01-08 01:02:10 -0800266EXPORT_SYMBOL_GPL(fat_attach);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267
268void fat_detach(struct inode *inode)
269{
270 struct msdos_sb_info *sbi = MSDOS_SB(inode->i_sb);
271 spin_lock(&sbi->inode_hash_lock);
272 MSDOS_I(inode)->i_pos = 0;
273 hlist_del_init(&MSDOS_I(inode)->i_fat_hash);
274 spin_unlock(&sbi->inode_hash_lock);
275}
OGAWA Hirofumi7c709d02006-01-08 01:02:10 -0800276EXPORT_SYMBOL_GPL(fat_detach);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277
278struct inode *fat_iget(struct super_block *sb, loff_t i_pos)
279{
280 struct msdos_sb_info *sbi = MSDOS_SB(sb);
OGAWA Hirofumid3dfa822008-11-06 12:53:49 -0800281 struct hlist_head *head = sbi->inode_hashtable + fat_hash(i_pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 struct hlist_node *_p;
283 struct msdos_inode_info *i;
284 struct inode *inode = NULL;
285
286 spin_lock(&sbi->inode_hash_lock);
287 hlist_for_each_entry(i, _p, head, i_fat_hash) {
288 BUG_ON(i->vfs_inode.i_sb != sb);
289 if (i->i_pos != i_pos)
290 continue;
291 inode = igrab(&i->vfs_inode);
292 if (inode)
293 break;
294 }
295 spin_unlock(&sbi->inode_hash_lock);
296 return inode;
297}
298
299static int is_exec(unsigned char *extension)
300{
301 unsigned char *exe_extensions = "EXECOMBAT", *walk;
302
303 for (walk = exe_extensions; *walk; walk += 3)
304 if (!strncmp(extension, walk, 3))
305 return 1;
306 return 0;
307}
308
309static int fat_calc_dir_size(struct inode *inode)
310{
311 struct msdos_sb_info *sbi = MSDOS_SB(inode->i_sb);
312 int ret, fclus, dclus;
313
314 inode->i_size = 0;
315 if (MSDOS_I(inode)->i_start == 0)
316 return 0;
317
318 ret = fat_get_cluster(inode, FAT_ENT_EOF, &fclus, &dclus);
319 if (ret < 0)
320 return ret;
321 inode->i_size = (fclus + 1) << sbi->cluster_bits;
322
323 return 0;
324}
325
326/* doesn't deal with root inode */
327static int fat_fill_inode(struct inode *inode, struct msdos_dir_entry *de)
328{
329 struct msdos_sb_info *sbi = MSDOS_SB(inode->i_sb);
330 int error;
331
332 MSDOS_I(inode)->i_pos = 0;
333 inode->i_uid = sbi->options.fs_uid;
334 inode->i_gid = sbi->options.fs_gid;
335 inode->i_version++;
336 inode->i_generation = get_seconds();
337
338 if ((de->attr & ATTR_DIR) && !IS_FREE(de->name)) {
339 inode->i_generation &= ~1;
OGAWA Hirofumi9c0aa1b2008-11-06 12:53:54 -0800340 inode->i_mode = fat_make_mode(sbi, de->attr, S_IRWXUGO);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 inode->i_op = sbi->dir_ops;
342 inode->i_fop = &fat_dir_operations;
343
344 MSDOS_I(inode)->i_start = le16_to_cpu(de->start);
345 if (sbi->fat_bits == 32)
346 MSDOS_I(inode)->i_start |= (le16_to_cpu(de->starthi) << 16);
347
348 MSDOS_I(inode)->i_logstart = MSDOS_I(inode)->i_start;
349 error = fat_calc_dir_size(inode);
350 if (error < 0)
351 return error;
352 MSDOS_I(inode)->mmu_private = inode->i_size;
353
354 inode->i_nlink = fat_subdirs(inode);
355 } else { /* not a directory */
356 inode->i_generation |= 1;
OGAWA Hirofumi9c0aa1b2008-11-06 12:53:54 -0800357 inode->i_mode = fat_make_mode(sbi, de->attr,
358 ((sbi->options.showexec && !is_exec(de->name + 8))
359 ? S_IRUGO|S_IWUGO : S_IRWXUGO));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 MSDOS_I(inode)->i_start = le16_to_cpu(de->start);
361 if (sbi->fat_bits == 32)
362 MSDOS_I(inode)->i_start |= (le16_to_cpu(de->starthi) << 16);
363
364 MSDOS_I(inode)->i_logstart = MSDOS_I(inode)->i_start;
365 inode->i_size = le32_to_cpu(de->size);
366 inode->i_op = &fat_file_inode_operations;
367 inode->i_fop = &fat_file_operations;
368 inode->i_mapping->a_ops = &fat_aops;
369 MSDOS_I(inode)->mmu_private = inode->i_size;
370 }
371 if (de->attr & ATTR_SYS) {
372 if (sbi->options.sys_immutable)
373 inode->i_flags |= S_IMMUTABLE;
374 }
OGAWA Hirofumi9c0aa1b2008-11-06 12:53:54 -0800375 fat_save_attrs(inode, de->attr);
376
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 inode->i_blocks = ((inode->i_size + (sbi->cluster_size - 1))
378 & ~((loff_t)sbi->cluster_size - 1)) >> 9;
OGAWA Hirofumi7decd1c2008-11-06 12:53:47 -0800379
380 fat_time_fat2unix(sbi, &inode->i_mtime, de->time, de->date, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 if (sbi->options.isvfat) {
OGAWA Hirofumi7decd1c2008-11-06 12:53:47 -0800382 fat_time_fat2unix(sbi, &inode->i_ctime, de->ctime,
383 de->cdate, de->ctime_cs);
384 fat_time_fat2unix(sbi, &inode->i_atime, 0, de->adate, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 } else
Stephane Kardas62a36c42005-09-21 09:55:45 -0700386 inode->i_ctime = inode->i_atime = inode->i_mtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387
388 return 0;
389}
390
391struct inode *fat_build_inode(struct super_block *sb,
392 struct msdos_dir_entry *de, loff_t i_pos)
393{
394 struct inode *inode;
395 int err;
396
397 inode = fat_iget(sb, i_pos);
398 if (inode)
399 goto out;
400 inode = new_inode(sb);
401 if (!inode) {
402 inode = ERR_PTR(-ENOMEM);
403 goto out;
404 }
405 inode->i_ino = iunique(sb, MSDOS_ROOT_INO);
406 inode->i_version = 1;
407 err = fat_fill_inode(inode, de);
408 if (err) {
409 iput(inode);
410 inode = ERR_PTR(err);
411 goto out;
412 }
413 fat_attach(inode, i_pos);
414 insert_inode_hash(inode);
415out:
416 return inode;
417}
418
OGAWA Hirofumi7c709d02006-01-08 01:02:10 -0800419EXPORT_SYMBOL_GPL(fat_build_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420
421static void fat_delete_inode(struct inode *inode)
422{
Mark Fashehfef26652005-09-09 13:01:31 -0700423 truncate_inode_pages(&inode->i_data, 0);
OGAWA Hirofumi3754a542008-04-28 02:16:24 -0700424 inode->i_size = 0;
425 fat_truncate(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 clear_inode(inode);
427}
428
429static void fat_clear_inode(struct inode *inode)
430{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 fat_cache_inval_inode(inode);
OGAWA Hirofumia993b542008-11-06 12:53:50 -0800432 fat_detach(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433}
434
OGAWA Hirofumia6bf6b22006-01-08 01:02:08 -0800435static void fat_write_super(struct super_block *sb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436{
OGAWA Hirofumia6bf6b22006-01-08 01:02:08 -0800437 sb->s_dirt = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438
439 if (!(sb->s_flags & MS_RDONLY))
440 fat_clusters_flush(sb);
OGAWA Hirofumia6bf6b22006-01-08 01:02:08 -0800441}
442
443static void fat_put_super(struct super_block *sb)
444{
445 struct msdos_sb_info *sbi = MSDOS_SB(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446
447 if (sbi->nls_disk) {
448 unload_nls(sbi->nls_disk);
449 sbi->nls_disk = NULL;
450 sbi->options.codepage = fat_default_codepage;
451 }
452 if (sbi->nls_io) {
453 unload_nls(sbi->nls_io);
454 sbi->nls_io = NULL;
455 }
456 if (sbi->options.iocharset != fat_default_iocharset) {
457 kfree(sbi->options.iocharset);
458 sbi->options.iocharset = fat_default_iocharset;
459 }
460
461 sb->s_fs_info = NULL;
462 kfree(sbi);
463}
464
Christoph Lametere18b8902006-12-06 20:33:20 -0800465static struct kmem_cache *fat_inode_cachep;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466
467static struct inode *fat_alloc_inode(struct super_block *sb)
468{
469 struct msdos_inode_info *ei;
Linus Torvalds8f593422008-05-19 19:53:01 -0700470 ei = kmem_cache_alloc(fat_inode_cachep, GFP_NOFS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 if (!ei)
472 return NULL;
473 return &ei->vfs_inode;
474}
475
476static void fat_destroy_inode(struct inode *inode)
477{
478 kmem_cache_free(fat_inode_cachep, MSDOS_I(inode));
479}
480
Alexey Dobriyan51cc5062008-07-25 19:45:34 -0700481static void init_once(void *foo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482{
483 struct msdos_inode_info *ei = (struct msdos_inode_info *)foo;
484
Christoph Lametera35afb82007-05-16 22:10:57 -0700485 spin_lock_init(&ei->cache_lru_lock);
486 ei->nr_caches = 0;
487 ei->cache_valid_id = FAT_CACHE_VALID + 1;
488 INIT_LIST_HEAD(&ei->cache_lru);
489 INIT_HLIST_NODE(&ei->i_fat_hash);
490 inode_init_once(&ei->vfs_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491}
492
493static int __init fat_init_inodecache(void)
494{
495 fat_inode_cachep = kmem_cache_create("fat_inode_cache",
496 sizeof(struct msdos_inode_info),
Paul Jacksonfffb60f2006-03-24 03:16:06 -0800497 0, (SLAB_RECLAIM_ACCOUNT|
498 SLAB_MEM_SPREAD),
Paul Mundt20c2df82007-07-20 10:11:58 +0900499 init_once);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500 if (fat_inode_cachep == NULL)
501 return -ENOMEM;
502 return 0;
503}
504
505static void __exit fat_destroy_inodecache(void)
506{
Alexey Dobriyan1a1d92c2006-09-27 01:49:40 -0700507 kmem_cache_destroy(fat_inode_cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508}
509
510static int fat_remount(struct super_block *sb, int *flags, char *data)
511{
512 struct msdos_sb_info *sbi = MSDOS_SB(sb);
513 *flags |= MS_NODIRATIME | (sbi->options.isvfat ? 0 : MS_NOATIME);
514 return 0;
515}
516
David Howells726c3342006-06-23 02:02:58 -0700517static int fat_statfs(struct dentry *dentry, struct kstatfs *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518{
David Howells726c3342006-06-23 02:02:58 -0700519 struct msdos_sb_info *sbi = MSDOS_SB(dentry->d_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520
521 /* If the count of free cluster is still unknown, counts it here. */
OGAWA Hirofumi606e4232008-04-28 02:16:27 -0700522 if (sbi->free_clusters == -1 || !sbi->free_clus_valid) {
David Howells726c3342006-06-23 02:02:58 -0700523 int err = fat_count_free_clusters(dentry->d_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 if (err)
525 return err;
526 }
527
David Howells726c3342006-06-23 02:02:58 -0700528 buf->f_type = dentry->d_sb->s_magic;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 buf->f_bsize = sbi->cluster_size;
530 buf->f_blocks = sbi->max_cluster - FAT_START_ENT;
531 buf->f_bfree = sbi->free_clusters;
532 buf->f_bavail = sbi->free_clusters;
533 buf->f_namelen = sbi->options.isvfat ? 260 : 12;
534
535 return 0;
536}
537
538static int fat_write_inode(struct inode *inode, int wait)
539{
540 struct super_block *sb = inode->i_sb;
541 struct msdos_sb_info *sbi = MSDOS_SB(sb);
542 struct buffer_head *bh;
543 struct msdos_dir_entry *raw_entry;
544 loff_t i_pos;
Linus Torvalds5f22ca92008-08-20 08:31:19 -0700545 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546
547retry:
548 i_pos = MSDOS_I(inode)->i_pos;
549 if (inode->i_ino == MSDOS_ROOT_INO || !i_pos)
550 return 0;
551
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 bh = sb_bread(sb, i_pos >> sbi->dir_per_block_bits);
553 if (!bh) {
554 printk(KERN_ERR "FAT: unable to read inode block "
555 "for updating (i_pos %lld)\n", i_pos);
Linus Torvalds5f22ca92008-08-20 08:31:19 -0700556 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 }
558 spin_lock(&sbi->inode_hash_lock);
559 if (i_pos != MSDOS_I(inode)->i_pos) {
560 spin_unlock(&sbi->inode_hash_lock);
561 brelse(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 goto retry;
563 }
564
565 raw_entry = &((struct msdos_dir_entry *) (bh->b_data))
566 [i_pos & (sbi->dir_per_block - 1)];
567 if (S_ISDIR(inode->i_mode))
568 raw_entry->size = 0;
569 else
570 raw_entry->size = cpu_to_le32(inode->i_size);
OGAWA Hirofumi9c0aa1b2008-11-06 12:53:54 -0800571 raw_entry->attr = fat_make_attrs(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 raw_entry->start = cpu_to_le16(MSDOS_I(inode)->i_logstart);
573 raw_entry->starthi = cpu_to_le16(MSDOS_I(inode)->i_logstart >> 16);
OGAWA Hirofumi7decd1c2008-11-06 12:53:47 -0800574 fat_time_unix2fat(sbi, &inode->i_mtime, &raw_entry->time,
575 &raw_entry->date, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576 if (sbi->options.isvfat) {
Stephane Kardas62a36c42005-09-21 09:55:45 -0700577 __le16 atime;
OGAWA Hirofumi7decd1c2008-11-06 12:53:47 -0800578 fat_time_unix2fat(sbi, &inode->i_ctime, &raw_entry->ctime,
579 &raw_entry->cdate, &raw_entry->ctime_cs);
580 fat_time_unix2fat(sbi, &inode->i_atime, &atime,
581 &raw_entry->adate, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 }
583 spin_unlock(&sbi->inode_hash_lock);
584 mark_buffer_dirty(bh);
Linus Torvalds5f22ca92008-08-20 08:31:19 -0700585 err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 if (wait)
587 err = sync_dirty_buffer(bh);
588 brelse(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589 return err;
590}
591
592int fat_sync_inode(struct inode *inode)
593{
594 return fat_write_inode(inode, 1);
595}
596
OGAWA Hirofumi7c709d02006-01-08 01:02:10 -0800597EXPORT_SYMBOL_GPL(fat_sync_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598
599static int fat_show_options(struct seq_file *m, struct vfsmount *mnt);
Josef 'Jeff' Sipekee9b6d62007-02-12 00:55:41 -0800600static const struct super_operations fat_sops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601 .alloc_inode = fat_alloc_inode,
602 .destroy_inode = fat_destroy_inode,
603 .write_inode = fat_write_inode,
604 .delete_inode = fat_delete_inode,
605 .put_super = fat_put_super,
OGAWA Hirofumia6bf6b22006-01-08 01:02:08 -0800606 .write_super = fat_write_super,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 .statfs = fat_statfs,
608 .clear_inode = fat_clear_inode,
609 .remount_fs = fat_remount,
610
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611 .show_options = fat_show_options,
612};
613
614/*
615 * a FAT file handle with fhtype 3 is
616 * 0/ i_ino - for fast, reliable lookup if still in the cache
617 * 1/ i_generation - to see if i_ino is still valid
618 * bit 0 == 0 iff directory
619 * 2/ i_pos(8-39) - if ino has changed, but still in cache
620 * 3/ i_pos(4-7)|i_logstart - to semi-verify inode found at i_pos
621 * 4/ i_pos(0-3)|parent->i_logstart - maybe used to hunt for the file on disc
622 *
623 * Hack for NFSv2: Maximum FAT entry number is 28bits and maximum
624 * i_pos is 40bits (blocknr(32) + dir offset(8)), so two 4bits
625 * of i_logstart is used to store the directory entry offset.
626 */
627
Christoph Hellwig1305edad2007-10-21 16:42:11 -0700628static struct dentry *fat_fh_to_dentry(struct super_block *sb,
629 struct fid *fid, int fh_len, int fh_type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630{
631 struct inode *inode = NULL;
632 struct dentry *result;
Christoph Hellwig1305edad2007-10-21 16:42:11 -0700633 u32 *fh = fid->raw;
634
635 if (fh_len < 5 || fh_type != 3)
636 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637
David Howells17f95a72008-02-07 00:15:38 -0800638 inode = ilookup(sb, fh[0]);
639 if (!inode || inode->i_generation != fh[1]) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640 if (inode)
641 iput(inode);
642 inode = NULL;
643 }
644 if (!inode) {
645 loff_t i_pos;
646 int i_logstart = fh[3] & 0x0fffffff;
647
648 i_pos = (loff_t)fh[2] << 8;
649 i_pos |= ((fh[3] >> 24) & 0xf0) | (fh[4] >> 28);
650
651 /* try 2 - see if i_pos is in F-d-c
652 * require i_logstart to be the same
653 * Will fail if you truncate and then re-write
654 */
655
656 inode = fat_iget(sb, i_pos);
657 if (inode && MSDOS_I(inode)->i_logstart != i_logstart) {
658 iput(inode);
659 inode = NULL;
660 }
661 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662
Christoph Hellwig44003722008-08-11 15:49:04 +0200663 /*
664 * For now, do nothing if the inode is not found.
665 *
666 * What we could do is:
667 *
668 * - follow the file starting at fh[4], and record the ".." entry,
669 * and the name of the fh[2] entry.
670 * - then follow the ".." file finding the next step up.
671 *
672 * This way we build a path to the root of the tree. If this works, we
673 * lookup the path and so get this inode into the cache. Finally try
674 * the fat_iget lookup again. If that fails, then we are totally out
675 * of luck. But all that is for another day
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 */
Christoph Hellwig44003722008-08-11 15:49:04 +0200677 result = d_obtain_alias(inode);
678 if (!IS_ERR(result))
679 result->d_op = sb->s_root->d_op;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680 return result;
681}
682
683static int
684fat_encode_fh(struct dentry *de, __u32 *fh, int *lenp, int connectable)
685{
686 int len = *lenp;
687 struct inode *inode = de->d_inode;
688 u32 ipos_h, ipos_m, ipos_l;
689
690 if (len < 5)
691 return 255; /* no room */
692
693 ipos_h = MSDOS_I(inode)->i_pos >> 8;
694 ipos_m = (MSDOS_I(inode)->i_pos & 0xf0) << 24;
695 ipos_l = (MSDOS_I(inode)->i_pos & 0x0f) << 28;
696 *lenp = 5;
697 fh[0] = inode->i_ino;
698 fh[1] = inode->i_generation;
699 fh[2] = ipos_h;
700 fh[3] = ipos_m | MSDOS_I(inode)->i_logstart;
701 spin_lock(&de->d_lock);
702 fh[4] = ipos_l | MSDOS_I(de->d_parent->d_inode)->i_logstart;
703 spin_unlock(&de->d_lock);
704 return 3;
705}
706
707static struct dentry *fat_get_parent(struct dentry *child)
708{
Linus Torvalds8f593422008-05-19 19:53:01 -0700709 struct super_block *sb = child->d_sb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710 struct buffer_head *bh;
711 struct msdos_dir_entry *de;
712 loff_t i_pos;
713 struct dentry *parent;
714 struct inode *inode;
715 int err;
716
Linus Torvalds8f593422008-05-19 19:53:01 -0700717 lock_super(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718
719 err = fat_get_dotdot_entry(child->d_inode, &bh, &de, &i_pos);
720 if (err) {
721 parent = ERR_PTR(err);
722 goto out;
723 }
Linus Torvalds8f593422008-05-19 19:53:01 -0700724 inode = fat_build_inode(sb, de, i_pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725 brelse(bh);
Christoph Hellwig44003722008-08-11 15:49:04 +0200726
727 parent = d_obtain_alias(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728out:
Linus Torvalds8f593422008-05-19 19:53:01 -0700729 unlock_super(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730
731 return parent;
732}
733
Christoph Hellwig39655162007-10-21 16:42:17 -0700734static const struct export_operations fat_export_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735 .encode_fh = fat_encode_fh,
Christoph Hellwig1305edad2007-10-21 16:42:11 -0700736 .fh_to_dentry = fat_fh_to_dentry,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737 .get_parent = fat_get_parent,
738};
739
740static int fat_show_options(struct seq_file *m, struct vfsmount *mnt)
741{
742 struct msdos_sb_info *sbi = MSDOS_SB(mnt->mnt_sb);
743 struct fat_mount_options *opts = &sbi->options;
744 int isvfat = opts->isvfat;
745
746 if (opts->fs_uid != 0)
747 seq_printf(m, ",uid=%u", opts->fs_uid);
748 if (opts->fs_gid != 0)
749 seq_printf(m, ",gid=%u", opts->fs_gid);
750 seq_printf(m, ",fmask=%04o", opts->fs_fmask);
751 seq_printf(m, ",dmask=%04o", opts->fs_dmask);
OGAWA Hirofumi1ae43f82008-04-28 02:16:26 -0700752 if (opts->allow_utime)
753 seq_printf(m, ",allow_utime=%04o", opts->allow_utime);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754 if (sbi->nls_disk)
755 seq_printf(m, ",codepage=%s", sbi->nls_disk->charset);
756 if (isvfat) {
757 if (sbi->nls_io)
758 seq_printf(m, ",iocharset=%s", sbi->nls_io->charset);
759
760 switch (opts->shortname) {
761 case VFAT_SFN_DISPLAY_WIN95 | VFAT_SFN_CREATE_WIN95:
762 seq_puts(m, ",shortname=win95");
763 break;
764 case VFAT_SFN_DISPLAY_WINNT | VFAT_SFN_CREATE_WINNT:
765 seq_puts(m, ",shortname=winnt");
766 break;
767 case VFAT_SFN_DISPLAY_WINNT | VFAT_SFN_CREATE_WIN95:
768 seq_puts(m, ",shortname=mixed");
769 break;
770 case VFAT_SFN_DISPLAY_LOWER | VFAT_SFN_CREATE_WIN95:
771 /* seq_puts(m, ",shortname=lower"); */
772 break;
773 default:
774 seq_puts(m, ",shortname=unknown");
775 break;
776 }
777 }
778 if (opts->name_check != 'n')
779 seq_printf(m, ",check=%c", opts->name_check);
OGAWA Hirofumi28ec0392007-05-08 00:31:01 -0700780 if (opts->usefree)
781 seq_puts(m, ",usefree");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782 if (opts->quiet)
783 seq_puts(m, ",quiet");
784 if (opts->showexec)
785 seq_puts(m, ",showexec");
786 if (opts->sys_immutable)
787 seq_puts(m, ",sys_immutable");
788 if (!isvfat) {
789 if (opts->dotsOK)
790 seq_puts(m, ",dotsOK=yes");
791 if (opts->nocase)
792 seq_puts(m, ",nocase");
793 } else {
794 if (opts->utf8)
795 seq_puts(m, ",utf8");
796 if (opts->unicode_xlate)
797 seq_puts(m, ",uni_xlate");
798 if (!opts->numtail)
799 seq_puts(m, ",nonumtail");
800 }
Miklos Szeredic1fca3b2008-02-08 04:21:42 -0800801 if (sbi->options.flush)
802 seq_puts(m, ",flush");
Joe Petersonb271e062008-07-25 01:46:47 -0700803 if (opts->tz_utc)
804 seq_puts(m, ",tz=UTC");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805
806 return 0;
807}
808
809enum {
810 Opt_check_n, Opt_check_r, Opt_check_s, Opt_uid, Opt_gid,
OGAWA Hirofumi1ae43f82008-04-28 02:16:26 -0700811 Opt_umask, Opt_dmask, Opt_fmask, Opt_allow_utime, Opt_codepage,
812 Opt_usefree, Opt_nocase, Opt_quiet, Opt_showexec, Opt_debug,
813 Opt_immutable, Opt_dots, Opt_nodots,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814 Opt_charset, Opt_shortname_lower, Opt_shortname_win95,
815 Opt_shortname_winnt, Opt_shortname_mixed, Opt_utf8_no, Opt_utf8_yes,
816 Opt_uni_xl_no, Opt_uni_xl_yes, Opt_nonumtail_no, Opt_nonumtail_yes,
Joe Petersonb271e062008-07-25 01:46:47 -0700817 Opt_obsolate, Opt_flush, Opt_tz_utc, Opt_err,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818};
819
Steven Whitehousea447c092008-10-13 10:46:57 +0100820static const match_table_t fat_tokens = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821 {Opt_check_r, "check=relaxed"},
822 {Opt_check_s, "check=strict"},
823 {Opt_check_n, "check=normal"},
824 {Opt_check_r, "check=r"},
825 {Opt_check_s, "check=s"},
826 {Opt_check_n, "check=n"},
827 {Opt_uid, "uid=%u"},
828 {Opt_gid, "gid=%u"},
829 {Opt_umask, "umask=%o"},
830 {Opt_dmask, "dmask=%o"},
831 {Opt_fmask, "fmask=%o"},
OGAWA Hirofumi1ae43f82008-04-28 02:16:26 -0700832 {Opt_allow_utime, "allow_utime=%o"},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833 {Opt_codepage, "codepage=%u"},
OGAWA Hirofumi28ec0392007-05-08 00:31:01 -0700834 {Opt_usefree, "usefree"},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835 {Opt_nocase, "nocase"},
836 {Opt_quiet, "quiet"},
837 {Opt_showexec, "showexec"},
838 {Opt_debug, "debug"},
839 {Opt_immutable, "sys_immutable"},
840 {Opt_obsolate, "conv=binary"},
841 {Opt_obsolate, "conv=text"},
842 {Opt_obsolate, "conv=auto"},
843 {Opt_obsolate, "conv=b"},
844 {Opt_obsolate, "conv=t"},
845 {Opt_obsolate, "conv=a"},
846 {Opt_obsolate, "fat=%u"},
847 {Opt_obsolate, "blocksize=%u"},
848 {Opt_obsolate, "cvf_format=%20s"},
849 {Opt_obsolate, "cvf_options=%100s"},
850 {Opt_obsolate, "posix"},
Chris Masonae78bf92006-09-29 02:00:03 -0700851 {Opt_flush, "flush"},
Joe Petersonb271e062008-07-25 01:46:47 -0700852 {Opt_tz_utc, "tz=UTC"},
Chris Masonae78bf92006-09-29 02:00:03 -0700853 {Opt_err, NULL},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854};
Steven Whitehousea447c092008-10-13 10:46:57 +0100855static const match_table_t msdos_tokens = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856 {Opt_nodots, "nodots"},
857 {Opt_nodots, "dotsOK=no"},
858 {Opt_dots, "dots"},
859 {Opt_dots, "dotsOK=yes"},
860 {Opt_err, NULL}
861};
Steven Whitehousea447c092008-10-13 10:46:57 +0100862static const match_table_t vfat_tokens = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863 {Opt_charset, "iocharset=%s"},
864 {Opt_shortname_lower, "shortname=lower"},
865 {Opt_shortname_win95, "shortname=win95"},
866 {Opt_shortname_winnt, "shortname=winnt"},
867 {Opt_shortname_mixed, "shortname=mixed"},
868 {Opt_utf8_no, "utf8=0"}, /* 0 or no or false */
869 {Opt_utf8_no, "utf8=no"},
870 {Opt_utf8_no, "utf8=false"},
871 {Opt_utf8_yes, "utf8=1"}, /* empty or 1 or yes or true */
872 {Opt_utf8_yes, "utf8=yes"},
873 {Opt_utf8_yes, "utf8=true"},
874 {Opt_utf8_yes, "utf8"},
875 {Opt_uni_xl_no, "uni_xlate=0"}, /* 0 or no or false */
876 {Opt_uni_xl_no, "uni_xlate=no"},
877 {Opt_uni_xl_no, "uni_xlate=false"},
878 {Opt_uni_xl_yes, "uni_xlate=1"}, /* empty or 1 or yes or true */
879 {Opt_uni_xl_yes, "uni_xlate=yes"},
880 {Opt_uni_xl_yes, "uni_xlate=true"},
881 {Opt_uni_xl_yes, "uni_xlate"},
882 {Opt_nonumtail_no, "nonumtail=0"}, /* 0 or no or false */
883 {Opt_nonumtail_no, "nonumtail=no"},
884 {Opt_nonumtail_no, "nonumtail=false"},
885 {Opt_nonumtail_yes, "nonumtail=1"}, /* empty or 1 or yes or true */
886 {Opt_nonumtail_yes, "nonumtail=yes"},
887 {Opt_nonumtail_yes, "nonumtail=true"},
888 {Opt_nonumtail_yes, "nonumtail"},
889 {Opt_err, NULL}
890};
891
Christoph Hellwig41a34a42005-11-08 21:34:57 -0800892static int parse_options(char *options, int is_vfat, int silent, int *debug,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893 struct fat_mount_options *opts)
894{
895 char *p;
896 substring_t args[MAX_OPT_ARGS];
897 int option;
898 char *iocharset;
899
900 opts->isvfat = is_vfat;
901
902 opts->fs_uid = current->uid;
903 opts->fs_gid = current->gid;
904 opts->fs_fmask = opts->fs_dmask = current->fs->umask;
OGAWA Hirofumi1ae43f82008-04-28 02:16:26 -0700905 opts->allow_utime = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906 opts->codepage = fat_default_codepage;
907 opts->iocharset = fat_default_iocharset;
908 if (is_vfat)
909 opts->shortname = VFAT_SFN_DISPLAY_LOWER|VFAT_SFN_CREATE_WIN95;
910 else
911 opts->shortname = 0;
912 opts->name_check = 'n';
913 opts->quiet = opts->showexec = opts->sys_immutable = opts->dotsOK = 0;
914 opts->utf8 = opts->unicode_xlate = 0;
915 opts->numtail = 1;
OGAWA Hirofumi28ec0392007-05-08 00:31:01 -0700916 opts->usefree = opts->nocase = 0;
Joe Petersonb271e062008-07-25 01:46:47 -0700917 opts->tz_utc = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918 *debug = 0;
919
920 if (!options)
OGAWA Hirofumi8d44d972008-07-25 01:46:41 -0700921 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922
923 while ((p = strsep(&options, ",")) != NULL) {
924 int token;
925 if (!*p)
926 continue;
927
928 token = match_token(p, fat_tokens, args);
929 if (token == Opt_err) {
930 if (is_vfat)
931 token = match_token(p, vfat_tokens, args);
932 else
933 token = match_token(p, msdos_tokens, args);
934 }
935 switch (token) {
936 case Opt_check_s:
937 opts->name_check = 's';
938 break;
939 case Opt_check_r:
940 opts->name_check = 'r';
941 break;
942 case Opt_check_n:
943 opts->name_check = 'n';
944 break;
OGAWA Hirofumi28ec0392007-05-08 00:31:01 -0700945 case Opt_usefree:
946 opts->usefree = 1;
947 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948 case Opt_nocase:
949 if (!is_vfat)
950 opts->nocase = 1;
951 else {
952 /* for backward compatibility */
953 opts->shortname = VFAT_SFN_DISPLAY_WIN95
954 | VFAT_SFN_CREATE_WIN95;
955 }
956 break;
957 case Opt_quiet:
958 opts->quiet = 1;
959 break;
960 case Opt_showexec:
961 opts->showexec = 1;
962 break;
963 case Opt_debug:
964 *debug = 1;
965 break;
966 case Opt_immutable:
967 opts->sys_immutable = 1;
968 break;
969 case Opt_uid:
970 if (match_int(&args[0], &option))
971 return 0;
972 opts->fs_uid = option;
973 break;
974 case Opt_gid:
975 if (match_int(&args[0], &option))
976 return 0;
977 opts->fs_gid = option;
978 break;
979 case Opt_umask:
980 if (match_octal(&args[0], &option))
981 return 0;
982 opts->fs_fmask = opts->fs_dmask = option;
983 break;
984 case Opt_dmask:
985 if (match_octal(&args[0], &option))
986 return 0;
987 opts->fs_dmask = option;
988 break;
989 case Opt_fmask:
990 if (match_octal(&args[0], &option))
991 return 0;
992 opts->fs_fmask = option;
993 break;
OGAWA Hirofumi1ae43f82008-04-28 02:16:26 -0700994 case Opt_allow_utime:
995 if (match_octal(&args[0], &option))
996 return 0;
997 opts->allow_utime = option & (S_IWGRP | S_IWOTH);
998 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999 case Opt_codepage:
1000 if (match_int(&args[0], &option))
1001 return 0;
1002 opts->codepage = option;
1003 break;
Chris Masonae78bf92006-09-29 02:00:03 -07001004 case Opt_flush:
1005 opts->flush = 1;
1006 break;
Joe Petersonb271e062008-07-25 01:46:47 -07001007 case Opt_tz_utc:
1008 opts->tz_utc = 1;
1009 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010
1011 /* msdos specific */
1012 case Opt_dots:
1013 opts->dotsOK = 1;
1014 break;
1015 case Opt_nodots:
1016 opts->dotsOK = 0;
1017 break;
1018
1019 /* vfat specific */
1020 case Opt_charset:
1021 if (opts->iocharset != fat_default_iocharset)
1022 kfree(opts->iocharset);
1023 iocharset = match_strdup(&args[0]);
1024 if (!iocharset)
1025 return -ENOMEM;
1026 opts->iocharset = iocharset;
1027 break;
1028 case Opt_shortname_lower:
1029 opts->shortname = VFAT_SFN_DISPLAY_LOWER
1030 | VFAT_SFN_CREATE_WIN95;
1031 break;
1032 case Opt_shortname_win95:
1033 opts->shortname = VFAT_SFN_DISPLAY_WIN95
1034 | VFAT_SFN_CREATE_WIN95;
1035 break;
1036 case Opt_shortname_winnt:
1037 opts->shortname = VFAT_SFN_DISPLAY_WINNT
1038 | VFAT_SFN_CREATE_WINNT;
1039 break;
1040 case Opt_shortname_mixed:
1041 opts->shortname = VFAT_SFN_DISPLAY_WINNT
1042 | VFAT_SFN_CREATE_WIN95;
1043 break;
1044 case Opt_utf8_no: /* 0 or no or false */
1045 opts->utf8 = 0;
1046 break;
1047 case Opt_utf8_yes: /* empty or 1 or yes or true */
1048 opts->utf8 = 1;
1049 break;
1050 case Opt_uni_xl_no: /* 0 or no or false */
1051 opts->unicode_xlate = 0;
1052 break;
1053 case Opt_uni_xl_yes: /* empty or 1 or yes or true */
1054 opts->unicode_xlate = 1;
1055 break;
1056 case Opt_nonumtail_no: /* 0 or no or false */
1057 opts->numtail = 1; /* negated option */
1058 break;
1059 case Opt_nonumtail_yes: /* empty or 1 or yes or true */
1060 opts->numtail = 0; /* negated option */
1061 break;
1062
1063 /* obsolete mount options */
1064 case Opt_obsolate:
1065 printk(KERN_INFO "FAT: \"%s\" option is obsolete, "
1066 "not supported now\n", p);
1067 break;
1068 /* unknown option */
1069 default:
Christoph Hellwig41a34a42005-11-08 21:34:57 -08001070 if (!silent) {
1071 printk(KERN_ERR
1072 "FAT: Unrecognized mount option \"%s\" "
1073 "or missing value\n", p);
1074 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075 return -EINVAL;
1076 }
1077 }
OGAWA Hirofumi8d44d972008-07-25 01:46:41 -07001078
1079out:
Alexey Dobriyan4de151d2006-03-22 00:13:35 +01001080 /* UTF-8 doesn't provide FAT semantics */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081 if (!strcmp(opts->iocharset, "utf8")) {
1082 printk(KERN_ERR "FAT: utf8 is not a recommended IO charset"
OGAWA Hirofumi8d44d972008-07-25 01:46:41 -07001083 " for FAT filesystems, filesystem will be "
1084 "case sensitive!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085 }
1086
OGAWA Hirofumi1ae43f82008-04-28 02:16:26 -07001087 /* If user doesn't specify allow_utime, it's initialized from dmask. */
1088 if (opts->allow_utime == (unsigned short)-1)
1089 opts->allow_utime = ~opts->fs_dmask & (S_IWGRP | S_IWOTH);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090 if (opts->unicode_xlate)
1091 opts->utf8 = 0;
1092
1093 return 0;
1094}
1095
1096static int fat_read_root(struct inode *inode)
1097{
1098 struct super_block *sb = inode->i_sb;
1099 struct msdos_sb_info *sbi = MSDOS_SB(sb);
1100 int error;
1101
1102 MSDOS_I(inode)->i_pos = 0;
1103 inode->i_uid = sbi->options.fs_uid;
1104 inode->i_gid = sbi->options.fs_gid;
1105 inode->i_version++;
1106 inode->i_generation = 0;
OGAWA Hirofumi9c0aa1b2008-11-06 12:53:54 -08001107 inode->i_mode = fat_make_mode(sbi, ATTR_DIR, S_IRWXUGO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108 inode->i_op = sbi->dir_ops;
1109 inode->i_fop = &fat_dir_operations;
1110 if (sbi->fat_bits == 32) {
1111 MSDOS_I(inode)->i_start = sbi->root_cluster;
1112 error = fat_calc_dir_size(inode);
1113 if (error < 0)
1114 return error;
1115 } else {
1116 MSDOS_I(inode)->i_start = 0;
1117 inode->i_size = sbi->dir_entries * sizeof(struct msdos_dir_entry);
1118 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119 inode->i_blocks = ((inode->i_size + (sbi->cluster_size - 1))
1120 & ~((loff_t)sbi->cluster_size - 1)) >> 9;
1121 MSDOS_I(inode)->i_logstart = 0;
1122 MSDOS_I(inode)->mmu_private = inode->i_size;
1123
OGAWA Hirofumi9c0aa1b2008-11-06 12:53:54 -08001124 fat_save_attrs(inode, ATTR_DIR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125 inode->i_mtime.tv_sec = inode->i_atime.tv_sec = inode->i_ctime.tv_sec = 0;
1126 inode->i_mtime.tv_nsec = inode->i_atime.tv_nsec = inode->i_ctime.tv_nsec = 0;
1127 inode->i_nlink = fat_subdirs(inode)+2;
1128
1129 return 0;
1130}
1131
1132/*
1133 * Read the super block of an MS-DOS FS.
1134 */
1135int fat_fill_super(struct super_block *sb, void *data, int silent,
Arjan van de Ven754661f2007-02-12 00:55:38 -08001136 const struct inode_operations *fs_dir_inode_ops, int isvfat)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137{
1138 struct inode *root_inode = NULL;
1139 struct buffer_head *bh;
1140 struct fat_boot_sector *b;
1141 struct msdos_sb_info *sbi;
1142 u16 logical_sector_size;
1143 u32 total_sectors, total_clusters, fat_clusters, rootdir_sectors;
1144 int debug;
1145 unsigned int media;
1146 long error;
1147 char buf[50];
1148
Linus Torvalds8f593422008-05-19 19:53:01 -07001149 /*
1150 * GFP_KERNEL is ok here, because while we do hold the
1151 * supeblock lock, memory pressure can't call back into
1152 * the filesystem, since we're only just about to mount
1153 * it and have no inodes etc active!
1154 */
Panagiotis Issarisf8314dc2006-09-27 01:49:37 -07001155 sbi = kzalloc(sizeof(struct msdos_sb_info), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156 if (!sbi)
1157 return -ENOMEM;
1158 sb->s_fs_info = sbi;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159
1160 sb->s_flags |= MS_NODIRATIME;
1161 sb->s_magic = MSDOS_SUPER_MAGIC;
1162 sb->s_op = &fat_sops;
1163 sb->s_export_op = &fat_export_ops;
1164 sbi->dir_ops = fs_dir_inode_ops;
1165
Christoph Hellwig41a34a42005-11-08 21:34:57 -08001166 error = parse_options(data, isvfat, silent, &debug, &sbi->options);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167 if (error)
1168 goto out_fail;
1169
1170 error = -EIO;
1171 sb_min_blocksize(sb, 512);
1172 bh = sb_bread(sb, 0);
1173 if (bh == NULL) {
1174 printk(KERN_ERR "FAT: unable to read boot sector\n");
1175 goto out_fail;
1176 }
1177
1178 b = (struct fat_boot_sector *) bh->b_data;
1179 if (!b->reserved) {
1180 if (!silent)
1181 printk(KERN_ERR "FAT: bogus number of reserved sectors\n");
1182 brelse(bh);
1183 goto out_invalid;
1184 }
1185 if (!b->fats) {
1186 if (!silent)
1187 printk(KERN_ERR "FAT: bogus number of FAT structure\n");
1188 brelse(bh);
1189 goto out_invalid;
1190 }
1191
1192 /*
1193 * Earlier we checked here that b->secs_track and b->head are nonzero,
1194 * but it turns out valid FAT filesystems can have zero there.
1195 */
1196
1197 media = b->media;
Andrew Morton73f20e52008-04-28 02:16:30 -07001198 if (!fat_valid_media(media)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199 if (!silent)
1200 printk(KERN_ERR "FAT: invalid media value (0x%02x)\n",
1201 media);
1202 brelse(bh);
1203 goto out_invalid;
1204 }
Harvey Harrison803f4452008-04-29 01:03:43 -07001205 logical_sector_size = get_unaligned_le16(&b->sector_size);
Vignesh Babu BMe7d709c2007-05-08 00:24:27 -07001206 if (!is_power_of_2(logical_sector_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207 || (logical_sector_size < 512)
Olof Johansson9f354852008-04-28 02:16:32 -07001208 || (logical_sector_size > 4096)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001209 if (!silent)
1210 printk(KERN_ERR "FAT: bogus logical sector size %u\n",
1211 logical_sector_size);
1212 brelse(bh);
1213 goto out_invalid;
1214 }
1215 sbi->sec_per_clus = b->sec_per_clus;
Vignesh Babu BMe7d709c2007-05-08 00:24:27 -07001216 if (!is_power_of_2(sbi->sec_per_clus)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217 if (!silent)
1218 printk(KERN_ERR "FAT: bogus sectors per cluster %u\n",
1219 sbi->sec_per_clus);
1220 brelse(bh);
1221 goto out_invalid;
1222 }
1223
1224 if (logical_sector_size < sb->s_blocksize) {
1225 printk(KERN_ERR "FAT: logical sector size too small for device"
1226 " (logical sector size = %u)\n", logical_sector_size);
1227 brelse(bh);
1228 goto out_fail;
1229 }
1230 if (logical_sector_size > sb->s_blocksize) {
1231 brelse(bh);
1232
1233 if (!sb_set_blocksize(sb, logical_sector_size)) {
1234 printk(KERN_ERR "FAT: unable to set blocksize %u\n",
1235 logical_sector_size);
1236 goto out_fail;
1237 }
1238 bh = sb_bread(sb, 0);
1239 if (bh == NULL) {
1240 printk(KERN_ERR "FAT: unable to read boot sector"
1241 " (logical sector size = %lu)\n",
1242 sb->s_blocksize);
1243 goto out_fail;
1244 }
1245 b = (struct fat_boot_sector *) bh->b_data;
1246 }
1247
1248 sbi->cluster_size = sb->s_blocksize * sbi->sec_per_clus;
1249 sbi->cluster_bits = ffs(sbi->cluster_size) - 1;
1250 sbi->fats = b->fats;
1251 sbi->fat_bits = 0; /* Don't know yet */
1252 sbi->fat_start = le16_to_cpu(b->reserved);
1253 sbi->fat_length = le16_to_cpu(b->fat_length);
1254 sbi->root_cluster = 0;
1255 sbi->free_clusters = -1; /* Don't know yet */
OGAWA Hirofumi606e4232008-04-28 02:16:27 -07001256 sbi->free_clus_valid = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257 sbi->prev_free = FAT_START_ENT;
1258
1259 if (!sbi->fat_length && b->fat32_length) {
1260 struct fat_boot_fsinfo *fsinfo;
1261 struct buffer_head *fsinfo_bh;
1262
1263 /* Must be FAT32 */
1264 sbi->fat_bits = 32;
1265 sbi->fat_length = le32_to_cpu(b->fat32_length);
1266 sbi->root_cluster = le32_to_cpu(b->root_cluster);
1267
1268 sb->s_maxbytes = 0xffffffff;
1269
1270 /* MC - if info_sector is 0, don't multiply by 0 */
1271 sbi->fsinfo_sector = le16_to_cpu(b->info_sector);
1272 if (sbi->fsinfo_sector == 0)
1273 sbi->fsinfo_sector = 1;
1274
1275 fsinfo_bh = sb_bread(sb, sbi->fsinfo_sector);
1276 if (fsinfo_bh == NULL) {
1277 printk(KERN_ERR "FAT: bread failed, FSINFO block"
1278 " (sector = %lu)\n", sbi->fsinfo_sector);
1279 brelse(bh);
1280 goto out_fail;
1281 }
1282
1283 fsinfo = (struct fat_boot_fsinfo *)fsinfo_bh->b_data;
1284 if (!IS_FSINFO(fsinfo)) {
Vegard Nossumb4cf9c32008-02-06 01:36:36 -08001285 printk(KERN_WARNING "FAT: Invalid FSINFO signature: "
1286 "0x%08x, 0x%08x (sector = %lu)\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287 le32_to_cpu(fsinfo->signature1),
1288 le32_to_cpu(fsinfo->signature2),
1289 sbi->fsinfo_sector);
1290 } else {
OGAWA Hirofumi28ec0392007-05-08 00:31:01 -07001291 if (sbi->options.usefree)
OGAWA Hirofumi606e4232008-04-28 02:16:27 -07001292 sbi->free_clus_valid = 1;
1293 sbi->free_clusters = le32_to_cpu(fsinfo->free_clusters);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294 sbi->prev_free = le32_to_cpu(fsinfo->next_cluster);
1295 }
1296
1297 brelse(fsinfo_bh);
1298 }
1299
1300 sbi->dir_per_block = sb->s_blocksize / sizeof(struct msdos_dir_entry);
1301 sbi->dir_per_block_bits = ffs(sbi->dir_per_block) - 1;
1302
1303 sbi->dir_start = sbi->fat_start + sbi->fats * sbi->fat_length;
Harvey Harrison803f4452008-04-29 01:03:43 -07001304 sbi->dir_entries = get_unaligned_le16(&b->dir_entries);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001305 if (sbi->dir_entries & (sbi->dir_per_block - 1)) {
1306 if (!silent)
1307 printk(KERN_ERR "FAT: bogus directroy-entries per block"
1308 " (%u)\n", sbi->dir_entries);
1309 brelse(bh);
1310 goto out_invalid;
1311 }
1312
1313 rootdir_sectors = sbi->dir_entries
1314 * sizeof(struct msdos_dir_entry) / sb->s_blocksize;
1315 sbi->data_start = sbi->dir_start + rootdir_sectors;
Harvey Harrison803f4452008-04-29 01:03:43 -07001316 total_sectors = get_unaligned_le16(&b->sectors);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317 if (total_sectors == 0)
1318 total_sectors = le32_to_cpu(b->total_sect);
1319
1320 total_clusters = (total_sectors - sbi->data_start) / sbi->sec_per_clus;
1321
1322 if (sbi->fat_bits != 32)
1323 sbi->fat_bits = (total_clusters > MAX_FAT12) ? 16 : 12;
1324
1325 /* check that FAT table does not overflow */
1326 fat_clusters = sbi->fat_length * sb->s_blocksize * 8 / sbi->fat_bits;
1327 total_clusters = min(total_clusters, fat_clusters - FAT_START_ENT);
1328 if (total_clusters > MAX_FAT(sb)) {
1329 if (!silent)
1330 printk(KERN_ERR "FAT: count of clusters too big (%u)\n",
1331 total_clusters);
1332 brelse(bh);
1333 goto out_invalid;
1334 }
1335
1336 sbi->max_cluster = total_clusters + FAT_START_ENT;
1337 /* check the free_clusters, it's not necessarily correct */
1338 if (sbi->free_clusters != -1 && sbi->free_clusters > total_clusters)
1339 sbi->free_clusters = -1;
1340 /* check the prev_free, it's not necessarily correct */
1341 sbi->prev_free %= sbi->max_cluster;
1342 if (sbi->prev_free < FAT_START_ENT)
1343 sbi->prev_free = FAT_START_ENT;
1344
1345 brelse(bh);
1346
1347 /* set up enough so that it can read an inode */
1348 fat_hash_init(sb);
1349 fat_ent_access_init(sb);
1350
1351 /*
1352 * The low byte of FAT's first entry must have same value with
1353 * media-field. But in real world, too many devices is
1354 * writing wrong value. So, removed that validity check.
1355 *
1356 * if (FAT_FIRST_ENT(sb, media) != first)
1357 */
1358
1359 error = -EINVAL;
1360 sprintf(buf, "cp%d", sbi->options.codepage);
1361 sbi->nls_disk = load_nls(buf);
1362 if (!sbi->nls_disk) {
1363 printk(KERN_ERR "FAT: codepage %s not found\n", buf);
1364 goto out_fail;
1365 }
1366
1367 /* FIXME: utf8 is using iocharset for upper/lower conversion */
1368 if (sbi->options.isvfat) {
1369 sbi->nls_io = load_nls(sbi->options.iocharset);
1370 if (!sbi->nls_io) {
1371 printk(KERN_ERR "FAT: IO charset %s not found\n",
1372 sbi->options.iocharset);
1373 goto out_fail;
1374 }
1375 }
1376
1377 error = -ENOMEM;
1378 root_inode = new_inode(sb);
1379 if (!root_inode)
1380 goto out_fail;
1381 root_inode->i_ino = MSDOS_ROOT_INO;
1382 root_inode->i_version = 1;
1383 error = fat_read_root(root_inode);
1384 if (error < 0)
1385 goto out_fail;
1386 error = -ENOMEM;
1387 insert_inode_hash(root_inode);
1388 sb->s_root = d_alloc_root(root_inode);
1389 if (!sb->s_root) {
1390 printk(KERN_ERR "FAT: get root inode failed\n");
1391 goto out_fail;
1392 }
1393
1394 return 0;
1395
1396out_invalid:
1397 error = -EINVAL;
1398 if (!silent)
1399 printk(KERN_INFO "VFS: Can't find a valid FAT filesystem"
1400 " on dev %s.\n", sb->s_id);
1401
1402out_fail:
1403 if (root_inode)
1404 iput(root_inode);
1405 if (sbi->nls_io)
1406 unload_nls(sbi->nls_io);
1407 if (sbi->nls_disk)
1408 unload_nls(sbi->nls_disk);
1409 if (sbi->options.iocharset != fat_default_iocharset)
1410 kfree(sbi->options.iocharset);
1411 sb->s_fs_info = NULL;
1412 kfree(sbi);
1413 return error;
1414}
1415
OGAWA Hirofumi7c709d02006-01-08 01:02:10 -08001416EXPORT_SYMBOL_GPL(fat_fill_super);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001417
Chris Masonae78bf92006-09-29 02:00:03 -07001418/*
1419 * helper function for fat_flush_inodes. This writes both the inode
1420 * and the file data blocks, waiting for in flight data blocks before
1421 * the start of the call. It does not wait for any io started
1422 * during the call
1423 */
1424static int writeback_inode(struct inode *inode)
1425{
1426
1427 int ret;
1428 struct address_space *mapping = inode->i_mapping;
1429 struct writeback_control wbc = {
1430 .sync_mode = WB_SYNC_NONE,
1431 .nr_to_write = 0,
1432 };
1433 /* if we used WB_SYNC_ALL, sync_inode waits for the io for the
1434 * inode to finish. So WB_SYNC_NONE is sent down to sync_inode
1435 * and filemap_fdatawrite is used for the data blocks
1436 */
1437 ret = sync_inode(inode, &wbc);
1438 if (!ret)
1439 ret = filemap_fdatawrite(mapping);
1440 return ret;
1441}
1442
1443/*
1444 * write data and metadata corresponding to i1 and i2. The io is
1445 * started but we do not wait for any of it to finish.
1446 *
1447 * filemap_flush is used for the block device, so if there is a dirty
1448 * page for a block already in flight, we will not wait and start the
1449 * io over again
1450 */
1451int fat_flush_inodes(struct super_block *sb, struct inode *i1, struct inode *i2)
1452{
1453 int ret = 0;
1454 if (!MSDOS_SB(sb)->options.flush)
1455 return 0;
1456 if (i1)
1457 ret = writeback_inode(i1);
1458 if (!ret && i2)
1459 ret = writeback_inode(i2);
Eric Sesterhenn97e860d2006-10-11 01:21:59 -07001460 if (!ret) {
Chris Masonae78bf92006-09-29 02:00:03 -07001461 struct address_space *mapping = sb->s_bdev->bd_inode->i_mapping;
1462 ret = filemap_flush(mapping);
1463 }
1464 return ret;
1465}
1466EXPORT_SYMBOL_GPL(fat_flush_inodes);
1467
Linus Torvalds1da177e2005-04-16 15:20:36 -07001468static int __init init_fat_fs(void)
1469{
Pekka J Enberg532a39a2005-06-30 02:59:01 -07001470 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471
Pekka J Enberg532a39a2005-06-30 02:59:01 -07001472 err = fat_cache_init();
1473 if (err)
1474 return err;
1475
1476 err = fat_init_inodecache();
1477 if (err)
1478 goto failed;
1479
1480 return 0;
1481
1482failed:
1483 fat_cache_destroy();
1484 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001485}
1486
1487static void __exit exit_fat_fs(void)
1488{
1489 fat_cache_destroy();
1490 fat_destroy_inodecache();
1491}
1492
1493module_init(init_fat_fs)
1494module_exit(exit_fat_fs)
1495
1496MODULE_LICENSE("GPL");