2018-05-06 21:58:06 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0+
|
2012-05-25 15:51:44 +00:00
|
|
|
/*
|
|
|
|
* (C) Copyright 2011 - 2012 Samsung Electronics
|
|
|
|
* EXT4 filesystem implementation in Uboot by
|
|
|
|
* Uma Shankar <uma.shankar@samsung.com>
|
|
|
|
* Manjunatha C Achar <a.manjunatha@samsung.com>
|
|
|
|
*
|
|
|
|
* ext4ls and ext4load : Based on ext2 ls and load support in Uboot.
|
|
|
|
* Ext4 read optimization taken from Open-Moko
|
|
|
|
* Qi bootloader
|
|
|
|
*
|
|
|
|
* (C) Copyright 2004
|
|
|
|
* esd gmbh <www.esd-electronics.com>
|
|
|
|
* Reinhard Arlt <reinhard.arlt@esd-electronics.com>
|
|
|
|
*
|
|
|
|
* based on code from grub2 fs/ext2.c and fs/fshelp.c by
|
|
|
|
* GRUB -- GRand Unified Bootloader
|
|
|
|
* Copyright (C) 2003, 2004 Free Software Foundation, Inc.
|
|
|
|
*
|
2012-05-25 15:52:49 +00:00
|
|
|
* ext4write : Based on generic ext4 protocol.
|
2012-05-25 15:51:44 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <common.h>
|
|
|
|
#include <ext_common.h>
|
|
|
|
#include <ext4fs.h>
|
|
|
|
#include "ext4_common.h"
|
2014-11-24 16:50:46 +00:00
|
|
|
#include <div64.h>
|
2020-02-03 14:36:16 +00:00
|
|
|
#include <malloc.h>
|
2012-05-25 15:51:44 +00:00
|
|
|
|
|
|
|
int ext4fs_symlinknest;
|
2012-08-23 11:31:45 +00:00
|
|
|
struct ext_filesystem ext_fs;
|
2012-05-25 15:51:44 +00:00
|
|
|
|
|
|
|
struct ext_filesystem *get_fs(void)
|
|
|
|
{
|
2012-08-23 11:31:45 +00:00
|
|
|
return &ext_fs;
|
2012-05-25 15:51:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void ext4fs_free_node(struct ext2fs_node *node, struct ext2fs_node *currroot)
|
|
|
|
{
|
|
|
|
if ((node != &ext4fs_root->diropen) && (node != currroot))
|
|
|
|
free(node);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Taken from openmoko-kernel mailing list: By Andy green
|
|
|
|
* Optimized read file API : collects and defers contiguous sector
|
|
|
|
* reads into one potentially more efficient larger sequential read action
|
|
|
|
*/
|
2014-11-17 22:39:36 +00:00
|
|
|
int ext4fs_read_file(struct ext2fs_node *node, loff_t pos,
|
|
|
|
loff_t len, char *buf, loff_t *actread)
|
2012-05-25 15:51:44 +00:00
|
|
|
{
|
2013-05-01 01:13:19 +00:00
|
|
|
struct ext_filesystem *fs = get_fs();
|
2012-05-25 15:51:44 +00:00
|
|
|
int i;
|
2013-06-26 16:11:25 +00:00
|
|
|
lbaint_t blockcnt;
|
2013-05-01 01:13:19 +00:00
|
|
|
int log2blksz = fs->dev_desc->log2blksz;
|
|
|
|
int log2_fs_blocksize = LOG2_BLOCK_SIZE(node->data) - log2blksz;
|
|
|
|
int blocksize = (1 << (log2_fs_blocksize + log2blksz));
|
2016-08-29 08:46:44 +00:00
|
|
|
unsigned int filesize = le32_to_cpu(node->inode.size);
|
2013-06-26 16:11:25 +00:00
|
|
|
lbaint_t previous_block_number = -1;
|
|
|
|
lbaint_t delayed_start = 0;
|
|
|
|
lbaint_t delayed_extent = 0;
|
|
|
|
lbaint_t delayed_skipfirst = 0;
|
|
|
|
lbaint_t delayed_next = 0;
|
2012-05-25 15:51:44 +00:00
|
|
|
char *delayed_buf = NULL;
|
2019-07-08 23:37:07 +00:00
|
|
|
char *start_buf = buf;
|
2012-05-25 15:51:44 +00:00
|
|
|
short status;
|
2019-01-30 19:58:05 +00:00
|
|
|
struct ext_block_cache cache;
|
|
|
|
|
|
|
|
ext_cache_init(&cache);
|
2012-05-25 15:51:44 +00:00
|
|
|
|
|
|
|
/* Adjust len so it we can't read past the end of the file. */
|
2016-11-06 17:33:57 +00:00
|
|
|
if (len + pos > filesize)
|
|
|
|
len = (filesize - pos);
|
2012-05-25 15:51:44 +00:00
|
|
|
|
2019-07-08 23:37:05 +00:00
|
|
|
if (blocksize <= 0 || len <= 0) {
|
|
|
|
ext_cache_fini(&cache);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2014-11-24 16:50:46 +00:00
|
|
|
blockcnt = lldiv(((len + pos) + blocksize - 1), blocksize);
|
2012-05-25 15:51:44 +00:00
|
|
|
|
2014-11-24 16:50:46 +00:00
|
|
|
for (i = lldiv(pos, blocksize); i < blockcnt; i++) {
|
2017-04-26 11:28:22 +00:00
|
|
|
long int blknr;
|
2014-11-24 16:50:46 +00:00
|
|
|
int blockoff = pos - (blocksize * i);
|
2012-05-25 15:51:44 +00:00
|
|
|
int blockend = blocksize;
|
|
|
|
int skipfirst = 0;
|
2019-01-30 19:58:05 +00:00
|
|
|
blknr = read_allocated_block(&node->inode, i, &cache);
|
|
|
|
if (blknr < 0) {
|
|
|
|
ext_cache_fini(&cache);
|
2014-02-26 13:18:58 +00:00
|
|
|
return -1;
|
2019-01-30 19:58:05 +00:00
|
|
|
}
|
2012-05-25 15:51:44 +00:00
|
|
|
|
2013-05-01 01:13:19 +00:00
|
|
|
blknr = blknr << log2_fs_blocksize;
|
2012-05-25 15:51:44 +00:00
|
|
|
|
|
|
|
/* Last block. */
|
|
|
|
if (i == blockcnt - 1) {
|
2014-11-24 16:50:46 +00:00
|
|
|
blockend = (len + pos) - (blocksize * i);
|
2012-05-25 15:51:44 +00:00
|
|
|
|
|
|
|
/* The last portion is exactly blocksize. */
|
|
|
|
if (!blockend)
|
|
|
|
blockend = blocksize;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* First block. */
|
2014-11-24 16:50:46 +00:00
|
|
|
if (i == lldiv(pos, blocksize)) {
|
2012-05-25 15:51:44 +00:00
|
|
|
skipfirst = blockoff;
|
|
|
|
blockend -= skipfirst;
|
|
|
|
}
|
|
|
|
if (blknr) {
|
|
|
|
int status;
|
|
|
|
|
|
|
|
if (previous_block_number != -1) {
|
|
|
|
if (delayed_next == blknr) {
|
|
|
|
delayed_extent += blockend;
|
2013-05-01 01:13:19 +00:00
|
|
|
delayed_next += blockend >> log2blksz;
|
2012-05-25 15:51:44 +00:00
|
|
|
} else { /* spill */
|
|
|
|
status = ext4fs_devread(delayed_start,
|
|
|
|
delayed_skipfirst,
|
|
|
|
delayed_extent,
|
|
|
|
delayed_buf);
|
2019-01-30 19:58:05 +00:00
|
|
|
if (status == 0) {
|
|
|
|
ext_cache_fini(&cache);
|
2014-02-26 13:18:58 +00:00
|
|
|
return -1;
|
2019-01-30 19:58:05 +00:00
|
|
|
}
|
2012-05-25 15:51:44 +00:00
|
|
|
previous_block_number = blknr;
|
|
|
|
delayed_start = blknr;
|
|
|
|
delayed_extent = blockend;
|
|
|
|
delayed_skipfirst = skipfirst;
|
|
|
|
delayed_buf = buf;
|
|
|
|
delayed_next = blknr +
|
2013-05-01 01:13:19 +00:00
|
|
|
(blockend >> log2blksz);
|
2012-05-25 15:51:44 +00:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
previous_block_number = blknr;
|
|
|
|
delayed_start = blknr;
|
|
|
|
delayed_extent = blockend;
|
|
|
|
delayed_skipfirst = skipfirst;
|
|
|
|
delayed_buf = buf;
|
|
|
|
delayed_next = blknr +
|
2013-05-01 01:13:19 +00:00
|
|
|
(blockend >> log2blksz);
|
2012-05-25 15:51:44 +00:00
|
|
|
}
|
|
|
|
} else {
|
2017-11-08 15:35:10 +00:00
|
|
|
int n;
|
2019-07-08 23:37:07 +00:00
|
|
|
int n_left;
|
2012-05-25 15:51:44 +00:00
|
|
|
if (previous_block_number != -1) {
|
|
|
|
/* spill */
|
|
|
|
status = ext4fs_devread(delayed_start,
|
|
|
|
delayed_skipfirst,
|
|
|
|
delayed_extent,
|
|
|
|
delayed_buf);
|
2019-01-30 19:58:05 +00:00
|
|
|
if (status == 0) {
|
|
|
|
ext_cache_fini(&cache);
|
2014-02-26 13:18:58 +00:00
|
|
|
return -1;
|
2019-01-30 19:58:05 +00:00
|
|
|
}
|
2012-05-25 15:51:44 +00:00
|
|
|
previous_block_number = -1;
|
|
|
|
}
|
2017-11-08 15:35:10 +00:00
|
|
|
/* Zero no more than `len' bytes. */
|
|
|
|
n = blocksize - skipfirst;
|
2019-07-08 23:37:07 +00:00
|
|
|
n_left = len - ( buf - start_buf );
|
|
|
|
if (n > n_left)
|
|
|
|
n = n_left;
|
2017-11-08 15:35:10 +00:00
|
|
|
memset(buf, 0, n);
|
2012-05-25 15:51:44 +00:00
|
|
|
}
|
|
|
|
buf += blocksize - skipfirst;
|
|
|
|
}
|
|
|
|
if (previous_block_number != -1) {
|
|
|
|
/* spill */
|
|
|
|
status = ext4fs_devread(delayed_start,
|
|
|
|
delayed_skipfirst, delayed_extent,
|
|
|
|
delayed_buf);
|
2019-01-30 19:58:05 +00:00
|
|
|
if (status == 0) {
|
|
|
|
ext_cache_fini(&cache);
|
2014-02-26 13:18:58 +00:00
|
|
|
return -1;
|
2019-01-30 19:58:05 +00:00
|
|
|
}
|
2012-05-25 15:51:44 +00:00
|
|
|
previous_block_number = -1;
|
|
|
|
}
|
|
|
|
|
2014-11-17 22:39:36 +00:00
|
|
|
*actread = len;
|
2019-01-30 19:58:05 +00:00
|
|
|
ext_cache_fini(&cache);
|
2014-11-17 22:39:36 +00:00
|
|
|
return 0;
|
2012-05-25 15:51:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int ext4fs_ls(const char *dirname)
|
|
|
|
{
|
2018-05-09 13:28:37 +00:00
|
|
|
struct ext2fs_node *dirnode = NULL;
|
2012-05-25 15:51:44 +00:00
|
|
|
int status;
|
|
|
|
|
|
|
|
if (dirname == NULL)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
status = ext4fs_find_file(dirname, &ext4fs_root->diropen, &dirnode,
|
|
|
|
FILETYPE_DIRECTORY);
|
|
|
|
if (status != 1) {
|
|
|
|
printf("** Can not find directory. **\n");
|
2018-05-09 13:28:37 +00:00
|
|
|
if (dirnode)
|
|
|
|
ext4fs_free_node(dirnode, &ext4fs_root->diropen);
|
2012-05-25 15:51:44 +00:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
ext4fs_iterate_dir(dirnode, NULL, NULL, NULL);
|
|
|
|
ext4fs_free_node(dirnode, &ext4fs_root->diropen);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-02-03 20:21:09 +00:00
|
|
|
int ext4fs_exists(const char *filename)
|
|
|
|
{
|
2014-11-17 22:39:36 +00:00
|
|
|
loff_t file_len;
|
|
|
|
int ret;
|
2014-02-03 20:21:09 +00:00
|
|
|
|
2014-11-17 22:39:36 +00:00
|
|
|
ret = ext4fs_open(filename, &file_len);
|
|
|
|
return ret == 0;
|
2014-02-03 20:21:09 +00:00
|
|
|
}
|
|
|
|
|
2014-11-17 22:39:38 +00:00
|
|
|
int ext4fs_size(const char *filename, loff_t *size)
|
2014-06-11 18:47:26 +00:00
|
|
|
{
|
2014-11-17 22:39:38 +00:00
|
|
|
return ext4fs_open(filename, size);
|
2014-06-11 18:47:26 +00:00
|
|
|
}
|
|
|
|
|
2016-11-06 17:33:57 +00:00
|
|
|
int ext4fs_read(char *buf, loff_t offset, loff_t len, loff_t *actread)
|
2012-05-25 15:51:44 +00:00
|
|
|
{
|
|
|
|
if (ext4fs_root == NULL || ext4fs_file == NULL)
|
2016-11-06 17:33:57 +00:00
|
|
|
return -1;
|
2012-05-25 15:51:44 +00:00
|
|
|
|
2016-11-06 17:33:57 +00:00
|
|
|
return ext4fs_read_file(ext4fs_file, offset, len, buf, actread);
|
2012-05-25 15:51:44 +00:00
|
|
|
}
|
2012-12-26 09:53:33 +00:00
|
|
|
|
2016-02-29 22:25:34 +00:00
|
|
|
int ext4fs_probe(struct blk_desc *fs_dev_desc,
|
2012-12-26 09:53:33 +00:00
|
|
|
disk_partition_t *fs_partition)
|
|
|
|
{
|
|
|
|
ext4fs_set_blk_dev(fs_dev_desc, fs_partition);
|
|
|
|
|
|
|
|
if (!ext4fs_mount(fs_partition->size)) {
|
|
|
|
ext4fs_close();
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-11-17 22:39:38 +00:00
|
|
|
int ext4_read_file(const char *filename, void *buf, loff_t offset, loff_t len,
|
|
|
|
loff_t *len_read)
|
2012-12-26 09:53:33 +00:00
|
|
|
{
|
2014-11-17 22:39:36 +00:00
|
|
|
loff_t file_len;
|
|
|
|
int ret;
|
2012-12-26 09:53:33 +00:00
|
|
|
|
2014-11-17 22:39:36 +00:00
|
|
|
ret = ext4fs_open(filename, &file_len);
|
|
|
|
if (ret < 0) {
|
2012-12-26 09:53:33 +00:00
|
|
|
printf("** File not found %s **\n", filename);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (len == 0)
|
|
|
|
len = file_len;
|
|
|
|
|
2016-11-06 17:33:57 +00:00
|
|
|
return ext4fs_read(buf, offset, len, len_read);
|
2012-12-26 09:53:33 +00:00
|
|
|
}
|
2014-11-12 13:35:04 +00:00
|
|
|
|
|
|
|
int ext4fs_uuid(char *uuid_str)
|
|
|
|
{
|
|
|
|
if (ext4fs_root == NULL)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
#ifdef CONFIG_LIB_UUID
|
|
|
|
uuid_bin_to_str((unsigned char *)ext4fs_root->sblock.unique_id,
|
|
|
|
uuid_str, UUID_STR_FORMAT_STD);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
#else
|
|
|
|
return -ENOSYS;
|
|
|
|
#endif
|
|
|
|
}
|
2019-01-30 19:58:05 +00:00
|
|
|
|
|
|
|
void ext_cache_init(struct ext_block_cache *cache)
|
|
|
|
{
|
|
|
|
memset(cache, 0, sizeof(*cache));
|
|
|
|
}
|
|
|
|
|
|
|
|
void ext_cache_fini(struct ext_block_cache *cache)
|
|
|
|
{
|
|
|
|
free(cache->buf);
|
|
|
|
ext_cache_init(cache);
|
|
|
|
}
|
|
|
|
|
|
|
|
int ext_cache_read(struct ext_block_cache *cache, lbaint_t block, int size)
|
|
|
|
{
|
|
|
|
/* This could be more lenient, but this is simple and enough for now */
|
|
|
|
if (cache->buf && cache->block == block && cache->size == size)
|
|
|
|
return 1;
|
|
|
|
ext_cache_fini(cache);
|
2020-03-25 20:27:51 +00:00
|
|
|
cache->buf = memalign(ARCH_DMA_MINALIGN, size);
|
2019-01-30 19:58:05 +00:00
|
|
|
if (!cache->buf)
|
|
|
|
return 0;
|
|
|
|
if (!ext4fs_devread(block, 0, size, cache->buf)) {
|
2019-07-08 23:37:04 +00:00
|
|
|
ext_cache_fini(cache);
|
2019-01-30 19:58:05 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
cache->block = block;
|
|
|
|
cache->size = size;
|
|
|
|
return 1;
|
|
|
|
}
|