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
10 * Max Cohan: Fixed invalid FSINFO offset when info_sector is 0
13 #include <linux/module.h>
14 #include <linux/init.h>
15 #include <linux/time.h>
16 #include <linux/slab.h>
17 #include <linux/seq_file.h>
18 #include <linux/pagemap.h>
19 #include <linux/mpage.h>
20 #include <linux/buffer_head.h>
21 #include <linux/mount.h>
22 #include <linux/aio.h>
23 #include <linux/vfs.h>
24 #include <linux/parser.h>
25 #include <linux/uio.h>
26 #include <linux/writeback.h>
27 #include <linux/log2.h>
28 #include <linux/hash.h>
29 #include <linux/blkdev.h>
30 #include <asm/unaligned.h>
33 #ifndef CONFIG_FAT_DEFAULT_IOCHARSET
34 /* if user don't select VFAT, this is undefined. */
35 #define CONFIG_FAT_DEFAULT_IOCHARSET ""
38 static int fat_default_codepage = CONFIG_FAT_DEFAULT_CODEPAGE;
39 static char fat_default_iocharset[] = CONFIG_FAT_DEFAULT_IOCHARSET;
42 static int fat_add_cluster(struct inode *inode)
46 err = fat_alloc_clusters(inode, &cluster, 1);
49 /* FIXME: this cluster should be added after data of this
50 * cluster is writed */
51 err = fat_chain_add(inode, cluster, 1);
53 fat_free_clusters(inode, cluster);
57 static inline int __fat_get_block(struct inode *inode, sector_t iblock,
58 unsigned long *max_blocks,
59 struct buffer_head *bh_result, int create)
61 struct super_block *sb = inode->i_sb;
62 struct msdos_sb_info *sbi = MSDOS_SB(sb);
63 unsigned long mapped_blocks;
67 err = fat_bmap(inode, iblock, &phys, &mapped_blocks, create);
71 map_bh(bh_result, sb, phys);
72 *max_blocks = min(mapped_blocks, *max_blocks);
78 if (iblock != MSDOS_I(inode)->mmu_private >> sb->s_blocksize_bits) {
79 fat_fs_error(sb, "corrupted file size (i_pos %lld, %lld)",
80 MSDOS_I(inode)->i_pos, MSDOS_I(inode)->mmu_private);
84 offset = (unsigned long)iblock & (sbi->sec_per_clus - 1);
86 /* TODO: multiple cluster allocation would be desirable. */
87 err = fat_add_cluster(inode);
91 /* available blocks on this cluster */
92 mapped_blocks = sbi->sec_per_clus - offset;
94 *max_blocks = min(mapped_blocks, *max_blocks);
95 MSDOS_I(inode)->mmu_private += *max_blocks << sb->s_blocksize_bits;
97 err = fat_bmap(inode, iblock, &phys, &mapped_blocks, create);
102 BUG_ON(*max_blocks != mapped_blocks);
103 set_buffer_new(bh_result);
104 map_bh(bh_result, sb, phys);
109 static int fat_get_block(struct inode *inode, sector_t iblock,
110 struct buffer_head *bh_result, int create)
112 struct super_block *sb = inode->i_sb;
113 unsigned long max_blocks = bh_result->b_size >> inode->i_blkbits;
116 err = __fat_get_block(inode, iblock, &max_blocks, bh_result, create);
119 bh_result->b_size = max_blocks << sb->s_blocksize_bits;
123 static int fat_writepage(struct page *page, struct writeback_control *wbc)
125 return block_write_full_page(page, fat_get_block, wbc);
128 static int fat_writepages(struct address_space *mapping,
129 struct writeback_control *wbc)
131 return mpage_writepages(mapping, wbc, fat_get_block);
134 static int fat_readpage(struct file *file, struct page *page)
136 return mpage_readpage(page, fat_get_block);
139 static int fat_readpages(struct file *file, struct address_space *mapping,
140 struct list_head *pages, unsigned nr_pages)
142 return mpage_readpages(mapping, pages, nr_pages, fat_get_block);
145 static void fat_write_failed(struct address_space *mapping, loff_t to)
147 struct inode *inode = mapping->host;
149 if (to > inode->i_size) {
150 truncate_pagecache(inode, to, inode->i_size);
151 fat_truncate_blocks(inode, inode->i_size);
155 static int fat_zero_falloc_area(struct file *file,
156 struct address_space *mapping, loff_t pos)
159 struct inode *inode = mapping->host;
160 loff_t curpos = i_size_read(inode);
161 size_t count = pos - curpos;
165 unsigned offset, bytes;
168 offset = (curpos & (PAGE_CACHE_SIZE - 1));
169 bytes = PAGE_CACHE_SIZE - offset;
170 bytes = min(bytes, count);
172 err = pagecache_write_begin(NULL, mapping, curpos, bytes,
173 AOP_FLAG_UNINTERRUPTIBLE,
178 zero_user(page, offset, bytes);
180 err = pagecache_write_end(NULL, mapping, curpos, bytes, bytes,
192 static int fat_write_begin(struct file *file, struct address_space *mapping,
193 loff_t pos, unsigned len, unsigned flags,
194 struct page **pagep, void **fsdata)
197 loff_t mmu_private_ideal, mmu_private_actual;
199 struct inode *inode = mapping->host;
200 struct super_block *sb = inode->i_sb;
202 size = i_size_read(inode);
203 mmu_private_actual = MSDOS_I(inode)->mmu_private;
204 mmu_private_ideal = round_up(size, sb->s_blocksize);
205 if ((mmu_private_actual > mmu_private_ideal) && (pos > size)) {
206 err = fat_zero_falloc_area(file, mapping, pos);
208 fat_msg(sb, KERN_ERR,
209 "Error (%d) zeroing fallocated area", err);
215 err = cont_write_begin(file, mapping, pos, len, flags,
216 pagep, fsdata, fat_get_block,
217 &MSDOS_I(mapping->host)->mmu_private);
219 fat_write_failed(mapping, pos + len);
223 static int fat_write_end(struct file *file, struct address_space *mapping,
224 loff_t pos, unsigned len, unsigned copied,
225 struct page *pagep, void *fsdata)
227 struct inode *inode = mapping->host;
229 err = generic_write_end(file, mapping, pos, len, copied, pagep, fsdata);
231 fat_write_failed(mapping, pos + len);
232 if (!(err < 0) && !(MSDOS_I(inode)->i_attrs & ATTR_ARCH)) {
233 inode->i_mtime = inode->i_ctime = CURRENT_TIME_SEC;
234 MSDOS_I(inode)->i_attrs |= ATTR_ARCH;
235 mark_inode_dirty(inode);
240 static ssize_t fat_direct_IO(int rw, struct kiocb *iocb,
241 const struct iovec *iov,
242 loff_t offset, unsigned long nr_segs)
244 struct file *file = iocb->ki_filp;
245 struct address_space *mapping = file->f_mapping;
246 struct inode *inode = mapping->host;
251 * FIXME: blockdev_direct_IO() doesn't use ->write_begin(),
252 * so we need to update the ->mmu_private to block boundary.
254 * But we must fill the remaining area or hole by nul for
255 * updating ->mmu_private.
257 * Return 0, and fallback to normal buffered write.
259 loff_t size = offset + iov_length(iov, nr_segs);
260 if (MSDOS_I(inode)->mmu_private < size)
265 * FAT need to use the DIO_LOCKING for avoiding the race
266 * condition of fat_get_block() and ->truncate().
268 ret = blockdev_direct_IO(rw, iocb, inode, iov, offset, nr_segs,
270 if (ret < 0 && (rw & WRITE))
271 fat_write_failed(mapping, offset + iov_length(iov, nr_segs));
276 static sector_t _fat_bmap(struct address_space *mapping, sector_t block)
280 /* fat_get_cluster() assumes the requested blocknr isn't truncated. */
281 down_read(&MSDOS_I(mapping->host)->truncate_lock);
282 blocknr = generic_block_bmap(mapping, block, fat_get_block);
283 up_read(&MSDOS_I(mapping->host)->truncate_lock);
288 static const struct address_space_operations fat_aops = {
289 .readpage = fat_readpage,
290 .readpages = fat_readpages,
291 .writepage = fat_writepage,
292 .writepages = fat_writepages,
293 .write_begin = fat_write_begin,
294 .write_end = fat_write_end,
295 .direct_IO = fat_direct_IO,
300 * New FAT inode stuff. We do the following:
301 * a) i_ino is constant and has nothing with on-disk location.
302 * b) FAT manages its own cache of directory entries.
303 * c) *This* cache is indexed by on-disk location.
304 * d) inode has an associated directory entry, all right, but
305 * it may be unhashed.
306 * e) currently entries are stored within struct inode. That should
308 * f) we deal with races in the following way:
309 * 1. readdir() and lookup() do FAT-dir-cache lookup.
310 * 2. rename() unhashes the F-d-c entry and rehashes it in
312 * 3. unlink() and rmdir() unhash F-d-c entry.
313 * 4. fat_write_inode() checks whether the thing is unhashed.
314 * If it is we silently return. If it isn't we do bread(),
315 * check if the location is still valid and retry if it
316 * isn't. Otherwise we do changes.
317 * 5. Spinlock is used to protect hash/unhash/location check/lookup
318 * 6. fat_evict_inode() unhashes the F-d-c entry.
319 * 7. lookup() and readdir() do igrab() if they find a F-d-c entry
320 * and consider negative result as cache miss.
323 static void fat_hash_init(struct super_block *sb)
325 struct msdos_sb_info *sbi = MSDOS_SB(sb);
328 spin_lock_init(&sbi->inode_hash_lock);
329 for (i = 0; i < FAT_HASH_SIZE; i++)
330 INIT_HLIST_HEAD(&sbi->inode_hashtable[i]);
333 static inline unsigned long fat_hash(loff_t i_pos)
335 return hash_32(i_pos, FAT_HASH_BITS);
338 static void dir_hash_init(struct super_block *sb)
340 struct msdos_sb_info *sbi = MSDOS_SB(sb);
343 spin_lock_init(&sbi->dir_hash_lock);
344 for (i = 0; i < FAT_HASH_SIZE; i++)
345 INIT_HLIST_HEAD(&sbi->dir_hashtable[i]);
348 void fat_attach(struct inode *inode, loff_t i_pos)
350 struct msdos_sb_info *sbi = MSDOS_SB(inode->i_sb);
352 if (inode->i_ino != MSDOS_ROOT_INO) {
353 struct hlist_head *head = sbi->inode_hashtable
356 spin_lock(&sbi->inode_hash_lock);
357 MSDOS_I(inode)->i_pos = i_pos;
358 hlist_add_head(&MSDOS_I(inode)->i_fat_hash, head);
359 spin_unlock(&sbi->inode_hash_lock);
362 /* If NFS support is enabled, cache the mapping of start cluster
363 * to directory inode. This is used during reconnection of
364 * dentries to the filesystem root.
366 if (S_ISDIR(inode->i_mode) && sbi->options.nfs) {
367 struct hlist_head *d_head = sbi->dir_hashtable;
368 d_head += fat_dir_hash(MSDOS_I(inode)->i_logstart);
370 spin_lock(&sbi->dir_hash_lock);
371 hlist_add_head(&MSDOS_I(inode)->i_dir_hash, d_head);
372 spin_unlock(&sbi->dir_hash_lock);
375 EXPORT_SYMBOL_GPL(fat_attach);
377 void fat_detach(struct inode *inode)
379 struct msdos_sb_info *sbi = MSDOS_SB(inode->i_sb);
380 spin_lock(&sbi->inode_hash_lock);
381 MSDOS_I(inode)->i_pos = 0;
382 hlist_del_init(&MSDOS_I(inode)->i_fat_hash);
383 spin_unlock(&sbi->inode_hash_lock);
385 if (S_ISDIR(inode->i_mode) && sbi->options.nfs) {
386 spin_lock(&sbi->dir_hash_lock);
387 hlist_del_init(&MSDOS_I(inode)->i_dir_hash);
388 spin_unlock(&sbi->dir_hash_lock);
391 EXPORT_SYMBOL_GPL(fat_detach);
393 struct inode *fat_iget(struct super_block *sb, loff_t i_pos)
395 struct msdos_sb_info *sbi = MSDOS_SB(sb);
396 struct hlist_head *head = sbi->inode_hashtable + fat_hash(i_pos);
397 struct msdos_inode_info *i;
398 struct inode *inode = NULL;
400 spin_lock(&sbi->inode_hash_lock);
401 hlist_for_each_entry(i, head, i_fat_hash) {
402 BUG_ON(i->vfs_inode.i_sb != sb);
403 if (i->i_pos != i_pos)
405 inode = igrab(&i->vfs_inode);
409 spin_unlock(&sbi->inode_hash_lock);
413 static int is_exec(unsigned char *extension)
415 unsigned char *exe_extensions = "EXECOMBAT", *walk;
417 for (walk = exe_extensions; *walk; walk += 3)
418 if (!strncmp(extension, walk, 3))
423 static int fat_calc_dir_size(struct inode *inode)
425 struct msdos_sb_info *sbi = MSDOS_SB(inode->i_sb);
426 int ret, fclus, dclus;
429 if (MSDOS_I(inode)->i_start == 0)
432 ret = fat_get_cluster(inode, FAT_ENT_EOF, &fclus, &dclus);
435 inode->i_size = (fclus + 1) << sbi->cluster_bits;
440 /* doesn't deal with root inode */
441 int fat_fill_inode(struct inode *inode, struct msdos_dir_entry *de)
443 struct msdos_sb_info *sbi = MSDOS_SB(inode->i_sb);
446 MSDOS_I(inode)->i_pos = 0;
447 inode->i_uid = sbi->options.fs_uid;
448 inode->i_gid = sbi->options.fs_gid;
450 inode->i_generation = get_seconds();
452 if ((de->attr & ATTR_DIR) && !IS_FREE(de->name)) {
453 inode->i_generation &= ~1;
454 inode->i_mode = fat_make_mode(sbi, de->attr, S_IRWXUGO);
455 inode->i_op = sbi->dir_ops;
456 inode->i_fop = &fat_dir_operations;
458 MSDOS_I(inode)->i_start = fat_get_start(sbi, de);
459 MSDOS_I(inode)->i_logstart = MSDOS_I(inode)->i_start;
460 error = fat_calc_dir_size(inode);
463 MSDOS_I(inode)->mmu_private = inode->i_size;
465 set_nlink(inode, fat_subdirs(inode));
466 } else { /* not a directory */
467 inode->i_generation |= 1;
468 inode->i_mode = fat_make_mode(sbi, de->attr,
469 ((sbi->options.showexec && !is_exec(de->name + 8))
470 ? S_IRUGO|S_IWUGO : S_IRWXUGO));
471 MSDOS_I(inode)->i_start = fat_get_start(sbi, de);
473 MSDOS_I(inode)->i_logstart = MSDOS_I(inode)->i_start;
474 inode->i_size = le32_to_cpu(de->size);
475 inode->i_op = &fat_file_inode_operations;
476 inode->i_fop = &fat_file_operations;
477 inode->i_mapping->a_ops = &fat_aops;
478 MSDOS_I(inode)->mmu_private = inode->i_size;
480 if (de->attr & ATTR_SYS) {
481 if (sbi->options.sys_immutable)
482 inode->i_flags |= S_IMMUTABLE;
484 fat_save_attrs(inode, de->attr);
486 inode->i_blocks = ((inode->i_size + (sbi->cluster_size - 1))
487 & ~((loff_t)sbi->cluster_size - 1)) >> 9;
489 fat_time_fat2unix(sbi, &inode->i_mtime, de->time, de->date, 0);
490 if (sbi->options.isvfat) {
491 fat_time_fat2unix(sbi, &inode->i_ctime, de->ctime,
492 de->cdate, de->ctime_cs);
493 fat_time_fat2unix(sbi, &inode->i_atime, 0, de->adate, 0);
495 inode->i_ctime = inode->i_atime = inode->i_mtime;
500 static inline void fat_lock_build_inode(struct msdos_sb_info *sbi)
502 if (sbi->options.nfs == FAT_NFS_NOSTALE_RO)
503 mutex_lock(&sbi->nfs_build_inode_lock);
506 static inline void fat_unlock_build_inode(struct msdos_sb_info *sbi)
508 if (sbi->options.nfs == FAT_NFS_NOSTALE_RO)
509 mutex_unlock(&sbi->nfs_build_inode_lock);
512 struct inode *fat_build_inode(struct super_block *sb,
513 struct msdos_dir_entry *de, loff_t i_pos)
518 fat_lock_build_inode(MSDOS_SB(sb));
519 inode = fat_iget(sb, i_pos);
522 inode = new_inode(sb);
524 inode = ERR_PTR(-ENOMEM);
527 inode->i_ino = iunique(sb, MSDOS_ROOT_INO);
528 inode->i_version = 1;
529 err = fat_fill_inode(inode, de);
532 inode = ERR_PTR(err);
535 fat_attach(inode, i_pos);
536 insert_inode_hash(inode);
538 fat_unlock_build_inode(MSDOS_SB(sb));
542 EXPORT_SYMBOL_GPL(fat_build_inode);
544 static void fat_evict_inode(struct inode *inode)
546 truncate_inode_pages(&inode->i_data, 0);
547 if (!inode->i_nlink) {
549 fat_truncate_blocks(inode, 0);
551 invalidate_inode_buffers(inode);
553 fat_cache_inval_inode(inode);
557 static void fat_set_state(struct super_block *sb,
558 unsigned int set, unsigned int force)
560 struct buffer_head *bh;
561 struct fat_boot_sector *b;
562 struct msdos_sb_info *sbi = sb->s_fs_info;
564 /* do not change any thing if mounted read only */
565 if ((sb->s_flags & MS_RDONLY) && !force)
568 /* do not change state if fs was dirty */
570 /* warn only on set (mount). */
572 fat_msg(sb, KERN_WARNING, "Volume was not properly "
573 "unmounted. Some data may be corrupt. "
578 bh = sb_bread(sb, 0);
580 fat_msg(sb, KERN_ERR, "unable to read boot sector "
581 "to mark fs as dirty");
585 b = (struct fat_boot_sector *) bh->b_data;
587 if (sbi->fat_bits == 32) {
589 b->fat32.state |= FAT_STATE_DIRTY;
591 b->fat32.state &= ~FAT_STATE_DIRTY;
592 } else /* fat 16 and 12 */ {
594 b->fat16.state |= FAT_STATE_DIRTY;
596 b->fat16.state &= ~FAT_STATE_DIRTY;
599 mark_buffer_dirty(bh);
600 sync_dirty_buffer(bh);
604 static void fat_put_super(struct super_block *sb)
606 struct msdos_sb_info *sbi = MSDOS_SB(sb);
608 fat_set_state(sb, 0, 0);
610 iput(sbi->fsinfo_inode);
611 iput(sbi->fat_inode);
613 unload_nls(sbi->nls_disk);
614 unload_nls(sbi->nls_io);
616 if (sbi->options.iocharset != fat_default_iocharset)
617 kfree(sbi->options.iocharset);
619 sb->s_fs_info = NULL;
623 static struct kmem_cache *fat_inode_cachep;
625 static struct inode *fat_alloc_inode(struct super_block *sb)
627 struct msdos_inode_info *ei;
628 ei = kmem_cache_alloc(fat_inode_cachep, GFP_NOFS);
632 init_rwsem(&ei->truncate_lock);
633 return &ei->vfs_inode;
636 static void fat_i_callback(struct rcu_head *head)
638 struct inode *inode = container_of(head, struct inode, i_rcu);
639 kmem_cache_free(fat_inode_cachep, MSDOS_I(inode));
642 static void fat_destroy_inode(struct inode *inode)
644 call_rcu(&inode->i_rcu, fat_i_callback);
647 static void init_once(void *foo)
649 struct msdos_inode_info *ei = (struct msdos_inode_info *)foo;
651 spin_lock_init(&ei->cache_lru_lock);
653 ei->cache_valid_id = FAT_CACHE_VALID + 1;
654 INIT_LIST_HEAD(&ei->cache_lru);
655 INIT_HLIST_NODE(&ei->i_fat_hash);
656 INIT_HLIST_NODE(&ei->i_dir_hash);
657 inode_init_once(&ei->vfs_inode);
660 static int __init fat_init_inodecache(void)
662 fat_inode_cachep = kmem_cache_create("fat_inode_cache",
663 sizeof(struct msdos_inode_info),
664 0, (SLAB_RECLAIM_ACCOUNT|
667 if (fat_inode_cachep == NULL)
672 static void __exit fat_destroy_inodecache(void)
675 * Make sure all delayed rcu free inodes are flushed before we
679 kmem_cache_destroy(fat_inode_cachep);
682 static int fat_remount(struct super_block *sb, int *flags, char *data)
685 struct msdos_sb_info *sbi = MSDOS_SB(sb);
686 *flags |= MS_NODIRATIME | (sbi->options.isvfat ? 0 : MS_NOATIME);
688 /* make sure we update state on remount. */
689 new_rdonly = *flags & MS_RDONLY;
690 if (new_rdonly != (sb->s_flags & MS_RDONLY)) {
692 fat_set_state(sb, 0, 0);
694 fat_set_state(sb, 1, 1);
699 static int fat_statfs(struct dentry *dentry, struct kstatfs *buf)
701 struct super_block *sb = dentry->d_sb;
702 struct msdos_sb_info *sbi = MSDOS_SB(sb);
703 u64 id = huge_encode_dev(sb->s_bdev->bd_dev);
705 /* If the count of free cluster is still unknown, counts it here. */
706 if (sbi->free_clusters == -1 || !sbi->free_clus_valid) {
707 int err = fat_count_free_clusters(dentry->d_sb);
712 buf->f_type = dentry->d_sb->s_magic;
713 buf->f_bsize = sbi->cluster_size;
714 buf->f_blocks = sbi->max_cluster - FAT_START_ENT;
715 buf->f_bfree = sbi->free_clusters;
716 buf->f_bavail = sbi->free_clusters;
717 buf->f_fsid.val[0] = (u32)id;
718 buf->f_fsid.val[1] = (u32)(id >> 32);
720 (sbi->options.isvfat ? FAT_LFN_LEN : 12) * NLS_MAX_CHARSET_SIZE;
725 static int __fat_write_inode(struct inode *inode, int wait)
727 struct super_block *sb = inode->i_sb;
728 struct msdos_sb_info *sbi = MSDOS_SB(sb);
729 struct buffer_head *bh;
730 struct msdos_dir_entry *raw_entry;
735 if (inode->i_ino == MSDOS_ROOT_INO)
739 i_pos = fat_i_pos_read(sbi, inode);
743 fat_get_blknr_offset(sbi, i_pos, &blocknr, &offset);
744 bh = sb_bread(sb, blocknr);
746 fat_msg(sb, KERN_ERR, "unable to read inode block "
747 "for updating (i_pos %lld)", i_pos);
750 spin_lock(&sbi->inode_hash_lock);
751 if (i_pos != MSDOS_I(inode)->i_pos) {
752 spin_unlock(&sbi->inode_hash_lock);
757 raw_entry = &((struct msdos_dir_entry *) (bh->b_data))[offset];
758 if (S_ISDIR(inode->i_mode))
761 raw_entry->size = cpu_to_le32(inode->i_size);
762 raw_entry->attr = fat_make_attrs(inode);
763 fat_set_start(raw_entry, MSDOS_I(inode)->i_logstart);
764 fat_time_unix2fat(sbi, &inode->i_mtime, &raw_entry->time,
765 &raw_entry->date, NULL);
766 if (sbi->options.isvfat) {
768 fat_time_unix2fat(sbi, &inode->i_ctime, &raw_entry->ctime,
769 &raw_entry->cdate, &raw_entry->ctime_cs);
770 fat_time_unix2fat(sbi, &inode->i_atime, &atime,
771 &raw_entry->adate, NULL);
773 spin_unlock(&sbi->inode_hash_lock);
774 mark_buffer_dirty(bh);
777 err = sync_dirty_buffer(bh);
782 static int fat_write_inode(struct inode *inode, struct writeback_control *wbc)
786 if (inode->i_ino == MSDOS_FSINFO_INO) {
787 struct super_block *sb = inode->i_sb;
789 mutex_lock(&MSDOS_SB(sb)->s_lock);
790 err = fat_clusters_flush(sb);
791 mutex_unlock(&MSDOS_SB(sb)->s_lock);
793 err = __fat_write_inode(inode, wbc->sync_mode == WB_SYNC_ALL);
798 int fat_sync_inode(struct inode *inode)
800 return __fat_write_inode(inode, 1);
803 EXPORT_SYMBOL_GPL(fat_sync_inode);
805 static int fat_show_options(struct seq_file *m, struct dentry *root);
806 static const struct super_operations fat_sops = {
807 .alloc_inode = fat_alloc_inode,
808 .destroy_inode = fat_destroy_inode,
809 .write_inode = fat_write_inode,
810 .evict_inode = fat_evict_inode,
811 .put_super = fat_put_super,
812 .statfs = fat_statfs,
813 .remount_fs = fat_remount,
815 .show_options = fat_show_options,
818 static int fat_show_options(struct seq_file *m, struct dentry *root)
820 struct msdos_sb_info *sbi = MSDOS_SB(root->d_sb);
821 struct fat_mount_options *opts = &sbi->options;
822 int isvfat = opts->isvfat;
824 if (!uid_eq(opts->fs_uid, GLOBAL_ROOT_UID))
825 seq_printf(m, ",uid=%u",
826 from_kuid_munged(&init_user_ns, opts->fs_uid));
827 if (!gid_eq(opts->fs_gid, GLOBAL_ROOT_GID))
828 seq_printf(m, ",gid=%u",
829 from_kgid_munged(&init_user_ns, opts->fs_gid));
830 seq_printf(m, ",fmask=%04o", opts->fs_fmask);
831 seq_printf(m, ",dmask=%04o", opts->fs_dmask);
832 if (opts->allow_utime)
833 seq_printf(m, ",allow_utime=%04o", opts->allow_utime);
835 /* strip "cp" prefix from displayed option */
836 seq_printf(m, ",codepage=%s", &sbi->nls_disk->charset[2]);
839 seq_printf(m, ",iocharset=%s", sbi->nls_io->charset);
841 switch (opts->shortname) {
842 case VFAT_SFN_DISPLAY_WIN95 | VFAT_SFN_CREATE_WIN95:
843 seq_puts(m, ",shortname=win95");
845 case VFAT_SFN_DISPLAY_WINNT | VFAT_SFN_CREATE_WINNT:
846 seq_puts(m, ",shortname=winnt");
848 case VFAT_SFN_DISPLAY_WINNT | VFAT_SFN_CREATE_WIN95:
849 seq_puts(m, ",shortname=mixed");
851 case VFAT_SFN_DISPLAY_LOWER | VFAT_SFN_CREATE_WIN95:
852 seq_puts(m, ",shortname=lower");
855 seq_puts(m, ",shortname=unknown");
859 if (opts->name_check != 'n')
860 seq_printf(m, ",check=%c", opts->name_check);
862 seq_puts(m, ",usefree");
864 seq_puts(m, ",quiet");
866 seq_puts(m, ",showexec");
867 if (opts->sys_immutable)
868 seq_puts(m, ",sys_immutable");
871 seq_puts(m, ",dotsOK=yes");
873 seq_puts(m, ",nocase");
876 seq_puts(m, ",utf8");
877 if (opts->unicode_xlate)
878 seq_puts(m, ",uni_xlate");
880 seq_puts(m, ",nonumtail");
882 seq_puts(m, ",rodir");
885 seq_puts(m, ",flush");
887 if (opts->time_offset)
888 seq_printf(m, ",time_offset=%d", opts->time_offset);
890 seq_puts(m, ",tz=UTC");
892 if (opts->errors == FAT_ERRORS_CONT)
893 seq_puts(m, ",errors=continue");
894 else if (opts->errors == FAT_ERRORS_PANIC)
895 seq_puts(m, ",errors=panic");
897 seq_puts(m, ",errors=remount-ro");
898 if (opts->nfs == FAT_NFS_NOSTALE_RO)
899 seq_puts(m, ",nfs=nostale_ro");
901 seq_puts(m, ",nfs=stale_rw");
903 seq_puts(m, ",discard");
909 Opt_check_n, Opt_check_r, Opt_check_s, Opt_uid, Opt_gid,
910 Opt_umask, Opt_dmask, Opt_fmask, Opt_allow_utime, Opt_codepage,
911 Opt_usefree, Opt_nocase, Opt_quiet, Opt_showexec, Opt_debug,
912 Opt_immutable, Opt_dots, Opt_nodots,
913 Opt_charset, Opt_shortname_lower, Opt_shortname_win95,
914 Opt_shortname_winnt, Opt_shortname_mixed, Opt_utf8_no, Opt_utf8_yes,
915 Opt_uni_xl_no, Opt_uni_xl_yes, Opt_nonumtail_no, Opt_nonumtail_yes,
916 Opt_obsolete, Opt_flush, Opt_tz_utc, Opt_rodir, Opt_err_cont,
917 Opt_err_panic, Opt_err_ro, Opt_discard, Opt_nfs, Opt_time_offset,
918 Opt_nfs_stale_rw, Opt_nfs_nostale_ro, Opt_err,
921 static const match_table_t fat_tokens = {
922 {Opt_check_r, "check=relaxed"},
923 {Opt_check_s, "check=strict"},
924 {Opt_check_n, "check=normal"},
925 {Opt_check_r, "check=r"},
926 {Opt_check_s, "check=s"},
927 {Opt_check_n, "check=n"},
930 {Opt_umask, "umask=%o"},
931 {Opt_dmask, "dmask=%o"},
932 {Opt_fmask, "fmask=%o"},
933 {Opt_allow_utime, "allow_utime=%o"},
934 {Opt_codepage, "codepage=%u"},
935 {Opt_usefree, "usefree"},
936 {Opt_nocase, "nocase"},
937 {Opt_quiet, "quiet"},
938 {Opt_showexec, "showexec"},
939 {Opt_debug, "debug"},
940 {Opt_immutable, "sys_immutable"},
941 {Opt_flush, "flush"},
942 {Opt_tz_utc, "tz=UTC"},
943 {Opt_time_offset, "time_offset=%d"},
944 {Opt_err_cont, "errors=continue"},
945 {Opt_err_panic, "errors=panic"},
946 {Opt_err_ro, "errors=remount-ro"},
947 {Opt_discard, "discard"},
948 {Opt_nfs_stale_rw, "nfs"},
949 {Opt_nfs_stale_rw, "nfs=stale_rw"},
950 {Opt_nfs_nostale_ro, "nfs=nostale_ro"},
951 {Opt_obsolete, "conv=binary"},
952 {Opt_obsolete, "conv=text"},
953 {Opt_obsolete, "conv=auto"},
954 {Opt_obsolete, "conv=b"},
955 {Opt_obsolete, "conv=t"},
956 {Opt_obsolete, "conv=a"},
957 {Opt_obsolete, "fat=%u"},
958 {Opt_obsolete, "blocksize=%u"},
959 {Opt_obsolete, "cvf_format=%20s"},
960 {Opt_obsolete, "cvf_options=%100s"},
961 {Opt_obsolete, "posix"},
964 static const match_table_t msdos_tokens = {
965 {Opt_nodots, "nodots"},
966 {Opt_nodots, "dotsOK=no"},
968 {Opt_dots, "dotsOK=yes"},
971 static const match_table_t vfat_tokens = {
972 {Opt_charset, "iocharset=%s"},
973 {Opt_shortname_lower, "shortname=lower"},
974 {Opt_shortname_win95, "shortname=win95"},
975 {Opt_shortname_winnt, "shortname=winnt"},
976 {Opt_shortname_mixed, "shortname=mixed"},
977 {Opt_utf8_no, "utf8=0"}, /* 0 or no or false */
978 {Opt_utf8_no, "utf8=no"},
979 {Opt_utf8_no, "utf8=false"},
980 {Opt_utf8_yes, "utf8=1"}, /* empty or 1 or yes or true */
981 {Opt_utf8_yes, "utf8=yes"},
982 {Opt_utf8_yes, "utf8=true"},
983 {Opt_utf8_yes, "utf8"},
984 {Opt_uni_xl_no, "uni_xlate=0"}, /* 0 or no or false */
985 {Opt_uni_xl_no, "uni_xlate=no"},
986 {Opt_uni_xl_no, "uni_xlate=false"},
987 {Opt_uni_xl_yes, "uni_xlate=1"}, /* empty or 1 or yes or true */
988 {Opt_uni_xl_yes, "uni_xlate=yes"},
989 {Opt_uni_xl_yes, "uni_xlate=true"},
990 {Opt_uni_xl_yes, "uni_xlate"},
991 {Opt_nonumtail_no, "nonumtail=0"}, /* 0 or no or false */
992 {Opt_nonumtail_no, "nonumtail=no"},
993 {Opt_nonumtail_no, "nonumtail=false"},
994 {Opt_nonumtail_yes, "nonumtail=1"}, /* empty or 1 or yes or true */
995 {Opt_nonumtail_yes, "nonumtail=yes"},
996 {Opt_nonumtail_yes, "nonumtail=true"},
997 {Opt_nonumtail_yes, "nonumtail"},
998 {Opt_rodir, "rodir"},
1002 static int parse_options(struct super_block *sb, char *options, int is_vfat,
1003 int silent, int *debug, struct fat_mount_options *opts)
1006 substring_t args[MAX_OPT_ARGS];
1010 opts->isvfat = is_vfat;
1012 opts->fs_uid = current_uid();
1013 opts->fs_gid = current_gid();
1014 opts->fs_fmask = opts->fs_dmask = current_umask();
1015 opts->allow_utime = -1;
1016 opts->codepage = fat_default_codepage;
1017 opts->iocharset = fat_default_iocharset;
1019 opts->shortname = VFAT_SFN_DISPLAY_WINNT|VFAT_SFN_CREATE_WIN95;
1022 opts->shortname = 0;
1025 opts->name_check = 'n';
1026 opts->quiet = opts->showexec = opts->sys_immutable = opts->dotsOK = 0;
1027 opts->utf8 = opts->unicode_xlate = 0;
1029 opts->usefree = opts->nocase = 0;
1032 opts->errors = FAT_ERRORS_RO;
1038 while ((p = strsep(&options, ",")) != NULL) {
1043 token = match_token(p, fat_tokens, args);
1044 if (token == Opt_err) {
1046 token = match_token(p, vfat_tokens, args);
1048 token = match_token(p, msdos_tokens, args);
1052 opts->name_check = 's';
1055 opts->name_check = 'r';
1058 opts->name_check = 'n';
1067 /* for backward compatibility */
1068 opts->shortname = VFAT_SFN_DISPLAY_WIN95
1069 | VFAT_SFN_CREATE_WIN95;
1082 opts->sys_immutable = 1;
1085 if (match_int(&args[0], &option))
1087 opts->fs_uid = make_kuid(current_user_ns(), option);
1088 if (!uid_valid(opts->fs_uid))
1092 if (match_int(&args[0], &option))
1094 opts->fs_gid = make_kgid(current_user_ns(), option);
1095 if (!gid_valid(opts->fs_gid))
1099 if (match_octal(&args[0], &option))
1101 opts->fs_fmask = opts->fs_dmask = option;
1104 if (match_octal(&args[0], &option))
1106 opts->fs_dmask = option;
1109 if (match_octal(&args[0], &option))
1111 opts->fs_fmask = option;
1113 case Opt_allow_utime:
1114 if (match_octal(&args[0], &option))
1116 opts->allow_utime = option & (S_IWGRP | S_IWOTH);
1119 if (match_int(&args[0], &option))
1121 opts->codepage = option;
1126 case Opt_time_offset:
1127 if (match_int(&args[0], &option))
1129 if (option < -12 * 60 || option > 12 * 60)
1132 opts->time_offset = option;
1136 opts->time_offset = 0;
1139 opts->errors = FAT_ERRORS_CONT;
1142 opts->errors = FAT_ERRORS_PANIC;
1145 opts->errors = FAT_ERRORS_RO;
1147 case Opt_nfs_stale_rw:
1148 opts->nfs = FAT_NFS_STALE_RW;
1150 case Opt_nfs_nostale_ro:
1151 opts->nfs = FAT_NFS_NOSTALE_RO;
1154 /* msdos specific */
1164 if (opts->iocharset != fat_default_iocharset)
1165 kfree(opts->iocharset);
1166 iocharset = match_strdup(&args[0]);
1169 opts->iocharset = iocharset;
1171 case Opt_shortname_lower:
1172 opts->shortname = VFAT_SFN_DISPLAY_LOWER
1173 | VFAT_SFN_CREATE_WIN95;
1175 case Opt_shortname_win95:
1176 opts->shortname = VFAT_SFN_DISPLAY_WIN95
1177 | VFAT_SFN_CREATE_WIN95;
1179 case Opt_shortname_winnt:
1180 opts->shortname = VFAT_SFN_DISPLAY_WINNT
1181 | VFAT_SFN_CREATE_WINNT;
1183 case Opt_shortname_mixed:
1184 opts->shortname = VFAT_SFN_DISPLAY_WINNT
1185 | VFAT_SFN_CREATE_WIN95;
1187 case Opt_utf8_no: /* 0 or no or false */
1190 case Opt_utf8_yes: /* empty or 1 or yes or true */
1193 case Opt_uni_xl_no: /* 0 or no or false */
1194 opts->unicode_xlate = 0;
1196 case Opt_uni_xl_yes: /* empty or 1 or yes or true */
1197 opts->unicode_xlate = 1;
1199 case Opt_nonumtail_no: /* 0 or no or false */
1200 opts->numtail = 1; /* negated option */
1202 case Opt_nonumtail_yes: /* empty or 1 or yes or true */
1203 opts->numtail = 0; /* negated option */
1212 /* obsolete mount options */
1214 fat_msg(sb, KERN_INFO, "\"%s\" option is obsolete, "
1215 "not supported now", p);
1217 /* unknown option */
1220 fat_msg(sb, KERN_ERR,
1221 "Unrecognized mount option \"%s\" "
1222 "or missing value", p);
1229 /* UTF-8 doesn't provide FAT semantics */
1230 if (!strcmp(opts->iocharset, "utf8")) {
1231 fat_msg(sb, KERN_WARNING, "utf8 is not a recommended IO charset"
1232 " for FAT filesystems, filesystem will be "
1236 /* If user doesn't specify allow_utime, it's initialized from dmask. */
1237 if (opts->allow_utime == (unsigned short)-1)
1238 opts->allow_utime = ~opts->fs_dmask & (S_IWGRP | S_IWOTH);
1239 if (opts->unicode_xlate)
1241 if (opts->nfs == FAT_NFS_NOSTALE_RO) {
1242 sb->s_flags |= MS_RDONLY;
1243 sb->s_export_op = &fat_export_ops_nostale;
1249 static int fat_read_root(struct inode *inode)
1251 struct super_block *sb = inode->i_sb;
1252 struct msdos_sb_info *sbi = MSDOS_SB(sb);
1255 MSDOS_I(inode)->i_pos = MSDOS_ROOT_INO;
1256 inode->i_uid = sbi->options.fs_uid;
1257 inode->i_gid = sbi->options.fs_gid;
1259 inode->i_generation = 0;
1260 inode->i_mode = fat_make_mode(sbi, ATTR_DIR, S_IRWXUGO);
1261 inode->i_op = sbi->dir_ops;
1262 inode->i_fop = &fat_dir_operations;
1263 if (sbi->fat_bits == 32) {
1264 MSDOS_I(inode)->i_start = sbi->root_cluster;
1265 error = fat_calc_dir_size(inode);
1269 MSDOS_I(inode)->i_start = 0;
1270 inode->i_size = sbi->dir_entries * sizeof(struct msdos_dir_entry);
1272 inode->i_blocks = ((inode->i_size + (sbi->cluster_size - 1))
1273 & ~((loff_t)sbi->cluster_size - 1)) >> 9;
1274 MSDOS_I(inode)->i_logstart = 0;
1275 MSDOS_I(inode)->mmu_private = inode->i_size;
1277 fat_save_attrs(inode, ATTR_DIR);
1278 inode->i_mtime.tv_sec = inode->i_atime.tv_sec = inode->i_ctime.tv_sec = 0;
1279 inode->i_mtime.tv_nsec = inode->i_atime.tv_nsec = inode->i_ctime.tv_nsec = 0;
1280 set_nlink(inode, fat_subdirs(inode)+2);
1285 static unsigned long calc_fat_clusters(struct super_block *sb)
1287 struct msdos_sb_info *sbi = MSDOS_SB(sb);
1289 /* Divide first to avoid overflow */
1290 if (sbi->fat_bits != 12) {
1291 unsigned long ent_per_sec = sb->s_blocksize * 8 / sbi->fat_bits;
1292 return ent_per_sec * sbi->fat_length;
1295 return sbi->fat_length * sb->s_blocksize * 8 / sbi->fat_bits;
1299 * Read the super block of an MS-DOS FS.
1301 int fat_fill_super(struct super_block *sb, void *data, int silent, int isvfat,
1302 void (*setup)(struct super_block *))
1304 struct inode *root_inode = NULL, *fat_inode = NULL;
1305 struct inode *fsinfo_inode = NULL;
1306 struct buffer_head *bh;
1307 struct fat_boot_sector *b;
1308 struct msdos_sb_info *sbi;
1309 u16 logical_sector_size;
1310 u32 total_sectors, total_clusters, fat_clusters, rootdir_sectors;
1317 * GFP_KERNEL is ok here, because while we do hold the
1318 * supeblock lock, memory pressure can't call back into
1319 * the filesystem, since we're only just about to mount
1320 * it and have no inodes etc active!
1322 sbi = kzalloc(sizeof(struct msdos_sb_info), GFP_KERNEL);
1325 sb->s_fs_info = sbi;
1327 sb->s_flags |= MS_NODIRATIME;
1328 sb->s_magic = MSDOS_SUPER_MAGIC;
1329 sb->s_op = &fat_sops;
1330 sb->s_export_op = &fat_export_ops;
1331 mutex_init(&sbi->nfs_build_inode_lock);
1332 ratelimit_state_init(&sbi->ratelimit, DEFAULT_RATELIMIT_INTERVAL,
1333 DEFAULT_RATELIMIT_BURST);
1335 error = parse_options(sb, data, isvfat, silent, &debug, &sbi->options);
1339 setup(sb); /* flavour-specific stuff that needs options */
1342 sb_min_blocksize(sb, 512);
1343 bh = sb_bread(sb, 0);
1345 fat_msg(sb, KERN_ERR, "unable to read boot sector");
1349 b = (struct fat_boot_sector *) bh->b_data;
1352 fat_msg(sb, KERN_ERR, "bogus number of reserved sectors");
1358 fat_msg(sb, KERN_ERR, "bogus number of FAT structure");
1364 * Earlier we checked here that b->secs_track and b->head are nonzero,
1365 * but it turns out valid FAT filesystems can have zero there.
1369 if (!fat_valid_media(media)) {
1371 fat_msg(sb, KERN_ERR, "invalid media value (0x%02x)",
1376 logical_sector_size = get_unaligned_le16(&b->sector_size);
1377 if (!is_power_of_2(logical_sector_size)
1378 || (logical_sector_size < 512)
1379 || (logical_sector_size > 4096)) {
1381 fat_msg(sb, KERN_ERR, "bogus logical sector size %u",
1382 logical_sector_size);
1386 sbi->sec_per_clus = b->sec_per_clus;
1387 if (!is_power_of_2(sbi->sec_per_clus)) {
1389 fat_msg(sb, KERN_ERR, "bogus sectors per cluster %u",
1395 if (logical_sector_size < sb->s_blocksize) {
1396 fat_msg(sb, KERN_ERR, "logical sector size too small for device"
1397 " (logical sector size = %u)", logical_sector_size);
1401 if (logical_sector_size > sb->s_blocksize) {
1404 if (!sb_set_blocksize(sb, logical_sector_size)) {
1405 fat_msg(sb, KERN_ERR, "unable to set blocksize %u",
1406 logical_sector_size);
1409 bh = sb_bread(sb, 0);
1411 fat_msg(sb, KERN_ERR, "unable to read boot sector"
1412 " (logical sector size = %lu)",
1416 b = (struct fat_boot_sector *) bh->b_data;
1419 mutex_init(&sbi->s_lock);
1420 sbi->cluster_size = sb->s_blocksize * sbi->sec_per_clus;
1421 sbi->cluster_bits = ffs(sbi->cluster_size) - 1;
1422 sbi->fats = b->fats;
1423 sbi->fat_bits = 0; /* Don't know yet */
1424 sbi->fat_start = le16_to_cpu(b->reserved);
1425 sbi->fat_length = le16_to_cpu(b->fat_length);
1426 sbi->root_cluster = 0;
1427 sbi->free_clusters = -1; /* Don't know yet */
1428 sbi->free_clus_valid = 0;
1429 sbi->prev_free = FAT_START_ENT;
1430 sb->s_maxbytes = 0xffffffff;
1432 if (!sbi->fat_length && b->fat32.length) {
1433 struct fat_boot_fsinfo *fsinfo;
1434 struct buffer_head *fsinfo_bh;
1438 sbi->fat_length = le32_to_cpu(b->fat32.length);
1439 sbi->root_cluster = le32_to_cpu(b->fat32.root_cluster);
1441 /* MC - if info_sector is 0, don't multiply by 0 */
1442 sbi->fsinfo_sector = le16_to_cpu(b->fat32.info_sector);
1443 if (sbi->fsinfo_sector == 0)
1444 sbi->fsinfo_sector = 1;
1446 fsinfo_bh = sb_bread(sb, sbi->fsinfo_sector);
1447 if (fsinfo_bh == NULL) {
1448 fat_msg(sb, KERN_ERR, "bread failed, FSINFO block"
1449 " (sector = %lu)", sbi->fsinfo_sector);
1454 fsinfo = (struct fat_boot_fsinfo *)fsinfo_bh->b_data;
1455 if (!IS_FSINFO(fsinfo)) {
1456 fat_msg(sb, KERN_WARNING, "Invalid FSINFO signature: "
1457 "0x%08x, 0x%08x (sector = %lu)",
1458 le32_to_cpu(fsinfo->signature1),
1459 le32_to_cpu(fsinfo->signature2),
1460 sbi->fsinfo_sector);
1462 if (sbi->options.usefree)
1463 sbi->free_clus_valid = 1;
1464 sbi->free_clusters = le32_to_cpu(fsinfo->free_clusters);
1465 sbi->prev_free = le32_to_cpu(fsinfo->next_cluster);
1471 sbi->dir_per_block = sb->s_blocksize / sizeof(struct msdos_dir_entry);
1472 sbi->dir_per_block_bits = ffs(sbi->dir_per_block) - 1;
1474 sbi->dir_start = sbi->fat_start + sbi->fats * sbi->fat_length;
1475 sbi->dir_entries = get_unaligned_le16(&b->dir_entries);
1476 if (sbi->dir_entries & (sbi->dir_per_block - 1)) {
1478 fat_msg(sb, KERN_ERR, "bogus directory-entries per block"
1479 " (%u)", sbi->dir_entries);
1484 rootdir_sectors = sbi->dir_entries
1485 * sizeof(struct msdos_dir_entry) / sb->s_blocksize;
1486 sbi->data_start = sbi->dir_start + rootdir_sectors;
1487 total_sectors = get_unaligned_le16(&b->sectors);
1488 if (total_sectors == 0)
1489 total_sectors = le32_to_cpu(b->total_sect);
1491 total_clusters = (total_sectors - sbi->data_start) / sbi->sec_per_clus;
1493 if (sbi->fat_bits != 32)
1494 sbi->fat_bits = (total_clusters > MAX_FAT12) ? 16 : 12;
1496 /* some OSes set FAT_STATE_DIRTY and clean it on unmount. */
1497 if (sbi->fat_bits == 32)
1498 sbi->dirty = b->fat32.state & FAT_STATE_DIRTY;
1499 else /* fat 16 or 12 */
1500 sbi->dirty = b->fat16.state & FAT_STATE_DIRTY;
1502 /* check that FAT table does not overflow */
1503 fat_clusters = calc_fat_clusters(sb);
1504 total_clusters = min(total_clusters, fat_clusters - FAT_START_ENT);
1505 if (total_clusters > MAX_FAT(sb)) {
1507 fat_msg(sb, KERN_ERR, "count of clusters too big (%u)",
1513 sbi->max_cluster = total_clusters + FAT_START_ENT;
1514 /* check the free_clusters, it's not necessarily correct */
1515 if (sbi->free_clusters != -1 && sbi->free_clusters > total_clusters)
1516 sbi->free_clusters = -1;
1517 /* check the prev_free, it's not necessarily correct */
1518 sbi->prev_free %= sbi->max_cluster;
1519 if (sbi->prev_free < FAT_START_ENT)
1520 sbi->prev_free = FAT_START_ENT;
1524 /* set up enough so that it can read an inode */
1527 fat_ent_access_init(sb);
1530 * The low byte of FAT's first entry must have same value with
1531 * media-field. But in real world, too many devices is
1532 * writing wrong value. So, removed that validity check.
1534 * if (FAT_FIRST_ENT(sb, media) != first)
1538 sprintf(buf, "cp%d", sbi->options.codepage);
1539 sbi->nls_disk = load_nls(buf);
1540 if (!sbi->nls_disk) {
1541 fat_msg(sb, KERN_ERR, "codepage %s not found", buf);
1545 /* FIXME: utf8 is using iocharset for upper/lower conversion */
1546 if (sbi->options.isvfat) {
1547 sbi->nls_io = load_nls(sbi->options.iocharset);
1549 fat_msg(sb, KERN_ERR, "IO charset %s not found",
1550 sbi->options.iocharset);
1556 fat_inode = new_inode(sb);
1559 MSDOS_I(fat_inode)->i_pos = 0;
1560 sbi->fat_inode = fat_inode;
1562 fsinfo_inode = new_inode(sb);
1565 fsinfo_inode->i_ino = MSDOS_FSINFO_INO;
1566 sbi->fsinfo_inode = fsinfo_inode;
1567 insert_inode_hash(fsinfo_inode);
1569 root_inode = new_inode(sb);
1572 root_inode->i_ino = MSDOS_ROOT_INO;
1573 root_inode->i_version = 1;
1574 error = fat_read_root(root_inode);
1580 insert_inode_hash(root_inode);
1581 fat_attach(root_inode, 0);
1582 sb->s_root = d_make_root(root_inode);
1584 fat_msg(sb, KERN_ERR, "get root inode failed");
1588 if (sbi->options.discard) {
1589 struct request_queue *q = bdev_get_queue(sb->s_bdev);
1590 if (!blk_queue_discard(q))
1591 fat_msg(sb, KERN_WARNING,
1592 "mounting with \"discard\" option, but "
1593 "the device does not support discard");
1596 fat_set_state(sb, 1, 0);
1602 fat_msg(sb, KERN_INFO, "Can't find a valid FAT filesystem");
1609 unload_nls(sbi->nls_io);
1610 unload_nls(sbi->nls_disk);
1611 if (sbi->options.iocharset != fat_default_iocharset)
1612 kfree(sbi->options.iocharset);
1613 sb->s_fs_info = NULL;
1618 EXPORT_SYMBOL_GPL(fat_fill_super);
1621 * helper function for fat_flush_inodes. This writes both the inode
1622 * and the file data blocks, waiting for in flight data blocks before
1623 * the start of the call. It does not wait for any io started
1626 static int writeback_inode(struct inode *inode)
1631 /* if we used wait=1, sync_inode_metadata waits for the io for the
1632 * inode to finish. So wait=0 is sent down to sync_inode_metadata
1633 * and filemap_fdatawrite is used for the data blocks
1635 ret = sync_inode_metadata(inode, 0);
1637 ret = filemap_fdatawrite(inode->i_mapping);
1642 * write data and metadata corresponding to i1 and i2. The io is
1643 * started but we do not wait for any of it to finish.
1645 * filemap_flush is used for the block device, so if there is a dirty
1646 * page for a block already in flight, we will not wait and start the
1649 int fat_flush_inodes(struct super_block *sb, struct inode *i1, struct inode *i2)
1652 if (!MSDOS_SB(sb)->options.flush)
1655 ret = writeback_inode(i1);
1657 ret = writeback_inode(i2);
1659 struct address_space *mapping = sb->s_bdev->bd_inode->i_mapping;
1660 ret = filemap_flush(mapping);
1664 EXPORT_SYMBOL_GPL(fat_flush_inodes);
1666 static int __init init_fat_fs(void)
1670 err = fat_cache_init();
1674 err = fat_init_inodecache();
1681 fat_cache_destroy();
1685 static void __exit exit_fat_fs(void)
1687 fat_cache_destroy();
1688 fat_destroy_inodecache();
1691 module_init(init_fat_fs)
1692 module_exit(exit_fat_fs)
1694 MODULE_LICENSE("GPL");