2001-03-04 19:42:05 -05:00
|
|
|
/*-
|
|
|
|
* See the file LICENSE for redistribution information.
|
|
|
|
*
|
2005-12-05 10:27:46 -08:00
|
|
|
* Copyright (c) 1996-2005
|
2001-03-04 19:42:05 -05:00
|
|
|
* Sleepycat Software. All rights reserved.
|
2005-07-20 15:48:22 -07:00
|
|
|
*
|
2005-12-05 10:27:46 -08:00
|
|
|
* $Id: env_recover.c,v 12.10 2005/10/19 15:14:11 bostic Exp $
|
2001-03-04 19:42:05 -05:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "db_config.h"
|
|
|
|
|
|
|
|
#ifndef lint
|
|
|
|
static const char copyright[] =
|
2005-12-05 10:27:46 -08:00
|
|
|
"Copyright (c) 1996-2005\nSleepycat Software Inc. All rights reserved.\n";
|
2001-03-04 19:42:05 -05:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef NO_SYSTEM_INCLUDES
|
|
|
|
#include <sys/types.h>
|
|
|
|
|
|
|
|
#if TIME_WITH_SYS_TIME
|
|
|
|
#include <sys/time.h>
|
|
|
|
#include <time.h>
|
|
|
|
#else
|
|
|
|
#if HAVE_SYS_TIME_H
|
|
|
|
#include <sys/time.h>
|
|
|
|
#else
|
|
|
|
#include <time.h>
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <string.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "db_int.h"
|
2002-10-30 15:57:05 +04:00
|
|
|
#include "dbinc/db_page.h"
|
|
|
|
#include "dbinc/db_shash.h"
|
|
|
|
#include "dbinc/log.h"
|
|
|
|
#include "dbinc/txn.h"
|
2005-07-20 15:48:22 -07:00
|
|
|
#include "dbinc/mp.h"
|
2002-10-30 15:57:05 +04:00
|
|
|
#include "dbinc/db_am.h"
|
|
|
|
|
2005-07-20 15:48:22 -07:00
|
|
|
static int __db_log_corrupt __P((DB_ENV *, DB_LSN *));
|
2002-10-30 15:57:05 +04:00
|
|
|
static int __log_earliest __P((DB_ENV *, DB_LOGC *, int32_t *, DB_LSN *));
|
|
|
|
static double __lsn_diff __P((DB_LSN *, DB_LSN *, DB_LSN *, u_int32_t, int));
|
2001-03-04 19:42:05 -05:00
|
|
|
|
|
|
|
/*
|
|
|
|
* __db_apprec --
|
2002-10-30 15:57:05 +04:00
|
|
|
* Perform recovery. If max_lsn is non-NULL, then we are trying
|
|
|
|
* to synchronize this system up with another system that has a max
|
|
|
|
* LSN of max_lsn, so we need to roll back sufficiently far for that
|
|
|
|
* to work. See __log_backup for details.
|
2001-03-04 19:42:05 -05:00
|
|
|
*
|
2005-07-20 15:48:22 -07:00
|
|
|
* PUBLIC: int __db_apprec __P((DB_ENV *, DB_LSN *, DB_LSN *, int, u_int32_t));
|
2001-03-04 19:42:05 -05:00
|
|
|
*/
|
|
|
|
int
|
2005-07-20 15:48:22 -07:00
|
|
|
__db_apprec(dbenv, max_lsn, trunclsn, update, flags)
|
2001-03-04 19:42:05 -05:00
|
|
|
DB_ENV *dbenv;
|
2005-07-20 15:48:22 -07:00
|
|
|
DB_LSN *max_lsn, *trunclsn;
|
|
|
|
int update;
|
2001-03-04 19:42:05 -05:00
|
|
|
u_int32_t flags;
|
|
|
|
{
|
|
|
|
DBT data;
|
2002-10-30 15:57:05 +04:00
|
|
|
DB_LOGC *logc;
|
2005-07-20 15:48:22 -07:00
|
|
|
DB_LSN ckp_lsn, first_lsn, last_lsn, lowlsn, lsn, stop_lsn, tlsn;
|
2005-12-05 10:27:46 -08:00
|
|
|
DB_TXNHEAD *txninfo;
|
2001-03-04 19:42:05 -05:00
|
|
|
DB_TXNREGION *region;
|
2005-07-20 15:48:22 -07:00
|
|
|
REGENV *renv;
|
|
|
|
REGINFO *infop;
|
2001-03-04 19:42:05 -05:00
|
|
|
__txn_ckp_args *ckp_args;
|
|
|
|
time_t now, tlow;
|
2002-10-30 15:57:05 +04:00
|
|
|
double nfiles;
|
2005-07-20 15:48:22 -07:00
|
|
|
u_int32_t hi_txn, log_size, txnid;
|
|
|
|
int32_t low;
|
|
|
|
int have_rec, progress, ret, t_ret;
|
2002-10-30 15:57:05 +04:00
|
|
|
char *p, *pass, t1[60], t2[60];
|
2001-03-04 19:42:05 -05:00
|
|
|
|
2005-12-05 10:27:46 -08:00
|
|
|
COMPQUIET(nfiles, (double)0.001);
|
2002-10-30 15:57:05 +04:00
|
|
|
|
|
|
|
logc = NULL;
|
|
|
|
ckp_args = NULL;
|
|
|
|
hi_txn = TXN_MAXIMUM;
|
|
|
|
txninfo = NULL;
|
|
|
|
pass = "initial";
|
2005-12-05 10:27:46 -08:00
|
|
|
ZERO_LSN(lsn);
|
2002-10-30 15:57:05 +04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* XXX
|
|
|
|
* Get the log size. No locking required because we're single-threaded
|
|
|
|
* during recovery.
|
|
|
|
*/
|
|
|
|
log_size =
|
|
|
|
((LOG *)(((DB_LOG *)dbenv->lg_handle)->reginfo.primary))->log_size;
|
2001-03-04 19:42:05 -05:00
|
|
|
|
|
|
|
/*
|
2005-07-20 15:48:22 -07:00
|
|
|
* If we need to, update the env handle timestamp.
|
2001-03-04 19:42:05 -05:00
|
|
|
*/
|
2005-12-05 10:27:46 -08:00
|
|
|
if (update && REP_ON(dbenv)) {
|
2005-07-20 15:48:22 -07:00
|
|
|
infop = dbenv->reginfo;
|
|
|
|
renv = infop->primary;
|
|
|
|
(void)time(&renv->rep_timestamp);
|
|
|
|
}
|
2002-10-30 15:57:05 +04:00
|
|
|
|
|
|
|
/* Set in-recovery flags. */
|
2001-03-04 19:42:05 -05:00
|
|
|
F_SET((DB_LOG *)dbenv->lg_handle, DBLOG_RECOVER);
|
2002-10-30 15:57:05 +04:00
|
|
|
region = ((DB_TXNMGR *)dbenv->tx_handle)->reginfo.primary;
|
|
|
|
F_SET(region, TXN_IN_RECOVERY);
|
|
|
|
|
|
|
|
/* Allocate a cursor for the log. */
|
2005-07-20 15:48:22 -07:00
|
|
|
if ((ret = __log_cursor(dbenv, &logc)) != 0)
|
2002-10-30 15:57:05 +04:00
|
|
|
goto err;
|
2001-03-04 19:42:05 -05:00
|
|
|
|
|
|
|
/*
|
2002-10-30 15:57:05 +04:00
|
|
|
* If the user is specifying recovery to a particular point in time
|
|
|
|
* or to a particular LSN, find the point to start recovery from.
|
2001-03-04 19:42:05 -05:00
|
|
|
*/
|
|
|
|
ZERO_LSN(lowlsn);
|
2002-10-30 15:57:05 +04:00
|
|
|
if (max_lsn != NULL) {
|
2005-07-20 15:48:22 -07:00
|
|
|
if ((ret = __log_backup(dbenv, logc, max_lsn, &lowlsn,
|
|
|
|
CKPLSN_CMP)) != 0)
|
2002-10-30 15:57:05 +04:00
|
|
|
goto err;
|
|
|
|
} else if (dbenv->tx_timestamp != 0) {
|
|
|
|
if ((ret = __log_earliest(dbenv, logc, &low, &lowlsn)) != 0)
|
|
|
|
goto err;
|
2001-03-04 19:42:05 -05:00
|
|
|
if ((int32_t)dbenv->tx_timestamp < low) {
|
2002-10-30 15:57:05 +04:00
|
|
|
(void)snprintf(t1, sizeof(t1),
|
|
|
|
"%s", ctime(&dbenv->tx_timestamp));
|
|
|
|
if ((p = strchr(t1, '\n')) != NULL)
|
|
|
|
*p = '\0';
|
2001-03-04 19:42:05 -05:00
|
|
|
tlow = (time_t)low;
|
2002-10-30 15:57:05 +04:00
|
|
|
(void)snprintf(t2, sizeof(t2), "%s", ctime(&tlow));
|
|
|
|
if ((p = strchr(t2, '\n')) != NULL)
|
|
|
|
*p = '\0';
|
2001-03-04 19:42:05 -05:00
|
|
|
__db_err(dbenv,
|
2002-10-30 15:57:05 +04:00
|
|
|
"Invalid recovery timestamp %s; earliest time is %s",
|
|
|
|
t1, t2);
|
|
|
|
ret = EINVAL;
|
|
|
|
goto err;
|
2001-03-04 19:42:05 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Recovery is done in three passes:
|
|
|
|
* Pass #0:
|
2002-10-30 15:57:05 +04:00
|
|
|
* We need to find the position from which we will open files.
|
|
|
|
* We need to open files beginning with the earlier of the
|
|
|
|
* most recent checkpoint LSN and a checkpoint LSN before the
|
|
|
|
* recovery timestamp, if specified. We need to be before the
|
|
|
|
* most recent checkpoint LSN because we are going to collect
|
|
|
|
* information about which transactions were begun before we
|
|
|
|
* start rolling forward. Those that were should never be undone
|
|
|
|
* because queue cannot use LSNs to determine what operations can
|
|
|
|
* safely be aborted and it cannot rollback operations in
|
|
|
|
* transactions for which there may be records not processed
|
|
|
|
* during recovery. We need to consider earlier points in time
|
|
|
|
* in case we are recovering to a particular timestamp.
|
2001-03-04 19:42:05 -05:00
|
|
|
*
|
|
|
|
* Pass #1:
|
2002-10-30 15:57:05 +04:00
|
|
|
* Read forward through the log from the position found in pass 0
|
|
|
|
* opening and closing files, and recording transactions for which
|
|
|
|
* we've seen their first record (the transaction's prev_lsn is
|
|
|
|
* 0,0). At the end of this pass, we know all transactions for
|
|
|
|
* which we've seen begins and we have the "current" set of files
|
|
|
|
* open.
|
2001-03-04 19:42:05 -05:00
|
|
|
*
|
|
|
|
* Pass #2:
|
|
|
|
* Read backward through the log undoing any uncompleted TXNs.
|
2002-10-30 15:57:05 +04:00
|
|
|
* There are four cases:
|
|
|
|
* 1. If doing catastrophic recovery, we read to the
|
|
|
|
* beginning of the log
|
2001-03-04 19:42:05 -05:00
|
|
|
* 2. If we are doing normal reovery, then we have to roll
|
2002-10-30 15:57:05 +04:00
|
|
|
* back to the most recent checkpoint LSN.
|
2001-03-04 19:42:05 -05:00
|
|
|
* 3. If we are recovering to a point in time, then we have
|
|
|
|
* to roll back to the checkpoint whose ckp_lsn is earlier
|
|
|
|
* than the specified time. __log_earliest will figure
|
|
|
|
* this out for us.
|
2002-10-30 15:57:05 +04:00
|
|
|
* 4. If we are recovering back to a particular LSN, then
|
|
|
|
* we have to roll back to the checkpoint whose ckp_lsn
|
|
|
|
* is earlier than the max_lsn. __log_backup will figure
|
|
|
|
* that out for us.
|
2005-07-20 15:48:22 -07:00
|
|
|
* In case 2, "uncompleted TXNs" include all those who committed
|
2001-03-04 19:42:05 -05:00
|
|
|
* after the user's specified timestamp.
|
|
|
|
*
|
|
|
|
* Pass #3:
|
|
|
|
* Read forward through the log from the LSN found in pass #2,
|
2005-07-20 15:48:22 -07:00
|
|
|
* redoing any committed TXNs (which committed after any user-
|
2001-03-04 19:42:05 -05:00
|
|
|
* specified rollback point). During this pass, checkpoint
|
|
|
|
* file information is ignored, and file openings and closings
|
|
|
|
* are redone.
|
2002-10-30 15:57:05 +04:00
|
|
|
*
|
|
|
|
* ckp_lsn -- lsn of the last checkpoint or the first in the log.
|
|
|
|
* first_lsn -- the lsn where the forward passes begin.
|
|
|
|
* last_lsn -- the last lsn in the log, used for feedback
|
|
|
|
* lowlsn -- the lsn we are rolling back to, if we are recovering
|
|
|
|
* to a point in time.
|
|
|
|
* lsn -- temporary use lsn.
|
|
|
|
* stop_lsn -- the point at which forward roll should stop
|
2001-03-04 19:42:05 -05:00
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Find out the last lsn, so that we can estimate how far along we
|
|
|
|
* are in recovery. This will help us determine how much log there
|
|
|
|
* is between the first LSN that we're going to be working with and
|
|
|
|
* the last one. We assume that each of the three phases takes the
|
|
|
|
* same amount of time (a false assumption) and then use the %-age
|
|
|
|
* of the amount of log traversed to figure out how much of the
|
|
|
|
* pass we've accomplished.
|
2002-10-30 15:57:05 +04:00
|
|
|
*
|
|
|
|
* If we can't find any log records, we're kind of done.
|
2001-03-04 19:42:05 -05:00
|
|
|
*/
|
2002-10-30 15:57:05 +04:00
|
|
|
#ifdef UMRW
|
|
|
|
ZERO_LSN(last_lsn);
|
|
|
|
#endif
|
2001-03-04 19:42:05 -05:00
|
|
|
memset(&data, 0, sizeof(data));
|
2005-07-20 15:48:22 -07:00
|
|
|
if ((ret = __log_c_get(logc, &last_lsn, &data, DB_LAST)) != 0) {
|
2002-10-30 15:57:05 +04:00
|
|
|
if (ret == DB_NOTFOUND)
|
|
|
|
ret = 0;
|
|
|
|
else
|
|
|
|
__db_err(dbenv, "Last log record not found");
|
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
|
|
|
|
do {
|
|
|
|
/* txnid is after rectype, which is a u_int32. */
|
|
|
|
memcpy(&txnid,
|
|
|
|
(u_int8_t *)data.data + sizeof(u_int32_t), sizeof(txnid));
|
|
|
|
|
|
|
|
if (txnid != 0)
|
|
|
|
break;
|
2005-07-20 15:48:22 -07:00
|
|
|
} while ((ret = __log_c_get(logc, &lsn, &data, DB_PREV)) == 0);
|
2001-03-04 19:42:05 -05:00
|
|
|
|
|
|
|
/*
|
2002-10-30 15:57:05 +04:00
|
|
|
* There are no transactions, so there is nothing to do unless
|
|
|
|
* we're recovering to an LSN. If we are, we need to proceed since
|
|
|
|
* we'll still need to do a vtruncate based on information we haven't
|
|
|
|
* yet collected.
|
2001-03-04 19:42:05 -05:00
|
|
|
*/
|
2005-07-20 15:48:22 -07:00
|
|
|
if (ret == DB_NOTFOUND)
|
2002-10-30 15:57:05 +04:00
|
|
|
ret = 0;
|
2005-07-20 15:48:22 -07:00
|
|
|
else if (ret != 0)
|
2002-10-30 15:57:05 +04:00
|
|
|
goto err;
|
2001-03-04 19:42:05 -05:00
|
|
|
|
2002-10-30 15:57:05 +04:00
|
|
|
hi_txn = txnid;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Pass #0
|
|
|
|
* Find the LSN from which we begin OPENFILES.
|
|
|
|
*
|
|
|
|
* If this is a catastrophic recovery, or if no checkpoint exists
|
|
|
|
* in the log, the LSN is the first LSN in the log.
|
|
|
|
*
|
|
|
|
* Otherwise, it is the minimum of (1) the LSN in the last checkpoint
|
|
|
|
* and (2) the LSN in the checkpoint before any specified recovery
|
|
|
|
* timestamp or max_lsn.
|
|
|
|
*/
|
|
|
|
/*
|
|
|
|
* Get the first LSN in the log; it's an initial default
|
|
|
|
* even if this is not a catastrophic recovery.
|
|
|
|
*/
|
2005-07-20 15:48:22 -07:00
|
|
|
if ((ret = __log_c_get(logc, &ckp_lsn, &data, DB_FIRST)) != 0) {
|
2002-10-30 15:57:05 +04:00
|
|
|
if (ret == DB_NOTFOUND)
|
|
|
|
ret = 0;
|
|
|
|
else
|
|
|
|
__db_err(dbenv, "First log record not found");
|
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
first_lsn = ckp_lsn;
|
|
|
|
have_rec = 1;
|
|
|
|
|
|
|
|
if (!LF_ISSET(DB_RECOVER_FATAL)) {
|
|
|
|
if ((ret = __txn_getckp(dbenv, &ckp_lsn)) == 0 &&
|
2005-07-20 15:48:22 -07:00
|
|
|
(ret = __log_c_get(logc, &ckp_lsn, &data, DB_SET)) == 0) {
|
2002-10-30 15:57:05 +04:00
|
|
|
/* We have a recent checkpoint. This is LSN (1). */
|
|
|
|
if ((ret = __txn_ckp_read(dbenv,
|
|
|
|
data.data, &ckp_args)) != 0) {
|
|
|
|
__db_err(dbenv,
|
|
|
|
"Invalid checkpoint record at [%ld][%ld]",
|
|
|
|
(u_long)ckp_lsn.file,
|
|
|
|
(u_long)ckp_lsn.offset);
|
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
first_lsn = ckp_args->ckp_lsn;
|
2005-07-20 15:48:22 -07:00
|
|
|
__os_free(dbenv, ckp_args);
|
2002-10-30 15:57:05 +04:00
|
|
|
have_rec = 0;
|
2001-03-04 19:42:05 -05:00
|
|
|
}
|
2002-10-30 15:57:05 +04:00
|
|
|
|
2001-03-04 19:42:05 -05:00
|
|
|
/*
|
2002-10-30 15:57:05 +04:00
|
|
|
* If LSN (2) exists, use it if it's before LSN (1).
|
|
|
|
* (If LSN (1) doesn't exist, first_lsn is the
|
|
|
|
* beginning of the log, so will "win" this check.)
|
|
|
|
*
|
|
|
|
* XXX
|
|
|
|
* In the recovery-to-a-timestamp case, lowlsn is chosen by
|
|
|
|
* __log_earliest, and is the checkpoint LSN of the
|
|
|
|
* *earliest* checkpoint in the unreclaimed log. I
|
|
|
|
* (krinsky) believe that we could optimize this by looking
|
|
|
|
* instead for the LSN of the *latest* checkpoint before
|
|
|
|
* the timestamp of interest, but I'm not sure that this
|
|
|
|
* is worth doing right now. (We have to look for lowlsn
|
|
|
|
* and low anyway, to make sure the requested timestamp is
|
|
|
|
* somewhere in the logs we have, and all that's required
|
|
|
|
* is that we pick *some* checkpoint after the beginning of
|
|
|
|
* the logs and before the timestamp.
|
2001-03-04 19:42:05 -05:00
|
|
|
*/
|
2002-10-30 15:57:05 +04:00
|
|
|
if ((dbenv->tx_timestamp != 0 || max_lsn != NULL) &&
|
|
|
|
log_compare(&lowlsn, &first_lsn) < 0) {
|
|
|
|
DB_ASSERT(have_rec == 0);
|
|
|
|
first_lsn = lowlsn;
|
2001-03-04 19:42:05 -05:00
|
|
|
}
|
2002-10-30 15:57:05 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Get the record at first_lsn if we don't have it already. */
|
|
|
|
if (!have_rec &&
|
2005-07-20 15:48:22 -07:00
|
|
|
(ret = __log_c_get(logc, &first_lsn, &data, DB_SET)) != 0) {
|
2002-10-30 15:57:05 +04:00
|
|
|
__db_err(dbenv, "Checkpoint LSN record [%ld][%ld] not found",
|
|
|
|
(u_long)first_lsn.file, (u_long)first_lsn.offset);
|
|
|
|
goto err;
|
|
|
|
}
|
2001-03-04 19:42:05 -05:00
|
|
|
|
|
|
|
if (dbenv->db_feedback != NULL) {
|
2002-10-30 15:57:05 +04:00
|
|
|
if (last_lsn.file == first_lsn.file)
|
|
|
|
nfiles = (double)
|
|
|
|
(last_lsn.offset - first_lsn.offset) / log_size;
|
2001-03-04 19:42:05 -05:00
|
|
|
else
|
2002-10-30 15:57:05 +04:00
|
|
|
nfiles = (double)(last_lsn.file - first_lsn.file) +
|
2005-07-20 15:48:22 -07:00
|
|
|
(double)((log_size - first_lsn.offset) +
|
2002-10-30 15:57:05 +04:00
|
|
|
last_lsn.offset) / log_size;
|
2001-03-04 19:42:05 -05:00
|
|
|
/* We are going to divide by nfiles; make sure it isn't 0. */
|
2005-12-05 10:27:46 -08:00
|
|
|
if (nfiles < 0.001)
|
|
|
|
nfiles = 0.001;
|
2001-03-04 19:42:05 -05:00
|
|
|
}
|
|
|
|
|
2002-10-30 15:57:05 +04:00
|
|
|
/* Find a low txnid. */
|
|
|
|
ret = 0;
|
2005-07-20 15:48:22 -07:00
|
|
|
if (hi_txn != 0) do {
|
2002-10-30 15:57:05 +04:00
|
|
|
/* txnid is after rectype, which is a u_int32. */
|
|
|
|
memcpy(&txnid,
|
|
|
|
(u_int8_t *)data.data + sizeof(u_int32_t), sizeof(txnid));
|
|
|
|
|
|
|
|
if (txnid != 0)
|
|
|
|
break;
|
2005-07-20 15:48:22 -07:00
|
|
|
} while ((ret = __log_c_get(logc, &lsn, &data, DB_NEXT)) == 0);
|
2002-10-30 15:57:05 +04:00
|
|
|
|
2001-03-04 19:42:05 -05:00
|
|
|
/*
|
2002-10-30 15:57:05 +04:00
|
|
|
* There are no transactions and we're not recovering to an LSN (see
|
|
|
|
* above), so there is nothing to do.
|
2001-03-04 19:42:05 -05:00
|
|
|
*/
|
2002-10-30 15:57:05 +04:00
|
|
|
if (ret == DB_NOTFOUND) {
|
2005-07-20 15:48:22 -07:00
|
|
|
if (log_compare(&lsn, &last_lsn) != 0)
|
|
|
|
ret = __db_log_corrupt(dbenv, &lsn);
|
|
|
|
else
|
|
|
|
ret = 0;
|
2001-03-04 19:42:05 -05:00
|
|
|
}
|
|
|
|
|
2002-10-30 15:57:05 +04:00
|
|
|
/* Reset to the first lsn. */
|
2005-07-20 15:48:22 -07:00
|
|
|
if (ret != 0 ||
|
|
|
|
(ret = __log_c_get(logc, &first_lsn, &data, DB_SET)) != 0)
|
2002-10-30 15:57:05 +04:00
|
|
|
goto err;
|
|
|
|
|
|
|
|
/* Initialize the transaction list. */
|
|
|
|
if ((ret =
|
|
|
|
__db_txnlist_init(dbenv, txnid, hi_txn, max_lsn, &txninfo)) != 0)
|
|
|
|
goto err;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Pass #1
|
|
|
|
* Run forward through the log starting at the first relevant lsn.
|
|
|
|
*/
|
|
|
|
if ((ret = __env_openfiles(dbenv, logc,
|
|
|
|
txninfo, &data, &first_lsn, &last_lsn, nfiles, 1)) != 0)
|
|
|
|
goto err;
|
|
|
|
|
2005-07-20 15:48:22 -07:00
|
|
|
/* If there were no transactions, then we can bail out early. */
|
|
|
|
if (hi_txn == 0 && max_lsn == NULL)
|
|
|
|
goto done;
|
|
|
|
|
2001-03-04 19:42:05 -05:00
|
|
|
/*
|
|
|
|
* Pass #2.
|
|
|
|
*
|
2002-10-30 15:57:05 +04:00
|
|
|
* We used first_lsn to tell us how far back we need to recover,
|
|
|
|
* use it here.
|
2001-03-04 19:42:05 -05:00
|
|
|
*/
|
|
|
|
|
|
|
|
if (FLD_ISSET(dbenv->verbose, DB_VERB_RECOVERY))
|
2005-07-20 15:48:22 -07:00
|
|
|
__db_msg(dbenv, "Recovery starting from [%lu][%lu]",
|
2001-03-04 19:42:05 -05:00
|
|
|
(u_long)first_lsn.file, (u_long)first_lsn.offset);
|
|
|
|
|
2002-10-30 15:57:05 +04:00
|
|
|
pass = "backward";
|
2005-07-20 15:48:22 -07:00
|
|
|
for (ret = __log_c_get(logc, &lsn, &data, DB_LAST);
|
2002-10-30 15:57:05 +04:00
|
|
|
ret == 0 && log_compare(&lsn, &first_lsn) >= 0;
|
2005-07-20 15:48:22 -07:00
|
|
|
ret = __log_c_get(logc, &lsn, &data, DB_PREV)) {
|
2001-03-04 19:42:05 -05:00
|
|
|
if (dbenv->db_feedback != NULL) {
|
2002-10-30 15:57:05 +04:00
|
|
|
progress = 34 + (int)(33 * (__lsn_diff(&first_lsn,
|
|
|
|
&last_lsn, &lsn, log_size, 0) / nfiles));
|
2001-03-04 19:42:05 -05:00
|
|
|
dbenv->db_feedback(dbenv, DB_RECOVER, progress);
|
|
|
|
}
|
2005-07-20 15:48:22 -07:00
|
|
|
tlsn = lsn;
|
2002-10-30 15:57:05 +04:00
|
|
|
ret = __db_dispatch(dbenv, dbenv->recover_dtab,
|
2005-07-20 15:48:22 -07:00
|
|
|
dbenv->recover_dtab_size, &data, &tlsn,
|
2002-10-30 15:57:05 +04:00
|
|
|
DB_TXN_BACKWARD_ROLL, txninfo);
|
2001-03-04 19:42:05 -05:00
|
|
|
if (ret != 0) {
|
|
|
|
if (ret != DB_TXN_CKP)
|
|
|
|
goto msgerr;
|
|
|
|
else
|
|
|
|
ret = 0;
|
|
|
|
}
|
|
|
|
}
|
2005-07-20 15:48:22 -07:00
|
|
|
if (ret == DB_NOTFOUND) {
|
|
|
|
if (log_compare(&lsn, &first_lsn) > 0)
|
|
|
|
ret = __db_log_corrupt(dbenv, &lsn);
|
|
|
|
else
|
|
|
|
ret = 0;
|
|
|
|
}
|
|
|
|
if (ret != 0)
|
2002-10-30 15:57:05 +04:00
|
|
|
goto err;
|
2001-03-04 19:42:05 -05:00
|
|
|
|
|
|
|
/*
|
2002-10-30 15:57:05 +04:00
|
|
|
* Pass #3. If we are recovering to a timestamp or to an LSN,
|
|
|
|
* we need to make sure that we don't roll-forward beyond that
|
|
|
|
* point because there may be non-transactional operations (e.g.,
|
|
|
|
* closes that would fail). The last_lsn variable is used for
|
|
|
|
* feedback calculations, but use it to set an initial stopping
|
|
|
|
* point for the forward pass, and then reset appropriately to
|
|
|
|
* derive a real stop_lsn that tells how far the forward pass
|
|
|
|
* should go.
|
2001-03-04 19:42:05 -05:00
|
|
|
*/
|
2002-10-30 15:57:05 +04:00
|
|
|
pass = "forward";
|
|
|
|
stop_lsn = last_lsn;
|
|
|
|
if (max_lsn != NULL || dbenv->tx_timestamp != 0)
|
|
|
|
stop_lsn = ((DB_TXNHEAD *)txninfo)->maxlsn;
|
|
|
|
|
2005-07-20 15:48:22 -07:00
|
|
|
for (ret = __log_c_get(logc, &lsn, &data, DB_NEXT);
|
|
|
|
ret == 0; ret = __log_c_get(logc, &lsn, &data, DB_NEXT)) {
|
2001-03-04 19:42:05 -05:00
|
|
|
if (dbenv->db_feedback != NULL) {
|
2002-10-30 15:57:05 +04:00
|
|
|
progress = 67 + (int)(33 * (__lsn_diff(&first_lsn,
|
|
|
|
&last_lsn, &lsn, log_size, 1) / nfiles));
|
2001-03-04 19:42:05 -05:00
|
|
|
dbenv->db_feedback(dbenv, DB_RECOVER, progress);
|
|
|
|
}
|
2005-07-20 15:48:22 -07:00
|
|
|
tlsn = lsn;
|
2002-10-30 15:57:05 +04:00
|
|
|
ret = __db_dispatch(dbenv, dbenv->recover_dtab,
|
2005-07-20 15:48:22 -07:00
|
|
|
dbenv->recover_dtab_size, &data, &tlsn,
|
2002-10-30 15:57:05 +04:00
|
|
|
DB_TXN_FORWARD_ROLL, txninfo);
|
2001-03-04 19:42:05 -05:00
|
|
|
if (ret != 0) {
|
|
|
|
if (ret != DB_TXN_CKP)
|
|
|
|
goto msgerr;
|
|
|
|
else
|
|
|
|
ret = 0;
|
|
|
|
}
|
2005-07-20 15:48:22 -07:00
|
|
|
/*
|
|
|
|
* If we are recovering to a timestamp or an LSN,
|
|
|
|
* we need to make sure that we don't try to roll
|
|
|
|
* forward beyond the soon-to-be end of log.
|
|
|
|
*/
|
|
|
|
if (log_compare(&lsn, &stop_lsn) >= 0)
|
|
|
|
break;
|
2002-10-30 15:57:05 +04:00
|
|
|
|
2001-03-04 19:42:05 -05:00
|
|
|
}
|
2005-07-20 15:48:22 -07:00
|
|
|
if (ret == DB_NOTFOUND)
|
|
|
|
ret = __db_log_corrupt(dbenv, &lsn);
|
|
|
|
if (ret != 0)
|
2002-10-30 15:57:05 +04:00
|
|
|
goto err;
|
2001-03-04 19:42:05 -05:00
|
|
|
|
2005-07-20 15:48:22 -07:00
|
|
|
#ifndef HAVE_FTRUNCATE
|
2001-03-04 19:42:05 -05:00
|
|
|
/*
|
2002-10-30 15:57:05 +04:00
|
|
|
* Process any pages that were on the limbo list and move them to
|
|
|
|
* the free list. Do this before checkpointing the database.
|
2001-03-04 19:42:05 -05:00
|
|
|
*/
|
2005-07-20 15:48:22 -07:00
|
|
|
if ((ret = __db_do_the_limbo(dbenv, NULL, NULL, txninfo,
|
|
|
|
dbenv->tx_timestamp != 0 ? LIMBO_TIMESTAMP : LIMBO_RECOVER)) != 0)
|
2002-10-30 15:57:05 +04:00
|
|
|
goto err;
|
2005-07-20 15:48:22 -07:00
|
|
|
#endif
|
2001-03-04 19:42:05 -05:00
|
|
|
|
2002-10-30 15:57:05 +04:00
|
|
|
if (max_lsn == NULL)
|
|
|
|
region->last_txnid = ((DB_TXNHEAD *)txninfo)->maxid;
|
2001-03-04 19:42:05 -05:00
|
|
|
|
2002-10-30 15:57:05 +04:00
|
|
|
if (dbenv->tx_timestamp != 0) {
|
2005-07-20 15:48:22 -07:00
|
|
|
/* We are going to truncate, so we'd best close the cursor. */
|
|
|
|
if (logc != NULL && (ret = __log_c_close(logc)) != 0)
|
|
|
|
goto err;
|
|
|
|
logc = NULL;
|
|
|
|
/* Flush everything to disk, we are losing the log. */
|
|
|
|
if ((ret = __memp_sync(dbenv, NULL)) != 0)
|
|
|
|
goto err;
|
2002-10-30 15:57:05 +04:00
|
|
|
region->last_ckp = ((DB_TXNHEAD *)txninfo)->ckplsn;
|
2005-07-20 15:48:22 -07:00
|
|
|
if ((ret = __log_vtruncate(dbenv,
|
|
|
|
&((DB_TXNHEAD *)txninfo)->maxlsn,
|
|
|
|
&((DB_TXNHEAD *)txninfo)->ckplsn, trunclsn)) != 0)
|
|
|
|
goto err;
|
|
|
|
|
|
|
|
#ifndef HAVE_FTRUNCATE
|
|
|
|
/*
|
|
|
|
* Generate logging compensation records.
|
|
|
|
* If we crash during/after vtruncate we may have
|
|
|
|
* pages missing from the free list since they
|
|
|
|
* if we roll things further back from here.
|
|
|
|
* These pages are only known in memory at this pont.
|
|
|
|
*/
|
|
|
|
if ((ret = __db_do_the_limbo(dbenv,
|
|
|
|
NULL, NULL, txninfo, LIMBO_COMPENSATE)) != 0)
|
|
|
|
goto err;
|
|
|
|
#endif
|
2002-10-30 15:57:05 +04:00
|
|
|
}
|
2001-03-04 19:42:05 -05:00
|
|
|
|
2005-12-05 10:27:46 -08:00
|
|
|
done:
|
2005-07-20 15:48:22 -07:00
|
|
|
/* Take a checkpoint here to force any dirty data pages to disk. */
|
|
|
|
if ((ret = __txn_checkpoint(dbenv, 0, 0, DB_FORCE)) != 0)
|
2002-10-30 15:57:05 +04:00
|
|
|
goto err;
|
2001-03-04 19:42:05 -05:00
|
|
|
|
2002-10-30 15:57:05 +04:00
|
|
|
/* Close all the db files that are open. */
|
|
|
|
if ((ret = __dbreg_close_files(dbenv)) != 0)
|
|
|
|
goto err;
|
|
|
|
|
|
|
|
if (max_lsn != NULL) {
|
2005-07-20 15:48:22 -07:00
|
|
|
if (!IS_ZERO_LSN(((DB_TXNHEAD *)txninfo)->ckplsn))
|
|
|
|
region->last_ckp = ((DB_TXNHEAD *)txninfo)->ckplsn;
|
|
|
|
else if ((ret =
|
|
|
|
__txn_findlastckp(dbenv, ®ion->last_ckp, max_lsn)) != 0)
|
|
|
|
goto err;
|
2002-10-30 15:57:05 +04:00
|
|
|
|
|
|
|
/* We are going to truncate, so we'd best close the cursor. */
|
2005-07-20 15:48:22 -07:00
|
|
|
if (logc != NULL && (ret = __log_c_close(logc)) != 0)
|
|
|
|
goto err;
|
|
|
|
if ((ret = __log_vtruncate(dbenv,
|
|
|
|
max_lsn, &((DB_TXNHEAD *)txninfo)->ckplsn, trunclsn)) != 0)
|
2002-10-30 15:57:05 +04:00
|
|
|
goto err;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Now we need to open files that should be open in order for
|
|
|
|
* client processing to continue. However, since we've
|
|
|
|
* truncated the log, we need to recompute from where the
|
|
|
|
* openfiles pass should begin.
|
|
|
|
*/
|
2005-07-20 15:48:22 -07:00
|
|
|
if ((ret = __log_cursor(dbenv, &logc)) != 0)
|
2002-10-30 15:57:05 +04:00
|
|
|
goto err;
|
2005-07-20 15:48:22 -07:00
|
|
|
if ((ret =
|
|
|
|
__log_c_get(logc, &first_lsn, &data, DB_FIRST)) != 0) {
|
2002-10-30 15:57:05 +04:00
|
|
|
if (ret == DB_NOTFOUND)
|
|
|
|
ret = 0;
|
|
|
|
else
|
|
|
|
__db_err(dbenv, "First log record not found");
|
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
if ((ret = __txn_getckp(dbenv, &first_lsn)) == 0 &&
|
2005-07-20 15:48:22 -07:00
|
|
|
(ret = __log_c_get(logc, &first_lsn, &data, DB_SET)) == 0) {
|
2002-10-30 15:57:05 +04:00
|
|
|
/* We have a recent checkpoint. This is LSN (1). */
|
|
|
|
if ((ret = __txn_ckp_read(dbenv,
|
|
|
|
data.data, &ckp_args)) != 0) {
|
|
|
|
__db_err(dbenv,
|
|
|
|
"Invalid checkpoint record at [%ld][%ld]",
|
|
|
|
(u_long)first_lsn.file,
|
|
|
|
(u_long)first_lsn.offset);
|
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
first_lsn = ckp_args->ckp_lsn;
|
2005-07-20 15:48:22 -07:00
|
|
|
__os_free(dbenv, ckp_args);
|
2002-10-30 15:57:05 +04:00
|
|
|
}
|
2005-07-20 15:48:22 -07:00
|
|
|
if ((ret = __log_c_get(logc, &first_lsn, &data, DB_SET)) != 0)
|
2002-10-30 15:57:05 +04:00
|
|
|
goto err;
|
|
|
|
if ((ret = __env_openfiles(dbenv, logc,
|
|
|
|
txninfo, &data, &first_lsn, NULL, nfiles, 1)) != 0)
|
|
|
|
goto err;
|
2005-12-05 10:27:46 -08:00
|
|
|
} else if (region->stat.st_nrestores == 0) {
|
2002-10-30 15:57:05 +04:00
|
|
|
/*
|
|
|
|
* If there are no prepared transactions that need resolution,
|
|
|
|
* we need to reset the transaction ID space and log this fact.
|
|
|
|
*/
|
|
|
|
if ((ret = __txn_reset(dbenv)) != 0)
|
|
|
|
goto err;
|
2005-12-05 10:27:46 -08:00
|
|
|
} else {
|
|
|
|
/*
|
|
|
|
* If we have restored prepared txns then they are in process
|
|
|
|
* as far as replication is concerned.
|
|
|
|
*/
|
|
|
|
if (REP_ON(dbenv))
|
|
|
|
((DB_REP *)dbenv->rep_handle)->region->op_cnt =
|
|
|
|
region->stat.st_nrestores;
|
|
|
|
if ((ret = __txn_recycle_id(dbenv)) != 0)
|
|
|
|
goto err;
|
|
|
|
}
|
2001-03-04 19:42:05 -05:00
|
|
|
|
|
|
|
if (FLD_ISSET(dbenv->verbose, DB_VERB_RECOVERY)) {
|
2002-10-30 15:57:05 +04:00
|
|
|
(void)time(&now);
|
2005-07-20 15:48:22 -07:00
|
|
|
__db_msg(dbenv, "Recovery complete at %.24s", ctime(&now));
|
|
|
|
__db_msg(dbenv, "%s %lx %s [%lu][%lu]",
|
2001-03-04 19:42:05 -05:00
|
|
|
"Maximum transaction ID",
|
2005-07-20 15:48:22 -07:00
|
|
|
(u_long)(txninfo == NULL ?
|
|
|
|
TXN_MINIMUM : ((DB_TXNHEAD *)txninfo)->maxid),
|
2001-03-04 19:42:05 -05:00
|
|
|
"Recovery checkpoint",
|
|
|
|
(u_long)region->last_ckp.file,
|
|
|
|
(u_long)region->last_ckp.offset);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (0) {
|
2002-10-30 15:57:05 +04:00
|
|
|
msgerr: __db_err(dbenv,
|
|
|
|
"Recovery function for LSN %lu %lu failed on %s pass",
|
|
|
|
(u_long)lsn.file, (u_long)lsn.offset, pass);
|
2001-03-04 19:42:05 -05:00
|
|
|
}
|
|
|
|
|
2005-07-20 15:48:22 -07:00
|
|
|
err: if (logc != NULL && (t_ret = __log_c_close(logc)) != 0 && ret == 0)
|
2002-10-30 15:57:05 +04:00
|
|
|
ret = t_ret;
|
|
|
|
|
|
|
|
if (txninfo != NULL)
|
|
|
|
__db_txnlist_end(dbenv, txninfo);
|
|
|
|
|
2001-03-04 19:42:05 -05:00
|
|
|
dbenv->tx_timestamp = 0;
|
2002-10-30 15:57:05 +04:00
|
|
|
|
|
|
|
F_CLR((DB_LOG *)dbenv->lg_handle, DBLOG_RECOVER);
|
|
|
|
F_CLR(region, TXN_IN_RECOVERY);
|
|
|
|
|
2001-03-04 19:42:05 -05:00
|
|
|
return (ret);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Figure out how many logfiles we have processed. If we are moving
|
|
|
|
* forward (is_forward != 0), then we're computing current - low. If
|
|
|
|
* we are moving backward, we are computing high - current. max is
|
|
|
|
* the number of bytes per logfile.
|
|
|
|
*/
|
2002-10-30 15:57:05 +04:00
|
|
|
static double
|
2001-03-04 19:42:05 -05:00
|
|
|
__lsn_diff(low, high, current, max, is_forward)
|
|
|
|
DB_LSN *low, *high, *current;
|
|
|
|
u_int32_t max;
|
|
|
|
int is_forward;
|
|
|
|
{
|
2002-10-30 15:57:05 +04:00
|
|
|
double nf;
|
2001-03-04 19:42:05 -05:00
|
|
|
|
|
|
|
/*
|
|
|
|
* There are three cases in each direction. If you are in the
|
|
|
|
* same file, then all you need worry about is the difference in
|
|
|
|
* offsets. If you are in different files, then either your offsets
|
|
|
|
* put you either more or less than the integral difference in the
|
|
|
|
* number of files -- we need to handle both of these.
|
|
|
|
*/
|
|
|
|
if (is_forward) {
|
|
|
|
if (current->file == low->file)
|
2002-10-30 15:57:05 +04:00
|
|
|
nf = (double)(current->offset - low->offset) / max;
|
2001-03-04 19:42:05 -05:00
|
|
|
else if (current->offset < low->offset)
|
2005-12-05 10:27:46 -08:00
|
|
|
nf = (double)((current->file - low->file) - 1) +
|
|
|
|
(double)((max - low->offset) + current->offset) /
|
|
|
|
max;
|
2001-03-04 19:42:05 -05:00
|
|
|
else
|
2002-10-30 15:57:05 +04:00
|
|
|
nf = (double)(current->file - low->file) +
|
|
|
|
(double)(current->offset - low->offset) / max;
|
2001-03-04 19:42:05 -05:00
|
|
|
} else {
|
|
|
|
if (current->file == high->file)
|
2002-10-30 15:57:05 +04:00
|
|
|
nf = (double)(high->offset - current->offset) / max;
|
2001-03-04 19:42:05 -05:00
|
|
|
else if (current->offset > high->offset)
|
2005-12-05 10:27:46 -08:00
|
|
|
nf = (double)((high->file - current->file) - 1) +
|
2002-10-30 15:57:05 +04:00
|
|
|
(double)
|
2005-12-05 10:27:46 -08:00
|
|
|
((max - current->offset) + high->offset) / max;
|
2001-03-04 19:42:05 -05:00
|
|
|
else
|
2002-10-30 15:57:05 +04:00
|
|
|
nf = (double)(high->file - current->file) +
|
|
|
|
(double)(high->offset - current->offset) / max;
|
2001-03-04 19:42:05 -05:00
|
|
|
}
|
|
|
|
return (nf);
|
|
|
|
}
|
|
|
|
|
2002-10-30 15:57:05 +04:00
|
|
|
/*
|
|
|
|
* __log_backup --
|
|
|
|
*
|
|
|
|
* This is used to find the earliest log record to process when a client
|
|
|
|
* is trying to sync up with a master whose max LSN is less than this
|
2005-07-20 15:48:22 -07:00
|
|
|
* client's max lsn; we want to roll back everything after that.
|
|
|
|
* Also used in the verify phase to walk back via checkpoints.
|
2002-10-30 15:57:05 +04:00
|
|
|
*
|
|
|
|
* Find the latest checkpoint whose ckp_lsn is less than the max lsn.
|
2005-07-20 15:48:22 -07:00
|
|
|
* PUBLIC: int __log_backup __P((DB_ENV *, DB_LOGC *, DB_LSN *,
|
|
|
|
* PUBLIC: DB_LSN *, u_int32_t));
|
2002-10-30 15:57:05 +04:00
|
|
|
*/
|
2005-07-20 15:48:22 -07:00
|
|
|
int
|
|
|
|
__log_backup(dbenv, logc, max_lsn, start_lsn, cmp)
|
2002-10-30 15:57:05 +04:00
|
|
|
DB_ENV *dbenv;
|
|
|
|
DB_LOGC *logc;
|
|
|
|
DB_LSN *max_lsn, *start_lsn;
|
2005-07-20 15:48:22 -07:00
|
|
|
u_int32_t cmp;
|
2002-10-30 15:57:05 +04:00
|
|
|
{
|
2005-07-20 15:48:22 -07:00
|
|
|
DB_LSN cmp_lsn, lsn;
|
2002-10-30 15:57:05 +04:00
|
|
|
DBT data;
|
|
|
|
__txn_ckp_args *ckp_args;
|
2005-07-20 15:48:22 -07:00
|
|
|
int lcmp, ret;
|
2002-10-30 15:57:05 +04:00
|
|
|
|
|
|
|
memset(&data, 0, sizeof(data));
|
|
|
|
ckp_args = NULL;
|
|
|
|
|
2005-07-20 15:48:22 -07:00
|
|
|
if (cmp != CKPLSN_CMP && cmp != LASTCKP_CMP)
|
|
|
|
return (EINVAL);
|
|
|
|
|
2002-10-30 15:57:05 +04:00
|
|
|
if ((ret = __txn_getckp(dbenv, &lsn)) != 0)
|
|
|
|
goto err;
|
2005-07-20 15:48:22 -07:00
|
|
|
/*
|
|
|
|
* Cmp tells us whether to check the ckp_lsn or the last_ckp
|
|
|
|
* fields in the checkpoint record.
|
|
|
|
*/
|
|
|
|
while ((ret = __log_c_get(logc, &lsn, &data, DB_SET)) == 0) {
|
2002-10-30 15:57:05 +04:00
|
|
|
if ((ret = __txn_ckp_read(dbenv, data.data, &ckp_args)) != 0)
|
|
|
|
return (ret);
|
2005-07-20 15:48:22 -07:00
|
|
|
if (cmp == CKPLSN_CMP) {
|
|
|
|
/*
|
|
|
|
* Follow checkpoints through the log until
|
|
|
|
* we find one with a ckp_lsn less than
|
|
|
|
* or equal max_lsn.
|
|
|
|
*/
|
|
|
|
cmp_lsn = ckp_args->ckp_lsn;
|
|
|
|
lcmp = (log_compare(&cmp_lsn, max_lsn) <= 0);
|
|
|
|
} else {
|
|
|
|
/*
|
|
|
|
* When we're walking back through the checkpoints
|
|
|
|
* we want the LSN of this checkpoint strictly less
|
|
|
|
* than the max_lsn (also a ckp LSN).
|
|
|
|
*/
|
|
|
|
cmp_lsn = lsn;
|
|
|
|
lcmp = (log_compare(&cmp_lsn, max_lsn) < 0);
|
|
|
|
}
|
|
|
|
if (lcmp) {
|
|
|
|
*start_lsn = cmp_lsn;
|
2002-10-30 15:57:05 +04:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2005-07-20 15:48:22 -07:00
|
|
|
lsn = ckp_args->last_ckp;
|
|
|
|
/*
|
|
|
|
* If there are no more checkpoints behind us, we're
|
|
|
|
* done. Break with DB_NOTFOUND.
|
|
|
|
*/
|
|
|
|
if (IS_ZERO_LSN(lsn)) {
|
|
|
|
ret = DB_NOTFOUND;
|
2002-10-30 15:57:05 +04:00
|
|
|
break;
|
2005-07-20 15:48:22 -07:00
|
|
|
}
|
2002-10-30 15:57:05 +04:00
|
|
|
__os_free(dbenv, ckp_args);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ckp_args != NULL)
|
|
|
|
__os_free(dbenv, ckp_args);
|
2005-07-20 15:48:22 -07:00
|
|
|
/*
|
|
|
|
* For CKPLSN_CMP if we walked back through all the checkpoints,
|
|
|
|
* set the cursor on the first log record. For LASTCKP_CMP
|
|
|
|
* we want to return 0,0 in start_lsn.
|
|
|
|
*/
|
|
|
|
err: if (IS_ZERO_LSN(*start_lsn) && cmp == CKPLSN_CMP &&
|
|
|
|
(ret == 0 || ret == DB_NOTFOUND))
|
|
|
|
ret = __log_c_get(logc, start_lsn, &data, DB_FIRST);
|
2002-10-30 15:57:05 +04:00
|
|
|
return (ret);
|
|
|
|
}
|
|
|
|
|
2001-03-04 19:42:05 -05:00
|
|
|
/*
|
|
|
|
* __log_earliest --
|
|
|
|
*
|
|
|
|
* Return the earliest recovery point for the log files present. The
|
|
|
|
* earliest recovery time is the time stamp of the first checkpoint record
|
|
|
|
* whose checkpoint LSN is greater than the first LSN we process.
|
|
|
|
*/
|
|
|
|
static int
|
2002-10-30 15:57:05 +04:00
|
|
|
__log_earliest(dbenv, logc, lowtime, lowlsn)
|
2001-03-04 19:42:05 -05:00
|
|
|
DB_ENV *dbenv;
|
2002-10-30 15:57:05 +04:00
|
|
|
DB_LOGC *logc;
|
2001-03-04 19:42:05 -05:00
|
|
|
int32_t *lowtime;
|
|
|
|
DB_LSN *lowlsn;
|
|
|
|
{
|
|
|
|
DB_LSN first_lsn, lsn;
|
|
|
|
DBT data;
|
|
|
|
__txn_ckp_args *ckpargs;
|
|
|
|
u_int32_t rectype;
|
|
|
|
int cmp, ret;
|
|
|
|
|
|
|
|
memset(&data, 0, sizeof(data));
|
|
|
|
/*
|
|
|
|
* Read forward through the log looking for the first checkpoint
|
|
|
|
* record whose ckp_lsn is greater than first_lsn.
|
|
|
|
*/
|
|
|
|
|
2005-07-20 15:48:22 -07:00
|
|
|
for (ret = __log_c_get(logc, &first_lsn, &data, DB_FIRST);
|
|
|
|
ret == 0; ret = __log_c_get(logc, &lsn, &data, DB_NEXT)) {
|
2001-03-04 19:42:05 -05:00
|
|
|
memcpy(&rectype, data.data, sizeof(rectype));
|
2002-10-30 15:57:05 +04:00
|
|
|
if (rectype != DB___txn_ckp)
|
2001-03-04 19:42:05 -05:00
|
|
|
continue;
|
|
|
|
if ((ret = __txn_ckp_read(dbenv, data.data, &ckpargs)) == 0) {
|
|
|
|
cmp = log_compare(&ckpargs->ckp_lsn, &first_lsn);
|
|
|
|
*lowlsn = ckpargs->ckp_lsn;
|
|
|
|
*lowtime = ckpargs->timestamp;
|
|
|
|
|
2002-10-30 15:57:05 +04:00
|
|
|
__os_free(dbenv, ckpargs);
|
2001-03-04 19:42:05 -05:00
|
|
|
if (cmp >= 0)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return (ret);
|
|
|
|
}
|
2002-10-30 15:57:05 +04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* __env_openfiles --
|
|
|
|
* Perform the pass of recovery that opens files. This is used
|
|
|
|
* both during regular recovery and an initial call to txn_recover (since
|
|
|
|
* we need files open in order to abort prepared, but not yet committed
|
|
|
|
* transactions).
|
|
|
|
*
|
|
|
|
* See the comments in db_apprec for a detailed description of the
|
|
|
|
* various recovery passes.
|
|
|
|
*
|
|
|
|
* If we are not doing feedback processing (i.e., we are doing txn_recover
|
|
|
|
* processing and in_recovery is zero), then last_lsn can be NULL.
|
|
|
|
*
|
|
|
|
* PUBLIC: int __env_openfiles __P((DB_ENV *, DB_LOGC *,
|
|
|
|
* PUBLIC: void *, DBT *, DB_LSN *, DB_LSN *, double, int));
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
__env_openfiles(dbenv, logc, txninfo,
|
|
|
|
data, open_lsn, last_lsn, nfiles, in_recovery)
|
|
|
|
DB_ENV *dbenv;
|
|
|
|
DB_LOGC *logc;
|
|
|
|
void *txninfo;
|
|
|
|
DBT *data;
|
|
|
|
DB_LSN *open_lsn, *last_lsn;
|
|
|
|
int in_recovery;
|
|
|
|
double nfiles;
|
|
|
|
{
|
2005-07-20 15:48:22 -07:00
|
|
|
DB_LSN lsn, tlsn;
|
2002-10-30 15:57:05 +04:00
|
|
|
u_int32_t log_size;
|
|
|
|
int progress, ret;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* XXX
|
|
|
|
* Get the log size. No locking required because we're single-threaded
|
|
|
|
* during recovery.
|
|
|
|
*/
|
|
|
|
log_size =
|
|
|
|
((LOG *)(((DB_LOG *)dbenv->lg_handle)->reginfo.primary))->log_size;
|
|
|
|
|
|
|
|
lsn = *open_lsn;
|
|
|
|
for (;;) {
|
|
|
|
if (in_recovery && dbenv->db_feedback != NULL) {
|
|
|
|
DB_ASSERT(last_lsn != NULL);
|
|
|
|
progress = (int)(33 * (__lsn_diff(open_lsn,
|
|
|
|
last_lsn, &lsn, log_size, 1) / nfiles));
|
|
|
|
dbenv->db_feedback(dbenv, DB_RECOVER, progress);
|
|
|
|
}
|
2005-07-20 15:48:22 -07:00
|
|
|
tlsn = lsn;
|
2002-10-30 15:57:05 +04:00
|
|
|
ret = __db_dispatch(dbenv,
|
2005-07-20 15:48:22 -07:00
|
|
|
dbenv->recover_dtab, dbenv->recover_dtab_size, data, &tlsn,
|
2002-10-30 15:57:05 +04:00
|
|
|
in_recovery ? DB_TXN_OPENFILES : DB_TXN_POPENFILES,
|
|
|
|
txninfo);
|
|
|
|
if (ret != 0 && ret != DB_TXN_CKP) {
|
|
|
|
__db_err(dbenv,
|
|
|
|
"Recovery function for LSN %lu %lu failed",
|
|
|
|
(u_long)lsn.file, (u_long)lsn.offset);
|
|
|
|
break;
|
|
|
|
}
|
2005-07-20 15:48:22 -07:00
|
|
|
if ((ret = __log_c_get(logc, &lsn, data, DB_NEXT)) != 0) {
|
|
|
|
if (ret == DB_NOTFOUND) {
|
|
|
|
if (last_lsn != NULL &&
|
|
|
|
log_compare(&lsn, last_lsn) != 0)
|
|
|
|
ret = __db_log_corrupt(dbenv, &lsn);
|
|
|
|
else
|
|
|
|
ret = 0;
|
|
|
|
}
|
2002-10-30 15:57:05 +04:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return (ret);
|
|
|
|
}
|
2005-07-20 15:48:22 -07:00
|
|
|
|
|
|
|
static int
|
|
|
|
__db_log_corrupt(dbenv, lsnp)
|
|
|
|
DB_ENV *dbenv;
|
|
|
|
DB_LSN *lsnp;
|
|
|
|
{
|
|
|
|
__db_err(dbenv, "Log file corrupt at LSN: [%lu][%lu]",
|
|
|
|
(u_long)lsnp->file, (u_long)lsnp->offset);
|
|
|
|
return (EINVAL);
|
|
|
|
}
|