2019-05-28 16:57:20 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-only
|
2006-01-18 09:30:29 +00:00
|
|
|
/******************************************************************************
|
|
|
|
*******************************************************************************
|
|
|
|
**
|
|
|
|
** Copyright (C) Sistina Software, Inc. 1997-2003 All rights reserved.
|
2011-11-02 19:30:58 +00:00
|
|
|
** Copyright (C) 2004-2011 Red Hat, Inc. All rights reserved.
|
2006-01-18 09:30:29 +00:00
|
|
|
**
|
|
|
|
**
|
|
|
|
*******************************************************************************
|
|
|
|
******************************************************************************/
|
|
|
|
|
|
|
|
#include "dlm_internal.h"
|
|
|
|
#include "lockspace.h"
|
|
|
|
#include "member.h"
|
|
|
|
#include "dir.h"
|
|
|
|
#include "ast.h"
|
|
|
|
#include "recover.h"
|
|
|
|
#include "lowcomms.h"
|
|
|
|
#include "lock.h"
|
|
|
|
#include "requestqueue.h"
|
|
|
|
#include "recoverd.h"
|
|
|
|
|
2024-04-02 19:18:00 +00:00
|
|
|
static int dlm_create_masters_list(struct dlm_ls *ls)
|
|
|
|
{
|
|
|
|
struct dlm_rsb *r;
|
2024-04-15 18:39:38 +00:00
|
|
|
int error = 0;
|
2024-04-02 19:18:00 +00:00
|
|
|
|
2024-04-02 19:18:09 +00:00
|
|
|
write_lock_bh(&ls->ls_masters_lock);
|
2024-04-02 19:18:00 +00:00
|
|
|
if (!list_empty(&ls->ls_masters_list)) {
|
|
|
|
log_error(ls, "root list not empty");
|
|
|
|
error = -EINVAL;
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
2024-04-15 18:39:42 +00:00
|
|
|
read_lock_bh(&ls->ls_rsbtbl_lock);
|
2024-04-15 18:39:38 +00:00
|
|
|
list_for_each_entry(r, &ls->ls_keep, res_rsbs_list) {
|
|
|
|
if (r->res_nodeid)
|
|
|
|
continue;
|
2024-04-02 19:18:00 +00:00
|
|
|
|
2024-04-15 18:39:38 +00:00
|
|
|
list_add(&r->res_masters_list, &ls->ls_masters_list);
|
|
|
|
dlm_hold_rsb(r);
|
2024-04-02 19:18:00 +00:00
|
|
|
}
|
2024-04-15 18:39:42 +00:00
|
|
|
read_unlock_bh(&ls->ls_rsbtbl_lock);
|
2024-04-02 19:18:00 +00:00
|
|
|
out:
|
2024-04-02 19:18:09 +00:00
|
|
|
write_unlock_bh(&ls->ls_masters_lock);
|
2024-04-02 19:18:00 +00:00
|
|
|
return error;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void dlm_release_masters_list(struct dlm_ls *ls)
|
|
|
|
{
|
|
|
|
struct dlm_rsb *r, *safe;
|
|
|
|
|
2024-04-02 19:18:09 +00:00
|
|
|
write_lock_bh(&ls->ls_masters_lock);
|
2024-04-02 19:18:00 +00:00
|
|
|
list_for_each_entry_safe(r, safe, &ls->ls_masters_list, res_masters_list) {
|
|
|
|
list_del_init(&r->res_masters_list);
|
|
|
|
dlm_put_rsb(r);
|
|
|
|
}
|
2024-04-02 19:18:09 +00:00
|
|
|
write_unlock_bh(&ls->ls_masters_lock);
|
2024-04-02 19:18:00 +00:00
|
|
|
}
|
|
|
|
|
2024-04-02 19:18:01 +00:00
|
|
|
static void dlm_create_root_list(struct dlm_ls *ls, struct list_head *root_list)
|
2024-04-02 19:17:59 +00:00
|
|
|
{
|
|
|
|
struct dlm_rsb *r;
|
|
|
|
|
2024-04-15 18:39:42 +00:00
|
|
|
read_lock_bh(&ls->ls_rsbtbl_lock);
|
2024-04-15 18:39:38 +00:00
|
|
|
list_for_each_entry(r, &ls->ls_keep, res_rsbs_list) {
|
|
|
|
list_add(&r->res_root_list, root_list);
|
|
|
|
dlm_hold_rsb(r);
|
2024-04-02 19:17:59 +00:00
|
|
|
}
|
2024-04-15 18:39:38 +00:00
|
|
|
|
|
|
|
WARN_ON_ONCE(!list_empty(&ls->ls_toss));
|
2024-04-15 18:39:42 +00:00
|
|
|
read_unlock_bh(&ls->ls_rsbtbl_lock);
|
2024-04-02 19:17:59 +00:00
|
|
|
}
|
|
|
|
|
2024-04-02 19:18:01 +00:00
|
|
|
static void dlm_release_root_list(struct list_head *root_list)
|
2024-04-02 19:17:59 +00:00
|
|
|
{
|
|
|
|
struct dlm_rsb *r, *safe;
|
|
|
|
|
2024-04-02 19:18:01 +00:00
|
|
|
list_for_each_entry_safe(r, safe, root_list, res_root_list) {
|
2024-04-02 19:17:59 +00:00
|
|
|
list_del_init(&r->res_root_list);
|
|
|
|
dlm_put_rsb(r);
|
|
|
|
}
|
|
|
|
}
|
2006-01-18 09:30:29 +00:00
|
|
|
|
|
|
|
/* If the start for which we're re-enabling locking (seq) has been superseded
|
2007-09-27 20:53:38 +00:00
|
|
|
by a newer stop (ls_recover_seq), we need to leave locking disabled.
|
|
|
|
|
|
|
|
We suspend dlm_recv threads here to avoid the race where dlm_recv a) sees
|
|
|
|
locking stopped and b) adds a message to the requestqueue, but dlm_recoverd
|
|
|
|
enables locking and clears the requestqueue between a and b. */
|
2006-01-18 09:30:29 +00:00
|
|
|
|
|
|
|
static int enable_locking(struct dlm_ls *ls, uint64_t seq)
|
|
|
|
{
|
|
|
|
int error = -EINTR;
|
|
|
|
|
2024-04-02 19:18:09 +00:00
|
|
|
write_lock_bh(&ls->ls_recv_active);
|
2007-09-27 20:53:38 +00:00
|
|
|
|
2024-04-02 19:18:09 +00:00
|
|
|
spin_lock_bh(&ls->ls_recover_lock);
|
2006-01-18 09:30:29 +00:00
|
|
|
if (ls->ls_recover_seq == seq) {
|
|
|
|
set_bit(LSFL_RUNNING, &ls->ls_flags);
|
2024-04-15 18:39:41 +00:00
|
|
|
/* Schedule next timer if recovery put something on toss.
|
|
|
|
*
|
|
|
|
* The rsbs that was queued while recovery on toss hasn't
|
|
|
|
* started yet because LSFL_RUNNING was set everything
|
|
|
|
* else recovery hasn't started as well because ls_in_recovery
|
|
|
|
* is still hold. So we should not run into the case that
|
|
|
|
* dlm_timer_resume() queues a timer that can occur in
|
|
|
|
* a no op.
|
|
|
|
*/
|
|
|
|
dlm_timer_resume(ls);
|
2007-09-27 20:53:38 +00:00
|
|
|
/* unblocks processes waiting to enter the dlm */
|
2006-01-18 09:30:29 +00:00
|
|
|
up_write(&ls->ls_in_recovery);
|
2012-08-02 16:08:21 +00:00
|
|
|
clear_bit(LSFL_RECOVER_LOCK, &ls->ls_flags);
|
2006-01-18 09:30:29 +00:00
|
|
|
error = 0;
|
|
|
|
}
|
2024-04-02 19:18:09 +00:00
|
|
|
spin_unlock_bh(&ls->ls_recover_lock);
|
2007-09-27 20:53:38 +00:00
|
|
|
|
2024-04-02 19:18:09 +00:00
|
|
|
write_unlock_bh(&ls->ls_recv_active);
|
2006-01-18 09:30:29 +00:00
|
|
|
return error;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int ls_recover(struct dlm_ls *ls, struct dlm_recover *rv)
|
|
|
|
{
|
2024-04-02 19:18:01 +00:00
|
|
|
LIST_HEAD(root_list);
|
2006-01-18 09:30:29 +00:00
|
|
|
unsigned long start;
|
|
|
|
int error, neg = 0;
|
|
|
|
|
2014-02-14 17:54:44 +00:00
|
|
|
log_rinfo(ls, "dlm_recover %llu", (unsigned long long)rv->seq);
|
2006-01-18 09:30:29 +00:00
|
|
|
|
2006-01-20 08:47:07 +00:00
|
|
|
mutex_lock(&ls->ls_recoverd_active);
|
2006-01-18 09:30:29 +00:00
|
|
|
|
2011-04-05 18:16:24 +00:00
|
|
|
dlm_callback_suspend(ls);
|
2006-01-18 09:30:29 +00:00
|
|
|
|
2012-05-10 15:18:07 +00:00
|
|
|
dlm_clear_toss(ls);
|
2006-01-18 09:30:29 +00:00
|
|
|
|
|
|
|
/*
|
2008-01-16 19:02:31 +00:00
|
|
|
* This list of root rsb's will be the basis of most of the recovery
|
|
|
|
* routines.
|
2006-01-18 09:30:29 +00:00
|
|
|
*/
|
|
|
|
|
2024-04-02 19:18:01 +00:00
|
|
|
dlm_create_root_list(ls, &root_list);
|
2006-01-18 09:30:29 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Add or remove nodes from the lockspace's ls_nodes list.
|
2022-06-22 18:45:13 +00:00
|
|
|
*
|
|
|
|
* Due to the fact that we must report all membership changes to lsops
|
|
|
|
* or midcomms layer, it is not permitted to abort ls_recover() until
|
|
|
|
* this is done.
|
2006-01-18 09:30:29 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
error = dlm_recover_members(ls, rv, &neg);
|
|
|
|
if (error) {
|
2014-02-14 17:54:44 +00:00
|
|
|
log_rinfo(ls, "dlm_recover_members error %d", error);
|
2006-01-18 09:30:29 +00:00
|
|
|
goto fail;
|
|
|
|
}
|
2011-10-14 17:34:58 +00:00
|
|
|
|
2024-04-02 19:18:01 +00:00
|
|
|
dlm_recover_dir_nodeid(ls, &root_list);
|
2012-05-10 15:18:07 +00:00
|
|
|
|
2024-04-02 19:18:00 +00:00
|
|
|
/* Create a snapshot of all active rsbs were we are the master of.
|
|
|
|
* During the barrier between dlm_recover_members_wait() and
|
|
|
|
* dlm_recover_directory() other nodes can dump their necessary
|
|
|
|
* directory dlm_rsb (r->res_dir_nodeid == nodeid) in rcom
|
|
|
|
* communication dlm_copy_master_names() handling.
|
|
|
|
*
|
|
|
|
* TODO We should create a per lockspace list that contains rsbs
|
|
|
|
* that we are the master of. Instead of creating this list while
|
|
|
|
* recovery we keep track of those rsbs while locking handling and
|
|
|
|
* recovery can use it when necessary.
|
|
|
|
*/
|
|
|
|
error = dlm_create_masters_list(ls);
|
|
|
|
if (error) {
|
|
|
|
log_rinfo(ls, "dlm_create_masters_list error %d", error);
|
2024-04-02 19:18:01 +00:00
|
|
|
goto fail_root_list;
|
2024-04-02 19:18:00 +00:00
|
|
|
}
|
|
|
|
|
dlm: fixes for nodir mode
The "nodir" mode (statically assign master nodes instead
of using the resource directory) has always been highly
experimental, and never seriously used. This commit
fixes a number of problems, making nodir much more usable.
- Major change to recovery: recover all locks and restart
all in-progress operations after recovery. In some
cases it's not possible to know which in-progess locks
to recover, so recover all. (Most require recovery
in nodir mode anyway since rehashing changes most
master nodes.)
- Change the way nodir mode is enabled, from a command
line mount arg passed through gfs2, into a sysfs
file managed by dlm_controld, consistent with the
other config settings.
- Allow recovering MSTCPY locks on an rsb that has not
yet been turned into a master copy.
- Ignore RCOM_LOCK and RCOM_LOCK_REPLY recovery messages
from a previous, aborted recovery cycle. Base this
on the local recovery status not being in the state
where any nodes should be sending LOCK messages for the
current recovery cycle.
- Hold rsb lock around dlm_purge_mstcpy_locks() because it
may run concurrently with dlm_recover_master_copy().
- Maintain highbast on process-copy lkb's (in addition to
the master as is usual), because the lkb can switch
back and forth between being a master and being a
process copy as the master node changes in recovery.
- When recovering MSTCPY locks, flag rsb's that have
non-empty convert or waiting queues for granting
at the end of recovery. (Rename flag from LOCKS_PURGED
to RECOVER_GRANT and similar for the recovery function,
because it's not only resources with purged locks
that need grant a grant attempt.)
- Replace a couple of unnecessary assertion panics with
error messages.
Signed-off-by: David Teigland <teigland@redhat.com>
2012-04-26 20:54:29 +00:00
|
|
|
ls->ls_recover_locks_in = 0;
|
|
|
|
|
2011-10-14 17:34:58 +00:00
|
|
|
dlm_set_recover_status(ls, DLM_RS_NODES);
|
|
|
|
|
2023-08-01 18:09:45 +00:00
|
|
|
error = dlm_recover_members_wait(ls, rv->seq);
|
2011-10-14 17:34:58 +00:00
|
|
|
if (error) {
|
2014-02-14 17:54:44 +00:00
|
|
|
log_rinfo(ls, "dlm_recover_members_wait error %d", error);
|
2024-04-02 19:18:00 +00:00
|
|
|
dlm_release_masters_list(ls);
|
2024-04-02 19:18:01 +00:00
|
|
|
goto fail_root_list;
|
2011-10-14 17:34:58 +00:00
|
|
|
}
|
|
|
|
|
2006-01-18 09:30:29 +00:00
|
|
|
start = jiffies;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Rebuild our own share of the directory by collecting from all other
|
|
|
|
* nodes their master rsb names that hash to us.
|
|
|
|
*/
|
|
|
|
|
2023-08-01 18:09:45 +00:00
|
|
|
error = dlm_recover_directory(ls, rv->seq);
|
2006-01-18 09:30:29 +00:00
|
|
|
if (error) {
|
2014-02-14 17:54:44 +00:00
|
|
|
log_rinfo(ls, "dlm_recover_directory error %d", error);
|
2024-04-02 19:18:00 +00:00
|
|
|
dlm_release_masters_list(ls);
|
2024-04-02 19:18:01 +00:00
|
|
|
goto fail_root_list;
|
2006-01-18 09:30:29 +00:00
|
|
|
}
|
|
|
|
|
2011-10-14 17:34:58 +00:00
|
|
|
dlm_set_recover_status(ls, DLM_RS_DIR);
|
2006-01-18 09:30:29 +00:00
|
|
|
|
2023-08-01 18:09:45 +00:00
|
|
|
error = dlm_recover_directory_wait(ls, rv->seq);
|
2006-01-18 09:30:29 +00:00
|
|
|
if (error) {
|
2014-02-14 17:54:44 +00:00
|
|
|
log_rinfo(ls, "dlm_recover_directory_wait error %d", error);
|
2024-04-02 19:18:00 +00:00
|
|
|
dlm_release_masters_list(ls);
|
2024-04-02 19:18:01 +00:00
|
|
|
goto fail_root_list;
|
2006-01-18 09:30:29 +00:00
|
|
|
}
|
|
|
|
|
2024-04-02 19:18:00 +00:00
|
|
|
dlm_release_masters_list(ls);
|
|
|
|
|
2006-01-18 09:30:29 +00:00
|
|
|
/*
|
|
|
|
* We may have outstanding operations that are waiting for a reply from
|
|
|
|
* a failed node. Mark these to be resent after recovery. Unlock and
|
|
|
|
* cancel ops can just be completed.
|
|
|
|
*/
|
|
|
|
|
|
|
|
dlm_recover_waiters_pre(ls);
|
|
|
|
|
2021-11-02 19:17:13 +00:00
|
|
|
if (dlm_recovery_stopped(ls)) {
|
2021-08-18 20:27:14 +00:00
|
|
|
error = -EINTR;
|
2024-04-02 19:18:01 +00:00
|
|
|
goto fail_root_list;
|
2021-08-18 20:27:14 +00:00
|
|
|
}
|
2006-01-18 09:30:29 +00:00
|
|
|
|
|
|
|
if (neg || dlm_no_directory(ls)) {
|
|
|
|
/*
|
|
|
|
* Clear lkb's for departed nodes.
|
|
|
|
*/
|
|
|
|
|
2024-04-02 19:18:01 +00:00
|
|
|
dlm_recover_purge(ls, &root_list);
|
2006-01-18 09:30:29 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Get new master nodeid's for rsb's that were mastered on
|
|
|
|
* departed nodes.
|
|
|
|
*/
|
|
|
|
|
2024-04-02 19:18:01 +00:00
|
|
|
error = dlm_recover_masters(ls, rv->seq, &root_list);
|
2006-01-18 09:30:29 +00:00
|
|
|
if (error) {
|
2014-02-14 17:54:44 +00:00
|
|
|
log_rinfo(ls, "dlm_recover_masters error %d", error);
|
2024-04-02 19:18:01 +00:00
|
|
|
goto fail_root_list;
|
2006-01-18 09:30:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Send our locks on remastered rsb's to the new masters.
|
|
|
|
*/
|
|
|
|
|
2024-04-02 19:18:01 +00:00
|
|
|
error = dlm_recover_locks(ls, rv->seq, &root_list);
|
2006-01-18 09:30:29 +00:00
|
|
|
if (error) {
|
2014-02-14 17:54:44 +00:00
|
|
|
log_rinfo(ls, "dlm_recover_locks error %d", error);
|
2024-04-02 19:18:01 +00:00
|
|
|
goto fail_root_list;
|
2006-01-18 09:30:29 +00:00
|
|
|
}
|
|
|
|
|
2011-10-14 17:34:58 +00:00
|
|
|
dlm_set_recover_status(ls, DLM_RS_LOCKS);
|
|
|
|
|
2023-08-01 18:09:45 +00:00
|
|
|
error = dlm_recover_locks_wait(ls, rv->seq);
|
2006-01-18 09:30:29 +00:00
|
|
|
if (error) {
|
2014-02-14 17:54:44 +00:00
|
|
|
log_rinfo(ls, "dlm_recover_locks_wait error %d", error);
|
2024-04-02 19:18:01 +00:00
|
|
|
goto fail_root_list;
|
2006-01-18 09:30:29 +00:00
|
|
|
}
|
|
|
|
|
2014-02-14 17:54:44 +00:00
|
|
|
log_rinfo(ls, "dlm_recover_locks %u in",
|
dlm: fixes for nodir mode
The "nodir" mode (statically assign master nodes instead
of using the resource directory) has always been highly
experimental, and never seriously used. This commit
fixes a number of problems, making nodir much more usable.
- Major change to recovery: recover all locks and restart
all in-progress operations after recovery. In some
cases it's not possible to know which in-progess locks
to recover, so recover all. (Most require recovery
in nodir mode anyway since rehashing changes most
master nodes.)
- Change the way nodir mode is enabled, from a command
line mount arg passed through gfs2, into a sysfs
file managed by dlm_controld, consistent with the
other config settings.
- Allow recovering MSTCPY locks on an rsb that has not
yet been turned into a master copy.
- Ignore RCOM_LOCK and RCOM_LOCK_REPLY recovery messages
from a previous, aborted recovery cycle. Base this
on the local recovery status not being in the state
where any nodes should be sending LOCK messages for the
current recovery cycle.
- Hold rsb lock around dlm_purge_mstcpy_locks() because it
may run concurrently with dlm_recover_master_copy().
- Maintain highbast on process-copy lkb's (in addition to
the master as is usual), because the lkb can switch
back and forth between being a master and being a
process copy as the master node changes in recovery.
- When recovering MSTCPY locks, flag rsb's that have
non-empty convert or waiting queues for granting
at the end of recovery. (Rename flag from LOCKS_PURGED
to RECOVER_GRANT and similar for the recovery function,
because it's not only resources with purged locks
that need grant a grant attempt.)
- Replace a couple of unnecessary assertion panics with
error messages.
Signed-off-by: David Teigland <teigland@redhat.com>
2012-04-26 20:54:29 +00:00
|
|
|
ls->ls_recover_locks_in);
|
|
|
|
|
2006-01-18 09:30:29 +00:00
|
|
|
/*
|
|
|
|
* Finalize state in master rsb's now that all locks can be
|
|
|
|
* checked. This includes conversion resolution and lvb
|
|
|
|
* settings.
|
|
|
|
*/
|
|
|
|
|
2024-04-02 19:18:01 +00:00
|
|
|
dlm_recover_rsbs(ls, &root_list);
|
2006-10-31 17:56:01 +00:00
|
|
|
} else {
|
|
|
|
/*
|
|
|
|
* Other lockspace members may be going through the "neg" steps
|
|
|
|
* while also adding us to the lockspace, in which case they'll
|
2006-11-01 15:31:48 +00:00
|
|
|
* be doing the recover_locks (RS_LOCKS) barrier.
|
2006-10-31 17:56:01 +00:00
|
|
|
*/
|
|
|
|
dlm_set_recover_status(ls, DLM_RS_LOCKS);
|
2006-11-01 15:31:48 +00:00
|
|
|
|
2023-08-01 18:09:45 +00:00
|
|
|
error = dlm_recover_locks_wait(ls, rv->seq);
|
2006-11-01 15:31:48 +00:00
|
|
|
if (error) {
|
2014-02-14 17:54:44 +00:00
|
|
|
log_rinfo(ls, "dlm_recover_locks_wait error %d", error);
|
2024-04-02 19:18:01 +00:00
|
|
|
goto fail_root_list;
|
2006-11-01 15:31:48 +00:00
|
|
|
}
|
2006-01-18 09:30:29 +00:00
|
|
|
}
|
|
|
|
|
2024-04-02 19:18:01 +00:00
|
|
|
dlm_release_root_list(&root_list);
|
2006-01-18 09:30:29 +00:00
|
|
|
|
2006-11-27 17:31:22 +00:00
|
|
|
/*
|
|
|
|
* Purge directory-related requests that are saved in requestqueue.
|
|
|
|
* All dir requests from before recovery are invalid now due to the dir
|
|
|
|
* rebuild and will be resent by the requesting nodes.
|
|
|
|
*/
|
|
|
|
|
|
|
|
dlm_purge_requestqueue(ls);
|
|
|
|
|
2006-01-18 09:30:29 +00:00
|
|
|
dlm_set_recover_status(ls, DLM_RS_DONE);
|
2011-10-14 17:34:58 +00:00
|
|
|
|
2023-08-01 18:09:45 +00:00
|
|
|
error = dlm_recover_done_wait(ls, rv->seq);
|
2006-01-18 09:30:29 +00:00
|
|
|
if (error) {
|
2014-02-14 17:54:44 +00:00
|
|
|
log_rinfo(ls, "dlm_recover_done_wait error %d", error);
|
2006-01-18 09:30:29 +00:00
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
|
|
|
|
dlm_clear_members_gone(ls);
|
|
|
|
|
2011-04-05 18:16:24 +00:00
|
|
|
dlm_callback_resume(ls);
|
|
|
|
|
2006-01-18 09:30:29 +00:00
|
|
|
error = enable_locking(ls, rv->seq);
|
|
|
|
if (error) {
|
2014-02-14 17:54:44 +00:00
|
|
|
log_rinfo(ls, "enable_locking error %d", error);
|
2006-01-18 09:30:29 +00:00
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
|
|
|
|
error = dlm_process_requestqueue(ls);
|
|
|
|
if (error) {
|
2014-02-14 17:54:44 +00:00
|
|
|
log_rinfo(ls, "dlm_process_requestqueue error %d", error);
|
2006-01-18 09:30:29 +00:00
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
|
|
|
|
error = dlm_recover_waiters_post(ls);
|
|
|
|
if (error) {
|
2014-02-14 17:54:44 +00:00
|
|
|
log_rinfo(ls, "dlm_recover_waiters_post error %d", error);
|
2006-01-18 09:30:29 +00:00
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
|
dlm: fixes for nodir mode
The "nodir" mode (statically assign master nodes instead
of using the resource directory) has always been highly
experimental, and never seriously used. This commit
fixes a number of problems, making nodir much more usable.
- Major change to recovery: recover all locks and restart
all in-progress operations after recovery. In some
cases it's not possible to know which in-progess locks
to recover, so recover all. (Most require recovery
in nodir mode anyway since rehashing changes most
master nodes.)
- Change the way nodir mode is enabled, from a command
line mount arg passed through gfs2, into a sysfs
file managed by dlm_controld, consistent with the
other config settings.
- Allow recovering MSTCPY locks on an rsb that has not
yet been turned into a master copy.
- Ignore RCOM_LOCK and RCOM_LOCK_REPLY recovery messages
from a previous, aborted recovery cycle. Base this
on the local recovery status not being in the state
where any nodes should be sending LOCK messages for the
current recovery cycle.
- Hold rsb lock around dlm_purge_mstcpy_locks() because it
may run concurrently with dlm_recover_master_copy().
- Maintain highbast on process-copy lkb's (in addition to
the master as is usual), because the lkb can switch
back and forth between being a master and being a
process copy as the master node changes in recovery.
- When recovering MSTCPY locks, flag rsb's that have
non-empty convert or waiting queues for granting
at the end of recovery. (Rename flag from LOCKS_PURGED
to RECOVER_GRANT and similar for the recovery function,
because it's not only resources with purged locks
that need grant a grant attempt.)
- Replace a couple of unnecessary assertion panics with
error messages.
Signed-off-by: David Teigland <teigland@redhat.com>
2012-04-26 20:54:29 +00:00
|
|
|
dlm_recover_grant(ls);
|
2006-01-18 09:30:29 +00:00
|
|
|
|
2014-02-14 17:54:44 +00:00
|
|
|
log_rinfo(ls, "dlm_recover %llu generation %u done: %u ms",
|
2011-11-02 19:30:58 +00:00
|
|
|
(unsigned long long)rv->seq, ls->ls_generation,
|
2006-01-18 09:30:29 +00:00
|
|
|
jiffies_to_msecs(jiffies - start));
|
2006-01-20 08:47:07 +00:00
|
|
|
mutex_unlock(&ls->ls_recoverd_active);
|
2006-01-18 09:30:29 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
2024-04-02 19:18:01 +00:00
|
|
|
fail_root_list:
|
|
|
|
dlm_release_root_list(&root_list);
|
2006-01-18 09:30:29 +00:00
|
|
|
fail:
|
2006-01-20 08:47:07 +00:00
|
|
|
mutex_unlock(&ls->ls_recoverd_active);
|
2022-06-22 18:45:15 +00:00
|
|
|
|
2006-01-18 09:30:29 +00:00
|
|
|
return error;
|
|
|
|
}
|
|
|
|
|
2006-10-31 17:56:08 +00:00
|
|
|
/* The dlm_ls_start() that created the rv we take here may already have been
|
|
|
|
stopped via dlm_ls_stop(); in that case we need to leave the RECOVERY_STOP
|
|
|
|
flag set. */
|
|
|
|
|
2006-01-18 09:30:29 +00:00
|
|
|
static void do_ls_recovery(struct dlm_ls *ls)
|
|
|
|
{
|
|
|
|
struct dlm_recover *rv = NULL;
|
2022-06-22 18:45:16 +00:00
|
|
|
int error;
|
2006-01-18 09:30:29 +00:00
|
|
|
|
2024-04-02 19:18:09 +00:00
|
|
|
spin_lock_bh(&ls->ls_recover_lock);
|
2006-01-18 09:30:29 +00:00
|
|
|
rv = ls->ls_recover_args;
|
|
|
|
ls->ls_recover_args = NULL;
|
2006-10-31 17:56:08 +00:00
|
|
|
if (rv && ls->ls_recover_seq == rv->seq)
|
2012-08-02 16:08:21 +00:00
|
|
|
clear_bit(LSFL_RECOVER_STOP, &ls->ls_flags);
|
2024-04-02 19:18:09 +00:00
|
|
|
spin_unlock_bh(&ls->ls_recover_lock);
|
2006-01-18 09:30:29 +00:00
|
|
|
|
|
|
|
if (rv) {
|
2022-06-22 18:45:16 +00:00
|
|
|
error = ls_recover(ls, rv);
|
|
|
|
switch (error) {
|
|
|
|
case 0:
|
|
|
|
ls->ls_recovery_result = 0;
|
|
|
|
complete(&ls->ls_recovery_done);
|
|
|
|
|
|
|
|
dlm_lsop_recover_done(ls);
|
|
|
|
break;
|
|
|
|
case -EINTR:
|
|
|
|
/* if recovery was interrupted -EINTR we wait for the next
|
|
|
|
* ls_recover() iteration until it hopefully succeeds.
|
|
|
|
*/
|
|
|
|
log_rinfo(ls, "%s %llu interrupted and should be queued to run again",
|
|
|
|
__func__, (unsigned long long)rv->seq);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
log_rinfo(ls, "%s %llu error %d", __func__,
|
|
|
|
(unsigned long long)rv->seq, error);
|
|
|
|
|
|
|
|
/* let new_lockspace() get aware of critical error */
|
|
|
|
ls->ls_recovery_result = error;
|
|
|
|
complete(&ls->ls_recovery_done);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2011-11-02 19:30:58 +00:00
|
|
|
kfree(rv->nodes);
|
2006-01-18 09:30:29 +00:00
|
|
|
kfree(rv);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static int dlm_recoverd(void *arg)
|
|
|
|
{
|
|
|
|
struct dlm_ls *ls;
|
|
|
|
|
|
|
|
ls = dlm_find_lockspace_local(arg);
|
2006-08-24 19:47:20 +00:00
|
|
|
if (!ls) {
|
|
|
|
log_print("dlm_recoverd: no lockspace %p", arg);
|
|
|
|
return -1;
|
|
|
|
}
|
2006-01-18 09:30:29 +00:00
|
|
|
|
2012-08-02 16:08:21 +00:00
|
|
|
down_write(&ls->ls_in_recovery);
|
|
|
|
set_bit(LSFL_RECOVER_LOCK, &ls->ls_flags);
|
|
|
|
wake_up(&ls->ls_recover_lock_wait);
|
|
|
|
|
2017-09-12 08:56:30 +00:00
|
|
|
while (1) {
|
|
|
|
/*
|
|
|
|
* We call kthread_should_stop() after set_current_state().
|
|
|
|
* This is because it works correctly if kthread_stop() is
|
|
|
|
* called just before set_current_state().
|
|
|
|
*/
|
2006-01-18 09:30:29 +00:00
|
|
|
set_current_state(TASK_INTERRUPTIBLE);
|
2017-09-12 08:56:30 +00:00
|
|
|
if (kthread_should_stop()) {
|
|
|
|
set_current_state(TASK_RUNNING);
|
|
|
|
break;
|
|
|
|
}
|
2012-08-02 16:08:21 +00:00
|
|
|
if (!test_bit(LSFL_RECOVER_WORK, &ls->ls_flags) &&
|
2017-09-25 07:47:50 +00:00
|
|
|
!test_bit(LSFL_RECOVER_DOWN, &ls->ls_flags)) {
|
|
|
|
if (kthread_should_stop())
|
|
|
|
break;
|
2006-01-18 09:30:29 +00:00
|
|
|
schedule();
|
2017-09-25 07:47:50 +00:00
|
|
|
}
|
2006-01-18 09:30:29 +00:00
|
|
|
set_current_state(TASK_RUNNING);
|
|
|
|
|
2012-08-02 16:08:21 +00:00
|
|
|
if (test_and_clear_bit(LSFL_RECOVER_DOWN, &ls->ls_flags)) {
|
|
|
|
down_write(&ls->ls_in_recovery);
|
|
|
|
set_bit(LSFL_RECOVER_LOCK, &ls->ls_flags);
|
|
|
|
wake_up(&ls->ls_recover_lock_wait);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (test_and_clear_bit(LSFL_RECOVER_WORK, &ls->ls_flags))
|
2006-01-18 09:30:29 +00:00
|
|
|
do_ls_recovery(ls);
|
|
|
|
}
|
|
|
|
|
2012-08-02 16:08:21 +00:00
|
|
|
if (test_bit(LSFL_RECOVER_LOCK, &ls->ls_flags))
|
|
|
|
up_write(&ls->ls_in_recovery);
|
|
|
|
|
2006-01-18 09:30:29 +00:00
|
|
|
dlm_put_lockspace(ls);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int dlm_recoverd_start(struct dlm_ls *ls)
|
|
|
|
{
|
|
|
|
struct task_struct *p;
|
|
|
|
int error = 0;
|
|
|
|
|
|
|
|
p = kthread_run(dlm_recoverd, ls, "dlm_recoverd");
|
|
|
|
if (IS_ERR(p))
|
|
|
|
error = PTR_ERR(p);
|
|
|
|
else
|
|
|
|
ls->ls_recoverd_task = p;
|
|
|
|
return error;
|
|
|
|
}
|
|
|
|
|
|
|
|
void dlm_recoverd_stop(struct dlm_ls *ls)
|
|
|
|
{
|
|
|
|
kthread_stop(ls->ls_recoverd_task);
|
|
|
|
}
|
|
|
|
|
|
|
|
void dlm_recoverd_suspend(struct dlm_ls *ls)
|
|
|
|
{
|
2006-08-08 22:06:07 +00:00
|
|
|
wake_up(&ls->ls_wait_general);
|
2006-01-20 08:47:07 +00:00
|
|
|
mutex_lock(&ls->ls_recoverd_active);
|
2006-01-18 09:30:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void dlm_recoverd_resume(struct dlm_ls *ls)
|
|
|
|
{
|
2006-01-20 08:47:07 +00:00
|
|
|
mutex_unlock(&ls->ls_recoverd_active);
|
2006-01-18 09:30:29 +00:00
|
|
|
}
|
|
|
|
|