inode.c 41 KB

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