xref: /linux/fs/xfs/xfs_buf_item_recover.c (revision fab183d632628381b466a41479489541ac0e29a0)
1 // SPDX-License-Identifier: GPL-2.0
2 /*
3  * Copyright (c) 2000-2006 Silicon Graphics, Inc.
4  * All Rights Reserved.
5  */
6 #include "xfs_platform.h"
7 #include "xfs_fs.h"
8 #include "xfs_shared.h"
9 #include "xfs_format.h"
10 #include "xfs_log_format.h"
11 #include "xfs_trans_resv.h"
12 #include "xfs_bit.h"
13 #include "xfs_mount.h"
14 #include "xfs_trans.h"
15 #include "xfs_buf_item.h"
16 #include "xfs_trans_priv.h"
17 #include "xfs_trace.h"
18 #include "xfs_log.h"
19 #include "xfs_log_priv.h"
20 #include "xfs_log_recover.h"
21 #include "xfs_error.h"
22 #include "xfs_inode.h"
23 #include "xfs_dir2.h"
24 #include "xfs_quota.h"
25 #include "xfs_alloc.h"
26 #include "xfs_ag.h"
27 #include "xfs_sb.h"
28 #include "xfs_rtgroup.h"
29 #include "xfs_rtbitmap.h"
30 
31 /*
32  * This is the number of entries in the l_buf_cancel_table used during
33  * recovery.
34  */
35 #define	XLOG_BC_TABLE_SIZE	64
36 
37 #define XLOG_BUF_CANCEL_BUCKET(log, blkno) \
38 	((log)->l_buf_cancel_table + ((uint64_t)blkno % XLOG_BC_TABLE_SIZE))
39 
40 /*
41  * This structure is used during recovery to record the buf log items which
42  * have been canceled and should not be replayed.
43  */
44 struct xfs_buf_cancel {
45 	xfs_daddr_t		bc_blkno;
46 	uint			bc_len;
47 	int			bc_refcount;
48 	struct list_head	bc_list;
49 };
50 
51 static struct xfs_buf_cancel *
xlog_find_buffer_cancelled(struct xlog * log,xfs_daddr_t blkno,uint len)52 xlog_find_buffer_cancelled(
53 	struct xlog		*log,
54 	xfs_daddr_t		blkno,
55 	uint			len)
56 {
57 	struct list_head	*bucket;
58 	struct xfs_buf_cancel	*bcp;
59 
60 	if (!log->l_buf_cancel_table)
61 		return NULL;
62 
63 	bucket = XLOG_BUF_CANCEL_BUCKET(log, blkno);
64 	list_for_each_entry(bcp, bucket, bc_list) {
65 		if (bcp->bc_blkno == blkno && bcp->bc_len == len)
66 			return bcp;
67 	}
68 
69 	return NULL;
70 }
71 
72 static bool
xlog_add_buffer_cancelled(struct xlog * log,xfs_daddr_t blkno,uint len)73 xlog_add_buffer_cancelled(
74 	struct xlog		*log,
75 	xfs_daddr_t		blkno,
76 	uint			len)
77 {
78 	struct xfs_buf_cancel	*bcp;
79 
80 	/*
81 	 * If we find an existing cancel record, this indicates that the buffer
82 	 * was cancelled multiple times.  To ensure that during pass 2 we keep
83 	 * the record in the table until we reach its last occurrence in the
84 	 * log, a reference count is kept to tell how many times we expect to
85 	 * see this record during the second pass.
86 	 */
87 	bcp = xlog_find_buffer_cancelled(log, blkno, len);
88 	if (bcp) {
89 		bcp->bc_refcount++;
90 		return false;
91 	}
92 
93 	bcp = kmalloc_obj(struct xfs_buf_cancel, GFP_KERNEL | __GFP_NOFAIL);
94 	bcp->bc_blkno = blkno;
95 	bcp->bc_len = len;
96 	bcp->bc_refcount = 1;
97 	list_add_tail(&bcp->bc_list, XLOG_BUF_CANCEL_BUCKET(log, blkno));
98 	return true;
99 }
100 
101 /*
102  * Check if there is and entry for blkno, len in the buffer cancel record table.
103  */
104 bool
xlog_is_buffer_cancelled(struct xlog * log,xfs_daddr_t blkno,uint len)105 xlog_is_buffer_cancelled(
106 	struct xlog		*log,
107 	xfs_daddr_t		blkno,
108 	uint			len)
109 {
110 	return xlog_find_buffer_cancelled(log, blkno, len) != NULL;
111 }
112 
113 /*
114  * Check if there is and entry for blkno, len in the buffer cancel record table,
115  * and decremented the reference count on it if there is one.
116  *
117  * Remove the cancel record once the refcount hits zero, so that if the same
118  * buffer is re-used again after its last cancellation we actually replay the
119  * changes made at that point.
120  */
121 static bool
xlog_put_buffer_cancelled(struct xlog * log,xfs_daddr_t blkno,uint len)122 xlog_put_buffer_cancelled(
123 	struct xlog		*log,
124 	xfs_daddr_t		blkno,
125 	uint			len)
126 {
127 	struct xfs_buf_cancel	*bcp;
128 
129 	bcp = xlog_find_buffer_cancelled(log, blkno, len);
130 	if (!bcp) {
131 		ASSERT(0);
132 		return false;
133 	}
134 
135 	if (--bcp->bc_refcount == 0) {
136 		list_del(&bcp->bc_list);
137 		kfree(bcp);
138 	}
139 	return true;
140 }
141 
142 /* log buffer item recovery */
143 
144 /*
145  * Sort buffer items for log recovery.  Most buffer items should end up on the
146  * buffer list and are recovered first, with the following exceptions:
147  *
148  * 1. XFS_BLF_CANCEL buffers must be processed last because some log items
149  *    might depend on the incor ecancellation record, and replaying a cancelled
150  *    buffer item can remove the incore record.
151  *
152  * 2. XFS_BLF_INODE_BUF buffers are handled after most regular items so that
153  *    we replay di_next_unlinked only after flushing the inode 'free' state
154  *    to the inode buffer.
155  *
156  * See xlog_recover_reorder_trans for more details.
157  */
158 STATIC enum xlog_recover_reorder
xlog_recover_buf_reorder(struct xlog_recover_item * item)159 xlog_recover_buf_reorder(
160 	struct xlog_recover_item	*item)
161 {
162 	struct xfs_buf_log_format	*buf_f = item->ri_buf[0].iov_base;
163 
164 	if (buf_f->blf_flags & XFS_BLF_CANCEL)
165 		return XLOG_REORDER_CANCEL_LIST;
166 	if (buf_f->blf_flags & XFS_BLF_INODE_BUF)
167 		return XLOG_REORDER_INODE_BUFFER_LIST;
168 	return XLOG_REORDER_BUFFER_LIST;
169 }
170 
171 STATIC void
xlog_recover_buf_ra_pass2(struct xlog * log,struct xlog_recover_item * item)172 xlog_recover_buf_ra_pass2(
173 	struct xlog                     *log,
174 	struct xlog_recover_item        *item)
175 {
176 	struct xfs_buf_log_format	*buf_f = item->ri_buf[0].iov_base;
177 
178 	xlog_buf_readahead(log, buf_f->blf_blkno, buf_f->blf_len, NULL);
179 }
180 
181 /*
182  * Build up the table of buf cancel records so that we don't replay cancelled
183  * data in the second pass.
184  */
185 static int
xlog_recover_buf_commit_pass1(struct xlog * log,struct xlog_recover_item * item)186 xlog_recover_buf_commit_pass1(
187 	struct xlog			*log,
188 	struct xlog_recover_item	*item)
189 {
190 	struct xfs_buf_log_format	*bf = item->ri_buf[0].iov_base;
191 
192 	if (!xfs_buf_log_check_iovec(&item->ri_buf[0])) {
193 		xfs_err(log->l_mp, "bad buffer log item size (%zd)",
194 				item->ri_buf[0].iov_len);
195 		return -EFSCORRUPTED;
196 	}
197 
198 	if (!(bf->blf_flags & XFS_BLF_CANCEL))
199 		trace_xfs_log_recover_buf_not_cancel(log, bf);
200 	else if (xlog_add_buffer_cancelled(log, bf->blf_blkno, bf->blf_len))
201 		trace_xfs_log_recover_buf_cancel_add(log, bf);
202 	else
203 		trace_xfs_log_recover_buf_cancel_ref_inc(log, bf);
204 	return 0;
205 }
206 
207 /*
208  * Validate the recovered buffer is of the correct type and attach the
209  * appropriate buffer operations to them for writeback. Magic numbers are in a
210  * few places:
211  *	the first 16 bits of the buffer (inode buffer, dquot buffer),
212  *	the first 32 bits of the buffer (most blocks),
213  *	inside a struct xfs_da_blkinfo at the start of the buffer.
214  */
215 static void
xlog_recover_validate_buf_type(struct xfs_mount * mp,struct xfs_buf * bp,struct xfs_buf_log_format * buf_f,xfs_lsn_t current_lsn)216 xlog_recover_validate_buf_type(
217 	struct xfs_mount		*mp,
218 	struct xfs_buf			*bp,
219 	struct xfs_buf_log_format	*buf_f,
220 	xfs_lsn_t			current_lsn)
221 {
222 	struct xfs_da_blkinfo		*info = bp->b_addr;
223 	uint32_t			magic32;
224 	uint16_t			magic16;
225 	uint16_t			magicda;
226 	char				*warnmsg = NULL;
227 
228 	/*
229 	 * We can only do post recovery validation on items on CRC enabled
230 	 * fielsystems as we need to know when the buffer was written to be able
231 	 * to determine if we should have replayed the item. If we replay old
232 	 * metadata over a newer buffer, then it will enter a temporarily
233 	 * inconsistent state resulting in verification failures. Hence for now
234 	 * just avoid the verification stage for non-crc filesystems
235 	 */
236 	if (!xfs_has_crc(mp))
237 		return;
238 
239 	magic32 = be32_to_cpu(*(__be32 *)bp->b_addr);
240 	magic16 = be16_to_cpu(*(__be16*)bp->b_addr);
241 	magicda = be16_to_cpu(info->magic);
242 	switch (xfs_blft_from_flags(buf_f)) {
243 	case XFS_BLFT_BTREE_BUF:
244 		switch (magic32) {
245 		case XFS_ABTB_CRC_MAGIC:
246 		case XFS_ABTB_MAGIC:
247 			bp->b_ops = &xfs_bnobt_buf_ops;
248 			break;
249 		case XFS_ABTC_CRC_MAGIC:
250 		case XFS_ABTC_MAGIC:
251 			bp->b_ops = &xfs_cntbt_buf_ops;
252 			break;
253 		case XFS_IBT_CRC_MAGIC:
254 		case XFS_IBT_MAGIC:
255 			bp->b_ops = &xfs_inobt_buf_ops;
256 			break;
257 		case XFS_FIBT_CRC_MAGIC:
258 		case XFS_FIBT_MAGIC:
259 			bp->b_ops = &xfs_finobt_buf_ops;
260 			break;
261 		case XFS_BMAP_CRC_MAGIC:
262 		case XFS_BMAP_MAGIC:
263 			bp->b_ops = &xfs_bmbt_buf_ops;
264 			break;
265 		case XFS_RTRMAP_CRC_MAGIC:
266 			bp->b_ops = &xfs_rtrmapbt_buf_ops;
267 			break;
268 		case XFS_RMAP_CRC_MAGIC:
269 			bp->b_ops = &xfs_rmapbt_buf_ops;
270 			break;
271 		case XFS_REFC_CRC_MAGIC:
272 			bp->b_ops = &xfs_refcountbt_buf_ops;
273 			break;
274 		case XFS_RTREFC_CRC_MAGIC:
275 			bp->b_ops = &xfs_rtrefcountbt_buf_ops;
276 			break;
277 		default:
278 			warnmsg = "Bad btree block magic!";
279 			break;
280 		}
281 		break;
282 	case XFS_BLFT_AGF_BUF:
283 		if (magic32 != XFS_AGF_MAGIC) {
284 			warnmsg = "Bad AGF block magic!";
285 			break;
286 		}
287 		bp->b_ops = &xfs_agf_buf_ops;
288 		break;
289 	case XFS_BLFT_AGFL_BUF:
290 		if (magic32 != XFS_AGFL_MAGIC) {
291 			warnmsg = "Bad AGFL block magic!";
292 			break;
293 		}
294 		bp->b_ops = &xfs_agfl_buf_ops;
295 		break;
296 	case XFS_BLFT_AGI_BUF:
297 		if (magic32 != XFS_AGI_MAGIC) {
298 			warnmsg = "Bad AGI block magic!";
299 			break;
300 		}
301 		bp->b_ops = &xfs_agi_buf_ops;
302 		break;
303 	case XFS_BLFT_UDQUOT_BUF:
304 	case XFS_BLFT_PDQUOT_BUF:
305 	case XFS_BLFT_GDQUOT_BUF:
306 #ifdef CONFIG_XFS_QUOTA
307 		if (magic16 != XFS_DQUOT_MAGIC) {
308 			warnmsg = "Bad DQUOT block magic!";
309 			break;
310 		}
311 		bp->b_ops = &xfs_dquot_buf_ops;
312 #else
313 		xfs_alert(mp,
314 	"Trying to recover dquots without QUOTA support built in!");
315 		ASSERT(0);
316 #endif
317 		break;
318 	case XFS_BLFT_DINO_BUF:
319 		if (magic16 != XFS_DINODE_MAGIC) {
320 			warnmsg = "Bad INODE block magic!";
321 			break;
322 		}
323 		bp->b_ops = &xfs_inode_buf_ops;
324 		break;
325 	case XFS_BLFT_SYMLINK_BUF:
326 		if (magic32 != XFS_SYMLINK_MAGIC) {
327 			warnmsg = "Bad symlink block magic!";
328 			break;
329 		}
330 		bp->b_ops = &xfs_symlink_buf_ops;
331 		break;
332 	case XFS_BLFT_DIR_BLOCK_BUF:
333 		if (magic32 != XFS_DIR2_BLOCK_MAGIC &&
334 		    magic32 != XFS_DIR3_BLOCK_MAGIC) {
335 			warnmsg = "Bad dir block magic!";
336 			break;
337 		}
338 		bp->b_ops = &xfs_dir3_block_buf_ops;
339 		break;
340 	case XFS_BLFT_DIR_DATA_BUF:
341 		if (magic32 != XFS_DIR2_DATA_MAGIC &&
342 		    magic32 != XFS_DIR3_DATA_MAGIC) {
343 			warnmsg = "Bad dir data magic!";
344 			break;
345 		}
346 		bp->b_ops = &xfs_dir3_data_buf_ops;
347 		break;
348 	case XFS_BLFT_DIR_FREE_BUF:
349 		if (magic32 != XFS_DIR2_FREE_MAGIC &&
350 		    magic32 != XFS_DIR3_FREE_MAGIC) {
351 			warnmsg = "Bad dir3 free magic!";
352 			break;
353 		}
354 		bp->b_ops = &xfs_dir3_free_buf_ops;
355 		break;
356 	case XFS_BLFT_DIR_LEAF1_BUF:
357 		if (magicda != XFS_DIR2_LEAF1_MAGIC &&
358 		    magicda != XFS_DIR3_LEAF1_MAGIC) {
359 			warnmsg = "Bad dir leaf1 magic!";
360 			break;
361 		}
362 		bp->b_ops = &xfs_dir3_leaf1_buf_ops;
363 		break;
364 	case XFS_BLFT_DIR_LEAFN_BUF:
365 		if (magicda != XFS_DIR2_LEAFN_MAGIC &&
366 		    magicda != XFS_DIR3_LEAFN_MAGIC) {
367 			warnmsg = "Bad dir leafn magic!";
368 			break;
369 		}
370 		bp->b_ops = &xfs_dir3_leafn_buf_ops;
371 		break;
372 	case XFS_BLFT_DA_NODE_BUF:
373 		if (magicda != XFS_DA_NODE_MAGIC &&
374 		    magicda != XFS_DA3_NODE_MAGIC) {
375 			warnmsg = "Bad da node magic!";
376 			break;
377 		}
378 		bp->b_ops = &xfs_da3_node_buf_ops;
379 		break;
380 	case XFS_BLFT_ATTR_LEAF_BUF:
381 		if (magicda != XFS_ATTR_LEAF_MAGIC &&
382 		    magicda != XFS_ATTR3_LEAF_MAGIC) {
383 			warnmsg = "Bad attr leaf magic!";
384 			break;
385 		}
386 		bp->b_ops = &xfs_attr3_leaf_buf_ops;
387 		break;
388 	case XFS_BLFT_ATTR_RMT_BUF:
389 		if (magic32 != XFS_ATTR3_RMT_MAGIC) {
390 			warnmsg = "Bad attr remote magic!";
391 			break;
392 		}
393 		bp->b_ops = &xfs_attr3_rmt_buf_ops;
394 		break;
395 	case XFS_BLFT_SB_BUF:
396 		if (magic32 != XFS_SB_MAGIC) {
397 			warnmsg = "Bad SB block magic!";
398 			break;
399 		}
400 		bp->b_ops = &xfs_sb_buf_ops;
401 		break;
402 #ifdef CONFIG_XFS_RT
403 	case XFS_BLFT_RTBITMAP_BUF:
404 		if (xfs_has_rtgroups(mp) && magic32 != XFS_RTBITMAP_MAGIC) {
405 			warnmsg = "Bad rtbitmap magic!";
406 			break;
407 		}
408 		bp->b_ops = xfs_rtblock_ops(mp, XFS_RTGI_BITMAP);
409 		break;
410 	case XFS_BLFT_RTSUMMARY_BUF:
411 		if (xfs_has_rtgroups(mp) && magic32 != XFS_RTSUMMARY_MAGIC) {
412 			warnmsg = "Bad rtsummary magic!";
413 			break;
414 		}
415 		bp->b_ops = xfs_rtblock_ops(mp, XFS_RTGI_SUMMARY);
416 		break;
417 #endif /* CONFIG_XFS_RT */
418 	default:
419 		xfs_warn(mp, "Unknown buffer type %d!",
420 			 xfs_blft_from_flags(buf_f));
421 		break;
422 	}
423 
424 	/*
425 	 * Nothing else to do in the case of a NULL current LSN as this means
426 	 * the buffer is more recent than the change in the log and will be
427 	 * skipped.
428 	 */
429 	if (current_lsn == NULLCOMMITLSN)
430 		return;
431 
432 	if (warnmsg) {
433 		xfs_warn(mp, warnmsg);
434 		ASSERT(0);
435 	}
436 
437 	/*
438 	 * We must update the metadata LSN of the buffer as it is written out to
439 	 * ensure that older transactions never replay over this one and corrupt
440 	 * the buffer. This can occur if log recovery is interrupted at some
441 	 * point after the current transaction completes, at which point a
442 	 * subsequent mount starts recovery from the beginning.
443 	 *
444 	 * Write verifiers update the metadata LSN from log items attached to
445 	 * the buffer. Therefore, initialize a bli purely to carry the LSN to
446 	 * the verifier.
447 	 */
448 	if (bp->b_ops) {
449 		struct xfs_buf_log_item	*bip;
450 
451 		xfs_buf_item_init(bp, mp);
452 		bip = bp->b_log_item;
453 		bip->bli_item.li_lsn = current_lsn;
454 	}
455 }
456 
457 /*
458  * Perform a 'normal' buffer recovery.  Each logged region of the
459  * buffer should be copied over the corresponding region in the
460  * given buffer.  The bitmap in the buf log format structure indicates
461  * where to place the logged data.
462  */
463 STATIC int
xlog_recover_do_reg_buffer(struct xfs_mount * mp,struct xlog_recover_item * item,struct xfs_buf * bp,struct xfs_buf_log_format * buf_f,xfs_lsn_t current_lsn)464 xlog_recover_do_reg_buffer(
465 	struct xfs_mount		*mp,
466 	struct xlog_recover_item	*item,
467 	struct xfs_buf			*bp,
468 	struct xfs_buf_log_format	*buf_f,
469 	xfs_lsn_t			current_lsn)
470 {
471 	int			i;
472 	int			bit;
473 	int			nbits;
474 	xfs_failaddr_t		fa;
475 	const size_t		size_disk_dquot = sizeof(struct xfs_disk_dquot);
476 
477 	trace_xfs_log_recover_buf_reg_buf(mp->m_log, buf_f);
478 
479 	bit = 0;
480 	i = 1;  /* 0 is the buf format structure */
481 	while (1) {
482 		bit = xfs_next_bit(buf_f->blf_data_map,
483 				   buf_f->blf_map_size, bit);
484 		if (bit == -1)
485 			break;
486 		nbits = xfs_contig_bits(buf_f->blf_data_map,
487 					buf_f->blf_map_size, bit);
488 		ASSERT(nbits > 0);
489 		ASSERT(item->ri_buf[i].iov_base != NULL);
490 		ASSERT(item->ri_buf[i].iov_len % XFS_BLF_CHUNK == 0);
491 		/*
492 		 * The bitmap is only trustworthy to the extent that it
493 		 * describes a region that actually fits inside the buffer we
494 		 * read in based on the (attacker-controlled) blf_len.  Do not
495 		 * rely on an ASSERT() for this -- it compiles away entirely on
496 		 * non-DEBUG kernels, which is exactly where this matters, so
497 		 * validate it for real and abort recovery of this buffer rather
498 		 * than copying past the end of it.
499 		 */
500 		if (XFS_IS_CORRUPT(mp, BBTOB(bp->b_length) <
501 				((uint)bit << XFS_BLF_SHIFT) +
502 				(nbits << XFS_BLF_SHIFT))) {
503 			xfs_alert(mp,
504 	"Bad buffer log item dirty bitmap (bit %d, nbits %d) for %d-byte buffer at daddr 0x%llx.",
505 				bit, nbits, BBTOB(bp->b_length),
506 				xfs_buf_daddr(bp));
507 			return -EFSCORRUPTED;
508 		}
509 
510 		/*
511 		 * The dirty regions logged in the buffer, even though
512 		 * contiguous, may span multiple chunks. This is because the
513 		 * dirty region may span a physical page boundary in a buffer
514 		 * and hence be split into two separate vectors for writing into
515 		 * the log. Hence we need to trim nbits back to the length of
516 		 * the current region being copied out of the log.
517 		 */
518 		if (item->ri_buf[i].iov_len < (nbits << XFS_BLF_SHIFT))
519 			nbits = item->ri_buf[i].iov_len >> XFS_BLF_SHIFT;
520 
521 		/*
522 		 * Do a sanity check if this is a dquot buffer. Just checking
523 		 * the first dquot in the buffer should do. XXXThis is
524 		 * probably a good thing to do for other buf types also.
525 		 */
526 		fa = NULL;
527 		if (buf_f->blf_flags &
528 		   (XFS_BLF_UDQUOT_BUF|XFS_BLF_PDQUOT_BUF|XFS_BLF_GDQUOT_BUF)) {
529 			if (item->ri_buf[i].iov_base == NULL) {
530 				xfs_alert(mp,
531 					"XFS: NULL dquot in %s.", __func__);
532 				goto next;
533 			}
534 			if (item->ri_buf[i].iov_len < size_disk_dquot) {
535 				xfs_alert(mp,
536 					"XFS: dquot too small (%zd) in %s.",
537 					item->ri_buf[i].iov_len, __func__);
538 				goto next;
539 			}
540 			fa = xfs_dquot_verify(mp, item->ri_buf[i].iov_base, -1);
541 			if (fa) {
542 				xfs_alert(mp,
543 	"dquot corrupt at %pS trying to replay into block 0x%llx",
544 					fa, xfs_buf_daddr(bp));
545 				goto next;
546 			}
547 		}
548 
549 		memcpy(xfs_buf_offset(bp,
550 			(uint)bit << XFS_BLF_SHIFT),	/* dest */
551 			item->ri_buf[i].iov_base,		/* source */
552 			nbits<<XFS_BLF_SHIFT);		/* length */
553  next:
554 		i++;
555 		bit += nbits;
556 	}
557 
558 	/* Shouldn't be any more regions */
559 	ASSERT(i == item->ri_total);
560 
561 	xlog_recover_validate_buf_type(mp, bp, buf_f, current_lsn);
562 	return 0;
563 }
564 
565 /*
566  * Perform a dquot buffer recovery.
567  * Simple algorithm: if we have found a QUOTAOFF log item of the same type
568  * (ie. USR or GRP), then just toss this buffer away; don't recover it.
569  * Else, treat it as a regular buffer and do recovery.
570  *
571  * Return 0 if the buffer was not recovered (tossed), 1 if it was recovered and
572  * needs writing, or a negative errno if recovery of the buffer failed.
573  */
574 STATIC int
xlog_recover_do_dquot_buffer(struct xfs_mount * mp,struct xlog * log,struct xlog_recover_item * item,struct xfs_buf * bp,struct xfs_buf_log_format * buf_f)575 xlog_recover_do_dquot_buffer(
576 	struct xfs_mount		*mp,
577 	struct xlog			*log,
578 	struct xlog_recover_item	*item,
579 	struct xfs_buf			*bp,
580 	struct xfs_buf_log_format	*buf_f)
581 {
582 	uint			type;
583 	int			error;
584 
585 	trace_xfs_log_recover_buf_dquot_buf(log, buf_f);
586 
587 	/*
588 	 * Filesystems are required to send in quota flags at mount time.
589 	 */
590 	if (!mp->m_qflags)
591 		return 0;
592 
593 	type = 0;
594 	if (buf_f->blf_flags & XFS_BLF_UDQUOT_BUF)
595 		type |= XFS_DQTYPE_USER;
596 	if (buf_f->blf_flags & XFS_BLF_PDQUOT_BUF)
597 		type |= XFS_DQTYPE_PROJ;
598 	if (buf_f->blf_flags & XFS_BLF_GDQUOT_BUF)
599 		type |= XFS_DQTYPE_GROUP;
600 	/*
601 	 * This type of quotas was turned off, so ignore this buffer
602 	 */
603 	if (log->l_quotaoffs_flag & type)
604 		return 0;
605 
606 	error = xlog_recover_do_reg_buffer(mp, item, bp, buf_f, NULLCOMMITLSN);
607 	if (error)
608 		return error;
609 	return 1;
610 }
611 
612 /*
613  * Perform recovery for a buffer full of inodes.  In these buffers, the only
614  * data which should be recovered is that which corresponds to the
615  * di_next_unlinked pointers in the on disk inode structures.  The rest of the
616  * data for the inodes is always logged through the inodes themselves rather
617  * than the inode buffer and is recovered in xlog_recover_inode_pass2().
618  *
619  * The only time when buffers full of inodes are fully recovered is when the
620  * buffer is full of newly allocated inodes.  In this case the buffer will
621  * not be marked as an inode buffer and so will be sent to
622  * xlog_recover_do_reg_buffer() below during recovery.
623  */
624 STATIC int
xlog_recover_do_inode_buffer(struct xfs_mount * mp,struct xlog_recover_item * item,struct xfs_buf * bp,struct xfs_buf_log_format * buf_f)625 xlog_recover_do_inode_buffer(
626 	struct xfs_mount		*mp,
627 	struct xlog_recover_item	*item,
628 	struct xfs_buf			*bp,
629 	struct xfs_buf_log_format	*buf_f)
630 {
631 	int				i;
632 	int				item_index = 0;
633 	int				bit = 0;
634 	int				nbits = 0;
635 	int				reg_buf_offset = 0;
636 	int				reg_buf_bytes = 0;
637 	int				next_unlinked_offset;
638 	int				inodes_per_buf;
639 	xfs_agino_t			*logged_nextp;
640 	xfs_agino_t			*buffer_nextp;
641 
642 	trace_xfs_log_recover_buf_inode_buf(mp->m_log, buf_f);
643 
644 	/*
645 	 * Post recovery validation only works properly on CRC enabled
646 	 * filesystems.
647 	 */
648 	if (xfs_has_crc(mp))
649 		bp->b_ops = &xfs_inode_buf_ops;
650 
651 	inodes_per_buf = BBTOB(bp->b_length) >> mp->m_sb.sb_inodelog;
652 	for (i = 0; i < inodes_per_buf; i++) {
653 		next_unlinked_offset = (i * mp->m_sb.sb_inodesize) +
654 			offsetof(struct xfs_dinode, di_next_unlinked);
655 
656 		while (next_unlinked_offset >=
657 		       (reg_buf_offset + reg_buf_bytes)) {
658 			/*
659 			 * The next di_next_unlinked field is beyond
660 			 * the current logged region.  Find the next
661 			 * logged region that contains or is beyond
662 			 * the current di_next_unlinked field.
663 			 */
664 			bit += nbits;
665 			bit = xfs_next_bit(buf_f->blf_data_map,
666 					   buf_f->blf_map_size, bit);
667 
668 			/*
669 			 * If there are no more logged regions in the
670 			 * buffer, then we're done.
671 			 */
672 			if (bit == -1)
673 				return 0;
674 
675 			nbits = xfs_contig_bits(buf_f->blf_data_map,
676 						buf_f->blf_map_size, bit);
677 			ASSERT(nbits > 0);
678 			reg_buf_offset = bit << XFS_BLF_SHIFT;
679 			reg_buf_bytes = nbits << XFS_BLF_SHIFT;
680 			item_index++;
681 		}
682 
683 		/*
684 		 * If the current logged region starts after the current
685 		 * di_next_unlinked field, then move on to the next
686 		 * di_next_unlinked field.
687 		 */
688 		if (next_unlinked_offset < reg_buf_offset)
689 			continue;
690 
691 		ASSERT(item->ri_buf[item_index].iov_base != NULL);
692 		ASSERT((item->ri_buf[item_index].iov_len % XFS_BLF_CHUNK) == 0);
693 		ASSERT((reg_buf_offset + reg_buf_bytes) <= BBTOB(bp->b_length));
694 
695 		/*
696 		 * The current logged region contains a copy of the
697 		 * current di_next_unlinked field.  Extract its value
698 		 * and copy it to the buffer copy.
699 		 */
700 		logged_nextp = item->ri_buf[item_index].iov_base +
701 				next_unlinked_offset - reg_buf_offset;
702 		if (XFS_IS_CORRUPT(mp, *logged_nextp == 0)) {
703 			xfs_alert(mp,
704 		"Bad inode buffer log record (ptr = "PTR_FMT", bp = "PTR_FMT"). "
705 		"Trying to replay bad (0) inode di_next_unlinked field.",
706 				item, bp);
707 			return -EFSCORRUPTED;
708 		}
709 
710 		buffer_nextp = xfs_buf_offset(bp, next_unlinked_offset);
711 		*buffer_nextp = *logged_nextp;
712 
713 		/*
714 		 * If necessary, recalculate the CRC in the on-disk inode. We
715 		 * have to leave the inode in a consistent state for whoever
716 		 * reads it next....
717 		 */
718 		xfs_dinode_calc_crc(mp,
719 				xfs_buf_offset(bp, i * mp->m_sb.sb_inodesize));
720 
721 	}
722 
723 	return 0;
724 }
725 
726 /*
727  * Update the in-memory superblock and perag structures from the primary SB
728  * buffer.
729  *
730  * This is required because transactions running after growfs may require the
731  * updated values to be set in a previous fully commit transaction.
732  */
733 static int
xlog_recover_do_primary_sb_buffer(struct xfs_mount * mp,struct xlog_recover_item * item,struct xfs_buf * bp,struct xfs_buf_log_format * buf_f,xfs_lsn_t current_lsn)734 xlog_recover_do_primary_sb_buffer(
735 	struct xfs_mount		*mp,
736 	struct xlog_recover_item	*item,
737 	struct xfs_buf			*bp,
738 	struct xfs_buf_log_format	*buf_f,
739 	xfs_lsn_t			current_lsn)
740 {
741 	struct xfs_dsb			*dsb = bp->b_addr;
742 	xfs_agnumber_t			orig_agcount = mp->m_sb.sb_agcount;
743 	xfs_rgnumber_t			orig_rgcount = mp->m_sb.sb_rgcount;
744 	int				error;
745 
746 	error = xlog_recover_do_reg_buffer(mp, item, bp, buf_f, current_lsn);
747 	if (error)
748 		return error;
749 
750 	if (orig_agcount == 0) {
751 		xfs_alert(mp, "Trying to grow file system without AGs");
752 		return -EFSCORRUPTED;
753 	}
754 
755 	/*
756 	 * Update the in-core super block from the freshly recovered on-disk one.
757 	 */
758 	xfs_sb_from_disk(&mp->m_sb, dsb);
759 
760 	/*
761 	 * Grow can change the device size.  Mirror that into the buftarg.
762 	 */
763 	mp->m_ddev_targp->bt_nr_sectors =
764 		XFS_FSB_TO_BB(mp, mp->m_sb.sb_dblocks);
765 	if (mp->m_rtdev_targp && mp->m_rtdev_targp != mp->m_ddev_targp) {
766 		mp->m_rtdev_targp->bt_nr_sectors =
767 			XFS_FSB_TO_BB(mp, mp->m_sb.sb_rblocks);
768 	}
769 
770 	if (mp->m_sb.sb_agcount < orig_agcount) {
771 		xfs_alert(mp, "Shrinking AG count in log recovery not supported");
772 		return -EFSCORRUPTED;
773 	}
774 	if (mp->m_sb.sb_rgcount < orig_rgcount) {
775 		xfs_warn(mp,
776  "Shrinking rtgroup count in log recovery not supported");
777 		return -EFSCORRUPTED;
778 	}
779 
780 	/*
781 	 * If the last AG was grown or shrunk, we also need to update the
782 	 * length in the in-core perag structure and values depending on it.
783 	 */
784 	error = xfs_update_last_ag_size(mp, orig_agcount);
785 	if (error)
786 		return error;
787 
788 	/*
789 	 * If the last rtgroup was grown or shrunk, we also need to update the
790 	 * length in the in-core rtgroup structure and values depending on it.
791 	 * Ignore this on any filesystem with zero rtgroups.
792 	 */
793 	if (orig_rgcount > 0) {
794 		error = xfs_update_last_rtgroup_size(mp, orig_rgcount);
795 		if (error)
796 			return error;
797 	}
798 
799 	/*
800 	 * Initialize the new perags, and also update various block and inode
801 	 * allocator setting based off the number of AGs or total blocks.
802 	 * Because of the latter this also needs to happen if the agcount did
803 	 * not change.
804 	 */
805 	error = xfs_initialize_perag(mp, orig_agcount, mp->m_sb.sb_agcount,
806 			mp->m_sb.sb_dblocks, &mp->m_maxagi);
807 	if (error) {
808 		xfs_warn(mp, "Failed recovery per-ag init: %d", error);
809 		return error;
810 	}
811 	mp->m_alloc_set_aside = xfs_alloc_set_aside(mp);
812 
813 	error = xfs_initialize_rtgroups(mp, orig_rgcount, mp->m_sb.sb_rgcount,
814 			mp->m_sb.sb_rextents);
815 	if (error) {
816 		xfs_warn(mp, "Failed recovery rtgroup init: %d", error);
817 		return error;
818 	}
819 	return 0;
820 }
821 
822 /*
823  * V5 filesystems know the age of the buffer on disk being recovered. We can
824  * have newer objects on disk than we are replaying, and so for these cases we
825  * don't want to replay the current change as that will make the buffer contents
826  * temporarily invalid on disk.
827  *
828  * The magic number might not match the buffer type we are going to recover
829  * (e.g. reallocated blocks), so we ignore the xfs_buf_log_format flags.  Hence
830  * extract the LSN of the existing object in the buffer based on it's current
831  * magic number.  If we don't recognise the magic number in the buffer, then
832  * return a LSN of -1 so that the caller knows it was an unrecognised block and
833  * so can recover the buffer.
834  *
835  * Note: we cannot rely solely on magic number matches to determine that the
836  * buffer has a valid LSN - we also need to verify that it belongs to this
837  * filesystem, so we need to extract the object's LSN and compare it to that
838  * which we read from the superblock. If the UUIDs don't match, then we've got a
839  * stale metadata block from an old filesystem instance that we need to recover
840  * over the top of.
841  */
842 static xfs_lsn_t
xlog_recover_get_buf_lsn(struct xfs_mount * mp,struct xfs_buf * bp,struct xfs_buf_log_format * buf_f)843 xlog_recover_get_buf_lsn(
844 	struct xfs_mount	*mp,
845 	struct xfs_buf		*bp,
846 	struct xfs_buf_log_format *buf_f)
847 {
848 	uint32_t		magic32;
849 	uint16_t		magic16;
850 	uint16_t		magicda;
851 	void			*blk = bp->b_addr;
852 	uuid_t			*uuid;
853 	xfs_lsn_t		lsn = -1;
854 	uint16_t		blft;
855 
856 	/* v4 filesystems always recover immediately */
857 	if (!xfs_has_crc(mp))
858 		goto recover_immediately;
859 
860 	/*
861 	 * realtime bitmap and summary file blocks do not have magic numbers or
862 	 * UUIDs, so we must recover them immediately.
863 	 */
864 	blft = xfs_blft_from_flags(buf_f);
865 	if (!xfs_has_rtgroups(mp) && (blft == XFS_BLFT_RTBITMAP_BUF ||
866 				      blft == XFS_BLFT_RTSUMMARY_BUF))
867 		goto recover_immediately;
868 
869 	magic32 = be32_to_cpu(*(__be32 *)blk);
870 	switch (magic32) {
871 	case XFS_RTSUMMARY_MAGIC:
872 	case XFS_RTBITMAP_MAGIC: {
873 		struct xfs_rtbuf_blkinfo	*hdr = blk;
874 
875 		lsn = be64_to_cpu(hdr->rt_lsn);
876 		uuid = &hdr->rt_uuid;
877 		break;
878 	}
879 	case XFS_ABTB_CRC_MAGIC:
880 	case XFS_ABTC_CRC_MAGIC:
881 	case XFS_ABTB_MAGIC:
882 	case XFS_ABTC_MAGIC:
883 	case XFS_RMAP_CRC_MAGIC:
884 	case XFS_REFC_CRC_MAGIC:
885 	case XFS_FIBT_CRC_MAGIC:
886 	case XFS_FIBT_MAGIC:
887 	case XFS_IBT_CRC_MAGIC:
888 	case XFS_IBT_MAGIC: {
889 		struct xfs_btree_block *btb = blk;
890 
891 		lsn = be64_to_cpu(btb->bb_u.s.bb_lsn);
892 		uuid = &btb->bb_u.s.bb_uuid;
893 		break;
894 	}
895 	case XFS_RTRMAP_CRC_MAGIC:
896 	case XFS_RTREFC_CRC_MAGIC:
897 	case XFS_BMAP_CRC_MAGIC:
898 	case XFS_BMAP_MAGIC: {
899 		struct xfs_btree_block *btb = blk;
900 
901 		lsn = be64_to_cpu(btb->bb_u.l.bb_lsn);
902 		uuid = &btb->bb_u.l.bb_uuid;
903 		break;
904 	}
905 	case XFS_AGF_MAGIC:
906 		lsn = be64_to_cpu(((struct xfs_agf *)blk)->agf_lsn);
907 		uuid = &((struct xfs_agf *)blk)->agf_uuid;
908 		break;
909 	case XFS_AGFL_MAGIC:
910 		lsn = be64_to_cpu(((struct xfs_agfl *)blk)->agfl_lsn);
911 		uuid = &((struct xfs_agfl *)blk)->agfl_uuid;
912 		break;
913 	case XFS_AGI_MAGIC:
914 		lsn = be64_to_cpu(((struct xfs_agi *)blk)->agi_lsn);
915 		uuid = &((struct xfs_agi *)blk)->agi_uuid;
916 		break;
917 	case XFS_SYMLINK_MAGIC:
918 		lsn = be64_to_cpu(((struct xfs_dsymlink_hdr *)blk)->sl_lsn);
919 		uuid = &((struct xfs_dsymlink_hdr *)blk)->sl_uuid;
920 		break;
921 	case XFS_DIR3_BLOCK_MAGIC:
922 	case XFS_DIR3_DATA_MAGIC:
923 	case XFS_DIR3_FREE_MAGIC:
924 		lsn = be64_to_cpu(((struct xfs_dir3_blk_hdr *)blk)->lsn);
925 		uuid = &((struct xfs_dir3_blk_hdr *)blk)->uuid;
926 		break;
927 	case XFS_ATTR3_RMT_MAGIC:
928 		/*
929 		 * Remote attr blocks are written synchronously, rather than
930 		 * being logged. That means they do not contain a valid LSN
931 		 * (i.e. transactionally ordered) in them, and hence any time we
932 		 * see a buffer to replay over the top of a remote attribute
933 		 * block we should simply do so.
934 		 */
935 		goto recover_immediately;
936 	case XFS_SB_MAGIC:
937 		/*
938 		 * superblock uuids are magic. We may or may not have a
939 		 * sb_meta_uuid on disk, but it will be set in the in-core
940 		 * superblock. We set the uuid pointer for verification
941 		 * according to the superblock feature mask to ensure we check
942 		 * the relevant UUID in the superblock.
943 		 */
944 		lsn = be64_to_cpu(((struct xfs_dsb *)blk)->sb_lsn);
945 		if (xfs_has_metauuid(mp))
946 			uuid = &((struct xfs_dsb *)blk)->sb_meta_uuid;
947 		else
948 			uuid = &((struct xfs_dsb *)blk)->sb_uuid;
949 		break;
950 	default:
951 		break;
952 	}
953 
954 	if (lsn != (xfs_lsn_t)-1) {
955 		if (!uuid_equal(&mp->m_sb.sb_meta_uuid, uuid))
956 			goto recover_immediately;
957 		return lsn;
958 	}
959 
960 	magicda = be16_to_cpu(((struct xfs_da_blkinfo *)blk)->magic);
961 	switch (magicda) {
962 	case XFS_DIR3_LEAF1_MAGIC:
963 	case XFS_DIR3_LEAFN_MAGIC:
964 	case XFS_ATTR3_LEAF_MAGIC:
965 	case XFS_DA3_NODE_MAGIC:
966 		lsn = be64_to_cpu(((struct xfs_da3_blkinfo *)blk)->lsn);
967 		uuid = &((struct xfs_da3_blkinfo *)blk)->uuid;
968 		break;
969 	default:
970 		break;
971 	}
972 
973 	if (lsn != (xfs_lsn_t)-1) {
974 		if (!uuid_equal(&mp->m_sb.sb_meta_uuid, uuid))
975 			goto recover_immediately;
976 		return lsn;
977 	}
978 
979 	/*
980 	 * We do individual object checks on dquot and inode buffers as they
981 	 * have their own individual LSN records. Also, we could have a stale
982 	 * buffer here, so we have to at least recognise these buffer types.
983 	 *
984 	 * A notd complexity here is inode unlinked list processing - it logs
985 	 * the inode directly in the buffer, but we don't know which inodes have
986 	 * been modified, and there is no global buffer LSN. Hence we need to
987 	 * recover all inode buffer types immediately. This problem will be
988 	 * fixed by logical logging of the unlinked list modifications.
989 	 */
990 	magic16 = be16_to_cpu(*(__be16 *)blk);
991 	switch (magic16) {
992 	case XFS_DQUOT_MAGIC:
993 	case XFS_DINODE_MAGIC:
994 		goto recover_immediately;
995 	default:
996 		break;
997 	}
998 
999 	/* unknown buffer contents, recover immediately */
1000 
1001 recover_immediately:
1002 	return (xfs_lsn_t)-1;
1003 
1004 }
1005 
1006 /*
1007  * This routine replays a modification made to a buffer at runtime.
1008  * There are actually two types of buffer, regular and inode, which
1009  * are handled differently.  Inode buffers are handled differently
1010  * in that we only recover a specific set of data from them, namely
1011  * the inode di_next_unlinked fields.  This is because all other inode
1012  * data is actually logged via inode records and any data we replay
1013  * here which overlaps that may be stale.
1014  *
1015  * When meta-data buffers are freed at run time we log a buffer item
1016  * with the XFS_BLF_CANCEL bit set to indicate that previous copies
1017  * of the buffer in the log should not be replayed at recovery time.
1018  * This is so that if the blocks covered by the buffer are reused for
1019  * file data before we crash we don't end up replaying old, freed
1020  * meta-data into a user's file.
1021  *
1022  * To handle the cancellation of buffer log items, we make two passes
1023  * over the log during recovery.  During the first we build a table of
1024  * those buffers which have been cancelled, and during the second we
1025  * only replay those buffers which do not have corresponding cancel
1026  * records in the table.  See xlog_recover_buf_pass[1,2] above
1027  * for more details on the implementation of the table of cancel records.
1028  */
1029 STATIC int
xlog_recover_buf_commit_pass2(struct xlog * log,struct list_head * buffer_list,struct xlog_recover_item * item,xfs_lsn_t current_lsn)1030 xlog_recover_buf_commit_pass2(
1031 	struct xlog			*log,
1032 	struct list_head		*buffer_list,
1033 	struct xlog_recover_item	*item,
1034 	xfs_lsn_t			current_lsn)
1035 {
1036 	struct xfs_buf_log_format	*buf_f = item->ri_buf[0].iov_base;
1037 	struct xfs_mount		*mp = log->l_mp;
1038 	struct xfs_buf			*bp;
1039 	int				error;
1040 	xfs_lsn_t			lsn;
1041 
1042 	/*
1043 	 * In this pass we only want to recover all the buffers which have
1044 	 * not been cancelled and are not cancellation buffers themselves.
1045 	 */
1046 	if (buf_f->blf_flags & XFS_BLF_CANCEL) {
1047 		if (xlog_put_buffer_cancelled(log, buf_f->blf_blkno,
1048 				buf_f->blf_len))
1049 			goto cancelled;
1050 	} else {
1051 
1052 		if (xlog_is_buffer_cancelled(log, buf_f->blf_blkno,
1053 				buf_f->blf_len))
1054 			goto cancelled;
1055 	}
1056 
1057 	trace_xfs_log_recover_buf_recover(log, buf_f);
1058 	error = xfs_buf_read(mp->m_ddev_targp, buf_f->blf_blkno, buf_f->blf_len,
1059 			  0, &bp, NULL);
1060 	if (error)
1061 		return error;
1062 
1063 	/*
1064 	 * Recover the buffer only if we get an LSN from it and it's less than
1065 	 * the lsn of the transaction we are replaying.
1066 	 *
1067 	 * Note that we have to be extremely careful of readahead here.
1068 	 * Readahead does not attach verfiers to the buffers so if we don't
1069 	 * actually do any replay after readahead because of the LSN we found
1070 	 * in the buffer if more recent than that current transaction then we
1071 	 * need to attach the verifier directly. Failure to do so can lead to
1072 	 * future recovery actions (e.g. EFI and unlinked list recovery) can
1073 	 * operate on the buffers and they won't get the verifier attached. This
1074 	 * can lead to blocks on disk having the correct content but a stale
1075 	 * CRC.
1076 	 *
1077 	 * It is safe to assume these clean buffers are currently up to date.
1078 	 * If the buffer is dirtied by a later transaction being replayed, then
1079 	 * the verifier will be reset to match whatever recover turns that
1080 	 * buffer into.
1081 	 */
1082 	lsn = xlog_recover_get_buf_lsn(mp, bp, buf_f);
1083 	if (lsn && lsn != -1 && XFS_LSN_CMP(lsn, current_lsn) >= 0) {
1084 		trace_xfs_log_recover_buf_skip(log, buf_f);
1085 		xlog_recover_validate_buf_type(mp, bp, buf_f, NULLCOMMITLSN);
1086 
1087 		/*
1088 		 * We're skipping replay of this buffer log item due to the log
1089 		 * item LSN being behind the ondisk buffer.  Verify the buffer
1090 		 * contents since we aren't going to run the write verifier.
1091 		 */
1092 		if (bp->b_ops) {
1093 			bp->b_ops->verify_read(bp);
1094 			error = bp->b_error;
1095 		}
1096 		goto out_release;
1097 	}
1098 
1099 	if (buf_f->blf_flags & XFS_BLF_INODE_BUF) {
1100 		error = xlog_recover_do_inode_buffer(mp, item, bp, buf_f);
1101 		if (error)
1102 			goto out_release;
1103 	} else if (buf_f->blf_flags &
1104 		  (XFS_BLF_UDQUOT_BUF|XFS_BLF_PDQUOT_BUF|XFS_BLF_GDQUOT_BUF)) {
1105 		error = xlog_recover_do_dquot_buffer(mp, log, item, bp, buf_f);
1106 		if (error <= 0)
1107 			goto out_release;
1108 		/* write dirty buffer */
1109 		error = 0;
1110 	} else if ((xfs_blft_from_flags(buf_f) & XFS_BLFT_SB_BUF) &&
1111 			xfs_buf_daddr(bp) == 0) {
1112 		error = xlog_recover_do_primary_sb_buffer(mp, item, bp, buf_f,
1113 				current_lsn);
1114 		if (error)
1115 			goto out_writebuf;
1116 
1117 		/* Update the rt superblock if we have one. */
1118 		if (xfs_has_rtsb(mp) && mp->m_rtsb_bp) {
1119 			struct xfs_buf	*rtsb_bp = mp->m_rtsb_bp;
1120 
1121 			xfs_buf_lock(rtsb_bp);
1122 			xfs_buf_hold(rtsb_bp);
1123 			xfs_update_rtsb(rtsb_bp, bp);
1124 			xfs_buf_delwri_queue(rtsb_bp, buffer_list);
1125 			xfs_buf_relse(rtsb_bp);
1126 		}
1127 	} else {
1128 		error = xlog_recover_do_reg_buffer(mp, item, bp, buf_f,
1129 						   current_lsn);
1130 		if (error)
1131 			goto out_release;
1132 	}
1133 
1134 	/*
1135 	 * Buffer held by buf log item during 'normal' buffer recovery must
1136 	 * be committed through buffer I/O submission path to ensure proper
1137 	 * release. When error occurs during sb buffer recovery, log shutdown
1138 	 * will be done before submitting buffer list so that buffers can be
1139 	 * released correctly through ioend failure path.
1140 	 */
1141 out_writebuf:
1142 
1143 	/*
1144 	 * Perform delayed write on the buffer.  Asynchronous writes will be
1145 	 * slower when taking into account all the buffers to be flushed.
1146 	 *
1147 	 * Also make sure that only inode buffers with good sizes stay in
1148 	 * the buffer cache.  The kernel moves inodes in buffers of 1 block
1149 	 * or inode_cluster_size bytes, whichever is bigger.  The inode
1150 	 * buffers in the log can be a different size if the log was generated
1151 	 * by an older kernel using unclustered inode buffers or a newer kernel
1152 	 * running with a different inode cluster size.  Regardless, if
1153 	 * the inode buffer size isn't max(blocksize, inode_cluster_size)
1154 	 * for *our* value of inode_cluster_size, then we need to keep
1155 	 * the buffer out of the buffer cache so that the buffer won't
1156 	 * overlap with future reads of those inodes.
1157 	 */
1158 	if (XFS_DINODE_MAGIC ==
1159 	    be16_to_cpu(*((__be16 *)xfs_buf_offset(bp, 0))) &&
1160 	    (BBTOB(bp->b_length) != M_IGEO(log->l_mp)->inode_cluster_size)) {
1161 		xfs_buf_stale(bp);
1162 		error = xfs_bwrite(bp);
1163 	} else {
1164 		ASSERT(bp->b_mount == mp);
1165 		xfs_buf_delwri_queue(bp, buffer_list);
1166 	}
1167 
1168 out_release:
1169 	xfs_buf_relse(bp);
1170 	return error;
1171 cancelled:
1172 	trace_xfs_log_recover_buf_cancel(log, buf_f);
1173 	return 0;
1174 }
1175 
1176 const struct xlog_recover_item_ops xlog_buf_item_ops = {
1177 	.item_type		= XFS_LI_BUF,
1178 	.reorder		= xlog_recover_buf_reorder,
1179 	.ra_pass2		= xlog_recover_buf_ra_pass2,
1180 	.commit_pass1		= xlog_recover_buf_commit_pass1,
1181 	.commit_pass2		= xlog_recover_buf_commit_pass2,
1182 };
1183 
1184 #ifdef DEBUG
1185 void
xlog_check_buf_cancel_table(struct xlog * log)1186 xlog_check_buf_cancel_table(
1187 	struct xlog	*log)
1188 {
1189 	int		i;
1190 
1191 	for (i = 0; i < XLOG_BC_TABLE_SIZE; i++)
1192 		ASSERT(list_empty(&log->l_buf_cancel_table[i]));
1193 }
1194 #endif
1195 
1196 int
xlog_alloc_buf_cancel_table(struct xlog * log)1197 xlog_alloc_buf_cancel_table(
1198 	struct xlog	*log)
1199 {
1200 	void		*p;
1201 	int		i;
1202 
1203 	ASSERT(log->l_buf_cancel_table == NULL);
1204 
1205 	p = kmalloc_objs(struct list_head, XLOG_BC_TABLE_SIZE);
1206 	if (!p)
1207 		return -ENOMEM;
1208 
1209 	log->l_buf_cancel_table = p;
1210 	for (i = 0; i < XLOG_BC_TABLE_SIZE; i++)
1211 		INIT_LIST_HEAD(&log->l_buf_cancel_table[i]);
1212 
1213 	return 0;
1214 }
1215 
1216 void
xlog_free_buf_cancel_table(struct xlog * log)1217 xlog_free_buf_cancel_table(
1218 	struct xlog	*log)
1219 {
1220 	int		i;
1221 
1222 	if (!log->l_buf_cancel_table)
1223 		return;
1224 
1225 	for (i = 0; i < XLOG_BC_TABLE_SIZE; i++) {
1226 		struct xfs_buf_cancel	*bc;
1227 
1228 		while ((bc = list_first_entry_or_null(
1229 				&log->l_buf_cancel_table[i],
1230 				struct xfs_buf_cancel, bc_list))) {
1231 			list_del(&bc->bc_list);
1232 			kfree(bc);
1233 		}
1234 	}
1235 
1236 	kfree(log->l_buf_cancel_table);
1237 	log->l_buf_cancel_table = NULL;
1238 }
1239