inode.c 38 KB

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