inode.c 41.6 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
/*
 *  linux/fs/fat/inode.c
 *
 *  Written 1992,1993 by Werner Almesberger
 *  VFAT extensions by Gordon Chaffee, merged with msdos fs by Henrik Storner
 *  Rewritten for the constant inumbers support by Al Viro
 *
 *  Fixes:
 *
 *	Max Cohan: Fixed invalid FSINFO offset when info_sector is 0
 */

#include <linux/module.h>
#include <linux/init.h>
#include <linux/time.h>
#include <linux/slab.h>
#include <linux/smp_lock.h>
#include <linux/seq_file.h>
#include <linux/pagemap.h>
20
#include <linux/mpage.h>
L
Linus Torvalds 已提交
21
#include <linux/buffer_head.h>
22
#include <linux/exportfs.h>
L
Linus Torvalds 已提交
23 24 25
#include <linux/mount.h>
#include <linux/vfs.h>
#include <linux/parser.h>
26
#include <linux/uio.h>
C
Chris Mason 已提交
27
#include <linux/writeback.h>
V
Vignesh Babu BM 已提交
28
#include <linux/log2.h>
O
OGAWA Hirofumi 已提交
29
#include <linux/hash.h>
L
Linus Torvalds 已提交
30
#include <asm/unaligned.h>
O
OGAWA Hirofumi 已提交
31
#include "fat.h"
L
Linus Torvalds 已提交
32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56

#ifndef CONFIG_FAT_DEFAULT_IOCHARSET
/* if user don't select VFAT, this is undefined. */
#define CONFIG_FAT_DEFAULT_IOCHARSET	""
#endif

static int fat_default_codepage = CONFIG_FAT_DEFAULT_CODEPAGE;
static char fat_default_iocharset[] = CONFIG_FAT_DEFAULT_IOCHARSET;


static int fat_add_cluster(struct inode *inode)
{
	int err, cluster;

	err = fat_alloc_clusters(inode, &cluster, 1);
	if (err)
		return err;
	/* FIXME: this cluster should be added after data of this
	 * cluster is writed */
	err = fat_chain_add(inode, cluster, 1);
	if (err)
		fat_free_clusters(inode, cluster);
	return err;
}

57 58 59
static inline int __fat_get_block(struct inode *inode, sector_t iblock,
				  unsigned long *max_blocks,
				  struct buffer_head *bh_result, int create)
L
Linus Torvalds 已提交
60 61
{
	struct super_block *sb = inode->i_sb;
62 63
	struct msdos_sb_info *sbi = MSDOS_SB(sb);
	unsigned long mapped_blocks;
64
	sector_t phys;
65
	int err, offset;
L
Linus Torvalds 已提交
66

O
OGAWA Hirofumi 已提交
67
	err = fat_bmap(inode, iblock, &phys, &mapped_blocks, create);
L
Linus Torvalds 已提交
68 69 70 71
	if (err)
		return err;
	if (phys) {
		map_bh(bh_result, sb, phys);
72
		*max_blocks = min(mapped_blocks, *max_blocks);
L
Linus Torvalds 已提交
73 74 75 76
		return 0;
	}
	if (!create)
		return 0;
77

L
Linus Torvalds 已提交
78
	if (iblock != MSDOS_I(inode)->mmu_private >> sb->s_blocksize_bits) {
D
Denis Karpov 已提交
79
		fat_fs_error(sb, "corrupted file size (i_pos %lld, %lld)",
80
			MSDOS_I(inode)->i_pos, MSDOS_I(inode)->mmu_private);
L
Linus Torvalds 已提交
81 82
		return -EIO;
	}
83 84 85 86

	offset = (unsigned long)iblock & (sbi->sec_per_clus - 1);
	if (!offset) {
		/* TODO: multiple cluster allocation would be desirable. */
L
Linus Torvalds 已提交
87 88 89 90
		err = fat_add_cluster(inode);
		if (err)
			return err;
	}
91 92 93 94 95 96
	/* available blocks on this cluster */
	mapped_blocks = sbi->sec_per_clus - offset;

	*max_blocks = min(mapped_blocks, *max_blocks);
	MSDOS_I(inode)->mmu_private += *max_blocks << sb->s_blocksize_bits;

O
OGAWA Hirofumi 已提交
97
	err = fat_bmap(inode, iblock, &phys, &mapped_blocks, create);
L
Linus Torvalds 已提交
98 99
	if (err)
		return err;
100

101 102
	BUG_ON(!phys);
	BUG_ON(*max_blocks != mapped_blocks);
L
Linus Torvalds 已提交
103 104
	set_buffer_new(bh_result);
	map_bh(bh_result, sb, phys);
105

L
Linus Torvalds 已提交
106 107 108
	return 0;
}

109 110
static int fat_get_block(struct inode *inode, sector_t iblock,
			 struct buffer_head *bh_result, int create)
111 112
{
	struct super_block *sb = inode->i_sb;
113
	unsigned long max_blocks = bh_result->b_size >> inode->i_blkbits;
114
	int err;
115

116
	err = __fat_get_block(inode, iblock, &max_blocks, bh_result, create);
117 118 119 120 121 122
	if (err)
		return err;
	bh_result->b_size = max_blocks << sb->s_blocksize_bits;
	return 0;
}

L
Linus Torvalds 已提交
123 124 125 126 127
static int fat_writepage(struct page *page, struct writeback_control *wbc)
{
	return block_write_full_page(page, fat_get_block, wbc);
}

128 129 130 131 132 133
static int fat_writepages(struct address_space *mapping,
			  struct writeback_control *wbc)
{
	return mpage_writepages(mapping, wbc, fat_get_block);
}

L
Linus Torvalds 已提交
134 135
static int fat_readpage(struct file *file, struct page *page)
{
136 137 138 139 140 141 142
	return mpage_readpage(page, fat_get_block);
}

static int fat_readpages(struct file *file, struct address_space *mapping,
			 struct list_head *pages, unsigned nr_pages)
{
	return mpage_readpages(mapping, pages, nr_pages, fat_get_block);
L
Linus Torvalds 已提交
143 144
}

145 146 147 148 149 150 151 152 153 154
static void fat_write_failed(struct address_space *mapping, loff_t to)
{
	struct inode *inode = mapping->host;

	if (to > inode->i_size) {
		truncate_pagecache(inode, to, inode->i_size);
		fat_truncate_blocks(inode, inode->i_size);
	}
}

N
Nick Piggin 已提交
155 156 157
static int fat_write_begin(struct file *file, struct address_space *mapping,
			loff_t pos, unsigned len, unsigned flags,
			struct page **pagep, void **fsdata)
L
Linus Torvalds 已提交
158
{
159 160
	int err;

N
Nick Piggin 已提交
161
	*pagep = NULL;
162 163
	err = cont_write_begin_newtrunc(file, mapping, pos, len, flags,
				pagep, fsdata, fat_get_block,
N
Nick Piggin 已提交
164
				&MSDOS_I(mapping->host)->mmu_private);
165 166 167
	if (err < 0)
		fat_write_failed(mapping, pos + len);
	return err;
L
Linus Torvalds 已提交
168 169
}

N
Nick Piggin 已提交
170 171 172
static int fat_write_end(struct file *file, struct address_space *mapping,
			loff_t pos, unsigned len, unsigned copied,
			struct page *pagep, void *fsdata)
173
{
N
Nick Piggin 已提交
174 175 176
	struct inode *inode = mapping->host;
	int err;
	err = generic_write_end(file, mapping, pos, len, copied, pagep, fsdata);
177 178
	if (err < len)
		fat_write_failed(mapping, pos + len);
N
Nick Piggin 已提交
179
	if (!(err < 0) && !(MSDOS_I(inode)->i_attrs & ATTR_ARCH)) {
180 181 182 183 184 185 186
		inode->i_mtime = inode->i_ctime = CURRENT_TIME_SEC;
		MSDOS_I(inode)->i_attrs |= ATTR_ARCH;
		mark_inode_dirty(inode);
	}
	return err;
}

187 188 189 190 191
static ssize_t fat_direct_IO(int rw, struct kiocb *iocb,
			     const struct iovec *iov,
			     loff_t offset, unsigned long nr_segs)
{
	struct file *file = iocb->ki_filp;
192 193 194
	struct address_space *mapping = file->f_mapping;
	struct inode *inode = mapping->host;
	ssize_t ret;
195 196 197

	if (rw == WRITE) {
		/*
198
		 * FIXME: blockdev_direct_IO() doesn't use ->write_begin(),
199 200 201 202
		 * so we need to update the ->mmu_private to block boundary.
		 *
		 * But we must fill the remaining area or hole by nul for
		 * updating ->mmu_private.
203 204
		 *
		 * Return 0, and fallback to normal buffered write.
205 206 207
		 */
		loff_t size = offset + iov_length(iov, nr_segs);
		if (MSDOS_I(inode)->mmu_private < size)
208
			return 0;
209 210 211 212 213 214
	}

	/*
	 * FAT need to use the DIO_LOCKING for avoiding the race
	 * condition of fat_get_block() and ->truncate().
	 */
215 216 217 218 219 220
	ret = blockdev_direct_IO_newtrunc(rw, iocb, inode, inode->i_sb->s_bdev,
				iov, offset, nr_segs, fat_get_block, NULL);
	if (ret < 0 && (rw & WRITE))
		fat_write_failed(mapping, offset + iov_length(iov, nr_segs));

	return ret;
221 222
}

L
Linus Torvalds 已提交
223 224
static sector_t _fat_bmap(struct address_space *mapping, sector_t block)
{
O
OGAWA Hirofumi 已提交
225 226 227
	sector_t blocknr;

	/* fat_get_cluster() assumes the requested blocknr isn't truncated. */
O
OGAWA Hirofumi 已提交
228
	down_read(&mapping->host->i_alloc_sem);
O
OGAWA Hirofumi 已提交
229
	blocknr = generic_block_bmap(mapping, block, fat_get_block);
O
OGAWA Hirofumi 已提交
230
	up_read(&mapping->host->i_alloc_sem);
O
OGAWA Hirofumi 已提交
231 232

	return blocknr;
L
Linus Torvalds 已提交
233 234
}

235
static const struct address_space_operations fat_aops = {
L
Linus Torvalds 已提交
236
	.readpage	= fat_readpage,
237
	.readpages	= fat_readpages,
L
Linus Torvalds 已提交
238
	.writepage	= fat_writepage,
239
	.writepages	= fat_writepages,
L
Linus Torvalds 已提交
240
	.sync_page	= block_sync_page,
N
Nick Piggin 已提交
241 242
	.write_begin	= fat_write_begin,
	.write_end	= fat_write_end,
243
	.direct_IO	= fat_direct_IO,
L
Linus Torvalds 已提交
244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280
	.bmap		= _fat_bmap
};

/*
 * New FAT inode stuff. We do the following:
 *	a) i_ino is constant and has nothing with on-disk location.
 *	b) FAT manages its own cache of directory entries.
 *	c) *This* cache is indexed by on-disk location.
 *	d) inode has an associated directory entry, all right, but
 *		it may be unhashed.
 *	e) currently entries are stored within struct inode. That should
 *		change.
 *	f) we deal with races in the following way:
 *		1. readdir() and lookup() do FAT-dir-cache lookup.
 *		2. rename() unhashes the F-d-c entry and rehashes it in
 *			a new place.
 *		3. unlink() and rmdir() unhash F-d-c entry.
 *		4. fat_write_inode() checks whether the thing is unhashed.
 *			If it is we silently return. If it isn't we do bread(),
 *			check if the location is still valid and retry if it
 *			isn't. Otherwise we do changes.
 *		5. Spinlock is used to protect hash/unhash/location check/lookup
 *		6. fat_clear_inode() unhashes the F-d-c entry.
 *		7. lookup() and readdir() do igrab() if they find a F-d-c entry
 *			and consider negative result as cache miss.
 */

static void fat_hash_init(struct super_block *sb)
{
	struct msdos_sb_info *sbi = MSDOS_SB(sb);
	int i;

	spin_lock_init(&sbi->inode_hash_lock);
	for (i = 0; i < FAT_HASH_SIZE; i++)
		INIT_HLIST_HEAD(&sbi->inode_hashtable[i]);
}

O
OGAWA Hirofumi 已提交
281
static inline unsigned long fat_hash(loff_t i_pos)
L
Linus Torvalds 已提交
282
{
O
OGAWA Hirofumi 已提交
283
	return hash_32(i_pos, FAT_HASH_BITS);
L
Linus Torvalds 已提交
284 285 286 287
}

void fat_attach(struct inode *inode, loff_t i_pos)
{
O
OGAWA Hirofumi 已提交
288 289
	struct msdos_sb_info *sbi = MSDOS_SB(inode->i_sb);
	struct hlist_head *head = sbi->inode_hashtable + fat_hash(i_pos);
L
Linus Torvalds 已提交
290 291 292

	spin_lock(&sbi->inode_hash_lock);
	MSDOS_I(inode)->i_pos = i_pos;
O
OGAWA Hirofumi 已提交
293
	hlist_add_head(&MSDOS_I(inode)->i_fat_hash, head);
L
Linus Torvalds 已提交
294 295
	spin_unlock(&sbi->inode_hash_lock);
}
296
EXPORT_SYMBOL_GPL(fat_attach);
L
Linus Torvalds 已提交
297 298 299 300 301 302 303 304 305

void fat_detach(struct inode *inode)
{
	struct msdos_sb_info *sbi = MSDOS_SB(inode->i_sb);
	spin_lock(&sbi->inode_hash_lock);
	MSDOS_I(inode)->i_pos = 0;
	hlist_del_init(&MSDOS_I(inode)->i_fat_hash);
	spin_unlock(&sbi->inode_hash_lock);
}
306
EXPORT_SYMBOL_GPL(fat_detach);
L
Linus Torvalds 已提交
307 308 309 310

struct inode *fat_iget(struct super_block *sb, loff_t i_pos)
{
	struct msdos_sb_info *sbi = MSDOS_SB(sb);
O
OGAWA Hirofumi 已提交
311
	struct hlist_head *head = sbi->inode_hashtable + fat_hash(i_pos);
L
Linus Torvalds 已提交
312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369
	struct hlist_node *_p;
	struct msdos_inode_info *i;
	struct inode *inode = NULL;

	spin_lock(&sbi->inode_hash_lock);
	hlist_for_each_entry(i, _p, head, i_fat_hash) {
		BUG_ON(i->vfs_inode.i_sb != sb);
		if (i->i_pos != i_pos)
			continue;
		inode = igrab(&i->vfs_inode);
		if (inode)
			break;
	}
	spin_unlock(&sbi->inode_hash_lock);
	return inode;
}

static int is_exec(unsigned char *extension)
{
	unsigned char *exe_extensions = "EXECOMBAT", *walk;

	for (walk = exe_extensions; *walk; walk += 3)
		if (!strncmp(extension, walk, 3))
			return 1;
	return 0;
}

static int fat_calc_dir_size(struct inode *inode)
{
	struct msdos_sb_info *sbi = MSDOS_SB(inode->i_sb);
	int ret, fclus, dclus;

	inode->i_size = 0;
	if (MSDOS_I(inode)->i_start == 0)
		return 0;

	ret = fat_get_cluster(inode, FAT_ENT_EOF, &fclus, &dclus);
	if (ret < 0)
		return ret;
	inode->i_size = (fclus + 1) << sbi->cluster_bits;

	return 0;
}

/* doesn't deal with root inode */
static int fat_fill_inode(struct inode *inode, struct msdos_dir_entry *de)
{
	struct msdos_sb_info *sbi = MSDOS_SB(inode->i_sb);
	int error;

	MSDOS_I(inode)->i_pos = 0;
	inode->i_uid = sbi->options.fs_uid;
	inode->i_gid = sbi->options.fs_gid;
	inode->i_version++;
	inode->i_generation = get_seconds();

	if ((de->attr & ATTR_DIR) && !IS_FREE(de->name)) {
		inode->i_generation &= ~1;
O
OGAWA Hirofumi 已提交
370
		inode->i_mode = fat_make_mode(sbi, de->attr, S_IRWXUGO);
L
Linus Torvalds 已提交
371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386
		inode->i_op = sbi->dir_ops;
		inode->i_fop = &fat_dir_operations;

		MSDOS_I(inode)->i_start = le16_to_cpu(de->start);
		if (sbi->fat_bits == 32)
			MSDOS_I(inode)->i_start |= (le16_to_cpu(de->starthi) << 16);

		MSDOS_I(inode)->i_logstart = MSDOS_I(inode)->i_start;
		error = fat_calc_dir_size(inode);
		if (error < 0)
			return error;
		MSDOS_I(inode)->mmu_private = inode->i_size;

		inode->i_nlink = fat_subdirs(inode);
	} else { /* not a directory */
		inode->i_generation |= 1;
O
OGAWA Hirofumi 已提交
387 388 389
		inode->i_mode = fat_make_mode(sbi, de->attr,
			((sbi->options.showexec && !is_exec(de->name + 8))
			 ? S_IRUGO|S_IWUGO : S_IRWXUGO));
L
Linus Torvalds 已提交
390 391 392 393 394 395 396 397 398 399 400 401 402 403 404
		MSDOS_I(inode)->i_start = le16_to_cpu(de->start);
		if (sbi->fat_bits == 32)
			MSDOS_I(inode)->i_start |= (le16_to_cpu(de->starthi) << 16);

		MSDOS_I(inode)->i_logstart = MSDOS_I(inode)->i_start;
		inode->i_size = le32_to_cpu(de->size);
		inode->i_op = &fat_file_inode_operations;
		inode->i_fop = &fat_file_operations;
		inode->i_mapping->a_ops = &fat_aops;
		MSDOS_I(inode)->mmu_private = inode->i_size;
	}
	if (de->attr & ATTR_SYS) {
		if (sbi->options.sys_immutable)
			inode->i_flags |= S_IMMUTABLE;
	}
O
OGAWA Hirofumi 已提交
405 406
	fat_save_attrs(inode, de->attr);

L
Linus Torvalds 已提交
407 408
	inode->i_blocks = ((inode->i_size + (sbi->cluster_size - 1))
			   & ~((loff_t)sbi->cluster_size - 1)) >> 9;
409 410

	fat_time_fat2unix(sbi, &inode->i_mtime, de->time, de->date, 0);
L
Linus Torvalds 已提交
411
	if (sbi->options.isvfat) {
412 413 414
		fat_time_fat2unix(sbi, &inode->i_ctime, de->ctime,
				  de->cdate, de->ctime_cs);
		fat_time_fat2unix(sbi, &inode->i_atime, 0, de->adate, 0);
L
Linus Torvalds 已提交
415
	} else
S
Stephane Kardas 已提交
416
		inode->i_ctime = inode->i_atime = inode->i_mtime;
L
Linus Torvalds 已提交
417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448

	return 0;
}

struct inode *fat_build_inode(struct super_block *sb,
			struct msdos_dir_entry *de, loff_t i_pos)
{
	struct inode *inode;
	int err;

	inode = fat_iget(sb, i_pos);
	if (inode)
		goto out;
	inode = new_inode(sb);
	if (!inode) {
		inode = ERR_PTR(-ENOMEM);
		goto out;
	}
	inode->i_ino = iunique(sb, MSDOS_ROOT_INO);
	inode->i_version = 1;
	err = fat_fill_inode(inode, de);
	if (err) {
		iput(inode);
		inode = ERR_PTR(err);
		goto out;
	}
	fat_attach(inode, i_pos);
	insert_inode_hash(inode);
out:
	return inode;
}

449
EXPORT_SYMBOL_GPL(fat_build_inode);
L
Linus Torvalds 已提交
450 451 452

static void fat_delete_inode(struct inode *inode)
{
453
	truncate_inode_pages(&inode->i_data, 0);
O
OGAWA Hirofumi 已提交
454
	inode->i_size = 0;
455
	fat_truncate_blocks(inode, 0);
L
Linus Torvalds 已提交
456 457 458 459 460 461
	clear_inode(inode);
}

static void fat_clear_inode(struct inode *inode)
{
	fat_cache_inval_inode(inode);
462
	fat_detach(inode);
L
Linus Torvalds 已提交
463 464
}

465
static void fat_write_super(struct super_block *sb)
L
Linus Torvalds 已提交
466
{
467
	lock_super(sb);
468
	sb->s_dirt = 0;
L
Linus Torvalds 已提交
469 470 471

	if (!(sb->s_flags & MS_RDONLY))
		fat_clusters_flush(sb);
472
	unlock_super(sb);
473 474
}

C
Christoph Hellwig 已提交
475 476
static int fat_sync_fs(struct super_block *sb, int wait)
{
477
	int err = 0;
C
Christoph Hellwig 已提交
478

479 480 481 482 483 484 485 486
	if (sb->s_dirt) {
		lock_super(sb);
		sb->s_dirt = 0;
		err = fat_clusters_flush(sb);
		unlock_super(sb);
	}

	return err;
C
Christoph Hellwig 已提交
487 488
}

489 490 491
static void fat_put_super(struct super_block *sb)
{
	struct msdos_sb_info *sbi = MSDOS_SB(sb);
L
Linus Torvalds 已提交
492

493 494
	lock_kernel();

495 496 497
	if (sb->s_dirt)
		fat_write_super(sb);

A
Al Viro 已提交
498 499
	iput(sbi->fat_inode);

500 501 502 503
	unload_nls(sbi->nls_disk);
	unload_nls(sbi->nls_io);

	if (sbi->options.iocharset != fat_default_iocharset)
L
Linus Torvalds 已提交
504 505 506 507
		kfree(sbi->options.iocharset);

	sb->s_fs_info = NULL;
	kfree(sbi);
508 509

	unlock_kernel();
L
Linus Torvalds 已提交
510 511
}

512
static struct kmem_cache *fat_inode_cachep;
L
Linus Torvalds 已提交
513 514 515 516

static struct inode *fat_alloc_inode(struct super_block *sb)
{
	struct msdos_inode_info *ei;
517
	ei = kmem_cache_alloc(fat_inode_cachep, GFP_NOFS);
L
Linus Torvalds 已提交
518 519 520 521 522 523 524 525 526 527
	if (!ei)
		return NULL;
	return &ei->vfs_inode;
}

static void fat_destroy_inode(struct inode *inode)
{
	kmem_cache_free(fat_inode_cachep, MSDOS_I(inode));
}

528
static void init_once(void *foo)
L
Linus Torvalds 已提交
529 530 531
{
	struct msdos_inode_info *ei = (struct msdos_inode_info *)foo;

C
Christoph Lameter 已提交
532 533 534 535 536 537
	spin_lock_init(&ei->cache_lru_lock);
	ei->nr_caches = 0;
	ei->cache_valid_id = FAT_CACHE_VALID + 1;
	INIT_LIST_HEAD(&ei->cache_lru);
	INIT_HLIST_NODE(&ei->i_fat_hash);
	inode_init_once(&ei->vfs_inode);
L
Linus Torvalds 已提交
538 539 540 541 542 543
}

static int __init fat_init_inodecache(void)
{
	fat_inode_cachep = kmem_cache_create("fat_inode_cache",
					     sizeof(struct msdos_inode_info),
544 545
					     0, (SLAB_RECLAIM_ACCOUNT|
						SLAB_MEM_SPREAD),
546
					     init_once);
L
Linus Torvalds 已提交
547 548 549 550 551 552 553
	if (fat_inode_cachep == NULL)
		return -ENOMEM;
	return 0;
}

static void __exit fat_destroy_inodecache(void)
{
554
	kmem_cache_destroy(fat_inode_cachep);
L
Linus Torvalds 已提交
555 556 557 558 559 560 561 562 563
}

static int fat_remount(struct super_block *sb, int *flags, char *data)
{
	struct msdos_sb_info *sbi = MSDOS_SB(sb);
	*flags |= MS_NODIRATIME | (sbi->options.isvfat ? 0 : MS_NOATIME);
	return 0;
}

564
static int fat_statfs(struct dentry *dentry, struct kstatfs *buf)
L
Linus Torvalds 已提交
565
{
C
Coly Li 已提交
566 567 568
	struct super_block *sb = dentry->d_sb;
	struct msdos_sb_info *sbi = MSDOS_SB(sb);
	u64 id = huge_encode_dev(sb->s_bdev->bd_dev);
L
Linus Torvalds 已提交
569 570

	/* If the count of free cluster is still unknown, counts it here. */
571
	if (sbi->free_clusters == -1 || !sbi->free_clus_valid) {
572
		int err = fat_count_free_clusters(dentry->d_sb);
L
Linus Torvalds 已提交
573 574 575 576
		if (err)
			return err;
	}

577
	buf->f_type = dentry->d_sb->s_magic;
L
Linus Torvalds 已提交
578 579 580 581
	buf->f_bsize = sbi->cluster_size;
	buf->f_blocks = sbi->max_cluster - FAT_START_ENT;
	buf->f_bfree = sbi->free_clusters;
	buf->f_bavail = sbi->free_clusters;
C
Coly Li 已提交
582 583
	buf->f_fsid.val[0] = (u32)id;
	buf->f_fsid.val[1] = (u32)(id >> 32);
K
Kevin Dankwardt 已提交
584
	buf->f_namelen = sbi->options.isvfat ? FAT_LFN_LEN : 12;
L
Linus Torvalds 已提交
585 586 587 588

	return 0;
}

O
OGAWA Hirofumi 已提交
589 590 591 592 593 594 595 596 597 598 599 600 601 602
static inline loff_t fat_i_pos_read(struct msdos_sb_info *sbi,
				    struct inode *inode)
{
	loff_t i_pos;
#if BITS_PER_LONG == 32
	spin_lock(&sbi->inode_hash_lock);
#endif
	i_pos = MSDOS_I(inode)->i_pos;
#if BITS_PER_LONG == 32
	spin_unlock(&sbi->inode_hash_lock);
#endif
	return i_pos;
}

603
static int __fat_write_inode(struct inode *inode, int wait)
L
Linus Torvalds 已提交
604 605 606 607 608 609
{
	struct super_block *sb = inode->i_sb;
	struct msdos_sb_info *sbi = MSDOS_SB(sb);
	struct buffer_head *bh;
	struct msdos_dir_entry *raw_entry;
	loff_t i_pos;
610
	int err;
L
Linus Torvalds 已提交
611

O
OGAWA Hirofumi 已提交
612 613 614
	if (inode->i_ino == MSDOS_ROOT_INO)
		return 0;

L
Linus Torvalds 已提交
615
retry:
O
OGAWA Hirofumi 已提交
616 617
	i_pos = fat_i_pos_read(sbi, inode);
	if (!i_pos)
L
Linus Torvalds 已提交
618 619 620 621 622 623
		return 0;

	bh = sb_bread(sb, i_pos >> sbi->dir_per_block_bits);
	if (!bh) {
		printk(KERN_ERR "FAT: unable to read inode block "
		       "for updating (i_pos %lld)\n", i_pos);
624
		return -EIO;
L
Linus Torvalds 已提交
625 626 627 628 629 630 631 632 633 634 635 636 637 638
	}
	spin_lock(&sbi->inode_hash_lock);
	if (i_pos != MSDOS_I(inode)->i_pos) {
		spin_unlock(&sbi->inode_hash_lock);
		brelse(bh);
		goto retry;
	}

	raw_entry = &((struct msdos_dir_entry *) (bh->b_data))
	    [i_pos & (sbi->dir_per_block - 1)];
	if (S_ISDIR(inode->i_mode))
		raw_entry->size = 0;
	else
		raw_entry->size = cpu_to_le32(inode->i_size);
O
OGAWA Hirofumi 已提交
639
	raw_entry->attr = fat_make_attrs(inode);
L
Linus Torvalds 已提交
640 641
	raw_entry->start = cpu_to_le16(MSDOS_I(inode)->i_logstart);
	raw_entry->starthi = cpu_to_le16(MSDOS_I(inode)->i_logstart >> 16);
642 643
	fat_time_unix2fat(sbi, &inode->i_mtime, &raw_entry->time,
			  &raw_entry->date, NULL);
L
Linus Torvalds 已提交
644
	if (sbi->options.isvfat) {
S
Stephane Kardas 已提交
645
		__le16 atime;
646 647 648 649
		fat_time_unix2fat(sbi, &inode->i_ctime, &raw_entry->ctime,
				  &raw_entry->cdate, &raw_entry->ctime_cs);
		fat_time_unix2fat(sbi, &inode->i_atime, &atime,
				  &raw_entry->adate, NULL);
L
Linus Torvalds 已提交
650 651 652
	}
	spin_unlock(&sbi->inode_hash_lock);
	mark_buffer_dirty(bh);
653
	err = 0;
L
Linus Torvalds 已提交
654 655 656 657 658 659
	if (wait)
		err = sync_dirty_buffer(bh);
	brelse(bh);
	return err;
}

660 661 662 663 664
static int fat_write_inode(struct inode *inode, struct writeback_control *wbc)
{
	return __fat_write_inode(inode, wbc->sync_mode == WB_SYNC_ALL);
}

L
Linus Torvalds 已提交
665 666
int fat_sync_inode(struct inode *inode)
{
667
	return __fat_write_inode(inode, 1);
L
Linus Torvalds 已提交
668 669
}

670
EXPORT_SYMBOL_GPL(fat_sync_inode);
L
Linus Torvalds 已提交
671 672

static int fat_show_options(struct seq_file *m, struct vfsmount *mnt);
673
static const struct super_operations fat_sops = {
L
Linus Torvalds 已提交
674 675 676 677 678
	.alloc_inode	= fat_alloc_inode,
	.destroy_inode	= fat_destroy_inode,
	.write_inode	= fat_write_inode,
	.delete_inode	= fat_delete_inode,
	.put_super	= fat_put_super,
679
	.write_super	= fat_write_super,
C
Christoph Hellwig 已提交
680
	.sync_fs	= fat_sync_fs,
L
Linus Torvalds 已提交
681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701
	.statfs		= fat_statfs,
	.clear_inode	= fat_clear_inode,
	.remount_fs	= fat_remount,

	.show_options	= fat_show_options,
};

/*
 * a FAT file handle with fhtype 3 is
 *  0/  i_ino - for fast, reliable lookup if still in the cache
 *  1/  i_generation - to see if i_ino is still valid
 *          bit 0 == 0 iff directory
 *  2/  i_pos(8-39) - if ino has changed, but still in cache
 *  3/  i_pos(4-7)|i_logstart - to semi-verify inode found at i_pos
 *  4/  i_pos(0-3)|parent->i_logstart - maybe used to hunt for the file on disc
 *
 * Hack for NFSv2: Maximum FAT entry number is 28bits and maximum
 * i_pos is 40bits (blocknr(32) + dir offset(8)), so two 4bits
 * of i_logstart is used to store the directory entry offset.
 */

C
Christoph Hellwig 已提交
702 703
static struct dentry *fat_fh_to_dentry(struct super_block *sb,
		struct fid *fid, int fh_len, int fh_type)
L
Linus Torvalds 已提交
704 705 706
{
	struct inode *inode = NULL;
	struct dentry *result;
C
Christoph Hellwig 已提交
707 708 709 710
	u32 *fh = fid->raw;

	if (fh_len < 5 || fh_type != 3)
		return NULL;
L
Linus Torvalds 已提交
711

712 713
	inode = ilookup(sb, fh[0]);
	if (!inode || inode->i_generation != fh[1]) {
L
Linus Torvalds 已提交
714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736
		if (inode)
			iput(inode);
		inode = NULL;
	}
	if (!inode) {
		loff_t i_pos;
		int i_logstart = fh[3] & 0x0fffffff;

		i_pos = (loff_t)fh[2] << 8;
		i_pos |= ((fh[3] >> 24) & 0xf0) | (fh[4] >> 28);

		/* try 2 - see if i_pos is in F-d-c
		 * require i_logstart to be the same
		 * Will fail if you truncate and then re-write
		 */

		inode = fat_iget(sb, i_pos);
		if (inode && MSDOS_I(inode)->i_logstart != i_logstart) {
			iput(inode);
			inode = NULL;
		}
	}

737 738 739 740 741 742 743 744 745 746 747 748 749
	/*
	 * For now, do nothing if the inode is not found.
	 *
	 * What we could do is:
	 *
	 *	- follow the file starting at fh[4], and record the ".." entry,
	 *	  and the name of the fh[2] entry.
	 *	- then follow the ".." file finding the next step up.
	 *
	 * This way we build a path to the root of the tree. If this works, we
	 * lookup the path and so get this inode into the cache.  Finally try
	 * the fat_iget lookup again.  If that fails, then we are totally out
	 * of luck.  But all that is for another day
L
Linus Torvalds 已提交
750
	 */
751 752 753
	result = d_obtain_alias(inode);
	if (!IS_ERR(result))
		result->d_op = sb->s_root->d_op;
L
Linus Torvalds 已提交
754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782
	return result;
}

static int
fat_encode_fh(struct dentry *de, __u32 *fh, int *lenp, int connectable)
{
	int len = *lenp;
	struct inode *inode =  de->d_inode;
	u32 ipos_h, ipos_m, ipos_l;

	if (len < 5)
		return 255; /* no room */

	ipos_h = MSDOS_I(inode)->i_pos >> 8;
	ipos_m = (MSDOS_I(inode)->i_pos & 0xf0) << 24;
	ipos_l = (MSDOS_I(inode)->i_pos & 0x0f) << 28;
	*lenp = 5;
	fh[0] = inode->i_ino;
	fh[1] = inode->i_generation;
	fh[2] = ipos_h;
	fh[3] = ipos_m | MSDOS_I(inode)->i_logstart;
	spin_lock(&de->d_lock);
	fh[4] = ipos_l | MSDOS_I(de->d_parent->d_inode)->i_logstart;
	spin_unlock(&de->d_lock);
	return 3;
}

static struct dentry *fat_get_parent(struct dentry *child)
{
783
	struct super_block *sb = child->d_sb;
L
Linus Torvalds 已提交
784 785 786 787 788 789 790
	struct buffer_head *bh;
	struct msdos_dir_entry *de;
	loff_t i_pos;
	struct dentry *parent;
	struct inode *inode;
	int err;

791
	lock_super(sb);
L
Linus Torvalds 已提交
792 793 794 795 796 797

	err = fat_get_dotdot_entry(child->d_inode, &bh, &de, &i_pos);
	if (err) {
		parent = ERR_PTR(err);
		goto out;
	}
798
	inode = fat_build_inode(sb, de, i_pos);
L
Linus Torvalds 已提交
799
	brelse(bh);
800 801

	parent = d_obtain_alias(inode);
802 803
	if (!IS_ERR(parent))
		parent->d_op = sb->s_root->d_op;
L
Linus Torvalds 已提交
804
out:
805
	unlock_super(sb);
L
Linus Torvalds 已提交
806 807 808 809

	return parent;
}

810
static const struct export_operations fat_export_ops = {
L
Linus Torvalds 已提交
811
	.encode_fh	= fat_encode_fh,
C
Christoph Hellwig 已提交
812
	.fh_to_dentry	= fat_fh_to_dentry,
L
Linus Torvalds 已提交
813 814 815 816 817 818 819 820 821 822 823 824 825 826 827
	.get_parent	= fat_get_parent,
};

static int fat_show_options(struct seq_file *m, struct vfsmount *mnt)
{
	struct msdos_sb_info *sbi = MSDOS_SB(mnt->mnt_sb);
	struct fat_mount_options *opts = &sbi->options;
	int isvfat = opts->isvfat;

	if (opts->fs_uid != 0)
		seq_printf(m, ",uid=%u", opts->fs_uid);
	if (opts->fs_gid != 0)
		seq_printf(m, ",gid=%u", opts->fs_gid);
	seq_printf(m, ",fmask=%04o", opts->fs_fmask);
	seq_printf(m, ",dmask=%04o", opts->fs_dmask);
O
OGAWA Hirofumi 已提交
828 829
	if (opts->allow_utime)
		seq_printf(m, ",allow_utime=%04o", opts->allow_utime);
L
Linus Torvalds 已提交
830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846
	if (sbi->nls_disk)
		seq_printf(m, ",codepage=%s", sbi->nls_disk->charset);
	if (isvfat) {
		if (sbi->nls_io)
			seq_printf(m, ",iocharset=%s", sbi->nls_io->charset);

		switch (opts->shortname) {
		case VFAT_SFN_DISPLAY_WIN95 | VFAT_SFN_CREATE_WIN95:
			seq_puts(m, ",shortname=win95");
			break;
		case VFAT_SFN_DISPLAY_WINNT | VFAT_SFN_CREATE_WINNT:
			seq_puts(m, ",shortname=winnt");
			break;
		case VFAT_SFN_DISPLAY_WINNT | VFAT_SFN_CREATE_WIN95:
			seq_puts(m, ",shortname=mixed");
			break;
		case VFAT_SFN_DISPLAY_LOWER | VFAT_SFN_CREATE_WIN95:
847
			seq_puts(m, ",shortname=lower");
L
Linus Torvalds 已提交
848 849 850 851 852 853 854 855
			break;
		default:
			seq_puts(m, ",shortname=unknown");
			break;
		}
	}
	if (opts->name_check != 'n')
		seq_printf(m, ",check=%c", opts->name_check);
856 857
	if (opts->usefree)
		seq_puts(m, ",usefree");
L
Linus Torvalds 已提交
858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875
	if (opts->quiet)
		seq_puts(m, ",quiet");
	if (opts->showexec)
		seq_puts(m, ",showexec");
	if (opts->sys_immutable)
		seq_puts(m, ",sys_immutable");
	if (!isvfat) {
		if (opts->dotsOK)
			seq_puts(m, ",dotsOK=yes");
		if (opts->nocase)
			seq_puts(m, ",nocase");
	} else {
		if (opts->utf8)
			seq_puts(m, ",utf8");
		if (opts->unicode_xlate)
			seq_puts(m, ",uni_xlate");
		if (!opts->numtail)
			seq_puts(m, ",nonumtail");
O
OGAWA Hirofumi 已提交
876 877
		if (opts->rodir)
			seq_puts(m, ",rodir");
L
Linus Torvalds 已提交
878
	}
O
OGAWA Hirofumi 已提交
879
	if (opts->flush)
M
Miklos Szeredi 已提交
880
		seq_puts(m, ",flush");
J
Joe Peterson 已提交
881 882
	if (opts->tz_utc)
		seq_puts(m, ",tz=UTC");
D
Denis Karpov 已提交
883 884 885 886 887 888
	if (opts->errors == FAT_ERRORS_CONT)
		seq_puts(m, ",errors=continue");
	else if (opts->errors == FAT_ERRORS_PANIC)
		seq_puts(m, ",errors=panic");
	else
		seq_puts(m, ",errors=remount-ro");
889 890
	if (opts->discard)
		seq_puts(m, ",discard");
L
Linus Torvalds 已提交
891 892 893 894 895 896

	return 0;
}

enum {
	Opt_check_n, Opt_check_r, Opt_check_s, Opt_uid, Opt_gid,
O
OGAWA Hirofumi 已提交
897 898 899
	Opt_umask, Opt_dmask, Opt_fmask, Opt_allow_utime, Opt_codepage,
	Opt_usefree, Opt_nocase, Opt_quiet, Opt_showexec, Opt_debug,
	Opt_immutable, Opt_dots, Opt_nodots,
L
Linus Torvalds 已提交
900 901 902
	Opt_charset, Opt_shortname_lower, Opt_shortname_win95,
	Opt_shortname_winnt, Opt_shortname_mixed, Opt_utf8_no, Opt_utf8_yes,
	Opt_uni_xl_no, Opt_uni_xl_yes, Opt_nonumtail_no, Opt_nonumtail_yes,
D
Denis Karpov 已提交
903
	Opt_obsolate, Opt_flush, Opt_tz_utc, Opt_rodir, Opt_err_cont,
904
	Opt_err_panic, Opt_err_ro, Opt_discard, Opt_err,
L
Linus Torvalds 已提交
905 906
};

907
static const match_table_t fat_tokens = {
L
Linus Torvalds 已提交
908 909 910 911 912 913 914 915 916 917 918
	{Opt_check_r, "check=relaxed"},
	{Opt_check_s, "check=strict"},
	{Opt_check_n, "check=normal"},
	{Opt_check_r, "check=r"},
	{Opt_check_s, "check=s"},
	{Opt_check_n, "check=n"},
	{Opt_uid, "uid=%u"},
	{Opt_gid, "gid=%u"},
	{Opt_umask, "umask=%o"},
	{Opt_dmask, "dmask=%o"},
	{Opt_fmask, "fmask=%o"},
O
OGAWA Hirofumi 已提交
919
	{Opt_allow_utime, "allow_utime=%o"},
L
Linus Torvalds 已提交
920
	{Opt_codepage, "codepage=%u"},
921
	{Opt_usefree, "usefree"},
L
Linus Torvalds 已提交
922 923 924 925 926
	{Opt_nocase, "nocase"},
	{Opt_quiet, "quiet"},
	{Opt_showexec, "showexec"},
	{Opt_debug, "debug"},
	{Opt_immutable, "sys_immutable"},
D
Denis Karpov 已提交
927 928 929 930 931
	{Opt_flush, "flush"},
	{Opt_tz_utc, "tz=UTC"},
	{Opt_err_cont, "errors=continue"},
	{Opt_err_panic, "errors=panic"},
	{Opt_err_ro, "errors=remount-ro"},
932
	{Opt_discard, "discard"},
L
Linus Torvalds 已提交
933 934 935 936 937 938 939 940 941 942 943
	{Opt_obsolate, "conv=binary"},
	{Opt_obsolate, "conv=text"},
	{Opt_obsolate, "conv=auto"},
	{Opt_obsolate, "conv=b"},
	{Opt_obsolate, "conv=t"},
	{Opt_obsolate, "conv=a"},
	{Opt_obsolate, "fat=%u"},
	{Opt_obsolate, "blocksize=%u"},
	{Opt_obsolate, "cvf_format=%20s"},
	{Opt_obsolate, "cvf_options=%100s"},
	{Opt_obsolate, "posix"},
C
Chris Mason 已提交
944
	{Opt_err, NULL},
L
Linus Torvalds 已提交
945
};
946
static const match_table_t msdos_tokens = {
L
Linus Torvalds 已提交
947 948 949 950 951 952
	{Opt_nodots, "nodots"},
	{Opt_nodots, "dotsOK=no"},
	{Opt_dots, "dots"},
	{Opt_dots, "dotsOK=yes"},
	{Opt_err, NULL}
};
953
static const match_table_t vfat_tokens = {
L
Linus Torvalds 已提交
954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979
	{Opt_charset, "iocharset=%s"},
	{Opt_shortname_lower, "shortname=lower"},
	{Opt_shortname_win95, "shortname=win95"},
	{Opt_shortname_winnt, "shortname=winnt"},
	{Opt_shortname_mixed, "shortname=mixed"},
	{Opt_utf8_no, "utf8=0"},		/* 0 or no or false */
	{Opt_utf8_no, "utf8=no"},
	{Opt_utf8_no, "utf8=false"},
	{Opt_utf8_yes, "utf8=1"},		/* empty or 1 or yes or true */
	{Opt_utf8_yes, "utf8=yes"},
	{Opt_utf8_yes, "utf8=true"},
	{Opt_utf8_yes, "utf8"},
	{Opt_uni_xl_no, "uni_xlate=0"},		/* 0 or no or false */
	{Opt_uni_xl_no, "uni_xlate=no"},
	{Opt_uni_xl_no, "uni_xlate=false"},
	{Opt_uni_xl_yes, "uni_xlate=1"},	/* empty or 1 or yes or true */
	{Opt_uni_xl_yes, "uni_xlate=yes"},
	{Opt_uni_xl_yes, "uni_xlate=true"},
	{Opt_uni_xl_yes, "uni_xlate"},
	{Opt_nonumtail_no, "nonumtail=0"},	/* 0 or no or false */
	{Opt_nonumtail_no, "nonumtail=no"},
	{Opt_nonumtail_no, "nonumtail=false"},
	{Opt_nonumtail_yes, "nonumtail=1"},	/* empty or 1 or yes or true */
	{Opt_nonumtail_yes, "nonumtail=yes"},
	{Opt_nonumtail_yes, "nonumtail=true"},
	{Opt_nonumtail_yes, "nonumtail"},
O
OGAWA Hirofumi 已提交
980
	{Opt_rodir, "rodir"},
L
Linus Torvalds 已提交
981 982 983
	{Opt_err, NULL}
};

984
static int parse_options(char *options, int is_vfat, int silent, int *debug,
L
Linus Torvalds 已提交
985 986 987 988 989 990 991 992 993
			 struct fat_mount_options *opts)
{
	char *p;
	substring_t args[MAX_OPT_ARGS];
	int option;
	char *iocharset;

	opts->isvfat = is_vfat;

994 995
	opts->fs_uid = current_uid();
	opts->fs_gid = current_gid();
996
	opts->fs_fmask = opts->fs_dmask = current_umask();
O
OGAWA Hirofumi 已提交
997
	opts->allow_utime = -1;
L
Linus Torvalds 已提交
998 999
	opts->codepage = fat_default_codepage;
	opts->iocharset = fat_default_iocharset;
O
OGAWA Hirofumi 已提交
1000
	if (is_vfat) {
1001
		opts->shortname = VFAT_SFN_DISPLAY_WINNT|VFAT_SFN_CREATE_WIN95;
O
OGAWA Hirofumi 已提交
1002 1003
		opts->rodir = 0;
	} else {
L
Linus Torvalds 已提交
1004
		opts->shortname = 0;
O
OGAWA Hirofumi 已提交
1005 1006
		opts->rodir = 1;
	}
L
Linus Torvalds 已提交
1007 1008 1009 1010
	opts->name_check = 'n';
	opts->quiet = opts->showexec = opts->sys_immutable = opts->dotsOK =  0;
	opts->utf8 = opts->unicode_xlate = 0;
	opts->numtail = 1;
1011
	opts->usefree = opts->nocase = 0;
J
Joe Peterson 已提交
1012
	opts->tz_utc = 0;
D
Denis Karpov 已提交
1013
	opts->errors = FAT_ERRORS_RO;
L
Linus Torvalds 已提交
1014 1015 1016
	*debug = 0;

	if (!options)
O
OGAWA Hirofumi 已提交
1017
		goto out;
L
Linus Torvalds 已提交
1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040

	while ((p = strsep(&options, ",")) != NULL) {
		int token;
		if (!*p)
			continue;

		token = match_token(p, fat_tokens, args);
		if (token == Opt_err) {
			if (is_vfat)
				token = match_token(p, vfat_tokens, args);
			else
				token = match_token(p, msdos_tokens, args);
		}
		switch (token) {
		case Opt_check_s:
			opts->name_check = 's';
			break;
		case Opt_check_r:
			opts->name_check = 'r';
			break;
		case Opt_check_n:
			opts->name_check = 'n';
			break;
1041 1042 1043
		case Opt_usefree:
			opts->usefree = 1;
			break;
L
Linus Torvalds 已提交
1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089
		case Opt_nocase:
			if (!is_vfat)
				opts->nocase = 1;
			else {
				/* for backward compatibility */
				opts->shortname = VFAT_SFN_DISPLAY_WIN95
					| VFAT_SFN_CREATE_WIN95;
			}
			break;
		case Opt_quiet:
			opts->quiet = 1;
			break;
		case Opt_showexec:
			opts->showexec = 1;
			break;
		case Opt_debug:
			*debug = 1;
			break;
		case Opt_immutable:
			opts->sys_immutable = 1;
			break;
		case Opt_uid:
			if (match_int(&args[0], &option))
				return 0;
			opts->fs_uid = option;
			break;
		case Opt_gid:
			if (match_int(&args[0], &option))
				return 0;
			opts->fs_gid = option;
			break;
		case Opt_umask:
			if (match_octal(&args[0], &option))
				return 0;
			opts->fs_fmask = opts->fs_dmask = option;
			break;
		case Opt_dmask:
			if (match_octal(&args[0], &option))
				return 0;
			opts->fs_dmask = option;
			break;
		case Opt_fmask:
			if (match_octal(&args[0], &option))
				return 0;
			opts->fs_fmask = option;
			break;
O
OGAWA Hirofumi 已提交
1090 1091 1092 1093 1094
		case Opt_allow_utime:
			if (match_octal(&args[0], &option))
				return 0;
			opts->allow_utime = option & (S_IWGRP | S_IWOTH);
			break;
L
Linus Torvalds 已提交
1095 1096 1097 1098 1099
		case Opt_codepage:
			if (match_int(&args[0], &option))
				return 0;
			opts->codepage = option;
			break;
C
Chris Mason 已提交
1100 1101 1102
		case Opt_flush:
			opts->flush = 1;
			break;
J
Joe Peterson 已提交
1103 1104 1105
		case Opt_tz_utc:
			opts->tz_utc = 1;
			break;
D
Denis Karpov 已提交
1106 1107 1108 1109 1110 1111 1112 1113 1114
		case Opt_err_cont:
			opts->errors = FAT_ERRORS_CONT;
			break;
		case Opt_err_panic:
			opts->errors = FAT_ERRORS_PANIC;
			break;
		case Opt_err_ro:
			opts->errors = FAT_ERRORS_RO;
			break;
L
Linus Torvalds 已提交
1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166

		/* msdos specific */
		case Opt_dots:
			opts->dotsOK = 1;
			break;
		case Opt_nodots:
			opts->dotsOK = 0;
			break;

		/* vfat specific */
		case Opt_charset:
			if (opts->iocharset != fat_default_iocharset)
				kfree(opts->iocharset);
			iocharset = match_strdup(&args[0]);
			if (!iocharset)
				return -ENOMEM;
			opts->iocharset = iocharset;
			break;
		case Opt_shortname_lower:
			opts->shortname = VFAT_SFN_DISPLAY_LOWER
					| VFAT_SFN_CREATE_WIN95;
			break;
		case Opt_shortname_win95:
			opts->shortname = VFAT_SFN_DISPLAY_WIN95
					| VFAT_SFN_CREATE_WIN95;
			break;
		case Opt_shortname_winnt:
			opts->shortname = VFAT_SFN_DISPLAY_WINNT
					| VFAT_SFN_CREATE_WINNT;
			break;
		case Opt_shortname_mixed:
			opts->shortname = VFAT_SFN_DISPLAY_WINNT
					| VFAT_SFN_CREATE_WIN95;
			break;
		case Opt_utf8_no:		/* 0 or no or false */
			opts->utf8 = 0;
			break;
		case Opt_utf8_yes:		/* empty or 1 or yes or true */
			opts->utf8 = 1;
			break;
		case Opt_uni_xl_no:		/* 0 or no or false */
			opts->unicode_xlate = 0;
			break;
		case Opt_uni_xl_yes:		/* empty or 1 or yes or true */
			opts->unicode_xlate = 1;
			break;
		case Opt_nonumtail_no:		/* 0 or no or false */
			opts->numtail = 1;	/* negated option */
			break;
		case Opt_nonumtail_yes:		/* empty or 1 or yes or true */
			opts->numtail = 0;	/* negated option */
			break;
O
OGAWA Hirofumi 已提交
1167 1168 1169
		case Opt_rodir:
			opts->rodir = 1;
			break;
1170 1171 1172
		case Opt_discard:
			opts->discard = 1;
			break;
L
Linus Torvalds 已提交
1173 1174 1175 1176 1177 1178 1179 1180

		/* obsolete mount options */
		case Opt_obsolate:
			printk(KERN_INFO "FAT: \"%s\" option is obsolete, "
			       "not supported now\n", p);
			break;
		/* unknown option */
		default:
1181 1182 1183 1184 1185
			if (!silent) {
				printk(KERN_ERR
				       "FAT: Unrecognized mount option \"%s\" "
				       "or missing value\n", p);
			}
L
Linus Torvalds 已提交
1186 1187 1188
			return -EINVAL;
		}
	}
O
OGAWA Hirofumi 已提交
1189 1190

out:
A
Alexey Dobriyan 已提交
1191
	/* UTF-8 doesn't provide FAT semantics */
L
Linus Torvalds 已提交
1192 1193
	if (!strcmp(opts->iocharset, "utf8")) {
		printk(KERN_ERR "FAT: utf8 is not a recommended IO charset"
O
OGAWA Hirofumi 已提交
1194 1195
		       " for FAT filesystems, filesystem will be "
		       "case sensitive!\n");
L
Linus Torvalds 已提交
1196 1197
	}

O
OGAWA Hirofumi 已提交
1198 1199 1200
	/* If user doesn't specify allow_utime, it's initialized from dmask. */
	if (opts->allow_utime == (unsigned short)-1)
		opts->allow_utime = ~opts->fs_dmask & (S_IWGRP | S_IWOTH);
L
Linus Torvalds 已提交
1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217
	if (opts->unicode_xlate)
		opts->utf8 = 0;

	return 0;
}

static int fat_read_root(struct inode *inode)
{
	struct super_block *sb = inode->i_sb;
	struct msdos_sb_info *sbi = MSDOS_SB(sb);
	int error;

	MSDOS_I(inode)->i_pos = 0;
	inode->i_uid = sbi->options.fs_uid;
	inode->i_gid = sbi->options.fs_gid;
	inode->i_version++;
	inode->i_generation = 0;
O
OGAWA Hirofumi 已提交
1218
	inode->i_mode = fat_make_mode(sbi, ATTR_DIR, S_IRWXUGO);
L
Linus Torvalds 已提交
1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234
	inode->i_op = sbi->dir_ops;
	inode->i_fop = &fat_dir_operations;
	if (sbi->fat_bits == 32) {
		MSDOS_I(inode)->i_start = sbi->root_cluster;
		error = fat_calc_dir_size(inode);
		if (error < 0)
			return error;
	} else {
		MSDOS_I(inode)->i_start = 0;
		inode->i_size = sbi->dir_entries * sizeof(struct msdos_dir_entry);
	}
	inode->i_blocks = ((inode->i_size + (sbi->cluster_size - 1))
			   & ~((loff_t)sbi->cluster_size - 1)) >> 9;
	MSDOS_I(inode)->i_logstart = 0;
	MSDOS_I(inode)->mmu_private = inode->i_size;

O
OGAWA Hirofumi 已提交
1235
	fat_save_attrs(inode, ATTR_DIR);
L
Linus Torvalds 已提交
1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246
	inode->i_mtime.tv_sec = inode->i_atime.tv_sec = inode->i_ctime.tv_sec = 0;
	inode->i_mtime.tv_nsec = inode->i_atime.tv_nsec = inode->i_ctime.tv_nsec = 0;
	inode->i_nlink = fat_subdirs(inode)+2;

	return 0;
}

/*
 * Read the super block of an MS-DOS FS.
 */
int fat_fill_super(struct super_block *sb, void *data, int silent,
1247
		   const struct inode_operations *fs_dir_inode_ops, int isvfat)
L
Linus Torvalds 已提交
1248
{
A
Al Viro 已提交
1249
	struct inode *root_inode = NULL, *fat_inode = NULL;
L
Linus Torvalds 已提交
1250 1251 1252 1253 1254 1255 1256 1257 1258 1259
	struct buffer_head *bh;
	struct fat_boot_sector *b;
	struct msdos_sb_info *sbi;
	u16 logical_sector_size;
	u32 total_sectors, total_clusters, fat_clusters, rootdir_sectors;
	int debug;
	unsigned int media;
	long error;
	char buf[50];

1260 1261 1262 1263 1264 1265
	/*
	 * GFP_KERNEL is ok here, because while we do hold the
	 * supeblock lock, memory pressure can't call back into
	 * the filesystem, since we're only just about to mount
	 * it and have no inodes etc active!
	 */
1266
	sbi = kzalloc(sizeof(struct msdos_sb_info), GFP_KERNEL);
L
Linus Torvalds 已提交
1267 1268 1269 1270 1271 1272 1273 1274 1275
	if (!sbi)
		return -ENOMEM;
	sb->s_fs_info = sbi;

	sb->s_flags |= MS_NODIRATIME;
	sb->s_magic = MSDOS_SUPER_MAGIC;
	sb->s_op = &fat_sops;
	sb->s_export_op = &fat_export_ops;
	sbi->dir_ops = fs_dir_inode_ops;
1276 1277
	ratelimit_state_init(&sbi->ratelimit, DEFAULT_RATELIMIT_INTERVAL,
			     DEFAULT_RATELIMIT_BURST);
L
Linus Torvalds 已提交
1278

1279
	error = parse_options(data, isvfat, silent, &debug, &sbi->options);
L
Linus Torvalds 已提交
1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310
	if (error)
		goto out_fail;

	error = -EIO;
	sb_min_blocksize(sb, 512);
	bh = sb_bread(sb, 0);
	if (bh == NULL) {
		printk(KERN_ERR "FAT: unable to read boot sector\n");
		goto out_fail;
	}

	b = (struct fat_boot_sector *) bh->b_data;
	if (!b->reserved) {
		if (!silent)
			printk(KERN_ERR "FAT: bogus number of reserved sectors\n");
		brelse(bh);
		goto out_invalid;
	}
	if (!b->fats) {
		if (!silent)
			printk(KERN_ERR "FAT: bogus number of FAT structure\n");
		brelse(bh);
		goto out_invalid;
	}

	/*
	 * Earlier we checked here that b->secs_track and b->head are nonzero,
	 * but it turns out valid FAT filesystems can have zero there.
	 */

	media = b->media;
1311
	if (!fat_valid_media(media)) {
L
Linus Torvalds 已提交
1312 1313 1314 1315 1316 1317
		if (!silent)
			printk(KERN_ERR "FAT: invalid media value (0x%02x)\n",
			       media);
		brelse(bh);
		goto out_invalid;
	}
1318
	logical_sector_size = get_unaligned_le16(&b->sector_size);
V
Vignesh Babu BM 已提交
1319
	if (!is_power_of_2(logical_sector_size)
L
Linus Torvalds 已提交
1320
	    || (logical_sector_size < 512)
1321
	    || (logical_sector_size > 4096)) {
L
Linus Torvalds 已提交
1322 1323 1324 1325 1326 1327 1328
		if (!silent)
			printk(KERN_ERR "FAT: bogus logical sector size %u\n",
			       logical_sector_size);
		brelse(bh);
		goto out_invalid;
	}
	sbi->sec_per_clus = b->sec_per_clus;
V
Vignesh Babu BM 已提交
1329
	if (!is_power_of_2(sbi->sec_per_clus)) {
L
Linus Torvalds 已提交
1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368
		if (!silent)
			printk(KERN_ERR "FAT: bogus sectors per cluster %u\n",
			       sbi->sec_per_clus);
		brelse(bh);
		goto out_invalid;
	}

	if (logical_sector_size < sb->s_blocksize) {
		printk(KERN_ERR "FAT: logical sector size too small for device"
		       " (logical sector size = %u)\n", logical_sector_size);
		brelse(bh);
		goto out_fail;
	}
	if (logical_sector_size > sb->s_blocksize) {
		brelse(bh);

		if (!sb_set_blocksize(sb, logical_sector_size)) {
			printk(KERN_ERR "FAT: unable to set blocksize %u\n",
			       logical_sector_size);
			goto out_fail;
		}
		bh = sb_bread(sb, 0);
		if (bh == NULL) {
			printk(KERN_ERR "FAT: unable to read boot sector"
			       " (logical sector size = %lu)\n",
			       sb->s_blocksize);
			goto out_fail;
		}
		b = (struct fat_boot_sector *) bh->b_data;
	}

	sbi->cluster_size = sb->s_blocksize * sbi->sec_per_clus;
	sbi->cluster_bits = ffs(sbi->cluster_size) - 1;
	sbi->fats = b->fats;
	sbi->fat_bits = 0;		/* Don't know yet */
	sbi->fat_start = le16_to_cpu(b->reserved);
	sbi->fat_length = le16_to_cpu(b->fat_length);
	sbi->root_cluster = 0;
	sbi->free_clusters = -1;	/* Don't know yet */
1369
	sbi->free_clus_valid = 0;
L
Linus Torvalds 已提交
1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397
	sbi->prev_free = FAT_START_ENT;

	if (!sbi->fat_length && b->fat32_length) {
		struct fat_boot_fsinfo *fsinfo;
		struct buffer_head *fsinfo_bh;

		/* Must be FAT32 */
		sbi->fat_bits = 32;
		sbi->fat_length = le32_to_cpu(b->fat32_length);
		sbi->root_cluster = le32_to_cpu(b->root_cluster);

		sb->s_maxbytes = 0xffffffff;

		/* MC - if info_sector is 0, don't multiply by 0 */
		sbi->fsinfo_sector = le16_to_cpu(b->info_sector);
		if (sbi->fsinfo_sector == 0)
			sbi->fsinfo_sector = 1;

		fsinfo_bh = sb_bread(sb, sbi->fsinfo_sector);
		if (fsinfo_bh == NULL) {
			printk(KERN_ERR "FAT: bread failed, FSINFO block"
			       " (sector = %lu)\n", sbi->fsinfo_sector);
			brelse(bh);
			goto out_fail;
		}

		fsinfo = (struct fat_boot_fsinfo *)fsinfo_bh->b_data;
		if (!IS_FSINFO(fsinfo)) {
V
Vegard Nossum 已提交
1398 1399
			printk(KERN_WARNING "FAT: Invalid FSINFO signature: "
			       "0x%08x, 0x%08x (sector = %lu)\n",
L
Linus Torvalds 已提交
1400 1401 1402 1403
			       le32_to_cpu(fsinfo->signature1),
			       le32_to_cpu(fsinfo->signature2),
			       sbi->fsinfo_sector);
		} else {
1404
			if (sbi->options.usefree)
1405 1406
				sbi->free_clus_valid = 1;
			sbi->free_clusters = le32_to_cpu(fsinfo->free_clusters);
L
Linus Torvalds 已提交
1407 1408 1409 1410 1411 1412 1413 1414 1415 1416
			sbi->prev_free = le32_to_cpu(fsinfo->next_cluster);
		}

		brelse(fsinfo_bh);
	}

	sbi->dir_per_block = sb->s_blocksize / sizeof(struct msdos_dir_entry);
	sbi->dir_per_block_bits = ffs(sbi->dir_per_block) - 1;

	sbi->dir_start = sbi->fat_start + sbi->fats * sbi->fat_length;
1417
	sbi->dir_entries = get_unaligned_le16(&b->dir_entries);
L
Linus Torvalds 已提交
1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428
	if (sbi->dir_entries & (sbi->dir_per_block - 1)) {
		if (!silent)
			printk(KERN_ERR "FAT: bogus directroy-entries per block"
			       " (%u)\n", sbi->dir_entries);
		brelse(bh);
		goto out_invalid;
	}

	rootdir_sectors = sbi->dir_entries
		* sizeof(struct msdos_dir_entry) / sb->s_blocksize;
	sbi->data_start = sbi->dir_start + rootdir_sectors;
1429
	total_sectors = get_unaligned_le16(&b->sectors);
L
Linus Torvalds 已提交
1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490
	if (total_sectors == 0)
		total_sectors = le32_to_cpu(b->total_sect);

	total_clusters = (total_sectors - sbi->data_start) / sbi->sec_per_clus;

	if (sbi->fat_bits != 32)
		sbi->fat_bits = (total_clusters > MAX_FAT12) ? 16 : 12;

	/* check that FAT table does not overflow */
	fat_clusters = sbi->fat_length * sb->s_blocksize * 8 / sbi->fat_bits;
	total_clusters = min(total_clusters, fat_clusters - FAT_START_ENT);
	if (total_clusters > MAX_FAT(sb)) {
		if (!silent)
			printk(KERN_ERR "FAT: count of clusters too big (%u)\n",
			       total_clusters);
		brelse(bh);
		goto out_invalid;
	}

	sbi->max_cluster = total_clusters + FAT_START_ENT;
	/* check the free_clusters, it's not necessarily correct */
	if (sbi->free_clusters != -1 && sbi->free_clusters > total_clusters)
		sbi->free_clusters = -1;
	/* check the prev_free, it's not necessarily correct */
	sbi->prev_free %= sbi->max_cluster;
	if (sbi->prev_free < FAT_START_ENT)
		sbi->prev_free = FAT_START_ENT;

	brelse(bh);

	/* set up enough so that it can read an inode */
	fat_hash_init(sb);
	fat_ent_access_init(sb);

	/*
	 * The low byte of FAT's first entry must have same value with
	 * media-field.  But in real world, too many devices is
	 * writing wrong value.  So, removed that validity check.
	 *
	 * if (FAT_FIRST_ENT(sb, media) != first)
	 */

	error = -EINVAL;
	sprintf(buf, "cp%d", sbi->options.codepage);
	sbi->nls_disk = load_nls(buf);
	if (!sbi->nls_disk) {
		printk(KERN_ERR "FAT: codepage %s not found\n", buf);
		goto out_fail;
	}

	/* FIXME: utf8 is using iocharset for upper/lower conversion */
	if (sbi->options.isvfat) {
		sbi->nls_io = load_nls(sbi->options.iocharset);
		if (!sbi->nls_io) {
			printk(KERN_ERR "FAT: IO charset %s not found\n",
			       sbi->options.iocharset);
			goto out_fail;
		}
	}

	error = -ENOMEM;
A
Al Viro 已提交
1491 1492 1493 1494 1495
	fat_inode = new_inode(sb);
	if (!fat_inode)
		goto out_fail;
	MSDOS_I(fat_inode)->i_pos = 0;
	sbi->fat_inode = fat_inode;
L
Linus Torvalds 已提交
1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520
	root_inode = new_inode(sb);
	if (!root_inode)
		goto out_fail;
	root_inode->i_ino = MSDOS_ROOT_INO;
	root_inode->i_version = 1;
	error = fat_read_root(root_inode);
	if (error < 0)
		goto out_fail;
	error = -ENOMEM;
	insert_inode_hash(root_inode);
	sb->s_root = d_alloc_root(root_inode);
	if (!sb->s_root) {
		printk(KERN_ERR "FAT: get root inode failed\n");
		goto out_fail;
	}

	return 0;

out_invalid:
	error = -EINVAL;
	if (!silent)
		printk(KERN_INFO "VFS: Can't find a valid FAT filesystem"
		       " on dev %s.\n", sb->s_id);

out_fail:
A
Al Viro 已提交
1521 1522
	if (fat_inode)
		iput(fat_inode);
L
Linus Torvalds 已提交
1523 1524
	if (root_inode)
		iput(root_inode);
O
OGAWA Hirofumi 已提交
1525 1526
	unload_nls(sbi->nls_io);
	unload_nls(sbi->nls_disk);
L
Linus Torvalds 已提交
1527 1528 1529 1530 1531 1532 1533
	if (sbi->options.iocharset != fat_default_iocharset)
		kfree(sbi->options.iocharset);
	sb->s_fs_info = NULL;
	kfree(sbi);
	return error;
}

1534
EXPORT_SYMBOL_GPL(fat_fill_super);
L
Linus Torvalds 已提交
1535

C
Chris Mason 已提交
1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577
/*
 * helper function for fat_flush_inodes.  This writes both the inode
 * and the file data blocks, waiting for in flight data blocks before
 * the start of the call.  It does not wait for any io started
 * during the call
 */
static int writeback_inode(struct inode *inode)
{

	int ret;
	struct address_space *mapping = inode->i_mapping;
	struct writeback_control wbc = {
	       .sync_mode = WB_SYNC_NONE,
	      .nr_to_write = 0,
	};
	/* if we used WB_SYNC_ALL, sync_inode waits for the io for the
	* inode to finish.  So WB_SYNC_NONE is sent down to sync_inode
	* and filemap_fdatawrite is used for the data blocks
	*/
	ret = sync_inode(inode, &wbc);
	if (!ret)
	       ret = filemap_fdatawrite(mapping);
	return ret;
}

/*
 * write data and metadata corresponding to i1 and i2.  The io is
 * started but we do not wait for any of it to finish.
 *
 * filemap_flush is used for the block device, so if there is a dirty
 * page for a block already in flight, we will not wait and start the
 * io over again
 */
int fat_flush_inodes(struct super_block *sb, struct inode *i1, struct inode *i2)
{
	int ret = 0;
	if (!MSDOS_SB(sb)->options.flush)
		return 0;
	if (i1)
		ret = writeback_inode(i1);
	if (!ret && i2)
		ret = writeback_inode(i2);
1578
	if (!ret) {
C
Chris Mason 已提交
1579 1580 1581 1582 1583 1584 1585
		struct address_space *mapping = sb->s_bdev->bd_inode->i_mapping;
		ret = filemap_flush(mapping);
	}
	return ret;
}
EXPORT_SYMBOL_GPL(fat_flush_inodes);

L
Linus Torvalds 已提交
1586 1587
static int __init init_fat_fs(void)
{
1588
	int err;
L
Linus Torvalds 已提交
1589

1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602
	err = fat_cache_init();
	if (err)
		return err;

	err = fat_init_inodecache();
	if (err)
		goto failed;

	return 0;

failed:
	fat_cache_destroy();
	return err;
L
Linus Torvalds 已提交
1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614
}

static void __exit exit_fat_fs(void)
{
	fat_cache_destroy();
	fat_destroy_inodecache();
}

module_init(init_fat_fs)
module_exit(exit_fat_fs)

MODULE_LICENSE("GPL");