inode.c 36 KB

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