inode.c 40 KB

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