[PATCH] fat: move fat_clusters_flush() to write_super()
[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 =
304                 date_dos2unix(le16_to_cpu(de->time), le16_to_cpu(de->date));
305         inode->i_mtime.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                 inode->i_atime.tv_sec =
314                         date_dos2unix(le16_to_cpu(0), le16_to_cpu(de->adate));
315                 inode->i_atime.tv_nsec = 0;
316         } else
317                 inode->i_ctime = inode->i_atime = inode->i_mtime;
318
319         return 0;
320 }
321
322 struct inode *fat_build_inode(struct super_block *sb,
323                         struct msdos_dir_entry *de, loff_t i_pos)
324 {
325         struct inode *inode;
326         int err;
327
328         inode = fat_iget(sb, i_pos);
329         if (inode)
330                 goto out;
331         inode = new_inode(sb);
332         if (!inode) {
333                 inode = ERR_PTR(-ENOMEM);
334                 goto out;
335         }
336         inode->i_ino = iunique(sb, MSDOS_ROOT_INO);
337         inode->i_version = 1;
338         err = fat_fill_inode(inode, de);
339         if (err) {
340                 iput(inode);
341                 inode = ERR_PTR(err);
342                 goto out;
343         }
344         fat_attach(inode, i_pos);
345         insert_inode_hash(inode);
346 out:
347         return inode;
348 }
349
350 EXPORT_SYMBOL(fat_build_inode);
351
352 static void fat_delete_inode(struct inode *inode)
353 {
354         truncate_inode_pages(&inode->i_data, 0);
355
356         if (!is_bad_inode(inode)) {
357                 inode->i_size = 0;
358                 fat_truncate(inode);
359         }
360         clear_inode(inode);
361 }
362
363 static void fat_clear_inode(struct inode *inode)
364 {
365         struct msdos_sb_info *sbi = MSDOS_SB(inode->i_sb);
366
367         if (is_bad_inode(inode))
368                 return;
369         lock_kernel();
370         spin_lock(&sbi->inode_hash_lock);
371         fat_cache_inval_inode(inode);
372         hlist_del_init(&MSDOS_I(inode)->i_fat_hash);
373         spin_unlock(&sbi->inode_hash_lock);
374         unlock_kernel();
375 }
376
377 static void fat_write_super(struct super_block *sb)
378 {
379         sb->s_dirt = 0;
380
381         if (!(sb->s_flags & MS_RDONLY))
382                 fat_clusters_flush(sb);
383 }
384
385 static void fat_put_super(struct super_block *sb)
386 {
387         struct msdos_sb_info *sbi = MSDOS_SB(sb);
388
389         if (sbi->nls_disk) {
390                 unload_nls(sbi->nls_disk);
391                 sbi->nls_disk = NULL;
392                 sbi->options.codepage = fat_default_codepage;
393         }
394         if (sbi->nls_io) {
395                 unload_nls(sbi->nls_io);
396                 sbi->nls_io = NULL;
397         }
398         if (sbi->options.iocharset != fat_default_iocharset) {
399                 kfree(sbi->options.iocharset);
400                 sbi->options.iocharset = fat_default_iocharset;
401         }
402
403         sb->s_fs_info = NULL;
404         kfree(sbi);
405 }
406
407 static kmem_cache_t *fat_inode_cachep;
408
409 static struct inode *fat_alloc_inode(struct super_block *sb)
410 {
411         struct msdos_inode_info *ei;
412         ei = kmem_cache_alloc(fat_inode_cachep, SLAB_KERNEL);
413         if (!ei)
414                 return NULL;
415         return &ei->vfs_inode;
416 }
417
418 static void fat_destroy_inode(struct inode *inode)
419 {
420         kmem_cache_free(fat_inode_cachep, MSDOS_I(inode));
421 }
422
423 static void init_once(void * foo, kmem_cache_t * cachep, unsigned long flags)
424 {
425         struct msdos_inode_info *ei = (struct msdos_inode_info *)foo;
426
427         if ((flags & (SLAB_CTOR_VERIFY|SLAB_CTOR_CONSTRUCTOR)) ==
428             SLAB_CTOR_CONSTRUCTOR) {
429                 spin_lock_init(&ei->cache_lru_lock);
430                 ei->nr_caches = 0;
431                 ei->cache_valid_id = FAT_CACHE_VALID + 1;
432                 INIT_LIST_HEAD(&ei->cache_lru);
433                 INIT_HLIST_NODE(&ei->i_fat_hash);
434                 inode_init_once(&ei->vfs_inode);
435         }
436 }
437
438 static int __init fat_init_inodecache(void)
439 {
440         fat_inode_cachep = kmem_cache_create("fat_inode_cache",
441                                              sizeof(struct msdos_inode_info),
442                                              0, SLAB_RECLAIM_ACCOUNT,
443                                              init_once, NULL);
444         if (fat_inode_cachep == NULL)
445                 return -ENOMEM;
446         return 0;
447 }
448
449 static void __exit fat_destroy_inodecache(void)
450 {
451         if (kmem_cache_destroy(fat_inode_cachep))
452                 printk(KERN_INFO "fat_inode_cache: not all structures were freed\n");
453 }
454
455 static int fat_remount(struct super_block *sb, int *flags, char *data)
456 {
457         struct msdos_sb_info *sbi = MSDOS_SB(sb);
458         *flags |= MS_NODIRATIME | (sbi->options.isvfat ? 0 : MS_NOATIME);
459         return 0;
460 }
461
462 static int fat_statfs(struct super_block *sb, struct kstatfs *buf)
463 {
464         struct msdos_sb_info *sbi = MSDOS_SB(sb);
465
466         /* If the count of free cluster is still unknown, counts it here. */
467         if (sbi->free_clusters == -1) {
468                 int err = fat_count_free_clusters(sb);
469                 if (err)
470                         return err;
471         }
472
473         buf->f_type = sb->s_magic;
474         buf->f_bsize = sbi->cluster_size;
475         buf->f_blocks = sbi->max_cluster - FAT_START_ENT;
476         buf->f_bfree = sbi->free_clusters;
477         buf->f_bavail = sbi->free_clusters;
478         buf->f_namelen = sbi->options.isvfat ? 260 : 12;
479
480         return 0;
481 }
482
483 static int fat_write_inode(struct inode *inode, int wait)
484 {
485         struct super_block *sb = inode->i_sb;
486         struct msdos_sb_info *sbi = MSDOS_SB(sb);
487         struct buffer_head *bh;
488         struct msdos_dir_entry *raw_entry;
489         loff_t i_pos;
490         int err = 0;
491
492 retry:
493         i_pos = MSDOS_I(inode)->i_pos;
494         if (inode->i_ino == MSDOS_ROOT_INO || !i_pos)
495                 return 0;
496
497         lock_kernel();
498         bh = sb_bread(sb, i_pos >> sbi->dir_per_block_bits);
499         if (!bh) {
500                 printk(KERN_ERR "FAT: unable to read inode block "
501                        "for updating (i_pos %lld)\n", i_pos);
502                 err = -EIO;
503                 goto out;
504         }
505         spin_lock(&sbi->inode_hash_lock);
506         if (i_pos != MSDOS_I(inode)->i_pos) {
507                 spin_unlock(&sbi->inode_hash_lock);
508                 brelse(bh);
509                 unlock_kernel();
510                 goto retry;
511         }
512
513         raw_entry = &((struct msdos_dir_entry *) (bh->b_data))
514             [i_pos & (sbi->dir_per_block - 1)];
515         if (S_ISDIR(inode->i_mode))
516                 raw_entry->size = 0;
517         else
518                 raw_entry->size = cpu_to_le32(inode->i_size);
519         raw_entry->attr = fat_attr(inode);
520         raw_entry->start = cpu_to_le16(MSDOS_I(inode)->i_logstart);
521         raw_entry->starthi = cpu_to_le16(MSDOS_I(inode)->i_logstart >> 16);
522         fat_date_unix2dos(inode->i_mtime.tv_sec, &raw_entry->time, &raw_entry->date);
523         if (sbi->options.isvfat) {
524                 __le16 atime;
525                 fat_date_unix2dos(inode->i_ctime.tv_sec,&raw_entry->ctime,&raw_entry->cdate);
526                 fat_date_unix2dos(inode->i_atime.tv_sec,&atime,&raw_entry->adate);
527                 raw_entry->ctime_cs = (inode->i_ctime.tv_sec & 1) * 100 +
528                         inode->i_ctime.tv_nsec / 10000000;
529         }
530         spin_unlock(&sbi->inode_hash_lock);
531         mark_buffer_dirty(bh);
532         if (wait)
533                 err = sync_dirty_buffer(bh);
534         brelse(bh);
535 out:
536         unlock_kernel();
537         return err;
538 }
539
540 int fat_sync_inode(struct inode *inode)
541 {
542         return fat_write_inode(inode, 1);
543 }
544
545 EXPORT_SYMBOL(fat_sync_inode);
546
547 static int fat_show_options(struct seq_file *m, struct vfsmount *mnt);
548 static struct super_operations fat_sops = {
549         .alloc_inode    = fat_alloc_inode,
550         .destroy_inode  = fat_destroy_inode,
551         .write_inode    = fat_write_inode,
552         .delete_inode   = fat_delete_inode,
553         .put_super      = fat_put_super,
554         .write_super    = fat_write_super,
555         .statfs         = fat_statfs,
556         .clear_inode    = fat_clear_inode,
557         .remount_fs     = fat_remount,
558
559         .read_inode     = make_bad_inode,
560
561         .show_options   = fat_show_options,
562 };
563
564 /*
565  * a FAT file handle with fhtype 3 is
566  *  0/  i_ino - for fast, reliable lookup if still in the cache
567  *  1/  i_generation - to see if i_ino is still valid
568  *          bit 0 == 0 iff directory
569  *  2/  i_pos(8-39) - if ino has changed, but still in cache
570  *  3/  i_pos(4-7)|i_logstart - to semi-verify inode found at i_pos
571  *  4/  i_pos(0-3)|parent->i_logstart - maybe used to hunt for the file on disc
572  *
573  * Hack for NFSv2: Maximum FAT entry number is 28bits and maximum
574  * i_pos is 40bits (blocknr(32) + dir offset(8)), so two 4bits
575  * of i_logstart is used to store the directory entry offset.
576  */
577
578 static struct dentry *
579 fat_decode_fh(struct super_block *sb, __u32 *fh, int len, int fhtype,
580               int (*acceptable)(void *context, struct dentry *de),
581               void *context)
582 {
583         if (fhtype != 3)
584                 return ERR_PTR(-ESTALE);
585         if (len < 5)
586                 return ERR_PTR(-ESTALE);
587
588         return sb->s_export_op->find_exported_dentry(sb, fh, NULL, acceptable, context);
589 }
590
591 static struct dentry *fat_get_dentry(struct super_block *sb, void *inump)
592 {
593         struct inode *inode = NULL;
594         struct dentry *result;
595         __u32 *fh = inump;
596
597         inode = iget(sb, fh[0]);
598         if (!inode || is_bad_inode(inode) || inode->i_generation != fh[1]) {
599                 if (inode)
600                         iput(inode);
601                 inode = NULL;
602         }
603         if (!inode) {
604                 loff_t i_pos;
605                 int i_logstart = fh[3] & 0x0fffffff;
606
607                 i_pos = (loff_t)fh[2] << 8;
608                 i_pos |= ((fh[3] >> 24) & 0xf0) | (fh[4] >> 28);
609
610                 /* try 2 - see if i_pos is in F-d-c
611                  * require i_logstart to be the same
612                  * Will fail if you truncate and then re-write
613                  */
614
615                 inode = fat_iget(sb, i_pos);
616                 if (inode && MSDOS_I(inode)->i_logstart != i_logstart) {
617                         iput(inode);
618                         inode = NULL;
619                 }
620         }
621         if (!inode) {
622                 /* For now, do nothing
623                  * What we could do is:
624                  * follow the file starting at fh[4], and record
625                  * the ".." entry, and the name of the fh[2] entry.
626                  * The follow the ".." file finding the next step up.
627                  * This way we build a path to the root of
628                  * the tree. If this works, we lookup the path and so
629                  * get this inode into the cache.
630                  * Finally try the fat_iget lookup again
631                  * If that fails, then weare totally out of luck
632                  * But all that is for another day
633                  */
634         }
635         if (!inode)
636                 return ERR_PTR(-ESTALE);
637
638
639         /* now to find a dentry.
640          * If possible, get a well-connected one
641          */
642         result = d_alloc_anon(inode);
643         if (result == NULL) {
644                 iput(inode);
645                 return ERR_PTR(-ENOMEM);
646         }
647         result->d_op = sb->s_root->d_op;
648         return result;
649 }
650
651 static int
652 fat_encode_fh(struct dentry *de, __u32 *fh, int *lenp, int connectable)
653 {
654         int len = *lenp;
655         struct inode *inode =  de->d_inode;
656         u32 ipos_h, ipos_m, ipos_l;
657
658         if (len < 5)
659                 return 255; /* no room */
660
661         ipos_h = MSDOS_I(inode)->i_pos >> 8;
662         ipos_m = (MSDOS_I(inode)->i_pos & 0xf0) << 24;
663         ipos_l = (MSDOS_I(inode)->i_pos & 0x0f) << 28;
664         *lenp = 5;
665         fh[0] = inode->i_ino;
666         fh[1] = inode->i_generation;
667         fh[2] = ipos_h;
668         fh[3] = ipos_m | MSDOS_I(inode)->i_logstart;
669         spin_lock(&de->d_lock);
670         fh[4] = ipos_l | MSDOS_I(de->d_parent->d_inode)->i_logstart;
671         spin_unlock(&de->d_lock);
672         return 3;
673 }
674
675 static struct dentry *fat_get_parent(struct dentry *child)
676 {
677         struct buffer_head *bh;
678         struct msdos_dir_entry *de;
679         loff_t i_pos;
680         struct dentry *parent;
681         struct inode *inode;
682         int err;
683
684         lock_kernel();
685
686         err = fat_get_dotdot_entry(child->d_inode, &bh, &de, &i_pos);
687         if (err) {
688                 parent = ERR_PTR(err);
689                 goto out;
690         }
691         inode = fat_build_inode(child->d_sb, de, i_pos);
692         brelse(bh);
693         if (IS_ERR(inode)) {
694                 parent = ERR_PTR(PTR_ERR(inode));
695                 goto out;
696         }
697         parent = d_alloc_anon(inode);
698         if (!parent) {
699                 iput(inode);
700                 parent = ERR_PTR(-ENOMEM);
701         }
702 out:
703         unlock_kernel();
704
705         return parent;
706 }
707
708 static struct export_operations fat_export_ops = {
709         .decode_fh      = fat_decode_fh,
710         .encode_fh      = fat_encode_fh,
711         .get_dentry     = fat_get_dentry,
712         .get_parent     = fat_get_parent,
713 };
714
715 static int fat_show_options(struct seq_file *m, struct vfsmount *mnt)
716 {
717         struct msdos_sb_info *sbi = MSDOS_SB(mnt->mnt_sb);
718         struct fat_mount_options *opts = &sbi->options;
719         int isvfat = opts->isvfat;
720
721         if (opts->fs_uid != 0)
722                 seq_printf(m, ",uid=%u", opts->fs_uid);
723         if (opts->fs_gid != 0)
724                 seq_printf(m, ",gid=%u", opts->fs_gid);
725         seq_printf(m, ",fmask=%04o", opts->fs_fmask);
726         seq_printf(m, ",dmask=%04o", opts->fs_dmask);
727         if (sbi->nls_disk)
728                 seq_printf(m, ",codepage=%s", sbi->nls_disk->charset);
729         if (isvfat) {
730                 if (sbi->nls_io)
731                         seq_printf(m, ",iocharset=%s", sbi->nls_io->charset);
732
733                 switch (opts->shortname) {
734                 case VFAT_SFN_DISPLAY_WIN95 | VFAT_SFN_CREATE_WIN95:
735                         seq_puts(m, ",shortname=win95");
736                         break;
737                 case VFAT_SFN_DISPLAY_WINNT | VFAT_SFN_CREATE_WINNT:
738                         seq_puts(m, ",shortname=winnt");
739                         break;
740                 case VFAT_SFN_DISPLAY_WINNT | VFAT_SFN_CREATE_WIN95:
741                         seq_puts(m, ",shortname=mixed");
742                         break;
743                 case VFAT_SFN_DISPLAY_LOWER | VFAT_SFN_CREATE_WIN95:
744                         /* seq_puts(m, ",shortname=lower"); */
745                         break;
746                 default:
747                         seq_puts(m, ",shortname=unknown");
748                         break;
749                 }
750         }
751         if (opts->name_check != 'n')
752                 seq_printf(m, ",check=%c", opts->name_check);
753         if (opts->quiet)
754                 seq_puts(m, ",quiet");
755         if (opts->showexec)
756                 seq_puts(m, ",showexec");
757         if (opts->sys_immutable)
758                 seq_puts(m, ",sys_immutable");
759         if (!isvfat) {
760                 if (opts->dotsOK)
761                         seq_puts(m, ",dotsOK=yes");
762                 if (opts->nocase)
763                         seq_puts(m, ",nocase");
764         } else {
765                 if (opts->utf8)
766                         seq_puts(m, ",utf8");
767                 if (opts->unicode_xlate)
768                         seq_puts(m, ",uni_xlate");
769                 if (!opts->numtail)
770                         seq_puts(m, ",nonumtail");
771         }
772
773         return 0;
774 }
775
776 enum {
777         Opt_check_n, Opt_check_r, Opt_check_s, Opt_uid, Opt_gid,
778         Opt_umask, Opt_dmask, Opt_fmask, Opt_codepage, Opt_nocase,
779         Opt_quiet, Opt_showexec, Opt_debug, Opt_immutable,
780         Opt_dots, Opt_nodots,
781         Opt_charset, Opt_shortname_lower, Opt_shortname_win95,
782         Opt_shortname_winnt, Opt_shortname_mixed, Opt_utf8_no, Opt_utf8_yes,
783         Opt_uni_xl_no, Opt_uni_xl_yes, Opt_nonumtail_no, Opt_nonumtail_yes,
784         Opt_obsolate, Opt_err,
785 };
786
787 static match_table_t fat_tokens = {
788         {Opt_check_r, "check=relaxed"},
789         {Opt_check_s, "check=strict"},
790         {Opt_check_n, "check=normal"},
791         {Opt_check_r, "check=r"},
792         {Opt_check_s, "check=s"},
793         {Opt_check_n, "check=n"},
794         {Opt_uid, "uid=%u"},
795         {Opt_gid, "gid=%u"},
796         {Opt_umask, "umask=%o"},
797         {Opt_dmask, "dmask=%o"},
798         {Opt_fmask, "fmask=%o"},
799         {Opt_codepage, "codepage=%u"},
800         {Opt_nocase, "nocase"},
801         {Opt_quiet, "quiet"},
802         {Opt_showexec, "showexec"},
803         {Opt_debug, "debug"},
804         {Opt_immutable, "sys_immutable"},
805         {Opt_obsolate, "conv=binary"},
806         {Opt_obsolate, "conv=text"},
807         {Opt_obsolate, "conv=auto"},
808         {Opt_obsolate, "conv=b"},
809         {Opt_obsolate, "conv=t"},
810         {Opt_obsolate, "conv=a"},
811         {Opt_obsolate, "fat=%u"},
812         {Opt_obsolate, "blocksize=%u"},
813         {Opt_obsolate, "cvf_format=%20s"},
814         {Opt_obsolate, "cvf_options=%100s"},
815         {Opt_obsolate, "posix"},
816         {Opt_err, NULL}
817 };
818 static match_table_t msdos_tokens = {
819         {Opt_nodots, "nodots"},
820         {Opt_nodots, "dotsOK=no"},
821         {Opt_dots, "dots"},
822         {Opt_dots, "dotsOK=yes"},
823         {Opt_err, NULL}
824 };
825 static match_table_t vfat_tokens = {
826         {Opt_charset, "iocharset=%s"},
827         {Opt_shortname_lower, "shortname=lower"},
828         {Opt_shortname_win95, "shortname=win95"},
829         {Opt_shortname_winnt, "shortname=winnt"},
830         {Opt_shortname_mixed, "shortname=mixed"},
831         {Opt_utf8_no, "utf8=0"},                /* 0 or no or false */
832         {Opt_utf8_no, "utf8=no"},
833         {Opt_utf8_no, "utf8=false"},
834         {Opt_utf8_yes, "utf8=1"},               /* empty or 1 or yes or true */
835         {Opt_utf8_yes, "utf8=yes"},
836         {Opt_utf8_yes, "utf8=true"},
837         {Opt_utf8_yes, "utf8"},
838         {Opt_uni_xl_no, "uni_xlate=0"},         /* 0 or no or false */
839         {Opt_uni_xl_no, "uni_xlate=no"},
840         {Opt_uni_xl_no, "uni_xlate=false"},
841         {Opt_uni_xl_yes, "uni_xlate=1"},        /* empty or 1 or yes or true */
842         {Opt_uni_xl_yes, "uni_xlate=yes"},
843         {Opt_uni_xl_yes, "uni_xlate=true"},
844         {Opt_uni_xl_yes, "uni_xlate"},
845         {Opt_nonumtail_no, "nonumtail=0"},      /* 0 or no or false */
846         {Opt_nonumtail_no, "nonumtail=no"},
847         {Opt_nonumtail_no, "nonumtail=false"},
848         {Opt_nonumtail_yes, "nonumtail=1"},     /* empty or 1 or yes or true */
849         {Opt_nonumtail_yes, "nonumtail=yes"},
850         {Opt_nonumtail_yes, "nonumtail=true"},
851         {Opt_nonumtail_yes, "nonumtail"},
852         {Opt_err, NULL}
853 };
854
855 static int parse_options(char *options, int is_vfat, int silent, int *debug,
856                          struct fat_mount_options *opts)
857 {
858         char *p;
859         substring_t args[MAX_OPT_ARGS];
860         int option;
861         char *iocharset;
862
863         opts->isvfat = is_vfat;
864
865         opts->fs_uid = current->uid;
866         opts->fs_gid = current->gid;
867         opts->fs_fmask = opts->fs_dmask = current->fs->umask;
868         opts->codepage = fat_default_codepage;
869         opts->iocharset = fat_default_iocharset;
870         if (is_vfat)
871                 opts->shortname = VFAT_SFN_DISPLAY_LOWER|VFAT_SFN_CREATE_WIN95;
872         else
873                 opts->shortname = 0;
874         opts->name_check = 'n';
875         opts->quiet = opts->showexec = opts->sys_immutable = opts->dotsOK =  0;
876         opts->utf8 = opts->unicode_xlate = 0;
877         opts->numtail = 1;
878         opts->nocase = 0;
879         *debug = 0;
880
881         if (!options)
882                 return 0;
883
884         while ((p = strsep(&options, ",")) != NULL) {
885                 int token;
886                 if (!*p)
887                         continue;
888
889                 token = match_token(p, fat_tokens, args);
890                 if (token == Opt_err) {
891                         if (is_vfat)
892                                 token = match_token(p, vfat_tokens, args);
893                         else
894                                 token = match_token(p, msdos_tokens, args);
895                 }
896                 switch (token) {
897                 case Opt_check_s:
898                         opts->name_check = 's';
899                         break;
900                 case Opt_check_r:
901                         opts->name_check = 'r';
902                         break;
903                 case Opt_check_n:
904                         opts->name_check = 'n';
905                         break;
906                 case Opt_nocase:
907                         if (!is_vfat)
908                                 opts->nocase = 1;
909                         else {
910                                 /* for backward compatibility */
911                                 opts->shortname = VFAT_SFN_DISPLAY_WIN95
912                                         | VFAT_SFN_CREATE_WIN95;
913                         }
914                         break;
915                 case Opt_quiet:
916                         opts->quiet = 1;
917                         break;
918                 case Opt_showexec:
919                         opts->showexec = 1;
920                         break;
921                 case Opt_debug:
922                         *debug = 1;
923                         break;
924                 case Opt_immutable:
925                         opts->sys_immutable = 1;
926                         break;
927                 case Opt_uid:
928                         if (match_int(&args[0], &option))
929                                 return 0;
930                         opts->fs_uid = option;
931                         break;
932                 case Opt_gid:
933                         if (match_int(&args[0], &option))
934                                 return 0;
935                         opts->fs_gid = option;
936                         break;
937                 case Opt_umask:
938                         if (match_octal(&args[0], &option))
939                                 return 0;
940                         opts->fs_fmask = opts->fs_dmask = option;
941                         break;
942                 case Opt_dmask:
943                         if (match_octal(&args[0], &option))
944                                 return 0;
945                         opts->fs_dmask = option;
946                         break;
947                 case Opt_fmask:
948                         if (match_octal(&args[0], &option))
949                                 return 0;
950                         opts->fs_fmask = option;
951                         break;
952                 case Opt_codepage:
953                         if (match_int(&args[0], &option))
954                                 return 0;
955                         opts->codepage = option;
956                         break;
957
958                 /* msdos specific */
959                 case Opt_dots:
960                         opts->dotsOK = 1;
961                         break;
962                 case Opt_nodots:
963                         opts->dotsOK = 0;
964                         break;
965
966                 /* vfat specific */
967                 case Opt_charset:
968                         if (opts->iocharset != fat_default_iocharset)
969                                 kfree(opts->iocharset);
970                         iocharset = match_strdup(&args[0]);
971                         if (!iocharset)
972                                 return -ENOMEM;
973                         opts->iocharset = iocharset;
974                         break;
975                 case Opt_shortname_lower:
976                         opts->shortname = VFAT_SFN_DISPLAY_LOWER
977                                         | VFAT_SFN_CREATE_WIN95;
978                         break;
979                 case Opt_shortname_win95:
980                         opts->shortname = VFAT_SFN_DISPLAY_WIN95
981                                         | VFAT_SFN_CREATE_WIN95;
982                         break;
983                 case Opt_shortname_winnt:
984                         opts->shortname = VFAT_SFN_DISPLAY_WINNT
985                                         | VFAT_SFN_CREATE_WINNT;
986                         break;
987                 case Opt_shortname_mixed:
988                         opts->shortname = VFAT_SFN_DISPLAY_WINNT
989                                         | VFAT_SFN_CREATE_WIN95;
990                         break;
991                 case Opt_utf8_no:               /* 0 or no or false */
992                         opts->utf8 = 0;
993                         break;
994                 case Opt_utf8_yes:              /* empty or 1 or yes or true */
995                         opts->utf8 = 1;
996                         break;
997                 case Opt_uni_xl_no:             /* 0 or no or false */
998                         opts->unicode_xlate = 0;
999                         break;
1000                 case Opt_uni_xl_yes:            /* empty or 1 or yes or true */
1001                         opts->unicode_xlate = 1;
1002                         break;
1003                 case Opt_nonumtail_no:          /* 0 or no or false */
1004                         opts->numtail = 1;      /* negated option */
1005                         break;
1006                 case Opt_nonumtail_yes:         /* empty or 1 or yes or true */
1007                         opts->numtail = 0;      /* negated option */
1008                         break;
1009
1010                 /* obsolete mount options */
1011                 case Opt_obsolate:
1012                         printk(KERN_INFO "FAT: \"%s\" option is obsolete, "
1013                                "not supported now\n", p);
1014                         break;
1015                 /* unknown option */
1016                 default:
1017                         if (!silent) {
1018                                 printk(KERN_ERR
1019                                        "FAT: Unrecognized mount option \"%s\" "
1020                                        "or missing value\n", p);
1021                         }
1022                         return -EINVAL;
1023                 }
1024         }
1025         /* UTF8 doesn't provide FAT semantics */
1026         if (!strcmp(opts->iocharset, "utf8")) {
1027                 printk(KERN_ERR "FAT: utf8 is not a recommended IO charset"
1028                        " for FAT filesystems, filesystem will be case sensitive!\n");
1029         }
1030
1031         if (opts->unicode_xlate)
1032                 opts->utf8 = 0;
1033
1034         return 0;
1035 }
1036
1037 static int fat_read_root(struct inode *inode)
1038 {
1039         struct super_block *sb = inode->i_sb;
1040         struct msdos_sb_info *sbi = MSDOS_SB(sb);
1041         int error;
1042
1043         MSDOS_I(inode)->i_pos = 0;
1044         inode->i_uid = sbi->options.fs_uid;
1045         inode->i_gid = sbi->options.fs_gid;
1046         inode->i_version++;
1047         inode->i_generation = 0;
1048         inode->i_mode = (S_IRWXUGO & ~sbi->options.fs_dmask) | S_IFDIR;
1049         inode->i_op = sbi->dir_ops;
1050         inode->i_fop = &fat_dir_operations;
1051         if (sbi->fat_bits == 32) {
1052                 MSDOS_I(inode)->i_start = sbi->root_cluster;
1053                 error = fat_calc_dir_size(inode);
1054                 if (error < 0)
1055                         return error;
1056         } else {
1057                 MSDOS_I(inode)->i_start = 0;
1058                 inode->i_size = sbi->dir_entries * sizeof(struct msdos_dir_entry);
1059         }
1060         inode->i_blksize = sbi->cluster_size;
1061         inode->i_blocks = ((inode->i_size + (sbi->cluster_size - 1))
1062                            & ~((loff_t)sbi->cluster_size - 1)) >> 9;
1063         MSDOS_I(inode)->i_logstart = 0;
1064         MSDOS_I(inode)->mmu_private = inode->i_size;
1065
1066         MSDOS_I(inode)->i_attrs = ATTR_NONE;
1067         inode->i_mtime.tv_sec = inode->i_atime.tv_sec = inode->i_ctime.tv_sec = 0;
1068         inode->i_mtime.tv_nsec = inode->i_atime.tv_nsec = inode->i_ctime.tv_nsec = 0;
1069         inode->i_nlink = fat_subdirs(inode)+2;
1070
1071         return 0;
1072 }
1073
1074 /*
1075  * Read the super block of an MS-DOS FS.
1076  */
1077 int fat_fill_super(struct super_block *sb, void *data, int silent,
1078                    struct inode_operations *fs_dir_inode_ops, int isvfat)
1079 {
1080         struct inode *root_inode = NULL;
1081         struct buffer_head *bh;
1082         struct fat_boot_sector *b;
1083         struct msdos_sb_info *sbi;
1084         u16 logical_sector_size;
1085         u32 total_sectors, total_clusters, fat_clusters, rootdir_sectors;
1086         int debug;
1087         unsigned int media;
1088         long error;
1089         char buf[50];
1090
1091         sbi = kmalloc(sizeof(struct msdos_sb_info), GFP_KERNEL);
1092         if (!sbi)
1093                 return -ENOMEM;
1094         sb->s_fs_info = sbi;
1095         memset(sbi, 0, sizeof(struct msdos_sb_info));
1096
1097         sb->s_flags |= MS_NODIRATIME;
1098         sb->s_magic = MSDOS_SUPER_MAGIC;
1099         sb->s_op = &fat_sops;
1100         sb->s_export_op = &fat_export_ops;
1101         sbi->dir_ops = fs_dir_inode_ops;
1102
1103         error = parse_options(data, isvfat, silent, &debug, &sbi->options);
1104         if (error)
1105                 goto out_fail;
1106
1107         error = -EIO;
1108         sb_min_blocksize(sb, 512);
1109         bh = sb_bread(sb, 0);
1110         if (bh == NULL) {
1111                 printk(KERN_ERR "FAT: unable to read boot sector\n");
1112                 goto out_fail;
1113         }
1114
1115         b = (struct fat_boot_sector *) bh->b_data;
1116         if (!b->reserved) {
1117                 if (!silent)
1118                         printk(KERN_ERR "FAT: bogus number of reserved sectors\n");
1119                 brelse(bh);
1120                 goto out_invalid;
1121         }
1122         if (!b->fats) {
1123                 if (!silent)
1124                         printk(KERN_ERR "FAT: bogus number of FAT structure\n");
1125                 brelse(bh);
1126                 goto out_invalid;
1127         }
1128
1129         /*
1130          * Earlier we checked here that b->secs_track and b->head are nonzero,
1131          * but it turns out valid FAT filesystems can have zero there.
1132          */
1133
1134         media = b->media;
1135         if (!FAT_VALID_MEDIA(media)) {
1136                 if (!silent)
1137                         printk(KERN_ERR "FAT: invalid media value (0x%02x)\n",
1138                                media);
1139                 brelse(bh);
1140                 goto out_invalid;
1141         }
1142         logical_sector_size =
1143                 le16_to_cpu(get_unaligned((__le16 *)&b->sector_size));
1144         if (!logical_sector_size
1145             || (logical_sector_size & (logical_sector_size - 1))
1146             || (logical_sector_size < 512)
1147             || (PAGE_CACHE_SIZE < logical_sector_size)) {
1148                 if (!silent)
1149                         printk(KERN_ERR "FAT: bogus logical sector size %u\n",
1150                                logical_sector_size);
1151                 brelse(bh);
1152                 goto out_invalid;
1153         }
1154         sbi->sec_per_clus = b->sec_per_clus;
1155         if (!sbi->sec_per_clus
1156             || (sbi->sec_per_clus & (sbi->sec_per_clus - 1))) {
1157                 if (!silent)
1158                         printk(KERN_ERR "FAT: bogus sectors per cluster %u\n",
1159                                sbi->sec_per_clus);
1160                 brelse(bh);
1161                 goto out_invalid;
1162         }
1163
1164         if (logical_sector_size < sb->s_blocksize) {
1165                 printk(KERN_ERR "FAT: logical sector size too small for device"
1166                        " (logical sector size = %u)\n", logical_sector_size);
1167                 brelse(bh);
1168                 goto out_fail;
1169         }
1170         if (logical_sector_size > sb->s_blocksize) {
1171                 brelse(bh);
1172
1173                 if (!sb_set_blocksize(sb, logical_sector_size)) {
1174                         printk(KERN_ERR "FAT: unable to set blocksize %u\n",
1175                                logical_sector_size);
1176                         goto out_fail;
1177                 }
1178                 bh = sb_bread(sb, 0);
1179                 if (bh == NULL) {
1180                         printk(KERN_ERR "FAT: unable to read boot sector"
1181                                " (logical sector size = %lu)\n",
1182                                sb->s_blocksize);
1183                         goto out_fail;
1184                 }
1185                 b = (struct fat_boot_sector *) bh->b_data;
1186         }
1187
1188         sbi->cluster_size = sb->s_blocksize * sbi->sec_per_clus;
1189         sbi->cluster_bits = ffs(sbi->cluster_size) - 1;
1190         sbi->fats = b->fats;
1191         sbi->fat_bits = 0;              /* Don't know yet */
1192         sbi->fat_start = le16_to_cpu(b->reserved);
1193         sbi->fat_length = le16_to_cpu(b->fat_length);
1194         sbi->root_cluster = 0;
1195         sbi->free_clusters = -1;        /* Don't know yet */
1196         sbi->prev_free = FAT_START_ENT;
1197
1198         if (!sbi->fat_length && b->fat32_length) {
1199                 struct fat_boot_fsinfo *fsinfo;
1200                 struct buffer_head *fsinfo_bh;
1201
1202                 /* Must be FAT32 */
1203                 sbi->fat_bits = 32;
1204                 sbi->fat_length = le32_to_cpu(b->fat32_length);
1205                 sbi->root_cluster = le32_to_cpu(b->root_cluster);
1206
1207                 sb->s_maxbytes = 0xffffffff;
1208
1209                 /* MC - if info_sector is 0, don't multiply by 0 */
1210                 sbi->fsinfo_sector = le16_to_cpu(b->info_sector);
1211                 if (sbi->fsinfo_sector == 0)
1212                         sbi->fsinfo_sector = 1;
1213
1214                 fsinfo_bh = sb_bread(sb, sbi->fsinfo_sector);
1215                 if (fsinfo_bh == NULL) {
1216                         printk(KERN_ERR "FAT: bread failed, FSINFO block"
1217                                " (sector = %lu)\n", sbi->fsinfo_sector);
1218                         brelse(bh);
1219                         goto out_fail;
1220                 }
1221
1222                 fsinfo = (struct fat_boot_fsinfo *)fsinfo_bh->b_data;
1223                 if (!IS_FSINFO(fsinfo)) {
1224                         printk(KERN_WARNING
1225                                "FAT: Did not find valid FSINFO signature.\n"
1226                                "     Found signature1 0x%08x signature2 0x%08x"
1227                                " (sector = %lu)\n",
1228                                le32_to_cpu(fsinfo->signature1),
1229                                le32_to_cpu(fsinfo->signature2),
1230                                sbi->fsinfo_sector);
1231                 } else {
1232                         sbi->free_clusters = le32_to_cpu(fsinfo->free_clusters);
1233                         sbi->prev_free = le32_to_cpu(fsinfo->next_cluster);
1234                 }
1235
1236                 brelse(fsinfo_bh);
1237         }
1238
1239         sbi->dir_per_block = sb->s_blocksize / sizeof(struct msdos_dir_entry);
1240         sbi->dir_per_block_bits = ffs(sbi->dir_per_block) - 1;
1241
1242         sbi->dir_start = sbi->fat_start + sbi->fats * sbi->fat_length;
1243         sbi->dir_entries =
1244                 le16_to_cpu(get_unaligned((__le16 *)&b->dir_entries));
1245         if (sbi->dir_entries & (sbi->dir_per_block - 1)) {
1246                 if (!silent)
1247                         printk(KERN_ERR "FAT: bogus directroy-entries per block"
1248                                " (%u)\n", sbi->dir_entries);
1249                 brelse(bh);
1250                 goto out_invalid;
1251         }
1252
1253         rootdir_sectors = sbi->dir_entries
1254                 * sizeof(struct msdos_dir_entry) / sb->s_blocksize;
1255         sbi->data_start = sbi->dir_start + rootdir_sectors;
1256         total_sectors = le16_to_cpu(get_unaligned((__le16 *)&b->sectors));
1257         if (total_sectors == 0)
1258                 total_sectors = le32_to_cpu(b->total_sect);
1259
1260         total_clusters = (total_sectors - sbi->data_start) / sbi->sec_per_clus;
1261
1262         if (sbi->fat_bits != 32)
1263                 sbi->fat_bits = (total_clusters > MAX_FAT12) ? 16 : 12;
1264
1265         /* check that FAT table does not overflow */
1266         fat_clusters = sbi->fat_length * sb->s_blocksize * 8 / sbi->fat_bits;
1267         total_clusters = min(total_clusters, fat_clusters - FAT_START_ENT);
1268         if (total_clusters > MAX_FAT(sb)) {
1269                 if (!silent)
1270                         printk(KERN_ERR "FAT: count of clusters too big (%u)\n",
1271                                total_clusters);
1272                 brelse(bh);
1273                 goto out_invalid;
1274         }
1275
1276         sbi->max_cluster = total_clusters + FAT_START_ENT;
1277         /* check the free_clusters, it's not necessarily correct */
1278         if (sbi->free_clusters != -1 && sbi->free_clusters > total_clusters)
1279                 sbi->free_clusters = -1;
1280         /* check the prev_free, it's not necessarily correct */
1281         sbi->prev_free %= sbi->max_cluster;
1282         if (sbi->prev_free < FAT_START_ENT)
1283                 sbi->prev_free = FAT_START_ENT;
1284
1285         brelse(bh);
1286
1287         /* set up enough so that it can read an inode */
1288         fat_hash_init(sb);
1289         fat_ent_access_init(sb);
1290
1291         /*
1292          * The low byte of FAT's first entry must have same value with
1293          * media-field.  But in real world, too many devices is
1294          * writing wrong value.  So, removed that validity check.
1295          *
1296          * if (FAT_FIRST_ENT(sb, media) != first)
1297          */
1298
1299         error = -EINVAL;
1300         sprintf(buf, "cp%d", sbi->options.codepage);
1301         sbi->nls_disk = load_nls(buf);
1302         if (!sbi->nls_disk) {
1303                 printk(KERN_ERR "FAT: codepage %s not found\n", buf);
1304                 goto out_fail;
1305         }
1306
1307         /* FIXME: utf8 is using iocharset for upper/lower conversion */
1308         if (sbi->options.isvfat) {
1309                 sbi->nls_io = load_nls(sbi->options.iocharset);
1310                 if (!sbi->nls_io) {
1311                         printk(KERN_ERR "FAT: IO charset %s not found\n",
1312                                sbi->options.iocharset);
1313                         goto out_fail;
1314                 }
1315         }
1316
1317         error = -ENOMEM;
1318         root_inode = new_inode(sb);
1319         if (!root_inode)
1320                 goto out_fail;
1321         root_inode->i_ino = MSDOS_ROOT_INO;
1322         root_inode->i_version = 1;
1323         error = fat_read_root(root_inode);
1324         if (error < 0)
1325                 goto out_fail;
1326         error = -ENOMEM;
1327         insert_inode_hash(root_inode);
1328         sb->s_root = d_alloc_root(root_inode);
1329         if (!sb->s_root) {
1330                 printk(KERN_ERR "FAT: get root inode failed\n");
1331                 goto out_fail;
1332         }
1333
1334         return 0;
1335
1336 out_invalid:
1337         error = -EINVAL;
1338         if (!silent)
1339                 printk(KERN_INFO "VFS: Can't find a valid FAT filesystem"
1340                        " on dev %s.\n", sb->s_id);
1341
1342 out_fail:
1343         if (root_inode)
1344                 iput(root_inode);
1345         if (sbi->nls_io)
1346                 unload_nls(sbi->nls_io);
1347         if (sbi->nls_disk)
1348                 unload_nls(sbi->nls_disk);
1349         if (sbi->options.iocharset != fat_default_iocharset)
1350                 kfree(sbi->options.iocharset);
1351         sb->s_fs_info = NULL;
1352         kfree(sbi);
1353         return error;
1354 }
1355
1356 EXPORT_SYMBOL(fat_fill_super);
1357
1358 int __init fat_cache_init(void);
1359 void fat_cache_destroy(void);
1360
1361 static int __init init_fat_fs(void)
1362 {
1363         int err;
1364
1365         err = fat_cache_init();
1366         if (err)
1367                 return err;
1368
1369         err = fat_init_inodecache();
1370         if (err)
1371                 goto failed;
1372
1373         return 0;
1374
1375 failed:
1376         fat_cache_destroy();
1377         return err;
1378 }
1379
1380 static void __exit exit_fat_fs(void)
1381 {
1382         fat_cache_destroy();
1383         fat_destroy_inodecache();
1384 }
1385
1386 module_init(init_fat_fs)
1387 module_exit(exit_fat_fs)
1388
1389 MODULE_LICENSE("GPL");