1 /* SPDX-License-Identifier: GPL-2.0+ */
3 * (C) Copyright 2011 - 2012 Samsung Electronics
4 * EXT4 filesystem implementation in Uboot by
5 * Uma Shankar <uma.shankar@samsung.com>
6 * Manjunatha C Achar <a.manjunatha@samsung.com>
8 * Data structures and headers for ext4 support have been taken from
9 * ext2 ls load support in Uboot
12 * esd gmbh <www.esd-electronics.com>
13 * Reinhard Arlt <reinhard.arlt@esd-electronics.com>
15 * based on code from grub2 fs/ext2.c and fs/fshelp.c by
16 * GRUB -- GRand Unified Bootloader
17 * Copyright (C) 2003, 2004 Free Software Foundation, Inc.
20 #ifndef __EXT_COMMON__
21 #define __EXT_COMMON__
27 #define SECTOR_SIZE 0x200
28 #define LOG2_SECTOR_SIZE 9
30 /* Magic value used to identify an ext2 filesystem. */
31 #define EXT2_MAGIC 0xEF53
32 /* Amount of indirect blocks in an inode. */
33 #define INDIRECT_BLOCKS 12
34 /* Maximum lenght of a pathname. */
35 #define EXT2_PATH_MAX 4096
36 /* Maximum nesting of symlinks, used to prevent a loop. */
37 #define EXT2_MAX_SYMLINKCNT 8
38 /* Maximum file name length */
39 #define EXT2_NAME_LEN 255
44 #define EXT2_GOOD_OLD_REV 0 /* The good old (original) format */
45 #define EXT2_DYNAMIC_REV 1 /* V2 format w/ dynamic inode sizes */
47 #define EXT2_GOOD_OLD_INODE_SIZE 128
49 /* Filetype used in directory entry. */
50 #define FILETYPE_UNKNOWN 0
51 #define FILETYPE_REG 1
52 #define FILETYPE_DIRECTORY 2
53 #define FILETYPE_SYMLINK 7
55 /* Filetype information as used in inodes. */
56 #define FILETYPE_INO_MASK 0170000
57 #define FILETYPE_INO_REG 0100000
58 #define FILETYPE_INO_DIRECTORY 0040000
59 #define FILETYPE_INO_SYMLINK 0120000
60 #define EXT2_ROOT_INO 2 /* Root inode */
61 #define EXT2_BOOT_LOADER_INO 5 /* Boot loader inode */
63 /* First non-reserved inode for old ext2 filesystems */
64 #define EXT2_GOOD_OLD_FIRST_INO 11
66 /* The size of an ext2 block in bytes. */
67 #define EXT2_BLOCK_SIZE(data) (1 << LOG2_BLOCK_SIZE(data))
69 /* Log2 size of ext2 block in bytes. */
70 #define LOG2_BLOCK_SIZE(data) (le32_to_cpu \
71 (data->sblock.log2_block_size) \
72 + EXT2_MIN_BLOCK_LOG_SIZE)
77 /* Macro-instructions used to manage several block sizes */
78 #define EXT2_MIN_BLOCK_LOG_SIZE 10 /* 1024 */
79 #define EXT2_MAX_BLOCK_LOG_SIZE 16 /* 65536 */
80 #define EXT2_MIN_BLOCK_SIZE (1 << EXT2_MIN_BLOCK_LOG_SIZE)
81 #define EXT2_MAX_BLOCK_SIZE (1 << EXT2_MAX_BLOCK_LOG_SIZE)
83 /* The ext2 superblock. */
87 __le32 reserved_blocks
;
90 __le32 first_data_block
;
91 __le32 log2_block_size
;
92 __le32 log2_fragment_size
;
93 __le32 blocks_per_group
;
94 __le32 fragments_per_group
;
95 __le32 inodes_per_group
;
102 __le16 error_handling
;
103 __le16 minor_revision_level
;
105 __le32 checkinterval
;
107 __le32 revision_level
;
112 __le16 block_group_number
;
113 __le32 feature_compatibility
;
114 __le32 feature_incompat
;
115 __le32 feature_ro_compat
;
117 char volume_name
[16];
118 char last_mounted_on
[64];
119 __le32 compression_info
;
120 uint8_t prealloc_blocks
;
121 uint8_t prealloc_dir_blocks
;
122 __le16 reserved_gdt_blocks
;
123 uint8_t journal_uuid
[16];
124 __le32 journal_inode
;
128 uint8_t default_hash_version
;
129 uint8_t journal_backup_type
;
130 __le16 descriptor_size
;
131 __le32 default_mount_options
;
132 __le32 first_meta_block_group
;
134 __le32 journal_blocks
[17];
135 __le32 total_blocks_high
;
136 __le32 reserved_blocks_high
;
137 __le32 free_blocks_high
;
138 __le16 min_extra_inode_size
;
139 __le16 want_extra_inode_size
;
144 __le32 raid_stripe_width
;
145 uint8_t log2_groups_per_flex
;
146 uint8_t checksum_type
;
149 struct ext2_block_group
{
150 __le32 block_id
; /* Blocks bitmap block */
151 __le32 inode_id
; /* Inodes bitmap block */
152 __le32 inode_table_id
; /* Inodes table block */
153 __le16 free_blocks
; /* Free blocks count */
154 __le16 free_inodes
; /* Free inodes count */
155 __le16 used_dir_cnt
; /* Directories count */
157 __le32 bg_exclude_bitmap
;
158 __le16 bg_block_id_csum
;
159 __le16 bg_inode_id_csum
;
160 __le16 bg_itable_unused
; /* Unused inodes count */
161 __le16 bg_checksum
; /* crc16(s_uuid+group_num+group_desc)*/
162 /* following fields only exist if descriptor size is 64 */
163 __le32 block_id_high
;
164 __le32 inode_id_high
;
165 __le32 inode_table_id_high
;
166 __le16 free_blocks_high
;
167 __le16 free_inodes_high
;
168 __le16 used_dir_cnt_high
;
169 __le16 bg_itable_unused_high
;
170 __le32 bg_exclude_bitmap_high
;
171 __le16 bg_block_id_csum_high
;
172 __le16 bg_inode_id_csum_high
;
177 * struct ext2_inode - ext2 inode
179 * For details see Linux file
180 * Documentation/filesystems/ext4/inodes.rst.
183 /** @mode: file mode */
185 /** @uid: lower 16 bits of owner UID */
187 /** @size: lower 32 bits of file size */
189 /** @atime: last access time */
191 /** @ctime: last change time */
193 /** @mtime: last modification time */
195 /** @dtime: deletion time */
197 /** @gid: lower 16 bits of group ID */
199 /** @nlinks: number of hard links */
201 /** @blockcnt: lower 32 bit of block count */
203 /** @flags: inode flags */
205 /** @osd1: operating system specific data */
207 /** @b: block map or extent tree */
210 __le32 dir_blocks
[INDIRECT_BLOCKS
];
212 __le32 double_indir_block
;
213 __le32 triple_indir_block
;
216 char inline_data
[60];
218 /** @version: file version (for NFS) */
220 /** @acl: lower 32 bit of extended attribute block */
222 /** @size_high - dir_acl on ext2/3, upper 32 size bits on ext4
224 * In ext2/3 this field was named i_dir_acl, though it was usually set
225 * to zero and never used.
228 /** @fragment_addr - (obsolete) fragment address */
229 __le32 fragment_addr
;
230 /** @osd2: operating system specific data */
234 /* The header of an ext2 directory entry. */
243 struct ext2_data
*data
;
244 struct ext2_inode inode
;
249 /* Information about a "mounted" ext2 filesystem. */
251 struct ext2_sblock sblock
;
252 struct ext2_inode
*inode
;
253 struct ext2fs_node diropen
;
256 extern lbaint_t part_offset
;
258 int do_ext2ls(struct cmd_tbl
*cmdtp
, int flag
, int argc
, char *const argv
[]);
259 int do_ext2load(struct cmd_tbl
*cmdtp
, int flag
, int argc
, char *const argv
[]);
260 int do_ext4_load(struct cmd_tbl
*cmdtp
, int flag
, int argc
,
262 int do_ext4_ls(struct cmd_tbl
*cmdtp
, int flag
, int argc
, char *const argv
[]);
263 int do_ext4_write(struct cmd_tbl
*cmdtp
, int flag
, int argc
,