blob: 81aa5fc0f86edc0a584a31b367a92493a04739af [file] [log] [blame]
Uma Shankared34f342012-05-25 21:22:49 +05301/*
2 * (C) Copyright 2011 - 2012 Samsung Electronics
3 * EXT4 filesystem implementation in Uboot by
4 * Uma Shankar <uma.shankar@samsung.com>
5 * Manjunatha C Achar <a.manjunatha@samsung.com>
6 *
7 * Journal data structures and headers for Journaling feature of ext4
8 * have been referred from JBD2 (Journaling Block device 2)
9 * implementation in Linux Kernel.
10 * Written by Stephen C. Tweedie <sct@redhat.com>
11 *
12 * Copyright 1998-2000 Red Hat, Inc --- All Rights Reserved
13 * This file is part of the Linux kernel and is made available under
14 * the terms of the GNU General Public License, version 2, or at your
15 * option, any later version, incorporated herein by reference.
16 *
17 * This program is free software; you can redistribute it and/or modify
18 * it under the terms of the GNU General Public License as published by
19 * the Free Software Foundation; either version 2 of the License, or
20 * (at your option) any later version.
21 *
22 * This program is distributed in the hope that it will be useful,
23 * but WITHOUT ANY WARRANTY; without even the implied warranty of
24 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
25 * GNU General Public License for more details.
26 *
27 * You should have received a copy of the GNU General Public License
28 * along with this program; if not, write to the Free Software
29 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
30 */
31
32#include <common.h>
33#include <ext4fs.h>
34#include <malloc.h>
35#include <ext_common.h>
36#include "ext4_common.h"
37
38static struct revoke_blk_list *revk_blk_list;
39static struct revoke_blk_list *prev_node;
York Sun472d5462013-04-01 11:29:11 -070040static int first_node = true;
Uma Shankared34f342012-05-25 21:22:49 +053041
42int gindex;
43int gd_index;
44int jrnl_blk_idx;
45struct journal_log *journal_ptr[MAX_JOURNAL_ENTRIES];
46struct dirty_blocks *dirty_block_ptr[MAX_JOURNAL_ENTRIES];
47
48int ext4fs_init_journal(void)
49{
50 int i;
51 char *temp = NULL;
52 struct ext_filesystem *fs = get_fs();
53
54 /* init globals */
55 revk_blk_list = NULL;
56 prev_node = NULL;
57 gindex = 0;
58 gd_index = 0;
59 jrnl_blk_idx = 1;
60
61 for (i = 0; i < MAX_JOURNAL_ENTRIES; i++) {
62 journal_ptr[i] = zalloc(sizeof(struct journal_log));
63 if (!journal_ptr[i])
64 goto fail;
65 dirty_block_ptr[i] = zalloc(sizeof(struct dirty_blocks));
66 if (!dirty_block_ptr[i])
67 goto fail;
68 journal_ptr[i]->buf = NULL;
69 journal_ptr[i]->blknr = -1;
70
71 dirty_block_ptr[i]->buf = NULL;
72 dirty_block_ptr[i]->blknr = -1;
73 }
74
75 if (fs->blksz == 4096) {
76 temp = zalloc(fs->blksz);
77 if (!temp)
78 goto fail;
79 journal_ptr[gindex]->buf = zalloc(fs->blksz);
80 if (!journal_ptr[gindex]->buf)
81 goto fail;
82 ext4fs_devread(0, 0, fs->blksz, temp);
83 memcpy(temp + SUPERBLOCK_SIZE, fs->sb, SUPERBLOCK_SIZE);
84 memcpy(journal_ptr[gindex]->buf, temp, fs->blksz);
85 journal_ptr[gindex++]->blknr = 0;
86 free(temp);
87 } else {
88 journal_ptr[gindex]->buf = zalloc(fs->blksz);
89 if (!journal_ptr[gindex]->buf)
90 goto fail;
91 memcpy(journal_ptr[gindex]->buf, fs->sb, SUPERBLOCK_SIZE);
92 journal_ptr[gindex++]->blknr = 1;
93 }
94
95 /* Check the file system state using journal super block */
96 if (ext4fs_check_journal_state(SCAN))
97 goto fail;
98 /* Check the file system state using journal super block */
99 if (ext4fs_check_journal_state(RECOVER))
100 goto fail;
101
102 return 0;
103fail:
104 return -1;
105}
106
107void ext4fs_dump_metadata(void)
108{
109 struct ext_filesystem *fs = get_fs();
110 int i;
111 for (i = 0; i < MAX_JOURNAL_ENTRIES; i++) {
112 if (dirty_block_ptr[i]->blknr == -1)
113 break;
114 put_ext4((uint64_t) ((uint64_t)dirty_block_ptr[i]->blknr *
115 (uint64_t)fs->blksz), dirty_block_ptr[i]->buf,
116 fs->blksz);
117 }
118}
119
120void ext4fs_free_journal(void)
121{
122 int i;
123 for (i = 0; i < MAX_JOURNAL_ENTRIES; i++) {
124 if (dirty_block_ptr[i]->blknr == -1)
125 break;
126 if (dirty_block_ptr[i]->buf)
127 free(dirty_block_ptr[i]->buf);
128 }
129
130 for (i = 0; i < MAX_JOURNAL_ENTRIES; i++) {
131 if (journal_ptr[i]->blknr == -1)
132 break;
133 if (journal_ptr[i]->buf)
134 free(journal_ptr[i]->buf);
135 }
136
137 for (i = 0; i < MAX_JOURNAL_ENTRIES; i++) {
138 if (journal_ptr[i])
139 free(journal_ptr[i]);
140 if (dirty_block_ptr[i])
141 free(dirty_block_ptr[i]);
142 }
143 gindex = 0;
144 gd_index = 0;
145 jrnl_blk_idx = 1;
146}
147
148int ext4fs_log_gdt(char *gd_table)
149{
150 struct ext_filesystem *fs = get_fs();
151 short i;
152 long int var = fs->gdtable_blkno;
153 for (i = 0; i < fs->no_blk_pergdt; i++) {
154 journal_ptr[gindex]->buf = zalloc(fs->blksz);
155 if (!journal_ptr[gindex]->buf)
156 return -ENOMEM;
157 memcpy(journal_ptr[gindex]->buf, gd_table, fs->blksz);
158 gd_table += fs->blksz;
159 journal_ptr[gindex++]->blknr = var++;
160 }
161
162 return 0;
163}
164
165/*
166 * This function stores the backup copy of meta data in RAM
167 * journal_buffer -- Buffer containing meta data
168 * blknr -- Block number on disk of the meta data buffer
169 */
170int ext4fs_log_journal(char *journal_buffer, long int blknr)
171{
172 struct ext_filesystem *fs = get_fs();
173 short i;
174
175 if (!journal_buffer) {
176 printf("Invalid input arguments %s\n", __func__);
177 return -EINVAL;
178 }
179
180 for (i = 0; i < MAX_JOURNAL_ENTRIES; i++) {
181 if (journal_ptr[i]->blknr == -1)
182 break;
183 if (journal_ptr[i]->blknr == blknr)
184 return 0;
185 }
186
187 journal_ptr[gindex]->buf = zalloc(fs->blksz);
188 if (!journal_ptr[gindex]->buf)
189 return -ENOMEM;
190
191 memcpy(journal_ptr[gindex]->buf, journal_buffer, fs->blksz);
192 journal_ptr[gindex++]->blknr = blknr;
193
194 return 0;
195}
196
197/*
198 * This function stores the modified meta data in RAM
199 * metadata_buffer -- Buffer containing meta data
200 * blknr -- Block number on disk of the meta data buffer
201 */
202int ext4fs_put_metadata(char *metadata_buffer, long int blknr)
203{
204 struct ext_filesystem *fs = get_fs();
205 if (!metadata_buffer) {
206 printf("Invalid input arguments %s\n", __func__);
207 return -EINVAL;
208 }
209 dirty_block_ptr[gd_index]->buf = zalloc(fs->blksz);
210 if (!dirty_block_ptr[gd_index]->buf)
211 return -ENOMEM;
212 memcpy(dirty_block_ptr[gd_index]->buf, metadata_buffer, fs->blksz);
213 dirty_block_ptr[gd_index++]->blknr = blknr;
214
215 return 0;
216}
217
218void print_revoke_blks(char *revk_blk)
219{
220 int offset;
221 int max;
222 long int blocknr;
223 struct journal_revoke_header_t *header;
224
225 if (revk_blk == NULL)
226 return;
227
228 header = (struct journal_revoke_header_t *) revk_blk;
229 offset = sizeof(struct journal_revoke_header_t);
230 max = be32_to_cpu(header->r_count);
231 printf("total bytes %d\n", max);
232
233 while (offset < max) {
234 blocknr = be32_to_cpu(*((long int *)(revk_blk + offset)));
235 printf("revoke blknr is %ld\n", blocknr);
236 offset += 4;
237 }
238}
239
240static struct revoke_blk_list *_get_node(void)
241{
242 struct revoke_blk_list *tmp_node;
243 tmp_node = zalloc(sizeof(struct revoke_blk_list));
244 if (tmp_node == NULL)
245 return NULL;
246 tmp_node->content = NULL;
247 tmp_node->next = NULL;
248
249 return tmp_node;
250}
251
252void ext4fs_push_revoke_blk(char *buffer)
253{
254 struct revoke_blk_list *node = NULL;
255 struct ext_filesystem *fs = get_fs();
256 if (buffer == NULL) {
257 printf("buffer ptr is NULL\n");
258 return;
259 }
260 node = _get_node();
261 if (!node) {
262 printf("_get_node: malloc failed\n");
263 return;
264 }
265
266 node->content = zalloc(fs->blksz);
267 if (node->content == NULL)
268 return;
269 memcpy(node->content, buffer, fs->blksz);
270
York Sun472d5462013-04-01 11:29:11 -0700271 if (first_node == true) {
Uma Shankared34f342012-05-25 21:22:49 +0530272 revk_blk_list = node;
273 prev_node = node;
York Sun472d5462013-04-01 11:29:11 -0700274 first_node = false;
Uma Shankared34f342012-05-25 21:22:49 +0530275 } else {
276 prev_node->next = node;
277 prev_node = node;
278 }
279}
280
281void ext4fs_free_revoke_blks(void)
282{
283 struct revoke_blk_list *tmp_node = revk_blk_list;
284 struct revoke_blk_list *next_node = NULL;
285
286 while (tmp_node != NULL) {
287 if (tmp_node->content)
288 free(tmp_node->content);
289 tmp_node = tmp_node->next;
290 }
291
292 tmp_node = revk_blk_list;
293 while (tmp_node != NULL) {
294 next_node = tmp_node->next;
295 free(tmp_node);
296 tmp_node = next_node;
297 }
298
299 revk_blk_list = NULL;
300 prev_node = NULL;
York Sun472d5462013-04-01 11:29:11 -0700301 first_node = true;
Uma Shankared34f342012-05-25 21:22:49 +0530302}
303
304int check_blknr_for_revoke(long int blknr, int sequence_no)
305{
306 struct journal_revoke_header_t *header;
307 int offset;
308 int max;
309 long int blocknr;
310 char *revk_blk;
311 struct revoke_blk_list *tmp_revk_node = revk_blk_list;
312 while (tmp_revk_node != NULL) {
313 revk_blk = tmp_revk_node->content;
314
315 header = (struct journal_revoke_header_t *) revk_blk;
316 if (sequence_no < be32_to_cpu(header->r_header.h_sequence)) {
317 offset = sizeof(struct journal_revoke_header_t);
318 max = be32_to_cpu(header->r_count);
319
320 while (offset < max) {
321 blocknr = be32_to_cpu(*((long int *)
322 (revk_blk + offset)));
323 if (blocknr == blknr)
324 goto found;
325 offset += 4;
326 }
327 }
328 tmp_revk_node = tmp_revk_node->next;
329 }
330
331 return -1;
332
333found:
334 return 0;
335}
336
337/*
338 * This function parses the journal blocks and replays the
339 * suceessful transactions. A transaction is successfull
340 * if commit block is found for a descriptor block
341 * The tags in descriptor block contain the disk block
342 * numbers of the metadata to be replayed
343 */
344void recover_transaction(int prev_desc_logical_no)
345{
346 struct ext2_inode inode_journal;
347 struct ext_filesystem *fs = get_fs();
348 struct journal_header_t *jdb;
349 long int blknr;
350 char *p_jdb;
351 int ofs, flags;
352 int i;
353 struct ext3_journal_block_tag *tag;
354 char *temp_buff = zalloc(fs->blksz);
355 char *metadata_buff = zalloc(fs->blksz);
356 if (!temp_buff || !metadata_buff)
357 goto fail;
358 i = prev_desc_logical_no;
359 ext4fs_read_inode(ext4fs_root, EXT2_JOURNAL_INO,
360 (struct ext2_inode *)&inode_journal);
361 blknr = read_allocated_block((struct ext2_inode *)
362 &inode_journal, i);
363 ext4fs_devread(blknr * fs->sect_perblk, 0, fs->blksz, temp_buff);
364 p_jdb = (char *)temp_buff;
365 jdb = (struct journal_header_t *) temp_buff;
366 ofs = sizeof(struct journal_header_t);
367
368 do {
369 tag = (struct ext3_journal_block_tag *)&p_jdb[ofs];
370 ofs += sizeof(struct ext3_journal_block_tag);
371
372 if (ofs > fs->blksz)
373 break;
374
375 flags = be32_to_cpu(tag->flags);
376 if (!(flags & EXT3_JOURNAL_FLAG_SAME_UUID))
377 ofs += 16;
378
379 i++;
380 debug("\t\ttag %u\n", be32_to_cpu(tag->block));
381 if (revk_blk_list != NULL) {
382 if (check_blknr_for_revoke(be32_to_cpu(tag->block),
383 be32_to_cpu(jdb->h_sequence)) == 0)
384 continue;
385 }
386 blknr = read_allocated_block(&inode_journal, i);
387 ext4fs_devread(blknr * fs->sect_perblk, 0,
388 fs->blksz, metadata_buff);
389 put_ext4((uint64_t)(be32_to_cpu(tag->block) * fs->blksz),
390 metadata_buff, (uint32_t) fs->blksz);
391 } while (!(flags & EXT3_JOURNAL_FLAG_LAST_TAG));
392fail:
393 free(temp_buff);
394 free(metadata_buff);
395}
396
397void print_jrnl_status(int recovery_flag)
398{
399 if (recovery_flag == RECOVER)
400 printf("Journal Recovery Completed\n");
401 else
402 printf("Journal Scan Completed\n");
403}
404
405int ext4fs_check_journal_state(int recovery_flag)
406{
407 int i;
408 int DB_FOUND = NO;
409 long int blknr;
410 int transaction_state = TRANSACTION_COMPLETE;
411 int prev_desc_logical_no = 0;
412 int curr_desc_logical_no = 0;
Łukasz Majewskid429ca02012-12-05 08:06:39 +0000413 int ofs, flags;
Uma Shankared34f342012-05-25 21:22:49 +0530414 struct ext2_inode inode_journal;
415 struct journal_superblock_t *jsb = NULL;
416 struct journal_header_t *jdb = NULL;
417 char *p_jdb = NULL;
418 struct ext3_journal_block_tag *tag = NULL;
419 char *temp_buff = NULL;
420 char *temp_buff1 = NULL;
421 struct ext_filesystem *fs = get_fs();
422
423 temp_buff = zalloc(fs->blksz);
424 if (!temp_buff)
425 return -ENOMEM;
426 temp_buff1 = zalloc(fs->blksz);
427 if (!temp_buff1) {
428 free(temp_buff);
429 return -ENOMEM;
430 }
431
432 ext4fs_read_inode(ext4fs_root, EXT2_JOURNAL_INO, &inode_journal);
433 blknr = read_allocated_block(&inode_journal, EXT2_JOURNAL_SUPERBLOCK);
434 ext4fs_devread(blknr * fs->sect_perblk, 0, fs->blksz, temp_buff);
435 jsb = (struct journal_superblock_t *) temp_buff;
436
437 if (fs->sb->feature_incompat & EXT3_FEATURE_INCOMPAT_RECOVER) {
438 if (recovery_flag == RECOVER)
439 printf("Recovery required\n");
440 } else {
441 if (recovery_flag == RECOVER)
442 printf("File System is consistent\n");
443 goto end;
444 }
445
446 if (be32_to_cpu(jsb->s_start) == 0)
447 goto end;
448
449 if (!(jsb->s_feature_compat &
450 cpu_to_be32(JBD2_FEATURE_COMPAT_CHECKSUM)))
451 jsb->s_feature_compat |=
452 cpu_to_be32(JBD2_FEATURE_COMPAT_CHECKSUM);
453
454 i = be32_to_cpu(jsb->s_first);
455 while (1) {
Uma Shankared34f342012-05-25 21:22:49 +0530456 blknr = read_allocated_block(&inode_journal, i);
457 memset(temp_buff1, '\0', fs->blksz);
458 ext4fs_devread(blknr * fs->sect_perblk,
459 0, fs->blksz, temp_buff1);
460 jdb = (struct journal_header_t *) temp_buff1;
461
462 if (be32_to_cpu(jdb->h_blocktype) ==
463 EXT3_JOURNAL_DESCRIPTOR_BLOCK) {
464 if (be32_to_cpu(jdb->h_sequence) !=
465 be32_to_cpu(jsb->s_sequence)) {
466 print_jrnl_status(recovery_flag);
467 break;
468 }
469
470 curr_desc_logical_no = i;
471 if (transaction_state == TRANSACTION_COMPLETE)
472 transaction_state = TRANSACTION_RUNNING;
473 else
474 return -1;
475 p_jdb = (char *)temp_buff1;
476 ofs = sizeof(struct journal_header_t);
477 do {
478 tag = (struct ext3_journal_block_tag *)
479 &p_jdb[ofs];
480 ofs += sizeof(struct ext3_journal_block_tag);
481 if (ofs > fs->blksz)
482 break;
483 flags = be32_to_cpu(tag->flags);
484 if (!(flags & EXT3_JOURNAL_FLAG_SAME_UUID))
485 ofs += 16;
486 i++;
487 debug("\t\ttag %u\n", be32_to_cpu(tag->block));
488 } while (!(flags & EXT3_JOURNAL_FLAG_LAST_TAG));
489 i++;
490 DB_FOUND = YES;
491 } else if (be32_to_cpu(jdb->h_blocktype) ==
492 EXT3_JOURNAL_COMMIT_BLOCK) {
493 if (be32_to_cpu(jdb->h_sequence) !=
494 be32_to_cpu(jsb->s_sequence)) {
495 print_jrnl_status(recovery_flag);
496 break;
497 }
498
499 if (transaction_state == TRANSACTION_RUNNING ||
500 (DB_FOUND == NO)) {
501 transaction_state = TRANSACTION_COMPLETE;
502 i++;
503 jsb->s_sequence =
504 cpu_to_be32(be32_to_cpu(
505 jsb->s_sequence) + 1);
506 }
507 prev_desc_logical_no = curr_desc_logical_no;
508 if ((recovery_flag == RECOVER) && (DB_FOUND == YES))
509 recover_transaction(prev_desc_logical_no);
510
511 DB_FOUND = NO;
512 } else if (be32_to_cpu(jdb->h_blocktype) ==
513 EXT3_JOURNAL_REVOKE_BLOCK) {
514 if (be32_to_cpu(jdb->h_sequence) !=
515 be32_to_cpu(jsb->s_sequence)) {
516 print_jrnl_status(recovery_flag);
517 break;
518 }
519 if (recovery_flag == SCAN)
520 ext4fs_push_revoke_blk((char *)jdb);
521 i++;
522 } else {
523 debug("Else Case\n");
524 if (be32_to_cpu(jdb->h_sequence) !=
525 be32_to_cpu(jsb->s_sequence)) {
526 print_jrnl_status(recovery_flag);
527 break;
528 }
529 }
530 }
531
532end:
533 if (recovery_flag == RECOVER) {
534 jsb->s_start = cpu_to_be32(1);
535 jsb->s_sequence = cpu_to_be32(be32_to_cpu(jsb->s_sequence) + 1);
536 /* get the superblock */
Egbert Eich50ce4c02013-05-01 01:13:19 +0000537 ext4_read_superblock((char *)fs->sb);
Uma Shankared34f342012-05-25 21:22:49 +0530538 fs->sb->feature_incompat |= EXT3_FEATURE_INCOMPAT_RECOVER;
539
540 /* Update the super block */
541 put_ext4((uint64_t) (SUPERBLOCK_SIZE),
542 (struct ext2_sblock *)fs->sb,
543 (uint32_t) SUPERBLOCK_SIZE);
Egbert Eich50ce4c02013-05-01 01:13:19 +0000544 ext4_read_superblock((char *)fs->sb);
Uma Shankared34f342012-05-25 21:22:49 +0530545
546 blknr = read_allocated_block(&inode_journal,
547 EXT2_JOURNAL_SUPERBLOCK);
548 put_ext4((uint64_t) (blknr * fs->blksz),
549 (struct journal_superblock_t *)temp_buff,
550 (uint32_t) fs->blksz);
551 ext4fs_free_revoke_blks();
552 }
553 free(temp_buff);
554 free(temp_buff1);
555
556 return 0;
557}
558
559static void update_descriptor_block(long int blknr)
560{
561 int i;
562 long int jsb_blknr;
563 struct journal_header_t jdb;
564 struct ext3_journal_block_tag tag;
565 struct ext2_inode inode_journal;
566 struct journal_superblock_t *jsb = NULL;
567 char *buf = NULL;
568 char *temp = NULL;
569 struct ext_filesystem *fs = get_fs();
570 char *temp_buff = zalloc(fs->blksz);
571 if (!temp_buff)
572 return;
573
574 ext4fs_read_inode(ext4fs_root, EXT2_JOURNAL_INO, &inode_journal);
575 jsb_blknr = read_allocated_block(&inode_journal,
576 EXT2_JOURNAL_SUPERBLOCK);
577 ext4fs_devread(jsb_blknr * fs->sect_perblk, 0, fs->blksz, temp_buff);
578 jsb = (struct journal_superblock_t *) temp_buff;
579
580 jdb.h_blocktype = cpu_to_be32(EXT3_JOURNAL_DESCRIPTOR_BLOCK);
581 jdb.h_magic = cpu_to_be32(EXT3_JOURNAL_MAGIC_NUMBER);
582 jdb.h_sequence = jsb->s_sequence;
583 buf = zalloc(fs->blksz);
584 if (!buf) {
585 free(temp_buff);
586 return;
587 }
588 temp = buf;
589 memcpy(buf, &jdb, sizeof(struct journal_header_t));
590 temp += sizeof(struct journal_header_t);
591
592 for (i = 0; i < MAX_JOURNAL_ENTRIES; i++) {
593 if (journal_ptr[i]->blknr == -1)
594 break;
595
596 tag.block = cpu_to_be32(journal_ptr[i]->blknr);
597 tag.flags = cpu_to_be32(EXT3_JOURNAL_FLAG_SAME_UUID);
598 memcpy(temp, &tag, sizeof(struct ext3_journal_block_tag));
599 temp = temp + sizeof(struct ext3_journal_block_tag);
600 }
601
602 tag.block = cpu_to_be32(journal_ptr[--i]->blknr);
603 tag.flags = cpu_to_be32(EXT3_JOURNAL_FLAG_LAST_TAG);
604 memcpy(temp - sizeof(struct ext3_journal_block_tag), &tag,
605 sizeof(struct ext3_journal_block_tag));
606 put_ext4((uint64_t) (blknr * fs->blksz), buf, (uint32_t) fs->blksz);
607
608 free(temp_buff);
609 free(buf);
610}
611
612static void update_commit_block(long int blknr)
613{
614 struct journal_header_t jdb;
615 struct ext_filesystem *fs = get_fs();
616 char *buf = NULL;
617 struct ext2_inode inode_journal;
618 struct journal_superblock_t *jsb;
619 long int jsb_blknr;
620 char *temp_buff = zalloc(fs->blksz);
621 if (!temp_buff)
622 return;
623
624 ext4fs_read_inode(ext4fs_root, EXT2_JOURNAL_INO, &inode_journal);
625 jsb_blknr = read_allocated_block(&inode_journal,
626 EXT2_JOURNAL_SUPERBLOCK);
627 ext4fs_devread(jsb_blknr * fs->sect_perblk, 0, fs->blksz, temp_buff);
628 jsb = (struct journal_superblock_t *) temp_buff;
629
630 jdb.h_blocktype = cpu_to_be32(EXT3_JOURNAL_COMMIT_BLOCK);
631 jdb.h_magic = cpu_to_be32(EXT3_JOURNAL_MAGIC_NUMBER);
632 jdb.h_sequence = jsb->s_sequence;
633 buf = zalloc(fs->blksz);
634 if (!buf) {
635 free(temp_buff);
636 return;
637 }
638 memcpy(buf, &jdb, sizeof(struct journal_header_t));
639 put_ext4((uint64_t) (blknr * fs->blksz), buf, (uint32_t) fs->blksz);
640
641 free(temp_buff);
642 free(buf);
643}
644
645void ext4fs_update_journal(void)
646{
647 struct ext2_inode inode_journal;
648 struct ext_filesystem *fs = get_fs();
649 long int blknr;
650 int i;
651 ext4fs_read_inode(ext4fs_root, EXT2_JOURNAL_INO, &inode_journal);
652 blknr = read_allocated_block(&inode_journal, jrnl_blk_idx++);
653 update_descriptor_block(blknr);
654 for (i = 0; i < MAX_JOURNAL_ENTRIES; i++) {
655 if (journal_ptr[i]->blknr == -1)
656 break;
657 blknr = read_allocated_block(&inode_journal, jrnl_blk_idx++);
658 put_ext4((uint64_t) ((uint64_t)blknr * (uint64_t)fs->blksz),
659 journal_ptr[i]->buf, fs->blksz);
660 }
661 blknr = read_allocated_block(&inode_journal, jrnl_blk_idx++);
662 update_commit_block(blknr);
663 printf("update journal finished\n");
664}