Uma Shankar | a159643 | 2012-05-25 21:21:44 +0530 | [diff] [blame] | 1 | /* |
| 2 | * (C) Copyright 2011 - 2012 Samsung Electronics |
| 3 | * EXT4 filesystem implementation in Uboot by |
| 4 | * Uma Shankar <uma.shankar@samsung.com> |
| 5 | * Manjunatha C Achar <a.manjunatha@samsung.com> |
| 6 | * |
| 7 | * Ext4 Extent data structures are taken from original ext4 fs code |
| 8 | * as found in the linux kernel. |
| 9 | * |
| 10 | * Copyright (c) 2003-2006, Cluster File Systems, Inc, info@clusterfs.com |
| 11 | * Written by Alex Tomas <alex@clusterfs.com> |
| 12 | * |
| 13 | * This program is free software; you can redistribute it and/or modify |
| 14 | * it under the terms of the GNU General Public License version 2 as |
| 15 | * published by the Free Software Foundation. |
| 16 | * |
| 17 | * This program is distributed in the hope that it will be useful, |
| 18 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 19 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 20 | * GNU General Public License for more details. |
| 21 | * |
| 22 | * You should have received a copy of the GNU General Public License |
| 23 | * along with this program; if not, write to the Free Software |
| 24 | * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. |
| 25 | */ |
| 26 | |
| 27 | #ifndef __EXT4__ |
| 28 | #define __EXT4__ |
| 29 | #include <ext_common.h> |
| 30 | |
Stefan Brüns | 10a7a1b | 2016-09-06 04:36:45 +0200 | [diff] [blame] | 31 | #define EXT4_INDEX_FL 0x00001000 /* Inode uses hash tree index */ |
Uma Shankar | a159643 | 2012-05-25 21:21:44 +0530 | [diff] [blame] | 32 | #define EXT4_EXTENTS_FL 0x00080000 /* Inode uses extents */ |
| 33 | #define EXT4_EXT_MAGIC 0xf30a |
| 34 | #define EXT4_FEATURE_RO_COMPAT_GDT_CSUM 0x0010 |
Sébastien Szymanski | 2e73655 | 2019-03-22 09:33:52 +0100 | [diff] [blame] | 35 | #define EXT4_FEATURE_RO_COMPAT_METADATA_CSUM 0x0400 |
Uma Shankar | a159643 | 2012-05-25 21:21:44 +0530 | [diff] [blame] | 36 | #define EXT4_FEATURE_INCOMPAT_EXTENTS 0x0040 |
Tom Rini | 6f94ab6 | 2016-07-22 17:59:11 -0400 | [diff] [blame] | 37 | #define EXT4_FEATURE_INCOMPAT_64BIT 0x0080 |
Uma Shankar | a159643 | 2012-05-25 21:21:44 +0530 | [diff] [blame] | 38 | #define EXT4_INDIRECT_BLOCKS 12 |
| 39 | |
| 40 | #define EXT4_BG_INODE_UNINIT 0x0001 |
| 41 | #define EXT4_BG_BLOCK_UNINIT 0x0002 |
| 42 | #define EXT4_BG_INODE_ZEROED 0x0004 |
| 43 | |
| 44 | /* |
| 45 | * ext4_inode has i_block array (60 bytes total). |
| 46 | * The first 12 bytes store ext4_extent_header; |
| 47 | * the remainder stores an array of ext4_extent. |
| 48 | */ |
| 49 | |
| 50 | /* |
| 51 | * This is the extent on-disk structure. |
| 52 | * It's used at the bottom of the tree. |
| 53 | */ |
| 54 | struct ext4_extent { |
| 55 | __le32 ee_block; /* first logical block extent covers */ |
| 56 | __le16 ee_len; /* number of blocks covered by extent */ |
| 57 | __le16 ee_start_hi; /* high 16 bits of physical block */ |
| 58 | __le32 ee_start_lo; /* low 32 bits of physical block */ |
| 59 | }; |
| 60 | |
| 61 | /* |
| 62 | * This is index on-disk structure. |
| 63 | * It's used at all the levels except the bottom. |
| 64 | */ |
| 65 | struct ext4_extent_idx { |
| 66 | __le32 ei_block; /* index covers logical blocks from 'block' */ |
| 67 | __le32 ei_leaf_lo; /* pointer to the physical block of the next * |
| 68 | * level. leaf or next index could be there */ |
| 69 | __le16 ei_leaf_hi; /* high 16 bits of physical block */ |
| 70 | __u16 ei_unused; |
| 71 | }; |
| 72 | |
| 73 | /* Each block (leaves and indexes), even inode-stored has header. */ |
| 74 | struct ext4_extent_header { |
| 75 | __le16 eh_magic; /* probably will support different formats */ |
| 76 | __le16 eh_entries; /* number of valid entries */ |
| 77 | __le16 eh_max; /* capacity of store in entries */ |
| 78 | __le16 eh_depth; /* has tree real underlying blocks? */ |
| 79 | __le32 eh_generation; /* generation of the tree */ |
| 80 | }; |
| 81 | |
| 82 | struct ext_filesystem { |
| 83 | /* Total Sector of partition */ |
| 84 | uint64_t total_sect; |
| 85 | /* Block size of partition */ |
| 86 | uint32_t blksz; |
| 87 | /* Inode size of partition */ |
| 88 | uint32_t inodesz; |
| 89 | /* Sectors per Block */ |
| 90 | uint32_t sect_perblk; |
Stefan Brüns | fc214ef | 2016-09-17 02:10:07 +0200 | [diff] [blame] | 91 | /* Group Descriptor size */ |
| 92 | uint16_t gdsize; |
Uma Shankar | a159643 | 2012-05-25 21:21:44 +0530 | [diff] [blame] | 93 | /* Group Descriptor Block Number */ |
| 94 | uint32_t gdtable_blkno; |
| 95 | /* Total block groups of partition */ |
| 96 | uint32_t no_blkgrp; |
| 97 | /* No of blocks required for bgdtable */ |
| 98 | uint32_t no_blk_pergdt; |
| 99 | /* Superblock */ |
| 100 | struct ext2_sblock *sb; |
| 101 | /* Block group descritpor table */ |
Uma Shankar | a159643 | 2012-05-25 21:21:44 +0530 | [diff] [blame] | 102 | char *gdtable; |
| 103 | |
| 104 | /* Block Bitmap Related */ |
| 105 | unsigned char **blk_bmaps; |
| 106 | long int curr_blkno; |
| 107 | uint16_t first_pass_bbmap; |
| 108 | |
| 109 | /* Inode Bitmap Related */ |
| 110 | unsigned char **inode_bmaps; |
| 111 | int curr_inode_no; |
| 112 | uint16_t first_pass_ibmap; |
| 113 | |
| 114 | /* Journal Related */ |
| 115 | |
| 116 | /* Block Device Descriptor */ |
Simon Glass | 4101f68 | 2016-02-29 15:25:34 -0700 | [diff] [blame] | 117 | struct blk_desc *dev_desc; |
Uma Shankar | a159643 | 2012-05-25 21:21:44 +0530 | [diff] [blame] | 118 | }; |
| 119 | |
Stephen Warren | d5aee65 | 2019-01-30 12:58:05 -0700 | [diff] [blame] | 120 | struct ext_block_cache { |
| 121 | char *buf; |
| 122 | lbaint_t block; |
| 123 | int size; |
| 124 | }; |
| 125 | |
Uma Shankar | a159643 | 2012-05-25 21:21:44 +0530 | [diff] [blame] | 126 | extern struct ext2_data *ext4fs_root; |
| 127 | extern struct ext2fs_node *ext4fs_file; |
| 128 | |
Stephen Warren | 03e2ecf | 2012-10-22 06:43:50 +0000 | [diff] [blame] | 129 | #if defined(CONFIG_EXT4_WRITE) |
Uma Shankar | ed34f34 | 2012-05-25 21:22:49 +0530 | [diff] [blame] | 130 | extern struct ext2_inode *g_parent_inode; |
| 131 | extern int gd_index; |
| 132 | extern int gindex; |
| 133 | |
| 134 | int ext4fs_init(void); |
| 135 | void ext4fs_deinit(void); |
Stefan Brüns | 76a2951 | 2016-09-06 04:36:41 +0200 | [diff] [blame] | 136 | int ext4fs_filename_unlink(char *filename); |
Jean-Jacques Hiblot | b000180 | 2019-02-13 12:15:24 +0100 | [diff] [blame] | 137 | int ext4fs_write(const char *fname, const char *buffer, |
Jean-Jacques Hiblot | 5efc068 | 2019-02-13 12:15:25 +0100 | [diff] [blame] | 138 | unsigned long sizebytes, int type); |
Suriyan Ramasami | 9f12cd0 | 2014-11-17 14:39:36 -0800 | [diff] [blame] | 139 | int ext4_write_file(const char *filename, void *buf, loff_t offset, loff_t len, |
| 140 | loff_t *actwrite); |
Jean-Jacques Hiblot | 5efc068 | 2019-02-13 12:15:25 +0100 | [diff] [blame] | 141 | int ext4fs_create_link(const char *target, const char *fname); |
Uma Shankar | ed34f34 | 2012-05-25 21:22:49 +0530 | [diff] [blame] | 142 | #endif |
| 143 | |
Uma Shankar | a159643 | 2012-05-25 21:21:44 +0530 | [diff] [blame] | 144 | struct ext_filesystem *get_fs(void); |
Suriyan Ramasami | 9f12cd0 | 2014-11-17 14:39:36 -0800 | [diff] [blame] | 145 | int ext4fs_open(const char *filename, loff_t *len); |
Stefan Brüns | 66a47ff | 2016-11-06 18:33:57 +0100 | [diff] [blame] | 146 | int ext4fs_read(char *buf, loff_t offset, loff_t len, loff_t *actread); |
Uma Shankar | a159643 | 2012-05-25 21:21:44 +0530 | [diff] [blame] | 147 | int ext4fs_mount(unsigned part_length); |
| 148 | void ext4fs_close(void); |
Łukasz Majewski | 8b454ee | 2014-05-06 09:36:05 +0200 | [diff] [blame] | 149 | void ext4fs_reinit_global(void); |
Uma Shankar | a159643 | 2012-05-25 21:21:44 +0530 | [diff] [blame] | 150 | int ext4fs_ls(const char *dirname); |
Stephen Warren | 55af5c9 | 2014-02-03 13:21:09 -0700 | [diff] [blame] | 151 | int ext4fs_exists(const char *filename); |
Suriyan Ramasami | d455d87 | 2014-11-17 14:39:38 -0800 | [diff] [blame] | 152 | int ext4fs_size(const char *filename, loff_t *size); |
Uma Shankar | a159643 | 2012-05-25 21:21:44 +0530 | [diff] [blame] | 153 | void ext4fs_free_node(struct ext2fs_node *node, struct ext2fs_node *currroot); |
Frederic Leroy | 04735e9 | 2013-06-26 18:11:25 +0200 | [diff] [blame] | 154 | int ext4fs_devread(lbaint_t sector, int byte_offset, int byte_len, char *buf); |
Simon Glass | 4101f68 | 2016-02-29 15:25:34 -0700 | [diff] [blame] | 155 | void ext4fs_set_blk_dev(struct blk_desc *rbdd, disk_partition_t *info); |
Stephen Warren | d5aee65 | 2019-01-30 12:58:05 -0700 | [diff] [blame] | 156 | long int read_allocated_block(struct ext2_inode *inode, int fileblock, |
| 157 | struct ext_block_cache *cache); |
Simon Glass | 4101f68 | 2016-02-29 15:25:34 -0700 | [diff] [blame] | 158 | int ext4fs_probe(struct blk_desc *fs_dev_desc, |
Simon Glass | e6d5241 | 2012-12-26 09:53:33 +0000 | [diff] [blame] | 159 | disk_partition_t *fs_partition); |
Suriyan Ramasami | d455d87 | 2014-11-17 14:39:38 -0800 | [diff] [blame] | 160 | int ext4_read_file(const char *filename, void *buf, loff_t offset, loff_t len, |
| 161 | loff_t *actread); |
Egbert Eich | 50ce4c0 | 2013-05-01 01:13:19 +0000 | [diff] [blame] | 162 | int ext4_read_superblock(char *buffer); |
Christian Gmeiner | 59e890e | 2014-11-12 14:35:04 +0100 | [diff] [blame] | 163 | int ext4fs_uuid(char *uuid_str); |
Stephen Warren | d5aee65 | 2019-01-30 12:58:05 -0700 | [diff] [blame] | 164 | void ext_cache_init(struct ext_block_cache *cache); |
| 165 | void ext_cache_fini(struct ext_block_cache *cache); |
| 166 | int ext_cache_read(struct ext_block_cache *cache, lbaint_t block, int size); |
Uma Shankar | a159643 | 2012-05-25 21:21:44 +0530 | [diff] [blame] | 167 | #endif |