blob: d2c3b301ac3e37b9657cd02e996a91136f05953a [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
Theodore Ts'od1154eb2011-09-18 17:34:37 -040012#include "config.h"
Theodore Ts'oda81e3f2001-03-29 20:49:58 +000013#include <stdio.h>
14#include <unistd.h>
15#include <stdlib.h>
16#include <ctype.h>
17#include <string.h>
18#include <time.h>
19#ifdef HAVE_ERRNO_H
20#include <errno.h>
21#endif
22#include <sys/types.h>
23#include <sys/stat.h>
24#include <fcntl.h>
25#include <utime.h>
26#ifdef HAVE_GETOPT_H
27#include <getopt.h>
Theodore Ts'oefc6f622008-08-27 23:07:54 -040028#else
Theodore Ts'oda81e3f2001-03-29 20:49:58 +000029extern int optind;
30extern char *optarg;
31#endif
Theodore Ts'oda81e3f2001-03-29 20:49:58 +000032
33#include "debugfs.h"
Theodore Ts'of3640932003-03-01 19:47:44 -050034#include "blkid/blkid.h"
Theodore Ts'oda81e3f2001-03-29 20:49:58 +000035#include "jfs_user.h"
Theodore Ts'o4ea7bd02001-12-16 23:23:37 -050036#include <uuid/uuid.h>
Theodore Ts'oda81e3f2001-03-29 20:49:58 +000037
38enum journal_location {JOURNAL_IS_INTERNAL, JOURNAL_IS_EXTERNAL};
39
Darrick J. Wong4dbfd792013-10-07 09:51:48 -040040#define ANY_BLOCK ((blk64_t) -1)
Theodore Ts'o54434922003-12-07 01:28:50 -050041
Theodore Ts'of4041672013-12-16 18:56:36 -050042static int dump_all, dump_contents, dump_descriptors;
43static blk64_t block_to_dump, bitmap_to_dump, inode_block_to_dump;
44static unsigned int group_to_dump, inode_offset_to_dump;
45static ext2_ino_t inode_to_dump;
Theodore Ts'oda81e3f2001-03-29 20:49:58 +000046
Theodore Ts'oefc6f622008-08-27 23:07:54 -040047struct journal_source
Theodore Ts'oda81e3f2001-03-29 20:49:58 +000048{
49 enum journal_location where;
50 int fd;
51 ext2_file_t file;
52};
53
54static void dump_journal(char *, FILE *, struct journal_source *);
55
56static void dump_descriptor_block(FILE *, struct journal_source *,
57 char *, journal_superblock_t *,
58 unsigned int *, int, tid_t);
59
60static void dump_revoke_block(FILE *, char *, journal_superblock_t *,
61 unsigned int, int, tid_t);
62
63static void dump_metadata_block(FILE *, struct journal_source *,
Theodore Ts'oefc6f622008-08-27 23:07:54 -040064 journal_superblock_t*,
Theodore Ts'o98446d72009-01-18 22:48:16 -050065 unsigned int, unsigned int, unsigned int,
66 int, tid_t);
Theodore Ts'oda81e3f2001-03-29 20:49:58 +000067
68static void do_hexdump (FILE *, char *, int);
69
70#define WRAP(jsb, blocknr) \
71 if (blocknr >= be32_to_cpu((jsb)->s_maxlen)) \
72 blocknr -= (be32_to_cpu((jsb)->s_maxlen) - \
73 be32_to_cpu((jsb)->s_first));
74
Theodore Ts'oda81e3f2001-03-29 20:49:58 +000075void do_logdump(int argc, char **argv)
76{
Theodore Ts'oda81e3f2001-03-29 20:49:58 +000077 int c;
Theodore Ts'oda81e3f2001-03-29 20:49:58 +000078 int retval;
79 char *out_fn;
80 FILE *out_file;
Theodore Ts'oefc6f622008-08-27 23:07:54 -040081
Theodore Ts'oda81e3f2001-03-29 20:49:58 +000082 char *inode_spec = NULL;
83 char *journal_fn = NULL;
84 int journal_fd = 0;
Theodore Ts'oa435ec32003-08-21 00:40:26 -040085 int use_sb = 0;
Theodore Ts'oda81e3f2001-03-29 20:49:58 +000086 ext2_ino_t journal_inum;
87 struct ext2_inode journal_inode;
88 ext2_file_t journal_file;
Theodore Ts'oda81e3f2001-03-29 20:49:58 +000089 char *tmp;
Theodore Ts'o5e4f0702001-06-01 15:36:05 +000090 struct journal_source journal_source;
Theodore Ts'of3640932003-03-01 19:47:44 -050091 struct ext2_super_block *es = NULL;
Theodore Ts'oefc6f622008-08-27 23:07:54 -040092
Manish Katiyarc5977632008-10-01 19:55:10 -040093 journal_source.where = JOURNAL_IS_INTERNAL;
Theodore Ts'o5e4f0702001-06-01 15:36:05 +000094 journal_source.fd = 0;
95 journal_source.file = 0;
Theodore Ts'oda81e3f2001-03-29 20:49:58 +000096 dump_all = 0;
97 dump_contents = 0;
98 dump_descriptors = 1;
Theodore Ts'o54434922003-12-07 01:28:50 -050099 block_to_dump = ANY_BLOCK;
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000100 bitmap_to_dump = -1;
Theodore Ts'o54434922003-12-07 01:28:50 -0500101 inode_block_to_dump = ANY_BLOCK;
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000102 inode_to_dump = -1;
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400103
Theodore Ts'o88494bb2003-05-13 23:03:43 -0400104 reset_getopt();
Theodore Ts'oa435ec32003-08-21 00:40:26 -0400105 while ((c = getopt (argc, argv, "ab:ci:f:s")) != EOF) {
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000106 switch (c) {
107 case 'a':
108 dump_all++;
109 break;
110 case 'b':
111 block_to_dump = strtoul(optarg, &tmp, 0);
112 if (*tmp) {
113 com_err(argv[0], 0,
114 "Bad block number - %s", optarg);
115 return;
116 }
117 dump_descriptors = 0;
118 break;
119 case 'c':
120 dump_contents++;
121 break;
122 case 'f':
123 journal_fn = optarg;
124 break;
125 case 'i':
126 inode_spec = optarg;
127 dump_descriptors = 0;
128 break;
Theodore Ts'oa435ec32003-08-21 00:40:26 -0400129 case 's':
130 use_sb++;
131 break;
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000132 default:
Theodore Ts'o9b9a7802005-12-10 21:50:30 -0500133 goto print_usage;
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000134 }
135 }
136 if (optind != argc && optind != argc-1) {
Theodore Ts'o9b9a7802005-12-10 21:50:30 -0500137 goto print_usage;
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000138 }
139
Theodore Ts'of3640932003-03-01 19:47:44 -0500140 if (current_fs)
141 es = current_fs->super;
142
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000143 if (inode_spec) {
144 int inode_group, group_offset, inodes_per_block;
Theodore Ts'of3640932003-03-01 19:47:44 -0500145
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000146 if (check_fs_open(argv[0]))
147 return;
148
149 inode_to_dump = string_to_inode(inode_spec);
150 if (!inode_to_dump)
151 return;
152
153 inode_group = ((inode_to_dump - 1)
Theodore Ts'of3640932003-03-01 19:47:44 -0500154 / es->s_inodes_per_group);
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000155 group_offset = ((inode_to_dump - 1)
Theodore Ts'of3640932003-03-01 19:47:44 -0500156 % es->s_inodes_per_group);
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400157 inodes_per_block = (current_fs->blocksize
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000158 / sizeof(struct ext2_inode));
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400159
160 inode_block_to_dump =
Valerie Aurora Henson048786d2009-09-07 22:46:17 -0400161 ext2fs_inode_table_loc(current_fs, inode_group) +
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000162 (group_offset / inodes_per_block);
163 inode_offset_to_dump = ((group_offset % inodes_per_block)
164 * sizeof(struct ext2_inode));
Darrick J. Wong4dbfd792013-10-07 09:51:48 -0400165 printf("Inode %u is at group %u, block %llu, offset %u\n",
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000166 inode_to_dump, inode_group,
167 inode_block_to_dump, inode_offset_to_dump);
168 }
169
170 if (optind == argc) {
171 out_file = stdout;
172 } else {
173 out_fn = argv[optind];
174 out_file = fopen(out_fn, "w");
Brian Behlendorf0bed54f2007-03-23 23:01:09 -0400175 if (!out_file) {
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000176 com_err(argv[0], errno, "while opening %s for logdump",
177 out_fn);
Brian Behlendorf0bed54f2007-03-23 23:01:09 -0400178 goto errout;
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000179 }
180 }
181
Theodore Ts'o54434922003-12-07 01:28:50 -0500182 if (block_to_dump != ANY_BLOCK && current_fs != NULL) {
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400183 group_to_dump = ((block_to_dump -
Theodore Ts'of3640932003-03-01 19:47:44 -0500184 es->s_first_data_block)
185 / es->s_blocks_per_group);
Valerie Aurora Henson048786d2009-09-07 22:46:17 -0400186 bitmap_to_dump = ext2fs_block_bitmap_loc(current_fs, group_to_dump);
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000187 }
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000188
Theodore Ts'o5faba3a2001-08-12 03:38:51 -0400189 if (!journal_fn && check_fs_open(argv[0]))
Brian Behlendorf0bed54f2007-03-23 23:01:09 -0400190 goto errout;
Theodore Ts'o5faba3a2001-08-12 03:38:51 -0400191
192 if (journal_fn) {
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000193 /* Set up to read journal from a regular file somewhere */
194 journal_fd = open(journal_fn, O_RDONLY, 0);
195 if (journal_fd < 0) {
196 com_err(argv[0], errno, "while opening %s for logdump",
197 journal_fn);
Brian Behlendorf0bed54f2007-03-23 23:01:09 -0400198 goto errout;
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000199 }
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400200
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000201 journal_source.where = JOURNAL_IS_EXTERNAL;
202 journal_source.fd = journal_fd;
Theodore Ts'of3640932003-03-01 19:47:44 -0500203 } else if ((journal_inum = es->s_journal_inum)) {
Theodore Ts'oa435ec32003-08-21 00:40:26 -0400204 if (use_sb) {
205 if (es->s_jnl_backup_type != EXT3_JNL_BACKUP_BLOCKS) {
206 com_err(argv[0], 0,
207 "no journal backup in super block\n");
Brian Behlendorf0bed54f2007-03-23 23:01:09 -0400208 goto errout;
Theodore Ts'oa435ec32003-08-21 00:40:26 -0400209 }
210 memset(&journal_inode, 0, sizeof(struct ext2_inode));
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400211 memcpy(&journal_inode.i_block[0], es->s_jnl_blocks,
Theodore Ts'oa435ec32003-08-21 00:40:26 -0400212 EXT2_N_BLOCKS*4);
Andreas Dilger931b58e2011-06-11 12:17:29 -0400213 journal_inode.i_size_high = es->s_jnl_blocks[15];
Theodore Ts'oa435ec32003-08-21 00:40:26 -0400214 journal_inode.i_size = es->s_jnl_blocks[16];
215 journal_inode.i_links_count = 1;
216 journal_inode.i_mode = LINUX_S_IFREG | 0600;
217 } else {
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400218 if (debugfs_read_inode(journal_inum, &journal_inode,
Theodore Ts'oa435ec32003-08-21 00:40:26 -0400219 argv[0]))
Brian Behlendorf0bed54f2007-03-23 23:01:09 -0400220 goto errout;
Theodore Ts'oa435ec32003-08-21 00:40:26 -0400221 }
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400222
Theodore Ts'oa435ec32003-08-21 00:40:26 -0400223 retval = ext2fs_file_open2(current_fs, journal_inum,
224 &journal_inode, 0, &journal_file);
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000225 if (retval) {
226 com_err(argv[0], retval, "while opening ext2 file");
Brian Behlendorf0bed54f2007-03-23 23:01:09 -0400227 goto errout;
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000228 }
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000229 journal_source.where = JOURNAL_IS_INTERNAL;
230 journal_source.file = journal_file;
Theodore Ts'of3640932003-03-01 19:47:44 -0500231 } else {
232 char uuid[37];
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400233
Theodore Ts'of3640932003-03-01 19:47:44 -0500234 uuid_unparse(es->s_journal_uuid, uuid);
235 journal_fn = blkid_get_devname(NULL, "UUID", uuid);
236 if (!journal_fn)
237 journal_fn = blkid_devno_to_devname(es->s_journal_dev);
238 if (!journal_fn) {
239 com_err(argv[0], 0, "filesystem has no journal");
Brian Behlendorf0bed54f2007-03-23 23:01:09 -0400240 goto errout;
Theodore Ts'of3640932003-03-01 19:47:44 -0500241 }
Theodore Ts'o5faba3a2001-08-12 03:38:51 -0400242 journal_fd = open(journal_fn, O_RDONLY, 0);
243 if (journal_fd < 0) {
244 com_err(argv[0], errno, "while opening %s for logdump",
245 journal_fn);
246 free(journal_fn);
Brian Behlendorf0bed54f2007-03-23 23:01:09 -0400247 goto errout;
Theodore Ts'o5faba3a2001-08-12 03:38:51 -0400248 }
249 fprintf(out_file, "Using external journal found at %s\n",
250 journal_fn);
251 free(journal_fn);
252 journal_source.where = JOURNAL_IS_EXTERNAL;
253 journal_source.fd = journal_fd;
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000254 }
255
256 dump_journal(argv[0], out_file, &journal_source);
257
258 if (journal_source.where == JOURNAL_IS_INTERNAL)
259 ext2fs_file_close(journal_file);
260 else
261 close(journal_fd);
262
Brian Behlendorf0bed54f2007-03-23 23:01:09 -0400263errout:
Eric Sandeendad0bab2009-06-26 13:57:39 -0500264 if (out_file && (out_file != stdout))
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000265 fclose(out_file);
266
267 return;
Theodore Ts'o9b9a7802005-12-10 21:50:30 -0500268
269print_usage:
Manish Katiyarc5977632008-10-01 19:55:10 -0400270 fprintf(stderr, "%s: Usage: logdump [-acs] [-b<block>] [-i<filespec>]\n\t"
Theodore Ts'o9b9a7802005-12-10 21:50:30 -0500271 "[-f<journal_file>] [output_file]\n", argv[0]);
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000272}
273
274
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400275static int read_journal_block(const char *cmd, struct journal_source *source,
Theodore Ts'ob34b94d2014-01-03 09:39:33 -0500276 off_t offset, char *buf, unsigned int size)
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000277{
278 int retval;
Theodore Ts'ob34b94d2014-01-03 09:39:33 -0500279 unsigned int got;
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400280
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000281 if (source->where == JOURNAL_IS_EXTERNAL) {
Theodore Ts'o4bb0c042001-06-01 15:22:38 +0000282 if (lseek(source->fd, offset, SEEK_SET) < 0) {
283 retval = errno;
Theodore Ts'ob34b94d2014-01-03 09:39:33 -0500284 goto seek_err;
Theodore Ts'o4bb0c042001-06-01 15:22:38 +0000285 }
286 retval = read(source->fd, buf, size);
Theodore Ts'ob34b94d2014-01-03 09:39:33 -0500287 if (retval < 0) {
Theodore Ts'o5faba3a2001-08-12 03:38:51 -0400288 retval = errno;
Theodore Ts'ob34b94d2014-01-03 09:39:33 -0500289 goto read_err;
290 }
291 got = retval;
292 retval = 0;
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000293 } else {
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400294 retval = ext2fs_file_lseek(source->file, offset,
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000295 EXT2_SEEK_SET, NULL);
296 if (retval) {
Theodore Ts'ob34b94d2014-01-03 09:39:33 -0500297 seek_err:
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000298 com_err(cmd, retval, "while seeking in reading journal");
299 return retval;
300 }
Theodore Ts'ob34b94d2014-01-03 09:39:33 -0500301 retval = ext2fs_file_read(source->file, buf, size, &got);
302 if (retval) {
303 read_err:
304 com_err(cmd, retval, "while reading journal");
305 return retval;
306 }
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000307 }
Theodore Ts'ob34b94d2014-01-03 09:39:33 -0500308 if (got != size) {
309 com_err(cmd, 0, "short read (read %u, expected %u) "
310 "while reading journal", got, size);
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000311 retval = -1;
312 }
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000313 return retval;
314}
315
Theodore Ts'o5e4f0702001-06-01 15:36:05 +0000316static const char *type_to_name(int btype)
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000317{
318 switch (btype) {
319 case JFS_DESCRIPTOR_BLOCK:
320 return "descriptor block";
321 case JFS_COMMIT_BLOCK:
322 return "commit block";
323 case JFS_SUPERBLOCK_V1:
324 return "V1 superblock";
325 case JFS_SUPERBLOCK_V2:
326 return "V2 superblock";
327 case JFS_REVOKE_BLOCK:
328 return "revoke table";
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000329 }
330 return "unrecognised type";
331}
332
333
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400334static void dump_journal(char *cmdname, FILE *out_file,
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000335 struct journal_source *source)
336{
Theodore Ts'o5faba3a2001-08-12 03:38:51 -0400337 struct ext2_super_block *sb;
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000338 char jsb_buffer[1024];
339 char buf[8192];
340 journal_superblock_t *jsb;
Theodore Ts'o54434922003-12-07 01:28:50 -0500341 unsigned int blocksize = 1024;
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000342 int retval;
343 __u32 magic, sequence, blocktype;
344 journal_header_t *header;
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400345
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000346 tid_t transaction;
Theodore Ts'o5faba3a2001-08-12 03:38:51 -0400347 unsigned int blocknr = 0;
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400348
Theodore Ts'o5faba3a2001-08-12 03:38:51 -0400349 /* First, check to see if there's an ext2 superblock header */
Theodore Ts'ob34b94d2014-01-03 09:39:33 -0500350 retval = read_journal_block(cmdname, source, 0, buf, 2048);
Theodore Ts'o5faba3a2001-08-12 03:38:51 -0400351 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",
Valerie Aurora Henson4efbac62009-09-07 20:46:34 -0400372 (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'ob34b94d2014-01-03 09:39:33 -0500379 jsb_buffer, 1024);
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000380 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,
Theodore Ts'ob34b94d2014-01-03 09:39:33 -0500403 blocksize);
404 if (retval)
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000405 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 int retval;
579 char buf[8192];
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400580
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000581 if (!(dump_all
582 || (fs_blocknr == block_to_dump)
583 || (fs_blocknr == inode_block_to_dump)
584 || (fs_blocknr == bitmap_to_dump)))
585 return;
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400586
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000587 fprintf(out_file, " FS block %u logged at ", fs_blocknr);
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400588 if (!dump_all)
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000589 fprintf(out_file, "sequence %u, ", transaction);
Theodore Ts'o98446d72009-01-18 22:48:16 -0500590 fprintf(out_file, "journal block %u (flags 0x%x)\n", log_blocknr,
591 log_tag_flags);
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400592
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000593 /* There are two major special cases to parse:
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400594 *
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000595 * If this block is a block
596 * bitmap block, we need to give it special treatment so that we
597 * can log any allocates and deallocates which affect the
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400598 * block_to_dump query block.
599 *
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000600 * If the block is an inode block for the inode being searched
601 * for, then we need to dump the contents of that inode
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400602 * structure symbolically.
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000603 */
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400604
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000605 if (!(dump_contents && dump_all)
606 && fs_blocknr != block_to_dump
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400607 && fs_blocknr != bitmap_to_dump
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000608 && fs_blocknr != inode_block_to_dump)
609 return;
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400610
611 retval = read_journal_block("logdump", source,
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000612 blocksize * log_blocknr,
Theodore Ts'ob34b94d2014-01-03 09:39:33 -0500613 buf, blocksize);
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000614 if (retval)
615 return;
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400616
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000617 if (fs_blocknr == bitmap_to_dump) {
618 struct ext2_super_block *super;
619 int offset;
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400620
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000621 super = current_fs->super;
Theodore Ts'ode2c4772010-03-14 19:02:57 -0400622 offset = ((block_to_dump - super->s_first_data_block) %
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000623 super->s_blocks_per_group);
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400624
Darrick J. Wong4dbfd792013-10-07 09:51:48 -0400625 fprintf(out_file, " (block bitmap for block %llu: "
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400626 "block is %s)\n",
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000627 block_to_dump,
628 ext2fs_test_bit(offset, buf) ? "SET" : "CLEAR");
629 }
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400630
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000631 if (fs_blocknr == inode_block_to_dump) {
632 struct ext2_inode *inode;
633 int first, prev, this, start_extent, i;
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400634
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000635 fprintf(out_file, " (inode block for inode %u):\n",
636 inode_to_dump);
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400637
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000638 inode = (struct ext2_inode *) (buf + inode_offset_to_dump);
639 internal_dump_inode(out_file, " ", inode_to_dump, inode, 0);
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400640
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000641 /* Dump out the direct/indirect blocks here:
642 * internal_dump_inode can only dump them from the main
643 * on-disk inode, not from the journaled copy of the
644 * inode. */
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400645
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000646 fprintf (out_file, " Blocks: ");
Theodore Ts'o5e4f0702001-06-01 15:36:05 +0000647 first = prev = start_extent = -1;
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000648
649 for (i=0; i<EXT2_NDIR_BLOCKS; i++) {
650 this = inode->i_block[i];
651 if (start_extent >= 0 && this == prev+1) {
652 prev = this;
653 continue;
654 } else {
655 show_extent(out_file, start_extent, i, first);
656 start_extent = i;
657 first = prev = this;
658 }
659 }
660 show_extent(out_file, start_extent, i, first);
661 show_indirect(out_file, "IND", inode->i_block[i++]);
662 show_indirect(out_file, "DIND", inode->i_block[i++]);
663 show_indirect(out_file, "TIND", inode->i_block[i++]);
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400664
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000665 fprintf(out_file, "\n");
666 }
667
668 if (dump_contents)
669 do_hexdump(out_file, buf, blocksize);
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400670
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000671}
672
673static void do_hexdump (FILE *out_file, char *buf, int blocksize)
674{
675 int i,j;
676 int *intp;
677 char *charp;
678 unsigned char c;
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400679
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000680 intp = (int *) buf;
681 charp = (char *) buf;
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400682
Theodore Ts'oda81e3f2001-03-29 20:49:58 +0000683 for (i=0; i<blocksize; i+=16) {
684 fprintf(out_file, " %04x: ", i);
685 for (j=0; j<16; j+=4)
686 fprintf(out_file, "%08x ", *intp++);
687 for (j=0; j<16; j++) {
688 c = *charp++;
689 if (c < ' ' || c >= 127)
690 c = '.';
691 fprintf(out_file, "%c", c);
692 }
693 fprintf(out_file, "\n");
694 }
695}
696