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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * super.c
  3.  *
  4.  * Copyright (c) 1999 Al Smith
  5.  *
  6.  * Portions derived from work (c) 1995,1996 Christian Vogelgsang.
  7.  */
  8. #include <linux/init.h>
  9. #include <linux/module.h>
  10. #include <linux/locks.h>
  11. #include <linux/efs_fs.h>
  12. #include <linux/efs_vh.h>
  13. #include <linux/efs_fs_sb.h>
  14. static DECLARE_FSTYPE_DEV(efs_fs_type, "efs", efs_read_super);
  15. static struct super_operations efs_superblock_operations = {
  16. read_inode: efs_read_inode,
  17. statfs: efs_statfs,
  18. };
  19. static int __init init_efs_fs(void) {
  20. printk("EFS: "EFS_VERSION" - http://aeschi.ch.eu.org/efs/n");
  21. return register_filesystem(&efs_fs_type);
  22. }
  23. static void __exit exit_efs_fs(void) {
  24. unregister_filesystem(&efs_fs_type);
  25. }
  26. EXPORT_NO_SYMBOLS;
  27. module_init(init_efs_fs)
  28. module_exit(exit_efs_fs)
  29. static efs_block_t efs_validate_vh(struct volume_header *vh) {
  30. int i;
  31. unsigned int cs, csum, *ui;
  32. efs_block_t sblock = 0; /* shuts up gcc */
  33. struct pt_types *pt_entry;
  34. int pt_type, slice = -1;
  35. if (be32_to_cpu(vh->vh_magic) != VHMAGIC) {
  36. /*
  37.  * assume that we're dealing with a partition and allow
  38.  * read_super() to try and detect a valid superblock
  39.  * on the next block.
  40.  */
  41. return 0;
  42. }
  43. ui = ((unsigned int *) (vh + 1)) - 1;
  44. for(csum = 0; ui >= ((unsigned int *) vh);) {
  45. cs = *ui--;
  46. csum += be32_to_cpu(cs);
  47. }
  48. if (csum) {
  49. printk(KERN_INFO "EFS: SGI disklabel: checksum bad, label corruptedn");
  50. return 0;
  51. }
  52. #ifdef DEBUG
  53. printk(KERN_DEBUG "EFS: bf: "%16s"n", vh->vh_bootfile);
  54. for(i = 0; i < NVDIR; i++) {
  55. int j;
  56. char name[VDNAMESIZE+1];
  57. for(j = 0; j < VDNAMESIZE; j++) {
  58. name[j] = vh->vh_vd[i].vd_name[j];
  59. }
  60. name[j] = (char) 0;
  61. if (name[0]) {
  62. printk(KERN_DEBUG "EFS: vh: %8s block: 0x%08x size: 0x%08xn",
  63. name,
  64. (int) be32_to_cpu(vh->vh_vd[i].vd_lbn),
  65. (int) be32_to_cpu(vh->vh_vd[i].vd_nbytes));
  66. }
  67. }
  68. #endif
  69. for(i = 0; i < NPARTAB; i++) {
  70. pt_type = (int) be32_to_cpu(vh->vh_pt[i].pt_type);
  71. for(pt_entry = sgi_pt_types; pt_entry->pt_name; pt_entry++) {
  72. if (pt_type == pt_entry->pt_type) break;
  73. }
  74. #ifdef DEBUG
  75. if (be32_to_cpu(vh->vh_pt[i].pt_nblks)) {
  76. printk(KERN_DEBUG "EFS: pt %2d: start: %08d size: %08d type: 0x%02x (%s)n",
  77. i,
  78. (int) be32_to_cpu(vh->vh_pt[i].pt_firstlbn),
  79. (int) be32_to_cpu(vh->vh_pt[i].pt_nblks),
  80. pt_type,
  81. (pt_entry->pt_name) ? pt_entry->pt_name : "unknown");
  82. }
  83. #endif
  84. if (IS_EFS(pt_type)) {
  85. sblock = be32_to_cpu(vh->vh_pt[i].pt_firstlbn);
  86. slice = i;
  87. }
  88. }
  89. if (slice == -1) {
  90. printk(KERN_NOTICE "EFS: partition table contained no EFS partitionsn");
  91. #ifdef DEBUG
  92. } else {
  93. printk(KERN_INFO "EFS: using slice %d (type %s, offset 0x%x)n",
  94. slice,
  95. (pt_entry->pt_name) ? pt_entry->pt_name : "unknown",
  96. sblock);
  97. #endif
  98. }
  99. return(sblock);
  100. }
  101. static int efs_validate_super(struct efs_sb_info *sb, struct efs_super *super) {
  102. if (!IS_EFS_MAGIC(be32_to_cpu(super->fs_magic))) return -1;
  103. sb->fs_magic     = be32_to_cpu(super->fs_magic);
  104. sb->total_blocks = be32_to_cpu(super->fs_size);
  105. sb->first_block  = be32_to_cpu(super->fs_firstcg);
  106. sb->group_size   = be32_to_cpu(super->fs_cgfsize);
  107. sb->data_free    = be32_to_cpu(super->fs_tfree);
  108. sb->inode_free   = be32_to_cpu(super->fs_tinode);
  109. sb->inode_blocks = be16_to_cpu(super->fs_cgisize);
  110. sb->total_groups = be16_to_cpu(super->fs_ncg);
  111.     
  112. return 0;    
  113. }
  114. struct super_block *efs_read_super(struct super_block *s, void *d, int silent) {
  115. kdev_t dev = s->s_dev;
  116. struct efs_sb_info *sb;
  117. struct buffer_head *bh;
  118.   sb = SUPER_INFO(s);
  119.  
  120. s->s_magic = EFS_SUPER_MAGIC;
  121. s->s_blocksize = EFS_BLOCKSIZE;
  122. s->s_blocksize_bits = EFS_BLOCKSIZE_BITS;
  123. if( set_blocksize(dev, EFS_BLOCKSIZE) < 0)
  124. {
  125. printk(KERN_ERR "EFS: device does not support %d byte blocksn",
  126. EFS_BLOCKSIZE);
  127. goto out_no_fs_ul;
  128. }
  129.   
  130. /* read the vh (volume header) block */
  131. bh = sb_bread(s, 0);
  132. if (!bh) {
  133. printk(KERN_ERR "EFS: cannot read volume headern");
  134. goto out_no_fs_ul;
  135. }
  136. /*
  137.  * if this returns zero then we didn't find any partition table.
  138.  * this isn't (yet) an error - just assume for the moment that
  139.  * the device is valid and go on to search for a superblock.
  140.  */
  141. sb->fs_start = efs_validate_vh((struct volume_header *) bh->b_data);
  142. brelse(bh);
  143. if (sb->fs_start == -1) {
  144. goto out_no_fs_ul;
  145. }
  146. bh = sb_bread(s, sb->fs_start + EFS_SUPER);
  147. if (!bh) {
  148. printk(KERN_ERR "EFS: cannot read superblockn");
  149. goto out_no_fs_ul;
  150. }
  151. if (efs_validate_super(sb, (struct efs_super *) bh->b_data)) {
  152. #ifdef DEBUG
  153. printk(KERN_WARNING "EFS: invalid superblock at block %un", sb->fs_start + EFS_SUPER);
  154. #endif
  155. brelse(bh);
  156. goto out_no_fs_ul;
  157. }
  158. brelse(bh);
  159. if (!(s->s_flags & MS_RDONLY)) {
  160. #ifdef DEBUG
  161. printk(KERN_INFO "EFS: forcing read-only moden");
  162. #endif
  163. s->s_flags |= MS_RDONLY;
  164. }
  165. s->s_op   = &efs_superblock_operations;
  166. s->s_root = d_alloc_root(iget(s, EFS_ROOTINODE));
  167.  
  168. if (!(s->s_root)) {
  169. printk(KERN_ERR "EFS: get root inode failedn");
  170. goto out_no_fs;
  171. }
  172. return(s);
  173. out_no_fs_ul:
  174. out_no_fs:
  175. return(NULL);
  176. }
  177. int efs_statfs(struct super_block *s, struct statfs *buf) {
  178. struct efs_sb_info *sb = SUPER_INFO(s);
  179. buf->f_type    = EFS_SUPER_MAGIC; /* efs magic number */
  180. buf->f_bsize   = EFS_BLOCKSIZE; /* blocksize */
  181. buf->f_blocks  = sb->total_groups * /* total data blocks */
  182. (sb->group_size - sb->inode_blocks);
  183. buf->f_bfree   = sb->data_free; /* free data blocks */
  184. buf->f_bavail  = sb->data_free; /* free blocks for non-root */
  185. buf->f_files   = sb->total_groups * /* total inodes */
  186. sb->inode_blocks *
  187. (EFS_BLOCKSIZE / sizeof(struct efs_dinode));
  188. buf->f_ffree   = sb->inode_free; /* free inodes */
  189. buf->f_fsid.val[0] = (sb->fs_magic >> 16) & 0xffff; /* fs ID */
  190. buf->f_fsid.val[1] =  sb->fs_magic        & 0xffff; /* fs ID */
  191. buf->f_namelen = EFS_MAXNAMELEN; /* max filename length */
  192. return 0;
  193. }