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