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