blob: 065dc919a0ce15963b21265f4872b007bcfc3310 [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{
Deepa Dinamani95582b02018-05-08 19:36:02 -0700511 struct timespec ts;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 struct msdos_sb_info *sbi = MSDOS_SB(inode->i_sb);
513 int error;
514
515 MSDOS_I(inode)->i_pos = 0;
516 inode->i_uid = sbi->options.fs_uid;
517 inode->i_gid = sbi->options.fs_gid;
Jeff Layton2489dba2017-12-11 06:35:09 -0500518 inode_inc_iversion(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 inode->i_generation = get_seconds();
520
521 if ((de->attr & ATTR_DIR) && !IS_FREE(de->name)) {
522 inode->i_generation &= ~1;
OGAWA Hirofumi9c0aa1b2008-11-06 12:53:54 -0800523 inode->i_mode = fat_make_mode(sbi, de->attr, S_IRWXUGO);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 inode->i_op = sbi->dir_ops;
525 inode->i_fop = &fat_dir_operations;
526
Steven J. Magnania943ed72012-07-30 14:42:13 -0700527 MSDOS_I(inode)->i_start = fat_get_start(sbi, de);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 MSDOS_I(inode)->i_logstart = MSDOS_I(inode)->i_start;
529 error = fat_calc_dir_size(inode);
530 if (error < 0)
531 return error;
532 MSDOS_I(inode)->mmu_private = inode->i_size;
533
Miklos Szeredibfe86842011-10-28 14:13:29 +0200534 set_nlink(inode, fat_subdirs(inode));
OGAWA Hirofumia3082d52016-01-20 14:59:38 -0800535
536 error = fat_validate_dir(inode);
537 if (error < 0)
538 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 } else { /* not a directory */
540 inode->i_generation |= 1;
OGAWA Hirofumi9c0aa1b2008-11-06 12:53:54 -0800541 inode->i_mode = fat_make_mode(sbi, de->attr,
542 ((sbi->options.showexec && !is_exec(de->name + 8))
543 ? S_IRUGO|S_IWUGO : S_IRWXUGO));
Steven J. Magnania943ed72012-07-30 14:42:13 -0700544 MSDOS_I(inode)->i_start = fat_get_start(sbi, de);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545
546 MSDOS_I(inode)->i_logstart = MSDOS_I(inode)->i_start;
547 inode->i_size = le32_to_cpu(de->size);
548 inode->i_op = &fat_file_inode_operations;
549 inode->i_fop = &fat_file_operations;
550 inode->i_mapping->a_ops = &fat_aops;
551 MSDOS_I(inode)->mmu_private = inode->i_size;
552 }
553 if (de->attr & ATTR_SYS) {
554 if (sbi->options.sys_immutable)
555 inode->i_flags |= S_IMMUTABLE;
556 }
OGAWA Hirofumi9c0aa1b2008-11-06 12:53:54 -0800557 fat_save_attrs(inode, de->attr);
558
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 inode->i_blocks = ((inode->i_size + (sbi->cluster_size - 1))
560 & ~((loff_t)sbi->cluster_size - 1)) >> 9;
OGAWA Hirofumi7decd1c2008-11-06 12:53:47 -0800561
Deepa Dinamani95582b02018-05-08 19:36:02 -0700562 fat_time_fat2unix(sbi, &ts, de->time, de->date, 0);
563 inode->i_mtime = timespec_to_timespec64(ts);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564 if (sbi->options.isvfat) {
Deepa Dinamani95582b02018-05-08 19:36:02 -0700565 fat_time_fat2unix(sbi, &ts, de->ctime,
OGAWA Hirofumi7decd1c2008-11-06 12:53:47 -0800566 de->cdate, de->ctime_cs);
Deepa Dinamani95582b02018-05-08 19:36:02 -0700567 inode->i_ctime = timespec_to_timespec64(ts);
568 fat_time_fat2unix(sbi, &ts, 0, de->adate, 0);
569 inode->i_atime = timespec_to_timespec64(ts);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570 } else
Stephane Kardas62a36c42005-09-21 09:55:45 -0700571 inode->i_ctime = inode->i_atime = inode->i_mtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572
573 return 0;
574}
575
Namjae Jeon8fceb4e2013-04-29 16:21:12 -0700576static inline void fat_lock_build_inode(struct msdos_sb_info *sbi)
577{
578 if (sbi->options.nfs == FAT_NFS_NOSTALE_RO)
579 mutex_lock(&sbi->nfs_build_inode_lock);
580}
581
582static inline void fat_unlock_build_inode(struct msdos_sb_info *sbi)
583{
584 if (sbi->options.nfs == FAT_NFS_NOSTALE_RO)
585 mutex_unlock(&sbi->nfs_build_inode_lock);
586}
587
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588struct inode *fat_build_inode(struct super_block *sb,
589 struct msdos_dir_entry *de, loff_t i_pos)
590{
591 struct inode *inode;
592 int err;
593
Namjae Jeon8fceb4e2013-04-29 16:21:12 -0700594 fat_lock_build_inode(MSDOS_SB(sb));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595 inode = fat_iget(sb, i_pos);
596 if (inode)
597 goto out;
598 inode = new_inode(sb);
599 if (!inode) {
600 inode = ERR_PTR(-ENOMEM);
601 goto out;
602 }
603 inode->i_ino = iunique(sb, MSDOS_ROOT_INO);
Jeff Layton2489dba2017-12-11 06:35:09 -0500604 inode_set_iversion(inode, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605 err = fat_fill_inode(inode, de);
606 if (err) {
607 iput(inode);
608 inode = ERR_PTR(err);
609 goto out;
610 }
611 fat_attach(inode, i_pos);
612 insert_inode_hash(inode);
613out:
Namjae Jeon8fceb4e2013-04-29 16:21:12 -0700614 fat_unlock_build_inode(MSDOS_SB(sb));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615 return inode;
616}
617
OGAWA Hirofumi7c709d02006-01-08 01:02:10 -0800618EXPORT_SYMBOL_GPL(fat_build_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619
Namjae Jeonb13bb332016-01-20 14:59:41 -0800620static int __fat_write_inode(struct inode *inode, int wait);
621
622static void fat_free_eofblocks(struct inode *inode)
623{
624 /* Release unwritten fallocated blocks on inode eviction. */
625 if ((inode->i_blocks << 9) >
626 round_up(MSDOS_I(inode)->mmu_private,
627 MSDOS_SB(inode->i_sb)->cluster_size)) {
628 int err;
629
630 fat_truncate_blocks(inode, MSDOS_I(inode)->mmu_private);
631 /* Fallocate results in updating the i_start/iogstart
632 * for the zero byte file. So, make it return to
633 * original state during evict and commit it to avoid
634 * any corruption on the next access to the cluster
635 * chain for the file.
636 */
637 err = __fat_write_inode(inode, inode_needs_sync(inode));
638 if (err) {
639 fat_msg(inode->i_sb, KERN_WARNING, "Failed to "
640 "update on disk inode for unused "
641 "fallocated blocks, inode could be "
642 "corrupted. Please run fsck");
643 }
644
645 }
646}
647
Al Virodeee3ce2010-06-05 19:28:32 -0400648static void fat_evict_inode(struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649{
Johannes Weiner91b0abe2014-04-03 14:47:49 -0700650 truncate_inode_pages_final(&inode->i_data);
Al Virodeee3ce2010-06-05 19:28:32 -0400651 if (!inode->i_nlink) {
652 inode->i_size = 0;
653 fat_truncate_blocks(inode, 0);
Namjae Jeonb13bb332016-01-20 14:59:41 -0800654 } else
655 fat_free_eofblocks(inode);
656
Al Virodeee3ce2010-06-05 19:28:32 -0400657 invalidate_inode_buffers(inode);
Jan Karadbd57682012-05-03 14:48:02 +0200658 clear_inode(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659 fat_cache_inval_inode(inode);
OGAWA Hirofumia993b542008-11-06 12:53:50 -0800660 fat_detach(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661}
662
Oleksij Rempelb88a10582013-02-27 17:03:09 -0800663static void fat_set_state(struct super_block *sb,
664 unsigned int set, unsigned int force)
665{
666 struct buffer_head *bh;
667 struct fat_boot_sector *b;
Fred Choud6bd4282015-02-17 13:45:36 -0800668 struct msdos_sb_info *sbi = MSDOS_SB(sb);
Oleksij Rempelb88a10582013-02-27 17:03:09 -0800669
670 /* do not change any thing if mounted read only */
David Howellsbc98a422017-07-17 08:45:34 +0100671 if (sb_rdonly(sb) && !force)
Oleksij Rempelb88a10582013-02-27 17:03:09 -0800672 return;
673
674 /* do not change state if fs was dirty */
675 if (sbi->dirty) {
676 /* warn only on set (mount). */
677 if (set)
678 fat_msg(sb, KERN_WARNING, "Volume was not properly "
679 "unmounted. Some data may be corrupt. "
680 "Please run fsck.");
681 return;
682 }
683
684 bh = sb_bread(sb, 0);
685 if (bh == NULL) {
686 fat_msg(sb, KERN_ERR, "unable to read boot sector "
687 "to mark fs as dirty");
688 return;
689 }
690
691 b = (struct fat_boot_sector *) bh->b_data;
692
693 if (sbi->fat_bits == 32) {
694 if (set)
695 b->fat32.state |= FAT_STATE_DIRTY;
696 else
697 b->fat32.state &= ~FAT_STATE_DIRTY;
698 } else /* fat 16 and 12 */ {
699 if (set)
700 b->fat16.state |= FAT_STATE_DIRTY;
701 else
702 b->fat16.state &= ~FAT_STATE_DIRTY;
703 }
704
705 mark_buffer_dirty(bh);
706 sync_dirty_buffer(bh);
707 brelse(bh);
708}
709
Al Virocac45b02013-10-03 13:16:50 -0400710static void delayed_free(struct rcu_head *p)
711{
712 struct msdos_sb_info *sbi = container_of(p, struct msdos_sb_info, rcu);
713 unload_nls(sbi->nls_disk);
714 unload_nls(sbi->nls_io);
715 if (sbi->options.iocharset != fat_default_iocharset)
716 kfree(sbi->options.iocharset);
717 kfree(sbi);
718}
719
OGAWA Hirofumia6bf6b22006-01-08 01:02:08 -0800720static void fat_put_super(struct super_block *sb)
721{
722 struct msdos_sb_info *sbi = MSDOS_SB(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723
Oleksij Rempelb88a10582013-02-27 17:03:09 -0800724 fat_set_state(sb, 0, 0);
725
Artem Bityutskiy020ac5b2012-05-31 16:26:12 -0700726 iput(sbi->fsinfo_inode);
Al Virob5224122009-06-07 13:44:36 -0400727 iput(sbi->fat_inode);
728
Al Virocac45b02013-10-03 13:16:50 -0400729 call_rcu(&sbi->rcu, delayed_free);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730}
731
Christoph Lametere18b8902006-12-06 20:33:20 -0800732static struct kmem_cache *fat_inode_cachep;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733
734static struct inode *fat_alloc_inode(struct super_block *sb)
735{
736 struct msdos_inode_info *ei;
Linus Torvalds8f593422008-05-19 19:53:01 -0700737 ei = kmem_cache_alloc(fat_inode_cachep, GFP_NOFS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738 if (!ei)
739 return NULL;
Christoph Hellwig58268692011-06-24 14:29:40 -0400740
741 init_rwsem(&ei->truncate_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742 return &ei->vfs_inode;
743}
744
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +1100745static void fat_i_callback(struct rcu_head *head)
746{
747 struct inode *inode = container_of(head, struct inode, i_rcu);
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +1100748 kmem_cache_free(fat_inode_cachep, MSDOS_I(inode));
749}
750
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751static void fat_destroy_inode(struct inode *inode)
752{
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +1100753 call_rcu(&inode->i_rcu, fat_i_callback);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754}
755
Alexey Dobriyan51cc5062008-07-25 19:45:34 -0700756static void init_once(void *foo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757{
758 struct msdos_inode_info *ei = (struct msdos_inode_info *)foo;
759
Christoph Lametera35afb82007-05-16 22:10:57 -0700760 spin_lock_init(&ei->cache_lru_lock);
761 ei->nr_caches = 0;
762 ei->cache_valid_id = FAT_CACHE_VALID + 1;
763 INIT_LIST_HEAD(&ei->cache_lru);
764 INIT_HLIST_NODE(&ei->i_fat_hash);
Steven J. Magnani7669e8f2012-10-04 17:14:45 -0700765 INIT_HLIST_NODE(&ei->i_dir_hash);
Christoph Lametera35afb82007-05-16 22:10:57 -0700766 inode_init_once(&ei->vfs_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767}
768
769static int __init fat_init_inodecache(void)
770{
771 fat_inode_cachep = kmem_cache_create("fat_inode_cache",
772 sizeof(struct msdos_inode_info),
Paul Jacksonfffb60f2006-03-24 03:16:06 -0800773 0, (SLAB_RECLAIM_ACCOUNT|
Vladimir Davydov5d097052016-01-14 15:18:21 -0800774 SLAB_MEM_SPREAD|SLAB_ACCOUNT),
Paul Mundt20c2df82007-07-20 10:11:58 +0900775 init_once);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776 if (fat_inode_cachep == NULL)
777 return -ENOMEM;
778 return 0;
779}
780
781static void __exit fat_destroy_inodecache(void)
782{
Kirill A. Shutemov8c0a8532012-09-26 11:33:07 +1000783 /*
784 * Make sure all delayed rcu free inodes are flushed before we
785 * destroy cache.
786 */
787 rcu_barrier();
Alexey Dobriyan1a1d92c2006-09-27 01:49:40 -0700788 kmem_cache_destroy(fat_inode_cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789}
790
791static int fat_remount(struct super_block *sb, int *flags, char *data)
792{
OGAWA Hirofumib6e8e122017-11-29 16:11:19 -0800793 bool new_rdonly;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794 struct msdos_sb_info *sbi = MSDOS_SB(sb);
Linus Torvalds1751e8a2017-11-27 13:05:09 -0800795 *flags |= SB_NODIRATIME | (sbi->options.isvfat ? 0 : SB_NOATIME);
Oleksij Rempelb88a10582013-02-27 17:03:09 -0800796
Theodore Ts'o02b99842014-03-13 10:14:33 -0400797 sync_filesystem(sb);
798
Oleksij Rempelb88a10582013-02-27 17:03:09 -0800799 /* make sure we update state on remount. */
Linus Torvalds1751e8a2017-11-27 13:05:09 -0800800 new_rdonly = *flags & SB_RDONLY;
David Howellsbc98a422017-07-17 08:45:34 +0100801 if (new_rdonly != sb_rdonly(sb)) {
Oleksij Rempelb88a10582013-02-27 17:03:09 -0800802 if (new_rdonly)
803 fat_set_state(sb, 0, 0);
804 else
805 fat_set_state(sb, 1, 1);
806 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807 return 0;
808}
809
David Howells726c3342006-06-23 02:02:58 -0700810static int fat_statfs(struct dentry *dentry, struct kstatfs *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811{
Coly Liaac49b752009-04-02 16:59:35 -0700812 struct super_block *sb = dentry->d_sb;
813 struct msdos_sb_info *sbi = MSDOS_SB(sb);
814 u64 id = huge_encode_dev(sb->s_bdev->bd_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815
816 /* If the count of free cluster is still unknown, counts it here. */
OGAWA Hirofumi606e4232008-04-28 02:16:27 -0700817 if (sbi->free_clusters == -1 || !sbi->free_clus_valid) {
David Howells726c3342006-06-23 02:02:58 -0700818 int err = fat_count_free_clusters(dentry->d_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819 if (err)
820 return err;
821 }
822
David Howells726c3342006-06-23 02:02:58 -0700823 buf->f_type = dentry->d_sb->s_magic;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824 buf->f_bsize = sbi->cluster_size;
825 buf->f_blocks = sbi->max_cluster - FAT_START_ENT;
826 buf->f_bfree = sbi->free_clusters;
827 buf->f_bavail = sbi->free_clusters;
Coly Liaac49b752009-04-02 16:59:35 -0700828 buf->f_fsid.val[0] = (u32)id;
829 buf->f_fsid.val[1] = (u32)(id >> 32);
OGAWA Hirofumif68e5422011-04-12 21:08:39 +0900830 buf->f_namelen =
831 (sbi->options.isvfat ? FAT_LFN_LEN : 12) * NLS_MAX_CHARSET_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832
833 return 0;
834}
835
Christoph Hellwiga9185b42010-03-05 09:21:37 +0100836static int __fat_write_inode(struct inode *inode, int wait)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837{
Deepa Dinamani95582b02018-05-08 19:36:02 -0700838 struct timespec ts;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839 struct super_block *sb = inode->i_sb;
840 struct msdos_sb_info *sbi = MSDOS_SB(sb);
841 struct buffer_head *bh;
842 struct msdos_dir_entry *raw_entry;
843 loff_t i_pos;
Namjae Jeone22a4442013-04-29 16:21:10 -0700844 sector_t blocknr;
845 int err, offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846
OGAWA Hirofumi9ca59f42008-11-06 12:53:57 -0800847 if (inode->i_ino == MSDOS_ROOT_INO)
848 return 0;
849
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850retry:
OGAWA Hirofumi9ca59f42008-11-06 12:53:57 -0800851 i_pos = fat_i_pos_read(sbi, inode);
852 if (!i_pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853 return 0;
854
Namjae Jeone22a4442013-04-29 16:21:10 -0700855 fat_get_blknr_offset(sbi, i_pos, &blocknr, &offset);
856 bh = sb_bread(sb, blocknr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857 if (!bh) {
Alexey Fisher869f58c2011-04-12 21:08:38 +0900858 fat_msg(sb, KERN_ERR, "unable to read inode block "
859 "for updating (i_pos %lld)", i_pos);
Linus Torvalds5f22ca92008-08-20 08:31:19 -0700860 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861 }
862 spin_lock(&sbi->inode_hash_lock);
863 if (i_pos != MSDOS_I(inode)->i_pos) {
864 spin_unlock(&sbi->inode_hash_lock);
865 brelse(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866 goto retry;
867 }
868
Namjae Jeone22a4442013-04-29 16:21:10 -0700869 raw_entry = &((struct msdos_dir_entry *) (bh->b_data))[offset];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870 if (S_ISDIR(inode->i_mode))
871 raw_entry->size = 0;
872 else
873 raw_entry->size = cpu_to_le32(inode->i_size);
OGAWA Hirofumi9c0aa1b2008-11-06 12:53:54 -0800874 raw_entry->attr = fat_make_attrs(inode);
Steven J. Magnania943ed72012-07-30 14:42:13 -0700875 fat_set_start(raw_entry, MSDOS_I(inode)->i_logstart);
Deepa Dinamani95582b02018-05-08 19:36:02 -0700876 ts = timespec64_to_timespec(inode->i_mtime);
877 fat_time_unix2fat(sbi, &ts, &raw_entry->time,
OGAWA Hirofumi7decd1c2008-11-06 12:53:47 -0800878 &raw_entry->date, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879 if (sbi->options.isvfat) {
Stephane Kardas62a36c42005-09-21 09:55:45 -0700880 __le16 atime;
Deepa Dinamani95582b02018-05-08 19:36:02 -0700881 ts = timespec64_to_timespec(inode->i_ctime);
882 fat_time_unix2fat(sbi, &ts, &raw_entry->ctime,
OGAWA Hirofumi7decd1c2008-11-06 12:53:47 -0800883 &raw_entry->cdate, &raw_entry->ctime_cs);
Deepa Dinamani95582b02018-05-08 19:36:02 -0700884 ts = timespec64_to_timespec(inode->i_atime);
885 fat_time_unix2fat(sbi, &ts, &atime,
OGAWA Hirofumi7decd1c2008-11-06 12:53:47 -0800886 &raw_entry->adate, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887 }
888 spin_unlock(&sbi->inode_hash_lock);
889 mark_buffer_dirty(bh);
Linus Torvalds5f22ca92008-08-20 08:31:19 -0700890 err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891 if (wait)
892 err = sync_dirty_buffer(bh);
893 brelse(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894 return err;
895}
896
Christoph Hellwiga9185b42010-03-05 09:21:37 +0100897static int fat_write_inode(struct inode *inode, struct writeback_control *wbc)
898{
Artem Bityutskiy78491182012-05-31 16:26:13 -0700899 int err;
900
901 if (inode->i_ino == MSDOS_FSINFO_INO) {
902 struct super_block *sb = inode->i_sb;
903
Marco Stornellie40b34c2012-10-06 12:40:03 +0200904 mutex_lock(&MSDOS_SB(sb)->s_lock);
Artem Bityutskiy78491182012-05-31 16:26:13 -0700905 err = fat_clusters_flush(sb);
Marco Stornellie40b34c2012-10-06 12:40:03 +0200906 mutex_unlock(&MSDOS_SB(sb)->s_lock);
Artem Bityutskiy78491182012-05-31 16:26:13 -0700907 } else
908 err = __fat_write_inode(inode, wbc->sync_mode == WB_SYNC_ALL);
909
910 return err;
Christoph Hellwiga9185b42010-03-05 09:21:37 +0100911}
912
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913int fat_sync_inode(struct inode *inode)
914{
Christoph Hellwiga9185b42010-03-05 09:21:37 +0100915 return __fat_write_inode(inode, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916}
917
OGAWA Hirofumi7c709d02006-01-08 01:02:10 -0800918EXPORT_SYMBOL_GPL(fat_sync_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919
Al Viro34c80b12011-12-08 21:32:45 -0500920static int fat_show_options(struct seq_file *m, struct dentry *root);
Josef 'Jeff' Sipekee9b6d62007-02-12 00:55:41 -0800921static const struct super_operations fat_sops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922 .alloc_inode = fat_alloc_inode,
923 .destroy_inode = fat_destroy_inode,
924 .write_inode = fat_write_inode,
Al Virodeee3ce2010-06-05 19:28:32 -0400925 .evict_inode = fat_evict_inode,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926 .put_super = fat_put_super,
927 .statfs = fat_statfs,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928 .remount_fs = fat_remount,
929
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930 .show_options = fat_show_options,
931};
932
Al Viro34c80b12011-12-08 21:32:45 -0500933static int fat_show_options(struct seq_file *m, struct dentry *root)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934{
Al Viro34c80b12011-12-08 21:32:45 -0500935 struct msdos_sb_info *sbi = MSDOS_SB(root->d_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936 struct fat_mount_options *opts = &sbi->options;
937 int isvfat = opts->isvfat;
938
Eric W. Biederman170782e2012-02-07 16:25:39 -0800939 if (!uid_eq(opts->fs_uid, GLOBAL_ROOT_UID))
940 seq_printf(m, ",uid=%u",
941 from_kuid_munged(&init_user_ns, opts->fs_uid));
942 if (!gid_eq(opts->fs_gid, GLOBAL_ROOT_GID))
943 seq_printf(m, ",gid=%u",
944 from_kgid_munged(&init_user_ns, opts->fs_gid));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945 seq_printf(m, ",fmask=%04o", opts->fs_fmask);
946 seq_printf(m, ",dmask=%04o", opts->fs_dmask);
OGAWA Hirofumi1ae43f82008-04-28 02:16:26 -0700947 if (opts->allow_utime)
948 seq_printf(m, ",allow_utime=%04o", opts->allow_utime);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949 if (sbi->nls_disk)
Dave Reisnerc6c20372012-12-17 16:03:01 -0800950 /* strip "cp" prefix from displayed option */
951 seq_printf(m, ",codepage=%s", &sbi->nls_disk->charset[2]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952 if (isvfat) {
953 if (sbi->nls_io)
954 seq_printf(m, ",iocharset=%s", sbi->nls_io->charset);
955
956 switch (opts->shortname) {
957 case VFAT_SFN_DISPLAY_WIN95 | VFAT_SFN_CREATE_WIN95:
958 seq_puts(m, ",shortname=win95");
959 break;
960 case VFAT_SFN_DISPLAY_WINNT | VFAT_SFN_CREATE_WINNT:
961 seq_puts(m, ",shortname=winnt");
962 break;
963 case VFAT_SFN_DISPLAY_WINNT | VFAT_SFN_CREATE_WIN95:
964 seq_puts(m, ",shortname=mixed");
965 break;
966 case VFAT_SFN_DISPLAY_LOWER | VFAT_SFN_CREATE_WIN95:
Paul Wise95523472009-08-01 21:30:31 +0900967 seq_puts(m, ",shortname=lower");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968 break;
969 default:
970 seq_puts(m, ",shortname=unknown");
971 break;
972 }
973 }
974 if (opts->name_check != 'n')
975 seq_printf(m, ",check=%c", opts->name_check);
OGAWA Hirofumi28ec0392007-05-08 00:31:01 -0700976 if (opts->usefree)
977 seq_puts(m, ",usefree");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978 if (opts->quiet)
979 seq_puts(m, ",quiet");
980 if (opts->showexec)
981 seq_puts(m, ",showexec");
982 if (opts->sys_immutable)
983 seq_puts(m, ",sys_immutable");
984 if (!isvfat) {
985 if (opts->dotsOK)
986 seq_puts(m, ",dotsOK=yes");
987 if (opts->nocase)
988 seq_puts(m, ",nocase");
989 } else {
990 if (opts->utf8)
991 seq_puts(m, ",utf8");
992 if (opts->unicode_xlate)
993 seq_puts(m, ",uni_xlate");
994 if (!opts->numtail)
995 seq_puts(m, ",nonumtail");
OGAWA Hirofumidfc209c2008-11-06 12:53:55 -0800996 if (opts->rodir)
997 seq_puts(m, ",rodir");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998 }
OGAWA Hirofumidfc209c2008-11-06 12:53:55 -0800999 if (opts->flush)
Miklos Szeredic1fca3b2008-02-08 04:21:42 -08001000 seq_puts(m, ",flush");
Jan Kara58156c82012-12-17 16:02:58 -08001001 if (opts->tz_set) {
1002 if (opts->time_offset)
1003 seq_printf(m, ",time_offset=%d", opts->time_offset);
1004 else
1005 seq_puts(m, ",tz=UTC");
1006 }
Denis Karpov85c78592009-06-04 02:34:22 +09001007 if (opts->errors == FAT_ERRORS_CONT)
1008 seq_puts(m, ",errors=continue");
1009 else if (opts->errors == FAT_ERRORS_PANIC)
1010 seq_puts(m, ",errors=panic");
1011 else
1012 seq_puts(m, ",errors=remount-ro");
Namjae Jeon2628b7a2013-04-29 16:21:08 -07001013 if (opts->nfs == FAT_NFS_NOSTALE_RO)
1014 seq_puts(m, ",nfs=nostale_ro");
1015 else if (opts->nfs)
1016 seq_puts(m, ",nfs=stale_rw");
Christoph Hellwig681142f2009-11-21 20:28:52 +09001017 if (opts->discard)
1018 seq_puts(m, ",discard");
Conrad Meyer190a8842014-06-06 14:36:37 -07001019 if (opts->dos1xfloppy)
1020 seq_puts(m, ",dos1xfloppy");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021
1022 return 0;
1023}
1024
1025enum {
1026 Opt_check_n, Opt_check_r, Opt_check_s, Opt_uid, Opt_gid,
OGAWA Hirofumi1ae43f82008-04-28 02:16:26 -07001027 Opt_umask, Opt_dmask, Opt_fmask, Opt_allow_utime, Opt_codepage,
1028 Opt_usefree, Opt_nocase, Opt_quiet, Opt_showexec, Opt_debug,
1029 Opt_immutable, Opt_dots, Opt_nodots,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030 Opt_charset, Opt_shortname_lower, Opt_shortname_win95,
1031 Opt_shortname_winnt, Opt_shortname_mixed, Opt_utf8_no, Opt_utf8_yes,
1032 Opt_uni_xl_no, Opt_uni_xl_yes, Opt_nonumtail_no, Opt_nonumtail_yes,
Geert Uytterhoevend7a83c02011-10-31 20:50:45 +01001033 Opt_obsolete, Opt_flush, Opt_tz_utc, Opt_rodir, Opt_err_cont,
Jan Kara58156c82012-12-17 16:02:58 -08001034 Opt_err_panic, Opt_err_ro, Opt_discard, Opt_nfs, Opt_time_offset,
Conrad Meyer190a8842014-06-06 14:36:37 -07001035 Opt_nfs_stale_rw, Opt_nfs_nostale_ro, Opt_err, Opt_dos1xfloppy,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036};
1037
Steven Whitehousea447c092008-10-13 10:46:57 +01001038static const match_table_t fat_tokens = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039 {Opt_check_r, "check=relaxed"},
1040 {Opt_check_s, "check=strict"},
1041 {Opt_check_n, "check=normal"},
1042 {Opt_check_r, "check=r"},
1043 {Opt_check_s, "check=s"},
1044 {Opt_check_n, "check=n"},
1045 {Opt_uid, "uid=%u"},
1046 {Opt_gid, "gid=%u"},
1047 {Opt_umask, "umask=%o"},
1048 {Opt_dmask, "dmask=%o"},
1049 {Opt_fmask, "fmask=%o"},
OGAWA Hirofumi1ae43f82008-04-28 02:16:26 -07001050 {Opt_allow_utime, "allow_utime=%o"},
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051 {Opt_codepage, "codepage=%u"},
OGAWA Hirofumi28ec0392007-05-08 00:31:01 -07001052 {Opt_usefree, "usefree"},
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053 {Opt_nocase, "nocase"},
1054 {Opt_quiet, "quiet"},
1055 {Opt_showexec, "showexec"},
1056 {Opt_debug, "debug"},
1057 {Opt_immutable, "sys_immutable"},
Denis Karpov85c78592009-06-04 02:34:22 +09001058 {Opt_flush, "flush"},
1059 {Opt_tz_utc, "tz=UTC"},
Jan Kara58156c82012-12-17 16:02:58 -08001060 {Opt_time_offset, "time_offset=%d"},
Denis Karpov85c78592009-06-04 02:34:22 +09001061 {Opt_err_cont, "errors=continue"},
1062 {Opt_err_panic, "errors=panic"},
1063 {Opt_err_ro, "errors=remount-ro"},
Christoph Hellwig681142f2009-11-21 20:28:52 +09001064 {Opt_discard, "discard"},
Namjae Jeon2628b7a2013-04-29 16:21:08 -07001065 {Opt_nfs_stale_rw, "nfs"},
1066 {Opt_nfs_stale_rw, "nfs=stale_rw"},
1067 {Opt_nfs_nostale_ro, "nfs=nostale_ro"},
Conrad Meyer190a8842014-06-06 14:36:37 -07001068 {Opt_dos1xfloppy, "dos1xfloppy"},
Geert Uytterhoevend7a83c02011-10-31 20:50:45 +01001069 {Opt_obsolete, "conv=binary"},
1070 {Opt_obsolete, "conv=text"},
1071 {Opt_obsolete, "conv=auto"},
1072 {Opt_obsolete, "conv=b"},
1073 {Opt_obsolete, "conv=t"},
1074 {Opt_obsolete, "conv=a"},
1075 {Opt_obsolete, "fat=%u"},
1076 {Opt_obsolete, "blocksize=%u"},
1077 {Opt_obsolete, "cvf_format=%20s"},
1078 {Opt_obsolete, "cvf_options=%100s"},
1079 {Opt_obsolete, "posix"},
Chris Masonae78bf92006-09-29 02:00:03 -07001080 {Opt_err, NULL},
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081};
Steven Whitehousea447c092008-10-13 10:46:57 +01001082static const match_table_t msdos_tokens = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083 {Opt_nodots, "nodots"},
1084 {Opt_nodots, "dotsOK=no"},
1085 {Opt_dots, "dots"},
1086 {Opt_dots, "dotsOK=yes"},
1087 {Opt_err, NULL}
1088};
Steven Whitehousea447c092008-10-13 10:46:57 +01001089static const match_table_t vfat_tokens = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090 {Opt_charset, "iocharset=%s"},
1091 {Opt_shortname_lower, "shortname=lower"},
1092 {Opt_shortname_win95, "shortname=win95"},
1093 {Opt_shortname_winnt, "shortname=winnt"},
1094 {Opt_shortname_mixed, "shortname=mixed"},
1095 {Opt_utf8_no, "utf8=0"}, /* 0 or no or false */
1096 {Opt_utf8_no, "utf8=no"},
1097 {Opt_utf8_no, "utf8=false"},
1098 {Opt_utf8_yes, "utf8=1"}, /* empty or 1 or yes or true */
1099 {Opt_utf8_yes, "utf8=yes"},
1100 {Opt_utf8_yes, "utf8=true"},
1101 {Opt_utf8_yes, "utf8"},
1102 {Opt_uni_xl_no, "uni_xlate=0"}, /* 0 or no or false */
1103 {Opt_uni_xl_no, "uni_xlate=no"},
1104 {Opt_uni_xl_no, "uni_xlate=false"},
1105 {Opt_uni_xl_yes, "uni_xlate=1"}, /* empty or 1 or yes or true */
1106 {Opt_uni_xl_yes, "uni_xlate=yes"},
1107 {Opt_uni_xl_yes, "uni_xlate=true"},
1108 {Opt_uni_xl_yes, "uni_xlate"},
1109 {Opt_nonumtail_no, "nonumtail=0"}, /* 0 or no or false */
1110 {Opt_nonumtail_no, "nonumtail=no"},
1111 {Opt_nonumtail_no, "nonumtail=false"},
1112 {Opt_nonumtail_yes, "nonumtail=1"}, /* empty or 1 or yes or true */
1113 {Opt_nonumtail_yes, "nonumtail=yes"},
1114 {Opt_nonumtail_yes, "nonumtail=true"},
1115 {Opt_nonumtail_yes, "nonumtail"},
OGAWA Hirofumidfc209c2008-11-06 12:53:55 -08001116 {Opt_rodir, "rodir"},
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117 {Opt_err, NULL}
1118};
1119
Alexey Fisher869f58c2011-04-12 21:08:38 +09001120static int parse_options(struct super_block *sb, char *options, int is_vfat,
1121 int silent, int *debug, struct fat_mount_options *opts)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122{
1123 char *p;
1124 substring_t args[MAX_OPT_ARGS];
1125 int option;
1126 char *iocharset;
1127
1128 opts->isvfat = is_vfat;
1129
David Howellsf0ce7ee2008-11-14 10:38:52 +11001130 opts->fs_uid = current_uid();
1131 opts->fs_gid = current_gid();
OGAWA Hirofumi3e107602009-06-20 21:50:07 +09001132 opts->fs_fmask = opts->fs_dmask = current_umask();
OGAWA Hirofumi1ae43f82008-04-28 02:16:26 -07001133 opts->allow_utime = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134 opts->codepage = fat_default_codepage;
1135 opts->iocharset = fat_default_iocharset;
OGAWA Hirofumidfc209c2008-11-06 12:53:55 -08001136 if (is_vfat) {
Paul Wise95523472009-08-01 21:30:31 +09001137 opts->shortname = VFAT_SFN_DISPLAY_WINNT|VFAT_SFN_CREATE_WIN95;
OGAWA Hirofumidfc209c2008-11-06 12:53:55 -08001138 opts->rodir = 0;
1139 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140 opts->shortname = 0;
OGAWA Hirofumidfc209c2008-11-06 12:53:55 -08001141 opts->rodir = 1;
1142 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143 opts->name_check = 'n';
1144 opts->quiet = opts->showexec = opts->sys_immutable = opts->dotsOK = 0;
Maciej S. Szmigiero38739382016-03-22 14:25:30 -07001145 opts->unicode_xlate = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146 opts->numtail = 1;
OGAWA Hirofumi28ec0392007-05-08 00:31:01 -07001147 opts->usefree = opts->nocase = 0;
Jan Kara58156c82012-12-17 16:02:58 -08001148 opts->tz_set = 0;
Steven J. Magnani7669e8f2012-10-04 17:14:45 -07001149 opts->nfs = 0;
Denis Karpov85c78592009-06-04 02:34:22 +09001150 opts->errors = FAT_ERRORS_RO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151 *debug = 0;
1152
Maciej S. Szmigiero38739382016-03-22 14:25:30 -07001153 opts->utf8 = IS_ENABLED(CONFIG_FAT_DEFAULT_UTF8) && is_vfat;
1154
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155 if (!options)
OGAWA Hirofumi8d44d972008-07-25 01:46:41 -07001156 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157
1158 while ((p = strsep(&options, ",")) != NULL) {
1159 int token;
1160 if (!*p)
1161 continue;
1162
1163 token = match_token(p, fat_tokens, args);
1164 if (token == Opt_err) {
1165 if (is_vfat)
1166 token = match_token(p, vfat_tokens, args);
1167 else
1168 token = match_token(p, msdos_tokens, args);
1169 }
1170 switch (token) {
1171 case Opt_check_s:
1172 opts->name_check = 's';
1173 break;
1174 case Opt_check_r:
1175 opts->name_check = 'r';
1176 break;
1177 case Opt_check_n:
1178 opts->name_check = 'n';
1179 break;
OGAWA Hirofumi28ec0392007-05-08 00:31:01 -07001180 case Opt_usefree:
1181 opts->usefree = 1;
1182 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183 case Opt_nocase:
1184 if (!is_vfat)
1185 opts->nocase = 1;
1186 else {
1187 /* for backward compatibility */
1188 opts->shortname = VFAT_SFN_DISPLAY_WIN95
1189 | VFAT_SFN_CREATE_WIN95;
1190 }
1191 break;
1192 case Opt_quiet:
1193 opts->quiet = 1;
1194 break;
1195 case Opt_showexec:
1196 opts->showexec = 1;
1197 break;
1198 case Opt_debug:
1199 *debug = 1;
1200 break;
1201 case Opt_immutable:
1202 opts->sys_immutable = 1;
1203 break;
1204 case Opt_uid:
1205 if (match_int(&args[0], &option))
Jan Kara5b3d5ae2012-12-17 16:02:59 -08001206 return -EINVAL;
Eric W. Biederman170782e2012-02-07 16:25:39 -08001207 opts->fs_uid = make_kuid(current_user_ns(), option);
1208 if (!uid_valid(opts->fs_uid))
Jan Kara5b3d5ae2012-12-17 16:02:59 -08001209 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210 break;
1211 case Opt_gid:
1212 if (match_int(&args[0], &option))
Jan Kara5b3d5ae2012-12-17 16:02:59 -08001213 return -EINVAL;
Eric W. Biederman170782e2012-02-07 16:25:39 -08001214 opts->fs_gid = make_kgid(current_user_ns(), option);
1215 if (!gid_valid(opts->fs_gid))
Jan Kara5b3d5ae2012-12-17 16:02:59 -08001216 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217 break;
1218 case Opt_umask:
1219 if (match_octal(&args[0], &option))
Jan Kara5b3d5ae2012-12-17 16:02:59 -08001220 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221 opts->fs_fmask = opts->fs_dmask = option;
1222 break;
1223 case Opt_dmask:
1224 if (match_octal(&args[0], &option))
Jan Kara5b3d5ae2012-12-17 16:02:59 -08001225 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226 opts->fs_dmask = option;
1227 break;
1228 case Opt_fmask:
1229 if (match_octal(&args[0], &option))
Jan Kara5b3d5ae2012-12-17 16:02:59 -08001230 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231 opts->fs_fmask = option;
1232 break;
OGAWA Hirofumi1ae43f82008-04-28 02:16:26 -07001233 case Opt_allow_utime:
1234 if (match_octal(&args[0], &option))
Jan Kara5b3d5ae2012-12-17 16:02:59 -08001235 return -EINVAL;
OGAWA Hirofumi1ae43f82008-04-28 02:16:26 -07001236 opts->allow_utime = option & (S_IWGRP | S_IWOTH);
1237 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238 case Opt_codepage:
1239 if (match_int(&args[0], &option))
Jan Kara5b3d5ae2012-12-17 16:02:59 -08001240 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241 opts->codepage = option;
1242 break;
Chris Masonae78bf92006-09-29 02:00:03 -07001243 case Opt_flush:
1244 opts->flush = 1;
1245 break;
Jan Kara58156c82012-12-17 16:02:58 -08001246 case Opt_time_offset:
1247 if (match_int(&args[0], &option))
Jan Kara5b3d5ae2012-12-17 16:02:59 -08001248 return -EINVAL;
Jan Karaa513d862016-01-20 14:59:35 -08001249 /*
1250 * GMT+-12 zones may have DST corrections so at least
1251 * 13 hours difference is needed. Make the limit 24
1252 * just in case someone invents something unusual.
1253 */
1254 if (option < -24 * 60 || option > 24 * 60)
Jan Kara5b3d5ae2012-12-17 16:02:59 -08001255 return -EINVAL;
Jan Kara58156c82012-12-17 16:02:58 -08001256 opts->tz_set = 1;
1257 opts->time_offset = option;
1258 break;
Joe Petersonb271e062008-07-25 01:46:47 -07001259 case Opt_tz_utc:
Jan Kara58156c82012-12-17 16:02:58 -08001260 opts->tz_set = 1;
1261 opts->time_offset = 0;
Joe Petersonb271e062008-07-25 01:46:47 -07001262 break;
Denis Karpov85c78592009-06-04 02:34:22 +09001263 case Opt_err_cont:
1264 opts->errors = FAT_ERRORS_CONT;
1265 break;
1266 case Opt_err_panic:
1267 opts->errors = FAT_ERRORS_PANIC;
1268 break;
1269 case Opt_err_ro:
1270 opts->errors = FAT_ERRORS_RO;
1271 break;
Namjae Jeon2628b7a2013-04-29 16:21:08 -07001272 case Opt_nfs_stale_rw:
1273 opts->nfs = FAT_NFS_STALE_RW;
1274 break;
1275 case Opt_nfs_nostale_ro:
1276 opts->nfs = FAT_NFS_NOSTALE_RO;
1277 break;
Conrad Meyer190a8842014-06-06 14:36:37 -07001278 case Opt_dos1xfloppy:
1279 opts->dos1xfloppy = 1;
1280 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281
1282 /* msdos specific */
1283 case Opt_dots:
1284 opts->dotsOK = 1;
1285 break;
1286 case Opt_nodots:
1287 opts->dotsOK = 0;
1288 break;
1289
1290 /* vfat specific */
1291 case Opt_charset:
1292 if (opts->iocharset != fat_default_iocharset)
1293 kfree(opts->iocharset);
1294 iocharset = match_strdup(&args[0]);
1295 if (!iocharset)
1296 return -ENOMEM;
1297 opts->iocharset = iocharset;
1298 break;
1299 case Opt_shortname_lower:
1300 opts->shortname = VFAT_SFN_DISPLAY_LOWER
1301 | VFAT_SFN_CREATE_WIN95;
1302 break;
1303 case Opt_shortname_win95:
1304 opts->shortname = VFAT_SFN_DISPLAY_WIN95
1305 | VFAT_SFN_CREATE_WIN95;
1306 break;
1307 case Opt_shortname_winnt:
1308 opts->shortname = VFAT_SFN_DISPLAY_WINNT
1309 | VFAT_SFN_CREATE_WINNT;
1310 break;
1311 case Opt_shortname_mixed:
1312 opts->shortname = VFAT_SFN_DISPLAY_WINNT
1313 | VFAT_SFN_CREATE_WIN95;
1314 break;
1315 case Opt_utf8_no: /* 0 or no or false */
1316 opts->utf8 = 0;
1317 break;
1318 case Opt_utf8_yes: /* empty or 1 or yes or true */
1319 opts->utf8 = 1;
1320 break;
1321 case Opt_uni_xl_no: /* 0 or no or false */
1322 opts->unicode_xlate = 0;
1323 break;
1324 case Opt_uni_xl_yes: /* empty or 1 or yes or true */
1325 opts->unicode_xlate = 1;
1326 break;
1327 case Opt_nonumtail_no: /* 0 or no or false */
1328 opts->numtail = 1; /* negated option */
1329 break;
1330 case Opt_nonumtail_yes: /* empty or 1 or yes or true */
1331 opts->numtail = 0; /* negated option */
1332 break;
OGAWA Hirofumidfc209c2008-11-06 12:53:55 -08001333 case Opt_rodir:
1334 opts->rodir = 1;
1335 break;
Christoph Hellwig681142f2009-11-21 20:28:52 +09001336 case Opt_discard:
1337 opts->discard = 1;
1338 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339
1340 /* obsolete mount options */
Geert Uytterhoevend7a83c02011-10-31 20:50:45 +01001341 case Opt_obsolete:
Alexey Fisher869f58c2011-04-12 21:08:38 +09001342 fat_msg(sb, KERN_INFO, "\"%s\" option is obsolete, "
1343 "not supported now", p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344 break;
1345 /* unknown option */
1346 default:
Christoph Hellwig41a34a42005-11-08 21:34:57 -08001347 if (!silent) {
Alexey Fisher869f58c2011-04-12 21:08:38 +09001348 fat_msg(sb, KERN_ERR,
1349 "Unrecognized mount option \"%s\" "
1350 "or missing value", p);
Christoph Hellwig41a34a42005-11-08 21:34:57 -08001351 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352 return -EINVAL;
1353 }
1354 }
OGAWA Hirofumi8d44d972008-07-25 01:46:41 -07001355
1356out:
Alexey Dobriyan4de151d2006-03-22 00:13:35 +01001357 /* UTF-8 doesn't provide FAT semantics */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358 if (!strcmp(opts->iocharset, "utf8")) {
Mihai Moldovan186b5372011-08-17 19:10:08 +09001359 fat_msg(sb, KERN_WARNING, "utf8 is not a recommended IO charset"
OGAWA Hirofumi8d44d972008-07-25 01:46:41 -07001360 " for FAT filesystems, filesystem will be "
Mihai Moldovan186b5372011-08-17 19:10:08 +09001361 "case sensitive!");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362 }
1363
OGAWA Hirofumi1ae43f82008-04-28 02:16:26 -07001364 /* If user doesn't specify allow_utime, it's initialized from dmask. */
1365 if (opts->allow_utime == (unsigned short)-1)
1366 opts->allow_utime = ~opts->fs_dmask & (S_IWGRP | S_IWOTH);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367 if (opts->unicode_xlate)
1368 opts->utf8 = 0;
Namjae Jeonea3983a2013-04-29 16:21:11 -07001369 if (opts->nfs == FAT_NFS_NOSTALE_RO) {
Linus Torvalds1751e8a2017-11-27 13:05:09 -08001370 sb->s_flags |= SB_RDONLY;
Namjae Jeonea3983a2013-04-29 16:21:11 -07001371 sb->s_export_op = &fat_export_ops_nostale;
1372 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373
1374 return 0;
1375}
1376
OGAWA Hirofumic0d0e352017-03-09 16:17:37 -08001377static void fat_dummy_inode_init(struct inode *inode)
1378{
1379 /* Initialize this dummy inode to work as no-op. */
1380 MSDOS_I(inode)->mmu_private = 0;
1381 MSDOS_I(inode)->i_start = 0;
1382 MSDOS_I(inode)->i_logstart = 0;
1383 MSDOS_I(inode)->i_attrs = 0;
1384 MSDOS_I(inode)->i_pos = 0;
1385}
1386
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387static int fat_read_root(struct inode *inode)
1388{
Alexander Kuleshova40a7d92015-04-16 12:47:21 -07001389 struct msdos_sb_info *sbi = MSDOS_SB(inode->i_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390 int error;
1391
Namjae Jeonea3983a2013-04-29 16:21:11 -07001392 MSDOS_I(inode)->i_pos = MSDOS_ROOT_INO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393 inode->i_uid = sbi->options.fs_uid;
1394 inode->i_gid = sbi->options.fs_gid;
Jeff Layton2489dba2017-12-11 06:35:09 -05001395 inode_inc_iversion(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001396 inode->i_generation = 0;
OGAWA Hirofumi9c0aa1b2008-11-06 12:53:54 -08001397 inode->i_mode = fat_make_mode(sbi, ATTR_DIR, S_IRWXUGO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001398 inode->i_op = sbi->dir_ops;
1399 inode->i_fop = &fat_dir_operations;
1400 if (sbi->fat_bits == 32) {
1401 MSDOS_I(inode)->i_start = sbi->root_cluster;
1402 error = fat_calc_dir_size(inode);
1403 if (error < 0)
1404 return error;
1405 } else {
1406 MSDOS_I(inode)->i_start = 0;
1407 inode->i_size = sbi->dir_entries * sizeof(struct msdos_dir_entry);
1408 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001409 inode->i_blocks = ((inode->i_size + (sbi->cluster_size - 1))
1410 & ~((loff_t)sbi->cluster_size - 1)) >> 9;
1411 MSDOS_I(inode)->i_logstart = 0;
1412 MSDOS_I(inode)->mmu_private = inode->i_size;
1413
OGAWA Hirofumi9c0aa1b2008-11-06 12:53:54 -08001414 fat_save_attrs(inode, ATTR_DIR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001415 inode->i_mtime.tv_sec = inode->i_atime.tv_sec = inode->i_ctime.tv_sec = 0;
1416 inode->i_mtime.tv_nsec = inode->i_atime.tv_nsec = inode->i_ctime.tv_nsec = 0;
Miklos Szeredibfe86842011-10-28 14:13:29 +02001417 set_nlink(inode, fat_subdirs(inode)+2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001418
1419 return 0;
1420}
1421
OGAWA Hirofumi7b92d032013-05-24 15:55:08 -07001422static unsigned long calc_fat_clusters(struct super_block *sb)
1423{
1424 struct msdos_sb_info *sbi = MSDOS_SB(sb);
1425
1426 /* Divide first to avoid overflow */
1427 if (sbi->fat_bits != 12) {
1428 unsigned long ent_per_sec = sb->s_blocksize * 8 / sbi->fat_bits;
1429 return ent_per_sec * sbi->fat_length;
1430 }
1431
1432 return sbi->fat_length * sb->s_blocksize * 8 / sbi->fat_bits;
1433}
1434
Conrad Meyer190a8842014-06-06 14:36:37 -07001435static bool fat_bpb_is_zero(struct fat_boot_sector *b)
1436{
1437 if (get_unaligned_le16(&b->sector_size))
1438 return false;
1439 if (b->sec_per_clus)
1440 return false;
1441 if (b->reserved)
1442 return false;
1443 if (b->fats)
1444 return false;
1445 if (get_unaligned_le16(&b->dir_entries))
1446 return false;
1447 if (get_unaligned_le16(&b->sectors))
1448 return false;
1449 if (b->media)
1450 return false;
1451 if (b->fat_length)
1452 return false;
1453 if (b->secs_track)
1454 return false;
1455 if (b->heads)
1456 return false;
1457 return true;
1458}
1459
1460static int fat_read_bpb(struct super_block *sb, struct fat_boot_sector *b,
1461 int silent, struct fat_bios_param_block *bpb)
1462{
1463 int error = -EINVAL;
1464
1465 /* Read in BPB ... */
1466 memset(bpb, 0, sizeof(*bpb));
1467 bpb->fat_sector_size = get_unaligned_le16(&b->sector_size);
1468 bpb->fat_sec_per_clus = b->sec_per_clus;
1469 bpb->fat_reserved = le16_to_cpu(b->reserved);
1470 bpb->fat_fats = b->fats;
1471 bpb->fat_dir_entries = get_unaligned_le16(&b->dir_entries);
1472 bpb->fat_sectors = get_unaligned_le16(&b->sectors);
1473 bpb->fat_fat_length = le16_to_cpu(b->fat_length);
1474 bpb->fat_total_sect = le32_to_cpu(b->total_sect);
1475
1476 bpb->fat16_state = b->fat16.state;
1477 bpb->fat16_vol_id = get_unaligned_le32(b->fat16.vol_id);
1478
1479 bpb->fat32_length = le32_to_cpu(b->fat32.length);
1480 bpb->fat32_root_cluster = le32_to_cpu(b->fat32.root_cluster);
1481 bpb->fat32_info_sector = le16_to_cpu(b->fat32.info_sector);
1482 bpb->fat32_state = b->fat32.state;
1483 bpb->fat32_vol_id = get_unaligned_le32(b->fat32.vol_id);
1484
1485 /* Validate this looks like a FAT filesystem BPB */
1486 if (!bpb->fat_reserved) {
1487 if (!silent)
1488 fat_msg(sb, KERN_ERR,
1489 "bogus number of reserved sectors");
1490 goto out;
1491 }
1492 if (!bpb->fat_fats) {
1493 if (!silent)
1494 fat_msg(sb, KERN_ERR, "bogus number of FAT structure");
1495 goto out;
1496 }
1497
1498 /*
1499 * Earlier we checked here that b->secs_track and b->head are nonzero,
1500 * but it turns out valid FAT filesystems can have zero there.
1501 */
1502
1503 if (!fat_valid_media(b->media)) {
1504 if (!silent)
1505 fat_msg(sb, KERN_ERR, "invalid media value (0x%02x)",
1506 (unsigned)b->media);
1507 goto out;
1508 }
1509
1510 if (!is_power_of_2(bpb->fat_sector_size)
1511 || (bpb->fat_sector_size < 512)
1512 || (bpb->fat_sector_size > 4096)) {
1513 if (!silent)
1514 fat_msg(sb, KERN_ERR, "bogus logical sector size %u",
1515 (unsigned)bpb->fat_sector_size);
1516 goto out;
1517 }
1518
1519 if (!is_power_of_2(bpb->fat_sec_per_clus)) {
1520 if (!silent)
1521 fat_msg(sb, KERN_ERR, "bogus sectors per cluster %u",
1522 (unsigned)bpb->fat_sec_per_clus);
1523 goto out;
1524 }
1525
1526 error = 0;
1527
1528out:
1529 return error;
1530}
1531
1532static int fat_read_static_bpb(struct super_block *sb,
1533 struct fat_boot_sector *b, int silent,
1534 struct fat_bios_param_block *bpb)
1535{
1536 static const char *notdos1x = "This doesn't look like a DOS 1.x volume";
1537
1538 struct fat_floppy_defaults *fdefaults = NULL;
1539 int error = -EINVAL;
1540 sector_t bd_sects;
1541 unsigned i;
1542
1543 bd_sects = i_size_read(sb->s_bdev->bd_inode) / SECTOR_SIZE;
1544
1545 /* 16-bit DOS 1.x reliably wrote bootstrap short-jmp code */
1546 if (b->ignored[0] != 0xeb || b->ignored[2] != 0x90) {
1547 if (!silent)
1548 fat_msg(sb, KERN_ERR,
1549 "%s; no bootstrapping code", notdos1x);
1550 goto out;
1551 }
1552
1553 /*
1554 * If any value in this region is non-zero, it isn't archaic
1555 * DOS.
1556 */
1557 if (!fat_bpb_is_zero(b)) {
1558 if (!silent)
1559 fat_msg(sb, KERN_ERR,
1560 "%s; DOS 2.x BPB is non-zero", notdos1x);
1561 goto out;
1562 }
1563
1564 for (i = 0; i < ARRAY_SIZE(floppy_defaults); i++) {
1565 if (floppy_defaults[i].nr_sectors == bd_sects) {
1566 fdefaults = &floppy_defaults[i];
1567 break;
1568 }
1569 }
1570
1571 if (fdefaults == NULL) {
1572 if (!silent)
1573 fat_msg(sb, KERN_WARNING,
1574 "This looks like a DOS 1.x volume, but isn't a recognized floppy size (%llu sectors)",
1575 (u64)bd_sects);
1576 goto out;
1577 }
1578
1579 if (!silent)
1580 fat_msg(sb, KERN_INFO,
1581 "This looks like a DOS 1.x volume; assuming default BPB values");
1582
1583 memset(bpb, 0, sizeof(*bpb));
1584 bpb->fat_sector_size = SECTOR_SIZE;
1585 bpb->fat_sec_per_clus = fdefaults->sec_per_clus;
1586 bpb->fat_reserved = 1;
1587 bpb->fat_fats = 2;
1588 bpb->fat_dir_entries = fdefaults->dir_entries;
1589 bpb->fat_sectors = fdefaults->nr_sectors;
1590 bpb->fat_fat_length = fdefaults->fat_length;
1591
1592 error = 0;
1593
1594out:
1595 return error;
1596}
1597
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598/*
1599 * Read the super block of an MS-DOS FS.
1600 */
OGAWA Hirofumi384f5c92011-04-12 21:08:37 +09001601int fat_fill_super(struct super_block *sb, void *data, int silent, int isvfat,
Al Viro3d239852010-12-18 10:44:00 -05001602 void (*setup)(struct super_block *))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001603{
Al Virob5224122009-06-07 13:44:36 -04001604 struct inode *root_inode = NULL, *fat_inode = NULL;
Artem Bityutskiy020ac5b2012-05-31 16:26:12 -07001605 struct inode *fsinfo_inode = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001606 struct buffer_head *bh;
Conrad Meyer190a8842014-06-06 14:36:37 -07001607 struct fat_bios_param_block bpb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001608 struct msdos_sb_info *sbi;
1609 u16 logical_sector_size;
1610 u32 total_sectors, total_clusters, fat_clusters, rootdir_sectors;
1611 int debug;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001612 long error;
1613 char buf[50];
1614
Linus Torvalds8f593422008-05-19 19:53:01 -07001615 /*
1616 * GFP_KERNEL is ok here, because while we do hold the
Zheng Lvdcc381e2016-06-20 23:51:29 -04001617 * superblock lock, memory pressure can't call back into
Linus Torvalds8f593422008-05-19 19:53:01 -07001618 * the filesystem, since we're only just about to mount
1619 * it and have no inodes etc active!
1620 */
Panagiotis Issarisf8314dc2006-09-27 01:49:37 -07001621 sbi = kzalloc(sizeof(struct msdos_sb_info), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001622 if (!sbi)
1623 return -ENOMEM;
1624 sb->s_fs_info = sbi;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001625
Linus Torvalds1751e8a2017-11-27 13:05:09 -08001626 sb->s_flags |= SB_NODIRATIME;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001627 sb->s_magic = MSDOS_SUPER_MAGIC;
1628 sb->s_op = &fat_sops;
1629 sb->s_export_op = &fat_export_ops;
Namjae Jeon8fceb4e2013-04-29 16:21:12 -07001630 mutex_init(&sbi->nfs_build_inode_lock);
OGAWA Hirofumiaaa04b42010-05-24 14:33:12 -07001631 ratelimit_state_init(&sbi->ratelimit, DEFAULT_RATELIMIT_INTERVAL,
1632 DEFAULT_RATELIMIT_BURST);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001633
Alexey Fisher869f58c2011-04-12 21:08:38 +09001634 error = parse_options(sb, data, isvfat, silent, &debug, &sbi->options);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001635 if (error)
1636 goto out_fail;
1637
Al Viro3d239852010-12-18 10:44:00 -05001638 setup(sb); /* flavour-specific stuff that needs options */
1639
Linus Torvalds1da177e2005-04-16 15:20:36 -07001640 error = -EIO;
1641 sb_min_blocksize(sb, 512);
1642 bh = sb_bread(sb, 0);
1643 if (bh == NULL) {
Alexey Fisher869f58c2011-04-12 21:08:38 +09001644 fat_msg(sb, KERN_ERR, "unable to read boot sector");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001645 goto out_fail;
1646 }
1647
Conrad Meyer190a8842014-06-06 14:36:37 -07001648 error = fat_read_bpb(sb, (struct fat_boot_sector *)bh->b_data, silent,
1649 &bpb);
1650 if (error == -EINVAL && sbi->options.dos1xfloppy)
1651 error = fat_read_static_bpb(sb,
1652 (struct fat_boot_sector *)bh->b_data, silent, &bpb);
1653 brelse(bh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001654
Conrad Meyer190a8842014-06-06 14:36:37 -07001655 if (error == -EINVAL)
1656 goto out_invalid;
1657 else if (error)
1658 goto out_fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001659
Conrad Meyer190a8842014-06-06 14:36:37 -07001660 logical_sector_size = bpb.fat_sector_size;
1661 sbi->sec_per_clus = bpb.fat_sec_per_clus;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001662
Conrad Meyer190a8842014-06-06 14:36:37 -07001663 error = -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001664 if (logical_sector_size < sb->s_blocksize) {
Alexey Fisher869f58c2011-04-12 21:08:38 +09001665 fat_msg(sb, KERN_ERR, "logical sector size too small for device"
1666 " (logical sector size = %u)", logical_sector_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001667 goto out_fail;
1668 }
Conrad Meyer190a8842014-06-06 14:36:37 -07001669
Linus Torvalds1da177e2005-04-16 15:20:36 -07001670 if (logical_sector_size > sb->s_blocksize) {
Conrad Meyer190a8842014-06-06 14:36:37 -07001671 struct buffer_head *bh_resize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001672
1673 if (!sb_set_blocksize(sb, logical_sector_size)) {
Alexey Fisher869f58c2011-04-12 21:08:38 +09001674 fat_msg(sb, KERN_ERR, "unable to set blocksize %u",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001675 logical_sector_size);
1676 goto out_fail;
1677 }
Conrad Meyer190a8842014-06-06 14:36:37 -07001678
1679 /* Verify that the larger boot sector is fully readable */
1680 bh_resize = sb_bread(sb, 0);
1681 if (bh_resize == NULL) {
Alexey Fisher869f58c2011-04-12 21:08:38 +09001682 fat_msg(sb, KERN_ERR, "unable to read boot sector"
1683 " (logical sector size = %lu)",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001684 sb->s_blocksize);
1685 goto out_fail;
1686 }
Conrad Meyer190a8842014-06-06 14:36:37 -07001687 brelse(bh_resize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001688 }
1689
Marco Stornellie40b34c2012-10-06 12:40:03 +02001690 mutex_init(&sbi->s_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001691 sbi->cluster_size = sb->s_blocksize * sbi->sec_per_clus;
1692 sbi->cluster_bits = ffs(sbi->cluster_size) - 1;
Conrad Meyer190a8842014-06-06 14:36:37 -07001693 sbi->fats = bpb.fat_fats;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001694 sbi->fat_bits = 0; /* Don't know yet */
Conrad Meyer190a8842014-06-06 14:36:37 -07001695 sbi->fat_start = bpb.fat_reserved;
1696 sbi->fat_length = bpb.fat_fat_length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001697 sbi->root_cluster = 0;
1698 sbi->free_clusters = -1; /* Don't know yet */
OGAWA Hirofumi606e4232008-04-28 02:16:27 -07001699 sbi->free_clus_valid = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001700 sbi->prev_free = FAT_START_ENT;
Namjae Jeon710d4402011-08-17 19:10:09 +09001701 sb->s_maxbytes = 0xffffffff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001702
Conrad Meyer190a8842014-06-06 14:36:37 -07001703 if (!sbi->fat_length && bpb.fat32_length) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001704 struct fat_boot_fsinfo *fsinfo;
1705 struct buffer_head *fsinfo_bh;
1706
1707 /* Must be FAT32 */
1708 sbi->fat_bits = 32;
Conrad Meyer190a8842014-06-06 14:36:37 -07001709 sbi->fat_length = bpb.fat32_length;
1710 sbi->root_cluster = bpb.fat32_root_cluster;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001711
Linus Torvalds1da177e2005-04-16 15:20:36 -07001712 /* MC - if info_sector is 0, don't multiply by 0 */
Conrad Meyer190a8842014-06-06 14:36:37 -07001713 sbi->fsinfo_sector = bpb.fat32_info_sector;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001714 if (sbi->fsinfo_sector == 0)
1715 sbi->fsinfo_sector = 1;
1716
1717 fsinfo_bh = sb_bread(sb, sbi->fsinfo_sector);
1718 if (fsinfo_bh == NULL) {
Alexey Fisher869f58c2011-04-12 21:08:38 +09001719 fat_msg(sb, KERN_ERR, "bread failed, FSINFO block"
1720 " (sector = %lu)", sbi->fsinfo_sector);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001721 goto out_fail;
1722 }
1723
1724 fsinfo = (struct fat_boot_fsinfo *)fsinfo_bh->b_data;
1725 if (!IS_FSINFO(fsinfo)) {
Alexey Fisher869f58c2011-04-12 21:08:38 +09001726 fat_msg(sb, KERN_WARNING, "Invalid FSINFO signature: "
1727 "0x%08x, 0x%08x (sector = %lu)",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001728 le32_to_cpu(fsinfo->signature1),
1729 le32_to_cpu(fsinfo->signature2),
1730 sbi->fsinfo_sector);
1731 } else {
OGAWA Hirofumi28ec0392007-05-08 00:31:01 -07001732 if (sbi->options.usefree)
OGAWA Hirofumi606e4232008-04-28 02:16:27 -07001733 sbi->free_clus_valid = 1;
1734 sbi->free_clusters = le32_to_cpu(fsinfo->free_clusters);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001735 sbi->prev_free = le32_to_cpu(fsinfo->next_cluster);
1736 }
1737
1738 brelse(fsinfo_bh);
1739 }
1740
Mike Lockwood6e5b93e2013-07-08 16:00:46 -07001741 /* interpret volume ID as a little endian 32 bit integer */
1742 if (sbi->fat_bits == 32)
Conrad Meyer190a8842014-06-06 14:36:37 -07001743 sbi->vol_id = bpb.fat32_vol_id;
Mike Lockwood6e5b93e2013-07-08 16:00:46 -07001744 else /* fat 16 or 12 */
Conrad Meyer190a8842014-06-06 14:36:37 -07001745 sbi->vol_id = bpb.fat16_vol_id;
Mike Lockwood6e5b93e2013-07-08 16:00:46 -07001746
Linus Torvalds1da177e2005-04-16 15:20:36 -07001747 sbi->dir_per_block = sb->s_blocksize / sizeof(struct msdos_dir_entry);
1748 sbi->dir_per_block_bits = ffs(sbi->dir_per_block) - 1;
1749
1750 sbi->dir_start = sbi->fat_start + sbi->fats * sbi->fat_length;
Conrad Meyer190a8842014-06-06 14:36:37 -07001751 sbi->dir_entries = bpb.fat_dir_entries;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001752 if (sbi->dir_entries & (sbi->dir_per_block - 1)) {
1753 if (!silent)
Zheng Lv34df1172016-06-24 01:31:00 -04001754 fat_msg(sb, KERN_ERR, "bogus number of directory entries"
Alexey Fisher869f58c2011-04-12 21:08:38 +09001755 " (%u)", sbi->dir_entries);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001756 goto out_invalid;
1757 }
1758
1759 rootdir_sectors = sbi->dir_entries
1760 * sizeof(struct msdos_dir_entry) / sb->s_blocksize;
1761 sbi->data_start = sbi->dir_start + rootdir_sectors;
Conrad Meyer190a8842014-06-06 14:36:37 -07001762 total_sectors = bpb.fat_sectors;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001763 if (total_sectors == 0)
Conrad Meyer190a8842014-06-06 14:36:37 -07001764 total_sectors = bpb.fat_total_sect;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001765
1766 total_clusters = (total_sectors - sbi->data_start) / sbi->sec_per_clus;
1767
1768 if (sbi->fat_bits != 32)
1769 sbi->fat_bits = (total_clusters > MAX_FAT12) ? 16 : 12;
1770
Oleksij Rempelb88a10582013-02-27 17:03:09 -08001771 /* some OSes set FAT_STATE_DIRTY and clean it on unmount. */
1772 if (sbi->fat_bits == 32)
Conrad Meyer190a8842014-06-06 14:36:37 -07001773 sbi->dirty = bpb.fat32_state & FAT_STATE_DIRTY;
Oleksij Rempelb88a10582013-02-27 17:03:09 -08001774 else /* fat 16 or 12 */
Conrad Meyer190a8842014-06-06 14:36:37 -07001775 sbi->dirty = bpb.fat16_state & FAT_STATE_DIRTY;
Oleksij Rempelb88a10582013-02-27 17:03:09 -08001776
Linus Torvalds1da177e2005-04-16 15:20:36 -07001777 /* check that FAT table does not overflow */
OGAWA Hirofumi7b92d032013-05-24 15:55:08 -07001778 fat_clusters = calc_fat_clusters(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001779 total_clusters = min(total_clusters, fat_clusters - FAT_START_ENT);
1780 if (total_clusters > MAX_FAT(sb)) {
1781 if (!silent)
Alexey Fisher869f58c2011-04-12 21:08:38 +09001782 fat_msg(sb, KERN_ERR, "count of clusters too big (%u)",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001783 total_clusters);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001784 goto out_invalid;
1785 }
1786
1787 sbi->max_cluster = total_clusters + FAT_START_ENT;
1788 /* check the free_clusters, it's not necessarily correct */
1789 if (sbi->free_clusters != -1 && sbi->free_clusters > total_clusters)
1790 sbi->free_clusters = -1;
1791 /* check the prev_free, it's not necessarily correct */
1792 sbi->prev_free %= sbi->max_cluster;
1793 if (sbi->prev_free < FAT_START_ENT)
1794 sbi->prev_free = FAT_START_ENT;
1795
Linus Torvalds1da177e2005-04-16 15:20:36 -07001796 /* set up enough so that it can read an inode */
1797 fat_hash_init(sb);
Steven J. Magnani7669e8f2012-10-04 17:14:45 -07001798 dir_hash_init(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001799 fat_ent_access_init(sb);
1800
1801 /*
1802 * The low byte of FAT's first entry must have same value with
1803 * media-field. But in real world, too many devices is
1804 * writing wrong value. So, removed that validity check.
1805 *
1806 * if (FAT_FIRST_ENT(sb, media) != first)
1807 */
1808
1809 error = -EINVAL;
1810 sprintf(buf, "cp%d", sbi->options.codepage);
1811 sbi->nls_disk = load_nls(buf);
1812 if (!sbi->nls_disk) {
Alexey Fisher869f58c2011-04-12 21:08:38 +09001813 fat_msg(sb, KERN_ERR, "codepage %s not found", buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001814 goto out_fail;
1815 }
1816
1817 /* FIXME: utf8 is using iocharset for upper/lower conversion */
1818 if (sbi->options.isvfat) {
1819 sbi->nls_io = load_nls(sbi->options.iocharset);
1820 if (!sbi->nls_io) {
Alexey Fisher869f58c2011-04-12 21:08:38 +09001821 fat_msg(sb, KERN_ERR, "IO charset %s not found",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001822 sbi->options.iocharset);
1823 goto out_fail;
1824 }
1825 }
1826
1827 error = -ENOMEM;
Al Virob5224122009-06-07 13:44:36 -04001828 fat_inode = new_inode(sb);
1829 if (!fat_inode)
1830 goto out_fail;
OGAWA Hirofumic0d0e352017-03-09 16:17:37 -08001831 fat_dummy_inode_init(fat_inode);
Al Virob5224122009-06-07 13:44:36 -04001832 sbi->fat_inode = fat_inode;
Artem Bityutskiy020ac5b2012-05-31 16:26:12 -07001833
1834 fsinfo_inode = new_inode(sb);
1835 if (!fsinfo_inode)
1836 goto out_fail;
OGAWA Hirofumic0d0e352017-03-09 16:17:37 -08001837 fat_dummy_inode_init(fsinfo_inode);
Artem Bityutskiy020ac5b2012-05-31 16:26:12 -07001838 fsinfo_inode->i_ino = MSDOS_FSINFO_INO;
1839 sbi->fsinfo_inode = fsinfo_inode;
1840 insert_inode_hash(fsinfo_inode);
1841
Linus Torvalds1da177e2005-04-16 15:20:36 -07001842 root_inode = new_inode(sb);
1843 if (!root_inode)
1844 goto out_fail;
1845 root_inode->i_ino = MSDOS_ROOT_INO;
Jeff Layton2489dba2017-12-11 06:35:09 -05001846 inode_set_iversion(root_inode, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001847 error = fat_read_root(root_inode);
Al Viro1688f862012-02-12 22:06:33 -05001848 if (error < 0) {
1849 iput(root_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001850 goto out_fail;
Al Viro1688f862012-02-12 22:06:33 -05001851 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001852 error = -ENOMEM;
1853 insert_inode_hash(root_inode);
Steven J. Magnani7669e8f2012-10-04 17:14:45 -07001854 fat_attach(root_inode, 0);
Al Viro1688f862012-02-12 22:06:33 -05001855 sb->s_root = d_make_root(root_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001856 if (!sb->s_root) {
Alexey Fisher869f58c2011-04-12 21:08:38 +09001857 fat_msg(sb, KERN_ERR, "get root inode failed");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001858 goto out_fail;
1859 }
1860
Namjae Jeonf5621462012-12-17 16:02:56 -08001861 if (sbi->options.discard) {
1862 struct request_queue *q = bdev_get_queue(sb->s_bdev);
1863 if (!blk_queue_discard(q))
1864 fat_msg(sb, KERN_WARNING,
1865 "mounting with \"discard\" option, but "
1866 "the device does not support discard");
1867 }
1868
Oleksij Rempelb88a10582013-02-27 17:03:09 -08001869 fat_set_state(sb, 1, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001870 return 0;
1871
1872out_invalid:
1873 error = -EINVAL;
1874 if (!silent)
Alexey Fisher869f58c2011-04-12 21:08:38 +09001875 fat_msg(sb, KERN_INFO, "Can't find a valid FAT filesystem");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001876
1877out_fail:
Artem Bityutskiy020ac5b2012-05-31 16:26:12 -07001878 if (fsinfo_inode)
1879 iput(fsinfo_inode);
Al Virob5224122009-06-07 13:44:36 -04001880 if (fat_inode)
1881 iput(fat_inode);
OGAWA Hirofumi1bdb6f92010-03-16 05:48:09 +09001882 unload_nls(sbi->nls_io);
1883 unload_nls(sbi->nls_disk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001884 if (sbi->options.iocharset != fat_default_iocharset)
1885 kfree(sbi->options.iocharset);
1886 sb->s_fs_info = NULL;
1887 kfree(sbi);
1888 return error;
1889}
1890
OGAWA Hirofumi7c709d02006-01-08 01:02:10 -08001891EXPORT_SYMBOL_GPL(fat_fill_super);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001892
Chris Masonae78bf92006-09-29 02:00:03 -07001893/*
1894 * helper function for fat_flush_inodes. This writes both the inode
1895 * and the file data blocks, waiting for in flight data blocks before
1896 * the start of the call. It does not wait for any io started
1897 * during the call
1898 */
1899static int writeback_inode(struct inode *inode)
1900{
1901
1902 int ret;
Namjae Jeon14864652012-10-04 17:15:04 -07001903
1904 /* if we used wait=1, sync_inode_metadata waits for the io for the
1905 * inode to finish. So wait=0 is sent down to sync_inode_metadata
Chris Masonae78bf92006-09-29 02:00:03 -07001906 * and filemap_fdatawrite is used for the data blocks
1907 */
Namjae Jeon14864652012-10-04 17:15:04 -07001908 ret = sync_inode_metadata(inode, 0);
Chris Masonae78bf92006-09-29 02:00:03 -07001909 if (!ret)
Namjae Jeon14864652012-10-04 17:15:04 -07001910 ret = filemap_fdatawrite(inode->i_mapping);
Chris Masonae78bf92006-09-29 02:00:03 -07001911 return ret;
1912}
1913
1914/*
1915 * write data and metadata corresponding to i1 and i2. The io is
1916 * started but we do not wait for any of it to finish.
1917 *
1918 * filemap_flush is used for the block device, so if there is a dirty
1919 * page for a block already in flight, we will not wait and start the
1920 * io over again
1921 */
1922int fat_flush_inodes(struct super_block *sb, struct inode *i1, struct inode *i2)
1923{
1924 int ret = 0;
1925 if (!MSDOS_SB(sb)->options.flush)
1926 return 0;
1927 if (i1)
1928 ret = writeback_inode(i1);
1929 if (!ret && i2)
1930 ret = writeback_inode(i2);
Eric Sesterhenn97e860d2006-10-11 01:21:59 -07001931 if (!ret) {
Chris Masonae78bf92006-09-29 02:00:03 -07001932 struct address_space *mapping = sb->s_bdev->bd_inode->i_mapping;
1933 ret = filemap_flush(mapping);
1934 }
1935 return ret;
1936}
1937EXPORT_SYMBOL_GPL(fat_flush_inodes);
1938
Linus Torvalds1da177e2005-04-16 15:20:36 -07001939static int __init init_fat_fs(void)
1940{
Pekka J Enberg532a39a2005-06-30 02:59:01 -07001941 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001942
Pekka J Enberg532a39a2005-06-30 02:59:01 -07001943 err = fat_cache_init();
1944 if (err)
1945 return err;
1946
1947 err = fat_init_inodecache();
1948 if (err)
1949 goto failed;
1950
1951 return 0;
1952
1953failed:
1954 fat_cache_destroy();
1955 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001956}
1957
1958static void __exit exit_fat_fs(void)
1959{
1960 fat_cache_destroy();
1961 fat_destroy_inodecache();
1962}
1963
1964module_init(init_fat_fs)
1965module_exit(exit_fat_fs)
1966
1967MODULE_LICENSE("GPL");