inode.c 41 KB

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