xfs: cleanup xlog_recover_do_trans
[deliverable/linux.git] / fs / xfs / xfs_log_recover.c
CommitLineData
1da177e4 1/*
87c199c2 2 * Copyright (c) 2000-2006 Silicon Graphics, Inc.
7b718769 3 * All Rights Reserved.
1da177e4 4 *
7b718769
NS
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License as
1da177e4
LT
7 * published by the Free Software Foundation.
8 *
7b718769
NS
9 * This program is distributed in the hope that it would be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
1da177e4 13 *
7b718769
NS
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write the Free Software Foundation,
16 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
1da177e4 17 */
1da177e4 18#include "xfs.h"
a844f451 19#include "xfs_fs.h"
1da177e4 20#include "xfs_types.h"
a844f451 21#include "xfs_bit.h"
1da177e4 22#include "xfs_log.h"
a844f451 23#include "xfs_inum.h"
1da177e4 24#include "xfs_trans.h"
a844f451
NS
25#include "xfs_sb.h"
26#include "xfs_ag.h"
1da177e4
LT
27#include "xfs_dir2.h"
28#include "xfs_dmapi.h"
29#include "xfs_mount.h"
30#include "xfs_error.h"
31#include "xfs_bmap_btree.h"
a844f451
NS
32#include "xfs_alloc_btree.h"
33#include "xfs_ialloc_btree.h"
1da177e4 34#include "xfs_dir2_sf.h"
a844f451 35#include "xfs_attr_sf.h"
1da177e4 36#include "xfs_dinode.h"
1da177e4 37#include "xfs_inode.h"
a844f451 38#include "xfs_inode_item.h"
a844f451 39#include "xfs_alloc.h"
1da177e4
LT
40#include "xfs_ialloc.h"
41#include "xfs_log_priv.h"
42#include "xfs_buf_item.h"
1da177e4
LT
43#include "xfs_log_recover.h"
44#include "xfs_extfree_item.h"
45#include "xfs_trans_priv.h"
1da177e4
LT
46#include "xfs_quota.h"
47#include "xfs_rw.h"
43355099 48#include "xfs_utils.h"
1da177e4
LT
49
50STATIC int xlog_find_zeroed(xlog_t *, xfs_daddr_t *);
51STATIC int xlog_clear_stale_blocks(xlog_t *, xfs_lsn_t);
52STATIC void xlog_recover_insert_item_backq(xlog_recover_item_t **q,
53 xlog_recover_item_t *item);
54#if defined(DEBUG)
55STATIC void xlog_recover_check_summary(xlog_t *);
1da177e4
LT
56#else
57#define xlog_recover_check_summary(log)
1da177e4
LT
58#endif
59
60
61/*
62 * Sector aligned buffer routines for buffer create/read/write/access
63 */
64
65#define XLOG_SECTOR_ROUNDUP_BBCOUNT(log, bbs) \
66 ( ((log)->l_sectbb_mask && (bbs & (log)->l_sectbb_mask)) ? \
67 ((bbs + (log)->l_sectbb_mask + 1) & ~(log)->l_sectbb_mask) : (bbs) )
68#define XLOG_SECTOR_ROUNDDOWN_BLKNO(log, bno) ((bno) & ~(log)->l_sectbb_mask)
69
70xfs_buf_t *
71xlog_get_bp(
72 xlog_t *log,
3228149c 73 int nbblks)
1da177e4 74{
3228149c
DC
75 if (nbblks <= 0 || nbblks > log->l_logBBsize) {
76 xlog_warn("XFS: Invalid block length (0x%x) given for buffer", nbblks);
77 XFS_ERROR_REPORT("xlog_get_bp(1)",
78 XFS_ERRLEVEL_HIGH, log->l_mp);
79 return NULL;
80 }
1da177e4
LT
81
82 if (log->l_sectbb_log) {
3228149c
DC
83 if (nbblks > 1)
84 nbblks += XLOG_SECTOR_ROUNDUP_BBCOUNT(log, 1);
85 nbblks = XLOG_SECTOR_ROUNDUP_BBCOUNT(log, nbblks);
1da177e4 86 }
3228149c 87 return xfs_buf_get_noaddr(BBTOB(nbblks), log->l_mp->m_logdev_targp);
1da177e4
LT
88}
89
90void
91xlog_put_bp(
92 xfs_buf_t *bp)
93{
94 xfs_buf_free(bp);
95}
96
97
98/*
99 * nbblks should be uint, but oh well. Just want to catch that 32-bit length.
100 */
101int
102xlog_bread(
103 xlog_t *log,
104 xfs_daddr_t blk_no,
105 int nbblks,
106 xfs_buf_t *bp)
107{
108 int error;
109
3228149c
DC
110 if (nbblks <= 0 || nbblks > log->l_logBBsize) {
111 xlog_warn("XFS: Invalid block length (0x%x) given for buffer", nbblks);
112 XFS_ERROR_REPORT("xlog_bread(1)",
113 XFS_ERRLEVEL_HIGH, log->l_mp);
114 return EFSCORRUPTED;
115 }
116
1da177e4
LT
117 if (log->l_sectbb_log) {
118 blk_no = XLOG_SECTOR_ROUNDDOWN_BLKNO(log, blk_no);
119 nbblks = XLOG_SECTOR_ROUNDUP_BBCOUNT(log, nbblks);
120 }
121
122 ASSERT(nbblks > 0);
123 ASSERT(BBTOB(nbblks) <= XFS_BUF_SIZE(bp));
124 ASSERT(bp);
125
126 XFS_BUF_SET_ADDR(bp, log->l_logBBstart + blk_no);
127 XFS_BUF_READ(bp);
128 XFS_BUF_BUSY(bp);
129 XFS_BUF_SET_COUNT(bp, BBTOB(nbblks));
130 XFS_BUF_SET_TARGET(bp, log->l_mp->m_logdev_targp);
131
132 xfsbdstrat(log->l_mp, bp);
d64e31a2
DC
133 error = xfs_iowait(bp);
134 if (error)
1da177e4
LT
135 xfs_ioerror_alert("xlog_bread", log->l_mp,
136 bp, XFS_BUF_ADDR(bp));
137 return error;
138}
139
140/*
141 * Write out the buffer at the given block for the given number of blocks.
142 * The buffer is kept locked across the write and is returned locked.
143 * This can only be used for synchronous log writes.
144 */
ba0f32d4 145STATIC int
1da177e4
LT
146xlog_bwrite(
147 xlog_t *log,
148 xfs_daddr_t blk_no,
149 int nbblks,
150 xfs_buf_t *bp)
151{
152 int error;
153
3228149c
DC
154 if (nbblks <= 0 || nbblks > log->l_logBBsize) {
155 xlog_warn("XFS: Invalid block length (0x%x) given for buffer", nbblks);
156 XFS_ERROR_REPORT("xlog_bwrite(1)",
157 XFS_ERRLEVEL_HIGH, log->l_mp);
158 return EFSCORRUPTED;
159 }
160
1da177e4
LT
161 if (log->l_sectbb_log) {
162 blk_no = XLOG_SECTOR_ROUNDDOWN_BLKNO(log, blk_no);
163 nbblks = XLOG_SECTOR_ROUNDUP_BBCOUNT(log, nbblks);
164 }
165
166 ASSERT(nbblks > 0);
167 ASSERT(BBTOB(nbblks) <= XFS_BUF_SIZE(bp));
168
169 XFS_BUF_SET_ADDR(bp, log->l_logBBstart + blk_no);
170 XFS_BUF_ZEROFLAGS(bp);
171 XFS_BUF_BUSY(bp);
172 XFS_BUF_HOLD(bp);
173 XFS_BUF_PSEMA(bp, PRIBIO);
174 XFS_BUF_SET_COUNT(bp, BBTOB(nbblks));
175 XFS_BUF_SET_TARGET(bp, log->l_mp->m_logdev_targp);
176
177 if ((error = xfs_bwrite(log->l_mp, bp)))
178 xfs_ioerror_alert("xlog_bwrite", log->l_mp,
179 bp, XFS_BUF_ADDR(bp));
180 return error;
181}
182
ba0f32d4 183STATIC xfs_caddr_t
1da177e4
LT
184xlog_align(
185 xlog_t *log,
186 xfs_daddr_t blk_no,
187 int nbblks,
188 xfs_buf_t *bp)
189{
190 xfs_caddr_t ptr;
191
192 if (!log->l_sectbb_log)
193 return XFS_BUF_PTR(bp);
194
195 ptr = XFS_BUF_PTR(bp) + BBTOB((int)blk_no & log->l_sectbb_mask);
196 ASSERT(XFS_BUF_SIZE(bp) >=
197 BBTOB(nbblks + (blk_no & log->l_sectbb_mask)));
198 return ptr;
199}
200
201#ifdef DEBUG
202/*
203 * dump debug superblock and log record information
204 */
205STATIC void
206xlog_header_check_dump(
207 xfs_mount_t *mp,
208 xlog_rec_header_t *head)
209{
210 int b;
211
34a622b2 212 cmn_err(CE_DEBUG, "%s: SB : uuid = ", __func__);
1da177e4 213 for (b = 0; b < 16; b++)
a5687787 214 cmn_err(CE_DEBUG, "%02x", ((__uint8_t *)&mp->m_sb.sb_uuid)[b]);
b6574520
NS
215 cmn_err(CE_DEBUG, ", fmt = %d\n", XLOG_FMT);
216 cmn_err(CE_DEBUG, " log : uuid = ");
1da177e4 217 for (b = 0; b < 16; b++)
a5687787 218 cmn_err(CE_DEBUG, "%02x", ((__uint8_t *)&head->h_fs_uuid)[b]);
b53e675d 219 cmn_err(CE_DEBUG, ", fmt = %d\n", be32_to_cpu(head->h_fmt));
1da177e4
LT
220}
221#else
222#define xlog_header_check_dump(mp, head)
223#endif
224
225/*
226 * check log record header for recovery
227 */
228STATIC int
229xlog_header_check_recover(
230 xfs_mount_t *mp,
231 xlog_rec_header_t *head)
232{
b53e675d 233 ASSERT(be32_to_cpu(head->h_magicno) == XLOG_HEADER_MAGIC_NUM);
1da177e4
LT
234
235 /*
236 * IRIX doesn't write the h_fmt field and leaves it zeroed
237 * (XLOG_FMT_UNKNOWN). This stops us from trying to recover
238 * a dirty log created in IRIX.
239 */
b53e675d 240 if (unlikely(be32_to_cpu(head->h_fmt) != XLOG_FMT)) {
1da177e4
LT
241 xlog_warn(
242 "XFS: dirty log written in incompatible format - can't recover");
243 xlog_header_check_dump(mp, head);
244 XFS_ERROR_REPORT("xlog_header_check_recover(1)",
245 XFS_ERRLEVEL_HIGH, mp);
246 return XFS_ERROR(EFSCORRUPTED);
247 } else if (unlikely(!uuid_equal(&mp->m_sb.sb_uuid, &head->h_fs_uuid))) {
248 xlog_warn(
249 "XFS: dirty log entry has mismatched uuid - can't recover");
250 xlog_header_check_dump(mp, head);
251 XFS_ERROR_REPORT("xlog_header_check_recover(2)",
252 XFS_ERRLEVEL_HIGH, mp);
253 return XFS_ERROR(EFSCORRUPTED);
254 }
255 return 0;
256}
257
258/*
259 * read the head block of the log and check the header
260 */
261STATIC int
262xlog_header_check_mount(
263 xfs_mount_t *mp,
264 xlog_rec_header_t *head)
265{
b53e675d 266 ASSERT(be32_to_cpu(head->h_magicno) == XLOG_HEADER_MAGIC_NUM);
1da177e4
LT
267
268 if (uuid_is_nil(&head->h_fs_uuid)) {
269 /*
270 * IRIX doesn't write the h_fs_uuid or h_fmt fields. If
271 * h_fs_uuid is nil, we assume this log was last mounted
272 * by IRIX and continue.
273 */
274 xlog_warn("XFS: nil uuid in log - IRIX style log");
275 } else if (unlikely(!uuid_equal(&mp->m_sb.sb_uuid, &head->h_fs_uuid))) {
276 xlog_warn("XFS: log has mismatched uuid - can't recover");
277 xlog_header_check_dump(mp, head);
278 XFS_ERROR_REPORT("xlog_header_check_mount",
279 XFS_ERRLEVEL_HIGH, mp);
280 return XFS_ERROR(EFSCORRUPTED);
281 }
282 return 0;
283}
284
285STATIC void
286xlog_recover_iodone(
287 struct xfs_buf *bp)
288{
1da177e4
LT
289 if (XFS_BUF_GETERROR(bp)) {
290 /*
291 * We're not going to bother about retrying
292 * this during recovery. One strike!
293 */
1da177e4 294 xfs_ioerror_alert("xlog_recover_iodone",
15ac08a8
CH
295 bp->b_mount, bp, XFS_BUF_ADDR(bp));
296 xfs_force_shutdown(bp->b_mount, SHUTDOWN_META_IO_ERROR);
1da177e4 297 }
15ac08a8 298 bp->b_mount = NULL;
1da177e4
LT
299 XFS_BUF_CLR_IODONE_FUNC(bp);
300 xfs_biodone(bp);
301}
302
303/*
304 * This routine finds (to an approximation) the first block in the physical
305 * log which contains the given cycle. It uses a binary search algorithm.
306 * Note that the algorithm can not be perfect because the disk will not
307 * necessarily be perfect.
308 */
a8272ce0 309STATIC int
1da177e4
LT
310xlog_find_cycle_start(
311 xlog_t *log,
312 xfs_buf_t *bp,
313 xfs_daddr_t first_blk,
314 xfs_daddr_t *last_blk,
315 uint cycle)
316{
317 xfs_caddr_t offset;
318 xfs_daddr_t mid_blk;
319 uint mid_cycle;
320 int error;
321
322 mid_blk = BLK_AVG(first_blk, *last_blk);
323 while (mid_blk != first_blk && mid_blk != *last_blk) {
324 if ((error = xlog_bread(log, mid_blk, 1, bp)))
325 return error;
326 offset = xlog_align(log, mid_blk, 1, bp);
03bea6fe 327 mid_cycle = xlog_get_cycle(offset);
1da177e4
LT
328 if (mid_cycle == cycle) {
329 *last_blk = mid_blk;
330 /* last_half_cycle == mid_cycle */
331 } else {
332 first_blk = mid_blk;
333 /* first_half_cycle == mid_cycle */
334 }
335 mid_blk = BLK_AVG(first_blk, *last_blk);
336 }
337 ASSERT((mid_blk == first_blk && mid_blk+1 == *last_blk) ||
338 (mid_blk == *last_blk && mid_blk-1 == first_blk));
339
340 return 0;
341}
342
343/*
344 * Check that the range of blocks does not contain the cycle number
345 * given. The scan needs to occur from front to back and the ptr into the
346 * region must be updated since a later routine will need to perform another
347 * test. If the region is completely good, we end up returning the same
348 * last block number.
349 *
350 * Set blkno to -1 if we encounter no errors. This is an invalid block number
351 * since we don't ever expect logs to get this large.
352 */
353STATIC int
354xlog_find_verify_cycle(
355 xlog_t *log,
356 xfs_daddr_t start_blk,
357 int nbblks,
358 uint stop_on_cycle_no,
359 xfs_daddr_t *new_blk)
360{
361 xfs_daddr_t i, j;
362 uint cycle;
363 xfs_buf_t *bp;
364 xfs_daddr_t bufblks;
365 xfs_caddr_t buf = NULL;
366 int error = 0;
367
368 bufblks = 1 << ffs(nbblks);
369
370 while (!(bp = xlog_get_bp(log, bufblks))) {
371 /* can't get enough memory to do everything in one big buffer */
372 bufblks >>= 1;
373 if (bufblks <= log->l_sectbb_log)
374 return ENOMEM;
375 }
376
377 for (i = start_blk; i < start_blk + nbblks; i += bufblks) {
378 int bcount;
379
380 bcount = min(bufblks, (start_blk + nbblks - i));
381
382 if ((error = xlog_bread(log, i, bcount, bp)))
383 goto out;
384
385 buf = xlog_align(log, i, bcount, bp);
386 for (j = 0; j < bcount; j++) {
03bea6fe 387 cycle = xlog_get_cycle(buf);
1da177e4
LT
388 if (cycle == stop_on_cycle_no) {
389 *new_blk = i+j;
390 goto out;
391 }
392
393 buf += BBSIZE;
394 }
395 }
396
397 *new_blk = -1;
398
399out:
400 xlog_put_bp(bp);
401 return error;
402}
403
404/*
405 * Potentially backup over partial log record write.
406 *
407 * In the typical case, last_blk is the number of the block directly after
408 * a good log record. Therefore, we subtract one to get the block number
409 * of the last block in the given buffer. extra_bblks contains the number
410 * of blocks we would have read on a previous read. This happens when the
411 * last log record is split over the end of the physical log.
412 *
413 * extra_bblks is the number of blocks potentially verified on a previous
414 * call to this routine.
415 */
416STATIC int
417xlog_find_verify_log_record(
418 xlog_t *log,
419 xfs_daddr_t start_blk,
420 xfs_daddr_t *last_blk,
421 int extra_bblks)
422{
423 xfs_daddr_t i;
424 xfs_buf_t *bp;
425 xfs_caddr_t offset = NULL;
426 xlog_rec_header_t *head = NULL;
427 int error = 0;
428 int smallmem = 0;
429 int num_blks = *last_blk - start_blk;
430 int xhdrs;
431
432 ASSERT(start_blk != 0 || *last_blk != start_blk);
433
434 if (!(bp = xlog_get_bp(log, num_blks))) {
435 if (!(bp = xlog_get_bp(log, 1)))
436 return ENOMEM;
437 smallmem = 1;
438 } else {
439 if ((error = xlog_bread(log, start_blk, num_blks, bp)))
440 goto out;
441 offset = xlog_align(log, start_blk, num_blks, bp);
442 offset += ((num_blks - 1) << BBSHIFT);
443 }
444
445 for (i = (*last_blk) - 1; i >= 0; i--) {
446 if (i < start_blk) {
447 /* valid log record not found */
448 xlog_warn(
449 "XFS: Log inconsistent (didn't find previous header)");
450 ASSERT(0);
451 error = XFS_ERROR(EIO);
452 goto out;
453 }
454
455 if (smallmem) {
456 if ((error = xlog_bread(log, i, 1, bp)))
457 goto out;
458 offset = xlog_align(log, i, 1, bp);
459 }
460
461 head = (xlog_rec_header_t *)offset;
462
b53e675d 463 if (XLOG_HEADER_MAGIC_NUM == be32_to_cpu(head->h_magicno))
1da177e4
LT
464 break;
465
466 if (!smallmem)
467 offset -= BBSIZE;
468 }
469
470 /*
471 * We hit the beginning of the physical log & still no header. Return
472 * to caller. If caller can handle a return of -1, then this routine
473 * will be called again for the end of the physical log.
474 */
475 if (i == -1) {
476 error = -1;
477 goto out;
478 }
479
480 /*
481 * We have the final block of the good log (the first block
482 * of the log record _before_ the head. So we check the uuid.
483 */
484 if ((error = xlog_header_check_mount(log->l_mp, head)))
485 goto out;
486
487 /*
488 * We may have found a log record header before we expected one.
489 * last_blk will be the 1st block # with a given cycle #. We may end
490 * up reading an entire log record. In this case, we don't want to
491 * reset last_blk. Only when last_blk points in the middle of a log
492 * record do we update last_blk.
493 */
62118709 494 if (xfs_sb_version_haslogv2(&log->l_mp->m_sb)) {
b53e675d 495 uint h_size = be32_to_cpu(head->h_size);
1da177e4
LT
496
497 xhdrs = h_size / XLOG_HEADER_CYCLE_SIZE;
498 if (h_size % XLOG_HEADER_CYCLE_SIZE)
499 xhdrs++;
500 } else {
501 xhdrs = 1;
502 }
503
b53e675d
CH
504 if (*last_blk - i + extra_bblks !=
505 BTOBB(be32_to_cpu(head->h_len)) + xhdrs)
1da177e4
LT
506 *last_blk = i;
507
508out:
509 xlog_put_bp(bp);
510 return error;
511}
512
513/*
514 * Head is defined to be the point of the log where the next log write
515 * write could go. This means that incomplete LR writes at the end are
516 * eliminated when calculating the head. We aren't guaranteed that previous
517 * LR have complete transactions. We only know that a cycle number of
518 * current cycle number -1 won't be present in the log if we start writing
519 * from our current block number.
520 *
521 * last_blk contains the block number of the first block with a given
522 * cycle number.
523 *
524 * Return: zero if normal, non-zero if error.
525 */
ba0f32d4 526STATIC int
1da177e4
LT
527xlog_find_head(
528 xlog_t *log,
529 xfs_daddr_t *return_head_blk)
530{
531 xfs_buf_t *bp;
532 xfs_caddr_t offset;
533 xfs_daddr_t new_blk, first_blk, start_blk, last_blk, head_blk;
534 int num_scan_bblks;
535 uint first_half_cycle, last_half_cycle;
536 uint stop_on_cycle;
537 int error, log_bbnum = log->l_logBBsize;
538
539 /* Is the end of the log device zeroed? */
540 if ((error = xlog_find_zeroed(log, &first_blk)) == -1) {
541 *return_head_blk = first_blk;
542
543 /* Is the whole lot zeroed? */
544 if (!first_blk) {
545 /* Linux XFS shouldn't generate totally zeroed logs -
546 * mkfs etc write a dummy unmount record to a fresh
547 * log so we can store the uuid in there
548 */
549 xlog_warn("XFS: totally zeroed log");
550 }
551
552 return 0;
553 } else if (error) {
554 xlog_warn("XFS: empty log check failed");
555 return error;
556 }
557
558 first_blk = 0; /* get cycle # of 1st block */
559 bp = xlog_get_bp(log, 1);
560 if (!bp)
561 return ENOMEM;
562 if ((error = xlog_bread(log, 0, 1, bp)))
563 goto bp_err;
564 offset = xlog_align(log, 0, 1, bp);
03bea6fe 565 first_half_cycle = xlog_get_cycle(offset);
1da177e4
LT
566
567 last_blk = head_blk = log_bbnum - 1; /* get cycle # of last block */
568 if ((error = xlog_bread(log, last_blk, 1, bp)))
569 goto bp_err;
570 offset = xlog_align(log, last_blk, 1, bp);
03bea6fe 571 last_half_cycle = xlog_get_cycle(offset);
1da177e4
LT
572 ASSERT(last_half_cycle != 0);
573
574 /*
575 * If the 1st half cycle number is equal to the last half cycle number,
576 * then the entire log is stamped with the same cycle number. In this
577 * case, head_blk can't be set to zero (which makes sense). The below
578 * math doesn't work out properly with head_blk equal to zero. Instead,
579 * we set it to log_bbnum which is an invalid block number, but this
580 * value makes the math correct. If head_blk doesn't changed through
581 * all the tests below, *head_blk is set to zero at the very end rather
582 * than log_bbnum. In a sense, log_bbnum and zero are the same block
583 * in a circular file.
584 */
585 if (first_half_cycle == last_half_cycle) {
586 /*
587 * In this case we believe that the entire log should have
588 * cycle number last_half_cycle. We need to scan backwards
589 * from the end verifying that there are no holes still
590 * containing last_half_cycle - 1. If we find such a hole,
591 * then the start of that hole will be the new head. The
592 * simple case looks like
593 * x | x ... | x - 1 | x
594 * Another case that fits this picture would be
595 * x | x + 1 | x ... | x
c41564b5 596 * In this case the head really is somewhere at the end of the
1da177e4
LT
597 * log, as one of the latest writes at the beginning was
598 * incomplete.
599 * One more case is
600 * x | x + 1 | x ... | x - 1 | x
601 * This is really the combination of the above two cases, and
602 * the head has to end up at the start of the x-1 hole at the
603 * end of the log.
604 *
605 * In the 256k log case, we will read from the beginning to the
606 * end of the log and search for cycle numbers equal to x-1.
607 * We don't worry about the x+1 blocks that we encounter,
608 * because we know that they cannot be the head since the log
609 * started with x.
610 */
611 head_blk = log_bbnum;
612 stop_on_cycle = last_half_cycle - 1;
613 } else {
614 /*
615 * In this case we want to find the first block with cycle
616 * number matching last_half_cycle. We expect the log to be
617 * some variation on
618 * x + 1 ... | x ...
619 * The first block with cycle number x (last_half_cycle) will
620 * be where the new head belongs. First we do a binary search
621 * for the first occurrence of last_half_cycle. The binary
622 * search may not be totally accurate, so then we scan back
623 * from there looking for occurrences of last_half_cycle before
624 * us. If that backwards scan wraps around the beginning of
625 * the log, then we look for occurrences of last_half_cycle - 1
626 * at the end of the log. The cases we're looking for look
627 * like
628 * x + 1 ... | x | x + 1 | x ...
629 * ^ binary search stopped here
630 * or
631 * x + 1 ... | x ... | x - 1 | x
632 * <---------> less than scan distance
633 */
634 stop_on_cycle = last_half_cycle;
635 if ((error = xlog_find_cycle_start(log, bp, first_blk,
636 &head_blk, last_half_cycle)))
637 goto bp_err;
638 }
639
640 /*
641 * Now validate the answer. Scan back some number of maximum possible
642 * blocks and make sure each one has the expected cycle number. The
643 * maximum is determined by the total possible amount of buffering
644 * in the in-core log. The following number can be made tighter if
645 * we actually look at the block size of the filesystem.
646 */
647 num_scan_bblks = XLOG_TOTAL_REC_SHIFT(log);
648 if (head_blk >= num_scan_bblks) {
649 /*
650 * We are guaranteed that the entire check can be performed
651 * in one buffer.
652 */
653 start_blk = head_blk - num_scan_bblks;
654 if ((error = xlog_find_verify_cycle(log,
655 start_blk, num_scan_bblks,
656 stop_on_cycle, &new_blk)))
657 goto bp_err;
658 if (new_blk != -1)
659 head_blk = new_blk;
660 } else { /* need to read 2 parts of log */
661 /*
662 * We are going to scan backwards in the log in two parts.
663 * First we scan the physical end of the log. In this part
664 * of the log, we are looking for blocks with cycle number
665 * last_half_cycle - 1.
666 * If we find one, then we know that the log starts there, as
667 * we've found a hole that didn't get written in going around
668 * the end of the physical log. The simple case for this is
669 * x + 1 ... | x ... | x - 1 | x
670 * <---------> less than scan distance
671 * If all of the blocks at the end of the log have cycle number
672 * last_half_cycle, then we check the blocks at the start of
673 * the log looking for occurrences of last_half_cycle. If we
674 * find one, then our current estimate for the location of the
675 * first occurrence of last_half_cycle is wrong and we move
676 * back to the hole we've found. This case looks like
677 * x + 1 ... | x | x + 1 | x ...
678 * ^ binary search stopped here
679 * Another case we need to handle that only occurs in 256k
680 * logs is
681 * x + 1 ... | x ... | x+1 | x ...
682 * ^ binary search stops here
683 * In a 256k log, the scan at the end of the log will see the
684 * x + 1 blocks. We need to skip past those since that is
685 * certainly not the head of the log. By searching for
686 * last_half_cycle-1 we accomplish that.
687 */
688 start_blk = log_bbnum - num_scan_bblks + head_blk;
689 ASSERT(head_blk <= INT_MAX &&
690 (xfs_daddr_t) num_scan_bblks - head_blk >= 0);
691 if ((error = xlog_find_verify_cycle(log, start_blk,
692 num_scan_bblks - (int)head_blk,
693 (stop_on_cycle - 1), &new_blk)))
694 goto bp_err;
695 if (new_blk != -1) {
696 head_blk = new_blk;
697 goto bad_blk;
698 }
699
700 /*
701 * Scan beginning of log now. The last part of the physical
702 * log is good. This scan needs to verify that it doesn't find
703 * the last_half_cycle.
704 */
705 start_blk = 0;
706 ASSERT(head_blk <= INT_MAX);
707 if ((error = xlog_find_verify_cycle(log,
708 start_blk, (int)head_blk,
709 stop_on_cycle, &new_blk)))
710 goto bp_err;
711 if (new_blk != -1)
712 head_blk = new_blk;
713 }
714
715 bad_blk:
716 /*
717 * Now we need to make sure head_blk is not pointing to a block in
718 * the middle of a log record.
719 */
720 num_scan_bblks = XLOG_REC_SHIFT(log);
721 if (head_blk >= num_scan_bblks) {
722 start_blk = head_blk - num_scan_bblks; /* don't read head_blk */
723
724 /* start ptr at last block ptr before head_blk */
725 if ((error = xlog_find_verify_log_record(log, start_blk,
726 &head_blk, 0)) == -1) {
727 error = XFS_ERROR(EIO);
728 goto bp_err;
729 } else if (error)
730 goto bp_err;
731 } else {
732 start_blk = 0;
733 ASSERT(head_blk <= INT_MAX);
734 if ((error = xlog_find_verify_log_record(log, start_blk,
735 &head_blk, 0)) == -1) {
736 /* We hit the beginning of the log during our search */
737 start_blk = log_bbnum - num_scan_bblks + head_blk;
738 new_blk = log_bbnum;
739 ASSERT(start_blk <= INT_MAX &&
740 (xfs_daddr_t) log_bbnum-start_blk >= 0);
741 ASSERT(head_blk <= INT_MAX);
742 if ((error = xlog_find_verify_log_record(log,
743 start_blk, &new_blk,
744 (int)head_blk)) == -1) {
745 error = XFS_ERROR(EIO);
746 goto bp_err;
747 } else if (error)
748 goto bp_err;
749 if (new_blk != log_bbnum)
750 head_blk = new_blk;
751 } else if (error)
752 goto bp_err;
753 }
754
755 xlog_put_bp(bp);
756 if (head_blk == log_bbnum)
757 *return_head_blk = 0;
758 else
759 *return_head_blk = head_blk;
760 /*
761 * When returning here, we have a good block number. Bad block
762 * means that during a previous crash, we didn't have a clean break
763 * from cycle number N to cycle number N-1. In this case, we need
764 * to find the first block with cycle number N-1.
765 */
766 return 0;
767
768 bp_err:
769 xlog_put_bp(bp);
770
771 if (error)
772 xlog_warn("XFS: failed to find log head");
773 return error;
774}
775
776/*
777 * Find the sync block number or the tail of the log.
778 *
779 * This will be the block number of the last record to have its
780 * associated buffers synced to disk. Every log record header has
781 * a sync lsn embedded in it. LSNs hold block numbers, so it is easy
782 * to get a sync block number. The only concern is to figure out which
783 * log record header to believe.
784 *
785 * The following algorithm uses the log record header with the largest
786 * lsn. The entire log record does not need to be valid. We only care
787 * that the header is valid.
788 *
789 * We could speed up search by using current head_blk buffer, but it is not
790 * available.
791 */
792int
793xlog_find_tail(
794 xlog_t *log,
795 xfs_daddr_t *head_blk,
65be6054 796 xfs_daddr_t *tail_blk)
1da177e4
LT
797{
798 xlog_rec_header_t *rhead;
799 xlog_op_header_t *op_head;
800 xfs_caddr_t offset = NULL;
801 xfs_buf_t *bp;
802 int error, i, found;
803 xfs_daddr_t umount_data_blk;
804 xfs_daddr_t after_umount_blk;
805 xfs_lsn_t tail_lsn;
806 int hblks;
807
808 found = 0;
809
810 /*
811 * Find previous log record
812 */
813 if ((error = xlog_find_head(log, head_blk)))
814 return error;
815
816 bp = xlog_get_bp(log, 1);
817 if (!bp)
818 return ENOMEM;
819 if (*head_blk == 0) { /* special case */
820 if ((error = xlog_bread(log, 0, 1, bp)))
821 goto bread_err;
822 offset = xlog_align(log, 0, 1, bp);
03bea6fe 823 if (xlog_get_cycle(offset) == 0) {
1da177e4
LT
824 *tail_blk = 0;
825 /* leave all other log inited values alone */
826 goto exit;
827 }
828 }
829
830 /*
831 * Search backwards looking for log record header block
832 */
833 ASSERT(*head_blk < INT_MAX);
834 for (i = (int)(*head_blk) - 1; i >= 0; i--) {
835 if ((error = xlog_bread(log, i, 1, bp)))
836 goto bread_err;
837 offset = xlog_align(log, i, 1, bp);
b53e675d 838 if (XLOG_HEADER_MAGIC_NUM == be32_to_cpu(*(__be32 *)offset)) {
1da177e4
LT
839 found = 1;
840 break;
841 }
842 }
843 /*
844 * If we haven't found the log record header block, start looking
845 * again from the end of the physical log. XXXmiken: There should be
846 * a check here to make sure we didn't search more than N blocks in
847 * the previous code.
848 */
849 if (!found) {
850 for (i = log->l_logBBsize - 1; i >= (int)(*head_blk); i--) {
851 if ((error = xlog_bread(log, i, 1, bp)))
852 goto bread_err;
853 offset = xlog_align(log, i, 1, bp);
854 if (XLOG_HEADER_MAGIC_NUM ==
b53e675d 855 be32_to_cpu(*(__be32 *)offset)) {
1da177e4
LT
856 found = 2;
857 break;
858 }
859 }
860 }
861 if (!found) {
862 xlog_warn("XFS: xlog_find_tail: couldn't find sync record");
863 ASSERT(0);
864 return XFS_ERROR(EIO);
865 }
866
867 /* find blk_no of tail of log */
868 rhead = (xlog_rec_header_t *)offset;
b53e675d 869 *tail_blk = BLOCK_LSN(be64_to_cpu(rhead->h_tail_lsn));
1da177e4
LT
870
871 /*
872 * Reset log values according to the state of the log when we
873 * crashed. In the case where head_blk == 0, we bump curr_cycle
874 * one because the next write starts a new cycle rather than
875 * continuing the cycle of the last good log record. At this
876 * point we have guaranteed that all partial log records have been
877 * accounted for. Therefore, we know that the last good log record
878 * written was complete and ended exactly on the end boundary
879 * of the physical log.
880 */
881 log->l_prev_block = i;
882 log->l_curr_block = (int)*head_blk;
b53e675d 883 log->l_curr_cycle = be32_to_cpu(rhead->h_cycle);
1da177e4
LT
884 if (found == 2)
885 log->l_curr_cycle++;
b53e675d
CH
886 log->l_tail_lsn = be64_to_cpu(rhead->h_tail_lsn);
887 log->l_last_sync_lsn = be64_to_cpu(rhead->h_lsn);
1da177e4
LT
888 log->l_grant_reserve_cycle = log->l_curr_cycle;
889 log->l_grant_reserve_bytes = BBTOB(log->l_curr_block);
890 log->l_grant_write_cycle = log->l_curr_cycle;
891 log->l_grant_write_bytes = BBTOB(log->l_curr_block);
892
893 /*
894 * Look for unmount record. If we find it, then we know there
895 * was a clean unmount. Since 'i' could be the last block in
896 * the physical log, we convert to a log block before comparing
897 * to the head_blk.
898 *
899 * Save the current tail lsn to use to pass to
900 * xlog_clear_stale_blocks() below. We won't want to clear the
901 * unmount record if there is one, so we pass the lsn of the
902 * unmount record rather than the block after it.
903 */
62118709 904 if (xfs_sb_version_haslogv2(&log->l_mp->m_sb)) {
b53e675d
CH
905 int h_size = be32_to_cpu(rhead->h_size);
906 int h_version = be32_to_cpu(rhead->h_version);
1da177e4
LT
907
908 if ((h_version & XLOG_VERSION_2) &&
909 (h_size > XLOG_HEADER_CYCLE_SIZE)) {
910 hblks = h_size / XLOG_HEADER_CYCLE_SIZE;
911 if (h_size % XLOG_HEADER_CYCLE_SIZE)
912 hblks++;
913 } else {
914 hblks = 1;
915 }
916 } else {
917 hblks = 1;
918 }
919 after_umount_blk = (i + hblks + (int)
b53e675d 920 BTOBB(be32_to_cpu(rhead->h_len))) % log->l_logBBsize;
1da177e4
LT
921 tail_lsn = log->l_tail_lsn;
922 if (*head_blk == after_umount_blk &&
b53e675d 923 be32_to_cpu(rhead->h_num_logops) == 1) {
1da177e4
LT
924 umount_data_blk = (i + hblks) % log->l_logBBsize;
925 if ((error = xlog_bread(log, umount_data_blk, 1, bp))) {
926 goto bread_err;
927 }
928 offset = xlog_align(log, umount_data_blk, 1, bp);
929 op_head = (xlog_op_header_t *)offset;
930 if (op_head->oh_flags & XLOG_UNMOUNT_TRANS) {
931 /*
932 * Set tail and last sync so that newly written
933 * log records will point recovery to after the
934 * current unmount record.
935 */
03bea6fe
CH
936 log->l_tail_lsn =
937 xlog_assign_lsn(log->l_curr_cycle,
938 after_umount_blk);
939 log->l_last_sync_lsn =
940 xlog_assign_lsn(log->l_curr_cycle,
941 after_umount_blk);
1da177e4 942 *tail_blk = after_umount_blk;
92821e2b
DC
943
944 /*
945 * Note that the unmount was clean. If the unmount
946 * was not clean, we need to know this to rebuild the
947 * superblock counters from the perag headers if we
948 * have a filesystem using non-persistent counters.
949 */
950 log->l_mp->m_flags |= XFS_MOUNT_WAS_CLEAN;
1da177e4
LT
951 }
952 }
953
954 /*
955 * Make sure that there are no blocks in front of the head
956 * with the same cycle number as the head. This can happen
957 * because we allow multiple outstanding log writes concurrently,
958 * and the later writes might make it out before earlier ones.
959 *
960 * We use the lsn from before modifying it so that we'll never
961 * overwrite the unmount record after a clean unmount.
962 *
963 * Do this only if we are going to recover the filesystem
964 *
965 * NOTE: This used to say "if (!readonly)"
966 * However on Linux, we can & do recover a read-only filesystem.
967 * We only skip recovery if NORECOVERY is specified on mount,
968 * in which case we would not be here.
969 *
970 * But... if the -device- itself is readonly, just skip this.
971 * We can't recover this device anyway, so it won't matter.
972 */
973 if (!xfs_readonly_buftarg(log->l_mp->m_logdev_targp)) {
974 error = xlog_clear_stale_blocks(log, tail_lsn);
975 }
976
977bread_err:
978exit:
979 xlog_put_bp(bp);
980
981 if (error)
982 xlog_warn("XFS: failed to locate log tail");
983 return error;
984}
985
986/*
987 * Is the log zeroed at all?
988 *
989 * The last binary search should be changed to perform an X block read
990 * once X becomes small enough. You can then search linearly through
991 * the X blocks. This will cut down on the number of reads we need to do.
992 *
993 * If the log is partially zeroed, this routine will pass back the blkno
994 * of the first block with cycle number 0. It won't have a complete LR
995 * preceding it.
996 *
997 * Return:
998 * 0 => the log is completely written to
999 * -1 => use *blk_no as the first block of the log
1000 * >0 => error has occurred
1001 */
a8272ce0 1002STATIC int
1da177e4
LT
1003xlog_find_zeroed(
1004 xlog_t *log,
1005 xfs_daddr_t *blk_no)
1006{
1007 xfs_buf_t *bp;
1008 xfs_caddr_t offset;
1009 uint first_cycle, last_cycle;
1010 xfs_daddr_t new_blk, last_blk, start_blk;
1011 xfs_daddr_t num_scan_bblks;
1012 int error, log_bbnum = log->l_logBBsize;
1013
6fdf8ccc
NS
1014 *blk_no = 0;
1015
1da177e4
LT
1016 /* check totally zeroed log */
1017 bp = xlog_get_bp(log, 1);
1018 if (!bp)
1019 return ENOMEM;
1020 if ((error = xlog_bread(log, 0, 1, bp)))
1021 goto bp_err;
1022 offset = xlog_align(log, 0, 1, bp);
03bea6fe 1023 first_cycle = xlog_get_cycle(offset);
1da177e4
LT
1024 if (first_cycle == 0) { /* completely zeroed log */
1025 *blk_no = 0;
1026 xlog_put_bp(bp);
1027 return -1;
1028 }
1029
1030 /* check partially zeroed log */
1031 if ((error = xlog_bread(log, log_bbnum-1, 1, bp)))
1032 goto bp_err;
1033 offset = xlog_align(log, log_bbnum-1, 1, bp);
03bea6fe 1034 last_cycle = xlog_get_cycle(offset);
1da177e4
LT
1035 if (last_cycle != 0) { /* log completely written to */
1036 xlog_put_bp(bp);
1037 return 0;
1038 } else if (first_cycle != 1) {
1039 /*
1040 * If the cycle of the last block is zero, the cycle of
1041 * the first block must be 1. If it's not, maybe we're
1042 * not looking at a log... Bail out.
1043 */
1044 xlog_warn("XFS: Log inconsistent or not a log (last==0, first!=1)");
1045 return XFS_ERROR(EINVAL);
1046 }
1047
1048 /* we have a partially zeroed log */
1049 last_blk = log_bbnum-1;
1050 if ((error = xlog_find_cycle_start(log, bp, 0, &last_blk, 0)))
1051 goto bp_err;
1052
1053 /*
1054 * Validate the answer. Because there is no way to guarantee that
1055 * the entire log is made up of log records which are the same size,
1056 * we scan over the defined maximum blocks. At this point, the maximum
1057 * is not chosen to mean anything special. XXXmiken
1058 */
1059 num_scan_bblks = XLOG_TOTAL_REC_SHIFT(log);
1060 ASSERT(num_scan_bblks <= INT_MAX);
1061
1062 if (last_blk < num_scan_bblks)
1063 num_scan_bblks = last_blk;
1064 start_blk = last_blk - num_scan_bblks;
1065
1066 /*
1067 * We search for any instances of cycle number 0 that occur before
1068 * our current estimate of the head. What we're trying to detect is
1069 * 1 ... | 0 | 1 | 0...
1070 * ^ binary search ends here
1071 */
1072 if ((error = xlog_find_verify_cycle(log, start_blk,
1073 (int)num_scan_bblks, 0, &new_blk)))
1074 goto bp_err;
1075 if (new_blk != -1)
1076 last_blk = new_blk;
1077
1078 /*
1079 * Potentially backup over partial log record write. We don't need
1080 * to search the end of the log because we know it is zero.
1081 */
1082 if ((error = xlog_find_verify_log_record(log, start_blk,
1083 &last_blk, 0)) == -1) {
1084 error = XFS_ERROR(EIO);
1085 goto bp_err;
1086 } else if (error)
1087 goto bp_err;
1088
1089 *blk_no = last_blk;
1090bp_err:
1091 xlog_put_bp(bp);
1092 if (error)
1093 return error;
1094 return -1;
1095}
1096
1097/*
1098 * These are simple subroutines used by xlog_clear_stale_blocks() below
1099 * to initialize a buffer full of empty log record headers and write
1100 * them into the log.
1101 */
1102STATIC void
1103xlog_add_record(
1104 xlog_t *log,
1105 xfs_caddr_t buf,
1106 int cycle,
1107 int block,
1108 int tail_cycle,
1109 int tail_block)
1110{
1111 xlog_rec_header_t *recp = (xlog_rec_header_t *)buf;
1112
1113 memset(buf, 0, BBSIZE);
b53e675d
CH
1114 recp->h_magicno = cpu_to_be32(XLOG_HEADER_MAGIC_NUM);
1115 recp->h_cycle = cpu_to_be32(cycle);
1116 recp->h_version = cpu_to_be32(
62118709 1117 xfs_sb_version_haslogv2(&log->l_mp->m_sb) ? 2 : 1);
b53e675d
CH
1118 recp->h_lsn = cpu_to_be64(xlog_assign_lsn(cycle, block));
1119 recp->h_tail_lsn = cpu_to_be64(xlog_assign_lsn(tail_cycle, tail_block));
1120 recp->h_fmt = cpu_to_be32(XLOG_FMT);
1da177e4
LT
1121 memcpy(&recp->h_fs_uuid, &log->l_mp->m_sb.sb_uuid, sizeof(uuid_t));
1122}
1123
1124STATIC int
1125xlog_write_log_records(
1126 xlog_t *log,
1127 int cycle,
1128 int start_block,
1129 int blocks,
1130 int tail_cycle,
1131 int tail_block)
1132{
1133 xfs_caddr_t offset;
1134 xfs_buf_t *bp;
1135 int balign, ealign;
1136 int sectbb = XLOG_SECTOR_ROUNDUP_BBCOUNT(log, 1);
1137 int end_block = start_block + blocks;
1138 int bufblks;
1139 int error = 0;
1140 int i, j = 0;
1141
1142 bufblks = 1 << ffs(blocks);
1143 while (!(bp = xlog_get_bp(log, bufblks))) {
1144 bufblks >>= 1;
1145 if (bufblks <= log->l_sectbb_log)
1146 return ENOMEM;
1147 }
1148
1149 /* We may need to do a read at the start to fill in part of
1150 * the buffer in the starting sector not covered by the first
1151 * write below.
1152 */
1153 balign = XLOG_SECTOR_ROUNDDOWN_BLKNO(log, start_block);
1154 if (balign != start_block) {
1155 if ((error = xlog_bread(log, start_block, 1, bp))) {
1156 xlog_put_bp(bp);
1157 return error;
1158 }
1159 j = start_block - balign;
1160 }
1161
1162 for (i = start_block; i < end_block; i += bufblks) {
1163 int bcount, endcount;
1164
1165 bcount = min(bufblks, end_block - start_block);
1166 endcount = bcount - j;
1167
1168 /* We may need to do a read at the end to fill in part of
1169 * the buffer in the final sector not covered by the write.
1170 * If this is the same sector as the above read, skip it.
1171 */
1172 ealign = XLOG_SECTOR_ROUNDDOWN_BLKNO(log, end_block);
1173 if (j == 0 && (start_block + endcount > ealign)) {
1174 offset = XFS_BUF_PTR(bp);
1175 balign = BBTOB(ealign - start_block);
234f56ac
DC
1176 error = XFS_BUF_SET_PTR(bp, offset + balign,
1177 BBTOB(sectbb));
1178 if (!error)
1179 error = xlog_bread(log, ealign, sectbb, bp);
1180 if (!error)
1181 error = XFS_BUF_SET_PTR(bp, offset, bufblks);
1182 if (error)
1da177e4 1183 break;
1da177e4
LT
1184 }
1185
1186 offset = xlog_align(log, start_block, endcount, bp);
1187 for (; j < endcount; j++) {
1188 xlog_add_record(log, offset, cycle, i+j,
1189 tail_cycle, tail_block);
1190 offset += BBSIZE;
1191 }
1192 error = xlog_bwrite(log, start_block, endcount, bp);
1193 if (error)
1194 break;
1195 start_block += endcount;
1196 j = 0;
1197 }
1198 xlog_put_bp(bp);
1199 return error;
1200}
1201
1202/*
1203 * This routine is called to blow away any incomplete log writes out
1204 * in front of the log head. We do this so that we won't become confused
1205 * if we come up, write only a little bit more, and then crash again.
1206 * If we leave the partial log records out there, this situation could
1207 * cause us to think those partial writes are valid blocks since they
1208 * have the current cycle number. We get rid of them by overwriting them
1209 * with empty log records with the old cycle number rather than the
1210 * current one.
1211 *
1212 * The tail lsn is passed in rather than taken from
1213 * the log so that we will not write over the unmount record after a
1214 * clean unmount in a 512 block log. Doing so would leave the log without
1215 * any valid log records in it until a new one was written. If we crashed
1216 * during that time we would not be able to recover.
1217 */
1218STATIC int
1219xlog_clear_stale_blocks(
1220 xlog_t *log,
1221 xfs_lsn_t tail_lsn)
1222{
1223 int tail_cycle, head_cycle;
1224 int tail_block, head_block;
1225 int tail_distance, max_distance;
1226 int distance;
1227 int error;
1228
1229 tail_cycle = CYCLE_LSN(tail_lsn);
1230 tail_block = BLOCK_LSN(tail_lsn);
1231 head_cycle = log->l_curr_cycle;
1232 head_block = log->l_curr_block;
1233
1234 /*
1235 * Figure out the distance between the new head of the log
1236 * and the tail. We want to write over any blocks beyond the
1237 * head that we may have written just before the crash, but
1238 * we don't want to overwrite the tail of the log.
1239 */
1240 if (head_cycle == tail_cycle) {
1241 /*
1242 * The tail is behind the head in the physical log,
1243 * so the distance from the head to the tail is the
1244 * distance from the head to the end of the log plus
1245 * the distance from the beginning of the log to the
1246 * tail.
1247 */
1248 if (unlikely(head_block < tail_block || head_block >= log->l_logBBsize)) {
1249 XFS_ERROR_REPORT("xlog_clear_stale_blocks(1)",
1250 XFS_ERRLEVEL_LOW, log->l_mp);
1251 return XFS_ERROR(EFSCORRUPTED);
1252 }
1253 tail_distance = tail_block + (log->l_logBBsize - head_block);
1254 } else {
1255 /*
1256 * The head is behind the tail in the physical log,
1257 * so the distance from the head to the tail is just
1258 * the tail block minus the head block.
1259 */
1260 if (unlikely(head_block >= tail_block || head_cycle != (tail_cycle + 1))){
1261 XFS_ERROR_REPORT("xlog_clear_stale_blocks(2)",
1262 XFS_ERRLEVEL_LOW, log->l_mp);
1263 return XFS_ERROR(EFSCORRUPTED);
1264 }
1265 tail_distance = tail_block - head_block;
1266 }
1267
1268 /*
1269 * If the head is right up against the tail, we can't clear
1270 * anything.
1271 */
1272 if (tail_distance <= 0) {
1273 ASSERT(tail_distance == 0);
1274 return 0;
1275 }
1276
1277 max_distance = XLOG_TOTAL_REC_SHIFT(log);
1278 /*
1279 * Take the smaller of the maximum amount of outstanding I/O
1280 * we could have and the distance to the tail to clear out.
1281 * We take the smaller so that we don't overwrite the tail and
1282 * we don't waste all day writing from the head to the tail
1283 * for no reason.
1284 */
1285 max_distance = MIN(max_distance, tail_distance);
1286
1287 if ((head_block + max_distance) <= log->l_logBBsize) {
1288 /*
1289 * We can stomp all the blocks we need to without
1290 * wrapping around the end of the log. Just do it
1291 * in a single write. Use the cycle number of the
1292 * current cycle minus one so that the log will look like:
1293 * n ... | n - 1 ...
1294 */
1295 error = xlog_write_log_records(log, (head_cycle - 1),
1296 head_block, max_distance, tail_cycle,
1297 tail_block);
1298 if (error)
1299 return error;
1300 } else {
1301 /*
1302 * We need to wrap around the end of the physical log in
1303 * order to clear all the blocks. Do it in two separate
1304 * I/Os. The first write should be from the head to the
1305 * end of the physical log, and it should use the current
1306 * cycle number minus one just like above.
1307 */
1308 distance = log->l_logBBsize - head_block;
1309 error = xlog_write_log_records(log, (head_cycle - 1),
1310 head_block, distance, tail_cycle,
1311 tail_block);
1312
1313 if (error)
1314 return error;
1315
1316 /*
1317 * Now write the blocks at the start of the physical log.
1318 * This writes the remainder of the blocks we want to clear.
1319 * It uses the current cycle number since we're now on the
1320 * same cycle as the head so that we get:
1321 * n ... n ... | n - 1 ...
1322 * ^^^^^ blocks we're writing
1323 */
1324 distance = max_distance - (log->l_logBBsize - head_block);
1325 error = xlog_write_log_records(log, head_cycle, 0, distance,
1326 tail_cycle, tail_block);
1327 if (error)
1328 return error;
1329 }
1330
1331 return 0;
1332}
1333
1334/******************************************************************************
1335 *
1336 * Log recover routines
1337 *
1338 ******************************************************************************
1339 */
1340
1341STATIC xlog_recover_t *
1342xlog_recover_find_tid(
1343 xlog_recover_t *q,
1344 xlog_tid_t tid)
1345{
1346 xlog_recover_t *p = q;
1347
1348 while (p != NULL) {
1349 if (p->r_log_tid == tid)
1350 break;
1351 p = p->r_next;
1352 }
1353 return p;
1354}
1355
1356STATIC void
1357xlog_recover_put_hashq(
1358 xlog_recover_t **q,
1359 xlog_recover_t *trans)
1360{
1361 trans->r_next = *q;
1362 *q = trans;
1363}
1364
1365STATIC void
1366xlog_recover_add_item(
1367 xlog_recover_item_t **itemq)
1368{
1369 xlog_recover_item_t *item;
1370
1371 item = kmem_zalloc(sizeof(xlog_recover_item_t), KM_SLEEP);
1372 xlog_recover_insert_item_backq(itemq, item);
1373}
1374
1375STATIC int
1376xlog_recover_add_to_cont_trans(
1377 xlog_recover_t *trans,
1378 xfs_caddr_t dp,
1379 int len)
1380{
1381 xlog_recover_item_t *item;
1382 xfs_caddr_t ptr, old_ptr;
1383 int old_len;
1384
1385 item = trans->r_itemq;
4b80916b 1386 if (item == NULL) {
1da177e4
LT
1387 /* finish copying rest of trans header */
1388 xlog_recover_add_item(&trans->r_itemq);
1389 ptr = (xfs_caddr_t) &trans->r_theader +
1390 sizeof(xfs_trans_header_t) - len;
1391 memcpy(ptr, dp, len); /* d, s, l */
1392 return 0;
1393 }
1394 item = item->ri_prev;
1395
1396 old_ptr = item->ri_buf[item->ri_cnt-1].i_addr;
1397 old_len = item->ri_buf[item->ri_cnt-1].i_len;
1398
760dea67 1399 ptr = kmem_realloc(old_ptr, len+old_len, old_len, 0u);
1da177e4
LT
1400 memcpy(&ptr[old_len], dp, len); /* d, s, l */
1401 item->ri_buf[item->ri_cnt-1].i_len += len;
1402 item->ri_buf[item->ri_cnt-1].i_addr = ptr;
1403 return 0;
1404}
1405
1406/*
1407 * The next region to add is the start of a new region. It could be
1408 * a whole region or it could be the first part of a new region. Because
1409 * of this, the assumption here is that the type and size fields of all
1410 * format structures fit into the first 32 bits of the structure.
1411 *
1412 * This works because all regions must be 32 bit aligned. Therefore, we
1413 * either have both fields or we have neither field. In the case we have
1414 * neither field, the data part of the region is zero length. We only have
1415 * a log_op_header and can throw away the header since a new one will appear
1416 * later. If we have at least 4 bytes, then we can determine how many regions
1417 * will appear in the current log item.
1418 */
1419STATIC int
1420xlog_recover_add_to_trans(
1421 xlog_recover_t *trans,
1422 xfs_caddr_t dp,
1423 int len)
1424{
1425 xfs_inode_log_format_t *in_f; /* any will do */
1426 xlog_recover_item_t *item;
1427 xfs_caddr_t ptr;
1428
1429 if (!len)
1430 return 0;
1431 item = trans->r_itemq;
4b80916b 1432 if (item == NULL) {
5a792c45
DC
1433 /* we need to catch log corruptions here */
1434 if (*(uint *)dp != XFS_TRANS_HEADER_MAGIC) {
1435 xlog_warn("XFS: xlog_recover_add_to_trans: "
1436 "bad header magic number");
1437 ASSERT(0);
1438 return XFS_ERROR(EIO);
1439 }
1da177e4
LT
1440 if (len == sizeof(xfs_trans_header_t))
1441 xlog_recover_add_item(&trans->r_itemq);
1442 memcpy(&trans->r_theader, dp, len); /* d, s, l */
1443 return 0;
1444 }
1445
1446 ptr = kmem_alloc(len, KM_SLEEP);
1447 memcpy(ptr, dp, len);
1448 in_f = (xfs_inode_log_format_t *)ptr;
1449
1450 if (item->ri_prev->ri_total != 0 &&
1451 item->ri_prev->ri_total == item->ri_prev->ri_cnt) {
1452 xlog_recover_add_item(&trans->r_itemq);
1453 }
1454 item = trans->r_itemq;
1455 item = item->ri_prev;
1456
1457 if (item->ri_total == 0) { /* first region to be added */
e8fa6b48
CH
1458 if (in_f->ilf_size == 0 ||
1459 in_f->ilf_size > XLOG_MAX_REGIONS_IN_ITEM) {
1460 xlog_warn(
1461 "XFS: bad number of regions (%d) in inode log format",
1462 in_f->ilf_size);
1463 ASSERT(0);
1464 return XFS_ERROR(EIO);
1465 }
1466
1467 item->ri_total = in_f->ilf_size;
1468 item->ri_buf =
1469 kmem_zalloc(item->ri_total * sizeof(xfs_log_iovec_t),
1470 KM_SLEEP);
1da177e4
LT
1471 }
1472 ASSERT(item->ri_total > item->ri_cnt);
1473 /* Description region is ri_buf[0] */
1474 item->ri_buf[item->ri_cnt].i_addr = ptr;
1475 item->ri_buf[item->ri_cnt].i_len = len;
1476 item->ri_cnt++;
1477 return 0;
1478}
1479
1480STATIC void
1481xlog_recover_new_tid(
1482 xlog_recover_t **q,
1483 xlog_tid_t tid,
1484 xfs_lsn_t lsn)
1485{
1486 xlog_recover_t *trans;
1487
1488 trans = kmem_zalloc(sizeof(xlog_recover_t), KM_SLEEP);
1489 trans->r_log_tid = tid;
1490 trans->r_lsn = lsn;
1491 xlog_recover_put_hashq(q, trans);
1492}
1493
1494STATIC int
1495xlog_recover_unlink_tid(
1496 xlog_recover_t **q,
1497 xlog_recover_t *trans)
1498{
1499 xlog_recover_t *tp;
1500 int found = 0;
1501
4b80916b 1502 ASSERT(trans != NULL);
1da177e4
LT
1503 if (trans == *q) {
1504 *q = (*q)->r_next;
1505 } else {
1506 tp = *q;
4b80916b 1507 while (tp) {
1da177e4
LT
1508 if (tp->r_next == trans) {
1509 found = 1;
1510 break;
1511 }
1512 tp = tp->r_next;
1513 }
1514 if (!found) {
1515 xlog_warn(
1516 "XFS: xlog_recover_unlink_tid: trans not found");
1517 ASSERT(0);
1518 return XFS_ERROR(EIO);
1519 }
1520 tp->r_next = tp->r_next->r_next;
1521 }
1522 return 0;
1523}
1524
1525STATIC void
1526xlog_recover_insert_item_backq(
1527 xlog_recover_item_t **q,
1528 xlog_recover_item_t *item)
1529{
4b80916b 1530 if (*q == NULL) {
1da177e4
LT
1531 item->ri_prev = item->ri_next = item;
1532 *q = item;
1533 } else {
1534 item->ri_next = *q;
1535 item->ri_prev = (*q)->ri_prev;
1536 (*q)->ri_prev = item;
1537 item->ri_prev->ri_next = item;
1538 }
1539}
1540
1541STATIC void
1542xlog_recover_insert_item_frontq(
1543 xlog_recover_item_t **q,
1544 xlog_recover_item_t *item)
1545{
1546 xlog_recover_insert_item_backq(q, item);
1547 *q = item;
1548}
1549
1550STATIC int
1551xlog_recover_reorder_trans(
1da177e4
LT
1552 xlog_recover_t *trans)
1553{
1554 xlog_recover_item_t *first_item, *itemq, *itemq_next;
1555 xfs_buf_log_format_t *buf_f;
1da177e4
LT
1556 ushort flags = 0;
1557
1558 first_item = itemq = trans->r_itemq;
1559 trans->r_itemq = NULL;
1560 do {
1561 itemq_next = itemq->ri_next;
1562 buf_f = (xfs_buf_log_format_t *)itemq->ri_buf[0].i_addr;
1da177e4
LT
1563
1564 switch (ITEM_TYPE(itemq)) {
1565 case XFS_LI_BUF:
804195b6 1566 flags = buf_f->blf_flags;
1da177e4
LT
1567 if (!(flags & XFS_BLI_CANCEL)) {
1568 xlog_recover_insert_item_frontq(&trans->r_itemq,
1569 itemq);
1570 break;
1571 }
1572 case XFS_LI_INODE:
1da177e4
LT
1573 case XFS_LI_DQUOT:
1574 case XFS_LI_QUOTAOFF:
1575 case XFS_LI_EFD:
1576 case XFS_LI_EFI:
1577 xlog_recover_insert_item_backq(&trans->r_itemq, itemq);
1578 break;
1579 default:
1580 xlog_warn(
1581 "XFS: xlog_recover_reorder_trans: unrecognized type of log operation");
1582 ASSERT(0);
1583 return XFS_ERROR(EIO);
1584 }
1585 itemq = itemq_next;
1586 } while (first_item != itemq);
1587 return 0;
1588}
1589
1590/*
1591 * Build up the table of buf cancel records so that we don't replay
1592 * cancelled data in the second pass. For buffer records that are
1593 * not cancel records, there is nothing to do here so we just return.
1594 *
1595 * If we get a cancel record which is already in the table, this indicates
1596 * that the buffer was cancelled multiple times. In order to ensure
1597 * that during pass 2 we keep the record in the table until we reach its
1598 * last occurrence in the log, we keep a reference count in the cancel
1599 * record in the table to tell us how many times we expect to see this
1600 * record during the second pass.
1601 */
1602STATIC void
1603xlog_recover_do_buffer_pass1(
1604 xlog_t *log,
1605 xfs_buf_log_format_t *buf_f)
1606{
1607 xfs_buf_cancel_t *bcp;
1608 xfs_buf_cancel_t *nextp;
1609 xfs_buf_cancel_t *prevp;
1610 xfs_buf_cancel_t **bucket;
1da177e4
LT
1611 xfs_daddr_t blkno = 0;
1612 uint len = 0;
1613 ushort flags = 0;
1614
1615 switch (buf_f->blf_type) {
1616 case XFS_LI_BUF:
1617 blkno = buf_f->blf_blkno;
1618 len = buf_f->blf_len;
1619 flags = buf_f->blf_flags;
1620 break;
1da177e4
LT
1621 }
1622
1623 /*
1624 * If this isn't a cancel buffer item, then just return.
1625 */
1626 if (!(flags & XFS_BLI_CANCEL))
1627 return;
1628
1629 /*
1630 * Insert an xfs_buf_cancel record into the hash table of
1631 * them. If there is already an identical record, bump
1632 * its reference count.
1633 */
1634 bucket = &log->l_buf_cancel_table[(__uint64_t)blkno %
1635 XLOG_BC_TABLE_SIZE];
1636 /*
1637 * If the hash bucket is empty then just insert a new record into
1638 * the bucket.
1639 */
1640 if (*bucket == NULL) {
1641 bcp = (xfs_buf_cancel_t *)kmem_alloc(sizeof(xfs_buf_cancel_t),
1642 KM_SLEEP);
1643 bcp->bc_blkno = blkno;
1644 bcp->bc_len = len;
1645 bcp->bc_refcount = 1;
1646 bcp->bc_next = NULL;
1647 *bucket = bcp;
1648 return;
1649 }
1650
1651 /*
1652 * The hash bucket is not empty, so search for duplicates of our
1653 * record. If we find one them just bump its refcount. If not
1654 * then add us at the end of the list.
1655 */
1656 prevp = NULL;
1657 nextp = *bucket;
1658 while (nextp != NULL) {
1659 if (nextp->bc_blkno == blkno && nextp->bc_len == len) {
1660 nextp->bc_refcount++;
1661 return;
1662 }
1663 prevp = nextp;
1664 nextp = nextp->bc_next;
1665 }
1666 ASSERT(prevp != NULL);
1667 bcp = (xfs_buf_cancel_t *)kmem_alloc(sizeof(xfs_buf_cancel_t),
1668 KM_SLEEP);
1669 bcp->bc_blkno = blkno;
1670 bcp->bc_len = len;
1671 bcp->bc_refcount = 1;
1672 bcp->bc_next = NULL;
1673 prevp->bc_next = bcp;
1674}
1675
1676/*
1677 * Check to see whether the buffer being recovered has a corresponding
1678 * entry in the buffer cancel record table. If it does then return 1
1679 * so that it will be cancelled, otherwise return 0. If the buffer is
1680 * actually a buffer cancel item (XFS_BLI_CANCEL is set), then decrement
1681 * the refcount on the entry in the table and remove it from the table
1682 * if this is the last reference.
1683 *
1684 * We remove the cancel record from the table when we encounter its
1685 * last occurrence in the log so that if the same buffer is re-used
1686 * again after its last cancellation we actually replay the changes
1687 * made at that point.
1688 */
1689STATIC int
1690xlog_check_buffer_cancelled(
1691 xlog_t *log,
1692 xfs_daddr_t blkno,
1693 uint len,
1694 ushort flags)
1695{
1696 xfs_buf_cancel_t *bcp;
1697 xfs_buf_cancel_t *prevp;
1698 xfs_buf_cancel_t **bucket;
1699
1700 if (log->l_buf_cancel_table == NULL) {
1701 /*
1702 * There is nothing in the table built in pass one,
1703 * so this buffer must not be cancelled.
1704 */
1705 ASSERT(!(flags & XFS_BLI_CANCEL));
1706 return 0;
1707 }
1708
1709 bucket = &log->l_buf_cancel_table[(__uint64_t)blkno %
1710 XLOG_BC_TABLE_SIZE];
1711 bcp = *bucket;
1712 if (bcp == NULL) {
1713 /*
1714 * There is no corresponding entry in the table built
1715 * in pass one, so this buffer has not been cancelled.
1716 */
1717 ASSERT(!(flags & XFS_BLI_CANCEL));
1718 return 0;
1719 }
1720
1721 /*
1722 * Search for an entry in the buffer cancel table that
1723 * matches our buffer.
1724 */
1725 prevp = NULL;
1726 while (bcp != NULL) {
1727 if (bcp->bc_blkno == blkno && bcp->bc_len == len) {
1728 /*
1729 * We've go a match, so return 1 so that the
1730 * recovery of this buffer is cancelled.
1731 * If this buffer is actually a buffer cancel
1732 * log item, then decrement the refcount on the
1733 * one in the table and remove it if this is the
1734 * last reference.
1735 */
1736 if (flags & XFS_BLI_CANCEL) {
1737 bcp->bc_refcount--;
1738 if (bcp->bc_refcount == 0) {
1739 if (prevp == NULL) {
1740 *bucket = bcp->bc_next;
1741 } else {
1742 prevp->bc_next = bcp->bc_next;
1743 }
f0e2d93c 1744 kmem_free(bcp);
1da177e4
LT
1745 }
1746 }
1747 return 1;
1748 }
1749 prevp = bcp;
1750 bcp = bcp->bc_next;
1751 }
1752 /*
1753 * We didn't find a corresponding entry in the table, so
1754 * return 0 so that the buffer is NOT cancelled.
1755 */
1756 ASSERT(!(flags & XFS_BLI_CANCEL));
1757 return 0;
1758}
1759
1760STATIC int
1761xlog_recover_do_buffer_pass2(
1762 xlog_t *log,
1763 xfs_buf_log_format_t *buf_f)
1764{
1da177e4
LT
1765 xfs_daddr_t blkno = 0;
1766 ushort flags = 0;
1767 uint len = 0;
1768
1769 switch (buf_f->blf_type) {
1770 case XFS_LI_BUF:
1771 blkno = buf_f->blf_blkno;
1772 flags = buf_f->blf_flags;
1773 len = buf_f->blf_len;
1774 break;
1da177e4
LT
1775 }
1776
1777 return xlog_check_buffer_cancelled(log, blkno, len, flags);
1778}
1779
1780/*
1781 * Perform recovery for a buffer full of inodes. In these buffers,
1782 * the only data which should be recovered is that which corresponds
1783 * to the di_next_unlinked pointers in the on disk inode structures.
1784 * The rest of the data for the inodes is always logged through the
1785 * inodes themselves rather than the inode buffer and is recovered
1786 * in xlog_recover_do_inode_trans().
1787 *
1788 * The only time when buffers full of inodes are fully recovered is
1789 * when the buffer is full of newly allocated inodes. In this case
1790 * the buffer will not be marked as an inode buffer and so will be
1791 * sent to xlog_recover_do_reg_buffer() below during recovery.
1792 */
1793STATIC int
1794xlog_recover_do_inode_buffer(
1795 xfs_mount_t *mp,
1796 xlog_recover_item_t *item,
1797 xfs_buf_t *bp,
1798 xfs_buf_log_format_t *buf_f)
1799{
1800 int i;
1801 int item_index;
1802 int bit;
1803 int nbits;
1804 int reg_buf_offset;
1805 int reg_buf_bytes;
1806 int next_unlinked_offset;
1807 int inodes_per_buf;
1808 xfs_agino_t *logged_nextp;
1809 xfs_agino_t *buffer_nextp;
1da177e4
LT
1810 unsigned int *data_map = NULL;
1811 unsigned int map_size = 0;
1812
1813 switch (buf_f->blf_type) {
1814 case XFS_LI_BUF:
1815 data_map = buf_f->blf_data_map;
1816 map_size = buf_f->blf_map_size;
1817 break;
1da177e4
LT
1818 }
1819 /*
1820 * Set the variables corresponding to the current region to
1821 * 0 so that we'll initialize them on the first pass through
1822 * the loop.
1823 */
1824 reg_buf_offset = 0;
1825 reg_buf_bytes = 0;
1826 bit = 0;
1827 nbits = 0;
1828 item_index = 0;
1829 inodes_per_buf = XFS_BUF_COUNT(bp) >> mp->m_sb.sb_inodelog;
1830 for (i = 0; i < inodes_per_buf; i++) {
1831 next_unlinked_offset = (i * mp->m_sb.sb_inodesize) +
1832 offsetof(xfs_dinode_t, di_next_unlinked);
1833
1834 while (next_unlinked_offset >=
1835 (reg_buf_offset + reg_buf_bytes)) {
1836 /*
1837 * The next di_next_unlinked field is beyond
1838 * the current logged region. Find the next
1839 * logged region that contains or is beyond
1840 * the current di_next_unlinked field.
1841 */
1842 bit += nbits;
1843 bit = xfs_next_bit(data_map, map_size, bit);
1844
1845 /*
1846 * If there are no more logged regions in the
1847 * buffer, then we're done.
1848 */
1849 if (bit == -1) {
1850 return 0;
1851 }
1852
1853 nbits = xfs_contig_bits(data_map, map_size,
1854 bit);
1855 ASSERT(nbits > 0);
1856 reg_buf_offset = bit << XFS_BLI_SHIFT;
1857 reg_buf_bytes = nbits << XFS_BLI_SHIFT;
1858 item_index++;
1859 }
1860
1861 /*
1862 * If the current logged region starts after the current
1863 * di_next_unlinked field, then move on to the next
1864 * di_next_unlinked field.
1865 */
1866 if (next_unlinked_offset < reg_buf_offset) {
1867 continue;
1868 }
1869
1870 ASSERT(item->ri_buf[item_index].i_addr != NULL);
1871 ASSERT((item->ri_buf[item_index].i_len % XFS_BLI_CHUNK) == 0);
1872 ASSERT((reg_buf_offset + reg_buf_bytes) <= XFS_BUF_COUNT(bp));
1873
1874 /*
1875 * The current logged region contains a copy of the
1876 * current di_next_unlinked field. Extract its value
1877 * and copy it to the buffer copy.
1878 */
1879 logged_nextp = (xfs_agino_t *)
1880 ((char *)(item->ri_buf[item_index].i_addr) +
1881 (next_unlinked_offset - reg_buf_offset));
1882 if (unlikely(*logged_nextp == 0)) {
1883 xfs_fs_cmn_err(CE_ALERT, mp,
1884 "bad inode buffer log record (ptr = 0x%p, bp = 0x%p). XFS trying to replay bad (0) inode di_next_unlinked field",
1885 item, bp);
1886 XFS_ERROR_REPORT("xlog_recover_do_inode_buf",
1887 XFS_ERRLEVEL_LOW, mp);
1888 return XFS_ERROR(EFSCORRUPTED);
1889 }
1890
1891 buffer_nextp = (xfs_agino_t *)xfs_buf_offset(bp,
1892 next_unlinked_offset);
87c199c2 1893 *buffer_nextp = *logged_nextp;
1da177e4
LT
1894 }
1895
1896 return 0;
1897}
1898
1899/*
1900 * Perform a 'normal' buffer recovery. Each logged region of the
1901 * buffer should be copied over the corresponding region in the
1902 * given buffer. The bitmap in the buf log format structure indicates
1903 * where to place the logged data.
1904 */
1905/*ARGSUSED*/
1906STATIC void
1907xlog_recover_do_reg_buffer(
1da177e4
LT
1908 xlog_recover_item_t *item,
1909 xfs_buf_t *bp,
1910 xfs_buf_log_format_t *buf_f)
1911{
1912 int i;
1913 int bit;
1914 int nbits;
1da177e4
LT
1915 unsigned int *data_map = NULL;
1916 unsigned int map_size = 0;
1917 int error;
1918
1919 switch (buf_f->blf_type) {
1920 case XFS_LI_BUF:
1921 data_map = buf_f->blf_data_map;
1922 map_size = buf_f->blf_map_size;
1923 break;
1da177e4
LT
1924 }
1925 bit = 0;
1926 i = 1; /* 0 is the buf format structure */
1927 while (1) {
1928 bit = xfs_next_bit(data_map, map_size, bit);
1929 if (bit == -1)
1930 break;
1931 nbits = xfs_contig_bits(data_map, map_size, bit);
1932 ASSERT(nbits > 0);
4b80916b 1933 ASSERT(item->ri_buf[i].i_addr != NULL);
1da177e4
LT
1934 ASSERT(item->ri_buf[i].i_len % XFS_BLI_CHUNK == 0);
1935 ASSERT(XFS_BUF_COUNT(bp) >=
1936 ((uint)bit << XFS_BLI_SHIFT)+(nbits<<XFS_BLI_SHIFT));
1937
1938 /*
1939 * Do a sanity check if this is a dquot buffer. Just checking
1940 * the first dquot in the buffer should do. XXXThis is
1941 * probably a good thing to do for other buf types also.
1942 */
1943 error = 0;
c8ad20ff
NS
1944 if (buf_f->blf_flags &
1945 (XFS_BLI_UDQUOT_BUF|XFS_BLI_PDQUOT_BUF|XFS_BLI_GDQUOT_BUF)) {
1da177e4
LT
1946 error = xfs_qm_dqcheck((xfs_disk_dquot_t *)
1947 item->ri_buf[i].i_addr,
1948 -1, 0, XFS_QMOPT_DOWARN,
1949 "dquot_buf_recover");
1950 }
053c59a0 1951 if (!error)
1da177e4
LT
1952 memcpy(xfs_buf_offset(bp,
1953 (uint)bit << XFS_BLI_SHIFT), /* dest */
1954 item->ri_buf[i].i_addr, /* source */
1955 nbits<<XFS_BLI_SHIFT); /* length */
1956 i++;
1957 bit += nbits;
1958 }
1959
1960 /* Shouldn't be any more regions */
1961 ASSERT(i == item->ri_total);
1962}
1963
1964/*
1965 * Do some primitive error checking on ondisk dquot data structures.
1966 */
1967int
1968xfs_qm_dqcheck(
1969 xfs_disk_dquot_t *ddq,
1970 xfs_dqid_t id,
1971 uint type, /* used only when IO_dorepair is true */
1972 uint flags,
1973 char *str)
1974{
1975 xfs_dqblk_t *d = (xfs_dqblk_t *)ddq;
1976 int errs = 0;
1977
1978 /*
1979 * We can encounter an uninitialized dquot buffer for 2 reasons:
1980 * 1. If we crash while deleting the quotainode(s), and those blks got
1981 * used for user data. This is because we take the path of regular
1982 * file deletion; however, the size field of quotainodes is never
1983 * updated, so all the tricks that we play in itruncate_finish
1984 * don't quite matter.
1985 *
1986 * 2. We don't play the quota buffers when there's a quotaoff logitem.
1987 * But the allocation will be replayed so we'll end up with an
1988 * uninitialized quota block.
1989 *
1990 * This is all fine; things are still consistent, and we haven't lost
1991 * any quota information. Just don't complain about bad dquot blks.
1992 */
1149d96a 1993 if (be16_to_cpu(ddq->d_magic) != XFS_DQUOT_MAGIC) {
1da177e4
LT
1994 if (flags & XFS_QMOPT_DOWARN)
1995 cmn_err(CE_ALERT,
1996 "%s : XFS dquot ID 0x%x, magic 0x%x != 0x%x",
1149d96a 1997 str, id, be16_to_cpu(ddq->d_magic), XFS_DQUOT_MAGIC);
1da177e4
LT
1998 errs++;
1999 }
1149d96a 2000 if (ddq->d_version != XFS_DQUOT_VERSION) {
1da177e4
LT
2001 if (flags & XFS_QMOPT_DOWARN)
2002 cmn_err(CE_ALERT,
2003 "%s : XFS dquot ID 0x%x, version 0x%x != 0x%x",
1149d96a 2004 str, id, ddq->d_version, XFS_DQUOT_VERSION);
1da177e4
LT
2005 errs++;
2006 }
2007
1149d96a
CH
2008 if (ddq->d_flags != XFS_DQ_USER &&
2009 ddq->d_flags != XFS_DQ_PROJ &&
2010 ddq->d_flags != XFS_DQ_GROUP) {
1da177e4
LT
2011 if (flags & XFS_QMOPT_DOWARN)
2012 cmn_err(CE_ALERT,
2013 "%s : XFS dquot ID 0x%x, unknown flags 0x%x",
1149d96a 2014 str, id, ddq->d_flags);
1da177e4
LT
2015 errs++;
2016 }
2017
1149d96a 2018 if (id != -1 && id != be32_to_cpu(ddq->d_id)) {
1da177e4
LT
2019 if (flags & XFS_QMOPT_DOWARN)
2020 cmn_err(CE_ALERT,
2021 "%s : ondisk-dquot 0x%p, ID mismatch: "
2022 "0x%x expected, found id 0x%x",
1149d96a 2023 str, ddq, id, be32_to_cpu(ddq->d_id));
1da177e4
LT
2024 errs++;
2025 }
2026
2027 if (!errs && ddq->d_id) {
1149d96a
CH
2028 if (ddq->d_blk_softlimit &&
2029 be64_to_cpu(ddq->d_bcount) >=
2030 be64_to_cpu(ddq->d_blk_softlimit)) {
1da177e4
LT
2031 if (!ddq->d_btimer) {
2032 if (flags & XFS_QMOPT_DOWARN)
2033 cmn_err(CE_ALERT,
2034 "%s : Dquot ID 0x%x (0x%p) "
2035 "BLK TIMER NOT STARTED",
1149d96a 2036 str, (int)be32_to_cpu(ddq->d_id), ddq);
1da177e4
LT
2037 errs++;
2038 }
2039 }
1149d96a
CH
2040 if (ddq->d_ino_softlimit &&
2041 be64_to_cpu(ddq->d_icount) >=
2042 be64_to_cpu(ddq->d_ino_softlimit)) {
1da177e4
LT
2043 if (!ddq->d_itimer) {
2044 if (flags & XFS_QMOPT_DOWARN)
2045 cmn_err(CE_ALERT,
2046 "%s : Dquot ID 0x%x (0x%p) "
2047 "INODE TIMER NOT STARTED",
1149d96a 2048 str, (int)be32_to_cpu(ddq->d_id), ddq);
1da177e4
LT
2049 errs++;
2050 }
2051 }
1149d96a
CH
2052 if (ddq->d_rtb_softlimit &&
2053 be64_to_cpu(ddq->d_rtbcount) >=
2054 be64_to_cpu(ddq->d_rtb_softlimit)) {
1da177e4
LT
2055 if (!ddq->d_rtbtimer) {
2056 if (flags & XFS_QMOPT_DOWARN)
2057 cmn_err(CE_ALERT,
2058 "%s : Dquot ID 0x%x (0x%p) "
2059 "RTBLK TIMER NOT STARTED",
1149d96a 2060 str, (int)be32_to_cpu(ddq->d_id), ddq);
1da177e4
LT
2061 errs++;
2062 }
2063 }
2064 }
2065
2066 if (!errs || !(flags & XFS_QMOPT_DQREPAIR))
2067 return errs;
2068
2069 if (flags & XFS_QMOPT_DOWARN)
2070 cmn_err(CE_NOTE, "Re-initializing dquot ID 0x%x", id);
2071
2072 /*
2073 * Typically, a repair is only requested by quotacheck.
2074 */
2075 ASSERT(id != -1);
2076 ASSERT(flags & XFS_QMOPT_DQREPAIR);
2077 memset(d, 0, sizeof(xfs_dqblk_t));
1149d96a
CH
2078
2079 d->dd_diskdq.d_magic = cpu_to_be16(XFS_DQUOT_MAGIC);
2080 d->dd_diskdq.d_version = XFS_DQUOT_VERSION;
2081 d->dd_diskdq.d_flags = type;
2082 d->dd_diskdq.d_id = cpu_to_be32(id);
1da177e4
LT
2083
2084 return errs;
2085}
2086
2087/*
2088 * Perform a dquot buffer recovery.
2089 * Simple algorithm: if we have found a QUOTAOFF logitem of the same type
2090 * (ie. USR or GRP), then just toss this buffer away; don't recover it.
2091 * Else, treat it as a regular buffer and do recovery.
2092 */
2093STATIC void
2094xlog_recover_do_dquot_buffer(
2095 xfs_mount_t *mp,
2096 xlog_t *log,
2097 xlog_recover_item_t *item,
2098 xfs_buf_t *bp,
2099 xfs_buf_log_format_t *buf_f)
2100{
2101 uint type;
2102
2103 /*
2104 * Filesystems are required to send in quota flags at mount time.
2105 */
2106 if (mp->m_qflags == 0) {
2107 return;
2108 }
2109
2110 type = 0;
2111 if (buf_f->blf_flags & XFS_BLI_UDQUOT_BUF)
2112 type |= XFS_DQ_USER;
c8ad20ff
NS
2113 if (buf_f->blf_flags & XFS_BLI_PDQUOT_BUF)
2114 type |= XFS_DQ_PROJ;
1da177e4
LT
2115 if (buf_f->blf_flags & XFS_BLI_GDQUOT_BUF)
2116 type |= XFS_DQ_GROUP;
2117 /*
2118 * This type of quotas was turned off, so ignore this buffer
2119 */
2120 if (log->l_quotaoffs_flag & type)
2121 return;
2122
053c59a0 2123 xlog_recover_do_reg_buffer(item, bp, buf_f);
1da177e4
LT
2124}
2125
2126/*
2127 * This routine replays a modification made to a buffer at runtime.
2128 * There are actually two types of buffer, regular and inode, which
2129 * are handled differently. Inode buffers are handled differently
2130 * in that we only recover a specific set of data from them, namely
2131 * the inode di_next_unlinked fields. This is because all other inode
2132 * data is actually logged via inode records and any data we replay
2133 * here which overlaps that may be stale.
2134 *
2135 * When meta-data buffers are freed at run time we log a buffer item
2136 * with the XFS_BLI_CANCEL bit set to indicate that previous copies
2137 * of the buffer in the log should not be replayed at recovery time.
2138 * This is so that if the blocks covered by the buffer are reused for
2139 * file data before we crash we don't end up replaying old, freed
2140 * meta-data into a user's file.
2141 *
2142 * To handle the cancellation of buffer log items, we make two passes
2143 * over the log during recovery. During the first we build a table of
2144 * those buffers which have been cancelled, and during the second we
2145 * only replay those buffers which do not have corresponding cancel
2146 * records in the table. See xlog_recover_do_buffer_pass[1,2] above
2147 * for more details on the implementation of the table of cancel records.
2148 */
2149STATIC int
2150xlog_recover_do_buffer_trans(
2151 xlog_t *log,
2152 xlog_recover_item_t *item,
2153 int pass)
2154{
2155 xfs_buf_log_format_t *buf_f;
1da177e4
LT
2156 xfs_mount_t *mp;
2157 xfs_buf_t *bp;
2158 int error;
2159 int cancel;
2160 xfs_daddr_t blkno;
2161 int len;
2162 ushort flags;
2163
2164 buf_f = (xfs_buf_log_format_t *)item->ri_buf[0].i_addr;
2165
2166 if (pass == XLOG_RECOVER_PASS1) {
2167 /*
2168 * In this pass we're only looking for buf items
2169 * with the XFS_BLI_CANCEL bit set.
2170 */
2171 xlog_recover_do_buffer_pass1(log, buf_f);
2172 return 0;
2173 } else {
2174 /*
2175 * In this pass we want to recover all the buffers
2176 * which have not been cancelled and are not
2177 * cancellation buffers themselves. The routine
2178 * we call here will tell us whether or not to
2179 * continue with the replay of this buffer.
2180 */
2181 cancel = xlog_recover_do_buffer_pass2(log, buf_f);
2182 if (cancel) {
2183 return 0;
2184 }
2185 }
2186 switch (buf_f->blf_type) {
2187 case XFS_LI_BUF:
2188 blkno = buf_f->blf_blkno;
2189 len = buf_f->blf_len;
2190 flags = buf_f->blf_flags;
2191 break;
1da177e4
LT
2192 default:
2193 xfs_fs_cmn_err(CE_ALERT, log->l_mp,
fc1f8c1c
NS
2194 "xfs_log_recover: unknown buffer type 0x%x, logdev %s",
2195 buf_f->blf_type, log->l_mp->m_logname ?
2196 log->l_mp->m_logname : "internal");
1da177e4
LT
2197 XFS_ERROR_REPORT("xlog_recover_do_buffer_trans",
2198 XFS_ERRLEVEL_LOW, log->l_mp);
2199 return XFS_ERROR(EFSCORRUPTED);
2200 }
2201
2202 mp = log->l_mp;
2203 if (flags & XFS_BLI_INODE_BUF) {
2204 bp = xfs_buf_read_flags(mp->m_ddev_targp, blkno, len,
2205 XFS_BUF_LOCK);
2206 } else {
2207 bp = xfs_buf_read(mp->m_ddev_targp, blkno, len, 0);
2208 }
2209 if (XFS_BUF_ISERROR(bp)) {
2210 xfs_ioerror_alert("xlog_recover_do..(read#1)", log->l_mp,
2211 bp, blkno);
2212 error = XFS_BUF_GETERROR(bp);
2213 xfs_buf_relse(bp);
2214 return error;
2215 }
2216
2217 error = 0;
2218 if (flags & XFS_BLI_INODE_BUF) {
2219 error = xlog_recover_do_inode_buffer(mp, item, bp, buf_f);
c8ad20ff
NS
2220 } else if (flags &
2221 (XFS_BLI_UDQUOT_BUF|XFS_BLI_PDQUOT_BUF|XFS_BLI_GDQUOT_BUF)) {
1da177e4
LT
2222 xlog_recover_do_dquot_buffer(mp, log, item, bp, buf_f);
2223 } else {
053c59a0 2224 xlog_recover_do_reg_buffer(item, bp, buf_f);
1da177e4
LT
2225 }
2226 if (error)
2227 return XFS_ERROR(error);
2228
2229 /*
2230 * Perform delayed write on the buffer. Asynchronous writes will be
2231 * slower when taking into account all the buffers to be flushed.
2232 *
2233 * Also make sure that only inode buffers with good sizes stay in
2234 * the buffer cache. The kernel moves inodes in buffers of 1 block
2235 * or XFS_INODE_CLUSTER_SIZE bytes, whichever is bigger. The inode
2236 * buffers in the log can be a different size if the log was generated
2237 * by an older kernel using unclustered inode buffers or a newer kernel
2238 * running with a different inode cluster size. Regardless, if the
2239 * the inode buffer size isn't MAX(blocksize, XFS_INODE_CLUSTER_SIZE)
2240 * for *our* value of XFS_INODE_CLUSTER_SIZE, then we need to keep
2241 * the buffer out of the buffer cache so that the buffer won't
2242 * overlap with future reads of those inodes.
2243 */
2244 if (XFS_DINODE_MAGIC ==
b53e675d 2245 be16_to_cpu(*((__be16 *)xfs_buf_offset(bp, 0))) &&
1da177e4
LT
2246 (XFS_BUF_COUNT(bp) != MAX(log->l_mp->m_sb.sb_blocksize,
2247 (__uint32_t)XFS_INODE_CLUSTER_SIZE(log->l_mp)))) {
2248 XFS_BUF_STALE(bp);
2249 error = xfs_bwrite(mp, bp);
2250 } else {
15ac08a8
CH
2251 ASSERT(bp->b_mount == NULL || bp->b_mount == mp);
2252 bp->b_mount = mp;
1da177e4
LT
2253 XFS_BUF_SET_IODONE_FUNC(bp, xlog_recover_iodone);
2254 xfs_bdwrite(mp, bp);
2255 }
2256
2257 return (error);
2258}
2259
2260STATIC int
2261xlog_recover_do_inode_trans(
2262 xlog_t *log,
2263 xlog_recover_item_t *item,
2264 int pass)
2265{
2266 xfs_inode_log_format_t *in_f;
2267 xfs_mount_t *mp;
2268 xfs_buf_t *bp;
1da177e4
LT
2269 xfs_dinode_t *dip;
2270 xfs_ino_t ino;
2271 int len;
2272 xfs_caddr_t src;
2273 xfs_caddr_t dest;
2274 int error;
2275 int attr_index;
2276 uint fields;
347d1c01 2277 xfs_icdinode_t *dicp;
6d192a9b 2278 int need_free = 0;
1da177e4
LT
2279
2280 if (pass == XLOG_RECOVER_PASS1) {
2281 return 0;
2282 }
2283
6d192a9b
TS
2284 if (item->ri_buf[0].i_len == sizeof(xfs_inode_log_format_t)) {
2285 in_f = (xfs_inode_log_format_t *)item->ri_buf[0].i_addr;
2286 } else {
2287 in_f = (xfs_inode_log_format_t *)kmem_alloc(
2288 sizeof(xfs_inode_log_format_t), KM_SLEEP);
2289 need_free = 1;
2290 error = xfs_inode_item_format_convert(&item->ri_buf[0], in_f);
2291 if (error)
2292 goto error;
2293 }
1da177e4
LT
2294 ino = in_f->ilf_ino;
2295 mp = log->l_mp;
1da177e4
LT
2296
2297 /*
2298 * Inode buffers can be freed, look out for it,
2299 * and do not replay the inode.
2300 */
a1941895
CH
2301 if (xlog_check_buffer_cancelled(log, in_f->ilf_blkno,
2302 in_f->ilf_len, 0)) {
6d192a9b
TS
2303 error = 0;
2304 goto error;
2305 }
1da177e4 2306
a1941895
CH
2307 bp = xfs_buf_read_flags(mp->m_ddev_targp, in_f->ilf_blkno,
2308 in_f->ilf_len, XFS_BUF_LOCK);
1da177e4
LT
2309 if (XFS_BUF_ISERROR(bp)) {
2310 xfs_ioerror_alert("xlog_recover_do..(read#2)", mp,
a1941895 2311 bp, in_f->ilf_blkno);
1da177e4
LT
2312 error = XFS_BUF_GETERROR(bp);
2313 xfs_buf_relse(bp);
6d192a9b 2314 goto error;
1da177e4
LT
2315 }
2316 error = 0;
2317 ASSERT(in_f->ilf_fields & XFS_ILOG_CORE);
a1941895 2318 dip = (xfs_dinode_t *)xfs_buf_offset(bp, in_f->ilf_boffset);
1da177e4
LT
2319
2320 /*
2321 * Make sure the place we're flushing out to really looks
2322 * like an inode!
2323 */
81591fe2 2324 if (unlikely(be16_to_cpu(dip->di_magic) != XFS_DINODE_MAGIC)) {
1da177e4
LT
2325 xfs_buf_relse(bp);
2326 xfs_fs_cmn_err(CE_ALERT, mp,
2327 "xfs_inode_recover: Bad inode magic number, dino ptr = 0x%p, dino bp = 0x%p, ino = %Ld",
2328 dip, bp, ino);
2329 XFS_ERROR_REPORT("xlog_recover_do_inode_trans(1)",
2330 XFS_ERRLEVEL_LOW, mp);
6d192a9b
TS
2331 error = EFSCORRUPTED;
2332 goto error;
1da177e4 2333 }
347d1c01 2334 dicp = (xfs_icdinode_t *)(item->ri_buf[1].i_addr);
1da177e4
LT
2335 if (unlikely(dicp->di_magic != XFS_DINODE_MAGIC)) {
2336 xfs_buf_relse(bp);
2337 xfs_fs_cmn_err(CE_ALERT, mp,
2338 "xfs_inode_recover: Bad inode log record, rec ptr 0x%p, ino %Ld",
2339 item, ino);
2340 XFS_ERROR_REPORT("xlog_recover_do_inode_trans(2)",
2341 XFS_ERRLEVEL_LOW, mp);
6d192a9b
TS
2342 error = EFSCORRUPTED;
2343 goto error;
1da177e4
LT
2344 }
2345
2346 /* Skip replay when the on disk inode is newer than the log one */
81591fe2 2347 if (dicp->di_flushiter < be16_to_cpu(dip->di_flushiter)) {
1da177e4
LT
2348 /*
2349 * Deal with the wrap case, DI_MAX_FLUSH is less
2350 * than smaller numbers
2351 */
81591fe2 2352 if (be16_to_cpu(dip->di_flushiter) == DI_MAX_FLUSH &&
347d1c01 2353 dicp->di_flushiter < (DI_MAX_FLUSH >> 1)) {
1da177e4
LT
2354 /* do nothing */
2355 } else {
2356 xfs_buf_relse(bp);
6d192a9b
TS
2357 error = 0;
2358 goto error;
1da177e4
LT
2359 }
2360 }
2361 /* Take the opportunity to reset the flush iteration count */
2362 dicp->di_flushiter = 0;
2363
2364 if (unlikely((dicp->di_mode & S_IFMT) == S_IFREG)) {
2365 if ((dicp->di_format != XFS_DINODE_FMT_EXTENTS) &&
2366 (dicp->di_format != XFS_DINODE_FMT_BTREE)) {
2367 XFS_CORRUPTION_ERROR("xlog_recover_do_inode_trans(3)",
2368 XFS_ERRLEVEL_LOW, mp, dicp);
2369 xfs_buf_relse(bp);
2370 xfs_fs_cmn_err(CE_ALERT, mp,
2371 "xfs_inode_recover: Bad regular inode log record, rec ptr 0x%p, ino ptr = 0x%p, ino bp = 0x%p, ino %Ld",
2372 item, dip, bp, ino);
6d192a9b
TS
2373 error = EFSCORRUPTED;
2374 goto error;
1da177e4
LT
2375 }
2376 } else if (unlikely((dicp->di_mode & S_IFMT) == S_IFDIR)) {
2377 if ((dicp->di_format != XFS_DINODE_FMT_EXTENTS) &&
2378 (dicp->di_format != XFS_DINODE_FMT_BTREE) &&
2379 (dicp->di_format != XFS_DINODE_FMT_LOCAL)) {
2380 XFS_CORRUPTION_ERROR("xlog_recover_do_inode_trans(4)",
2381 XFS_ERRLEVEL_LOW, mp, dicp);
2382 xfs_buf_relse(bp);
2383 xfs_fs_cmn_err(CE_ALERT, mp,
2384 "xfs_inode_recover: Bad dir inode log record, rec ptr 0x%p, ino ptr = 0x%p, ino bp = 0x%p, ino %Ld",
2385 item, dip, bp, ino);
6d192a9b
TS
2386 error = EFSCORRUPTED;
2387 goto error;
1da177e4
LT
2388 }
2389 }
2390 if (unlikely(dicp->di_nextents + dicp->di_anextents > dicp->di_nblocks)){
2391 XFS_CORRUPTION_ERROR("xlog_recover_do_inode_trans(5)",
2392 XFS_ERRLEVEL_LOW, mp, dicp);
2393 xfs_buf_relse(bp);
2394 xfs_fs_cmn_err(CE_ALERT, mp,
2395 "xfs_inode_recover: Bad inode log record, rec ptr 0x%p, dino ptr 0x%p, dino bp 0x%p, ino %Ld, total extents = %d, nblocks = %Ld",
2396 item, dip, bp, ino,
2397 dicp->di_nextents + dicp->di_anextents,
2398 dicp->di_nblocks);
6d192a9b
TS
2399 error = EFSCORRUPTED;
2400 goto error;
1da177e4
LT
2401 }
2402 if (unlikely(dicp->di_forkoff > mp->m_sb.sb_inodesize)) {
2403 XFS_CORRUPTION_ERROR("xlog_recover_do_inode_trans(6)",
2404 XFS_ERRLEVEL_LOW, mp, dicp);
2405 xfs_buf_relse(bp);
2406 xfs_fs_cmn_err(CE_ALERT, mp,
2407 "xfs_inode_recover: Bad inode log rec ptr 0x%p, dino ptr 0x%p, dino bp 0x%p, ino %Ld, forkoff 0x%x",
2408 item, dip, bp, ino, dicp->di_forkoff);
6d192a9b
TS
2409 error = EFSCORRUPTED;
2410 goto error;
1da177e4 2411 }
81591fe2 2412 if (unlikely(item->ri_buf[1].i_len > sizeof(struct xfs_icdinode))) {
1da177e4
LT
2413 XFS_CORRUPTION_ERROR("xlog_recover_do_inode_trans(7)",
2414 XFS_ERRLEVEL_LOW, mp, dicp);
2415 xfs_buf_relse(bp);
2416 xfs_fs_cmn_err(CE_ALERT, mp,
2417 "xfs_inode_recover: Bad inode log record length %d, rec ptr 0x%p",
2418 item->ri_buf[1].i_len, item);
6d192a9b
TS
2419 error = EFSCORRUPTED;
2420 goto error;
1da177e4
LT
2421 }
2422
2423 /* The core is in in-core format */
81591fe2 2424 xfs_dinode_to_disk(dip, (xfs_icdinode_t *)item->ri_buf[1].i_addr);
1da177e4
LT
2425
2426 /* the rest is in on-disk format */
81591fe2
CH
2427 if (item->ri_buf[1].i_len > sizeof(struct xfs_icdinode)) {
2428 memcpy((xfs_caddr_t) dip + sizeof(struct xfs_icdinode),
2429 item->ri_buf[1].i_addr + sizeof(struct xfs_icdinode),
2430 item->ri_buf[1].i_len - sizeof(struct xfs_icdinode));
1da177e4
LT
2431 }
2432
2433 fields = in_f->ilf_fields;
2434 switch (fields & (XFS_ILOG_DEV | XFS_ILOG_UUID)) {
2435 case XFS_ILOG_DEV:
81591fe2 2436 xfs_dinode_put_rdev(dip, in_f->ilf_u.ilfu_rdev);
1da177e4
LT
2437 break;
2438 case XFS_ILOG_UUID:
81591fe2
CH
2439 memcpy(XFS_DFORK_DPTR(dip),
2440 &in_f->ilf_u.ilfu_uuid,
2441 sizeof(uuid_t));
1da177e4
LT
2442 break;
2443 }
2444
2445 if (in_f->ilf_size == 2)
2446 goto write_inode_buffer;
2447 len = item->ri_buf[2].i_len;
2448 src = item->ri_buf[2].i_addr;
2449 ASSERT(in_f->ilf_size <= 4);
2450 ASSERT((in_f->ilf_size == 3) || (fields & XFS_ILOG_AFORK));
2451 ASSERT(!(fields & XFS_ILOG_DFORK) ||
2452 (len == in_f->ilf_dsize));
2453
2454 switch (fields & XFS_ILOG_DFORK) {
2455 case XFS_ILOG_DDATA:
2456 case XFS_ILOG_DEXT:
81591fe2 2457 memcpy(XFS_DFORK_DPTR(dip), src, len);
1da177e4
LT
2458 break;
2459
2460 case XFS_ILOG_DBROOT:
7cc95a82 2461 xfs_bmbt_to_bmdr(mp, (struct xfs_btree_block *)src, len,
81591fe2 2462 (xfs_bmdr_block_t *)XFS_DFORK_DPTR(dip),
1da177e4
LT
2463 XFS_DFORK_DSIZE(dip, mp));
2464 break;
2465
2466 default:
2467 /*
2468 * There are no data fork flags set.
2469 */
2470 ASSERT((fields & XFS_ILOG_DFORK) == 0);
2471 break;
2472 }
2473
2474 /*
2475 * If we logged any attribute data, recover it. There may or
2476 * may not have been any other non-core data logged in this
2477 * transaction.
2478 */
2479 if (in_f->ilf_fields & XFS_ILOG_AFORK) {
2480 if (in_f->ilf_fields & XFS_ILOG_DFORK) {
2481 attr_index = 3;
2482 } else {
2483 attr_index = 2;
2484 }
2485 len = item->ri_buf[attr_index].i_len;
2486 src = item->ri_buf[attr_index].i_addr;
2487 ASSERT(len == in_f->ilf_asize);
2488
2489 switch (in_f->ilf_fields & XFS_ILOG_AFORK) {
2490 case XFS_ILOG_ADATA:
2491 case XFS_ILOG_AEXT:
2492 dest = XFS_DFORK_APTR(dip);
2493 ASSERT(len <= XFS_DFORK_ASIZE(dip, mp));
2494 memcpy(dest, src, len);
2495 break;
2496
2497 case XFS_ILOG_ABROOT:
2498 dest = XFS_DFORK_APTR(dip);
7cc95a82
CH
2499 xfs_bmbt_to_bmdr(mp, (struct xfs_btree_block *)src,
2500 len, (xfs_bmdr_block_t*)dest,
1da177e4
LT
2501 XFS_DFORK_ASIZE(dip, mp));
2502 break;
2503
2504 default:
2505 xlog_warn("XFS: xlog_recover_do_inode_trans: Invalid flag");
2506 ASSERT(0);
2507 xfs_buf_relse(bp);
6d192a9b
TS
2508 error = EIO;
2509 goto error;
1da177e4
LT
2510 }
2511 }
2512
2513write_inode_buffer:
dd0bbad8
CH
2514 ASSERT(bp->b_mount == NULL || bp->b_mount == mp);
2515 bp->b_mount = mp;
2516 XFS_BUF_SET_IODONE_FUNC(bp, xlog_recover_iodone);
2517 xfs_bdwrite(mp, bp);
6d192a9b
TS
2518error:
2519 if (need_free)
f0e2d93c 2520 kmem_free(in_f);
6d192a9b 2521 return XFS_ERROR(error);
1da177e4
LT
2522}
2523
2524/*
2525 * Recover QUOTAOFF records. We simply make a note of it in the xlog_t
2526 * structure, so that we know not to do any dquot item or dquot buffer recovery,
2527 * of that type.
2528 */
2529STATIC int
2530xlog_recover_do_quotaoff_trans(
2531 xlog_t *log,
2532 xlog_recover_item_t *item,
2533 int pass)
2534{
2535 xfs_qoff_logformat_t *qoff_f;
2536
2537 if (pass == XLOG_RECOVER_PASS2) {
2538 return (0);
2539 }
2540
2541 qoff_f = (xfs_qoff_logformat_t *)item->ri_buf[0].i_addr;
2542 ASSERT(qoff_f);
2543
2544 /*
2545 * The logitem format's flag tells us if this was user quotaoff,
77a7cce4 2546 * group/project quotaoff or both.
1da177e4
LT
2547 */
2548 if (qoff_f->qf_flags & XFS_UQUOTA_ACCT)
2549 log->l_quotaoffs_flag |= XFS_DQ_USER;
77a7cce4
NS
2550 if (qoff_f->qf_flags & XFS_PQUOTA_ACCT)
2551 log->l_quotaoffs_flag |= XFS_DQ_PROJ;
1da177e4
LT
2552 if (qoff_f->qf_flags & XFS_GQUOTA_ACCT)
2553 log->l_quotaoffs_flag |= XFS_DQ_GROUP;
2554
2555 return (0);
2556}
2557
2558/*
2559 * Recover a dquot record
2560 */
2561STATIC int
2562xlog_recover_do_dquot_trans(
2563 xlog_t *log,
2564 xlog_recover_item_t *item,
2565 int pass)
2566{
2567 xfs_mount_t *mp;
2568 xfs_buf_t *bp;
2569 struct xfs_disk_dquot *ddq, *recddq;
2570 int error;
2571 xfs_dq_logformat_t *dq_f;
2572 uint type;
2573
2574 if (pass == XLOG_RECOVER_PASS1) {
2575 return 0;
2576 }
2577 mp = log->l_mp;
2578
2579 /*
2580 * Filesystems are required to send in quota flags at mount time.
2581 */
2582 if (mp->m_qflags == 0)
2583 return (0);
2584
2585 recddq = (xfs_disk_dquot_t *)item->ri_buf[1].i_addr;
2586 ASSERT(recddq);
2587 /*
2588 * This type of quotas was turned off, so ignore this record.
2589 */
b53e675d 2590 type = recddq->d_flags & (XFS_DQ_USER | XFS_DQ_PROJ | XFS_DQ_GROUP);
1da177e4
LT
2591 ASSERT(type);
2592 if (log->l_quotaoffs_flag & type)
2593 return (0);
2594
2595 /*
2596 * At this point we know that quota was _not_ turned off.
2597 * Since the mount flags are not indicating to us otherwise, this
2598 * must mean that quota is on, and the dquot needs to be replayed.
2599 * Remember that we may not have fully recovered the superblock yet,
2600 * so we can't do the usual trick of looking at the SB quota bits.
2601 *
2602 * The other possibility, of course, is that the quota subsystem was
2603 * removed since the last mount - ENOSYS.
2604 */
2605 dq_f = (xfs_dq_logformat_t *)item->ri_buf[0].i_addr;
2606 ASSERT(dq_f);
2607 if ((error = xfs_qm_dqcheck(recddq,
2608 dq_f->qlf_id,
2609 0, XFS_QMOPT_DOWARN,
2610 "xlog_recover_do_dquot_trans (log copy)"))) {
2611 return XFS_ERROR(EIO);
2612 }
2613 ASSERT(dq_f->qlf_len == 1);
2614
2615 error = xfs_read_buf(mp, mp->m_ddev_targp,
2616 dq_f->qlf_blkno,
2617 XFS_FSB_TO_BB(mp, dq_f->qlf_len),
2618 0, &bp);
2619 if (error) {
2620 xfs_ioerror_alert("xlog_recover_do..(read#3)", mp,
2621 bp, dq_f->qlf_blkno);
2622 return error;
2623 }
2624 ASSERT(bp);
2625 ddq = (xfs_disk_dquot_t *)xfs_buf_offset(bp, dq_f->qlf_boffset);
2626
2627 /*
2628 * At least the magic num portion should be on disk because this
2629 * was among a chunk of dquots created earlier, and we did some
2630 * minimal initialization then.
2631 */
2632 if (xfs_qm_dqcheck(ddq, dq_f->qlf_id, 0, XFS_QMOPT_DOWARN,
2633 "xlog_recover_do_dquot_trans")) {
2634 xfs_buf_relse(bp);
2635 return XFS_ERROR(EIO);
2636 }
2637
2638 memcpy(ddq, recddq, item->ri_buf[1].i_len);
2639
2640 ASSERT(dq_f->qlf_size == 2);
15ac08a8
CH
2641 ASSERT(bp->b_mount == NULL || bp->b_mount == mp);
2642 bp->b_mount = mp;
1da177e4
LT
2643 XFS_BUF_SET_IODONE_FUNC(bp, xlog_recover_iodone);
2644 xfs_bdwrite(mp, bp);
2645
2646 return (0);
2647}
2648
2649/*
2650 * This routine is called to create an in-core extent free intent
2651 * item from the efi format structure which was logged on disk.
2652 * It allocates an in-core efi, copies the extents from the format
2653 * structure into it, and adds the efi to the AIL with the given
2654 * LSN.
2655 */
6d192a9b 2656STATIC int
1da177e4
LT
2657xlog_recover_do_efi_trans(
2658 xlog_t *log,
2659 xlog_recover_item_t *item,
2660 xfs_lsn_t lsn,
2661 int pass)
2662{
6d192a9b 2663 int error;
1da177e4
LT
2664 xfs_mount_t *mp;
2665 xfs_efi_log_item_t *efip;
2666 xfs_efi_log_format_t *efi_formatp;
1da177e4
LT
2667
2668 if (pass == XLOG_RECOVER_PASS1) {
6d192a9b 2669 return 0;
1da177e4
LT
2670 }
2671
2672 efi_formatp = (xfs_efi_log_format_t *)item->ri_buf[0].i_addr;
1da177e4
LT
2673
2674 mp = log->l_mp;
2675 efip = xfs_efi_init(mp, efi_formatp->efi_nextents);
6d192a9b
TS
2676 if ((error = xfs_efi_copy_format(&(item->ri_buf[0]),
2677 &(efip->efi_format)))) {
2678 xfs_efi_item_free(efip);
2679 return error;
2680 }
1da177e4
LT
2681 efip->efi_next_extent = efi_formatp->efi_nextents;
2682 efip->efi_flags |= XFS_EFI_COMMITTED;
2683
a9c21c1b 2684 spin_lock(&log->l_ailp->xa_lock);
1da177e4 2685 /*
783a2f65 2686 * xfs_trans_ail_update() drops the AIL lock.
1da177e4 2687 */
783a2f65 2688 xfs_trans_ail_update(log->l_ailp, (xfs_log_item_t *)efip, lsn);
6d192a9b 2689 return 0;
1da177e4
LT
2690}
2691
2692
2693/*
2694 * This routine is called when an efd format structure is found in
2695 * a committed transaction in the log. It's purpose is to cancel
2696 * the corresponding efi if it was still in the log. To do this
2697 * it searches the AIL for the efi with an id equal to that in the
2698 * efd format structure. If we find it, we remove the efi from the
2699 * AIL and free it.
2700 */
2701STATIC void
2702xlog_recover_do_efd_trans(
2703 xlog_t *log,
2704 xlog_recover_item_t *item,
2705 int pass)
2706{
1da177e4
LT
2707 xfs_efd_log_format_t *efd_formatp;
2708 xfs_efi_log_item_t *efip = NULL;
2709 xfs_log_item_t *lip;
1da177e4 2710 __uint64_t efi_id;
27d8d5fe 2711 struct xfs_ail_cursor cur;
783a2f65 2712 struct xfs_ail *ailp = log->l_ailp;
1da177e4
LT
2713
2714 if (pass == XLOG_RECOVER_PASS1) {
2715 return;
2716 }
2717
2718 efd_formatp = (xfs_efd_log_format_t *)item->ri_buf[0].i_addr;
6d192a9b
TS
2719 ASSERT((item->ri_buf[0].i_len == (sizeof(xfs_efd_log_format_32_t) +
2720 ((efd_formatp->efd_nextents - 1) * sizeof(xfs_extent_32_t)))) ||
2721 (item->ri_buf[0].i_len == (sizeof(xfs_efd_log_format_64_t) +
2722 ((efd_formatp->efd_nextents - 1) * sizeof(xfs_extent_64_t)))));
1da177e4
LT
2723 efi_id = efd_formatp->efd_efi_id;
2724
2725 /*
2726 * Search for the efi with the id in the efd format structure
2727 * in the AIL.
2728 */
a9c21c1b
DC
2729 spin_lock(&ailp->xa_lock);
2730 lip = xfs_trans_ail_cursor_first(ailp, &cur, 0);
1da177e4
LT
2731 while (lip != NULL) {
2732 if (lip->li_type == XFS_LI_EFI) {
2733 efip = (xfs_efi_log_item_t *)lip;
2734 if (efip->efi_format.efi_id == efi_id) {
2735 /*
783a2f65 2736 * xfs_trans_ail_delete() drops the
1da177e4
LT
2737 * AIL lock.
2738 */
783a2f65 2739 xfs_trans_ail_delete(ailp, lip);
8ae2c0f6 2740 xfs_efi_item_free(efip);
a9c21c1b 2741 spin_lock(&ailp->xa_lock);
27d8d5fe 2742 break;
1da177e4
LT
2743 }
2744 }
a9c21c1b 2745 lip = xfs_trans_ail_cursor_next(ailp, &cur);
1da177e4 2746 }
a9c21c1b
DC
2747 xfs_trans_ail_cursor_done(ailp, &cur);
2748 spin_unlock(&ailp->xa_lock);
1da177e4
LT
2749}
2750
2751/*
2752 * Perform the transaction
2753 *
2754 * If the transaction modifies a buffer or inode, do it now. Otherwise,
2755 * EFIs and EFDs get queued up by adding entries into the AIL for them.
2756 */
2757STATIC int
2758xlog_recover_do_trans(
2759 xlog_t *log,
2760 xlog_recover_t *trans,
2761 int pass)
2762{
2763 int error = 0;
2764 xlog_recover_item_t *item, *first_item;
2765
ff0205e0
CH
2766 error = xlog_recover_reorder_trans(trans);
2767 if (error)
1da177e4 2768 return error;
ff0205e0 2769
1da177e4
LT
2770 first_item = item = trans->r_itemq;
2771 do {
ff0205e0
CH
2772 switch (ITEM_TYPE(item)) {
2773 case XFS_LI_BUF:
2774 error = xlog_recover_do_buffer_trans(log, item, pass);
2775 break;
2776 case XFS_LI_INODE:
2777 error = xlog_recover_do_inode_trans(log, item, pass);
2778 break;
2779 case XFS_LI_EFI:
2780 error = xlog_recover_do_efi_trans(log, item,
2781 trans->r_lsn, pass);
2782 break;
2783 case XFS_LI_EFD:
1da177e4 2784 xlog_recover_do_efd_trans(log, item, pass);
ff0205e0
CH
2785 error = 0;
2786 break;
2787 case XFS_LI_DQUOT:
2788 error = xlog_recover_do_dquot_trans(log, item, pass);
2789 break;
2790 case XFS_LI_QUOTAOFF:
2791 error = xlog_recover_do_quotaoff_trans(log, item,
2792 pass);
2793 break;
2794 default:
2795 xlog_warn(
2796 "XFS: invalid item type (%d) xlog_recover_do_trans", ITEM_TYPE(item));
1da177e4
LT
2797 ASSERT(0);
2798 error = XFS_ERROR(EIO);
2799 break;
2800 }
ff0205e0
CH
2801
2802 if (error)
2803 return error;
1da177e4
LT
2804 item = item->ri_next;
2805 } while (first_item != item);
2806
ff0205e0 2807 return 0;
1da177e4
LT
2808}
2809
2810/*
2811 * Free up any resources allocated by the transaction
2812 *
2813 * Remember that EFIs, EFDs, and IUNLINKs are handled later.
2814 */
2815STATIC void
2816xlog_recover_free_trans(
2817 xlog_recover_t *trans)
2818{
2819 xlog_recover_item_t *first_item, *item, *free_item;
2820 int i;
2821
2822 item = first_item = trans->r_itemq;
2823 do {
2824 free_item = item;
2825 item = item->ri_next;
2826 /* Free the regions in the item. */
2827 for (i = 0; i < free_item->ri_cnt; i++) {
f0e2d93c 2828 kmem_free(free_item->ri_buf[i].i_addr);
1da177e4
LT
2829 }
2830 /* Free the item itself */
f0e2d93c
DV
2831 kmem_free(free_item->ri_buf);
2832 kmem_free(free_item);
1da177e4
LT
2833 } while (first_item != item);
2834 /* Free the transaction recover structure */
f0e2d93c 2835 kmem_free(trans);
1da177e4
LT
2836}
2837
2838STATIC int
2839xlog_recover_commit_trans(
2840 xlog_t *log,
2841 xlog_recover_t **q,
2842 xlog_recover_t *trans,
2843 int pass)
2844{
2845 int error;
2846
2847 if ((error = xlog_recover_unlink_tid(q, trans)))
2848 return error;
2849 if ((error = xlog_recover_do_trans(log, trans, pass)))
2850 return error;
2851 xlog_recover_free_trans(trans); /* no error */
2852 return 0;
2853}
2854
2855STATIC int
2856xlog_recover_unmount_trans(
2857 xlog_recover_t *trans)
2858{
2859 /* Do nothing now */
2860 xlog_warn("XFS: xlog_recover_unmount_trans: Unmount LR");
2861 return 0;
2862}
2863
2864/*
2865 * There are two valid states of the r_state field. 0 indicates that the
2866 * transaction structure is in a normal state. We have either seen the
2867 * start of the transaction or the last operation we added was not a partial
2868 * operation. If the last operation we added to the transaction was a
2869 * partial operation, we need to mark r_state with XLOG_WAS_CONT_TRANS.
2870 *
2871 * NOTE: skip LRs with 0 data length.
2872 */
2873STATIC int
2874xlog_recover_process_data(
2875 xlog_t *log,
2876 xlog_recover_t *rhash[],
2877 xlog_rec_header_t *rhead,
2878 xfs_caddr_t dp,
2879 int pass)
2880{
2881 xfs_caddr_t lp;
2882 int num_logops;
2883 xlog_op_header_t *ohead;
2884 xlog_recover_t *trans;
2885 xlog_tid_t tid;
2886 int error;
2887 unsigned long hash;
2888 uint flags;
2889
b53e675d
CH
2890 lp = dp + be32_to_cpu(rhead->h_len);
2891 num_logops = be32_to_cpu(rhead->h_num_logops);
1da177e4
LT
2892
2893 /* check the log format matches our own - else we can't recover */
2894 if (xlog_header_check_recover(log->l_mp, rhead))
2895 return (XFS_ERROR(EIO));
2896
2897 while ((dp < lp) && num_logops) {
2898 ASSERT(dp + sizeof(xlog_op_header_t) <= lp);
2899 ohead = (xlog_op_header_t *)dp;
2900 dp += sizeof(xlog_op_header_t);
2901 if (ohead->oh_clientid != XFS_TRANSACTION &&
2902 ohead->oh_clientid != XFS_LOG) {
2903 xlog_warn(
2904 "XFS: xlog_recover_process_data: bad clientid");
2905 ASSERT(0);
2906 return (XFS_ERROR(EIO));
2907 }
67fcb7bf 2908 tid = be32_to_cpu(ohead->oh_tid);
1da177e4
LT
2909 hash = XLOG_RHASH(tid);
2910 trans = xlog_recover_find_tid(rhash[hash], tid);
2911 if (trans == NULL) { /* not found; add new tid */
2912 if (ohead->oh_flags & XLOG_START_TRANS)
2913 xlog_recover_new_tid(&rhash[hash], tid,
b53e675d 2914 be64_to_cpu(rhead->h_lsn));
1da177e4 2915 } else {
9742bb93
LM
2916 if (dp + be32_to_cpu(ohead->oh_len) > lp) {
2917 xlog_warn(
2918 "XFS: xlog_recover_process_data: bad length");
2919 WARN_ON(1);
2920 return (XFS_ERROR(EIO));
2921 }
1da177e4
LT
2922 flags = ohead->oh_flags & ~XLOG_END_TRANS;
2923 if (flags & XLOG_WAS_CONT_TRANS)
2924 flags &= ~XLOG_CONTINUE_TRANS;
2925 switch (flags) {
2926 case XLOG_COMMIT_TRANS:
2927 error = xlog_recover_commit_trans(log,
2928 &rhash[hash], trans, pass);
2929 break;
2930 case XLOG_UNMOUNT_TRANS:
2931 error = xlog_recover_unmount_trans(trans);
2932 break;
2933 case XLOG_WAS_CONT_TRANS:
2934 error = xlog_recover_add_to_cont_trans(trans,
67fcb7bf 2935 dp, be32_to_cpu(ohead->oh_len));
1da177e4
LT
2936 break;
2937 case XLOG_START_TRANS:
2938 xlog_warn(
2939 "XFS: xlog_recover_process_data: bad transaction");
2940 ASSERT(0);
2941 error = XFS_ERROR(EIO);
2942 break;
2943 case 0:
2944 case XLOG_CONTINUE_TRANS:
2945 error = xlog_recover_add_to_trans(trans,
67fcb7bf 2946 dp, be32_to_cpu(ohead->oh_len));
1da177e4
LT
2947 break;
2948 default:
2949 xlog_warn(
2950 "XFS: xlog_recover_process_data: bad flag");
2951 ASSERT(0);
2952 error = XFS_ERROR(EIO);
2953 break;
2954 }
2955 if (error)
2956 return error;
2957 }
67fcb7bf 2958 dp += be32_to_cpu(ohead->oh_len);
1da177e4
LT
2959 num_logops--;
2960 }
2961 return 0;
2962}
2963
2964/*
2965 * Process an extent free intent item that was recovered from
2966 * the log. We need to free the extents that it describes.
2967 */
3c1e2bbe 2968STATIC int
1da177e4
LT
2969xlog_recover_process_efi(
2970 xfs_mount_t *mp,
2971 xfs_efi_log_item_t *efip)
2972{
2973 xfs_efd_log_item_t *efdp;
2974 xfs_trans_t *tp;
2975 int i;
3c1e2bbe 2976 int error = 0;
1da177e4
LT
2977 xfs_extent_t *extp;
2978 xfs_fsblock_t startblock_fsb;
2979
2980 ASSERT(!(efip->efi_flags & XFS_EFI_RECOVERED));
2981
2982 /*
2983 * First check the validity of the extents described by the
2984 * EFI. If any are bad, then assume that all are bad and
2985 * just toss the EFI.
2986 */
2987 for (i = 0; i < efip->efi_format.efi_nextents; i++) {
2988 extp = &(efip->efi_format.efi_extents[i]);
2989 startblock_fsb = XFS_BB_TO_FSB(mp,
2990 XFS_FSB_TO_DADDR(mp, extp->ext_start));
2991 if ((startblock_fsb == 0) ||
2992 (extp->ext_len == 0) ||
2993 (startblock_fsb >= mp->m_sb.sb_dblocks) ||
2994 (extp->ext_len >= mp->m_sb.sb_agblocks)) {
2995 /*
2996 * This will pull the EFI from the AIL and
2997 * free the memory associated with it.
2998 */
2999 xfs_efi_release(efip, efip->efi_format.efi_nextents);
3c1e2bbe 3000 return XFS_ERROR(EIO);
1da177e4
LT
3001 }
3002 }
3003
3004 tp = xfs_trans_alloc(mp, 0);
3c1e2bbe 3005 error = xfs_trans_reserve(tp, 0, XFS_ITRUNCATE_LOG_RES(mp), 0, 0, 0);
fc6149d8
DC
3006 if (error)
3007 goto abort_error;
1da177e4
LT
3008 efdp = xfs_trans_get_efd(tp, efip, efip->efi_format.efi_nextents);
3009
3010 for (i = 0; i < efip->efi_format.efi_nextents; i++) {
3011 extp = &(efip->efi_format.efi_extents[i]);
fc6149d8
DC
3012 error = xfs_free_extent(tp, extp->ext_start, extp->ext_len);
3013 if (error)
3014 goto abort_error;
1da177e4
LT
3015 xfs_trans_log_efd_extent(tp, efdp, extp->ext_start,
3016 extp->ext_len);
3017 }
3018
3019 efip->efi_flags |= XFS_EFI_RECOVERED;
e5720eec 3020 error = xfs_trans_commit(tp, 0);
3c1e2bbe 3021 return error;
fc6149d8
DC
3022
3023abort_error:
3024 xfs_trans_cancel(tp, XFS_TRANS_ABORT);
3025 return error;
1da177e4
LT
3026}
3027
1da177e4
LT
3028/*
3029 * When this is called, all of the EFIs which did not have
3030 * corresponding EFDs should be in the AIL. What we do now
3031 * is free the extents associated with each one.
3032 *
3033 * Since we process the EFIs in normal transactions, they
3034 * will be removed at some point after the commit. This prevents
3035 * us from just walking down the list processing each one.
3036 * We'll use a flag in the EFI to skip those that we've already
3037 * processed and use the AIL iteration mechanism's generation
3038 * count to try to speed this up at least a bit.
3039 *
3040 * When we start, we know that the EFIs are the only things in
3041 * the AIL. As we process them, however, other items are added
3042 * to the AIL. Since everything added to the AIL must come after
3043 * everything already in the AIL, we stop processing as soon as
3044 * we see something other than an EFI in the AIL.
3045 */
3c1e2bbe 3046STATIC int
1da177e4
LT
3047xlog_recover_process_efis(
3048 xlog_t *log)
3049{
3050 xfs_log_item_t *lip;
3051 xfs_efi_log_item_t *efip;
3c1e2bbe 3052 int error = 0;
27d8d5fe 3053 struct xfs_ail_cursor cur;
a9c21c1b 3054 struct xfs_ail *ailp;
1da177e4 3055
a9c21c1b
DC
3056 ailp = log->l_ailp;
3057 spin_lock(&ailp->xa_lock);
3058 lip = xfs_trans_ail_cursor_first(ailp, &cur, 0);
1da177e4
LT
3059 while (lip != NULL) {
3060 /*
3061 * We're done when we see something other than an EFI.
27d8d5fe 3062 * There should be no EFIs left in the AIL now.
1da177e4
LT
3063 */
3064 if (lip->li_type != XFS_LI_EFI) {
27d8d5fe 3065#ifdef DEBUG
a9c21c1b 3066 for (; lip; lip = xfs_trans_ail_cursor_next(ailp, &cur))
27d8d5fe
DC
3067 ASSERT(lip->li_type != XFS_LI_EFI);
3068#endif
1da177e4
LT
3069 break;
3070 }
3071
3072 /*
3073 * Skip EFIs that we've already processed.
3074 */
3075 efip = (xfs_efi_log_item_t *)lip;
3076 if (efip->efi_flags & XFS_EFI_RECOVERED) {
a9c21c1b 3077 lip = xfs_trans_ail_cursor_next(ailp, &cur);
1da177e4
LT
3078 continue;
3079 }
3080
a9c21c1b
DC
3081 spin_unlock(&ailp->xa_lock);
3082 error = xlog_recover_process_efi(log->l_mp, efip);
3083 spin_lock(&ailp->xa_lock);
27d8d5fe
DC
3084 if (error)
3085 goto out;
a9c21c1b 3086 lip = xfs_trans_ail_cursor_next(ailp, &cur);
1da177e4 3087 }
27d8d5fe 3088out:
a9c21c1b
DC
3089 xfs_trans_ail_cursor_done(ailp, &cur);
3090 spin_unlock(&ailp->xa_lock);
3c1e2bbe 3091 return error;
1da177e4
LT
3092}
3093
3094/*
3095 * This routine performs a transaction to null out a bad inode pointer
3096 * in an agi unlinked inode hash bucket.
3097 */
3098STATIC void
3099xlog_recover_clear_agi_bucket(
3100 xfs_mount_t *mp,
3101 xfs_agnumber_t agno,
3102 int bucket)
3103{
3104 xfs_trans_t *tp;
3105 xfs_agi_t *agi;
3106 xfs_buf_t *agibp;
3107 int offset;
3108 int error;
3109
3110 tp = xfs_trans_alloc(mp, XFS_TRANS_CLEAR_AGI_BUCKET);
5e1be0fb
CH
3111 error = xfs_trans_reserve(tp, 0, XFS_CLEAR_AGI_BUCKET_LOG_RES(mp),
3112 0, 0, 0);
e5720eec
DC
3113 if (error)
3114 goto out_abort;
1da177e4 3115
5e1be0fb
CH
3116 error = xfs_read_agi(mp, tp, agno, &agibp);
3117 if (error)
e5720eec 3118 goto out_abort;
1da177e4 3119
5e1be0fb 3120 agi = XFS_BUF_TO_AGI(agibp);
16259e7d 3121 agi->agi_unlinked[bucket] = cpu_to_be32(NULLAGINO);
1da177e4
LT
3122 offset = offsetof(xfs_agi_t, agi_unlinked) +
3123 (sizeof(xfs_agino_t) * bucket);
3124 xfs_trans_log_buf(tp, agibp, offset,
3125 (offset + sizeof(xfs_agino_t) - 1));
3126
e5720eec
DC
3127 error = xfs_trans_commit(tp, 0);
3128 if (error)
3129 goto out_error;
3130 return;
3131
3132out_abort:
3133 xfs_trans_cancel(tp, XFS_TRANS_ABORT);
3134out_error:
3135 xfs_fs_cmn_err(CE_WARN, mp, "xlog_recover_clear_agi_bucket: "
3136 "failed to clear agi %d. Continuing.", agno);
3137 return;
1da177e4
LT
3138}
3139
23fac50f
CH
3140STATIC xfs_agino_t
3141xlog_recover_process_one_iunlink(
3142 struct xfs_mount *mp,
3143 xfs_agnumber_t agno,
3144 xfs_agino_t agino,
3145 int bucket)
3146{
3147 struct xfs_buf *ibp;
3148 struct xfs_dinode *dip;
3149 struct xfs_inode *ip;
3150 xfs_ino_t ino;
3151 int error;
3152
3153 ino = XFS_AGINO_TO_INO(mp, agno, agino);
3154 error = xfs_iget(mp, NULL, ino, 0, 0, &ip, 0);
3155 if (error)
3156 goto fail;
3157
3158 /*
3159 * Get the on disk inode to find the next inode in the bucket.
3160 */
76d8b277 3161 error = xfs_itobp(mp, NULL, ip, &dip, &ibp, XFS_BUF_LOCK);
23fac50f 3162 if (error)
0e446673 3163 goto fail_iput;
23fac50f 3164
23fac50f 3165 ASSERT(ip->i_d.di_nlink == 0);
0e446673 3166 ASSERT(ip->i_d.di_mode != 0);
23fac50f
CH
3167
3168 /* setup for the next pass */
3169 agino = be32_to_cpu(dip->di_next_unlinked);
3170 xfs_buf_relse(ibp);
3171
3172 /*
3173 * Prevent any DMAPI event from being sent when the reference on
3174 * the inode is dropped.
3175 */
3176 ip->i_d.di_dmevmask = 0;
3177
0e446673 3178 IRELE(ip);
23fac50f
CH
3179 return agino;
3180
0e446673
CH
3181 fail_iput:
3182 IRELE(ip);
23fac50f
CH
3183 fail:
3184 /*
3185 * We can't read in the inode this bucket points to, or this inode
3186 * is messed up. Just ditch this bucket of inodes. We will lose
3187 * some inodes and space, but at least we won't hang.
3188 *
3189 * Call xlog_recover_clear_agi_bucket() to perform a transaction to
3190 * clear the inode pointer in the bucket.
3191 */
3192 xlog_recover_clear_agi_bucket(mp, agno, bucket);
3193 return NULLAGINO;
3194}
3195
1da177e4
LT
3196/*
3197 * xlog_iunlink_recover
3198 *
3199 * This is called during recovery to process any inodes which
3200 * we unlinked but not freed when the system crashed. These
3201 * inodes will be on the lists in the AGI blocks. What we do
3202 * here is scan all the AGIs and fully truncate and free any
3203 * inodes found on the lists. Each inode is removed from the
3204 * lists when it has been fully truncated and is freed. The
3205 * freeing of the inode and its removal from the list must be
3206 * atomic.
3207 */
3208void
3209xlog_recover_process_iunlinks(
3210 xlog_t *log)
3211{
3212 xfs_mount_t *mp;
3213 xfs_agnumber_t agno;
3214 xfs_agi_t *agi;
3215 xfs_buf_t *agibp;
1da177e4 3216 xfs_agino_t agino;
1da177e4
LT
3217 int bucket;
3218 int error;
3219 uint mp_dmevmask;
3220
3221 mp = log->l_mp;
3222
3223 /*
3224 * Prevent any DMAPI event from being sent while in this function.
3225 */
3226 mp_dmevmask = mp->m_dmevmask;
3227 mp->m_dmevmask = 0;
3228
3229 for (agno = 0; agno < mp->m_sb.sb_agcount; agno++) {
3230 /*
3231 * Find the agi for this ag.
3232 */
5e1be0fb
CH
3233 error = xfs_read_agi(mp, NULL, agno, &agibp);
3234 if (error) {
3235 /*
3236 * AGI is b0rked. Don't process it.
3237 *
3238 * We should probably mark the filesystem as corrupt
3239 * after we've recovered all the ag's we can....
3240 */
3241 continue;
1da177e4
LT
3242 }
3243 agi = XFS_BUF_TO_AGI(agibp);
1da177e4
LT
3244
3245 for (bucket = 0; bucket < XFS_AGI_UNLINKED_BUCKETS; bucket++) {
16259e7d 3246 agino = be32_to_cpu(agi->agi_unlinked[bucket]);
1da177e4 3247 while (agino != NULLAGINO) {
1da177e4
LT
3248 /*
3249 * Release the agi buffer so that it can
3250 * be acquired in the normal course of the
3251 * transaction to truncate and free the inode.
3252 */
3253 xfs_buf_relse(agibp);
3254
23fac50f
CH
3255 agino = xlog_recover_process_one_iunlink(mp,
3256 agno, agino, bucket);
1da177e4
LT
3257
3258 /*
3259 * Reacquire the agibuffer and continue around
5e1be0fb
CH
3260 * the loop. This should never fail as we know
3261 * the buffer was good earlier on.
1da177e4 3262 */
5e1be0fb
CH
3263 error = xfs_read_agi(mp, NULL, agno, &agibp);
3264 ASSERT(error == 0);
1da177e4 3265 agi = XFS_BUF_TO_AGI(agibp);
1da177e4
LT
3266 }
3267 }
3268
3269 /*
3270 * Release the buffer for the current agi so we can
3271 * go on to the next one.
3272 */
3273 xfs_buf_relse(agibp);
3274 }
3275
3276 mp->m_dmevmask = mp_dmevmask;
3277}
3278
3279
3280#ifdef DEBUG
3281STATIC void
3282xlog_pack_data_checksum(
3283 xlog_t *log,
3284 xlog_in_core_t *iclog,
3285 int size)
3286{
3287 int i;
b53e675d 3288 __be32 *up;
1da177e4
LT
3289 uint chksum = 0;
3290
b53e675d 3291 up = (__be32 *)iclog->ic_datap;
1da177e4
LT
3292 /* divide length by 4 to get # words */
3293 for (i = 0; i < (size >> 2); i++) {
b53e675d 3294 chksum ^= be32_to_cpu(*up);
1da177e4
LT
3295 up++;
3296 }
b53e675d 3297 iclog->ic_header.h_chksum = cpu_to_be32(chksum);
1da177e4
LT
3298}
3299#else
3300#define xlog_pack_data_checksum(log, iclog, size)
3301#endif
3302
3303/*
3304 * Stamp cycle number in every block
3305 */
3306void
3307xlog_pack_data(
3308 xlog_t *log,
3309 xlog_in_core_t *iclog,
3310 int roundoff)
3311{
3312 int i, j, k;
3313 int size = iclog->ic_offset + roundoff;
b53e675d 3314 __be32 cycle_lsn;
1da177e4 3315 xfs_caddr_t dp;
1da177e4
LT
3316
3317 xlog_pack_data_checksum(log, iclog, size);
3318
3319 cycle_lsn = CYCLE_LSN_DISK(iclog->ic_header.h_lsn);
3320
3321 dp = iclog->ic_datap;
3322 for (i = 0; i < BTOBB(size) &&
3323 i < (XLOG_HEADER_CYCLE_SIZE / BBSIZE); i++) {
b53e675d
CH
3324 iclog->ic_header.h_cycle_data[i] = *(__be32 *)dp;
3325 *(__be32 *)dp = cycle_lsn;
1da177e4
LT
3326 dp += BBSIZE;
3327 }
3328
62118709 3329 if (xfs_sb_version_haslogv2(&log->l_mp->m_sb)) {
b28708d6
CH
3330 xlog_in_core_2_t *xhdr = iclog->ic_data;
3331
1da177e4
LT
3332 for ( ; i < BTOBB(size); i++) {
3333 j = i / (XLOG_HEADER_CYCLE_SIZE / BBSIZE);
3334 k = i % (XLOG_HEADER_CYCLE_SIZE / BBSIZE);
b53e675d
CH
3335 xhdr[j].hic_xheader.xh_cycle_data[k] = *(__be32 *)dp;
3336 *(__be32 *)dp = cycle_lsn;
1da177e4
LT
3337 dp += BBSIZE;
3338 }
3339
3340 for (i = 1; i < log->l_iclog_heads; i++) {
3341 xhdr[i].hic_xheader.xh_cycle = cycle_lsn;
3342 }
3343 }
3344}
3345
3346#if defined(DEBUG) && defined(XFS_LOUD_RECOVERY)
3347STATIC void
3348xlog_unpack_data_checksum(
3349 xlog_rec_header_t *rhead,
3350 xfs_caddr_t dp,
3351 xlog_t *log)
3352{
b53e675d 3353 __be32 *up = (__be32 *)dp;
1da177e4
LT
3354 uint chksum = 0;
3355 int i;
3356
3357 /* divide length by 4 to get # words */
b53e675d
CH
3358 for (i=0; i < be32_to_cpu(rhead->h_len) >> 2; i++) {
3359 chksum ^= be32_to_cpu(*up);
1da177e4
LT
3360 up++;
3361 }
b53e675d 3362 if (chksum != be32_to_cpu(rhead->h_chksum)) {
1da177e4
LT
3363 if (rhead->h_chksum ||
3364 ((log->l_flags & XLOG_CHKSUM_MISMATCH) == 0)) {
3365 cmn_err(CE_DEBUG,
b6574520 3366 "XFS: LogR chksum mismatch: was (0x%x) is (0x%x)\n",
b53e675d 3367 be32_to_cpu(rhead->h_chksum), chksum);
1da177e4
LT
3368 cmn_err(CE_DEBUG,
3369"XFS: Disregard message if filesystem was created with non-DEBUG kernel");
62118709 3370 if (xfs_sb_version_haslogv2(&log->l_mp->m_sb)) {
1da177e4 3371 cmn_err(CE_DEBUG,
b6574520 3372 "XFS: LogR this is a LogV2 filesystem\n");
1da177e4
LT
3373 }
3374 log->l_flags |= XLOG_CHKSUM_MISMATCH;
3375 }
3376 }
3377}
3378#else
3379#define xlog_unpack_data_checksum(rhead, dp, log)
3380#endif
3381
3382STATIC void
3383xlog_unpack_data(
3384 xlog_rec_header_t *rhead,
3385 xfs_caddr_t dp,
3386 xlog_t *log)
3387{
3388 int i, j, k;
1da177e4 3389
b53e675d 3390 for (i = 0; i < BTOBB(be32_to_cpu(rhead->h_len)) &&
1da177e4 3391 i < (XLOG_HEADER_CYCLE_SIZE / BBSIZE); i++) {
b53e675d 3392 *(__be32 *)dp = *(__be32 *)&rhead->h_cycle_data[i];
1da177e4
LT
3393 dp += BBSIZE;
3394 }
3395
62118709 3396 if (xfs_sb_version_haslogv2(&log->l_mp->m_sb)) {
b28708d6 3397 xlog_in_core_2_t *xhdr = (xlog_in_core_2_t *)rhead;
b53e675d 3398 for ( ; i < BTOBB(be32_to_cpu(rhead->h_len)); i++) {
1da177e4
LT
3399 j = i / (XLOG_HEADER_CYCLE_SIZE / BBSIZE);
3400 k = i % (XLOG_HEADER_CYCLE_SIZE / BBSIZE);
b53e675d 3401 *(__be32 *)dp = xhdr[j].hic_xheader.xh_cycle_data[k];
1da177e4
LT
3402 dp += BBSIZE;
3403 }
3404 }
3405
3406 xlog_unpack_data_checksum(rhead, dp, log);
3407}
3408
3409STATIC int
3410xlog_valid_rec_header(
3411 xlog_t *log,
3412 xlog_rec_header_t *rhead,
3413 xfs_daddr_t blkno)
3414{
3415 int hlen;
3416
b53e675d 3417 if (unlikely(be32_to_cpu(rhead->h_magicno) != XLOG_HEADER_MAGIC_NUM)) {
1da177e4
LT
3418 XFS_ERROR_REPORT("xlog_valid_rec_header(1)",
3419 XFS_ERRLEVEL_LOW, log->l_mp);
3420 return XFS_ERROR(EFSCORRUPTED);
3421 }
3422 if (unlikely(
3423 (!rhead->h_version ||
b53e675d 3424 (be32_to_cpu(rhead->h_version) & (~XLOG_VERSION_OKBITS))))) {
1da177e4 3425 xlog_warn("XFS: %s: unrecognised log version (%d).",
34a622b2 3426 __func__, be32_to_cpu(rhead->h_version));
1da177e4
LT
3427 return XFS_ERROR(EIO);
3428 }
3429
3430 /* LR body must have data or it wouldn't have been written */
b53e675d 3431 hlen = be32_to_cpu(rhead->h_len);
1da177e4
LT
3432 if (unlikely( hlen <= 0 || hlen > INT_MAX )) {
3433 XFS_ERROR_REPORT("xlog_valid_rec_header(2)",
3434 XFS_ERRLEVEL_LOW, log->l_mp);
3435 return XFS_ERROR(EFSCORRUPTED);
3436 }
3437 if (unlikely( blkno > log->l_logBBsize || blkno > INT_MAX )) {
3438 XFS_ERROR_REPORT("xlog_valid_rec_header(3)",
3439 XFS_ERRLEVEL_LOW, log->l_mp);
3440 return XFS_ERROR(EFSCORRUPTED);
3441 }
3442 return 0;
3443}
3444
3445/*
3446 * Read the log from tail to head and process the log records found.
3447 * Handle the two cases where the tail and head are in the same cycle
3448 * and where the active portion of the log wraps around the end of
3449 * the physical log separately. The pass parameter is passed through
3450 * to the routines called to process the data and is not looked at
3451 * here.
3452 */
3453STATIC int
3454xlog_do_recovery_pass(
3455 xlog_t *log,
3456 xfs_daddr_t head_blk,
3457 xfs_daddr_t tail_blk,
3458 int pass)
3459{
3460 xlog_rec_header_t *rhead;
3461 xfs_daddr_t blk_no;
3462 xfs_caddr_t bufaddr, offset;
3463 xfs_buf_t *hbp, *dbp;
3464 int error = 0, h_size;
3465 int bblks, split_bblks;
3466 int hblks, split_hblks, wrapped_hblks;
3467 xlog_recover_t *rhash[XLOG_RHASH_SIZE];
3468
3469 ASSERT(head_blk != tail_blk);
3470
3471 /*
3472 * Read the header of the tail block and get the iclog buffer size from
3473 * h_size. Use this to tell how many sectors make up the log header.
3474 */
62118709 3475 if (xfs_sb_version_haslogv2(&log->l_mp->m_sb)) {
1da177e4
LT
3476 /*
3477 * When using variable length iclogs, read first sector of
3478 * iclog header and extract the header size from it. Get a
3479 * new hbp that is the correct size.
3480 */
3481 hbp = xlog_get_bp(log, 1);
3482 if (!hbp)
3483 return ENOMEM;
3484 if ((error = xlog_bread(log, tail_blk, 1, hbp)))
3485 goto bread_err1;
3486 offset = xlog_align(log, tail_blk, 1, hbp);
3487 rhead = (xlog_rec_header_t *)offset;
3488 error = xlog_valid_rec_header(log, rhead, tail_blk);
3489 if (error)
3490 goto bread_err1;
b53e675d
CH
3491 h_size = be32_to_cpu(rhead->h_size);
3492 if ((be32_to_cpu(rhead->h_version) & XLOG_VERSION_2) &&
1da177e4
LT
3493 (h_size > XLOG_HEADER_CYCLE_SIZE)) {
3494 hblks = h_size / XLOG_HEADER_CYCLE_SIZE;
3495 if (h_size % XLOG_HEADER_CYCLE_SIZE)
3496 hblks++;
3497 xlog_put_bp(hbp);
3498 hbp = xlog_get_bp(log, hblks);
3499 } else {
3500 hblks = 1;
3501 }
3502 } else {
3503 ASSERT(log->l_sectbb_log == 0);
3504 hblks = 1;
3505 hbp = xlog_get_bp(log, 1);
3506 h_size = XLOG_BIG_RECORD_BSIZE;
3507 }
3508
3509 if (!hbp)
3510 return ENOMEM;
3511 dbp = xlog_get_bp(log, BTOBB(h_size));
3512 if (!dbp) {
3513 xlog_put_bp(hbp);
3514 return ENOMEM;
3515 }
3516
3517 memset(rhash, 0, sizeof(rhash));
3518 if (tail_blk <= head_blk) {
3519 for (blk_no = tail_blk; blk_no < head_blk; ) {
3520 if ((error = xlog_bread(log, blk_no, hblks, hbp)))
3521 goto bread_err2;
3522 offset = xlog_align(log, blk_no, hblks, hbp);
3523 rhead = (xlog_rec_header_t *)offset;
3524 error = xlog_valid_rec_header(log, rhead, blk_no);
3525 if (error)
3526 goto bread_err2;
3527
3528 /* blocks in data section */
b53e675d 3529 bblks = (int)BTOBB(be32_to_cpu(rhead->h_len));
1da177e4
LT
3530 error = xlog_bread(log, blk_no + hblks, bblks, dbp);
3531 if (error)
3532 goto bread_err2;
3533 offset = xlog_align(log, blk_no + hblks, bblks, dbp);
3534 xlog_unpack_data(rhead, offset, log);
3535 if ((error = xlog_recover_process_data(log,
3536 rhash, rhead, offset, pass)))
3537 goto bread_err2;
3538 blk_no += bblks + hblks;
3539 }
3540 } else {
3541 /*
3542 * Perform recovery around the end of the physical log.
3543 * When the head is not on the same cycle number as the tail,
3544 * we can't do a sequential recovery as above.
3545 */
3546 blk_no = tail_blk;
3547 while (blk_no < log->l_logBBsize) {
3548 /*
3549 * Check for header wrapping around physical end-of-log
3550 */
3551 offset = NULL;
3552 split_hblks = 0;
3553 wrapped_hblks = 0;
3554 if (blk_no + hblks <= log->l_logBBsize) {
3555 /* Read header in one read */
3556 error = xlog_bread(log, blk_no, hblks, hbp);
3557 if (error)
3558 goto bread_err2;
3559 offset = xlog_align(log, blk_no, hblks, hbp);
3560 } else {
3561 /* This LR is split across physical log end */
3562 if (blk_no != log->l_logBBsize) {
3563 /* some data before physical log end */
3564 ASSERT(blk_no <= INT_MAX);
3565 split_hblks = log->l_logBBsize - (int)blk_no;
3566 ASSERT(split_hblks > 0);
3567 if ((error = xlog_bread(log, blk_no,
3568 split_hblks, hbp)))
3569 goto bread_err2;
3570 offset = xlog_align(log, blk_no,
3571 split_hblks, hbp);
3572 }
3573 /*
3574 * Note: this black magic still works with
3575 * large sector sizes (non-512) only because:
3576 * - we increased the buffer size originally
3577 * by 1 sector giving us enough extra space
3578 * for the second read;
3579 * - the log start is guaranteed to be sector
3580 * aligned;
3581 * - we read the log end (LR header start)
3582 * _first_, then the log start (LR header end)
3583 * - order is important.
3584 */
234f56ac 3585 wrapped_hblks = hblks - split_hblks;
1da177e4 3586 bufaddr = XFS_BUF_PTR(hbp);
234f56ac 3587 error = XFS_BUF_SET_PTR(hbp,
1da177e4
LT
3588 bufaddr + BBTOB(split_hblks),
3589 BBTOB(hblks - split_hblks));
234f56ac
DC
3590 if (!error)
3591 error = xlog_bread(log, 0,
3592 wrapped_hblks, hbp);
3593 if (!error)
3594 error = XFS_BUF_SET_PTR(hbp, bufaddr,
3595 BBTOB(hblks));
1da177e4
LT
3596 if (error)
3597 goto bread_err2;
1da177e4
LT
3598 if (!offset)
3599 offset = xlog_align(log, 0,
3600 wrapped_hblks, hbp);
3601 }
3602 rhead = (xlog_rec_header_t *)offset;
3603 error = xlog_valid_rec_header(log, rhead,
3604 split_hblks ? blk_no : 0);
3605 if (error)
3606 goto bread_err2;
3607
b53e675d 3608 bblks = (int)BTOBB(be32_to_cpu(rhead->h_len));
1da177e4
LT
3609 blk_no += hblks;
3610
3611 /* Read in data for log record */
3612 if (blk_no + bblks <= log->l_logBBsize) {
3613 error = xlog_bread(log, blk_no, bblks, dbp);
3614 if (error)
3615 goto bread_err2;
3616 offset = xlog_align(log, blk_no, bblks, dbp);
3617 } else {
3618 /* This log record is split across the
3619 * physical end of log */
3620 offset = NULL;
3621 split_bblks = 0;
3622 if (blk_no != log->l_logBBsize) {
3623 /* some data is before the physical
3624 * end of log */
3625 ASSERT(!wrapped_hblks);
3626 ASSERT(blk_no <= INT_MAX);
3627 split_bblks =
3628 log->l_logBBsize - (int)blk_no;
3629 ASSERT(split_bblks > 0);
3630 if ((error = xlog_bread(log, blk_no,
3631 split_bblks, dbp)))
3632 goto bread_err2;
3633 offset = xlog_align(log, blk_no,
3634 split_bblks, dbp);
3635 }
3636 /*
3637 * Note: this black magic still works with
3638 * large sector sizes (non-512) only because:
3639 * - we increased the buffer size originally
3640 * by 1 sector giving us enough extra space
3641 * for the second read;
3642 * - the log start is guaranteed to be sector
3643 * aligned;
3644 * - we read the log end (LR header start)
3645 * _first_, then the log start (LR header end)
3646 * - order is important.
3647 */
3648 bufaddr = XFS_BUF_PTR(dbp);
234f56ac 3649 error = XFS_BUF_SET_PTR(dbp,
1da177e4
LT
3650 bufaddr + BBTOB(split_bblks),
3651 BBTOB(bblks - split_bblks));
234f56ac
DC
3652 if (!error)
3653 error = xlog_bread(log, wrapped_hblks,
3654 bblks - split_bblks,
3655 dbp);
3656 if (!error)
3657 error = XFS_BUF_SET_PTR(dbp, bufaddr,
3658 h_size);
3659 if (error)
1da177e4 3660 goto bread_err2;
1da177e4
LT
3661 if (!offset)
3662 offset = xlog_align(log, wrapped_hblks,
3663 bblks - split_bblks, dbp);
3664 }
3665 xlog_unpack_data(rhead, offset, log);
3666 if ((error = xlog_recover_process_data(log, rhash,
3667 rhead, offset, pass)))
3668 goto bread_err2;
3669 blk_no += bblks;
3670 }
3671
3672 ASSERT(blk_no >= log->l_logBBsize);
3673 blk_no -= log->l_logBBsize;
3674
3675 /* read first part of physical log */
3676 while (blk_no < head_blk) {
3677 if ((error = xlog_bread(log, blk_no, hblks, hbp)))
3678 goto bread_err2;
3679 offset = xlog_align(log, blk_no, hblks, hbp);
3680 rhead = (xlog_rec_header_t *)offset;
3681 error = xlog_valid_rec_header(log, rhead, blk_no);
3682 if (error)
3683 goto bread_err2;
b53e675d 3684 bblks = (int)BTOBB(be32_to_cpu(rhead->h_len));
1da177e4
LT
3685 if ((error = xlog_bread(log, blk_no+hblks, bblks, dbp)))
3686 goto bread_err2;
3687 offset = xlog_align(log, blk_no+hblks, bblks, dbp);
3688 xlog_unpack_data(rhead, offset, log);
3689 if ((error = xlog_recover_process_data(log, rhash,
3690 rhead, offset, pass)))
3691 goto bread_err2;
3692 blk_no += bblks + hblks;
3693 }
3694 }
3695
3696 bread_err2:
3697 xlog_put_bp(dbp);
3698 bread_err1:
3699 xlog_put_bp(hbp);
3700 return error;
3701}
3702
3703/*
3704 * Do the recovery of the log. We actually do this in two phases.
3705 * The two passes are necessary in order to implement the function
3706 * of cancelling a record written into the log. The first pass
3707 * determines those things which have been cancelled, and the
3708 * second pass replays log items normally except for those which
3709 * have been cancelled. The handling of the replay and cancellations
3710 * takes place in the log item type specific routines.
3711 *
3712 * The table of items which have cancel records in the log is allocated
3713 * and freed at this level, since only here do we know when all of
3714 * the log recovery has been completed.
3715 */
3716STATIC int
3717xlog_do_log_recovery(
3718 xlog_t *log,
3719 xfs_daddr_t head_blk,
3720 xfs_daddr_t tail_blk)
3721{
3722 int error;
3723
3724 ASSERT(head_blk != tail_blk);
3725
3726 /*
3727 * First do a pass to find all of the cancelled buf log items.
3728 * Store them in the buf_cancel_table for use in the second pass.
3729 */
3730 log->l_buf_cancel_table =
3731 (xfs_buf_cancel_t **)kmem_zalloc(XLOG_BC_TABLE_SIZE *
3732 sizeof(xfs_buf_cancel_t*),
3733 KM_SLEEP);
3734 error = xlog_do_recovery_pass(log, head_blk, tail_blk,
3735 XLOG_RECOVER_PASS1);
3736 if (error != 0) {
f0e2d93c 3737 kmem_free(log->l_buf_cancel_table);
1da177e4
LT
3738 log->l_buf_cancel_table = NULL;
3739 return error;
3740 }
3741 /*
3742 * Then do a second pass to actually recover the items in the log.
3743 * When it is complete free the table of buf cancel items.
3744 */
3745 error = xlog_do_recovery_pass(log, head_blk, tail_blk,
3746 XLOG_RECOVER_PASS2);
3747#ifdef DEBUG
6d192a9b 3748 if (!error) {
1da177e4
LT
3749 int i;
3750
3751 for (i = 0; i < XLOG_BC_TABLE_SIZE; i++)
3752 ASSERT(log->l_buf_cancel_table[i] == NULL);
3753 }
3754#endif /* DEBUG */
3755
f0e2d93c 3756 kmem_free(log->l_buf_cancel_table);
1da177e4
LT
3757 log->l_buf_cancel_table = NULL;
3758
3759 return error;
3760}
3761
3762/*
3763 * Do the actual recovery
3764 */
3765STATIC int
3766xlog_do_recover(
3767 xlog_t *log,
3768 xfs_daddr_t head_blk,
3769 xfs_daddr_t tail_blk)
3770{
3771 int error;
3772 xfs_buf_t *bp;
3773 xfs_sb_t *sbp;
3774
3775 /*
3776 * First replay the images in the log.
3777 */
3778 error = xlog_do_log_recovery(log, head_blk, tail_blk);
3779 if (error) {
3780 return error;
3781 }
3782
3783 XFS_bflush(log->l_mp->m_ddev_targp);
3784
3785 /*
3786 * If IO errors happened during recovery, bail out.
3787 */
3788 if (XFS_FORCED_SHUTDOWN(log->l_mp)) {
3789 return (EIO);
3790 }
3791
3792 /*
3793 * We now update the tail_lsn since much of the recovery has completed
3794 * and there may be space available to use. If there were no extent
3795 * or iunlinks, we can free up the entire log and set the tail_lsn to
3796 * be the last_sync_lsn. This was set in xlog_find_tail to be the
3797 * lsn of the last known good LR on disk. If there are extent frees
3798 * or iunlinks they will have some entries in the AIL; so we look at
3799 * the AIL to determine how to set the tail_lsn.
3800 */
3801 xlog_assign_tail_lsn(log->l_mp);
3802
3803 /*
3804 * Now that we've finished replaying all buffer and inode
3805 * updates, re-read in the superblock.
3806 */
3807 bp = xfs_getsb(log->l_mp, 0);
3808 XFS_BUF_UNDONE(bp);
bebf963f
LM
3809 ASSERT(!(XFS_BUF_ISWRITE(bp)));
3810 ASSERT(!(XFS_BUF_ISDELAYWRITE(bp)));
1da177e4 3811 XFS_BUF_READ(bp);
bebf963f 3812 XFS_BUF_UNASYNC(bp);
1da177e4 3813 xfsbdstrat(log->l_mp, bp);
d64e31a2
DC
3814 error = xfs_iowait(bp);
3815 if (error) {
1da177e4
LT
3816 xfs_ioerror_alert("xlog_do_recover",
3817 log->l_mp, bp, XFS_BUF_ADDR(bp));
3818 ASSERT(0);
3819 xfs_buf_relse(bp);
3820 return error;
3821 }
3822
3823 /* Convert superblock from on-disk format */
3824 sbp = &log->l_mp->m_sb;
2bdf7cd0 3825 xfs_sb_from_disk(sbp, XFS_BUF_TO_SBP(bp));
1da177e4 3826 ASSERT(sbp->sb_magicnum == XFS_SB_MAGIC);
62118709 3827 ASSERT(xfs_sb_good_version(sbp));
1da177e4
LT
3828 xfs_buf_relse(bp);
3829
5478eead
LM
3830 /* We've re-read the superblock so re-initialize per-cpu counters */
3831 xfs_icsb_reinit_counters(log->l_mp);
3832
1da177e4
LT
3833 xlog_recover_check_summary(log);
3834
3835 /* Normal transactions can now occur */
3836 log->l_flags &= ~XLOG_ACTIVE_RECOVERY;
3837 return 0;
3838}
3839
3840/*
3841 * Perform recovery and re-initialize some log variables in xlog_find_tail.
3842 *
3843 * Return error or zero.
3844 */
3845int
3846xlog_recover(
65be6054 3847 xlog_t *log)
1da177e4
LT
3848{
3849 xfs_daddr_t head_blk, tail_blk;
3850 int error;
3851
3852 /* find the tail of the log */
65be6054 3853 if ((error = xlog_find_tail(log, &head_blk, &tail_blk)))
1da177e4
LT
3854 return error;
3855
3856 if (tail_blk != head_blk) {
3857 /* There used to be a comment here:
3858 *
3859 * disallow recovery on read-only mounts. note -- mount
3860 * checks for ENOSPC and turns it into an intelligent
3861 * error message.
3862 * ...but this is no longer true. Now, unless you specify
3863 * NORECOVERY (in which case this function would never be
3864 * called), we just go ahead and recover. We do this all
3865 * under the vfs layer, so we can get away with it unless
3866 * the device itself is read-only, in which case we fail.
3867 */
3a02ee18 3868 if ((error = xfs_dev_is_read_only(log->l_mp, "recovery"))) {
1da177e4
LT
3869 return error;
3870 }
3871
3872 cmn_err(CE_NOTE,
fc1f8c1c
NS
3873 "Starting XFS recovery on filesystem: %s (logdev: %s)",
3874 log->l_mp->m_fsname, log->l_mp->m_logname ?
3875 log->l_mp->m_logname : "internal");
1da177e4
LT
3876
3877 error = xlog_do_recover(log, head_blk, tail_blk);
3878 log->l_flags |= XLOG_RECOVERY_NEEDED;
3879 }
3880 return error;
3881}
3882
3883/*
3884 * In the first part of recovery we replay inodes and buffers and build
3885 * up the list of extent free items which need to be processed. Here
3886 * we process the extent free items and clean up the on disk unlinked
3887 * inode lists. This is separated from the first part of recovery so
3888 * that the root and real-time bitmap inodes can be read in from disk in
3889 * between the two stages. This is necessary so that we can free space
3890 * in the real-time portion of the file system.
3891 */
3892int
3893xlog_recover_finish(
4249023a 3894 xlog_t *log)
1da177e4
LT
3895{
3896 /*
3897 * Now we're ready to do the transactions needed for the
3898 * rest of recovery. Start with completing all the extent
3899 * free intent records and then process the unlinked inode
3900 * lists. At this point, we essentially run in normal mode
3901 * except that we're still performing recovery actions
3902 * rather than accepting new requests.
3903 */
3904 if (log->l_flags & XLOG_RECOVERY_NEEDED) {
3c1e2bbe
DC
3905 int error;
3906 error = xlog_recover_process_efis(log);
3907 if (error) {
3908 cmn_err(CE_ALERT,
3909 "Failed to recover EFIs on filesystem: %s",
3910 log->l_mp->m_fsname);
3911 return error;
3912 }
1da177e4
LT
3913 /*
3914 * Sync the log to get all the EFIs out of the AIL.
3915 * This isn't absolutely necessary, but it helps in
3916 * case the unlink transactions would have problems
3917 * pushing the EFIs out of the way.
3918 */
3919 xfs_log_force(log->l_mp, (xfs_lsn_t)0,
3920 (XFS_LOG_FORCE | XFS_LOG_SYNC));
3921
4249023a 3922 xlog_recover_process_iunlinks(log);
1da177e4
LT
3923
3924 xlog_recover_check_summary(log);
3925
3926 cmn_err(CE_NOTE,
fc1f8c1c
NS
3927 "Ending XFS recovery on filesystem: %s (logdev: %s)",
3928 log->l_mp->m_fsname, log->l_mp->m_logname ?
3929 log->l_mp->m_logname : "internal");
1da177e4
LT
3930 log->l_flags &= ~XLOG_RECOVERY_NEEDED;
3931 } else {
3932 cmn_err(CE_DEBUG,
b6574520 3933 "!Ending clean XFS mount for filesystem: %s\n",
1da177e4
LT
3934 log->l_mp->m_fsname);
3935 }
3936 return 0;
3937}
3938
3939
3940#if defined(DEBUG)
3941/*
3942 * Read all of the agf and agi counters and check that they
3943 * are consistent with the superblock counters.
3944 */
3945void
3946xlog_recover_check_summary(
3947 xlog_t *log)
3948{
3949 xfs_mount_t *mp;
3950 xfs_agf_t *agfp;
1da177e4
LT
3951 xfs_buf_t *agfbp;
3952 xfs_buf_t *agibp;
1da177e4
LT
3953 xfs_buf_t *sbbp;
3954#ifdef XFS_LOUD_RECOVERY
3955 xfs_sb_t *sbp;
3956#endif
3957 xfs_agnumber_t agno;
3958 __uint64_t freeblks;
3959 __uint64_t itotal;
3960 __uint64_t ifree;
5e1be0fb 3961 int error;
1da177e4
LT
3962
3963 mp = log->l_mp;
3964
3965 freeblks = 0LL;
3966 itotal = 0LL;
3967 ifree = 0LL;
3968 for (agno = 0; agno < mp->m_sb.sb_agcount; agno++) {
4805621a
FCH
3969 error = xfs_read_agf(mp, NULL, agno, 0, &agfbp);
3970 if (error) {
3971 xfs_fs_cmn_err(CE_ALERT, mp,
3972 "xlog_recover_check_summary(agf)"
3973 "agf read failed agno %d error %d",
3974 agno, error);
3975 } else {
3976 agfp = XFS_BUF_TO_AGF(agfbp);
3977 freeblks += be32_to_cpu(agfp->agf_freeblks) +
3978 be32_to_cpu(agfp->agf_flcount);
3979 xfs_buf_relse(agfbp);
1da177e4 3980 }
1da177e4 3981
5e1be0fb
CH
3982 error = xfs_read_agi(mp, NULL, agno, &agibp);
3983 if (!error) {
3984 struct xfs_agi *agi = XFS_BUF_TO_AGI(agibp);
16259e7d 3985
5e1be0fb
CH
3986 itotal += be32_to_cpu(agi->agi_count);
3987 ifree += be32_to_cpu(agi->agi_freecount);
3988 xfs_buf_relse(agibp);
3989 }
1da177e4
LT
3990 }
3991
3992 sbbp = xfs_getsb(mp, 0);
3993#ifdef XFS_LOUD_RECOVERY
3994 sbp = &mp->m_sb;
2bdf7cd0 3995 xfs_sb_from_disk(sbp, XFS_BUF_TO_SBP(sbbp));
1da177e4
LT
3996 cmn_err(CE_NOTE,
3997 "xlog_recover_check_summary: sb_icount %Lu itotal %Lu",
3998 sbp->sb_icount, itotal);
3999 cmn_err(CE_NOTE,
4000 "xlog_recover_check_summary: sb_ifree %Lu itotal %Lu",
4001 sbp->sb_ifree, ifree);
4002 cmn_err(CE_NOTE,
4003 "xlog_recover_check_summary: sb_fdblocks %Lu freeblks %Lu",
4004 sbp->sb_fdblocks, freeblks);
4005#if 0
4006 /*
4007 * This is turned off until I account for the allocation
4008 * btree blocks which live in free space.
4009 */
4010 ASSERT(sbp->sb_icount == itotal);
4011 ASSERT(sbp->sb_ifree == ifree);
4012 ASSERT(sbp->sb_fdblocks == freeblks);
4013#endif
4014#endif
4015 xfs_buf_relse(sbbp);
4016}
4017#endif /* DEBUG */
This page took 0.637383 seconds and 5 git commands to generate.