blob: 9ee2caf2fa1a7d6db2395e0e98d0f03be2e2091d [file] [log] [blame]
Uma Shankara1596432012-05-25 21:21:44 +05301/*
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 * ext4ls and ext4load : Based on ext2 ls and load support in Uboot.
8 * Ext4 read optimization taken from Open-Moko
9 * Qi bootloader
10 *
11 * (C) Copyright 2004
12 * esd gmbh <www.esd-electronics.com>
13 * Reinhard Arlt <reinhard.arlt@esd-electronics.com>
14 *
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.
18 *
Uma Shankared34f342012-05-25 21:22:49 +053019 * ext4write : Based on generic ext4 protocol.
20 *
Wolfgang Denk1a459662013-07-08 09:37:19 +020021 * SPDX-License-Identifier: GPL-2.0+
Uma Shankara1596432012-05-25 21:21:44 +053022 */
23
24#include <common.h>
Uma Shankara1596432012-05-25 21:21:44 +053025#include <ext_common.h>
26#include <ext4fs.h>
Uma Shankara1596432012-05-25 21:21:44 +053027#include "ext4_common.h"
Tom Rini9e374e72014-11-24 11:50:46 -050028#include <div64.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;
65 short status;
66
Ian Rayecdfb412017-11-08 15:35:10 +000067 if (blocksize <= 0)
68 return -1;
69
Uma Shankara1596432012-05-25 21:21:44 +053070 /* Adjust len so it we can't read past the end of the file. */
Stefan Brüns66a47ff2016-11-06 18:33:57 +010071 if (len + pos > filesize)
72 len = (filesize - pos);
Uma Shankara1596432012-05-25 21:21:44 +053073
Tom Rini9e374e72014-11-24 11:50:46 -050074 blockcnt = lldiv(((len + pos) + blocksize - 1), blocksize);
Uma Shankara1596432012-05-25 21:21:44 +053075
Tom Rini9e374e72014-11-24 11:50:46 -050076 for (i = lldiv(pos, blocksize); i < blockcnt; i++) {
Lokesh Vutla509b4982017-04-26 16:58:22 +053077 long int blknr;
Tom Rini9e374e72014-11-24 11:50:46 -050078 int blockoff = pos - (blocksize * i);
Uma Shankara1596432012-05-25 21:21:44 +053079 int blockend = blocksize;
80 int skipfirst = 0;
81 blknr = read_allocated_block(&(node->inode), i);
Tom Rini715b56f2014-02-26 08:18:58 -050082 if (blknr < 0)
83 return -1;
Uma Shankara1596432012-05-25 21:21:44 +053084
Egbert Eich50ce4c02013-05-01 01:13:19 +000085 blknr = blknr << log2_fs_blocksize;
Uma Shankara1596432012-05-25 21:21:44 +053086
87 /* Last block. */
88 if (i == blockcnt - 1) {
Tom Rini9e374e72014-11-24 11:50:46 -050089 blockend = (len + pos) - (blocksize * i);
Uma Shankara1596432012-05-25 21:21:44 +053090
91 /* The last portion is exactly blocksize. */
92 if (!blockend)
93 blockend = blocksize;
94 }
95
96 /* First block. */
Tom Rini9e374e72014-11-24 11:50:46 -050097 if (i == lldiv(pos, blocksize)) {
Uma Shankara1596432012-05-25 21:21:44 +053098 skipfirst = blockoff;
99 blockend -= skipfirst;
100 }
101 if (blknr) {
102 int status;
103
104 if (previous_block_number != -1) {
105 if (delayed_next == blknr) {
106 delayed_extent += blockend;
Egbert Eich50ce4c02013-05-01 01:13:19 +0000107 delayed_next += blockend >> log2blksz;
Uma Shankara1596432012-05-25 21:21:44 +0530108 } else { /* spill */
109 status = ext4fs_devread(delayed_start,
110 delayed_skipfirst,
111 delayed_extent,
112 delayed_buf);
Tom Rini715b56f2014-02-26 08:18:58 -0500113 if (status == 0)
114 return -1;
Uma Shankara1596432012-05-25 21:21:44 +0530115 previous_block_number = blknr;
116 delayed_start = blknr;
117 delayed_extent = blockend;
118 delayed_skipfirst = skipfirst;
119 delayed_buf = buf;
120 delayed_next = blknr +
Egbert Eich50ce4c02013-05-01 01:13:19 +0000121 (blockend >> log2blksz);
Uma Shankara1596432012-05-25 21:21:44 +0530122 }
123 } else {
124 previous_block_number = blknr;
125 delayed_start = blknr;
126 delayed_extent = blockend;
127 delayed_skipfirst = skipfirst;
128 delayed_buf = buf;
129 delayed_next = blknr +
Egbert Eich50ce4c02013-05-01 01:13:19 +0000130 (blockend >> log2blksz);
Uma Shankara1596432012-05-25 21:21:44 +0530131 }
132 } else {
Ian Rayecdfb412017-11-08 15:35:10 +0000133 int n;
Uma Shankara1596432012-05-25 21:21:44 +0530134 if (previous_block_number != -1) {
135 /* spill */
136 status = ext4fs_devread(delayed_start,
137 delayed_skipfirst,
138 delayed_extent,
139 delayed_buf);
Tom Rini715b56f2014-02-26 08:18:58 -0500140 if (status == 0)
141 return -1;
Uma Shankara1596432012-05-25 21:21:44 +0530142 previous_block_number = -1;
143 }
Ian Rayecdfb412017-11-08 15:35:10 +0000144 /* Zero no more than `len' bytes. */
145 n = blocksize - skipfirst;
146 if (n > len)
147 n = len;
148 memset(buf, 0, n);
Uma Shankara1596432012-05-25 21:21:44 +0530149 }
150 buf += blocksize - skipfirst;
151 }
152 if (previous_block_number != -1) {
153 /* spill */
154 status = ext4fs_devread(delayed_start,
155 delayed_skipfirst, delayed_extent,
156 delayed_buf);
Tom Rini715b56f2014-02-26 08:18:58 -0500157 if (status == 0)
158 return -1;
Uma Shankara1596432012-05-25 21:21:44 +0530159 previous_block_number = -1;
160 }
161
Suriyan Ramasami9f12cd02014-11-17 14:39:36 -0800162 *actread = len;
163 return 0;
Uma Shankara1596432012-05-25 21:21:44 +0530164}
165
166int ext4fs_ls(const char *dirname)
167{
168 struct ext2fs_node *dirnode;
169 int status;
170
171 if (dirname == NULL)
172 return 0;
173
174 status = ext4fs_find_file(dirname, &ext4fs_root->diropen, &dirnode,
175 FILETYPE_DIRECTORY);
176 if (status != 1) {
177 printf("** Can not find directory. **\n");
Tom Rinifa9ca8a2017-09-26 22:43:45 -0400178 ext4fs_free_node(dirnode, &ext4fs_root->diropen);
Uma Shankara1596432012-05-25 21:21:44 +0530179 return 1;
180 }
181
182 ext4fs_iterate_dir(dirnode, NULL, NULL, NULL);
183 ext4fs_free_node(dirnode, &ext4fs_root->diropen);
184
185 return 0;
186}
187
Stephen Warren55af5c92014-02-03 13:21:09 -0700188int ext4fs_exists(const char *filename)
189{
Suriyan Ramasami9f12cd02014-11-17 14:39:36 -0800190 loff_t file_len;
191 int ret;
Stephen Warren55af5c92014-02-03 13:21:09 -0700192
Suriyan Ramasami9f12cd02014-11-17 14:39:36 -0800193 ret = ext4fs_open(filename, &file_len);
194 return ret == 0;
Stephen Warren55af5c92014-02-03 13:21:09 -0700195}
196
Suriyan Ramasamid455d872014-11-17 14:39:38 -0800197int ext4fs_size(const char *filename, loff_t *size)
Stephen Warrencf659812014-06-11 12:47:26 -0600198{
Suriyan Ramasamid455d872014-11-17 14:39:38 -0800199 return ext4fs_open(filename, size);
Stephen Warrencf659812014-06-11 12:47:26 -0600200}
201
Stefan Brüns66a47ff2016-11-06 18:33:57 +0100202int ext4fs_read(char *buf, loff_t offset, loff_t len, loff_t *actread)
Uma Shankara1596432012-05-25 21:21:44 +0530203{
204 if (ext4fs_root == NULL || ext4fs_file == NULL)
Stefan Brüns66a47ff2016-11-06 18:33:57 +0100205 return -1;
Uma Shankara1596432012-05-25 21:21:44 +0530206
Stefan Brüns66a47ff2016-11-06 18:33:57 +0100207 return ext4fs_read_file(ext4fs_file, offset, len, buf, actread);
Uma Shankara1596432012-05-25 21:21:44 +0530208}
Simon Glasse6d52412012-12-26 09:53:33 +0000209
Simon Glass4101f682016-02-29 15:25:34 -0700210int ext4fs_probe(struct blk_desc *fs_dev_desc,
Simon Glasse6d52412012-12-26 09:53:33 +0000211 disk_partition_t *fs_partition)
212{
213 ext4fs_set_blk_dev(fs_dev_desc, fs_partition);
214
215 if (!ext4fs_mount(fs_partition->size)) {
216 ext4fs_close();
217 return -1;
218 }
219
220 return 0;
221}
222
Suriyan Ramasamid455d872014-11-17 14:39:38 -0800223int ext4_read_file(const char *filename, void *buf, loff_t offset, loff_t len,
224 loff_t *len_read)
Simon Glasse6d52412012-12-26 09:53:33 +0000225{
Suriyan Ramasami9f12cd02014-11-17 14:39:36 -0800226 loff_t file_len;
Suriyan Ramasami9f12cd02014-11-17 14:39:36 -0800227 int ret;
Simon Glasse6d52412012-12-26 09:53:33 +0000228
Suriyan Ramasami9f12cd02014-11-17 14:39:36 -0800229 ret = ext4fs_open(filename, &file_len);
230 if (ret < 0) {
Simon Glasse6d52412012-12-26 09:53:33 +0000231 printf("** File not found %s **\n", filename);
232 return -1;
233 }
234
235 if (len == 0)
236 len = file_len;
237
Stefan Brüns66a47ff2016-11-06 18:33:57 +0100238 return ext4fs_read(buf, offset, len, len_read);
Simon Glasse6d52412012-12-26 09:53:33 +0000239}
Christian Gmeiner59e890e2014-11-12 14:35:04 +0100240
241int ext4fs_uuid(char *uuid_str)
242{
243 if (ext4fs_root == NULL)
244 return -1;
245
246#ifdef CONFIG_LIB_UUID
247 uuid_bin_to_str((unsigned char *)ext4fs_root->sblock.unique_id,
248 uuid_str, UUID_STR_FORMAT_STD);
249
250 return 0;
251#else
252 return -ENOSYS;
253#endif
254}