inode.c 42 KB

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