inode.c 38 KB

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