blob: 1c616a26a272ba7c15736b317bbd9f50a2524dbe [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Uma Shankara1596432012-05-25 21:21:44 +05302/*
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>
7 *
8 * ext4ls and ext4load : Based on ext2 ls and load support in Uboot.
9 * Ext4 read optimization taken from Open-Moko
10 * Qi bootloader
11 *
12 * (C) Copyright 2004
13 * esd gmbh <www.esd-electronics.com>
14 * Reinhard Arlt <reinhard.arlt@esd-electronics.com>
15 *
16 * based on code from grub2 fs/ext2.c and fs/fshelp.c by
17 * GRUB -- GRand Unified Bootloader
18 * Copyright (C) 2003, 2004 Free Software Foundation, Inc.
19 *
Uma Shankared34f342012-05-25 21:22:49 +053020 * ext4write : Based on generic ext4 protocol.
Uma Shankara1596432012-05-25 21:21:44 +053021 */
22
23#include <common.h>
Uma Shankara1596432012-05-25 21:21:44 +053024#include <ext_common.h>
25#include <ext4fs.h>
Uma Shankara1596432012-05-25 21:21:44 +053026#include "ext4_common.h"
Tom Rini9e374e72014-11-24 11:50:46 -050027#include <div64.h>
Simon Glass336d4612020-02-03 07:36:16 -070028#include <malloc.h>
Uma Shankara1596432012-05-25 21:21:44 +053029
30int ext4fs_symlinknest;
Rob Herring94501062012-08-23 11:31:45 +000031struct ext_filesystem ext_fs;
Uma Shankara1596432012-05-25 21:21:44 +053032
33struct ext_filesystem *get_fs(void)
34{
Rob Herring94501062012-08-23 11:31:45 +000035 return &ext_fs;
Uma Shankara1596432012-05-25 21:21:44 +053036}
37
38void ext4fs_free_node(struct ext2fs_node *node, struct ext2fs_node *currroot)
39{
40 if ((node != &ext4fs_root->diropen) && (node != currroot))
41 free(node);
42}
43
44/*
45 * Taken from openmoko-kernel mailing list: By Andy green
46 * Optimized read file API : collects and defers contiguous sector
47 * reads into one potentially more efficient larger sequential read action
48 */
Suriyan Ramasami9f12cd02014-11-17 14:39:36 -080049int ext4fs_read_file(struct ext2fs_node *node, loff_t pos,
50 loff_t len, char *buf, loff_t *actread)
Uma Shankara1596432012-05-25 21:21:44 +053051{
Egbert Eich50ce4c02013-05-01 01:13:19 +000052 struct ext_filesystem *fs = get_fs();
Uma Shankara1596432012-05-25 21:21:44 +053053 int i;
Frederic Leroy04735e92013-06-26 18:11:25 +020054 lbaint_t blockcnt;
Egbert Eich50ce4c02013-05-01 01:13:19 +000055 int log2blksz = fs->dev_desc->log2blksz;
56 int log2_fs_blocksize = LOG2_BLOCK_SIZE(node->data) - log2blksz;
57 int blocksize = (1 << (log2_fs_blocksize + log2blksz));
Michael Walle7f101be2016-08-29 10:46:44 +020058 unsigned int filesize = le32_to_cpu(node->inode.size);
Frederic Leroy04735e92013-06-26 18:11:25 +020059 lbaint_t previous_block_number = -1;
60 lbaint_t delayed_start = 0;
61 lbaint_t delayed_extent = 0;
62 lbaint_t delayed_skipfirst = 0;
63 lbaint_t delayed_next = 0;
Uma Shankara1596432012-05-25 21:21:44 +053064 char *delayed_buf = NULL;
Paul Emgee2058962019-07-08 16:37:07 -070065 char *start_buf = buf;
Uma Shankara1596432012-05-25 21:21:44 +053066 short status;
Stephen Warrend5aee652019-01-30 12:58:05 -070067 struct ext_block_cache cache;
68
69 ext_cache_init(&cache);
Uma Shankara1596432012-05-25 21:21:44 +053070
71 /* Adjust len so it we can't read past the end of the file. */
Stefan Brüns66a47ff2016-11-06 18:33:57 +010072 if (len + pos > filesize)
73 len = (filesize - pos);
Uma Shankara1596432012-05-25 21:21:44 +053074
Paul Emge878269d2019-07-08 16:37:05 -070075 if (blocksize <= 0 || len <= 0) {
76 ext_cache_fini(&cache);
77 return -1;
78 }
79
Tom Rini9e374e72014-11-24 11:50:46 -050080 blockcnt = lldiv(((len + pos) + blocksize - 1), blocksize);
Uma Shankara1596432012-05-25 21:21:44 +053081
Tom Rini9e374e72014-11-24 11:50:46 -050082 for (i = lldiv(pos, blocksize); i < blockcnt; i++) {
Lokesh Vutla509b4982017-04-26 16:58:22 +053083 long int blknr;
Tom Rini9e374e72014-11-24 11:50:46 -050084 int blockoff = pos - (blocksize * i);
Uma Shankara1596432012-05-25 21:21:44 +053085 int blockend = blocksize;
86 int skipfirst = 0;
Stephen Warrend5aee652019-01-30 12:58:05 -070087 blknr = read_allocated_block(&node->inode, i, &cache);
88 if (blknr < 0) {
89 ext_cache_fini(&cache);
Tom Rini715b56f2014-02-26 08:18:58 -050090 return -1;
Stephen Warrend5aee652019-01-30 12:58:05 -070091 }
Uma Shankara1596432012-05-25 21:21:44 +053092
Egbert Eich50ce4c02013-05-01 01:13:19 +000093 blknr = blknr << log2_fs_blocksize;
Uma Shankara1596432012-05-25 21:21:44 +053094
95 /* Last block. */
96 if (i == blockcnt - 1) {
Tom Rini9e374e72014-11-24 11:50:46 -050097 blockend = (len + pos) - (blocksize * i);
Uma Shankara1596432012-05-25 21:21:44 +053098
99 /* The last portion is exactly blocksize. */
100 if (!blockend)
101 blockend = blocksize;
102 }
103
104 /* First block. */
Tom Rini9e374e72014-11-24 11:50:46 -0500105 if (i == lldiv(pos, blocksize)) {
Uma Shankara1596432012-05-25 21:21:44 +0530106 skipfirst = blockoff;
107 blockend -= skipfirst;
108 }
109 if (blknr) {
110 int status;
111
112 if (previous_block_number != -1) {
113 if (delayed_next == blknr) {
114 delayed_extent += blockend;
Egbert Eich50ce4c02013-05-01 01:13:19 +0000115 delayed_next += blockend >> log2blksz;
Uma Shankara1596432012-05-25 21:21:44 +0530116 } else { /* spill */
117 status = ext4fs_devread(delayed_start,
118 delayed_skipfirst,
119 delayed_extent,
120 delayed_buf);
Stephen Warrend5aee652019-01-30 12:58:05 -0700121 if (status == 0) {
122 ext_cache_fini(&cache);
Tom Rini715b56f2014-02-26 08:18:58 -0500123 return -1;
Stephen Warrend5aee652019-01-30 12:58:05 -0700124 }
Uma Shankara1596432012-05-25 21:21:44 +0530125 previous_block_number = blknr;
126 delayed_start = blknr;
127 delayed_extent = blockend;
128 delayed_skipfirst = skipfirst;
129 delayed_buf = buf;
130 delayed_next = blknr +
Egbert Eich50ce4c02013-05-01 01:13:19 +0000131 (blockend >> log2blksz);
Uma Shankara1596432012-05-25 21:21:44 +0530132 }
133 } else {
134 previous_block_number = blknr;
135 delayed_start = blknr;
136 delayed_extent = blockend;
137 delayed_skipfirst = skipfirst;
138 delayed_buf = buf;
139 delayed_next = blknr +
Egbert Eich50ce4c02013-05-01 01:13:19 +0000140 (blockend >> log2blksz);
Uma Shankara1596432012-05-25 21:21:44 +0530141 }
142 } else {
Ian Rayecdfb412017-11-08 15:35:10 +0000143 int n;
Paul Emgee2058962019-07-08 16:37:07 -0700144 int n_left;
Uma Shankara1596432012-05-25 21:21:44 +0530145 if (previous_block_number != -1) {
146 /* spill */
147 status = ext4fs_devread(delayed_start,
148 delayed_skipfirst,
149 delayed_extent,
150 delayed_buf);
Stephen Warrend5aee652019-01-30 12:58:05 -0700151 if (status == 0) {
152 ext_cache_fini(&cache);
Tom Rini715b56f2014-02-26 08:18:58 -0500153 return -1;
Stephen Warrend5aee652019-01-30 12:58:05 -0700154 }
Uma Shankara1596432012-05-25 21:21:44 +0530155 previous_block_number = -1;
156 }
Ian Rayecdfb412017-11-08 15:35:10 +0000157 /* Zero no more than `len' bytes. */
158 n = blocksize - skipfirst;
Paul Emgee2058962019-07-08 16:37:07 -0700159 n_left = len - ( buf - start_buf );
160 if (n > n_left)
161 n = n_left;
Ian Rayecdfb412017-11-08 15:35:10 +0000162 memset(buf, 0, n);
Uma Shankara1596432012-05-25 21:21:44 +0530163 }
164 buf += blocksize - skipfirst;
165 }
166 if (previous_block_number != -1) {
167 /* spill */
168 status = ext4fs_devread(delayed_start,
169 delayed_skipfirst, delayed_extent,
170 delayed_buf);
Stephen Warrend5aee652019-01-30 12:58:05 -0700171 if (status == 0) {
172 ext_cache_fini(&cache);
Tom Rini715b56f2014-02-26 08:18:58 -0500173 return -1;
Stephen Warrend5aee652019-01-30 12:58:05 -0700174 }
Uma Shankara1596432012-05-25 21:21:44 +0530175 previous_block_number = -1;
176 }
177
Suriyan Ramasami9f12cd02014-11-17 14:39:36 -0800178 *actread = len;
Stephen Warrend5aee652019-01-30 12:58:05 -0700179 ext_cache_fini(&cache);
Suriyan Ramasami9f12cd02014-11-17 14:39:36 -0800180 return 0;
Uma Shankara1596432012-05-25 21:21:44 +0530181}
182
183int ext4fs_ls(const char *dirname)
184{
Eugen Hristeve71a9692018-05-09 16:28:37 +0300185 struct ext2fs_node *dirnode = NULL;
Uma Shankara1596432012-05-25 21:21:44 +0530186 int status;
187
188 if (dirname == NULL)
189 return 0;
190
191 status = ext4fs_find_file(dirname, &ext4fs_root->diropen, &dirnode,
192 FILETYPE_DIRECTORY);
193 if (status != 1) {
194 printf("** Can not find directory. **\n");
Eugen Hristeve71a9692018-05-09 16:28:37 +0300195 if (dirnode)
196 ext4fs_free_node(dirnode, &ext4fs_root->diropen);
Uma Shankara1596432012-05-25 21:21:44 +0530197 return 1;
198 }
199
200 ext4fs_iterate_dir(dirnode, NULL, NULL, NULL);
201 ext4fs_free_node(dirnode, &ext4fs_root->diropen);
202
203 return 0;
204}
205
Stephen Warren55af5c92014-02-03 13:21:09 -0700206int ext4fs_exists(const char *filename)
207{
Suriyan Ramasami9f12cd02014-11-17 14:39:36 -0800208 loff_t file_len;
209 int ret;
Stephen Warren55af5c92014-02-03 13:21:09 -0700210
Suriyan Ramasami9f12cd02014-11-17 14:39:36 -0800211 ret = ext4fs_open(filename, &file_len);
212 return ret == 0;
Stephen Warren55af5c92014-02-03 13:21:09 -0700213}
214
Suriyan Ramasamid455d872014-11-17 14:39:38 -0800215int ext4fs_size(const char *filename, loff_t *size)
Stephen Warrencf659812014-06-11 12:47:26 -0600216{
Suriyan Ramasamid455d872014-11-17 14:39:38 -0800217 return ext4fs_open(filename, size);
Stephen Warrencf659812014-06-11 12:47:26 -0600218}
219
Stefan Brüns66a47ff2016-11-06 18:33:57 +0100220int ext4fs_read(char *buf, loff_t offset, loff_t len, loff_t *actread)
Uma Shankara1596432012-05-25 21:21:44 +0530221{
222 if (ext4fs_root == NULL || ext4fs_file == NULL)
Stefan Brüns66a47ff2016-11-06 18:33:57 +0100223 return -1;
Uma Shankara1596432012-05-25 21:21:44 +0530224
Stefan Brüns66a47ff2016-11-06 18:33:57 +0100225 return ext4fs_read_file(ext4fs_file, offset, len, buf, actread);
Uma Shankara1596432012-05-25 21:21:44 +0530226}
Simon Glasse6d52412012-12-26 09:53:33 +0000227
Simon Glass4101f682016-02-29 15:25:34 -0700228int ext4fs_probe(struct blk_desc *fs_dev_desc,
Simon Glasse6d52412012-12-26 09:53:33 +0000229 disk_partition_t *fs_partition)
230{
231 ext4fs_set_blk_dev(fs_dev_desc, fs_partition);
232
233 if (!ext4fs_mount(fs_partition->size)) {
234 ext4fs_close();
235 return -1;
236 }
237
238 return 0;
239}
240
Suriyan Ramasamid455d872014-11-17 14:39:38 -0800241int ext4_read_file(const char *filename, void *buf, loff_t offset, loff_t len,
242 loff_t *len_read)
Simon Glasse6d52412012-12-26 09:53:33 +0000243{
Suriyan Ramasami9f12cd02014-11-17 14:39:36 -0800244 loff_t file_len;
Suriyan Ramasami9f12cd02014-11-17 14:39:36 -0800245 int ret;
Simon Glasse6d52412012-12-26 09:53:33 +0000246
Suriyan Ramasami9f12cd02014-11-17 14:39:36 -0800247 ret = ext4fs_open(filename, &file_len);
248 if (ret < 0) {
Simon Glasse6d52412012-12-26 09:53:33 +0000249 printf("** File not found %s **\n", filename);
250 return -1;
251 }
252
253 if (len == 0)
254 len = file_len;
255
Stefan Brüns66a47ff2016-11-06 18:33:57 +0100256 return ext4fs_read(buf, offset, len, len_read);
Simon Glasse6d52412012-12-26 09:53:33 +0000257}
Christian Gmeiner59e890e2014-11-12 14:35:04 +0100258
259int ext4fs_uuid(char *uuid_str)
260{
261 if (ext4fs_root == NULL)
262 return -1;
263
264#ifdef CONFIG_LIB_UUID
265 uuid_bin_to_str((unsigned char *)ext4fs_root->sblock.unique_id,
266 uuid_str, UUID_STR_FORMAT_STD);
267
268 return 0;
269#else
270 return -ENOSYS;
271#endif
272}
Stephen Warrend5aee652019-01-30 12:58:05 -0700273
274void ext_cache_init(struct ext_block_cache *cache)
275{
276 memset(cache, 0, sizeof(*cache));
277}
278
279void ext_cache_fini(struct ext_block_cache *cache)
280{
281 free(cache->buf);
282 ext_cache_init(cache);
283}
284
285int ext_cache_read(struct ext_block_cache *cache, lbaint_t block, int size)
286{
287 /* This could be more lenient, but this is simple and enough for now */
288 if (cache->buf && cache->block == block && cache->size == size)
289 return 1;
290 ext_cache_fini(cache);
291 cache->buf = malloc(size);
292 if (!cache->buf)
293 return 0;
294 if (!ext4fs_devread(block, 0, size, cache->buf)) {
Paul Emge6e5a79d2019-07-08 16:37:04 -0700295 ext_cache_fini(cache);
Stephen Warrend5aee652019-01-30 12:58:05 -0700296 return 0;
297 }
298 cache->block = block;
299 cache->size = size;
300 return 1;
301}