inode.c 39 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497
  1. /*
  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. #include <linux/module.h>
  13. #include <linux/init.h>
  14. #include <linux/time.h>
  15. #include <linux/slab.h>
  16. #include <linux/smp_lock.h>
  17. #include <linux/seq_file.h>
  18. #include <linux/pagemap.h>
  19. #include <linux/mpage.h>
  20. #include <linux/buffer_head.h>
  21. #include <linux/exportfs.h>
  22. #include <linux/mount.h>
  23. #include <linux/vfs.h>
  24. #include <linux/parser.h>
  25. #include <linux/uio.h>
  26. #include <linux/writeback.h>
  27. #include <linux/log2.h>
  28. #include <linux/hash.h>
  29. #include <asm/unaligned.h>
  30. #include "fat.h"
  31. #ifndef CONFIG_FAT_DEFAULT_IOCHARSET
  32. /* if user don't select VFAT, this is undefined. */
  33. #define CONFIG_FAT_DEFAULT_IOCHARSET ""
  34. #endif
  35. static int fat_default_codepage = CONFIG_FAT_DEFAULT_CODEPAGE;
  36. static char fat_default_iocharset[] = CONFIG_FAT_DEFAULT_IOCHARSET;
  37. static int fat_add_cluster(struct inode *inode)
  38. {
  39. int err, cluster;
  40. err = fat_alloc_clusters(inode, &cluster, 1);
  41. if (err)
  42. return err;
  43. /* FIXME: this cluster should be added after data of this
  44. * cluster is writed */
  45. err = fat_chain_add(inode, cluster, 1);
  46. if (err)
  47. fat_free_clusters(inode, cluster);
  48. return err;
  49. }
  50. static inline int __fat_get_block(struct inode *inode, sector_t iblock,
  51. unsigned long *max_blocks,
  52. struct buffer_head *bh_result, int create)
  53. {
  54. struct super_block *sb = inode->i_sb;
  55. struct msdos_sb_info *sbi = MSDOS_SB(sb);
  56. unsigned long mapped_blocks;
  57. sector_t phys;
  58. int err, offset;
  59. err = fat_bmap(inode, iblock, &phys, &mapped_blocks);
  60. if (err)
  61. return err;
  62. if (phys) {
  63. map_bh(bh_result, sb, phys);
  64. *max_blocks = min(mapped_blocks, *max_blocks);
  65. return 0;
  66. }
  67. if (!create)
  68. return 0;
  69. if (iblock != MSDOS_I(inode)->mmu_private >> sb->s_blocksize_bits) {
  70. fat_fs_panic(sb, "corrupted file size (i_pos %lld, %lld)",
  71. MSDOS_I(inode)->i_pos, MSDOS_I(inode)->mmu_private);
  72. return -EIO;
  73. }
  74. offset = (unsigned long)iblock & (sbi->sec_per_clus - 1);
  75. if (!offset) {
  76. /* TODO: multiple cluster allocation would be desirable. */
  77. err = fat_add_cluster(inode);
  78. if (err)
  79. return err;
  80. }
  81. /* available blocks on this cluster */
  82. mapped_blocks = sbi->sec_per_clus - offset;
  83. *max_blocks = min(mapped_blocks, *max_blocks);
  84. MSDOS_I(inode)->mmu_private += *max_blocks << sb->s_blocksize_bits;
  85. err = fat_bmap(inode, iblock, &phys, &mapped_blocks);
  86. if (err)
  87. return err;
  88. BUG_ON(!phys);
  89. BUG_ON(*max_blocks != mapped_blocks);
  90. set_buffer_new(bh_result);
  91. map_bh(bh_result, sb, phys);
  92. return 0;
  93. }
  94. static int fat_get_block(struct inode *inode, sector_t iblock,
  95. struct buffer_head *bh_result, int create)
  96. {
  97. struct super_block *sb = inode->i_sb;
  98. unsigned long max_blocks = bh_result->b_size >> inode->i_blkbits;
  99. int err;
  100. err = __fat_get_block(inode, iblock, &max_blocks, bh_result, create);
  101. if (err)
  102. return err;
  103. bh_result->b_size = max_blocks << sb->s_blocksize_bits;
  104. return 0;
  105. }
  106. static int fat_writepage(struct page *page, struct writeback_control *wbc)
  107. {
  108. return block_write_full_page(page, fat_get_block, wbc);
  109. }
  110. static int fat_writepages(struct address_space *mapping,
  111. struct writeback_control *wbc)
  112. {
  113. return mpage_writepages(mapping, wbc, fat_get_block);
  114. }
  115. static int fat_readpage(struct file *file, struct page *page)
  116. {
  117. return mpage_readpage(page, fat_get_block);
  118. }
  119. static int fat_readpages(struct file *file, struct address_space *mapping,
  120. struct list_head *pages, unsigned nr_pages)
  121. {
  122. return mpage_readpages(mapping, pages, nr_pages, fat_get_block);
  123. }
  124. static int fat_write_begin(struct file *file, struct address_space *mapping,
  125. loff_t pos, unsigned len, unsigned flags,
  126. struct page **pagep, void **fsdata)
  127. {
  128. *pagep = NULL;
  129. return cont_write_begin(file, mapping, pos, len, flags, pagep, fsdata,
  130. fat_get_block,
  131. &MSDOS_I(mapping->host)->mmu_private);
  132. }
  133. static int fat_write_end(struct file *file, struct address_space *mapping,
  134. loff_t pos, unsigned len, unsigned copied,
  135. struct page *pagep, void *fsdata)
  136. {
  137. struct inode *inode = mapping->host;
  138. int err;
  139. err = generic_write_end(file, mapping, pos, len, copied, pagep, fsdata);
  140. if (!(err < 0) && !(MSDOS_I(inode)->i_attrs & ATTR_ARCH)) {
  141. inode->i_mtime = inode->i_ctime = CURRENT_TIME_SEC;
  142. MSDOS_I(inode)->i_attrs |= ATTR_ARCH;
  143. mark_inode_dirty(inode);
  144. }
  145. return err;
  146. }
  147. static ssize_t fat_direct_IO(int rw, struct kiocb *iocb,
  148. const struct iovec *iov,
  149. loff_t offset, unsigned long nr_segs)
  150. {
  151. struct file *file = iocb->ki_filp;
  152. struct inode *inode = file->f_mapping->host;
  153. if (rw == WRITE) {
  154. /*
  155. * FIXME: blockdev_direct_IO() doesn't use ->write_begin(),
  156. * so we need to update the ->mmu_private to block boundary.
  157. *
  158. * But we must fill the remaining area or hole by nul for
  159. * updating ->mmu_private.
  160. *
  161. * Return 0, and fallback to normal buffered write.
  162. */
  163. loff_t size = offset + iov_length(iov, nr_segs);
  164. if (MSDOS_I(inode)->mmu_private < size)
  165. return 0;
  166. }
  167. /*
  168. * FAT need to use the DIO_LOCKING for avoiding the race
  169. * condition of fat_get_block() and ->truncate().
  170. */
  171. return blockdev_direct_IO(rw, iocb, inode, inode->i_sb->s_bdev, iov,
  172. offset, nr_segs, fat_get_block, NULL);
  173. }
  174. static sector_t _fat_bmap(struct address_space *mapping, sector_t block)
  175. {
  176. return generic_block_bmap(mapping, block, fat_get_block);
  177. }
  178. static const struct address_space_operations fat_aops = {
  179. .readpage = fat_readpage,
  180. .readpages = fat_readpages,
  181. .writepage = fat_writepage,
  182. .writepages = fat_writepages,
  183. .sync_page = block_sync_page,
  184. .write_begin = fat_write_begin,
  185. .write_end = fat_write_end,
  186. .direct_IO = fat_direct_IO,
  187. .bmap = _fat_bmap
  188. };
  189. /*
  190. * New FAT inode stuff. We do the following:
  191. * a) i_ino is constant and has nothing with on-disk location.
  192. * b) FAT manages its own cache of directory entries.
  193. * c) *This* cache is indexed by on-disk location.
  194. * d) inode has an associated directory entry, all right, but
  195. * it may be unhashed.
  196. * e) currently entries are stored within struct inode. That should
  197. * change.
  198. * f) we deal with races in the following way:
  199. * 1. readdir() and lookup() do FAT-dir-cache lookup.
  200. * 2. rename() unhashes the F-d-c entry and rehashes it in
  201. * a new place.
  202. * 3. unlink() and rmdir() unhash F-d-c entry.
  203. * 4. fat_write_inode() checks whether the thing is unhashed.
  204. * If it is we silently return. If it isn't we do bread(),
  205. * check if the location is still valid and retry if it
  206. * isn't. Otherwise we do changes.
  207. * 5. Spinlock is used to protect hash/unhash/location check/lookup
  208. * 6. fat_clear_inode() unhashes the F-d-c entry.
  209. * 7. lookup() and readdir() do igrab() if they find a F-d-c entry
  210. * and consider negative result as cache miss.
  211. */
  212. static void fat_hash_init(struct super_block *sb)
  213. {
  214. struct msdos_sb_info *sbi = MSDOS_SB(sb);
  215. int i;
  216. spin_lock_init(&sbi->inode_hash_lock);
  217. for (i = 0; i < FAT_HASH_SIZE; i++)
  218. INIT_HLIST_HEAD(&sbi->inode_hashtable[i]);
  219. }
  220. static inline unsigned long fat_hash(loff_t i_pos)
  221. {
  222. return hash_32(i_pos, FAT_HASH_BITS);
  223. }
  224. void fat_attach(struct inode *inode, loff_t i_pos)
  225. {
  226. struct msdos_sb_info *sbi = MSDOS_SB(inode->i_sb);
  227. struct hlist_head *head = sbi->inode_hashtable + fat_hash(i_pos);
  228. spin_lock(&sbi->inode_hash_lock);
  229. MSDOS_I(inode)->i_pos = i_pos;
  230. hlist_add_head(&MSDOS_I(inode)->i_fat_hash, head);
  231. spin_unlock(&sbi->inode_hash_lock);
  232. }
  233. EXPORT_SYMBOL_GPL(fat_attach);
  234. void fat_detach(struct inode *inode)
  235. {
  236. struct msdos_sb_info *sbi = MSDOS_SB(inode->i_sb);
  237. spin_lock(&sbi->inode_hash_lock);
  238. MSDOS_I(inode)->i_pos = 0;
  239. hlist_del_init(&MSDOS_I(inode)->i_fat_hash);
  240. spin_unlock(&sbi->inode_hash_lock);
  241. }
  242. EXPORT_SYMBOL_GPL(fat_detach);
  243. struct inode *fat_iget(struct super_block *sb, loff_t i_pos)
  244. {
  245. struct msdos_sb_info *sbi = MSDOS_SB(sb);
  246. struct hlist_head *head = sbi->inode_hashtable + fat_hash(i_pos);
  247. struct hlist_node *_p;
  248. struct msdos_inode_info *i;
  249. struct inode *inode = NULL;
  250. spin_lock(&sbi->inode_hash_lock);
  251. hlist_for_each_entry(i, _p, head, i_fat_hash) {
  252. BUG_ON(i->vfs_inode.i_sb != sb);
  253. if (i->i_pos != i_pos)
  254. continue;
  255. inode = igrab(&i->vfs_inode);
  256. if (inode)
  257. break;
  258. }
  259. spin_unlock(&sbi->inode_hash_lock);
  260. return inode;
  261. }
  262. static int is_exec(unsigned char *extension)
  263. {
  264. unsigned char *exe_extensions = "EXECOMBAT", *walk;
  265. for (walk = exe_extensions; *walk; walk += 3)
  266. if (!strncmp(extension, walk, 3))
  267. return 1;
  268. return 0;
  269. }
  270. static int fat_calc_dir_size(struct inode *inode)
  271. {
  272. struct msdos_sb_info *sbi = MSDOS_SB(inode->i_sb);
  273. int ret, fclus, dclus;
  274. inode->i_size = 0;
  275. if (MSDOS_I(inode)->i_start == 0)
  276. return 0;
  277. ret = fat_get_cluster(inode, FAT_ENT_EOF, &fclus, &dclus);
  278. if (ret < 0)
  279. return ret;
  280. inode->i_size = (fclus + 1) << sbi->cluster_bits;
  281. return 0;
  282. }
  283. /* doesn't deal with root inode */
  284. static int fat_fill_inode(struct inode *inode, struct msdos_dir_entry *de)
  285. {
  286. struct msdos_sb_info *sbi = MSDOS_SB(inode->i_sb);
  287. int error;
  288. MSDOS_I(inode)->i_pos = 0;
  289. inode->i_uid = sbi->options.fs_uid;
  290. inode->i_gid = sbi->options.fs_gid;
  291. inode->i_version++;
  292. inode->i_generation = get_seconds();
  293. if ((de->attr & ATTR_DIR) && !IS_FREE(de->name)) {
  294. inode->i_generation &= ~1;
  295. inode->i_mode = MSDOS_MKMODE(de->attr,
  296. S_IRWXUGO & ~sbi->options.fs_dmask) | S_IFDIR;
  297. inode->i_op = sbi->dir_ops;
  298. inode->i_fop = &fat_dir_operations;
  299. MSDOS_I(inode)->i_start = le16_to_cpu(de->start);
  300. if (sbi->fat_bits == 32)
  301. MSDOS_I(inode)->i_start |= (le16_to_cpu(de->starthi) << 16);
  302. MSDOS_I(inode)->i_logstart = MSDOS_I(inode)->i_start;
  303. error = fat_calc_dir_size(inode);
  304. if (error < 0)
  305. return error;
  306. MSDOS_I(inode)->mmu_private = inode->i_size;
  307. inode->i_nlink = fat_subdirs(inode);
  308. } else { /* not a directory */
  309. inode->i_generation |= 1;
  310. inode->i_mode = MSDOS_MKMODE(de->attr,
  311. ((sbi->options.showexec && !is_exec(de->name + 8))
  312. ? S_IRUGO|S_IWUGO : S_IRWXUGO)
  313. & ~sbi->options.fs_fmask) | S_IFREG;
  314. MSDOS_I(inode)->i_start = le16_to_cpu(de->start);
  315. if (sbi->fat_bits == 32)
  316. MSDOS_I(inode)->i_start |= (le16_to_cpu(de->starthi) << 16);
  317. MSDOS_I(inode)->i_logstart = MSDOS_I(inode)->i_start;
  318. inode->i_size = le32_to_cpu(de->size);
  319. inode->i_op = &fat_file_inode_operations;
  320. inode->i_fop = &fat_file_operations;
  321. inode->i_mapping->a_ops = &fat_aops;
  322. MSDOS_I(inode)->mmu_private = inode->i_size;
  323. }
  324. if (de->attr & ATTR_SYS) {
  325. if (sbi->options.sys_immutable)
  326. inode->i_flags |= S_IMMUTABLE;
  327. }
  328. MSDOS_I(inode)->i_attrs = de->attr & ATTR_UNUSED;
  329. inode->i_blocks = ((inode->i_size + (sbi->cluster_size - 1))
  330. & ~((loff_t)sbi->cluster_size - 1)) >> 9;
  331. fat_time_fat2unix(sbi, &inode->i_mtime, de->time, de->date, 0);
  332. if (sbi->options.isvfat) {
  333. fat_time_fat2unix(sbi, &inode->i_ctime, de->ctime,
  334. de->cdate, de->ctime_cs);
  335. fat_time_fat2unix(sbi, &inode->i_atime, 0, de->adate, 0);
  336. } else
  337. inode->i_ctime = inode->i_atime = inode->i_mtime;
  338. return 0;
  339. }
  340. struct inode *fat_build_inode(struct super_block *sb,
  341. struct msdos_dir_entry *de, loff_t i_pos)
  342. {
  343. struct inode *inode;
  344. int err;
  345. inode = fat_iget(sb, i_pos);
  346. if (inode)
  347. goto out;
  348. inode = new_inode(sb);
  349. if (!inode) {
  350. inode = ERR_PTR(-ENOMEM);
  351. goto out;
  352. }
  353. inode->i_ino = iunique(sb, MSDOS_ROOT_INO);
  354. inode->i_version = 1;
  355. err = fat_fill_inode(inode, de);
  356. if (err) {
  357. iput(inode);
  358. inode = ERR_PTR(err);
  359. goto out;
  360. }
  361. fat_attach(inode, i_pos);
  362. insert_inode_hash(inode);
  363. out:
  364. return inode;
  365. }
  366. EXPORT_SYMBOL_GPL(fat_build_inode);
  367. static void fat_delete_inode(struct inode *inode)
  368. {
  369. truncate_inode_pages(&inode->i_data, 0);
  370. inode->i_size = 0;
  371. fat_truncate(inode);
  372. clear_inode(inode);
  373. }
  374. static void fat_clear_inode(struct inode *inode)
  375. {
  376. fat_cache_inval_inode(inode);
  377. fat_detach(inode);
  378. }
  379. static void fat_write_super(struct super_block *sb)
  380. {
  381. sb->s_dirt = 0;
  382. if (!(sb->s_flags & MS_RDONLY))
  383. fat_clusters_flush(sb);
  384. }
  385. static void fat_put_super(struct super_block *sb)
  386. {
  387. struct msdos_sb_info *sbi = MSDOS_SB(sb);
  388. if (sbi->nls_disk) {
  389. unload_nls(sbi->nls_disk);
  390. sbi->nls_disk = NULL;
  391. sbi->options.codepage = fat_default_codepage;
  392. }
  393. if (sbi->nls_io) {
  394. unload_nls(sbi->nls_io);
  395. sbi->nls_io = NULL;
  396. }
  397. if (sbi->options.iocharset != fat_default_iocharset) {
  398. kfree(sbi->options.iocharset);
  399. sbi->options.iocharset = fat_default_iocharset;
  400. }
  401. sb->s_fs_info = NULL;
  402. kfree(sbi);
  403. }
  404. static struct kmem_cache *fat_inode_cachep;
  405. static struct inode *fat_alloc_inode(struct super_block *sb)
  406. {
  407. struct msdos_inode_info *ei;
  408. ei = kmem_cache_alloc(fat_inode_cachep, GFP_NOFS);
  409. if (!ei)
  410. return NULL;
  411. return &ei->vfs_inode;
  412. }
  413. static void fat_destroy_inode(struct inode *inode)
  414. {
  415. kmem_cache_free(fat_inode_cachep, MSDOS_I(inode));
  416. }
  417. static void init_once(void *foo)
  418. {
  419. struct msdos_inode_info *ei = (struct msdos_inode_info *)foo;
  420. spin_lock_init(&ei->cache_lru_lock);
  421. ei->nr_caches = 0;
  422. ei->cache_valid_id = FAT_CACHE_VALID + 1;
  423. INIT_LIST_HEAD(&ei->cache_lru);
  424. INIT_HLIST_NODE(&ei->i_fat_hash);
  425. inode_init_once(&ei->vfs_inode);
  426. }
  427. static int __init fat_init_inodecache(void)
  428. {
  429. fat_inode_cachep = kmem_cache_create("fat_inode_cache",
  430. sizeof(struct msdos_inode_info),
  431. 0, (SLAB_RECLAIM_ACCOUNT|
  432. SLAB_MEM_SPREAD),
  433. init_once);
  434. if (fat_inode_cachep == NULL)
  435. return -ENOMEM;
  436. return 0;
  437. }
  438. static void __exit fat_destroy_inodecache(void)
  439. {
  440. kmem_cache_destroy(fat_inode_cachep);
  441. }
  442. static int fat_remount(struct super_block *sb, int *flags, char *data)
  443. {
  444. struct msdos_sb_info *sbi = MSDOS_SB(sb);
  445. *flags |= MS_NODIRATIME | (sbi->options.isvfat ? 0 : MS_NOATIME);
  446. return 0;
  447. }
  448. static int fat_statfs(struct dentry *dentry, struct kstatfs *buf)
  449. {
  450. struct msdos_sb_info *sbi = MSDOS_SB(dentry->d_sb);
  451. /* If the count of free cluster is still unknown, counts it here. */
  452. if (sbi->free_clusters == -1 || !sbi->free_clus_valid) {
  453. int err = fat_count_free_clusters(dentry->d_sb);
  454. if (err)
  455. return err;
  456. }
  457. buf->f_type = dentry->d_sb->s_magic;
  458. buf->f_bsize = sbi->cluster_size;
  459. buf->f_blocks = sbi->max_cluster - FAT_START_ENT;
  460. buf->f_bfree = sbi->free_clusters;
  461. buf->f_bavail = sbi->free_clusters;
  462. buf->f_namelen = sbi->options.isvfat ? 260 : 12;
  463. return 0;
  464. }
  465. static int fat_write_inode(struct inode *inode, int wait)
  466. {
  467. struct super_block *sb = inode->i_sb;
  468. struct msdos_sb_info *sbi = MSDOS_SB(sb);
  469. struct buffer_head *bh;
  470. struct msdos_dir_entry *raw_entry;
  471. loff_t i_pos;
  472. int err;
  473. retry:
  474. i_pos = MSDOS_I(inode)->i_pos;
  475. if (inode->i_ino == MSDOS_ROOT_INO || !i_pos)
  476. return 0;
  477. bh = sb_bread(sb, i_pos >> sbi->dir_per_block_bits);
  478. if (!bh) {
  479. printk(KERN_ERR "FAT: unable to read inode block "
  480. "for updating (i_pos %lld)\n", i_pos);
  481. return -EIO;
  482. }
  483. spin_lock(&sbi->inode_hash_lock);
  484. if (i_pos != MSDOS_I(inode)->i_pos) {
  485. spin_unlock(&sbi->inode_hash_lock);
  486. brelse(bh);
  487. goto retry;
  488. }
  489. raw_entry = &((struct msdos_dir_entry *) (bh->b_data))
  490. [i_pos & (sbi->dir_per_block - 1)];
  491. if (S_ISDIR(inode->i_mode))
  492. raw_entry->size = 0;
  493. else
  494. raw_entry->size = cpu_to_le32(inode->i_size);
  495. raw_entry->attr = fat_attr(inode);
  496. raw_entry->start = cpu_to_le16(MSDOS_I(inode)->i_logstart);
  497. raw_entry->starthi = cpu_to_le16(MSDOS_I(inode)->i_logstart >> 16);
  498. fat_time_unix2fat(sbi, &inode->i_mtime, &raw_entry->time,
  499. &raw_entry->date, NULL);
  500. if (sbi->options.isvfat) {
  501. __le16 atime;
  502. fat_time_unix2fat(sbi, &inode->i_ctime, &raw_entry->ctime,
  503. &raw_entry->cdate, &raw_entry->ctime_cs);
  504. fat_time_unix2fat(sbi, &inode->i_atime, &atime,
  505. &raw_entry->adate, NULL);
  506. }
  507. spin_unlock(&sbi->inode_hash_lock);
  508. mark_buffer_dirty(bh);
  509. err = 0;
  510. if (wait)
  511. err = sync_dirty_buffer(bh);
  512. brelse(bh);
  513. return err;
  514. }
  515. int fat_sync_inode(struct inode *inode)
  516. {
  517. return fat_write_inode(inode, 1);
  518. }
  519. EXPORT_SYMBOL_GPL(fat_sync_inode);
  520. static int fat_show_options(struct seq_file *m, struct vfsmount *mnt);
  521. static const struct super_operations fat_sops = {
  522. .alloc_inode = fat_alloc_inode,
  523. .destroy_inode = fat_destroy_inode,
  524. .write_inode = fat_write_inode,
  525. .delete_inode = fat_delete_inode,
  526. .put_super = fat_put_super,
  527. .write_super = fat_write_super,
  528. .statfs = fat_statfs,
  529. .clear_inode = fat_clear_inode,
  530. .remount_fs = fat_remount,
  531. .show_options = fat_show_options,
  532. };
  533. /*
  534. * a FAT file handle with fhtype 3 is
  535. * 0/ i_ino - for fast, reliable lookup if still in the cache
  536. * 1/ i_generation - to see if i_ino is still valid
  537. * bit 0 == 0 iff directory
  538. * 2/ i_pos(8-39) - if ino has changed, but still in cache
  539. * 3/ i_pos(4-7)|i_logstart - to semi-verify inode found at i_pos
  540. * 4/ i_pos(0-3)|parent->i_logstart - maybe used to hunt for the file on disc
  541. *
  542. * Hack for NFSv2: Maximum FAT entry number is 28bits and maximum
  543. * i_pos is 40bits (blocknr(32) + dir offset(8)), so two 4bits
  544. * of i_logstart is used to store the directory entry offset.
  545. */
  546. static struct dentry *fat_fh_to_dentry(struct super_block *sb,
  547. struct fid *fid, int fh_len, int fh_type)
  548. {
  549. struct inode *inode = NULL;
  550. struct dentry *result;
  551. u32 *fh = fid->raw;
  552. if (fh_len < 5 || fh_type != 3)
  553. return NULL;
  554. inode = ilookup(sb, fh[0]);
  555. if (!inode || inode->i_generation != fh[1]) {
  556. if (inode)
  557. iput(inode);
  558. inode = NULL;
  559. }
  560. if (!inode) {
  561. loff_t i_pos;
  562. int i_logstart = fh[3] & 0x0fffffff;
  563. i_pos = (loff_t)fh[2] << 8;
  564. i_pos |= ((fh[3] >> 24) & 0xf0) | (fh[4] >> 28);
  565. /* try 2 - see if i_pos is in F-d-c
  566. * require i_logstart to be the same
  567. * Will fail if you truncate and then re-write
  568. */
  569. inode = fat_iget(sb, i_pos);
  570. if (inode && MSDOS_I(inode)->i_logstart != i_logstart) {
  571. iput(inode);
  572. inode = NULL;
  573. }
  574. }
  575. /*
  576. * For now, do nothing if the inode is not found.
  577. *
  578. * What we could do is:
  579. *
  580. * - follow the file starting at fh[4], and record the ".." entry,
  581. * and the name of the fh[2] entry.
  582. * - then follow the ".." file finding the next step up.
  583. *
  584. * This way we build a path to the root of the tree. If this works, we
  585. * lookup the path and so get this inode into the cache. Finally try
  586. * the fat_iget lookup again. If that fails, then we are totally out
  587. * of luck. But all that is for another day
  588. */
  589. result = d_obtain_alias(inode);
  590. if (!IS_ERR(result))
  591. result->d_op = sb->s_root->d_op;
  592. return result;
  593. }
  594. static int
  595. fat_encode_fh(struct dentry *de, __u32 *fh, int *lenp, int connectable)
  596. {
  597. int len = *lenp;
  598. struct inode *inode = de->d_inode;
  599. u32 ipos_h, ipos_m, ipos_l;
  600. if (len < 5)
  601. return 255; /* no room */
  602. ipos_h = MSDOS_I(inode)->i_pos >> 8;
  603. ipos_m = (MSDOS_I(inode)->i_pos & 0xf0) << 24;
  604. ipos_l = (MSDOS_I(inode)->i_pos & 0x0f) << 28;
  605. *lenp = 5;
  606. fh[0] = inode->i_ino;
  607. fh[1] = inode->i_generation;
  608. fh[2] = ipos_h;
  609. fh[3] = ipos_m | MSDOS_I(inode)->i_logstart;
  610. spin_lock(&de->d_lock);
  611. fh[4] = ipos_l | MSDOS_I(de->d_parent->d_inode)->i_logstart;
  612. spin_unlock(&de->d_lock);
  613. return 3;
  614. }
  615. static struct dentry *fat_get_parent(struct dentry *child)
  616. {
  617. struct super_block *sb = child->d_sb;
  618. struct buffer_head *bh;
  619. struct msdos_dir_entry *de;
  620. loff_t i_pos;
  621. struct dentry *parent;
  622. struct inode *inode;
  623. int err;
  624. lock_super(sb);
  625. err = fat_get_dotdot_entry(child->d_inode, &bh, &de, &i_pos);
  626. if (err) {
  627. parent = ERR_PTR(err);
  628. goto out;
  629. }
  630. inode = fat_build_inode(sb, de, i_pos);
  631. brelse(bh);
  632. parent = d_obtain_alias(inode);
  633. out:
  634. unlock_super(sb);
  635. return parent;
  636. }
  637. static const struct export_operations fat_export_ops = {
  638. .encode_fh = fat_encode_fh,
  639. .fh_to_dentry = fat_fh_to_dentry,
  640. .get_parent = fat_get_parent,
  641. };
  642. static int fat_show_options(struct seq_file *m, struct vfsmount *mnt)
  643. {
  644. struct msdos_sb_info *sbi = MSDOS_SB(mnt->mnt_sb);
  645. struct fat_mount_options *opts = &sbi->options;
  646. int isvfat = opts->isvfat;
  647. if (opts->fs_uid != 0)
  648. seq_printf(m, ",uid=%u", opts->fs_uid);
  649. if (opts->fs_gid != 0)
  650. seq_printf(m, ",gid=%u", opts->fs_gid);
  651. seq_printf(m, ",fmask=%04o", opts->fs_fmask);
  652. seq_printf(m, ",dmask=%04o", opts->fs_dmask);
  653. if (opts->allow_utime)
  654. seq_printf(m, ",allow_utime=%04o", opts->allow_utime);
  655. if (sbi->nls_disk)
  656. seq_printf(m, ",codepage=%s", sbi->nls_disk->charset);
  657. if (isvfat) {
  658. if (sbi->nls_io)
  659. seq_printf(m, ",iocharset=%s", sbi->nls_io->charset);
  660. switch (opts->shortname) {
  661. case VFAT_SFN_DISPLAY_WIN95 | VFAT_SFN_CREATE_WIN95:
  662. seq_puts(m, ",shortname=win95");
  663. break;
  664. case VFAT_SFN_DISPLAY_WINNT | VFAT_SFN_CREATE_WINNT:
  665. seq_puts(m, ",shortname=winnt");
  666. break;
  667. case VFAT_SFN_DISPLAY_WINNT | VFAT_SFN_CREATE_WIN95:
  668. seq_puts(m, ",shortname=mixed");
  669. break;
  670. case VFAT_SFN_DISPLAY_LOWER | VFAT_SFN_CREATE_WIN95:
  671. /* seq_puts(m, ",shortname=lower"); */
  672. break;
  673. default:
  674. seq_puts(m, ",shortname=unknown");
  675. break;
  676. }
  677. }
  678. if (opts->name_check != 'n')
  679. seq_printf(m, ",check=%c", opts->name_check);
  680. if (opts->usefree)
  681. seq_puts(m, ",usefree");
  682. if (opts->quiet)
  683. seq_puts(m, ",quiet");
  684. if (opts->showexec)
  685. seq_puts(m, ",showexec");
  686. if (opts->sys_immutable)
  687. seq_puts(m, ",sys_immutable");
  688. if (!isvfat) {
  689. if (opts->dotsOK)
  690. seq_puts(m, ",dotsOK=yes");
  691. if (opts->nocase)
  692. seq_puts(m, ",nocase");
  693. } else {
  694. if (opts->utf8)
  695. seq_puts(m, ",utf8");
  696. if (opts->unicode_xlate)
  697. seq_puts(m, ",uni_xlate");
  698. if (!opts->numtail)
  699. seq_puts(m, ",nonumtail");
  700. }
  701. if (sbi->options.flush)
  702. seq_puts(m, ",flush");
  703. if (opts->tz_utc)
  704. seq_puts(m, ",tz=UTC");
  705. return 0;
  706. }
  707. enum {
  708. Opt_check_n, Opt_check_r, Opt_check_s, Opt_uid, Opt_gid,
  709. Opt_umask, Opt_dmask, Opt_fmask, Opt_allow_utime, Opt_codepage,
  710. Opt_usefree, Opt_nocase, Opt_quiet, Opt_showexec, Opt_debug,
  711. Opt_immutable, Opt_dots, Opt_nodots,
  712. Opt_charset, Opt_shortname_lower, Opt_shortname_win95,
  713. Opt_shortname_winnt, Opt_shortname_mixed, Opt_utf8_no, Opt_utf8_yes,
  714. Opt_uni_xl_no, Opt_uni_xl_yes, Opt_nonumtail_no, Opt_nonumtail_yes,
  715. Opt_obsolate, Opt_flush, Opt_tz_utc, Opt_err,
  716. };
  717. static const match_table_t fat_tokens = {
  718. {Opt_check_r, "check=relaxed"},
  719. {Opt_check_s, "check=strict"},
  720. {Opt_check_n, "check=normal"},
  721. {Opt_check_r, "check=r"},
  722. {Opt_check_s, "check=s"},
  723. {Opt_check_n, "check=n"},
  724. {Opt_uid, "uid=%u"},
  725. {Opt_gid, "gid=%u"},
  726. {Opt_umask, "umask=%o"},
  727. {Opt_dmask, "dmask=%o"},
  728. {Opt_fmask, "fmask=%o"},
  729. {Opt_allow_utime, "allow_utime=%o"},
  730. {Opt_codepage, "codepage=%u"},
  731. {Opt_usefree, "usefree"},
  732. {Opt_nocase, "nocase"},
  733. {Opt_quiet, "quiet"},
  734. {Opt_showexec, "showexec"},
  735. {Opt_debug, "debug"},
  736. {Opt_immutable, "sys_immutable"},
  737. {Opt_obsolate, "conv=binary"},
  738. {Opt_obsolate, "conv=text"},
  739. {Opt_obsolate, "conv=auto"},
  740. {Opt_obsolate, "conv=b"},
  741. {Opt_obsolate, "conv=t"},
  742. {Opt_obsolate, "conv=a"},
  743. {Opt_obsolate, "fat=%u"},
  744. {Opt_obsolate, "blocksize=%u"},
  745. {Opt_obsolate, "cvf_format=%20s"},
  746. {Opt_obsolate, "cvf_options=%100s"},
  747. {Opt_obsolate, "posix"},
  748. {Opt_flush, "flush"},
  749. {Opt_tz_utc, "tz=UTC"},
  750. {Opt_err, NULL},
  751. };
  752. static const match_table_t msdos_tokens = {
  753. {Opt_nodots, "nodots"},
  754. {Opt_nodots, "dotsOK=no"},
  755. {Opt_dots, "dots"},
  756. {Opt_dots, "dotsOK=yes"},
  757. {Opt_err, NULL}
  758. };
  759. static const match_table_t vfat_tokens = {
  760. {Opt_charset, "iocharset=%s"},
  761. {Opt_shortname_lower, "shortname=lower"},
  762. {Opt_shortname_win95, "shortname=win95"},
  763. {Opt_shortname_winnt, "shortname=winnt"},
  764. {Opt_shortname_mixed, "shortname=mixed"},
  765. {Opt_utf8_no, "utf8=0"}, /* 0 or no or false */
  766. {Opt_utf8_no, "utf8=no"},
  767. {Opt_utf8_no, "utf8=false"},
  768. {Opt_utf8_yes, "utf8=1"}, /* empty or 1 or yes or true */
  769. {Opt_utf8_yes, "utf8=yes"},
  770. {Opt_utf8_yes, "utf8=true"},
  771. {Opt_utf8_yes, "utf8"},
  772. {Opt_uni_xl_no, "uni_xlate=0"}, /* 0 or no or false */
  773. {Opt_uni_xl_no, "uni_xlate=no"},
  774. {Opt_uni_xl_no, "uni_xlate=false"},
  775. {Opt_uni_xl_yes, "uni_xlate=1"}, /* empty or 1 or yes or true */
  776. {Opt_uni_xl_yes, "uni_xlate=yes"},
  777. {Opt_uni_xl_yes, "uni_xlate=true"},
  778. {Opt_uni_xl_yes, "uni_xlate"},
  779. {Opt_nonumtail_no, "nonumtail=0"}, /* 0 or no or false */
  780. {Opt_nonumtail_no, "nonumtail=no"},
  781. {Opt_nonumtail_no, "nonumtail=false"},
  782. {Opt_nonumtail_yes, "nonumtail=1"}, /* empty or 1 or yes or true */
  783. {Opt_nonumtail_yes, "nonumtail=yes"},
  784. {Opt_nonumtail_yes, "nonumtail=true"},
  785. {Opt_nonumtail_yes, "nonumtail"},
  786. {Opt_err, NULL}
  787. };
  788. static int parse_options(char *options, int is_vfat, int silent, int *debug,
  789. struct fat_mount_options *opts)
  790. {
  791. char *p;
  792. substring_t args[MAX_OPT_ARGS];
  793. int option;
  794. char *iocharset;
  795. opts->isvfat = is_vfat;
  796. opts->fs_uid = current->uid;
  797. opts->fs_gid = current->gid;
  798. opts->fs_fmask = opts->fs_dmask = current->fs->umask;
  799. opts->allow_utime = -1;
  800. opts->codepage = fat_default_codepage;
  801. opts->iocharset = fat_default_iocharset;
  802. if (is_vfat)
  803. opts->shortname = VFAT_SFN_DISPLAY_LOWER|VFAT_SFN_CREATE_WIN95;
  804. else
  805. opts->shortname = 0;
  806. opts->name_check = 'n';
  807. opts->quiet = opts->showexec = opts->sys_immutable = opts->dotsOK = 0;
  808. opts->utf8 = opts->unicode_xlate = 0;
  809. opts->numtail = 1;
  810. opts->usefree = opts->nocase = 0;
  811. opts->tz_utc = 0;
  812. *debug = 0;
  813. if (!options)
  814. goto out;
  815. while ((p = strsep(&options, ",")) != NULL) {
  816. int token;
  817. if (!*p)
  818. continue;
  819. token = match_token(p, fat_tokens, args);
  820. if (token == Opt_err) {
  821. if (is_vfat)
  822. token = match_token(p, vfat_tokens, args);
  823. else
  824. token = match_token(p, msdos_tokens, args);
  825. }
  826. switch (token) {
  827. case Opt_check_s:
  828. opts->name_check = 's';
  829. break;
  830. case Opt_check_r:
  831. opts->name_check = 'r';
  832. break;
  833. case Opt_check_n:
  834. opts->name_check = 'n';
  835. break;
  836. case Opt_usefree:
  837. opts->usefree = 1;
  838. break;
  839. case Opt_nocase:
  840. if (!is_vfat)
  841. opts->nocase = 1;
  842. else {
  843. /* for backward compatibility */
  844. opts->shortname = VFAT_SFN_DISPLAY_WIN95
  845. | VFAT_SFN_CREATE_WIN95;
  846. }
  847. break;
  848. case Opt_quiet:
  849. opts->quiet = 1;
  850. break;
  851. case Opt_showexec:
  852. opts->showexec = 1;
  853. break;
  854. case Opt_debug:
  855. *debug = 1;
  856. break;
  857. case Opt_immutable:
  858. opts->sys_immutable = 1;
  859. break;
  860. case Opt_uid:
  861. if (match_int(&args[0], &option))
  862. return 0;
  863. opts->fs_uid = option;
  864. break;
  865. case Opt_gid:
  866. if (match_int(&args[0], &option))
  867. return 0;
  868. opts->fs_gid = option;
  869. break;
  870. case Opt_umask:
  871. if (match_octal(&args[0], &option))
  872. return 0;
  873. opts->fs_fmask = opts->fs_dmask = option;
  874. break;
  875. case Opt_dmask:
  876. if (match_octal(&args[0], &option))
  877. return 0;
  878. opts->fs_dmask = option;
  879. break;
  880. case Opt_fmask:
  881. if (match_octal(&args[0], &option))
  882. return 0;
  883. opts->fs_fmask = option;
  884. break;
  885. case Opt_allow_utime:
  886. if (match_octal(&args[0], &option))
  887. return 0;
  888. opts->allow_utime = option & (S_IWGRP | S_IWOTH);
  889. break;
  890. case Opt_codepage:
  891. if (match_int(&args[0], &option))
  892. return 0;
  893. opts->codepage = option;
  894. break;
  895. case Opt_flush:
  896. opts->flush = 1;
  897. break;
  898. case Opt_tz_utc:
  899. opts->tz_utc = 1;
  900. break;
  901. /* msdos specific */
  902. case Opt_dots:
  903. opts->dotsOK = 1;
  904. break;
  905. case Opt_nodots:
  906. opts->dotsOK = 0;
  907. break;
  908. /* vfat specific */
  909. case Opt_charset:
  910. if (opts->iocharset != fat_default_iocharset)
  911. kfree(opts->iocharset);
  912. iocharset = match_strdup(&args[0]);
  913. if (!iocharset)
  914. return -ENOMEM;
  915. opts->iocharset = iocharset;
  916. break;
  917. case Opt_shortname_lower:
  918. opts->shortname = VFAT_SFN_DISPLAY_LOWER
  919. | VFAT_SFN_CREATE_WIN95;
  920. break;
  921. case Opt_shortname_win95:
  922. opts->shortname = VFAT_SFN_DISPLAY_WIN95
  923. | VFAT_SFN_CREATE_WIN95;
  924. break;
  925. case Opt_shortname_winnt:
  926. opts->shortname = VFAT_SFN_DISPLAY_WINNT
  927. | VFAT_SFN_CREATE_WINNT;
  928. break;
  929. case Opt_shortname_mixed:
  930. opts->shortname = VFAT_SFN_DISPLAY_WINNT
  931. | VFAT_SFN_CREATE_WIN95;
  932. break;
  933. case Opt_utf8_no: /* 0 or no or false */
  934. opts->utf8 = 0;
  935. break;
  936. case Opt_utf8_yes: /* empty or 1 or yes or true */
  937. opts->utf8 = 1;
  938. break;
  939. case Opt_uni_xl_no: /* 0 or no or false */
  940. opts->unicode_xlate = 0;
  941. break;
  942. case Opt_uni_xl_yes: /* empty or 1 or yes or true */
  943. opts->unicode_xlate = 1;
  944. break;
  945. case Opt_nonumtail_no: /* 0 or no or false */
  946. opts->numtail = 1; /* negated option */
  947. break;
  948. case Opt_nonumtail_yes: /* empty or 1 or yes or true */
  949. opts->numtail = 0; /* negated option */
  950. break;
  951. /* obsolete mount options */
  952. case Opt_obsolate:
  953. printk(KERN_INFO "FAT: \"%s\" option is obsolete, "
  954. "not supported now\n", p);
  955. break;
  956. /* unknown option */
  957. default:
  958. if (!silent) {
  959. printk(KERN_ERR
  960. "FAT: Unrecognized mount option \"%s\" "
  961. "or missing value\n", p);
  962. }
  963. return -EINVAL;
  964. }
  965. }
  966. out:
  967. /* UTF-8 doesn't provide FAT semantics */
  968. if (!strcmp(opts->iocharset, "utf8")) {
  969. printk(KERN_ERR "FAT: utf8 is not a recommended IO charset"
  970. " for FAT filesystems, filesystem will be "
  971. "case sensitive!\n");
  972. }
  973. /* If user doesn't specify allow_utime, it's initialized from dmask. */
  974. if (opts->allow_utime == (unsigned short)-1)
  975. opts->allow_utime = ~opts->fs_dmask & (S_IWGRP | S_IWOTH);
  976. if (opts->unicode_xlate)
  977. opts->utf8 = 0;
  978. return 0;
  979. }
  980. static int fat_read_root(struct inode *inode)
  981. {
  982. struct super_block *sb = inode->i_sb;
  983. struct msdos_sb_info *sbi = MSDOS_SB(sb);
  984. int error;
  985. MSDOS_I(inode)->i_pos = 0;
  986. inode->i_uid = sbi->options.fs_uid;
  987. inode->i_gid = sbi->options.fs_gid;
  988. inode->i_version++;
  989. inode->i_generation = 0;
  990. inode->i_mode = (S_IRWXUGO & ~sbi->options.fs_dmask) | S_IFDIR;
  991. inode->i_op = sbi->dir_ops;
  992. inode->i_fop = &fat_dir_operations;
  993. if (sbi->fat_bits == 32) {
  994. MSDOS_I(inode)->i_start = sbi->root_cluster;
  995. error = fat_calc_dir_size(inode);
  996. if (error < 0)
  997. return error;
  998. } else {
  999. MSDOS_I(inode)->i_start = 0;
  1000. inode->i_size = sbi->dir_entries * sizeof(struct msdos_dir_entry);
  1001. }
  1002. inode->i_blocks = ((inode->i_size + (sbi->cluster_size - 1))
  1003. & ~((loff_t)sbi->cluster_size - 1)) >> 9;
  1004. MSDOS_I(inode)->i_logstart = 0;
  1005. MSDOS_I(inode)->mmu_private = inode->i_size;
  1006. MSDOS_I(inode)->i_attrs = ATTR_NONE;
  1007. inode->i_mtime.tv_sec = inode->i_atime.tv_sec = inode->i_ctime.tv_sec = 0;
  1008. inode->i_mtime.tv_nsec = inode->i_atime.tv_nsec = inode->i_ctime.tv_nsec = 0;
  1009. inode->i_nlink = fat_subdirs(inode)+2;
  1010. return 0;
  1011. }
  1012. /*
  1013. * Read the super block of an MS-DOS FS.
  1014. */
  1015. int fat_fill_super(struct super_block *sb, void *data, int silent,
  1016. const struct inode_operations *fs_dir_inode_ops, int isvfat)
  1017. {
  1018. struct inode *root_inode = NULL;
  1019. struct buffer_head *bh;
  1020. struct fat_boot_sector *b;
  1021. struct msdos_sb_info *sbi;
  1022. u16 logical_sector_size;
  1023. u32 total_sectors, total_clusters, fat_clusters, rootdir_sectors;
  1024. int debug;
  1025. unsigned int media;
  1026. long error;
  1027. char buf[50];
  1028. /*
  1029. * GFP_KERNEL is ok here, because while we do hold the
  1030. * supeblock lock, memory pressure can't call back into
  1031. * the filesystem, since we're only just about to mount
  1032. * it and have no inodes etc active!
  1033. */
  1034. sbi = kzalloc(sizeof(struct msdos_sb_info), GFP_KERNEL);
  1035. if (!sbi)
  1036. return -ENOMEM;
  1037. sb->s_fs_info = sbi;
  1038. sb->s_flags |= MS_NODIRATIME;
  1039. sb->s_magic = MSDOS_SUPER_MAGIC;
  1040. sb->s_op = &fat_sops;
  1041. sb->s_export_op = &fat_export_ops;
  1042. sbi->dir_ops = fs_dir_inode_ops;
  1043. error = parse_options(data, isvfat, silent, &debug, &sbi->options);
  1044. if (error)
  1045. goto out_fail;
  1046. error = -EIO;
  1047. sb_min_blocksize(sb, 512);
  1048. bh = sb_bread(sb, 0);
  1049. if (bh == NULL) {
  1050. printk(KERN_ERR "FAT: unable to read boot sector\n");
  1051. goto out_fail;
  1052. }
  1053. b = (struct fat_boot_sector *) bh->b_data;
  1054. if (!b->reserved) {
  1055. if (!silent)
  1056. printk(KERN_ERR "FAT: bogus number of reserved sectors\n");
  1057. brelse(bh);
  1058. goto out_invalid;
  1059. }
  1060. if (!b->fats) {
  1061. if (!silent)
  1062. printk(KERN_ERR "FAT: bogus number of FAT structure\n");
  1063. brelse(bh);
  1064. goto out_invalid;
  1065. }
  1066. /*
  1067. * Earlier we checked here that b->secs_track and b->head are nonzero,
  1068. * but it turns out valid FAT filesystems can have zero there.
  1069. */
  1070. media = b->media;
  1071. if (!fat_valid_media(media)) {
  1072. if (!silent)
  1073. printk(KERN_ERR "FAT: invalid media value (0x%02x)\n",
  1074. media);
  1075. brelse(bh);
  1076. goto out_invalid;
  1077. }
  1078. logical_sector_size = get_unaligned_le16(&b->sector_size);
  1079. if (!is_power_of_2(logical_sector_size)
  1080. || (logical_sector_size < 512)
  1081. || (logical_sector_size > 4096)) {
  1082. if (!silent)
  1083. printk(KERN_ERR "FAT: bogus logical sector size %u\n",
  1084. logical_sector_size);
  1085. brelse(bh);
  1086. goto out_invalid;
  1087. }
  1088. sbi->sec_per_clus = b->sec_per_clus;
  1089. if (!is_power_of_2(sbi->sec_per_clus)) {
  1090. if (!silent)
  1091. printk(KERN_ERR "FAT: bogus sectors per cluster %u\n",
  1092. sbi->sec_per_clus);
  1093. brelse(bh);
  1094. goto out_invalid;
  1095. }
  1096. if (logical_sector_size < sb->s_blocksize) {
  1097. printk(KERN_ERR "FAT: logical sector size too small for device"
  1098. " (logical sector size = %u)\n", logical_sector_size);
  1099. brelse(bh);
  1100. goto out_fail;
  1101. }
  1102. if (logical_sector_size > sb->s_blocksize) {
  1103. brelse(bh);
  1104. if (!sb_set_blocksize(sb, logical_sector_size)) {
  1105. printk(KERN_ERR "FAT: unable to set blocksize %u\n",
  1106. logical_sector_size);
  1107. goto out_fail;
  1108. }
  1109. bh = sb_bread(sb, 0);
  1110. if (bh == NULL) {
  1111. printk(KERN_ERR "FAT: unable to read boot sector"
  1112. " (logical sector size = %lu)\n",
  1113. sb->s_blocksize);
  1114. goto out_fail;
  1115. }
  1116. b = (struct fat_boot_sector *) bh->b_data;
  1117. }
  1118. sbi->cluster_size = sb->s_blocksize * sbi->sec_per_clus;
  1119. sbi->cluster_bits = ffs(sbi->cluster_size) - 1;
  1120. sbi->fats = b->fats;
  1121. sbi->fat_bits = 0; /* Don't know yet */
  1122. sbi->fat_start = le16_to_cpu(b->reserved);
  1123. sbi->fat_length = le16_to_cpu(b->fat_length);
  1124. sbi->root_cluster = 0;
  1125. sbi->free_clusters = -1; /* Don't know yet */
  1126. sbi->free_clus_valid = 0;
  1127. sbi->prev_free = FAT_START_ENT;
  1128. if (!sbi->fat_length && b->fat32_length) {
  1129. struct fat_boot_fsinfo *fsinfo;
  1130. struct buffer_head *fsinfo_bh;
  1131. /* Must be FAT32 */
  1132. sbi->fat_bits = 32;
  1133. sbi->fat_length = le32_to_cpu(b->fat32_length);
  1134. sbi->root_cluster = le32_to_cpu(b->root_cluster);
  1135. sb->s_maxbytes = 0xffffffff;
  1136. /* MC - if info_sector is 0, don't multiply by 0 */
  1137. sbi->fsinfo_sector = le16_to_cpu(b->info_sector);
  1138. if (sbi->fsinfo_sector == 0)
  1139. sbi->fsinfo_sector = 1;
  1140. fsinfo_bh = sb_bread(sb, sbi->fsinfo_sector);
  1141. if (fsinfo_bh == NULL) {
  1142. printk(KERN_ERR "FAT: bread failed, FSINFO block"
  1143. " (sector = %lu)\n", sbi->fsinfo_sector);
  1144. brelse(bh);
  1145. goto out_fail;
  1146. }
  1147. fsinfo = (struct fat_boot_fsinfo *)fsinfo_bh->b_data;
  1148. if (!IS_FSINFO(fsinfo)) {
  1149. printk(KERN_WARNING "FAT: Invalid FSINFO signature: "
  1150. "0x%08x, 0x%08x (sector = %lu)\n",
  1151. le32_to_cpu(fsinfo->signature1),
  1152. le32_to_cpu(fsinfo->signature2),
  1153. sbi->fsinfo_sector);
  1154. } else {
  1155. if (sbi->options.usefree)
  1156. sbi->free_clus_valid = 1;
  1157. sbi->free_clusters = le32_to_cpu(fsinfo->free_clusters);
  1158. sbi->prev_free = le32_to_cpu(fsinfo->next_cluster);
  1159. }
  1160. brelse(fsinfo_bh);
  1161. }
  1162. sbi->dir_per_block = sb->s_blocksize / sizeof(struct msdos_dir_entry);
  1163. sbi->dir_per_block_bits = ffs(sbi->dir_per_block) - 1;
  1164. sbi->dir_start = sbi->fat_start + sbi->fats * sbi->fat_length;
  1165. sbi->dir_entries = get_unaligned_le16(&b->dir_entries);
  1166. if (sbi->dir_entries & (sbi->dir_per_block - 1)) {
  1167. if (!silent)
  1168. printk(KERN_ERR "FAT: bogus directroy-entries per block"
  1169. " (%u)\n", sbi->dir_entries);
  1170. brelse(bh);
  1171. goto out_invalid;
  1172. }
  1173. rootdir_sectors = sbi->dir_entries
  1174. * sizeof(struct msdos_dir_entry) / sb->s_blocksize;
  1175. sbi->data_start = sbi->dir_start + rootdir_sectors;
  1176. total_sectors = get_unaligned_le16(&b->sectors);
  1177. if (total_sectors == 0)
  1178. total_sectors = le32_to_cpu(b->total_sect);
  1179. total_clusters = (total_sectors - sbi->data_start) / sbi->sec_per_clus;
  1180. if (sbi->fat_bits != 32)
  1181. sbi->fat_bits = (total_clusters > MAX_FAT12) ? 16 : 12;
  1182. /* check that FAT table does not overflow */
  1183. fat_clusters = sbi->fat_length * sb->s_blocksize * 8 / sbi->fat_bits;
  1184. total_clusters = min(total_clusters, fat_clusters - FAT_START_ENT);
  1185. if (total_clusters > MAX_FAT(sb)) {
  1186. if (!silent)
  1187. printk(KERN_ERR "FAT: count of clusters too big (%u)\n",
  1188. total_clusters);
  1189. brelse(bh);
  1190. goto out_invalid;
  1191. }
  1192. sbi->max_cluster = total_clusters + FAT_START_ENT;
  1193. /* check the free_clusters, it's not necessarily correct */
  1194. if (sbi->free_clusters != -1 && sbi->free_clusters > total_clusters)
  1195. sbi->free_clusters = -1;
  1196. /* check the prev_free, it's not necessarily correct */
  1197. sbi->prev_free %= sbi->max_cluster;
  1198. if (sbi->prev_free < FAT_START_ENT)
  1199. sbi->prev_free = FAT_START_ENT;
  1200. brelse(bh);
  1201. /* set up enough so that it can read an inode */
  1202. fat_hash_init(sb);
  1203. fat_ent_access_init(sb);
  1204. /*
  1205. * The low byte of FAT's first entry must have same value with
  1206. * media-field. But in real world, too many devices is
  1207. * writing wrong value. So, removed that validity check.
  1208. *
  1209. * if (FAT_FIRST_ENT(sb, media) != first)
  1210. */
  1211. error = -EINVAL;
  1212. sprintf(buf, "cp%d", sbi->options.codepage);
  1213. sbi->nls_disk = load_nls(buf);
  1214. if (!sbi->nls_disk) {
  1215. printk(KERN_ERR "FAT: codepage %s not found\n", buf);
  1216. goto out_fail;
  1217. }
  1218. /* FIXME: utf8 is using iocharset for upper/lower conversion */
  1219. if (sbi->options.isvfat) {
  1220. sbi->nls_io = load_nls(sbi->options.iocharset);
  1221. if (!sbi->nls_io) {
  1222. printk(KERN_ERR "FAT: IO charset %s not found\n",
  1223. sbi->options.iocharset);
  1224. goto out_fail;
  1225. }
  1226. }
  1227. error = -ENOMEM;
  1228. root_inode = new_inode(sb);
  1229. if (!root_inode)
  1230. goto out_fail;
  1231. root_inode->i_ino = MSDOS_ROOT_INO;
  1232. root_inode->i_version = 1;
  1233. error = fat_read_root(root_inode);
  1234. if (error < 0)
  1235. goto out_fail;
  1236. error = -ENOMEM;
  1237. insert_inode_hash(root_inode);
  1238. sb->s_root = d_alloc_root(root_inode);
  1239. if (!sb->s_root) {
  1240. printk(KERN_ERR "FAT: get root inode failed\n");
  1241. goto out_fail;
  1242. }
  1243. return 0;
  1244. out_invalid:
  1245. error = -EINVAL;
  1246. if (!silent)
  1247. printk(KERN_INFO "VFS: Can't find a valid FAT filesystem"
  1248. " on dev %s.\n", sb->s_id);
  1249. out_fail:
  1250. if (root_inode)
  1251. iput(root_inode);
  1252. if (sbi->nls_io)
  1253. unload_nls(sbi->nls_io);
  1254. if (sbi->nls_disk)
  1255. unload_nls(sbi->nls_disk);
  1256. if (sbi->options.iocharset != fat_default_iocharset)
  1257. kfree(sbi->options.iocharset);
  1258. sb->s_fs_info = NULL;
  1259. kfree(sbi);
  1260. return error;
  1261. }
  1262. EXPORT_SYMBOL_GPL(fat_fill_super);
  1263. /*
  1264. * helper function for fat_flush_inodes. This writes both the inode
  1265. * and the file data blocks, waiting for in flight data blocks before
  1266. * the start of the call. It does not wait for any io started
  1267. * during the call
  1268. */
  1269. static int writeback_inode(struct inode *inode)
  1270. {
  1271. int ret;
  1272. struct address_space *mapping = inode->i_mapping;
  1273. struct writeback_control wbc = {
  1274. .sync_mode = WB_SYNC_NONE,
  1275. .nr_to_write = 0,
  1276. };
  1277. /* if we used WB_SYNC_ALL, sync_inode waits for the io for the
  1278. * inode to finish. So WB_SYNC_NONE is sent down to sync_inode
  1279. * and filemap_fdatawrite is used for the data blocks
  1280. */
  1281. ret = sync_inode(inode, &wbc);
  1282. if (!ret)
  1283. ret = filemap_fdatawrite(mapping);
  1284. return ret;
  1285. }
  1286. /*
  1287. * write data and metadata corresponding to i1 and i2. The io is
  1288. * started but we do not wait for any of it to finish.
  1289. *
  1290. * filemap_flush is used for the block device, so if there is a dirty
  1291. * page for a block already in flight, we will not wait and start the
  1292. * io over again
  1293. */
  1294. int fat_flush_inodes(struct super_block *sb, struct inode *i1, struct inode *i2)
  1295. {
  1296. int ret = 0;
  1297. if (!MSDOS_SB(sb)->options.flush)
  1298. return 0;
  1299. if (i1)
  1300. ret = writeback_inode(i1);
  1301. if (!ret && i2)
  1302. ret = writeback_inode(i2);
  1303. if (!ret) {
  1304. struct address_space *mapping = sb->s_bdev->bd_inode->i_mapping;
  1305. ret = filemap_flush(mapping);
  1306. }
  1307. return ret;
  1308. }
  1309. EXPORT_SYMBOL_GPL(fat_flush_inodes);
  1310. static int __init init_fat_fs(void)
  1311. {
  1312. int err;
  1313. err = fat_cache_init();
  1314. if (err)
  1315. return err;
  1316. err = fat_init_inodecache();
  1317. if (err)
  1318. goto failed;
  1319. return 0;
  1320. failed:
  1321. fat_cache_destroy();
  1322. return err;
  1323. }
  1324. static void __exit exit_fat_fs(void)
  1325. {
  1326. fat_cache_destroy();
  1327. fat_destroy_inodecache();
  1328. }
  1329. module_init(init_fat_fs)
  1330. module_exit(exit_fat_fs)
  1331. MODULE_LICENSE("GPL");