cramfs_fs.h
上传用户:szlgq88
上传日期:2009-04-28
资源大小:48287k
文件大小:3k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. #ifndef __CRAMFS_H
  2. #define __CRAMFS_H
  3. #ifndef __KERNEL__
  4. typedef unsigned char u8;
  5. typedef unsigned short u16;
  6. typedef unsigned int u32;
  7. #endif
  8. #define CRAMFS_MAGIC 0x28cd3d45 /* some random number */
  9. #define CRAMFS_SIGNATURE "Compressed ROMFS"
  10. /*
  11.  * Width of various bitfields in struct cramfs_inode.
  12.  * Primarily used to generate warnings in mkcramfs.
  13.  */
  14. #define CRAMFS_MODE_WIDTH 16
  15. #define CRAMFS_UID_WIDTH 16
  16. #define CRAMFS_SIZE_WIDTH 24
  17. #define CRAMFS_GID_WIDTH 8
  18. #define CRAMFS_NAMELEN_WIDTH 6
  19. #define CRAMFS_OFFSET_WIDTH 26
  20. /*
  21.  * Since inode.namelen is a unsigned 6-bit number, the maximum cramfs
  22.  * path length is 63 << 2 = 252.
  23.  */
  24. #define CRAMFS_MAXPATHLEN (((1 << CRAMFS_NAMELEN_WIDTH) - 1) << 2)
  25. /*
  26.  * Reasonably terse representation of the inode data.
  27.  */
  28. struct cramfs_inode {
  29. u32 mode:CRAMFS_MODE_WIDTH, uid:CRAMFS_UID_WIDTH;
  30. /* SIZE for device files is i_rdev */
  31. u32 size:CRAMFS_SIZE_WIDTH, gid:CRAMFS_GID_WIDTH;
  32. /* NAMELEN is the length of the file name, divided by 4 and
  33.            rounded up.  (cramfs doesn't support hard links.) */
  34. /* OFFSET: For symlinks and non-empty regular files, this
  35.    contains the offset (divided by 4) of the file data in
  36.    compressed form (starting with an array of block pointers;
  37.    see README).  For non-empty directories it is the offset
  38.    (divided by 4) of the inode of the first file in that
  39.    directory.  For anything else, offset is zero. */
  40. u32 namelen:CRAMFS_NAMELEN_WIDTH, offset:CRAMFS_OFFSET_WIDTH;
  41. };
  42. struct cramfs_info {
  43. u32 crc;
  44. u32 edition;
  45. u32 blocks;
  46. u32 files;
  47. };
  48. /*
  49.  * Superblock information at the beginning of the FS.
  50.  */
  51. struct cramfs_super {
  52. u32 magic; /* 0x28cd3d45 - random number */
  53. u32 size; /* length in bytes */
  54. u32 flags; /* feature flags */
  55. u32 future; /* reserved for future use */
  56. u8 signature[16]; /* "Compressed ROMFS" */
  57. struct cramfs_info fsid; /* unique filesystem info */
  58. u8 name[16]; /* user-defined name */
  59. struct cramfs_inode root; /* root inode data */
  60. };
  61. /*
  62.  * Feature flags
  63.  *
  64.  * 0x00000000 - 0x000000ff: features that work for all past kernels
  65.  * 0x00000100 - 0xffffffff: features that don't work for past kernels
  66.  */
  67. #define CRAMFS_FLAG_FSID_VERSION_2 0x00000001 /* fsid version #2 */
  68. #define CRAMFS_FLAG_SORTED_DIRS 0x00000002 /* sorted dirs */
  69. #define CRAMFS_FLAG_HOLES 0x00000100 /* support for holes */
  70. #define CRAMFS_FLAG_WRONG_SIGNATURE 0x00000200 /* reserved */
  71. #define CRAMFS_FLAG_SHIFTED_ROOT_OFFSET 0x00000400 /* shifted root fs */
  72. /*
  73.  * Valid values in super.flags.  Currently we refuse to mount
  74.  * if (flags & ~CRAMFS_SUPPORTED_FLAGS).  Maybe that should be
  75.  * changed to test super.future instead.
  76.  */
  77. #define CRAMFS_SUPPORTED_FLAGS ( 0x000000ff 
  78. | CRAMFS_FLAG_HOLES 
  79. | CRAMFS_FLAG_WRONG_SIGNATURE 
  80. | CRAMFS_FLAG_SHIFTED_ROOT_OFFSET )
  81. /* Uncompression interfaces to the underlying zlib */
  82. int cramfs_uncompress_block(void *dst, int dstlen, void *src, int srclen);
  83. int cramfs_uncompress_init(void);
  84. int cramfs_uncompress_exit(void);
  85. #endif