inode.c 39 KB

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