blob: f257171cb3a207f3d5804f844ecabb1414377bfd [file] [log] [blame]
Theodore Ts'oda81e3f2001-03-29 20:49:58 +00001/*
2 * logdump.c --- dump the contents of the journal out to a file
Theodore Ts'oefc6f622008-08-27 23:07:54 -04003 *
Theodore Ts'oda81e3f2001-03-29 20:49:58 +00004 * Authro: Stephen C. Tweedie, 2001 <sct@redhat.com>
5 * Copyright (C) 2001 Red Hat, Inc.
Theodore Ts'oefc6f622008-08-27 23:07:54 -04006 * Based on portions Copyright (C) 1994 Theodore Ts'o.
Theodore Ts'oda81e3f2001-03-29 20:49:58 +00007 *
Theodore Ts'oefc6f622008-08-27 23:07:54 -04008 * This file may be redistributed under the terms of the GNU Public
Theodore Ts'oda81e3f2001-03-29 20:49:58 +00009 * License.
10 */
11
12#include <stdio.h>
13#include <unistd.h>
14#include <stdlib.h>
15#include <ctype.h>
16#include <string.h>
17#include <time.h>
18#ifdef HAVE_ERRNO_H
19#include <errno.h>
20#endif
21#include <sys/types.h>
22#include <sys/stat.h>
23#include <fcntl.h>
24#include <utime.h>
25#ifdef HAVE_GETOPT_H
26#include <getopt.h>
Theodore Ts'oefc6f622008-08-27 23:07:54 -040027#else
Theodore Ts'oda81e3f2001-03-29 20:49:58 +000028extern int optind;
29extern char *optarg;
30#endif
Theodore Ts'oda81e3f2001-03-29 20:49:58 +000031
32#include "debugfs.h"
Theodore Ts'of3640932003-03-01 19:47:44 -050033#include "blkid/blkid.h"
Theodore Ts'oda81e3f2001-03-29 20:49:58 +000034#include "jfs_user.h"
Theodore Ts'o4ea7bd02001-12-16 23:23:37 -050035#include <uuid/uuid.h>
Theodore Ts'oda81e3f2001-03-29 20:49:58 +000036
37enum journal_location {JOURNAL_IS_INTERNAL, JOURNAL_IS_EXTERNAL};
38
JP Abgralle0ed7402014-03-19 19:08:39 -070039#define ANY_BLOCK ((blk64_t) -1)
Theodore Ts'o54434922003-12-07 01:28:50 -050040
JP Abgralle0ed7402014-03-19 19:08:39 -070041static int dump_all, dump_contents, dump_descriptors;
42static blk64_t block_to_dump, bitmap_to_dump, inode_block_to_dump;
43static unsigned int group_to_dump, inode_offset_to_dump;
44static ext2_ino_t inode_to_dump;
Theodore Ts'oda81e3f2001-03-29 20:49:58 +000045
Theodore Ts'oefc6f622008-08-27 23:07:54 -040046struct journal_source
Theodore Ts'oda81e3f2001-03-29 20:49:58 +000047{
48 enum journal_location where;
49 int fd;
50 ext2_file_t file;
51};
52
53static void dump_journal(char *, FILE *, struct journal_source *);
54
55static void dump_descriptor_block(FILE *, struct journal_source *,
56 char *, journal_superblock_t *,
57 unsigned int *, int, tid_t);
58
59static void dump_revoke_block(FILE *, char *, journal_superblock_t *,
60 unsigned int, int, tid_t);
61
62static void dump_metadata_block(FILE *, struct journal_source *,
Theodore Ts'oefc6f622008-08-27 23:07:54 -040063 journal_superblock_t*,
Theodore Ts'o98446d72009-01-18 22:48:16 -050064 unsigned int, unsigned int, unsigned int,
65 int, tid_t);
Theodore Ts'oda81e3f2001-03-29 20:49:58 +000066
67static void do_hexdump (FILE *, char *, int);
68
69#define WRAP(jsb, blocknr) \
70 if (blocknr >= be32_to_cpu((jsb)->s_maxlen)) \
71 blocknr -= (be32_to_cpu((jsb)->s_maxlen) - \
72 be32_to_cpu((jsb)->s_first));
73
Theodore Ts'oda81e3f2001-03-29 20:49:58 +000074void do_logdump(int argc, char **argv)
75{
Theodore Ts'oda81e3f2001-03-29 20:49:58 +000076 int c;
Theodore Ts'oda81e3f2001-03-29 20:49:58 +000077 int retval;
78 char *out_fn;
79 FILE *out_file;
Theodore Ts'oefc6f622008-08-27 23:07:54 -040080
Theodore Ts'oda81e3f2001-03-29 20:49:58 +000081 char *inode_spec = NULL;
82 char *journal_fn = NULL;
83 int journal_fd = 0;
Theodore Ts'oa435ec32003-08-21 00:40:26 -040084 int use_sb = 0;
Theodore Ts'oda81e3f2001-03-29 20:49:58 +000085 ext2_ino_t journal_inum;
86 struct ext2_inode journal_inode;
87 ext2_file_t journal_file;
Theodore Ts'oda81e3f2001-03-29 20:49:58 +000088 char *tmp;
Theodore Ts'o5e4f0702001-06-01 15:36:05 +000089 struct journal_source journal_source;
Theodore Ts'of3640932003-03-01 19:47:44 -050090 struct ext2_super_block *es = NULL;
Theodore Ts'oefc6f622008-08-27 23:07:54 -040091
Manish Katiyarc5977632008-10-01 19:55:10 -040092 journal_source.where = JOURNAL_IS_INTERNAL;
Theodore Ts'o5e4f0702001-06-01 15:36:05 +000093 journal_source.fd = 0;
94 journal_source.file = 0;
Theodore Ts'oda81e3f2001-03-29 20:49:58 +000095 dump_all = 0;
96 dump_contents = 0;
97 dump_descriptors = 1;
Theodore Ts'o54434922003-12-07 01:28:50 -050098 block_to_dump = ANY_BLOCK;
Theodore Ts'oda81e3f2001-03-29 20:49:58 +000099 bitmap_to_dump = -1;
Theodore Ts'o54434922003-12-07 01:28:50 -0500100 inode_block_to_dump = ANY_BLOCK;
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000101 inode_to_dump = -1;
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400102
Theodore Ts'o88494bb2003-05-13 23:03:43 -0400103 reset_getopt();
Theodore Ts'oa435ec32003-08-21 00:40:26 -0400104 while ((c = getopt (argc, argv, "ab:ci:f:s")) != EOF) {
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000105 switch (c) {
106 case 'a':
107 dump_all++;
108 break;
109 case 'b':
110 block_to_dump = strtoul(optarg, &tmp, 0);
111 if (*tmp) {
112 com_err(argv[0], 0,
113 "Bad block number - %s", optarg);
114 return;
115 }
116 dump_descriptors = 0;
117 break;
118 case 'c':
119 dump_contents++;
120 break;
121 case 'f':
122 journal_fn = optarg;
123 break;
124 case 'i':
125 inode_spec = optarg;
126 dump_descriptors = 0;
127 break;
Theodore Ts'oa435ec32003-08-21 00:40:26 -0400128 case 's':
129 use_sb++;
130 break;
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000131 default:
Theodore Ts'o9b9a7802005-12-10 21:50:30 -0500132 goto print_usage;
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000133 }
134 }
135 if (optind != argc && optind != argc-1) {
Theodore Ts'o9b9a7802005-12-10 21:50:30 -0500136 goto print_usage;
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000137 }
138
Theodore Ts'of3640932003-03-01 19:47:44 -0500139 if (current_fs)
140 es = current_fs->super;
141
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000142 if (inode_spec) {
143 int inode_group, group_offset, inodes_per_block;
Theodore Ts'of3640932003-03-01 19:47:44 -0500144
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000145 if (check_fs_open(argv[0]))
146 return;
147
148 inode_to_dump = string_to_inode(inode_spec);
149 if (!inode_to_dump)
150 return;
151
152 inode_group = ((inode_to_dump - 1)
Theodore Ts'of3640932003-03-01 19:47:44 -0500153 / es->s_inodes_per_group);
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000154 group_offset = ((inode_to_dump - 1)
Theodore Ts'of3640932003-03-01 19:47:44 -0500155 % es->s_inodes_per_group);
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400156 inodes_per_block = (current_fs->blocksize
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000157 / sizeof(struct ext2_inode));
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400158
159 inode_block_to_dump =
JP Abgralle0ed7402014-03-19 19:08:39 -0700160 ext2fs_inode_table_loc(current_fs, inode_group) +
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000161 (group_offset / inodes_per_block);
162 inode_offset_to_dump = ((group_offset % inodes_per_block)
163 * sizeof(struct ext2_inode));
JP Abgralle0ed7402014-03-19 19:08:39 -0700164 printf("Inode %u is at group %u, block %llu, offset %u\n",
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000165 inode_to_dump, inode_group,
166 inode_block_to_dump, inode_offset_to_dump);
167 }
168
169 if (optind == argc) {
170 out_file = stdout;
171 } else {
172 out_fn = argv[optind];
173 out_file = fopen(out_fn, "w");
Brian Behlendorf0bed54f2007-03-23 23:01:09 -0400174 if (!out_file) {
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000175 com_err(argv[0], errno, "while opening %s for logdump",
176 out_fn);
Brian Behlendorf0bed54f2007-03-23 23:01:09 -0400177 goto errout;
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000178 }
179 }
180
Theodore Ts'o54434922003-12-07 01:28:50 -0500181 if (block_to_dump != ANY_BLOCK && current_fs != NULL) {
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400182 group_to_dump = ((block_to_dump -
Theodore Ts'of3640932003-03-01 19:47:44 -0500183 es->s_first_data_block)
184 / es->s_blocks_per_group);
JP Abgralle0ed7402014-03-19 19:08:39 -0700185 bitmap_to_dump = ext2fs_block_bitmap_loc(current_fs, group_to_dump);
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000186 }
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000187
Theodore Ts'o5faba3a2001-08-12 03:38:51 -0400188 if (!journal_fn && check_fs_open(argv[0]))
Brian Behlendorf0bed54f2007-03-23 23:01:09 -0400189 goto errout;
Theodore Ts'o5faba3a2001-08-12 03:38:51 -0400190
191 if (journal_fn) {
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000192 /* Set up to read journal from a regular file somewhere */
193 journal_fd = open(journal_fn, O_RDONLY, 0);
194 if (journal_fd < 0) {
195 com_err(argv[0], errno, "while opening %s for logdump",
196 journal_fn);
Brian Behlendorf0bed54f2007-03-23 23:01:09 -0400197 goto errout;
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000198 }
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400199
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000200 journal_source.where = JOURNAL_IS_EXTERNAL;
201 journal_source.fd = journal_fd;
Theodore Ts'of3640932003-03-01 19:47:44 -0500202 } else if ((journal_inum = es->s_journal_inum)) {
Theodore Ts'oa435ec32003-08-21 00:40:26 -0400203 if (use_sb) {
204 if (es->s_jnl_backup_type != EXT3_JNL_BACKUP_BLOCKS) {
205 com_err(argv[0], 0,
206 "no journal backup in super block\n");
Brian Behlendorf0bed54f2007-03-23 23:01:09 -0400207 goto errout;
Theodore Ts'oa435ec32003-08-21 00:40:26 -0400208 }
209 memset(&journal_inode, 0, sizeof(struct ext2_inode));
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400210 memcpy(&journal_inode.i_block[0], es->s_jnl_blocks,
Theodore Ts'oa435ec32003-08-21 00:40:26 -0400211 EXT2_N_BLOCKS*4);
JP Abgralle0ed7402014-03-19 19:08:39 -0700212 journal_inode.i_size_high = es->s_jnl_blocks[15];
Theodore Ts'oa435ec32003-08-21 00:40:26 -0400213 journal_inode.i_size = es->s_jnl_blocks[16];
214 journal_inode.i_links_count = 1;
215 journal_inode.i_mode = LINUX_S_IFREG | 0600;
216 } else {
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400217 if (debugfs_read_inode(journal_inum, &journal_inode,
Theodore Ts'oa435ec32003-08-21 00:40:26 -0400218 argv[0]))
Brian Behlendorf0bed54f2007-03-23 23:01:09 -0400219 goto errout;
Theodore Ts'oa435ec32003-08-21 00:40:26 -0400220 }
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400221
Theodore Ts'oa435ec32003-08-21 00:40:26 -0400222 retval = ext2fs_file_open2(current_fs, journal_inum,
223 &journal_inode, 0, &journal_file);
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000224 if (retval) {
225 com_err(argv[0], retval, "while opening ext2 file");
Brian Behlendorf0bed54f2007-03-23 23:01:09 -0400226 goto errout;
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000227 }
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000228 journal_source.where = JOURNAL_IS_INTERNAL;
229 journal_source.file = journal_file;
Theodore Ts'of3640932003-03-01 19:47:44 -0500230 } else {
231 char uuid[37];
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400232
Theodore Ts'of3640932003-03-01 19:47:44 -0500233 uuid_unparse(es->s_journal_uuid, uuid);
234 journal_fn = blkid_get_devname(NULL, "UUID", uuid);
235 if (!journal_fn)
236 journal_fn = blkid_devno_to_devname(es->s_journal_dev);
237 if (!journal_fn) {
238 com_err(argv[0], 0, "filesystem has no journal");
Brian Behlendorf0bed54f2007-03-23 23:01:09 -0400239 goto errout;
Theodore Ts'of3640932003-03-01 19:47:44 -0500240 }
Theodore Ts'o5faba3a2001-08-12 03:38:51 -0400241 journal_fd = open(journal_fn, O_RDONLY, 0);
242 if (journal_fd < 0) {
243 com_err(argv[0], errno, "while opening %s for logdump",
244 journal_fn);
245 free(journal_fn);
Brian Behlendorf0bed54f2007-03-23 23:01:09 -0400246 goto errout;
Theodore Ts'o5faba3a2001-08-12 03:38:51 -0400247 }
248 fprintf(out_file, "Using external journal found at %s\n",
249 journal_fn);
250 free(journal_fn);
251 journal_source.where = JOURNAL_IS_EXTERNAL;
252 journal_source.fd = journal_fd;
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000253 }
254
255 dump_journal(argv[0], out_file, &journal_source);
256
257 if (journal_source.where == JOURNAL_IS_INTERNAL)
258 ext2fs_file_close(journal_file);
259 else
260 close(journal_fd);
261
Brian Behlendorf0bed54f2007-03-23 23:01:09 -0400262errout:
Eric Sandeendad0bab2009-06-26 13:57:39 -0500263 if (out_file && (out_file != stdout))
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000264 fclose(out_file);
265
266 return;
Theodore Ts'o9b9a7802005-12-10 21:50:30 -0500267
268print_usage:
Manish Katiyarc5977632008-10-01 19:55:10 -0400269 fprintf(stderr, "%s: Usage: logdump [-acs] [-b<block>] [-i<filespec>]\n\t"
Theodore Ts'o9b9a7802005-12-10 21:50:30 -0500270 "[-f<journal_file>] [output_file]\n", argv[0]);
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000271}
272
273
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400274static int read_journal_block(const char *cmd, struct journal_source *source,
Theodore Ts'o5e4f0702001-06-01 15:36:05 +0000275 off_t offset, char *buf, int size,
276 unsigned int *got)
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000277{
278 int retval;
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400279
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000280 if (source->where == JOURNAL_IS_EXTERNAL) {
Theodore Ts'o4bb0c042001-06-01 15:22:38 +0000281 if (lseek(source->fd, offset, SEEK_SET) < 0) {
282 retval = errno;
283 com_err(cmd, retval, "while seeking in reading journal");
284 return retval;
285 }
286 retval = read(source->fd, buf, size);
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000287 if (retval >= 0) {
288 *got = retval;
289 retval = 0;
Theodore Ts'o5faba3a2001-08-12 03:38:51 -0400290 } else
291 retval = errno;
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000292 } else {
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400293 retval = ext2fs_file_lseek(source->file, offset,
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000294 EXT2_SEEK_SET, NULL);
295 if (retval) {
296 com_err(cmd, retval, "while seeking in reading journal");
297 return retval;
298 }
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400299
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000300 retval = ext2fs_file_read(source->file, buf, size, got);
301 }
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400302
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000303 if (retval)
Manish Katiyara5bde792009-03-08 23:45:31 +0530304 com_err(cmd, retval, "while reading journal");
Theodore Ts'o54434922003-12-07 01:28:50 -0500305 else if (*got != (unsigned int) size) {
Manish Katiyara5bde792009-03-08 23:45:31 +0530306 com_err(cmd, 0, "short read (read %d, expected %d) "
307 "while reading journal", *got, size);
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000308 retval = -1;
309 }
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400310
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000311 return retval;
312}
313
Theodore Ts'o5e4f0702001-06-01 15:36:05 +0000314static const char *type_to_name(int btype)
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000315{
316 switch (btype) {
317 case JFS_DESCRIPTOR_BLOCK:
318 return "descriptor block";
319 case JFS_COMMIT_BLOCK:
320 return "commit block";
321 case JFS_SUPERBLOCK_V1:
322 return "V1 superblock";
323 case JFS_SUPERBLOCK_V2:
324 return "V2 superblock";
325 case JFS_REVOKE_BLOCK:
326 return "revoke table";
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000327 }
328 return "unrecognised type";
329}
330
331
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400332static void dump_journal(char *cmdname, FILE *out_file,
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000333 struct journal_source *source)
334{
Theodore Ts'o5faba3a2001-08-12 03:38:51 -0400335 struct ext2_super_block *sb;
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000336 char jsb_buffer[1024];
337 char buf[8192];
338 journal_superblock_t *jsb;
Theodore Ts'o54434922003-12-07 01:28:50 -0500339 unsigned int blocksize = 1024;
Theodore Ts'o5e4f0702001-06-01 15:36:05 +0000340 unsigned int got;
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000341 int retval;
342 __u32 magic, sequence, blocktype;
343 journal_header_t *header;
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400344
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000345 tid_t transaction;
Theodore Ts'o5faba3a2001-08-12 03:38:51 -0400346 unsigned int blocknr = 0;
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400347
Theodore Ts'o5faba3a2001-08-12 03:38:51 -0400348 /* First, check to see if there's an ext2 superblock header */
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400349 retval = read_journal_block(cmdname, source, 0,
Theodore Ts'o5faba3a2001-08-12 03:38:51 -0400350 buf, 2048, &got);
351 if (retval)
352 return;
353
354 jsb = (journal_superblock_t *) buf;
355 sb = (struct ext2_super_block *) (buf+1024);
Theodore Ts'o2eae0932007-08-11 02:57:31 -0400356#ifdef WORDS_BIGENDIAN
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400357 if (sb->s_magic == ext2fs_swab16(EXT2_SUPER_MAGIC))
Theodore Ts'o5faba3a2001-08-12 03:38:51 -0400358 ext2fs_swap_super(sb);
Stephen Tweedieff63f262001-09-27 15:48:56 +0100359#endif
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400360
Theodore Ts'o5faba3a2001-08-12 03:38:51 -0400361 if ((be32_to_cpu(jsb->s_header.h_magic) != JFS_MAGIC_NUMBER) &&
362 (sb->s_magic == EXT2_SUPER_MAGIC) &&
363 (sb->s_feature_incompat & EXT3_FEATURE_INCOMPAT_JOURNAL_DEV)) {
364 blocksize = EXT2_BLOCK_SIZE(sb);
365 blocknr = (blocksize == 1024) ? 2 : 1;
Theodore Ts'o4ea7bd02001-12-16 23:23:37 -0500366 uuid_unparse(sb->s_uuid, jsb_buffer);
Theodore Ts'o5faba3a2001-08-12 03:38:51 -0400367 fprintf(out_file, "Ext2 superblock header found.\n");
368 if (dump_all) {
369 fprintf(out_file, "\tuuid=%s\n", jsb_buffer);
370 fprintf(out_file, "\tblocksize=%d\n", blocksize);
Valerie Clement5d38ef12007-08-30 17:33:40 +0200371 fprintf(out_file, "\tjournal data size %lu\n",
JP Abgralle0ed7402014-03-19 19:08:39 -0700372 (unsigned long) ext2fs_blocks_count(sb));
Theodore Ts'o5faba3a2001-08-12 03:38:51 -0400373 }
374 }
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400375
Theodore Ts'o5faba3a2001-08-12 03:38:51 -0400376 /* Next, read the journal superblock */
377
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400378 retval = read_journal_block(cmdname, source, blocknr*blocksize,
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000379 jsb_buffer, 1024, &got);
380 if (retval)
381 return;
Theodore Ts'o5faba3a2001-08-12 03:38:51 -0400382
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000383 jsb = (journal_superblock_t *) jsb_buffer;
Theodore Ts'o5faba3a2001-08-12 03:38:51 -0400384 if (be32_to_cpu(jsb->s_header.h_magic) != JFS_MAGIC_NUMBER) {
385 fprintf(out_file,
386 "Journal superblock magic number invalid!\n");
387 return;
388 }
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000389 blocksize = be32_to_cpu(jsb->s_blocksize);
390 transaction = be32_to_cpu(jsb->s_sequence);
391 blocknr = be32_to_cpu(jsb->s_start);
392
393 fprintf(out_file, "Journal starts at block %u, transaction %u\n",
394 blocknr, transaction);
395
396 if (!blocknr)
397 /* Empty journal, nothing to do. */
398 return;
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400399
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000400 while (1) {
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400401 retval = read_journal_block(cmdname, source,
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000402 blocknr*blocksize, buf,
403 blocksize, &got);
404 if (retval || got != blocksize)
405 return;
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400406
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000407 header = (journal_header_t *) buf;
408
409 magic = be32_to_cpu(header->h_magic);
410 sequence = be32_to_cpu(header->h_sequence);
411 blocktype = be32_to_cpu(header->h_blocktype);
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400412
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000413 if (magic != JFS_MAGIC_NUMBER) {
414 fprintf (out_file, "No magic number at block %u: "
415 "end of journal.\n", blocknr);
416 return;
417 }
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400418
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000419 if (sequence != transaction) {
420 fprintf (out_file, "Found sequence %u (not %u) at "
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400421 "block %u: end of journal.\n",
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000422 sequence, transaction, blocknr);
423 return;
424 }
425
426 if (dump_descriptors) {
427 fprintf (out_file, "Found expected sequence %u, "
428 "type %u (%s) at block %u\n",
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400429 sequence, blocktype,
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000430 type_to_name(blocktype), blocknr);
431 }
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400432
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000433 switch (blocktype) {
434 case JFS_DESCRIPTOR_BLOCK:
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400435 dump_descriptor_block(out_file, source, buf, jsb,
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000436 &blocknr, blocksize,
437 transaction);
438 continue;
439
440 case JFS_COMMIT_BLOCK:
441 transaction++;
442 blocknr++;
443 WRAP(jsb, blocknr);
444 continue;
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400445
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000446 case JFS_REVOKE_BLOCK:
447 dump_revoke_block(out_file, buf, jsb,
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400448 blocknr, blocksize,
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000449 transaction);
450 blocknr++;
451 WRAP(jsb, blocknr);
452 continue;
453
454 default:
455 fprintf (out_file, "Unexpected block type %u at "
456 "block %u.\n", blocktype, blocknr);
457 return;
458 }
459 }
460}
461
462
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400463static void dump_descriptor_block(FILE *out_file,
464 struct journal_source *source,
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000465 char *buf,
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400466 journal_superblock_t *jsb,
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000467 unsigned int *blockp, int blocksize,
468 tid_t transaction)
469{
Theodore Ts'o98446d72009-01-18 22:48:16 -0500470 int offset, tag_size = JBD_TAG_SIZE32;
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000471 char *tagp;
472 journal_block_tag_t *tag;
473 unsigned int blocknr;
474 __u32 tag_block;
475 __u32 tag_flags;
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400476
Theodore Ts'o98446d72009-01-18 22:48:16 -0500477 if (be32_to_cpu(jsb->s_feature_incompat) & JFS_FEATURE_INCOMPAT_64BIT)
478 tag_size = JBD_TAG_SIZE64;
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000479
480 offset = sizeof(journal_header_t);
481 blocknr = *blockp;
482
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400483 if (dump_all)
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000484 fprintf(out_file, "Dumping descriptor block, sequence %u, at "
485 "block %u:\n", transaction, blocknr);
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400486
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000487 ++blocknr;
488 WRAP(jsb, blocknr);
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400489
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000490 do {
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400491 /* Work out the location of the current tag, and skip to
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000492 * the next one... */
493 tagp = &buf[offset];
494 tag = (journal_block_tag_t *) tagp;
Theodore Ts'o98446d72009-01-18 22:48:16 -0500495 offset += tag_size;
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000496
497 /* ... and if we have gone too far, then we've reached the
498 end of this block. */
499 if (offset > blocksize)
500 break;
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400501
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000502 tag_block = be32_to_cpu(tag->t_blocknr);
503 tag_flags = be32_to_cpu(tag->t_flags);
504
505 if (!(tag_flags & JFS_FLAG_SAME_UUID))
506 offset += 16;
507
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400508 dump_metadata_block(out_file, source, jsb,
Theodore Ts'o98446d72009-01-18 22:48:16 -0500509 blocknr, tag_block, tag_flags, blocksize,
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000510 transaction);
511
512 ++blocknr;
513 WRAP(jsb, blocknr);
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400514
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000515 } while (!(tag_flags & JFS_FLAG_LAST_TAG));
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400516
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000517 *blockp = blocknr;
518}
519
520
521static void dump_revoke_block(FILE *out_file, char *buf,
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400522 journal_superblock_t *jsb EXT2FS_ATTR((unused)),
523 unsigned int blocknr,
Theodore Ts'o54434922003-12-07 01:28:50 -0500524 int blocksize EXT2FS_ATTR((unused)),
525 tid_t transaction)
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000526{
527 int offset, max;
528 journal_revoke_header_t *header;
529 unsigned int *entry, rblock;
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400530
531 if (dump_all)
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000532 fprintf(out_file, "Dumping revoke block, sequence %u, at "
533 "block %u:\n", transaction, blocknr);
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400534
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000535 header = (journal_revoke_header_t *) buf;
536 offset = sizeof(journal_revoke_header_t);
537 max = be32_to_cpu(header->r_count);
538
539 while (offset < max) {
540 entry = (unsigned int *) (buf + offset);
541 rblock = be32_to_cpu(*entry);
542 if (dump_all || rblock == block_to_dump) {
543 fprintf(out_file, " Revoke FS block %u", rblock);
544 if (dump_all)
545 fprintf(out_file, "\n");
546 else
547 fprintf(out_file," at block %u, sequence %u\n",
548 blocknr, transaction);
549 }
550 offset += 4;
551 }
552}
553
554
555static void show_extent(FILE *out_file, int start_extent, int end_extent,
556 __u32 first_block)
557{
558 if (start_extent >= 0 && first_block != 0)
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400559 fprintf(out_file, "(%d+%u): %u ",
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000560 start_extent, end_extent-start_extent, first_block);
561}
562
Theodore Ts'o5e4f0702001-06-01 15:36:05 +0000563static void show_indirect(FILE *out_file, const char *name, __u32 where)
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000564{
565 if (where)
566 fprintf(out_file, "(%s): %u ", name, where);
567}
568
569
570static void dump_metadata_block(FILE *out_file, struct journal_source *source,
Theodore Ts'o54434922003-12-07 01:28:50 -0500571 journal_superblock_t *jsb EXT2FS_ATTR((unused)),
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400572 unsigned int log_blocknr,
573 unsigned int fs_blocknr,
Theodore Ts'o98446d72009-01-18 22:48:16 -0500574 unsigned int log_tag_flags,
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000575 int blocksize,
576 tid_t transaction)
577{
Theodore Ts'o5e4f0702001-06-01 15:36:05 +0000578 unsigned int got;
579 int retval;
580 char buf[8192];
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400581
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000582 if (!(dump_all
583 || (fs_blocknr == block_to_dump)
584 || (fs_blocknr == inode_block_to_dump)
585 || (fs_blocknr == bitmap_to_dump)))
586 return;
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400587
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000588 fprintf(out_file, " FS block %u logged at ", fs_blocknr);
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400589 if (!dump_all)
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000590 fprintf(out_file, "sequence %u, ", transaction);
Theodore Ts'o98446d72009-01-18 22:48:16 -0500591 fprintf(out_file, "journal block %u (flags 0x%x)\n", log_blocknr,
592 log_tag_flags);
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400593
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000594 /* There are two major special cases to parse:
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400595 *
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000596 * If this block is a block
597 * bitmap block, we need to give it special treatment so that we
598 * can log any allocates and deallocates which affect the
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400599 * block_to_dump query block.
600 *
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000601 * If the block is an inode block for the inode being searched
602 * for, then we need to dump the contents of that inode
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400603 * structure symbolically.
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000604 */
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400605
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000606 if (!(dump_contents && dump_all)
607 && fs_blocknr != block_to_dump
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400608 && fs_blocknr != bitmap_to_dump
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000609 && fs_blocknr != inode_block_to_dump)
610 return;
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400611
612 retval = read_journal_block("logdump", source,
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000613 blocksize * log_blocknr,
614 buf, blocksize, &got);
615 if (retval)
616 return;
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400617
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000618 if (fs_blocknr == bitmap_to_dump) {
619 struct ext2_super_block *super;
620 int offset;
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400621
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000622 super = current_fs->super;
Theodore Ts'ode2c4772010-03-14 19:02:57 -0400623 offset = ((block_to_dump - super->s_first_data_block) %
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000624 super->s_blocks_per_group);
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400625
JP Abgralle0ed7402014-03-19 19:08:39 -0700626 fprintf(out_file, " (block bitmap for block %llu: "
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400627 "block is %s)\n",
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000628 block_to_dump,
629 ext2fs_test_bit(offset, buf) ? "SET" : "CLEAR");
630 }
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400631
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000632 if (fs_blocknr == inode_block_to_dump) {
633 struct ext2_inode *inode;
634 int first, prev, this, start_extent, i;
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400635
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000636 fprintf(out_file, " (inode block for inode %u):\n",
637 inode_to_dump);
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400638
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000639 inode = (struct ext2_inode *) (buf + inode_offset_to_dump);
640 internal_dump_inode(out_file, " ", inode_to_dump, inode, 0);
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400641
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000642 /* Dump out the direct/indirect blocks here:
643 * internal_dump_inode can only dump them from the main
644 * on-disk inode, not from the journaled copy of the
645 * inode. */
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400646
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000647 fprintf (out_file, " Blocks: ");
Theodore Ts'o5e4f0702001-06-01 15:36:05 +0000648 first = prev = start_extent = -1;
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000649
650 for (i=0; i<EXT2_NDIR_BLOCKS; i++) {
651 this = inode->i_block[i];
652 if (start_extent >= 0 && this == prev+1) {
653 prev = this;
654 continue;
655 } else {
656 show_extent(out_file, start_extent, i, first);
657 start_extent = i;
658 first = prev = this;
659 }
660 }
661 show_extent(out_file, start_extent, i, first);
662 show_indirect(out_file, "IND", inode->i_block[i++]);
663 show_indirect(out_file, "DIND", inode->i_block[i++]);
664 show_indirect(out_file, "TIND", inode->i_block[i++]);
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400665
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000666 fprintf(out_file, "\n");
667 }
668
669 if (dump_contents)
670 do_hexdump(out_file, buf, blocksize);
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400671
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000672}
673
674static void do_hexdump (FILE *out_file, char *buf, int blocksize)
675{
676 int i,j;
677 int *intp;
678 char *charp;
679 unsigned char c;
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400680
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000681 intp = (int *) buf;
682 charp = (char *) buf;
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400683
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000684 for (i=0; i<blocksize; i+=16) {
685 fprintf(out_file, " %04x: ", i);
686 for (j=0; j<16; j+=4)
687 fprintf(out_file, "%08x ", *intp++);
688 for (j=0; j<16; j++) {
689 c = *charp++;
690 if (c < ' ' || c >= 127)
691 c = '.';
692 fprintf(out_file, "%c", c);
693 }
694 fprintf(out_file, "\n");
695 }
696}
697