mirror of
git://sourceware.org/git/lvm2.git
synced 2025-01-03 05:18:29 +03:00
lvmlockd: rescan lockd VG in two new cases
Previously, a command would only rescan a lockd VG when lvmetad returned the "vg_invalid" flag indicating that the cached copy was invalid (which is done by lvmlockd.) This is still the only usual reason for rescanning a lockd VG, but two new special cases are added where we also do the rescan: . When the --shared option is used to display lockd VGs from hosts not using lvmlockd. This is the same case as using --foreign to display foreign VGs, but --shared was missing the corresponding bits to rescan the VGs. . When a lockd VG is allowed to be read for displaying after failing to acquire the lock from lvmlockd. In this case, the usual mechanism for validating the cache is missed, so assume the cache would have been invalidated. (This had been a previous todo item that was lost during other cleanup.) These were long-standing todos that were lost track of.
This commit is contained in:
parent
231b7df6cc
commit
32e22a0037
43
lib/cache/lvmetad.c
vendored
43
lib/cache/lvmetad.c
vendored
@ -434,6 +434,7 @@ struct volume_group *lvmetad_vg_lookup(struct cmd_context *cmd, const char *vgna
|
||||
struct format_type *fmt;
|
||||
struct dm_config_node *pvcn;
|
||||
struct pv_list *pvl;
|
||||
int rescan = 0;
|
||||
|
||||
if (!lvmetad_active())
|
||||
return NULL;
|
||||
@ -492,15 +493,55 @@ struct volume_group *lvmetad_vg_lookup(struct cmd_context *cmd, const char *vgna
|
||||
if (!(vg = import_vg_from_lvmetad_config_tree(reply.cft, fid)))
|
||||
goto_out;
|
||||
|
||||
/*
|
||||
* Read the VG from disk, ignoring the lvmetad copy in these
|
||||
* cases:
|
||||
*
|
||||
* 1. The host is not using lvmlockd, but is reading lockd VGs
|
||||
* using the --shared option. The shared option is meant to
|
||||
* let hosts not running lvmlockd look at lockd VGs, like the
|
||||
* foreign option allows hosts to look at foreign VGs. When
|
||||
* --foreign is used, the code forces a rescan since the local
|
||||
* lvmetad cache of foreign VGs is likely stale. Similarly,
|
||||
* for --shared, have the code reading the shared VGs below
|
||||
* not use the cached copy from lvmetad but to rescan the VG.
|
||||
*
|
||||
* 2. The host failed to acquire the VG lock from lvmlockd for
|
||||
* the lockd VG. In this case, the usual mechanisms for
|
||||
* updating the lvmetad copy of the VG have been missed. Since
|
||||
* we don't know if the cached copy is valid, assume it's not.
|
||||
*
|
||||
* 3. lvmetad has returned the "vg_invalid" flag, which is the
|
||||
* usual mechanism used by lvmlockd/lvmetad to cause a host to
|
||||
* reread a VG from disk that has been modified from another
|
||||
* host.
|
||||
*/
|
||||
|
||||
if (is_lockd_type(vg->lock_type) && cmd->include_shared_vgs) {
|
||||
log_debug_lvmetad("Rescan VG %s because including shared", vgname);
|
||||
rescan = 1;
|
||||
} else if (is_lockd_type(vg->lock_type) && cmd->lockd_vg_rescan) {
|
||||
log_debug_lvmetad("Rescan VG %s because no lvmlockd lock is held", vgname);
|
||||
rescan = 1;
|
||||
} else if (dm_config_find_node(reply.cft->root, "vg_invalid")) {
|
||||
log_debug_lvmetad("Rescan VG %s because lvmetad returned invalid", vgname);
|
||||
rescan = 1;
|
||||
}
|
||||
|
||||
/*
|
||||
* locking may have detected a newer vg version and
|
||||
* invalidated the cached vg.
|
||||
*/
|
||||
if (dm_config_find_node(reply.cft->root, "vg_invalid")) {
|
||||
if (rescan) {
|
||||
log_debug_lvmetad("Update invalid lvmetad cache for VG %s", vgname);
|
||||
vg2 = lvmetad_pvscan_vg(cmd, vg);
|
||||
release_vg(vg);
|
||||
vg = vg2;
|
||||
if (!vg) {
|
||||
log_debug_lvmetad("VG %s from lvmetad not found during rescan.", vgname);
|
||||
fid = NULL;
|
||||
goto out;
|
||||
} else
|
||||
fid = vg->fid;
|
||||
}
|
||||
|
||||
|
@ -134,6 +134,7 @@ struct cmd_context {
|
||||
unsigned lockd_vg_disable:1;
|
||||
unsigned lockd_lv_disable:1;
|
||||
unsigned lockd_gl_removed:1;
|
||||
unsigned lockd_vg_rescan:1;
|
||||
unsigned lockd_vg_default_sh:1;
|
||||
unsigned lockd_vg_enforce_sh:1;
|
||||
|
||||
|
@ -1323,6 +1323,9 @@ int lockd_gl_create(struct cmd_context *cmd, const char *def_mode, const char *v
|
||||
return 0;
|
||||
}
|
||||
|
||||
/* --shared with vgcreate does not mean include_shared_vgs */
|
||||
cmd->include_shared_vgs = 0;
|
||||
|
||||
lvmetad_validate_global_cache(cmd, 1);
|
||||
|
||||
return 1;
|
||||
@ -1631,8 +1634,31 @@ int lockd_vg(struct cmd_context *cmd, const char *vg_name, const char *def_mode,
|
||||
int result;
|
||||
int ret;
|
||||
|
||||
/*
|
||||
* The result of the VG lock request is saved in lockd_state to be
|
||||
* passed into vg_read where the lock result is needed once we
|
||||
* know if this is a local VG or lockd VG.
|
||||
*/
|
||||
*lockd_state = 0;
|
||||
|
||||
/*
|
||||
* Use of lockd_vg_rescan.
|
||||
*
|
||||
* This is the VG equivalent of using lvmetad_validate_global_cache()
|
||||
* for the global lock (after failing to acquire the global lock). If
|
||||
* we fail to acquire the VG lock from lvmlockd, then the lvmlockd
|
||||
* mechanism has been missed that would have updated the cached lvmetad
|
||||
* copy of the VG. So, set lockd_vg_rescan to tell the VG reading code
|
||||
* to treat the lvmetad copy as if the invalid flag had been returned.
|
||||
* i.e. If a lockd VG is read without a lock, ignore the lvmetad copy
|
||||
* and read it from disk since we don't know if the cache is stale.
|
||||
*
|
||||
* Because lvmlockd requests return an error for local VGs, this will
|
||||
* be set for local VGs, but it ends up being ignored once the VG is
|
||||
* read and found to be a local VG.
|
||||
*/
|
||||
cmd->lockd_vg_rescan = 0;
|
||||
|
||||
if (!is_real_vg(vg_name))
|
||||
return 1;
|
||||
|
||||
@ -1703,6 +1729,7 @@ int lockd_vg(struct cmd_context *cmd, const char *vg_name, const char *def_mode,
|
||||
*/
|
||||
if (!_use_lvmlockd) {
|
||||
*lockd_state |= LDST_FAIL_REQUEST;
|
||||
cmd->lockd_vg_rescan = 1;
|
||||
return 1;
|
||||
}
|
||||
|
||||
@ -1719,6 +1746,7 @@ int lockd_vg(struct cmd_context *cmd, const char *vg_name, const char *def_mode,
|
||||
* this error for local VGs, but we do care for lockd VGs.
|
||||
*/
|
||||
*lockd_state |= LDST_FAIL_REQUEST;
|
||||
cmd->lockd_vg_rescan = 1;
|
||||
return 1;
|
||||
}
|
||||
|
||||
@ -1737,12 +1765,15 @@ int lockd_vg(struct cmd_context *cmd, const char *vg_name, const char *def_mode,
|
||||
break;
|
||||
case -ENOLS:
|
||||
*lockd_state |= LDST_FAIL_NOLS;
|
||||
cmd->lockd_vg_rescan = 1;
|
||||
break;
|
||||
case -ESTARTING:
|
||||
*lockd_state |= LDST_FAIL_STARTING;
|
||||
cmd->lockd_vg_rescan = 1;
|
||||
break;
|
||||
default:
|
||||
*lockd_state |= LDST_FAIL_OTHER;
|
||||
cmd->lockd_vg_rescan = 1;
|
||||
}
|
||||
|
||||
/*
|
||||
@ -1758,8 +1789,8 @@ int lockd_vg(struct cmd_context *cmd, const char *vg_name, const char *def_mode,
|
||||
* since a sanlock VG must be stopped everywhere before it's removed.
|
||||
*/
|
||||
if (result == -EREMOVED) {
|
||||
log_error("VG %s lock is removed", vg_name);
|
||||
ret = 0;
|
||||
log_error("VG %s lock failed: removed", vg_name);
|
||||
ret = 1;
|
||||
goto out;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user