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