inode.c 35 KB

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