inode.c 41 KB

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