inode.c 42 KB

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