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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * JFFS2 -- Journalling Flash File System, Version 2.
  3.  *
  4.  * Copyright (C) 2001-2003 Red Hat, Inc.
  5.  *
  6.  * Created by David Woodhouse <dwmw2@infradead.org>
  7.  *
  8.  * For licensing information, see the file 'LICENCE' in the 
  9.  * jffs2 directory.
  10.  *
  11.  * $Id: jffs2.h,v 1.34 2004/11/16 20:36:14 dwmw2 Exp $
  12.  *
  13.  */
  14. #ifndef __LINUX_JFFS2_H__
  15. #define __LINUX_JFFS2_H__
  16. /* You must include something which defines the C99 uintXX_t types. 
  17.    We don't do it from here because this file is used in too many
  18.    different environments. */
  19. #define JFFS2_SUPER_MAGIC 0x72b6
  20. /* Values we may expect to find in the 'magic' field */
  21. #define JFFS2_OLD_MAGIC_BITMASK 0x1984
  22. #define JFFS2_MAGIC_BITMASK 0x1985
  23. #define KSAMTIB_CIGAM_2SFFJ 0x8519 /* For detecting wrong-endian fs */
  24. #define JFFS2_EMPTY_BITMASK 0xffff
  25. #define JFFS2_DIRTY_BITMASK 0x0000
  26. /* We only allow a single char for length, and 0xFF is empty flash so
  27.    we don't want it confused with a real length. Hence max 254.
  28. */
  29. #define JFFS2_MAX_NAME_LEN 254
  30. /* How small can we sensibly write nodes? */
  31. #define JFFS2_MIN_DATA_LEN 128
  32. #define JFFS2_COMPR_NONE 0x00
  33. #define JFFS2_COMPR_ZERO 0x01
  34. #define JFFS2_COMPR_RTIME 0x02
  35. #define JFFS2_COMPR_RUBINMIPS 0x03
  36. #define JFFS2_COMPR_COPY 0x04
  37. #define JFFS2_COMPR_DYNRUBIN 0x05
  38. #define JFFS2_COMPR_ZLIB 0x06
  39. #define JFFS2_COMPR_LZO         0x07
  40. #define JFFS2_COMPR_LZARI       0x08
  41. /* Compatibility flags. */
  42. #define JFFS2_COMPAT_MASK 0xc000      /* What do to if an unknown nodetype is found */
  43. #define JFFS2_NODE_ACCURATE 0x2000
  44. /* INCOMPAT: Fail to mount the filesystem */
  45. #define JFFS2_FEATURE_INCOMPAT 0xc000
  46. /* ROCOMPAT: Mount read-only */
  47. #define JFFS2_FEATURE_ROCOMPAT 0x8000
  48. /* RWCOMPAT_COPY: Mount read/write, and copy the node when it's GC'd */
  49. #define JFFS2_FEATURE_RWCOMPAT_COPY 0x4000
  50. /* RWCOMPAT_DELETE: Mount read/write, and delete the node when it's GC'd */
  51. #define JFFS2_FEATURE_RWCOMPAT_DELETE 0x0000
  52. #define JFFS2_NODETYPE_DIRENT (JFFS2_FEATURE_INCOMPAT | JFFS2_NODE_ACCURATE | 1)
  53. #define JFFS2_NODETYPE_INODE (JFFS2_FEATURE_INCOMPAT | JFFS2_NODE_ACCURATE | 2)
  54. #define JFFS2_NODETYPE_CLEANMARKER (JFFS2_FEATURE_RWCOMPAT_DELETE | JFFS2_NODE_ACCURATE | 3)
  55. #define JFFS2_NODETYPE_PADDING (JFFS2_FEATURE_RWCOMPAT_DELETE | JFFS2_NODE_ACCURATE | 4)
  56. // Maybe later...
  57. //#define JFFS2_NODETYPE_CHECKPOINT (JFFS2_FEATURE_RWCOMPAT_DELETE | JFFS2_NODE_ACCURATE | 3)
  58. //#define JFFS2_NODETYPE_OPTIONS (JFFS2_FEATURE_RWCOMPAT_COPY | JFFS2_NODE_ACCURATE | 4)
  59. #define JFFS2_INO_FLAG_PREREAD   1 /* Do read_inode() for this one at 
  60.    mount time, don't wait for it to 
  61.    happen later */
  62. #define JFFS2_INO_FLAG_USERCOMPR  2 /* User has requested a specific 
  63.    compression type */
  64. /* These can go once we've made sure we've caught all uses without
  65.    byteswapping */
  66. typedef struct {
  67. uint32_t v32;
  68. } __attribute__((packed))  jint32_t;
  69. typedef struct {
  70. uint32_t m;
  71. } __attribute__((packed))  jmode_t;
  72. typedef struct {
  73. uint16_t v16;
  74. } __attribute__((packed)) jint16_t;
  75. struct jffs2_unknown_node
  76. {
  77. /* All start like this */
  78. jint16_t magic;
  79. jint16_t nodetype;
  80. jint32_t totlen; /* So we can skip over nodes we don't grok */
  81. jint32_t hdr_crc;
  82. } __attribute__((packed));
  83. struct jffs2_raw_dirent
  84. {
  85. jint16_t magic;
  86. jint16_t nodetype; /* == JFFS_NODETYPE_DIRENT */
  87. jint32_t totlen;
  88. jint32_t hdr_crc;
  89. jint32_t pino;
  90. jint32_t version;
  91. jint32_t ino; /* == zero for unlink */
  92. jint32_t mctime;
  93. uint8_t nsize;
  94. uint8_t type;
  95. uint8_t unused[2];
  96. jint32_t node_crc;
  97. jint32_t name_crc;
  98. uint8_t name[0];
  99. } __attribute__((packed));
  100. /* The JFFS2 raw inode structure: Used for storage on physical media.  */
  101. /* The uid, gid, atime, mtime and ctime members could be longer, but 
  102.    are left like this for space efficiency. If and when people decide
  103.    they really need them extended, it's simple enough to add support for
  104.    a new type of raw node.
  105. */
  106. struct jffs2_raw_inode
  107. {
  108. jint16_t magic;      /* A constant magic number.  */
  109. jint16_t nodetype;   /* == JFFS_NODETYPE_INODE */
  110. jint32_t totlen;     /* Total length of this node (inc data, etc.) */
  111. jint32_t hdr_crc;
  112. jint32_t ino;        /* Inode number.  */
  113. jint32_t version;    /* Version number.  */
  114. jmode_t mode;       /* The file's type or mode.  */
  115. jint16_t uid;        /* The file's owner.  */
  116. jint16_t gid;        /* The file's group.  */
  117. jint32_t isize;      /* Total resultant size of this inode (used for truncations)  */
  118. jint32_t atime;      /* Last access time.  */
  119. jint32_t mtime;      /* Last modification time.  */
  120. jint32_t ctime;      /* Change time.  */
  121. jint32_t offset;     /* Where to begin to write.  */
  122. jint32_t csize;      /* (Compressed) data size */
  123. jint32_t dsize;      /* Size of the node's data. (after decompression) */
  124. uint8_t compr;       /* Compression algorithm used */
  125. uint8_t usercompr;   /* Compression algorithm requested by the user */
  126. jint16_t flags;      /* See JFFS2_INO_FLAG_* */
  127. jint32_t data_crc;   /* CRC for the (compressed) data.  */
  128. jint32_t node_crc;   /* CRC for the raw inode (excluding data)  */
  129. uint8_t data[0];
  130. } __attribute__((packed));
  131. union jffs2_node_union {
  132. struct jffs2_raw_inode i;
  133. struct jffs2_raw_dirent d;
  134. struct jffs2_unknown_node u;
  135. };
  136. #endif /* __LINUX_JFFS2_H__ */