inode.c 40 KB

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