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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * JFFS2 -- Journalling Flash File System, Version 2.
  3.  *
  4.  * Copyright (C) 2001 Red Hat, Inc.
  5.  *
  6.  * Created by David Woodhouse <dwmw2@cambridge.redhat.com>
  7.  *
  8.  * The original JFFS, from which the design for JFFS2 was derived,
  9.  * was designed and implemented by Axis Communications AB.
  10.  *
  11.  * The contents of this file are subject to the Red Hat eCos Public
  12.  * License Version 1.1 (the "Licence"); you may not use this file
  13.  * except in compliance with the Licence.  You may obtain a copy of
  14.  * the Licence at http://www.redhat.com/
  15.  *
  16.  * Software distributed under the Licence is distributed on an "AS IS"
  17.  * basis, WITHOUT WARRANTY OF ANY KIND, either express or implied.
  18.  * See the Licence for the specific language governing rights and
  19.  * limitations under the Licence.
  20.  *
  21.  * The Original Code is JFFS2 - Journalling Flash File System, version 2
  22.  *
  23.  * Alternatively, the contents of this file may be used under the
  24.  * terms of the GNU General Public License version 2 (the "GPL"), in
  25.  * which case the provisions of the GPL are applicable instead of the
  26.  * above.  If you wish to allow the use of your version of this file
  27.  * only under the terms of the GPL and not to allow others to use your
  28.  * version of this file under the RHEPL, indicate your decision by
  29.  * deleting the provisions above and replace them with the notice and
  30.  * other provisions required by the GPL.  If you do not delete the
  31.  * provisions above, a recipient may use your version of this file
  32.  * under either the RHEPL or the GPL.
  33.  *
  34.  * $Id: jffs2.h,v 1.19 2001/10/09 13:20:23 dwmw2 Exp $
  35.  *
  36.  */
  37. #ifndef __LINUX_JFFS2_H__
  38. #define __LINUX_JFFS2_H__
  39. #include <asm/types.h>
  40. #define JFFS2_SUPER_MAGIC 0x72b6
  41. /* Values we may expect to find in the 'magic' field */
  42. #define JFFS2_OLD_MAGIC_BITMASK 0x1984
  43. #define JFFS2_MAGIC_BITMASK 0x1985
  44. #define KSAMTIB_CIGAM_2SFFJ 0x5981 /* For detecting wrong-endian fs */
  45. #define JFFS2_EMPTY_BITMASK 0xffff
  46. #define JFFS2_DIRTY_BITMASK 0x0000
  47. /* We only allow a single char for length, and 0xFF is empty flash so
  48.    we don't want it confused with a real length. Hence max 254.
  49. */
  50. #define JFFS2_MAX_NAME_LEN 254
  51. /* How small can we sensibly write nodes? */
  52. #define JFFS2_MIN_DATA_LEN 128
  53. #define JFFS2_COMPR_NONE 0x00
  54. #define JFFS2_COMPR_ZERO 0x01
  55. #define JFFS2_COMPR_RTIME 0x02
  56. #define JFFS2_COMPR_RUBINMIPS 0x03
  57. #define JFFS2_COMPR_COPY 0x04
  58. #define JFFS2_COMPR_DYNRUBIN 0x05
  59. #define JFFS2_COMPR_ZLIB 0x06
  60. /* Compatibility flags. */
  61. #define JFFS2_COMPAT_MASK 0xc000      /* What do to if an unknown nodetype is found */
  62. #define JFFS2_NODE_ACCURATE 0x2000
  63. /* INCOMPAT: Fail to mount the filesystem */
  64. #define JFFS2_FEATURE_INCOMPAT 0xc000
  65. /* ROCOMPAT: Mount read-only */
  66. #define JFFS2_FEATURE_ROCOMPAT 0x8000
  67. /* RWCOMPAT_COPY: Mount read/write, and copy the node when it's GC'd */
  68. #define JFFS2_FEATURE_RWCOMPAT_COPY 0x4000
  69. /* RWCOMPAT_DELETE: Mount read/write, and delete the node when it's GC'd */
  70. #define JFFS2_FEATURE_RWCOMPAT_DELETE 0x0000
  71. #define JFFS2_NODETYPE_DIRENT (JFFS2_FEATURE_INCOMPAT | JFFS2_NODE_ACCURATE | 1)
  72. #define JFFS2_NODETYPE_INODE (JFFS2_FEATURE_INCOMPAT | JFFS2_NODE_ACCURATE | 2)
  73. #define JFFS2_NODETYPE_CLEANMARKER (JFFS2_FEATURE_RWCOMPAT_DELETE | JFFS2_NODE_ACCURATE | 3)
  74. // Maybe later...
  75. //#define JFFS2_NODETYPE_CHECKPOINT (JFFS2_FEATURE_RWCOMPAT_DELETE | JFFS2_NODE_ACCURATE | 3)
  76. //#define JFFS2_NODETYPE_OPTIONS (JFFS2_FEATURE_RWCOMPAT_COPY | JFFS2_NODE_ACCURATE | 4)
  77. /* Same as the non_ECC versions, but with extra space for real 
  78.  * ECC instead of just the checksum. For use on NAND flash 
  79.  */
  80. //#define JFFS2_NODETYPE_DIRENT_ECC (JFFS2_FEATURE_INCOMPAT | JFFS2_NODE_ACCURATE | 5)
  81. //#define JFFS2_NODETYPE_INODE_ECC (JFFS2_FEATURE_INCOMPAT | JFFS2_NODE_ACCURATE | 6)
  82. #define JFFS2_INO_FLAG_PREREAD   1 /* Do read_inode() for this one at 
  83.    mount time, don't wait for it to 
  84.    happen later */
  85. #define JFFS2_INO_FLAG_USERCOMPR  2 /* User has requested a specific 
  86.    compression type */
  87. struct jffs2_unknown_node
  88. {
  89. /* All start like this */
  90. __u16 magic;
  91. __u16 nodetype;
  92. __u32 totlen; /* So we can skip over nodes we don't grok */
  93. __u32 hdr_crc;
  94. } __attribute__((packed));
  95. struct jffs2_raw_dirent
  96. {
  97. __u16 magic;
  98. __u16 nodetype; /* == JFFS_NODETYPE_DIRENT */
  99. __u32 totlen;
  100. __u32 hdr_crc;
  101. __u32 pino;
  102. __u32 version;
  103. __u32 ino; /* == zero for unlink */
  104. __u32 mctime;
  105. __u8 nsize;
  106. __u8 type;
  107. __u8 unused[2];
  108. __u32 node_crc;
  109. __u32 name_crc;
  110. __u8 name[0];
  111. } __attribute__((packed));
  112. /* The JFFS2 raw inode structure: Used for storage on physical media.  */
  113. /* The uid, gid, atime, mtime and ctime members could be longer, but 
  114.    are left like this for space efficiency. If and when people decide
  115.    they really need them extended, it's simple enough to add support for
  116.    a new type of raw node.
  117. */
  118. struct jffs2_raw_inode
  119. {
  120. __u16 magic;      /* A constant magic number.  */
  121. __u16 nodetype;   /* == JFFS_NODETYPE_INODE */
  122. __u32 totlen;     /* Total length of this node (inc data, etc.) */
  123. __u32 hdr_crc;
  124. __u32 ino;        /* Inode number.  */
  125. __u32 version;    /* Version number.  */
  126. __u32 mode;       /* The file's type or mode.  */
  127. __u16 uid;        /* The file's owner.  */
  128. __u16 gid;        /* The file's group.  */
  129. __u32 isize;      /* Total resultant size of this inode (used for truncations)  */
  130. __u32 atime;      /* Last access time.  */
  131. __u32 mtime;      /* Last modification time.  */
  132. __u32 ctime;      /* Change time.  */
  133. __u32 offset;     /* Where to begin to write.  */
  134. __u32 csize;      /* (Compressed) data size */
  135. __u32 dsize;   /* Size of the node's data. (after decompression) */
  136. __u8 compr;       /* Compression algorithm used */
  137. __u8 usercompr;   /* Compression algorithm requested by the user */
  138. __u16 flags;   /* See JFFS2_INO_FLAG_* */
  139. __u32 data_crc;   /* CRC for the (compressed) data.  */
  140. __u32 node_crc;   /* CRC for the raw inode (excluding data)  */
  141. // __u8 data[dsize];
  142. } __attribute__((packed));
  143. union jffs2_node_union {
  144. struct jffs2_raw_inode i;
  145. struct jffs2_raw_dirent d;
  146. struct jffs2_unknown_node u;
  147. };
  148. #endif /* __LINUX_JFFS2_H__ */