xref: /dragonfly/sys/vfs/hammer/hammer_recover.c (revision 19380330)
1 /*
2  * Copyright (c) 2008 The DragonFly Project.  All rights reserved.
3  *
4  * This code is derived from software contributed to The DragonFly Project
5  * by Matthew Dillon <dillon@backplane.com>
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted provided that the following conditions
9  * are met:
10  *
11  * 1. Redistributions of source code must retain the above copyright
12  *    notice, this list of conditions and the following disclaimer.
13  * 2. Redistributions in binary form must reproduce the above copyright
14  *    notice, this list of conditions and the following disclaimer in
15  *    the documentation and/or other materials provided with the
16  *    distribution.
17  * 3. Neither the name of The DragonFly Project nor the names of its
18  *    contributors may be used to endorse or promote products derived
19  *    from this software without specific, prior written permission.
20  *
21  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
22  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
23  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
24  * FOR A PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE
25  * COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
26  * INCIDENTAL, SPECIAL, EXEMPLARY OR CONSEQUENTIAL DAMAGES (INCLUDING,
27  * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
28  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
29  * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
30  * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
31  * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32  * SUCH DAMAGE.
33  */
34 
35 /*
36  * UNDO ALGORITHM:
37  *
38  *	The UNDO algorithm is trivial.  The nominal UNDO range in the
39  *	FIFO is determined by taking the first/next offset stored in
40  *	the volume header.  The next offset may not be correct since
41  *	UNDO flushes are not required to flush the volume header, so
42  *	the code also scans forward until it finds a discontinuous
43  *	sequence number.
44  *
45  *	The UNDOs are then scanned and executed in reverse order.  These
46  *	UNDOs are effectively just data restorations based on HAMMER offsets.
47  *
48  * REDO ALGORITHM:
49  *
50  *	REDO records are laid down in the UNDO/REDO FIFO for nominal
51  *	writes, truncations, and file extension ops.  On a per-inode
52  *	basis two types of REDO records are generated, REDO_WRITE
53  *	and REDO_TRUNC.
54  *
55  *	Essentially the recovery block will contain UNDO records backing
56  *	out partial operations and REDO records to regenerate those partial
57  *	operations guaranteed by the filesystem during recovery.
58  *
59  *	REDO generation is optional, and can also be started and then
60  *	later stopped due to excessive write()s inbetween fsyncs, or not
61  *	started at all.  Because of this the recovery code must determine
62  *	when REDOs are valid and when they are not.  Additional records are
63  *	generated to help figure it out.
64  *
65  *	The REDO_TERM_WRITE and REDO_TERM_TRUNC records are generated
66  *	during a flush cycle indicating which records the flush cycle
67  *	has synched meta-data for, and HAMMER_REDO_SYNC is generated in
68  *	each flush cycle to indicate how far back in the UNDO/REDO FIFO
69  *	the recovery code must go to find the earliest applicable REDO
70  *	record.  Applicable REDO records can be far outside the nominal
71  *	UNDO recovery range, for example if a write() lays down a REDO but
72  *	the related file is not flushed for several cycles.
73  *
74  *	The SYNC reference is to a point prior to the nominal UNDO FIFO
75  *	range, creating an extended REDO range which must be scanned.
76  *
77  *	Any REDO_WRITE/REDO_TRUNC encountered within the extended range
78  *	which have no matching REDO_TERM_WRITE/REDO_TERM_TRUNC records
79  *	prior to the start of the nominal UNDO range are applicable.
80  *	That is, any REDO_TERM_* records in the extended range but not in
81  *	the nominal undo range will mask any redo operations for prior REDO
82  *	records.  This is necessary because once the TERM is laid down
83  *	followup operations may make additional changes to the related
84  *	records but not necessarily record them as REDOs (because REDOs are
85  *	optional).
86  *
87  *	REDO_TERM_WRITE/REDO_TERM_TRUNC records in the nominal UNDO range
88  *	must be ignored since they represent meta-data flushes which are
89  *	undone by the UNDOs in that nominal UNDO range by the recovery
90  *	code.  Only REDO_TERM_* records in the extended range but not
91  *	in the nominal undo range are applicable.
92  *
93  *	The REDO_SYNC record itself always exists in the nominal UNDO range
94  *	(this is how the extended range is determined).  For recovery
95  *	purposes the most recent REDO_SYNC record is always used if several
96  *	are found.
97  *
98  * CRASHES DURING UNDO/REDO
99  *
100  *	A crash during the UNDO phase requires no additional effort.  The
101  *	UNDOs will simply be re-run again.  The state of the UNDO/REDO fifo
102  *	remains unchanged and has no re-crash issues.
103  *
104  *	A crash during the REDO phase is more complex because the REDOs
105  *	run normal filesystem ops and generate additional UNDO/REDO records.
106  *	REDO is disabled during REDO recovery and any SYNC records generated
107  *	by flushes during REDO recovery must continue to reference the
108  *	original extended range.
109  *
110  *	If multiple crashes occur and the UNDO/REDO FIFO wraps, REDO recovery
111  *	may become impossible.  This is detected when the start of the
112  *	extended range fails to have monotonically increasing sequence
113  *	numbers leading into the nominal undo range.
114  */
115 
116 #include "hammer.h"
117 
118 /*
119  * Specify the way we want to handle stage2 errors.
120  *
121  * Following values are accepted:
122  *
123  * 0 - Run redo recovery normally and fail to mount if
124  *     the operation fails (default).
125  * 1 - Run redo recovery, but don't fail to mount if the
126  *     operation fails.
127  * 2 - Completely skip redo recovery (only for severe error
128  *     conditions and/or debugging.
129  */
130 static int hammer_skip_redo = 0;
131 TUNABLE_INT("vfs.hammer.skip_redo", &hammer_skip_redo);
132 
133 /*
134  * Each rterm entry has a list of fifo offsets indicating termination
135  * points.  These are stripped as the scan progresses.
136  */
137 typedef struct hammer_rterm_entry {
138 	struct hammer_rterm_entry *next;
139 	hammer_off_t		fifo_offset;
140 } *hammer_rterm_entry_t;
141 
142 /*
143  * rterm entries sorted in RB tree are indexed by objid, flags, and offset.
144  * TRUNC entries ignore the offset.
145  */
146 typedef struct hammer_rterm {
147 	RB_ENTRY(hammer_rterm)	rb_node;
148 	int64_t			redo_objid;
149 	u_int32_t		redo_localization;
150 	u_int32_t		redo_flags;
151 	hammer_off_t		redo_offset;
152 	hammer_rterm_entry_t	term_list;
153 } *hammer_rterm_t;
154 
155 static int hammer_rterm_rb_cmp(hammer_rterm_t rt1, hammer_rterm_t rt2);
156 struct hammer_rterm_rb_tree;
157 RB_HEAD(hammer_rterm_rb_tree, hammer_rterm);
158 RB_PROTOTYPE(hammer_rterm_rb_tree, hammer_rterm, rb_node, hammer_rterm_rb_cmp);
159 
160 static int hammer_check_tail_signature(hammer_fifo_tail_t tail,
161 			hammer_off_t end_off);
162 static int hammer_check_head_signature(hammer_fifo_head_t head,
163 			hammer_off_t beg_off);
164 static void hammer_recover_copy_undo(hammer_off_t undo_offset,
165 			char *src, char *dst, int bytes);
166 static hammer_fifo_any_t hammer_recover_scan_fwd(hammer_mount_t hmp,
167 			hammer_volume_t root_volume,
168 			hammer_off_t *scan_offsetp,
169 			int *errorp, struct hammer_buffer **bufferp);
170 static hammer_fifo_any_t hammer_recover_scan_rev(hammer_mount_t hmp,
171 			hammer_volume_t root_volume,
172 			hammer_off_t *scan_offsetp,
173 			int *errorp, struct hammer_buffer **bufferp);
174 #if 0
175 static void hammer_recover_debug_dump(int w, char *buf, int bytes);
176 #endif
177 static int hammer_recover_undo(hammer_mount_t hmp, hammer_volume_t root_volume,
178 			hammer_fifo_undo_t undo);
179 static int hammer_recover_redo_rec(hammer_mount_t hmp,
180 			struct hammer_rterm_rb_tree *root,
181 			hammer_off_t redo_fifo_offset, hammer_fifo_redo_t redo);
182 static int hammer_recover_redo_run(hammer_mount_t hmp,
183 			struct hammer_rterm_rb_tree *root,
184 			hammer_off_t redo_fifo_offset, hammer_fifo_redo_t redo);
185 static void hammer_recover_redo_exec(hammer_mount_t hmp,
186 			hammer_fifo_redo_t redo);
187 
188 RB_GENERATE(hammer_rterm_rb_tree, hammer_rterm, rb_node, hammer_rterm_rb_cmp);
189 
190 /*
191  * Recover filesystem meta-data on mount.  This procedure figures out the
192  * UNDO FIFO range and runs the UNDOs backwards.  The FIFO pointers are not
193  * resynchronized by this procedure.
194  *
195  * This procedure is run near the beginning of the mount sequence, before
196  * any B-Tree or high-level accesses are enabled, and is responsible for
197  * restoring the meta-data to a consistent state.  High level HAMMER data
198  * structures (such as the B-Tree) cannot be accessed here.
199  *
200  * NOTE: No information from the root volume has been cached in the
201  *	 hammer_mount structure yet, so we need to access the root volume's
202  *	 buffer directly.
203  *
204  * NOTE:
205  */
206 int
207 hammer_recover_stage1(hammer_mount_t hmp, hammer_volume_t root_volume)
208 {
209 	hammer_blockmap_t rootmap;
210 	hammer_buffer_t buffer;
211 	hammer_off_t scan_offset;
212 	hammer_off_t scan_offset_save;
213 	hammer_off_t bytes;
214 	hammer_fifo_any_t head;
215 	hammer_off_t first_offset;
216 	hammer_off_t last_offset;
217 	u_int32_t seqno;
218 	int error;
219 	int degenerate_case = 0;
220 
221 	/*
222 	 * Examine the UNDO FIFO indices in the volume header.
223 	 */
224 	rootmap = &root_volume->ondisk->vol0_blockmap[HAMMER_ZONE_UNDO_INDEX];
225 	first_offset = rootmap->first_offset;
226 	last_offset  = rootmap->next_offset;
227 	buffer = NULL;
228 	error = 0;
229 
230 	hmp->recover_stage2_offset = 0;
231 
232 	if (first_offset > rootmap->alloc_offset ||
233 	    last_offset > rootmap->alloc_offset) {
234 		kprintf("HAMMER(%s) Illegal UNDO FIFO index range "
235 			"%016jx, %016jx limit %016jx\n",
236 			root_volume->ondisk->vol_name,
237 			(intmax_t)first_offset,
238 			(intmax_t)last_offset,
239 			(intmax_t)rootmap->alloc_offset);
240 		error = EIO;
241 		goto done;
242 	}
243 
244 	/*
245 	 * In HAMMER version 4+ filesystems the volume header does NOT
246 	 * contain definitive UNDO FIFO state.  In particular, the
247 	 * rootmap->next_offset may not be indexed completely to the
248 	 * end of the active UNDO FIFO.
249 	 */
250 	if (hmp->version >= HAMMER_VOL_VERSION_FOUR) {
251 		/*
252 		 * To find the definitive range we must first scan backwards
253 		 * from first_offset to locate the first real record and
254 		 * extract the sequence number from it.  This record is not
255 		 * part of the active undo space.
256 		 */
257 		scan_offset = first_offset;
258 		seqno = 0;
259 
260 		for (;;) {
261 			head = hammer_recover_scan_rev(hmp, root_volume,
262 						       &scan_offset,
263 						       &error, &buffer);
264 			if (error)
265 				break;
266 			if (head->head.hdr_type != HAMMER_HEAD_TYPE_PAD) {
267 				seqno = head->head.hdr_seq;
268 				break;
269 			}
270 		}
271 		if (error) {
272 			kprintf("HAMMER(%s) recovery failure "
273 				"during seqno backscan\n",
274 				root_volume->ondisk->vol_name);
275 			goto done;
276 		}
277 
278 		/*
279 		 * Scan forwards from first_offset and (seqno+1) looking
280 		 * for a sequence space discontinuity.  This denotes the
281 		 * end of the active FIFO area.
282 		 *
283 		 * NOTE: For the case where the FIFO is empty the very first
284 		 *	 record we find will be discontinuous.
285 		 *
286 		 * NOTE: Do not include trailing PADs in the scan range,
287 		 *	 and remember the returned scan_offset after a
288 		 *	 fwd iteration points to the end of the returned
289 		 *	 record.
290 		 */
291 		kprintf("HAMMER(%s) recovery check seqno=%08x\n",
292 			root_volume->ondisk->vol_name,
293 			seqno);
294 
295 		scan_offset = first_offset;
296 		scan_offset_save = scan_offset;
297 		++seqno;
298 		hmp->recover_stage2_seqno = seqno;
299 
300 		for (;;) {
301 			head = hammer_recover_scan_fwd(hmp, root_volume,
302 						       &scan_offset,
303 						       &error, &buffer);
304 			if (error)
305 				break;
306 			if (head->head.hdr_type != HAMMER_HEAD_TYPE_PAD) {
307 				if (seqno != head->head.hdr_seq) {
308 					scan_offset = scan_offset_save;
309 					break;
310 				}
311 				scan_offset_save = scan_offset;
312 				++seqno;
313 			}
314 
315 #if 0
316 			/*
317 			 * If the forward scan is grossly ahead of last_offset
318 			 * then something is wrong.  last_offset is supposed
319 			 * to be flushed out
320 			 */
321 			if (last_offset >= scan_offset) {
322 				bytes = last_offset - scan_offset;
323 			} else {
324 				bytes = rootmap->alloc_offset - scan_offset +
325 					(last_offset & HAMMER_OFF_LONG_MASK);
326 			}
327 			if (bytes >
328 			    (rootmap->alloc_offset & HAMMER_OFF_LONG_MASK) *
329 			    4 / 5) {
330 				kprintf("HAMMER(%s) recovery forward scan is "
331 					"grossly beyond the last_offset in "
332 					"the volume header, this can't be "
333 					"right.\n",
334 					root_volume->ondisk->vol_name);
335 				error = EIO;
336 				break;
337 			}
338 #endif
339 		}
340 
341 		/*
342 		 * Store the seqno.  This will be the next seqno we lay down
343 		 * when generating new UNDOs.
344 		 */
345 		hmp->undo_seqno = seqno;
346 		if (error) {
347 			kprintf("HAMMER(%s) recovery failure "
348 				"during seqno fwdscan\n",
349 				root_volume->ondisk->vol_name);
350 			goto done;
351 		}
352 		last_offset = scan_offset;
353 		kprintf("HAMMER(%s) recovery range %016jx-%016jx\n"
354 			"HAMMER(%s) recovery nexto %016jx endseqno=%08x\n",
355 			root_volume->ondisk->vol_name,
356 			(intmax_t)first_offset,
357 			(intmax_t)last_offset,
358 			root_volume->ondisk->vol_name,
359 			(intmax_t)rootmap->next_offset,
360 			seqno);
361 	}
362 
363 	/*
364 	 * Calculate the size of the active portion of the FIFO.  If the
365 	 * FIFO is empty the filesystem is clean and no further action is
366 	 * needed.
367 	 */
368 	if (last_offset >= first_offset) {
369 		bytes = last_offset - first_offset;
370 	} else {
371 		bytes = rootmap->alloc_offset - first_offset +
372 			(last_offset & HAMMER_OFF_LONG_MASK);
373 	}
374 	if (bytes == 0) {
375 		degenerate_case = 1;
376 		error = 0;
377 		goto done;
378 	}
379 
380 	kprintf("HAMMER(%s) recovery undo  %016jx-%016jx (%jd bytes)%s\n",
381 		root_volume->ondisk->vol_name,
382 		(intmax_t)first_offset,
383 		(intmax_t)last_offset,
384 		(intmax_t)bytes,
385 		(hmp->ronly ? " (RO)" : "(RW)"));
386 	if (bytes > (rootmap->alloc_offset & HAMMER_OFF_LONG_MASK)) {
387 		kprintf("Undo size is absurd, unable to mount\n");
388 		error = EIO;
389 		goto done;
390 	}
391 
392 	/*
393 	 * Scan the UNDOs backwards.
394 	 */
395 	scan_offset = last_offset;
396 
397 	while ((int64_t)bytes > 0) {
398 		KKASSERT(scan_offset != first_offset);
399 		head = hammer_recover_scan_rev(hmp, root_volume,
400 					       &scan_offset, &error, &buffer);
401 		if (error)
402 			break;
403 
404 		/*
405 		 * Normal UNDO
406 		 */
407 		error = hammer_recover_undo(hmp, root_volume, &head->undo);
408 		if (error) {
409 			kprintf("HAMMER(%s) UNDO record at %016jx failed\n",
410 				root_volume->ondisk->vol_name,
411 				(intmax_t)scan_offset - head->head.hdr_size);
412 			break;
413 		}
414 
415 		/*
416 		 * The first REDO_SYNC record encountered (scanning backwards)
417 		 * enables REDO processing.
418 		 */
419 		if (head->head.hdr_type == HAMMER_HEAD_TYPE_REDO &&
420 		    head->redo.redo_flags == HAMMER_REDO_SYNC) {
421 			if (hmp->flags & HAMMER_MOUNT_REDO_RECOVERY_REQ) {
422 				kprintf("HAMMER(%s) Ignoring extra REDO_SYNC "
423 					"records in UNDO/REDO FIFO.\n",
424 					root_volume->ondisk->vol_name
425 				);
426 			} else {
427 				hmp->flags |= HAMMER_MOUNT_REDO_RECOVERY_REQ;
428 				hmp->recover_stage2_offset =
429 					head->redo.redo_offset;
430 				kprintf("HAMMER(%s) Found REDO_SYNC %016jx\n",
431 					root_volume->ondisk->vol_name,
432 					(intmax_t)head->redo.redo_offset);
433 			}
434 		}
435 
436 		bytes -= head->head.hdr_size;
437 
438 		/*
439 		 * If too many dirty buffers have built up we have to flush'm
440 		 * out.  As long as we do not flush out the volume header
441 		 * a crash here should not cause any problems.
442 		 *
443 		 * buffer must be released so the flush can assert that
444 		 * all buffers are idle.
445 		 */
446 		if (hammer_flusher_meta_limit(hmp)) {
447 			if (buffer) {
448 				hammer_rel_buffer(buffer, 0);
449 				buffer = NULL;
450 			}
451 			if (hmp->ronly == 0) {
452 				hammer_recover_flush_buffers(hmp, root_volume,
453 							     0);
454 				kprintf("HAMMER(%s) Continuing recovery\n",
455 					root_volume->ondisk->vol_name);
456 			} else {
457 				kprintf("HAMMER(%s) Recovery failure: Insufficient buffer cache to hold dirty buffers on read-only mount!\n",
458 					root_volume->ondisk->vol_name);
459 				error = EIO;
460 				break;
461 			}
462 		}
463 	}
464 	KKASSERT(error || bytes == 0);
465 done:
466 	if (buffer) {
467 		hammer_rel_buffer(buffer, 0);
468 		buffer = NULL;
469 	}
470 
471 	/*
472 	 * After completely flushing all the recovered buffers the volume
473 	 * header will also be flushed.
474 	 */
475 	if (root_volume->io.recovered == 0) {
476 		hammer_ref_volume(root_volume);
477 		root_volume->io.recovered = 1;
478 	}
479 
480 	/*
481 	 * Finish up flushing (or discarding) recovered buffers.  FIFO
482 	 * indices in the volume header are updated to the actual undo
483 	 * range but will not be collapsed until stage 2.
484 	 */
485 	if (error == 0) {
486 		hammer_modify_volume(NULL, root_volume, NULL, 0);
487 		rootmap = &root_volume->ondisk->vol0_blockmap[HAMMER_ZONE_UNDO_INDEX];
488 		rootmap->first_offset = first_offset;
489 		rootmap->next_offset = last_offset;
490 		hammer_modify_volume_done(root_volume);
491 		if (hmp->ronly == 0)
492 			hammer_recover_flush_buffers(hmp, root_volume, 1);
493 	} else {
494 		hammer_recover_flush_buffers(hmp, root_volume, -1);
495 	}
496 	if (degenerate_case == 0) {
497 		kprintf("HAMMER(%s) recovery complete\n",
498 			root_volume->ondisk->vol_name);
499 	} else {
500 		kprintf("HAMMER(%s) mounted clean, no recovery needed\n",
501 			root_volume->ondisk->vol_name);
502 	}
503 	return (error);
504 }
505 
506 /*
507  * Execute redo operations
508  *
509  * This procedure is run at the end of the mount sequence, after the hammer
510  * mount structure has been completely initialized but before the filesystem
511  * goes live.  It can access standard cursors, the B-Tree, flush the
512  * filesystem, and so forth.
513  *
514  * This code may only be called for read-write mounts or when a mount
515  * switches from read-only to read-write.  vnodes may or may not be present.
516  *
517  * The stage1 code will have already calculated the correct FIFO range
518  * for the nominal UNDO FIFO and stored it in the rootmap.  The extended
519  * range for REDO is stored in hmp->recover_stage2_offset.
520  */
521 int
522 hammer_recover_stage2(hammer_mount_t hmp, hammer_volume_t root_volume)
523 {
524 	hammer_blockmap_t rootmap;
525 	hammer_buffer_t buffer;
526 	hammer_off_t scan_offset;
527 	hammer_off_t oscan_offset;
528 	hammer_off_t bytes;
529 	hammer_off_t ext_bytes;
530 	hammer_fifo_any_t head;
531 	hammer_off_t first_offset;
532 	hammer_off_t last_offset;
533 	hammer_off_t ext_offset;
534 	struct hammer_rterm_rb_tree rterm_root;
535 	u_int32_t seqno;
536 	int error;
537 	int verbose = 0;
538 	int dorscan;
539 
540 	/*
541 	 * Stage 2 can only be run on a RW mount, or when the mount is
542 	 * switched from RO to RW.
543 	 */
544 	KKASSERT(hmp->ronly == 0);
545 	RB_INIT(&rterm_root);
546 
547 	if (hammer_skip_redo == 1)
548 		kprintf("HAMMER(%s) recovery redo marked as optional\n",
549 		    root_volume->ondisk->vol_name);
550 
551 	if (hammer_skip_redo == 2) {
552 		kprintf("HAMMER(%s) recovery redo skipped.\n",
553 		    root_volume->ondisk->vol_name);
554 		return (0);
555 	}
556 
557 	/*
558 	 * Examine the UNDO FIFO.  If it is empty the filesystem is clean
559 	 * and no action need be taken.
560 	 */
561 	rootmap = &root_volume->ondisk->vol0_blockmap[HAMMER_ZONE_UNDO_INDEX];
562 	first_offset = rootmap->first_offset;
563 	last_offset  = rootmap->next_offset;
564 	if (first_offset == last_offset) {
565 		KKASSERT((hmp->flags & HAMMER_MOUNT_REDO_RECOVERY_REQ) == 0);
566 		return(0);
567 	}
568 
569 	/*
570 	 * Stage2 must only be run once, and will not be run at all
571 	 * if Stage1 did not find a REDO_SYNC record.
572 	 */
573 	error = 0;
574 	buffer = NULL;
575 
576 	if ((hmp->flags & HAMMER_MOUNT_REDO_RECOVERY_REQ) == 0)
577 		goto done;
578 	hmp->flags &= ~HAMMER_MOUNT_REDO_RECOVERY_REQ;
579 	hmp->flags |= HAMMER_MOUNT_REDO_RECOVERY_RUN;
580 	ext_offset = hmp->recover_stage2_offset;
581 	if (ext_offset == 0) {
582 		kprintf("HAMMER(%s) REDO stage specified but no REDO_SYNC "
583 			"offset, ignoring\n",
584 			root_volume->ondisk->vol_name);
585 		goto done;
586 	}
587 
588 	/*
589 	 * Calculate nominal UNDO range (this is not yet the extended
590 	 * range).
591 	 */
592 	if (last_offset >= first_offset) {
593 		bytes = last_offset - first_offset;
594 	} else {
595 		bytes = rootmap->alloc_offset - first_offset +
596 			(last_offset & HAMMER_OFF_LONG_MASK);
597 	}
598 	kprintf("HAMMER(%s) recovery redo  %016jx-%016jx (%jd bytes)%s\n",
599 		root_volume->ondisk->vol_name,
600 		(intmax_t)first_offset,
601 		(intmax_t)last_offset,
602 		(intmax_t)bytes,
603 		(hmp->ronly ? " (RO)" : "(RW)"));
604 	verbose = 1;
605 	if (bytes > (rootmap->alloc_offset & HAMMER_OFF_LONG_MASK)) {
606 		kprintf("Undo size is absurd, unable to mount\n");
607 		error = EIO;
608 		goto fatal;
609 	}
610 
611 	/*
612 	 * Scan the REDOs backwards collecting REDO_TERM_* information.
613 	 * This information is only collected for the extended range,
614 	 * non-inclusive of any TERMs in the nominal UNDO range.
615 	 *
616 	 * If the stage2 extended range is inside the nominal undo range
617 	 * we have nothing to scan.
618 	 *
619 	 * This must fit in memory!
620 	 */
621 	if (first_offset < last_offset) {
622 		/*
623 		 * [      first_offset........last_offset      ]
624 		 */
625 		if (ext_offset < first_offset) {
626 			dorscan = 1;
627 			ext_bytes = first_offset - ext_offset;
628 		} else if (ext_offset > last_offset) {
629 			dorscan = 1;
630 			ext_bytes = (rootmap->alloc_offset - ext_offset) +
631 				    (first_offset & HAMMER_OFF_LONG_MASK);
632 		} else {
633 			ext_bytes = -(ext_offset - first_offset);
634 			dorscan = 0;
635 		}
636 	} else {
637 		/*
638 		 * [......last_offset         first_offset.....]
639 		 */
640 		if (ext_offset < last_offset) {
641 			ext_bytes = -((rootmap->alloc_offset - first_offset) +
642 				    (ext_offset & HAMMER_OFF_LONG_MASK));
643 			dorscan = 0;
644 		} else if (ext_offset > first_offset) {
645 			ext_bytes = -(ext_offset - first_offset);
646 			dorscan = 0;
647 		} else {
648 			ext_bytes = first_offset - ext_offset;
649 			dorscan = 1;
650 		}
651 	}
652 
653 	if (dorscan) {
654 		scan_offset = first_offset;
655 		kprintf("HAMMER(%s) Find extended redo  %016jx, %jd extbytes\n",
656 			root_volume->ondisk->vol_name,
657 			(intmax_t)ext_offset,
658 			(intmax_t)ext_bytes);
659 		seqno = hmp->recover_stage2_seqno - 1;
660 		for (;;) {
661 			head = hammer_recover_scan_rev(hmp, root_volume,
662 						       &scan_offset,
663 						       &error, &buffer);
664 			if (error)
665 				break;
666 			if (head->head.hdr_type != HAMMER_HEAD_TYPE_PAD) {
667 				if (head->head.hdr_seq != seqno) {
668 					error = ERANGE;
669 					break;
670 				}
671 				error = hammer_recover_redo_rec(
672 						hmp, &rterm_root,
673 						scan_offset, &head->redo);
674 				--seqno;
675 			}
676 			if (scan_offset == ext_offset)
677 				break;
678 		}
679 		if (error) {
680 			kprintf("HAMMER(%s) Find extended redo failed %d, "
681 				"unable to run REDO\n",
682 				root_volume->ondisk->vol_name,
683 				error);
684 			goto done;
685 		}
686 	} else {
687 		kprintf("HAMMER(%s) Embedded extended redo %016jx, "
688 			"%jd extbytes\n",
689 			root_volume->ondisk->vol_name,
690 			(intmax_t)ext_offset,
691 			(intmax_t)ext_bytes);
692 	}
693 
694 	/*
695 	 * Scan the REDO forwards through the entire extended range.
696 	 * Anything with a previously recorded matching TERM is discarded.
697 	 */
698 	scan_offset = ext_offset;
699 	bytes += ext_bytes;
700 
701 	/*
702 	 * NOTE: when doing a forward scan the returned scan_offset is
703 	 *	 for the record following the returned record, so we
704 	 *	 have to play a bit.
705 	 */
706 	while ((int64_t)bytes > 0) {
707 		KKASSERT(scan_offset != last_offset);
708 
709 		oscan_offset = scan_offset;
710 		head = hammer_recover_scan_fwd(hmp, root_volume,
711 					       &scan_offset, &error, &buffer);
712 		if (error)
713 			break;
714 
715 		error = hammer_recover_redo_run(hmp, &rterm_root,
716 						oscan_offset, &head->redo);
717 		if (error) {
718 			kprintf("HAMMER(%s) UNDO record at %016jx failed\n",
719 				root_volume->ondisk->vol_name,
720 				(intmax_t)scan_offset - head->head.hdr_size);
721 			break;
722 		}
723 		bytes -= head->head.hdr_size;
724 	}
725 	KKASSERT(error || bytes == 0);
726 
727 done:
728 	if (buffer) {
729 		hammer_rel_buffer(buffer, 0);
730 		buffer = NULL;
731 	}
732 
733 	/*
734 	 * Cleanup rterm tree
735 	 */
736 	{
737 		hammer_rterm_t rterm;
738 		hammer_rterm_entry_t rte;
739 
740 		while ((rterm = RB_ROOT(&rterm_root)) != NULL) {
741 			RB_REMOVE(hammer_rterm_rb_tree, &rterm_root, rterm);
742 			while ((rte = rterm->term_list) != NULL) {
743 				rterm->term_list = rte->next;
744 				kfree(rte, hmp->m_misc);
745 			}
746 			kfree(rterm, hmp->m_misc);
747 		}
748 	}
749 
750 	/*
751 	 * Finish up flushing (or discarding) recovered buffers by executing
752 	 * a normal flush cycle.  Setting HMNT_UNDO_DIRTY bypasses degenerate
753 	 * case tests and forces the flush in order to update the FIFO indices.
754 	 *
755 	 * If a crash occurs during the flush the entire undo/redo will be
756 	 * re-run during recovery on the next mount.
757 	 */
758 	if (error == 0) {
759 		if (rootmap->first_offset != rootmap->next_offset)
760 			hmp->hflags |= HMNT_UNDO_DIRTY;
761 		hammer_flusher_sync(hmp);
762 	}
763 fatal:
764 	hmp->flags &= ~HAMMER_MOUNT_REDO_RECOVERY_RUN;
765 	if (verbose) {
766 		kprintf("HAMMER(%s) End redo recovery\n",
767 			root_volume->ondisk->vol_name);
768 	}
769 
770 	if (error && hammer_skip_redo == 1)
771 		kprintf("HAMMER(%s) recovery redo error %d, "
772 		    " skipping.\n", root_volume->ondisk->vol_name,
773 		    error);
774 
775 	return (hammer_skip_redo ? 0 : error);
776 }
777 
778 /*
779  * Scan backwards from *scan_offsetp, return the FIFO record prior to the
780  * record at *scan_offsetp or NULL if an error occured.
781  *
782  * On return *scan_offsetp will be the offset of the returned record.
783  */
784 hammer_fifo_any_t
785 hammer_recover_scan_rev(hammer_mount_t hmp, hammer_volume_t root_volume,
786 			hammer_off_t *scan_offsetp,
787 			int *errorp, struct hammer_buffer **bufferp)
788 {
789 	hammer_off_t scan_offset;
790 	hammer_blockmap_t rootmap;
791 	hammer_fifo_any_t head;
792 	hammer_fifo_tail_t tail;
793 
794 	rootmap = &root_volume->ondisk->vol0_blockmap[HAMMER_ZONE_UNDO_INDEX];
795 	scan_offset = *scan_offsetp;
796 
797 	if (hammer_debug_general & 0x0080)
798 		kprintf("rev scan_offset %016jx\n", (intmax_t)scan_offset);
799 	if (scan_offset == HAMMER_ZONE_ENCODE(HAMMER_ZONE_UNDO_INDEX, 0))
800 		scan_offset = rootmap->alloc_offset;
801 	if (scan_offset - sizeof(*tail) <
802 	    HAMMER_ZONE_ENCODE(HAMMER_ZONE_UNDO_INDEX, 0)) {
803 		kprintf("HAMMER(%s) UNDO record at %016jx FIFO underflow\n",
804 			root_volume->ondisk->vol_name,
805 			(intmax_t)scan_offset);
806 		*errorp = EIO;
807 		return (NULL);
808 	}
809 	tail = hammer_bread(hmp, scan_offset - sizeof(*tail),
810 			    errorp, bufferp);
811 	if (*errorp) {
812 		kprintf("HAMMER(%s) Unable to read UNDO TAIL "
813 			"at %016jx\n",
814 			root_volume->ondisk->vol_name,
815 			(intmax_t)scan_offset - sizeof(*tail));
816 		return (NULL);
817 	}
818 
819 	if (hammer_check_tail_signature(tail, scan_offset) != 0) {
820 		kprintf("HAMMER(%s) Illegal UNDO TAIL signature "
821 			"at %016jx\n",
822 			root_volume->ondisk->vol_name,
823 			(intmax_t)scan_offset - sizeof(*tail));
824 		*errorp = EIO;
825 		return (NULL);
826 	}
827 	head = (void *)((char *)tail + sizeof(*tail) - tail->tail_size);
828 	*scan_offsetp = scan_offset - head->head.hdr_size;
829 
830 	return (head);
831 }
832 
833 /*
834  * Scan forwards from *scan_offsetp, return the FIFO record or NULL if
835  * an error occured.
836  *
837  * On return *scan_offsetp will be the offset of the record following
838  * the returned record.
839  */
840 hammer_fifo_any_t
841 hammer_recover_scan_fwd(hammer_mount_t hmp, hammer_volume_t root_volume,
842 			hammer_off_t *scan_offsetp,
843 			int *errorp, struct hammer_buffer **bufferp)
844 {
845 	hammer_off_t scan_offset;
846 	hammer_blockmap_t rootmap;
847 	hammer_fifo_any_t head;
848 
849 	rootmap = &root_volume->ondisk->vol0_blockmap[HAMMER_ZONE_UNDO_INDEX];
850 	scan_offset = *scan_offsetp;
851 
852 	if (hammer_debug_general & 0x0080)
853 		kprintf("fwd scan_offset %016jx\n", (intmax_t)scan_offset);
854 	if (scan_offset == rootmap->alloc_offset)
855 		scan_offset = HAMMER_ZONE_ENCODE(HAMMER_ZONE_UNDO_INDEX, 0);
856 
857 	head = hammer_bread(hmp, scan_offset, errorp, bufferp);
858 	if (*errorp) {
859 		kprintf("HAMMER(%s) Unable to read UNDO HEAD at %016jx\n",
860 			root_volume->ondisk->vol_name,
861 			(intmax_t)scan_offset);
862 		return (NULL);
863 	}
864 
865 	if (hammer_check_head_signature(&head->head, scan_offset) != 0) {
866 		kprintf("HAMMER(%s) Illegal UNDO TAIL signature "
867 			"at %016jx\n",
868 			root_volume->ondisk->vol_name,
869 			(intmax_t)scan_offset);
870 		*errorp = EIO;
871 		return (NULL);
872 	}
873 	scan_offset += head->head.hdr_size;
874 	if (scan_offset == rootmap->alloc_offset)
875 		scan_offset = HAMMER_ZONE_ENCODE(HAMMER_ZONE_UNDO_INDEX, 0);
876 	*scan_offsetp = scan_offset;
877 
878 	return (head);
879 }
880 
881 /*
882  * Helper function for hammer_check_{head,tail}_signature().  Check stuff
883  * once the head and tail has been established.
884  *
885  * This function validates the entire FIFO record wrapper.
886  */
887 static __inline
888 int
889 _hammer_check_signature(hammer_fifo_head_t head, hammer_fifo_tail_t tail,
890 			hammer_off_t beg_off)
891 {
892 	hammer_off_t end_off;
893 	u_int32_t crc;
894 	int bytes;
895 
896 	/*
897 	 * Check signatures.  The tail signature is allowed to be the
898 	 * head signature only for 8-byte PADs.
899 	 */
900 	if (head->hdr_signature != HAMMER_HEAD_SIGNATURE) {
901 		kprintf("HAMMER: FIFO record bad head signature "
902 			"%04x at %016jx\n",
903 			head->hdr_signature,
904 			(intmax_t)beg_off);
905 		return(2);
906 	}
907 	if (head->hdr_size < HAMMER_HEAD_ALIGN ||
908 	    (head->hdr_size & HAMMER_HEAD_ALIGN_MASK)) {
909 		kprintf("HAMMER: FIFO record unaligned or bad size"
910 			"%04x at %016jx\n",
911 			head->hdr_size,
912 			(intmax_t)beg_off);
913 		return(2);
914 	}
915 	end_off = beg_off + head->hdr_size;
916 
917 	if (head->hdr_type != HAMMER_HEAD_TYPE_PAD ||
918 	    (size_t)(end_off - beg_off) != sizeof(*tail)) {
919 		if (head->hdr_type != tail->tail_type) {
920 			kprintf("HAMMER: FIFO record head/tail type mismatch "
921 				"%04x %04x at %016jx\n",
922 				head->hdr_type, tail->tail_type,
923 				(intmax_t)beg_off);
924 			return(2);
925 		}
926 		if (head->hdr_size != tail->tail_size) {
927 			kprintf("HAMMER: FIFO record head/tail size mismatch "
928 				"%04x %04x at %016jx\n",
929 				head->hdr_size, tail->tail_size,
930 				(intmax_t)beg_off);
931 			return(2);
932 		}
933 		if (tail->tail_signature != HAMMER_TAIL_SIGNATURE) {
934 			kprintf("HAMMER: FIFO record bad tail signature "
935 				"%04x at %016jx\n",
936 				tail->tail_signature,
937 				(intmax_t)beg_off);
938 			return(3);
939 		}
940 	}
941 
942 	/*
943 	 * Non-PAD records must have a CRC and must be sized at
944 	 * least large enough to fit the head and tail.
945 	 */
946 	if (head->hdr_type != HAMMER_HEAD_TYPE_PAD) {
947 		crc = crc32(head, HAMMER_FIFO_HEAD_CRCOFF) ^
948 		      crc32(head + 1, head->hdr_size - sizeof(*head));
949 		if (head->hdr_crc != crc) {
950 			kprintf("HAMMER: FIFO record CRC failed %08x %08x "
951 				"at %016jx\n",
952 				head->hdr_crc, crc,
953 				(intmax_t)beg_off);
954 			return(EIO);
955 		}
956 		if (head->hdr_size < sizeof(*head) + sizeof(*tail)) {
957 			kprintf("HAMMER: FIFO record too small "
958 				"%04x at %016jx\n",
959 				head->hdr_size,
960 				(intmax_t)beg_off);
961 			return(EIO);
962 		}
963 	}
964 
965 	/*
966 	 * Check the tail
967 	 */
968 	bytes = head->hdr_size;
969 	tail = (void *)((char *)head + bytes - sizeof(*tail));
970 	if (tail->tail_size != head->hdr_size) {
971 		kprintf("HAMMER: Bad tail size %04x vs %04x at %016jx\n",
972 			tail->tail_size, head->hdr_size,
973 			(intmax_t)beg_off);
974 		return(EIO);
975 	}
976 	if (tail->tail_type != head->hdr_type) {
977 		kprintf("HAMMER: Bad tail type %04x vs %04x at %016jx\n",
978 			tail->tail_type, head->hdr_type,
979 			(intmax_t)beg_off);
980 		return(EIO);
981 	}
982 
983 	return(0);
984 }
985 
986 /*
987  * Check that the FIFO record is in-bounds given the head and the
988  * hammer offset.
989  *
990  * Also checks that the head and tail structures agree with each other,
991  * but does not check beyond the signature, type, and size.
992  */
993 static int
994 hammer_check_head_signature(hammer_fifo_head_t head, hammer_off_t beg_off)
995 {
996 	hammer_fifo_tail_t tail;
997 	hammer_off_t end_off;
998 
999 	/*
1000 	 * head overlaps buffer boundary.  This could be a PAD so only
1001 	 * check the minimum PAD size here.
1002 	 */
1003 	if (((beg_off + sizeof(*tail) - 1) ^ (beg_off)) & ~HAMMER_BUFMASK64)
1004 		return(1);
1005 
1006 	/*
1007 	 * Calculate the ending offset and make sure the record does
1008 	 * not cross a buffer boundary.
1009 	 */
1010 	end_off = beg_off + head->hdr_size;
1011 	if ((beg_off ^ (end_off - 1)) & ~HAMMER_BUFMASK64)
1012 		return(1);
1013 	tail = (void *)((char *)head + head->hdr_size - sizeof(*tail));
1014 	return (_hammer_check_signature(head, tail, beg_off));
1015 }
1016 
1017 /*
1018  * Check that the FIFO record is in-bounds given the tail and the
1019  * hammer offset.  The offset is pointing at the ending boundary of the
1020  * record.
1021  *
1022  * Also checks that the head and tail structures agree with each other,
1023  * but does not check beyond the signature, type, and size.
1024  */
1025 static int
1026 hammer_check_tail_signature(hammer_fifo_tail_t tail, hammer_off_t end_off)
1027 {
1028 	hammer_fifo_head_t head;
1029 	hammer_off_t beg_off;
1030 
1031 	/*
1032 	 * tail overlaps buffer boundary
1033 	 */
1034 	if (((end_off - sizeof(*tail)) ^ (end_off - 1)) & ~HAMMER_BUFMASK64)
1035 		return(1);
1036 
1037 	/*
1038 	 * Calculate the begining offset and make sure the record does
1039 	 * not cross a buffer boundary.
1040 	 */
1041 	beg_off = end_off - tail->tail_size;
1042 	if ((beg_off ^ (end_off - 1)) & ~HAMMER_BUFMASK64)
1043 		return(1);
1044 	head = (void *)((char *)tail + sizeof(*tail) - tail->tail_size);
1045 	return (_hammer_check_signature(head, tail, beg_off));
1046 }
1047 
1048 static int
1049 hammer_recover_undo(hammer_mount_t hmp, hammer_volume_t root_volume,
1050 		    hammer_fifo_undo_t undo)
1051 {
1052 	hammer_volume_t volume;
1053 	hammer_buffer_t buffer;
1054 	hammer_off_t buf_offset;
1055 	int zone;
1056 	int error;
1057 	int vol_no;
1058 	int bytes;
1059 	u_int32_t offset;
1060 
1061 	/*
1062 	 * Only process UNDO records.  Flag if we find other records to
1063 	 * optimize stage2 recovery.
1064 	 */
1065 	if (undo->head.hdr_type != HAMMER_HEAD_TYPE_UNDO)
1066 		return(0);
1067 
1068 	/*
1069 	 * Validate the UNDO record.
1070 	 */
1071 	bytes = undo->head.hdr_size - sizeof(*undo) -
1072 		sizeof(struct hammer_fifo_tail);
1073 	if (bytes < 0 || undo->undo_data_bytes < 0 ||
1074 	    undo->undo_data_bytes > bytes) {
1075 		kprintf("HAMMER: Corrupt UNDO record, undo_data_bytes %d/%d\n",
1076 			undo->undo_data_bytes, bytes);
1077 		return(EIO);
1078 	}
1079 
1080 	bytes = undo->undo_data_bytes;
1081 
1082 	/*
1083 	 * The undo offset may only be a zone-1 or zone-2 offset.
1084 	 *
1085 	 * Currently we only support a zone-1 offset representing the
1086 	 * volume header.
1087 	 */
1088 	zone = HAMMER_ZONE_DECODE(undo->undo_offset);
1089 	offset = undo->undo_offset & HAMMER_BUFMASK;
1090 
1091 	if (offset + bytes > HAMMER_BUFSIZE) {
1092 		kprintf("HAMMER: Corrupt UNDO record, bad offset\n");
1093 		return (EIO);
1094 	}
1095 
1096 	switch(zone) {
1097 	case HAMMER_ZONE_RAW_VOLUME_INDEX:
1098 		vol_no = HAMMER_VOL_DECODE(undo->undo_offset);
1099 		volume = hammer_get_volume(hmp, vol_no, &error);
1100 		if (volume == NULL) {
1101 			kprintf("HAMMER: UNDO record, "
1102 				"cannot access volume %d\n", vol_no);
1103 			break;
1104 		}
1105 		hammer_modify_volume(NULL, volume, NULL, 0);
1106 		hammer_recover_copy_undo(undo->undo_offset,
1107 					 (char *)(undo + 1),
1108 					 (char *)volume->ondisk + offset,
1109 					 bytes);
1110 		hammer_modify_volume_done(volume);
1111 
1112 		/*
1113 		 * Multiple modifications may be made to the same buffer.
1114 		 * Also, the volume header cannot be written out until
1115 		 * everything else has been flushed.  This also
1116 		 * covers the read-only case by preventing the kernel from
1117 		 * flushing the buffer.
1118 		 */
1119 		if (volume->io.recovered == 0)
1120 			volume->io.recovered = 1;
1121 		else
1122 			hammer_rel_volume(volume, 0);
1123 		break;
1124 	case HAMMER_ZONE_RAW_BUFFER_INDEX:
1125 		buf_offset = undo->undo_offset & ~HAMMER_BUFMASK64;
1126 		buffer = hammer_get_buffer(hmp, buf_offset, HAMMER_BUFSIZE,
1127 					   0, &error);
1128 		if (buffer == NULL) {
1129 			kprintf("HAMMER: UNDO record, "
1130 				"cannot access buffer %016jx\n",
1131 				(intmax_t)undo->undo_offset);
1132 			break;
1133 		}
1134 		hammer_modify_buffer(NULL, buffer, NULL, 0);
1135 		hammer_recover_copy_undo(undo->undo_offset,
1136 					 (char *)(undo + 1),
1137 					 (char *)buffer->ondisk + offset,
1138 					 bytes);
1139 		hammer_modify_buffer_done(buffer);
1140 
1141 		/*
1142 		 * Multiple modifications may be made to the same buffer,
1143 		 * improve performance by delaying the flush.  This also
1144 		 * covers the read-only case by preventing the kernel from
1145 		 * flushing the buffer.
1146 		 */
1147 		if (buffer->io.recovered == 0)
1148 			buffer->io.recovered = 1;
1149 		else
1150 			hammer_rel_buffer(buffer, 0);
1151 		break;
1152 	default:
1153 		kprintf("HAMMER: Corrupt UNDO record\n");
1154 		error = EIO;
1155 	}
1156 	return (error);
1157 }
1158 
1159 static void
1160 hammer_recover_copy_undo(hammer_off_t undo_offset,
1161 			 char *src, char *dst, int bytes)
1162 {
1163 	if (hammer_debug_general & 0x0080) {
1164 		kprintf("UNDO %016jx: %d\n",
1165 			(intmax_t)undo_offset, bytes);
1166 	}
1167 #if 0
1168 	kprintf("UNDO %016jx:", (intmax_t)undo_offset);
1169 	hammer_recover_debug_dump(22, dst, bytes);
1170 	kprintf("%22s", "to:");
1171 	hammer_recover_debug_dump(22, src, bytes);
1172 #endif
1173 	bcopy(src, dst, bytes);
1174 }
1175 
1176 /*
1177  * Record HAMMER_REDO_TERM_WRITE and HAMMER_REDO_TERM_TRUNC operations
1178  * during the backwards scan of the extended UNDO/REDO FIFO.  This scan
1179  * does not include the nominal UNDO range, just the extended range.
1180  */
1181 int
1182 hammer_recover_redo_rec(hammer_mount_t hmp, struct hammer_rterm_rb_tree *root,
1183 			hammer_off_t scan_offset, hammer_fifo_redo_t redo)
1184 {
1185 	hammer_rterm_t rterm;
1186 	hammer_rterm_t nrterm;
1187 	hammer_rterm_entry_t rte;
1188 
1189 	if (redo->head.hdr_type != HAMMER_HEAD_TYPE_REDO)
1190 		return(0);
1191 	if (redo->redo_flags != HAMMER_REDO_TERM_WRITE &&
1192 	    redo->redo_flags != HAMMER_REDO_TERM_TRUNC) {
1193 		return(0);
1194 	}
1195 
1196 	nrterm = kmalloc(sizeof(*nrterm), hmp->m_misc, M_WAITOK|M_ZERO);
1197 	nrterm->redo_objid = redo->redo_objid;
1198 	nrterm->redo_localization = redo->redo_localization;
1199 	nrterm->redo_flags = redo->redo_flags;
1200 	nrterm->redo_offset = redo->redo_offset;
1201 
1202 	rterm = RB_INSERT(hammer_rterm_rb_tree, root, nrterm);
1203 	if (rterm)
1204 		kfree(nrterm, hmp->m_misc);
1205 	else
1206 		rterm = nrterm;
1207 
1208 	if (bootverbose) {
1209 		kprintf("record record %016jx objid %016jx "
1210 			"offset %016jx flags %08x\n",
1211 			(intmax_t)scan_offset,
1212 			(intmax_t)redo->redo_objid,
1213 			(intmax_t)redo->redo_offset,
1214 			(int)redo->redo_flags);
1215 	}
1216 
1217 	/*
1218 	 * Scan in reverse order, rte prepended, so the rte list will be
1219 	 * in forward order.
1220 	 */
1221 	rte = kmalloc(sizeof(*rte), hmp->m_misc, M_WAITOK|M_ZERO);
1222 	rte->fifo_offset = scan_offset;
1223 	rte->next = rterm->term_list;
1224 	rterm->term_list = rte;
1225 
1226 	return(0);
1227 }
1228 
1229 /*
1230  * Execute HAMMER_REDO_WRITE and HAMMER_REDO_TRUNC operations during
1231  * the forwards scan of the entire extended UNDO/REDO FIFO range.
1232  *
1233  * Records matching previously recorded TERMs have already been committed
1234  * and are ignored.
1235  */
1236 int
1237 hammer_recover_redo_run(hammer_mount_t hmp, struct hammer_rterm_rb_tree *root,
1238 			hammer_off_t scan_offset, hammer_fifo_redo_t redo)
1239 {
1240 	struct hammer_rterm rtval;
1241 	hammer_rterm_t rterm;
1242 	hammer_rterm_entry_t rte;
1243 
1244 	if (redo->head.hdr_type != HAMMER_HEAD_TYPE_REDO)
1245 		return(0);
1246 
1247 	switch(redo->redo_flags) {
1248 	case HAMMER_REDO_WRITE:
1249 	case HAMMER_REDO_TRUNC:
1250 		/*
1251 		 * We hit a REDO request.  The REDO request is only executed
1252 		 * if there is no matching TERM.
1253 		 */
1254 		bzero(&rtval, sizeof(rtval));
1255 		rtval.redo_objid = redo->redo_objid;
1256 		rtval.redo_localization = redo->redo_localization;
1257 		rtval.redo_offset = redo->redo_offset;
1258 		rtval.redo_flags = (redo->redo_flags == HAMMER_REDO_WRITE) ?
1259 				   HAMMER_REDO_TERM_WRITE :
1260 				   HAMMER_REDO_TERM_TRUNC;
1261 
1262 		rterm = RB_FIND(hammer_rterm_rb_tree, root, &rtval);
1263 		if (rterm) {
1264 			if (bootverbose) {
1265 				kprintf("ignore record %016jx objid %016jx "
1266 					"offset %016jx flags %08x\n",
1267 					(intmax_t)scan_offset,
1268 					(intmax_t)redo->redo_objid,
1269 					(intmax_t)redo->redo_offset,
1270 					(int)redo->redo_flags);
1271 			}
1272 			break;
1273 		}
1274 		if (bootverbose) {
1275 			kprintf("run    record %016jx objid %016jx "
1276 				"offset %016jx flags %08x\n",
1277 				(intmax_t)scan_offset,
1278 				(intmax_t)redo->redo_objid,
1279 				(intmax_t)redo->redo_offset,
1280 				(int)redo->redo_flags);
1281 		}
1282 
1283 		/*
1284 		 * Redo stage2 can access a live filesystem, acquire the
1285 		 * vnode.
1286 		 */
1287 		hammer_recover_redo_exec(hmp, redo);
1288 		break;
1289 	case HAMMER_REDO_TERM_WRITE:
1290 	case HAMMER_REDO_TERM_TRUNC:
1291 		/*
1292 		 * As we encounter TERMs in the forward scan we remove
1293 		 * them.  Once the forward scan hits the nominal undo range
1294 		 * there will be no more recorded TERMs.
1295 		 */
1296 		bzero(&rtval, sizeof(rtval));
1297 		rtval.redo_objid = redo->redo_objid;
1298 		rtval.redo_localization = redo->redo_localization;
1299 		rtval.redo_flags = redo->redo_flags;
1300 		rtval.redo_offset = redo->redo_offset;
1301 
1302 		rterm = RB_FIND(hammer_rterm_rb_tree, root, &rtval);
1303 		if (rterm) {
1304 			if ((rte = rterm->term_list) != NULL) {
1305 				KKASSERT(rte->fifo_offset == scan_offset);
1306 				rterm->term_list = rte->next;
1307 				kfree(rte, hmp->m_misc);
1308 			}
1309 		}
1310 		break;
1311 	}
1312 	return(0);
1313 }
1314 
1315 static void
1316 hammer_recover_redo_exec(hammer_mount_t hmp, hammer_fifo_redo_t redo)
1317 {
1318 	struct hammer_transaction trans;
1319 	struct vattr va;
1320 	struct hammer_inode *ip;
1321 	struct vnode *vp = NULL;
1322 	int error;
1323 
1324 	hammer_start_transaction(&trans, hmp);
1325 
1326 	ip = hammer_get_inode(&trans, NULL, redo->redo_objid,
1327 			      HAMMER_MAX_TID, redo->redo_localization,
1328 			      0, &error);
1329 	if (ip == NULL) {
1330 		kprintf("unable to find objid %016jx:%08x\n",
1331 			(intmax_t)redo->redo_objid, redo->redo_localization);
1332 		goto done2;
1333 	}
1334 	error = hammer_get_vnode(ip, &vp);
1335 	if (error) {
1336 		kprintf("unable to acquire vnode for %016jx:%08x\n",
1337 			(intmax_t)redo->redo_objid, redo->redo_localization);
1338 		goto done1;
1339 	}
1340 
1341 	switch(redo->redo_flags) {
1342 	case HAMMER_REDO_WRITE:
1343 		error = VOP_OPEN(vp, FREAD|FWRITE, proc0.p_ucred, NULL);
1344 		if (error) {
1345 			kprintf("vn_rdwr open %016jx:%08x returned %d\n",
1346 				(intmax_t)redo->redo_objid,
1347 				redo->redo_localization, error);
1348 			break;
1349 		}
1350 		vn_unlock(vp);
1351 		error = vn_rdwr(UIO_WRITE, vp, (void *)(redo + 1),
1352 				redo->redo_data_bytes,
1353 				redo->redo_offset, UIO_SYSSPACE,
1354 				0, proc0.p_ucred, NULL);
1355 		vn_lock(vp, LK_EXCLUSIVE | LK_RETRY);
1356 		if (error) {
1357 			kprintf("write %016jx:%08x returned %d\n",
1358 				(intmax_t)redo->redo_objid,
1359 				redo->redo_localization, error);
1360 		}
1361 		VOP_CLOSE(vp, FREAD|FWRITE);
1362 		break;
1363 	case HAMMER_REDO_TRUNC:
1364 		VATTR_NULL(&va);
1365 		va.va_size = redo->redo_offset;
1366 		error = VOP_SETATTR(vp, &va, proc0.p_ucred);
1367 		if (error) {
1368 			kprintf("setattr offset %016jx error %d\n",
1369 				(intmax_t)redo->redo_offset, error);
1370 		}
1371 		break;
1372 	}
1373 	vput(vp);
1374 done1:
1375 	hammer_rel_inode(ip, 0);
1376 done2:
1377 	hammer_done_transaction(&trans);
1378 }
1379 
1380 /*
1381  * RB tree compare function.  Note that REDO_TERM_TRUNC ops ignore
1382  * the offset.
1383  *
1384  * WRITE@0 TERM@0 WRITE@0 .... (no TERM@0) etc.
1385  */
1386 static int
1387 hammer_rterm_rb_cmp(hammer_rterm_t rt1, hammer_rterm_t rt2)
1388 {
1389 	if (rt1->redo_objid < rt2->redo_objid)
1390 		return(-1);
1391 	if (rt1->redo_objid > rt2->redo_objid)
1392 		return(1);
1393 	if (rt1->redo_localization < rt2->redo_localization)
1394 		return(-1);
1395 	if (rt1->redo_localization > rt2->redo_localization)
1396 		return(1);
1397 	if (rt1->redo_flags < rt2->redo_flags)
1398 		return(-1);
1399 	if (rt1->redo_flags > rt2->redo_flags)
1400 		return(1);
1401 	if (rt1->redo_flags != HAMMER_REDO_TERM_TRUNC) {
1402 		if (rt1->redo_offset < rt2->redo_offset)
1403 			return(-1);
1404 		if (rt1->redo_offset > rt2->redo_offset)
1405 			return(1);
1406 	}
1407 	return(0);
1408 }
1409 
1410 #if 0
1411 
1412 static void
1413 hammer_recover_debug_dump(int w, char *buf, int bytes)
1414 {
1415 	int i;
1416 
1417 	for (i = 0; i < bytes; ++i) {
1418 		if (i && (i & 15) == 0)
1419 			kprintf("\n%*.*s", w, w, "");
1420 		kprintf(" %02x", (unsigned char)buf[i]);
1421 	}
1422 	kprintf("\n");
1423 }
1424 
1425 #endif
1426 
1427 /*
1428  * Flush recovered buffers from recovery operations.  The call to this
1429  * routine may be delayed if a read-only mount was made and then later
1430  * upgraded to read-write.  This routine is also called when unmounting
1431  * a read-only mount to clean out recovered (dirty) buffers which we
1432  * couldn't flush (because the mount is read-only).
1433  *
1434  * The volume header is always written last.  The UNDO FIFO will be forced
1435  * to zero-length by setting next_offset to first_offset.  This leaves the
1436  * (now stale) UNDO information used to recover the disk available for
1437  * forensic analysis.
1438  *
1439  * final is typically 0 or 1.  The volume header is only written if final
1440  * is 1.  If final is -1 the recovered buffers are discarded instead of
1441  * written and root_volume can also be passed as NULL in that case.
1442  */
1443 static int hammer_recover_flush_volume_callback(hammer_volume_t, void *);
1444 static int hammer_recover_flush_buffer_callback(hammer_buffer_t, void *);
1445 
1446 void
1447 hammer_recover_flush_buffers(hammer_mount_t hmp, hammer_volume_t root_volume,
1448 			     int final)
1449 {
1450         /*
1451          * Flush the buffers out asynchronously, wait for all the I/O to
1452 	 * complete, then do it again to destroy the buffer cache buffer
1453 	 * so it doesn't alias something later on.
1454          */
1455 	RB_SCAN(hammer_buf_rb_tree, &hmp->rb_bufs_root, NULL,
1456 		hammer_recover_flush_buffer_callback, &final);
1457 	hammer_io_wait_all(hmp, "hmrrcw", 1);
1458 	RB_SCAN(hammer_buf_rb_tree, &hmp->rb_bufs_root, NULL,
1459 		hammer_recover_flush_buffer_callback, &final);
1460 
1461 	/*
1462 	 * Flush all volume headers except the root volume.  If final < 0
1463 	 * we discard all volume headers including the root volume.
1464 	 */
1465 	if (final >= 0) {
1466 		RB_SCAN(hammer_vol_rb_tree, &hmp->rb_vols_root, NULL,
1467 			hammer_recover_flush_volume_callback, root_volume);
1468 	} else {
1469 		RB_SCAN(hammer_vol_rb_tree, &hmp->rb_vols_root, NULL,
1470 			hammer_recover_flush_volume_callback, NULL);
1471 	}
1472 
1473 	/*
1474 	 * Finalize the root volume header.
1475 	 *
1476 	 * No interlock is needed, volume buffers are not
1477 	 * messed with by bioops.
1478 	 */
1479 	if (root_volume && root_volume->io.recovered && final > 0) {
1480 		hammer_io_wait_all(hmp, "hmrflx", 1);
1481 		root_volume->io.recovered = 0;
1482 		hammer_io_flush(&root_volume->io, 0);
1483 		hammer_rel_volume(root_volume, 0);
1484 		hammer_io_wait_all(hmp, "hmrfly", 1);
1485 	}
1486 }
1487 
1488 /*
1489  * Callback to flush volume headers.  If discarding data will be NULL and
1490  * all volume headers (including the root volume) will be discarded.
1491  * Otherwise data is the root_volume and we flush all volume headers
1492  * EXCEPT the root_volume.
1493  *
1494  * Clear any I/O error or modified condition when discarding buffers to
1495  * clean up the reference count, otherwise the buffer may have extra refs
1496  * on it.
1497  */
1498 static
1499 int
1500 hammer_recover_flush_volume_callback(hammer_volume_t volume, void *data)
1501 {
1502 	hammer_volume_t root_volume = data;
1503 
1504 	if (volume->io.recovered && volume != root_volume) {
1505 		volume->io.recovered = 0;
1506 		if (root_volume != NULL) {
1507 			/*
1508 			 * No interlock is needed, volume buffers are not
1509 			 * messed with by bioops.
1510 			 */
1511 			hammer_io_flush(&volume->io, 0);
1512 		} else {
1513 			hammer_io_clear_error(&volume->io);
1514 			hammer_io_clear_modify(&volume->io, 1);
1515 		}
1516 		hammer_rel_volume(volume, 0);
1517 	}
1518 	return(0);
1519 }
1520 
1521 /*
1522  * Flush or discard recovered I/O buffers.
1523  *
1524  * Clear any I/O error or modified condition when discarding buffers to
1525  * clean up the reference count, otherwise the buffer may have extra refs
1526  * on it.
1527  */
1528 static
1529 int
1530 hammer_recover_flush_buffer_callback(hammer_buffer_t buffer, void *data)
1531 {
1532 	int final = *(int *)data;
1533 	int flush;
1534 
1535 	if (buffer->io.recovered) {
1536 		buffer->io.recovered = 0;
1537 		buffer->io.reclaim = 1;
1538 		if (final < 0) {
1539 			hammer_io_clear_error(&buffer->io);
1540 			hammer_io_clear_modify(&buffer->io, 1);
1541 		} else {
1542 			hammer_io_write_interlock(&buffer->io);
1543 			hammer_io_flush(&buffer->io, 0);
1544 			hammer_io_done_interlock(&buffer->io);
1545 		}
1546 		hammer_rel_buffer(buffer, 0);
1547 	} else {
1548 		flush = hammer_ref_interlock(&buffer->io.lock);
1549 		if (flush)
1550 			atomic_add_int(&hammer_count_refedbufs, 1);
1551 
1552 		if (final < 0) {
1553 			hammer_io_clear_error(&buffer->io);
1554 			hammer_io_clear_modify(&buffer->io, 1);
1555 		}
1556 		KKASSERT(hammer_oneref(&buffer->io.lock));
1557 		buffer->io.reclaim = 1;
1558 		hammer_rel_buffer(buffer, flush);
1559 	}
1560 	return(0);
1561 }
1562 
1563