blob: f22af45d1b9747368fdb8e864bd3a3432dea4f7c [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Simon Glass293d7fb2012-12-26 09:53:28 +00002/*
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 *
20 * ext4write : Based on generic ext4 protocol.
Simon Glass293d7fb2012-12-26 09:53:28 +000021 */
22
23
24#include <common.h>
Simon Glasse6f6f9e2020-05-10 11:39:58 -060025#include <blk.h>
Simon Glassf7ae49f2020-05-10 11:40:05 -060026#include <log.h>
Simon Glass336d4612020-02-03 07:36:16 -070027#include <malloc.h>
Simon Glasscf92e052015-09-02 17:24:58 -060028#include <memalign.h>
Simon Glasse6f6f9e2020-05-10 11:39:58 -060029#include <part.h>
Simon Glass293d7fb2012-12-26 09:53:28 +000030#include <linux/stat.h>
31#include <div64.h>
32#include "ext4_common.h"
33
Michael Walle58a9ecb2016-09-01 11:21:40 +020034static inline void ext4fs_sb_free_inodes_inc(struct ext2_sblock *sb)
35{
36 sb->free_inodes = cpu_to_le32(le32_to_cpu(sb->free_inodes) + 1);
37}
38
39static inline void ext4fs_sb_free_blocks_inc(struct ext2_sblock *sb)
40{
41 sb->free_blocks = cpu_to_le32(le32_to_cpu(sb->free_blocks) + 1);
42}
43
Stefan Brüns749e93e2016-09-20 01:13:01 +020044static inline void ext4fs_bg_free_inodes_inc
45 (struct ext2_block_group *bg, const struct ext_filesystem *fs)
Michael Walle58a9ecb2016-09-01 11:21:40 +020046{
Stefan Brüns749e93e2016-09-20 01:13:01 +020047 uint32_t free_inodes = le16_to_cpu(bg->free_inodes);
48 if (fs->gdsize == 64)
49 free_inodes += le16_to_cpu(bg->free_inodes_high) << 16;
50 free_inodes++;
51
52 bg->free_inodes = cpu_to_le16(free_inodes & 0xffff);
53 if (fs->gdsize == 64)
54 bg->free_inodes_high = cpu_to_le16(free_inodes >> 16);
Michael Walle58a9ecb2016-09-01 11:21:40 +020055}
56
Stefan Brüns749e93e2016-09-20 01:13:01 +020057static inline void ext4fs_bg_free_blocks_inc
58 (struct ext2_block_group *bg, const struct ext_filesystem *fs)
Michael Walle58a9ecb2016-09-01 11:21:40 +020059{
Stefan Brüns749e93e2016-09-20 01:13:01 +020060 uint32_t free_blocks = le16_to_cpu(bg->free_blocks);
61 if (fs->gdsize == 64)
62 free_blocks += le16_to_cpu(bg->free_blocks_high) << 16;
63 free_blocks++;
64
65 bg->free_blocks = cpu_to_le16(free_blocks & 0xffff);
66 if (fs->gdsize == 64)
67 bg->free_blocks_high = cpu_to_le16(free_blocks >> 16);
Michael Walle58a9ecb2016-09-01 11:21:40 +020068}
69
Simon Glass293d7fb2012-12-26 09:53:28 +000070static void ext4fs_update(void)
71{
72 short i;
73 ext4fs_update_journal();
74 struct ext_filesystem *fs = get_fs();
Stefan Brüns688d0e72016-09-17 02:10:10 +020075 struct ext2_block_group *bgd = NULL;
Simon Glass293d7fb2012-12-26 09:53:28 +000076
77 /* update super block */
78 put_ext4((uint64_t)(SUPERBLOCK_SIZE),
79 (struct ext2_sblock *)fs->sb, (uint32_t)SUPERBLOCK_SIZE);
80
Stefan Brüns688d0e72016-09-17 02:10:10 +020081 /* update block bitmaps */
Simon Glass293d7fb2012-12-26 09:53:28 +000082 for (i = 0; i < fs->no_blkgrp; i++) {
Stefan Brüns688d0e72016-09-17 02:10:10 +020083 bgd = ext4fs_get_group_descriptor(fs, i);
84 bgd->bg_checksum = cpu_to_le16(ext4fs_checksum_update(i));
85 uint64_t b_bitmap_blk = ext4fs_bg_get_block_id(bgd, fs);
86 put_ext4(b_bitmap_blk * fs->blksz,
Simon Glass293d7fb2012-12-26 09:53:28 +000087 fs->blk_bmaps[i], fs->blksz);
88 }
89
Stefan Brüns688d0e72016-09-17 02:10:10 +020090 /* update inode bitmaps */
Simon Glass293d7fb2012-12-26 09:53:28 +000091 for (i = 0; i < fs->no_blkgrp; i++) {
Stefan Brüns688d0e72016-09-17 02:10:10 +020092 bgd = ext4fs_get_group_descriptor(fs, i);
93 uint64_t i_bitmap_blk = ext4fs_bg_get_inode_id(bgd, fs);
94 put_ext4(i_bitmap_blk * fs->blksz,
Simon Glass293d7fb2012-12-26 09:53:28 +000095 fs->inode_bmaps[i], fs->blksz);
96 }
97
98 /* update the block group descriptor table */
Ma Haijun05508702014-01-08 08:15:33 +080099 put_ext4((uint64_t)((uint64_t)fs->gdtable_blkno * (uint64_t)fs->blksz),
Simon Glass293d7fb2012-12-26 09:53:28 +0000100 (struct ext2_block_group *)fs->gdtable,
101 (fs->blksz * fs->no_blk_pergdt));
102
103 ext4fs_dump_metadata();
104
105 gindex = 0;
106 gd_index = 0;
107}
108
109int ext4fs_get_bgdtable(void)
110{
111 int status;
Simon Glass293d7fb2012-12-26 09:53:28 +0000112 struct ext_filesystem *fs = get_fs();
Stefan Brüns688d0e72016-09-17 02:10:10 +0200113 int gdsize_total = ROUND(fs->no_blkgrp * fs->gdsize, fs->blksz);
114 fs->no_blk_pergdt = gdsize_total / fs->blksz;
Simon Glass293d7fb2012-12-26 09:53:28 +0000115
116 /* allocate memory for gdtable */
Stefan Brüns688d0e72016-09-17 02:10:10 +0200117 fs->gdtable = zalloc(gdsize_total);
Simon Glass293d7fb2012-12-26 09:53:28 +0000118 if (!fs->gdtable)
119 return -ENOMEM;
120 /* read the group descriptor table */
Frederic Leroy04735e92013-06-26 18:11:25 +0200121 status = ext4fs_devread((lbaint_t)fs->gdtable_blkno * fs->sect_perblk,
122 0, fs->blksz * fs->no_blk_pergdt, fs->gdtable);
Simon Glass293d7fb2012-12-26 09:53:28 +0000123 if (status == 0)
124 goto fail;
125
126 if (ext4fs_log_gdt(fs->gdtable)) {
127 printf("Error in ext4fs_log_gdt\n");
128 return -1;
129 }
130
131 return 0;
132fail:
133 free(fs->gdtable);
134 fs->gdtable = NULL;
135
136 return -1;
137}
138
139static void delete_single_indirect_block(struct ext2_inode *inode)
140{
141 struct ext2_block_group *bgd = NULL;
142 static int prev_bg_bmap_idx = -1;
Michael Walle58a9ecb2016-09-01 11:21:40 +0200143 uint32_t blknr;
Simon Glass293d7fb2012-12-26 09:53:28 +0000144 int remainder;
145 int bg_idx;
146 int status;
Michael Walle58a9ecb2016-09-01 11:21:40 +0200147 uint32_t blk_per_grp = le32_to_cpu(ext4fs_root->sblock.blocks_per_group);
Simon Glass293d7fb2012-12-26 09:53:28 +0000148 struct ext_filesystem *fs = get_fs();
149 char *journal_buffer = zalloc(fs->blksz);
150 if (!journal_buffer) {
151 printf("No memory\n");
152 return;
153 }
Simon Glass293d7fb2012-12-26 09:53:28 +0000154
155 /* deleting the single indirect block associated with inode */
156 if (inode->b.blocks.indir_block != 0) {
Michael Walle58a9ecb2016-09-01 11:21:40 +0200157 blknr = le32_to_cpu(inode->b.blocks.indir_block);
158 debug("SIPB releasing %u\n", blknr);
Łukasz Majewski35dd0552014-05-06 09:36:04 +0200159 bg_idx = blknr / blk_per_grp;
160 if (fs->blksz == 1024) {
Simon Glass293d7fb2012-12-26 09:53:28 +0000161 remainder = blknr % blk_per_grp;
162 if (!remainder)
163 bg_idx--;
164 }
165 ext4fs_reset_block_bmap(blknr, fs->blk_bmaps[bg_idx], bg_idx);
Stefan Brüns688d0e72016-09-17 02:10:10 +0200166 /* get block group descriptor table */
167 bgd = ext4fs_get_group_descriptor(fs, bg_idx);
Stefan Brüns749e93e2016-09-20 01:13:01 +0200168 ext4fs_bg_free_blocks_inc(bgd, fs);
Michael Walle58a9ecb2016-09-01 11:21:40 +0200169 ext4fs_sb_free_blocks_inc(fs->sb);
Simon Glass293d7fb2012-12-26 09:53:28 +0000170 /* journal backup */
171 if (prev_bg_bmap_idx != bg_idx) {
Stefan Brüns688d0e72016-09-17 02:10:10 +0200172 uint64_t b_bitmap_blk = ext4fs_bg_get_block_id(bgd, fs);
Michael Walle58a9ecb2016-09-01 11:21:40 +0200173 status = ext4fs_devread(
Stefan Brüns688d0e72016-09-17 02:10:10 +0200174 b_bitmap_blk * fs->sect_perblk,
175 0, fs->blksz, journal_buffer);
Simon Glass293d7fb2012-12-26 09:53:28 +0000176 if (status == 0)
177 goto fail;
Stefan Brüns688d0e72016-09-17 02:10:10 +0200178 if (ext4fs_log_journal(journal_buffer, b_bitmap_blk))
Simon Glass293d7fb2012-12-26 09:53:28 +0000179 goto fail;
180 prev_bg_bmap_idx = bg_idx;
181 }
182 }
183fail:
184 free(journal_buffer);
185}
186
187static void delete_double_indirect_block(struct ext2_inode *inode)
188{
189 int i;
190 short status;
191 static int prev_bg_bmap_idx = -1;
Michael Walle58a9ecb2016-09-01 11:21:40 +0200192 uint32_t blknr;
Simon Glass293d7fb2012-12-26 09:53:28 +0000193 int remainder;
194 int bg_idx;
Michael Walle58a9ecb2016-09-01 11:21:40 +0200195 uint32_t blk_per_grp = le32_to_cpu(ext4fs_root->sblock.blocks_per_group);
196 __le32 *di_buffer = NULL;
197 void *dib_start_addr = NULL;
Simon Glass293d7fb2012-12-26 09:53:28 +0000198 struct ext2_block_group *bgd = NULL;
199 struct ext_filesystem *fs = get_fs();
200 char *journal_buffer = zalloc(fs->blksz);
201 if (!journal_buffer) {
202 printf("No memory\n");
203 return;
204 }
Simon Glass293d7fb2012-12-26 09:53:28 +0000205
206 if (inode->b.blocks.double_indir_block != 0) {
207 di_buffer = zalloc(fs->blksz);
208 if (!di_buffer) {
209 printf("No memory\n");
210 return;
211 }
Michael Walle58a9ecb2016-09-01 11:21:40 +0200212 dib_start_addr = di_buffer;
213 blknr = le32_to_cpu(inode->b.blocks.double_indir_block);
Frederic Leroy04735e92013-06-26 18:11:25 +0200214 status = ext4fs_devread((lbaint_t)blknr * fs->sect_perblk, 0,
215 fs->blksz, (char *)di_buffer);
Simon Glass293d7fb2012-12-26 09:53:28 +0000216 for (i = 0; i < fs->blksz / sizeof(int); i++) {
217 if (*di_buffer == 0)
218 break;
219
220 debug("DICB releasing %u\n", *di_buffer);
Michael Walle58a9ecb2016-09-01 11:21:40 +0200221 bg_idx = le32_to_cpu(*di_buffer) / blk_per_grp;
Łukasz Majewski35dd0552014-05-06 09:36:04 +0200222 if (fs->blksz == 1024) {
Michael Walle58a9ecb2016-09-01 11:21:40 +0200223 remainder = le32_to_cpu(*di_buffer) % blk_per_grp;
Simon Glass293d7fb2012-12-26 09:53:28 +0000224 if (!remainder)
225 bg_idx--;
226 }
Stefan Brüns688d0e72016-09-17 02:10:10 +0200227 /* get block group descriptor table */
228 bgd = ext4fs_get_group_descriptor(fs, bg_idx);
Michael Walle58a9ecb2016-09-01 11:21:40 +0200229 ext4fs_reset_block_bmap(le32_to_cpu(*di_buffer),
Simon Glass293d7fb2012-12-26 09:53:28 +0000230 fs->blk_bmaps[bg_idx], bg_idx);
231 di_buffer++;
Stefan Brüns749e93e2016-09-20 01:13:01 +0200232 ext4fs_bg_free_blocks_inc(bgd, fs);
Michael Walle58a9ecb2016-09-01 11:21:40 +0200233 ext4fs_sb_free_blocks_inc(fs->sb);
Simon Glass293d7fb2012-12-26 09:53:28 +0000234 /* journal backup */
235 if (prev_bg_bmap_idx != bg_idx) {
Stefan Brüns688d0e72016-09-17 02:10:10 +0200236 uint64_t b_bitmap_blk =
237 ext4fs_bg_get_block_id(bgd, fs);
238 status = ext4fs_devread(b_bitmap_blk
Simon Glass293d7fb2012-12-26 09:53:28 +0000239 * fs->sect_perblk, 0,
240 fs->blksz,
241 journal_buffer);
242 if (status == 0)
243 goto fail;
244
245 if (ext4fs_log_journal(journal_buffer,
Stefan Brüns688d0e72016-09-17 02:10:10 +0200246 b_bitmap_blk))
Simon Glass293d7fb2012-12-26 09:53:28 +0000247 goto fail;
248 prev_bg_bmap_idx = bg_idx;
249 }
250 }
251
252 /* removing the parent double indirect block */
Michael Walle58a9ecb2016-09-01 11:21:40 +0200253 blknr = le32_to_cpu(inode->b.blocks.double_indir_block);
Łukasz Majewski35dd0552014-05-06 09:36:04 +0200254 bg_idx = blknr / blk_per_grp;
255 if (fs->blksz == 1024) {
Simon Glass293d7fb2012-12-26 09:53:28 +0000256 remainder = blknr % blk_per_grp;
257 if (!remainder)
258 bg_idx--;
259 }
Stefan Brüns688d0e72016-09-17 02:10:10 +0200260 /* get block group descriptor table */
261 bgd = ext4fs_get_group_descriptor(fs, bg_idx);
Simon Glass293d7fb2012-12-26 09:53:28 +0000262 ext4fs_reset_block_bmap(blknr, fs->blk_bmaps[bg_idx], bg_idx);
Stefan Brüns749e93e2016-09-20 01:13:01 +0200263 ext4fs_bg_free_blocks_inc(bgd, fs);
Michael Walle58a9ecb2016-09-01 11:21:40 +0200264 ext4fs_sb_free_blocks_inc(fs->sb);
Simon Glass293d7fb2012-12-26 09:53:28 +0000265 /* journal backup */
266 if (prev_bg_bmap_idx != bg_idx) {
Stefan Brüns688d0e72016-09-17 02:10:10 +0200267 uint64_t b_bitmap_blk = ext4fs_bg_get_block_id(bgd, fs);
268 status = ext4fs_devread(b_bitmap_blk * fs->sect_perblk,
269 0, fs->blksz, journal_buffer);
Simon Glass293d7fb2012-12-26 09:53:28 +0000270 if (status == 0)
271 goto fail;
272
Stefan Brüns688d0e72016-09-17 02:10:10 +0200273 if (ext4fs_log_journal(journal_buffer, b_bitmap_blk))
Simon Glass293d7fb2012-12-26 09:53:28 +0000274 goto fail;
275 prev_bg_bmap_idx = bg_idx;
276 }
Michael Walle58a9ecb2016-09-01 11:21:40 +0200277 debug("DIPB releasing %d\n", blknr);
Simon Glass293d7fb2012-12-26 09:53:28 +0000278 }
279fail:
Michael Walle58a9ecb2016-09-01 11:21:40 +0200280 free(dib_start_addr);
Simon Glass293d7fb2012-12-26 09:53:28 +0000281 free(journal_buffer);
282}
283
284static void delete_triple_indirect_block(struct ext2_inode *inode)
285{
286 int i, j;
287 short status;
288 static int prev_bg_bmap_idx = -1;
Michael Walle58a9ecb2016-09-01 11:21:40 +0200289 uint32_t blknr;
Simon Glass293d7fb2012-12-26 09:53:28 +0000290 int remainder;
291 int bg_idx;
Michael Walle58a9ecb2016-09-01 11:21:40 +0200292 uint32_t blk_per_grp = le32_to_cpu(ext4fs_root->sblock.blocks_per_group);
293 __le32 *tigp_buffer = NULL;
294 void *tib_start_addr = NULL;
295 __le32 *tip_buffer = NULL;
296 void *tipb_start_addr = NULL;
Simon Glass293d7fb2012-12-26 09:53:28 +0000297 struct ext2_block_group *bgd = NULL;
298 struct ext_filesystem *fs = get_fs();
299 char *journal_buffer = zalloc(fs->blksz);
300 if (!journal_buffer) {
301 printf("No memory\n");
302 return;
303 }
Simon Glass293d7fb2012-12-26 09:53:28 +0000304
305 if (inode->b.blocks.triple_indir_block != 0) {
306 tigp_buffer = zalloc(fs->blksz);
307 if (!tigp_buffer) {
308 printf("No memory\n");
309 return;
310 }
Michael Walle58a9ecb2016-09-01 11:21:40 +0200311 tib_start_addr = tigp_buffer;
312 blknr = le32_to_cpu(inode->b.blocks.triple_indir_block);
Frederic Leroy04735e92013-06-26 18:11:25 +0200313 status = ext4fs_devread((lbaint_t)blknr * fs->sect_perblk, 0,
314 fs->blksz, (char *)tigp_buffer);
Simon Glass293d7fb2012-12-26 09:53:28 +0000315 for (i = 0; i < fs->blksz / sizeof(int); i++) {
316 if (*tigp_buffer == 0)
317 break;
318 debug("tigp buffer releasing %u\n", *tigp_buffer);
319
320 tip_buffer = zalloc(fs->blksz);
321 if (!tip_buffer)
322 goto fail;
Michael Walle58a9ecb2016-09-01 11:21:40 +0200323 tipb_start_addr = tip_buffer;
324 status = ext4fs_devread((lbaint_t)le32_to_cpu(*tigp_buffer) *
Simon Glass293d7fb2012-12-26 09:53:28 +0000325 fs->sect_perblk, 0, fs->blksz,
326 (char *)tip_buffer);
327 for (j = 0; j < fs->blksz / sizeof(int); j++) {
Michael Walle58a9ecb2016-09-01 11:21:40 +0200328 if (le32_to_cpu(*tip_buffer) == 0)
Simon Glass293d7fb2012-12-26 09:53:28 +0000329 break;
Michael Walle58a9ecb2016-09-01 11:21:40 +0200330 bg_idx = le32_to_cpu(*tip_buffer) / blk_per_grp;
Łukasz Majewski35dd0552014-05-06 09:36:04 +0200331 if (fs->blksz == 1024) {
Michael Walle58a9ecb2016-09-01 11:21:40 +0200332 remainder = le32_to_cpu(*tip_buffer) % blk_per_grp;
Simon Glass293d7fb2012-12-26 09:53:28 +0000333 if (!remainder)
334 bg_idx--;
335 }
336
Michael Walle58a9ecb2016-09-01 11:21:40 +0200337 ext4fs_reset_block_bmap(le32_to_cpu(*tip_buffer),
Simon Glass293d7fb2012-12-26 09:53:28 +0000338 fs->blk_bmaps[bg_idx],
339 bg_idx);
340
341 tip_buffer++;
Stefan Brüns688d0e72016-09-17 02:10:10 +0200342 /* get block group descriptor table */
343 bgd = ext4fs_get_group_descriptor(fs, bg_idx);
Stefan Brüns749e93e2016-09-20 01:13:01 +0200344 ext4fs_bg_free_blocks_inc(bgd, fs);
Michael Walle58a9ecb2016-09-01 11:21:40 +0200345 ext4fs_sb_free_blocks_inc(fs->sb);
Simon Glass293d7fb2012-12-26 09:53:28 +0000346 /* journal backup */
347 if (prev_bg_bmap_idx != bg_idx) {
Stefan Brüns688d0e72016-09-17 02:10:10 +0200348 uint64_t b_bitmap_blk =
349 ext4fs_bg_get_block_id(bgd, fs);
Simon Glass293d7fb2012-12-26 09:53:28 +0000350 status =
351 ext4fs_devread(
Stefan Brüns688d0e72016-09-17 02:10:10 +0200352 b_bitmap_blk *
Simon Glass293d7fb2012-12-26 09:53:28 +0000353 fs->sect_perblk, 0,
354 fs->blksz,
355 journal_buffer);
356 if (status == 0)
357 goto fail;
358
359 if (ext4fs_log_journal(journal_buffer,
Stefan Brüns688d0e72016-09-17 02:10:10 +0200360 b_bitmap_blk))
Simon Glass293d7fb2012-12-26 09:53:28 +0000361 goto fail;
362 prev_bg_bmap_idx = bg_idx;
363 }
364 }
365 free(tipb_start_addr);
366 tipb_start_addr = NULL;
367
368 /*
369 * removing the grand parent blocks
370 * which is connected to inode
371 */
Michael Walle58a9ecb2016-09-01 11:21:40 +0200372 bg_idx = le32_to_cpu(*tigp_buffer) / blk_per_grp;
Łukasz Majewski35dd0552014-05-06 09:36:04 +0200373 if (fs->blksz == 1024) {
Michael Walle58a9ecb2016-09-01 11:21:40 +0200374 remainder = le32_to_cpu(*tigp_buffer) % blk_per_grp;
Simon Glass293d7fb2012-12-26 09:53:28 +0000375 if (!remainder)
376 bg_idx--;
377 }
Michael Walle58a9ecb2016-09-01 11:21:40 +0200378 ext4fs_reset_block_bmap(le32_to_cpu(*tigp_buffer),
Simon Glass293d7fb2012-12-26 09:53:28 +0000379 fs->blk_bmaps[bg_idx], bg_idx);
380
381 tigp_buffer++;
Stefan Brüns688d0e72016-09-17 02:10:10 +0200382 /* get block group descriptor table */
383 bgd = ext4fs_get_group_descriptor(fs, bg_idx);
Stefan Brüns749e93e2016-09-20 01:13:01 +0200384 ext4fs_bg_free_blocks_inc(bgd, fs);
Michael Walle58a9ecb2016-09-01 11:21:40 +0200385 ext4fs_sb_free_blocks_inc(fs->sb);
Simon Glass293d7fb2012-12-26 09:53:28 +0000386 /* journal backup */
387 if (prev_bg_bmap_idx != bg_idx) {
Stefan Brüns688d0e72016-09-17 02:10:10 +0200388 uint64_t b_bitmap_blk =
389 ext4fs_bg_get_block_id(bgd, fs);
Simon Glass293d7fb2012-12-26 09:53:28 +0000390 memset(journal_buffer, '\0', fs->blksz);
Stefan Brüns688d0e72016-09-17 02:10:10 +0200391 status = ext4fs_devread(b_bitmap_blk *
392 fs->sect_perblk, 0,
393 fs->blksz,
394 journal_buffer);
Simon Glass293d7fb2012-12-26 09:53:28 +0000395 if (status == 0)
396 goto fail;
397
398 if (ext4fs_log_journal(journal_buffer,
Stefan Brüns688d0e72016-09-17 02:10:10 +0200399 b_bitmap_blk))
Simon Glass293d7fb2012-12-26 09:53:28 +0000400 goto fail;
401 prev_bg_bmap_idx = bg_idx;
402 }
403 }
404
405 /* removing the grand parent triple indirect block */
Michael Walle58a9ecb2016-09-01 11:21:40 +0200406 blknr = le32_to_cpu(inode->b.blocks.triple_indir_block);
Łukasz Majewski35dd0552014-05-06 09:36:04 +0200407 bg_idx = blknr / blk_per_grp;
408 if (fs->blksz == 1024) {
Simon Glass293d7fb2012-12-26 09:53:28 +0000409 remainder = blknr % blk_per_grp;
410 if (!remainder)
411 bg_idx--;
412 }
413 ext4fs_reset_block_bmap(blknr, fs->blk_bmaps[bg_idx], bg_idx);
Stefan Brüns688d0e72016-09-17 02:10:10 +0200414 /* get block group descriptor table */
415 bgd = ext4fs_get_group_descriptor(fs, bg_idx);
Stefan Brüns749e93e2016-09-20 01:13:01 +0200416 ext4fs_bg_free_blocks_inc(bgd, fs);
Michael Walle58a9ecb2016-09-01 11:21:40 +0200417 ext4fs_sb_free_blocks_inc(fs->sb);
Simon Glass293d7fb2012-12-26 09:53:28 +0000418 /* journal backup */
419 if (prev_bg_bmap_idx != bg_idx) {
Stefan Brüns688d0e72016-09-17 02:10:10 +0200420 uint64_t b_bitmap_blk = ext4fs_bg_get_block_id(bgd, fs);
421 status = ext4fs_devread(b_bitmap_blk * fs->sect_perblk,
422 0, fs->blksz, journal_buffer);
Simon Glass293d7fb2012-12-26 09:53:28 +0000423 if (status == 0)
424 goto fail;
425
Stefan Brüns688d0e72016-09-17 02:10:10 +0200426 if (ext4fs_log_journal(journal_buffer, b_bitmap_blk))
Simon Glass293d7fb2012-12-26 09:53:28 +0000427 goto fail;
428 prev_bg_bmap_idx = bg_idx;
429 }
Michael Walle58a9ecb2016-09-01 11:21:40 +0200430 debug("tigp buffer itself releasing %d\n", blknr);
Simon Glass293d7fb2012-12-26 09:53:28 +0000431 }
432fail:
433 free(tib_start_addr);
434 free(tipb_start_addr);
435 free(journal_buffer);
436}
437
438static int ext4fs_delete_file(int inodeno)
439{
440 struct ext2_inode inode;
441 short status;
442 int i;
443 int remainder;
444 long int blknr;
445 int bg_idx;
446 int ibmap_idx;
447 char *read_buffer = NULL;
448 char *start_block_address = NULL;
Michael Walle58a9ecb2016-09-01 11:21:40 +0200449 uint32_t no_blocks;
Simon Glass293d7fb2012-12-26 09:53:28 +0000450
451 static int prev_bg_bmap_idx = -1;
452 unsigned int inodes_per_block;
Michael Walle58a9ecb2016-09-01 11:21:40 +0200453 uint32_t blkno;
Simon Glass293d7fb2012-12-26 09:53:28 +0000454 unsigned int blkoff;
Michael Walle58a9ecb2016-09-01 11:21:40 +0200455 uint32_t blk_per_grp = le32_to_cpu(ext4fs_root->sblock.blocks_per_group);
456 uint32_t inode_per_grp = le32_to_cpu(ext4fs_root->sblock.inodes_per_group);
Simon Glass293d7fb2012-12-26 09:53:28 +0000457 struct ext2_inode *inode_buffer = NULL;
458 struct ext2_block_group *bgd = NULL;
459 struct ext_filesystem *fs = get_fs();
460 char *journal_buffer = zalloc(fs->blksz);
461 if (!journal_buffer)
462 return -ENOMEM;
Simon Glass293d7fb2012-12-26 09:53:28 +0000463 status = ext4fs_read_inode(ext4fs_root, inodeno, &inode);
464 if (status == 0)
465 goto fail;
466
467 /* read the block no allocated to a file */
Michael Walle58a9ecb2016-09-01 11:21:40 +0200468 no_blocks = le32_to_cpu(inode.size) / fs->blksz;
469 if (le32_to_cpu(inode.size) % fs->blksz)
Simon Glass293d7fb2012-12-26 09:53:28 +0000470 no_blocks++;
471
Jean-Jacques Hiblot5efc0682019-02-13 12:15:25 +0100472 /*
473 * special case for symlinks whose target are small enough that
474 *it fits in struct ext2_inode.b.symlink: no block had been allocated
475 */
476 if ((le16_to_cpu(inode.mode) & S_IFLNK) &&
477 le32_to_cpu(inode.size) <= sizeof(inode.b.symlink)) {
478 no_blocks = 0;
479 }
480
Simon Glass293d7fb2012-12-26 09:53:28 +0000481 if (le32_to_cpu(inode.flags) & EXT4_EXTENTS_FL) {
Stefan Brünsb779e022016-09-06 04:36:54 +0200482 /* FIXME delete extent index blocks, i.e. eh_depth >= 1 */
483 struct ext4_extent_header *eh =
484 (struct ext4_extent_header *)
485 inode.b.blocks.dir_blocks;
486 debug("del: dep=%d entries=%d\n", eh->eh_depth, eh->eh_entries);
Simon Glass293d7fb2012-12-26 09:53:28 +0000487 } else {
Simon Glass293d7fb2012-12-26 09:53:28 +0000488 delete_single_indirect_block(&inode);
489 delete_double_indirect_block(&inode);
490 delete_triple_indirect_block(&inode);
Stefan Brünsb779e022016-09-06 04:36:54 +0200491 }
Simon Glass293d7fb2012-12-26 09:53:28 +0000492
Stefan Brünsb779e022016-09-06 04:36:54 +0200493 /* release data blocks */
494 for (i = 0; i < no_blocks; i++) {
Stephen Warrend5aee652019-01-30 12:58:05 -0700495 blknr = read_allocated_block(&inode, i, NULL);
Stefan Brünsde9e8312016-09-06 04:36:55 +0200496 if (blknr == 0)
497 continue;
498 if (blknr < 0)
499 goto fail;
Stefan Brünsb779e022016-09-06 04:36:54 +0200500 bg_idx = blknr / blk_per_grp;
501 if (fs->blksz == 1024) {
502 remainder = blknr % blk_per_grp;
503 if (!remainder)
504 bg_idx--;
505 }
506 ext4fs_reset_block_bmap(blknr, fs->blk_bmaps[bg_idx],
507 bg_idx);
508 debug("EXT4 Block releasing %ld: %d\n", blknr, bg_idx);
Simon Glass293d7fb2012-12-26 09:53:28 +0000509
Stefan Brüns688d0e72016-09-17 02:10:10 +0200510 /* get block group descriptor table */
511 bgd = ext4fs_get_group_descriptor(fs, bg_idx);
Stefan Brüns749e93e2016-09-20 01:13:01 +0200512 ext4fs_bg_free_blocks_inc(bgd, fs);
Stefan Brünsb779e022016-09-06 04:36:54 +0200513 ext4fs_sb_free_blocks_inc(fs->sb);
514 /* journal backup */
515 if (prev_bg_bmap_idx != bg_idx) {
Stefan Brüns688d0e72016-09-17 02:10:10 +0200516 uint64_t b_bitmap_blk = ext4fs_bg_get_block_id(bgd, fs);
517 status = ext4fs_devread(b_bitmap_blk * fs->sect_perblk,
Stefan Brünsb779e022016-09-06 04:36:54 +0200518 0, fs->blksz,
519 journal_buffer);
520 if (status == 0)
521 goto fail;
Stefan Brüns688d0e72016-09-17 02:10:10 +0200522 if (ext4fs_log_journal(journal_buffer, b_bitmap_blk))
Stefan Brünsb779e022016-09-06 04:36:54 +0200523 goto fail;
524 prev_bg_bmap_idx = bg_idx;
Simon Glass293d7fb2012-12-26 09:53:28 +0000525 }
526 }
527
Stefan Brünsb779e022016-09-06 04:36:54 +0200528 /* release inode */
Simon Glass293d7fb2012-12-26 09:53:28 +0000529 /* from the inode no to blockno */
530 inodes_per_block = fs->blksz / fs->inodesz;
531 ibmap_idx = inodeno / inode_per_grp;
532
533 /* get the block no */
534 inodeno--;
Stefan Brüns688d0e72016-09-17 02:10:10 +0200535 /* get block group descriptor table */
536 bgd = ext4fs_get_group_descriptor(fs, ibmap_idx);
537 blkno = ext4fs_bg_get_inode_table_id(bgd, fs) +
Michael Walle58a9ecb2016-09-01 11:21:40 +0200538 (inodeno % inode_per_grp) / inodes_per_block;
Simon Glass293d7fb2012-12-26 09:53:28 +0000539
540 /* get the offset of the inode */
541 blkoff = ((inodeno) % inodes_per_block) * fs->inodesz;
542
543 /* read the block no containing the inode */
544 read_buffer = zalloc(fs->blksz);
545 if (!read_buffer)
546 goto fail;
547 start_block_address = read_buffer;
Frederic Leroy04735e92013-06-26 18:11:25 +0200548 status = ext4fs_devread((lbaint_t)blkno * fs->sect_perblk,
Simon Glass293d7fb2012-12-26 09:53:28 +0000549 0, fs->blksz, read_buffer);
550 if (status == 0)
551 goto fail;
552
553 if (ext4fs_log_journal(read_buffer, blkno))
554 goto fail;
555
556 read_buffer = read_buffer + blkoff;
557 inode_buffer = (struct ext2_inode *)read_buffer;
Stefan Brüns87f9fdc2016-09-06 04:36:53 +0200558 memset(inode_buffer, '\0', fs->inodesz);
Simon Glass293d7fb2012-12-26 09:53:28 +0000559
560 /* write the inode to original position in inode table */
561 if (ext4fs_put_metadata(start_block_address, blkno))
562 goto fail;
563
564 /* update the respective inode bitmaps */
565 inodeno++;
566 ext4fs_reset_inode_bmap(inodeno, fs->inode_bmaps[ibmap_idx], ibmap_idx);
Stefan Brüns749e93e2016-09-20 01:13:01 +0200567 ext4fs_bg_free_inodes_inc(bgd, fs);
Michael Walle58a9ecb2016-09-01 11:21:40 +0200568 ext4fs_sb_free_inodes_inc(fs->sb);
Simon Glass293d7fb2012-12-26 09:53:28 +0000569 /* journal backup */
570 memset(journal_buffer, '\0', fs->blksz);
Stefan Brüns688d0e72016-09-17 02:10:10 +0200571 status = ext4fs_devread(ext4fs_bg_get_inode_id(bgd, fs) *
Simon Glass293d7fb2012-12-26 09:53:28 +0000572 fs->sect_perblk, 0, fs->blksz, journal_buffer);
573 if (status == 0)
574 goto fail;
Stefan Brüns688d0e72016-09-17 02:10:10 +0200575 if (ext4fs_log_journal(journal_buffer, ext4fs_bg_get_inode_id(bgd, fs)))
Simon Glass293d7fb2012-12-26 09:53:28 +0000576 goto fail;
577
578 ext4fs_update();
579 ext4fs_deinit();
Łukasz Majewski8b454ee2014-05-06 09:36:05 +0200580 ext4fs_reinit_global();
Simon Glass293d7fb2012-12-26 09:53:28 +0000581
582 if (ext4fs_init() != 0) {
583 printf("error in File System init\n");
584 goto fail;
585 }
586
587 free(start_block_address);
588 free(journal_buffer);
589
590 return 0;
591fail:
592 free(start_block_address);
593 free(journal_buffer);
594
595 return -1;
596}
597
598int ext4fs_init(void)
599{
600 short status;
601 int i;
Michael Walle58a9ecb2016-09-01 11:21:40 +0200602 uint32_t real_free_blocks = 0;
Simon Glass293d7fb2012-12-26 09:53:28 +0000603 struct ext_filesystem *fs = get_fs();
604
605 /* populate fs */
606 fs->blksz = EXT2_BLOCK_SIZE(ext4fs_root);
Egbert Eich50ce4c02013-05-01 01:13:19 +0000607 fs->sect_perblk = fs->blksz >> fs->dev_desc->log2blksz;
Simon Glass293d7fb2012-12-26 09:53:28 +0000608
609 /* get the superblock */
610 fs->sb = zalloc(SUPERBLOCK_SIZE);
611 if (!fs->sb)
612 return -ENOMEM;
Egbert Eich50ce4c02013-05-01 01:13:19 +0000613 if (!ext4_read_superblock((char *)fs->sb))
Simon Glass293d7fb2012-12-26 09:53:28 +0000614 goto fail;
615
616 /* init journal */
617 if (ext4fs_init_journal())
618 goto fail;
619
620 /* get total no of blockgroups */
621 fs->no_blkgrp = (uint32_t)ext4fs_div_roundup(
Michael Walle58a9ecb2016-09-01 11:21:40 +0200622 le32_to_cpu(ext4fs_root->sblock.total_blocks)
623 - le32_to_cpu(ext4fs_root->sblock.first_data_block),
624 le32_to_cpu(ext4fs_root->sblock.blocks_per_group));
Simon Glass293d7fb2012-12-26 09:53:28 +0000625
626 /* get the block group descriptor table */
627 fs->gdtable_blkno = ((EXT2_MIN_BLOCK_SIZE == fs->blksz) + 1);
628 if (ext4fs_get_bgdtable() == -1) {
629 printf("Error in getting the block group descriptor table\n");
630 goto fail;
631 }
Simon Glass293d7fb2012-12-26 09:53:28 +0000632
633 /* load all the available bitmap block of the partition */
634 fs->blk_bmaps = zalloc(fs->no_blkgrp * sizeof(char *));
635 if (!fs->blk_bmaps)
636 goto fail;
637 for (i = 0; i < fs->no_blkgrp; i++) {
638 fs->blk_bmaps[i] = zalloc(fs->blksz);
639 if (!fs->blk_bmaps[i])
640 goto fail;
641 }
642
643 for (i = 0; i < fs->no_blkgrp; i++) {
Stefan Brüns688d0e72016-09-17 02:10:10 +0200644 struct ext2_block_group *bgd =
645 ext4fs_get_group_descriptor(fs, i);
646 status = ext4fs_devread(ext4fs_bg_get_block_id(bgd, fs) *
Frederic Leroy04735e92013-06-26 18:11:25 +0200647 fs->sect_perblk, 0,
Simon Glass293d7fb2012-12-26 09:53:28 +0000648 fs->blksz, (char *)fs->blk_bmaps[i]);
649 if (status == 0)
650 goto fail;
651 }
652
653 /* load all the available inode bitmap of the partition */
654 fs->inode_bmaps = zalloc(fs->no_blkgrp * sizeof(unsigned char *));
655 if (!fs->inode_bmaps)
656 goto fail;
657 for (i = 0; i < fs->no_blkgrp; i++) {
658 fs->inode_bmaps[i] = zalloc(fs->blksz);
659 if (!fs->inode_bmaps[i])
660 goto fail;
661 }
662
663 for (i = 0; i < fs->no_blkgrp; i++) {
Stefan Brüns688d0e72016-09-17 02:10:10 +0200664 struct ext2_block_group *bgd =
665 ext4fs_get_group_descriptor(fs, i);
666 status = ext4fs_devread(ext4fs_bg_get_inode_id(bgd, fs) *
Frederic Leroy04735e92013-06-26 18:11:25 +0200667 fs->sect_perblk,
Simon Glass293d7fb2012-12-26 09:53:28 +0000668 0, fs->blksz,
669 (char *)fs->inode_bmaps[i]);
670 if (status == 0)
671 goto fail;
672 }
673
674 /*
675 * check filesystem consistency with free blocks of file system
676 * some time we observed that superblock freeblocks does not match
677 * with the blockgroups freeblocks when improper
678 * reboot of a linux kernel
679 */
Stefan Brüns688d0e72016-09-17 02:10:10 +0200680 for (i = 0; i < fs->no_blkgrp; i++) {
681 struct ext2_block_group *bgd =
682 ext4fs_get_group_descriptor(fs, i);
683 real_free_blocks = real_free_blocks +
684 ext4fs_bg_get_free_blocks(bgd, fs);
685 }
686 if (real_free_blocks != ext4fs_sb_get_free_blocks(fs->sb))
687 ext4fs_sb_set_free_blocks(fs->sb, real_free_blocks);
Simon Glass293d7fb2012-12-26 09:53:28 +0000688
689 return 0;
690fail:
691 ext4fs_deinit();
692
693 return -1;
694}
695
696void ext4fs_deinit(void)
697{
698 int i;
699 struct ext2_inode inode_journal;
700 struct journal_superblock_t *jsb;
Michael Walle58a9ecb2016-09-01 11:21:40 +0200701 uint32_t blknr;
Simon Glass293d7fb2012-12-26 09:53:28 +0000702 struct ext_filesystem *fs = get_fs();
Michael Walle58a9ecb2016-09-01 11:21:40 +0200703 uint32_t new_feature_incompat;
Simon Glass293d7fb2012-12-26 09:53:28 +0000704
705 /* free journal */
706 char *temp_buff = zalloc(fs->blksz);
707 if (temp_buff) {
708 ext4fs_read_inode(ext4fs_root, EXT2_JOURNAL_INO,
709 &inode_journal);
710 blknr = read_allocated_block(&inode_journal,
Stephen Warrend5aee652019-01-30 12:58:05 -0700711 EXT2_JOURNAL_SUPERBLOCK, NULL);
Frederic Leroy04735e92013-06-26 18:11:25 +0200712 ext4fs_devread((lbaint_t)blknr * fs->sect_perblk, 0, fs->blksz,
Simon Glass293d7fb2012-12-26 09:53:28 +0000713 temp_buff);
714 jsb = (struct journal_superblock_t *)temp_buff;
Michael Walle58a9ecb2016-09-01 11:21:40 +0200715 jsb->s_start = 0;
Ma Haijun05508702014-01-08 08:15:33 +0800716 put_ext4((uint64_t) ((uint64_t)blknr * (uint64_t)fs->blksz),
Simon Glass293d7fb2012-12-26 09:53:28 +0000717 (struct journal_superblock_t *)temp_buff, fs->blksz);
718 free(temp_buff);
719 }
720 ext4fs_free_journal();
721
722 /* get the superblock */
Egbert Eich50ce4c02013-05-01 01:13:19 +0000723 ext4_read_superblock((char *)fs->sb);
Michael Walle58a9ecb2016-09-01 11:21:40 +0200724 new_feature_incompat = le32_to_cpu(fs->sb->feature_incompat);
725 new_feature_incompat &= ~EXT3_FEATURE_INCOMPAT_RECOVER;
726 fs->sb->feature_incompat = cpu_to_le32(new_feature_incompat);
Simon Glass293d7fb2012-12-26 09:53:28 +0000727 put_ext4((uint64_t)(SUPERBLOCK_SIZE),
728 (struct ext2_sblock *)fs->sb, (uint32_t)SUPERBLOCK_SIZE);
729 free(fs->sb);
730 fs->sb = NULL;
731
732 if (fs->blk_bmaps) {
733 for (i = 0; i < fs->no_blkgrp; i++) {
734 free(fs->blk_bmaps[i]);
735 fs->blk_bmaps[i] = NULL;
736 }
737 free(fs->blk_bmaps);
738 fs->blk_bmaps = NULL;
739 }
740
741 if (fs->inode_bmaps) {
742 for (i = 0; i < fs->no_blkgrp; i++) {
743 free(fs->inode_bmaps[i]);
744 fs->inode_bmaps[i] = NULL;
745 }
746 free(fs->inode_bmaps);
747 fs->inode_bmaps = NULL;
748 }
749
750
751 free(fs->gdtable);
752 fs->gdtable = NULL;
Simon Glass293d7fb2012-12-26 09:53:28 +0000753 /*
754 * reinitiliazed the global inode and
755 * block bitmap first execution check variables
756 */
757 fs->first_pass_ibmap = 0;
758 fs->first_pass_bbmap = 0;
759 fs->curr_inode_no = 0;
760 fs->curr_blkno = 0;
761}
762
Stefan Brünsde9e8312016-09-06 04:36:55 +0200763/*
764 * Write data to filesystem blocks. Uses same optimization for
765 * contigous sectors as ext4fs_read_file
766 */
Simon Glass293d7fb2012-12-26 09:53:28 +0000767static int ext4fs_write_file(struct ext2_inode *file_inode,
Jean-Jacques Hiblotb0001802019-02-13 12:15:24 +0100768 int pos, unsigned int len, const char *buf)
Simon Glass293d7fb2012-12-26 09:53:28 +0000769{
770 int i;
771 int blockcnt;
Michael Walle58a9ecb2016-09-01 11:21:40 +0200772 uint32_t filesize = le32_to_cpu(file_inode->size);
Simon Glass293d7fb2012-12-26 09:53:28 +0000773 struct ext_filesystem *fs = get_fs();
Egbert Eich50ce4c02013-05-01 01:13:19 +0000774 int log2blksz = fs->dev_desc->log2blksz;
775 int log2_fs_blocksize = LOG2_BLOCK_SIZE(ext4fs_root) - log2blksz;
Simon Glass293d7fb2012-12-26 09:53:28 +0000776 int previous_block_number = -1;
777 int delayed_start = 0;
778 int delayed_extent = 0;
779 int delayed_next = 0;
Jean-Jacques Hiblotb0001802019-02-13 12:15:24 +0100780 const char *delayed_buf = NULL;
Simon Glass293d7fb2012-12-26 09:53:28 +0000781
782 /* Adjust len so it we can't read past the end of the file. */
783 if (len > filesize)
784 len = filesize;
785
786 blockcnt = ((len + pos) + fs->blksz - 1) / fs->blksz;
787
788 for (i = pos / fs->blksz; i < blockcnt; i++) {
789 long int blknr;
790 int blockend = fs->blksz;
791 int skipfirst = 0;
Stephen Warrend5aee652019-01-30 12:58:05 -0700792 blknr = read_allocated_block(file_inode, i, NULL);
Stefan Brünsde9e8312016-09-06 04:36:55 +0200793 if (blknr <= 0)
Simon Glass293d7fb2012-12-26 09:53:28 +0000794 return -1;
795
Egbert Eich50ce4c02013-05-01 01:13:19 +0000796 blknr = blknr << log2_fs_blocksize;
Simon Glass293d7fb2012-12-26 09:53:28 +0000797
798 if (blknr) {
799 if (previous_block_number != -1) {
800 if (delayed_next == blknr) {
801 delayed_extent += blockend;
Egbert Eich50ce4c02013-05-01 01:13:19 +0000802 delayed_next += blockend >> log2blksz;
Simon Glass293d7fb2012-12-26 09:53:28 +0000803 } else { /* spill */
Egbert Eich50ce4c02013-05-01 01:13:19 +0000804 put_ext4((uint64_t)
Ma Haijun05508702014-01-08 08:15:33 +0800805 ((uint64_t)delayed_start << log2blksz),
Simon Glass293d7fb2012-12-26 09:53:28 +0000806 delayed_buf,
807 (uint32_t) delayed_extent);
808 previous_block_number = blknr;
809 delayed_start = blknr;
810 delayed_extent = blockend;
811 delayed_buf = buf;
812 delayed_next = blknr +
Egbert Eich50ce4c02013-05-01 01:13:19 +0000813 (blockend >> log2blksz);
Simon Glass293d7fb2012-12-26 09:53:28 +0000814 }
815 } else {
816 previous_block_number = blknr;
817 delayed_start = blknr;
818 delayed_extent = blockend;
819 delayed_buf = buf;
820 delayed_next = blknr +
Egbert Eich50ce4c02013-05-01 01:13:19 +0000821 (blockend >> log2blksz);
Simon Glass293d7fb2012-12-26 09:53:28 +0000822 }
823 } else {
824 if (previous_block_number != -1) {
825 /* spill */
Ma Haijun05508702014-01-08 08:15:33 +0800826 put_ext4((uint64_t) ((uint64_t)delayed_start <<
Egbert Eich50ce4c02013-05-01 01:13:19 +0000827 log2blksz),
828 delayed_buf,
Simon Glass293d7fb2012-12-26 09:53:28 +0000829 (uint32_t) delayed_extent);
830 previous_block_number = -1;
831 }
Simon Glass293d7fb2012-12-26 09:53:28 +0000832 }
833 buf += fs->blksz - skipfirst;
834 }
835 if (previous_block_number != -1) {
836 /* spill */
Ma Haijun05508702014-01-08 08:15:33 +0800837 put_ext4((uint64_t) ((uint64_t)delayed_start << log2blksz),
Simon Glass293d7fb2012-12-26 09:53:28 +0000838 delayed_buf, (uint32_t) delayed_extent);
839 previous_block_number = -1;
840 }
841
842 return len;
843}
844
Jean-Jacques Hiblotb0001802019-02-13 12:15:24 +0100845int ext4fs_write(const char *fname, const char *buffer,
Jean-Jacques Hiblot5efc0682019-02-13 12:15:25 +0100846 unsigned long sizebytes, int type)
Simon Glass293d7fb2012-12-26 09:53:28 +0000847{
848 int ret = 0;
849 struct ext2_inode *file_inode = NULL;
850 unsigned char *inode_buffer = NULL;
851 int parent_inodeno;
852 int inodeno;
853 time_t timestamp = 0;
854
855 uint64_t bytes_reqd_for_file;
856 unsigned int blks_reqd_for_file;
857 unsigned int blocks_remaining;
858 int existing_file_inodeno;
859 char *temp_ptr = NULL;
860 long int itable_blkno;
861 long int parent_itable_blkno;
862 long int blkoff;
863 struct ext2_sblock *sblock = &(ext4fs_root->sblock);
864 unsigned int inodes_per_block;
865 unsigned int ibmap_idx;
Stefan Brüns688d0e72016-09-17 02:10:10 +0200866 struct ext2_block_group *bgd = NULL;
Simon Glass293d7fb2012-12-26 09:53:28 +0000867 struct ext_filesystem *fs = get_fs();
868 ALLOC_CACHE_ALIGN_BUFFER(char, filename, 256);
Jean-Jacques Hiblot5efc0682019-02-13 12:15:25 +0100869 bool store_link_in_inode = false;
Jeroen Hofstee46a57072014-06-09 15:29:00 +0200870 memset(filename, 0x00, 256);
Simon Glass293d7fb2012-12-26 09:53:28 +0000871
Jean-Jacques Hiblot5efc0682019-02-13 12:15:25 +0100872 if (type != FILETYPE_REG && type != FILETYPE_SYMLINK)
873 return -1;
874
Stefan Brüns87f9fdc2016-09-06 04:36:53 +0200875 g_parent_inode = zalloc(fs->inodesz);
Simon Glass293d7fb2012-12-26 09:53:28 +0000876 if (!g_parent_inode)
877 goto fail;
878
879 if (ext4fs_init() != 0) {
880 printf("error in File System init\n");
881 return -1;
882 }
Sébastien Szymanski2e736552019-03-22 09:33:52 +0100883
884 if (le32_to_cpu(fs->sb->feature_ro_compat) & EXT4_FEATURE_RO_COMPAT_METADATA_CSUM) {
885 printf("Unsupported feature metadata_csum found, not writing.\n");
886 return -1;
887 }
888
Simon Glass293d7fb2012-12-26 09:53:28 +0000889 inodes_per_block = fs->blksz / fs->inodesz;
890 parent_inodeno = ext4fs_get_parent_inode_num(fname, filename, F_FILE);
891 if (parent_inodeno == -1)
892 goto fail;
893 if (ext4fs_iget(parent_inodeno, g_parent_inode))
894 goto fail;
Stefan Brüns10a7a1b2016-09-06 04:36:45 +0200895 /* do not mess up a directory using hash trees */
896 if (le32_to_cpu(g_parent_inode->flags) & EXT4_INDEX_FL) {
897 printf("hash tree directory\n");
898 goto fail;
899 }
Simon Glass293d7fb2012-12-26 09:53:28 +0000900 /* check if the filename is already present in root */
Stefan Brüns76a29512016-09-06 04:36:41 +0200901 existing_file_inodeno = ext4fs_filename_unlink(filename);
Simon Glass293d7fb2012-12-26 09:53:28 +0000902 if (existing_file_inodeno != -1) {
903 ret = ext4fs_delete_file(existing_file_inodeno);
904 fs->first_pass_bbmap = 0;
905 fs->curr_blkno = 0;
906
907 fs->first_pass_ibmap = 0;
908 fs->curr_inode_no = 0;
909 if (ret)
910 goto fail;
911 }
Jean-Jacques Hiblot5efc0682019-02-13 12:15:25 +0100912
913 /* calculate how many blocks required */
914 if (type == FILETYPE_SYMLINK &&
915 sizebytes <= sizeof(file_inode->b.symlink)) {
916 store_link_in_inode = true;
917 bytes_reqd_for_file = 0;
918 } else {
919 bytes_reqd_for_file = sizebytes;
920 }
921
Simon Glass293d7fb2012-12-26 09:53:28 +0000922 blks_reqd_for_file = lldiv(bytes_reqd_for_file, fs->blksz);
923 if (do_div(bytes_reqd_for_file, fs->blksz) != 0) {
924 blks_reqd_for_file++;
925 debug("total bytes for a file %u\n", blks_reqd_for_file);
926 }
927 blocks_remaining = blks_reqd_for_file;
928 /* test for available space in partition */
Michael Walle58a9ecb2016-09-01 11:21:40 +0200929 if (le32_to_cpu(fs->sb->free_blocks) < blks_reqd_for_file) {
Simon Glass293d7fb2012-12-26 09:53:28 +0000930 printf("Not enough space on partition !!!\n");
931 goto fail;
932 }
933
Jean-Jacques Hiblot5efc0682019-02-13 12:15:25 +0100934 inodeno = ext4fs_update_parent_dentry(filename, type);
Stefan Brünsa0d767e2016-09-06 04:36:42 +0200935 if (inodeno == -1)
936 goto fail;
Simon Glass293d7fb2012-12-26 09:53:28 +0000937 /* prepare file inode */
938 inode_buffer = zalloc(fs->inodesz);
939 if (!inode_buffer)
940 goto fail;
941 file_inode = (struct ext2_inode *)inode_buffer;
Jean-Jacques Hiblot5efc0682019-02-13 12:15:25 +0100942 file_inode->size = cpu_to_le32(sizebytes);
943 if (type == FILETYPE_SYMLINK) {
944 file_inode->mode = cpu_to_le16(S_IFLNK | S_IRWXU | S_IRWXG |
945 S_IRWXO);
946 if (store_link_in_inode) {
947 strncpy(file_inode->b.symlink, buffer, sizebytes);
948 sizebytes = 0;
949 }
950 } else {
951 file_inode->mode = cpu_to_le16(S_IFREG | S_IRWXU | S_IRGRP |
952 S_IROTH | S_IXGRP | S_IXOTH);
953 }
Simon Glass293d7fb2012-12-26 09:53:28 +0000954 /* ToDo: Update correct time */
Michael Walle58a9ecb2016-09-01 11:21:40 +0200955 file_inode->mtime = cpu_to_le32(timestamp);
956 file_inode->atime = cpu_to_le32(timestamp);
957 file_inode->ctime = cpu_to_le32(timestamp);
958 file_inode->nlinks = cpu_to_le16(1);
Simon Glass293d7fb2012-12-26 09:53:28 +0000959
960 /* Allocate data blocks */
961 ext4fs_allocate_blocks(file_inode, blocks_remaining,
962 &blks_reqd_for_file);
Michael Walle58a9ecb2016-09-01 11:21:40 +0200963 file_inode->blockcnt = cpu_to_le32((blks_reqd_for_file * fs->blksz) >>
Marek Szyprowski1c9f8f62019-06-21 15:32:51 +0200964 LOG2_SECTOR_SIZE);
Simon Glass293d7fb2012-12-26 09:53:28 +0000965
966 temp_ptr = zalloc(fs->blksz);
967 if (!temp_ptr)
968 goto fail;
Michael Walle58a9ecb2016-09-01 11:21:40 +0200969 ibmap_idx = inodeno / le32_to_cpu(ext4fs_root->sblock.inodes_per_group);
Simon Glass293d7fb2012-12-26 09:53:28 +0000970 inodeno--;
Stefan Brüns688d0e72016-09-17 02:10:10 +0200971 bgd = ext4fs_get_group_descriptor(fs, ibmap_idx);
972 itable_blkno = ext4fs_bg_get_inode_table_id(bgd, fs) +
Michael Walle7f101be2016-08-29 10:46:44 +0200973 (inodeno % le32_to_cpu(sblock->inodes_per_group)) /
Simon Glass293d7fb2012-12-26 09:53:28 +0000974 inodes_per_block;
975 blkoff = (inodeno % inodes_per_block) * fs->inodesz;
Frederic Leroy04735e92013-06-26 18:11:25 +0200976 ext4fs_devread((lbaint_t)itable_blkno * fs->sect_perblk, 0, fs->blksz,
977 temp_ptr);
Simon Glass293d7fb2012-12-26 09:53:28 +0000978 if (ext4fs_log_journal(temp_ptr, itable_blkno))
979 goto fail;
980
981 memcpy(temp_ptr + blkoff, inode_buffer, fs->inodesz);
982 if (ext4fs_put_metadata(temp_ptr, itable_blkno))
983 goto fail;
984 /* copy the file content into data blocks */
Jean-Jacques Hiblotb0001802019-02-13 12:15:24 +0100985 if (ext4fs_write_file(file_inode, 0, sizebytes, buffer) == -1) {
Simon Glass293d7fb2012-12-26 09:53:28 +0000986 printf("Error in copying content\n");
Stefan Brünsde9e8312016-09-06 04:36:55 +0200987 /* FIXME: Deallocate data blocks */
Simon Glass293d7fb2012-12-26 09:53:28 +0000988 goto fail;
989 }
Michael Walle58a9ecb2016-09-01 11:21:40 +0200990 ibmap_idx = parent_inodeno / le32_to_cpu(ext4fs_root->sblock.inodes_per_group);
Simon Glass293d7fb2012-12-26 09:53:28 +0000991 parent_inodeno--;
Stefan Brüns688d0e72016-09-17 02:10:10 +0200992 bgd = ext4fs_get_group_descriptor(fs, ibmap_idx);
993 parent_itable_blkno = ext4fs_bg_get_inode_table_id(bgd, fs) +
Simon Glass293d7fb2012-12-26 09:53:28 +0000994 (parent_inodeno %
Michael Walle7f101be2016-08-29 10:46:44 +0200995 le32_to_cpu(sblock->inodes_per_group)) / inodes_per_block;
Simon Glass293d7fb2012-12-26 09:53:28 +0000996 blkoff = (parent_inodeno % inodes_per_block) * fs->inodesz;
997 if (parent_itable_blkno != itable_blkno) {
998 memset(temp_ptr, '\0', fs->blksz);
Frederic Leroy04735e92013-06-26 18:11:25 +0200999 ext4fs_devread((lbaint_t)parent_itable_blkno * fs->sect_perblk,
Simon Glass293d7fb2012-12-26 09:53:28 +00001000 0, fs->blksz, temp_ptr);
1001 if (ext4fs_log_journal(temp_ptr, parent_itable_blkno))
1002 goto fail;
1003
Stefan Brüns87f9fdc2016-09-06 04:36:53 +02001004 memcpy(temp_ptr + blkoff, g_parent_inode, fs->inodesz);
Simon Glass293d7fb2012-12-26 09:53:28 +00001005 if (ext4fs_put_metadata(temp_ptr, parent_itable_blkno))
1006 goto fail;
Simon Glass293d7fb2012-12-26 09:53:28 +00001007 } else {
1008 /*
1009 * If parent and child fall in same inode table block
1010 * both should be kept in 1 buffer
1011 */
Stefan Brüns87f9fdc2016-09-06 04:36:53 +02001012 memcpy(temp_ptr + blkoff, g_parent_inode, fs->inodesz);
Simon Glass293d7fb2012-12-26 09:53:28 +00001013 gd_index--;
1014 if (ext4fs_put_metadata(temp_ptr, itable_blkno))
1015 goto fail;
Simon Glass293d7fb2012-12-26 09:53:28 +00001016 }
1017 ext4fs_update();
1018 ext4fs_deinit();
1019
1020 fs->first_pass_bbmap = 0;
1021 fs->curr_blkno = 0;
1022 fs->first_pass_ibmap = 0;
1023 fs->curr_inode_no = 0;
1024 free(inode_buffer);
1025 free(g_parent_inode);
Stefan Brüns87a40b62016-09-06 04:36:51 +02001026 free(temp_ptr);
Simon Glass293d7fb2012-12-26 09:53:28 +00001027 g_parent_inode = NULL;
1028
1029 return 0;
1030fail:
1031 ext4fs_deinit();
1032 free(inode_buffer);
1033 free(g_parent_inode);
Stefan Brüns87a40b62016-09-06 04:36:51 +02001034 free(temp_ptr);
Simon Glass293d7fb2012-12-26 09:53:28 +00001035 g_parent_inode = NULL;
1036
1037 return -1;
1038}
Suriyan Ramasami9f12cd02014-11-17 14:39:36 -08001039
1040int ext4_write_file(const char *filename, void *buf, loff_t offset,
1041 loff_t len, loff_t *actwrite)
1042{
1043 int ret;
1044
1045 if (offset != 0) {
1046 printf("** Cannot support non-zero offset **\n");
1047 return -1;
1048 }
1049
Jean-Jacques Hiblot5efc0682019-02-13 12:15:25 +01001050 ret = ext4fs_write(filename, buf, len, FILETYPE_REG);
Suriyan Ramasami9f12cd02014-11-17 14:39:36 -08001051 if (ret) {
1052 printf("** Error ext4fs_write() **\n");
1053 goto fail;
1054 }
Suriyan Ramasami9f12cd02014-11-17 14:39:36 -08001055
Przemyslaw Marczak22b75092015-02-17 15:31:52 +01001056 *actwrite = len;
1057
Suriyan Ramasami9f12cd02014-11-17 14:39:36 -08001058 return 0;
1059
1060fail:
Przemyslaw Marczak22b75092015-02-17 15:31:52 +01001061 *actwrite = 0;
Suriyan Ramasami9f12cd02014-11-17 14:39:36 -08001062
1063 return -1;
1064}
Jean-Jacques Hiblot5efc0682019-02-13 12:15:25 +01001065
1066int ext4fs_create_link(const char *target, const char *fname)
1067{
1068 return ext4fs_write(fname, target, strlen(target), FILETYPE_SYMLINK);
1069}