]> git.karo-electronics.de Git - karo-tx-linux.git/blob - fs/fat/inode.c
fat-simplify-writeback_inode-checkpatch-fixes-fix
[karo-tx-linux.git] / fs / fat / inode.c
1 /*
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/seq_file.h>
18 #include <linux/pagemap.h>
19 #include <linux/mpage.h>
20 #include <linux/buffer_head.h>
21 #include <linux/exportfs.h>
22 #include <linux/mount.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 <asm/unaligned.h>
30 #include "fat.h"
31
32 #ifndef CONFIG_FAT_DEFAULT_IOCHARSET
33 /* if user don't select VFAT, this is undefined. */
34 #define CONFIG_FAT_DEFAULT_IOCHARSET    ""
35 #endif
36
37 static int fat_default_codepage = CONFIG_FAT_DEFAULT_CODEPAGE;
38 static char fat_default_iocharset[] = CONFIG_FAT_DEFAULT_IOCHARSET;
39
40
41 static int fat_add_cluster(struct inode *inode)
42 {
43         int err, cluster;
44
45         err = fat_alloc_clusters(inode, &cluster, 1);
46         if (err)
47                 return err;
48         /* FIXME: this cluster should be added after data of this
49          * cluster is writed */
50         err = fat_chain_add(inode, cluster, 1);
51         if (err)
52                 fat_free_clusters(inode, cluster);
53         return err;
54 }
55
56 static inline int __fat_get_block(struct inode *inode, sector_t iblock,
57                                   unsigned long *max_blocks,
58                                   struct buffer_head *bh_result, int create)
59 {
60         struct super_block *sb = inode->i_sb;
61         struct msdos_sb_info *sbi = MSDOS_SB(sb);
62         unsigned long mapped_blocks;
63         sector_t phys;
64         int err, offset;
65
66         err = fat_bmap(inode, iblock, &phys, &mapped_blocks, create);
67         if (err)
68                 return err;
69         if (phys) {
70                 map_bh(bh_result, sb, phys);
71                 *max_blocks = min(mapped_blocks, *max_blocks);
72                 return 0;
73         }
74         if (!create)
75                 return 0;
76
77         if (iblock != MSDOS_I(inode)->mmu_private >> sb->s_blocksize_bits) {
78                 fat_fs_error(sb, "corrupted file size (i_pos %lld, %lld)",
79                         MSDOS_I(inode)->i_pos, MSDOS_I(inode)->mmu_private);
80                 return -EIO;
81         }
82
83         offset = (unsigned long)iblock & (sbi->sec_per_clus - 1);
84         if (!offset) {
85                 /* TODO: multiple cluster allocation would be desirable. */
86                 err = fat_add_cluster(inode);
87                 if (err)
88                         return err;
89         }
90         /* available blocks on this cluster */
91         mapped_blocks = sbi->sec_per_clus - offset;
92
93         *max_blocks = min(mapped_blocks, *max_blocks);
94         MSDOS_I(inode)->mmu_private += *max_blocks << sb->s_blocksize_bits;
95
96         err = fat_bmap(inode, iblock, &phys, &mapped_blocks, create);
97         if (err)
98                 return err;
99
100         BUG_ON(!phys);
101         BUG_ON(*max_blocks != mapped_blocks);
102         set_buffer_new(bh_result);
103         map_bh(bh_result, sb, phys);
104
105         return 0;
106 }
107
108 static int fat_get_block(struct inode *inode, sector_t iblock,
109                          struct buffer_head *bh_result, int create)
110 {
111         struct super_block *sb = inode->i_sb;
112         unsigned long max_blocks = bh_result->b_size >> inode->i_blkbits;
113         int err;
114
115         err = __fat_get_block(inode, iblock, &max_blocks, bh_result, create);
116         if (err)
117                 return err;
118         bh_result->b_size = max_blocks << sb->s_blocksize_bits;
119         return 0;
120 }
121
122 static int fat_writepage(struct page *page, struct writeback_control *wbc)
123 {
124         return block_write_full_page(page, fat_get_block, wbc);
125 }
126
127 static int fat_writepages(struct address_space *mapping,
128                           struct writeback_control *wbc)
129 {
130         return mpage_writepages(mapping, wbc, fat_get_block);
131 }
132
133 static int fat_readpage(struct file *file, struct page *page)
134 {
135         return mpage_readpage(page, fat_get_block);
136 }
137
138 static int fat_readpages(struct file *file, struct address_space *mapping,
139                          struct list_head *pages, unsigned nr_pages)
140 {
141         return mpage_readpages(mapping, pages, nr_pages, fat_get_block);
142 }
143
144 static void fat_write_failed(struct address_space *mapping, loff_t to)
145 {
146         struct inode *inode = mapping->host;
147
148         if (to > inode->i_size) {
149                 truncate_pagecache(inode, to, inode->i_size);
150                 fat_truncate_blocks(inode, inode->i_size);
151         }
152 }
153
154 static int fat_write_begin(struct file *file, struct address_space *mapping,
155                         loff_t pos, unsigned len, unsigned flags,
156                         struct page **pagep, void **fsdata)
157 {
158         int err;
159
160         *pagep = NULL;
161         err = cont_write_begin(file, mapping, pos, len, flags,
162                                 pagep, fsdata, fat_get_block,
163                                 &MSDOS_I(mapping->host)->mmu_private);
164         if (err < 0)
165                 fat_write_failed(mapping, pos + len);
166         return err;
167 }
168
169 static int fat_write_end(struct file *file, struct address_space *mapping,
170                         loff_t pos, unsigned len, unsigned copied,
171                         struct page *pagep, void *fsdata)
172 {
173         struct inode *inode = mapping->host;
174         int err;
175         err = generic_write_end(file, mapping, pos, len, copied, pagep, fsdata);
176         if (err < len)
177                 fat_write_failed(mapping, pos + len);
178         if (!(err < 0) && !(MSDOS_I(inode)->i_attrs & ATTR_ARCH)) {
179                 inode->i_mtime = inode->i_ctime = CURRENT_TIME_SEC;
180                 MSDOS_I(inode)->i_attrs |= ATTR_ARCH;
181                 mark_inode_dirty(inode);
182         }
183         return err;
184 }
185
186 static ssize_t fat_direct_IO(int rw, struct kiocb *iocb,
187                              const struct iovec *iov,
188                              loff_t offset, unsigned long nr_segs)
189 {
190         struct file *file = iocb->ki_filp;
191         struct address_space *mapping = file->f_mapping;
192         struct inode *inode = mapping->host;
193         ssize_t ret;
194
195         if (rw == WRITE) {
196                 /*
197                  * FIXME: blockdev_direct_IO() doesn't use ->write_begin(),
198                  * so we need to update the ->mmu_private to block boundary.
199                  *
200                  * But we must fill the remaining area or hole by nul for
201                  * updating ->mmu_private.
202                  *
203                  * Return 0, and fallback to normal buffered write.
204                  */
205                 loff_t size = offset + iov_length(iov, nr_segs);
206                 if (MSDOS_I(inode)->mmu_private < size)
207                         return 0;
208         }
209
210         /*
211          * FAT need to use the DIO_LOCKING for avoiding the race
212          * condition of fat_get_block() and ->truncate().
213          */
214         ret = blockdev_direct_IO(rw, iocb, inode, iov, offset, nr_segs,
215                                  fat_get_block);
216         if (ret < 0 && (rw & WRITE))
217                 fat_write_failed(mapping, offset + iov_length(iov, nr_segs));
218
219         return ret;
220 }
221
222 static sector_t _fat_bmap(struct address_space *mapping, sector_t block)
223 {
224         sector_t blocknr;
225
226         /* fat_get_cluster() assumes the requested blocknr isn't truncated. */
227         down_read(&MSDOS_I(mapping->host)->truncate_lock);
228         blocknr = generic_block_bmap(mapping, block, fat_get_block);
229         up_read(&MSDOS_I(mapping->host)->truncate_lock);
230
231         return blocknr;
232 }
233
234 static const struct address_space_operations fat_aops = {
235         .readpage       = fat_readpage,
236         .readpages      = fat_readpages,
237         .writepage      = fat_writepage,
238         .writepages     = fat_writepages,
239         .write_begin    = fat_write_begin,
240         .write_end      = fat_write_end,
241         .direct_IO      = fat_direct_IO,
242         .bmap           = _fat_bmap
243 };
244
245 /*
246  * New FAT inode stuff. We do the following:
247  *      a) i_ino is constant and has nothing with on-disk location.
248  *      b) FAT manages its own cache of directory entries.
249  *      c) *This* cache is indexed by on-disk location.
250  *      d) inode has an associated directory entry, all right, but
251  *              it may be unhashed.
252  *      e) currently entries are stored within struct inode. That should
253  *              change.
254  *      f) we deal with races in the following way:
255  *              1. readdir() and lookup() do FAT-dir-cache lookup.
256  *              2. rename() unhashes the F-d-c entry and rehashes it in
257  *                      a new place.
258  *              3. unlink() and rmdir() unhash F-d-c entry.
259  *              4. fat_write_inode() checks whether the thing is unhashed.
260  *                      If it is we silently return. If it isn't we do bread(),
261  *                      check if the location is still valid and retry if it
262  *                      isn't. Otherwise we do changes.
263  *              5. Spinlock is used to protect hash/unhash/location check/lookup
264  *              6. fat_evict_inode() unhashes the F-d-c entry.
265  *              7. lookup() and readdir() do igrab() if they find a F-d-c entry
266  *                      and consider negative result as cache miss.
267  */
268
269 static void fat_hash_init(struct super_block *sb)
270 {
271         struct msdos_sb_info *sbi = MSDOS_SB(sb);
272         int i;
273
274         spin_lock_init(&sbi->inode_hash_lock);
275         for (i = 0; i < FAT_HASH_SIZE; i++)
276                 INIT_HLIST_HEAD(&sbi->inode_hashtable[i]);
277 }
278
279 static inline unsigned long fat_hash(loff_t i_pos)
280 {
281         return hash_32(i_pos, FAT_HASH_BITS);
282 }
283
284 static void dir_hash_init(struct super_block *sb)
285 {
286         struct msdos_sb_info *sbi = MSDOS_SB(sb);
287         int i;
288
289         spin_lock_init(&sbi->dir_hash_lock);
290         for (i = 0; i < FAT_HASH_SIZE; i++)
291                 INIT_HLIST_HEAD(&sbi->dir_hashtable[i]);
292 }
293
294 void fat_attach(struct inode *inode, loff_t i_pos)
295 {
296         struct msdos_sb_info *sbi = MSDOS_SB(inode->i_sb);
297
298         if (inode->i_ino != MSDOS_ROOT_INO) {
299                 struct hlist_head *head =   sbi->inode_hashtable
300                                           + fat_hash(i_pos);
301
302                 spin_lock(&sbi->inode_hash_lock);
303                 MSDOS_I(inode)->i_pos = i_pos;
304                 hlist_add_head(&MSDOS_I(inode)->i_fat_hash, head);
305                 spin_unlock(&sbi->inode_hash_lock);
306         }
307
308         /* If NFS support is enabled, cache the mapping of start cluster
309          * to directory inode. This is used during reconnection of
310          * dentries to the filesystem root.
311          */
312         if (S_ISDIR(inode->i_mode) && sbi->options.nfs) {
313                 struct hlist_head *d_head = sbi->dir_hashtable;
314                 d_head += fat_dir_hash(MSDOS_I(inode)->i_logstart);
315
316                 spin_lock(&sbi->dir_hash_lock);
317                 hlist_add_head(&MSDOS_I(inode)->i_dir_hash, d_head);
318                 spin_unlock(&sbi->dir_hash_lock);
319         }
320 }
321 EXPORT_SYMBOL_GPL(fat_attach);
322
323 void fat_detach(struct inode *inode)
324 {
325         struct msdos_sb_info *sbi = MSDOS_SB(inode->i_sb);
326         spin_lock(&sbi->inode_hash_lock);
327         MSDOS_I(inode)->i_pos = 0;
328         hlist_del_init(&MSDOS_I(inode)->i_fat_hash);
329         spin_unlock(&sbi->inode_hash_lock);
330
331         if (S_ISDIR(inode->i_mode) && sbi->options.nfs) {
332                 spin_lock(&sbi->dir_hash_lock);
333                 hlist_del_init(&MSDOS_I(inode)->i_dir_hash);
334                 spin_unlock(&sbi->dir_hash_lock);
335         }
336 }
337 EXPORT_SYMBOL_GPL(fat_detach);
338
339 struct inode *fat_iget(struct super_block *sb, loff_t i_pos)
340 {
341         struct msdos_sb_info *sbi = MSDOS_SB(sb);
342         struct hlist_head *head = sbi->inode_hashtable + fat_hash(i_pos);
343         struct hlist_node *_p;
344         struct msdos_inode_info *i;
345         struct inode *inode = NULL;
346
347         spin_lock(&sbi->inode_hash_lock);
348         hlist_for_each_entry(i, _p, head, i_fat_hash) {
349                 BUG_ON(i->vfs_inode.i_sb != sb);
350                 if (i->i_pos != i_pos)
351                         continue;
352                 inode = igrab(&i->vfs_inode);
353                 if (inode)
354                         break;
355         }
356         spin_unlock(&sbi->inode_hash_lock);
357         return inode;
358 }
359
360 static int is_exec(unsigned char *extension)
361 {
362         unsigned char *exe_extensions = "EXECOMBAT", *walk;
363
364         for (walk = exe_extensions; *walk; walk += 3)
365                 if (!strncmp(extension, walk, 3))
366                         return 1;
367         return 0;
368 }
369
370 static int fat_calc_dir_size(struct inode *inode)
371 {
372         struct msdos_sb_info *sbi = MSDOS_SB(inode->i_sb);
373         int ret, fclus, dclus;
374
375         inode->i_size = 0;
376         if (MSDOS_I(inode)->i_start == 0)
377                 return 0;
378
379         ret = fat_get_cluster(inode, FAT_ENT_EOF, &fclus, &dclus);
380         if (ret < 0)
381                 return ret;
382         inode->i_size = (fclus + 1) << sbi->cluster_bits;
383
384         return 0;
385 }
386
387 /* doesn't deal with root inode */
388 static int fat_fill_inode(struct inode *inode, struct msdos_dir_entry *de)
389 {
390         struct msdos_sb_info *sbi = MSDOS_SB(inode->i_sb);
391         int error;
392
393         MSDOS_I(inode)->i_pos = 0;
394         inode->i_uid = sbi->options.fs_uid;
395         inode->i_gid = sbi->options.fs_gid;
396         inode->i_version++;
397         inode->i_generation = get_seconds();
398
399         if ((de->attr & ATTR_DIR) && !IS_FREE(de->name)) {
400                 inode->i_generation &= ~1;
401                 inode->i_mode = fat_make_mode(sbi, de->attr, S_IRWXUGO);
402                 inode->i_op = sbi->dir_ops;
403                 inode->i_fop = &fat_dir_operations;
404
405                 MSDOS_I(inode)->i_start = fat_get_start(sbi, de);
406                 MSDOS_I(inode)->i_logstart = MSDOS_I(inode)->i_start;
407                 error = fat_calc_dir_size(inode);
408                 if (error < 0)
409                         return error;
410                 MSDOS_I(inode)->mmu_private = inode->i_size;
411
412                 set_nlink(inode, fat_subdirs(inode));
413         } else { /* not a directory */
414                 inode->i_generation |= 1;
415                 inode->i_mode = fat_make_mode(sbi, de->attr,
416                         ((sbi->options.showexec && !is_exec(de->name + 8))
417                          ? S_IRUGO|S_IWUGO : S_IRWXUGO));
418                 MSDOS_I(inode)->i_start = fat_get_start(sbi, de);
419
420                 MSDOS_I(inode)->i_logstart = MSDOS_I(inode)->i_start;
421                 inode->i_size = le32_to_cpu(de->size);
422                 inode->i_op = &fat_file_inode_operations;
423                 inode->i_fop = &fat_file_operations;
424                 inode->i_mapping->a_ops = &fat_aops;
425                 MSDOS_I(inode)->mmu_private = inode->i_size;
426         }
427         if (de->attr & ATTR_SYS) {
428                 if (sbi->options.sys_immutable)
429                         inode->i_flags |= S_IMMUTABLE;
430         }
431         fat_save_attrs(inode, de->attr);
432
433         inode->i_blocks = ((inode->i_size + (sbi->cluster_size - 1))
434                            & ~((loff_t)sbi->cluster_size - 1)) >> 9;
435
436         fat_time_fat2unix(sbi, &inode->i_mtime, de->time, de->date, 0);
437         if (sbi->options.isvfat) {
438                 fat_time_fat2unix(sbi, &inode->i_ctime, de->ctime,
439                                   de->cdate, de->ctime_cs);
440                 fat_time_fat2unix(sbi, &inode->i_atime, 0, de->adate, 0);
441         } else
442                 inode->i_ctime = inode->i_atime = inode->i_mtime;
443
444         return 0;
445 }
446
447 struct inode *fat_build_inode(struct super_block *sb,
448                         struct msdos_dir_entry *de, loff_t i_pos)
449 {
450         struct inode *inode;
451         int err;
452
453         inode = fat_iget(sb, i_pos);
454         if (inode)
455                 goto out;
456         inode = new_inode(sb);
457         if (!inode) {
458                 inode = ERR_PTR(-ENOMEM);
459                 goto out;
460         }
461         inode->i_ino = iunique(sb, MSDOS_ROOT_INO);
462         inode->i_version = 1;
463         err = fat_fill_inode(inode, de);
464         if (err) {
465                 iput(inode);
466                 inode = ERR_PTR(err);
467                 goto out;
468         }
469         fat_attach(inode, i_pos);
470         insert_inode_hash(inode);
471 out:
472         return inode;
473 }
474
475 EXPORT_SYMBOL_GPL(fat_build_inode);
476
477 static void fat_evict_inode(struct inode *inode)
478 {
479         truncate_inode_pages(&inode->i_data, 0);
480         if (!inode->i_nlink) {
481                 inode->i_size = 0;
482                 fat_truncate_blocks(inode, 0);
483         }
484         invalidate_inode_buffers(inode);
485         clear_inode(inode);
486         fat_cache_inval_inode(inode);
487         fat_detach(inode);
488 }
489
490 static void fat_put_super(struct super_block *sb)
491 {
492         struct msdos_sb_info *sbi = MSDOS_SB(sb);
493
494         iput(sbi->fsinfo_inode);
495         iput(sbi->fat_inode);
496
497         unload_nls(sbi->nls_disk);
498         unload_nls(sbi->nls_io);
499
500         if (sbi->options.iocharset != fat_default_iocharset)
501                 kfree(sbi->options.iocharset);
502
503         sb->s_fs_info = NULL;
504         kfree(sbi);
505 }
506
507 static struct kmem_cache *fat_inode_cachep;
508
509 static struct inode *fat_alloc_inode(struct super_block *sb)
510 {
511         struct msdos_inode_info *ei;
512         ei = kmem_cache_alloc(fat_inode_cachep, GFP_NOFS);
513         if (!ei)
514                 return NULL;
515
516         init_rwsem(&ei->truncate_lock);
517         return &ei->vfs_inode;
518 }
519
520 static void fat_i_callback(struct rcu_head *head)
521 {
522         struct inode *inode = container_of(head, struct inode, i_rcu);
523         kmem_cache_free(fat_inode_cachep, MSDOS_I(inode));
524 }
525
526 static void fat_destroy_inode(struct inode *inode)
527 {
528         call_rcu(&inode->i_rcu, fat_i_callback);
529 }
530
531 static void init_once(void *foo)
532 {
533         struct msdos_inode_info *ei = (struct msdos_inode_info *)foo;
534
535         spin_lock_init(&ei->cache_lru_lock);
536         ei->nr_caches = 0;
537         ei->cache_valid_id = FAT_CACHE_VALID + 1;
538         INIT_LIST_HEAD(&ei->cache_lru);
539         INIT_HLIST_NODE(&ei->i_fat_hash);
540         INIT_HLIST_NODE(&ei->i_dir_hash);
541         inode_init_once(&ei->vfs_inode);
542 }
543
544 static int __init fat_init_inodecache(void)
545 {
546         fat_inode_cachep = kmem_cache_create("fat_inode_cache",
547                                              sizeof(struct msdos_inode_info),
548                                              0, (SLAB_RECLAIM_ACCOUNT|
549                                                 SLAB_MEM_SPREAD),
550                                              init_once);
551         if (fat_inode_cachep == NULL)
552                 return -ENOMEM;
553         return 0;
554 }
555
556 static void __exit fat_destroy_inodecache(void)
557 {
558         /*
559          * Make sure all delayed rcu free inodes are flushed before we
560          * destroy cache.
561          */
562         rcu_barrier();
563         kmem_cache_destroy(fat_inode_cachep);
564 }
565
566 static int fat_remount(struct super_block *sb, int *flags, char *data)
567 {
568         struct msdos_sb_info *sbi = MSDOS_SB(sb);
569         *flags |= MS_NODIRATIME | (sbi->options.isvfat ? 0 : MS_NOATIME);
570         return 0;
571 }
572
573 static int fat_statfs(struct dentry *dentry, struct kstatfs *buf)
574 {
575         struct super_block *sb = dentry->d_sb;
576         struct msdos_sb_info *sbi = MSDOS_SB(sb);
577         u64 id = huge_encode_dev(sb->s_bdev->bd_dev);
578
579         /* If the count of free cluster is still unknown, counts it here. */
580         if (sbi->free_clusters == -1 || !sbi->free_clus_valid) {
581                 int err = fat_count_free_clusters(dentry->d_sb);
582                 if (err)
583                         return err;
584         }
585
586         buf->f_type = dentry->d_sb->s_magic;
587         buf->f_bsize = sbi->cluster_size;
588         buf->f_blocks = sbi->max_cluster - FAT_START_ENT;
589         buf->f_bfree = sbi->free_clusters;
590         buf->f_bavail = sbi->free_clusters;
591         buf->f_fsid.val[0] = (u32)id;
592         buf->f_fsid.val[1] = (u32)(id >> 32);
593         buf->f_namelen =
594                 (sbi->options.isvfat ? FAT_LFN_LEN : 12) * NLS_MAX_CHARSET_SIZE;
595
596         return 0;
597 }
598
599 static inline loff_t fat_i_pos_read(struct msdos_sb_info *sbi,
600                                     struct inode *inode)
601 {
602         loff_t i_pos;
603 #if BITS_PER_LONG == 32
604         spin_lock(&sbi->inode_hash_lock);
605 #endif
606         i_pos = MSDOS_I(inode)->i_pos;
607 #if BITS_PER_LONG == 32
608         spin_unlock(&sbi->inode_hash_lock);
609 #endif
610         return i_pos;
611 }
612
613 static int __fat_write_inode(struct inode *inode, int wait)
614 {
615         struct super_block *sb = inode->i_sb;
616         struct msdos_sb_info *sbi = MSDOS_SB(sb);
617         struct buffer_head *bh;
618         struct msdos_dir_entry *raw_entry;
619         loff_t i_pos;
620         int err;
621
622         if (inode->i_ino == MSDOS_ROOT_INO)
623                 return 0;
624
625 retry:
626         i_pos = fat_i_pos_read(sbi, inode);
627         if (!i_pos)
628                 return 0;
629
630         bh = sb_bread(sb, i_pos >> sbi->dir_per_block_bits);
631         if (!bh) {
632                 fat_msg(sb, KERN_ERR, "unable to read inode block "
633                        "for updating (i_pos %lld)", i_pos);
634                 return -EIO;
635         }
636         spin_lock(&sbi->inode_hash_lock);
637         if (i_pos != MSDOS_I(inode)->i_pos) {
638                 spin_unlock(&sbi->inode_hash_lock);
639                 brelse(bh);
640                 goto retry;
641         }
642
643         raw_entry = &((struct msdos_dir_entry *) (bh->b_data))
644             [i_pos & (sbi->dir_per_block - 1)];
645         if (S_ISDIR(inode->i_mode))
646                 raw_entry->size = 0;
647         else
648                 raw_entry->size = cpu_to_le32(inode->i_size);
649         raw_entry->attr = fat_make_attrs(inode);
650         fat_set_start(raw_entry, MSDOS_I(inode)->i_logstart);
651         fat_time_unix2fat(sbi, &inode->i_mtime, &raw_entry->time,
652                           &raw_entry->date, NULL);
653         if (sbi->options.isvfat) {
654                 __le16 atime;
655                 fat_time_unix2fat(sbi, &inode->i_ctime, &raw_entry->ctime,
656                                   &raw_entry->cdate, &raw_entry->ctime_cs);
657                 fat_time_unix2fat(sbi, &inode->i_atime, &atime,
658                                   &raw_entry->adate, NULL);
659         }
660         spin_unlock(&sbi->inode_hash_lock);
661         mark_buffer_dirty(bh);
662         err = 0;
663         if (wait)
664                 err = sync_dirty_buffer(bh);
665         brelse(bh);
666         return err;
667 }
668
669 static int fat_write_inode(struct inode *inode, struct writeback_control *wbc)
670 {
671         int err;
672
673         if (inode->i_ino == MSDOS_FSINFO_INO) {
674                 struct super_block *sb = inode->i_sb;
675
676                 lock_super(sb);
677                 err = fat_clusters_flush(sb);
678                 unlock_super(sb);
679         } else
680                 err = __fat_write_inode(inode, wbc->sync_mode == WB_SYNC_ALL);
681
682         return err;
683 }
684
685 int fat_sync_inode(struct inode *inode)
686 {
687         return __fat_write_inode(inode, 1);
688 }
689
690 EXPORT_SYMBOL_GPL(fat_sync_inode);
691
692 static int fat_show_options(struct seq_file *m, struct dentry *root);
693 static const struct super_operations fat_sops = {
694         .alloc_inode    = fat_alloc_inode,
695         .destroy_inode  = fat_destroy_inode,
696         .write_inode    = fat_write_inode,
697         .evict_inode    = fat_evict_inode,
698         .put_super      = fat_put_super,
699         .statfs         = fat_statfs,
700         .remount_fs     = fat_remount,
701
702         .show_options   = fat_show_options,
703 };
704
705 static const struct export_operations fat_export_ops = {
706         .fh_to_dentry   = fat_fh_to_dentry,
707         .fh_to_parent   = fat_fh_to_parent,
708         .get_parent     = fat_get_parent,
709 };
710
711 static int fat_show_options(struct seq_file *m, struct dentry *root)
712 {
713         struct msdos_sb_info *sbi = MSDOS_SB(root->d_sb);
714         struct fat_mount_options *opts = &sbi->options;
715         int isvfat = opts->isvfat;
716
717         if (opts->fs_uid != 0)
718                 seq_printf(m, ",uid=%u", opts->fs_uid);
719         if (opts->fs_gid != 0)
720                 seq_printf(m, ",gid=%u", opts->fs_gid);
721         seq_printf(m, ",fmask=%04o", opts->fs_fmask);
722         seq_printf(m, ",dmask=%04o", opts->fs_dmask);
723         if (opts->allow_utime)
724                 seq_printf(m, ",allow_utime=%04o", opts->allow_utime);
725         if (sbi->nls_disk)
726                 seq_printf(m, ",codepage=%s", sbi->nls_disk->charset);
727         if (isvfat) {
728                 if (sbi->nls_io)
729                         seq_printf(m, ",iocharset=%s", sbi->nls_io->charset);
730
731                 switch (opts->shortname) {
732                 case VFAT_SFN_DISPLAY_WIN95 | VFAT_SFN_CREATE_WIN95:
733                         seq_puts(m, ",shortname=win95");
734                         break;
735                 case VFAT_SFN_DISPLAY_WINNT | VFAT_SFN_CREATE_WINNT:
736                         seq_puts(m, ",shortname=winnt");
737                         break;
738                 case VFAT_SFN_DISPLAY_WINNT | VFAT_SFN_CREATE_WIN95:
739                         seq_puts(m, ",shortname=mixed");
740                         break;
741                 case VFAT_SFN_DISPLAY_LOWER | VFAT_SFN_CREATE_WIN95:
742                         seq_puts(m, ",shortname=lower");
743                         break;
744                 default:
745                         seq_puts(m, ",shortname=unknown");
746                         break;
747                 }
748         }
749         if (opts->name_check != 'n')
750                 seq_printf(m, ",check=%c", opts->name_check);
751         if (opts->usefree)
752                 seq_puts(m, ",usefree");
753         if (opts->quiet)
754                 seq_puts(m, ",quiet");
755         if (opts->nfs)
756                 seq_puts(m, ",nfs");
757         if (opts->showexec)
758                 seq_puts(m, ",showexec");
759         if (opts->sys_immutable)
760                 seq_puts(m, ",sys_immutable");
761         if (!isvfat) {
762                 if (opts->dotsOK)
763                         seq_puts(m, ",dotsOK=yes");
764                 if (opts->nocase)
765                         seq_puts(m, ",nocase");
766         } else {
767                 if (opts->utf8)
768                         seq_puts(m, ",utf8");
769                 if (opts->unicode_xlate)
770                         seq_puts(m, ",uni_xlate");
771                 if (!opts->numtail)
772                         seq_puts(m, ",nonumtail");
773                 if (opts->rodir)
774                         seq_puts(m, ",rodir");
775         }
776         if (opts->flush)
777                 seq_puts(m, ",flush");
778         if (opts->tz_utc)
779                 seq_puts(m, ",tz=UTC");
780         if (opts->errors == FAT_ERRORS_CONT)
781                 seq_puts(m, ",errors=continue");
782         else if (opts->errors == FAT_ERRORS_PANIC)
783                 seq_puts(m, ",errors=panic");
784         else
785                 seq_puts(m, ",errors=remount-ro");
786         if (opts->discard)
787                 seq_puts(m, ",discard");
788
789         return 0;
790 }
791
792 enum {
793         Opt_check_n, Opt_check_r, Opt_check_s, Opt_uid, Opt_gid,
794         Opt_umask, Opt_dmask, Opt_fmask, Opt_allow_utime, Opt_codepage,
795         Opt_usefree, Opt_nocase, Opt_quiet, Opt_showexec, Opt_debug,
796         Opt_immutable, Opt_dots, Opt_nodots,
797         Opt_charset, Opt_shortname_lower, Opt_shortname_win95,
798         Opt_shortname_winnt, Opt_shortname_mixed, Opt_utf8_no, Opt_utf8_yes,
799         Opt_uni_xl_no, Opt_uni_xl_yes, Opt_nonumtail_no, Opt_nonumtail_yes,
800         Opt_obsolete, Opt_flush, Opt_tz_utc, Opt_rodir, Opt_err_cont,
801         Opt_err_panic, Opt_err_ro, Opt_discard, Opt_nfs, Opt_err,
802 };
803
804 static const match_table_t fat_tokens = {
805         {Opt_check_r, "check=relaxed"},
806         {Opt_check_s, "check=strict"},
807         {Opt_check_n, "check=normal"},
808         {Opt_check_r, "check=r"},
809         {Opt_check_s, "check=s"},
810         {Opt_check_n, "check=n"},
811         {Opt_uid, "uid=%u"},
812         {Opt_gid, "gid=%u"},
813         {Opt_umask, "umask=%o"},
814         {Opt_dmask, "dmask=%o"},
815         {Opt_fmask, "fmask=%o"},
816         {Opt_allow_utime, "allow_utime=%o"},
817         {Opt_codepage, "codepage=%u"},
818         {Opt_usefree, "usefree"},
819         {Opt_nocase, "nocase"},
820         {Opt_quiet, "quiet"},
821         {Opt_showexec, "showexec"},
822         {Opt_debug, "debug"},
823         {Opt_immutable, "sys_immutable"},
824         {Opt_flush, "flush"},
825         {Opt_tz_utc, "tz=UTC"},
826         {Opt_err_cont, "errors=continue"},
827         {Opt_err_panic, "errors=panic"},
828         {Opt_err_ro, "errors=remount-ro"},
829         {Opt_discard, "discard"},
830         {Opt_nfs, "nfs"},
831         {Opt_obsolete, "conv=binary"},
832         {Opt_obsolete, "conv=text"},
833         {Opt_obsolete, "conv=auto"},
834         {Opt_obsolete, "conv=b"},
835         {Opt_obsolete, "conv=t"},
836         {Opt_obsolete, "conv=a"},
837         {Opt_obsolete, "fat=%u"},
838         {Opt_obsolete, "blocksize=%u"},
839         {Opt_obsolete, "cvf_format=%20s"},
840         {Opt_obsolete, "cvf_options=%100s"},
841         {Opt_obsolete, "posix"},
842         {Opt_err, NULL},
843 };
844 static const match_table_t msdos_tokens = {
845         {Opt_nodots, "nodots"},
846         {Opt_nodots, "dotsOK=no"},
847         {Opt_dots, "dots"},
848         {Opt_dots, "dotsOK=yes"},
849         {Opt_err, NULL}
850 };
851 static const match_table_t vfat_tokens = {
852         {Opt_charset, "iocharset=%s"},
853         {Opt_shortname_lower, "shortname=lower"},
854         {Opt_shortname_win95, "shortname=win95"},
855         {Opt_shortname_winnt, "shortname=winnt"},
856         {Opt_shortname_mixed, "shortname=mixed"},
857         {Opt_utf8_no, "utf8=0"},                /* 0 or no or false */
858         {Opt_utf8_no, "utf8=no"},
859         {Opt_utf8_no, "utf8=false"},
860         {Opt_utf8_yes, "utf8=1"},               /* empty or 1 or yes or true */
861         {Opt_utf8_yes, "utf8=yes"},
862         {Opt_utf8_yes, "utf8=true"},
863         {Opt_utf8_yes, "utf8"},
864         {Opt_uni_xl_no, "uni_xlate=0"},         /* 0 or no or false */
865         {Opt_uni_xl_no, "uni_xlate=no"},
866         {Opt_uni_xl_no, "uni_xlate=false"},
867         {Opt_uni_xl_yes, "uni_xlate=1"},        /* empty or 1 or yes or true */
868         {Opt_uni_xl_yes, "uni_xlate=yes"},
869         {Opt_uni_xl_yes, "uni_xlate=true"},
870         {Opt_uni_xl_yes, "uni_xlate"},
871         {Opt_nonumtail_no, "nonumtail=0"},      /* 0 or no or false */
872         {Opt_nonumtail_no, "nonumtail=no"},
873         {Opt_nonumtail_no, "nonumtail=false"},
874         {Opt_nonumtail_yes, "nonumtail=1"},     /* empty or 1 or yes or true */
875         {Opt_nonumtail_yes, "nonumtail=yes"},
876         {Opt_nonumtail_yes, "nonumtail=true"},
877         {Opt_nonumtail_yes, "nonumtail"},
878         {Opt_rodir, "rodir"},
879         {Opt_err, NULL}
880 };
881
882 static int parse_options(struct super_block *sb, char *options, int is_vfat,
883                          int silent, int *debug, struct fat_mount_options *opts)
884 {
885         char *p;
886         substring_t args[MAX_OPT_ARGS];
887         int option;
888         char *iocharset;
889
890         opts->isvfat = is_vfat;
891
892         opts->fs_uid = current_uid();
893         opts->fs_gid = current_gid();
894         opts->fs_fmask = opts->fs_dmask = current_umask();
895         opts->allow_utime = -1;
896         opts->codepage = fat_default_codepage;
897         opts->iocharset = fat_default_iocharset;
898         if (is_vfat) {
899                 opts->shortname = VFAT_SFN_DISPLAY_WINNT|VFAT_SFN_CREATE_WIN95;
900                 opts->rodir = 0;
901         } else {
902                 opts->shortname = 0;
903                 opts->rodir = 1;
904         }
905         opts->name_check = 'n';
906         opts->quiet = opts->showexec = opts->sys_immutable = opts->dotsOK =  0;
907         opts->utf8 = opts->unicode_xlate = 0;
908         opts->numtail = 1;
909         opts->usefree = opts->nocase = 0;
910         opts->tz_utc = 0;
911         opts->nfs = 0;
912         opts->errors = FAT_ERRORS_RO;
913         *debug = 0;
914
915         if (!options)
916                 goto out;
917
918         while ((p = strsep(&options, ",")) != NULL) {
919                 int token;
920                 if (!*p)
921                         continue;
922
923                 token = match_token(p, fat_tokens, args);
924                 if (token == Opt_err) {
925                         if (is_vfat)
926                                 token = match_token(p, vfat_tokens, args);
927                         else
928                                 token = match_token(p, msdos_tokens, args);
929                 }
930                 switch (token) {
931                 case Opt_check_s:
932                         opts->name_check = 's';
933                         break;
934                 case Opt_check_r:
935                         opts->name_check = 'r';
936                         break;
937                 case Opt_check_n:
938                         opts->name_check = 'n';
939                         break;
940                 case Opt_usefree:
941                         opts->usefree = 1;
942                         break;
943                 case Opt_nocase:
944                         if (!is_vfat)
945                                 opts->nocase = 1;
946                         else {
947                                 /* for backward compatibility */
948                                 opts->shortname = VFAT_SFN_DISPLAY_WIN95
949                                         | VFAT_SFN_CREATE_WIN95;
950                         }
951                         break;
952                 case Opt_quiet:
953                         opts->quiet = 1;
954                         break;
955                 case Opt_showexec:
956                         opts->showexec = 1;
957                         break;
958                 case Opt_debug:
959                         *debug = 1;
960                         break;
961                 case Opt_immutable:
962                         opts->sys_immutable = 1;
963                         break;
964                 case Opt_uid:
965                         if (match_int(&args[0], &option))
966                                 return 0;
967                         opts->fs_uid = option;
968                         break;
969                 case Opt_gid:
970                         if (match_int(&args[0], &option))
971                                 return 0;
972                         opts->fs_gid = option;
973                         break;
974                 case Opt_umask:
975                         if (match_octal(&args[0], &option))
976                                 return 0;
977                         opts->fs_fmask = opts->fs_dmask = option;
978                         break;
979                 case Opt_dmask:
980                         if (match_octal(&args[0], &option))
981                                 return 0;
982                         opts->fs_dmask = option;
983                         break;
984                 case Opt_fmask:
985                         if (match_octal(&args[0], &option))
986                                 return 0;
987                         opts->fs_fmask = option;
988                         break;
989                 case Opt_allow_utime:
990                         if (match_octal(&args[0], &option))
991                                 return 0;
992                         opts->allow_utime = option & (S_IWGRP | S_IWOTH);
993                         break;
994                 case Opt_codepage:
995                         if (match_int(&args[0], &option))
996                                 return 0;
997                         opts->codepage = option;
998                         break;
999                 case Opt_flush:
1000                         opts->flush = 1;
1001                         break;
1002                 case Opt_tz_utc:
1003                         opts->tz_utc = 1;
1004                         break;
1005                 case Opt_err_cont:
1006                         opts->errors = FAT_ERRORS_CONT;
1007                         break;
1008                 case Opt_err_panic:
1009                         opts->errors = FAT_ERRORS_PANIC;
1010                         break;
1011                 case Opt_err_ro:
1012                         opts->errors = FAT_ERRORS_RO;
1013                         break;
1014
1015                 /* msdos specific */
1016                 case Opt_dots:
1017                         opts->dotsOK = 1;
1018                         break;
1019                 case Opt_nodots:
1020                         opts->dotsOK = 0;
1021                         break;
1022
1023                 /* vfat specific */
1024                 case Opt_charset:
1025                         if (opts->iocharset != fat_default_iocharset)
1026                                 kfree(opts->iocharset);
1027                         iocharset = match_strdup(&args[0]);
1028                         if (!iocharset)
1029                                 return -ENOMEM;
1030                         opts->iocharset = iocharset;
1031                         break;
1032                 case Opt_shortname_lower:
1033                         opts->shortname = VFAT_SFN_DISPLAY_LOWER
1034                                         | VFAT_SFN_CREATE_WIN95;
1035                         break;
1036                 case Opt_shortname_win95:
1037                         opts->shortname = VFAT_SFN_DISPLAY_WIN95
1038                                         | VFAT_SFN_CREATE_WIN95;
1039                         break;
1040                 case Opt_shortname_winnt:
1041                         opts->shortname = VFAT_SFN_DISPLAY_WINNT
1042                                         | VFAT_SFN_CREATE_WINNT;
1043                         break;
1044                 case Opt_shortname_mixed:
1045                         opts->shortname = VFAT_SFN_DISPLAY_WINNT
1046                                         | VFAT_SFN_CREATE_WIN95;
1047                         break;
1048                 case Opt_utf8_no:               /* 0 or no or false */
1049                         opts->utf8 = 0;
1050                         break;
1051                 case Opt_utf8_yes:              /* empty or 1 or yes or true */
1052                         opts->utf8 = 1;
1053                         break;
1054                 case Opt_uni_xl_no:             /* 0 or no or false */
1055                         opts->unicode_xlate = 0;
1056                         break;
1057                 case Opt_uni_xl_yes:            /* empty or 1 or yes or true */
1058                         opts->unicode_xlate = 1;
1059                         break;
1060                 case Opt_nonumtail_no:          /* 0 or no or false */
1061                         opts->numtail = 1;      /* negated option */
1062                         break;
1063                 case Opt_nonumtail_yes:         /* empty or 1 or yes or true */
1064                         opts->numtail = 0;      /* negated option */
1065                         break;
1066                 case Opt_rodir:
1067                         opts->rodir = 1;
1068                         break;
1069                 case Opt_discard:
1070                         opts->discard = 1;
1071                         break;
1072                 case Opt_nfs:
1073                         opts->nfs = 1;
1074                         break;
1075
1076                 /* obsolete mount options */
1077                 case Opt_obsolete:
1078                         fat_msg(sb, KERN_INFO, "\"%s\" option is obsolete, "
1079                                "not supported now", p);
1080                         break;
1081                 /* unknown option */
1082                 default:
1083                         if (!silent) {
1084                                 fat_msg(sb, KERN_ERR,
1085                                        "Unrecognized mount option \"%s\" "
1086                                        "or missing value", p);
1087                         }
1088                         return -EINVAL;
1089                 }
1090         }
1091
1092 out:
1093         /* UTF-8 doesn't provide FAT semantics */
1094         if (!strcmp(opts->iocharset, "utf8")) {
1095                 fat_msg(sb, KERN_WARNING, "utf8 is not a recommended IO charset"
1096                        " for FAT filesystems, filesystem will be "
1097                        "case sensitive!");
1098         }
1099
1100         /* If user doesn't specify allow_utime, it's initialized from dmask. */
1101         if (opts->allow_utime == (unsigned short)-1)
1102                 opts->allow_utime = ~opts->fs_dmask & (S_IWGRP | S_IWOTH);
1103         if (opts->unicode_xlate)
1104                 opts->utf8 = 0;
1105
1106         return 0;
1107 }
1108
1109 static int fat_read_root(struct inode *inode)
1110 {
1111         struct super_block *sb = inode->i_sb;
1112         struct msdos_sb_info *sbi = MSDOS_SB(sb);
1113         int error;
1114
1115         MSDOS_I(inode)->i_pos = 0;
1116         inode->i_uid = sbi->options.fs_uid;
1117         inode->i_gid = sbi->options.fs_gid;
1118         inode->i_version++;
1119         inode->i_generation = 0;
1120         inode->i_mode = fat_make_mode(sbi, ATTR_DIR, S_IRWXUGO);
1121         inode->i_op = sbi->dir_ops;
1122         inode->i_fop = &fat_dir_operations;
1123         if (sbi->fat_bits == 32) {
1124                 MSDOS_I(inode)->i_start = sbi->root_cluster;
1125                 error = fat_calc_dir_size(inode);
1126                 if (error < 0)
1127                         return error;
1128         } else {
1129                 MSDOS_I(inode)->i_start = 0;
1130                 inode->i_size = sbi->dir_entries * sizeof(struct msdos_dir_entry);
1131         }
1132         inode->i_blocks = ((inode->i_size + (sbi->cluster_size - 1))
1133                            & ~((loff_t)sbi->cluster_size - 1)) >> 9;
1134         MSDOS_I(inode)->i_logstart = 0;
1135         MSDOS_I(inode)->mmu_private = inode->i_size;
1136
1137         fat_save_attrs(inode, ATTR_DIR);
1138         inode->i_mtime.tv_sec = inode->i_atime.tv_sec = inode->i_ctime.tv_sec = 0;
1139         inode->i_mtime.tv_nsec = inode->i_atime.tv_nsec = inode->i_ctime.tv_nsec = 0;
1140         set_nlink(inode, fat_subdirs(inode)+2);
1141
1142         return 0;
1143 }
1144
1145 /*
1146  * Read the super block of an MS-DOS FS.
1147  */
1148 int fat_fill_super(struct super_block *sb, void *data, int silent, int isvfat,
1149                    void (*setup)(struct super_block *))
1150 {
1151         struct inode *root_inode = NULL, *fat_inode = NULL;
1152         struct inode *fsinfo_inode = NULL;
1153         struct buffer_head *bh;
1154         struct fat_boot_sector *b;
1155         struct msdos_sb_info *sbi;
1156         u16 logical_sector_size;
1157         u32 total_sectors, total_clusters, fat_clusters, rootdir_sectors;
1158         int debug;
1159         unsigned int media;
1160         long error;
1161         char buf[50];
1162
1163         /*
1164          * GFP_KERNEL is ok here, because while we do hold the
1165          * supeblock lock, memory pressure can't call back into
1166          * the filesystem, since we're only just about to mount
1167          * it and have no inodes etc active!
1168          */
1169         sbi = kzalloc(sizeof(struct msdos_sb_info), GFP_KERNEL);
1170         if (!sbi)
1171                 return -ENOMEM;
1172         sb->s_fs_info = sbi;
1173
1174         sb->s_flags |= MS_NODIRATIME;
1175         sb->s_magic = MSDOS_SUPER_MAGIC;
1176         sb->s_op = &fat_sops;
1177         sb->s_export_op = &fat_export_ops;
1178         ratelimit_state_init(&sbi->ratelimit, DEFAULT_RATELIMIT_INTERVAL,
1179                              DEFAULT_RATELIMIT_BURST);
1180
1181         error = parse_options(sb, data, isvfat, silent, &debug, &sbi->options);
1182         if (error)
1183                 goto out_fail;
1184
1185         setup(sb); /* flavour-specific stuff that needs options */
1186
1187         error = -EIO;
1188         sb_min_blocksize(sb, 512);
1189         bh = sb_bread(sb, 0);
1190         if (bh == NULL) {
1191                 fat_msg(sb, KERN_ERR, "unable to read boot sector");
1192                 goto out_fail;
1193         }
1194
1195         b = (struct fat_boot_sector *) bh->b_data;
1196         if (!b->reserved) {
1197                 if (!silent)
1198                         fat_msg(sb, KERN_ERR, "bogus number of reserved sectors");
1199                 brelse(bh);
1200                 goto out_invalid;
1201         }
1202         if (!b->fats) {
1203                 if (!silent)
1204                         fat_msg(sb, KERN_ERR, "bogus number of FAT structure");
1205                 brelse(bh);
1206                 goto out_invalid;
1207         }
1208
1209         /*
1210          * Earlier we checked here that b->secs_track and b->head are nonzero,
1211          * but it turns out valid FAT filesystems can have zero there.
1212          */
1213
1214         media = b->media;
1215         if (!fat_valid_media(media)) {
1216                 if (!silent)
1217                         fat_msg(sb, KERN_ERR, "invalid media value (0x%02x)",
1218                                media);
1219                 brelse(bh);
1220                 goto out_invalid;
1221         }
1222         logical_sector_size = get_unaligned_le16(&b->sector_size);
1223         if (!is_power_of_2(logical_sector_size)
1224             || (logical_sector_size < 512)
1225             || (logical_sector_size > 4096)) {
1226                 if (!silent)
1227                         fat_msg(sb, KERN_ERR, "bogus logical sector size %u",
1228                                logical_sector_size);
1229                 brelse(bh);
1230                 goto out_invalid;
1231         }
1232         sbi->sec_per_clus = b->sec_per_clus;
1233         if (!is_power_of_2(sbi->sec_per_clus)) {
1234                 if (!silent)
1235                         fat_msg(sb, KERN_ERR, "bogus sectors per cluster %u",
1236                                sbi->sec_per_clus);
1237                 brelse(bh);
1238                 goto out_invalid;
1239         }
1240
1241         if (logical_sector_size < sb->s_blocksize) {
1242                 fat_msg(sb, KERN_ERR, "logical sector size too small for device"
1243                        " (logical sector size = %u)", logical_sector_size);
1244                 brelse(bh);
1245                 goto out_fail;
1246         }
1247         if (logical_sector_size > sb->s_blocksize) {
1248                 brelse(bh);
1249
1250                 if (!sb_set_blocksize(sb, logical_sector_size)) {
1251                         fat_msg(sb, KERN_ERR, "unable to set blocksize %u",
1252                                logical_sector_size);
1253                         goto out_fail;
1254                 }
1255                 bh = sb_bread(sb, 0);
1256                 if (bh == NULL) {
1257                         fat_msg(sb, KERN_ERR, "unable to read boot sector"
1258                                " (logical sector size = %lu)",
1259                                sb->s_blocksize);
1260                         goto out_fail;
1261                 }
1262                 b = (struct fat_boot_sector *) bh->b_data;
1263         }
1264
1265         sbi->cluster_size = sb->s_blocksize * sbi->sec_per_clus;
1266         sbi->cluster_bits = ffs(sbi->cluster_size) - 1;
1267         sbi->fats = b->fats;
1268         sbi->fat_bits = 0;              /* Don't know yet */
1269         sbi->fat_start = le16_to_cpu(b->reserved);
1270         sbi->fat_length = le16_to_cpu(b->fat_length);
1271         sbi->root_cluster = 0;
1272         sbi->free_clusters = -1;        /* Don't know yet */
1273         sbi->free_clus_valid = 0;
1274         sbi->prev_free = FAT_START_ENT;
1275         sb->s_maxbytes = 0xffffffff;
1276
1277         if (!sbi->fat_length && b->fat32_length) {
1278                 struct fat_boot_fsinfo *fsinfo;
1279                 struct buffer_head *fsinfo_bh;
1280
1281                 /* Must be FAT32 */
1282                 sbi->fat_bits = 32;
1283                 sbi->fat_length = le32_to_cpu(b->fat32_length);
1284                 sbi->root_cluster = le32_to_cpu(b->root_cluster);
1285
1286                 /* MC - if info_sector is 0, don't multiply by 0 */
1287                 sbi->fsinfo_sector = le16_to_cpu(b->info_sector);
1288                 if (sbi->fsinfo_sector == 0)
1289                         sbi->fsinfo_sector = 1;
1290
1291                 fsinfo_bh = sb_bread(sb, sbi->fsinfo_sector);
1292                 if (fsinfo_bh == NULL) {
1293                         fat_msg(sb, KERN_ERR, "bread failed, FSINFO block"
1294                                " (sector = %lu)", sbi->fsinfo_sector);
1295                         brelse(bh);
1296                         goto out_fail;
1297                 }
1298
1299                 fsinfo = (struct fat_boot_fsinfo *)fsinfo_bh->b_data;
1300                 if (!IS_FSINFO(fsinfo)) {
1301                         fat_msg(sb, KERN_WARNING, "Invalid FSINFO signature: "
1302                                "0x%08x, 0x%08x (sector = %lu)",
1303                                le32_to_cpu(fsinfo->signature1),
1304                                le32_to_cpu(fsinfo->signature2),
1305                                sbi->fsinfo_sector);
1306                 } else {
1307                         if (sbi->options.usefree)
1308                                 sbi->free_clus_valid = 1;
1309                         sbi->free_clusters = le32_to_cpu(fsinfo->free_clusters);
1310                         sbi->prev_free = le32_to_cpu(fsinfo->next_cluster);
1311                 }
1312
1313                 brelse(fsinfo_bh);
1314         }
1315
1316         sbi->dir_per_block = sb->s_blocksize / sizeof(struct msdos_dir_entry);
1317         sbi->dir_per_block_bits = ffs(sbi->dir_per_block) - 1;
1318
1319         sbi->dir_start = sbi->fat_start + sbi->fats * sbi->fat_length;
1320         sbi->dir_entries = get_unaligned_le16(&b->dir_entries);
1321         if (sbi->dir_entries & (sbi->dir_per_block - 1)) {
1322                 if (!silent)
1323                         fat_msg(sb, KERN_ERR, "bogus directroy-entries per block"
1324                                " (%u)", sbi->dir_entries);
1325                 brelse(bh);
1326                 goto out_invalid;
1327         }
1328
1329         rootdir_sectors = sbi->dir_entries
1330                 * sizeof(struct msdos_dir_entry) / sb->s_blocksize;
1331         sbi->data_start = sbi->dir_start + rootdir_sectors;
1332         total_sectors = get_unaligned_le16(&b->sectors);
1333         if (total_sectors == 0)
1334                 total_sectors = le32_to_cpu(b->total_sect);
1335
1336         total_clusters = (total_sectors - sbi->data_start) / sbi->sec_per_clus;
1337
1338         if (sbi->fat_bits != 32)
1339                 sbi->fat_bits = (total_clusters > MAX_FAT12) ? 16 : 12;
1340
1341         /* check that FAT table does not overflow */
1342         fat_clusters = sbi->fat_length * sb->s_blocksize * 8 / sbi->fat_bits;
1343         total_clusters = min(total_clusters, fat_clusters - FAT_START_ENT);
1344         if (total_clusters > MAX_FAT(sb)) {
1345                 if (!silent)
1346                         fat_msg(sb, KERN_ERR, "count of clusters too big (%u)",
1347                                total_clusters);
1348                 brelse(bh);
1349                 goto out_invalid;
1350         }
1351
1352         sbi->max_cluster = total_clusters + FAT_START_ENT;
1353         /* check the free_clusters, it's not necessarily correct */
1354         if (sbi->free_clusters != -1 && sbi->free_clusters > total_clusters)
1355                 sbi->free_clusters = -1;
1356         /* check the prev_free, it's not necessarily correct */
1357         sbi->prev_free %= sbi->max_cluster;
1358         if (sbi->prev_free < FAT_START_ENT)
1359                 sbi->prev_free = FAT_START_ENT;
1360
1361         brelse(bh);
1362
1363         /* set up enough so that it can read an inode */
1364         fat_hash_init(sb);
1365         dir_hash_init(sb);
1366         fat_ent_access_init(sb);
1367
1368         /*
1369          * The low byte of FAT's first entry must have same value with
1370          * media-field.  But in real world, too many devices is
1371          * writing wrong value.  So, removed that validity check.
1372          *
1373          * if (FAT_FIRST_ENT(sb, media) != first)
1374          */
1375
1376         error = -EINVAL;
1377         sprintf(buf, "cp%d", sbi->options.codepage);
1378         sbi->nls_disk = load_nls(buf);
1379         if (!sbi->nls_disk) {
1380                 fat_msg(sb, KERN_ERR, "codepage %s not found", buf);
1381                 goto out_fail;
1382         }
1383
1384         /* FIXME: utf8 is using iocharset for upper/lower conversion */
1385         if (sbi->options.isvfat) {
1386                 sbi->nls_io = load_nls(sbi->options.iocharset);
1387                 if (!sbi->nls_io) {
1388                         fat_msg(sb, KERN_ERR, "IO charset %s not found",
1389                                sbi->options.iocharset);
1390                         goto out_fail;
1391                 }
1392         }
1393
1394         error = -ENOMEM;
1395         fat_inode = new_inode(sb);
1396         if (!fat_inode)
1397                 goto out_fail;
1398         MSDOS_I(fat_inode)->i_pos = 0;
1399         sbi->fat_inode = fat_inode;
1400
1401         fsinfo_inode = new_inode(sb);
1402         if (!fsinfo_inode)
1403                 goto out_fail;
1404         fsinfo_inode->i_ino = MSDOS_FSINFO_INO;
1405         sbi->fsinfo_inode = fsinfo_inode;
1406         insert_inode_hash(fsinfo_inode);
1407
1408         root_inode = new_inode(sb);
1409         if (!root_inode)
1410                 goto out_fail;
1411         root_inode->i_ino = MSDOS_ROOT_INO;
1412         root_inode->i_version = 1;
1413         error = fat_read_root(root_inode);
1414         if (error < 0) {
1415                 iput(root_inode);
1416                 goto out_fail;
1417         }
1418         error = -ENOMEM;
1419         insert_inode_hash(root_inode);
1420         fat_attach(root_inode, 0);
1421         sb->s_root = d_make_root(root_inode);
1422         if (!sb->s_root) {
1423                 fat_msg(sb, KERN_ERR, "get root inode failed");
1424                 goto out_fail;
1425         }
1426
1427         return 0;
1428
1429 out_invalid:
1430         error = -EINVAL;
1431         if (!silent)
1432                 fat_msg(sb, KERN_INFO, "Can't find a valid FAT filesystem");
1433
1434 out_fail:
1435         if (fsinfo_inode)
1436                 iput(fsinfo_inode);
1437         if (fat_inode)
1438                 iput(fat_inode);
1439         unload_nls(sbi->nls_io);
1440         unload_nls(sbi->nls_disk);
1441         if (sbi->options.iocharset != fat_default_iocharset)
1442                 kfree(sbi->options.iocharset);
1443         sb->s_fs_info = NULL;
1444         kfree(sbi);
1445         return error;
1446 }
1447
1448 EXPORT_SYMBOL_GPL(fat_fill_super);
1449
1450 /*
1451  * helper function for fat_flush_inodes.  This writes both the inode
1452  * and the file data blocks, waiting for in flight data blocks before
1453  * the start of the call.  It does not wait for any io started
1454  * during the call
1455  */
1456 static int writeback_inode(struct inode *inode)
1457 {
1458
1459         int ret;
1460
1461         /* if we used wait=1, sync_inode_metadata waits for the io for the
1462         * inode to finish.  So wait=0 is sent down to sync_inode_metadata
1463         * and filemap_fdatawrite is used for the data blocks
1464         */
1465         ret = sync_inode_metadata(inode, 0);
1466         if (!ret)
1467                 ret = filemap_fdatawrite(inode->i_mapping);
1468         return ret;
1469 }
1470
1471 /*
1472  * write data and metadata corresponding to i1 and i2.  The io is
1473  * started but we do not wait for any of it to finish.
1474  *
1475  * filemap_flush is used for the block device, so if there is a dirty
1476  * page for a block already in flight, we will not wait and start the
1477  * io over again
1478  */
1479 int fat_flush_inodes(struct super_block *sb, struct inode *i1, struct inode *i2)
1480 {
1481         int ret = 0;
1482         if (!MSDOS_SB(sb)->options.flush)
1483                 return 0;
1484         if (i1)
1485                 ret = writeback_inode(i1);
1486         if (!ret && i2)
1487                 ret = writeback_inode(i2);
1488         if (!ret) {
1489                 struct address_space *mapping = sb->s_bdev->bd_inode->i_mapping;
1490                 ret = filemap_flush(mapping);
1491         }
1492         return ret;
1493 }
1494 EXPORT_SYMBOL_GPL(fat_flush_inodes);
1495
1496 static int __init init_fat_fs(void)
1497 {
1498         int err;
1499
1500         err = fat_cache_init();
1501         if (err)
1502                 return err;
1503
1504         err = fat_init_inodecache();
1505         if (err)
1506                 goto failed;
1507
1508         return 0;
1509
1510 failed:
1511         fat_cache_destroy();
1512         return err;
1513 }
1514
1515 static void __exit exit_fat_fs(void)
1516 {
1517         fat_cache_destroy();
1518         fat_destroy_inodecache();
1519 }
1520
1521 module_init(init_fat_fs)
1522 module_exit(exit_fat_fs)
1523
1524 MODULE_LICENSE("GPL");