blob: c806ae21eec1edf65b70a7363218a8bead5589c7 [file] [log] [blame]
Theodore Ts'o17390c02000-07-07 04:13:21 +00001/*
2 * journal.c --- code for handling the "ext3" journal
Theodore Ts'o3b5386d2000-08-14 14:25:19 +00003 *
4 * Copyright (C) 2000 Andreas Dilger
5 * Copyright (C) 2000 Theodore Ts'o
6 *
7 * Parts of the code are based on fs/jfs/journal.c by Stephen C. Tweedie
8 * Copyright (C) 1999 Red Hat Software
9 *
10 * This file may be redistributed under the terms of the
11 * GNU General Public License version 2 or at your discretion
12 * any later version.
Theodore Ts'o17390c02000-07-07 04:13:21 +000013 */
14
Theodore Ts'o3b5386d2000-08-14 14:25:19 +000015#ifdef HAVE_SYS_MOUNT_H
Matthias Andreeb34cbdd2003-12-28 18:21:26 +010016#include <sys/param.h>
Theodore Ts'o3b5386d2000-08-14 14:25:19 +000017#include <sys/mount.h>
18#define MNT_FL (MS_MGC_VAL | MS_RDONLY)
19#endif
20#ifdef HAVE_SYS_STAT_H
21#include <sys/stat.h>
22#endif
Theodore Ts'o17390c02000-07-07 04:13:21 +000023
Theodore Ts'o53ef44c2001-01-06 05:55:58 +000024#define E2FSCK_INCLUDE_INLINE_FUNCS
Theodore Ts'o0e8a9562000-12-09 06:41:25 +000025#include "jfs_user.h"
Theodore Ts'o3b5386d2000-08-14 14:25:19 +000026#include "problem.h"
27#include "uuid/uuid.h"
Theodore Ts'o17390c02000-07-07 04:13:21 +000028
Theodore Ts'o8cf93332001-12-16 02:23:36 -050029#ifdef CONFIG_JBD_DEBUG /* Enabled by configure --enable-jfs-debug */
Theodore Ts'o3b5386d2000-08-14 14:25:19 +000030static int bh_count = 0;
Theodore Ts'o3b5386d2000-08-14 14:25:19 +000031#endif
32
Theodore Ts'od1a21822002-02-22 00:17:59 -050033/*
34 * Define USE_INODE_IO to use the inode_io.c / fileio.c codepaths.
35 * This creates a larger static binary, and a smaller binary using
36 * shared libraries. It's also probably slightly less CPU-efficient,
37 * which is why it's not on by default. But, it's a good way of
38 * testing the functions in inode_io.c and fileio.c.
39 */
40#undef USE_INODE_IO
41
Theodore Ts'ob2f93192000-12-30 20:33:42 +000042/* Kernel compatibility functions for handling the journal. These allow us
43 * to use the recovery.c file virtually unchanged from the kernel, so we
44 * don't have to do much to keep kernel and user recovery in sync.
45 */
JP Abgralle0ed7402014-03-19 19:08:39 -070046int journal_bmap(journal_t *journal, blk64_t block, unsigned long long *phys)
Theodore Ts'o3b5386d2000-08-14 14:25:19 +000047{
Theodore Ts'od1a21822002-02-22 00:17:59 -050048#ifdef USE_INODE_IO
49 *phys = block;
50 return 0;
51#else
Theodore Ts'o8cf93332001-12-16 02:23:36 -050052 struct inode *inode = journal->j_inode;
53 errcode_t retval;
JP Abgralle0ed7402014-03-19 19:08:39 -070054 blk64_t pblk;
Theodore Ts'o3b5386d2000-08-14 14:25:19 +000055
Theodore Ts'o8cf93332001-12-16 02:23:36 -050056 if (!inode) {
57 *phys = block;
58 return 0;
59 }
Theodore Ts'o3b5386d2000-08-14 14:25:19 +000060
JP Abgralle0ed7402014-03-19 19:08:39 -070061 retval= ext2fs_bmap2(inode->i_ctx->fs, inode->i_ino,
62 &inode->i_ext2, NULL, 0, block, 0, &pblk);
Theodore Ts'o8cf93332001-12-16 02:23:36 -050063 *phys = pblk;
JP Abgralle0ed7402014-03-19 19:08:39 -070064 return (int) retval;
Theodore Ts'od1a21822002-02-22 00:17:59 -050065#endif
Theodore Ts'o3b5386d2000-08-14 14:25:19 +000066}
67
JP Abgralle0ed7402014-03-19 19:08:39 -070068struct buffer_head *getblk(kdev_t kdev, blk64_t blocknr, int blocksize)
Theodore Ts'o3b5386d2000-08-14 14:25:19 +000069{
70 struct buffer_head *bh;
Theodore Ts'oe35d5482009-01-02 18:14:42 -050071 int bufsize = sizeof(*bh) + kdev->k_ctx->fs->blocksize -
72 sizeof(bh->b_data);
Theodore Ts'o3b5386d2000-08-14 14:25:19 +000073
Theodore Ts'oe35d5482009-01-02 18:14:42 -050074 bh = e2fsck_allocate_memory(kdev->k_ctx, bufsize, "block buffer");
Theodore Ts'o3b5386d2000-08-14 14:25:19 +000075 if (!bh)
76 return NULL;
77
Theodore Ts'o185c4ae2008-05-23 01:00:19 -040078#ifdef CONFIG_JBD_DEBUG
79 if (journal_enable_debug >= 3)
80 bh_count++;
81#endif
JP Abgralle0ed7402014-03-19 19:08:39 -070082 jfs_debug(4, "getblk for block %llu (%d bytes)(total %d)\n",
83 (unsigned long long) blocknr, blocksize, bh_count);
Theodore Ts'o3b5386d2000-08-14 14:25:19 +000084
Theodore Ts'o8cf93332001-12-16 02:23:36 -050085 bh->b_ctx = kdev->k_ctx;
86 if (kdev->k_dev == K_DEV_FS)
87 bh->b_io = kdev->k_ctx->fs->io;
Theodore Ts'oefc6f622008-08-27 23:07:54 -040088 else
Theodore Ts'o8cf93332001-12-16 02:23:36 -050089 bh->b_io = kdev->k_ctx->journal_io;
Theodore Ts'o3b5386d2000-08-14 14:25:19 +000090 bh->b_size = blocksize;
91 bh->b_blocknr = blocknr;
92
93 return bh;
94}
95
Theodore Ts'o93effaa2004-05-26 20:58:45 -040096void sync_blockdev(kdev_t kdev)
97{
98 io_channel io;
99
100 if (kdev->k_dev == K_DEV_FS)
101 io = kdev->k_ctx->fs->io;
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400102 else
Theodore Ts'o93effaa2004-05-26 20:58:45 -0400103 io = kdev->k_ctx->journal_io;
104
105 io_channel_flush(io);
106}
107
Theodore Ts'o0e8a9562000-12-09 06:41:25 +0000108void ll_rw_block(int rw, int nr, struct buffer_head *bhp[])
Theodore Ts'o3b5386d2000-08-14 14:25:19 +0000109{
JP Abgralle0ed7402014-03-19 19:08:39 -0700110 errcode_t retval;
Theodore Ts'o0e8a9562000-12-09 06:41:25 +0000111 struct buffer_head *bh;
Theodore Ts'o3b5386d2000-08-14 14:25:19 +0000112
Theodore Ts'o0e8a9562000-12-09 06:41:25 +0000113 for (; nr > 0; --nr) {
114 bh = *bhp++;
115 if (rw == READ && !bh->b_uptodate) {
JP Abgralle0ed7402014-03-19 19:08:39 -0700116 jfs_debug(3, "reading block %llu/%p\n",
117 bh->b_blocknr, (void *) bh);
118 retval = io_channel_read_blk64(bh->b_io,
Theodore Ts'o0e8a9562000-12-09 06:41:25 +0000119 bh->b_blocknr,
120 1, bh->b_data);
121 if (retval) {
122 com_err(bh->b_ctx->device_name, retval,
JP Abgralle0ed7402014-03-19 19:08:39 -0700123 "while reading block %llu\n",
124 bh->b_blocknr);
125 bh->b_err = (int) retval;
Theodore Ts'o0e8a9562000-12-09 06:41:25 +0000126 continue;
127 }
128 bh->b_uptodate = 1;
129 } else if (rw == WRITE && bh->b_dirty) {
JP Abgralle0ed7402014-03-19 19:08:39 -0700130 jfs_debug(3, "writing block %llu/%p\n",
131 bh->b_blocknr,
132 (void *) bh);
133 retval = io_channel_write_blk64(bh->b_io,
Theodore Ts'o0e8a9562000-12-09 06:41:25 +0000134 bh->b_blocknr,
135 1, bh->b_data);
136 if (retval) {
137 com_err(bh->b_ctx->device_name, retval,
JP Abgralle0ed7402014-03-19 19:08:39 -0700138 "while writing block %llu\n",
139 bh->b_blocknr);
140 bh->b_err = (int) retval;
Theodore Ts'o0e8a9562000-12-09 06:41:25 +0000141 continue;
142 }
143 bh->b_dirty = 0;
144 bh->b_uptodate = 1;
Matthias Andreeb969b1b2003-12-28 13:04:35 +0100145 } else {
JP Abgralle0ed7402014-03-19 19:08:39 -0700146 jfs_debug(3, "no-op %s for block %llu\n",
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400147 rw == READ ? "read" : "write",
JP Abgralle0ed7402014-03-19 19:08:39 -0700148 bh->b_blocknr);
Matthias Andreeb969b1b2003-12-28 13:04:35 +0100149 }
Theodore Ts'o0e8a9562000-12-09 06:41:25 +0000150 }
Theodore Ts'o3b5386d2000-08-14 14:25:19 +0000151}
152
Theodore Ts'o8cf93332001-12-16 02:23:36 -0500153void mark_buffer_dirty(struct buffer_head *bh)
Theodore Ts'o3b5386d2000-08-14 14:25:19 +0000154{
Theodore Ts'o8cf93332001-12-16 02:23:36 -0500155 bh->b_dirty = 1;
Theodore Ts'o3b5386d2000-08-14 14:25:19 +0000156}
157
Theodore Ts'o6a6d3d42001-01-12 21:11:24 +0000158static void mark_buffer_clean(struct buffer_head * bh)
159{
160 bh->b_dirty = 0;
161}
162
Theodore Ts'o3b5386d2000-08-14 14:25:19 +0000163void brelse(struct buffer_head *bh)
164{
165 if (bh->b_dirty)
Theodore Ts'o0e8a9562000-12-09 06:41:25 +0000166 ll_rw_block(WRITE, 1, &bh);
JP Abgralle0ed7402014-03-19 19:08:39 -0700167 jfs_debug(3, "freeing block %llu/%p (total %d)\n",
168 bh->b_blocknr, (void *) bh, --bh_count);
Theodore Ts'oc4e3d3f2003-08-01 09:41:07 -0400169 ext2fs_free_mem(&bh);
Theodore Ts'o3b5386d2000-08-14 14:25:19 +0000170}
171
172int buffer_uptodate(struct buffer_head *bh)
173{
174 return bh->b_uptodate;
175}
176
Theodore Ts'o15986f72001-03-29 19:22:16 +0000177void mark_buffer_uptodate(struct buffer_head *bh, int val)
178{
179 bh->b_uptodate = val;
180}
181
Theodore Ts'o3b5386d2000-08-14 14:25:19 +0000182void wait_on_buffer(struct buffer_head *bh)
183{
184 if (!bh->b_uptodate)
Theodore Ts'o0e8a9562000-12-09 06:41:25 +0000185 ll_rw_block(READ, 1, &bh);
Theodore Ts'o3b5386d2000-08-14 14:25:19 +0000186}
187
Theodore Ts'o80bfaa32000-08-18 15:08:37 +0000188
Theodore Ts'o3b5386d2000-08-14 14:25:19 +0000189static void e2fsck_clear_recover(e2fsck_t ctx, int error)
190{
Theodore Ts'o5dd8f962001-01-01 15:51:50 +0000191 ctx->fs->super->s_feature_incompat &= ~EXT3_FEATURE_INCOMPAT_RECOVER;
Theodore Ts'o3b5386d2000-08-14 14:25:19 +0000192
193 /* if we had an error doing journal recovery, we need a full fsck */
194 if (error)
Theodore Ts'o5dd8f962001-01-01 15:51:50 +0000195 ctx->fs->super->s_state &= ~EXT2_VALID_FS;
Theodore Ts'o3b5386d2000-08-14 14:25:19 +0000196 ext2fs_mark_super_dirty(ctx->fs);
197}
198
Theodore Ts'o051afbe2007-06-21 11:59:06 -0400199/*
200 * This is a helper function to check the validity of the journal.
201 */
202struct process_block_struct {
203 e2_blkcnt_t last_block;
204};
205
206static int process_journal_block(ext2_filsys fs,
JP Abgralle0ed7402014-03-19 19:08:39 -0700207 blk64_t *block_nr,
Theodore Ts'o051afbe2007-06-21 11:59:06 -0400208 e2_blkcnt_t blockcnt,
JP Abgralle0ed7402014-03-19 19:08:39 -0700209 blk64_t ref_block EXT2FS_ATTR((unused)),
Theodore Ts'o051afbe2007-06-21 11:59:06 -0400210 int ref_offset EXT2FS_ATTR((unused)),
211 void *priv_data)
212{
213 struct process_block_struct *p;
JP Abgralle0ed7402014-03-19 19:08:39 -0700214 blk64_t blk = *block_nr;
Theodore Ts'o051afbe2007-06-21 11:59:06 -0400215
216 p = (struct process_block_struct *) priv_data;
217
Eric Sandeen5750e5f2010-04-12 17:36:33 -0500218 if (!blk || blk < fs->super->s_first_data_block ||
JP Abgralle0ed7402014-03-19 19:08:39 -0700219 blk >= ext2fs_blocks_count(fs->super))
Theodore Ts'o051afbe2007-06-21 11:59:06 -0400220 return BLOCK_ABORT;
221
222 if (blockcnt >= 0)
223 p->last_block = blockcnt;
224 return 0;
225}
226
Theodore Ts'od1a21822002-02-22 00:17:59 -0500227static errcode_t e2fsck_get_journal(e2fsck_t ctx, journal_t **ret_journal)
Theodore Ts'o3b5386d2000-08-14 14:25:19 +0000228{
Theodore Ts'o051afbe2007-06-21 11:59:06 -0400229 struct process_block_struct pb;
Theodore Ts'od1a21822002-02-22 00:17:59 -0500230 struct ext2_super_block *sb = ctx->fs->super;
231 struct ext2_super_block jsuper;
232 struct problem_context pctx;
233 struct buffer_head *bh;
234 struct inode *j_inode = NULL;
235 struct kdev_s *dev_fs = NULL, *dev_journal;
Theodore Ts'o3e699062002-10-13 23:56:28 -0400236 const char *journal_name = 0;
Theodore Ts'od1a21822002-02-22 00:17:59 -0500237 journal_t *journal = NULL;
Theodore Ts'o3e699062002-10-13 23:56:28 -0400238 errcode_t retval = 0;
239 io_manager io_ptr = 0;
JP Abgralle0ed7402014-03-19 19:08:39 -0700240 unsigned long long start = 0;
Theodore Ts'od1a21822002-02-22 00:17:59 -0500241 int ext_journal = 0;
Theodore Ts'oa435ec32003-08-21 00:40:26 -0400242 int tried_backup_jnl = 0;
Brian Behlendorf2bfe0bd2007-03-29 00:19:17 -0400243
Theodore Ts'od1a21822002-02-22 00:17:59 -0500244 clear_problem_context(&pctx);
Brian Behlendorf2bfe0bd2007-03-29 00:19:17 -0400245
Theodore Ts'od1a21822002-02-22 00:17:59 -0500246 journal = e2fsck_allocate_memory(ctx, sizeof(journal_t), "journal");
247 if (!journal) {
Theodore Ts'o3b5386d2000-08-14 14:25:19 +0000248 return EXT2_ET_NO_MEMORY;
249 }
250
Theodore Ts'o8cf93332001-12-16 02:23:36 -0500251 dev_fs = e2fsck_allocate_memory(ctx, 2*sizeof(struct kdev_s), "kdev");
252 if (!dev_fs) {
253 retval = EXT2_ET_NO_MEMORY;
254 goto errout;
255 }
256 dev_journal = dev_fs+1;
Brian Behlendorf2bfe0bd2007-03-29 00:19:17 -0400257
Theodore Ts'o8cf93332001-12-16 02:23:36 -0500258 dev_fs->k_ctx = dev_journal->k_ctx = ctx;
259 dev_fs->k_dev = K_DEV_FS;
260 dev_journal->k_dev = K_DEV_JOURNAL;
Brian Behlendorf2bfe0bd2007-03-29 00:19:17 -0400261
Theodore Ts'od1a21822002-02-22 00:17:59 -0500262 journal->j_dev = dev_journal;
263 journal->j_fs_dev = dev_fs;
264 journal->j_inode = NULL;
265 journal->j_blocksize = ctx->fs->blocksize;
Theodore Ts'o3b5386d2000-08-14 14:25:19 +0000266
Theodore Ts'od1a21822002-02-22 00:17:59 -0500267 if (uuid_is_null(sb->s_journal_uuid)) {
Brian Behlendorf2bfe0bd2007-03-29 00:19:17 -0400268 if (!sb->s_journal_inum) {
269 retval = EXT2_ET_BAD_INODE_NUM;
270 goto errout;
271 }
Theodore Ts'od1a21822002-02-22 00:17:59 -0500272 j_inode = e2fsck_allocate_memory(ctx, sizeof(*j_inode),
273 "journal inode");
274 if (!j_inode) {
275 retval = EXT2_ET_NO_MEMORY;
276 goto errout;
277 }
278
279 j_inode->i_ctx = ctx;
280 j_inode->i_ino = sb->s_journal_inum;
Brian Behlendorf2bfe0bd2007-03-29 00:19:17 -0400281
Theodore Ts'od1a21822002-02-22 00:17:59 -0500282 if ((retval = ext2fs_read_inode(ctx->fs,
283 sb->s_journal_inum,
Theodore Ts'oa435ec32003-08-21 00:40:26 -0400284 &j_inode->i_ext2))) {
285 try_backup_journal:
286 if (sb->s_jnl_backup_type != EXT3_JNL_BACKUP_BLOCKS ||
287 tried_backup_jnl)
288 goto errout;
289 memset(&j_inode->i_ext2, 0, sizeof(struct ext2_inode));
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400290 memcpy(&j_inode->i_ext2.i_block[0], sb->s_jnl_blocks,
Theodore Ts'oa435ec32003-08-21 00:40:26 -0400291 EXT2_N_BLOCKS*4);
JP Abgralle0ed7402014-03-19 19:08:39 -0700292 j_inode->i_ext2.i_size_high = sb->s_jnl_blocks[15];
Theodore Ts'oa435ec32003-08-21 00:40:26 -0400293 j_inode->i_ext2.i_size = sb->s_jnl_blocks[16];
294 j_inode->i_ext2.i_links_count = 1;
295 j_inode->i_ext2.i_mode = LINUX_S_IFREG | 0600;
Theodore Ts'o051afbe2007-06-21 11:59:06 -0400296 e2fsck_use_inode_shortcuts(ctx, 1);
297 ctx->stashed_ino = j_inode->i_ino;
298 ctx->stashed_inode = &j_inode->i_ext2;
Theodore Ts'oa435ec32003-08-21 00:40:26 -0400299 tried_backup_jnl++;
300 }
Theodore Ts'od1a21822002-02-22 00:17:59 -0500301 if (!j_inode->i_ext2.i_links_count ||
302 !LINUX_S_ISREG(j_inode->i_ext2.i_mode)) {
303 retval = EXT2_ET_NO_JOURNAL;
Theodore Ts'oa435ec32003-08-21 00:40:26 -0400304 goto try_backup_journal;
Theodore Ts'od1a21822002-02-22 00:17:59 -0500305 }
JP Abgralle0ed7402014-03-19 19:08:39 -0700306 if (EXT2_I_SIZE(&j_inode->i_ext2) / journal->j_blocksize <
Theodore Ts'od1a21822002-02-22 00:17:59 -0500307 JFS_MIN_JOURNAL_BLOCKS) {
308 retval = EXT2_ET_JOURNAL_TOO_SMALL;
Theodore Ts'oa435ec32003-08-21 00:40:26 -0400309 goto try_backup_journal;
Theodore Ts'od1a21822002-02-22 00:17:59 -0500310 }
Theodore Ts'o051afbe2007-06-21 11:59:06 -0400311 pb.last_block = -1;
JP Abgralle0ed7402014-03-19 19:08:39 -0700312 retval = ext2fs_block_iterate3(ctx->fs, j_inode->i_ino,
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400313 BLOCK_FLAG_HOLE, 0,
Theodore Ts'o051afbe2007-06-21 11:59:06 -0400314 process_journal_block, &pb);
JP Abgralle0ed7402014-03-19 19:08:39 -0700315 if ((pb.last_block + 1) * ctx->fs->blocksize <
316 (int) EXT2_I_SIZE(&j_inode->i_ext2)) {
Theodore Ts'o051afbe2007-06-21 11:59:06 -0400317 retval = EXT2_ET_JOURNAL_TOO_SMALL;
318 goto try_backup_journal;
Theodore Ts'oa435ec32003-08-21 00:40:26 -0400319 }
Kalpak Shahded28ac2007-06-21 11:59:06 -0400320 if (tried_backup_jnl && !(ctx->options & E2F_OPT_READONLY)) {
321 retval = ext2fs_write_inode(ctx->fs, sb->s_journal_inum,
322 &j_inode->i_ext2);
323 if (retval)
324 goto errout;
325 }
326
JP Abgralle0ed7402014-03-19 19:08:39 -0700327 journal->j_maxlen = EXT2_I_SIZE(&j_inode->i_ext2) /
328 journal->j_blocksize;
Theodore Ts'od1a21822002-02-22 00:17:59 -0500329
330#ifdef USE_INODE_IO
Theodore Ts'oa435ec32003-08-21 00:40:26 -0400331 retval = ext2fs_inode_io_intern2(ctx->fs, sb->s_journal_inum,
332 &j_inode->i_ext2,
333 &journal_name);
Theodore Ts'od1a21822002-02-22 00:17:59 -0500334 if (retval)
335 goto errout;
336
337 io_ptr = inode_io_manager;
338#else
339 journal->j_inode = j_inode;
340 ctx->journal_io = ctx->fs->io;
JP Abgralle0ed7402014-03-19 19:08:39 -0700341 if ((retval = (errcode_t) journal_bmap(journal, 0, &start)) != 0)
Theodore Ts'od1a21822002-02-22 00:17:59 -0500342 goto errout;
343#endif
344 } else {
345 ext_journal = 1;
Theodore Ts'of3640932003-03-01 19:47:44 -0500346 if (!ctx->journal_name) {
347 char uuid[37];
348
349 uuid_unparse(sb->s_journal_uuid, uuid);
350 ctx->journal_name = blkid_get_devname(ctx->blkid,
351 "UUID", uuid);
352 if (!ctx->journal_name)
353 ctx->journal_name = blkid_devno_to_devname(sb->s_journal_dev);
Theodore Ts'od1a21822002-02-22 00:17:59 -0500354 }
Theodore Ts'of3640932003-03-01 19:47:44 -0500355 journal_name = ctx->journal_name;
Brian Behlendorf2bfe0bd2007-03-29 00:19:17 -0400356
Theodore Ts'od1a21822002-02-22 00:17:59 -0500357 if (!journal_name) {
358 fix_problem(ctx, PR_0_CANT_FIND_JOURNAL, &pctx);
Brian Behlendorf2bfe0bd2007-03-29 00:19:17 -0400359 retval = EXT2_ET_LOAD_EXT_JOURNAL;
360 goto errout;
Theodore Ts'od1a21822002-02-22 00:17:59 -0500361 }
Brian Behlendorf2bfe0bd2007-03-29 00:19:17 -0400362
Theodore Ts'od1a21822002-02-22 00:17:59 -0500363 jfs_debug(1, "Using journal file %s\n", journal_name);
364 io_ptr = unix_io_manager;
Theodore Ts'o3b5386d2000-08-14 14:25:19 +0000365 }
366
Theodore Ts'od1a21822002-02-22 00:17:59 -0500367#if 0
368 test_io_backing_manager = io_ptr;
369 io_ptr = test_io_manager;
370#endif
371#ifndef USE_INODE_IO
372 if (ext_journal)
373#endif
JP Abgralle0ed7402014-03-19 19:08:39 -0700374 {
375 int flags = IO_FLAG_RW;
376 if (!(ctx->mount_flags & EXT2_MF_ISROOT &&
377 ctx->mount_flags & EXT2_MF_READONLY))
378 flags |= IO_FLAG_EXCLUSIVE;
379 if ((ctx->mount_flags & EXT2_MF_READONLY) &&
380 (ctx->options & E2F_OPT_FORCE))
381 flags &= ~IO_FLAG_EXCLUSIVE;
382
383
384 retval = io_ptr->open(journal_name, flags,
Theodore Ts'od1a21822002-02-22 00:17:59 -0500385 &ctx->journal_io);
JP Abgralle0ed7402014-03-19 19:08:39 -0700386 }
Theodore Ts'od1a21822002-02-22 00:17:59 -0500387 if (retval)
388 goto errout;
389
390 io_channel_set_blksize(ctx->journal_io, ctx->fs->blocksize);
391
392 if (ext_journal) {
JP Abgralle0ed7402014-03-19 19:08:39 -0700393 blk64_t maxlen;
394
Theodore Ts'od1a21822002-02-22 00:17:59 -0500395 if (ctx->fs->blocksize == 1024)
396 start = 1;
397 bh = getblk(dev_journal, start, ctx->fs->blocksize);
398 if (!bh) {
399 retval = EXT2_ET_NO_MEMORY;
400 goto errout;
401 }
402 ll_rw_block(READ, 1, &bh);
Theodore Ts'o2aa362f2006-05-14 17:16:29 -0400403 if ((retval = bh->b_err) != 0) {
404 brelse(bh);
Theodore Ts'od1a21822002-02-22 00:17:59 -0500405 goto errout;
Theodore Ts'o2aa362f2006-05-14 17:16:29 -0400406 }
Theodore Ts'od1a21822002-02-22 00:17:59 -0500407 memcpy(&jsuper, start ? bh->b_data : bh->b_data + 1024,
408 sizeof(jsuper));
409 brelse(bh);
Theodore Ts'o2eae0932007-08-11 02:57:31 -0400410#ifdef WORDS_BIGENDIAN
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400411 if (jsuper.s_magic == ext2fs_swab16(EXT2_SUPER_MAGIC))
Theodore Ts'od1a21822002-02-22 00:17:59 -0500412 ext2fs_swap_super(&jsuper);
413#endif
414 if (jsuper.s_magic != EXT2_SUPER_MAGIC ||
415 !(jsuper.s_feature_incompat & EXT3_FEATURE_INCOMPAT_JOURNAL_DEV)) {
416 fix_problem(ctx, PR_0_EXT_JOURNAL_BAD_SUPER, &pctx);
417 retval = EXT2_ET_LOAD_EXT_JOURNAL;
418 goto errout;
419 }
420 /* Make sure the journal UUID is correct */
421 if (memcmp(jsuper.s_uuid, ctx->fs->super->s_journal_uuid,
422 sizeof(jsuper.s_uuid))) {
423 fix_problem(ctx, PR_0_JOURNAL_BAD_UUID, &pctx);
424 retval = EXT2_ET_LOAD_EXT_JOURNAL;
425 goto errout;
426 }
Brian Behlendorf2bfe0bd2007-03-29 00:19:17 -0400427
JP Abgralle0ed7402014-03-19 19:08:39 -0700428 maxlen = ext2fs_blocks_count(&jsuper);
429 journal->j_maxlen = (maxlen < 1ULL << 32) ? maxlen : (1ULL << 32) - 1;
Theodore Ts'od1a21822002-02-22 00:17:59 -0500430 start++;
431 }
432
433 if (!(bh = getblk(dev_journal, start, journal->j_blocksize))) {
Theodore Ts'o3b5386d2000-08-14 14:25:19 +0000434 retval = EXT2_ET_NO_MEMORY;
Theodore Ts'o8cf93332001-12-16 02:23:36 -0500435 goto errout;
Theodore Ts'o3b5386d2000-08-14 14:25:19 +0000436 }
Brian Behlendorf2bfe0bd2007-03-29 00:19:17 -0400437
Theodore Ts'od1a21822002-02-22 00:17:59 -0500438 journal->j_sb_buffer = bh;
439 journal->j_superblock = (journal_superblock_t *)bh->b_data;
Brian Behlendorf2bfe0bd2007-03-29 00:19:17 -0400440
Theodore Ts'od1a21822002-02-22 00:17:59 -0500441#ifdef USE_INODE_IO
442 if (j_inode)
Theodore Ts'oc4e3d3f2003-08-01 09:41:07 -0400443 ext2fs_free_mem(&j_inode);
Theodore Ts'od1a21822002-02-22 00:17:59 -0500444#endif
445
446 *ret_journal = journal;
Theodore Ts'o051afbe2007-06-21 11:59:06 -0400447 e2fsck_use_inode_shortcuts(ctx, 0);
Theodore Ts'o3b5386d2000-08-14 14:25:19 +0000448 return 0;
449
Theodore Ts'o8cf93332001-12-16 02:23:36 -0500450errout:
Theodore Ts'o051afbe2007-06-21 11:59:06 -0400451 e2fsck_use_inode_shortcuts(ctx, 0);
Theodore Ts'o8cf93332001-12-16 02:23:36 -0500452 if (dev_fs)
Theodore Ts'oc4e3d3f2003-08-01 09:41:07 -0400453 ext2fs_free_mem(&dev_fs);
Theodore Ts'od1a21822002-02-22 00:17:59 -0500454 if (j_inode)
Theodore Ts'oc4e3d3f2003-08-01 09:41:07 -0400455 ext2fs_free_mem(&j_inode);
Theodore Ts'o8cf93332001-12-16 02:23:36 -0500456 if (journal)
Theodore Ts'oc4e3d3f2003-08-01 09:41:07 -0400457 ext2fs_free_mem(&journal);
Theodore Ts'o3b5386d2000-08-14 14:25:19 +0000458 return retval;
Theodore Ts'o3b5386d2000-08-14 14:25:19 +0000459}
460
Theodore Ts'o6a6d3d42001-01-12 21:11:24 +0000461static errcode_t e2fsck_journal_fix_bad_inode(e2fsck_t ctx,
462 struct problem_context *pctx)
Theodore Ts'o3b5386d2000-08-14 14:25:19 +0000463{
Theodore Ts'o5dd8f962001-01-01 15:51:50 +0000464 struct ext2_super_block *sb = ctx->fs->super;
465 int recover = ctx->fs->super->s_feature_incompat &
466 EXT3_FEATURE_INCOMPAT_RECOVER;
467 int has_journal = ctx->fs->super->s_feature_compat &
468 EXT3_FEATURE_COMPAT_HAS_JOURNAL;
Theodore Ts'o3b5386d2000-08-14 14:25:19 +0000469
Theodore Ts'o5dd8f962001-01-01 15:51:50 +0000470 if (has_journal || sb->s_journal_inum) {
Theodore Ts'o3b5386d2000-08-14 14:25:19 +0000471 /* The journal inode is bogus, remove and force full fsck */
Theodore Ts'o7e92dfa2001-01-12 15:30:25 +0000472 pctx->ino = sb->s_journal_inum;
Theodore Ts'o3b5386d2000-08-14 14:25:19 +0000473 if (fix_problem(ctx, PR_0_JOURNAL_BAD_INODE, pctx)) {
Theodore Ts'o5dd8f962001-01-01 15:51:50 +0000474 if (has_journal && sb->s_journal_inum)
Theodore Ts'o3b5386d2000-08-14 14:25:19 +0000475 printf("*** ext3 journal has been deleted - "
476 "filesystem is now ext2 only ***\n\n");
Theodore Ts'o5dd8f962001-01-01 15:51:50 +0000477 sb->s_feature_compat &= ~EXT3_FEATURE_COMPAT_HAS_JOURNAL;
478 sb->s_journal_inum = 0;
Kalpak Shah5107d0d2007-06-21 11:59:06 -0400479 ctx->flags |= E2F_FLAG_JOURNAL_INODE;
Theodore Ts'o0cfce7f2007-10-06 12:37:08 -0400480 ctx->fs->flags &= ~EXT2_FLAG_MASTER_SB_ONLY;
Theodore Ts'o3b5386d2000-08-14 14:25:19 +0000481 e2fsck_clear_recover(ctx, 1);
482 return 0;
483 }
484 return EXT2_ET_BAD_INODE_NUM;
485 } else if (recover) {
486 if (fix_problem(ctx, PR_0_JOURNAL_RECOVER_SET, pctx)) {
487 e2fsck_clear_recover(ctx, 1);
488 return 0;
489 }
490 return EXT2_ET_UNSUPP_FEATURE;
491 }
492 return 0;
493}
494
Theodore Ts'o62e3e7f2001-10-07 02:13:30 -0400495#define V1_SB_SIZE 0x0024
496static void clear_v2_journal_fields(journal_t *journal)
497{
Theodore Ts'o8cf93332001-12-16 02:23:36 -0500498 e2fsck_t ctx = journal->j_dev->k_ctx;
Theodore Ts'o62e3e7f2001-10-07 02:13:30 -0400499 struct problem_context pctx;
500
501 clear_problem_context(&pctx);
502
503 if (!fix_problem(ctx, PR_0_CLEAR_V2_JOURNAL, &pctx))
504 return;
505
506 memset(((char *) journal->j_superblock) + V1_SB_SIZE, 0,
507 ctx->fs->blocksize-V1_SB_SIZE);
Theodore Ts'o8cf93332001-12-16 02:23:36 -0500508 mark_buffer_dirty(journal->j_sb_buffer);
Theodore Ts'o62e3e7f2001-10-07 02:13:30 -0400509}
510
511
Theodore Ts'o6a6d3d42001-01-12 21:11:24 +0000512static errcode_t e2fsck_journal_load(journal_t *journal)
Theodore Ts'o3b5386d2000-08-14 14:25:19 +0000513{
Theodore Ts'o8cf93332001-12-16 02:23:36 -0500514 e2fsck_t ctx = journal->j_dev->k_ctx;
Theodore Ts'o3b5386d2000-08-14 14:25:19 +0000515 journal_superblock_t *jsb;
516 struct buffer_head *jbh = journal->j_sb_buffer;
517 struct problem_context pctx;
518
519 clear_problem_context(&pctx);
520
Theodore Ts'o0e8a9562000-12-09 06:41:25 +0000521 ll_rw_block(READ, 1, &jbh);
Theodore Ts'o3b5386d2000-08-14 14:25:19 +0000522 if (jbh->b_err) {
JP Abgralle0ed7402014-03-19 19:08:39 -0700523 com_err(ctx->device_name, jbh->b_err, "%s",
Theodore Ts'o3b5386d2000-08-14 14:25:19 +0000524 _("reading journal superblock\n"));
525 return jbh->b_err;
526 }
527
528 jsb = journal->j_superblock;
529 /* If we don't even have JFS_MAGIC, we probably have a wrong inode */
530 if (jsb->s_header.h_magic != htonl(JFS_MAGIC_NUMBER))
531 return e2fsck_journal_fix_bad_inode(ctx, &pctx);
532
Theodore Ts'o0e8a9562000-12-09 06:41:25 +0000533 switch (ntohl(jsb->s_header.h_blocktype)) {
534 case JFS_SUPERBLOCK_V1:
535 journal->j_format_version = 1;
Theodore Ts'o62e3e7f2001-10-07 02:13:30 -0400536 if (jsb->s_feature_compat ||
537 jsb->s_feature_incompat ||
538 jsb->s_feature_ro_compat ||
539 jsb->s_nr_users)
540 clear_v2_journal_fields(journal);
Theodore Ts'o0e8a9562000-12-09 06:41:25 +0000541 break;
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400542
Theodore Ts'o0e8a9562000-12-09 06:41:25 +0000543 case JFS_SUPERBLOCK_V2:
544 journal->j_format_version = 2;
Gabriel Paubertb3b3d462001-11-30 13:45:28 +0100545 if (ntohl(jsb->s_nr_users) > 1 &&
Theodore Ts'oa435ec32003-08-21 00:40:26 -0400546 uuid_is_null(ctx->fs->super->s_journal_uuid))
Theodore Ts'o62e3e7f2001-10-07 02:13:30 -0400547 clear_v2_journal_fields(journal);
Theodore Ts'oadee8d72001-07-23 00:17:49 -0400548 if (ntohl(jsb->s_nr_users) > 1) {
549 fix_problem(ctx, PR_0_JOURNAL_UNSUPP_MULTIFS, &pctx);
550 return EXT2_ET_JOURNAL_UNSUPP_VERSION;
551 }
Theodore Ts'o0e8a9562000-12-09 06:41:25 +0000552 break;
Theodore Ts'oc7f23362001-05-23 22:19:47 +0000553
554 /*
555 * These should never appear in a journal super block, so if
556 * they do, the journal is badly corrupted.
557 */
558 case JFS_DESCRIPTOR_BLOCK:
559 case JFS_COMMIT_BLOCK:
560 case JFS_REVOKE_BLOCK:
561 return EXT2_ET_CORRUPT_SUPERBLOCK;
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400562
Theodore Ts'o0e8a9562000-12-09 06:41:25 +0000563 /* If we don't understand the superblock major type, but there
564 * is a magic number, then it is likely to be a new format we
565 * just don't understand, so leave it alone. */
566 default:
Theodore Ts'oc7f23362001-05-23 22:19:47 +0000567 return EXT2_ET_JOURNAL_UNSUPP_VERSION;
Theodore Ts'o3b5386d2000-08-14 14:25:19 +0000568 }
569
Theodore Ts'o2f686ac2001-06-02 00:38:40 +0000570 if (JFS_HAS_INCOMPAT_FEATURE(journal, ~JFS_KNOWN_INCOMPAT_FEATURES))
571 return EXT2_ET_UNSUPP_FEATURE;
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400572
Theodore Ts'o2f686ac2001-06-02 00:38:40 +0000573 if (JFS_HAS_RO_COMPAT_FEATURE(journal, ~JFS_KNOWN_ROCOMPAT_FEATURES))
574 return EXT2_ET_RO_UNSUPP_FEATURE;
Theodore Ts'o0e8a9562000-12-09 06:41:25 +0000575
576 /* We have now checked whether we know enough about the journal
577 * format to be able to proceed safely, so any other checks that
578 * fail we should attempt to recover from. */
579 if (jsb->s_blocksize != htonl(journal->j_blocksize)) {
580 com_err(ctx->program_name, EXT2_ET_CORRUPT_SUPERBLOCK,
581 _("%s: no valid journal superblock found\n"),
582 ctx->device_name);
583 return EXT2_ET_CORRUPT_SUPERBLOCK;
Theodore Ts'o3b5386d2000-08-14 14:25:19 +0000584 }
585
586 if (ntohl(jsb->s_maxlen) < journal->j_maxlen)
587 journal->j_maxlen = ntohl(jsb->s_maxlen);
588 else if (ntohl(jsb->s_maxlen) > journal->j_maxlen) {
Theodore Ts'o0e8a9562000-12-09 06:41:25 +0000589 com_err(ctx->program_name, EXT2_ET_CORRUPT_SUPERBLOCK,
590 _("%s: journal too short\n"),
591 ctx->device_name);
Theodore Ts'o3b5386d2000-08-14 14:25:19 +0000592 return EXT2_ET_CORRUPT_SUPERBLOCK;
593 }
594
595 journal->j_tail_sequence = ntohl(jsb->s_sequence);
Theodore Ts'oecf1b772000-08-20 22:06:31 +0000596 journal->j_transaction_sequence = journal->j_tail_sequence;
Theodore Ts'o3b5386d2000-08-14 14:25:19 +0000597 journal->j_tail = ntohl(jsb->s_start);
598 journal->j_first = ntohl(jsb->s_first);
599 journal->j_last = ntohl(jsb->s_maxlen);
600
601 return 0;
602}
603
Theodore Ts'o53ef44c2001-01-06 05:55:58 +0000604static void e2fsck_journal_reset_super(e2fsck_t ctx, journal_superblock_t *jsb,
Theodore Ts'o6a6d3d42001-01-12 21:11:24 +0000605 journal_t *journal)
Theodore Ts'o3b5386d2000-08-14 14:25:19 +0000606{
Theodore Ts'o0e8a9562000-12-09 06:41:25 +0000607 char *p;
Theodore Ts'o424cd2b2001-05-14 04:06:56 +0000608 union {
609 uuid_t uuid;
610 __u32 val[4];
611 } u;
612 __u32 new_seq = 0;
613 int i;
614
Theodore Ts'o0e8a9562000-12-09 06:41:25 +0000615 /* Leave a valid existing V1 superblock signature alone.
616 * Anything unrecognisable we overwrite with a new V2
617 * signature. */
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400618
Theodore Ts'o0e8a9562000-12-09 06:41:25 +0000619 if (jsb->s_header.h_magic != htonl(JFS_MAGIC_NUMBER) ||
620 jsb->s_header.h_blocktype != htonl(JFS_SUPERBLOCK_V1)) {
621 jsb->s_header.h_magic = htonl(JFS_MAGIC_NUMBER);
622 jsb->s_header.h_blocktype = htonl(JFS_SUPERBLOCK_V2);
623 }
624
625 /* Zero out everything else beyond the superblock header */
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400626
Theodore Ts'o0e8a9562000-12-09 06:41:25 +0000627 p = ((char *) jsb) + sizeof(journal_header_t);
628 memset (p, 0, ctx->fs->blocksize-sizeof(journal_header_t));
629
Theodore Ts'o3b5386d2000-08-14 14:25:19 +0000630 jsb->s_blocksize = htonl(ctx->fs->blocksize);
Theodore Ts'o0e8a9562000-12-09 06:41:25 +0000631 jsb->s_maxlen = htonl(journal->j_maxlen);
632 jsb->s_first = htonl(1);
Theodore Ts'o0e8a9562000-12-09 06:41:25 +0000633
Theodore Ts'o424cd2b2001-05-14 04:06:56 +0000634 /* Initialize the journal sequence number so that there is "no"
635 * chance we will find old "valid" transactions in the journal.
636 * This avoids the need to zero the whole journal (slow to do,
637 * and risky when we are just recovering the filesystem).
638 */
639 uuid_generate(u.uuid);
640 for (i = 0; i < 4; i ++)
641 new_seq ^= u.val[i];
642 jsb->s_sequence = htonl(new_seq);
Theodore Ts'o0e8a9562000-12-09 06:41:25 +0000643
Theodore Ts'o8cf93332001-12-16 02:23:36 -0500644 mark_buffer_dirty(journal->j_sb_buffer);
Theodore Ts'o0e8a9562000-12-09 06:41:25 +0000645 ll_rw_block(WRITE, 1, &journal->j_sb_buffer);
Theodore Ts'o3b5386d2000-08-14 14:25:19 +0000646}
647
Theodore Ts'o6a6d3d42001-01-12 21:11:24 +0000648static errcode_t e2fsck_journal_fix_corrupt_super(e2fsck_t ctx,
649 journal_t *journal,
650 struct problem_context *pctx)
Theodore Ts'o3b5386d2000-08-14 14:25:19 +0000651{
Theodore Ts'o5dd8f962001-01-01 15:51:50 +0000652 struct ext2_super_block *sb = ctx->fs->super;
653 int recover = ctx->fs->super->s_feature_incompat &
654 EXT3_FEATURE_INCOMPAT_RECOVER;
Theodore Ts'o3b5386d2000-08-14 14:25:19 +0000655
Theodore Ts'o5dd8f962001-01-01 15:51:50 +0000656 if (sb->s_feature_compat & EXT3_FEATURE_COMPAT_HAS_JOURNAL) {
Theodore Ts'o3b5386d2000-08-14 14:25:19 +0000657 if (fix_problem(ctx, PR_0_JOURNAL_BAD_SUPER, pctx)) {
Theodore Ts'ob2f93192000-12-30 20:33:42 +0000658 e2fsck_journal_reset_super(ctx, journal->j_superblock,
659 journal);
Theodore Ts'o3b5386d2000-08-14 14:25:19 +0000660 journal->j_transaction_sequence = 1;
661 e2fsck_clear_recover(ctx, recover);
662 return 0;
663 }
664 return EXT2_ET_CORRUPT_SUPERBLOCK;
665 } else if (e2fsck_journal_fix_bad_inode(ctx, pctx))
666 return EXT2_ET_CORRUPT_SUPERBLOCK;
667
668 return 0;
669}
670
Theodore Ts'o6a6d3d42001-01-12 21:11:24 +0000671static void e2fsck_journal_release(e2fsck_t ctx, journal_t *journal,
672 int reset, int drop)
Theodore Ts'o3b5386d2000-08-14 14:25:19 +0000673{
674 journal_superblock_t *jsb;
675
Theodore Ts'o6a6d3d42001-01-12 21:11:24 +0000676 if (drop)
677 mark_buffer_clean(journal->j_sb_buffer);
678 else if (!(ctx->options & E2F_OPT_READONLY)) {
Theodore Ts'o3b5386d2000-08-14 14:25:19 +0000679 jsb = journal->j_superblock;
680 jsb->s_sequence = htonl(journal->j_transaction_sequence);
681 if (reset)
682 jsb->s_start = 0; /* this marks the journal as empty */
Theodore Ts'o8cf93332001-12-16 02:23:36 -0500683 mark_buffer_dirty(journal->j_sb_buffer);
Theodore Ts'o3b5386d2000-08-14 14:25:19 +0000684 }
685 brelse(journal->j_sb_buffer);
686
Theodore Ts'o6d222f32001-07-29 12:06:58 -0400687 if (ctx->journal_io) {
688 if (ctx->fs && ctx->fs->io != ctx->journal_io)
689 io_channel_close(ctx->journal_io);
690 ctx->journal_io = 0;
691 }
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400692
Theodore Ts'od1a21822002-02-22 00:17:59 -0500693#ifndef USE_INODE_IO
Theodore Ts'o3b5386d2000-08-14 14:25:19 +0000694 if (journal->j_inode)
Theodore Ts'oc4e3d3f2003-08-01 09:41:07 -0400695 ext2fs_free_mem(&journal->j_inode);
Theodore Ts'od1a21822002-02-22 00:17:59 -0500696#endif
697 if (journal->j_fs_dev)
Theodore Ts'oc4e3d3f2003-08-01 09:41:07 -0400698 ext2fs_free_mem(&journal->j_fs_dev);
699 ext2fs_free_mem(&journal);
Theodore Ts'o3b5386d2000-08-14 14:25:19 +0000700}
701
Theodore Ts'o9b565752000-12-13 18:50:22 +0000702/*
703 * This function makes sure that the superblock fields regarding the
704 * journal are consistent.
705 */
JP Abgralle0ed7402014-03-19 19:08:39 -0700706errcode_t e2fsck_check_ext3_journal(e2fsck_t ctx)
Theodore Ts'o3b5386d2000-08-14 14:25:19 +0000707{
Theodore Ts'o5dd8f962001-01-01 15:51:50 +0000708 struct ext2_super_block *sb = ctx->fs->super;
Theodore Ts'o3b5386d2000-08-14 14:25:19 +0000709 journal_t *journal;
Theodore Ts'o5dd8f962001-01-01 15:51:50 +0000710 int recover = ctx->fs->super->s_feature_incompat &
711 EXT3_FEATURE_INCOMPAT_RECOVER;
Theodore Ts'o3b5386d2000-08-14 14:25:19 +0000712 struct problem_context pctx;
Theodore Ts'od37066a2001-12-21 23:28:54 -0500713 problem_t problem;
Theodore Ts'od3f35b62001-01-03 13:00:43 +0000714 int reset = 0, force_fsck = 0;
JP Abgralle0ed7402014-03-19 19:08:39 -0700715 errcode_t retval;
Theodore Ts'o3b5386d2000-08-14 14:25:19 +0000716
717 /* If we don't have any journal features, don't do anything more */
Theodore Ts'o5dd8f962001-01-01 15:51:50 +0000718 if (!(sb->s_feature_compat & EXT3_FEATURE_COMPAT_HAS_JOURNAL) &&
719 !recover && sb->s_journal_inum == 0 && sb->s_journal_dev == 0 &&
720 uuid_is_null(sb->s_journal_uuid))
Theodore Ts'o9b565752000-12-13 18:50:22 +0000721 return 0;
Theodore Ts'o3b5386d2000-08-14 14:25:19 +0000722
723 clear_problem_context(&pctx);
Theodore Ts'o5dd8f962001-01-01 15:51:50 +0000724 pctx.num = sb->s_journal_inum;
Theodore Ts'o3b5386d2000-08-14 14:25:19 +0000725
726 retval = e2fsck_get_journal(ctx, &journal);
727 if (retval) {
Theodore Ts'of2d5c932002-03-07 03:13:07 -0500728 if ((retval == EXT2_ET_BAD_INODE_NUM) ||
Richard Mortimer6e4fbbe2004-10-04 17:56:24 +0100729 (retval == EXT2_ET_BAD_BLOCK_NUM) ||
Theodore Ts'of2d5c932002-03-07 03:13:07 -0500730 (retval == EXT2_ET_JOURNAL_TOO_SMALL) ||
731 (retval == EXT2_ET_NO_JOURNAL))
Theodore Ts'o3b5386d2000-08-14 14:25:19 +0000732 return e2fsck_journal_fix_bad_inode(ctx, &pctx);
733 return retval;
734 }
735
736 retval = e2fsck_journal_load(journal);
737 if (retval) {
Theodore Ts'oc7f23362001-05-23 22:19:47 +0000738 if ((retval == EXT2_ET_CORRUPT_SUPERBLOCK) ||
Theodore Ts'o2f686ac2001-06-02 00:38:40 +0000739 ((retval == EXT2_ET_UNSUPP_FEATURE) &&
740 (!fix_problem(ctx, PR_0_JOURNAL_UNSUPP_INCOMPAT,
741 &pctx))) ||
742 ((retval == EXT2_ET_RO_UNSUPP_FEATURE) &&
743 (!fix_problem(ctx, PR_0_JOURNAL_UNSUPP_ROCOMPAT,
744 &pctx))) ||
Theodore Ts'oc7f23362001-05-23 22:19:47 +0000745 ((retval == EXT2_ET_JOURNAL_UNSUPP_VERSION) &&
746 (!fix_problem(ctx, PR_0_JOURNAL_UNSUPP_VERSION, &pctx))))
Theodore Ts'o6a6d3d42001-01-12 21:11:24 +0000747 retval = e2fsck_journal_fix_corrupt_super(ctx, journal,
748 &pctx);
749 e2fsck_journal_release(ctx, journal, 0, 1);
Theodore Ts'o3b5386d2000-08-14 14:25:19 +0000750 return retval;
751 }
752
753 /*
754 * We want to make the flags consistent here. We will not leave with
755 * needs_recovery set but has_journal clear. We can't get in a loop
756 * with -y, -n, or -p, only if a user isn't making up their mind.
757 */
758no_has_journal:
Theodore Ts'o5dd8f962001-01-01 15:51:50 +0000759 if (!(sb->s_feature_compat & EXT3_FEATURE_COMPAT_HAS_JOURNAL)) {
760 recover = sb->s_feature_incompat & EXT3_FEATURE_INCOMPAT_RECOVER;
Theodore Ts'o3b5386d2000-08-14 14:25:19 +0000761 pctx.str = "inode";
762 if (fix_problem(ctx, PR_0_JOURNAL_HAS_JOURNAL, &pctx)) {
763 if (recover &&
764 !fix_problem(ctx, PR_0_JOURNAL_RECOVER_SET, &pctx))
765 goto no_has_journal;
Theodore Ts'od3f35b62001-01-03 13:00:43 +0000766 /*
767 * Need a full fsck if we are releasing a
Theodore Ts'o8c2dc522001-01-03 13:14:23 +0000768 * journal stored on a reserved inode.
Theodore Ts'od3f35b62001-01-03 13:00:43 +0000769 */
770 force_fsck = recover ||
771 (sb->s_journal_inum < EXT2_FIRST_INODE(sb));
772 /* Clear all of the journal fields */
Theodore Ts'o5dd8f962001-01-01 15:51:50 +0000773 sb->s_journal_inum = 0;
Theodore Ts'od3f35b62001-01-03 13:00:43 +0000774 sb->s_journal_dev = 0;
775 memset(sb->s_journal_uuid, 0,
776 sizeof(sb->s_journal_uuid));
777 e2fsck_clear_recover(ctx, force_fsck);
Theodore Ts'o3b5386d2000-08-14 14:25:19 +0000778 } else if (!(ctx->options & E2F_OPT_READONLY)) {
Theodore Ts'o5dd8f962001-01-01 15:51:50 +0000779 sb->s_feature_compat |= EXT3_FEATURE_COMPAT_HAS_JOURNAL;
Theodore Ts'o0cfce7f2007-10-06 12:37:08 -0400780 ctx->fs->flags &= ~EXT2_FLAG_MASTER_SB_ONLY;
Theodore Ts'o3b5386d2000-08-14 14:25:19 +0000781 ext2fs_mark_super_dirty(ctx->fs);
782 }
783 }
784
Theodore Ts'o5dd8f962001-01-01 15:51:50 +0000785 if (sb->s_feature_compat & EXT3_FEATURE_COMPAT_HAS_JOURNAL &&
786 !(sb->s_feature_incompat & EXT3_FEATURE_INCOMPAT_RECOVER) &&
Theodore Ts'o3b5386d2000-08-14 14:25:19 +0000787 journal->j_superblock->s_start != 0) {
Theodore Ts'od37066a2001-12-21 23:28:54 -0500788 /* Print status information */
789 fix_problem(ctx, PR_0_JOURNAL_RECOVERY_CLEAR, &pctx);
790 if (ctx->superblock)
791 problem = PR_0_JOURNAL_RUN_DEFAULT;
792 else
793 problem = PR_0_JOURNAL_RUN;
794 if (fix_problem(ctx, problem, &pctx)) {
795 ctx->options |= E2F_OPT_FORCE;
796 sb->s_feature_incompat |=
797 EXT3_FEATURE_INCOMPAT_RECOVER;
798 ext2fs_mark_super_dirty(ctx->fs);
799 } else if (fix_problem(ctx,
800 PR_0_JOURNAL_RESET_JOURNAL, &pctx)) {
Theodore Ts'o3b5386d2000-08-14 14:25:19 +0000801 reset = 1;
Theodore Ts'od3f35b62001-01-03 13:00:43 +0000802 sb->s_state &= ~EXT2_VALID_FS;
803 ext2fs_mark_super_dirty(ctx->fs);
804 }
805 /*
806 * If the user answers no to the above question, we
807 * ignore the fact that journal apparently has data;
808 * accidentally replaying over valid data would be far
809 * worse than skipping a questionable recovery.
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400810 *
Theodore Ts'od3f35b62001-01-03 13:00:43 +0000811 * XXX should we abort with a fatal error here? What
812 * will the ext3 kernel code do if a filesystem with
813 * !NEEDS_RECOVERY but with a non-zero
814 * journal->j_superblock->s_start is mounted?
815 */
Theodore Ts'o3b5386d2000-08-14 14:25:19 +0000816 }
817
Theodore Ts'o6d756852012-05-31 19:19:02 -0400818 /*
819 * If we don't need to do replay the journal, check to see if
820 * the journal's errno is set; if so, we need to mark the file
821 * system as being corrupt and clear the journal's s_errno.
822 */
823 if (!(sb->s_feature_incompat & EXT3_FEATURE_INCOMPAT_RECOVER) &&
824 journal->j_superblock->s_errno) {
825 ctx->fs->super->s_state |= EXT2_ERROR_FS;
826 ext2fs_mark_super_dirty(ctx->fs);
827 journal->j_superblock->s_errno = 0;
828 mark_buffer_dirty(journal->j_sb_buffer);
829 }
830
Theodore Ts'o6a6d3d42001-01-12 21:11:24 +0000831 e2fsck_journal_release(ctx, journal, reset, 0);
Theodore Ts'o3b5386d2000-08-14 14:25:19 +0000832 return retval;
833}
834
Theodore Ts'o6a6d3d42001-01-12 21:11:24 +0000835static errcode_t recover_ext3_journal(e2fsck_t ctx)
Theodore Ts'o3b5386d2000-08-14 14:25:19 +0000836{
Theodore Ts'o185c4ae2008-05-23 01:00:19 -0400837 struct problem_context pctx;
Theodore Ts'o3b5386d2000-08-14 14:25:19 +0000838 journal_t *journal;
JP Abgralle0ed7402014-03-19 19:08:39 -0700839 errcode_t retval;
Theodore Ts'o3b5386d2000-08-14 14:25:19 +0000840
Theodore Ts'o185c4ae2008-05-23 01:00:19 -0400841 clear_problem_context(&pctx);
842
Theodore Ts'o8cf93332001-12-16 02:23:36 -0500843 journal_init_revoke_caches();
Theodore Ts'o3b5386d2000-08-14 14:25:19 +0000844 retval = e2fsck_get_journal(ctx, &journal);
845 if (retval)
Theodore Ts'oecf1b772000-08-20 22:06:31 +0000846 return retval;
847
Theodore Ts'o3b5386d2000-08-14 14:25:19 +0000848 retval = e2fsck_journal_load(journal);
849 if (retval)
Theodore Ts'o6a6d3d42001-01-12 21:11:24 +0000850 goto errout;
Theodore Ts'o3b5386d2000-08-14 14:25:19 +0000851
Theodore Ts'o0e8a9562000-12-09 06:41:25 +0000852 retval = journal_init_revoke(journal, 1024);
853 if (retval)
Theodore Ts'o6a6d3d42001-01-12 21:11:24 +0000854 goto errout;
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400855
Theodore Ts'o3b5386d2000-08-14 14:25:19 +0000856 retval = -journal_recover(journal);
Theodore Ts'oc0a083f2001-08-07 10:17:41 -0400857 if (retval)
858 goto errout;
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400859
Theodore Ts'o185c4ae2008-05-23 01:00:19 -0400860 if (journal->j_failed_commit) {
861 pctx.ino = journal->j_failed_commit;
862 fix_problem(ctx, PR_0_JNL_TXN_CORRUPT, &pctx);
Theodore Ts'o63b39132012-06-10 23:35:43 -0400863 journal->j_superblock->s_errno = -EINVAL;
Theodore Ts'o8cf93332001-12-16 02:23:36 -0500864 mark_buffer_dirty(journal->j_sb_buffer);
Theodore Ts'oc0a083f2001-08-07 10:17:41 -0400865 }
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400866
Theodore Ts'o6a6d3d42001-01-12 21:11:24 +0000867errout:
Theodore Ts'od1a21822002-02-22 00:17:59 -0500868 journal_destroy_revoke(journal);
Theodore Ts'o8cf93332001-12-16 02:23:36 -0500869 journal_destroy_revoke_caches();
Theodore Ts'o6a6d3d42001-01-12 21:11:24 +0000870 e2fsck_journal_release(ctx, journal, 1, 0);
Theodore Ts'o3b5386d2000-08-14 14:25:19 +0000871 return retval;
872}
873
JP Abgralle0ed7402014-03-19 19:08:39 -0700874errcode_t e2fsck_run_ext3_journal(e2fsck_t ctx)
Theodore Ts'o80bfaa32000-08-18 15:08:37 +0000875{
876 io_manager io_ptr = ctx->fs->io->manager;
877 int blocksize = ctx->fs->blocksize;
Theodore Ts'oecf1b772000-08-20 22:06:31 +0000878 errcode_t retval, recover_retval;
Theodore Ts'o27a407d2009-05-25 20:14:04 -0400879 io_stats stats = 0;
880 unsigned long long kbytes_written = 0;
Theodore Ts'o83949022000-10-25 01:38:50 +0000881
882 printf(_("%s: recovering journal\n"), ctx->device_name);
Theodore Ts'oecf1b772000-08-20 22:06:31 +0000883 if (ctx->options & E2F_OPT_READONLY) {
Theodore Ts'o83949022000-10-25 01:38:50 +0000884 printf(_("%s: won't do journal recovery while read-only\n"),
Theodore Ts'oecf1b772000-08-20 22:06:31 +0000885 ctx->device_name);
886 return EXT2_ET_FILE_RO;
887 }
888
Theodore Ts'o0f2cfe22001-07-10 14:34:41 -0400889 if (ctx->fs->flags & EXT2_FLAG_DIRTY)
Theodore Ts'o3c6b8972001-07-10 14:27:58 -0400890 ext2fs_flush(ctx->fs); /* Force out any modifications */
Theodore Ts'od0515212001-02-13 04:32:53 +0000891
Theodore Ts'oecf1b772000-08-20 22:06:31 +0000892 recover_retval = recover_ext3_journal(ctx);
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400893
Theodore Ts'o80bfaa32000-08-18 15:08:37 +0000894 /*
895 * Reload the filesystem context to get up-to-date data from disk
896 * because journal recovery will change the filesystem under us.
897 */
Theodore Ts'o27a407d2009-05-25 20:14:04 -0400898 if (ctx->fs->super->s_kbytes_written &&
899 ctx->fs->io->manager->get_stats)
900 ctx->fs->io->manager->get_stats(ctx->fs->io, &stats);
901 if (stats && stats->bytes_written)
902 kbytes_written = stats->bytes_written >> 10;
JP Abgralle0ed7402014-03-19 19:08:39 -0700903
904 ext2fs_mmp_stop(ctx->fs);
Theodore Ts'o27a407d2009-05-25 20:14:04 -0400905 ext2fs_free(ctx->fs);
Theodore Ts'oecf1b772000-08-20 22:06:31 +0000906 retval = ext2fs_open(ctx->filesystem_name, EXT2_FLAG_RW,
Theodore Ts'o80bfaa32000-08-18 15:08:37 +0000907 ctx->superblock, blocksize, io_ptr,
908 &ctx->fs);
Theodore Ts'o80bfaa32000-08-18 15:08:37 +0000909 if (retval) {
910 com_err(ctx->program_name, retval,
911 _("while trying to re-open %s"),
912 ctx->device_name);
Theodore Ts'o99a2cc92000-08-22 21:41:52 +0000913 fatal_error(ctx, 0);
Theodore Ts'o80bfaa32000-08-18 15:08:37 +0000914 }
915 ctx->fs->priv_data = ctx;
Theodore Ts'o8dceb922005-09-24 21:59:45 -0400916 ctx->fs->now = ctx->now;
Theodore Ts'o058ad1c2007-06-18 18:26:50 -0400917 ctx->fs->flags |= EXT2_FLAG_MASTER_SB_ONLY;
Theodore Ts'o27a407d2009-05-25 20:14:04 -0400918 ctx->fs->super->s_kbytes_written += kbytes_written;
Theodore Ts'o80bfaa32000-08-18 15:08:37 +0000919
Theodore Ts'oecf1b772000-08-20 22:06:31 +0000920 /* Set the superblock flags */
JP Abgralle0ed7402014-03-19 19:08:39 -0700921 e2fsck_clear_recover(ctx, recover_retval != 0);
Theodore Ts'o63b39132012-06-10 23:35:43 -0400922
923 /*
924 * Do one last sanity check, and propagate journal->s_errno to
925 * the EXT2_ERROR_FS flag in the fs superblock if needed.
926 */
927 retval = e2fsck_check_ext3_journal(ctx);
928 return retval ? retval : recover_retval;
Theodore Ts'o3b5386d2000-08-14 14:25:19 +0000929}
Theodore Ts'o773fd8a2001-10-06 21:26:27 -0400930
931/*
932 * This function will move the journal inode from a visible file in
933 * the filesystem directory hierarchy to the reserved inode if necessary.
934 */
Theodore Ts'o546a1ff2002-03-07 23:52:56 -0500935static const char * const journal_names[] = {
Theodore Ts'o773fd8a2001-10-06 21:26:27 -0400936 ".journal", "journal", ".journal.dat", "journal.dat", 0 };
937
938void e2fsck_move_ext3_journal(e2fsck_t ctx)
939{
940 struct ext2_super_block *sb = ctx->fs->super;
941 struct problem_context pctx;
942 struct ext2_inode inode;
943 ext2_filsys fs = ctx->fs;
944 ext2_ino_t ino;
945 errcode_t retval;
946 const char * const * cpp;
JP Abgralle0ed7402014-03-19 19:08:39 -0700947 dgrp_t group;
948 int mount_flags;
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400949
Theodore Ts'oa435ec32003-08-21 00:40:26 -0400950 clear_problem_context(&pctx);
951
Theodore Ts'o773fd8a2001-10-06 21:26:27 -0400952 /*
953 * If the filesystem is opened read-only, or there is no
Theodore Ts'oa435ec32003-08-21 00:40:26 -0400954 * journal, then do nothing.
Theodore Ts'o773fd8a2001-10-06 21:26:27 -0400955 */
956 if ((ctx->options & E2F_OPT_READONLY) ||
957 (sb->s_journal_inum == 0) ||
Theodore Ts'o773fd8a2001-10-06 21:26:27 -0400958 !(sb->s_feature_compat & EXT3_FEATURE_COMPAT_HAS_JOURNAL))
959 return;
960
961 /*
Theodore Ts'oa435ec32003-08-21 00:40:26 -0400962 * Read in the journal inode
963 */
964 if (ext2fs_read_inode(fs, sb->s_journal_inum, &inode) != 0)
965 return;
966
967 /*
968 * If it's necessary to backup the journal inode, do so.
969 */
970 if ((sb->s_jnl_backup_type == 0) ||
971 ((sb->s_jnl_backup_type == EXT3_JNL_BACKUP_BLOCKS) &&
972 memcmp(inode.i_block, sb->s_jnl_blocks, EXT2_N_BLOCKS*4))) {
973 if (fix_problem(ctx, PR_0_BACKUP_JNL, &pctx)) {
974 memcpy(sb->s_jnl_blocks, inode.i_block,
975 EXT2_N_BLOCKS*4);
JP Abgralle0ed7402014-03-19 19:08:39 -0700976 sb->s_jnl_blocks[15] = inode.i_size_high;
Theodore Ts'oa435ec32003-08-21 00:40:26 -0400977 sb->s_jnl_blocks[16] = inode.i_size;
978 sb->s_jnl_backup_type = EXT3_JNL_BACKUP_BLOCKS;
979 ext2fs_mark_super_dirty(fs);
Theodore Ts'o27479eb2003-08-21 08:59:38 -0400980 fs->flags &= ~EXT2_FLAG_MASTER_SB_ONLY;
Theodore Ts'oa435ec32003-08-21 00:40:26 -0400981 }
982 }
983
984 /*
985 * If the journal is already the hidden inode, then do nothing
986 */
987 if (sb->s_journal_inum == EXT2_JOURNAL_INO)
988 return;
Theodore Ts'oefc6f622008-08-27 23:07:54 -0400989
Theodore Ts'oa435ec32003-08-21 00:40:26 -0400990 /*
991 * The journal inode had better have only one link and not be readable.
992 */
993 if (inode.i_links_count != 1)
994 return;
995
996 /*
Theodore Ts'o773fd8a2001-10-06 21:26:27 -0400997 * If the filesystem is mounted, or we can't tell whether
998 * or not it's mounted, do nothing.
999 */
1000 retval = ext2fs_check_if_mounted(ctx->filesystem_name, &mount_flags);
1001 if (retval || (mount_flags & EXT2_MF_MOUNTED))
1002 return;
1003
1004 /*
1005 * If we can't find the name of the journal inode, then do
1006 * nothing.
1007 */
1008 for (cpp = journal_names; *cpp; cpp++) {
1009 retval = ext2fs_lookup(fs, EXT2_ROOT_INO, *cpp,
1010 strlen(*cpp), 0, &ino);
1011 if ((retval == 0) && (ino == sb->s_journal_inum))
1012 break;
1013 }
1014 if (*cpp == 0)
1015 return;
1016
Theodore Ts'o773fd8a2001-10-06 21:26:27 -04001017 /* We need the inode bitmap to be loaded */
1018 retval = ext2fs_read_bitmaps(fs);
1019 if (retval)
1020 return;
1021
Theodore Ts'o773fd8a2001-10-06 21:26:27 -04001022 pctx.str = *cpp;
1023 if (!fix_problem(ctx, PR_0_MOVE_JOURNAL, &pctx))
1024 return;
Theodore Ts'oefc6f622008-08-27 23:07:54 -04001025
Theodore Ts'o773fd8a2001-10-06 21:26:27 -04001026 /*
1027 * OK, we've done all the checks, let's actually move the
1028 * journal inode. Errors at this point mean we need to force
1029 * an ext2 filesystem check.
1030 */
1031 if ((retval = ext2fs_unlink(fs, EXT2_ROOT_INO, *cpp, ino, 0)) != 0)
1032 goto err_out;
1033 if ((retval = ext2fs_write_inode(fs, EXT2_JOURNAL_INO, &inode)) != 0)
1034 goto err_out;
1035 sb->s_journal_inum = EXT2_JOURNAL_INO;
1036 ext2fs_mark_super_dirty(fs);
Theodore Ts'o27479eb2003-08-21 08:59:38 -04001037 fs->flags &= ~EXT2_FLAG_MASTER_SB_ONLY;
Theodore Ts'o773fd8a2001-10-06 21:26:27 -04001038 inode.i_links_count = 0;
Theodore Ts'o1f3ad142005-04-14 14:07:53 -04001039 inode.i_dtime = ctx->now;
Theodore Ts'o773fd8a2001-10-06 21:26:27 -04001040 if ((retval = ext2fs_write_inode(fs, ino, &inode)) != 0)
1041 goto err_out;
1042
1043 group = ext2fs_group_of_ino(fs, ino);
JP Abgralle0ed7402014-03-19 19:08:39 -07001044 ext2fs_unmark_inode_bitmap2(fs->inode_map, ino);
Theodore Ts'o773fd8a2001-10-06 21:26:27 -04001045 ext2fs_mark_ib_dirty(fs);
JP Abgralle0ed7402014-03-19 19:08:39 -07001046 ext2fs_bg_free_inodes_count_set(fs, group, ext2fs_bg_free_inodes_count(fs, group) + 1);
Jose R. Santos49a73602007-10-21 21:04:03 -05001047 ext2fs_group_desc_csum_set(fs, group);
Theodore Ts'o773fd8a2001-10-06 21:26:27 -04001048 fs->super->s_free_inodes_count++;
1049 return;
1050
1051err_out:
1052 pctx.errcode = retval;
1053 fix_problem(ctx, PR_0_ERR_MOVE_JOURNAL, &pctx);
1054 fs->super->s_state &= ~EXT2_VALID_FS;
1055 ext2fs_mark_super_dirty(fs);
1056 return;
1057}
1058
Theodore Ts'ob1c52b22006-03-10 15:25:59 -05001059/*
1060 * This function makes sure the superblock hint for the external
1061 * journal is correct.
1062 */
1063int e2fsck_fix_ext3_journal_hint(e2fsck_t ctx)
1064{
1065 struct ext2_super_block *sb = ctx->fs->super;
1066 struct problem_context pctx;
1067 char uuid[37], *journal_name;
1068 struct stat st;
Theodore Ts'ob1c52b22006-03-10 15:25:59 -05001069
1070 if (!(sb->s_feature_compat & EXT3_FEATURE_COMPAT_HAS_JOURNAL) ||
1071 uuid_is_null(sb->s_journal_uuid))
1072 return 0;
1073
1074 uuid_unparse(sb->s_journal_uuid, uuid);
1075 journal_name = blkid_get_devname(ctx->blkid, "UUID", uuid);
1076 if (!journal_name)
1077 return 0;
1078
JP Abgralle0ed7402014-03-19 19:08:39 -07001079 if (stat(journal_name, &st) < 0) {
1080 free(journal_name);
Theodore Ts'ob1c52b22006-03-10 15:25:59 -05001081 return 0;
JP Abgralle0ed7402014-03-19 19:08:39 -07001082 }
Theodore Ts'ob1c52b22006-03-10 15:25:59 -05001083
1084 if (st.st_rdev != sb->s_journal_dev) {
1085 clear_problem_context(&pctx);
1086 pctx.num = st.st_rdev;
1087 if (fix_problem(ctx, PR_0_EXTERNAL_JOURNAL_HINT, &pctx)) {
1088 sb->s_journal_dev = st.st_rdev;
1089 ext2fs_mark_super_dirty(ctx->fs);
1090 }
1091 }
1092
1093 free(journal_name);
1094 return 0;
1095}