blob: 4f818f7fa155e6407d788bf7f18b45d300a96231 [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <linux/pagemap.h>
OGAWA Hirofumia5425d22006-01-08 01:02:10 -080015#include <linux/mpage.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include <linux/vfs.h>
Alexander Kuleshov58932ef2015-04-16 12:47:24 -070017#include <linux/seq_file.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include <linux/parser.h>
OGAWA Hirofumie5174ba2006-01-08 01:02:11 -080019#include <linux/uio.h>
Namjae Jeonf5621462012-12-17 16:02:56 -080020#include <linux/blkdev.h>
Tejun Heo66114ca2015-05-22 17:13:32 -040021#include <linux/backing-dev.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include <asm/unaligned.h>
Jeff Layton2489dba2017-12-11 06:35:09 -050023#include <linux/iversion.h>
OGAWA Hirofumi9e975da2008-11-06 12:53:46 -080024#include "fat.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070025
26#ifndef CONFIG_FAT_DEFAULT_IOCHARSET
27/* if user don't select VFAT, this is undefined. */
28#define CONFIG_FAT_DEFAULT_IOCHARSET ""
29#endif
30
Conrad Meyer190a8842014-06-06 14:36:37 -070031#define KB_IN_SECTORS 2
32
33/*
34 * A deserialized copy of the on-disk structure laid out in struct
35 * fat_boot_sector.
36 */
37struct fat_bios_param_block {
38 u16 fat_sector_size;
39 u8 fat_sec_per_clus;
40 u16 fat_reserved;
41 u8 fat_fats;
42 u16 fat_dir_entries;
43 u16 fat_sectors;
44 u16 fat_fat_length;
45 u32 fat_total_sect;
46
47 u8 fat16_state;
48 u32 fat16_vol_id;
49
50 u32 fat32_length;
51 u32 fat32_root_cluster;
52 u16 fat32_info_sector;
53 u8 fat32_state;
54 u32 fat32_vol_id;
55};
56
Linus Torvalds1da177e2005-04-16 15:20:36 -070057static int fat_default_codepage = CONFIG_FAT_DEFAULT_CODEPAGE;
58static char fat_default_iocharset[] = CONFIG_FAT_DEFAULT_IOCHARSET;
59
Conrad Meyer190a8842014-06-06 14:36:37 -070060static struct fat_floppy_defaults {
61 unsigned nr_sectors;
62 unsigned sec_per_clus;
63 unsigned dir_entries;
64 unsigned media;
65 unsigned fat_length;
66} floppy_defaults[] = {
67{
68 .nr_sectors = 160 * KB_IN_SECTORS,
69 .sec_per_clus = 1,
70 .dir_entries = 64,
71 .media = 0xFE,
72 .fat_length = 1,
73},
74{
75 .nr_sectors = 180 * KB_IN_SECTORS,
76 .sec_per_clus = 1,
77 .dir_entries = 64,
78 .media = 0xFC,
79 .fat_length = 2,
80},
81{
82 .nr_sectors = 320 * KB_IN_SECTORS,
83 .sec_per_clus = 2,
84 .dir_entries = 112,
85 .media = 0xFF,
86 .fat_length = 1,
87},
88{
89 .nr_sectors = 360 * KB_IN_SECTORS,
90 .sec_per_clus = 2,
91 .dir_entries = 112,
92 .media = 0xFD,
93 .fat_length = 2,
94},
95};
Linus Torvalds1da177e2005-04-16 15:20:36 -070096
Namjae Jeonb13bb332016-01-20 14:59:41 -080097int fat_add_cluster(struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -070098{
99 int err, cluster;
100
101 err = fat_alloc_clusters(inode, &cluster, 1);
102 if (err)
103 return err;
104 /* FIXME: this cluster should be added after data of this
105 * cluster is writed */
106 err = fat_chain_add(inode, cluster, 1);
107 if (err)
108 fat_free_clusters(inode, cluster);
109 return err;
110}
111
OGAWA Hirofumi6a1d9802006-09-27 01:50:45 -0700112static inline int __fat_get_block(struct inode *inode, sector_t iblock,
113 unsigned long *max_blocks,
114 struct buffer_head *bh_result, int create)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115{
116 struct super_block *sb = inode->i_sb;
OGAWA Hirofumie5174ba2006-01-08 01:02:11 -0800117 struct msdos_sb_info *sbi = MSDOS_SB(sb);
OGAWA Hirofumie5174ba2006-01-08 01:02:11 -0800118 unsigned long mapped_blocks;
Namjae Jeon7e0f2362016-01-20 14:59:43 -0800119 sector_t phys, last_block;
OGAWA Hirofumie5174ba2006-01-08 01:02:11 -0800120 int err, offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121
Namjae Jeon16fab202016-01-20 14:59:46 -0800122 err = fat_bmap(inode, iblock, &phys, &mapped_blocks, create, false);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123 if (err)
124 return err;
125 if (phys) {
126 map_bh(bh_result, sb, phys);
OGAWA Hirofumie5174ba2006-01-08 01:02:11 -0800127 *max_blocks = min(mapped_blocks, *max_blocks);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 return 0;
129 }
130 if (!create)
131 return 0;
OGAWA Hirofumie5174ba2006-01-08 01:02:11 -0800132
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 if (iblock != MSDOS_I(inode)->mmu_private >> sb->s_blocksize_bits) {
Denis Karpov85c78592009-06-04 02:34:22 +0900134 fat_fs_error(sb, "corrupted file size (i_pos %lld, %lld)",
OGAWA Hirofumi6a1d9802006-09-27 01:50:45 -0700135 MSDOS_I(inode)->i_pos, MSDOS_I(inode)->mmu_private);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 return -EIO;
137 }
OGAWA Hirofumie5174ba2006-01-08 01:02:11 -0800138
Namjae Jeon7e0f2362016-01-20 14:59:43 -0800139 last_block = inode->i_blocks >> (sb->s_blocksize_bits - 9);
OGAWA Hirofumie5174ba2006-01-08 01:02:11 -0800140 offset = (unsigned long)iblock & (sbi->sec_per_clus - 1);
Namjae Jeon7e0f2362016-01-20 14:59:43 -0800141 /*
142 * allocate a cluster according to the following.
143 * 1) no more available blocks
144 * 2) not part of fallocate region
145 */
146 if (!offset && !(iblock < last_block)) {
OGAWA Hirofumie5174ba2006-01-08 01:02:11 -0800147 /* TODO: multiple cluster allocation would be desirable. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 err = fat_add_cluster(inode);
149 if (err)
150 return err;
151 }
OGAWA Hirofumie5174ba2006-01-08 01:02:11 -0800152 /* available blocks on this cluster */
153 mapped_blocks = sbi->sec_per_clus - offset;
154
155 *max_blocks = min(mapped_blocks, *max_blocks);
156 MSDOS_I(inode)->mmu_private += *max_blocks << sb->s_blocksize_bits;
157
Namjae Jeon16fab202016-01-20 14:59:46 -0800158 err = fat_bmap(inode, iblock, &phys, &mapped_blocks, create, false);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 if (err)
160 return err;
OGAWA Hirofumic2574aa2018-06-14 15:27:21 -0700161 if (!phys) {
162 fat_fs_error(sb,
163 "invalid FAT chain (i_pos %lld, last_block %llu)",
164 MSDOS_I(inode)->i_pos,
165 (unsigned long long)last_block);
166 return -EIO;
167 }
OGAWA Hirofumi6a1d9802006-09-27 01:50:45 -0700168
OGAWA Hirofumie5174ba2006-01-08 01:02:11 -0800169 BUG_ON(*max_blocks != mapped_blocks);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 set_buffer_new(bh_result);
171 map_bh(bh_result, sb, phys);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172
OGAWA Hirofumie5174ba2006-01-08 01:02:11 -0800173 return 0;
174}
175
176static int fat_get_block(struct inode *inode, sector_t iblock,
177 struct buffer_head *bh_result, int create)
178{
OGAWA Hirofumi6a1d9802006-09-27 01:50:45 -0700179 struct super_block *sb = inode->i_sb;
180 unsigned long max_blocks = bh_result->b_size >> inode->i_blkbits;
181 int err;
182
183 err = __fat_get_block(inode, iblock, &max_blocks, bh_result, create);
184 if (err)
185 return err;
186 bh_result->b_size = max_blocks << sb->s_blocksize_bits;
187 return 0;
OGAWA Hirofumie5174ba2006-01-08 01:02:11 -0800188}
189
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190static int fat_writepage(struct page *page, struct writeback_control *wbc)
191{
192 return block_write_full_page(page, fat_get_block, wbc);
193}
194
OGAWA Hirofumia5425d22006-01-08 01:02:10 -0800195static int fat_writepages(struct address_space *mapping,
196 struct writeback_control *wbc)
197{
198 return mpage_writepages(mapping, wbc, fat_get_block);
199}
200
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201static int fat_readpage(struct file *file, struct page *page)
202{
OGAWA Hirofumia5425d22006-01-08 01:02:10 -0800203 return mpage_readpage(page, fat_get_block);
204}
205
206static int fat_readpages(struct file *file, struct address_space *mapping,
207 struct list_head *pages, unsigned nr_pages)
208{
209 return mpage_readpages(mapping, pages, nr_pages, fat_get_block);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210}
211
npiggin@suse.de459f6ed2010-05-27 01:05:38 +1000212static void fat_write_failed(struct address_space *mapping, loff_t to)
213{
214 struct inode *inode = mapping->host;
215
216 if (to > inode->i_size) {
Kirill A. Shutemov7caef262013-09-12 15:13:56 -0700217 truncate_pagecache(inode, inode->i_size);
npiggin@suse.de459f6ed2010-05-27 01:05:38 +1000218 fat_truncate_blocks(inode, inode->i_size);
219 }
220}
221
Nick Piggind7777a22007-10-16 01:25:08 -0700222static int fat_write_begin(struct file *file, struct address_space *mapping,
223 loff_t pos, unsigned len, unsigned flags,
224 struct page **pagep, void **fsdata)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225{
npiggin@suse.de459f6ed2010-05-27 01:05:38 +1000226 int err;
227
Nick Piggind7777a22007-10-16 01:25:08 -0700228 *pagep = NULL;
Christoph Hellwig282dc172010-06-04 11:29:55 +0200229 err = cont_write_begin(file, mapping, pos, len, flags,
npiggin@suse.de459f6ed2010-05-27 01:05:38 +1000230 pagep, fsdata, fat_get_block,
Nick Piggind7777a22007-10-16 01:25:08 -0700231 &MSDOS_I(mapping->host)->mmu_private);
npiggin@suse.de459f6ed2010-05-27 01:05:38 +1000232 if (err < 0)
233 fat_write_failed(mapping, pos + len);
234 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235}
236
Nick Piggind7777a22007-10-16 01:25:08 -0700237static int fat_write_end(struct file *file, struct address_space *mapping,
238 loff_t pos, unsigned len, unsigned copied,
239 struct page *pagep, void *fsdata)
OGAWA Hirofumief402262005-09-16 19:28:13 -0700240{
Nick Piggind7777a22007-10-16 01:25:08 -0700241 struct inode *inode = mapping->host;
242 int err;
243 err = generic_write_end(file, mapping, pos, len, copied, pagep, fsdata);
npiggin@suse.de459f6ed2010-05-27 01:05:38 +1000244 if (err < len)
245 fat_write_failed(mapping, pos + len);
Nick Piggind7777a22007-10-16 01:25:08 -0700246 if (!(err < 0) && !(MSDOS_I(inode)->i_attrs & ATTR_ARCH)) {
Deepa Dinamani02027d42016-09-14 07:48:05 -0700247 inode->i_mtime = inode->i_ctime = current_time(inode);
OGAWA Hirofumief402262005-09-16 19:28:13 -0700248 MSDOS_I(inode)->i_attrs |= ATTR_ARCH;
249 mark_inode_dirty(inode);
250 }
251 return err;
252}
253
Christoph Hellwigc8b8e322016-04-07 08:51:58 -0700254static ssize_t fat_direct_IO(struct kiocb *iocb, struct iov_iter *iter)
OGAWA Hirofumie5174ba2006-01-08 01:02:11 -0800255{
256 struct file *file = iocb->ki_filp;
npiggin@suse.de459f6ed2010-05-27 01:05:38 +1000257 struct address_space *mapping = file->f_mapping;
258 struct inode *inode = mapping->host;
Al Viroa6cbcd42014-03-04 22:38:00 -0500259 size_t count = iov_iter_count(iter);
Christoph Hellwigc8b8e322016-04-07 08:51:58 -0700260 loff_t offset = iocb->ki_pos;
npiggin@suse.de459f6ed2010-05-27 01:05:38 +1000261 ssize_t ret;
OGAWA Hirofumie5174ba2006-01-08 01:02:11 -0800262
Omar Sandoval6f673762015-03-16 04:33:52 -0700263 if (iov_iter_rw(iter) == WRITE) {
OGAWA Hirofumie5174ba2006-01-08 01:02:11 -0800264 /*
Nick Piggin4e02ed42008-10-29 14:00:55 -0700265 * FIXME: blockdev_direct_IO() doesn't use ->write_begin(),
OGAWA Hirofumie5174ba2006-01-08 01:02:11 -0800266 * so we need to update the ->mmu_private to block boundary.
267 *
268 * But we must fill the remaining area or hole by nul for
269 * updating ->mmu_private.
OGAWA Hirofumi94412a92007-02-20 13:57:55 -0800270 *
271 * Return 0, and fallback to normal buffered write.
OGAWA Hirofumie5174ba2006-01-08 01:02:11 -0800272 */
Al Viroa6cbcd42014-03-04 22:38:00 -0500273 loff_t size = offset + count;
OGAWA Hirofumie5174ba2006-01-08 01:02:11 -0800274 if (MSDOS_I(inode)->mmu_private < size)
OGAWA Hirofumi94412a92007-02-20 13:57:55 -0800275 return 0;
OGAWA Hirofumie5174ba2006-01-08 01:02:11 -0800276 }
277
278 /*
279 * FAT need to use the DIO_LOCKING for avoiding the race
280 * condition of fat_get_block() and ->truncate().
281 */
Christoph Hellwigc8b8e322016-04-07 08:51:58 -0700282 ret = blockdev_direct_IO(iocb, inode, iter, fat_get_block);
Omar Sandoval6f673762015-03-16 04:33:52 -0700283 if (ret < 0 && iov_iter_rw(iter) == WRITE)
Al Viroa6cbcd42014-03-04 22:38:00 -0500284 fat_write_failed(mapping, offset + count);
npiggin@suse.de459f6ed2010-05-27 01:05:38 +1000285
286 return ret;
OGAWA Hirofumie5174ba2006-01-08 01:02:11 -0800287}
288
Namjae Jeon16fab202016-01-20 14:59:46 -0800289static int fat_get_block_bmap(struct inode *inode, sector_t iblock,
290 struct buffer_head *bh_result, int create)
291{
292 struct super_block *sb = inode->i_sb;
293 unsigned long max_blocks = bh_result->b_size >> inode->i_blkbits;
294 int err;
295 sector_t bmap;
296 unsigned long mapped_blocks;
297
298 BUG_ON(create != 0);
299
300 err = fat_bmap(inode, iblock, &bmap, &mapped_blocks, create, true);
301 if (err)
302 return err;
303
304 if (bmap) {
305 map_bh(bh_result, sb, bmap);
306 max_blocks = min(mapped_blocks, max_blocks);
307 }
308
309 bh_result->b_size = max_blocks << sb->s_blocksize_bits;
310
311 return 0;
312}
313
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314static sector_t _fat_bmap(struct address_space *mapping, sector_t block)
315{
OGAWA Hirofumifa93ca12008-11-06 12:53:56 -0800316 sector_t blocknr;
317
318 /* fat_get_cluster() assumes the requested blocknr isn't truncated. */
Christoph Hellwig58268692011-06-24 14:29:40 -0400319 down_read(&MSDOS_I(mapping->host)->truncate_lock);
Namjae Jeon16fab202016-01-20 14:59:46 -0800320 blocknr = generic_block_bmap(mapping, block, fat_get_block_bmap);
Christoph Hellwig58268692011-06-24 14:29:40 -0400321 up_read(&MSDOS_I(mapping->host)->truncate_lock);
OGAWA Hirofumifa93ca12008-11-06 12:53:56 -0800322
323 return blocknr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324}
325
Namjae Jeonc0ef0cc2014-12-12 16:57:26 -0800326/*
327 * fat_block_truncate_page() zeroes out a mapping from file offset `from'
328 * up to the end of the block which corresponds to `from'.
329 * This is required during truncate to physically zeroout the tail end
330 * of that block so it doesn't yield old data if the file is later grown.
331 * Also, avoid causing failure from fsx for cases of "data past EOF"
332 */
333int fat_block_truncate_page(struct inode *inode, loff_t from)
334{
335 return block_truncate_page(inode->i_mapping, from, fat_get_block);
336}
337
Christoph Hellwigf5e54d62006-06-28 04:26:44 -0700338static const struct address_space_operations fat_aops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 .readpage = fat_readpage,
OGAWA Hirofumia5425d22006-01-08 01:02:10 -0800340 .readpages = fat_readpages,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 .writepage = fat_writepage,
OGAWA Hirofumia5425d22006-01-08 01:02:10 -0800342 .writepages = fat_writepages,
Nick Piggind7777a22007-10-16 01:25:08 -0700343 .write_begin = fat_write_begin,
344 .write_end = fat_write_end,
OGAWA Hirofumie5174ba2006-01-08 01:02:11 -0800345 .direct_IO = fat_direct_IO,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 .bmap = _fat_bmap
347};
348
349/*
350 * New FAT inode stuff. We do the following:
351 * a) i_ino is constant and has nothing with on-disk location.
352 * b) FAT manages its own cache of directory entries.
353 * c) *This* cache is indexed by on-disk location.
354 * d) inode has an associated directory entry, all right, but
355 * it may be unhashed.
356 * e) currently entries are stored within struct inode. That should
357 * change.
358 * f) we deal with races in the following way:
359 * 1. readdir() and lookup() do FAT-dir-cache lookup.
360 * 2. rename() unhashes the F-d-c entry and rehashes it in
361 * a new place.
362 * 3. unlink() and rmdir() unhash F-d-c entry.
363 * 4. fat_write_inode() checks whether the thing is unhashed.
364 * If it is we silently return. If it isn't we do bread(),
365 * check if the location is still valid and retry if it
366 * isn't. Otherwise we do changes.
367 * 5. Spinlock is used to protect hash/unhash/location check/lookup
Al Virodeee3ce2010-06-05 19:28:32 -0400368 * 6. fat_evict_inode() unhashes the F-d-c entry.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 * 7. lookup() and readdir() do igrab() if they find a F-d-c entry
370 * and consider negative result as cache miss.
371 */
372
373static void fat_hash_init(struct super_block *sb)
374{
375 struct msdos_sb_info *sbi = MSDOS_SB(sb);
376 int i;
377
378 spin_lock_init(&sbi->inode_hash_lock);
379 for (i = 0; i < FAT_HASH_SIZE; i++)
380 INIT_HLIST_HEAD(&sbi->inode_hashtable[i]);
381}
382
OGAWA Hirofumid3dfa822008-11-06 12:53:49 -0800383static inline unsigned long fat_hash(loff_t i_pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384{
OGAWA Hirofumid3dfa822008-11-06 12:53:49 -0800385 return hash_32(i_pos, FAT_HASH_BITS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386}
387
Steven J. Magnani7669e8f2012-10-04 17:14:45 -0700388static void dir_hash_init(struct super_block *sb)
389{
390 struct msdos_sb_info *sbi = MSDOS_SB(sb);
391 int i;
392
393 spin_lock_init(&sbi->dir_hash_lock);
394 for (i = 0; i < FAT_HASH_SIZE; i++)
395 INIT_HLIST_HEAD(&sbi->dir_hashtable[i]);
396}
397
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398void fat_attach(struct inode *inode, loff_t i_pos)
399{
OGAWA Hirofumid3dfa822008-11-06 12:53:49 -0800400 struct msdos_sb_info *sbi = MSDOS_SB(inode->i_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401
Steven J. Magnani7669e8f2012-10-04 17:14:45 -0700402 if (inode->i_ino != MSDOS_ROOT_INO) {
403 struct hlist_head *head = sbi->inode_hashtable
404 + fat_hash(i_pos);
405
406 spin_lock(&sbi->inode_hash_lock);
407 MSDOS_I(inode)->i_pos = i_pos;
408 hlist_add_head(&MSDOS_I(inode)->i_fat_hash, head);
409 spin_unlock(&sbi->inode_hash_lock);
410 }
411
412 /* If NFS support is enabled, cache the mapping of start cluster
413 * to directory inode. This is used during reconnection of
414 * dentries to the filesystem root.
415 */
416 if (S_ISDIR(inode->i_mode) && sbi->options.nfs) {
417 struct hlist_head *d_head = sbi->dir_hashtable;
418 d_head += fat_dir_hash(MSDOS_I(inode)->i_logstart);
419
420 spin_lock(&sbi->dir_hash_lock);
421 hlist_add_head(&MSDOS_I(inode)->i_dir_hash, d_head);
422 spin_unlock(&sbi->dir_hash_lock);
423 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424}
OGAWA Hirofumi7c709d02006-01-08 01:02:10 -0800425EXPORT_SYMBOL_GPL(fat_attach);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426
427void fat_detach(struct inode *inode)
428{
429 struct msdos_sb_info *sbi = MSDOS_SB(inode->i_sb);
430 spin_lock(&sbi->inode_hash_lock);
431 MSDOS_I(inode)->i_pos = 0;
432 hlist_del_init(&MSDOS_I(inode)->i_fat_hash);
433 spin_unlock(&sbi->inode_hash_lock);
Steven J. Magnani7669e8f2012-10-04 17:14:45 -0700434
435 if (S_ISDIR(inode->i_mode) && sbi->options.nfs) {
436 spin_lock(&sbi->dir_hash_lock);
437 hlist_del_init(&MSDOS_I(inode)->i_dir_hash);
438 spin_unlock(&sbi->dir_hash_lock);
439 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440}
OGAWA Hirofumi7c709d02006-01-08 01:02:10 -0800441EXPORT_SYMBOL_GPL(fat_detach);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442
443struct inode *fat_iget(struct super_block *sb, loff_t i_pos)
444{
445 struct msdos_sb_info *sbi = MSDOS_SB(sb);
OGAWA Hirofumid3dfa822008-11-06 12:53:49 -0800446 struct hlist_head *head = sbi->inode_hashtable + fat_hash(i_pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 struct msdos_inode_info *i;
448 struct inode *inode = NULL;
449
450 spin_lock(&sbi->inode_hash_lock);
Sasha Levinb67bfe02013-02-27 17:06:00 -0800451 hlist_for_each_entry(i, head, i_fat_hash) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 BUG_ON(i->vfs_inode.i_sb != sb);
453 if (i->i_pos != i_pos)
454 continue;
455 inode = igrab(&i->vfs_inode);
456 if (inode)
457 break;
458 }
459 spin_unlock(&sbi->inode_hash_lock);
460 return inode;
461}
462
463static int is_exec(unsigned char *extension)
464{
Manuel Schöllingef194702014-06-06 14:36:38 -0700465 unsigned char exe_extensions[] = "EXECOMBAT", *walk;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466
467 for (walk = exe_extensions; *walk; walk += 3)
468 if (!strncmp(extension, walk, 3))
469 return 1;
470 return 0;
471}
472
473static int fat_calc_dir_size(struct inode *inode)
474{
475 struct msdos_sb_info *sbi = MSDOS_SB(inode->i_sb);
476 int ret, fclus, dclus;
477
478 inode->i_size = 0;
479 if (MSDOS_I(inode)->i_start == 0)
480 return 0;
481
482 ret = fat_get_cluster(inode, FAT_ENT_EOF, &fclus, &dclus);
483 if (ret < 0)
484 return ret;
485 inode->i_size = (fclus + 1) << sbi->cluster_bits;
486
487 return 0;
488}
489
OGAWA Hirofumia3082d52016-01-20 14:59:38 -0800490static int fat_validate_dir(struct inode *dir)
491{
492 struct super_block *sb = dir->i_sb;
493
494 if (dir->i_nlink < 2) {
495 /* Directory should have "."/".." entries at least. */
496 fat_fs_error(sb, "corrupted directory (invalid entries)");
497 return -EIO;
498 }
499 if (MSDOS_I(dir)->i_start == 0 ||
500 MSDOS_I(dir)->i_start == MSDOS_SB(sb)->root_cluster) {
501 /* Directory should point valid cluster. */
502 fat_fs_error(sb, "corrupted directory (invalid i_start)");
503 return -EIO;
504 }
505 return 0;
506}
507
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508/* doesn't deal with root inode */
Namjae Jeonf1e6fb02013-04-29 16:21:14 -0700509int fat_fill_inode(struct inode *inode, struct msdos_dir_entry *de)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510{
511 struct msdos_sb_info *sbi = MSDOS_SB(inode->i_sb);
512 int error;
513
514 MSDOS_I(inode)->i_pos = 0;
515 inode->i_uid = sbi->options.fs_uid;
516 inode->i_gid = sbi->options.fs_gid;
Jeff Layton2489dba2017-12-11 06:35:09 -0500517 inode_inc_iversion(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 inode->i_generation = get_seconds();
519
520 if ((de->attr & ATTR_DIR) && !IS_FREE(de->name)) {
521 inode->i_generation &= ~1;
OGAWA Hirofumi9c0aa1b2008-11-06 12:53:54 -0800522 inode->i_mode = fat_make_mode(sbi, de->attr, S_IRWXUGO);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 inode->i_op = sbi->dir_ops;
524 inode->i_fop = &fat_dir_operations;
525
Steven J. Magnania943ed72012-07-30 14:42:13 -0700526 MSDOS_I(inode)->i_start = fat_get_start(sbi, de);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 MSDOS_I(inode)->i_logstart = MSDOS_I(inode)->i_start;
528 error = fat_calc_dir_size(inode);
529 if (error < 0)
530 return error;
531 MSDOS_I(inode)->mmu_private = inode->i_size;
532
Miklos Szeredibfe86842011-10-28 14:13:29 +0200533 set_nlink(inode, fat_subdirs(inode));
OGAWA Hirofumia3082d52016-01-20 14:59:38 -0800534
535 error = fat_validate_dir(inode);
536 if (error < 0)
537 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 } else { /* not a directory */
539 inode->i_generation |= 1;
OGAWA Hirofumi9c0aa1b2008-11-06 12:53:54 -0800540 inode->i_mode = fat_make_mode(sbi, de->attr,
541 ((sbi->options.showexec && !is_exec(de->name + 8))
542 ? S_IRUGO|S_IWUGO : S_IRWXUGO));
Steven J. Magnania943ed72012-07-30 14:42:13 -0700543 MSDOS_I(inode)->i_start = fat_get_start(sbi, de);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544
545 MSDOS_I(inode)->i_logstart = MSDOS_I(inode)->i_start;
546 inode->i_size = le32_to_cpu(de->size);
547 inode->i_op = &fat_file_inode_operations;
548 inode->i_fop = &fat_file_operations;
549 inode->i_mapping->a_ops = &fat_aops;
550 MSDOS_I(inode)->mmu_private = inode->i_size;
551 }
552 if (de->attr & ATTR_SYS) {
553 if (sbi->options.sys_immutable)
554 inode->i_flags |= S_IMMUTABLE;
555 }
OGAWA Hirofumi9c0aa1b2008-11-06 12:53:54 -0800556 fat_save_attrs(inode, de->attr);
557
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 inode->i_blocks = ((inode->i_size + (sbi->cluster_size - 1))
559 & ~((loff_t)sbi->cluster_size - 1)) >> 9;
OGAWA Hirofumi7decd1c2008-11-06 12:53:47 -0800560
561 fat_time_fat2unix(sbi, &inode->i_mtime, de->time, de->date, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 if (sbi->options.isvfat) {
OGAWA Hirofumi7decd1c2008-11-06 12:53:47 -0800563 fat_time_fat2unix(sbi, &inode->i_ctime, de->ctime,
564 de->cdate, de->ctime_cs);
565 fat_time_fat2unix(sbi, &inode->i_atime, 0, de->adate, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 } else
Stephane Kardas62a36c42005-09-21 09:55:45 -0700567 inode->i_ctime = inode->i_atime = inode->i_mtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568
569 return 0;
570}
571
Namjae Jeon8fceb4e2013-04-29 16:21:12 -0700572static inline void fat_lock_build_inode(struct msdos_sb_info *sbi)
573{
574 if (sbi->options.nfs == FAT_NFS_NOSTALE_RO)
575 mutex_lock(&sbi->nfs_build_inode_lock);
576}
577
578static inline void fat_unlock_build_inode(struct msdos_sb_info *sbi)
579{
580 if (sbi->options.nfs == FAT_NFS_NOSTALE_RO)
581 mutex_unlock(&sbi->nfs_build_inode_lock);
582}
583
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584struct inode *fat_build_inode(struct super_block *sb,
585 struct msdos_dir_entry *de, loff_t i_pos)
586{
587 struct inode *inode;
588 int err;
589
Namjae Jeon8fceb4e2013-04-29 16:21:12 -0700590 fat_lock_build_inode(MSDOS_SB(sb));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 inode = fat_iget(sb, i_pos);
592 if (inode)
593 goto out;
594 inode = new_inode(sb);
595 if (!inode) {
596 inode = ERR_PTR(-ENOMEM);
597 goto out;
598 }
599 inode->i_ino = iunique(sb, MSDOS_ROOT_INO);
Jeff Layton2489dba2017-12-11 06:35:09 -0500600 inode_set_iversion(inode, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601 err = fat_fill_inode(inode, de);
602 if (err) {
603 iput(inode);
604 inode = ERR_PTR(err);
605 goto out;
606 }
607 fat_attach(inode, i_pos);
608 insert_inode_hash(inode);
609out:
Namjae Jeon8fceb4e2013-04-29 16:21:12 -0700610 fat_unlock_build_inode(MSDOS_SB(sb));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611 return inode;
612}
613
OGAWA Hirofumi7c709d02006-01-08 01:02:10 -0800614EXPORT_SYMBOL_GPL(fat_build_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615
Namjae Jeonb13bb332016-01-20 14:59:41 -0800616static int __fat_write_inode(struct inode *inode, int wait);
617
618static void fat_free_eofblocks(struct inode *inode)
619{
620 /* Release unwritten fallocated blocks on inode eviction. */
621 if ((inode->i_blocks << 9) >
622 round_up(MSDOS_I(inode)->mmu_private,
623 MSDOS_SB(inode->i_sb)->cluster_size)) {
624 int err;
625
626 fat_truncate_blocks(inode, MSDOS_I(inode)->mmu_private);
627 /* Fallocate results in updating the i_start/iogstart
628 * for the zero byte file. So, make it return to
629 * original state during evict and commit it to avoid
630 * any corruption on the next access to the cluster
631 * chain for the file.
632 */
633 err = __fat_write_inode(inode, inode_needs_sync(inode));
634 if (err) {
635 fat_msg(inode->i_sb, KERN_WARNING, "Failed to "
636 "update on disk inode for unused "
637 "fallocated blocks, inode could be "
638 "corrupted. Please run fsck");
639 }
640
641 }
642}
643
Al Virodeee3ce2010-06-05 19:28:32 -0400644static void fat_evict_inode(struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645{
Johannes Weiner91b0abe2014-04-03 14:47:49 -0700646 truncate_inode_pages_final(&inode->i_data);
Al Virodeee3ce2010-06-05 19:28:32 -0400647 if (!inode->i_nlink) {
648 inode->i_size = 0;
649 fat_truncate_blocks(inode, 0);
Namjae Jeonb13bb332016-01-20 14:59:41 -0800650 } else
651 fat_free_eofblocks(inode);
652
Al Virodeee3ce2010-06-05 19:28:32 -0400653 invalidate_inode_buffers(inode);
Jan Karadbd57682012-05-03 14:48:02 +0200654 clear_inode(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655 fat_cache_inval_inode(inode);
OGAWA Hirofumia993b542008-11-06 12:53:50 -0800656 fat_detach(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657}
658
Oleksij Rempelb88a10582013-02-27 17:03:09 -0800659static void fat_set_state(struct super_block *sb,
660 unsigned int set, unsigned int force)
661{
662 struct buffer_head *bh;
663 struct fat_boot_sector *b;
Fred Choud6bd4282015-02-17 13:45:36 -0800664 struct msdos_sb_info *sbi = MSDOS_SB(sb);
Oleksij Rempelb88a10582013-02-27 17:03:09 -0800665
666 /* do not change any thing if mounted read only */
David Howellsbc98a422017-07-17 08:45:34 +0100667 if (sb_rdonly(sb) && !force)
Oleksij Rempelb88a10582013-02-27 17:03:09 -0800668 return;
669
670 /* do not change state if fs was dirty */
671 if (sbi->dirty) {
672 /* warn only on set (mount). */
673 if (set)
674 fat_msg(sb, KERN_WARNING, "Volume was not properly "
675 "unmounted. Some data may be corrupt. "
676 "Please run fsck.");
677 return;
678 }
679
680 bh = sb_bread(sb, 0);
681 if (bh == NULL) {
682 fat_msg(sb, KERN_ERR, "unable to read boot sector "
683 "to mark fs as dirty");
684 return;
685 }
686
687 b = (struct fat_boot_sector *) bh->b_data;
688
689 if (sbi->fat_bits == 32) {
690 if (set)
691 b->fat32.state |= FAT_STATE_DIRTY;
692 else
693 b->fat32.state &= ~FAT_STATE_DIRTY;
694 } else /* fat 16 and 12 */ {
695 if (set)
696 b->fat16.state |= FAT_STATE_DIRTY;
697 else
698 b->fat16.state &= ~FAT_STATE_DIRTY;
699 }
700
701 mark_buffer_dirty(bh);
702 sync_dirty_buffer(bh);
703 brelse(bh);
704}
705
Al Virocac45b02013-10-03 13:16:50 -0400706static void delayed_free(struct rcu_head *p)
707{
708 struct msdos_sb_info *sbi = container_of(p, struct msdos_sb_info, rcu);
709 unload_nls(sbi->nls_disk);
710 unload_nls(sbi->nls_io);
711 if (sbi->options.iocharset != fat_default_iocharset)
712 kfree(sbi->options.iocharset);
713 kfree(sbi);
714}
715
OGAWA Hirofumia6bf6b22006-01-08 01:02:08 -0800716static void fat_put_super(struct super_block *sb)
717{
718 struct msdos_sb_info *sbi = MSDOS_SB(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719
Oleksij Rempelb88a10582013-02-27 17:03:09 -0800720 fat_set_state(sb, 0, 0);
721
Artem Bityutskiy020ac5b2012-05-31 16:26:12 -0700722 iput(sbi->fsinfo_inode);
Al Virob5224122009-06-07 13:44:36 -0400723 iput(sbi->fat_inode);
724
Al Virocac45b02013-10-03 13:16:50 -0400725 call_rcu(&sbi->rcu, delayed_free);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726}
727
Christoph Lametere18b8902006-12-06 20:33:20 -0800728static struct kmem_cache *fat_inode_cachep;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729
730static struct inode *fat_alloc_inode(struct super_block *sb)
731{
732 struct msdos_inode_info *ei;
Linus Torvalds8f593422008-05-19 19:53:01 -0700733 ei = kmem_cache_alloc(fat_inode_cachep, GFP_NOFS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734 if (!ei)
735 return NULL;
Christoph Hellwig58268692011-06-24 14:29:40 -0400736
737 init_rwsem(&ei->truncate_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738 return &ei->vfs_inode;
739}
740
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +1100741static void fat_i_callback(struct rcu_head *head)
742{
743 struct inode *inode = container_of(head, struct inode, i_rcu);
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +1100744 kmem_cache_free(fat_inode_cachep, MSDOS_I(inode));
745}
746
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747static void fat_destroy_inode(struct inode *inode)
748{
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +1100749 call_rcu(&inode->i_rcu, fat_i_callback);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750}
751
Alexey Dobriyan51cc5062008-07-25 19:45:34 -0700752static void init_once(void *foo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753{
754 struct msdos_inode_info *ei = (struct msdos_inode_info *)foo;
755
Christoph Lametera35afb82007-05-16 22:10:57 -0700756 spin_lock_init(&ei->cache_lru_lock);
757 ei->nr_caches = 0;
758 ei->cache_valid_id = FAT_CACHE_VALID + 1;
759 INIT_LIST_HEAD(&ei->cache_lru);
760 INIT_HLIST_NODE(&ei->i_fat_hash);
Steven J. Magnani7669e8f2012-10-04 17:14:45 -0700761 INIT_HLIST_NODE(&ei->i_dir_hash);
Christoph Lametera35afb82007-05-16 22:10:57 -0700762 inode_init_once(&ei->vfs_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763}
764
765static int __init fat_init_inodecache(void)
766{
767 fat_inode_cachep = kmem_cache_create("fat_inode_cache",
768 sizeof(struct msdos_inode_info),
Paul Jacksonfffb60f2006-03-24 03:16:06 -0800769 0, (SLAB_RECLAIM_ACCOUNT|
Vladimir Davydov5d097052016-01-14 15:18:21 -0800770 SLAB_MEM_SPREAD|SLAB_ACCOUNT),
Paul Mundt20c2df82007-07-20 10:11:58 +0900771 init_once);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772 if (fat_inode_cachep == NULL)
773 return -ENOMEM;
774 return 0;
775}
776
777static void __exit fat_destroy_inodecache(void)
778{
Kirill A. Shutemov8c0a8532012-09-26 11:33:07 +1000779 /*
780 * Make sure all delayed rcu free inodes are flushed before we
781 * destroy cache.
782 */
783 rcu_barrier();
Alexey Dobriyan1a1d92c2006-09-27 01:49:40 -0700784 kmem_cache_destroy(fat_inode_cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785}
786
787static int fat_remount(struct super_block *sb, int *flags, char *data)
788{
OGAWA Hirofumib6e8e122017-11-29 16:11:19 -0800789 bool new_rdonly;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790 struct msdos_sb_info *sbi = MSDOS_SB(sb);
Linus Torvalds1751e8a2017-11-27 13:05:09 -0800791 *flags |= SB_NODIRATIME | (sbi->options.isvfat ? 0 : SB_NOATIME);
Oleksij Rempelb88a10582013-02-27 17:03:09 -0800792
Theodore Ts'o02b99842014-03-13 10:14:33 -0400793 sync_filesystem(sb);
794
Oleksij Rempelb88a10582013-02-27 17:03:09 -0800795 /* make sure we update state on remount. */
Linus Torvalds1751e8a2017-11-27 13:05:09 -0800796 new_rdonly = *flags & SB_RDONLY;
David Howellsbc98a422017-07-17 08:45:34 +0100797 if (new_rdonly != sb_rdonly(sb)) {
Oleksij Rempelb88a10582013-02-27 17:03:09 -0800798 if (new_rdonly)
799 fat_set_state(sb, 0, 0);
800 else
801 fat_set_state(sb, 1, 1);
802 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803 return 0;
804}
805
David Howells726c3342006-06-23 02:02:58 -0700806static int fat_statfs(struct dentry *dentry, struct kstatfs *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807{
Coly Liaac49b752009-04-02 16:59:35 -0700808 struct super_block *sb = dentry->d_sb;
809 struct msdos_sb_info *sbi = MSDOS_SB(sb);
810 u64 id = huge_encode_dev(sb->s_bdev->bd_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811
812 /* If the count of free cluster is still unknown, counts it here. */
OGAWA Hirofumi606e4232008-04-28 02:16:27 -0700813 if (sbi->free_clusters == -1 || !sbi->free_clus_valid) {
David Howells726c3342006-06-23 02:02:58 -0700814 int err = fat_count_free_clusters(dentry->d_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815 if (err)
816 return err;
817 }
818
David Howells726c3342006-06-23 02:02:58 -0700819 buf->f_type = dentry->d_sb->s_magic;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820 buf->f_bsize = sbi->cluster_size;
821 buf->f_blocks = sbi->max_cluster - FAT_START_ENT;
822 buf->f_bfree = sbi->free_clusters;
823 buf->f_bavail = sbi->free_clusters;
Coly Liaac49b752009-04-02 16:59:35 -0700824 buf->f_fsid.val[0] = (u32)id;
825 buf->f_fsid.val[1] = (u32)(id >> 32);
OGAWA Hirofumif68e5422011-04-12 21:08:39 +0900826 buf->f_namelen =
827 (sbi->options.isvfat ? FAT_LFN_LEN : 12) * NLS_MAX_CHARSET_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828
829 return 0;
830}
831
Christoph Hellwiga9185b42010-03-05 09:21:37 +0100832static int __fat_write_inode(struct inode *inode, int wait)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833{
834 struct super_block *sb = inode->i_sb;
835 struct msdos_sb_info *sbi = MSDOS_SB(sb);
836 struct buffer_head *bh;
837 struct msdos_dir_entry *raw_entry;
838 loff_t i_pos;
Namjae Jeone22a4442013-04-29 16:21:10 -0700839 sector_t blocknr;
840 int err, offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841
OGAWA Hirofumi9ca59f42008-11-06 12:53:57 -0800842 if (inode->i_ino == MSDOS_ROOT_INO)
843 return 0;
844
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845retry:
OGAWA Hirofumi9ca59f42008-11-06 12:53:57 -0800846 i_pos = fat_i_pos_read(sbi, inode);
847 if (!i_pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848 return 0;
849
Namjae Jeone22a4442013-04-29 16:21:10 -0700850 fat_get_blknr_offset(sbi, i_pos, &blocknr, &offset);
851 bh = sb_bread(sb, blocknr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852 if (!bh) {
Alexey Fisher869f58c2011-04-12 21:08:38 +0900853 fat_msg(sb, KERN_ERR, "unable to read inode block "
854 "for updating (i_pos %lld)", i_pos);
Linus Torvalds5f22ca92008-08-20 08:31:19 -0700855 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856 }
857 spin_lock(&sbi->inode_hash_lock);
858 if (i_pos != MSDOS_I(inode)->i_pos) {
859 spin_unlock(&sbi->inode_hash_lock);
860 brelse(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861 goto retry;
862 }
863
Namjae Jeone22a4442013-04-29 16:21:10 -0700864 raw_entry = &((struct msdos_dir_entry *) (bh->b_data))[offset];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865 if (S_ISDIR(inode->i_mode))
866 raw_entry->size = 0;
867 else
868 raw_entry->size = cpu_to_le32(inode->i_size);
OGAWA Hirofumi9c0aa1b2008-11-06 12:53:54 -0800869 raw_entry->attr = fat_make_attrs(inode);
Steven J. Magnania943ed72012-07-30 14:42:13 -0700870 fat_set_start(raw_entry, MSDOS_I(inode)->i_logstart);
OGAWA Hirofumi7decd1c2008-11-06 12:53:47 -0800871 fat_time_unix2fat(sbi, &inode->i_mtime, &raw_entry->time,
872 &raw_entry->date, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873 if (sbi->options.isvfat) {
Stephane Kardas62a36c42005-09-21 09:55:45 -0700874 __le16 atime;
OGAWA Hirofumi7decd1c2008-11-06 12:53:47 -0800875 fat_time_unix2fat(sbi, &inode->i_ctime, &raw_entry->ctime,
876 &raw_entry->cdate, &raw_entry->ctime_cs);
877 fat_time_unix2fat(sbi, &inode->i_atime, &atime,
878 &raw_entry->adate, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879 }
880 spin_unlock(&sbi->inode_hash_lock);
881 mark_buffer_dirty(bh);
Linus Torvalds5f22ca92008-08-20 08:31:19 -0700882 err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883 if (wait)
884 err = sync_dirty_buffer(bh);
885 brelse(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886 return err;
887}
888
Christoph Hellwiga9185b42010-03-05 09:21:37 +0100889static int fat_write_inode(struct inode *inode, struct writeback_control *wbc)
890{
Artem Bityutskiy78491182012-05-31 16:26:13 -0700891 int err;
892
893 if (inode->i_ino == MSDOS_FSINFO_INO) {
894 struct super_block *sb = inode->i_sb;
895
Marco Stornellie40b34c2012-10-06 12:40:03 +0200896 mutex_lock(&MSDOS_SB(sb)->s_lock);
Artem Bityutskiy78491182012-05-31 16:26:13 -0700897 err = fat_clusters_flush(sb);
Marco Stornellie40b34c2012-10-06 12:40:03 +0200898 mutex_unlock(&MSDOS_SB(sb)->s_lock);
Artem Bityutskiy78491182012-05-31 16:26:13 -0700899 } else
900 err = __fat_write_inode(inode, wbc->sync_mode == WB_SYNC_ALL);
901
902 return err;
Christoph Hellwiga9185b42010-03-05 09:21:37 +0100903}
904
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905int fat_sync_inode(struct inode *inode)
906{
Christoph Hellwiga9185b42010-03-05 09:21:37 +0100907 return __fat_write_inode(inode, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908}
909
OGAWA Hirofumi7c709d02006-01-08 01:02:10 -0800910EXPORT_SYMBOL_GPL(fat_sync_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911
Al Viro34c80b12011-12-08 21:32:45 -0500912static int fat_show_options(struct seq_file *m, struct dentry *root);
Josef 'Jeff' Sipekee9b6d62007-02-12 00:55:41 -0800913static const struct super_operations fat_sops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914 .alloc_inode = fat_alloc_inode,
915 .destroy_inode = fat_destroy_inode,
916 .write_inode = fat_write_inode,
Al Virodeee3ce2010-06-05 19:28:32 -0400917 .evict_inode = fat_evict_inode,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918 .put_super = fat_put_super,
919 .statfs = fat_statfs,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920 .remount_fs = fat_remount,
921
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922 .show_options = fat_show_options,
923};
924
Al Viro34c80b12011-12-08 21:32:45 -0500925static int fat_show_options(struct seq_file *m, struct dentry *root)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926{
Al Viro34c80b12011-12-08 21:32:45 -0500927 struct msdos_sb_info *sbi = MSDOS_SB(root->d_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928 struct fat_mount_options *opts = &sbi->options;
929 int isvfat = opts->isvfat;
930
Eric W. Biederman170782e2012-02-07 16:25:39 -0800931 if (!uid_eq(opts->fs_uid, GLOBAL_ROOT_UID))
932 seq_printf(m, ",uid=%u",
933 from_kuid_munged(&init_user_ns, opts->fs_uid));
934 if (!gid_eq(opts->fs_gid, GLOBAL_ROOT_GID))
935 seq_printf(m, ",gid=%u",
936 from_kgid_munged(&init_user_ns, opts->fs_gid));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937 seq_printf(m, ",fmask=%04o", opts->fs_fmask);
938 seq_printf(m, ",dmask=%04o", opts->fs_dmask);
OGAWA Hirofumi1ae43f82008-04-28 02:16:26 -0700939 if (opts->allow_utime)
940 seq_printf(m, ",allow_utime=%04o", opts->allow_utime);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941 if (sbi->nls_disk)
Dave Reisnerc6c20372012-12-17 16:03:01 -0800942 /* strip "cp" prefix from displayed option */
943 seq_printf(m, ",codepage=%s", &sbi->nls_disk->charset[2]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944 if (isvfat) {
945 if (sbi->nls_io)
946 seq_printf(m, ",iocharset=%s", sbi->nls_io->charset);
947
948 switch (opts->shortname) {
949 case VFAT_SFN_DISPLAY_WIN95 | VFAT_SFN_CREATE_WIN95:
950 seq_puts(m, ",shortname=win95");
951 break;
952 case VFAT_SFN_DISPLAY_WINNT | VFAT_SFN_CREATE_WINNT:
953 seq_puts(m, ",shortname=winnt");
954 break;
955 case VFAT_SFN_DISPLAY_WINNT | VFAT_SFN_CREATE_WIN95:
956 seq_puts(m, ",shortname=mixed");
957 break;
958 case VFAT_SFN_DISPLAY_LOWER | VFAT_SFN_CREATE_WIN95:
Paul Wise95523472009-08-01 21:30:31 +0900959 seq_puts(m, ",shortname=lower");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960 break;
961 default:
962 seq_puts(m, ",shortname=unknown");
963 break;
964 }
965 }
966 if (opts->name_check != 'n')
967 seq_printf(m, ",check=%c", opts->name_check);
OGAWA Hirofumi28ec0392007-05-08 00:31:01 -0700968 if (opts->usefree)
969 seq_puts(m, ",usefree");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970 if (opts->quiet)
971 seq_puts(m, ",quiet");
972 if (opts->showexec)
973 seq_puts(m, ",showexec");
974 if (opts->sys_immutable)
975 seq_puts(m, ",sys_immutable");
976 if (!isvfat) {
977 if (opts->dotsOK)
978 seq_puts(m, ",dotsOK=yes");
979 if (opts->nocase)
980 seq_puts(m, ",nocase");
981 } else {
982 if (opts->utf8)
983 seq_puts(m, ",utf8");
984 if (opts->unicode_xlate)
985 seq_puts(m, ",uni_xlate");
986 if (!opts->numtail)
987 seq_puts(m, ",nonumtail");
OGAWA Hirofumidfc209c2008-11-06 12:53:55 -0800988 if (opts->rodir)
989 seq_puts(m, ",rodir");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990 }
OGAWA Hirofumidfc209c2008-11-06 12:53:55 -0800991 if (opts->flush)
Miklos Szeredic1fca3b2008-02-08 04:21:42 -0800992 seq_puts(m, ",flush");
Jan Kara58156c82012-12-17 16:02:58 -0800993 if (opts->tz_set) {
994 if (opts->time_offset)
995 seq_printf(m, ",time_offset=%d", opts->time_offset);
996 else
997 seq_puts(m, ",tz=UTC");
998 }
Denis Karpov85c78592009-06-04 02:34:22 +0900999 if (opts->errors == FAT_ERRORS_CONT)
1000 seq_puts(m, ",errors=continue");
1001 else if (opts->errors == FAT_ERRORS_PANIC)
1002 seq_puts(m, ",errors=panic");
1003 else
1004 seq_puts(m, ",errors=remount-ro");
Namjae Jeon2628b7a2013-04-29 16:21:08 -07001005 if (opts->nfs == FAT_NFS_NOSTALE_RO)
1006 seq_puts(m, ",nfs=nostale_ro");
1007 else if (opts->nfs)
1008 seq_puts(m, ",nfs=stale_rw");
Christoph Hellwig681142f2009-11-21 20:28:52 +09001009 if (opts->discard)
1010 seq_puts(m, ",discard");
Conrad Meyer190a8842014-06-06 14:36:37 -07001011 if (opts->dos1xfloppy)
1012 seq_puts(m, ",dos1xfloppy");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013
1014 return 0;
1015}
1016
1017enum {
1018 Opt_check_n, Opt_check_r, Opt_check_s, Opt_uid, Opt_gid,
OGAWA Hirofumi1ae43f82008-04-28 02:16:26 -07001019 Opt_umask, Opt_dmask, Opt_fmask, Opt_allow_utime, Opt_codepage,
1020 Opt_usefree, Opt_nocase, Opt_quiet, Opt_showexec, Opt_debug,
1021 Opt_immutable, Opt_dots, Opt_nodots,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022 Opt_charset, Opt_shortname_lower, Opt_shortname_win95,
1023 Opt_shortname_winnt, Opt_shortname_mixed, Opt_utf8_no, Opt_utf8_yes,
1024 Opt_uni_xl_no, Opt_uni_xl_yes, Opt_nonumtail_no, Opt_nonumtail_yes,
Geert Uytterhoevend7a83c02011-10-31 20:50:45 +01001025 Opt_obsolete, Opt_flush, Opt_tz_utc, Opt_rodir, Opt_err_cont,
Jan Kara58156c82012-12-17 16:02:58 -08001026 Opt_err_panic, Opt_err_ro, Opt_discard, Opt_nfs, Opt_time_offset,
Conrad Meyer190a8842014-06-06 14:36:37 -07001027 Opt_nfs_stale_rw, Opt_nfs_nostale_ro, Opt_err, Opt_dos1xfloppy,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028};
1029
Steven Whitehousea447c092008-10-13 10:46:57 +01001030static const match_table_t fat_tokens = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031 {Opt_check_r, "check=relaxed"},
1032 {Opt_check_s, "check=strict"},
1033 {Opt_check_n, "check=normal"},
1034 {Opt_check_r, "check=r"},
1035 {Opt_check_s, "check=s"},
1036 {Opt_check_n, "check=n"},
1037 {Opt_uid, "uid=%u"},
1038 {Opt_gid, "gid=%u"},
1039 {Opt_umask, "umask=%o"},
1040 {Opt_dmask, "dmask=%o"},
1041 {Opt_fmask, "fmask=%o"},
OGAWA Hirofumi1ae43f82008-04-28 02:16:26 -07001042 {Opt_allow_utime, "allow_utime=%o"},
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043 {Opt_codepage, "codepage=%u"},
OGAWA Hirofumi28ec0392007-05-08 00:31:01 -07001044 {Opt_usefree, "usefree"},
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045 {Opt_nocase, "nocase"},
1046 {Opt_quiet, "quiet"},
1047 {Opt_showexec, "showexec"},
1048 {Opt_debug, "debug"},
1049 {Opt_immutable, "sys_immutable"},
Denis Karpov85c78592009-06-04 02:34:22 +09001050 {Opt_flush, "flush"},
1051 {Opt_tz_utc, "tz=UTC"},
Jan Kara58156c82012-12-17 16:02:58 -08001052 {Opt_time_offset, "time_offset=%d"},
Denis Karpov85c78592009-06-04 02:34:22 +09001053 {Opt_err_cont, "errors=continue"},
1054 {Opt_err_panic, "errors=panic"},
1055 {Opt_err_ro, "errors=remount-ro"},
Christoph Hellwig681142f2009-11-21 20:28:52 +09001056 {Opt_discard, "discard"},
Namjae Jeon2628b7a2013-04-29 16:21:08 -07001057 {Opt_nfs_stale_rw, "nfs"},
1058 {Opt_nfs_stale_rw, "nfs=stale_rw"},
1059 {Opt_nfs_nostale_ro, "nfs=nostale_ro"},
Conrad Meyer190a8842014-06-06 14:36:37 -07001060 {Opt_dos1xfloppy, "dos1xfloppy"},
Geert Uytterhoevend7a83c02011-10-31 20:50:45 +01001061 {Opt_obsolete, "conv=binary"},
1062 {Opt_obsolete, "conv=text"},
1063 {Opt_obsolete, "conv=auto"},
1064 {Opt_obsolete, "conv=b"},
1065 {Opt_obsolete, "conv=t"},
1066 {Opt_obsolete, "conv=a"},
1067 {Opt_obsolete, "fat=%u"},
1068 {Opt_obsolete, "blocksize=%u"},
1069 {Opt_obsolete, "cvf_format=%20s"},
1070 {Opt_obsolete, "cvf_options=%100s"},
1071 {Opt_obsolete, "posix"},
Chris Masonae78bf92006-09-29 02:00:03 -07001072 {Opt_err, NULL},
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073};
Steven Whitehousea447c092008-10-13 10:46:57 +01001074static const match_table_t msdos_tokens = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075 {Opt_nodots, "nodots"},
1076 {Opt_nodots, "dotsOK=no"},
1077 {Opt_dots, "dots"},
1078 {Opt_dots, "dotsOK=yes"},
1079 {Opt_err, NULL}
1080};
Steven Whitehousea447c092008-10-13 10:46:57 +01001081static const match_table_t vfat_tokens = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082 {Opt_charset, "iocharset=%s"},
1083 {Opt_shortname_lower, "shortname=lower"},
1084 {Opt_shortname_win95, "shortname=win95"},
1085 {Opt_shortname_winnt, "shortname=winnt"},
1086 {Opt_shortname_mixed, "shortname=mixed"},
1087 {Opt_utf8_no, "utf8=0"}, /* 0 or no or false */
1088 {Opt_utf8_no, "utf8=no"},
1089 {Opt_utf8_no, "utf8=false"},
1090 {Opt_utf8_yes, "utf8=1"}, /* empty or 1 or yes or true */
1091 {Opt_utf8_yes, "utf8=yes"},
1092 {Opt_utf8_yes, "utf8=true"},
1093 {Opt_utf8_yes, "utf8"},
1094 {Opt_uni_xl_no, "uni_xlate=0"}, /* 0 or no or false */
1095 {Opt_uni_xl_no, "uni_xlate=no"},
1096 {Opt_uni_xl_no, "uni_xlate=false"},
1097 {Opt_uni_xl_yes, "uni_xlate=1"}, /* empty or 1 or yes or true */
1098 {Opt_uni_xl_yes, "uni_xlate=yes"},
1099 {Opt_uni_xl_yes, "uni_xlate=true"},
1100 {Opt_uni_xl_yes, "uni_xlate"},
1101 {Opt_nonumtail_no, "nonumtail=0"}, /* 0 or no or false */
1102 {Opt_nonumtail_no, "nonumtail=no"},
1103 {Opt_nonumtail_no, "nonumtail=false"},
1104 {Opt_nonumtail_yes, "nonumtail=1"}, /* empty or 1 or yes or true */
1105 {Opt_nonumtail_yes, "nonumtail=yes"},
1106 {Opt_nonumtail_yes, "nonumtail=true"},
1107 {Opt_nonumtail_yes, "nonumtail"},
OGAWA Hirofumidfc209c2008-11-06 12:53:55 -08001108 {Opt_rodir, "rodir"},
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109 {Opt_err, NULL}
1110};
1111
Alexey Fisher869f58c2011-04-12 21:08:38 +09001112static int parse_options(struct super_block *sb, char *options, int is_vfat,
1113 int silent, int *debug, struct fat_mount_options *opts)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114{
1115 char *p;
1116 substring_t args[MAX_OPT_ARGS];
1117 int option;
1118 char *iocharset;
1119
1120 opts->isvfat = is_vfat;
1121
David Howellsf0ce7ee2008-11-14 10:38:52 +11001122 opts->fs_uid = current_uid();
1123 opts->fs_gid = current_gid();
OGAWA Hirofumi3e107602009-06-20 21:50:07 +09001124 opts->fs_fmask = opts->fs_dmask = current_umask();
OGAWA Hirofumi1ae43f82008-04-28 02:16:26 -07001125 opts->allow_utime = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126 opts->codepage = fat_default_codepage;
1127 opts->iocharset = fat_default_iocharset;
OGAWA Hirofumidfc209c2008-11-06 12:53:55 -08001128 if (is_vfat) {
Paul Wise95523472009-08-01 21:30:31 +09001129 opts->shortname = VFAT_SFN_DISPLAY_WINNT|VFAT_SFN_CREATE_WIN95;
OGAWA Hirofumidfc209c2008-11-06 12:53:55 -08001130 opts->rodir = 0;
1131 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132 opts->shortname = 0;
OGAWA Hirofumidfc209c2008-11-06 12:53:55 -08001133 opts->rodir = 1;
1134 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135 opts->name_check = 'n';
1136 opts->quiet = opts->showexec = opts->sys_immutable = opts->dotsOK = 0;
Maciej S. Szmigiero38739382016-03-22 14:25:30 -07001137 opts->unicode_xlate = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138 opts->numtail = 1;
OGAWA Hirofumi28ec0392007-05-08 00:31:01 -07001139 opts->usefree = opts->nocase = 0;
Jan Kara58156c82012-12-17 16:02:58 -08001140 opts->tz_set = 0;
Steven J. Magnani7669e8f2012-10-04 17:14:45 -07001141 opts->nfs = 0;
Denis Karpov85c78592009-06-04 02:34:22 +09001142 opts->errors = FAT_ERRORS_RO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143 *debug = 0;
1144
Maciej S. Szmigiero38739382016-03-22 14:25:30 -07001145 opts->utf8 = IS_ENABLED(CONFIG_FAT_DEFAULT_UTF8) && is_vfat;
1146
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147 if (!options)
OGAWA Hirofumi8d44d972008-07-25 01:46:41 -07001148 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149
1150 while ((p = strsep(&options, ",")) != NULL) {
1151 int token;
1152 if (!*p)
1153 continue;
1154
1155 token = match_token(p, fat_tokens, args);
1156 if (token == Opt_err) {
1157 if (is_vfat)
1158 token = match_token(p, vfat_tokens, args);
1159 else
1160 token = match_token(p, msdos_tokens, args);
1161 }
1162 switch (token) {
1163 case Opt_check_s:
1164 opts->name_check = 's';
1165 break;
1166 case Opt_check_r:
1167 opts->name_check = 'r';
1168 break;
1169 case Opt_check_n:
1170 opts->name_check = 'n';
1171 break;
OGAWA Hirofumi28ec0392007-05-08 00:31:01 -07001172 case Opt_usefree:
1173 opts->usefree = 1;
1174 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175 case Opt_nocase:
1176 if (!is_vfat)
1177 opts->nocase = 1;
1178 else {
1179 /* for backward compatibility */
1180 opts->shortname = VFAT_SFN_DISPLAY_WIN95
1181 | VFAT_SFN_CREATE_WIN95;
1182 }
1183 break;
1184 case Opt_quiet:
1185 opts->quiet = 1;
1186 break;
1187 case Opt_showexec:
1188 opts->showexec = 1;
1189 break;
1190 case Opt_debug:
1191 *debug = 1;
1192 break;
1193 case Opt_immutable:
1194 opts->sys_immutable = 1;
1195 break;
1196 case Opt_uid:
1197 if (match_int(&args[0], &option))
Jan Kara5b3d5ae2012-12-17 16:02:59 -08001198 return -EINVAL;
Eric W. Biederman170782e2012-02-07 16:25:39 -08001199 opts->fs_uid = make_kuid(current_user_ns(), option);
1200 if (!uid_valid(opts->fs_uid))
Jan Kara5b3d5ae2012-12-17 16:02:59 -08001201 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202 break;
1203 case Opt_gid:
1204 if (match_int(&args[0], &option))
Jan Kara5b3d5ae2012-12-17 16:02:59 -08001205 return -EINVAL;
Eric W. Biederman170782e2012-02-07 16:25:39 -08001206 opts->fs_gid = make_kgid(current_user_ns(), option);
1207 if (!gid_valid(opts->fs_gid))
Jan Kara5b3d5ae2012-12-17 16:02:59 -08001208 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001209 break;
1210 case Opt_umask:
1211 if (match_octal(&args[0], &option))
Jan Kara5b3d5ae2012-12-17 16:02:59 -08001212 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213 opts->fs_fmask = opts->fs_dmask = option;
1214 break;
1215 case Opt_dmask:
1216 if (match_octal(&args[0], &option))
Jan Kara5b3d5ae2012-12-17 16:02:59 -08001217 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218 opts->fs_dmask = option;
1219 break;
1220 case Opt_fmask:
1221 if (match_octal(&args[0], &option))
Jan Kara5b3d5ae2012-12-17 16:02:59 -08001222 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223 opts->fs_fmask = option;
1224 break;
OGAWA Hirofumi1ae43f82008-04-28 02:16:26 -07001225 case Opt_allow_utime:
1226 if (match_octal(&args[0], &option))
Jan Kara5b3d5ae2012-12-17 16:02:59 -08001227 return -EINVAL;
OGAWA Hirofumi1ae43f82008-04-28 02:16:26 -07001228 opts->allow_utime = option & (S_IWGRP | S_IWOTH);
1229 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230 case Opt_codepage:
1231 if (match_int(&args[0], &option))
Jan Kara5b3d5ae2012-12-17 16:02:59 -08001232 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233 opts->codepage = option;
1234 break;
Chris Masonae78bf92006-09-29 02:00:03 -07001235 case Opt_flush:
1236 opts->flush = 1;
1237 break;
Jan Kara58156c82012-12-17 16:02:58 -08001238 case Opt_time_offset:
1239 if (match_int(&args[0], &option))
Jan Kara5b3d5ae2012-12-17 16:02:59 -08001240 return -EINVAL;
Jan Karaa513d862016-01-20 14:59:35 -08001241 /*
1242 * GMT+-12 zones may have DST corrections so at least
1243 * 13 hours difference is needed. Make the limit 24
1244 * just in case someone invents something unusual.
1245 */
1246 if (option < -24 * 60 || option > 24 * 60)
Jan Kara5b3d5ae2012-12-17 16:02:59 -08001247 return -EINVAL;
Jan Kara58156c82012-12-17 16:02:58 -08001248 opts->tz_set = 1;
1249 opts->time_offset = option;
1250 break;
Joe Petersonb271e062008-07-25 01:46:47 -07001251 case Opt_tz_utc:
Jan Kara58156c82012-12-17 16:02:58 -08001252 opts->tz_set = 1;
1253 opts->time_offset = 0;
Joe Petersonb271e062008-07-25 01:46:47 -07001254 break;
Denis Karpov85c78592009-06-04 02:34:22 +09001255 case Opt_err_cont:
1256 opts->errors = FAT_ERRORS_CONT;
1257 break;
1258 case Opt_err_panic:
1259 opts->errors = FAT_ERRORS_PANIC;
1260 break;
1261 case Opt_err_ro:
1262 opts->errors = FAT_ERRORS_RO;
1263 break;
Namjae Jeon2628b7a2013-04-29 16:21:08 -07001264 case Opt_nfs_stale_rw:
1265 opts->nfs = FAT_NFS_STALE_RW;
1266 break;
1267 case Opt_nfs_nostale_ro:
1268 opts->nfs = FAT_NFS_NOSTALE_RO;
1269 break;
Conrad Meyer190a8842014-06-06 14:36:37 -07001270 case Opt_dos1xfloppy:
1271 opts->dos1xfloppy = 1;
1272 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273
1274 /* msdos specific */
1275 case Opt_dots:
1276 opts->dotsOK = 1;
1277 break;
1278 case Opt_nodots:
1279 opts->dotsOK = 0;
1280 break;
1281
1282 /* vfat specific */
1283 case Opt_charset:
1284 if (opts->iocharset != fat_default_iocharset)
1285 kfree(opts->iocharset);
1286 iocharset = match_strdup(&args[0]);
1287 if (!iocharset)
1288 return -ENOMEM;
1289 opts->iocharset = iocharset;
1290 break;
1291 case Opt_shortname_lower:
1292 opts->shortname = VFAT_SFN_DISPLAY_LOWER
1293 | VFAT_SFN_CREATE_WIN95;
1294 break;
1295 case Opt_shortname_win95:
1296 opts->shortname = VFAT_SFN_DISPLAY_WIN95
1297 | VFAT_SFN_CREATE_WIN95;
1298 break;
1299 case Opt_shortname_winnt:
1300 opts->shortname = VFAT_SFN_DISPLAY_WINNT
1301 | VFAT_SFN_CREATE_WINNT;
1302 break;
1303 case Opt_shortname_mixed:
1304 opts->shortname = VFAT_SFN_DISPLAY_WINNT
1305 | VFAT_SFN_CREATE_WIN95;
1306 break;
1307 case Opt_utf8_no: /* 0 or no or false */
1308 opts->utf8 = 0;
1309 break;
1310 case Opt_utf8_yes: /* empty or 1 or yes or true */
1311 opts->utf8 = 1;
1312 break;
1313 case Opt_uni_xl_no: /* 0 or no or false */
1314 opts->unicode_xlate = 0;
1315 break;
1316 case Opt_uni_xl_yes: /* empty or 1 or yes or true */
1317 opts->unicode_xlate = 1;
1318 break;
1319 case Opt_nonumtail_no: /* 0 or no or false */
1320 opts->numtail = 1; /* negated option */
1321 break;
1322 case Opt_nonumtail_yes: /* empty or 1 or yes or true */
1323 opts->numtail = 0; /* negated option */
1324 break;
OGAWA Hirofumidfc209c2008-11-06 12:53:55 -08001325 case Opt_rodir:
1326 opts->rodir = 1;
1327 break;
Christoph Hellwig681142f2009-11-21 20:28:52 +09001328 case Opt_discard:
1329 opts->discard = 1;
1330 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331
1332 /* obsolete mount options */
Geert Uytterhoevend7a83c02011-10-31 20:50:45 +01001333 case Opt_obsolete:
Alexey Fisher869f58c2011-04-12 21:08:38 +09001334 fat_msg(sb, KERN_INFO, "\"%s\" option is obsolete, "
1335 "not supported now", p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336 break;
1337 /* unknown option */
1338 default:
Christoph Hellwig41a34a42005-11-08 21:34:57 -08001339 if (!silent) {
Alexey Fisher869f58c2011-04-12 21:08:38 +09001340 fat_msg(sb, KERN_ERR,
1341 "Unrecognized mount option \"%s\" "
1342 "or missing value", p);
Christoph Hellwig41a34a42005-11-08 21:34:57 -08001343 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344 return -EINVAL;
1345 }
1346 }
OGAWA Hirofumi8d44d972008-07-25 01:46:41 -07001347
1348out:
Alexey Dobriyan4de151d2006-03-22 00:13:35 +01001349 /* UTF-8 doesn't provide FAT semantics */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350 if (!strcmp(opts->iocharset, "utf8")) {
Mihai Moldovan186b5372011-08-17 19:10:08 +09001351 fat_msg(sb, KERN_WARNING, "utf8 is not a recommended IO charset"
OGAWA Hirofumi8d44d972008-07-25 01:46:41 -07001352 " for FAT filesystems, filesystem will be "
Mihai Moldovan186b5372011-08-17 19:10:08 +09001353 "case sensitive!");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354 }
1355
OGAWA Hirofumi1ae43f82008-04-28 02:16:26 -07001356 /* If user doesn't specify allow_utime, it's initialized from dmask. */
1357 if (opts->allow_utime == (unsigned short)-1)
1358 opts->allow_utime = ~opts->fs_dmask & (S_IWGRP | S_IWOTH);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359 if (opts->unicode_xlate)
1360 opts->utf8 = 0;
Namjae Jeonea3983a2013-04-29 16:21:11 -07001361 if (opts->nfs == FAT_NFS_NOSTALE_RO) {
Linus Torvalds1751e8a2017-11-27 13:05:09 -08001362 sb->s_flags |= SB_RDONLY;
Namjae Jeonea3983a2013-04-29 16:21:11 -07001363 sb->s_export_op = &fat_export_ops_nostale;
1364 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365
1366 return 0;
1367}
1368
OGAWA Hirofumic0d0e352017-03-09 16:17:37 -08001369static void fat_dummy_inode_init(struct inode *inode)
1370{
1371 /* Initialize this dummy inode to work as no-op. */
1372 MSDOS_I(inode)->mmu_private = 0;
1373 MSDOS_I(inode)->i_start = 0;
1374 MSDOS_I(inode)->i_logstart = 0;
1375 MSDOS_I(inode)->i_attrs = 0;
1376 MSDOS_I(inode)->i_pos = 0;
1377}
1378
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379static int fat_read_root(struct inode *inode)
1380{
Alexander Kuleshova40a7d92015-04-16 12:47:21 -07001381 struct msdos_sb_info *sbi = MSDOS_SB(inode->i_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382 int error;
1383
Namjae Jeonea3983a2013-04-29 16:21:11 -07001384 MSDOS_I(inode)->i_pos = MSDOS_ROOT_INO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385 inode->i_uid = sbi->options.fs_uid;
1386 inode->i_gid = sbi->options.fs_gid;
Jeff Layton2489dba2017-12-11 06:35:09 -05001387 inode_inc_iversion(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388 inode->i_generation = 0;
OGAWA Hirofumi9c0aa1b2008-11-06 12:53:54 -08001389 inode->i_mode = fat_make_mode(sbi, ATTR_DIR, S_IRWXUGO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390 inode->i_op = sbi->dir_ops;
1391 inode->i_fop = &fat_dir_operations;
1392 if (sbi->fat_bits == 32) {
1393 MSDOS_I(inode)->i_start = sbi->root_cluster;
1394 error = fat_calc_dir_size(inode);
1395 if (error < 0)
1396 return error;
1397 } else {
1398 MSDOS_I(inode)->i_start = 0;
1399 inode->i_size = sbi->dir_entries * sizeof(struct msdos_dir_entry);
1400 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401 inode->i_blocks = ((inode->i_size + (sbi->cluster_size - 1))
1402 & ~((loff_t)sbi->cluster_size - 1)) >> 9;
1403 MSDOS_I(inode)->i_logstart = 0;
1404 MSDOS_I(inode)->mmu_private = inode->i_size;
1405
OGAWA Hirofumi9c0aa1b2008-11-06 12:53:54 -08001406 fat_save_attrs(inode, ATTR_DIR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407 inode->i_mtime.tv_sec = inode->i_atime.tv_sec = inode->i_ctime.tv_sec = 0;
1408 inode->i_mtime.tv_nsec = inode->i_atime.tv_nsec = inode->i_ctime.tv_nsec = 0;
Miklos Szeredibfe86842011-10-28 14:13:29 +02001409 set_nlink(inode, fat_subdirs(inode)+2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001410
1411 return 0;
1412}
1413
OGAWA Hirofumi7b92d032013-05-24 15:55:08 -07001414static unsigned long calc_fat_clusters(struct super_block *sb)
1415{
1416 struct msdos_sb_info *sbi = MSDOS_SB(sb);
1417
1418 /* Divide first to avoid overflow */
1419 if (sbi->fat_bits != 12) {
1420 unsigned long ent_per_sec = sb->s_blocksize * 8 / sbi->fat_bits;
1421 return ent_per_sec * sbi->fat_length;
1422 }
1423
1424 return sbi->fat_length * sb->s_blocksize * 8 / sbi->fat_bits;
1425}
1426
Conrad Meyer190a8842014-06-06 14:36:37 -07001427static bool fat_bpb_is_zero(struct fat_boot_sector *b)
1428{
1429 if (get_unaligned_le16(&b->sector_size))
1430 return false;
1431 if (b->sec_per_clus)
1432 return false;
1433 if (b->reserved)
1434 return false;
1435 if (b->fats)
1436 return false;
1437 if (get_unaligned_le16(&b->dir_entries))
1438 return false;
1439 if (get_unaligned_le16(&b->sectors))
1440 return false;
1441 if (b->media)
1442 return false;
1443 if (b->fat_length)
1444 return false;
1445 if (b->secs_track)
1446 return false;
1447 if (b->heads)
1448 return false;
1449 return true;
1450}
1451
1452static int fat_read_bpb(struct super_block *sb, struct fat_boot_sector *b,
1453 int silent, struct fat_bios_param_block *bpb)
1454{
1455 int error = -EINVAL;
1456
1457 /* Read in BPB ... */
1458 memset(bpb, 0, sizeof(*bpb));
1459 bpb->fat_sector_size = get_unaligned_le16(&b->sector_size);
1460 bpb->fat_sec_per_clus = b->sec_per_clus;
1461 bpb->fat_reserved = le16_to_cpu(b->reserved);
1462 bpb->fat_fats = b->fats;
1463 bpb->fat_dir_entries = get_unaligned_le16(&b->dir_entries);
1464 bpb->fat_sectors = get_unaligned_le16(&b->sectors);
1465 bpb->fat_fat_length = le16_to_cpu(b->fat_length);
1466 bpb->fat_total_sect = le32_to_cpu(b->total_sect);
1467
1468 bpb->fat16_state = b->fat16.state;
1469 bpb->fat16_vol_id = get_unaligned_le32(b->fat16.vol_id);
1470
1471 bpb->fat32_length = le32_to_cpu(b->fat32.length);
1472 bpb->fat32_root_cluster = le32_to_cpu(b->fat32.root_cluster);
1473 bpb->fat32_info_sector = le16_to_cpu(b->fat32.info_sector);
1474 bpb->fat32_state = b->fat32.state;
1475 bpb->fat32_vol_id = get_unaligned_le32(b->fat32.vol_id);
1476
1477 /* Validate this looks like a FAT filesystem BPB */
1478 if (!bpb->fat_reserved) {
1479 if (!silent)
1480 fat_msg(sb, KERN_ERR,
1481 "bogus number of reserved sectors");
1482 goto out;
1483 }
1484 if (!bpb->fat_fats) {
1485 if (!silent)
1486 fat_msg(sb, KERN_ERR, "bogus number of FAT structure");
1487 goto out;
1488 }
1489
1490 /*
1491 * Earlier we checked here that b->secs_track and b->head are nonzero,
1492 * but it turns out valid FAT filesystems can have zero there.
1493 */
1494
1495 if (!fat_valid_media(b->media)) {
1496 if (!silent)
1497 fat_msg(sb, KERN_ERR, "invalid media value (0x%02x)",
1498 (unsigned)b->media);
1499 goto out;
1500 }
1501
1502 if (!is_power_of_2(bpb->fat_sector_size)
1503 || (bpb->fat_sector_size < 512)
1504 || (bpb->fat_sector_size > 4096)) {
1505 if (!silent)
1506 fat_msg(sb, KERN_ERR, "bogus logical sector size %u",
1507 (unsigned)bpb->fat_sector_size);
1508 goto out;
1509 }
1510
1511 if (!is_power_of_2(bpb->fat_sec_per_clus)) {
1512 if (!silent)
1513 fat_msg(sb, KERN_ERR, "bogus sectors per cluster %u",
1514 (unsigned)bpb->fat_sec_per_clus);
1515 goto out;
1516 }
1517
1518 error = 0;
1519
1520out:
1521 return error;
1522}
1523
1524static int fat_read_static_bpb(struct super_block *sb,
1525 struct fat_boot_sector *b, int silent,
1526 struct fat_bios_param_block *bpb)
1527{
1528 static const char *notdos1x = "This doesn't look like a DOS 1.x volume";
1529
1530 struct fat_floppy_defaults *fdefaults = NULL;
1531 int error = -EINVAL;
1532 sector_t bd_sects;
1533 unsigned i;
1534
1535 bd_sects = i_size_read(sb->s_bdev->bd_inode) / SECTOR_SIZE;
1536
1537 /* 16-bit DOS 1.x reliably wrote bootstrap short-jmp code */
1538 if (b->ignored[0] != 0xeb || b->ignored[2] != 0x90) {
1539 if (!silent)
1540 fat_msg(sb, KERN_ERR,
1541 "%s; no bootstrapping code", notdos1x);
1542 goto out;
1543 }
1544
1545 /*
1546 * If any value in this region is non-zero, it isn't archaic
1547 * DOS.
1548 */
1549 if (!fat_bpb_is_zero(b)) {
1550 if (!silent)
1551 fat_msg(sb, KERN_ERR,
1552 "%s; DOS 2.x BPB is non-zero", notdos1x);
1553 goto out;
1554 }
1555
1556 for (i = 0; i < ARRAY_SIZE(floppy_defaults); i++) {
1557 if (floppy_defaults[i].nr_sectors == bd_sects) {
1558 fdefaults = &floppy_defaults[i];
1559 break;
1560 }
1561 }
1562
1563 if (fdefaults == NULL) {
1564 if (!silent)
1565 fat_msg(sb, KERN_WARNING,
1566 "This looks like a DOS 1.x volume, but isn't a recognized floppy size (%llu sectors)",
1567 (u64)bd_sects);
1568 goto out;
1569 }
1570
1571 if (!silent)
1572 fat_msg(sb, KERN_INFO,
1573 "This looks like a DOS 1.x volume; assuming default BPB values");
1574
1575 memset(bpb, 0, sizeof(*bpb));
1576 bpb->fat_sector_size = SECTOR_SIZE;
1577 bpb->fat_sec_per_clus = fdefaults->sec_per_clus;
1578 bpb->fat_reserved = 1;
1579 bpb->fat_fats = 2;
1580 bpb->fat_dir_entries = fdefaults->dir_entries;
1581 bpb->fat_sectors = fdefaults->nr_sectors;
1582 bpb->fat_fat_length = fdefaults->fat_length;
1583
1584 error = 0;
1585
1586out:
1587 return error;
1588}
1589
Linus Torvalds1da177e2005-04-16 15:20:36 -07001590/*
1591 * Read the super block of an MS-DOS FS.
1592 */
OGAWA Hirofumi384f5c92011-04-12 21:08:37 +09001593int fat_fill_super(struct super_block *sb, void *data, int silent, int isvfat,
Al Viro3d239852010-12-18 10:44:00 -05001594 void (*setup)(struct super_block *))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595{
Al Virob5224122009-06-07 13:44:36 -04001596 struct inode *root_inode = NULL, *fat_inode = NULL;
Artem Bityutskiy020ac5b2012-05-31 16:26:12 -07001597 struct inode *fsinfo_inode = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598 struct buffer_head *bh;
Conrad Meyer190a8842014-06-06 14:36:37 -07001599 struct fat_bios_param_block bpb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600 struct msdos_sb_info *sbi;
1601 u16 logical_sector_size;
1602 u32 total_sectors, total_clusters, fat_clusters, rootdir_sectors;
1603 int debug;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604 long error;
1605 char buf[50];
1606
Linus Torvalds8f593422008-05-19 19:53:01 -07001607 /*
1608 * GFP_KERNEL is ok here, because while we do hold the
Zheng Lvdcc381e2016-06-20 23:51:29 -04001609 * superblock lock, memory pressure can't call back into
Linus Torvalds8f593422008-05-19 19:53:01 -07001610 * the filesystem, since we're only just about to mount
1611 * it and have no inodes etc active!
1612 */
Panagiotis Issarisf8314dc2006-09-27 01:49:37 -07001613 sbi = kzalloc(sizeof(struct msdos_sb_info), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001614 if (!sbi)
1615 return -ENOMEM;
1616 sb->s_fs_info = sbi;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001617
Linus Torvalds1751e8a2017-11-27 13:05:09 -08001618 sb->s_flags |= SB_NODIRATIME;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001619 sb->s_magic = MSDOS_SUPER_MAGIC;
1620 sb->s_op = &fat_sops;
1621 sb->s_export_op = &fat_export_ops;
Namjae Jeon8fceb4e2013-04-29 16:21:12 -07001622 mutex_init(&sbi->nfs_build_inode_lock);
OGAWA Hirofumiaaa04b42010-05-24 14:33:12 -07001623 ratelimit_state_init(&sbi->ratelimit, DEFAULT_RATELIMIT_INTERVAL,
1624 DEFAULT_RATELIMIT_BURST);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001625
Alexey Fisher869f58c2011-04-12 21:08:38 +09001626 error = parse_options(sb, data, isvfat, silent, &debug, &sbi->options);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001627 if (error)
1628 goto out_fail;
1629
Al Viro3d239852010-12-18 10:44:00 -05001630 setup(sb); /* flavour-specific stuff that needs options */
1631
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632 error = -EIO;
1633 sb_min_blocksize(sb, 512);
1634 bh = sb_bread(sb, 0);
1635 if (bh == NULL) {
Alexey Fisher869f58c2011-04-12 21:08:38 +09001636 fat_msg(sb, KERN_ERR, "unable to read boot sector");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001637 goto out_fail;
1638 }
1639
Conrad Meyer190a8842014-06-06 14:36:37 -07001640 error = fat_read_bpb(sb, (struct fat_boot_sector *)bh->b_data, silent,
1641 &bpb);
1642 if (error == -EINVAL && sbi->options.dos1xfloppy)
1643 error = fat_read_static_bpb(sb,
1644 (struct fat_boot_sector *)bh->b_data, silent, &bpb);
1645 brelse(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001646
Conrad Meyer190a8842014-06-06 14:36:37 -07001647 if (error == -EINVAL)
1648 goto out_invalid;
1649 else if (error)
1650 goto out_fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001651
Conrad Meyer190a8842014-06-06 14:36:37 -07001652 logical_sector_size = bpb.fat_sector_size;
1653 sbi->sec_per_clus = bpb.fat_sec_per_clus;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001654
Conrad Meyer190a8842014-06-06 14:36:37 -07001655 error = -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001656 if (logical_sector_size < sb->s_blocksize) {
Alexey Fisher869f58c2011-04-12 21:08:38 +09001657 fat_msg(sb, KERN_ERR, "logical sector size too small for device"
1658 " (logical sector size = %u)", logical_sector_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001659 goto out_fail;
1660 }
Conrad Meyer190a8842014-06-06 14:36:37 -07001661
Linus Torvalds1da177e2005-04-16 15:20:36 -07001662 if (logical_sector_size > sb->s_blocksize) {
Conrad Meyer190a8842014-06-06 14:36:37 -07001663 struct buffer_head *bh_resize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001664
1665 if (!sb_set_blocksize(sb, logical_sector_size)) {
Alexey Fisher869f58c2011-04-12 21:08:38 +09001666 fat_msg(sb, KERN_ERR, "unable to set blocksize %u",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001667 logical_sector_size);
1668 goto out_fail;
1669 }
Conrad Meyer190a8842014-06-06 14:36:37 -07001670
1671 /* Verify that the larger boot sector is fully readable */
1672 bh_resize = sb_bread(sb, 0);
1673 if (bh_resize == NULL) {
Alexey Fisher869f58c2011-04-12 21:08:38 +09001674 fat_msg(sb, KERN_ERR, "unable to read boot sector"
1675 " (logical sector size = %lu)",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001676 sb->s_blocksize);
1677 goto out_fail;
1678 }
Conrad Meyer190a8842014-06-06 14:36:37 -07001679 brelse(bh_resize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001680 }
1681
Marco Stornellie40b34c2012-10-06 12:40:03 +02001682 mutex_init(&sbi->s_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001683 sbi->cluster_size = sb->s_blocksize * sbi->sec_per_clus;
1684 sbi->cluster_bits = ffs(sbi->cluster_size) - 1;
Conrad Meyer190a8842014-06-06 14:36:37 -07001685 sbi->fats = bpb.fat_fats;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001686 sbi->fat_bits = 0; /* Don't know yet */
Conrad Meyer190a8842014-06-06 14:36:37 -07001687 sbi->fat_start = bpb.fat_reserved;
1688 sbi->fat_length = bpb.fat_fat_length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001689 sbi->root_cluster = 0;
1690 sbi->free_clusters = -1; /* Don't know yet */
OGAWA Hirofumi606e4232008-04-28 02:16:27 -07001691 sbi->free_clus_valid = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001692 sbi->prev_free = FAT_START_ENT;
Namjae Jeon710d4402011-08-17 19:10:09 +09001693 sb->s_maxbytes = 0xffffffff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001694
Conrad Meyer190a8842014-06-06 14:36:37 -07001695 if (!sbi->fat_length && bpb.fat32_length) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001696 struct fat_boot_fsinfo *fsinfo;
1697 struct buffer_head *fsinfo_bh;
1698
1699 /* Must be FAT32 */
1700 sbi->fat_bits = 32;
Conrad Meyer190a8842014-06-06 14:36:37 -07001701 sbi->fat_length = bpb.fat32_length;
1702 sbi->root_cluster = bpb.fat32_root_cluster;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001703
Linus Torvalds1da177e2005-04-16 15:20:36 -07001704 /* MC - if info_sector is 0, don't multiply by 0 */
Conrad Meyer190a8842014-06-06 14:36:37 -07001705 sbi->fsinfo_sector = bpb.fat32_info_sector;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001706 if (sbi->fsinfo_sector == 0)
1707 sbi->fsinfo_sector = 1;
1708
1709 fsinfo_bh = sb_bread(sb, sbi->fsinfo_sector);
1710 if (fsinfo_bh == NULL) {
Alexey Fisher869f58c2011-04-12 21:08:38 +09001711 fat_msg(sb, KERN_ERR, "bread failed, FSINFO block"
1712 " (sector = %lu)", sbi->fsinfo_sector);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001713 goto out_fail;
1714 }
1715
1716 fsinfo = (struct fat_boot_fsinfo *)fsinfo_bh->b_data;
1717 if (!IS_FSINFO(fsinfo)) {
Alexey Fisher869f58c2011-04-12 21:08:38 +09001718 fat_msg(sb, KERN_WARNING, "Invalid FSINFO signature: "
1719 "0x%08x, 0x%08x (sector = %lu)",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001720 le32_to_cpu(fsinfo->signature1),
1721 le32_to_cpu(fsinfo->signature2),
1722 sbi->fsinfo_sector);
1723 } else {
OGAWA Hirofumi28ec0392007-05-08 00:31:01 -07001724 if (sbi->options.usefree)
OGAWA Hirofumi606e4232008-04-28 02:16:27 -07001725 sbi->free_clus_valid = 1;
1726 sbi->free_clusters = le32_to_cpu(fsinfo->free_clusters);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001727 sbi->prev_free = le32_to_cpu(fsinfo->next_cluster);
1728 }
1729
1730 brelse(fsinfo_bh);
1731 }
1732
Mike Lockwood6e5b93e2013-07-08 16:00:46 -07001733 /* interpret volume ID as a little endian 32 bit integer */
1734 if (sbi->fat_bits == 32)
Conrad Meyer190a8842014-06-06 14:36:37 -07001735 sbi->vol_id = bpb.fat32_vol_id;
Mike Lockwood6e5b93e2013-07-08 16:00:46 -07001736 else /* fat 16 or 12 */
Conrad Meyer190a8842014-06-06 14:36:37 -07001737 sbi->vol_id = bpb.fat16_vol_id;
Mike Lockwood6e5b93e2013-07-08 16:00:46 -07001738
Linus Torvalds1da177e2005-04-16 15:20:36 -07001739 sbi->dir_per_block = sb->s_blocksize / sizeof(struct msdos_dir_entry);
1740 sbi->dir_per_block_bits = ffs(sbi->dir_per_block) - 1;
1741
1742 sbi->dir_start = sbi->fat_start + sbi->fats * sbi->fat_length;
Conrad Meyer190a8842014-06-06 14:36:37 -07001743 sbi->dir_entries = bpb.fat_dir_entries;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001744 if (sbi->dir_entries & (sbi->dir_per_block - 1)) {
1745 if (!silent)
Zheng Lv34df1172016-06-24 01:31:00 -04001746 fat_msg(sb, KERN_ERR, "bogus number of directory entries"
Alexey Fisher869f58c2011-04-12 21:08:38 +09001747 " (%u)", sbi->dir_entries);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001748 goto out_invalid;
1749 }
1750
1751 rootdir_sectors = sbi->dir_entries
1752 * sizeof(struct msdos_dir_entry) / sb->s_blocksize;
1753 sbi->data_start = sbi->dir_start + rootdir_sectors;
Conrad Meyer190a8842014-06-06 14:36:37 -07001754 total_sectors = bpb.fat_sectors;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001755 if (total_sectors == 0)
Conrad Meyer190a8842014-06-06 14:36:37 -07001756 total_sectors = bpb.fat_total_sect;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001757
1758 total_clusters = (total_sectors - sbi->data_start) / sbi->sec_per_clus;
1759
1760 if (sbi->fat_bits != 32)
1761 sbi->fat_bits = (total_clusters > MAX_FAT12) ? 16 : 12;
1762
Oleksij Rempelb88a10582013-02-27 17:03:09 -08001763 /* some OSes set FAT_STATE_DIRTY and clean it on unmount. */
1764 if (sbi->fat_bits == 32)
Conrad Meyer190a8842014-06-06 14:36:37 -07001765 sbi->dirty = bpb.fat32_state & FAT_STATE_DIRTY;
Oleksij Rempelb88a10582013-02-27 17:03:09 -08001766 else /* fat 16 or 12 */
Conrad Meyer190a8842014-06-06 14:36:37 -07001767 sbi->dirty = bpb.fat16_state & FAT_STATE_DIRTY;
Oleksij Rempelb88a10582013-02-27 17:03:09 -08001768
Linus Torvalds1da177e2005-04-16 15:20:36 -07001769 /* check that FAT table does not overflow */
OGAWA Hirofumi7b92d032013-05-24 15:55:08 -07001770 fat_clusters = calc_fat_clusters(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001771 total_clusters = min(total_clusters, fat_clusters - FAT_START_ENT);
1772 if (total_clusters > MAX_FAT(sb)) {
1773 if (!silent)
Alexey Fisher869f58c2011-04-12 21:08:38 +09001774 fat_msg(sb, KERN_ERR, "count of clusters too big (%u)",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001775 total_clusters);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001776 goto out_invalid;
1777 }
1778
1779 sbi->max_cluster = total_clusters + FAT_START_ENT;
1780 /* check the free_clusters, it's not necessarily correct */
1781 if (sbi->free_clusters != -1 && sbi->free_clusters > total_clusters)
1782 sbi->free_clusters = -1;
1783 /* check the prev_free, it's not necessarily correct */
1784 sbi->prev_free %= sbi->max_cluster;
1785 if (sbi->prev_free < FAT_START_ENT)
1786 sbi->prev_free = FAT_START_ENT;
1787
Linus Torvalds1da177e2005-04-16 15:20:36 -07001788 /* set up enough so that it can read an inode */
1789 fat_hash_init(sb);
Steven J. Magnani7669e8f2012-10-04 17:14:45 -07001790 dir_hash_init(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001791 fat_ent_access_init(sb);
1792
1793 /*
1794 * The low byte of FAT's first entry must have same value with
1795 * media-field. But in real world, too many devices is
1796 * writing wrong value. So, removed that validity check.
1797 *
1798 * if (FAT_FIRST_ENT(sb, media) != first)
1799 */
1800
1801 error = -EINVAL;
1802 sprintf(buf, "cp%d", sbi->options.codepage);
1803 sbi->nls_disk = load_nls(buf);
1804 if (!sbi->nls_disk) {
Alexey Fisher869f58c2011-04-12 21:08:38 +09001805 fat_msg(sb, KERN_ERR, "codepage %s not found", buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001806 goto out_fail;
1807 }
1808
1809 /* FIXME: utf8 is using iocharset for upper/lower conversion */
1810 if (sbi->options.isvfat) {
1811 sbi->nls_io = load_nls(sbi->options.iocharset);
1812 if (!sbi->nls_io) {
Alexey Fisher869f58c2011-04-12 21:08:38 +09001813 fat_msg(sb, KERN_ERR, "IO charset %s not found",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001814 sbi->options.iocharset);
1815 goto out_fail;
1816 }
1817 }
1818
1819 error = -ENOMEM;
Al Virob5224122009-06-07 13:44:36 -04001820 fat_inode = new_inode(sb);
1821 if (!fat_inode)
1822 goto out_fail;
OGAWA Hirofumic0d0e352017-03-09 16:17:37 -08001823 fat_dummy_inode_init(fat_inode);
Al Virob5224122009-06-07 13:44:36 -04001824 sbi->fat_inode = fat_inode;
Artem Bityutskiy020ac5b2012-05-31 16:26:12 -07001825
1826 fsinfo_inode = new_inode(sb);
1827 if (!fsinfo_inode)
1828 goto out_fail;
OGAWA Hirofumic0d0e352017-03-09 16:17:37 -08001829 fat_dummy_inode_init(fsinfo_inode);
Artem Bityutskiy020ac5b2012-05-31 16:26:12 -07001830 fsinfo_inode->i_ino = MSDOS_FSINFO_INO;
1831 sbi->fsinfo_inode = fsinfo_inode;
1832 insert_inode_hash(fsinfo_inode);
1833
Linus Torvalds1da177e2005-04-16 15:20:36 -07001834 root_inode = new_inode(sb);
1835 if (!root_inode)
1836 goto out_fail;
1837 root_inode->i_ino = MSDOS_ROOT_INO;
Jeff Layton2489dba2017-12-11 06:35:09 -05001838 inode_set_iversion(root_inode, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001839 error = fat_read_root(root_inode);
Al Viro1688f862012-02-12 22:06:33 -05001840 if (error < 0) {
1841 iput(root_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001842 goto out_fail;
Al Viro1688f862012-02-12 22:06:33 -05001843 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001844 error = -ENOMEM;
1845 insert_inode_hash(root_inode);
Steven J. Magnani7669e8f2012-10-04 17:14:45 -07001846 fat_attach(root_inode, 0);
Al Viro1688f862012-02-12 22:06:33 -05001847 sb->s_root = d_make_root(root_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001848 if (!sb->s_root) {
Alexey Fisher869f58c2011-04-12 21:08:38 +09001849 fat_msg(sb, KERN_ERR, "get root inode failed");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001850 goto out_fail;
1851 }
1852
Namjae Jeonf5621462012-12-17 16:02:56 -08001853 if (sbi->options.discard) {
1854 struct request_queue *q = bdev_get_queue(sb->s_bdev);
1855 if (!blk_queue_discard(q))
1856 fat_msg(sb, KERN_WARNING,
1857 "mounting with \"discard\" option, but "
1858 "the device does not support discard");
1859 }
1860
Oleksij Rempelb88a10582013-02-27 17:03:09 -08001861 fat_set_state(sb, 1, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001862 return 0;
1863
1864out_invalid:
1865 error = -EINVAL;
1866 if (!silent)
Alexey Fisher869f58c2011-04-12 21:08:38 +09001867 fat_msg(sb, KERN_INFO, "Can't find a valid FAT filesystem");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001868
1869out_fail:
Artem Bityutskiy020ac5b2012-05-31 16:26:12 -07001870 if (fsinfo_inode)
1871 iput(fsinfo_inode);
Al Virob5224122009-06-07 13:44:36 -04001872 if (fat_inode)
1873 iput(fat_inode);
OGAWA Hirofumi1bdb6f912010-03-16 05:48:09 +09001874 unload_nls(sbi->nls_io);
1875 unload_nls(sbi->nls_disk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001876 if (sbi->options.iocharset != fat_default_iocharset)
1877 kfree(sbi->options.iocharset);
1878 sb->s_fs_info = NULL;
1879 kfree(sbi);
1880 return error;
1881}
1882
OGAWA Hirofumi7c709d02006-01-08 01:02:10 -08001883EXPORT_SYMBOL_GPL(fat_fill_super);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001884
Chris Masonae78bf92006-09-29 02:00:03 -07001885/*
1886 * helper function for fat_flush_inodes. This writes both the inode
1887 * and the file data blocks, waiting for in flight data blocks before
1888 * the start of the call. It does not wait for any io started
1889 * during the call
1890 */
1891static int writeback_inode(struct inode *inode)
1892{
1893
1894 int ret;
Namjae Jeon14864652012-10-04 17:15:04 -07001895
1896 /* if we used wait=1, sync_inode_metadata waits for the io for the
1897 * inode to finish. So wait=0 is sent down to sync_inode_metadata
Chris Masonae78bf92006-09-29 02:00:03 -07001898 * and filemap_fdatawrite is used for the data blocks
1899 */
Namjae Jeon14864652012-10-04 17:15:04 -07001900 ret = sync_inode_metadata(inode, 0);
Chris Masonae78bf92006-09-29 02:00:03 -07001901 if (!ret)
Namjae Jeon14864652012-10-04 17:15:04 -07001902 ret = filemap_fdatawrite(inode->i_mapping);
Chris Masonae78bf92006-09-29 02:00:03 -07001903 return ret;
1904}
1905
1906/*
1907 * write data and metadata corresponding to i1 and i2. The io is
1908 * started but we do not wait for any of it to finish.
1909 *
1910 * filemap_flush is used for the block device, so if there is a dirty
1911 * page for a block already in flight, we will not wait and start the
1912 * io over again
1913 */
1914int fat_flush_inodes(struct super_block *sb, struct inode *i1, struct inode *i2)
1915{
1916 int ret = 0;
1917 if (!MSDOS_SB(sb)->options.flush)
1918 return 0;
1919 if (i1)
1920 ret = writeback_inode(i1);
1921 if (!ret && i2)
1922 ret = writeback_inode(i2);
Eric Sesterhenn97e860d2006-10-11 01:21:59 -07001923 if (!ret) {
Chris Masonae78bf92006-09-29 02:00:03 -07001924 struct address_space *mapping = sb->s_bdev->bd_inode->i_mapping;
1925 ret = filemap_flush(mapping);
1926 }
1927 return ret;
1928}
1929EXPORT_SYMBOL_GPL(fat_flush_inodes);
1930
Linus Torvalds1da177e2005-04-16 15:20:36 -07001931static int __init init_fat_fs(void)
1932{
Pekka J Enberg532a39a2005-06-30 02:59:01 -07001933 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001934
Pekka J Enberg532a39a2005-06-30 02:59:01 -07001935 err = fat_cache_init();
1936 if (err)
1937 return err;
1938
1939 err = fat_init_inodecache();
1940 if (err)
1941 goto failed;
1942
1943 return 0;
1944
1945failed:
1946 fat_cache_destroy();
1947 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001948}
1949
1950static void __exit exit_fat_fs(void)
1951{
1952 fat_cache_destroy();
1953 fat_destroy_inodecache();
1954}
1955
1956module_init(init_fat_fs)
1957module_exit(exit_fat_fs)
1958
1959MODULE_LICENSE("GPL");