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