ubifs-media.h 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744
  1. /*
  2. * This file is part of UBIFS.
  3. *
  4. * Copyright (C) 2006-2008 Nokia Corporation.
  5. *
  6. * This program is free software; you can redistribute it and/or modify it
  7. * under the terms of the GNU General Public License version 2 as published by
  8. * the Free Software Foundation.
  9. *
  10. * This program is distributed in the hope that it will be useful, but WITHOUT
  11. * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  12. * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
  13. * more details.
  14. *
  15. * You should have received a copy of the GNU General Public License along with
  16. * this program; if not, write to the Free Software Foundation, Inc., 51
  17. * Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
  18. *
  19. * Authors: Artem Bityutskiy (Битюцкий Артём)
  20. * Adrian Hunter
  21. */
  22. /*
  23. * This file describes UBIFS on-flash format and contains definitions of all the
  24. * relevant data structures and constants.
  25. *
  26. * All UBIFS on-flash objects are stored in the form of nodes. All nodes start
  27. * with the UBIFS node magic number and have the same common header. Nodes
  28. * always sit at 8-byte aligned positions on the media and node header sizes are
  29. * also 8-byte aligned (except for the indexing node and the padding node).
  30. */
  31. #ifndef __UBIFS_MEDIA_H__
  32. #define __UBIFS_MEDIA_H__
  33. /* UBIFS node magic number (must not have the padding byte first or last) */
  34. #define UBIFS_NODE_MAGIC 0x06101831
  35. /* UBIFS on-flash format version */
  36. #define UBIFS_FORMAT_VERSION 4
  37. /* Minimum logical eraseblock size in bytes */
  38. #define UBIFS_MIN_LEB_SZ (15*1024)
  39. /* Initial CRC32 value used when calculating CRC checksums */
  40. #define UBIFS_CRC32_INIT 0xFFFFFFFFU
  41. /*
  42. * UBIFS does not try to compress data if its length is less than the below
  43. * constant.
  44. */
  45. #define UBIFS_MIN_COMPR_LEN 128
  46. /* Root inode number */
  47. #define UBIFS_ROOT_INO 1
  48. /* Lowest inode number used for regular inodes (not UBIFS-only internal ones) */
  49. #define UBIFS_FIRST_INO 64
  50. /*
  51. * Maximum file name and extended attribute length (must be a multiple of 8,
  52. * minus 1).
  53. */
  54. #define UBIFS_MAX_NLEN 255
  55. /* Maximum number of data journal heads */
  56. #define UBIFS_MAX_JHEADS 1
  57. /*
  58. * Size of UBIFS data block. Note, UBIFS is not a block oriented file-system,
  59. * which means that it does not treat the underlying media as consisting of
  60. * blocks like in case of hard drives. Do not be confused. UBIFS block is just
  61. * the maximum amount of data which one data node can have or which can be
  62. * attached to an inode node.
  63. */
  64. #define UBIFS_BLOCK_SIZE 4096
  65. #define UBIFS_BLOCK_SHIFT 12
  66. /* UBIFS padding byte pattern (must not be first or last byte of node magic) */
  67. #define UBIFS_PADDING_BYTE 0xCE
  68. /* Maximum possible key length */
  69. #define UBIFS_MAX_KEY_LEN 16
  70. /* Key length ("simple" format) */
  71. #define UBIFS_SK_LEN 8
  72. /* Minimum index tree fanout */
  73. #define UBIFS_MIN_FANOUT 3
  74. /* Maximum number of levels in UBIFS indexing B-tree */
  75. #define UBIFS_MAX_LEVELS 512
  76. /* Maximum amount of data attached to an inode in bytes */
  77. #define UBIFS_MAX_INO_DATA UBIFS_BLOCK_SIZE
  78. /* LEB Properties Tree fanout (must be power of 2) and fanout shift */
  79. #define UBIFS_LPT_FANOUT 4
  80. #define UBIFS_LPT_FANOUT_SHIFT 2
  81. /* LEB Properties Tree bit field sizes */
  82. #define UBIFS_LPT_CRC_BITS 16
  83. #define UBIFS_LPT_CRC_BYTES 2
  84. #define UBIFS_LPT_TYPE_BITS 4
  85. /* The key is always at the same position in all keyed nodes */
  86. #define UBIFS_KEY_OFFSET offsetof(struct ubifs_ino_node, key)
  87. /*
  88. * LEB Properties Tree node types.
  89. *
  90. * UBIFS_LPT_PNODE: LPT leaf node (contains LEB properties)
  91. * UBIFS_LPT_NNODE: LPT internal node
  92. * UBIFS_LPT_LTAB: LPT's own lprops table
  93. * UBIFS_LPT_LSAVE: LPT's save table (big model only)
  94. * UBIFS_LPT_NODE_CNT: count of LPT node types
  95. * UBIFS_LPT_NOT_A_NODE: all ones (15 for 4 bits) is never a valid node type
  96. */
  97. enum {
  98. UBIFS_LPT_PNODE,
  99. UBIFS_LPT_NNODE,
  100. UBIFS_LPT_LTAB,
  101. UBIFS_LPT_LSAVE,
  102. UBIFS_LPT_NODE_CNT,
  103. UBIFS_LPT_NOT_A_NODE = (1 << UBIFS_LPT_TYPE_BITS) - 1,
  104. };
  105. /*
  106. * UBIFS inode types.
  107. *
  108. * UBIFS_ITYPE_REG: regular file
  109. * UBIFS_ITYPE_DIR: directory
  110. * UBIFS_ITYPE_LNK: soft link
  111. * UBIFS_ITYPE_BLK: block device node
  112. * UBIFS_ITYPE_CHR: character device node
  113. * UBIFS_ITYPE_FIFO: fifo
  114. * UBIFS_ITYPE_SOCK: socket
  115. * UBIFS_ITYPES_CNT: count of supported file types
  116. */
  117. enum {
  118. UBIFS_ITYPE_REG,
  119. UBIFS_ITYPE_DIR,
  120. UBIFS_ITYPE_LNK,
  121. UBIFS_ITYPE_BLK,
  122. UBIFS_ITYPE_CHR,
  123. UBIFS_ITYPE_FIFO,
  124. UBIFS_ITYPE_SOCK,
  125. UBIFS_ITYPES_CNT,
  126. };
  127. /*
  128. * Supported key hash functions.
  129. *
  130. * UBIFS_KEY_HASH_R5: R5 hash
  131. * UBIFS_KEY_HASH_TEST: test hash which just returns first 4 bytes of the name
  132. */
  133. enum {
  134. UBIFS_KEY_HASH_R5,
  135. UBIFS_KEY_HASH_TEST,
  136. };
  137. /*
  138. * Supported key formats.
  139. *
  140. * UBIFS_SIMPLE_KEY_FMT: simple key format
  141. */
  142. enum {
  143. UBIFS_SIMPLE_KEY_FMT,
  144. };
  145. /*
  146. * The simple key format uses 29 bits for storing UBIFS block number and hash
  147. * value.
  148. */
  149. #define UBIFS_S_KEY_BLOCK_BITS 29
  150. #define UBIFS_S_KEY_BLOCK_MASK 0x1FFFFFFF
  151. #define UBIFS_S_KEY_HASH_BITS UBIFS_S_KEY_BLOCK_BITS
  152. #define UBIFS_S_KEY_HASH_MASK UBIFS_S_KEY_BLOCK_MASK
  153. /*
  154. * Key types.
  155. *
  156. * UBIFS_INO_KEY: inode node key
  157. * UBIFS_DATA_KEY: data node key
  158. * UBIFS_DENT_KEY: directory entry node key
  159. * UBIFS_XENT_KEY: extended attribute entry key
  160. * UBIFS_KEY_TYPES_CNT: number of supported key types
  161. */
  162. enum {
  163. UBIFS_INO_KEY,
  164. UBIFS_DATA_KEY,
  165. UBIFS_DENT_KEY,
  166. UBIFS_XENT_KEY,
  167. UBIFS_KEY_TYPES_CNT,
  168. };
  169. /* Count of LEBs reserved for the superblock area */
  170. #define UBIFS_SB_LEBS 1
  171. /* Count of LEBs reserved for the master area */
  172. #define UBIFS_MST_LEBS 2
  173. /* First LEB of the superblock area */
  174. #define UBIFS_SB_LNUM 0
  175. /* First LEB of the master area */
  176. #define UBIFS_MST_LNUM (UBIFS_SB_LNUM + UBIFS_SB_LEBS)
  177. /* First LEB of the log area */
  178. #define UBIFS_LOG_LNUM (UBIFS_MST_LNUM + UBIFS_MST_LEBS)
  179. /*
  180. * The below constants define the absolute minimum values for various UBIFS
  181. * media areas. Many of them actually depend of flash geometry and the FS
  182. * configuration (number of journal heads, orphan LEBs, etc). This means that
  183. * the smallest volume size which can be used for UBIFS cannot be pre-defined
  184. * by these constants. The file-system that meets the below limitation will not
  185. * necessarily mount. UBIFS does run-time calculations and validates the FS
  186. * size.
  187. */
  188. /* Minimum number of logical eraseblocks in the log */
  189. #define UBIFS_MIN_LOG_LEBS 2
  190. /* Minimum number of bud logical eraseblocks (one for each head) */
  191. #define UBIFS_MIN_BUD_LEBS 3
  192. /* Minimum number of journal logical eraseblocks */
  193. #define UBIFS_MIN_JNL_LEBS (UBIFS_MIN_LOG_LEBS + UBIFS_MIN_BUD_LEBS)
  194. /* Minimum number of LPT area logical eraseblocks */
  195. #define UBIFS_MIN_LPT_LEBS 2
  196. /* Minimum number of orphan area logical eraseblocks */
  197. #define UBIFS_MIN_ORPH_LEBS 1
  198. /*
  199. * Minimum number of main area logical eraseblocks (buds, 3 for the index, 1
  200. * for GC, 1 for deletions, and at least 1 for committed data).
  201. */
  202. #define UBIFS_MIN_MAIN_LEBS (UBIFS_MIN_BUD_LEBS + 6)
  203. /* Minimum number of logical eraseblocks */
  204. #define UBIFS_MIN_LEB_CNT (UBIFS_SB_LEBS + UBIFS_MST_LEBS + \
  205. UBIFS_MIN_LOG_LEBS + UBIFS_MIN_LPT_LEBS + \
  206. UBIFS_MIN_ORPH_LEBS + UBIFS_MIN_MAIN_LEBS)
  207. /* Node sizes (N.B. these are guaranteed to be multiples of 8) */
  208. #define UBIFS_CH_SZ sizeof(struct ubifs_ch)
  209. #define UBIFS_INO_NODE_SZ sizeof(struct ubifs_ino_node)
  210. #define UBIFS_DATA_NODE_SZ sizeof(struct ubifs_data_node)
  211. #define UBIFS_DENT_NODE_SZ sizeof(struct ubifs_dent_node)
  212. #define UBIFS_TRUN_NODE_SZ sizeof(struct ubifs_trun_node)
  213. #define UBIFS_PAD_NODE_SZ sizeof(struct ubifs_pad_node)
  214. #define UBIFS_SB_NODE_SZ sizeof(struct ubifs_sb_node)
  215. #define UBIFS_MST_NODE_SZ sizeof(struct ubifs_mst_node)
  216. #define UBIFS_REF_NODE_SZ sizeof(struct ubifs_ref_node)
  217. #define UBIFS_IDX_NODE_SZ sizeof(struct ubifs_idx_node)
  218. #define UBIFS_CS_NODE_SZ sizeof(struct ubifs_cs_node)
  219. #define UBIFS_ORPH_NODE_SZ sizeof(struct ubifs_orph_node)
  220. /* Extended attribute entry nodes are identical to directory entry nodes */
  221. #define UBIFS_XENT_NODE_SZ UBIFS_DENT_NODE_SZ
  222. /* Only this does not have to be multiple of 8 bytes */
  223. #define UBIFS_BRANCH_SZ sizeof(struct ubifs_branch)
  224. /* Maximum node sizes (N.B. these are guaranteed to be multiples of 8) */
  225. #define UBIFS_MAX_DATA_NODE_SZ (UBIFS_DATA_NODE_SZ + UBIFS_BLOCK_SIZE)
  226. #define UBIFS_MAX_INO_NODE_SZ (UBIFS_INO_NODE_SZ + UBIFS_MAX_INO_DATA)
  227. #define UBIFS_MAX_DENT_NODE_SZ (UBIFS_DENT_NODE_SZ + UBIFS_MAX_NLEN + 1)
  228. #define UBIFS_MAX_XENT_NODE_SZ UBIFS_MAX_DENT_NODE_SZ
  229. /* The largest UBIFS node */
  230. #define UBIFS_MAX_NODE_SZ UBIFS_MAX_INO_NODE_SZ
  231. /*
  232. * On-flash inode flags.
  233. *
  234. * UBIFS_COMPR_FL: use compression for this inode
  235. * UBIFS_SYNC_FL: I/O on this inode has to be synchronous
  236. * UBIFS_IMMUTABLE_FL: inode is immutable
  237. * UBIFS_APPEND_FL: writes to the inode may only append data
  238. * UBIFS_DIRSYNC_FL: I/O on this directory inode has to be synchronous
  239. * UBIFS_XATTR_FL: this inode is the inode for an extended attribute value
  240. *
  241. * Note, these are on-flash flags which correspond to ioctl flags
  242. * (@FS_COMPR_FL, etc). They have the same values now, but generally, do not
  243. * have to be the same.
  244. */
  245. enum {
  246. UBIFS_COMPR_FL = 0x01,
  247. UBIFS_SYNC_FL = 0x02,
  248. UBIFS_IMMUTABLE_FL = 0x04,
  249. UBIFS_APPEND_FL = 0x08,
  250. UBIFS_DIRSYNC_FL = 0x10,
  251. UBIFS_XATTR_FL = 0x20,
  252. };
  253. /* Inode flag bits used by UBIFS */
  254. #define UBIFS_FL_MASK 0x0000001F
  255. /*
  256. * UBIFS compression algorithms.
  257. *
  258. * UBIFS_COMPR_NONE: no compression
  259. * UBIFS_COMPR_LZO: LZO compression
  260. * UBIFS_COMPR_ZLIB: ZLIB compression
  261. * UBIFS_COMPR_TYPES_CNT: count of supported compression types
  262. */
  263. enum {
  264. UBIFS_COMPR_NONE,
  265. UBIFS_COMPR_LZO,
  266. UBIFS_COMPR_ZLIB,
  267. UBIFS_COMPR_TYPES_CNT,
  268. };
  269. /*
  270. * UBIFS node types.
  271. *
  272. * UBIFS_INO_NODE: inode node
  273. * UBIFS_DATA_NODE: data node
  274. * UBIFS_DENT_NODE: directory entry node
  275. * UBIFS_XENT_NODE: extended attribute node
  276. * UBIFS_TRUN_NODE: truncation node
  277. * UBIFS_PAD_NODE: padding node
  278. * UBIFS_SB_NODE: superblock node
  279. * UBIFS_MST_NODE: master node
  280. * UBIFS_REF_NODE: LEB reference node
  281. * UBIFS_IDX_NODE: index node
  282. * UBIFS_CS_NODE: commit start node
  283. * UBIFS_ORPH_NODE: orphan node
  284. * UBIFS_NODE_TYPES_CNT: count of supported node types
  285. *
  286. * Note, we index arrays by these numbers, so keep them low and contiguous.
  287. * Node type constants for inodes, direntries and so on have to be the same as
  288. * corresponding key type constants.
  289. */
  290. enum {
  291. UBIFS_INO_NODE,
  292. UBIFS_DATA_NODE,
  293. UBIFS_DENT_NODE,
  294. UBIFS_XENT_NODE,
  295. UBIFS_TRUN_NODE,
  296. UBIFS_PAD_NODE,
  297. UBIFS_SB_NODE,
  298. UBIFS_MST_NODE,
  299. UBIFS_REF_NODE,
  300. UBIFS_IDX_NODE,
  301. UBIFS_CS_NODE,
  302. UBIFS_ORPH_NODE,
  303. UBIFS_NODE_TYPES_CNT,
  304. };
  305. /*
  306. * Master node flags.
  307. *
  308. * UBIFS_MST_DIRTY: rebooted uncleanly - master node is dirty
  309. * UBIFS_MST_NO_ORPHS: no orphan inodes present
  310. * UBIFS_MST_RCVRY: written by recovery
  311. */
  312. enum {
  313. UBIFS_MST_DIRTY = 1,
  314. UBIFS_MST_NO_ORPHS = 2,
  315. UBIFS_MST_RCVRY = 4,
  316. };
  317. /*
  318. * Node group type (used by recovery to recover whole group or none).
  319. *
  320. * UBIFS_NO_NODE_GROUP: this node is not part of a group
  321. * UBIFS_IN_NODE_GROUP: this node is a part of a group
  322. * UBIFS_LAST_OF_NODE_GROUP: this node is the last in a group
  323. */
  324. enum {
  325. UBIFS_NO_NODE_GROUP = 0,
  326. UBIFS_IN_NODE_GROUP,
  327. UBIFS_LAST_OF_NODE_GROUP,
  328. };
  329. /*
  330. * Superblock flags.
  331. *
  332. * UBIFS_FLG_BIGLPT: if "big" LPT model is used if set
  333. */
  334. enum {
  335. UBIFS_FLG_BIGLPT = 0x02,
  336. };
  337. /**
  338. * struct ubifs_ch - common header node.
  339. * @magic: UBIFS node magic number (%UBIFS_NODE_MAGIC)
  340. * @crc: CRC-32 checksum of the node header
  341. * @sqnum: sequence number
  342. * @len: full node length
  343. * @node_type: node type
  344. * @group_type: node group type
  345. * @padding: reserved for future, zeroes
  346. *
  347. * Every UBIFS node starts with this common part. If the node has a key, the
  348. * key always goes next.
  349. */
  350. struct ubifs_ch {
  351. __le32 magic;
  352. __le32 crc;
  353. __le64 sqnum;
  354. __le32 len;
  355. __u8 node_type;
  356. __u8 group_type;
  357. __u8 padding[2];
  358. } __attribute__ ((packed));
  359. /**
  360. * union ubifs_dev_desc - device node descriptor.
  361. * @new: new type device descriptor
  362. * @huge: huge type device descriptor
  363. *
  364. * This data structure describes major/minor numbers of a device node. In an
  365. * inode is a device node then its data contains an object of this type. UBIFS
  366. * uses standard Linux "new" and "huge" device node encodings.
  367. */
  368. union ubifs_dev_desc {
  369. __le32 new;
  370. __le64 huge;
  371. } __attribute__ ((packed));
  372. /**
  373. * struct ubifs_ino_node - inode node.
  374. * @ch: common header
  375. * @key: node key
  376. * @creat_sqnum: sequence number at time of creation
  377. * @size: inode size in bytes (amount of uncompressed data)
  378. * @atime_sec: access time seconds
  379. * @ctime_sec: creation time seconds
  380. * @mtime_sec: modification time seconds
  381. * @atime_nsec: access time nanoseconds
  382. * @ctime_nsec: creation time nanoseconds
  383. * @mtime_nsec: modification time nanoseconds
  384. * @nlink: number of hard links
  385. * @uid: owner ID
  386. * @gid: group ID
  387. * @mode: access flags
  388. * @flags: per-inode flags (%UBIFS_COMPR_FL, %UBIFS_SYNC_FL, etc)
  389. * @data_len: inode data length
  390. * @xattr_cnt: count of extended attributes this inode has
  391. * @xattr_size: summarized size of all extended attributes in bytes
  392. * @padding1: reserved for future, zeroes
  393. * @xattr_names: sum of lengths of all extended attribute names belonging to
  394. * this inode
  395. * @compr_type: compression type used for this inode
  396. * @padding2: reserved for future, zeroes
  397. * @data: data attached to the inode
  398. *
  399. * Note, even though inode compression type is defined by @compr_type, some
  400. * nodes of this inode may be compressed with different compressor - this
  401. * happens if compression type is changed while the inode already has data
  402. * nodes. But @compr_type will be use for further writes to the inode.
  403. *
  404. * Note, do not forget to amend 'zero_ino_node_unused()' function when changing
  405. * the padding fields.
  406. */
  407. struct ubifs_ino_node {
  408. struct ubifs_ch ch;
  409. __u8 key[UBIFS_MAX_KEY_LEN];
  410. __le64 creat_sqnum;
  411. __le64 size;
  412. __le64 atime_sec;
  413. __le64 ctime_sec;
  414. __le64 mtime_sec;
  415. __le32 atime_nsec;
  416. __le32 ctime_nsec;
  417. __le32 mtime_nsec;
  418. __le32 nlink;
  419. __le32 uid;
  420. __le32 gid;
  421. __le32 mode;
  422. __le32 flags;
  423. __le32 data_len;
  424. __le32 xattr_cnt;
  425. __le32 xattr_size;
  426. __u8 padding1[4]; /* Watch 'zero_ino_node_unused()' if changing! */
  427. __le32 xattr_names;
  428. __le16 compr_type;
  429. __u8 padding2[26]; /* Watch 'zero_ino_node_unused()' if changing! */
  430. __u8 data[];
  431. } __attribute__ ((packed));
  432. /**
  433. * struct ubifs_dent_node - directory entry node.
  434. * @ch: common header
  435. * @key: node key
  436. * @inum: target inode number
  437. * @padding1: reserved for future, zeroes
  438. * @type: type of the target inode (%UBIFS_ITYPE_REG, %UBIFS_ITYPE_DIR, etc)
  439. * @nlen: name length
  440. * @padding2: reserved for future, zeroes
  441. * @name: zero-terminated name
  442. *
  443. * Note, do not forget to amend 'zero_dent_node_unused()' function when
  444. * changing the padding fields.
  445. */
  446. struct ubifs_dent_node {
  447. struct ubifs_ch ch;
  448. __u8 key[UBIFS_MAX_KEY_LEN];
  449. __le64 inum;
  450. __u8 padding1;
  451. __u8 type;
  452. __le16 nlen;
  453. __u8 padding2[4]; /* Watch 'zero_dent_node_unused()' if changing! */
  454. __u8 name[];
  455. } __attribute__ ((packed));
  456. /**
  457. * struct ubifs_data_node - data node.
  458. * @ch: common header
  459. * @key: node key
  460. * @size: uncompressed data size in bytes
  461. * @compr_type: compression type (%UBIFS_COMPR_NONE, %UBIFS_COMPR_LZO, etc)
  462. * @padding: reserved for future, zeroes
  463. * @data: data
  464. *
  465. * Note, do not forget to amend 'zero_data_node_unused()' function when
  466. * changing the padding fields.
  467. */
  468. struct ubifs_data_node {
  469. struct ubifs_ch ch;
  470. __u8 key[UBIFS_MAX_KEY_LEN];
  471. __le32 size;
  472. __le16 compr_type;
  473. __u8 padding[2]; /* Watch 'zero_data_node_unused()' if changing! */
  474. __u8 data[];
  475. } __attribute__ ((packed));
  476. /**
  477. * struct ubifs_trun_node - truncation node.
  478. * @ch: common header
  479. * @inum: truncated inode number
  480. * @padding: reserved for future, zeroes
  481. * @old_size: size before truncation
  482. * @new_size: size after truncation
  483. *
  484. * This node exists only in the journal and never goes to the main area. Note,
  485. * do not forget to amend 'zero_trun_node_unused()' function when changing the
  486. * padding fields.
  487. */
  488. struct ubifs_trun_node {
  489. struct ubifs_ch ch;
  490. __le32 inum;
  491. __u8 padding[12]; /* Watch 'zero_trun_node_unused()' if changing! */
  492. __le64 old_size;
  493. __le64 new_size;
  494. } __attribute__ ((packed));
  495. /**
  496. * struct ubifs_pad_node - padding node.
  497. * @ch: common header
  498. * @pad_len: how many bytes after this node are unused (because padded)
  499. * @padding: reserved for future, zeroes
  500. */
  501. struct ubifs_pad_node {
  502. struct ubifs_ch ch;
  503. __le32 pad_len;
  504. } __attribute__ ((packed));
  505. /**
  506. * struct ubifs_sb_node - superblock node.
  507. * @ch: common header
  508. * @padding: reserved for future, zeroes
  509. * @key_hash: type of hash function used in keys
  510. * @key_fmt: format of the key
  511. * @flags: file-system flags (%UBIFS_FLG_BIGLPT, etc)
  512. * @min_io_size: minimal input/output unit size
  513. * @leb_size: logical eraseblock size in bytes
  514. * @leb_cnt: count of LEBs used by file-system
  515. * @max_leb_cnt: maximum count of LEBs used by file-system
  516. * @max_bud_bytes: maximum amount of data stored in buds
  517. * @log_lebs: log size in logical eraseblocks
  518. * @lpt_lebs: number of LEBs used for lprops table
  519. * @orph_lebs: number of LEBs used for recording orphans
  520. * @jhead_cnt: count of journal heads
  521. * @fanout: tree fanout (max. number of links per indexing node)
  522. * @lsave_cnt: number of LEB numbers in LPT's save table
  523. * @fmt_version: UBIFS on-flash format version
  524. * @default_compr: default compression algorithm (%UBIFS_COMPR_LZO, etc)
  525. * @padding1: reserved for future, zeroes
  526. * @rp_uid: reserve pool UID
  527. * @rp_gid: reserve pool GID
  528. * @rp_size: size of the reserved pool in bytes
  529. * @padding2: reserved for future, zeroes
  530. * @time_gran: time granularity in nanoseconds
  531. * @uuid: UUID generated when the file system image was created
  532. */
  533. struct ubifs_sb_node {
  534. struct ubifs_ch ch;
  535. __u8 padding[2];
  536. __u8 key_hash;
  537. __u8 key_fmt;
  538. __le32 flags;
  539. __le32 min_io_size;
  540. __le32 leb_size;
  541. __le32 leb_cnt;
  542. __le32 max_leb_cnt;
  543. __le64 max_bud_bytes;
  544. __le32 log_lebs;
  545. __le32 lpt_lebs;
  546. __le32 orph_lebs;
  547. __le32 jhead_cnt;
  548. __le32 fanout;
  549. __le32 lsave_cnt;
  550. __le32 fmt_version;
  551. __le16 default_compr;
  552. __u8 padding1[2];
  553. __le32 rp_uid;
  554. __le32 rp_gid;
  555. __le64 rp_size;
  556. __le32 time_gran;
  557. __u8 uuid[16];
  558. __u8 padding2[3972];
  559. } __attribute__ ((packed));
  560. /**
  561. * struct ubifs_mst_node - master node.
  562. * @ch: common header
  563. * @highest_inum: highest inode number in the committed index
  564. * @cmt_no: commit number
  565. * @flags: various flags (%UBIFS_MST_DIRTY, etc)
  566. * @log_lnum: start of the log
  567. * @root_lnum: LEB number of the root indexing node
  568. * @root_offs: offset within @root_lnum
  569. * @root_len: root indexing node length
  570. * @gc_lnum: LEB reserved for garbage collection (%-1 value means the LEB was
  571. * not reserved and should be reserved on mount)
  572. * @ihead_lnum: LEB number of index head
  573. * @ihead_offs: offset of index head
  574. * @index_size: size of index on flash
  575. * @total_free: total free space in bytes
  576. * @total_dirty: total dirty space in bytes
  577. * @total_used: total used space in bytes (includes only data LEBs)
  578. * @total_dead: total dead space in bytes (includes only data LEBs)
  579. * @total_dark: total dark space in bytes (includes only data LEBs)
  580. * @lpt_lnum: LEB number of LPT root nnode
  581. * @lpt_offs: offset of LPT root nnode
  582. * @nhead_lnum: LEB number of LPT head
  583. * @nhead_offs: offset of LPT head
  584. * @ltab_lnum: LEB number of LPT's own lprops table
  585. * @ltab_offs: offset of LPT's own lprops table
  586. * @lsave_lnum: LEB number of LPT's save table (big model only)
  587. * @lsave_offs: offset of LPT's save table (big model only)
  588. * @lscan_lnum: LEB number of last LPT scan
  589. * @empty_lebs: number of empty logical eraseblocks
  590. * @idx_lebs: number of indexing logical eraseblocks
  591. * @leb_cnt: count of LEBs used by file-system
  592. * @padding: reserved for future, zeroes
  593. */
  594. struct ubifs_mst_node {
  595. struct ubifs_ch ch;
  596. __le64 highest_inum;
  597. __le64 cmt_no;
  598. __le32 flags;
  599. __le32 log_lnum;
  600. __le32 root_lnum;
  601. __le32 root_offs;
  602. __le32 root_len;
  603. __le32 gc_lnum;
  604. __le32 ihead_lnum;
  605. __le32 ihead_offs;
  606. __le64 index_size;
  607. __le64 total_free;
  608. __le64 total_dirty;
  609. __le64 total_used;
  610. __le64 total_dead;
  611. __le64 total_dark;
  612. __le32 lpt_lnum;
  613. __le32 lpt_offs;
  614. __le32 nhead_lnum;
  615. __le32 nhead_offs;
  616. __le32 ltab_lnum;
  617. __le32 ltab_offs;
  618. __le32 lsave_lnum;
  619. __le32 lsave_offs;
  620. __le32 lscan_lnum;
  621. __le32 empty_lebs;
  622. __le32 idx_lebs;
  623. __le32 leb_cnt;
  624. __u8 padding[344];
  625. } __attribute__ ((packed));
  626. /**
  627. * struct ubifs_ref_node - logical eraseblock reference node.
  628. * @ch: common header
  629. * @lnum: the referred logical eraseblock number
  630. * @offs: start offset in the referred LEB
  631. * @jhead: journal head number
  632. * @padding: reserved for future, zeroes
  633. */
  634. struct ubifs_ref_node {
  635. struct ubifs_ch ch;
  636. __le32 lnum;
  637. __le32 offs;
  638. __le32 jhead;
  639. __u8 padding[28];
  640. } __attribute__ ((packed));
  641. /**
  642. * struct ubifs_branch - key/reference/length branch
  643. * @lnum: LEB number of the target node
  644. * @offs: offset within @lnum
  645. * @len: target node length
  646. * @key: key
  647. */
  648. struct ubifs_branch {
  649. __le32 lnum;
  650. __le32 offs;
  651. __le32 len;
  652. __u8 key[];
  653. } __attribute__ ((packed));
  654. /**
  655. * struct ubifs_idx_node - indexing node.
  656. * @ch: common header
  657. * @child_cnt: number of child index nodes
  658. * @level: tree level
  659. * @branches: LEB number / offset / length / key branches
  660. */
  661. struct ubifs_idx_node {
  662. struct ubifs_ch ch;
  663. __le16 child_cnt;
  664. __le16 level;
  665. __u8 branches[];
  666. } __attribute__ ((packed));
  667. /**
  668. * struct ubifs_cs_node - commit start node.
  669. * @ch: common header
  670. * @cmt_no: commit number
  671. */
  672. struct ubifs_cs_node {
  673. struct ubifs_ch ch;
  674. __le64 cmt_no;
  675. } __attribute__ ((packed));
  676. /**
  677. * struct ubifs_orph_node - orphan node.
  678. * @ch: common header
  679. * @cmt_no: commit number (also top bit is set on the last node of the commit)
  680. * @inos: inode numbers of orphans
  681. */
  682. struct ubifs_orph_node {
  683. struct ubifs_ch ch;
  684. __le64 cmt_no;
  685. __le64 inos[];
  686. } __attribute__ ((packed));
  687. #endif /* __UBIFS_MEDIA_H__ */