inode.c 36 KB

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