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