blob: c52cc400e1f2c0985234b0ec2352200f1d813d80 [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 load support in Uboot.
9 *
10 * (C) Copyright 2004
11 * esd gmbh <www.esd-electronics.com>
12 * Reinhard Arlt <reinhard.arlt@esd-electronics.com>
13 *
14 * based on code from grub2 fs/ext2.c and fs/fshelp.c by
15 * GRUB -- GRand Unified Bootloader
16 * Copyright (C) 2003, 2004 Free Software Foundation, Inc.
17 *
Uma Shankared34f342012-05-25 21:22:49 +053018 * ext4write : Based on generic ext4 protocol.
Uma Shankara1596432012-05-25 21:21:44 +053019 */
20
21#include <common.h>
Simon Glasse6f6f9e2020-05-10 11:39:58 -060022#include <blk.h>
Uma Shankara1596432012-05-25 21:21:44 +053023#include <ext_common.h>
24#include <ext4fs.h>
Simon Glassf7ae49f2020-05-10 11:40:05 -060025#include <log.h>
Uma Shankara1596432012-05-25 21:21:44 +053026#include <malloc.h>
Simon Glasscf92e052015-09-02 17:24:58 -060027#include <memalign.h>
Simon Glasse6f6f9e2020-05-10 11:39:58 -060028#include <part.h>
Uma Shankara1596432012-05-25 21:21:44 +053029#include <stddef.h>
30#include <linux/stat.h>
31#include <linux/time.h>
32#include <asm/byteorder.h>
33#include "ext4_common.h"
34
35struct ext2_data *ext4fs_root;
36struct ext2fs_node *ext4fs_file;
Michael Walle58a9ecb2016-09-01 11:21:40 +020037__le32 *ext4fs_indir1_block;
Uma Shankara1596432012-05-25 21:21:44 +053038int ext4fs_indir1_size;
39int ext4fs_indir1_blkno = -1;
Michael Walle58a9ecb2016-09-01 11:21:40 +020040__le32 *ext4fs_indir2_block;
Uma Shankara1596432012-05-25 21:21:44 +053041int ext4fs_indir2_size;
42int ext4fs_indir2_blkno = -1;
43
Michael Walle58a9ecb2016-09-01 11:21:40 +020044__le32 *ext4fs_indir3_block;
Uma Shankara1596432012-05-25 21:21:44 +053045int ext4fs_indir3_size;
46int ext4fs_indir3_blkno = -1;
47struct ext2_inode *g_parent_inode;
48static int symlinknest;
49
Stephen Warren03e2ecf2012-10-22 06:43:50 +000050#if defined(CONFIG_EXT4_WRITE)
Stefan Brüns9f5dd8b2016-09-20 01:12:42 +020051struct ext2_block_group *ext4fs_get_group_descriptor
52 (const struct ext_filesystem *fs, uint32_t bg_idx)
53{
54 return (struct ext2_block_group *)(fs->gdtable + (bg_idx * fs->gdsize));
55}
56
Michael Walle58a9ecb2016-09-01 11:21:40 +020057static inline void ext4fs_sb_free_inodes_dec(struct ext2_sblock *sb)
58{
59 sb->free_inodes = cpu_to_le32(le32_to_cpu(sb->free_inodes) - 1);
60}
61
62static inline void ext4fs_sb_free_blocks_dec(struct ext2_sblock *sb)
63{
Stefan Brüns749e93e2016-09-20 01:13:01 +020064 uint64_t free_blocks = le32_to_cpu(sb->free_blocks);
65 free_blocks += (uint64_t)le32_to_cpu(sb->free_blocks_high) << 32;
66 free_blocks--;
67
68 sb->free_blocks = cpu_to_le32(free_blocks & 0xffffffff);
69 sb->free_blocks_high = cpu_to_le16(free_blocks >> 32);
Michael Walle58a9ecb2016-09-01 11:21:40 +020070}
71
Stefan Brüns749e93e2016-09-20 01:13:01 +020072static inline void ext4fs_bg_free_inodes_dec
73 (struct ext2_block_group *bg, const struct ext_filesystem *fs)
Michael Walle58a9ecb2016-09-01 11:21:40 +020074{
Stefan Brüns749e93e2016-09-20 01:13:01 +020075 uint32_t free_inodes = le16_to_cpu(bg->free_inodes);
76 if (fs->gdsize == 64)
77 free_inodes += le16_to_cpu(bg->free_inodes_high) << 16;
78 free_inodes--;
79
80 bg->free_inodes = cpu_to_le16(free_inodes & 0xffff);
81 if (fs->gdsize == 64)
82 bg->free_inodes_high = cpu_to_le16(free_inodes >> 16);
Michael Walle58a9ecb2016-09-01 11:21:40 +020083}
84
Stefan Brüns749e93e2016-09-20 01:13:01 +020085static inline void ext4fs_bg_free_blocks_dec
86 (struct ext2_block_group *bg, const struct ext_filesystem *fs)
Michael Walle58a9ecb2016-09-01 11:21:40 +020087{
Stefan Brüns749e93e2016-09-20 01:13:01 +020088 uint32_t free_blocks = le16_to_cpu(bg->free_blocks);
89 if (fs->gdsize == 64)
90 free_blocks += le16_to_cpu(bg->free_blocks_high) << 16;
91 free_blocks--;
92
93 bg->free_blocks = cpu_to_le16(free_blocks & 0xffff);
94 if (fs->gdsize == 64)
95 bg->free_blocks_high = cpu_to_le16(free_blocks >> 16);
Michael Walle58a9ecb2016-09-01 11:21:40 +020096}
97
Stefan Brüns749e93e2016-09-20 01:13:01 +020098static inline void ext4fs_bg_itable_unused_dec
99 (struct ext2_block_group *bg, const struct ext_filesystem *fs)
Michael Walle58a9ecb2016-09-01 11:21:40 +0200100{
Stefan Brüns749e93e2016-09-20 01:13:01 +0200101 uint32_t free_inodes = le16_to_cpu(bg->bg_itable_unused);
102 if (fs->gdsize == 64)
103 free_inodes += le16_to_cpu(bg->bg_itable_unused_high) << 16;
104 free_inodes--;
105
106 bg->bg_itable_unused = cpu_to_le16(free_inodes & 0xffff);
107 if (fs->gdsize == 64)
108 bg->bg_itable_unused_high = cpu_to_le16(free_inodes >> 16);
Michael Walle58a9ecb2016-09-01 11:21:40 +0200109}
110
Stefan Brüns9f5dd8b2016-09-20 01:12:42 +0200111uint64_t ext4fs_sb_get_free_blocks(const struct ext2_sblock *sb)
112{
113 uint64_t free_blocks = le32_to_cpu(sb->free_blocks);
114 free_blocks += (uint64_t)le32_to_cpu(sb->free_blocks_high) << 32;
115 return free_blocks;
116}
117
118void ext4fs_sb_set_free_blocks(struct ext2_sblock *sb, uint64_t free_blocks)
119{
120 sb->free_blocks = cpu_to_le32(free_blocks & 0xffffffff);
121 sb->free_blocks_high = cpu_to_le16(free_blocks >> 32);
122}
123
124uint32_t ext4fs_bg_get_free_blocks(const struct ext2_block_group *bg,
125 const struct ext_filesystem *fs)
126{
127 uint32_t free_blocks = le16_to_cpu(bg->free_blocks);
128 if (fs->gdsize == 64)
129 free_blocks += le16_to_cpu(bg->free_blocks_high) << 16;
130 return free_blocks;
131}
132
133static inline
134uint32_t ext4fs_bg_get_free_inodes(const struct ext2_block_group *bg,
135 const struct ext_filesystem *fs)
136{
137 uint32_t free_inodes = le16_to_cpu(bg->free_inodes);
138 if (fs->gdsize == 64)
139 free_inodes += le16_to_cpu(bg->free_inodes_high) << 16;
140 return free_inodes;
141}
142
143static inline uint16_t ext4fs_bg_get_flags(const struct ext2_block_group *bg)
144{
145 return le16_to_cpu(bg->bg_flags);
146}
147
148static inline void ext4fs_bg_set_flags(struct ext2_block_group *bg,
149 uint16_t flags)
150{
151 bg->bg_flags = cpu_to_le16(flags);
152}
153
154/* Block number of the block bitmap */
155uint64_t ext4fs_bg_get_block_id(const struct ext2_block_group *bg,
156 const struct ext_filesystem *fs)
157{
158 uint64_t block_nr = le32_to_cpu(bg->block_id);
159 if (fs->gdsize == 64)
160 block_nr += (uint64_t)le32_to_cpu(bg->block_id_high) << 32;
161 return block_nr;
162}
163
164/* Block number of the inode bitmap */
165uint64_t ext4fs_bg_get_inode_id(const struct ext2_block_group *bg,
166 const struct ext_filesystem *fs)
167{
168 uint64_t block_nr = le32_to_cpu(bg->inode_id);
169 if (fs->gdsize == 64)
170 block_nr += (uint64_t)le32_to_cpu(bg->inode_id_high) << 32;
171 return block_nr;
172}
173#endif
174
175/* Block number of the inode table */
176uint64_t ext4fs_bg_get_inode_table_id(const struct ext2_block_group *bg,
177 const struct ext_filesystem *fs)
178{
179 uint64_t block_nr = le32_to_cpu(bg->inode_table_id);
180 if (fs->gdsize == 64)
181 block_nr +=
182 (uint64_t)le32_to_cpu(bg->inode_table_id_high) << 32;
183 return block_nr;
184}
185
186#if defined(CONFIG_EXT4_WRITE)
Uma Shankared34f342012-05-25 21:22:49 +0530187uint32_t ext4fs_div_roundup(uint32_t size, uint32_t n)
188{
189 uint32_t res = size / n;
190 if (res * n != size)
191 res++;
192
193 return res;
194}
195
Jean-Jacques Hiblotb0001802019-02-13 12:15:24 +0100196void put_ext4(uint64_t off, const void *buf, uint32_t size)
Uma Shankared34f342012-05-25 21:22:49 +0530197{
198 uint64_t startblock;
199 uint64_t remainder;
200 unsigned char *temp_ptr = NULL;
Uma Shankared34f342012-05-25 21:22:49 +0530201 struct ext_filesystem *fs = get_fs();
Egbert Eich50ce4c02013-05-01 01:13:19 +0000202 int log2blksz = fs->dev_desc->log2blksz;
203 ALLOC_CACHE_ALIGN_BUFFER(unsigned char, sec_buf, fs->dev_desc->blksz);
Uma Shankared34f342012-05-25 21:22:49 +0530204
Egbert Eich50ce4c02013-05-01 01:13:19 +0000205 startblock = off >> log2blksz;
Uma Shankared34f342012-05-25 21:22:49 +0530206 startblock += part_offset;
Egbert Eich50ce4c02013-05-01 01:13:19 +0000207 remainder = off & (uint64_t)(fs->dev_desc->blksz - 1);
Uma Shankared34f342012-05-25 21:22:49 +0530208
209 if (fs->dev_desc == NULL)
210 return;
211
Egbert Eich50ce4c02013-05-01 01:13:19 +0000212 if ((startblock + (size >> log2blksz)) >
Uma Shankared34f342012-05-25 21:22:49 +0530213 (part_offset + fs->total_sect)) {
Frederic Leroy04735e92013-06-26 18:11:25 +0200214 printf("part_offset is " LBAFU "\n", part_offset);
Masahiro Yamadadee37fc2018-08-06 20:47:40 +0900215 printf("total_sector is %llu\n", fs->total_sect);
Uma Shankared34f342012-05-25 21:22:49 +0530216 printf("error: overflow occurs\n");
217 return;
218 }
219
220 if (remainder) {
Simon Glass2a981dc2016-02-29 15:25:52 -0700221 blk_dread(fs->dev_desc, startblock, 1, sec_buf);
222 temp_ptr = sec_buf;
223 memcpy((temp_ptr + remainder), (unsigned char *)buf, size);
224 blk_dwrite(fs->dev_desc, startblock, 1, sec_buf);
Uma Shankared34f342012-05-25 21:22:49 +0530225 } else {
Egbert Eich50ce4c02013-05-01 01:13:19 +0000226 if (size >> log2blksz != 0) {
Simon Glass2a981dc2016-02-29 15:25:52 -0700227 blk_dwrite(fs->dev_desc, startblock, size >> log2blksz,
228 (unsigned long *)buf);
Uma Shankared34f342012-05-25 21:22:49 +0530229 } else {
Simon Glass2a981dc2016-02-29 15:25:52 -0700230 blk_dread(fs->dev_desc, startblock, 1, sec_buf);
Uma Shankared34f342012-05-25 21:22:49 +0530231 temp_ptr = sec_buf;
232 memcpy(temp_ptr, buf, size);
Simon Glass2a981dc2016-02-29 15:25:52 -0700233 blk_dwrite(fs->dev_desc, startblock, 1,
234 (unsigned long *)sec_buf);
Uma Shankared34f342012-05-25 21:22:49 +0530235 }
236 }
237}
238
239static int _get_new_inode_no(unsigned char *buffer)
240{
241 struct ext_filesystem *fs = get_fs();
242 unsigned char input;
243 int operand, status;
244 int count = 1;
245 int j = 0;
246
247 /* get the blocksize of the filesystem */
248 unsigned char *ptr = buffer;
249 while (*ptr == 255) {
250 ptr++;
251 count += 8;
Michael Walle58a9ecb2016-09-01 11:21:40 +0200252 if (count > le32_to_cpu(ext4fs_root->sblock.inodes_per_group))
Uma Shankared34f342012-05-25 21:22:49 +0530253 return -1;
254 }
255
256 for (j = 0; j < fs->blksz; j++) {
257 input = *ptr;
258 int i = 0;
259 while (i <= 7) {
260 operand = 1 << i;
261 status = input & operand;
262 if (status) {
263 i++;
264 count++;
265 } else {
266 *ptr |= operand;
267 return count;
268 }
269 }
270 ptr = ptr + 1;
271 }
272
273 return -1;
274}
275
276static int _get_new_blk_no(unsigned char *buffer)
277{
Stefan Brüns0ceef3d2016-09-06 04:36:50 +0200278 int operand;
Uma Shankared34f342012-05-25 21:22:49 +0530279 int count = 0;
Stefan Brüns0ceef3d2016-09-06 04:36:50 +0200280 int i;
Uma Shankared34f342012-05-25 21:22:49 +0530281 unsigned char *ptr = buffer;
282 struct ext_filesystem *fs = get_fs();
283
Uma Shankared34f342012-05-25 21:22:49 +0530284 while (*ptr == 255) {
285 ptr++;
286 count += 8;
287 if (count == (fs->blksz * 8))
288 return -1;
289 }
290
Stefan Brüns0ceef3d2016-09-06 04:36:50 +0200291 if (fs->blksz == 1024)
292 count += 1;
293
294 for (i = 0; i <= 7; i++) {
295 operand = 1 << i;
296 if (*ptr & operand) {
297 count++;
298 } else {
299 *ptr |= operand;
300 return count;
Uma Shankared34f342012-05-25 21:22:49 +0530301 }
Uma Shankared34f342012-05-25 21:22:49 +0530302 }
303
304 return -1;
305}
306
307int ext4fs_set_block_bmap(long int blockno, unsigned char *buffer, int index)
308{
309 int i, remainder, status;
310 unsigned char *ptr = buffer;
311 unsigned char operand;
312 i = blockno / 8;
313 remainder = blockno % 8;
314 int blocksize = EXT2_BLOCK_SIZE(ext4fs_root);
315
316 i = i - (index * blocksize);
317 if (blocksize != 1024) {
318 ptr = ptr + i;
319 operand = 1 << remainder;
320 status = *ptr & operand;
321 if (status)
322 return -1;
323
324 *ptr = *ptr | operand;
325 return 0;
326 } else {
327 if (remainder == 0) {
328 ptr = ptr + i - 1;
329 operand = (1 << 7);
330 } else {
331 ptr = ptr + i;
332 operand = (1 << (remainder - 1));
333 }
334 status = *ptr & operand;
335 if (status)
336 return -1;
337
338 *ptr = *ptr | operand;
339 return 0;
340 }
341}
342
343void ext4fs_reset_block_bmap(long int blockno, unsigned char *buffer, int index)
344{
345 int i, remainder, status;
346 unsigned char *ptr = buffer;
347 unsigned char operand;
348 i = blockno / 8;
349 remainder = blockno % 8;
350 int blocksize = EXT2_BLOCK_SIZE(ext4fs_root);
351
352 i = i - (index * blocksize);
353 if (blocksize != 1024) {
354 ptr = ptr + i;
355 operand = (1 << remainder);
356 status = *ptr & operand;
357 if (status)
358 *ptr = *ptr & ~(operand);
359 } else {
360 if (remainder == 0) {
361 ptr = ptr + i - 1;
362 operand = (1 << 7);
363 } else {
364 ptr = ptr + i;
365 operand = (1 << (remainder - 1));
366 }
367 status = *ptr & operand;
368 if (status)
369 *ptr = *ptr & ~(operand);
370 }
371}
372
373int ext4fs_set_inode_bmap(int inode_no, unsigned char *buffer, int index)
374{
375 int i, remainder, status;
376 unsigned char *ptr = buffer;
377 unsigned char operand;
378
Michael Walle58a9ecb2016-09-01 11:21:40 +0200379 inode_no -= (index * le32_to_cpu(ext4fs_root->sblock.inodes_per_group));
Uma Shankared34f342012-05-25 21:22:49 +0530380 i = inode_no / 8;
381 remainder = inode_no % 8;
382 if (remainder == 0) {
383 ptr = ptr + i - 1;
384 operand = (1 << 7);
385 } else {
386 ptr = ptr + i;
387 operand = (1 << (remainder - 1));
388 }
389 status = *ptr & operand;
390 if (status)
391 return -1;
392
393 *ptr = *ptr | operand;
394
395 return 0;
396}
397
398void ext4fs_reset_inode_bmap(int inode_no, unsigned char *buffer, int index)
399{
400 int i, remainder, status;
401 unsigned char *ptr = buffer;
402 unsigned char operand;
403
Michael Walle58a9ecb2016-09-01 11:21:40 +0200404 inode_no -= (index * le32_to_cpu(ext4fs_root->sblock.inodes_per_group));
Uma Shankared34f342012-05-25 21:22:49 +0530405 i = inode_no / 8;
406 remainder = inode_no % 8;
407 if (remainder == 0) {
408 ptr = ptr + i - 1;
409 operand = (1 << 7);
410 } else {
411 ptr = ptr + i;
412 operand = (1 << (remainder - 1));
413 }
414 status = *ptr & operand;
415 if (status)
416 *ptr = *ptr & ~(operand);
417}
418
Michael Walle58a9ecb2016-09-01 11:21:40 +0200419uint16_t ext4fs_checksum_update(uint32_t i)
Uma Shankared34f342012-05-25 21:22:49 +0530420{
421 struct ext2_block_group *desc;
422 struct ext_filesystem *fs = get_fs();
Michael Walle58a9ecb2016-09-01 11:21:40 +0200423 uint16_t crc = 0;
424 __le32 le32_i = cpu_to_le32(i);
Uma Shankared34f342012-05-25 21:22:49 +0530425
Stefan Brüns688d0e72016-09-17 02:10:10 +0200426 desc = ext4fs_get_group_descriptor(fs, i);
Michael Walle58a9ecb2016-09-01 11:21:40 +0200427 if (le32_to_cpu(fs->sb->feature_ro_compat) & EXT4_FEATURE_RO_COMPAT_GDT_CSUM) {
Uma Shankared34f342012-05-25 21:22:49 +0530428 int offset = offsetof(struct ext2_block_group, bg_checksum);
429
430 crc = ext2fs_crc16(~0, fs->sb->unique_id,
431 sizeof(fs->sb->unique_id));
Michael Walle58a9ecb2016-09-01 11:21:40 +0200432 crc = ext2fs_crc16(crc, &le32_i, sizeof(le32_i));
Uma Shankared34f342012-05-25 21:22:49 +0530433 crc = ext2fs_crc16(crc, desc, offset);
434 offset += sizeof(desc->bg_checksum); /* skip checksum */
435 assert(offset == sizeof(*desc));
Tuomas Tynkkynen385b7312017-09-25 22:06:31 +0300436 if (offset < fs->gdsize) {
437 crc = ext2fs_crc16(crc, (__u8 *)desc + offset,
438 fs->gdsize - offset);
439 }
Uma Shankared34f342012-05-25 21:22:49 +0530440 }
441
442 return crc;
443}
444
445static int check_void_in_dentry(struct ext2_dirent *dir, char *filename)
446{
447 int dentry_length;
448 int sizeof_void_space;
449 int new_entry_byte_reqd;
450 short padding_factor = 0;
451
452 if (dir->namelen % 4 != 0)
453 padding_factor = 4 - (dir->namelen % 4);
454
455 dentry_length = sizeof(struct ext2_dirent) +
456 dir->namelen + padding_factor;
Michael Walle58a9ecb2016-09-01 11:21:40 +0200457 sizeof_void_space = le16_to_cpu(dir->direntlen) - dentry_length;
Uma Shankared34f342012-05-25 21:22:49 +0530458 if (sizeof_void_space == 0)
459 return 0;
460
461 padding_factor = 0;
462 if (strlen(filename) % 4 != 0)
463 padding_factor = 4 - (strlen(filename) % 4);
464
465 new_entry_byte_reqd = strlen(filename) +
466 sizeof(struct ext2_dirent) + padding_factor;
467 if (sizeof_void_space >= new_entry_byte_reqd) {
Michael Walle58a9ecb2016-09-01 11:21:40 +0200468 dir->direntlen = cpu_to_le16(dentry_length);
Uma Shankared34f342012-05-25 21:22:49 +0530469 return sizeof_void_space;
470 }
471
472 return 0;
473}
474
Stefan Brünsa0d767e2016-09-06 04:36:42 +0200475int ext4fs_update_parent_dentry(char *filename, int file_type)
Uma Shankared34f342012-05-25 21:22:49 +0530476{
477 unsigned int *zero_buffer = NULL;
478 char *root_first_block_buffer = NULL;
Stefan Brünsa321abd2016-09-06 04:36:44 +0200479 int blk_idx;
Uma Shankared34f342012-05-25 21:22:49 +0530480 long int first_block_no_of_root = 0;
Uma Shankared34f342012-05-25 21:22:49 +0530481 int totalbytes = 0;
Uma Shankared34f342012-05-25 21:22:49 +0530482 unsigned int new_entry_byte_reqd;
Uma Shankared34f342012-05-25 21:22:49 +0530483 int sizeof_void_space = 0;
484 int templength = 0;
Stefan Brünsa0d767e2016-09-06 04:36:42 +0200485 int inodeno = -1;
Uma Shankared34f342012-05-25 21:22:49 +0530486 int status;
487 struct ext_filesystem *fs = get_fs();
488 /* directory entry */
489 struct ext2_dirent *dir;
Uma Shankared34f342012-05-25 21:22:49 +0530490 char *temp_dir = NULL;
Michael Walle58a9ecb2016-09-01 11:21:40 +0200491 uint32_t new_blk_no;
492 uint32_t new_size;
493 uint32_t new_blockcnt;
Stefan Brünsa321abd2016-09-06 04:36:44 +0200494 uint32_t directory_blocks;
Uma Shankared34f342012-05-25 21:22:49 +0530495
496 zero_buffer = zalloc(fs->blksz);
497 if (!zero_buffer) {
498 printf("No Memory\n");
Stefan Brünsa0d767e2016-09-06 04:36:42 +0200499 return -1;
Uma Shankared34f342012-05-25 21:22:49 +0530500 }
501 root_first_block_buffer = zalloc(fs->blksz);
502 if (!root_first_block_buffer) {
503 free(zero_buffer);
504 printf("No Memory\n");
Stefan Brünsa0d767e2016-09-06 04:36:42 +0200505 return -1;
Uma Shankared34f342012-05-25 21:22:49 +0530506 }
Stefan Brünsa321abd2016-09-06 04:36:44 +0200507 new_entry_byte_reqd = ROUND(strlen(filename) +
508 sizeof(struct ext2_dirent), 4);
Uma Shankared34f342012-05-25 21:22:49 +0530509restart:
Stefan Brünsa321abd2016-09-06 04:36:44 +0200510 directory_blocks = le32_to_cpu(g_parent_inode->size) >>
511 LOG2_BLOCK_SIZE(ext4fs_root);
512 blk_idx = directory_blocks - 1;
Uma Shankared34f342012-05-25 21:22:49 +0530513
Stefan Brünsa321abd2016-09-06 04:36:44 +0200514restart_read:
Uma Shankared34f342012-05-25 21:22:49 +0530515 /* read the block no allocated to a file */
Stephen Warrend5aee652019-01-30 12:58:05 -0700516 first_block_no_of_root = read_allocated_block(g_parent_inode, blk_idx,
517 NULL);
Stefan Brünsa321abd2016-09-06 04:36:44 +0200518 if (first_block_no_of_root <= 0)
519 goto fail;
Uma Shankared34f342012-05-25 21:22:49 +0530520
Frederic Leroy04735e92013-06-26 18:11:25 +0200521 status = ext4fs_devread((lbaint_t)first_block_no_of_root
Uma Shankared34f342012-05-25 21:22:49 +0530522 * fs->sect_perblk,
523 0, fs->blksz, root_first_block_buffer);
524 if (status == 0)
525 goto fail;
526
527 if (ext4fs_log_journal(root_first_block_buffer, first_block_no_of_root))
528 goto fail;
529 dir = (struct ext2_dirent *)root_first_block_buffer;
Uma Shankared34f342012-05-25 21:22:49 +0530530 totalbytes = 0;
Stefan Brünsa321abd2016-09-06 04:36:44 +0200531
Michael Walle58a9ecb2016-09-01 11:21:40 +0200532 while (le16_to_cpu(dir->direntlen) > 0) {
Stefan Brünsa321abd2016-09-06 04:36:44 +0200533 unsigned short used_len = ROUND(dir->namelen +
534 sizeof(struct ext2_dirent), 4);
Uma Shankared34f342012-05-25 21:22:49 +0530535
Stefan Brünsa321abd2016-09-06 04:36:44 +0200536 /* last entry of block */
Michael Walle58a9ecb2016-09-01 11:21:40 +0200537 if (fs->blksz - totalbytes == le16_to_cpu(dir->direntlen)) {
Uma Shankared34f342012-05-25 21:22:49 +0530538
Stefan Brünsa321abd2016-09-06 04:36:44 +0200539 /* check if new entry fits */
540 if ((used_len + new_entry_byte_reqd) <=
541 le16_to_cpu(dir->direntlen)) {
542 dir->direntlen = cpu_to_le16(used_len);
543 break;
544 } else {
545 if (blk_idx > 0) {
546 printf("Block full, trying previous\n");
547 blk_idx--;
548 goto restart_read;
549 }
550 printf("All blocks full: Allocate new\n");
Uma Shankared34f342012-05-25 21:22:49 +0530551
Stefan Brünsb96c3c72016-09-06 04:36:43 +0200552 if (le32_to_cpu(g_parent_inode->flags) &
553 EXT4_EXTENTS_FL) {
554 printf("Directory uses extents\n");
555 goto fail;
556 }
Stefan Brünsa321abd2016-09-06 04:36:44 +0200557 if (directory_blocks >= INDIRECT_BLOCKS) {
Uma Shankared34f342012-05-25 21:22:49 +0530558 printf("Directory exceeds limit\n");
559 goto fail;
560 }
Michael Walle58a9ecb2016-09-01 11:21:40 +0200561 new_blk_no = ext4fs_get_new_blk_no();
562 if (new_blk_no == -1) {
Uma Shankared34f342012-05-25 21:22:49 +0530563 printf("no block left to assign\n");
564 goto fail;
565 }
Michael Walle58a9ecb2016-09-01 11:21:40 +0200566 put_ext4((uint64_t)new_blk_no * fs->blksz, zero_buffer, fs->blksz);
Stefan Brünsa321abd2016-09-06 04:36:44 +0200567 g_parent_inode->b.blocks.
568 dir_blocks[directory_blocks] =
Michael Walle58a9ecb2016-09-01 11:21:40 +0200569 cpu_to_le32(new_blk_no);
570
571 new_size = le32_to_cpu(g_parent_inode->size);
572 new_size += fs->blksz;
573 g_parent_inode->size = cpu_to_le32(new_size);
574
575 new_blockcnt = le32_to_cpu(g_parent_inode->blockcnt);
Marek Szyprowski1c9f8f62019-06-21 15:32:51 +0200576 new_blockcnt += fs->blksz >> LOG2_SECTOR_SIZE;
Michael Walle58a9ecb2016-09-01 11:21:40 +0200577 g_parent_inode->blockcnt = cpu_to_le32(new_blockcnt);
578
Uma Shankared34f342012-05-25 21:22:49 +0530579 if (ext4fs_put_metadata
580 (root_first_block_buffer,
581 first_block_no_of_root))
582 goto fail;
583 goto restart;
584 }
Uma Shankared34f342012-05-25 21:22:49 +0530585 }
586
Michael Walle58a9ecb2016-09-01 11:21:40 +0200587 templength = le16_to_cpu(dir->direntlen);
Uma Shankared34f342012-05-25 21:22:49 +0530588 totalbytes = totalbytes + templength;
589 sizeof_void_space = check_void_in_dentry(dir, filename);
590 if (sizeof_void_space)
591 break;
592
593 dir = (struct ext2_dirent *)((char *)dir + templength);
Uma Shankared34f342012-05-25 21:22:49 +0530594 }
595
596 /* make a pointer ready for creating next directory entry */
Michael Walle58a9ecb2016-09-01 11:21:40 +0200597 templength = le16_to_cpu(dir->direntlen);
Uma Shankared34f342012-05-25 21:22:49 +0530598 totalbytes = totalbytes + templength;
599 dir = (struct ext2_dirent *)((char *)dir + templength);
Uma Shankared34f342012-05-25 21:22:49 +0530600
601 /* get the next available inode number */
602 inodeno = ext4fs_get_new_inode_no();
603 if (inodeno == -1) {
604 printf("no inode left to assign\n");
605 goto fail;
606 }
Michael Walle58a9ecb2016-09-01 11:21:40 +0200607 dir->inode = cpu_to_le32(inodeno);
Uma Shankared34f342012-05-25 21:22:49 +0530608 if (sizeof_void_space)
Michael Walle58a9ecb2016-09-01 11:21:40 +0200609 dir->direntlen = cpu_to_le16(sizeof_void_space);
Uma Shankared34f342012-05-25 21:22:49 +0530610 else
Michael Walle58a9ecb2016-09-01 11:21:40 +0200611 dir->direntlen = cpu_to_le16(fs->blksz - totalbytes);
Uma Shankared34f342012-05-25 21:22:49 +0530612
613 dir->namelen = strlen(filename);
Jean-Jacques Hiblot5efc0682019-02-13 12:15:25 +0100614 dir->filetype = file_type;
Uma Shankared34f342012-05-25 21:22:49 +0530615 temp_dir = (char *)dir;
616 temp_dir = temp_dir + sizeof(struct ext2_dirent);
617 memcpy(temp_dir, filename, strlen(filename));
618
Uma Shankared34f342012-05-25 21:22:49 +0530619 /* update or write the 1st block of root inode */
620 if (ext4fs_put_metadata(root_first_block_buffer,
621 first_block_no_of_root))
622 goto fail;
623
624fail:
625 free(zero_buffer);
626 free(root_first_block_buffer);
Stefan Brünsa0d767e2016-09-06 04:36:42 +0200627
628 return inodeno;
Uma Shankared34f342012-05-25 21:22:49 +0530629}
630
631static int search_dir(struct ext2_inode *parent_inode, char *dirname)
632{
633 int status;
Stefan Brüns76a29512016-09-06 04:36:41 +0200634 int inodeno = 0;
Stefan Brünsb7dd40d2016-09-06 04:36:46 +0200635 int offset;
636 int blk_idx;
Uma Shankared34f342012-05-25 21:22:49 +0530637 long int blknr;
Stefan Brünsb7dd40d2016-09-06 04:36:46 +0200638 char *block_buffer = NULL;
Uma Shankared34f342012-05-25 21:22:49 +0530639 struct ext2_dirent *dir = NULL;
Uma Shankared34f342012-05-25 21:22:49 +0530640 struct ext_filesystem *fs = get_fs();
Stefan Brünsb7dd40d2016-09-06 04:36:46 +0200641 uint32_t directory_blocks;
642 char *direntname;
Uma Shankared34f342012-05-25 21:22:49 +0530643
Stefan Brünsb7dd40d2016-09-06 04:36:46 +0200644 directory_blocks = le32_to_cpu(parent_inode->size) >>
645 LOG2_BLOCK_SIZE(ext4fs_root);
646
647 block_buffer = zalloc(fs->blksz);
648 if (!block_buffer)
649 goto fail;
650
651 /* get the block no allocated to a file */
652 for (blk_idx = 0; blk_idx < directory_blocks; blk_idx++) {
Stephen Warrend5aee652019-01-30 12:58:05 -0700653 blknr = read_allocated_block(parent_inode, blk_idx, NULL);
Stefan Brünsde9e8312016-09-06 04:36:55 +0200654 if (blknr <= 0)
Uma Shankared34f342012-05-25 21:22:49 +0530655 goto fail;
656
Stefan Brünsb7dd40d2016-09-06 04:36:46 +0200657 /* read the directory block */
Frederic Leroy04735e92013-06-26 18:11:25 +0200658 status = ext4fs_devread((lbaint_t)blknr * fs->sect_perblk,
Uma Shankared34f342012-05-25 21:22:49 +0530659 0, fs->blksz, (char *)block_buffer);
660 if (status == 0)
661 goto fail;
662
Stefan Brünsb7dd40d2016-09-06 04:36:46 +0200663 offset = 0;
664 do {
Ian Rayecdfb412017-11-08 15:35:10 +0000665 if (offset & 3) {
666 printf("Badly aligned ext2_dirent\n");
667 break;
668 }
669
Stefan Brünsb7dd40d2016-09-06 04:36:46 +0200670 dir = (struct ext2_dirent *)(block_buffer + offset);
671 direntname = (char*)(dir) + sizeof(struct ext2_dirent);
Uma Shankared34f342012-05-25 21:22:49 +0530672
Stefan Brünsb7dd40d2016-09-06 04:36:46 +0200673 int direntlen = le16_to_cpu(dir->direntlen);
674 if (direntlen < sizeof(struct ext2_dirent))
Uma Shankared34f342012-05-25 21:22:49 +0530675 break;
676
Stefan Brünsb7dd40d2016-09-06 04:36:46 +0200677 if (dir->inode && (strlen(dirname) == dir->namelen) &&
678 (strncmp(dirname, direntname, dir->namelen) == 0)) {
679 inodeno = le32_to_cpu(dir->inode);
680 break;
681 }
Uma Shankared34f342012-05-25 21:22:49 +0530682
Stefan Brünsb7dd40d2016-09-06 04:36:46 +0200683 offset += direntlen;
Stefan Brüns76a29512016-09-06 04:36:41 +0200684
Stefan Brünsb7dd40d2016-09-06 04:36:46 +0200685 } while (offset < fs->blksz);
686
687 if (inodeno > 0) {
688 free(block_buffer);
Stefan Brüns76a29512016-09-06 04:36:41 +0200689 return inodeno;
Stefan Brünsb7dd40d2016-09-06 04:36:46 +0200690 }
Uma Shankared34f342012-05-25 21:22:49 +0530691 }
692
693fail:
694 free(block_buffer);
695
696 return -1;
697}
698
699static int find_dir_depth(char *dirname)
700{
701 char *token = strtok(dirname, "/");
702 int count = 0;
703 while (token != NULL) {
704 token = strtok(NULL, "/");
705 count++;
706 }
707 return count + 1 + 1;
708 /*
709 * for example for string /home/temp
710 * depth=home(1)+temp(1)+1 extra for NULL;
711 * so count is 4;
712 */
713}
714
715static int parse_path(char **arr, char *dirname)
716{
717 char *token = strtok(dirname, "/");
718 int i = 0;
719
720 /* add root */
721 arr[i] = zalloc(strlen("/") + 1);
722 if (!arr[i])
723 return -ENOMEM;
Stephen Warren934b14f2015-09-04 22:03:44 -0600724 memcpy(arr[i++], "/", strlen("/"));
Uma Shankared34f342012-05-25 21:22:49 +0530725
726 /* add each path entry after root */
727 while (token != NULL) {
728 arr[i] = zalloc(strlen(token) + 1);
729 if (!arr[i])
730 return -ENOMEM;
731 memcpy(arr[i++], token, strlen(token));
732 token = strtok(NULL, "/");
733 }
734 arr[i] = NULL;
735
736 return 0;
737}
738
739int ext4fs_iget(int inode_no, struct ext2_inode *inode)
740{
741 if (ext4fs_read_inode(ext4fs_root, inode_no, inode) == 0)
742 return -1;
743
744 return 0;
745}
746
747/*
748 * Function: ext4fs_get_parent_inode_num
749 * Return Value: inode Number of the parent directory of file/Directory to be
750 * created
751 * dirname : Input parmater, input path name of the file/directory to be created
752 * dname : Output parameter, to be filled with the name of the directory
753 * extracted from dirname
754 */
755int ext4fs_get_parent_inode_num(const char *dirname, char *dname, int flags)
756{
757 int i;
758 int depth = 0;
759 int matched_inode_no;
760 int result_inode_no = -1;
761 char **ptr = NULL;
762 char *depth_dirname = NULL;
763 char *parse_dirname = NULL;
764 struct ext2_inode *parent_inode = NULL;
765 struct ext2_inode *first_inode = NULL;
766 struct ext2_inode temp_inode;
767
768 if (*dirname != '/') {
769 printf("Please supply Absolute path\n");
770 return -1;
771 }
772
773 /* TODO: input validation make equivalent to linux */
774 depth_dirname = zalloc(strlen(dirname) + 1);
775 if (!depth_dirname)
776 return -ENOMEM;
777
778 memcpy(depth_dirname, dirname, strlen(dirname));
779 depth = find_dir_depth(depth_dirname);
780 parse_dirname = zalloc(strlen(dirname) + 1);
781 if (!parse_dirname)
782 goto fail;
783 memcpy(parse_dirname, dirname, strlen(dirname));
784
785 /* allocate memory for each directory level */
786 ptr = zalloc((depth) * sizeof(char *));
787 if (!ptr)
788 goto fail;
789 if (parse_path(ptr, parse_dirname))
790 goto fail;
791 parent_inode = zalloc(sizeof(struct ext2_inode));
792 if (!parent_inode)
793 goto fail;
794 first_inode = zalloc(sizeof(struct ext2_inode));
795 if (!first_inode)
796 goto fail;
797 memcpy(parent_inode, ext4fs_root->inode, sizeof(struct ext2_inode));
798 memcpy(first_inode, parent_inode, sizeof(struct ext2_inode));
799 if (flags & F_FILE)
800 result_inode_no = EXT2_ROOT_INO;
801 for (i = 1; i < depth; i++) {
802 matched_inode_no = search_dir(parent_inode, ptr[i]);
803 if (matched_inode_no == -1) {
804 if (ptr[i + 1] == NULL && i == 1) {
805 result_inode_no = EXT2_ROOT_INO;
806 goto end;
807 } else {
808 if (ptr[i + 1] == NULL)
809 break;
810 printf("Invalid path\n");
811 result_inode_no = -1;
812 goto fail;
813 }
814 } else {
815 if (ptr[i + 1] != NULL) {
816 memset(parent_inode, '\0',
817 sizeof(struct ext2_inode));
818 if (ext4fs_iget(matched_inode_no,
819 parent_inode)) {
820 result_inode_no = -1;
821 goto fail;
822 }
823 result_inode_no = matched_inode_no;
824 } else {
825 break;
826 }
827 }
828 }
829
830end:
831 if (i == 1)
832 matched_inode_no = search_dir(first_inode, ptr[i]);
833 else
834 matched_inode_no = search_dir(parent_inode, ptr[i]);
835
836 if (matched_inode_no != -1) {
837 ext4fs_iget(matched_inode_no, &temp_inode);
Michael Walle58a9ecb2016-09-01 11:21:40 +0200838 if (le16_to_cpu(temp_inode.mode) & S_IFDIR) {
Uma Shankared34f342012-05-25 21:22:49 +0530839 printf("It is a Directory\n");
840 result_inode_no = -1;
841 goto fail;
842 }
843 }
844
845 if (strlen(ptr[i]) > 256) {
846 result_inode_no = -1;
847 goto fail;
848 }
849 memcpy(dname, ptr[i], strlen(ptr[i]));
850
851fail:
852 free(depth_dirname);
853 free(parse_dirname);
Stephen Warren934b14f2015-09-04 22:03:44 -0600854 for (i = 0; i < depth; i++) {
855 if (!ptr[i])
856 break;
857 free(ptr[i]);
858 }
Uma Shankared34f342012-05-25 21:22:49 +0530859 free(ptr);
860 free(parent_inode);
861 free(first_inode);
862
863 return result_inode_no;
864}
865
Stefan Brüns76a29512016-09-06 04:36:41 +0200866static int unlink_filename(char *filename, unsigned int blknr)
Uma Shankared34f342012-05-25 21:22:49 +0530867{
Stefan Brünsd1bdf222016-10-09 20:15:27 +0200868 int status;
869 int inodeno = 0;
Stefan Brüns15bf8c42016-10-09 20:15:26 +0200870 int offset;
871 char *block_buffer = NULL;
Uma Shankared34f342012-05-25 21:22:49 +0530872 struct ext2_dirent *dir = NULL;
Stefan Brünsd1bdf222016-10-09 20:15:27 +0200873 struct ext2_dirent *previous_dir;
Uma Shankared34f342012-05-25 21:22:49 +0530874 struct ext_filesystem *fs = get_fs();
Stephen Warrend56b2012015-09-04 22:03:45 -0600875 int ret = -1;
Stefan Brünsd1bdf222016-10-09 20:15:27 +0200876 char *direntname;
Uma Shankared34f342012-05-25 21:22:49 +0530877
Stefan Brüns15bf8c42016-10-09 20:15:26 +0200878 block_buffer = zalloc(fs->blksz);
879 if (!block_buffer)
Uma Shankared34f342012-05-25 21:22:49 +0530880 return -ENOMEM;
Stefan Brüns15bf8c42016-10-09 20:15:26 +0200881
882 /* read the directory block */
Stefan Brüns76a29512016-09-06 04:36:41 +0200883 status = ext4fs_devread((lbaint_t)blknr * fs->sect_perblk, 0,
Stefan Brüns15bf8c42016-10-09 20:15:26 +0200884 fs->blksz, block_buffer);
Uma Shankared34f342012-05-25 21:22:49 +0530885 if (status == 0)
886 goto fail;
887
Stefan Brüns15bf8c42016-10-09 20:15:26 +0200888 offset = 0;
Stefan Brünsd1bdf222016-10-09 20:15:27 +0200889 do {
Ian Rayecdfb412017-11-08 15:35:10 +0000890 if (offset & 3) {
891 printf("Badly aligned ext2_dirent\n");
892 break;
893 }
894
Stefan Brünsd1bdf222016-10-09 20:15:27 +0200895 previous_dir = dir;
896 dir = (struct ext2_dirent *)(block_buffer + offset);
897 direntname = (char *)(dir) + sizeof(struct ext2_dirent);
898
899 int direntlen = le16_to_cpu(dir->direntlen);
900 if (direntlen < sizeof(struct ext2_dirent))
901 break;
902
Stefan Brüns76a29512016-09-06 04:36:41 +0200903 if (dir->inode && (strlen(filename) == dir->namelen) &&
Stefan Brünsd1bdf222016-10-09 20:15:27 +0200904 (strncmp(direntname, filename, dir->namelen) == 0)) {
Stefan Brüns76a29512016-09-06 04:36:41 +0200905 inodeno = le32_to_cpu(dir->inode);
Stefan Brüns76a29512016-09-06 04:36:41 +0200906 break;
Uma Shankared34f342012-05-25 21:22:49 +0530907 }
908
Stefan Brünsd1bdf222016-10-09 20:15:27 +0200909 offset += direntlen;
Uma Shankared34f342012-05-25 21:22:49 +0530910
Stefan Brünsd1bdf222016-10-09 20:15:27 +0200911 } while (offset < fs->blksz);
Uma Shankared34f342012-05-25 21:22:49 +0530912
Stefan Brünsd1bdf222016-10-09 20:15:27 +0200913 if (inodeno > 0) {
Stefan Brüns805e3e002016-10-09 20:15:28 +0200914 printf("file found, deleting\n");
915 if (ext4fs_log_journal(block_buffer, blknr))
916 goto fail;
Uma Shankared34f342012-05-25 21:22:49 +0530917
Stefan Brüns805e3e002016-10-09 20:15:28 +0200918 if (previous_dir) {
919 /* merge dir entry with predecessor */
920 uint16_t new_len;
921 new_len = le16_to_cpu(previous_dir->direntlen);
922 new_len += le16_to_cpu(dir->direntlen);
923 previous_dir->direntlen = cpu_to_le16(new_len);
924 } else {
925 /* invalidate dir entry */
926 dir->inode = 0;
927 }
Stefan Brüns15bf8c42016-10-09 20:15:26 +0200928 if (ext4fs_put_metadata(block_buffer, blknr))
Uma Shankared34f342012-05-25 21:22:49 +0530929 goto fail;
Stephen Warrend56b2012015-09-04 22:03:45 -0600930 ret = inodeno;
Uma Shankared34f342012-05-25 21:22:49 +0530931 }
932fail:
Stefan Brüns15bf8c42016-10-09 20:15:26 +0200933 free(block_buffer);
Uma Shankared34f342012-05-25 21:22:49 +0530934
Stephen Warrend56b2012015-09-04 22:03:45 -0600935 return ret;
Uma Shankared34f342012-05-25 21:22:49 +0530936}
937
Stefan Brüns76a29512016-09-06 04:36:41 +0200938int ext4fs_filename_unlink(char *filename)
Uma Shankared34f342012-05-25 21:22:49 +0530939{
Stefan Brünsb7dd40d2016-09-06 04:36:46 +0200940 int blk_idx;
Uma Shankared34f342012-05-25 21:22:49 +0530941 long int blknr = -1;
942 int inodeno = -1;
Stefan Brünsb7dd40d2016-09-06 04:36:46 +0200943 uint32_t directory_blocks;
944
945 directory_blocks = le32_to_cpu(g_parent_inode->size) >>
946 LOG2_BLOCK_SIZE(ext4fs_root);
Uma Shankared34f342012-05-25 21:22:49 +0530947
948 /* read the block no allocated to a file */
Stefan Brünsb7dd40d2016-09-06 04:36:46 +0200949 for (blk_idx = 0; blk_idx < directory_blocks; blk_idx++) {
Stephen Warrend5aee652019-01-30 12:58:05 -0700950 blknr = read_allocated_block(g_parent_inode, blk_idx, NULL);
Stefan Brünsde9e8312016-09-06 04:36:55 +0200951 if (blknr <= 0)
Uma Shankared34f342012-05-25 21:22:49 +0530952 break;
Stefan Brüns76a29512016-09-06 04:36:41 +0200953 inodeno = unlink_filename(filename, blknr);
Uma Shankared34f342012-05-25 21:22:49 +0530954 if (inodeno != -1)
955 return inodeno;
956 }
957
958 return -1;
959}
960
Michael Walle58a9ecb2016-09-01 11:21:40 +0200961uint32_t ext4fs_get_new_blk_no(void)
Uma Shankared34f342012-05-25 21:22:49 +0530962{
963 short i;
964 short status;
965 int remainder;
966 unsigned int bg_idx;
967 static int prev_bg_bitmap_index = -1;
Michael Walle58a9ecb2016-09-01 11:21:40 +0200968 unsigned int blk_per_grp = le32_to_cpu(ext4fs_root->sblock.blocks_per_group);
Uma Shankared34f342012-05-25 21:22:49 +0530969 struct ext_filesystem *fs = get_fs();
970 char *journal_buffer = zalloc(fs->blksz);
971 char *zero_buffer = zalloc(fs->blksz);
972 if (!journal_buffer || !zero_buffer)
973 goto fail;
Uma Shankared34f342012-05-25 21:22:49 +0530974
975 if (fs->first_pass_bbmap == 0) {
976 for (i = 0; i < fs->no_blkgrp; i++) {
Stefan Brüns688d0e72016-09-17 02:10:10 +0200977 struct ext2_block_group *bgd = NULL;
978 bgd = ext4fs_get_group_descriptor(fs, i);
979 if (ext4fs_bg_get_free_blocks(bgd, fs)) {
980 uint16_t bg_flags = ext4fs_bg_get_flags(bgd);
981 uint64_t b_bitmap_blk =
982 ext4fs_bg_get_block_id(bgd, fs);
983 if (bg_flags & EXT4_BG_BLOCK_UNINIT) {
Uma Shankared34f342012-05-25 21:22:49 +0530984 memcpy(fs->blk_bmaps[i], zero_buffer,
985 fs->blksz);
Stefan Brüns688d0e72016-09-17 02:10:10 +0200986 put_ext4(b_bitmap_blk * fs->blksz,
987 fs->blk_bmaps[i], fs->blksz);
988 bg_flags &= ~EXT4_BG_BLOCK_UNINIT;
989 ext4fs_bg_set_flags(bgd, bg_flags);
Uma Shankared34f342012-05-25 21:22:49 +0530990 }
991 fs->curr_blkno =
992 _get_new_blk_no(fs->blk_bmaps[i]);
993 if (fs->curr_blkno == -1)
Stefan Brüns688d0e72016-09-17 02:10:10 +0200994 /* block bitmap is completely filled */
Uma Shankared34f342012-05-25 21:22:49 +0530995 continue;
996 fs->curr_blkno = fs->curr_blkno +
997 (i * fs->blksz * 8);
998 fs->first_pass_bbmap++;
Stefan Brüns749e93e2016-09-20 01:13:01 +0200999 ext4fs_bg_free_blocks_dec(bgd, fs);
Michael Walle58a9ecb2016-09-01 11:21:40 +02001000 ext4fs_sb_free_blocks_dec(fs->sb);
Stefan Brüns688d0e72016-09-17 02:10:10 +02001001 status = ext4fs_devread(b_bitmap_blk *
1002 fs->sect_perblk,
1003 0, fs->blksz,
Uma Shankared34f342012-05-25 21:22:49 +05301004 journal_buffer);
1005 if (status == 0)
1006 goto fail;
1007 if (ext4fs_log_journal(journal_buffer,
Stefan Brüns688d0e72016-09-17 02:10:10 +02001008 b_bitmap_blk))
Uma Shankared34f342012-05-25 21:22:49 +05301009 goto fail;
1010 goto success;
1011 } else {
1012 debug("no space left on block group %d\n", i);
1013 }
1014 }
1015
1016 goto fail;
1017 } else {
Uma Shankared34f342012-05-25 21:22:49 +05301018 fs->curr_blkno++;
Stefan Brünsa9fa0ed2016-09-06 04:36:49 +02001019restart:
Uma Shankared34f342012-05-25 21:22:49 +05301020 /* get the blockbitmap index respective to blockno */
Łukasz Majewski35dd0552014-05-06 09:36:04 +02001021 bg_idx = fs->curr_blkno / blk_per_grp;
1022 if (fs->blksz == 1024) {
Uma Shankared34f342012-05-25 21:22:49 +05301023 remainder = fs->curr_blkno % blk_per_grp;
1024 if (!remainder)
1025 bg_idx--;
1026 }
1027
1028 /*
1029 * To skip completely filled block group bitmaps
1030 * Optimize the block allocation
1031 */
1032 if (bg_idx >= fs->no_blkgrp)
1033 goto fail;
1034
Stefan Brüns688d0e72016-09-17 02:10:10 +02001035 struct ext2_block_group *bgd = NULL;
1036 bgd = ext4fs_get_group_descriptor(fs, bg_idx);
1037 if (ext4fs_bg_get_free_blocks(bgd, fs) == 0) {
Uma Shankared34f342012-05-25 21:22:49 +05301038 debug("block group %u is full. Skipping\n", bg_idx);
Stefan Brünsa9fa0ed2016-09-06 04:36:49 +02001039 fs->curr_blkno = (bg_idx + 1) * blk_per_grp;
1040 if (fs->blksz == 1024)
1041 fs->curr_blkno += 1;
Uma Shankared34f342012-05-25 21:22:49 +05301042 goto restart;
1043 }
1044
Stefan Brüns688d0e72016-09-17 02:10:10 +02001045 uint16_t bg_flags = ext4fs_bg_get_flags(bgd);
1046 uint64_t b_bitmap_blk = ext4fs_bg_get_block_id(bgd, fs);
1047 if (bg_flags & EXT4_BG_BLOCK_UNINIT) {
Uma Shankared34f342012-05-25 21:22:49 +05301048 memcpy(fs->blk_bmaps[bg_idx], zero_buffer, fs->blksz);
Stefan Brüns688d0e72016-09-17 02:10:10 +02001049 put_ext4(b_bitmap_blk * fs->blksz,
1050 zero_buffer, fs->blksz);
1051 bg_flags &= ~EXT4_BG_BLOCK_UNINIT;
1052 ext4fs_bg_set_flags(bgd, bg_flags);
Uma Shankared34f342012-05-25 21:22:49 +05301053 }
1054
1055 if (ext4fs_set_block_bmap(fs->curr_blkno, fs->blk_bmaps[bg_idx],
1056 bg_idx) != 0) {
1057 debug("going for restart for the block no %ld %u\n",
1058 fs->curr_blkno, bg_idx);
Stefan Brünsa9fa0ed2016-09-06 04:36:49 +02001059 fs->curr_blkno++;
Uma Shankared34f342012-05-25 21:22:49 +05301060 goto restart;
1061 }
1062
1063 /* journal backup */
1064 if (prev_bg_bitmap_index != bg_idx) {
Stefan Brüns688d0e72016-09-17 02:10:10 +02001065 status = ext4fs_devread(b_bitmap_blk * fs->sect_perblk,
Uma Shankared34f342012-05-25 21:22:49 +05301066 0, fs->blksz, journal_buffer);
1067 if (status == 0)
1068 goto fail;
Stefan Brüns688d0e72016-09-17 02:10:10 +02001069 if (ext4fs_log_journal(journal_buffer, b_bitmap_blk))
Uma Shankared34f342012-05-25 21:22:49 +05301070 goto fail;
1071
1072 prev_bg_bitmap_index = bg_idx;
1073 }
Stefan Brüns749e93e2016-09-20 01:13:01 +02001074 ext4fs_bg_free_blocks_dec(bgd, fs);
Michael Walle58a9ecb2016-09-01 11:21:40 +02001075 ext4fs_sb_free_blocks_dec(fs->sb);
Uma Shankared34f342012-05-25 21:22:49 +05301076 goto success;
1077 }
1078success:
1079 free(journal_buffer);
1080 free(zero_buffer);
1081
1082 return fs->curr_blkno;
1083fail:
1084 free(journal_buffer);
1085 free(zero_buffer);
1086
1087 return -1;
1088}
1089
1090int ext4fs_get_new_inode_no(void)
1091{
1092 short i;
1093 short status;
1094 unsigned int ibmap_idx;
1095 static int prev_inode_bitmap_index = -1;
Michael Walle58a9ecb2016-09-01 11:21:40 +02001096 unsigned int inodes_per_grp = le32_to_cpu(ext4fs_root->sblock.inodes_per_group);
Uma Shankared34f342012-05-25 21:22:49 +05301097 struct ext_filesystem *fs = get_fs();
1098 char *journal_buffer = zalloc(fs->blksz);
1099 char *zero_buffer = zalloc(fs->blksz);
1100 if (!journal_buffer || !zero_buffer)
1101 goto fail;
Stefan Brüns398d6fa2016-09-06 04:36:47 +02001102 int has_gdt_chksum = le32_to_cpu(fs->sb->feature_ro_compat) &
1103 EXT4_FEATURE_RO_COMPAT_GDT_CSUM ? 1 : 0;
Uma Shankared34f342012-05-25 21:22:49 +05301104
1105 if (fs->first_pass_ibmap == 0) {
1106 for (i = 0; i < fs->no_blkgrp; i++) {
Stefan Brüns688d0e72016-09-17 02:10:10 +02001107 uint32_t free_inodes;
1108 struct ext2_block_group *bgd = NULL;
1109 bgd = ext4fs_get_group_descriptor(fs, i);
1110 free_inodes = ext4fs_bg_get_free_inodes(bgd, fs);
1111 if (free_inodes) {
1112 uint16_t bg_flags = ext4fs_bg_get_flags(bgd);
1113 uint64_t i_bitmap_blk =
1114 ext4fs_bg_get_inode_id(bgd, fs);
Stefan Brüns398d6fa2016-09-06 04:36:47 +02001115 if (has_gdt_chksum)
Stefan Brüns688d0e72016-09-17 02:10:10 +02001116 bgd->bg_itable_unused = free_inodes;
1117 if (bg_flags & EXT4_BG_INODE_UNINIT) {
1118 put_ext4(i_bitmap_blk * fs->blksz,
Uma Shankared34f342012-05-25 21:22:49 +05301119 zero_buffer, fs->blksz);
Stefan Brüns688d0e72016-09-17 02:10:10 +02001120 bg_flags &= ~EXT4_BG_INODE_UNINIT;
1121 ext4fs_bg_set_flags(bgd, bg_flags);
Uma Shankared34f342012-05-25 21:22:49 +05301122 memcpy(fs->inode_bmaps[i],
1123 zero_buffer, fs->blksz);
1124 }
1125 fs->curr_inode_no =
1126 _get_new_inode_no(fs->inode_bmaps[i]);
1127 if (fs->curr_inode_no == -1)
Stefan Brüns688d0e72016-09-17 02:10:10 +02001128 /* inode bitmap is completely filled */
Uma Shankared34f342012-05-25 21:22:49 +05301129 continue;
1130 fs->curr_inode_no = fs->curr_inode_no +
1131 (i * inodes_per_grp);
1132 fs->first_pass_ibmap++;
Stefan Brüns749e93e2016-09-20 01:13:01 +02001133 ext4fs_bg_free_inodes_dec(bgd, fs);
Stefan Brüns398d6fa2016-09-06 04:36:47 +02001134 if (has_gdt_chksum)
Stefan Brüns749e93e2016-09-20 01:13:01 +02001135 ext4fs_bg_itable_unused_dec(bgd, fs);
Michael Walle58a9ecb2016-09-01 11:21:40 +02001136 ext4fs_sb_free_inodes_dec(fs->sb);
Stefan Brüns688d0e72016-09-17 02:10:10 +02001137 status = ext4fs_devread(i_bitmap_blk *
1138 fs->sect_perblk,
1139 0, fs->blksz,
Uma Shankared34f342012-05-25 21:22:49 +05301140 journal_buffer);
1141 if (status == 0)
1142 goto fail;
1143 if (ext4fs_log_journal(journal_buffer,
Stefan Brüns688d0e72016-09-17 02:10:10 +02001144 i_bitmap_blk))
Uma Shankared34f342012-05-25 21:22:49 +05301145 goto fail;
1146 goto success;
1147 } else
1148 debug("no inode left on block group %d\n", i);
1149 }
1150 goto fail;
1151 } else {
1152restart:
1153 fs->curr_inode_no++;
1154 /* get the blockbitmap index respective to blockno */
1155 ibmap_idx = fs->curr_inode_no / inodes_per_grp;
Stefan Brüns688d0e72016-09-17 02:10:10 +02001156 struct ext2_block_group *bgd =
1157 ext4fs_get_group_descriptor(fs, ibmap_idx);
1158 uint16_t bg_flags = ext4fs_bg_get_flags(bgd);
1159 uint64_t i_bitmap_blk = ext4fs_bg_get_inode_id(bgd, fs);
1160
1161 if (bg_flags & EXT4_BG_INODE_UNINIT) {
1162 put_ext4(i_bitmap_blk * fs->blksz,
Michael Walle58a9ecb2016-09-01 11:21:40 +02001163 zero_buffer, fs->blksz);
Stefan Brüns688d0e72016-09-17 02:10:10 +02001164 bg_flags &= ~EXT4_BG_INODE_UNINIT;
1165 ext4fs_bg_set_flags(bgd, bg_flags);
Uma Shankared34f342012-05-25 21:22:49 +05301166 memcpy(fs->inode_bmaps[ibmap_idx], zero_buffer,
1167 fs->blksz);
1168 }
1169
1170 if (ext4fs_set_inode_bmap(fs->curr_inode_no,
1171 fs->inode_bmaps[ibmap_idx],
1172 ibmap_idx) != 0) {
1173 debug("going for restart for the block no %d %u\n",
1174 fs->curr_inode_no, ibmap_idx);
1175 goto restart;
1176 }
1177
1178 /* journal backup */
1179 if (prev_inode_bitmap_index != ibmap_idx) {
Stefan Brüns688d0e72016-09-17 02:10:10 +02001180 status = ext4fs_devread(i_bitmap_blk * fs->sect_perblk,
Uma Shankared34f342012-05-25 21:22:49 +05301181 0, fs->blksz, journal_buffer);
1182 if (status == 0)
1183 goto fail;
1184 if (ext4fs_log_journal(journal_buffer,
Stefan Brüns688d0e72016-09-17 02:10:10 +02001185 le32_to_cpu(bgd->inode_id)))
Uma Shankared34f342012-05-25 21:22:49 +05301186 goto fail;
1187 prev_inode_bitmap_index = ibmap_idx;
1188 }
Stefan Brüns749e93e2016-09-20 01:13:01 +02001189 ext4fs_bg_free_inodes_dec(bgd, fs);
Stefan Brüns398d6fa2016-09-06 04:36:47 +02001190 if (has_gdt_chksum)
Stefan Brüns688d0e72016-09-17 02:10:10 +02001191 bgd->bg_itable_unused = bgd->free_inodes;
Michael Walle58a9ecb2016-09-01 11:21:40 +02001192 ext4fs_sb_free_inodes_dec(fs->sb);
Uma Shankared34f342012-05-25 21:22:49 +05301193 goto success;
1194 }
1195
1196success:
1197 free(journal_buffer);
1198 free(zero_buffer);
1199
1200 return fs->curr_inode_no;
1201fail:
1202 free(journal_buffer);
1203 free(zero_buffer);
1204
1205 return -1;
1206
1207}
1208
1209
1210static void alloc_single_indirect_block(struct ext2_inode *file_inode,
1211 unsigned int *total_remaining_blocks,
1212 unsigned int *no_blks_reqd)
1213{
1214 short i;
1215 short status;
1216 long int actual_block_no;
1217 long int si_blockno;
1218 /* si :single indirect */
Michael Walle58a9ecb2016-09-01 11:21:40 +02001219 __le32 *si_buffer = NULL;
1220 __le32 *si_start_addr = NULL;
Uma Shankared34f342012-05-25 21:22:49 +05301221 struct ext_filesystem *fs = get_fs();
1222
1223 if (*total_remaining_blocks != 0) {
1224 si_buffer = zalloc(fs->blksz);
1225 if (!si_buffer) {
1226 printf("No Memory\n");
1227 return;
1228 }
1229 si_start_addr = si_buffer;
1230 si_blockno = ext4fs_get_new_blk_no();
1231 if (si_blockno == -1) {
1232 printf("no block left to assign\n");
1233 goto fail;
1234 }
1235 (*no_blks_reqd)++;
1236 debug("SIPB %ld: %u\n", si_blockno, *total_remaining_blocks);
1237
Frederic Leroy04735e92013-06-26 18:11:25 +02001238 status = ext4fs_devread((lbaint_t)si_blockno * fs->sect_perblk,
Uma Shankared34f342012-05-25 21:22:49 +05301239 0, fs->blksz, (char *)si_buffer);
1240 memset(si_buffer, '\0', fs->blksz);
1241 if (status == 0)
1242 goto fail;
1243
1244 for (i = 0; i < (fs->blksz / sizeof(int)); i++) {
1245 actual_block_no = ext4fs_get_new_blk_no();
1246 if (actual_block_no == -1) {
1247 printf("no block left to assign\n");
1248 goto fail;
1249 }
Michael Walle58a9ecb2016-09-01 11:21:40 +02001250 *si_buffer = cpu_to_le32(actual_block_no);
Uma Shankared34f342012-05-25 21:22:49 +05301251 debug("SIAB %u: %u\n", *si_buffer,
1252 *total_remaining_blocks);
1253
1254 si_buffer++;
1255 (*total_remaining_blocks)--;
1256 if (*total_remaining_blocks == 0)
1257 break;
1258 }
1259
1260 /* write the block to disk */
Ma Haijun05508702014-01-08 08:15:33 +08001261 put_ext4(((uint64_t) ((uint64_t)si_blockno * (uint64_t)fs->blksz)),
Uma Shankared34f342012-05-25 21:22:49 +05301262 si_start_addr, fs->blksz);
Michael Walle58a9ecb2016-09-01 11:21:40 +02001263 file_inode->b.blocks.indir_block = cpu_to_le32(si_blockno);
Uma Shankared34f342012-05-25 21:22:49 +05301264 }
1265fail:
1266 free(si_start_addr);
1267}
1268
1269static void alloc_double_indirect_block(struct ext2_inode *file_inode,
1270 unsigned int *total_remaining_blocks,
1271 unsigned int *no_blks_reqd)
1272{
1273 short i;
1274 short j;
1275 short status;
1276 long int actual_block_no;
1277 /* di:double indirect */
1278 long int di_blockno_parent;
1279 long int di_blockno_child;
Michael Walle58a9ecb2016-09-01 11:21:40 +02001280 __le32 *di_parent_buffer = NULL;
1281 __le32 *di_child_buff = NULL;
1282 __le32 *di_block_start_addr = NULL;
1283 __le32 *di_child_buff_start = NULL;
Uma Shankared34f342012-05-25 21:22:49 +05301284 struct ext_filesystem *fs = get_fs();
1285
1286 if (*total_remaining_blocks != 0) {
1287 /* double indirect parent block connecting to inode */
1288 di_blockno_parent = ext4fs_get_new_blk_no();
1289 if (di_blockno_parent == -1) {
1290 printf("no block left to assign\n");
1291 goto fail;
1292 }
1293 di_parent_buffer = zalloc(fs->blksz);
1294 if (!di_parent_buffer)
1295 goto fail;
1296
1297 di_block_start_addr = di_parent_buffer;
1298 (*no_blks_reqd)++;
1299 debug("DIPB %ld: %u\n", di_blockno_parent,
1300 *total_remaining_blocks);
1301
Frederic Leroy04735e92013-06-26 18:11:25 +02001302 status = ext4fs_devread((lbaint_t)di_blockno_parent *
Uma Shankared34f342012-05-25 21:22:49 +05301303 fs->sect_perblk, 0,
1304 fs->blksz, (char *)di_parent_buffer);
Łukasz Majewskid429ca02012-12-05 08:06:39 +00001305
1306 if (!status) {
1307 printf("%s: Device read error!\n", __func__);
1308 goto fail;
1309 }
Uma Shankared34f342012-05-25 21:22:49 +05301310 memset(di_parent_buffer, '\0', fs->blksz);
1311
1312 /*
1313 * start:for each double indirect parent
1314 * block create one more block
1315 */
1316 for (i = 0; i < (fs->blksz / sizeof(int)); i++) {
1317 di_blockno_child = ext4fs_get_new_blk_no();
1318 if (di_blockno_child == -1) {
1319 printf("no block left to assign\n");
1320 goto fail;
1321 }
1322 di_child_buff = zalloc(fs->blksz);
1323 if (!di_child_buff)
1324 goto fail;
1325
1326 di_child_buff_start = di_child_buff;
Michael Walle58a9ecb2016-09-01 11:21:40 +02001327 *di_parent_buffer = cpu_to_le32(di_blockno_child);
Uma Shankared34f342012-05-25 21:22:49 +05301328 di_parent_buffer++;
1329 (*no_blks_reqd)++;
1330 debug("DICB %ld: %u\n", di_blockno_child,
1331 *total_remaining_blocks);
1332
Frederic Leroy04735e92013-06-26 18:11:25 +02001333 status = ext4fs_devread((lbaint_t)di_blockno_child *
Uma Shankared34f342012-05-25 21:22:49 +05301334 fs->sect_perblk, 0,
1335 fs->blksz,
1336 (char *)di_child_buff);
Łukasz Majewskid429ca02012-12-05 08:06:39 +00001337
1338 if (!status) {
1339 printf("%s: Device read error!\n", __func__);
1340 goto fail;
1341 }
Uma Shankared34f342012-05-25 21:22:49 +05301342 memset(di_child_buff, '\0', fs->blksz);
1343 /* filling of actual datablocks for each child */
1344 for (j = 0; j < (fs->blksz / sizeof(int)); j++) {
1345 actual_block_no = ext4fs_get_new_blk_no();
1346 if (actual_block_no == -1) {
1347 printf("no block left to assign\n");
1348 goto fail;
1349 }
Michael Walle58a9ecb2016-09-01 11:21:40 +02001350 *di_child_buff = cpu_to_le32(actual_block_no);
Uma Shankared34f342012-05-25 21:22:49 +05301351 debug("DIAB %ld: %u\n", actual_block_no,
1352 *total_remaining_blocks);
1353
1354 di_child_buff++;
1355 (*total_remaining_blocks)--;
1356 if (*total_remaining_blocks == 0)
1357 break;
1358 }
1359 /* write the block table */
Ma Haijun05508702014-01-08 08:15:33 +08001360 put_ext4(((uint64_t) ((uint64_t)di_blockno_child * (uint64_t)fs->blksz)),
Uma Shankared34f342012-05-25 21:22:49 +05301361 di_child_buff_start, fs->blksz);
1362 free(di_child_buff_start);
1363 di_child_buff_start = NULL;
1364
1365 if (*total_remaining_blocks == 0)
1366 break;
1367 }
Ma Haijun05508702014-01-08 08:15:33 +08001368 put_ext4(((uint64_t) ((uint64_t)di_blockno_parent * (uint64_t)fs->blksz)),
Uma Shankared34f342012-05-25 21:22:49 +05301369 di_block_start_addr, fs->blksz);
Michael Walle58a9ecb2016-09-01 11:21:40 +02001370 file_inode->b.blocks.double_indir_block = cpu_to_le32(di_blockno_parent);
Uma Shankared34f342012-05-25 21:22:49 +05301371 }
1372fail:
1373 free(di_block_start_addr);
1374}
1375
1376static void alloc_triple_indirect_block(struct ext2_inode *file_inode,
1377 unsigned int *total_remaining_blocks,
1378 unsigned int *no_blks_reqd)
1379{
1380 short i;
1381 short j;
1382 short k;
1383 long int actual_block_no;
1384 /* ti: Triple Indirect */
1385 long int ti_gp_blockno;
1386 long int ti_parent_blockno;
1387 long int ti_child_blockno;
Michael Walle58a9ecb2016-09-01 11:21:40 +02001388 __le32 *ti_gp_buff = NULL;
1389 __le32 *ti_parent_buff = NULL;
1390 __le32 *ti_child_buff = NULL;
1391 __le32 *ti_gp_buff_start_addr = NULL;
1392 __le32 *ti_pbuff_start_addr = NULL;
1393 __le32 *ti_cbuff_start_addr = NULL;
Uma Shankared34f342012-05-25 21:22:49 +05301394 struct ext_filesystem *fs = get_fs();
1395 if (*total_remaining_blocks != 0) {
1396 /* triple indirect grand parent block connecting to inode */
1397 ti_gp_blockno = ext4fs_get_new_blk_no();
1398 if (ti_gp_blockno == -1) {
1399 printf("no block left to assign\n");
Tom Rini495c3a12015-12-10 16:42:21 -05001400 return;
Uma Shankared34f342012-05-25 21:22:49 +05301401 }
1402 ti_gp_buff = zalloc(fs->blksz);
1403 if (!ti_gp_buff)
Tom Rini495c3a12015-12-10 16:42:21 -05001404 return;
Uma Shankared34f342012-05-25 21:22:49 +05301405
1406 ti_gp_buff_start_addr = ti_gp_buff;
1407 (*no_blks_reqd)++;
1408 debug("TIGPB %ld: %u\n", ti_gp_blockno,
1409 *total_remaining_blocks);
1410
1411 /* for each 4 byte grand parent entry create one more block */
1412 for (i = 0; i < (fs->blksz / sizeof(int)); i++) {
1413 ti_parent_blockno = ext4fs_get_new_blk_no();
1414 if (ti_parent_blockno == -1) {
1415 printf("no block left to assign\n");
1416 goto fail;
1417 }
1418 ti_parent_buff = zalloc(fs->blksz);
1419 if (!ti_parent_buff)
1420 goto fail;
1421
1422 ti_pbuff_start_addr = ti_parent_buff;
Michael Walle58a9ecb2016-09-01 11:21:40 +02001423 *ti_gp_buff = cpu_to_le32(ti_parent_blockno);
Uma Shankared34f342012-05-25 21:22:49 +05301424 ti_gp_buff++;
1425 (*no_blks_reqd)++;
1426 debug("TIPB %ld: %u\n", ti_parent_blockno,
1427 *total_remaining_blocks);
1428
1429 /* for each 4 byte entry parent create one more block */
1430 for (j = 0; j < (fs->blksz / sizeof(int)); j++) {
1431 ti_child_blockno = ext4fs_get_new_blk_no();
1432 if (ti_child_blockno == -1) {
1433 printf("no block left assign\n");
Tom Rini495c3a12015-12-10 16:42:21 -05001434 goto fail1;
Uma Shankared34f342012-05-25 21:22:49 +05301435 }
1436 ti_child_buff = zalloc(fs->blksz);
1437 if (!ti_child_buff)
Tom Rini495c3a12015-12-10 16:42:21 -05001438 goto fail1;
Uma Shankared34f342012-05-25 21:22:49 +05301439
1440 ti_cbuff_start_addr = ti_child_buff;
Michael Walle58a9ecb2016-09-01 11:21:40 +02001441 *ti_parent_buff = cpu_to_le32(ti_child_blockno);
Uma Shankared34f342012-05-25 21:22:49 +05301442 ti_parent_buff++;
1443 (*no_blks_reqd)++;
1444 debug("TICB %ld: %u\n", ti_parent_blockno,
1445 *total_remaining_blocks);
1446
1447 /* fill actual datablocks for each child */
1448 for (k = 0; k < (fs->blksz / sizeof(int));
1449 k++) {
1450 actual_block_no =
1451 ext4fs_get_new_blk_no();
1452 if (actual_block_no == -1) {
1453 printf("no block left\n");
Tom Rini495c3a12015-12-10 16:42:21 -05001454 free(ti_cbuff_start_addr);
1455 goto fail1;
Uma Shankared34f342012-05-25 21:22:49 +05301456 }
Michael Walle58a9ecb2016-09-01 11:21:40 +02001457 *ti_child_buff = cpu_to_le32(actual_block_no);
Uma Shankared34f342012-05-25 21:22:49 +05301458 debug("TIAB %ld: %u\n", actual_block_no,
1459 *total_remaining_blocks);
1460
1461 ti_child_buff++;
1462 (*total_remaining_blocks)--;
1463 if (*total_remaining_blocks == 0)
1464 break;
1465 }
1466 /* write the child block */
Ma Haijun05508702014-01-08 08:15:33 +08001467 put_ext4(((uint64_t) ((uint64_t)ti_child_blockno *
1468 (uint64_t)fs->blksz)),
Uma Shankared34f342012-05-25 21:22:49 +05301469 ti_cbuff_start_addr, fs->blksz);
1470 free(ti_cbuff_start_addr);
1471
1472 if (*total_remaining_blocks == 0)
1473 break;
1474 }
1475 /* write the parent block */
Ma Haijun05508702014-01-08 08:15:33 +08001476 put_ext4(((uint64_t) ((uint64_t)ti_parent_blockno * (uint64_t)fs->blksz)),
Uma Shankared34f342012-05-25 21:22:49 +05301477 ti_pbuff_start_addr, fs->blksz);
1478 free(ti_pbuff_start_addr);
1479
1480 if (*total_remaining_blocks == 0)
1481 break;
1482 }
1483 /* write the grand parent block */
Ma Haijun05508702014-01-08 08:15:33 +08001484 put_ext4(((uint64_t) ((uint64_t)ti_gp_blockno * (uint64_t)fs->blksz)),
Uma Shankared34f342012-05-25 21:22:49 +05301485 ti_gp_buff_start_addr, fs->blksz);
Michael Walle58a9ecb2016-09-01 11:21:40 +02001486 file_inode->b.blocks.triple_indir_block = cpu_to_le32(ti_gp_blockno);
Tom Rini495c3a12015-12-10 16:42:21 -05001487 free(ti_gp_buff_start_addr);
1488 return;
Uma Shankared34f342012-05-25 21:22:49 +05301489 }
Tom Rini495c3a12015-12-10 16:42:21 -05001490fail1:
1491 free(ti_pbuff_start_addr);
Uma Shankared34f342012-05-25 21:22:49 +05301492fail:
1493 free(ti_gp_buff_start_addr);
1494}
1495
1496void ext4fs_allocate_blocks(struct ext2_inode *file_inode,
1497 unsigned int total_remaining_blocks,
1498 unsigned int *total_no_of_block)
1499{
1500 short i;
1501 long int direct_blockno;
1502 unsigned int no_blks_reqd = 0;
1503
1504 /* allocation of direct blocks */
Stephen Warrend0180282014-06-11 12:46:16 -06001505 for (i = 0; total_remaining_blocks && i < INDIRECT_BLOCKS; i++) {
Uma Shankared34f342012-05-25 21:22:49 +05301506 direct_blockno = ext4fs_get_new_blk_no();
1507 if (direct_blockno == -1) {
1508 printf("no block left to assign\n");
1509 return;
1510 }
Michael Walle58a9ecb2016-09-01 11:21:40 +02001511 file_inode->b.blocks.dir_blocks[i] = cpu_to_le32(direct_blockno);
Uma Shankared34f342012-05-25 21:22:49 +05301512 debug("DB %ld: %u\n", direct_blockno, total_remaining_blocks);
1513
1514 total_remaining_blocks--;
Uma Shankared34f342012-05-25 21:22:49 +05301515 }
1516
1517 alloc_single_indirect_block(file_inode, &total_remaining_blocks,
1518 &no_blks_reqd);
1519 alloc_double_indirect_block(file_inode, &total_remaining_blocks,
1520 &no_blks_reqd);
1521 alloc_triple_indirect_block(file_inode, &total_remaining_blocks,
1522 &no_blks_reqd);
1523 *total_no_of_block += no_blks_reqd;
1524}
1525
1526#endif
1527
Uma Shankara1596432012-05-25 21:21:44 +05301528static struct ext4_extent_header *ext4fs_get_extent_block
Stephen Warrend5aee652019-01-30 12:58:05 -07001529 (struct ext2_data *data, struct ext_block_cache *cache,
Uma Shankara1596432012-05-25 21:21:44 +05301530 struct ext4_extent_header *ext_block,
1531 uint32_t fileblock, int log2_blksz)
1532{
1533 struct ext4_extent_idx *index;
1534 unsigned long long block;
Ionut Nicu47017322014-01-13 11:59:24 +01001535 int blksz = EXT2_BLOCK_SIZE(data);
Uma Shankara1596432012-05-25 21:21:44 +05301536 int i;
1537
1538 while (1) {
1539 index = (struct ext4_extent_idx *)(ext_block + 1);
1540
Rommel Custodio8b415f72013-07-21 10:53:25 +02001541 if (le16_to_cpu(ext_block->eh_magic) != EXT4_EXT_MAGIC)
Michael Walle58a9ecb2016-09-01 11:21:40 +02001542 return NULL;
Uma Shankara1596432012-05-25 21:21:44 +05301543
1544 if (ext_block->eh_depth == 0)
1545 return ext_block;
1546 i = -1;
1547 do {
1548 i++;
Rommel Custodio8b415f72013-07-21 10:53:25 +02001549 if (i >= le16_to_cpu(ext_block->eh_entries))
Uma Shankara1596432012-05-25 21:21:44 +05301550 break;
Ionut Nicub5bbac12014-01-13 12:00:08 +01001551 } while (fileblock >= le32_to_cpu(index[i].ei_block));
Uma Shankara1596432012-05-25 21:21:44 +05301552
Gero Schumacher1c48fda2019-02-26 15:45:22 +00001553 /*
1554 * If first logical block number is higher than requested fileblock,
1555 * it is a sparse file. This is handled on upper layer.
1556 */
1557 if (i > 0)
1558 i--;
Uma Shankara1596432012-05-25 21:21:44 +05301559
Rommel Custodio8b415f72013-07-21 10:53:25 +02001560 block = le16_to_cpu(index[i].ei_leaf_hi);
Uma Shankara1596432012-05-25 21:21:44 +05301561 block = (block << 32) + le32_to_cpu(index[i].ei_leaf_lo);
Stephen Warrend5aee652019-01-30 12:58:05 -07001562 block <<= log2_blksz;
1563 if (!ext_cache_read(cache, (lbaint_t)block, blksz))
Michael Walle58a9ecb2016-09-01 11:21:40 +02001564 return NULL;
Stephen Warrend5aee652019-01-30 12:58:05 -07001565 ext_block = (struct ext4_extent_header *)cache->buf;
Uma Shankara1596432012-05-25 21:21:44 +05301566 }
1567}
1568
1569static int ext4fs_blockgroup
1570 (struct ext2_data *data, int group, struct ext2_block_group *blkgrp)
1571{
1572 long int blkno;
1573 unsigned int blkoff, desc_per_blk;
Egbert Eich50ce4c02013-05-01 01:13:19 +00001574 int log2blksz = get_fs()->dev_desc->log2blksz;
Stefan Brünsf798b1d2016-09-17 02:10:09 +02001575 int desc_size = get_fs()->gdsize;
Uma Shankara1596432012-05-25 21:21:44 +05301576
Paul Emge084be432019-07-08 16:37:06 -07001577 if (desc_size == 0)
1578 return 0;
Stefan Brünsf798b1d2016-09-17 02:10:09 +02001579 desc_per_blk = EXT2_BLOCK_SIZE(data) / desc_size;
Uma Shankara1596432012-05-25 21:21:44 +05301580
Paul Emge084be432019-07-08 16:37:06 -07001581 if (desc_per_blk == 0)
1582 return 0;
Michael Walle7f101be2016-08-29 10:46:44 +02001583 blkno = le32_to_cpu(data->sblock.first_data_block) + 1 +
Uma Shankara1596432012-05-25 21:21:44 +05301584 group / desc_per_blk;
Stefan Brünsf798b1d2016-09-17 02:10:09 +02001585 blkoff = (group % desc_per_blk) * desc_size;
Uma Shankara1596432012-05-25 21:21:44 +05301586
1587 debug("ext4fs read %d group descriptor (blkno %ld blkoff %u)\n",
1588 group, blkno, blkoff);
1589
Frederic Leroy04735e92013-06-26 18:11:25 +02001590 return ext4fs_devread((lbaint_t)blkno <<
1591 (LOG2_BLOCK_SIZE(data) - log2blksz),
Stefan Brünsf798b1d2016-09-17 02:10:09 +02001592 blkoff, desc_size, (char *)blkgrp);
Uma Shankara1596432012-05-25 21:21:44 +05301593}
1594
1595int ext4fs_read_inode(struct ext2_data *data, int ino, struct ext2_inode *inode)
1596{
Benjamin Limfebbc582019-03-29 07:29:45 -04001597 struct ext2_block_group *blkgrp;
Uma Shankara1596432012-05-25 21:21:44 +05301598 struct ext2_sblock *sblock = &data->sblock;
1599 struct ext_filesystem *fs = get_fs();
Egbert Eich50ce4c02013-05-01 01:13:19 +00001600 int log2blksz = get_fs()->dev_desc->log2blksz;
Uma Shankara1596432012-05-25 21:21:44 +05301601 int inodes_per_block, status;
1602 long int blkno;
1603 unsigned int blkoff;
1604
Benjamin Limfebbc582019-03-29 07:29:45 -04001605 /* Allocate blkgrp based on gdsize (for 64-bit support). */
1606 blkgrp = zalloc(get_fs()->gdsize);
1607 if (!blkgrp)
1608 return 0;
1609
Uma Shankara1596432012-05-25 21:21:44 +05301610 /* It is easier to calculate if the first inode is 0. */
1611 ino--;
Paul Emge084be432019-07-08 16:37:06 -07001612 if ( le32_to_cpu(sblock->inodes_per_group) == 0 || fs->inodesz == 0) {
1613 free(blkgrp);
1614 return 0;
1615 }
Michael Walle7f101be2016-08-29 10:46:44 +02001616 status = ext4fs_blockgroup(data, ino / le32_to_cpu
Benjamin Limfebbc582019-03-29 07:29:45 -04001617 (sblock->inodes_per_group), blkgrp);
1618 if (status == 0) {
1619 free(blkgrp);
Uma Shankara1596432012-05-25 21:21:44 +05301620 return 0;
Benjamin Limfebbc582019-03-29 07:29:45 -04001621 }
Uma Shankara1596432012-05-25 21:21:44 +05301622
1623 inodes_per_block = EXT2_BLOCK_SIZE(data) / fs->inodesz;
Paul Emge084be432019-07-08 16:37:06 -07001624 if ( inodes_per_block == 0 ) {
1625 free(blkgrp);
1626 return 0;
1627 }
Benjamin Limfebbc582019-03-29 07:29:45 -04001628 blkno = ext4fs_bg_get_inode_table_id(blkgrp, fs) +
Michael Walle7f101be2016-08-29 10:46:44 +02001629 (ino % le32_to_cpu(sblock->inodes_per_group)) / inodes_per_block;
Uma Shankara1596432012-05-25 21:21:44 +05301630 blkoff = (ino % inodes_per_block) * fs->inodesz;
Benjamin Limfebbc582019-03-29 07:29:45 -04001631
1632 /* Free blkgrp as it is no longer required. */
1633 free(blkgrp);
1634
Uma Shankara1596432012-05-25 21:21:44 +05301635 /* Read the inode. */
Frederic Leroy04735e92013-06-26 18:11:25 +02001636 status = ext4fs_devread((lbaint_t)blkno << (LOG2_BLOCK_SIZE(data) -
1637 log2blksz), blkoff,
Uma Shankara1596432012-05-25 21:21:44 +05301638 sizeof(struct ext2_inode), (char *)inode);
1639 if (status == 0)
1640 return 0;
1641
1642 return 1;
1643}
1644
Stephen Warrend5aee652019-01-30 12:58:05 -07001645long int read_allocated_block(struct ext2_inode *inode, int fileblock,
1646 struct ext_block_cache *cache)
Uma Shankara1596432012-05-25 21:21:44 +05301647{
1648 long int blknr;
1649 int blksz;
1650 int log2_blksz;
1651 int status;
1652 long int rblock;
1653 long int perblock_parent;
1654 long int perblock_child;
1655 unsigned long long start;
1656 /* get the blocksize of the filesystem */
1657 blksz = EXT2_BLOCK_SIZE(ext4fs_root);
Egbert Eich50ce4c02013-05-01 01:13:19 +00001658 log2_blksz = LOG2_BLOCK_SIZE(ext4fs_root)
1659 - get_fs()->dev_desc->log2blksz;
1660
Uma Shankara1596432012-05-25 21:21:44 +05301661 if (le32_to_cpu(inode->flags) & EXT4_EXTENTS_FL) {
Stefan Brünsf81db562016-11-05 22:17:14 +01001662 long int startblock, endblock;
Stephen Warrend5aee652019-01-30 12:58:05 -07001663 struct ext_block_cache *c, cd;
Uma Shankara1596432012-05-25 21:21:44 +05301664 struct ext4_extent_header *ext_block;
1665 struct ext4_extent *extent;
Stefan Brünsf81db562016-11-05 22:17:14 +01001666 int i;
Stephen Warrend5aee652019-01-30 12:58:05 -07001667
1668 if (cache) {
1669 c = cache;
1670 } else {
1671 c = &cd;
1672 ext_cache_init(c);
1673 }
Egbert Eich50ce4c02013-05-01 01:13:19 +00001674 ext_block =
Stephen Warrend5aee652019-01-30 12:58:05 -07001675 ext4fs_get_extent_block(ext4fs_root, c,
Egbert Eich50ce4c02013-05-01 01:13:19 +00001676 (struct ext4_extent_header *)
1677 inode->b.blocks.dir_blocks,
1678 fileblock, log2_blksz);
Uma Shankara1596432012-05-25 21:21:44 +05301679 if (!ext_block) {
1680 printf("invalid extent block\n");
Stephen Warrend5aee652019-01-30 12:58:05 -07001681 if (!cache)
1682 ext_cache_fini(c);
Uma Shankara1596432012-05-25 21:21:44 +05301683 return -EINVAL;
1684 }
1685
1686 extent = (struct ext4_extent *)(ext_block + 1);
1687
Stefan Brünsf81db562016-11-05 22:17:14 +01001688 for (i = 0; i < le16_to_cpu(ext_block->eh_entries); i++) {
1689 startblock = le32_to_cpu(extent[i].ee_block);
1690 endblock = startblock + le16_to_cpu(extent[i].ee_len);
1691
1692 if (startblock > fileblock) {
1693 /* Sparse file */
Stephen Warrend5aee652019-01-30 12:58:05 -07001694 if (!cache)
1695 ext_cache_fini(c);
Uma Shankara1596432012-05-25 21:21:44 +05301696 return 0;
Uma Shankara1596432012-05-25 21:21:44 +05301697
Stefan Brünsf81db562016-11-05 22:17:14 +01001698 } else if (fileblock < endblock) {
1699 start = le16_to_cpu(extent[i].ee_start_hi);
1700 start = (start << 32) +
Uma Shankara1596432012-05-25 21:21:44 +05301701 le32_to_cpu(extent[i].ee_start_lo);
Stephen Warrend5aee652019-01-30 12:58:05 -07001702 if (!cache)
1703 ext_cache_fini(c);
Stefan Brünsf81db562016-11-05 22:17:14 +01001704 return (fileblock - startblock) + start;
1705 }
Uma Shankara1596432012-05-25 21:21:44 +05301706 }
1707
Stephen Warrend5aee652019-01-30 12:58:05 -07001708 if (!cache)
1709 ext_cache_fini(c);
Stefan Brünsf81db562016-11-05 22:17:14 +01001710 return 0;
Uma Shankara1596432012-05-25 21:21:44 +05301711 }
1712
1713 /* Direct blocks. */
1714 if (fileblock < INDIRECT_BLOCKS)
Michael Walle7f101be2016-08-29 10:46:44 +02001715 blknr = le32_to_cpu(inode->b.blocks.dir_blocks[fileblock]);
Uma Shankara1596432012-05-25 21:21:44 +05301716
1717 /* Indirect. */
1718 else if (fileblock < (INDIRECT_BLOCKS + (blksz / 4))) {
1719 if (ext4fs_indir1_block == NULL) {
1720 ext4fs_indir1_block = zalloc(blksz);
1721 if (ext4fs_indir1_block == NULL) {
1722 printf("** SI ext2fs read block (indir 1)"
1723 "malloc failed. **\n");
1724 return -1;
1725 }
1726 ext4fs_indir1_size = blksz;
1727 ext4fs_indir1_blkno = -1;
1728 }
1729 if (blksz != ext4fs_indir1_size) {
1730 free(ext4fs_indir1_block);
1731 ext4fs_indir1_block = NULL;
1732 ext4fs_indir1_size = 0;
1733 ext4fs_indir1_blkno = -1;
1734 ext4fs_indir1_block = zalloc(blksz);
1735 if (ext4fs_indir1_block == NULL) {
1736 printf("** SI ext2fs read block (indir 1):"
1737 "malloc failed. **\n");
1738 return -1;
1739 }
1740 ext4fs_indir1_size = blksz;
1741 }
Michael Walle7f101be2016-08-29 10:46:44 +02001742 if ((le32_to_cpu(inode->b.blocks.indir_block) <<
Uma Shankara1596432012-05-25 21:21:44 +05301743 log2_blksz) != ext4fs_indir1_blkno) {
1744 status =
Michael Walle7f101be2016-08-29 10:46:44 +02001745 ext4fs_devread((lbaint_t)le32_to_cpu
Uma Shankara1596432012-05-25 21:21:44 +05301746 (inode->b.blocks.
1747 indir_block) << log2_blksz, 0,
1748 blksz, (char *)ext4fs_indir1_block);
1749 if (status == 0) {
1750 printf("** SI ext2fs read block (indir 1)"
1751 "failed. **\n");
Stefan Brünsde9e8312016-09-06 04:36:55 +02001752 return -1;
Uma Shankara1596432012-05-25 21:21:44 +05301753 }
1754 ext4fs_indir1_blkno =
Michael Walle7f101be2016-08-29 10:46:44 +02001755 le32_to_cpu(inode->b.blocks.
Uma Shankara1596432012-05-25 21:21:44 +05301756 indir_block) << log2_blksz;
1757 }
Michael Walle7f101be2016-08-29 10:46:44 +02001758 blknr = le32_to_cpu(ext4fs_indir1_block
Uma Shankara1596432012-05-25 21:21:44 +05301759 [fileblock - INDIRECT_BLOCKS]);
1760 }
1761 /* Double indirect. */
1762 else if (fileblock < (INDIRECT_BLOCKS + (blksz / 4 *
1763 (blksz / 4 + 1)))) {
1764
1765 long int perblock = blksz / 4;
1766 long int rblock = fileblock - (INDIRECT_BLOCKS + blksz / 4);
1767
1768 if (ext4fs_indir1_block == NULL) {
1769 ext4fs_indir1_block = zalloc(blksz);
1770 if (ext4fs_indir1_block == NULL) {
1771 printf("** DI ext2fs read block (indir 2 1)"
1772 "malloc failed. **\n");
1773 return -1;
1774 }
1775 ext4fs_indir1_size = blksz;
1776 ext4fs_indir1_blkno = -1;
1777 }
1778 if (blksz != ext4fs_indir1_size) {
1779 free(ext4fs_indir1_block);
1780 ext4fs_indir1_block = NULL;
1781 ext4fs_indir1_size = 0;
1782 ext4fs_indir1_blkno = -1;
1783 ext4fs_indir1_block = zalloc(blksz);
1784 if (ext4fs_indir1_block == NULL) {
1785 printf("** DI ext2fs read block (indir 2 1)"
1786 "malloc failed. **\n");
1787 return -1;
1788 }
1789 ext4fs_indir1_size = blksz;
1790 }
Michael Walle7f101be2016-08-29 10:46:44 +02001791 if ((le32_to_cpu(inode->b.blocks.double_indir_block) <<
Uma Shankara1596432012-05-25 21:21:44 +05301792 log2_blksz) != ext4fs_indir1_blkno) {
1793 status =
Michael Walle7f101be2016-08-29 10:46:44 +02001794 ext4fs_devread((lbaint_t)le32_to_cpu
Uma Shankara1596432012-05-25 21:21:44 +05301795 (inode->b.blocks.
1796 double_indir_block) << log2_blksz,
1797 0, blksz,
1798 (char *)ext4fs_indir1_block);
1799 if (status == 0) {
1800 printf("** DI ext2fs read block (indir 2 1)"
1801 "failed. **\n");
1802 return -1;
1803 }
1804 ext4fs_indir1_blkno =
Michael Walle7f101be2016-08-29 10:46:44 +02001805 le32_to_cpu(inode->b.blocks.double_indir_block) <<
Uma Shankara1596432012-05-25 21:21:44 +05301806 log2_blksz;
1807 }
1808
1809 if (ext4fs_indir2_block == NULL) {
1810 ext4fs_indir2_block = zalloc(blksz);
1811 if (ext4fs_indir2_block == NULL) {
1812 printf("** DI ext2fs read block (indir 2 2)"
1813 "malloc failed. **\n");
1814 return -1;
1815 }
1816 ext4fs_indir2_size = blksz;
1817 ext4fs_indir2_blkno = -1;
1818 }
1819 if (blksz != ext4fs_indir2_size) {
1820 free(ext4fs_indir2_block);
1821 ext4fs_indir2_block = NULL;
1822 ext4fs_indir2_size = 0;
1823 ext4fs_indir2_blkno = -1;
1824 ext4fs_indir2_block = zalloc(blksz);
1825 if (ext4fs_indir2_block == NULL) {
1826 printf("** DI ext2fs read block (indir 2 2)"
1827 "malloc failed. **\n");
1828 return -1;
1829 }
1830 ext4fs_indir2_size = blksz;
1831 }
Michael Walle7f101be2016-08-29 10:46:44 +02001832 if ((le32_to_cpu(ext4fs_indir1_block[rblock / perblock]) <<
Uma Shankara1596432012-05-25 21:21:44 +05301833 log2_blksz) != ext4fs_indir2_blkno) {
Michael Walle7f101be2016-08-29 10:46:44 +02001834 status = ext4fs_devread((lbaint_t)le32_to_cpu
Uma Shankara1596432012-05-25 21:21:44 +05301835 (ext4fs_indir1_block
1836 [rblock /
1837 perblock]) << log2_blksz, 0,
1838 blksz,
1839 (char *)ext4fs_indir2_block);
1840 if (status == 0) {
1841 printf("** DI ext2fs read block (indir 2 2)"
1842 "failed. **\n");
1843 return -1;
1844 }
1845 ext4fs_indir2_blkno =
Michael Walle7f101be2016-08-29 10:46:44 +02001846 le32_to_cpu(ext4fs_indir1_block[rblock
Uma Shankara1596432012-05-25 21:21:44 +05301847 /
1848 perblock]) <<
1849 log2_blksz;
1850 }
Michael Walle7f101be2016-08-29 10:46:44 +02001851 blknr = le32_to_cpu(ext4fs_indir2_block[rblock % perblock]);
Uma Shankara1596432012-05-25 21:21:44 +05301852 }
1853 /* Tripple indirect. */
1854 else {
1855 rblock = fileblock - (INDIRECT_BLOCKS + blksz / 4 +
1856 (blksz / 4 * blksz / 4));
1857 perblock_child = blksz / 4;
1858 perblock_parent = ((blksz / 4) * (blksz / 4));
1859
1860 if (ext4fs_indir1_block == NULL) {
1861 ext4fs_indir1_block = zalloc(blksz);
1862 if (ext4fs_indir1_block == NULL) {
1863 printf("** TI ext2fs read block (indir 2 1)"
1864 "malloc failed. **\n");
1865 return -1;
1866 }
1867 ext4fs_indir1_size = blksz;
1868 ext4fs_indir1_blkno = -1;
1869 }
1870 if (blksz != ext4fs_indir1_size) {
1871 free(ext4fs_indir1_block);
1872 ext4fs_indir1_block = NULL;
1873 ext4fs_indir1_size = 0;
1874 ext4fs_indir1_blkno = -1;
1875 ext4fs_indir1_block = zalloc(blksz);
1876 if (ext4fs_indir1_block == NULL) {
1877 printf("** TI ext2fs read block (indir 2 1)"
1878 "malloc failed. **\n");
1879 return -1;
1880 }
1881 ext4fs_indir1_size = blksz;
1882 }
Michael Walle7f101be2016-08-29 10:46:44 +02001883 if ((le32_to_cpu(inode->b.blocks.triple_indir_block) <<
Uma Shankara1596432012-05-25 21:21:44 +05301884 log2_blksz) != ext4fs_indir1_blkno) {
1885 status = ext4fs_devread
Frederic Leroy04735e92013-06-26 18:11:25 +02001886 ((lbaint_t)
Michael Walle7f101be2016-08-29 10:46:44 +02001887 le32_to_cpu(inode->b.blocks.triple_indir_block)
Uma Shankara1596432012-05-25 21:21:44 +05301888 << log2_blksz, 0, blksz,
1889 (char *)ext4fs_indir1_block);
1890 if (status == 0) {
1891 printf("** TI ext2fs read block (indir 2 1)"
1892 "failed. **\n");
1893 return -1;
1894 }
1895 ext4fs_indir1_blkno =
Michael Walle7f101be2016-08-29 10:46:44 +02001896 le32_to_cpu(inode->b.blocks.triple_indir_block) <<
Uma Shankara1596432012-05-25 21:21:44 +05301897 log2_blksz;
1898 }
1899
1900 if (ext4fs_indir2_block == NULL) {
1901 ext4fs_indir2_block = zalloc(blksz);
1902 if (ext4fs_indir2_block == NULL) {
1903 printf("** TI ext2fs read block (indir 2 2)"
1904 "malloc failed. **\n");
1905 return -1;
1906 }
1907 ext4fs_indir2_size = blksz;
1908 ext4fs_indir2_blkno = -1;
1909 }
1910 if (blksz != ext4fs_indir2_size) {
1911 free(ext4fs_indir2_block);
1912 ext4fs_indir2_block = NULL;
1913 ext4fs_indir2_size = 0;
1914 ext4fs_indir2_blkno = -1;
1915 ext4fs_indir2_block = zalloc(blksz);
1916 if (ext4fs_indir2_block == NULL) {
1917 printf("** TI ext2fs read block (indir 2 2)"
1918 "malloc failed. **\n");
1919 return -1;
1920 }
1921 ext4fs_indir2_size = blksz;
1922 }
Michael Walle7f101be2016-08-29 10:46:44 +02001923 if ((le32_to_cpu(ext4fs_indir1_block[rblock /
Uma Shankara1596432012-05-25 21:21:44 +05301924 perblock_parent]) <<
1925 log2_blksz)
1926 != ext4fs_indir2_blkno) {
Michael Walle7f101be2016-08-29 10:46:44 +02001927 status = ext4fs_devread((lbaint_t)le32_to_cpu
Uma Shankara1596432012-05-25 21:21:44 +05301928 (ext4fs_indir1_block
1929 [rblock /
1930 perblock_parent]) <<
1931 log2_blksz, 0, blksz,
1932 (char *)ext4fs_indir2_block);
1933 if (status == 0) {
1934 printf("** TI ext2fs read block (indir 2 2)"
1935 "failed. **\n");
1936 return -1;
1937 }
1938 ext4fs_indir2_blkno =
Michael Walle7f101be2016-08-29 10:46:44 +02001939 le32_to_cpu(ext4fs_indir1_block[rblock /
Uma Shankara1596432012-05-25 21:21:44 +05301940 perblock_parent])
1941 << log2_blksz;
1942 }
1943
1944 if (ext4fs_indir3_block == NULL) {
1945 ext4fs_indir3_block = zalloc(blksz);
1946 if (ext4fs_indir3_block == NULL) {
1947 printf("** TI ext2fs read block (indir 2 2)"
1948 "malloc failed. **\n");
1949 return -1;
1950 }
1951 ext4fs_indir3_size = blksz;
1952 ext4fs_indir3_blkno = -1;
1953 }
1954 if (blksz != ext4fs_indir3_size) {
1955 free(ext4fs_indir3_block);
1956 ext4fs_indir3_block = NULL;
1957 ext4fs_indir3_size = 0;
1958 ext4fs_indir3_blkno = -1;
1959 ext4fs_indir3_block = zalloc(blksz);
1960 if (ext4fs_indir3_block == NULL) {
1961 printf("** TI ext2fs read block (indir 2 2)"
1962 "malloc failed. **\n");
1963 return -1;
1964 }
1965 ext4fs_indir3_size = blksz;
1966 }
Michael Walle7f101be2016-08-29 10:46:44 +02001967 if ((le32_to_cpu(ext4fs_indir2_block[rblock
Uma Shankara1596432012-05-25 21:21:44 +05301968 /
1969 perblock_child]) <<
1970 log2_blksz) != ext4fs_indir3_blkno) {
1971 status =
Michael Walle7f101be2016-08-29 10:46:44 +02001972 ext4fs_devread((lbaint_t)le32_to_cpu
Uma Shankara1596432012-05-25 21:21:44 +05301973 (ext4fs_indir2_block
1974 [(rblock / perblock_child)
1975 % (blksz / 4)]) << log2_blksz, 0,
1976 blksz, (char *)ext4fs_indir3_block);
1977 if (status == 0) {
1978 printf("** TI ext2fs read block (indir 2 2)"
1979 "failed. **\n");
1980 return -1;
1981 }
1982 ext4fs_indir3_blkno =
Michael Walle7f101be2016-08-29 10:46:44 +02001983 le32_to_cpu(ext4fs_indir2_block[(rblock /
Uma Shankara1596432012-05-25 21:21:44 +05301984 perblock_child) %
1985 (blksz /
1986 4)]) <<
1987 log2_blksz;
1988 }
1989
Michael Walle7f101be2016-08-29 10:46:44 +02001990 blknr = le32_to_cpu(ext4fs_indir3_block
Uma Shankara1596432012-05-25 21:21:44 +05301991 [rblock % perblock_child]);
1992 }
Egbert Eich50ce4c02013-05-01 01:13:19 +00001993 debug("read_allocated_block %ld\n", blknr);
Uma Shankara1596432012-05-25 21:21:44 +05301994
1995 return blknr;
1996}
1997
Łukasz Majewski8b454ee2014-05-06 09:36:05 +02001998/**
1999 * ext4fs_reinit_global() - Reinitialize values of ext4 write implementation's
2000 * global pointers
2001 *
2002 * This function assures that for a file with the same name but different size
2003 * the sequential store on the ext4 filesystem will be correct.
2004 *
2005 * In this function the global data, responsible for internal representation
2006 * of the ext4 data are initialized to the reset state. Without this, during
2007 * replacement of the smaller file with the bigger truncation of new file was
2008 * performed.
2009 */
2010void ext4fs_reinit_global(void)
Uma Shankara1596432012-05-25 21:21:44 +05302011{
Uma Shankara1596432012-05-25 21:21:44 +05302012 if (ext4fs_indir1_block != NULL) {
2013 free(ext4fs_indir1_block);
2014 ext4fs_indir1_block = NULL;
2015 ext4fs_indir1_size = 0;
2016 ext4fs_indir1_blkno = -1;
2017 }
2018 if (ext4fs_indir2_block != NULL) {
2019 free(ext4fs_indir2_block);
2020 ext4fs_indir2_block = NULL;
2021 ext4fs_indir2_size = 0;
2022 ext4fs_indir2_blkno = -1;
2023 }
2024 if (ext4fs_indir3_block != NULL) {
2025 free(ext4fs_indir3_block);
2026 ext4fs_indir3_block = NULL;
2027 ext4fs_indir3_size = 0;
2028 ext4fs_indir3_blkno = -1;
2029 }
2030}
Łukasz Majewski8b454ee2014-05-06 09:36:05 +02002031void ext4fs_close(void)
2032{
2033 if ((ext4fs_file != NULL) && (ext4fs_root != NULL)) {
2034 ext4fs_free_node(ext4fs_file, &ext4fs_root->diropen);
2035 ext4fs_file = NULL;
2036 }
2037 if (ext4fs_root != NULL) {
2038 free(ext4fs_root);
2039 ext4fs_root = NULL;
2040 }
2041
2042 ext4fs_reinit_global();
2043}
Uma Shankara1596432012-05-25 21:21:44 +05302044
2045int ext4fs_iterate_dir(struct ext2fs_node *dir, char *name,
2046 struct ext2fs_node **fnode, int *ftype)
2047{
2048 unsigned int fpos = 0;
2049 int status;
Suriyan Ramasami9f12cd02014-11-17 14:39:36 -08002050 loff_t actread;
Uma Shankara1596432012-05-25 21:21:44 +05302051 struct ext2fs_node *diro = (struct ext2fs_node *) dir;
2052
2053#ifdef DEBUG
2054 if (name != NULL)
2055 printf("Iterate dir %s\n", name);
2056#endif /* of DEBUG */
2057 if (!diro->inode_read) {
2058 status = ext4fs_read_inode(diro->data, diro->ino, &diro->inode);
2059 if (status == 0)
2060 return 0;
2061 }
2062 /* Search the file. */
Michael Walle7f101be2016-08-29 10:46:44 +02002063 while (fpos < le32_to_cpu(diro->inode.size)) {
Uma Shankara1596432012-05-25 21:21:44 +05302064 struct ext2_dirent dirent;
2065
2066 status = ext4fs_read_file(diro, fpos,
2067 sizeof(struct ext2_dirent),
Suriyan Ramasami9f12cd02014-11-17 14:39:36 -08002068 (char *)&dirent, &actread);
2069 if (status < 0)
Uma Shankara1596432012-05-25 21:21:44 +05302070 return 0;
2071
Thomas Fitzsimmons54d68e92015-11-18 12:42:53 -05002072 if (dirent.direntlen == 0) {
2073 printf("Failed to iterate over directory %s\n", name);
2074 return 0;
2075 }
2076
Uma Shankara1596432012-05-25 21:21:44 +05302077 if (dirent.namelen != 0) {
2078 char filename[dirent.namelen + 1];
2079 struct ext2fs_node *fdiro;
2080 int type = FILETYPE_UNKNOWN;
2081
2082 status = ext4fs_read_file(diro,
2083 fpos +
2084 sizeof(struct ext2_dirent),
Suriyan Ramasami9f12cd02014-11-17 14:39:36 -08002085 dirent.namelen, filename,
2086 &actread);
2087 if (status < 0)
Uma Shankara1596432012-05-25 21:21:44 +05302088 return 0;
2089
2090 fdiro = zalloc(sizeof(struct ext2fs_node));
2091 if (!fdiro)
2092 return 0;
2093
2094 fdiro->data = diro->data;
Michael Walle7f101be2016-08-29 10:46:44 +02002095 fdiro->ino = le32_to_cpu(dirent.inode);
Uma Shankara1596432012-05-25 21:21:44 +05302096
2097 filename[dirent.namelen] = '\0';
2098
2099 if (dirent.filetype != FILETYPE_UNKNOWN) {
2100 fdiro->inode_read = 0;
2101
2102 if (dirent.filetype == FILETYPE_DIRECTORY)
2103 type = FILETYPE_DIRECTORY;
2104 else if (dirent.filetype == FILETYPE_SYMLINK)
2105 type = FILETYPE_SYMLINK;
2106 else if (dirent.filetype == FILETYPE_REG)
2107 type = FILETYPE_REG;
2108 } else {
2109 status = ext4fs_read_inode(diro->data,
Michael Walle7f101be2016-08-29 10:46:44 +02002110 le32_to_cpu
Uma Shankara1596432012-05-25 21:21:44 +05302111 (dirent.inode),
2112 &fdiro->inode);
2113 if (status == 0) {
2114 free(fdiro);
2115 return 0;
2116 }
2117 fdiro->inode_read = 1;
2118
Michael Walle7f101be2016-08-29 10:46:44 +02002119 if ((le16_to_cpu(fdiro->inode.mode) &
Uma Shankara1596432012-05-25 21:21:44 +05302120 FILETYPE_INO_MASK) ==
2121 FILETYPE_INO_DIRECTORY) {
2122 type = FILETYPE_DIRECTORY;
Michael Walle7f101be2016-08-29 10:46:44 +02002123 } else if ((le16_to_cpu(fdiro->inode.mode)
Uma Shankara1596432012-05-25 21:21:44 +05302124 & FILETYPE_INO_MASK) ==
2125 FILETYPE_INO_SYMLINK) {
2126 type = FILETYPE_SYMLINK;
Michael Walle7f101be2016-08-29 10:46:44 +02002127 } else if ((le16_to_cpu(fdiro->inode.mode)
Uma Shankara1596432012-05-25 21:21:44 +05302128 & FILETYPE_INO_MASK) ==
2129 FILETYPE_INO_REG) {
2130 type = FILETYPE_REG;
2131 }
2132 }
2133#ifdef DEBUG
2134 printf("iterate >%s<\n", filename);
2135#endif /* of DEBUG */
2136 if ((name != NULL) && (fnode != NULL)
2137 && (ftype != NULL)) {
2138 if (strcmp(filename, name) == 0) {
2139 *ftype = type;
2140 *fnode = fdiro;
2141 return 1;
2142 }
2143 } else {
2144 if (fdiro->inode_read == 0) {
2145 status = ext4fs_read_inode(diro->data,
Michael Walle7f101be2016-08-29 10:46:44 +02002146 le32_to_cpu(
Uma Shankara1596432012-05-25 21:21:44 +05302147 dirent.inode),
2148 &fdiro->inode);
2149 if (status == 0) {
2150 free(fdiro);
2151 return 0;
2152 }
2153 fdiro->inode_read = 1;
2154 }
2155 switch (type) {
2156 case FILETYPE_DIRECTORY:
2157 printf("<DIR> ");
2158 break;
2159 case FILETYPE_SYMLINK:
2160 printf("<SYM> ");
2161 break;
2162 case FILETYPE_REG:
2163 printf(" ");
2164 break;
2165 default:
2166 printf("< ? > ");
2167 break;
2168 }
Suriyan Ramasami9f12cd02014-11-17 14:39:36 -08002169 printf("%10u %s\n",
Michael Walle7f101be2016-08-29 10:46:44 +02002170 le32_to_cpu(fdiro->inode.size),
Uma Shankara1596432012-05-25 21:21:44 +05302171 filename);
2172 }
2173 free(fdiro);
2174 }
Michael Walle7f101be2016-08-29 10:46:44 +02002175 fpos += le16_to_cpu(dirent.direntlen);
Uma Shankara1596432012-05-25 21:21:44 +05302176 }
2177 return 0;
2178}
2179
2180static char *ext4fs_read_symlink(struct ext2fs_node *node)
2181{
2182 char *symlink;
2183 struct ext2fs_node *diro = node;
2184 int status;
Suriyan Ramasami9f12cd02014-11-17 14:39:36 -08002185 loff_t actread;
Uma Shankara1596432012-05-25 21:21:44 +05302186
2187 if (!diro->inode_read) {
2188 status = ext4fs_read_inode(diro->data, diro->ino, &diro->inode);
2189 if (status == 0)
Michael Walle58a9ecb2016-09-01 11:21:40 +02002190 return NULL;
Uma Shankara1596432012-05-25 21:21:44 +05302191 }
Michael Walle7f101be2016-08-29 10:46:44 +02002192 symlink = zalloc(le32_to_cpu(diro->inode.size) + 1);
Uma Shankara1596432012-05-25 21:21:44 +05302193 if (!symlink)
Michael Walle58a9ecb2016-09-01 11:21:40 +02002194 return NULL;
Uma Shankara1596432012-05-25 21:21:44 +05302195
Michael Walle7f101be2016-08-29 10:46:44 +02002196 if (le32_to_cpu(diro->inode.size) < sizeof(diro->inode.b.symlink)) {
Uma Shankara1596432012-05-25 21:21:44 +05302197 strncpy(symlink, diro->inode.b.symlink,
Michael Walle7f101be2016-08-29 10:46:44 +02002198 le32_to_cpu(diro->inode.size));
Uma Shankara1596432012-05-25 21:21:44 +05302199 } else {
2200 status = ext4fs_read_file(diro, 0,
Michael Walle7f101be2016-08-29 10:46:44 +02002201 le32_to_cpu(diro->inode.size),
Suriyan Ramasami9f12cd02014-11-17 14:39:36 -08002202 symlink, &actread);
Gary Bisson9d2f6a92015-09-07 11:20:07 +02002203 if ((status < 0) || (actread == 0)) {
Uma Shankara1596432012-05-25 21:21:44 +05302204 free(symlink);
Michael Walle58a9ecb2016-09-01 11:21:40 +02002205 return NULL;
Uma Shankara1596432012-05-25 21:21:44 +05302206 }
2207 }
Michael Walle7f101be2016-08-29 10:46:44 +02002208 symlink[le32_to_cpu(diro->inode.size)] = '\0';
Uma Shankara1596432012-05-25 21:21:44 +05302209 return symlink;
2210}
2211
2212static int ext4fs_find_file1(const char *currpath,
2213 struct ext2fs_node *currroot,
2214 struct ext2fs_node **currfound, int *foundtype)
2215{
2216 char fpath[strlen(currpath) + 1];
2217 char *name = fpath;
2218 char *next;
2219 int status;
2220 int type = FILETYPE_DIRECTORY;
2221 struct ext2fs_node *currnode = currroot;
2222 struct ext2fs_node *oldnode = currroot;
2223
2224 strncpy(fpath, currpath, strlen(currpath) + 1);
2225
2226 /* Remove all leading slashes. */
2227 while (*name == '/')
2228 name++;
2229
2230 if (!*name) {
2231 *currfound = currnode;
2232 return 1;
2233 }
2234
2235 for (;;) {
2236 int found;
2237
2238 /* Extract the actual part from the pathname. */
2239 next = strchr(name, '/');
2240 if (next) {
2241 /* Remove all leading slashes. */
2242 while (*next == '/')
2243 *(next++) = '\0';
2244 }
2245
2246 if (type != FILETYPE_DIRECTORY) {
2247 ext4fs_free_node(currnode, currroot);
2248 return 0;
2249 }
2250
2251 oldnode = currnode;
2252
2253 /* Iterate over the directory. */
2254 found = ext4fs_iterate_dir(currnode, name, &currnode, &type);
2255 if (found == 0)
2256 return 0;
2257
2258 if (found == -1)
2259 break;
2260
2261 /* Read in the symlink and follow it. */
2262 if (type == FILETYPE_SYMLINK) {
2263 char *symlink;
2264
2265 /* Test if the symlink does not loop. */
2266 if (++symlinknest == 8) {
2267 ext4fs_free_node(currnode, currroot);
2268 ext4fs_free_node(oldnode, currroot);
2269 return 0;
2270 }
2271
2272 symlink = ext4fs_read_symlink(currnode);
2273 ext4fs_free_node(currnode, currroot);
2274
2275 if (!symlink) {
2276 ext4fs_free_node(oldnode, currroot);
2277 return 0;
2278 }
2279
2280 debug("Got symlink >%s<\n", symlink);
2281
2282 if (symlink[0] == '/') {
2283 ext4fs_free_node(oldnode, currroot);
2284 oldnode = &ext4fs_root->diropen;
2285 }
2286
2287 /* Lookup the node the symlink points to. */
2288 status = ext4fs_find_file1(symlink, oldnode,
2289 &currnode, &type);
2290
2291 free(symlink);
2292
2293 if (status == 0) {
2294 ext4fs_free_node(oldnode, currroot);
2295 return 0;
2296 }
2297 }
2298
2299 ext4fs_free_node(oldnode, currroot);
2300
2301 /* Found the node! */
2302 if (!next || *next == '\0') {
2303 *currfound = currnode;
2304 *foundtype = type;
2305 return 1;
2306 }
2307 name = next;
2308 }
2309 return -1;
2310}
2311
2312int ext4fs_find_file(const char *path, struct ext2fs_node *rootnode,
2313 struct ext2fs_node **foundnode, int expecttype)
2314{
2315 int status;
2316 int foundtype = FILETYPE_DIRECTORY;
2317
2318 symlinknest = 0;
2319 if (!path)
2320 return 0;
2321
2322 status = ext4fs_find_file1(path, rootnode, foundnode, &foundtype);
2323 if (status == 0)
2324 return 0;
2325
2326 /* Check if the node that was found was of the expected type. */
2327 if ((expecttype == FILETYPE_REG) && (foundtype != expecttype))
2328 return 0;
2329 else if ((expecttype == FILETYPE_DIRECTORY)
2330 && (foundtype != expecttype))
2331 return 0;
2332
2333 return 1;
2334}
2335
Suriyan Ramasami9f12cd02014-11-17 14:39:36 -08002336int ext4fs_open(const char *filename, loff_t *len)
Uma Shankara1596432012-05-25 21:21:44 +05302337{
2338 struct ext2fs_node *fdiro = NULL;
2339 int status;
Uma Shankara1596432012-05-25 21:21:44 +05302340
2341 if (ext4fs_root == NULL)
2342 return -1;
2343
2344 ext4fs_file = NULL;
2345 status = ext4fs_find_file(filename, &ext4fs_root->diropen, &fdiro,
2346 FILETYPE_REG);
2347 if (status == 0)
2348 goto fail;
2349
2350 if (!fdiro->inode_read) {
2351 status = ext4fs_read_inode(fdiro->data, fdiro->ino,
2352 &fdiro->inode);
2353 if (status == 0)
2354 goto fail;
2355 }
Michael Walle7f101be2016-08-29 10:46:44 +02002356 *len = le32_to_cpu(fdiro->inode.size);
Uma Shankara1596432012-05-25 21:21:44 +05302357 ext4fs_file = fdiro;
2358
Suriyan Ramasami9f12cd02014-11-17 14:39:36 -08002359 return 0;
Uma Shankara1596432012-05-25 21:21:44 +05302360fail:
2361 ext4fs_free_node(fdiro, &ext4fs_root->diropen);
2362
2363 return -1;
2364}
2365
2366int ext4fs_mount(unsigned part_length)
2367{
2368 struct ext2_data *data;
2369 int status;
2370 struct ext_filesystem *fs = get_fs();
Egbert Eich50ce4c02013-05-01 01:13:19 +00002371 data = zalloc(SUPERBLOCK_SIZE);
Uma Shankara1596432012-05-25 21:21:44 +05302372 if (!data)
2373 return 0;
2374
2375 /* Read the superblock. */
Egbert Eich50ce4c02013-05-01 01:13:19 +00002376 status = ext4_read_superblock((char *)&data->sblock);
Uma Shankara1596432012-05-25 21:21:44 +05302377
2378 if (status == 0)
2379 goto fail;
2380
2381 /* Make sure this is an ext2 filesystem. */
Michael Walle7f101be2016-08-29 10:46:44 +02002382 if (le16_to_cpu(data->sblock.magic) != EXT2_MAGIC)
Marek Behún51be4712018-03-08 00:26:08 +01002383 goto fail_noerr;
Uma Shankara1596432012-05-25 21:21:44 +05302384
Tom Rini6f94ab62016-07-22 17:59:11 -04002385
Stefan Brünsfc214ef2016-09-17 02:10:07 +02002386 if (le32_to_cpu(data->sblock.revision_level) == 0) {
Uma Shankara1596432012-05-25 21:21:44 +05302387 fs->inodesz = 128;
Stefan Brüns3cc5bbb2016-12-27 02:35:08 +01002388 fs->gdsize = 32;
Stefan Brünsfc214ef2016-09-17 02:10:07 +02002389 } else {
2390 debug("EXT4 features COMPAT: %08x INCOMPAT: %08x RO_COMPAT: %08x\n",
2391 __le32_to_cpu(data->sblock.feature_compatibility),
2392 __le32_to_cpu(data->sblock.feature_incompat),
2393 __le32_to_cpu(data->sblock.feature_ro_compat));
Uma Shankara1596432012-05-25 21:21:44 +05302394
Stefan Brünsfc214ef2016-09-17 02:10:07 +02002395 fs->inodesz = le16_to_cpu(data->sblock.inode_size);
2396 fs->gdsize = le32_to_cpu(data->sblock.feature_incompat) &
2397 EXT4_FEATURE_INCOMPAT_64BIT ?
2398 le16_to_cpu(data->sblock.descriptor_size) : 32;
2399 }
2400
2401 debug("EXT2 rev %d, inode_size %d, descriptor size %d\n",
2402 le32_to_cpu(data->sblock.revision_level),
2403 fs->inodesz, fs->gdsize);
Uma Shankara1596432012-05-25 21:21:44 +05302404
2405 data->diropen.data = data;
2406 data->diropen.ino = 2;
2407 data->diropen.inode_read = 1;
2408 data->inode = &data->diropen.inode;
2409
2410 status = ext4fs_read_inode(data, 2, data->inode);
2411 if (status == 0)
2412 goto fail;
2413
2414 ext4fs_root = data;
2415
2416 return 1;
2417fail:
2418 printf("Failed to mount ext2 filesystem...\n");
Marek Behún51be4712018-03-08 00:26:08 +01002419fail_noerr:
Uma Shankara1596432012-05-25 21:21:44 +05302420 free(data);
2421 ext4fs_root = NULL;
2422
2423 return 0;
2424}