inode.c 42 KB

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