blob: 5bafaad0053059502b33219c1c1e2b8deb0e5e58 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/fs/fat/inode.c
3 *
4 * Written 1992,1993 by Werner Almesberger
5 * VFAT extensions by Gordon Chaffee, merged with msdos fs by Henrik Storner
6 * Rewritten for the constant inumbers support by Al Viro
7 *
8 * Fixes:
9 *
10 * Max Cohan: Fixed invalid FSINFO offset when info_sector is 0
11 */
12
13#include <linux/module.h>
14#include <linux/init.h>
15#include <linux/time.h>
16#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include <linux/seq_file.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include <linux/pagemap.h>
OGAWA Hirofumia5425d22006-01-08 01:02:10 -080019#include <linux/mpage.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include <linux/buffer_head.h>
Christoph Hellwiga5694252007-07-17 04:04:28 -070021#include <linux/exportfs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include <linux/mount.h>
23#include <linux/vfs.h>
24#include <linux/parser.h>
OGAWA Hirofumie5174ba2006-01-08 01:02:11 -080025#include <linux/uio.h>
Chris Masonae78bf92006-09-29 02:00:03 -070026#include <linux/writeback.h>
Vignesh Babu BMe7d709c2007-05-08 00:24:27 -070027#include <linux/log2.h>
OGAWA Hirofumid3dfa822008-11-06 12:53:49 -080028#include <linux/hash.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include <asm/unaligned.h>
OGAWA Hirofumi9e975da2008-11-06 12:53:46 -080030#include "fat.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070031
32#ifndef CONFIG_FAT_DEFAULT_IOCHARSET
33/* if user don't select VFAT, this is undefined. */
34#define CONFIG_FAT_DEFAULT_IOCHARSET ""
35#endif
36
37static int fat_default_codepage = CONFIG_FAT_DEFAULT_CODEPAGE;
38static char fat_default_iocharset[] = CONFIG_FAT_DEFAULT_IOCHARSET;
39
40
41static int fat_add_cluster(struct inode *inode)
42{
43 int err, cluster;
44
45 err = fat_alloc_clusters(inode, &cluster, 1);
46 if (err)
47 return err;
48 /* FIXME: this cluster should be added after data of this
49 * cluster is writed */
50 err = fat_chain_add(inode, cluster, 1);
51 if (err)
52 fat_free_clusters(inode, cluster);
53 return err;
54}
55
OGAWA Hirofumi6a1d9802006-09-27 01:50:45 -070056static inline int __fat_get_block(struct inode *inode, sector_t iblock,
57 unsigned long *max_blocks,
58 struct buffer_head *bh_result, int create)
Linus Torvalds1da177e2005-04-16 15:20:36 -070059{
60 struct super_block *sb = inode->i_sb;
OGAWA Hirofumie5174ba2006-01-08 01:02:11 -080061 struct msdos_sb_info *sbi = MSDOS_SB(sb);
OGAWA Hirofumie5174ba2006-01-08 01:02:11 -080062 unsigned long mapped_blocks;
OGAWA Hirofumi6a1d9802006-09-27 01:50:45 -070063 sector_t phys;
OGAWA Hirofumie5174ba2006-01-08 01:02:11 -080064 int err, offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -070065
OGAWA Hirofumi2bdf67e2008-11-06 12:53:57 -080066 err = fat_bmap(inode, iblock, &phys, &mapped_blocks, create);
Linus Torvalds1da177e2005-04-16 15:20:36 -070067 if (err)
68 return err;
69 if (phys) {
70 map_bh(bh_result, sb, phys);
OGAWA Hirofumie5174ba2006-01-08 01:02:11 -080071 *max_blocks = min(mapped_blocks, *max_blocks);
Linus Torvalds1da177e2005-04-16 15:20:36 -070072 return 0;
73 }
74 if (!create)
75 return 0;
OGAWA Hirofumie5174ba2006-01-08 01:02:11 -080076
Linus Torvalds1da177e2005-04-16 15:20:36 -070077 if (iblock != MSDOS_I(inode)->mmu_private >> sb->s_blocksize_bits) {
Denis Karpov85c78592009-06-04 02:34:22 +090078 fat_fs_error(sb, "corrupted file size (i_pos %lld, %lld)",
OGAWA Hirofumi6a1d9802006-09-27 01:50:45 -070079 MSDOS_I(inode)->i_pos, MSDOS_I(inode)->mmu_private);
Linus Torvalds1da177e2005-04-16 15:20:36 -070080 return -EIO;
81 }
OGAWA Hirofumie5174ba2006-01-08 01:02:11 -080082
83 offset = (unsigned long)iblock & (sbi->sec_per_clus - 1);
84 if (!offset) {
85 /* TODO: multiple cluster allocation would be desirable. */
Linus Torvalds1da177e2005-04-16 15:20:36 -070086 err = fat_add_cluster(inode);
87 if (err)
88 return err;
89 }
OGAWA Hirofumie5174ba2006-01-08 01:02:11 -080090 /* available blocks on this cluster */
91 mapped_blocks = sbi->sec_per_clus - offset;
92
93 *max_blocks = min(mapped_blocks, *max_blocks);
94 MSDOS_I(inode)->mmu_private += *max_blocks << sb->s_blocksize_bits;
95
OGAWA Hirofumi2bdf67e2008-11-06 12:53:57 -080096 err = fat_bmap(inode, iblock, &phys, &mapped_blocks, create);
Linus Torvalds1da177e2005-04-16 15:20:36 -070097 if (err)
98 return err;
OGAWA Hirofumi6a1d9802006-09-27 01:50:45 -070099
OGAWA Hirofumie5174ba2006-01-08 01:02:11 -0800100 BUG_ON(!phys);
101 BUG_ON(*max_blocks != mapped_blocks);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 set_buffer_new(bh_result);
103 map_bh(bh_result, sb, phys);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104
OGAWA Hirofumie5174ba2006-01-08 01:02:11 -0800105 return 0;
106}
107
108static int fat_get_block(struct inode *inode, sector_t iblock,
109 struct buffer_head *bh_result, int create)
110{
OGAWA Hirofumi6a1d9802006-09-27 01:50:45 -0700111 struct super_block *sb = inode->i_sb;
112 unsigned long max_blocks = bh_result->b_size >> inode->i_blkbits;
113 int err;
114
115 err = __fat_get_block(inode, iblock, &max_blocks, bh_result, create);
116 if (err)
117 return err;
118 bh_result->b_size = max_blocks << sb->s_blocksize_bits;
119 return 0;
OGAWA Hirofumie5174ba2006-01-08 01:02:11 -0800120}
121
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122static int fat_writepage(struct page *page, struct writeback_control *wbc)
123{
124 return block_write_full_page(page, fat_get_block, wbc);
125}
126
OGAWA Hirofumia5425d22006-01-08 01:02:10 -0800127static int fat_writepages(struct address_space *mapping,
128 struct writeback_control *wbc)
129{
130 return mpage_writepages(mapping, wbc, fat_get_block);
131}
132
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133static int fat_readpage(struct file *file, struct page *page)
134{
OGAWA Hirofumia5425d22006-01-08 01:02:10 -0800135 return mpage_readpage(page, fat_get_block);
136}
137
138static int fat_readpages(struct file *file, struct address_space *mapping,
139 struct list_head *pages, unsigned nr_pages)
140{
141 return mpage_readpages(mapping, pages, nr_pages, fat_get_block);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142}
143
npiggin@suse.de459f6ed2010-05-27 01:05:38 +1000144static void fat_write_failed(struct address_space *mapping, loff_t to)
145{
146 struct inode *inode = mapping->host;
147
148 if (to > inode->i_size) {
149 truncate_pagecache(inode, to, inode->i_size);
150 fat_truncate_blocks(inode, inode->i_size);
151 }
152}
153
Nick Piggind7777a22007-10-16 01:25:08 -0700154static int fat_write_begin(struct file *file, struct address_space *mapping,
155 loff_t pos, unsigned len, unsigned flags,
156 struct page **pagep, void **fsdata)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157{
npiggin@suse.de459f6ed2010-05-27 01:05:38 +1000158 int err;
159
Nick Piggind7777a22007-10-16 01:25:08 -0700160 *pagep = NULL;
Christoph Hellwig282dc172010-06-04 11:29:55 +0200161 err = cont_write_begin(file, mapping, pos, len, flags,
npiggin@suse.de459f6ed2010-05-27 01:05:38 +1000162 pagep, fsdata, fat_get_block,
Nick Piggind7777a22007-10-16 01:25:08 -0700163 &MSDOS_I(mapping->host)->mmu_private);
npiggin@suse.de459f6ed2010-05-27 01:05:38 +1000164 if (err < 0)
165 fat_write_failed(mapping, pos + len);
166 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167}
168
Nick Piggind7777a22007-10-16 01:25:08 -0700169static int fat_write_end(struct file *file, struct address_space *mapping,
170 loff_t pos, unsigned len, unsigned copied,
171 struct page *pagep, void *fsdata)
OGAWA Hirofumief402262005-09-16 19:28:13 -0700172{
Nick Piggind7777a22007-10-16 01:25:08 -0700173 struct inode *inode = mapping->host;
174 int err;
175 err = generic_write_end(file, mapping, pos, len, copied, pagep, fsdata);
npiggin@suse.de459f6ed2010-05-27 01:05:38 +1000176 if (err < len)
177 fat_write_failed(mapping, pos + len);
Nick Piggind7777a22007-10-16 01:25:08 -0700178 if (!(err < 0) && !(MSDOS_I(inode)->i_attrs & ATTR_ARCH)) {
OGAWA Hirofumief402262005-09-16 19:28:13 -0700179 inode->i_mtime = inode->i_ctime = CURRENT_TIME_SEC;
180 MSDOS_I(inode)->i_attrs |= ATTR_ARCH;
181 mark_inode_dirty(inode);
182 }
183 return err;
184}
185
OGAWA Hirofumie5174ba2006-01-08 01:02:11 -0800186static ssize_t fat_direct_IO(int rw, struct kiocb *iocb,
187 const struct iovec *iov,
188 loff_t offset, unsigned long nr_segs)
189{
190 struct file *file = iocb->ki_filp;
npiggin@suse.de459f6ed2010-05-27 01:05:38 +1000191 struct address_space *mapping = file->f_mapping;
192 struct inode *inode = mapping->host;
193 ssize_t ret;
OGAWA Hirofumie5174ba2006-01-08 01:02:11 -0800194
195 if (rw == WRITE) {
196 /*
Nick Piggin4e02ed42008-10-29 14:00:55 -0700197 * FIXME: blockdev_direct_IO() doesn't use ->write_begin(),
OGAWA Hirofumie5174ba2006-01-08 01:02:11 -0800198 * so we need to update the ->mmu_private to block boundary.
199 *
200 * But we must fill the remaining area or hole by nul for
201 * updating ->mmu_private.
OGAWA Hirofumi94412a92007-02-20 13:57:55 -0800202 *
203 * Return 0, and fallback to normal buffered write.
OGAWA Hirofumie5174ba2006-01-08 01:02:11 -0800204 */
205 loff_t size = offset + iov_length(iov, nr_segs);
206 if (MSDOS_I(inode)->mmu_private < size)
OGAWA Hirofumi94412a92007-02-20 13:57:55 -0800207 return 0;
OGAWA Hirofumie5174ba2006-01-08 01:02:11 -0800208 }
209
210 /*
211 * FAT need to use the DIO_LOCKING for avoiding the race
212 * condition of fat_get_block() and ->truncate().
213 */
Christoph Hellwigaacfc19c2011-06-24 14:29:47 -0400214 ret = blockdev_direct_IO(rw, iocb, inode, iov, offset, nr_segs,
215 fat_get_block);
npiggin@suse.de459f6ed2010-05-27 01:05:38 +1000216 if (ret < 0 && (rw & WRITE))
217 fat_write_failed(mapping, offset + iov_length(iov, nr_segs));
218
219 return ret;
OGAWA Hirofumie5174ba2006-01-08 01:02:11 -0800220}
221
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222static sector_t _fat_bmap(struct address_space *mapping, sector_t block)
223{
OGAWA Hirofumifa93ca12008-11-06 12:53:56 -0800224 sector_t blocknr;
225
226 /* fat_get_cluster() assumes the requested blocknr isn't truncated. */
Christoph Hellwig58268692011-06-24 14:29:40 -0400227 down_read(&MSDOS_I(mapping->host)->truncate_lock);
OGAWA Hirofumifa93ca12008-11-06 12:53:56 -0800228 blocknr = generic_block_bmap(mapping, block, fat_get_block);
Christoph Hellwig58268692011-06-24 14:29:40 -0400229 up_read(&MSDOS_I(mapping->host)->truncate_lock);
OGAWA Hirofumifa93ca12008-11-06 12:53:56 -0800230
231 return blocknr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232}
233
Christoph Hellwigf5e54d62006-06-28 04:26:44 -0700234static const struct address_space_operations fat_aops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 .readpage = fat_readpage,
OGAWA Hirofumia5425d22006-01-08 01:02:10 -0800236 .readpages = fat_readpages,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237 .writepage = fat_writepage,
OGAWA Hirofumia5425d22006-01-08 01:02:10 -0800238 .writepages = fat_writepages,
Nick Piggind7777a22007-10-16 01:25:08 -0700239 .write_begin = fat_write_begin,
240 .write_end = fat_write_end,
OGAWA Hirofumie5174ba2006-01-08 01:02:11 -0800241 .direct_IO = fat_direct_IO,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 .bmap = _fat_bmap
243};
244
245/*
246 * New FAT inode stuff. We do the following:
247 * a) i_ino is constant and has nothing with on-disk location.
248 * b) FAT manages its own cache of directory entries.
249 * c) *This* cache is indexed by on-disk location.
250 * d) inode has an associated directory entry, all right, but
251 * it may be unhashed.
252 * e) currently entries are stored within struct inode. That should
253 * change.
254 * f) we deal with races in the following way:
255 * 1. readdir() and lookup() do FAT-dir-cache lookup.
256 * 2. rename() unhashes the F-d-c entry and rehashes it in
257 * a new place.
258 * 3. unlink() and rmdir() unhash F-d-c entry.
259 * 4. fat_write_inode() checks whether the thing is unhashed.
260 * If it is we silently return. If it isn't we do bread(),
261 * check if the location is still valid and retry if it
262 * isn't. Otherwise we do changes.
263 * 5. Spinlock is used to protect hash/unhash/location check/lookup
Al Virodeee3ce2010-06-05 19:28:32 -0400264 * 6. fat_evict_inode() unhashes the F-d-c entry.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 * 7. lookup() and readdir() do igrab() if they find a F-d-c entry
266 * and consider negative result as cache miss.
267 */
268
269static void fat_hash_init(struct super_block *sb)
270{
271 struct msdos_sb_info *sbi = MSDOS_SB(sb);
272 int i;
273
274 spin_lock_init(&sbi->inode_hash_lock);
275 for (i = 0; i < FAT_HASH_SIZE; i++)
276 INIT_HLIST_HEAD(&sbi->inode_hashtable[i]);
277}
278
OGAWA Hirofumid3dfa822008-11-06 12:53:49 -0800279static inline unsigned long fat_hash(loff_t i_pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280{
OGAWA Hirofumid3dfa822008-11-06 12:53:49 -0800281 return hash_32(i_pos, FAT_HASH_BITS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282}
283
Steven J. Magnani7669e8f2012-10-04 17:14:45 -0700284static void dir_hash_init(struct super_block *sb)
285{
286 struct msdos_sb_info *sbi = MSDOS_SB(sb);
287 int i;
288
289 spin_lock_init(&sbi->dir_hash_lock);
290 for (i = 0; i < FAT_HASH_SIZE; i++)
291 INIT_HLIST_HEAD(&sbi->dir_hashtable[i]);
292}
293
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294void fat_attach(struct inode *inode, loff_t i_pos)
295{
OGAWA Hirofumid3dfa822008-11-06 12:53:49 -0800296 struct msdos_sb_info *sbi = MSDOS_SB(inode->i_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297
Steven J. Magnani7669e8f2012-10-04 17:14:45 -0700298 if (inode->i_ino != MSDOS_ROOT_INO) {
299 struct hlist_head *head = sbi->inode_hashtable
300 + fat_hash(i_pos);
301
302 spin_lock(&sbi->inode_hash_lock);
303 MSDOS_I(inode)->i_pos = i_pos;
304 hlist_add_head(&MSDOS_I(inode)->i_fat_hash, head);
305 spin_unlock(&sbi->inode_hash_lock);
306 }
307
308 /* If NFS support is enabled, cache the mapping of start cluster
309 * to directory inode. This is used during reconnection of
310 * dentries to the filesystem root.
311 */
312 if (S_ISDIR(inode->i_mode) && sbi->options.nfs) {
313 struct hlist_head *d_head = sbi->dir_hashtable;
314 d_head += fat_dir_hash(MSDOS_I(inode)->i_logstart);
315
316 spin_lock(&sbi->dir_hash_lock);
317 hlist_add_head(&MSDOS_I(inode)->i_dir_hash, d_head);
318 spin_unlock(&sbi->dir_hash_lock);
319 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320}
OGAWA Hirofumi7c709d02006-01-08 01:02:10 -0800321EXPORT_SYMBOL_GPL(fat_attach);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322
323void fat_detach(struct inode *inode)
324{
325 struct msdos_sb_info *sbi = MSDOS_SB(inode->i_sb);
326 spin_lock(&sbi->inode_hash_lock);
327 MSDOS_I(inode)->i_pos = 0;
328 hlist_del_init(&MSDOS_I(inode)->i_fat_hash);
329 spin_unlock(&sbi->inode_hash_lock);
Steven J. Magnani7669e8f2012-10-04 17:14:45 -0700330
331 if (S_ISDIR(inode->i_mode) && sbi->options.nfs) {
332 spin_lock(&sbi->dir_hash_lock);
333 hlist_del_init(&MSDOS_I(inode)->i_dir_hash);
334 spin_unlock(&sbi->dir_hash_lock);
335 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336}
OGAWA Hirofumi7c709d02006-01-08 01:02:10 -0800337EXPORT_SYMBOL_GPL(fat_detach);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338
339struct inode *fat_iget(struct super_block *sb, loff_t i_pos)
340{
341 struct msdos_sb_info *sbi = MSDOS_SB(sb);
OGAWA Hirofumid3dfa822008-11-06 12:53:49 -0800342 struct hlist_head *head = sbi->inode_hashtable + fat_hash(i_pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 struct hlist_node *_p;
344 struct msdos_inode_info *i;
345 struct inode *inode = NULL;
346
347 spin_lock(&sbi->inode_hash_lock);
348 hlist_for_each_entry(i, _p, head, i_fat_hash) {
349 BUG_ON(i->vfs_inode.i_sb != sb);
350 if (i->i_pos != i_pos)
351 continue;
352 inode = igrab(&i->vfs_inode);
353 if (inode)
354 break;
355 }
356 spin_unlock(&sbi->inode_hash_lock);
357 return inode;
358}
359
360static int is_exec(unsigned char *extension)
361{
362 unsigned char *exe_extensions = "EXECOMBAT", *walk;
363
364 for (walk = exe_extensions; *walk; walk += 3)
365 if (!strncmp(extension, walk, 3))
366 return 1;
367 return 0;
368}
369
370static int fat_calc_dir_size(struct inode *inode)
371{
372 struct msdos_sb_info *sbi = MSDOS_SB(inode->i_sb);
373 int ret, fclus, dclus;
374
375 inode->i_size = 0;
376 if (MSDOS_I(inode)->i_start == 0)
377 return 0;
378
379 ret = fat_get_cluster(inode, FAT_ENT_EOF, &fclus, &dclus);
380 if (ret < 0)
381 return ret;
382 inode->i_size = (fclus + 1) << sbi->cluster_bits;
383
384 return 0;
385}
386
387/* doesn't deal with root inode */
388static int fat_fill_inode(struct inode *inode, struct msdos_dir_entry *de)
389{
390 struct msdos_sb_info *sbi = MSDOS_SB(inode->i_sb);
391 int error;
392
393 MSDOS_I(inode)->i_pos = 0;
394 inode->i_uid = sbi->options.fs_uid;
395 inode->i_gid = sbi->options.fs_gid;
396 inode->i_version++;
397 inode->i_generation = get_seconds();
398
399 if ((de->attr & ATTR_DIR) && !IS_FREE(de->name)) {
400 inode->i_generation &= ~1;
OGAWA Hirofumi9c0aa1b2008-11-06 12:53:54 -0800401 inode->i_mode = fat_make_mode(sbi, de->attr, S_IRWXUGO);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 inode->i_op = sbi->dir_ops;
403 inode->i_fop = &fat_dir_operations;
404
Steven J. Magnania943ed72012-07-30 14:42:13 -0700405 MSDOS_I(inode)->i_start = fat_get_start(sbi, de);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406 MSDOS_I(inode)->i_logstart = MSDOS_I(inode)->i_start;
407 error = fat_calc_dir_size(inode);
408 if (error < 0)
409 return error;
410 MSDOS_I(inode)->mmu_private = inode->i_size;
411
Miklos Szeredibfe86842011-10-28 14:13:29 +0200412 set_nlink(inode, fat_subdirs(inode));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 } else { /* not a directory */
414 inode->i_generation |= 1;
OGAWA Hirofumi9c0aa1b2008-11-06 12:53:54 -0800415 inode->i_mode = fat_make_mode(sbi, de->attr,
416 ((sbi->options.showexec && !is_exec(de->name + 8))
417 ? S_IRUGO|S_IWUGO : S_IRWXUGO));
Steven J. Magnania943ed72012-07-30 14:42:13 -0700418 MSDOS_I(inode)->i_start = fat_get_start(sbi, de);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419
420 MSDOS_I(inode)->i_logstart = MSDOS_I(inode)->i_start;
421 inode->i_size = le32_to_cpu(de->size);
422 inode->i_op = &fat_file_inode_operations;
423 inode->i_fop = &fat_file_operations;
424 inode->i_mapping->a_ops = &fat_aops;
425 MSDOS_I(inode)->mmu_private = inode->i_size;
426 }
427 if (de->attr & ATTR_SYS) {
428 if (sbi->options.sys_immutable)
429 inode->i_flags |= S_IMMUTABLE;
430 }
OGAWA Hirofumi9c0aa1b2008-11-06 12:53:54 -0800431 fat_save_attrs(inode, de->attr);
432
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 inode->i_blocks = ((inode->i_size + (sbi->cluster_size - 1))
434 & ~((loff_t)sbi->cluster_size - 1)) >> 9;
OGAWA Hirofumi7decd1c2008-11-06 12:53:47 -0800435
436 fat_time_fat2unix(sbi, &inode->i_mtime, de->time, de->date, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437 if (sbi->options.isvfat) {
OGAWA Hirofumi7decd1c2008-11-06 12:53:47 -0800438 fat_time_fat2unix(sbi, &inode->i_ctime, de->ctime,
439 de->cdate, de->ctime_cs);
440 fat_time_fat2unix(sbi, &inode->i_atime, 0, de->adate, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 } else
Stephane Kardas62a36c42005-09-21 09:55:45 -0700442 inode->i_ctime = inode->i_atime = inode->i_mtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443
444 return 0;
445}
446
447struct inode *fat_build_inode(struct super_block *sb,
448 struct msdos_dir_entry *de, loff_t i_pos)
449{
450 struct inode *inode;
451 int err;
452
453 inode = fat_iget(sb, i_pos);
454 if (inode)
455 goto out;
456 inode = new_inode(sb);
457 if (!inode) {
458 inode = ERR_PTR(-ENOMEM);
459 goto out;
460 }
461 inode->i_ino = iunique(sb, MSDOS_ROOT_INO);
462 inode->i_version = 1;
463 err = fat_fill_inode(inode, de);
464 if (err) {
465 iput(inode);
466 inode = ERR_PTR(err);
467 goto out;
468 }
469 fat_attach(inode, i_pos);
470 insert_inode_hash(inode);
471out:
472 return inode;
473}
474
OGAWA Hirofumi7c709d02006-01-08 01:02:10 -0800475EXPORT_SYMBOL_GPL(fat_build_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476
Al Virodeee3ce2010-06-05 19:28:32 -0400477static void fat_evict_inode(struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478{
Mark Fashehfef26652005-09-09 13:01:31 -0700479 truncate_inode_pages(&inode->i_data, 0);
Al Virodeee3ce2010-06-05 19:28:32 -0400480 if (!inode->i_nlink) {
481 inode->i_size = 0;
482 fat_truncate_blocks(inode, 0);
483 }
484 invalidate_inode_buffers(inode);
Jan Karadbd57682012-05-03 14:48:02 +0200485 clear_inode(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486 fat_cache_inval_inode(inode);
OGAWA Hirofumia993b542008-11-06 12:53:50 -0800487 fat_detach(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488}
489
OGAWA Hirofumia6bf6b22006-01-08 01:02:08 -0800490static void fat_put_super(struct super_block *sb)
491{
492 struct msdos_sb_info *sbi = MSDOS_SB(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493
Artem Bityutskiy020ac5b2012-05-31 16:26:12 -0700494 iput(sbi->fsinfo_inode);
Al Virob5224122009-06-07 13:44:36 -0400495 iput(sbi->fat_inode);
496
Thomas Gleixner6d729e42009-08-16 21:05:08 +0000497 unload_nls(sbi->nls_disk);
498 unload_nls(sbi->nls_io);
499
500 if (sbi->options.iocharset != fat_default_iocharset)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 kfree(sbi->options.iocharset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502
503 sb->s_fs_info = NULL;
504 kfree(sbi);
505}
506
Christoph Lametere18b8902006-12-06 20:33:20 -0800507static struct kmem_cache *fat_inode_cachep;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508
509static struct inode *fat_alloc_inode(struct super_block *sb)
510{
511 struct msdos_inode_info *ei;
Linus Torvalds8f593422008-05-19 19:53:01 -0700512 ei = kmem_cache_alloc(fat_inode_cachep, GFP_NOFS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513 if (!ei)
514 return NULL;
Christoph Hellwig58268692011-06-24 14:29:40 -0400515
516 init_rwsem(&ei->truncate_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 return &ei->vfs_inode;
518}
519
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +1100520static void fat_i_callback(struct rcu_head *head)
521{
522 struct inode *inode = container_of(head, struct inode, i_rcu);
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +1100523 kmem_cache_free(fat_inode_cachep, MSDOS_I(inode));
524}
525
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526static void fat_destroy_inode(struct inode *inode)
527{
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +1100528 call_rcu(&inode->i_rcu, fat_i_callback);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529}
530
Alexey Dobriyan51cc5062008-07-25 19:45:34 -0700531static void init_once(void *foo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532{
533 struct msdos_inode_info *ei = (struct msdos_inode_info *)foo;
534
Christoph Lametera35afb82007-05-16 22:10:57 -0700535 spin_lock_init(&ei->cache_lru_lock);
536 ei->nr_caches = 0;
537 ei->cache_valid_id = FAT_CACHE_VALID + 1;
538 INIT_LIST_HEAD(&ei->cache_lru);
539 INIT_HLIST_NODE(&ei->i_fat_hash);
Steven J. Magnani7669e8f2012-10-04 17:14:45 -0700540 INIT_HLIST_NODE(&ei->i_dir_hash);
Christoph Lametera35afb82007-05-16 22:10:57 -0700541 inode_init_once(&ei->vfs_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542}
543
544static int __init fat_init_inodecache(void)
545{
546 fat_inode_cachep = kmem_cache_create("fat_inode_cache",
547 sizeof(struct msdos_inode_info),
Paul Jacksonfffb60f2006-03-24 03:16:06 -0800548 0, (SLAB_RECLAIM_ACCOUNT|
549 SLAB_MEM_SPREAD),
Paul Mundt20c2df82007-07-20 10:11:58 +0900550 init_once);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 if (fat_inode_cachep == NULL)
552 return -ENOMEM;
553 return 0;
554}
555
556static void __exit fat_destroy_inodecache(void)
557{
Kirill A. Shutemov8c0a8532012-09-26 11:33:07 +1000558 /*
559 * Make sure all delayed rcu free inodes are flushed before we
560 * destroy cache.
561 */
562 rcu_barrier();
Alexey Dobriyan1a1d92c2006-09-27 01:49:40 -0700563 kmem_cache_destroy(fat_inode_cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564}
565
566static int fat_remount(struct super_block *sb, int *flags, char *data)
567{
568 struct msdos_sb_info *sbi = MSDOS_SB(sb);
569 *flags |= MS_NODIRATIME | (sbi->options.isvfat ? 0 : MS_NOATIME);
570 return 0;
571}
572
David Howells726c3342006-06-23 02:02:58 -0700573static int fat_statfs(struct dentry *dentry, struct kstatfs *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574{
Coly Liaac49b72009-04-02 16:59:35 -0700575 struct super_block *sb = dentry->d_sb;
576 struct msdos_sb_info *sbi = MSDOS_SB(sb);
577 u64 id = huge_encode_dev(sb->s_bdev->bd_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578
579 /* If the count of free cluster is still unknown, counts it here. */
OGAWA Hirofumi606e4232008-04-28 02:16:27 -0700580 if (sbi->free_clusters == -1 || !sbi->free_clus_valid) {
David Howells726c3342006-06-23 02:02:58 -0700581 int err = fat_count_free_clusters(dentry->d_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 if (err)
583 return err;
584 }
585
David Howells726c3342006-06-23 02:02:58 -0700586 buf->f_type = dentry->d_sb->s_magic;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587 buf->f_bsize = sbi->cluster_size;
588 buf->f_blocks = sbi->max_cluster - FAT_START_ENT;
589 buf->f_bfree = sbi->free_clusters;
590 buf->f_bavail = sbi->free_clusters;
Coly Liaac49b72009-04-02 16:59:35 -0700591 buf->f_fsid.val[0] = (u32)id;
592 buf->f_fsid.val[1] = (u32)(id >> 32);
OGAWA Hirofumif68e5422011-04-12 21:08:39 +0900593 buf->f_namelen =
594 (sbi->options.isvfat ? FAT_LFN_LEN : 12) * NLS_MAX_CHARSET_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595
596 return 0;
597}
598
Steven J. Magnani7669e8f2012-10-04 17:14:45 -0700599static inline loff_t fat_i_pos_read(struct msdos_sb_info *sbi,
600 struct inode *inode)
601{
602 loff_t i_pos;
603#if BITS_PER_LONG == 32
604 spin_lock(&sbi->inode_hash_lock);
605#endif
606 i_pos = MSDOS_I(inode)->i_pos;
607#if BITS_PER_LONG == 32
608 spin_unlock(&sbi->inode_hash_lock);
609#endif
610 return i_pos;
611}
612
Christoph Hellwiga9185b42010-03-05 09:21:37 +0100613static int __fat_write_inode(struct inode *inode, int wait)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614{
615 struct super_block *sb = inode->i_sb;
616 struct msdos_sb_info *sbi = MSDOS_SB(sb);
617 struct buffer_head *bh;
618 struct msdos_dir_entry *raw_entry;
619 loff_t i_pos;
Linus Torvalds5f22ca92008-08-20 08:31:19 -0700620 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621
OGAWA Hirofumi9ca59f42008-11-06 12:53:57 -0800622 if (inode->i_ino == MSDOS_ROOT_INO)
623 return 0;
624
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625retry:
OGAWA Hirofumi9ca59f42008-11-06 12:53:57 -0800626 i_pos = fat_i_pos_read(sbi, inode);
627 if (!i_pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628 return 0;
629
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630 bh = sb_bread(sb, i_pos >> sbi->dir_per_block_bits);
631 if (!bh) {
Alexey Fisher869f58c2011-04-12 21:08:38 +0900632 fat_msg(sb, KERN_ERR, "unable to read inode block "
633 "for updating (i_pos %lld)", i_pos);
Linus Torvalds5f22ca92008-08-20 08:31:19 -0700634 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635 }
636 spin_lock(&sbi->inode_hash_lock);
637 if (i_pos != MSDOS_I(inode)->i_pos) {
638 spin_unlock(&sbi->inode_hash_lock);
639 brelse(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640 goto retry;
641 }
642
643 raw_entry = &((struct msdos_dir_entry *) (bh->b_data))
644 [i_pos & (sbi->dir_per_block - 1)];
645 if (S_ISDIR(inode->i_mode))
646 raw_entry->size = 0;
647 else
648 raw_entry->size = cpu_to_le32(inode->i_size);
OGAWA Hirofumi9c0aa1b2008-11-06 12:53:54 -0800649 raw_entry->attr = fat_make_attrs(inode);
Steven J. Magnania943ed72012-07-30 14:42:13 -0700650 fat_set_start(raw_entry, MSDOS_I(inode)->i_logstart);
OGAWA Hirofumi7decd1c2008-11-06 12:53:47 -0800651 fat_time_unix2fat(sbi, &inode->i_mtime, &raw_entry->time,
652 &raw_entry->date, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653 if (sbi->options.isvfat) {
Stephane Kardas62a36c42005-09-21 09:55:45 -0700654 __le16 atime;
OGAWA Hirofumi7decd1c2008-11-06 12:53:47 -0800655 fat_time_unix2fat(sbi, &inode->i_ctime, &raw_entry->ctime,
656 &raw_entry->cdate, &raw_entry->ctime_cs);
657 fat_time_unix2fat(sbi, &inode->i_atime, &atime,
658 &raw_entry->adate, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659 }
660 spin_unlock(&sbi->inode_hash_lock);
661 mark_buffer_dirty(bh);
Linus Torvalds5f22ca92008-08-20 08:31:19 -0700662 err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663 if (wait)
664 err = sync_dirty_buffer(bh);
665 brelse(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666 return err;
667}
668
Christoph Hellwiga9185b42010-03-05 09:21:37 +0100669static int fat_write_inode(struct inode *inode, struct writeback_control *wbc)
670{
Artem Bityutskiy78491182012-05-31 16:26:13 -0700671 int err;
672
673 if (inode->i_ino == MSDOS_FSINFO_INO) {
674 struct super_block *sb = inode->i_sb;
675
Marco Stornellie40b34c2012-10-06 12:40:03 +0200676 mutex_lock(&MSDOS_SB(sb)->s_lock);
Artem Bityutskiy78491182012-05-31 16:26:13 -0700677 err = fat_clusters_flush(sb);
Marco Stornellie40b34c2012-10-06 12:40:03 +0200678 mutex_unlock(&MSDOS_SB(sb)->s_lock);
Artem Bityutskiy78491182012-05-31 16:26:13 -0700679 } else
680 err = __fat_write_inode(inode, wbc->sync_mode == WB_SYNC_ALL);
681
682 return err;
Christoph Hellwiga9185b42010-03-05 09:21:37 +0100683}
684
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685int fat_sync_inode(struct inode *inode)
686{
Christoph Hellwiga9185b42010-03-05 09:21:37 +0100687 return __fat_write_inode(inode, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688}
689
OGAWA Hirofumi7c709d02006-01-08 01:02:10 -0800690EXPORT_SYMBOL_GPL(fat_sync_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691
Al Viro34c80b12011-12-08 21:32:45 -0500692static int fat_show_options(struct seq_file *m, struct dentry *root);
Josef 'Jeff' Sipekee9b6d62007-02-12 00:55:41 -0800693static const struct super_operations fat_sops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694 .alloc_inode = fat_alloc_inode,
695 .destroy_inode = fat_destroy_inode,
696 .write_inode = fat_write_inode,
Al Virodeee3ce2010-06-05 19:28:32 -0400697 .evict_inode = fat_evict_inode,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698 .put_super = fat_put_super,
699 .statfs = fat_statfs,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700 .remount_fs = fat_remount,
701
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702 .show_options = fat_show_options,
703};
704
Christoph Hellwig39655162007-10-21 16:42:17 -0700705static const struct export_operations fat_export_ops = {
Christoph Hellwig1305edad2007-10-21 16:42:11 -0700706 .fh_to_dentry = fat_fh_to_dentry,
Steven J. Magnani7669e8f2012-10-04 17:14:45 -0700707 .fh_to_parent = fat_fh_to_parent,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 .get_parent = fat_get_parent,
709};
710
Al Viro34c80b12011-12-08 21:32:45 -0500711static int fat_show_options(struct seq_file *m, struct dentry *root)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712{
Al Viro34c80b12011-12-08 21:32:45 -0500713 struct msdos_sb_info *sbi = MSDOS_SB(root->d_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714 struct fat_mount_options *opts = &sbi->options;
715 int isvfat = opts->isvfat;
716
Eric W. Biederman170782e2012-02-07 16:25:39 -0800717 if (!uid_eq(opts->fs_uid, GLOBAL_ROOT_UID))
718 seq_printf(m, ",uid=%u",
719 from_kuid_munged(&init_user_ns, opts->fs_uid));
720 if (!gid_eq(opts->fs_gid, GLOBAL_ROOT_GID))
721 seq_printf(m, ",gid=%u",
722 from_kgid_munged(&init_user_ns, opts->fs_gid));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723 seq_printf(m, ",fmask=%04o", opts->fs_fmask);
724 seq_printf(m, ",dmask=%04o", opts->fs_dmask);
OGAWA Hirofumi1ae43f82008-04-28 02:16:26 -0700725 if (opts->allow_utime)
726 seq_printf(m, ",allow_utime=%04o", opts->allow_utime);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727 if (sbi->nls_disk)
728 seq_printf(m, ",codepage=%s", sbi->nls_disk->charset);
729 if (isvfat) {
730 if (sbi->nls_io)
731 seq_printf(m, ",iocharset=%s", sbi->nls_io->charset);
732
733 switch (opts->shortname) {
734 case VFAT_SFN_DISPLAY_WIN95 | VFAT_SFN_CREATE_WIN95:
735 seq_puts(m, ",shortname=win95");
736 break;
737 case VFAT_SFN_DISPLAY_WINNT | VFAT_SFN_CREATE_WINNT:
738 seq_puts(m, ",shortname=winnt");
739 break;
740 case VFAT_SFN_DISPLAY_WINNT | VFAT_SFN_CREATE_WIN95:
741 seq_puts(m, ",shortname=mixed");
742 break;
743 case VFAT_SFN_DISPLAY_LOWER | VFAT_SFN_CREATE_WIN95:
Paul Wise95523472009-08-01 21:30:31 +0900744 seq_puts(m, ",shortname=lower");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745 break;
746 default:
747 seq_puts(m, ",shortname=unknown");
748 break;
749 }
750 }
751 if (opts->name_check != 'n')
752 seq_printf(m, ",check=%c", opts->name_check);
OGAWA Hirofumi28ec0392007-05-08 00:31:01 -0700753 if (opts->usefree)
754 seq_puts(m, ",usefree");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755 if (opts->quiet)
756 seq_puts(m, ",quiet");
Steven J. Magnani7669e8f2012-10-04 17:14:45 -0700757 if (opts->nfs)
758 seq_puts(m, ",nfs");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759 if (opts->showexec)
760 seq_puts(m, ",showexec");
761 if (opts->sys_immutable)
762 seq_puts(m, ",sys_immutable");
763 if (!isvfat) {
764 if (opts->dotsOK)
765 seq_puts(m, ",dotsOK=yes");
766 if (opts->nocase)
767 seq_puts(m, ",nocase");
768 } else {
769 if (opts->utf8)
770 seq_puts(m, ",utf8");
771 if (opts->unicode_xlate)
772 seq_puts(m, ",uni_xlate");
773 if (!opts->numtail)
774 seq_puts(m, ",nonumtail");
OGAWA Hirofumidfc209c2008-11-06 12:53:55 -0800775 if (opts->rodir)
776 seq_puts(m, ",rodir");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777 }
OGAWA Hirofumidfc209c2008-11-06 12:53:55 -0800778 if (opts->flush)
Miklos Szeredic1fca3b2008-02-08 04:21:42 -0800779 seq_puts(m, ",flush");
Joe Petersonb271e062008-07-25 01:46:47 -0700780 if (opts->tz_utc)
781 seq_puts(m, ",tz=UTC");
Denis Karpov85c78592009-06-04 02:34:22 +0900782 if (opts->errors == FAT_ERRORS_CONT)
783 seq_puts(m, ",errors=continue");
784 else if (opts->errors == FAT_ERRORS_PANIC)
785 seq_puts(m, ",errors=panic");
786 else
787 seq_puts(m, ",errors=remount-ro");
Christoph Hellwig681142f2009-11-21 20:28:52 +0900788 if (opts->discard)
789 seq_puts(m, ",discard");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790
791 return 0;
792}
793
794enum {
795 Opt_check_n, Opt_check_r, Opt_check_s, Opt_uid, Opt_gid,
OGAWA Hirofumi1ae43f82008-04-28 02:16:26 -0700796 Opt_umask, Opt_dmask, Opt_fmask, Opt_allow_utime, Opt_codepage,
797 Opt_usefree, Opt_nocase, Opt_quiet, Opt_showexec, Opt_debug,
798 Opt_immutable, Opt_dots, Opt_nodots,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799 Opt_charset, Opt_shortname_lower, Opt_shortname_win95,
800 Opt_shortname_winnt, Opt_shortname_mixed, Opt_utf8_no, Opt_utf8_yes,
801 Opt_uni_xl_no, Opt_uni_xl_yes, Opt_nonumtail_no, Opt_nonumtail_yes,
Geert Uytterhoevend7a83c02011-10-31 20:50:45 +0100802 Opt_obsolete, Opt_flush, Opt_tz_utc, Opt_rodir, Opt_err_cont,
Steven J. Magnani7669e8f2012-10-04 17:14:45 -0700803 Opt_err_panic, Opt_err_ro, Opt_discard, Opt_nfs, Opt_err,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804};
805
Steven Whitehousea447c092008-10-13 10:46:57 +0100806static const match_table_t fat_tokens = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807 {Opt_check_r, "check=relaxed"},
808 {Opt_check_s, "check=strict"},
809 {Opt_check_n, "check=normal"},
810 {Opt_check_r, "check=r"},
811 {Opt_check_s, "check=s"},
812 {Opt_check_n, "check=n"},
813 {Opt_uid, "uid=%u"},
814 {Opt_gid, "gid=%u"},
815 {Opt_umask, "umask=%o"},
816 {Opt_dmask, "dmask=%o"},
817 {Opt_fmask, "fmask=%o"},
OGAWA Hirofumi1ae43f82008-04-28 02:16:26 -0700818 {Opt_allow_utime, "allow_utime=%o"},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819 {Opt_codepage, "codepage=%u"},
OGAWA Hirofumi28ec0392007-05-08 00:31:01 -0700820 {Opt_usefree, "usefree"},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821 {Opt_nocase, "nocase"},
822 {Opt_quiet, "quiet"},
823 {Opt_showexec, "showexec"},
824 {Opt_debug, "debug"},
825 {Opt_immutable, "sys_immutable"},
Denis Karpov85c78592009-06-04 02:34:22 +0900826 {Opt_flush, "flush"},
827 {Opt_tz_utc, "tz=UTC"},
828 {Opt_err_cont, "errors=continue"},
829 {Opt_err_panic, "errors=panic"},
830 {Opt_err_ro, "errors=remount-ro"},
Christoph Hellwig681142f2009-11-21 20:28:52 +0900831 {Opt_discard, "discard"},
Steven J. Magnani7669e8f2012-10-04 17:14:45 -0700832 {Opt_nfs, "nfs"},
Geert Uytterhoevend7a83c02011-10-31 20:50:45 +0100833 {Opt_obsolete, "conv=binary"},
834 {Opt_obsolete, "conv=text"},
835 {Opt_obsolete, "conv=auto"},
836 {Opt_obsolete, "conv=b"},
837 {Opt_obsolete, "conv=t"},
838 {Opt_obsolete, "conv=a"},
839 {Opt_obsolete, "fat=%u"},
840 {Opt_obsolete, "blocksize=%u"},
841 {Opt_obsolete, "cvf_format=%20s"},
842 {Opt_obsolete, "cvf_options=%100s"},
843 {Opt_obsolete, "posix"},
Chris Masonae78bf92006-09-29 02:00:03 -0700844 {Opt_err, NULL},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845};
Steven Whitehousea447c092008-10-13 10:46:57 +0100846static const match_table_t msdos_tokens = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847 {Opt_nodots, "nodots"},
848 {Opt_nodots, "dotsOK=no"},
849 {Opt_dots, "dots"},
850 {Opt_dots, "dotsOK=yes"},
851 {Opt_err, NULL}
852};
Steven Whitehousea447c092008-10-13 10:46:57 +0100853static const match_table_t vfat_tokens = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854 {Opt_charset, "iocharset=%s"},
855 {Opt_shortname_lower, "shortname=lower"},
856 {Opt_shortname_win95, "shortname=win95"},
857 {Opt_shortname_winnt, "shortname=winnt"},
858 {Opt_shortname_mixed, "shortname=mixed"},
859 {Opt_utf8_no, "utf8=0"}, /* 0 or no or false */
860 {Opt_utf8_no, "utf8=no"},
861 {Opt_utf8_no, "utf8=false"},
862 {Opt_utf8_yes, "utf8=1"}, /* empty or 1 or yes or true */
863 {Opt_utf8_yes, "utf8=yes"},
864 {Opt_utf8_yes, "utf8=true"},
865 {Opt_utf8_yes, "utf8"},
866 {Opt_uni_xl_no, "uni_xlate=0"}, /* 0 or no or false */
867 {Opt_uni_xl_no, "uni_xlate=no"},
868 {Opt_uni_xl_no, "uni_xlate=false"},
869 {Opt_uni_xl_yes, "uni_xlate=1"}, /* empty or 1 or yes or true */
870 {Opt_uni_xl_yes, "uni_xlate=yes"},
871 {Opt_uni_xl_yes, "uni_xlate=true"},
872 {Opt_uni_xl_yes, "uni_xlate"},
873 {Opt_nonumtail_no, "nonumtail=0"}, /* 0 or no or false */
874 {Opt_nonumtail_no, "nonumtail=no"},
875 {Opt_nonumtail_no, "nonumtail=false"},
876 {Opt_nonumtail_yes, "nonumtail=1"}, /* empty or 1 or yes or true */
877 {Opt_nonumtail_yes, "nonumtail=yes"},
878 {Opt_nonumtail_yes, "nonumtail=true"},
879 {Opt_nonumtail_yes, "nonumtail"},
OGAWA Hirofumidfc209c2008-11-06 12:53:55 -0800880 {Opt_rodir, "rodir"},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881 {Opt_err, NULL}
882};
883
Alexey Fisher869f58c2011-04-12 21:08:38 +0900884static int parse_options(struct super_block *sb, char *options, int is_vfat,
885 int silent, int *debug, struct fat_mount_options *opts)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886{
887 char *p;
888 substring_t args[MAX_OPT_ARGS];
889 int option;
890 char *iocharset;
891
892 opts->isvfat = is_vfat;
893
David Howellsf0ce7ee2008-11-14 10:38:52 +1100894 opts->fs_uid = current_uid();
895 opts->fs_gid = current_gid();
OGAWA Hirofumi3e107602009-06-20 21:50:07 +0900896 opts->fs_fmask = opts->fs_dmask = current_umask();
OGAWA Hirofumi1ae43f82008-04-28 02:16:26 -0700897 opts->allow_utime = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898 opts->codepage = fat_default_codepage;
899 opts->iocharset = fat_default_iocharset;
OGAWA Hirofumidfc209c2008-11-06 12:53:55 -0800900 if (is_vfat) {
Paul Wise95523472009-08-01 21:30:31 +0900901 opts->shortname = VFAT_SFN_DISPLAY_WINNT|VFAT_SFN_CREATE_WIN95;
OGAWA Hirofumidfc209c2008-11-06 12:53:55 -0800902 opts->rodir = 0;
903 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904 opts->shortname = 0;
OGAWA Hirofumidfc209c2008-11-06 12:53:55 -0800905 opts->rodir = 1;
906 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907 opts->name_check = 'n';
908 opts->quiet = opts->showexec = opts->sys_immutable = opts->dotsOK = 0;
909 opts->utf8 = opts->unicode_xlate = 0;
910 opts->numtail = 1;
OGAWA Hirofumi28ec0392007-05-08 00:31:01 -0700911 opts->usefree = opts->nocase = 0;
Joe Petersonb271e062008-07-25 01:46:47 -0700912 opts->tz_utc = 0;
Steven J. Magnani7669e8f2012-10-04 17:14:45 -0700913 opts->nfs = 0;
Denis Karpov85c78592009-06-04 02:34:22 +0900914 opts->errors = FAT_ERRORS_RO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915 *debug = 0;
916
917 if (!options)
OGAWA Hirofumi8d44d972008-07-25 01:46:41 -0700918 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919
920 while ((p = strsep(&options, ",")) != NULL) {
921 int token;
922 if (!*p)
923 continue;
924
925 token = match_token(p, fat_tokens, args);
926 if (token == Opt_err) {
927 if (is_vfat)
928 token = match_token(p, vfat_tokens, args);
929 else
930 token = match_token(p, msdos_tokens, args);
931 }
932 switch (token) {
933 case Opt_check_s:
934 opts->name_check = 's';
935 break;
936 case Opt_check_r:
937 opts->name_check = 'r';
938 break;
939 case Opt_check_n:
940 opts->name_check = 'n';
941 break;
OGAWA Hirofumi28ec0392007-05-08 00:31:01 -0700942 case Opt_usefree:
943 opts->usefree = 1;
944 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945 case Opt_nocase:
946 if (!is_vfat)
947 opts->nocase = 1;
948 else {
949 /* for backward compatibility */
950 opts->shortname = VFAT_SFN_DISPLAY_WIN95
951 | VFAT_SFN_CREATE_WIN95;
952 }
953 break;
954 case Opt_quiet:
955 opts->quiet = 1;
956 break;
957 case Opt_showexec:
958 opts->showexec = 1;
959 break;
960 case Opt_debug:
961 *debug = 1;
962 break;
963 case Opt_immutable:
964 opts->sys_immutable = 1;
965 break;
966 case Opt_uid:
967 if (match_int(&args[0], &option))
968 return 0;
Eric W. Biederman170782e2012-02-07 16:25:39 -0800969 opts->fs_uid = make_kuid(current_user_ns(), option);
970 if (!uid_valid(opts->fs_uid))
971 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972 break;
973 case Opt_gid:
974 if (match_int(&args[0], &option))
975 return 0;
Eric W. Biederman170782e2012-02-07 16:25:39 -0800976 opts->fs_gid = make_kgid(current_user_ns(), option);
977 if (!gid_valid(opts->fs_gid))
978 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979 break;
980 case Opt_umask:
981 if (match_octal(&args[0], &option))
982 return 0;
983 opts->fs_fmask = opts->fs_dmask = option;
984 break;
985 case Opt_dmask:
986 if (match_octal(&args[0], &option))
987 return 0;
988 opts->fs_dmask = option;
989 break;
990 case Opt_fmask:
991 if (match_octal(&args[0], &option))
992 return 0;
993 opts->fs_fmask = option;
994 break;
OGAWA Hirofumi1ae43f82008-04-28 02:16:26 -0700995 case Opt_allow_utime:
996 if (match_octal(&args[0], &option))
997 return 0;
998 opts->allow_utime = option & (S_IWGRP | S_IWOTH);
999 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000 case Opt_codepage:
1001 if (match_int(&args[0], &option))
1002 return 0;
1003 opts->codepage = option;
1004 break;
Chris Masonae78bf92006-09-29 02:00:03 -07001005 case Opt_flush:
1006 opts->flush = 1;
1007 break;
Joe Petersonb271e062008-07-25 01:46:47 -07001008 case Opt_tz_utc:
1009 opts->tz_utc = 1;
1010 break;
Denis Karpov85c78592009-06-04 02:34:22 +09001011 case Opt_err_cont:
1012 opts->errors = FAT_ERRORS_CONT;
1013 break;
1014 case Opt_err_panic:
1015 opts->errors = FAT_ERRORS_PANIC;
1016 break;
1017 case Opt_err_ro:
1018 opts->errors = FAT_ERRORS_RO;
1019 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020
1021 /* msdos specific */
1022 case Opt_dots:
1023 opts->dotsOK = 1;
1024 break;
1025 case Opt_nodots:
1026 opts->dotsOK = 0;
1027 break;
1028
1029 /* vfat specific */
1030 case Opt_charset:
1031 if (opts->iocharset != fat_default_iocharset)
1032 kfree(opts->iocharset);
1033 iocharset = match_strdup(&args[0]);
1034 if (!iocharset)
1035 return -ENOMEM;
1036 opts->iocharset = iocharset;
1037 break;
1038 case Opt_shortname_lower:
1039 opts->shortname = VFAT_SFN_DISPLAY_LOWER
1040 | VFAT_SFN_CREATE_WIN95;
1041 break;
1042 case Opt_shortname_win95:
1043 opts->shortname = VFAT_SFN_DISPLAY_WIN95
1044 | VFAT_SFN_CREATE_WIN95;
1045 break;
1046 case Opt_shortname_winnt:
1047 opts->shortname = VFAT_SFN_DISPLAY_WINNT
1048 | VFAT_SFN_CREATE_WINNT;
1049 break;
1050 case Opt_shortname_mixed:
1051 opts->shortname = VFAT_SFN_DISPLAY_WINNT
1052 | VFAT_SFN_CREATE_WIN95;
1053 break;
1054 case Opt_utf8_no: /* 0 or no or false */
1055 opts->utf8 = 0;
1056 break;
1057 case Opt_utf8_yes: /* empty or 1 or yes or true */
1058 opts->utf8 = 1;
1059 break;
1060 case Opt_uni_xl_no: /* 0 or no or false */
1061 opts->unicode_xlate = 0;
1062 break;
1063 case Opt_uni_xl_yes: /* empty or 1 or yes or true */
1064 opts->unicode_xlate = 1;
1065 break;
1066 case Opt_nonumtail_no: /* 0 or no or false */
1067 opts->numtail = 1; /* negated option */
1068 break;
1069 case Opt_nonumtail_yes: /* empty or 1 or yes or true */
1070 opts->numtail = 0; /* negated option */
1071 break;
OGAWA Hirofumidfc209c2008-11-06 12:53:55 -08001072 case Opt_rodir:
1073 opts->rodir = 1;
1074 break;
Christoph Hellwig681142f2009-11-21 20:28:52 +09001075 case Opt_discard:
1076 opts->discard = 1;
1077 break;
Steven J. Magnani7669e8f2012-10-04 17:14:45 -07001078 case Opt_nfs:
1079 opts->nfs = 1;
1080 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081
1082 /* obsolete mount options */
Geert Uytterhoevend7a83c02011-10-31 20:50:45 +01001083 case Opt_obsolete:
Alexey Fisher869f58c2011-04-12 21:08:38 +09001084 fat_msg(sb, KERN_INFO, "\"%s\" option is obsolete, "
1085 "not supported now", p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086 break;
1087 /* unknown option */
1088 default:
Christoph Hellwig41a34a42005-11-08 21:34:57 -08001089 if (!silent) {
Alexey Fisher869f58c2011-04-12 21:08:38 +09001090 fat_msg(sb, KERN_ERR,
1091 "Unrecognized mount option \"%s\" "
1092 "or missing value", p);
Christoph Hellwig41a34a42005-11-08 21:34:57 -08001093 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094 return -EINVAL;
1095 }
1096 }
OGAWA Hirofumi8d44d972008-07-25 01:46:41 -07001097
1098out:
Alexey Dobriyan4de151d2006-03-22 00:13:35 +01001099 /* UTF-8 doesn't provide FAT semantics */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100 if (!strcmp(opts->iocharset, "utf8")) {
Mihai Moldovan186b5372011-08-17 19:10:08 +09001101 fat_msg(sb, KERN_WARNING, "utf8 is not a recommended IO charset"
OGAWA Hirofumi8d44d972008-07-25 01:46:41 -07001102 " for FAT filesystems, filesystem will be "
Mihai Moldovan186b5372011-08-17 19:10:08 +09001103 "case sensitive!");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104 }
1105
OGAWA Hirofumi1ae43f82008-04-28 02:16:26 -07001106 /* If user doesn't specify allow_utime, it's initialized from dmask. */
1107 if (opts->allow_utime == (unsigned short)-1)
1108 opts->allow_utime = ~opts->fs_dmask & (S_IWGRP | S_IWOTH);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109 if (opts->unicode_xlate)
1110 opts->utf8 = 0;
1111
1112 return 0;
1113}
1114
1115static int fat_read_root(struct inode *inode)
1116{
1117 struct super_block *sb = inode->i_sb;
1118 struct msdos_sb_info *sbi = MSDOS_SB(sb);
1119 int error;
1120
1121 MSDOS_I(inode)->i_pos = 0;
1122 inode->i_uid = sbi->options.fs_uid;
1123 inode->i_gid = sbi->options.fs_gid;
1124 inode->i_version++;
1125 inode->i_generation = 0;
OGAWA Hirofumi9c0aa1b2008-11-06 12:53:54 -08001126 inode->i_mode = fat_make_mode(sbi, ATTR_DIR, S_IRWXUGO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127 inode->i_op = sbi->dir_ops;
1128 inode->i_fop = &fat_dir_operations;
1129 if (sbi->fat_bits == 32) {
1130 MSDOS_I(inode)->i_start = sbi->root_cluster;
1131 error = fat_calc_dir_size(inode);
1132 if (error < 0)
1133 return error;
1134 } else {
1135 MSDOS_I(inode)->i_start = 0;
1136 inode->i_size = sbi->dir_entries * sizeof(struct msdos_dir_entry);
1137 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138 inode->i_blocks = ((inode->i_size + (sbi->cluster_size - 1))
1139 & ~((loff_t)sbi->cluster_size - 1)) >> 9;
1140 MSDOS_I(inode)->i_logstart = 0;
1141 MSDOS_I(inode)->mmu_private = inode->i_size;
1142
OGAWA Hirofumi9c0aa1b2008-11-06 12:53:54 -08001143 fat_save_attrs(inode, ATTR_DIR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144 inode->i_mtime.tv_sec = inode->i_atime.tv_sec = inode->i_ctime.tv_sec = 0;
1145 inode->i_mtime.tv_nsec = inode->i_atime.tv_nsec = inode->i_ctime.tv_nsec = 0;
Miklos Szeredibfe86842011-10-28 14:13:29 +02001146 set_nlink(inode, fat_subdirs(inode)+2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147
1148 return 0;
1149}
1150
1151/*
1152 * Read the super block of an MS-DOS FS.
1153 */
OGAWA Hirofumi384f5c92011-04-12 21:08:37 +09001154int fat_fill_super(struct super_block *sb, void *data, int silent, int isvfat,
Al Viro3d239852010-12-18 10:44:00 -05001155 void (*setup)(struct super_block *))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156{
Al Virob5224122009-06-07 13:44:36 -04001157 struct inode *root_inode = NULL, *fat_inode = NULL;
Artem Bityutskiy020ac5b2012-05-31 16:26:12 -07001158 struct inode *fsinfo_inode = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159 struct buffer_head *bh;
1160 struct fat_boot_sector *b;
1161 struct msdos_sb_info *sbi;
1162 u16 logical_sector_size;
1163 u32 total_sectors, total_clusters, fat_clusters, rootdir_sectors;
1164 int debug;
1165 unsigned int media;
1166 long error;
1167 char buf[50];
1168
Linus Torvalds8f593422008-05-19 19:53:01 -07001169 /*
1170 * GFP_KERNEL is ok here, because while we do hold the
1171 * supeblock lock, memory pressure can't call back into
1172 * the filesystem, since we're only just about to mount
1173 * it and have no inodes etc active!
1174 */
Panagiotis Issarisf8314dc2006-09-27 01:49:37 -07001175 sbi = kzalloc(sizeof(struct msdos_sb_info), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176 if (!sbi)
1177 return -ENOMEM;
1178 sb->s_fs_info = sbi;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179
1180 sb->s_flags |= MS_NODIRATIME;
1181 sb->s_magic = MSDOS_SUPER_MAGIC;
1182 sb->s_op = &fat_sops;
1183 sb->s_export_op = &fat_export_ops;
OGAWA Hirofumiaaa04b42010-05-24 14:33:12 -07001184 ratelimit_state_init(&sbi->ratelimit, DEFAULT_RATELIMIT_INTERVAL,
1185 DEFAULT_RATELIMIT_BURST);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186
Alexey Fisher869f58c2011-04-12 21:08:38 +09001187 error = parse_options(sb, data, isvfat, silent, &debug, &sbi->options);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188 if (error)
1189 goto out_fail;
1190
Al Viro3d239852010-12-18 10:44:00 -05001191 setup(sb); /* flavour-specific stuff that needs options */
1192
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193 error = -EIO;
1194 sb_min_blocksize(sb, 512);
1195 bh = sb_bread(sb, 0);
1196 if (bh == NULL) {
Alexey Fisher869f58c2011-04-12 21:08:38 +09001197 fat_msg(sb, KERN_ERR, "unable to read boot sector");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198 goto out_fail;
1199 }
1200
1201 b = (struct fat_boot_sector *) bh->b_data;
1202 if (!b->reserved) {
1203 if (!silent)
Alexey Fisher869f58c2011-04-12 21:08:38 +09001204 fat_msg(sb, KERN_ERR, "bogus number of reserved sectors");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205 brelse(bh);
1206 goto out_invalid;
1207 }
1208 if (!b->fats) {
1209 if (!silent)
Alexey Fisher869f58c2011-04-12 21:08:38 +09001210 fat_msg(sb, KERN_ERR, "bogus number of FAT structure");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001211 brelse(bh);
1212 goto out_invalid;
1213 }
1214
1215 /*
1216 * Earlier we checked here that b->secs_track and b->head are nonzero,
1217 * but it turns out valid FAT filesystems can have zero there.
1218 */
1219
1220 media = b->media;
Andrew Morton73f20e52008-04-28 02:16:30 -07001221 if (!fat_valid_media(media)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222 if (!silent)
Alexey Fisher869f58c2011-04-12 21:08:38 +09001223 fat_msg(sb, KERN_ERR, "invalid media value (0x%02x)",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224 media);
1225 brelse(bh);
1226 goto out_invalid;
1227 }
Harvey Harrison803f4452008-04-29 01:03:43 -07001228 logical_sector_size = get_unaligned_le16(&b->sector_size);
Vignesh Babu BMe7d709c2007-05-08 00:24:27 -07001229 if (!is_power_of_2(logical_sector_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230 || (logical_sector_size < 512)
Olof Johansson9f354852008-04-28 02:16:32 -07001231 || (logical_sector_size > 4096)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232 if (!silent)
Alexey Fisher869f58c2011-04-12 21:08:38 +09001233 fat_msg(sb, KERN_ERR, "bogus logical sector size %u",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234 logical_sector_size);
1235 brelse(bh);
1236 goto out_invalid;
1237 }
1238 sbi->sec_per_clus = b->sec_per_clus;
Vignesh Babu BMe7d709c2007-05-08 00:24:27 -07001239 if (!is_power_of_2(sbi->sec_per_clus)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240 if (!silent)
Alexey Fisher869f58c2011-04-12 21:08:38 +09001241 fat_msg(sb, KERN_ERR, "bogus sectors per cluster %u",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242 sbi->sec_per_clus);
1243 brelse(bh);
1244 goto out_invalid;
1245 }
1246
1247 if (logical_sector_size < sb->s_blocksize) {
Alexey Fisher869f58c2011-04-12 21:08:38 +09001248 fat_msg(sb, KERN_ERR, "logical sector size too small for device"
1249 " (logical sector size = %u)", logical_sector_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250 brelse(bh);
1251 goto out_fail;
1252 }
1253 if (logical_sector_size > sb->s_blocksize) {
1254 brelse(bh);
1255
1256 if (!sb_set_blocksize(sb, logical_sector_size)) {
Alexey Fisher869f58c2011-04-12 21:08:38 +09001257 fat_msg(sb, KERN_ERR, "unable to set blocksize %u",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258 logical_sector_size);
1259 goto out_fail;
1260 }
1261 bh = sb_bread(sb, 0);
1262 if (bh == NULL) {
Alexey Fisher869f58c2011-04-12 21:08:38 +09001263 fat_msg(sb, KERN_ERR, "unable to read boot sector"
1264 " (logical sector size = %lu)",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265 sb->s_blocksize);
1266 goto out_fail;
1267 }
1268 b = (struct fat_boot_sector *) bh->b_data;
1269 }
1270
Marco Stornellie40b34c2012-10-06 12:40:03 +02001271 mutex_init(&sbi->s_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272 sbi->cluster_size = sb->s_blocksize * sbi->sec_per_clus;
1273 sbi->cluster_bits = ffs(sbi->cluster_size) - 1;
1274 sbi->fats = b->fats;
1275 sbi->fat_bits = 0; /* Don't know yet */
1276 sbi->fat_start = le16_to_cpu(b->reserved);
1277 sbi->fat_length = le16_to_cpu(b->fat_length);
1278 sbi->root_cluster = 0;
1279 sbi->free_clusters = -1; /* Don't know yet */
OGAWA Hirofumi606e4232008-04-28 02:16:27 -07001280 sbi->free_clus_valid = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281 sbi->prev_free = FAT_START_ENT;
Namjae Jeon710d4402011-08-17 19:10:09 +09001282 sb->s_maxbytes = 0xffffffff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283
1284 if (!sbi->fat_length && b->fat32_length) {
1285 struct fat_boot_fsinfo *fsinfo;
1286 struct buffer_head *fsinfo_bh;
1287
1288 /* Must be FAT32 */
1289 sbi->fat_bits = 32;
1290 sbi->fat_length = le32_to_cpu(b->fat32_length);
1291 sbi->root_cluster = le32_to_cpu(b->root_cluster);
1292
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293 /* MC - if info_sector is 0, don't multiply by 0 */
1294 sbi->fsinfo_sector = le16_to_cpu(b->info_sector);
1295 if (sbi->fsinfo_sector == 0)
1296 sbi->fsinfo_sector = 1;
1297
1298 fsinfo_bh = sb_bread(sb, sbi->fsinfo_sector);
1299 if (fsinfo_bh == NULL) {
Alexey Fisher869f58c2011-04-12 21:08:38 +09001300 fat_msg(sb, KERN_ERR, "bread failed, FSINFO block"
1301 " (sector = %lu)", sbi->fsinfo_sector);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302 brelse(bh);
1303 goto out_fail;
1304 }
1305
1306 fsinfo = (struct fat_boot_fsinfo *)fsinfo_bh->b_data;
1307 if (!IS_FSINFO(fsinfo)) {
Alexey Fisher869f58c2011-04-12 21:08:38 +09001308 fat_msg(sb, KERN_WARNING, "Invalid FSINFO signature: "
1309 "0x%08x, 0x%08x (sector = %lu)",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310 le32_to_cpu(fsinfo->signature1),
1311 le32_to_cpu(fsinfo->signature2),
1312 sbi->fsinfo_sector);
1313 } else {
OGAWA Hirofumi28ec0392007-05-08 00:31:01 -07001314 if (sbi->options.usefree)
OGAWA Hirofumi606e4232008-04-28 02:16:27 -07001315 sbi->free_clus_valid = 1;
1316 sbi->free_clusters = le32_to_cpu(fsinfo->free_clusters);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317 sbi->prev_free = le32_to_cpu(fsinfo->next_cluster);
1318 }
1319
1320 brelse(fsinfo_bh);
1321 }
1322
1323 sbi->dir_per_block = sb->s_blocksize / sizeof(struct msdos_dir_entry);
1324 sbi->dir_per_block_bits = ffs(sbi->dir_per_block) - 1;
1325
1326 sbi->dir_start = sbi->fat_start + sbi->fats * sbi->fat_length;
Harvey Harrison803f4452008-04-29 01:03:43 -07001327 sbi->dir_entries = get_unaligned_le16(&b->dir_entries);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328 if (sbi->dir_entries & (sbi->dir_per_block - 1)) {
1329 if (!silent)
Alexey Fisher869f58c2011-04-12 21:08:38 +09001330 fat_msg(sb, KERN_ERR, "bogus directroy-entries per block"
1331 " (%u)", sbi->dir_entries);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332 brelse(bh);
1333 goto out_invalid;
1334 }
1335
1336 rootdir_sectors = sbi->dir_entries
1337 * sizeof(struct msdos_dir_entry) / sb->s_blocksize;
1338 sbi->data_start = sbi->dir_start + rootdir_sectors;
Harvey Harrison803f4452008-04-29 01:03:43 -07001339 total_sectors = get_unaligned_le16(&b->sectors);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340 if (total_sectors == 0)
1341 total_sectors = le32_to_cpu(b->total_sect);
1342
1343 total_clusters = (total_sectors - sbi->data_start) / sbi->sec_per_clus;
1344
1345 if (sbi->fat_bits != 32)
1346 sbi->fat_bits = (total_clusters > MAX_FAT12) ? 16 : 12;
1347
1348 /* check that FAT table does not overflow */
1349 fat_clusters = sbi->fat_length * sb->s_blocksize * 8 / sbi->fat_bits;
1350 total_clusters = min(total_clusters, fat_clusters - FAT_START_ENT);
1351 if (total_clusters > MAX_FAT(sb)) {
1352 if (!silent)
Alexey Fisher869f58c2011-04-12 21:08:38 +09001353 fat_msg(sb, KERN_ERR, "count of clusters too big (%u)",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354 total_clusters);
1355 brelse(bh);
1356 goto out_invalid;
1357 }
1358
1359 sbi->max_cluster = total_clusters + FAT_START_ENT;
1360 /* check the free_clusters, it's not necessarily correct */
1361 if (sbi->free_clusters != -1 && sbi->free_clusters > total_clusters)
1362 sbi->free_clusters = -1;
1363 /* check the prev_free, it's not necessarily correct */
1364 sbi->prev_free %= sbi->max_cluster;
1365 if (sbi->prev_free < FAT_START_ENT)
1366 sbi->prev_free = FAT_START_ENT;
1367
1368 brelse(bh);
1369
1370 /* set up enough so that it can read an inode */
1371 fat_hash_init(sb);
Steven J. Magnani7669e8f2012-10-04 17:14:45 -07001372 dir_hash_init(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373 fat_ent_access_init(sb);
1374
1375 /*
1376 * The low byte of FAT's first entry must have same value with
1377 * media-field. But in real world, too many devices is
1378 * writing wrong value. So, removed that validity check.
1379 *
1380 * if (FAT_FIRST_ENT(sb, media) != first)
1381 */
1382
1383 error = -EINVAL;
1384 sprintf(buf, "cp%d", sbi->options.codepage);
1385 sbi->nls_disk = load_nls(buf);
1386 if (!sbi->nls_disk) {
Alexey Fisher869f58c2011-04-12 21:08:38 +09001387 fat_msg(sb, KERN_ERR, "codepage %s not found", buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388 goto out_fail;
1389 }
1390
1391 /* FIXME: utf8 is using iocharset for upper/lower conversion */
1392 if (sbi->options.isvfat) {
1393 sbi->nls_io = load_nls(sbi->options.iocharset);
1394 if (!sbi->nls_io) {
Alexey Fisher869f58c2011-04-12 21:08:38 +09001395 fat_msg(sb, KERN_ERR, "IO charset %s not found",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001396 sbi->options.iocharset);
1397 goto out_fail;
1398 }
1399 }
1400
1401 error = -ENOMEM;
Al Virob5224122009-06-07 13:44:36 -04001402 fat_inode = new_inode(sb);
1403 if (!fat_inode)
1404 goto out_fail;
1405 MSDOS_I(fat_inode)->i_pos = 0;
1406 sbi->fat_inode = fat_inode;
Artem Bityutskiy020ac5b2012-05-31 16:26:12 -07001407
1408 fsinfo_inode = new_inode(sb);
1409 if (!fsinfo_inode)
1410 goto out_fail;
1411 fsinfo_inode->i_ino = MSDOS_FSINFO_INO;
1412 sbi->fsinfo_inode = fsinfo_inode;
1413 insert_inode_hash(fsinfo_inode);
1414
Linus Torvalds1da177e2005-04-16 15:20:36 -07001415 root_inode = new_inode(sb);
1416 if (!root_inode)
1417 goto out_fail;
1418 root_inode->i_ino = MSDOS_ROOT_INO;
1419 root_inode->i_version = 1;
1420 error = fat_read_root(root_inode);
Al Viro1688f862012-02-12 22:06:33 -05001421 if (error < 0) {
1422 iput(root_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001423 goto out_fail;
Al Viro1688f862012-02-12 22:06:33 -05001424 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001425 error = -ENOMEM;
1426 insert_inode_hash(root_inode);
Steven J. Magnani7669e8f2012-10-04 17:14:45 -07001427 fat_attach(root_inode, 0);
Al Viro1688f862012-02-12 22:06:33 -05001428 sb->s_root = d_make_root(root_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429 if (!sb->s_root) {
Alexey Fisher869f58c2011-04-12 21:08:38 +09001430 fat_msg(sb, KERN_ERR, "get root inode failed");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431 goto out_fail;
1432 }
1433
1434 return 0;
1435
1436out_invalid:
1437 error = -EINVAL;
1438 if (!silent)
Alexey Fisher869f58c2011-04-12 21:08:38 +09001439 fat_msg(sb, KERN_INFO, "Can't find a valid FAT filesystem");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001440
1441out_fail:
Artem Bityutskiy020ac5b2012-05-31 16:26:12 -07001442 if (fsinfo_inode)
1443 iput(fsinfo_inode);
Al Virob5224122009-06-07 13:44:36 -04001444 if (fat_inode)
1445 iput(fat_inode);
OGAWA Hirofumi1bdb6f92010-03-16 05:48:09 +09001446 unload_nls(sbi->nls_io);
1447 unload_nls(sbi->nls_disk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448 if (sbi->options.iocharset != fat_default_iocharset)
1449 kfree(sbi->options.iocharset);
1450 sb->s_fs_info = NULL;
1451 kfree(sbi);
1452 return error;
1453}
1454
OGAWA Hirofumi7c709d02006-01-08 01:02:10 -08001455EXPORT_SYMBOL_GPL(fat_fill_super);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456
Chris Masonae78bf92006-09-29 02:00:03 -07001457/*
1458 * helper function for fat_flush_inodes. This writes both the inode
1459 * and the file data blocks, waiting for in flight data blocks before
1460 * the start of the call. It does not wait for any io started
1461 * during the call
1462 */
1463static int writeback_inode(struct inode *inode)
1464{
1465
1466 int ret;
Namjae Jeon14864652012-10-04 17:15:04 -07001467
1468 /* if we used wait=1, sync_inode_metadata waits for the io for the
1469 * inode to finish. So wait=0 is sent down to sync_inode_metadata
Chris Masonae78bf92006-09-29 02:00:03 -07001470 * and filemap_fdatawrite is used for the data blocks
1471 */
Namjae Jeon14864652012-10-04 17:15:04 -07001472 ret = sync_inode_metadata(inode, 0);
Chris Masonae78bf92006-09-29 02:00:03 -07001473 if (!ret)
Namjae Jeon14864652012-10-04 17:15:04 -07001474 ret = filemap_fdatawrite(inode->i_mapping);
Chris Masonae78bf92006-09-29 02:00:03 -07001475 return ret;
1476}
1477
1478/*
1479 * write data and metadata corresponding to i1 and i2. The io is
1480 * started but we do not wait for any of it to finish.
1481 *
1482 * filemap_flush is used for the block device, so if there is a dirty
1483 * page for a block already in flight, we will not wait and start the
1484 * io over again
1485 */
1486int fat_flush_inodes(struct super_block *sb, struct inode *i1, struct inode *i2)
1487{
1488 int ret = 0;
1489 if (!MSDOS_SB(sb)->options.flush)
1490 return 0;
1491 if (i1)
1492 ret = writeback_inode(i1);
1493 if (!ret && i2)
1494 ret = writeback_inode(i2);
Eric Sesterhenn97e860d2006-10-11 01:21:59 -07001495 if (!ret) {
Chris Masonae78bf92006-09-29 02:00:03 -07001496 struct address_space *mapping = sb->s_bdev->bd_inode->i_mapping;
1497 ret = filemap_flush(mapping);
1498 }
1499 return ret;
1500}
1501EXPORT_SYMBOL_GPL(fat_flush_inodes);
1502
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503static int __init init_fat_fs(void)
1504{
Pekka J Enberg532a39a2005-06-30 02:59:01 -07001505 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001506
Pekka J Enberg532a39a2005-06-30 02:59:01 -07001507 err = fat_cache_init();
1508 if (err)
1509 return err;
1510
1511 err = fat_init_inodecache();
1512 if (err)
1513 goto failed;
1514
1515 return 0;
1516
1517failed:
1518 fat_cache_destroy();
1519 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001520}
1521
1522static void __exit exit_fat_fs(void)
1523{
1524 fat_cache_destroy();
1525 fat_destroy_inodecache();
1526}
1527
1528module_init(init_fat_fs)
1529module_exit(exit_fat_fs)
1530
1531MODULE_LICENSE("GPL");