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