inode.c
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:29k
源码类别:

Linux/Unix编程

开发平台:

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 ERR_PTR(-ESTALE);
  410. if (len < 5)
  411. return ERR_PTR(-ESTALE);
  412. /* We cannot find the parent,
  413.    It better just *be* there */
  414. if (parent)
  415. return ERR_PTR(-ESTALE);
  416. inode = iget(sb, fh[0]);
  417. if (!inode || is_bad_inode(inode) ||
  418.     inode->i_generation != fh[1]) {
  419. if (inode) iput(inode);
  420. inode = NULL;
  421. }
  422. if (!inode) {
  423. /* try 2 - see if i_location is in F-d-c
  424.  * require i_logstart to be the same
  425.  * Will fail if you truncate and then re-write
  426.  */
  427. inode = fat_iget(sb, fh[2]);
  428. if (inode && MSDOS_I(inode)->i_logstart != fh[3]) {
  429. iput(inode);
  430. inode = NULL;
  431. }
  432. }
  433. if (!inode) {
  434. /* For now, do nothing
  435.  * What we could do is:
  436.  * follow the file starting at fh[4], and record
  437.  * the ".." entry, and the name of the fh[2] entry.
  438.  * The follow the ".." file finding the next step up.
  439.  * This way we build a path to the root of
  440.  * the tree. If this works, we lookup the path and so
  441.  * get this inode into the cache.
  442.  * Finally try the fat_iget lookup again
  443.  * If that fails, then weare totally out of luck
  444.  * But all that is for another day
  445.  */
  446. }
  447. if (!inode)
  448. return ERR_PTR(-ESTALE);
  449. /* now to find a dentry.
  450.  * If possible, get a well-connected one
  451.  *
  452.  * Given the way that we found the inode, it *MUST* be
  453.  * well-connected, but it is easiest to just copy the
  454.  * code.
  455.  */
  456. spin_lock(&dcache_lock);
  457. for (lp = inode->i_dentry.next; lp != &inode->i_dentry ; lp=lp->next) {
  458. result = list_entry(lp,struct dentry, d_alias);
  459. if (! (result->d_flags & DCACHE_NFSD_DISCONNECTED)) {
  460. dget_locked(result);
  461. result->d_vfs_flags |= DCACHE_REFERENCED;
  462. spin_unlock(&dcache_lock);
  463. iput(inode);
  464. return result;
  465. }
  466. }
  467. spin_unlock(&dcache_lock);
  468. result = d_alloc_root(inode);
  469. if (result == NULL) {
  470. iput(inode);
  471. return ERR_PTR(-ENOMEM);
  472. }
  473. result->d_op = sb->s_root->d_op;
  474. result->d_flags |= DCACHE_NFSD_DISCONNECTED;
  475. return result;
  476. }
  477. int fat_dentry_to_fh(struct dentry *de, __u32 *fh, int *lenp, int needparent)
  478. {
  479. int len = *lenp;
  480. struct inode *inode =  de->d_inode;
  481. if (len < 5)
  482. return 255; /* no room */
  483. *lenp = 5;
  484. fh[0] = inode->i_ino;
  485. fh[1] = inode->i_generation;
  486. fh[2] = MSDOS_I(inode)->i_location;
  487. fh[3] = MSDOS_I(inode)->i_logstart;
  488. fh[4] = MSDOS_I(de->d_parent->d_inode)->i_logstart;
  489. return 3;
  490. }
  491. static struct super_operations fat_sops = { 
  492. write_inode: fat_write_inode,
  493. delete_inode: fat_delete_inode,
  494. put_super: fat_put_super,
  495. statfs: fat_statfs,
  496. clear_inode: fat_clear_inode,
  497. read_inode: make_bad_inode,
  498. fh_to_dentry: fat_fh_to_dentry,
  499. dentry_to_fh: fat_dentry_to_fh,
  500. };
  501. /*
  502.  * Read the super block of an MS-DOS FS.
  503.  *
  504.  * Note that this may be called from vfat_read_super
  505.  * with some fields already initialized.
  506.  */
  507. struct super_block *
  508. fat_read_super(struct super_block *sb, void *data, int silent,
  509. struct inode_operations *fs_dir_inode_ops)
  510. {
  511. struct inode *root_inode;
  512. struct buffer_head *bh;
  513. struct fat_boot_sector *b;
  514. struct msdos_sb_info *sbi = MSDOS_SB(sb);
  515. char *p;
  516. int logical_sector_size, hard_blksize, fat_clusters = 0;
  517. unsigned int total_sectors, rootdir_sectors;
  518. int fat32, debug, error, fat, cp;
  519. struct fat_mount_options opts;
  520. char buf[50];
  521. int i;
  522. char cvf_format[21];
  523. char cvf_options[101];
  524. cvf_format[0] = '';
  525. cvf_options[0] = '';
  526. sbi->cvf_format = NULL;
  527. sbi->private_data = NULL;
  528. sbi->dir_ops = fs_dir_inode_ops;
  529. sb->s_maxbytes = MAX_NON_LFS;
  530. sb->s_op = &fat_sops;
  531. hard_blksize = get_hardsect_size(sb->s_dev);
  532. if (!hard_blksize)
  533. hard_blksize = 512;
  534. opts.isvfat = sbi->options.isvfat;
  535. if (!parse_options((char *) data, &fat, &debug, &opts,
  536.    cvf_format, cvf_options))
  537. goto out_fail;
  538. /* N.B. we should parse directly into the sb structure */
  539. memcpy(&(sbi->options), &opts, sizeof(struct fat_mount_options));
  540. fat_cache_init();
  541. sb->s_blocksize = hard_blksize;
  542. set_blocksize(sb->s_dev, hard_blksize);
  543. bh = sb_bread(sb, 0);
  544. if (bh == NULL) {
  545. printk("FAT: unable to read boot sectorn");
  546. goto out_fail;
  547. }
  548. /*
  549.  * The DOS3 partition size limit is *not* 32M as many people think.  
  550.  * Instead, it is 64K sectors (with the usual sector size being
  551.  * 512 bytes, leading to a 32M limit).
  552.  * 
  553.  * DOS 3 partition managers got around this problem by faking a 
  554.  * larger sector size, ie treating multiple physical sectors as 
  555.  * a single logical sector.
  556.  * 
  557.  * We can accommodate this scheme by adjusting our cluster size,
  558.  * fat_start, and data_start by an appropriate value.
  559.  *
  560.  * (by Drew Eckhardt)
  561.  */
  562. b = (struct fat_boot_sector *) bh->b_data;
  563. logical_sector_size =
  564. CF_LE_W(get_unaligned((unsigned short *) &b->sector_size));
  565. if (!logical_sector_size
  566.     || (logical_sector_size & (logical_sector_size - 1))) {
  567. printk("FAT: bogus logical sector size %dn",
  568.        logical_sector_size);
  569. brelse(bh);
  570. goto out_invalid;
  571. }
  572. sbi->cluster_size = b->cluster_size;
  573. if (!sbi->cluster_size
  574.     || (sbi->cluster_size & (sbi->cluster_size - 1))) {
  575. printk("FAT: bogus cluster size %dn", sbi->cluster_size);
  576. brelse(bh);
  577. goto out_invalid;
  578. }
  579. if (logical_sector_size < hard_blksize) {
  580. printk("FAT: logical sector size too small for device"
  581.        " (logical sector size = %d)n", logical_sector_size);
  582. brelse(bh);
  583. goto out_invalid;
  584. }
  585. sbi->cluster_bits = ffs(logical_sector_size * sbi->cluster_size) - 1;
  586. sbi->fats = b->fats;
  587. sbi->fat_start = CF_LE_W(b->reserved);
  588. if (!b->fat_length && b->fat32_length) {
  589. struct fat_boot_fsinfo *fsinfo;
  590. struct buffer_head *fsinfo_bh;
  591. int fsinfo_block, fsinfo_offset;
  592. /* Must be FAT32 */
  593. fat32 = 1;
  594. sbi->fat_length = CF_LE_L(b->fat32_length);
  595. sbi->root_cluster = CF_LE_L(b->root_cluster);
  596. sbi->fsinfo_sector = CF_LE_W(b->info_sector);
  597. /* MC - if info_sector is 0, don't multiply by 0 */
  598. if (sbi->fsinfo_sector == 0)
  599. sbi->fsinfo_sector = 1;
  600. fsinfo_block =
  601. (sbi->fsinfo_sector * logical_sector_size) / hard_blksize;
  602. fsinfo_offset =
  603. (sbi->fsinfo_sector * logical_sector_size) % hard_blksize;
  604. fsinfo_bh = bh;
  605. if (fsinfo_block != 0) {
  606. fsinfo_bh = sb_bread(sb, fsinfo_block);
  607. if (fsinfo_bh == NULL) {
  608. printk("FAT: bread failed, FSINFO block"
  609.        " (blocknr = %d)n", fsinfo_block);
  610. brelse(bh);
  611. goto out_invalid;
  612. }
  613. }
  614. fsinfo = (struct fat_boot_fsinfo *)&fsinfo_bh->b_data[fsinfo_offset];
  615. if (!IS_FSINFO(fsinfo)) {
  616. printk("FAT: Did not find valid FSINFO signature.n"
  617.        "Found signature1 0x%x signature2 0x%x sector=%ld.n",
  618.        CF_LE_L(fsinfo->signature1),
  619.        CF_LE_L(fsinfo->signature2),
  620.        sbi->fsinfo_sector);
  621. } else {
  622. sbi->free_clusters = CF_LE_L(fsinfo->free_clusters);
  623. }
  624. if (fsinfo_block != 0)
  625. brelse(fsinfo_bh);
  626. } else {
  627. fat32 = 0;
  628. sbi->fat_length = CF_LE_W(b->fat_length);
  629. sbi->root_cluster = 0;
  630. sbi->free_clusters = -1; /* Don't know yet */
  631. }
  632. sbi->dir_per_block = logical_sector_size / sizeof(struct msdos_dir_entry);
  633. sbi->dir_per_block_bits = ffs(sbi->dir_per_block) - 1;
  634. sbi->dir_start = sbi->fat_start + sbi->fats * sbi->fat_length;
  635. sbi->dir_entries =
  636. CF_LE_W(get_unaligned((unsigned short *)&b->dir_entries));
  637. rootdir_sectors = sbi->dir_entries
  638. * sizeof(struct msdos_dir_entry) / logical_sector_size;
  639. sbi->data_start = sbi->dir_start + rootdir_sectors;
  640. total_sectors = CF_LE_W(get_unaligned((unsigned short *)&b->sectors));
  641. if (total_sectors == 0)
  642. total_sectors = CF_LE_L(b->total_sect);
  643. sbi->clusters = (total_sectors - sbi->data_start) / sbi->cluster_size;
  644. error = 0;
  645. if (!error) {
  646. sbi->fat_bits = fat32 ? 32 :
  647. (fat ? fat :
  648.  (sbi->clusters > MSDOS_FAT12 ? 16 : 12));
  649. fat_clusters =
  650. sbi->fat_length * logical_sector_size * 8 / sbi->fat_bits;
  651. error = !sbi->fats || (sbi->dir_entries & (sbi->dir_per_block - 1))
  652. || sbi->clusters + 2 > fat_clusters + MSDOS_MAX_EXTRA
  653. || logical_sector_size < 512
  654. || PAGE_CACHE_SIZE < logical_sector_size
  655. || !b->secs_track || !b->heads;
  656. }
  657. brelse(bh);
  658. if (error)
  659. goto out_invalid;
  660. sb->s_blocksize = logical_sector_size;
  661. sb->s_blocksize_bits = ffs(logical_sector_size) - 1;
  662. set_blocksize(sb->s_dev, sb->s_blocksize);
  663. sbi->cvf_format = &default_cvf;
  664. if (!strcmp(cvf_format, "none"))
  665. i = -1;
  666. else
  667. i = detect_cvf(sb,cvf_format);
  668. if (i >= 0)
  669. error = cvf_formats[i]->mount_cvf(sb, cvf_options);
  670. if (error || debug) {
  671. /* The MSDOS_CAN_BMAP is obsolete, but left just to remember */
  672. printk("[MS-DOS FS Rel. 12,FAT %d,check=%c,conv=%c,"
  673.        "uid=%d,gid=%d,umask=%03o%s]n",
  674.        sbi->fat_bits,opts.name_check,
  675.        opts.conversion,opts.fs_uid,opts.fs_gid,opts.fs_umask,
  676.        MSDOS_CAN_BMAP(sbi) ? ",bmap" : "");
  677. printk("[me=0x%x,cs=%d,#f=%d,fs=%d,fl=%ld,ds=%ld,de=%d,data=%ld,"
  678.        "se=%u,ts=%u,ls=%d,rc=%ld,fc=%u]n",
  679.        b->media, sbi->cluster_size, sbi->fats,
  680.        sbi->fat_start, sbi->fat_length, sbi->dir_start,
  681.        sbi->dir_entries, sbi->data_start,
  682.        CF_LE_W(get_unaligned((unsigned short *)&b->sectors)),
  683.        CF_LE_L(b->total_sect), logical_sector_size,
  684.        sbi->root_cluster, sbi->free_clusters);
  685. printk ("hard sector size = %dn", hard_blksize);
  686. }
  687. if (i < 0)
  688. if (sbi->clusters + 2 > fat_clusters)
  689. sbi->clusters = fat_clusters - 2;
  690. if (error)
  691. goto out_invalid;
  692. sb->s_magic = MSDOS_SUPER_MAGIC;
  693. /* set up enough so that it can read an inode */
  694. init_MUTEX(&sbi->fat_lock);
  695. sbi->prev_free = 0;
  696. cp = opts.codepage ? opts.codepage : 437;
  697. sprintf(buf, "cp%d", cp);
  698. sbi->nls_disk = load_nls(buf);
  699. if (! sbi->nls_disk) {
  700. /* Fail only if explicit charset specified */
  701. if (opts.codepage != 0)
  702. goto out_fail;
  703. sbi->options.codepage = 0; /* already 0?? */
  704. sbi->nls_disk = load_nls_default();
  705. }
  706. sbi->nls_io = NULL;
  707. if (sbi->options.isvfat && !opts.utf8) {
  708. p = opts.iocharset ? opts.iocharset : CONFIG_NLS_DEFAULT;
  709. sbi->nls_io = load_nls(p);
  710. if (! sbi->nls_io)
  711. /* Fail only if explicit charset specified */
  712. if (opts.iocharset)
  713. goto out_unload_nls;
  714. }
  715. if (! sbi->nls_io)
  716. sbi->nls_io = load_nls_default();
  717. root_inode = new_inode(sb);
  718. if (!root_inode)
  719. goto out_unload_nls;
  720. root_inode->i_ino = MSDOS_ROOT_INO;
  721. fat_read_root(root_inode);
  722. insert_inode_hash(root_inode);
  723. sb->s_root = d_alloc_root(root_inode);
  724. if (!sb->s_root)
  725. goto out_no_root;
  726. if(i >= 0) {
  727. sbi->cvf_format = cvf_formats[i];
  728. ++cvf_format_use_count[i];
  729. }
  730. return sb;
  731. out_no_root:
  732. printk("FAT: get root inode failedn");
  733. iput(root_inode);
  734. unload_nls(sbi->nls_io);
  735. out_unload_nls:
  736. unload_nls(sbi->nls_disk);
  737. goto out_fail;
  738. out_invalid:
  739. if (!silent) {
  740. printk("VFS: Can't find a valid FAT filesystem on dev %s.n",
  741. kdevname(sb->s_dev));
  742. }
  743. out_fail:
  744. if (opts.iocharset) {
  745. printk("FAT: freeing iocharset=%sn", opts.iocharset);
  746. kfree(opts.iocharset);
  747. }
  748. if(sbi->private_data)
  749. kfree(sbi->private_data);
  750. sbi->private_data = NULL;
  751.  
  752. return NULL;
  753. }
  754. int fat_statfs(struct super_block *sb,struct statfs *buf)
  755. {
  756. int free,nr;
  757.        
  758. if (MSDOS_SB(sb)->cvf_format &&
  759.     MSDOS_SB(sb)->cvf_format->cvf_statfs)
  760. return MSDOS_SB(sb)->cvf_format->cvf_statfs(sb,buf,
  761. sizeof(struct statfs));
  762.   
  763. lock_fat(sb);
  764. if (MSDOS_SB(sb)->free_clusters != -1)
  765. free = MSDOS_SB(sb)->free_clusters;
  766. else {
  767. free = 0;
  768. for (nr = 2; nr < MSDOS_SB(sb)->clusters+2; nr++)
  769. if (!fat_access(sb,nr,-1)) free++;
  770. MSDOS_SB(sb)->free_clusters = free;
  771. }
  772. unlock_fat(sb);
  773. buf->f_type = sb->s_magic;
  774. buf->f_bsize = 1 << MSDOS_SB(sb)->cluster_bits;
  775. buf->f_blocks = MSDOS_SB(sb)->clusters;
  776. buf->f_bfree = free;
  777. buf->f_bavail = free;
  778. buf->f_namelen = MSDOS_SB(sb)->options.isvfat ? 260 : 12;
  779. return 0;
  780. }
  781. static int is_exec(char *extension)
  782. {
  783. char *exe_extensions = "EXECOMBAT", *walk;
  784. for (walk = exe_extensions; *walk; walk += 3)
  785. if (!strncmp(extension, walk, 3))
  786. return 1;
  787. return 0;
  788. }
  789. static int fat_writepage(struct page *page)
  790. {
  791. return block_write_full_page(page,fat_get_block);
  792. }
  793. static int fat_readpage(struct file *file, struct page *page)
  794. {
  795. return block_read_full_page(page,fat_get_block);
  796. }
  797. static int fat_prepare_write(struct file *file, struct page *page, unsigned from, unsigned to)
  798. {
  799. return cont_prepare_write(page,from,to,fat_get_block,
  800. &MSDOS_I(page->mapping->host)->mmu_private);
  801. }
  802. static int _fat_bmap(struct address_space *mapping, long block)
  803. {
  804. return generic_block_bmap(mapping,block,fat_get_block);
  805. }
  806. static struct address_space_operations fat_aops = {
  807. readpage: fat_readpage,
  808. writepage: fat_writepage,
  809. sync_page: block_sync_page,
  810. prepare_write: fat_prepare_write,
  811. commit_write: generic_commit_write,
  812. bmap: _fat_bmap
  813. };
  814. /* doesn't deal with root inode */
  815. static void fat_fill_inode(struct inode *inode, struct msdos_dir_entry *de)
  816. {
  817. struct super_block *sb = inode->i_sb;
  818. struct msdos_sb_info *sbi = MSDOS_SB(sb);
  819. int nr;
  820. INIT_LIST_HEAD(&MSDOS_I(inode)->i_fat_hash);
  821. MSDOS_I(inode)->i_location = 0;
  822. MSDOS_I(inode)->i_fat_inode = inode;
  823. inode->i_uid = sbi->options.fs_uid;
  824. inode->i_gid = sbi->options.fs_gid;
  825. inode->i_version = ++event;
  826. inode->i_generation = CURRENT_TIME;
  827. if ((de->attr & ATTR_DIR) && !IS_FREE(de->name)) {
  828. inode->i_generation &= ~1;
  829. inode->i_mode = MSDOS_MKMODE(de->attr,S_IRWXUGO &
  830.     ~sbi->options.fs_umask) | S_IFDIR;
  831. inode->i_op = sbi->dir_ops;
  832. inode->i_fop = &fat_dir_operations;
  833. MSDOS_I(inode)->i_start = CF_LE_W(de->start);
  834. if (sbi->fat_bits == 32) {
  835. MSDOS_I(inode)->i_start |=
  836. (CF_LE_W(de->starthi) << 16);
  837. }
  838. MSDOS_I(inode)->i_logstart = MSDOS_I(inode)->i_start;
  839. inode->i_nlink = fat_subdirs(inode);
  840.     /* includes .., compensating for "self" */
  841. #ifdef DEBUG
  842. if (!inode->i_nlink) {
  843. printk("directory %d: i_nlink == 0n",inode->i_ino);
  844. inode->i_nlink = 1;
  845. }
  846. #endif
  847. if ((nr = MSDOS_I(inode)->i_start) != 0)
  848. while (nr != -1) {
  849. inode->i_size += 1 << sbi->cluster_bits;
  850. if (!(nr = fat_access(sb, nr, -1))) {
  851. printk("Directory %ld: bad FATn",
  852.     inode->i_ino);
  853. break;
  854. }
  855. }
  856. MSDOS_I(inode)->mmu_private = inode->i_size;
  857. } else { /* not a directory */
  858. inode->i_generation |= 1;
  859. inode->i_mode = MSDOS_MKMODE(de->attr,
  860.     ((sbi->options.showexec &&
  861.        !is_exec(de->ext))
  862.      ? S_IRUGO|S_IWUGO : S_IRWXUGO)
  863.     & ~sbi->options.fs_umask) | S_IFREG;
  864. MSDOS_I(inode)->i_start = CF_LE_W(de->start);
  865. if (sbi->fat_bits == 32) {
  866. MSDOS_I(inode)->i_start |=
  867. (CF_LE_W(de->starthi) << 16);
  868. }
  869. MSDOS_I(inode)->i_logstart = MSDOS_I(inode)->i_start;
  870. inode->i_size = CF_LE_L(de->size);
  871.         inode->i_op = &fat_file_inode_operations;
  872.         inode->i_fop = &fat_file_operations;
  873. inode->i_mapping->a_ops = &fat_aops;
  874. MSDOS_I(inode)->mmu_private = inode->i_size;
  875. }
  876. if(de->attr & ATTR_SYS)
  877. if (sbi->options.sys_immutable)
  878. inode->i_flags |= S_IMMUTABLE;
  879. MSDOS_I(inode)->i_attrs = de->attr & ATTR_UNUSED;
  880. /* this is as close to the truth as we can get ... */
  881. inode->i_blksize = 1 << sbi->cluster_bits;
  882. inode->i_blocks = ((inode->i_size + inode->i_blksize - 1)
  883.    & ~(inode->i_blksize - 1)) >> 9;
  884. inode->i_mtime = inode->i_atime =
  885. date_dos2unix(CF_LE_W(de->time),CF_LE_W(de->date));
  886. inode->i_ctime =
  887. MSDOS_SB(sb)->options.isvfat
  888. ? date_dos2unix(CF_LE_W(de->ctime),CF_LE_W(de->cdate))
  889. : inode->i_mtime;
  890. MSDOS_I(inode)->i_ctime_ms = de->ctime_ms;
  891. }
  892. void fat_write_inode(struct inode *inode, int wait)
  893. {
  894. struct super_block *sb = inode->i_sb;
  895. struct buffer_head *bh;
  896. struct msdos_dir_entry *raw_entry;
  897. unsigned int i_pos;
  898. retry:
  899. i_pos = MSDOS_I(inode)->i_location;
  900. if (inode->i_ino == MSDOS_ROOT_INO || !i_pos) {
  901. return;
  902. }
  903. lock_kernel();
  904. if (!(bh = fat_bread(sb, i_pos >> MSDOS_SB(sb)->dir_per_block_bits))) {
  905. printk("dev = %s, ino = %dn", kdevname(inode->i_dev), i_pos);
  906. fat_fs_panic(sb, "msdos_write_inode: unable to read i-node block");
  907. unlock_kernel();
  908. return;
  909. }
  910. spin_lock(&fat_inode_lock);
  911. if (i_pos != MSDOS_I(inode)->i_location) {
  912. spin_unlock(&fat_inode_lock);
  913. fat_brelse(sb, bh);
  914. unlock_kernel();
  915. goto retry;
  916. }
  917. raw_entry = &((struct msdos_dir_entry *) (bh->b_data))
  918.     [i_pos & (MSDOS_SB(sb)->dir_per_block - 1)];
  919. if (S_ISDIR(inode->i_mode)) {
  920. raw_entry->attr = ATTR_DIR;
  921. raw_entry->size = 0;
  922. }
  923. else {
  924. raw_entry->attr = ATTR_NONE;
  925. raw_entry->size = CT_LE_L(inode->i_size);
  926. }
  927. raw_entry->attr |= MSDOS_MKATTR(inode->i_mode) |
  928.     MSDOS_I(inode)->i_attrs;
  929. raw_entry->start = CT_LE_W(MSDOS_I(inode)->i_logstart);
  930. raw_entry->starthi = CT_LE_W(MSDOS_I(inode)->i_logstart >> 16);
  931. fat_date_unix2dos(inode->i_mtime,&raw_entry->time,&raw_entry->date);
  932. raw_entry->time = CT_LE_W(raw_entry->time);
  933. raw_entry->date = CT_LE_W(raw_entry->date);
  934. if (MSDOS_SB(sb)->options.isvfat) {
  935. fat_date_unix2dos(inode->i_ctime,&raw_entry->ctime,&raw_entry->cdate);
  936. raw_entry->ctime_ms = MSDOS_I(inode)->i_ctime_ms;
  937. raw_entry->ctime = CT_LE_W(raw_entry->ctime);
  938. raw_entry->cdate = CT_LE_W(raw_entry->cdate);
  939. }
  940. spin_unlock(&fat_inode_lock);
  941. fat_mark_buffer_dirty(sb, bh);
  942. fat_brelse(sb, bh);
  943. unlock_kernel();
  944. }
  945. int fat_notify_change(struct dentry * dentry, struct iattr * attr)
  946. {
  947. struct super_block *sb = dentry->d_sb;
  948. struct inode *inode = dentry->d_inode;
  949. int error;
  950. /* FAT cannot truncate to a longer file */
  951. if (attr->ia_valid & ATTR_SIZE) {
  952. if (attr->ia_size > inode->i_size)
  953. return -EPERM;
  954. }
  955. error = inode_change_ok(inode, attr);
  956. if (error)
  957. return MSDOS_SB(sb)->options.quiet ? 0 : error;
  958. if (((attr->ia_valid & ATTR_UID) && 
  959.      (attr->ia_uid != MSDOS_SB(sb)->options.fs_uid)) ||
  960.     ((attr->ia_valid & ATTR_GID) && 
  961.      (attr->ia_gid != MSDOS_SB(sb)->options.fs_gid)) ||
  962.     ((attr->ia_valid & ATTR_MODE) &&
  963.      (attr->ia_mode & ~MSDOS_VALID_MODE)))
  964. error = -EPERM;
  965. if (error)
  966. return MSDOS_SB(sb)->options.quiet ? 0 : error;
  967. error = inode_setattr(inode, attr);
  968. if (error)
  969. return error;
  970. if (S_ISDIR(inode->i_mode))
  971. inode->i_mode |= S_IXUGO;
  972. inode->i_mode = ((inode->i_mode & S_IFMT) | ((((inode->i_mode & S_IRWXU
  973.     & ~MSDOS_SB(sb)->options.fs_umask) | S_IRUSR) >> 6)*S_IXUGO)) &
  974.     ~MSDOS_SB(sb)->options.fs_umask;
  975. return 0;
  976. }
  977. MODULE_LICENSE("GPL");