inode.c 42 KB

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