inode.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:29k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  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/msdos_fs.h>
  14. #include <linux/nls.h>
  15. #include <linux/kernel.h>
  16. #include <linux/sched.h>
  17. #include <linux/errno.h>
  18. #include <linux/string.h>
  19. #include <linux/bitops.h>
  20. #include <linux/major.h>
  21. #include <linux/blkdev.h>
  22. #include <linux/fs.h>
  23. #include <linux/stat.h>
  24. #include <linux/locks.h>
  25. #include <linux/fat_cvf.h>
  26. #include <linux/slab.h>
  27. #include <linux/smp_lock.h>
  28. #include <asm/uaccess.h>
  29. #include <asm/unaligned.h>
  30. extern struct cvf_format default_cvf;
  31. /* #define FAT_PARANOIA 1 */
  32. #define DEBUG_LEVEL 0
  33. #ifdef FAT_DEBUG
  34. #  define PRINTK(x) printk x
  35. #else
  36. #  define PRINTK(x)
  37. #endif
  38. #if (DEBUG_LEVEL >= 1)
  39. #  define PRINTK1(x) printk x
  40. #else
  41. #  define PRINTK1(x)
  42. #endif
  43. /*
  44.  * New FAT inode stuff. We do the following:
  45.  * a) i_ino is constant and has nothing with on-disk location.
  46.  * b) FAT manages its own cache of directory entries.
  47.  * c) *This* cache is indexed by on-disk location.
  48.  * d) inode has an associated directory entry, all right, but
  49.  * it may be unhashed.
  50.  * e) currently entries are stored within struct inode. That should
  51.  * change.
  52.  * f) we deal with races in the following way:
  53.  * 1. readdir() and lookup() do FAT-dir-cache lookup.
  54.  * 2. rename() unhashes the F-d-c entry and rehashes it in
  55.  * a new place.
  56.  * 3. unlink() and rmdir() unhash F-d-c entry.
  57.  * 4. fat_write_inode() checks whether the thing is unhashed.
  58.  * If it is we silently return. If it isn't we do bread(),
  59.  * check if the location is still valid and retry if it
  60.  * isn't. Otherwise we do changes.
  61.  * 5. Spinlock is used to protect hash/unhash/location check/lookup
  62.  * 6. fat_clear_inode() unhashes the F-d-c entry.
  63.  * 7. lookup() and readdir() do igrab() if they find a F-d-c entry
  64.  * and consider negative result as cache miss.
  65.  */
  66. #define FAT_HASH_BITS 8
  67. #define FAT_HASH_SIZE (1UL << FAT_HASH_BITS)
  68. #define FAT_HASH_MASK (FAT_HASH_SIZE-1)
  69. static struct list_head fat_inode_hashtable[FAT_HASH_SIZE];
  70. spinlock_t fat_inode_lock = SPIN_LOCK_UNLOCKED;
  71. void fat_hash_init(void)
  72. {
  73. int i;
  74. for(i = 0; i < FAT_HASH_SIZE; i++) {
  75. INIT_LIST_HEAD(&fat_inode_hashtable[i]);
  76. }
  77. }
  78. static inline unsigned long fat_hash(struct super_block *sb, int i_pos)
  79. {
  80. unsigned long tmp = (unsigned long)i_pos | (unsigned long) sb;
  81. tmp = tmp + (tmp >> FAT_HASH_BITS) + (tmp >> FAT_HASH_BITS * 2);
  82. return tmp & FAT_HASH_MASK;
  83. }
  84. void fat_attach(struct inode *inode, int i_pos)
  85. {
  86. spin_lock(&fat_inode_lock);
  87. MSDOS_I(inode)->i_location = i_pos;
  88. list_add(&MSDOS_I(inode)->i_fat_hash,
  89. fat_inode_hashtable + fat_hash(inode->i_sb, i_pos));
  90. spin_unlock(&fat_inode_lock);
  91. }
  92. void fat_detach(struct inode *inode)
  93. {
  94. spin_lock(&fat_inode_lock);
  95. MSDOS_I(inode)->i_location = 0;
  96. list_del(&MSDOS_I(inode)->i_fat_hash);
  97. INIT_LIST_HEAD(&MSDOS_I(inode)->i_fat_hash);
  98. spin_unlock(&fat_inode_lock);
  99. }
  100. struct inode *fat_iget(struct super_block *sb, int i_pos)
  101. {
  102. struct list_head *p = fat_inode_hashtable + fat_hash(sb, i_pos);
  103. struct list_head *walk;
  104. struct msdos_inode_info *i;
  105. struct inode *inode = NULL;
  106. spin_lock(&fat_inode_lock);
  107. list_for_each(walk, p) {
  108. i = list_entry(walk, struct msdos_inode_info, i_fat_hash);
  109. if (i->i_fat_inode->i_sb != sb)
  110. continue;
  111. if (i->i_location != i_pos)
  112. continue;
  113. inode = igrab(i->i_fat_inode);
  114. if (inode)
  115. break;
  116. }
  117. spin_unlock(&fat_inode_lock);
  118. return inode;
  119. }
  120. static void fat_fill_inode(struct inode *inode, struct msdos_dir_entry *de);
  121. struct inode *fat_build_inode(struct super_block *sb,
  122. struct msdos_dir_entry *de, int ino, int *res)
  123. {
  124. struct inode *inode;
  125. *res = 0;
  126. inode = fat_iget(sb, ino);
  127. if (inode)
  128. goto out;
  129. inode = new_inode(sb);
  130. *res = -ENOMEM;
  131. if (!inode)
  132. goto out;
  133. *res = 0;
  134. inode->i_ino = iunique(sb, MSDOS_ROOT_INO);
  135. fat_fill_inode(inode, de);
  136. fat_attach(inode, ino);
  137. insert_inode_hash(inode);
  138. out:
  139. return inode;
  140. }
  141. void fat_delete_inode(struct inode *inode)
  142. {
  143. if (!is_bad_inode(inode)) {
  144. lock_kernel();
  145. inode->i_size = 0;
  146. fat_truncate(inode);
  147. unlock_kernel();
  148. }
  149. clear_inode(inode);
  150. }
  151. void fat_clear_inode(struct inode *inode)
  152. {
  153. if (is_bad_inode(inode))
  154. return;
  155. lock_kernel();
  156. spin_lock(&fat_inode_lock);
  157. fat_cache_inval_inode(inode);
  158. list_del(&MSDOS_I(inode)->i_fat_hash);
  159. spin_unlock(&fat_inode_lock);
  160. unlock_kernel();
  161. }
  162. void fat_put_super(struct super_block *sb)
  163. {
  164. if (MSDOS_SB(sb)->cvf_format->cvf_version) {
  165. dec_cvf_format_use_count_by_version(MSDOS_SB(sb)->cvf_format->cvf_version);
  166. MSDOS_SB(sb)->cvf_format->unmount_cvf(sb);
  167. }
  168. if (MSDOS_SB(sb)->fat_bits == 32) {
  169. fat_clusters_flush(sb);
  170. }
  171. fat_cache_inval_dev(sb->s_dev);
  172. set_blocksize (sb->s_dev,BLOCK_SIZE);
  173. if (MSDOS_SB(sb)->nls_disk) {
  174. unload_nls(MSDOS_SB(sb)->nls_disk);
  175. MSDOS_SB(sb)->nls_disk = NULL;
  176. MSDOS_SB(sb)->options.codepage = 0;
  177. }
  178. if (MSDOS_SB(sb)->nls_io) {
  179. unload_nls(MSDOS_SB(sb)->nls_io);
  180. MSDOS_SB(sb)->nls_io = NULL;
  181. }
  182. /*
  183.  * Note: the iocharset option might have been specified
  184.  * without enabling nls_io, so check for it here.
  185.  */
  186. if (MSDOS_SB(sb)->options.iocharset) {
  187. kfree(MSDOS_SB(sb)->options.iocharset);
  188. MSDOS_SB(sb)->options.iocharset = NULL;
  189. }
  190. }
  191. static int parse_options(char *options,int *fat, int *debug,
  192.  struct fat_mount_options *opts,
  193.  char *cvf_format, char *cvf_options)
  194. {
  195. char *this_char,*value,save,*savep;
  196. char *p;
  197. int ret = 1, len;
  198. opts->name_check = 'n';
  199. opts->conversion = 'b';
  200. opts->fs_uid = current->uid;
  201. opts->fs_gid = current->gid;
  202. opts->fs_umask = current->fs->umask;
  203. opts->quiet = opts->sys_immutable = opts->dotsOK = opts->showexec = 0;
  204. opts->codepage = 0;
  205. opts->nocase = 0;
  206. opts->shortname = 0;
  207. opts->utf8 = 0;
  208. opts->iocharset = NULL;
  209. *debug = *fat = 0;
  210. if (!options)
  211. goto out;
  212. save = 0;
  213. savep = NULL;
  214. for (this_char = strtok(options,","); this_char;
  215.      this_char = strtok(NULL,",")) {
  216. if ((value = strchr(this_char,'=')) != NULL) {
  217. save = *value;
  218. savep = value;
  219. *value++ = 0;
  220. }
  221. if (!strcmp(this_char,"check") && value) {
  222. if (value[0] && !value[1] && strchr("rns",*value))
  223. opts->name_check = *value;
  224. else if (!strcmp(value,"relaxed"))
  225. opts->name_check = 'r';
  226. else if (!strcmp(value,"normal"))
  227. opts->name_check = 'n';
  228. else if (!strcmp(value,"strict"))
  229. opts->name_check = 's';
  230. else ret = 0;
  231. }
  232. else if (!strcmp(this_char,"conv") && value) {
  233. if (value[0] && !value[1] && strchr("bta",*value))
  234. opts->conversion = *value;
  235. else if (!strcmp(value,"binary"))
  236. opts->conversion = 'b';
  237. else if (!strcmp(value,"text"))
  238. opts->conversion = 't';
  239. else if (!strcmp(value,"auto"))
  240. opts->conversion = 'a';
  241. else ret = 0;
  242. }
  243. else if (!strcmp(this_char,"dots")) {
  244. opts->dotsOK = 1;
  245. }
  246. else if (!strcmp(this_char,"nocase")) {
  247. opts->nocase = 1;
  248. }
  249. else if (!strcmp(this_char,"nodots")) {
  250. opts->dotsOK = 0;
  251. }
  252. else if (!strcmp(this_char,"showexec")) {
  253. opts->showexec = 1;
  254. }
  255. else if (!strcmp(this_char,"dotsOK") && value) {
  256. if (!strcmp(value,"yes")) opts->dotsOK = 1;
  257. else if (!strcmp(value,"no")) opts->dotsOK = 0;
  258. else ret = 0;
  259. }
  260. else if (!strcmp(this_char,"uid")) {
  261. if (!value || !*value) ret = 0;
  262. else {
  263. opts->fs_uid = simple_strtoul(value,&value,0);
  264. if (*value) ret = 0;
  265. }
  266. }
  267. else if (!strcmp(this_char,"gid")) {
  268. if (!value || !*value) ret= 0;
  269. else {
  270. opts->fs_gid = simple_strtoul(value,&value,0);
  271. if (*value) ret = 0;
  272. }
  273. }
  274. else if (!strcmp(this_char,"umask")) {
  275. if (!value || !*value) ret = 0;
  276. else {
  277. opts->fs_umask = simple_strtoul(value,&value,8);
  278. if (*value) ret = 0;
  279. }
  280. }
  281. else if (!strcmp(this_char,"debug")) {
  282. if (value) ret = 0;
  283. else *debug = 1;
  284. }
  285. else if (!strcmp(this_char,"fat")) {
  286. if (!value || !*value) ret = 0;
  287. else {
  288. *fat = simple_strtoul(value,&value,0);
  289. if (*value || (*fat != 12 && *fat != 16 &&
  290.        *fat != 32)) 
  291. ret = 0;
  292. }
  293. }
  294. else if (!strcmp(this_char,"quiet")) {
  295. if (value) ret = 0;
  296. else opts->quiet = 1;
  297. }
  298. else if (!strcmp(this_char,"blocksize")) {
  299. printk("FAT: blocksize option is obsolete, "
  300.        "not supported nown");
  301. }
  302. else if (!strcmp(this_char,"sys_immutable")) {
  303. if (value) ret = 0;
  304. else opts->sys_immutable = 1;
  305. }
  306. else if (!strcmp(this_char,"codepage") && value) {
  307. opts->codepage = simple_strtoul(value,&value,0);
  308. if (*value) ret = 0;
  309. else printk ("MSDOS FS: Using codepage %dn",
  310. opts->codepage);
  311. }
  312. else if (!strcmp(this_char,"iocharset") && value) {
  313. p = value;
  314. while (*value && *value != ',')
  315. value++;
  316. len = value - p;
  317. if (len) {
  318. char *buffer;
  319. if (opts->iocharset != NULL) {
  320. kfree(opts->iocharset);
  321. opts->iocharset = NULL;
  322. }
  323. buffer = kmalloc(len + 1, GFP_KERNEL);
  324. if (buffer != NULL) {
  325. opts->iocharset = buffer;
  326. memcpy(buffer, p, len);
  327. buffer[len] = 0;
  328. printk("MSDOS FS: IO charset %sn", buffer);
  329. } else
  330. ret = 0;
  331. }
  332. }
  333. else if (!strcmp(this_char,"cvf_format")) {
  334. if (!value)
  335. return 0;
  336. strncpy(cvf_format,value,20);
  337. }
  338. else if (!strcmp(this_char,"cvf_options")) {
  339. if (!value)
  340. return 0;
  341. strncpy(cvf_options,value,100);
  342. }
  343. if (this_char != options) *(this_char-1) = ',';
  344. if (value) *savep = save;
  345. if (ret == 0)
  346. break;
  347. }
  348. out:
  349. return ret;
  350. }
  351. static void fat_read_root(struct inode *inode)
  352. {
  353. struct super_block *sb = inode->i_sb;
  354. struct msdos_sb_info *sbi = MSDOS_SB(sb);
  355. int nr;
  356. INIT_LIST_HEAD(&MSDOS_I(inode)->i_fat_hash);
  357. MSDOS_I(inode)->i_location = 0;
  358. MSDOS_I(inode)->i_fat_inode = inode;
  359. inode->i_uid = sbi->options.fs_uid;
  360. inode->i_gid = sbi->options.fs_gid;
  361. inode->i_version = ++event;
  362. inode->i_generation = 0;
  363. inode->i_mode = (S_IRWXUGO & ~sbi->options.fs_umask) | S_IFDIR;
  364. inode->i_op = sbi->dir_ops;
  365. inode->i_fop = &fat_dir_operations;
  366. if (sbi->fat_bits == 32) {
  367. MSDOS_I(inode)->i_start = sbi->root_cluster;
  368. if ((nr = MSDOS_I(inode)->i_start) != 0) {
  369. while (nr != -1) {
  370. inode->i_size += 1 << sbi->cluster_bits;
  371. if (!(nr = fat_access(sb, nr, -1))) {
  372. printk("Directory %ld: bad FATn",
  373.        inode->i_ino);
  374. break;
  375. }
  376. }
  377. }
  378. } else {
  379. MSDOS_I(inode)->i_start = 0;
  380. inode->i_size = sbi->dir_entries * sizeof(struct msdos_dir_entry);
  381. }
  382. inode->i_blksize = 1 << sbi->cluster_bits;
  383. inode->i_blocks = ((inode->i_size + inode->i_blksize - 1)
  384.    & ~(inode->i_blksize - 1)) >> 9;
  385. MSDOS_I(inode)->i_logstart = 0;
  386. MSDOS_I(inode)->mmu_private = inode->i_size;
  387. MSDOS_I(inode)->i_attrs = 0;
  388. inode->i_mtime = inode->i_atime = inode->i_ctime = 0;
  389. MSDOS_I(inode)->i_ctime_ms = 0;
  390. inode->i_nlink = fat_subdirs(inode)+2;
  391. }
  392. /*
  393.  * a FAT file handle with fhtype 3 is
  394.  *  0/  i_ino - for fast, reliable lookup if still in the cache
  395.  *  1/  i_generation - to see if i_ino is still valid
  396.  *          bit 0 == 0 iff directory
  397.  *  2/  i_location - if ino has changed, but still in cache
  398.  *  3/  i_logstart - to semi-verify inode found at i_location
  399.  *  4/  parent->i_logstart - maybe used to hunt for the file on disc
  400.  *
  401.  */
  402. struct dentry *fat_fh_to_dentry(struct super_block *sb, __u32 *fh,
  403. int len, int fhtype, int parent)
  404. {
  405. struct inode *inode = NULL;
  406. struct list_head *lp;
  407. struct dentry *result;
  408. if (fhtype != 3)
  409. return NULL;
  410. if (len < 5)
  411. return NULL;
  412. if (parent)
  413. return NULL; /* We cannot find the parent,
  414. It better just *be* there */
  415. inode = iget(sb, fh[0]);
  416. if (!inode || is_bad_inode(inode) ||
  417.     inode->i_generation != fh[1]) {
  418. if (inode) iput(inode);
  419. inode = NULL;
  420. }
  421. if (!inode) {
  422. /* try 2 - see if i_location is in F-d-c
  423.  * require i_logstart to be the same
  424.  * Will fail if you truncate and then re-write
  425.  */
  426. inode = fat_iget(sb, fh[2]);
  427. if (inode && MSDOS_I(inode)->i_logstart != fh[3]) {
  428. iput(inode);
  429. inode = NULL;
  430. }
  431. }
  432. if (!inode) {
  433. /* For now, do nothing
  434.  * What we could do is:
  435.  * follow the file starting at fh[4], and record
  436.  * the ".." entry, and the name of the fh[2] entry.
  437.  * The follow the ".." file finding the next step up.
  438.  * This way we build a path to the root of
  439.  * the tree. If this works, we lookup the path and so
  440.  * get this inode into the cache.
  441.  * Finally try the fat_iget lookup again
  442.  * If that fails, then weare totally out of luck
  443.  * But all that is for another day
  444.  */
  445. }
  446. if (!inode)
  447. return ERR_PTR(-ESTALE);
  448. /* now to find a dentry.
  449.  * If possible, get a well-connected one
  450.  *
  451.  * Given the way that we found the inode, it *MUST* be
  452.  * well-connected, but it is easiest to just copy the
  453.  * code.
  454.  */
  455. spin_lock(&dcache_lock);
  456. for (lp = inode->i_dentry.next; lp != &inode->i_dentry ; lp=lp->next) {
  457. result = list_entry(lp,struct dentry, d_alias);
  458. if (! (result->d_flags & DCACHE_NFSD_DISCONNECTED)) {
  459. dget_locked(result);
  460. result->d_vfs_flags |= DCACHE_REFERENCED;
  461. spin_unlock(&dcache_lock);
  462. iput(inode);
  463. return result;
  464. }
  465. }
  466. spin_unlock(&dcache_lock);
  467. result = d_alloc_root(inode);
  468. if (result == NULL) {
  469. iput(inode);
  470. return ERR_PTR(-ENOMEM);
  471. }
  472. result->d_flags |= DCACHE_NFSD_DISCONNECTED;
  473. return result;
  474. }
  475. int fat_dentry_to_fh(struct dentry *de, __u32 *fh, int *lenp, int needparent)
  476. {
  477. int len = *lenp;
  478. struct inode *inode =  de->d_inode;
  479. if (len < 5)
  480. return 255; /* no room */
  481. *lenp = 5;
  482. fh[0] = inode->i_ino;
  483. fh[1] = inode->i_generation;
  484. fh[2] = MSDOS_I(inode)->i_location;
  485. fh[3] = MSDOS_I(inode)->i_logstart;
  486. fh[4] = MSDOS_I(de->d_parent->d_inode)->i_logstart;
  487. return 3;
  488. }
  489. static struct super_operations fat_sops = { 
  490. write_inode: fat_write_inode,
  491. delete_inode: fat_delete_inode,
  492. put_super: fat_put_super,
  493. statfs: fat_statfs,
  494. clear_inode: fat_clear_inode,
  495. read_inode: make_bad_inode,
  496. fh_to_dentry: fat_fh_to_dentry,
  497. dentry_to_fh: fat_dentry_to_fh,
  498. };
  499. /*
  500.  * Read the super block of an MS-DOS FS.
  501.  *
  502.  * Note that this may be called from vfat_read_super
  503.  * with some fields already initialized.
  504.  */
  505. struct super_block *
  506. fat_read_super(struct super_block *sb, void *data, int silent,
  507. struct inode_operations *fs_dir_inode_ops)
  508. {
  509. struct inode *root_inode;
  510. struct buffer_head *bh;
  511. struct fat_boot_sector *b;
  512. struct msdos_sb_info *sbi = MSDOS_SB(sb);
  513. char *p;
  514. int logical_sector_size, hard_blksize, fat_clusters = 0;
  515. unsigned int total_sectors, rootdir_sectors;
  516. int fat32, debug, error, fat, cp;
  517. struct fat_mount_options opts;
  518. char buf[50];
  519. int i;
  520. char cvf_format[21];
  521. char cvf_options[101];
  522. cvf_format[0] = '';
  523. cvf_options[0] = '';
  524. sbi->cvf_format = NULL;
  525. sbi->private_data = NULL;
  526. sbi->dir_ops = fs_dir_inode_ops;
  527. sb->s_maxbytes = MAX_NON_LFS;
  528. sb->s_op = &fat_sops;
  529. hard_blksize = get_hardsect_size(sb->s_dev);
  530. if (!hard_blksize)
  531. hard_blksize = 512;
  532. opts.isvfat = sbi->options.isvfat;
  533. if (!parse_options((char *) data, &fat, &debug, &opts,
  534.    cvf_format, cvf_options))
  535. goto out_fail;
  536. /* N.B. we should parse directly into the sb structure */
  537. memcpy(&(sbi->options), &opts, sizeof(struct fat_mount_options));
  538. fat_cache_init();
  539. sb->s_blocksize = hard_blksize;
  540. set_blocksize(sb->s_dev, hard_blksize);
  541. bh = sb_bread(sb, 0);
  542. if (bh == NULL) {
  543. printk("FAT: unable to read boot sectorn");
  544. goto out_fail;
  545. }
  546. /*
  547.  * The DOS3 partition size limit is *not* 32M as many people think.  
  548.  * Instead, it is 64K sectors (with the usual sector size being
  549.  * 512 bytes, leading to a 32M limit).
  550.  * 
  551.  * DOS 3 partition managers got around this problem by faking a 
  552.  * larger sector size, ie treating multiple physical sectors as 
  553.  * a single logical sector.
  554.  * 
  555.  * We can accommodate this scheme by adjusting our cluster size,
  556.  * fat_start, and data_start by an appropriate value.
  557.  *
  558.  * (by Drew Eckhardt)
  559.  */
  560. b = (struct fat_boot_sector *) bh->b_data;
  561. logical_sector_size =
  562. CF_LE_W(get_unaligned((unsigned short *) &b->sector_size));
  563. if (!logical_sector_size
  564.     || (logical_sector_size & (logical_sector_size - 1))) {
  565. printk("FAT: bogus logical sector size %dn",
  566.        logical_sector_size);
  567. brelse(bh);
  568. goto out_invalid;
  569. }
  570. sbi->cluster_size = b->cluster_size;
  571. if (!sbi->cluster_size
  572.     || (sbi->cluster_size & (sbi->cluster_size - 1))) {
  573. printk("FAT: bogus cluster size %dn", sbi->cluster_size);
  574. brelse(bh);
  575. goto out_invalid;
  576. }
  577. if (logical_sector_size < hard_blksize) {
  578. printk("FAT: logical sector size too small for device"
  579.        " (logical sector size = %d)n", logical_sector_size);
  580. brelse(bh);
  581. goto out_invalid;
  582. }
  583. sbi->cluster_bits = ffs(logical_sector_size * sbi->cluster_size) - 1;
  584. sbi->fats = b->fats;
  585. sbi->fat_start = CF_LE_W(b->reserved);
  586. if (!b->fat_length && b->fat32_length) {
  587. struct fat_boot_fsinfo *fsinfo;
  588. struct buffer_head *fsinfo_bh;
  589. int fsinfo_block, fsinfo_offset;
  590. /* Must be FAT32 */
  591. fat32 = 1;
  592. sbi->fat_length = CF_LE_L(b->fat32_length);
  593. sbi->root_cluster = CF_LE_L(b->root_cluster);
  594. sbi->fsinfo_sector = CF_LE_W(b->info_sector);
  595. /* MC - if info_sector is 0, don't multiply by 0 */
  596. if (sbi->fsinfo_sector == 0)
  597. sbi->fsinfo_sector = 1;
  598. fsinfo_block =
  599. (sbi->fsinfo_sector * logical_sector_size) / hard_blksize;
  600. fsinfo_offset =
  601. (sbi->fsinfo_sector * logical_sector_size) % hard_blksize;
  602. fsinfo_bh = bh;
  603. if (fsinfo_block != 0) {
  604. fsinfo_bh = sb_bread(sb, fsinfo_block);
  605. if (fsinfo_bh == NULL) {
  606. printk("FAT: bread failed, FSINFO block"
  607.        " (blocknr = %d)n", fsinfo_block);
  608. brelse(bh);
  609. goto out_invalid;
  610. }
  611. }
  612. fsinfo = (struct fat_boot_fsinfo *)&fsinfo_bh->b_data[fsinfo_offset];
  613. if (!IS_FSINFO(fsinfo)) {
  614. printk("FAT: Did not find valid FSINFO signature.n"
  615.        "Found signature1 0x%x signature2 0x%x sector=%ld.n",
  616.        CF_LE_L(fsinfo->signature1),
  617.        CF_LE_L(fsinfo->signature2),
  618.        sbi->fsinfo_sector);
  619. } else {
  620. sbi->free_clusters = CF_LE_L(fsinfo->free_clusters);
  621. }
  622. if (fsinfo_block != 0)
  623. brelse(fsinfo_bh);
  624. } else {
  625. fat32 = 0;
  626. sbi->fat_length = CF_LE_W(b->fat_length);
  627. sbi->root_cluster = 0;
  628. sbi->free_clusters = -1; /* Don't know yet */
  629. }
  630. sbi->dir_per_block = logical_sector_size / sizeof(struct msdos_dir_entry);
  631. sbi->dir_per_block_bits = ffs(sbi->dir_per_block) - 1;
  632. sbi->dir_start = sbi->fat_start + sbi->fats * sbi->fat_length;
  633. sbi->dir_entries =
  634. CF_LE_W(get_unaligned((unsigned short *)&b->dir_entries));
  635. rootdir_sectors = sbi->dir_entries
  636. * sizeof(struct msdos_dir_entry) / logical_sector_size;
  637. sbi->data_start = sbi->dir_start + rootdir_sectors;
  638. total_sectors = CF_LE_W(get_unaligned((unsigned short *)&b->sectors));
  639. if (total_sectors == 0)
  640. total_sectors = CF_LE_L(b->total_sect);
  641. sbi->clusters = (total_sectors - sbi->data_start) / sbi->cluster_size;
  642. error = 0;
  643. if (!error) {
  644. sbi->fat_bits = fat32 ? 32 :
  645. (fat ? fat :
  646.  (sbi->clusters > MSDOS_FAT12 ? 16 : 12));
  647. fat_clusters =
  648. sbi->fat_length * logical_sector_size * 8 / sbi->fat_bits;
  649. error = !sbi->fats || (sbi->dir_entries & (sbi->dir_per_block - 1))
  650. || sbi->clusters + 2 > fat_clusters + MSDOS_MAX_EXTRA
  651. || logical_sector_size < 512
  652. || PAGE_CACHE_SIZE < logical_sector_size
  653. || !b->secs_track || !b->heads;
  654. }
  655. brelse(bh);
  656. if (error)
  657. goto out_invalid;
  658. sb->s_blocksize = logical_sector_size;
  659. sb->s_blocksize_bits = ffs(logical_sector_size) - 1;
  660. set_blocksize(sb->s_dev, sb->s_blocksize);
  661. sbi->cvf_format = &default_cvf;
  662. if (!strcmp(cvf_format, "none"))
  663. i = -1;
  664. else
  665. i = detect_cvf(sb,cvf_format);
  666. if (i >= 0)
  667. error = cvf_formats[i]->mount_cvf(sb, cvf_options);
  668. if (error || debug) {
  669. /* The MSDOS_CAN_BMAP is obsolete, but left just to remember */
  670. printk("[MS-DOS FS Rel. 12,FAT %d,check=%c,conv=%c,"
  671.        "uid=%d,gid=%d,umask=%03o%s]n",
  672.        sbi->fat_bits,opts.name_check,
  673.        opts.conversion,opts.fs_uid,opts.fs_gid,opts.fs_umask,
  674.        MSDOS_CAN_BMAP(sbi) ? ",bmap" : "");
  675. printk("[me=0x%x,cs=%d,#f=%d,fs=%d,fl=%ld,ds=%ld,de=%d,data=%ld,"
  676.        "se=%u,ts=%u,ls=%d,rc=%ld,fc=%u]n",
  677.        b->media, sbi->cluster_size, sbi->fats,
  678.        sbi->fat_start, sbi->fat_length, sbi->dir_start,
  679.        sbi->dir_entries, sbi->data_start,
  680.        CF_LE_W(get_unaligned((unsigned short *)&b->sectors)),
  681.        CF_LE_L(b->total_sect), logical_sector_size,
  682.        sbi->root_cluster, sbi->free_clusters);
  683. printk ("hard sector size = %dn", hard_blksize);
  684. }
  685. if (i < 0)
  686. if (sbi->clusters + 2 > fat_clusters)
  687. sbi->clusters = fat_clusters - 2;
  688. if (error)
  689. goto out_invalid;
  690. sb->s_magic = MSDOS_SUPER_MAGIC;
  691. /* set up enough so that it can read an inode */
  692. init_MUTEX(&sbi->fat_lock);
  693. sbi->prev_free = 0;
  694. cp = opts.codepage ? opts.codepage : 437;
  695. sprintf(buf, "cp%d", cp);
  696. sbi->nls_disk = load_nls(buf);
  697. if (! sbi->nls_disk) {
  698. /* Fail only if explicit charset specified */
  699. if (opts.codepage != 0)
  700. goto out_fail;
  701. sbi->options.codepage = 0; /* already 0?? */
  702. sbi->nls_disk = load_nls_default();
  703. }
  704. sbi->nls_io = NULL;
  705. if (sbi->options.isvfat && !opts.utf8) {
  706. p = opts.iocharset ? opts.iocharset : CONFIG_NLS_DEFAULT;
  707. sbi->nls_io = load_nls(p);
  708. if (! sbi->nls_io)
  709. /* Fail only if explicit charset specified */
  710. if (opts.iocharset)
  711. goto out_unload_nls;
  712. }
  713. if (! sbi->nls_io)
  714. sbi->nls_io = load_nls_default();
  715. root_inode = new_inode(sb);
  716. if (!root_inode)
  717. goto out_unload_nls;
  718. root_inode->i_ino = MSDOS_ROOT_INO;
  719. fat_read_root(root_inode);
  720. insert_inode_hash(root_inode);
  721. sb->s_root = d_alloc_root(root_inode);
  722. if (!sb->s_root)
  723. goto out_no_root;
  724. if(i >= 0) {
  725. sbi->cvf_format = cvf_formats[i];
  726. ++cvf_format_use_count[i];
  727. }
  728. return sb;
  729. out_no_root:
  730. printk("FAT: get root inode failedn");
  731. iput(root_inode);
  732. unload_nls(sbi->nls_io);
  733. out_unload_nls:
  734. unload_nls(sbi->nls_disk);
  735. goto out_fail;
  736. out_invalid:
  737. if (!silent) {
  738. printk("VFS: Can't find a valid FAT filesystem on dev %s.n",
  739. kdevname(sb->s_dev));
  740. }
  741. out_fail:
  742. if (opts.iocharset) {
  743. printk("FAT: freeing iocharset=%sn", opts.iocharset);
  744. kfree(opts.iocharset);
  745. }
  746. if(sbi->private_data)
  747. kfree(sbi->private_data);
  748. sbi->private_data = NULL;
  749.  
  750. return NULL;
  751. }
  752. int fat_statfs(struct super_block *sb,struct statfs *buf)
  753. {
  754. int free,nr;
  755.        
  756. if (MSDOS_SB(sb)->cvf_format &&
  757.     MSDOS_SB(sb)->cvf_format->cvf_statfs)
  758. return MSDOS_SB(sb)->cvf_format->cvf_statfs(sb,buf,
  759. sizeof(struct statfs));
  760.   
  761. lock_fat(sb);
  762. if (MSDOS_SB(sb)->free_clusters != -1)
  763. free = MSDOS_SB(sb)->free_clusters;
  764. else {
  765. free = 0;
  766. for (nr = 2; nr < MSDOS_SB(sb)->clusters+2; nr++)
  767. if (!fat_access(sb,nr,-1)) free++;
  768. MSDOS_SB(sb)->free_clusters = free;
  769. }
  770. unlock_fat(sb);
  771. buf->f_type = sb->s_magic;
  772. buf->f_bsize = 1 << MSDOS_SB(sb)->cluster_bits;
  773. buf->f_blocks = MSDOS_SB(sb)->clusters;
  774. buf->f_bfree = free;
  775. buf->f_bavail = free;
  776. buf->f_namelen = MSDOS_SB(sb)->options.isvfat ? 260 : 12;
  777. return 0;
  778. }
  779. static int is_exec(char *extension)
  780. {
  781. char *exe_extensions = "EXECOMBAT", *walk;
  782. for (walk = exe_extensions; *walk; walk += 3)
  783. if (!strncmp(extension, walk, 3))
  784. return 1;
  785. return 0;
  786. }
  787. static int fat_writepage(struct page *page)
  788. {
  789. return block_write_full_page(page,fat_get_block);
  790. }
  791. static int fat_readpage(struct file *file, struct page *page)
  792. {
  793. return block_read_full_page(page,fat_get_block);
  794. }
  795. static int fat_prepare_write(struct file *file, struct page *page, unsigned from, unsigned to)
  796. {
  797. return cont_prepare_write(page,from,to,fat_get_block,
  798. &MSDOS_I(page->mapping->host)->mmu_private);
  799. }
  800. static int _fat_bmap(struct address_space *mapping, long block)
  801. {
  802. return generic_block_bmap(mapping,block,fat_get_block);
  803. }
  804. static struct address_space_operations fat_aops = {
  805. readpage: fat_readpage,
  806. writepage: fat_writepage,
  807. sync_page: block_sync_page,
  808. prepare_write: fat_prepare_write,
  809. commit_write: generic_commit_write,
  810. bmap: _fat_bmap
  811. };
  812. /* doesn't deal with root inode */
  813. static void fat_fill_inode(struct inode *inode, struct msdos_dir_entry *de)
  814. {
  815. struct super_block *sb = inode->i_sb;
  816. struct msdos_sb_info *sbi = MSDOS_SB(sb);
  817. int nr;
  818. INIT_LIST_HEAD(&MSDOS_I(inode)->i_fat_hash);
  819. MSDOS_I(inode)->i_location = 0;
  820. MSDOS_I(inode)->i_fat_inode = inode;
  821. inode->i_uid = sbi->options.fs_uid;
  822. inode->i_gid = sbi->options.fs_gid;
  823. inode->i_version = ++event;
  824. inode->i_generation = CURRENT_TIME;
  825. if ((de->attr & ATTR_DIR) && !IS_FREE(de->name)) {
  826. inode->i_generation &= ~1;
  827. inode->i_mode = MSDOS_MKMODE(de->attr,S_IRWXUGO &
  828.     ~sbi->options.fs_umask) | S_IFDIR;
  829. inode->i_op = sbi->dir_ops;
  830. inode->i_fop = &fat_dir_operations;
  831. MSDOS_I(inode)->i_start = CF_LE_W(de->start);
  832. if (sbi->fat_bits == 32) {
  833. MSDOS_I(inode)->i_start |=
  834. (CF_LE_W(de->starthi) << 16);
  835. }
  836. MSDOS_I(inode)->i_logstart = MSDOS_I(inode)->i_start;
  837. inode->i_nlink = fat_subdirs(inode);
  838.     /* includes .., compensating for "self" */
  839. #ifdef DEBUG
  840. if (!inode->i_nlink) {
  841. printk("directory %d: i_nlink == 0n",inode->i_ino);
  842. inode->i_nlink = 1;
  843. }
  844. #endif
  845. if ((nr = MSDOS_I(inode)->i_start) != 0)
  846. while (nr != -1) {
  847. inode->i_size += 1 << sbi->cluster_bits;
  848. if (!(nr = fat_access(sb, nr, -1))) {
  849. printk("Directory %ld: bad FATn",
  850.     inode->i_ino);
  851. break;
  852. }
  853. }
  854. MSDOS_I(inode)->mmu_private = inode->i_size;
  855. } else { /* not a directory */
  856. inode->i_generation |= 1;
  857. inode->i_mode = MSDOS_MKMODE(de->attr,
  858.     ((sbi->options.showexec &&
  859.        !is_exec(de->ext))
  860.      ? S_IRUGO|S_IWUGO : S_IRWXUGO)
  861.     & ~sbi->options.fs_umask) | S_IFREG;
  862. MSDOS_I(inode)->i_start = CF_LE_W(de->start);
  863. if (sbi->fat_bits == 32) {
  864. MSDOS_I(inode)->i_start |=
  865. (CF_LE_W(de->starthi) << 16);
  866. }
  867. MSDOS_I(inode)->i_logstart = MSDOS_I(inode)->i_start;
  868. inode->i_size = CF_LE_L(de->size);
  869.         inode->i_op = &fat_file_inode_operations;
  870.         inode->i_fop = &fat_file_operations;
  871. inode->i_mapping->a_ops = &fat_aops;
  872. MSDOS_I(inode)->mmu_private = inode->i_size;
  873. }
  874. if(de->attr & ATTR_SYS)
  875. if (sbi->options.sys_immutable)
  876. inode->i_flags |= S_IMMUTABLE;
  877. MSDOS_I(inode)->i_attrs = de->attr & ATTR_UNUSED;
  878. /* this is as close to the truth as we can get ... */
  879. inode->i_blksize = 1 << sbi->cluster_bits;
  880. inode->i_blocks = ((inode->i_size + inode->i_blksize - 1)
  881.    & ~(inode->i_blksize - 1)) >> 9;
  882. inode->i_mtime = inode->i_atime =
  883. date_dos2unix(CF_LE_W(de->time),CF_LE_W(de->date));
  884. inode->i_ctime =
  885. MSDOS_SB(sb)->options.isvfat
  886. ? date_dos2unix(CF_LE_W(de->ctime),CF_LE_W(de->cdate))
  887. : inode->i_mtime;
  888. MSDOS_I(inode)->i_ctime_ms = de->ctime_ms;
  889. }
  890. void fat_write_inode(struct inode *inode, int wait)
  891. {
  892. struct super_block *sb = inode->i_sb;
  893. struct buffer_head *bh;
  894. struct msdos_dir_entry *raw_entry;
  895. unsigned int i_pos;
  896. retry:
  897. i_pos = MSDOS_I(inode)->i_location;
  898. if (inode->i_ino == MSDOS_ROOT_INO || !i_pos) {
  899. return;
  900. }
  901. lock_kernel();
  902. if (!(bh = fat_bread(sb, i_pos >> MSDOS_SB(sb)->dir_per_block_bits))) {
  903. printk("dev = %s, ino = %dn", kdevname(inode->i_dev), i_pos);
  904. fat_fs_panic(sb, "msdos_write_inode: unable to read i-node block");
  905. unlock_kernel();
  906. return;
  907. }
  908. spin_lock(&fat_inode_lock);
  909. if (i_pos != MSDOS_I(inode)->i_location) {
  910. spin_unlock(&fat_inode_lock);
  911. fat_brelse(sb, bh);
  912. unlock_kernel();
  913. goto retry;
  914. }
  915. raw_entry = &((struct msdos_dir_entry *) (bh->b_data))
  916.     [i_pos & (MSDOS_SB(sb)->dir_per_block - 1)];
  917. if (S_ISDIR(inode->i_mode)) {
  918. raw_entry->attr = ATTR_DIR;
  919. raw_entry->size = 0;
  920. }
  921. else {
  922. raw_entry->attr = ATTR_NONE;
  923. raw_entry->size = CT_LE_L(inode->i_size);
  924. }
  925. raw_entry->attr |= MSDOS_MKATTR(inode->i_mode) |
  926.     MSDOS_I(inode)->i_attrs;
  927. raw_entry->start = CT_LE_W(MSDOS_I(inode)->i_logstart);
  928. raw_entry->starthi = CT_LE_W(MSDOS_I(inode)->i_logstart >> 16);
  929. fat_date_unix2dos(inode->i_mtime,&raw_entry->time,&raw_entry->date);
  930. raw_entry->time = CT_LE_W(raw_entry->time);
  931. raw_entry->date = CT_LE_W(raw_entry->date);
  932. if (MSDOS_SB(sb)->options.isvfat) {
  933. fat_date_unix2dos(inode->i_ctime,&raw_entry->ctime,&raw_entry->cdate);
  934. raw_entry->ctime_ms = MSDOS_I(inode)->i_ctime_ms;
  935. raw_entry->ctime = CT_LE_W(raw_entry->ctime);
  936. raw_entry->cdate = CT_LE_W(raw_entry->cdate);
  937. }
  938. spin_unlock(&fat_inode_lock);
  939. fat_mark_buffer_dirty(sb, bh);
  940. fat_brelse(sb, bh);
  941. unlock_kernel();
  942. }
  943. int fat_notify_change(struct dentry * dentry, struct iattr * attr)
  944. {
  945. struct super_block *sb = dentry->d_sb;
  946. struct inode *inode = dentry->d_inode;
  947. int error;
  948. /* FAT cannot truncate to a longer file */
  949. if (attr->ia_valid & ATTR_SIZE) {
  950. if (attr->ia_size > inode->i_size)
  951. return -EPERM;
  952. }
  953. error = inode_change_ok(inode, attr);
  954. if (error)
  955. return MSDOS_SB(sb)->options.quiet ? 0 : error;
  956. if (((attr->ia_valid & ATTR_UID) && 
  957.      (attr->ia_uid != MSDOS_SB(sb)->options.fs_uid)) ||
  958.     ((attr->ia_valid & ATTR_GID) && 
  959.      (attr->ia_gid != MSDOS_SB(sb)->options.fs_gid)) ||
  960.     ((attr->ia_valid & ATTR_MODE) &&
  961.      (attr->ia_mode & ~MSDOS_VALID_MODE)))
  962. error = -EPERM;
  963. if (error)
  964. return MSDOS_SB(sb)->options.quiet ? 0 : error;
  965. error = inode_setattr(inode, attr);
  966. if (error)
  967. return error;
  968. if (S_ISDIR(inode->i_mode))
  969. inode->i_mode |= S_IXUGO;
  970. inode->i_mode = ((inode->i_mode & S_IFMT) | ((((inode->i_mode & S_IRWXU
  971.     & ~MSDOS_SB(sb)->options.fs_umask) | S_IRUSR) >> 6)*S_IXUGO)) &
  972.     ~MSDOS_SB(sb)->options.fs_umask;
  973. return 0;
  974. }
  975. MODULE_LICENSE("GPL");