inode.c 40 KB

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