inode.c 39 KB

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