]> git.ipfire.org Git - people/ms/u-boot.git/blame - fs/ext4/dev.c
ext4: Fix comparision of unsigned expression with < 0
[people/ms/u-boot.git] / fs / ext4 / dev.c
CommitLineData
a1596438
US
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 * made from existing ext2/dev.c file of Uboot
8 * (C) Copyright 2004
9 * esd gmbh <www.esd-electronics.com>
10 * Reinhard Arlt <reinhard.arlt@esd-electronics.com>
11 *
12 * based on code of fs/reiserfs/dev.c by
13 *
14 * (C) Copyright 2003 - 2004
15 * Sysgo AG, <www.elinos.com>, Pavel Bartusek <pba@sysgo.com>
16 *
1a459660 17 * SPDX-License-Identifier: GPL-2.0+
a1596438
US
18 */
19
20/*
21 * Changelog:
22 * 0.1 - Newly created file for ext4fs support. Taken from
23 * fs/ext2/dev.c file in uboot.
24 */
25
26#include <common.h>
2a981dc2 27#include <blk.h>
a1596438 28#include <config.h>
cf92e05c 29#include <memalign.h>
81180819 30#include <ext4fs.h>
a1596438 31#include <ext_common.h>
50ce4c07 32#include "ext4_common.h"
a1596438 33
04735e9c 34lbaint_t part_offset;
81180819 35
4101f687 36static struct blk_desc *ext4fs_blk_desc;
81180819 37static disk_partition_t *part_info;
a1596438 38
4101f687 39void ext4fs_set_blk_dev(struct blk_desc *rbdd, disk_partition_t *info)
a1596438 40{
50ce4c07 41 assert(rbdd->blksz == (1 << rbdd->log2blksz));
4101f687 42 ext4fs_blk_desc = rbdd;
c28cbfa1 43 get_fs()->dev_desc = rbdd;
81180819
RH
44 part_info = info;
45 part_offset = info->start;
f1782883 46 get_fs()->total_sect = ((uint64_t)info->size * info->blksz) >>
50ce4c07 47 get_fs()->dev_desc->log2blksz;
a1596438
US
48}
49
04735e9c 50int ext4fs_devread(lbaint_t sector, int byte_offset, int byte_len, char *buf)
a1596438 51{
a1596438 52 unsigned block_len;
4101f687
SG
53 int log2blksz = ext4fs_blk_desc->log2blksz;
54 ALLOC_CACHE_ALIGN_BUFFER(char, sec_buf, (ext4fs_blk_desc ?
55 ext4fs_blk_desc->blksz :
50ce4c07 56 0));
4101f687 57 if (ext4fs_blk_desc == NULL) {
50ce4c07
EE
58 printf("** Invalid Block Device Descriptor (NULL)\n");
59 return 0;
60 }
a1596438
US
61
62 /* Check partition boundaries */
509b498a
LV
63 if ((sector + ((byte_offset + byte_len - 1) >> log2blksz))
64 >= part_info->size) {
04735e9c
FL
65 printf("%s read outside partition " LBAFU "\n", __func__,
66 sector);
a1596438
US
67 return 0;
68 }
69
70 /* Get the read to the beginning of a partition */
50ce4c07 71 sector += byte_offset >> log2blksz;
4101f687 72 byte_offset &= ext4fs_blk_desc->blksz - 1;
a1596438 73
04735e9c 74 debug(" <" LBAFU ", %d, %d>\n", sector, byte_offset, byte_len);
a1596438 75
a1596438 76 if (byte_offset != 0) {
b4141195 77 int readlen;
a1596438 78 /* read first part which isn't aligned with start of sector */
2a981dc2
SG
79 if (blk_dread(ext4fs_blk_desc, part_info->start + sector, 1,
80 (void *)sec_buf) != 1) {
a1596438
US
81 printf(" ** ext2fs_devread() read error **\n");
82 return 0;
83 }
4101f687 84 readlen = min((int)ext4fs_blk_desc->blksz - byte_offset,
b4141195
MY
85 byte_len);
86 memcpy(buf, sec_buf + byte_offset, readlen);
87 buf += readlen;
88 byte_len -= readlen;
a1596438
US
89 sector++;
90 }
91
92 if (byte_len == 0)
93 return 1;
94
95 /* read sector aligned part */
4101f687 96 block_len = byte_len & ~(ext4fs_blk_desc->blksz - 1);
a1596438
US
97
98 if (block_len == 0) {
4101f687 99 ALLOC_CACHE_ALIGN_BUFFER(u8, p, ext4fs_blk_desc->blksz);
a1596438 100
4101f687 101 block_len = ext4fs_blk_desc->blksz;
2a981dc2
SG
102 blk_dread(ext4fs_blk_desc, part_info->start + sector, 1,
103 (void *)p);
a1596438
US
104 memcpy(buf, p, byte_len);
105 return 1;
106 }
107
2a981dc2
SG
108 if (blk_dread(ext4fs_blk_desc, part_info->start + sector,
109 block_len >> log2blksz, (void *)buf) !=
110 block_len >> log2blksz) {
a1596438
US
111 printf(" ** %s read error - block\n", __func__);
112 return 0;
113 }
4101f687 114 block_len = byte_len & ~(ext4fs_blk_desc->blksz - 1);
a1596438
US
115 buf += block_len;
116 byte_len -= block_len;
4101f687 117 sector += block_len / ext4fs_blk_desc->blksz;
a1596438
US
118
119 if (byte_len != 0) {
120 /* read rest of data which are not in whole sector */
2a981dc2
SG
121 if (blk_dread(ext4fs_blk_desc, part_info->start + sector, 1,
122 (void *)sec_buf) != 1) {
a1596438
US
123 printf("* %s read error - last part\n", __func__);
124 return 0;
125 }
126 memcpy(buf, sec_buf, byte_len);
127 }
128 return 1;
129}
50ce4c07
EE
130
131int ext4_read_superblock(char *buffer)
132{
133 struct ext_filesystem *fs = get_fs();
134 int sect = SUPERBLOCK_START >> fs->dev_desc->log2blksz;
135 int off = SUPERBLOCK_START % fs->dev_desc->blksz;
136
137 return ext4fs_devread(sect, off, SUPERBLOCK_SIZE,
138 buffer);
139}