inode.c 50.0 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14
/*
 *  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/pagemap.h>
15
#include <linux/mpage.h>
L
Linus Torvalds 已提交
16
#include <linux/vfs.h>
17
#include <linux/seq_file.h>
L
Linus Torvalds 已提交
18
#include <linux/parser.h>
19
#include <linux/uio.h>
20
#include <linux/blkdev.h>
21
#include <linux/backing-dev.h>
L
Linus Torvalds 已提交
22
#include <asm/unaligned.h>
O
OGAWA Hirofumi 已提交
23
#include "fat.h"
L
Linus Torvalds 已提交
24 25 26 27 28 29

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

30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55
#define KB_IN_SECTORS 2

/*
 * A deserialized copy of the on-disk structure laid out in struct
 * fat_boot_sector.
 */
struct fat_bios_param_block {
	u16	fat_sector_size;
	u8	fat_sec_per_clus;
	u16	fat_reserved;
	u8	fat_fats;
	u16	fat_dir_entries;
	u16	fat_sectors;
	u16	fat_fat_length;
	u32	fat_total_sect;

	u8	fat16_state;
	u32	fat16_vol_id;

	u32	fat32_length;
	u32	fat32_root_cluster;
	u16	fat32_info_sector;
	u8	fat32_state;
	u32	fat32_vol_id;
};

L
Linus Torvalds 已提交
56 57 58
static int fat_default_codepage = CONFIG_FAT_DEFAULT_CODEPAGE;
static char fat_default_iocharset[] = CONFIG_FAT_DEFAULT_IOCHARSET;

59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94
static struct fat_floppy_defaults {
	unsigned nr_sectors;
	unsigned sec_per_clus;
	unsigned dir_entries;
	unsigned media;
	unsigned fat_length;
} floppy_defaults[] = {
{
	.nr_sectors = 160 * KB_IN_SECTORS,
	.sec_per_clus = 1,
	.dir_entries = 64,
	.media = 0xFE,
	.fat_length = 1,
},
{
	.nr_sectors = 180 * KB_IN_SECTORS,
	.sec_per_clus = 1,
	.dir_entries = 64,
	.media = 0xFC,
	.fat_length = 2,
},
{
	.nr_sectors = 320 * KB_IN_SECTORS,
	.sec_per_clus = 2,
	.dir_entries = 112,
	.media = 0xFF,
	.fat_length = 1,
},
{
	.nr_sectors = 360 * KB_IN_SECTORS,
	.sec_per_clus = 2,
	.dir_entries = 112,
	.media = 0xFD,
	.fat_length = 2,
},
};
L
Linus Torvalds 已提交
95

N
Namjae Jeon 已提交
96
int fat_add_cluster(struct inode *inode)
L
Linus Torvalds 已提交
97 98 99 100 101 102 103 104 105 106 107 108 109 110
{
	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;
}

111 112 113
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 已提交
114 115
{
	struct super_block *sb = inode->i_sb;
116 117
	struct msdos_sb_info *sbi = MSDOS_SB(sb);
	unsigned long mapped_blocks;
118
	sector_t phys, last_block;
119
	int err, offset;
L
Linus Torvalds 已提交
120

121
	err = fat_bmap(inode, iblock, &phys, &mapped_blocks, create, false);
L
Linus Torvalds 已提交
122 123 124 125
	if (err)
		return err;
	if (phys) {
		map_bh(bh_result, sb, phys);
126
		*max_blocks = min(mapped_blocks, *max_blocks);
L
Linus Torvalds 已提交
127 128 129 130
		return 0;
	}
	if (!create)
		return 0;
131

L
Linus Torvalds 已提交
132
	if (iblock != MSDOS_I(inode)->mmu_private >> sb->s_blocksize_bits) {
D
Denis Karpov 已提交
133
		fat_fs_error(sb, "corrupted file size (i_pos %lld, %lld)",
134
			MSDOS_I(inode)->i_pos, MSDOS_I(inode)->mmu_private);
L
Linus Torvalds 已提交
135 136
		return -EIO;
	}
137

138
	last_block = inode->i_blocks >> (sb->s_blocksize_bits - 9);
139
	offset = (unsigned long)iblock & (sbi->sec_per_clus - 1);
140 141 142 143 144 145
	/*
	 * allocate a cluster according to the following.
	 * 1) no more available blocks
	 * 2) not part of fallocate region
	 */
	if (!offset && !(iblock < last_block)) {
146
		/* TODO: multiple cluster allocation would be desirable. */
L
Linus Torvalds 已提交
147 148 149 150
		err = fat_add_cluster(inode);
		if (err)
			return err;
	}
151 152 153 154 155 156
	/* 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;

157
	err = fat_bmap(inode, iblock, &phys, &mapped_blocks, create, false);
L
Linus Torvalds 已提交
158 159
	if (err)
		return err;
160

161 162
	BUG_ON(!phys);
	BUG_ON(*max_blocks != mapped_blocks);
L
Linus Torvalds 已提交
163 164
	set_buffer_new(bh_result);
	map_bh(bh_result, sb, phys);
165

L
Linus Torvalds 已提交
166 167 168
	return 0;
}

169 170
static int fat_get_block(struct inode *inode, sector_t iblock,
			 struct buffer_head *bh_result, int create)
171 172
{
	struct super_block *sb = inode->i_sb;
173
	unsigned long max_blocks = bh_result->b_size >> inode->i_blkbits;
174
	int err;
175

176
	err = __fat_get_block(inode, iblock, &max_blocks, bh_result, create);
177 178 179 180 181 182
	if (err)
		return err;
	bh_result->b_size = max_blocks << sb->s_blocksize_bits;
	return 0;
}

L
Linus Torvalds 已提交
183 184 185 186 187
static int fat_writepage(struct page *page, struct writeback_control *wbc)
{
	return block_write_full_page(page, fat_get_block, wbc);
}

188 189 190 191 192 193
static int fat_writepages(struct address_space *mapping,
			  struct writeback_control *wbc)
{
	return mpage_writepages(mapping, wbc, fat_get_block);
}

L
Linus Torvalds 已提交
194 195
static int fat_readpage(struct file *file, struct page *page)
{
196 197 198 199 200 201 202
	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 已提交
203 204
}

205 206 207 208 209
static void fat_write_failed(struct address_space *mapping, loff_t to)
{
	struct inode *inode = mapping->host;

	if (to > inode->i_size) {
210
		truncate_pagecache(inode, inode->i_size);
211 212 213 214
		fat_truncate_blocks(inode, inode->i_size);
	}
}

N
Nick Piggin 已提交
215 216 217
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 已提交
218
{
219 220
	int err;

N
Nick Piggin 已提交
221
	*pagep = NULL;
222
	err = cont_write_begin(file, mapping, pos, len, flags,
223
				pagep, fsdata, fat_get_block,
N
Nick Piggin 已提交
224
				&MSDOS_I(mapping->host)->mmu_private);
225 226 227
	if (err < 0)
		fat_write_failed(mapping, pos + len);
	return err;
L
Linus Torvalds 已提交
228 229
}

N
Nick Piggin 已提交
230 231 232
static int fat_write_end(struct file *file, struct address_space *mapping,
			loff_t pos, unsigned len, unsigned copied,
			struct page *pagep, void *fsdata)
233
{
N
Nick Piggin 已提交
234 235 236
	struct inode *inode = mapping->host;
	int err;
	err = generic_write_end(file, mapping, pos, len, copied, pagep, fsdata);
237 238
	if (err < len)
		fat_write_failed(mapping, pos + len);
N
Nick Piggin 已提交
239
	if (!(err < 0) && !(MSDOS_I(inode)->i_attrs & ATTR_ARCH)) {
240 241 242 243 244 245 246
		inode->i_mtime = inode->i_ctime = CURRENT_TIME_SEC;
		MSDOS_I(inode)->i_attrs |= ATTR_ARCH;
		mark_inode_dirty(inode);
	}
	return err;
}

247
static ssize_t fat_direct_IO(struct kiocb *iocb, struct iov_iter *iter)
248 249
{
	struct file *file = iocb->ki_filp;
250 251
	struct address_space *mapping = file->f_mapping;
	struct inode *inode = mapping->host;
252
	size_t count = iov_iter_count(iter);
253
	loff_t offset = iocb->ki_pos;
254
	ssize_t ret;
255

256
	if (iov_iter_rw(iter) == WRITE) {
257
		/*
258
		 * FIXME: blockdev_direct_IO() doesn't use ->write_begin(),
259 260 261 262
		 * 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.
263 264
		 *
		 * Return 0, and fallback to normal buffered write.
265
		 */
266
		loff_t size = offset + count;
267
		if (MSDOS_I(inode)->mmu_private < size)
268
			return 0;
269 270 271 272 273 274
	}

	/*
	 * FAT need to use the DIO_LOCKING for avoiding the race
	 * condition of fat_get_block() and ->truncate().
	 */
275
	ret = blockdev_direct_IO(iocb, inode, iter, fat_get_block);
276
	if (ret < 0 && iov_iter_rw(iter) == WRITE)
277
		fat_write_failed(mapping, offset + count);
278 279

	return ret;
280 281
}

282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306
static int fat_get_block_bmap(struct inode *inode, sector_t iblock,
		struct buffer_head *bh_result, int create)
{
	struct super_block *sb = inode->i_sb;
	unsigned long max_blocks = bh_result->b_size >> inode->i_blkbits;
	int err;
	sector_t bmap;
	unsigned long mapped_blocks;

	BUG_ON(create != 0);

	err = fat_bmap(inode, iblock, &bmap, &mapped_blocks, create, true);
	if (err)
		return err;

	if (bmap) {
		map_bh(bh_result, sb, bmap);
		max_blocks = min(mapped_blocks, max_blocks);
	}

	bh_result->b_size = max_blocks << sb->s_blocksize_bits;

	return 0;
}

L
Linus Torvalds 已提交
307 308
static sector_t _fat_bmap(struct address_space *mapping, sector_t block)
{
O
OGAWA Hirofumi 已提交
309 310 311
	sector_t blocknr;

	/* fat_get_cluster() assumes the requested blocknr isn't truncated. */
312
	down_read(&MSDOS_I(mapping->host)->truncate_lock);
313
	blocknr = generic_block_bmap(mapping, block, fat_get_block_bmap);
314
	up_read(&MSDOS_I(mapping->host)->truncate_lock);
O
OGAWA Hirofumi 已提交
315 316

	return blocknr;
L
Linus Torvalds 已提交
317 318
}

319 320 321 322 323 324 325 326 327 328 329 330
/*
 * fat_block_truncate_page() zeroes out a mapping from file offset `from'
 * up to the end of the block which corresponds to `from'.
 * This is required during truncate to physically zeroout the tail end
 * of that block so it doesn't yield old data if the file is later grown.
 * Also, avoid causing failure from fsx for cases of "data past EOF"
 */
int fat_block_truncate_page(struct inode *inode, loff_t from)
{
	return block_truncate_page(inode->i_mapping, from, fat_get_block);
}

331
static const struct address_space_operations fat_aops = {
L
Linus Torvalds 已提交
332
	.readpage	= fat_readpage,
333
	.readpages	= fat_readpages,
L
Linus Torvalds 已提交
334
	.writepage	= fat_writepage,
335
	.writepages	= fat_writepages,
N
Nick Piggin 已提交
336 337
	.write_begin	= fat_write_begin,
	.write_end	= fat_write_end,
338
	.direct_IO	= fat_direct_IO,
L
Linus Torvalds 已提交
339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360
	.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
A
Al Viro 已提交
361
 *		6. fat_evict_inode() unhashes the F-d-c entry.
L
Linus Torvalds 已提交
362 363 364 365 366 367 368 369 370 371 372 373 374 375
 *		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 已提交
376
static inline unsigned long fat_hash(loff_t i_pos)
L
Linus Torvalds 已提交
377
{
O
OGAWA Hirofumi 已提交
378
	return hash_32(i_pos, FAT_HASH_BITS);
L
Linus Torvalds 已提交
379 380
}

381 382 383 384 385 386 387 388 389 390
static void dir_hash_init(struct super_block *sb)
{
	struct msdos_sb_info *sbi = MSDOS_SB(sb);
	int i;

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

L
Linus Torvalds 已提交
391 392
void fat_attach(struct inode *inode, loff_t i_pos)
{
O
OGAWA Hirofumi 已提交
393
	struct msdos_sb_info *sbi = MSDOS_SB(inode->i_sb);
L
Linus Torvalds 已提交
394

395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416
	if (inode->i_ino != MSDOS_ROOT_INO) {
		struct hlist_head *head =   sbi->inode_hashtable
					  + fat_hash(i_pos);

		spin_lock(&sbi->inode_hash_lock);
		MSDOS_I(inode)->i_pos = i_pos;
		hlist_add_head(&MSDOS_I(inode)->i_fat_hash, head);
		spin_unlock(&sbi->inode_hash_lock);
	}

	/* If NFS support is enabled, cache the mapping of start cluster
	 * to directory inode. This is used during reconnection of
	 * dentries to the filesystem root.
	 */
	if (S_ISDIR(inode->i_mode) && sbi->options.nfs) {
		struct hlist_head *d_head = sbi->dir_hashtable;
		d_head += fat_dir_hash(MSDOS_I(inode)->i_logstart);

		spin_lock(&sbi->dir_hash_lock);
		hlist_add_head(&MSDOS_I(inode)->i_dir_hash, d_head);
		spin_unlock(&sbi->dir_hash_lock);
	}
L
Linus Torvalds 已提交
417
}
418
EXPORT_SYMBOL_GPL(fat_attach);
L
Linus Torvalds 已提交
419 420 421 422 423 424 425 426

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);
427 428 429 430 431 432

	if (S_ISDIR(inode->i_mode) && sbi->options.nfs) {
		spin_lock(&sbi->dir_hash_lock);
		hlist_del_init(&MSDOS_I(inode)->i_dir_hash);
		spin_unlock(&sbi->dir_hash_lock);
	}
L
Linus Torvalds 已提交
433
}
434
EXPORT_SYMBOL_GPL(fat_detach);
L
Linus Torvalds 已提交
435 436 437 438

struct inode *fat_iget(struct super_block *sb, loff_t i_pos)
{
	struct msdos_sb_info *sbi = MSDOS_SB(sb);
O
OGAWA Hirofumi 已提交
439
	struct hlist_head *head = sbi->inode_hashtable + fat_hash(i_pos);
L
Linus Torvalds 已提交
440 441 442 443
	struct msdos_inode_info *i;
	struct inode *inode = NULL;

	spin_lock(&sbi->inode_hash_lock);
444
	hlist_for_each_entry(i, head, i_fat_hash) {
L
Linus Torvalds 已提交
445 446 447 448 449 450 451 452 453 454 455 456 457
		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)
{
458
	unsigned char exe_extensions[] = "EXECOMBAT", *walk;
L
Linus Torvalds 已提交
459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482

	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;
}

483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500
static int fat_validate_dir(struct inode *dir)
{
	struct super_block *sb = dir->i_sb;

	if (dir->i_nlink < 2) {
		/* Directory should have "."/".." entries at least. */
		fat_fs_error(sb, "corrupted directory (invalid entries)");
		return -EIO;
	}
	if (MSDOS_I(dir)->i_start == 0 ||
	    MSDOS_I(dir)->i_start == MSDOS_SB(sb)->root_cluster) {
		/* Directory should point valid cluster. */
		fat_fs_error(sb, "corrupted directory (invalid i_start)");
		return -EIO;
	}
	return 0;
}

L
Linus Torvalds 已提交
501
/* doesn't deal with root inode */
502
int fat_fill_inode(struct inode *inode, struct msdos_dir_entry *de)
L
Linus Torvalds 已提交
503 504 505 506 507 508 509 510 511 512 513 514
{
	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 已提交
515
		inode->i_mode = fat_make_mode(sbi, de->attr, S_IRWXUGO);
L
Linus Torvalds 已提交
516 517 518
		inode->i_op = sbi->dir_ops;
		inode->i_fop = &fat_dir_operations;

519
		MSDOS_I(inode)->i_start = fat_get_start(sbi, de);
L
Linus Torvalds 已提交
520 521 522 523 524 525
		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;

M
Miklos Szeredi 已提交
526
		set_nlink(inode, fat_subdirs(inode));
527 528 529 530

		error = fat_validate_dir(inode);
		if (error < 0)
			return error;
L
Linus Torvalds 已提交
531 532
	} else { /* not a directory */
		inode->i_generation |= 1;
O
OGAWA Hirofumi 已提交
533 534 535
		inode->i_mode = fat_make_mode(sbi, de->attr,
			((sbi->options.showexec && !is_exec(de->name + 8))
			 ? S_IRUGO|S_IWUGO : S_IRWXUGO));
536
		MSDOS_I(inode)->i_start = fat_get_start(sbi, de);
L
Linus Torvalds 已提交
537 538 539 540 541 542 543 544 545 546 547 548

		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 已提交
549 550
	fat_save_attrs(inode, de->attr);

L
Linus Torvalds 已提交
551 552
	inode->i_blocks = ((inode->i_size + (sbi->cluster_size - 1))
			   & ~((loff_t)sbi->cluster_size - 1)) >> 9;
553 554

	fat_time_fat2unix(sbi, &inode->i_mtime, de->time, de->date, 0);
L
Linus Torvalds 已提交
555
	if (sbi->options.isvfat) {
556 557 558
		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 已提交
559
	} else
S
Stephane Kardas 已提交
560
		inode->i_ctime = inode->i_atime = inode->i_mtime;
L
Linus Torvalds 已提交
561 562 563 564

	return 0;
}

565 566 567 568 569 570 571 572 573 574 575 576
static inline void fat_lock_build_inode(struct msdos_sb_info *sbi)
{
	if (sbi->options.nfs == FAT_NFS_NOSTALE_RO)
		mutex_lock(&sbi->nfs_build_inode_lock);
}

static inline void fat_unlock_build_inode(struct msdos_sb_info *sbi)
{
	if (sbi->options.nfs == FAT_NFS_NOSTALE_RO)
		mutex_unlock(&sbi->nfs_build_inode_lock);
}

L
Linus Torvalds 已提交
577 578 579 580 581 582
struct inode *fat_build_inode(struct super_block *sb,
			struct msdos_dir_entry *de, loff_t i_pos)
{
	struct inode *inode;
	int err;

583
	fat_lock_build_inode(MSDOS_SB(sb));
L
Linus Torvalds 已提交
584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602
	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:
603
	fat_unlock_build_inode(MSDOS_SB(sb));
L
Linus Torvalds 已提交
604 605 606
	return inode;
}

607
EXPORT_SYMBOL_GPL(fat_build_inode);
L
Linus Torvalds 已提交
608

N
Namjae Jeon 已提交
609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636
static int __fat_write_inode(struct inode *inode, int wait);

static void fat_free_eofblocks(struct inode *inode)
{
	/* Release unwritten fallocated blocks on inode eviction. */
	if ((inode->i_blocks << 9) >
			round_up(MSDOS_I(inode)->mmu_private,
				MSDOS_SB(inode->i_sb)->cluster_size)) {
		int err;

		fat_truncate_blocks(inode, MSDOS_I(inode)->mmu_private);
		/* Fallocate results in updating the i_start/iogstart
		 * for the zero byte file. So, make it return to
		 * original state during evict and commit it to avoid
		 * any corruption on the next access to the cluster
		 * chain for the file.
		 */
		err = __fat_write_inode(inode, inode_needs_sync(inode));
		if (err) {
			fat_msg(inode->i_sb, KERN_WARNING, "Failed to "
					"update on disk inode for unused "
					"fallocated blocks, inode could be "
					"corrupted. Please run fsck");
		}

	}
}

A
Al Viro 已提交
637
static void fat_evict_inode(struct inode *inode)
L
Linus Torvalds 已提交
638
{
639
	truncate_inode_pages_final(&inode->i_data);
A
Al Viro 已提交
640 641 642
	if (!inode->i_nlink) {
		inode->i_size = 0;
		fat_truncate_blocks(inode, 0);
N
Namjae Jeon 已提交
643 644 645
	} else
		fat_free_eofblocks(inode);

A
Al Viro 已提交
646
	invalidate_inode_buffers(inode);
647
	clear_inode(inode);
L
Linus Torvalds 已提交
648
	fat_cache_inval_inode(inode);
649
	fat_detach(inode);
L
Linus Torvalds 已提交
650 651
}

652 653 654 655 656
static void fat_set_state(struct super_block *sb,
			unsigned int set, unsigned int force)
{
	struct buffer_head *bh;
	struct fat_boot_sector *b;
657
	struct msdos_sb_info *sbi = MSDOS_SB(sb);
658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698

	/* do not change any thing if mounted read only */
	if ((sb->s_flags & MS_RDONLY) && !force)
		return;

	/* do not change state if fs was dirty */
	if (sbi->dirty) {
		/* warn only on set (mount). */
		if (set)
			fat_msg(sb, KERN_WARNING, "Volume was not properly "
				"unmounted. Some data may be corrupt. "
				"Please run fsck.");
		return;
	}

	bh = sb_bread(sb, 0);
	if (bh == NULL) {
		fat_msg(sb, KERN_ERR, "unable to read boot sector "
			"to mark fs as dirty");
		return;
	}

	b = (struct fat_boot_sector *) bh->b_data;

	if (sbi->fat_bits == 32) {
		if (set)
			b->fat32.state |= FAT_STATE_DIRTY;
		else
			b->fat32.state &= ~FAT_STATE_DIRTY;
	} else /* fat 16 and 12 */ {
		if (set)
			b->fat16.state |= FAT_STATE_DIRTY;
		else
			b->fat16.state &= ~FAT_STATE_DIRTY;
	}

	mark_buffer_dirty(bh);
	sync_dirty_buffer(bh);
	brelse(bh);
}

699 700 701 702 703 704 705 706 707 708
static void delayed_free(struct rcu_head *p)
{
	struct msdos_sb_info *sbi = container_of(p, struct msdos_sb_info, rcu);
	unload_nls(sbi->nls_disk);
	unload_nls(sbi->nls_io);
	if (sbi->options.iocharset != fat_default_iocharset)
		kfree(sbi->options.iocharset);
	kfree(sbi);
}

709 710 711
static void fat_put_super(struct super_block *sb)
{
	struct msdos_sb_info *sbi = MSDOS_SB(sb);
L
Linus Torvalds 已提交
712

713 714
	fat_set_state(sb, 0, 0);

715
	iput(sbi->fsinfo_inode);
A
Al Viro 已提交
716 717
	iput(sbi->fat_inode);

718
	call_rcu(&sbi->rcu, delayed_free);
L
Linus Torvalds 已提交
719 720
}

721
static struct kmem_cache *fat_inode_cachep;
L
Linus Torvalds 已提交
722 723 724 725

static struct inode *fat_alloc_inode(struct super_block *sb)
{
	struct msdos_inode_info *ei;
726
	ei = kmem_cache_alloc(fat_inode_cachep, GFP_NOFS);
L
Linus Torvalds 已提交
727 728
	if (!ei)
		return NULL;
729 730

	init_rwsem(&ei->truncate_lock);
L
Linus Torvalds 已提交
731 732 733
	return &ei->vfs_inode;
}

N
Nick Piggin 已提交
734
static void fat_i_callback(struct rcu_head *head)
L
Linus Torvalds 已提交
735
{
N
Nick Piggin 已提交
736
	struct inode *inode = container_of(head, struct inode, i_rcu);
L
Linus Torvalds 已提交
737 738 739
	kmem_cache_free(fat_inode_cachep, MSDOS_I(inode));
}

N
Nick Piggin 已提交
740 741 742 743 744
static void fat_destroy_inode(struct inode *inode)
{
	call_rcu(&inode->i_rcu, fat_i_callback);
}

745
static void init_once(void *foo)
L
Linus Torvalds 已提交
746 747 748
{
	struct msdos_inode_info *ei = (struct msdos_inode_info *)foo;

C
Christoph Lameter 已提交
749 750 751 752 753
	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);
754
	INIT_HLIST_NODE(&ei->i_dir_hash);
C
Christoph Lameter 已提交
755
	inode_init_once(&ei->vfs_inode);
L
Linus Torvalds 已提交
756 757 758 759 760 761
}

static int __init fat_init_inodecache(void)
{
	fat_inode_cachep = kmem_cache_create("fat_inode_cache",
					     sizeof(struct msdos_inode_info),
762
					     0, (SLAB_RECLAIM_ACCOUNT|
763
						SLAB_MEM_SPREAD|SLAB_ACCOUNT),
764
					     init_once);
L
Linus Torvalds 已提交
765 766 767 768 769 770 771
	if (fat_inode_cachep == NULL)
		return -ENOMEM;
	return 0;
}

static void __exit fat_destroy_inodecache(void)
{
772 773 774 775 776
	/*
	 * Make sure all delayed rcu free inodes are flushed before we
	 * destroy cache.
	 */
	rcu_barrier();
777
	kmem_cache_destroy(fat_inode_cachep);
L
Linus Torvalds 已提交
778 779 780 781
}

static int fat_remount(struct super_block *sb, int *flags, char *data)
{
782
	int new_rdonly;
L
Linus Torvalds 已提交
783 784
	struct msdos_sb_info *sbi = MSDOS_SB(sb);
	*flags |= MS_NODIRATIME | (sbi->options.isvfat ? 0 : MS_NOATIME);
785

786 787
	sync_filesystem(sb);

788 789 790 791 792 793 794 795
	/* make sure we update state on remount. */
	new_rdonly = *flags & MS_RDONLY;
	if (new_rdonly != (sb->s_flags & MS_RDONLY)) {
		if (new_rdonly)
			fat_set_state(sb, 0, 0);
		else
			fat_set_state(sb, 1, 1);
	}
L
Linus Torvalds 已提交
796 797 798
	return 0;
}

799
static int fat_statfs(struct dentry *dentry, struct kstatfs *buf)
L
Linus Torvalds 已提交
800
{
C
Coly Li 已提交
801 802 803
	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 已提交
804 805

	/* If the count of free cluster is still unknown, counts it here. */
806
	if (sbi->free_clusters == -1 || !sbi->free_clus_valid) {
807
		int err = fat_count_free_clusters(dentry->d_sb);
L
Linus Torvalds 已提交
808 809 810 811
		if (err)
			return err;
	}

812
	buf->f_type = dentry->d_sb->s_magic;
L
Linus Torvalds 已提交
813 814 815 816
	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 已提交
817 818
	buf->f_fsid.val[0] = (u32)id;
	buf->f_fsid.val[1] = (u32)(id >> 32);
O
OGAWA Hirofumi 已提交
819 820
	buf->f_namelen =
		(sbi->options.isvfat ? FAT_LFN_LEN : 12) * NLS_MAX_CHARSET_SIZE;
L
Linus Torvalds 已提交
821 822 823 824

	return 0;
}

825
static int __fat_write_inode(struct inode *inode, int wait)
L
Linus Torvalds 已提交
826 827 828 829 830 831
{
	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;
832 833
	sector_t blocknr;
	int err, offset;
L
Linus Torvalds 已提交
834

O
OGAWA Hirofumi 已提交
835 836 837
	if (inode->i_ino == MSDOS_ROOT_INO)
		return 0;

L
Linus Torvalds 已提交
838
retry:
O
OGAWA Hirofumi 已提交
839 840
	i_pos = fat_i_pos_read(sbi, inode);
	if (!i_pos)
L
Linus Torvalds 已提交
841 842
		return 0;

843 844
	fat_get_blknr_offset(sbi, i_pos, &blocknr, &offset);
	bh = sb_bread(sb, blocknr);
L
Linus Torvalds 已提交
845
	if (!bh) {
846 847
		fat_msg(sb, KERN_ERR, "unable to read inode block "
		       "for updating (i_pos %lld)", i_pos);
848
		return -EIO;
L
Linus Torvalds 已提交
849 850 851 852 853 854 855 856
	}
	spin_lock(&sbi->inode_hash_lock);
	if (i_pos != MSDOS_I(inode)->i_pos) {
		spin_unlock(&sbi->inode_hash_lock);
		brelse(bh);
		goto retry;
	}

857
	raw_entry = &((struct msdos_dir_entry *) (bh->b_data))[offset];
L
Linus Torvalds 已提交
858 859 860 861
	if (S_ISDIR(inode->i_mode))
		raw_entry->size = 0;
	else
		raw_entry->size = cpu_to_le32(inode->i_size);
O
OGAWA Hirofumi 已提交
862
	raw_entry->attr = fat_make_attrs(inode);
863
	fat_set_start(raw_entry, MSDOS_I(inode)->i_logstart);
864 865
	fat_time_unix2fat(sbi, &inode->i_mtime, &raw_entry->time,
			  &raw_entry->date, NULL);
L
Linus Torvalds 已提交
866
	if (sbi->options.isvfat) {
S
Stephane Kardas 已提交
867
		__le16 atime;
868 869 870 871
		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 已提交
872 873 874
	}
	spin_unlock(&sbi->inode_hash_lock);
	mark_buffer_dirty(bh);
875
	err = 0;
L
Linus Torvalds 已提交
876 877 878 879 880 881
	if (wait)
		err = sync_dirty_buffer(bh);
	brelse(bh);
	return err;
}

882 883
static int fat_write_inode(struct inode *inode, struct writeback_control *wbc)
{
A
Artem Bityutskiy 已提交
884 885 886 887 888
	int err;

	if (inode->i_ino == MSDOS_FSINFO_INO) {
		struct super_block *sb = inode->i_sb;

M
Marco Stornelli 已提交
889
		mutex_lock(&MSDOS_SB(sb)->s_lock);
A
Artem Bityutskiy 已提交
890
		err = fat_clusters_flush(sb);
M
Marco Stornelli 已提交
891
		mutex_unlock(&MSDOS_SB(sb)->s_lock);
A
Artem Bityutskiy 已提交
892 893 894 895
	} else
		err = __fat_write_inode(inode, wbc->sync_mode == WB_SYNC_ALL);

	return err;
896 897
}

L
Linus Torvalds 已提交
898 899
int fat_sync_inode(struct inode *inode)
{
900
	return __fat_write_inode(inode, 1);
L
Linus Torvalds 已提交
901 902
}

903
EXPORT_SYMBOL_GPL(fat_sync_inode);
L
Linus Torvalds 已提交
904

905
static int fat_show_options(struct seq_file *m, struct dentry *root);
906
static const struct super_operations fat_sops = {
L
Linus Torvalds 已提交
907 908 909
	.alloc_inode	= fat_alloc_inode,
	.destroy_inode	= fat_destroy_inode,
	.write_inode	= fat_write_inode,
A
Al Viro 已提交
910
	.evict_inode	= fat_evict_inode,
L
Linus Torvalds 已提交
911 912 913 914 915 916 917
	.put_super	= fat_put_super,
	.statfs		= fat_statfs,
	.remount_fs	= fat_remount,

	.show_options	= fat_show_options,
};

918
static int fat_show_options(struct seq_file *m, struct dentry *root)
L
Linus Torvalds 已提交
919
{
920
	struct msdos_sb_info *sbi = MSDOS_SB(root->d_sb);
L
Linus Torvalds 已提交
921 922 923
	struct fat_mount_options *opts = &sbi->options;
	int isvfat = opts->isvfat;

924 925 926 927 928 929
	if (!uid_eq(opts->fs_uid, GLOBAL_ROOT_UID))
		seq_printf(m, ",uid=%u",
				from_kuid_munged(&init_user_ns, opts->fs_uid));
	if (!gid_eq(opts->fs_gid, GLOBAL_ROOT_GID))
		seq_printf(m, ",gid=%u",
				from_kgid_munged(&init_user_ns, opts->fs_gid));
L
Linus Torvalds 已提交
930 931
	seq_printf(m, ",fmask=%04o", opts->fs_fmask);
	seq_printf(m, ",dmask=%04o", opts->fs_dmask);
O
OGAWA Hirofumi 已提交
932 933
	if (opts->allow_utime)
		seq_printf(m, ",allow_utime=%04o", opts->allow_utime);
L
Linus Torvalds 已提交
934
	if (sbi->nls_disk)
935 936
		/* strip "cp" prefix from displayed option */
		seq_printf(m, ",codepage=%s", &sbi->nls_disk->charset[2]);
L
Linus Torvalds 已提交
937 938 939 940 941 942 943 944 945 946 947 948 949 950 951
	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:
952
			seq_puts(m, ",shortname=lower");
L
Linus Torvalds 已提交
953 954 955 956 957 958 959 960
			break;
		default:
			seq_puts(m, ",shortname=unknown");
			break;
		}
	}
	if (opts->name_check != 'n')
		seq_printf(m, ",check=%c", opts->name_check);
961 962
	if (opts->usefree)
		seq_puts(m, ",usefree");
L
Linus Torvalds 已提交
963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980
	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 已提交
981 982
		if (opts->rodir)
			seq_puts(m, ",rodir");
L
Linus Torvalds 已提交
983
	}
O
OGAWA Hirofumi 已提交
984
	if (opts->flush)
M
Miklos Szeredi 已提交
985
		seq_puts(m, ",flush");
986 987 988 989 990 991
	if (opts->tz_set) {
		if (opts->time_offset)
			seq_printf(m, ",time_offset=%d", opts->time_offset);
		else
			seq_puts(m, ",tz=UTC");
	}
D
Denis Karpov 已提交
992 993 994 995 996 997
	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");
998 999 1000 1001
	if (opts->nfs == FAT_NFS_NOSTALE_RO)
		seq_puts(m, ",nfs=nostale_ro");
	else if (opts->nfs)
		seq_puts(m, ",nfs=stale_rw");
1002 1003
	if (opts->discard)
		seq_puts(m, ",discard");
1004 1005
	if (opts->dos1xfloppy)
		seq_puts(m, ",dos1xfloppy");
L
Linus Torvalds 已提交
1006 1007 1008 1009 1010 1011

	return 0;
}

enum {
	Opt_check_n, Opt_check_r, Opt_check_s, Opt_uid, Opt_gid,
O
OGAWA Hirofumi 已提交
1012 1013 1014
	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 已提交
1015 1016 1017
	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,
1018
	Opt_obsolete, Opt_flush, Opt_tz_utc, Opt_rodir, Opt_err_cont,
1019
	Opt_err_panic, Opt_err_ro, Opt_discard, Opt_nfs, Opt_time_offset,
1020
	Opt_nfs_stale_rw, Opt_nfs_nostale_ro, Opt_err, Opt_dos1xfloppy,
L
Linus Torvalds 已提交
1021 1022
};

1023
static const match_table_t fat_tokens = {
L
Linus Torvalds 已提交
1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034
	{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 已提交
1035
	{Opt_allow_utime, "allow_utime=%o"},
L
Linus Torvalds 已提交
1036
	{Opt_codepage, "codepage=%u"},
1037
	{Opt_usefree, "usefree"},
L
Linus Torvalds 已提交
1038 1039 1040 1041 1042
	{Opt_nocase, "nocase"},
	{Opt_quiet, "quiet"},
	{Opt_showexec, "showexec"},
	{Opt_debug, "debug"},
	{Opt_immutable, "sys_immutable"},
D
Denis Karpov 已提交
1043 1044
	{Opt_flush, "flush"},
	{Opt_tz_utc, "tz=UTC"},
1045
	{Opt_time_offset, "time_offset=%d"},
D
Denis Karpov 已提交
1046 1047 1048
	{Opt_err_cont, "errors=continue"},
	{Opt_err_panic, "errors=panic"},
	{Opt_err_ro, "errors=remount-ro"},
1049
	{Opt_discard, "discard"},
1050 1051 1052
	{Opt_nfs_stale_rw, "nfs"},
	{Opt_nfs_stale_rw, "nfs=stale_rw"},
	{Opt_nfs_nostale_ro, "nfs=nostale_ro"},
1053
	{Opt_dos1xfloppy, "dos1xfloppy"},
1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064
	{Opt_obsolete, "conv=binary"},
	{Opt_obsolete, "conv=text"},
	{Opt_obsolete, "conv=auto"},
	{Opt_obsolete, "conv=b"},
	{Opt_obsolete, "conv=t"},
	{Opt_obsolete, "conv=a"},
	{Opt_obsolete, "fat=%u"},
	{Opt_obsolete, "blocksize=%u"},
	{Opt_obsolete, "cvf_format=%20s"},
	{Opt_obsolete, "cvf_options=%100s"},
	{Opt_obsolete, "posix"},
C
Chris Mason 已提交
1065
	{Opt_err, NULL},
L
Linus Torvalds 已提交
1066
};
1067
static const match_table_t msdos_tokens = {
L
Linus Torvalds 已提交
1068 1069 1070 1071 1072 1073
	{Opt_nodots, "nodots"},
	{Opt_nodots, "dotsOK=no"},
	{Opt_dots, "dots"},
	{Opt_dots, "dotsOK=yes"},
	{Opt_err, NULL}
};
1074
static const match_table_t vfat_tokens = {
L
Linus Torvalds 已提交
1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100
	{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 已提交
1101
	{Opt_rodir, "rodir"},
L
Linus Torvalds 已提交
1102 1103 1104
	{Opt_err, NULL}
};

1105 1106
static int parse_options(struct super_block *sb, char *options, int is_vfat,
			 int silent, int *debug, struct fat_mount_options *opts)
L
Linus Torvalds 已提交
1107 1108 1109 1110 1111 1112 1113 1114
{
	char *p;
	substring_t args[MAX_OPT_ARGS];
	int option;
	char *iocharset;

	opts->isvfat = is_vfat;

1115 1116
	opts->fs_uid = current_uid();
	opts->fs_gid = current_gid();
1117
	opts->fs_fmask = opts->fs_dmask = current_umask();
O
OGAWA Hirofumi 已提交
1118
	opts->allow_utime = -1;
L
Linus Torvalds 已提交
1119 1120
	opts->codepage = fat_default_codepage;
	opts->iocharset = fat_default_iocharset;
O
OGAWA Hirofumi 已提交
1121
	if (is_vfat) {
1122
		opts->shortname = VFAT_SFN_DISPLAY_WINNT|VFAT_SFN_CREATE_WIN95;
O
OGAWA Hirofumi 已提交
1123 1124
		opts->rodir = 0;
	} else {
L
Linus Torvalds 已提交
1125
		opts->shortname = 0;
O
OGAWA Hirofumi 已提交
1126 1127
		opts->rodir = 1;
	}
L
Linus Torvalds 已提交
1128 1129
	opts->name_check = 'n';
	opts->quiet = opts->showexec = opts->sys_immutable = opts->dotsOK =  0;
1130
	opts->unicode_xlate = 0;
L
Linus Torvalds 已提交
1131
	opts->numtail = 1;
1132
	opts->usefree = opts->nocase = 0;
1133
	opts->tz_set = 0;
1134
	opts->nfs = 0;
D
Denis Karpov 已提交
1135
	opts->errors = FAT_ERRORS_RO;
L
Linus Torvalds 已提交
1136 1137
	*debug = 0;

1138 1139
	opts->utf8 = IS_ENABLED(CONFIG_FAT_DEFAULT_UTF8) && is_vfat;

L
Linus Torvalds 已提交
1140
	if (!options)
O
OGAWA Hirofumi 已提交
1141
		goto out;
L
Linus Torvalds 已提交
1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164

	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;
1165 1166 1167
		case Opt_usefree:
			opts->usefree = 1;
			break;
L
Linus Torvalds 已提交
1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190
		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))
J
Jan Kara 已提交
1191
				return -EINVAL;
1192 1193
			opts->fs_uid = make_kuid(current_user_ns(), option);
			if (!uid_valid(opts->fs_uid))
J
Jan Kara 已提交
1194
				return -EINVAL;
L
Linus Torvalds 已提交
1195 1196 1197
			break;
		case Opt_gid:
			if (match_int(&args[0], &option))
J
Jan Kara 已提交
1198
				return -EINVAL;
1199 1200
			opts->fs_gid = make_kgid(current_user_ns(), option);
			if (!gid_valid(opts->fs_gid))
J
Jan Kara 已提交
1201
				return -EINVAL;
L
Linus Torvalds 已提交
1202 1203 1204
			break;
		case Opt_umask:
			if (match_octal(&args[0], &option))
J
Jan Kara 已提交
1205
				return -EINVAL;
L
Linus Torvalds 已提交
1206 1207 1208 1209
			opts->fs_fmask = opts->fs_dmask = option;
			break;
		case Opt_dmask:
			if (match_octal(&args[0], &option))
J
Jan Kara 已提交
1210
				return -EINVAL;
L
Linus Torvalds 已提交
1211 1212 1213 1214
			opts->fs_dmask = option;
			break;
		case Opt_fmask:
			if (match_octal(&args[0], &option))
J
Jan Kara 已提交
1215
				return -EINVAL;
L
Linus Torvalds 已提交
1216 1217
			opts->fs_fmask = option;
			break;
O
OGAWA Hirofumi 已提交
1218 1219
		case Opt_allow_utime:
			if (match_octal(&args[0], &option))
J
Jan Kara 已提交
1220
				return -EINVAL;
O
OGAWA Hirofumi 已提交
1221 1222
			opts->allow_utime = option & (S_IWGRP | S_IWOTH);
			break;
L
Linus Torvalds 已提交
1223 1224
		case Opt_codepage:
			if (match_int(&args[0], &option))
J
Jan Kara 已提交
1225
				return -EINVAL;
L
Linus Torvalds 已提交
1226 1227
			opts->codepage = option;
			break;
C
Chris Mason 已提交
1228 1229 1230
		case Opt_flush:
			opts->flush = 1;
			break;
1231 1232
		case Opt_time_offset:
			if (match_int(&args[0], &option))
J
Jan Kara 已提交
1233
				return -EINVAL;
1234 1235 1236 1237 1238 1239
			/*
			 * GMT+-12 zones may have DST corrections so at least
			 * 13 hours difference is needed. Make the limit 24
			 * just in case someone invents something unusual.
			 */
			if (option < -24 * 60 || option > 24 * 60)
J
Jan Kara 已提交
1240
				return -EINVAL;
1241 1242 1243
			opts->tz_set = 1;
			opts->time_offset = option;
			break;
J
Joe Peterson 已提交
1244
		case Opt_tz_utc:
1245 1246
			opts->tz_set = 1;
			opts->time_offset = 0;
J
Joe Peterson 已提交
1247
			break;
D
Denis Karpov 已提交
1248 1249 1250 1251 1252 1253 1254 1255 1256
		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;
1257 1258 1259 1260 1261 1262
		case Opt_nfs_stale_rw:
			opts->nfs = FAT_NFS_STALE_RW;
			break;
		case Opt_nfs_nostale_ro:
			opts->nfs = FAT_NFS_NOSTALE_RO;
			break;
1263 1264 1265
		case Opt_dos1xfloppy:
			opts->dos1xfloppy = 1;
			break;
L
Linus Torvalds 已提交
1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 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 1311 1312 1313 1314 1315 1316 1317

		/* 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 已提交
1318 1319 1320
		case Opt_rodir:
			opts->rodir = 1;
			break;
1321 1322 1323
		case Opt_discard:
			opts->discard = 1;
			break;
L
Linus Torvalds 已提交
1324 1325

		/* obsolete mount options */
1326
		case Opt_obsolete:
1327 1328
			fat_msg(sb, KERN_INFO, "\"%s\" option is obsolete, "
			       "not supported now", p);
L
Linus Torvalds 已提交
1329 1330 1331
			break;
		/* unknown option */
		default:
1332
			if (!silent) {
1333 1334 1335
				fat_msg(sb, KERN_ERR,
				       "Unrecognized mount option \"%s\" "
				       "or missing value", p);
1336
			}
L
Linus Torvalds 已提交
1337 1338 1339
			return -EINVAL;
		}
	}
O
OGAWA Hirofumi 已提交
1340 1341

out:
A
Alexey Dobriyan 已提交
1342
	/* UTF-8 doesn't provide FAT semantics */
L
Linus Torvalds 已提交
1343
	if (!strcmp(opts->iocharset, "utf8")) {
1344
		fat_msg(sb, KERN_WARNING, "utf8 is not a recommended IO charset"
O
OGAWA Hirofumi 已提交
1345
		       " for FAT filesystems, filesystem will be "
1346
		       "case sensitive!");
L
Linus Torvalds 已提交
1347 1348
	}

O
OGAWA Hirofumi 已提交
1349 1350 1351
	/* 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 已提交
1352 1353
	if (opts->unicode_xlate)
		opts->utf8 = 0;
N
Namjae Jeon 已提交
1354
	if (opts->nfs == FAT_NFS_NOSTALE_RO) {
1355
		sb->s_flags |= MS_RDONLY;
N
Namjae Jeon 已提交
1356 1357
		sb->s_export_op = &fat_export_ops_nostale;
	}
L
Linus Torvalds 已提交
1358 1359 1360 1361 1362 1363

	return 0;
}

static int fat_read_root(struct inode *inode)
{
1364
	struct msdos_sb_info *sbi = MSDOS_SB(inode->i_sb);
L
Linus Torvalds 已提交
1365 1366
	int error;

N
Namjae Jeon 已提交
1367
	MSDOS_I(inode)->i_pos = MSDOS_ROOT_INO;
L
Linus Torvalds 已提交
1368 1369 1370 1371
	inode->i_uid = sbi->options.fs_uid;
	inode->i_gid = sbi->options.fs_gid;
	inode->i_version++;
	inode->i_generation = 0;
O
OGAWA Hirofumi 已提交
1372
	inode->i_mode = fat_make_mode(sbi, ATTR_DIR, S_IRWXUGO);
L
Linus Torvalds 已提交
1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388
	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 已提交
1389
	fat_save_attrs(inode, ATTR_DIR);
L
Linus Torvalds 已提交
1390 1391
	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;
M
Miklos Szeredi 已提交
1392
	set_nlink(inode, fat_subdirs(inode)+2);
L
Linus Torvalds 已提交
1393 1394 1395 1396

	return 0;
}

1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409
static unsigned long calc_fat_clusters(struct super_block *sb)
{
	struct msdos_sb_info *sbi = MSDOS_SB(sb);

	/* Divide first to avoid overflow */
	if (sbi->fat_bits != 12) {
		unsigned long ent_per_sec = sb->s_blocksize * 8 / sbi->fat_bits;
		return ent_per_sec * sbi->fat_length;
	}

	return sbi->fat_length * sb->s_blocksize * 8 / sbi->fat_bits;
}

1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 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 1491 1492 1493 1494 1495 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 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 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
static bool fat_bpb_is_zero(struct fat_boot_sector *b)
{
	if (get_unaligned_le16(&b->sector_size))
		return false;
	if (b->sec_per_clus)
		return false;
	if (b->reserved)
		return false;
	if (b->fats)
		return false;
	if (get_unaligned_le16(&b->dir_entries))
		return false;
	if (get_unaligned_le16(&b->sectors))
		return false;
	if (b->media)
		return false;
	if (b->fat_length)
		return false;
	if (b->secs_track)
		return false;
	if (b->heads)
		return false;
	return true;
}

static int fat_read_bpb(struct super_block *sb, struct fat_boot_sector *b,
	int silent, struct fat_bios_param_block *bpb)
{
	int error = -EINVAL;

	/* Read in BPB ... */
	memset(bpb, 0, sizeof(*bpb));
	bpb->fat_sector_size = get_unaligned_le16(&b->sector_size);
	bpb->fat_sec_per_clus = b->sec_per_clus;
	bpb->fat_reserved = le16_to_cpu(b->reserved);
	bpb->fat_fats = b->fats;
	bpb->fat_dir_entries = get_unaligned_le16(&b->dir_entries);
	bpb->fat_sectors = get_unaligned_le16(&b->sectors);
	bpb->fat_fat_length = le16_to_cpu(b->fat_length);
	bpb->fat_total_sect = le32_to_cpu(b->total_sect);

	bpb->fat16_state = b->fat16.state;
	bpb->fat16_vol_id = get_unaligned_le32(b->fat16.vol_id);

	bpb->fat32_length = le32_to_cpu(b->fat32.length);
	bpb->fat32_root_cluster = le32_to_cpu(b->fat32.root_cluster);
	bpb->fat32_info_sector = le16_to_cpu(b->fat32.info_sector);
	bpb->fat32_state = b->fat32.state;
	bpb->fat32_vol_id = get_unaligned_le32(b->fat32.vol_id);

	/* Validate this looks like a FAT filesystem BPB */
	if (!bpb->fat_reserved) {
		if (!silent)
			fat_msg(sb, KERN_ERR,
				"bogus number of reserved sectors");
		goto out;
	}
	if (!bpb->fat_fats) {
		if (!silent)
			fat_msg(sb, KERN_ERR, "bogus number of FAT structure");
		goto out;
	}

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

	if (!fat_valid_media(b->media)) {
		if (!silent)
			fat_msg(sb, KERN_ERR, "invalid media value (0x%02x)",
				(unsigned)b->media);
		goto out;
	}

	if (!is_power_of_2(bpb->fat_sector_size)
	    || (bpb->fat_sector_size < 512)
	    || (bpb->fat_sector_size > 4096)) {
		if (!silent)
			fat_msg(sb, KERN_ERR, "bogus logical sector size %u",
			       (unsigned)bpb->fat_sector_size);
		goto out;
	}

	if (!is_power_of_2(bpb->fat_sec_per_clus)) {
		if (!silent)
			fat_msg(sb, KERN_ERR, "bogus sectors per cluster %u",
				(unsigned)bpb->fat_sec_per_clus);
		goto out;
	}

	error = 0;

out:
	return error;
}

static int fat_read_static_bpb(struct super_block *sb,
	struct fat_boot_sector *b, int silent,
	struct fat_bios_param_block *bpb)
{
	static const char *notdos1x = "This doesn't look like a DOS 1.x volume";

	struct fat_floppy_defaults *fdefaults = NULL;
	int error = -EINVAL;
	sector_t bd_sects;
	unsigned i;

	bd_sects = i_size_read(sb->s_bdev->bd_inode) / SECTOR_SIZE;

	/* 16-bit DOS 1.x reliably wrote bootstrap short-jmp code */
	if (b->ignored[0] != 0xeb || b->ignored[2] != 0x90) {
		if (!silent)
			fat_msg(sb, KERN_ERR,
				"%s; no bootstrapping code", notdos1x);
		goto out;
	}

	/*
	 * If any value in this region is non-zero, it isn't archaic
	 * DOS.
	 */
	if (!fat_bpb_is_zero(b)) {
		if (!silent)
			fat_msg(sb, KERN_ERR,
				"%s; DOS 2.x BPB is non-zero", notdos1x);
		goto out;
	}

	for (i = 0; i < ARRAY_SIZE(floppy_defaults); i++) {
		if (floppy_defaults[i].nr_sectors == bd_sects) {
			fdefaults = &floppy_defaults[i];
			break;
		}
	}

	if (fdefaults == NULL) {
		if (!silent)
			fat_msg(sb, KERN_WARNING,
				"This looks like a DOS 1.x volume, but isn't a recognized floppy size (%llu sectors)",
				(u64)bd_sects);
		goto out;
	}

	if (!silent)
		fat_msg(sb, KERN_INFO,
			"This looks like a DOS 1.x volume; assuming default BPB values");

	memset(bpb, 0, sizeof(*bpb));
	bpb->fat_sector_size = SECTOR_SIZE;
	bpb->fat_sec_per_clus = fdefaults->sec_per_clus;
	bpb->fat_reserved = 1;
	bpb->fat_fats = 2;
	bpb->fat_dir_entries = fdefaults->dir_entries;
	bpb->fat_sectors = fdefaults->nr_sectors;
	bpb->fat_fat_length = fdefaults->fat_length;

	error = 0;

out:
	return error;
}

L
Linus Torvalds 已提交
1573 1574 1575
/*
 * Read the super block of an MS-DOS FS.
 */
1576
int fat_fill_super(struct super_block *sb, void *data, int silent, int isvfat,
1577
		   void (*setup)(struct super_block *))
L
Linus Torvalds 已提交
1578
{
A
Al Viro 已提交
1579
	struct inode *root_inode = NULL, *fat_inode = NULL;
1580
	struct inode *fsinfo_inode = NULL;
L
Linus Torvalds 已提交
1581
	struct buffer_head *bh;
1582
	struct fat_bios_param_block bpb;
L
Linus Torvalds 已提交
1583 1584 1585 1586 1587 1588 1589
	struct msdos_sb_info *sbi;
	u16 logical_sector_size;
	u32 total_sectors, total_clusters, fat_clusters, rootdir_sectors;
	int debug;
	long error;
	char buf[50];

1590 1591
	/*
	 * GFP_KERNEL is ok here, because while we do hold the
Z
Zheng Lv 已提交
1592
	 * superblock lock, memory pressure can't call back into
1593 1594 1595
	 * the filesystem, since we're only just about to mount
	 * it and have no inodes etc active!
	 */
1596
	sbi = kzalloc(sizeof(struct msdos_sb_info), GFP_KERNEL);
L
Linus Torvalds 已提交
1597 1598 1599 1600 1601 1602 1603 1604
	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;
1605
	mutex_init(&sbi->nfs_build_inode_lock);
1606 1607
	ratelimit_state_init(&sbi->ratelimit, DEFAULT_RATELIMIT_INTERVAL,
			     DEFAULT_RATELIMIT_BURST);
L
Linus Torvalds 已提交
1608

1609
	error = parse_options(sb, data, isvfat, silent, &debug, &sbi->options);
L
Linus Torvalds 已提交
1610 1611 1612
	if (error)
		goto out_fail;

1613 1614
	setup(sb); /* flavour-specific stuff that needs options */

L
Linus Torvalds 已提交
1615 1616 1617 1618
	error = -EIO;
	sb_min_blocksize(sb, 512);
	bh = sb_bread(sb, 0);
	if (bh == NULL) {
1619
		fat_msg(sb, KERN_ERR, "unable to read boot sector");
L
Linus Torvalds 已提交
1620 1621 1622
		goto out_fail;
	}

1623 1624 1625 1626 1627 1628
	error = fat_read_bpb(sb, (struct fat_boot_sector *)bh->b_data, silent,
		&bpb);
	if (error == -EINVAL && sbi->options.dos1xfloppy)
		error = fat_read_static_bpb(sb,
			(struct fat_boot_sector *)bh->b_data, silent, &bpb);
	brelse(bh);
L
Linus Torvalds 已提交
1629

1630
	if (error == -EINVAL)
L
Linus Torvalds 已提交
1631
		goto out_invalid;
1632 1633
	else if (error)
		goto out_fail;
L
Linus Torvalds 已提交
1634

1635 1636 1637 1638
	logical_sector_size = bpb.fat_sector_size;
	sbi->sec_per_clus = bpb.fat_sec_per_clus;

	error = -EIO;
L
Linus Torvalds 已提交
1639
	if (logical_sector_size < sb->s_blocksize) {
1640 1641
		fat_msg(sb, KERN_ERR, "logical sector size too small for device"
		       " (logical sector size = %u)", logical_sector_size);
L
Linus Torvalds 已提交
1642 1643
		goto out_fail;
	}
1644

L
Linus Torvalds 已提交
1645
	if (logical_sector_size > sb->s_blocksize) {
1646
		struct buffer_head *bh_resize;
L
Linus Torvalds 已提交
1647 1648

		if (!sb_set_blocksize(sb, logical_sector_size)) {
1649
			fat_msg(sb, KERN_ERR, "unable to set blocksize %u",
L
Linus Torvalds 已提交
1650 1651 1652
			       logical_sector_size);
			goto out_fail;
		}
1653 1654 1655 1656

		/* Verify that the larger boot sector is fully readable */
		bh_resize = sb_bread(sb, 0);
		if (bh_resize == NULL) {
1657 1658
			fat_msg(sb, KERN_ERR, "unable to read boot sector"
			       " (logical sector size = %lu)",
L
Linus Torvalds 已提交
1659 1660 1661
			       sb->s_blocksize);
			goto out_fail;
		}
1662
		brelse(bh_resize);
L
Linus Torvalds 已提交
1663 1664
	}

M
Marco Stornelli 已提交
1665
	mutex_init(&sbi->s_lock);
L
Linus Torvalds 已提交
1666 1667
	sbi->cluster_size = sb->s_blocksize * sbi->sec_per_clus;
	sbi->cluster_bits = ffs(sbi->cluster_size) - 1;
1668
	sbi->fats = bpb.fat_fats;
L
Linus Torvalds 已提交
1669
	sbi->fat_bits = 0;		/* Don't know yet */
1670 1671
	sbi->fat_start = bpb.fat_reserved;
	sbi->fat_length = bpb.fat_fat_length;
L
Linus Torvalds 已提交
1672 1673
	sbi->root_cluster = 0;
	sbi->free_clusters = -1;	/* Don't know yet */
1674
	sbi->free_clus_valid = 0;
L
Linus Torvalds 已提交
1675
	sbi->prev_free = FAT_START_ENT;
1676
	sb->s_maxbytes = 0xffffffff;
L
Linus Torvalds 已提交
1677

1678
	if (!sbi->fat_length && bpb.fat32_length) {
L
Linus Torvalds 已提交
1679 1680 1681 1682 1683
		struct fat_boot_fsinfo *fsinfo;
		struct buffer_head *fsinfo_bh;

		/* Must be FAT32 */
		sbi->fat_bits = 32;
1684 1685
		sbi->fat_length = bpb.fat32_length;
		sbi->root_cluster = bpb.fat32_root_cluster;
L
Linus Torvalds 已提交
1686 1687

		/* MC - if info_sector is 0, don't multiply by 0 */
1688
		sbi->fsinfo_sector = bpb.fat32_info_sector;
L
Linus Torvalds 已提交
1689 1690 1691 1692 1693
		if (sbi->fsinfo_sector == 0)
			sbi->fsinfo_sector = 1;

		fsinfo_bh = sb_bread(sb, sbi->fsinfo_sector);
		if (fsinfo_bh == NULL) {
1694 1695
			fat_msg(sb, KERN_ERR, "bread failed, FSINFO block"
			       " (sector = %lu)", sbi->fsinfo_sector);
L
Linus Torvalds 已提交
1696 1697 1698 1699 1700
			goto out_fail;
		}

		fsinfo = (struct fat_boot_fsinfo *)fsinfo_bh->b_data;
		if (!IS_FSINFO(fsinfo)) {
1701 1702
			fat_msg(sb, KERN_WARNING, "Invalid FSINFO signature: "
			       "0x%08x, 0x%08x (sector = %lu)",
L
Linus Torvalds 已提交
1703 1704 1705 1706
			       le32_to_cpu(fsinfo->signature1),
			       le32_to_cpu(fsinfo->signature2),
			       sbi->fsinfo_sector);
		} else {
1707
			if (sbi->options.usefree)
1708 1709
				sbi->free_clus_valid = 1;
			sbi->free_clusters = le32_to_cpu(fsinfo->free_clusters);
L
Linus Torvalds 已提交
1710 1711 1712 1713 1714 1715
			sbi->prev_free = le32_to_cpu(fsinfo->next_cluster);
		}

		brelse(fsinfo_bh);
	}

1716 1717
	/* interpret volume ID as a little endian 32 bit integer */
	if (sbi->fat_bits == 32)
1718
		sbi->vol_id = bpb.fat32_vol_id;
1719
	else /* fat 16 or 12 */
1720
		sbi->vol_id = bpb.fat16_vol_id;
1721

L
Linus Torvalds 已提交
1722 1723 1724 1725
	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;
1726
	sbi->dir_entries = bpb.fat_dir_entries;
L
Linus Torvalds 已提交
1727 1728
	if (sbi->dir_entries & (sbi->dir_per_block - 1)) {
		if (!silent)
1729
			fat_msg(sb, KERN_ERR, "bogus number of directory entries"
1730
			       " (%u)", sbi->dir_entries);
L
Linus Torvalds 已提交
1731 1732 1733 1734 1735 1736
		goto out_invalid;
	}

	rootdir_sectors = sbi->dir_entries
		* sizeof(struct msdos_dir_entry) / sb->s_blocksize;
	sbi->data_start = sbi->dir_start + rootdir_sectors;
1737
	total_sectors = bpb.fat_sectors;
L
Linus Torvalds 已提交
1738
	if (total_sectors == 0)
1739
		total_sectors = bpb.fat_total_sect;
L
Linus Torvalds 已提交
1740 1741 1742 1743 1744 1745

	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;

1746 1747
	/* some OSes set FAT_STATE_DIRTY and clean it on unmount. */
	if (sbi->fat_bits == 32)
1748
		sbi->dirty = bpb.fat32_state & FAT_STATE_DIRTY;
1749
	else /* fat 16 or 12 */
1750
		sbi->dirty = bpb.fat16_state & FAT_STATE_DIRTY;
1751

L
Linus Torvalds 已提交
1752
	/* check that FAT table does not overflow */
1753
	fat_clusters = calc_fat_clusters(sb);
L
Linus Torvalds 已提交
1754 1755 1756
	total_clusters = min(total_clusters, fat_clusters - FAT_START_ENT);
	if (total_clusters > MAX_FAT(sb)) {
		if (!silent)
1757
			fat_msg(sb, KERN_ERR, "count of clusters too big (%u)",
L
Linus Torvalds 已提交
1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772
			       total_clusters);
		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;

	/* set up enough so that it can read an inode */
	fat_hash_init(sb);
1773
	dir_hash_init(sb);
L
Linus Torvalds 已提交
1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787
	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) {
1788
		fat_msg(sb, KERN_ERR, "codepage %s not found", buf);
L
Linus Torvalds 已提交
1789 1790 1791 1792 1793 1794 1795
		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) {
1796
			fat_msg(sb, KERN_ERR, "IO charset %s not found",
L
Linus Torvalds 已提交
1797 1798 1799 1800 1801 1802
			       sbi->options.iocharset);
			goto out_fail;
		}
	}

	error = -ENOMEM;
A
Al Viro 已提交
1803 1804 1805 1806 1807
	fat_inode = new_inode(sb);
	if (!fat_inode)
		goto out_fail;
	MSDOS_I(fat_inode)->i_pos = 0;
	sbi->fat_inode = fat_inode;
1808 1809 1810 1811 1812 1813 1814 1815

	fsinfo_inode = new_inode(sb);
	if (!fsinfo_inode)
		goto out_fail;
	fsinfo_inode->i_ino = MSDOS_FSINFO_INO;
	sbi->fsinfo_inode = fsinfo_inode;
	insert_inode_hash(fsinfo_inode);

L
Linus Torvalds 已提交
1816 1817 1818 1819 1820 1821
	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);
A
Al Viro 已提交
1822 1823
	if (error < 0) {
		iput(root_inode);
L
Linus Torvalds 已提交
1824
		goto out_fail;
A
Al Viro 已提交
1825
	}
L
Linus Torvalds 已提交
1826 1827
	error = -ENOMEM;
	insert_inode_hash(root_inode);
1828
	fat_attach(root_inode, 0);
A
Al Viro 已提交
1829
	sb->s_root = d_make_root(root_inode);
L
Linus Torvalds 已提交
1830
	if (!sb->s_root) {
1831
		fat_msg(sb, KERN_ERR, "get root inode failed");
L
Linus Torvalds 已提交
1832 1833 1834
		goto out_fail;
	}

1835 1836 1837 1838 1839 1840 1841 1842
	if (sbi->options.discard) {
		struct request_queue *q = bdev_get_queue(sb->s_bdev);
		if (!blk_queue_discard(q))
			fat_msg(sb, KERN_WARNING,
					"mounting with \"discard\" option, but "
					"the device does not support discard");
	}

1843
	fat_set_state(sb, 1, 0);
L
Linus Torvalds 已提交
1844 1845 1846 1847 1848
	return 0;

out_invalid:
	error = -EINVAL;
	if (!silent)
1849
		fat_msg(sb, KERN_INFO, "Can't find a valid FAT filesystem");
L
Linus Torvalds 已提交
1850 1851

out_fail:
1852 1853
	if (fsinfo_inode)
		iput(fsinfo_inode);
A
Al Viro 已提交
1854 1855
	if (fat_inode)
		iput(fat_inode);
O
OGAWA Hirofumi 已提交
1856 1857
	unload_nls(sbi->nls_io);
	unload_nls(sbi->nls_disk);
L
Linus Torvalds 已提交
1858 1859 1860 1861 1862 1863 1864
	if (sbi->options.iocharset != fat_default_iocharset)
		kfree(sbi->options.iocharset);
	sb->s_fs_info = NULL;
	kfree(sbi);
	return error;
}

1865
EXPORT_SYMBOL_GPL(fat_fill_super);
L
Linus Torvalds 已提交
1866

C
Chris Mason 已提交
1867 1868 1869 1870 1871 1872 1873 1874 1875 1876
/*
 * 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;
N
Namjae Jeon 已提交
1877 1878 1879

	/* if we used wait=1, sync_inode_metadata waits for the io for the
	* inode to finish.  So wait=0 is sent down to sync_inode_metadata
C
Chris Mason 已提交
1880 1881
	* and filemap_fdatawrite is used for the data blocks
	*/
N
Namjae Jeon 已提交
1882
	ret = sync_inode_metadata(inode, 0);
C
Chris Mason 已提交
1883
	if (!ret)
N
Namjae Jeon 已提交
1884
		ret = filemap_fdatawrite(inode->i_mapping);
C
Chris Mason 已提交
1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904
	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);
1905
	if (!ret) {
C
Chris Mason 已提交
1906 1907 1908 1909 1910 1911 1912
		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 已提交
1913 1914
static int __init init_fat_fs(void)
{
1915
	int err;
L
Linus Torvalds 已提交
1916

1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929
	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 已提交
1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941
}

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");