]> sourceware.org Git - lvm2.git/commit
locking: unify global lock for flock and lockd
authorDavid Teigland <teigland@redhat.com>
Thu, 18 Apr 2019 20:01:19 +0000 (15:01 -0500)
committerDavid Teigland <teigland@redhat.com>
Mon, 29 Apr 2019 18:01:05 +0000 (13:01 -0500)
commit8c87dda195ffadcce1e428d3481e8d01080e2b22
treea4d80735cea230d056e191e66b52b60869a8bb37
parentccd13860708a1538b46c1b82b45d0ab44a26d89e
locking: unify global lock for flock and lockd

There have been two file locks used to protect lvm
"global state": "ORPHANS" and "GLOBAL".

Commands that used the ORPHAN flock in exclusive mode:
  pvcreate, pvremove, vgcreate, vgextend, vgremove,
  vgcfgrestore

Commands that used the ORPHAN flock in shared mode:
  vgimportclone, pvs, pvscan, pvresize, pvmove,
  pvdisplay, pvchange, fullreport

Commands that used the GLOBAL flock in exclusive mode:
  pvchange, pvscan, vgimportclone, vgscan

Commands that used the GLOBAL flock in shared mode:
  pvscan --cache, pvs

The ORPHAN lock covers the important cases of serializing
the use of orphan PVs.  It also partially covers the
reporting of orphan PVs (although not correctly as
explained below.)

The GLOBAL lock doesn't seem to have a clear purpose
(it may have eroded over time.)

Neither lock correctly protects the VG namespace, or
orphan PV properties.

To simplify and correct these issues, the two separate
flocks are combined into the one GLOBAL flock, and this flock
is used from the locking sites that are in place for the
lvmlockd global lock.

The logic behind the lvmlockd (distributed) global lock is
that any command that changes "global state" needs to take
the global lock in ex mode.  Global state in lvm is: the list
of VG names, the set of orphan PVs, and any properties of
orphan PVs.  Reading this global state can use the global lock
in sh mode to ensure it doesn't change while being reported.

The locking of global state now looks like:

lockd_global()
  previously named lockd_gl(), acquires the distributed
  global lock through lvmlockd.  This is unchanged.
  It serializes distributed lvm commands that are changing
  global state.  This is a no-op when lvmlockd is not in use.

lockf_global()
  acquires an flock on a local file.  It serializes local lvm
  commands that are changing global state.

lock_global()
  first calls lockf_global() to acquire the local flock for
  global state, and if this succeeds, it calls lockd_global()
  to acquire the distributed lock for global state.

Replace instances of lockd_gl() with lock_global(), so that the
existing sites for lvmlockd global state locking are now also
used for local file locking of global state.  Remove the previous
file locking calls lock_vol(GLOBAL) and lock_vol(ORPHAN).

The following commands which change global state are now
serialized with the exclusive global flock:

pvchange (of orphan), pvresize (of orphan), pvcreate, pvremove,
vgcreate, vgextend, vgremove, vgreduce, vgrename,
vgcfgrestore, vgimportclone, vgmerge, vgsplit

Commands that use a shared flock to read global state (and will
be serialized against the prior list) are those that use
process_each functions that are based on processing a list of
all VG names, or all PVs.  The list of all VGs or all PVs is
global state and the shared lock prevents those lists from
changing while the command is processing them.

The ORPHAN lock previously attempted to produce an accurate
listing of orphan PVs, but it was only acquired at the end of
the command during the fake vg_read of the fake orphan vg.
This is not when orphan PVs were determined; they were
determined by elimination beforehand by processing all real
VGs, and subtracting the PVs in the real VGs from the list
of all PVs that had been identified during the initial scan.
This is fixed by holding the single global lock in shared mode
while processing all VGs to determine the list of orphan PVs.
32 files changed:
lib/cache/lvmcache.c
lib/commands/toolcontext.h
lib/label/hints.c
lib/locking/file_locking.c
lib/locking/locking.c
lib/locking/locking.h
lib/locking/lvmlockd.c
lib/locking/lvmlockd.h
lib/metadata/metadata-exported.h
lib/metadata/metadata.c
lib/misc/lvm-flock.c
test/shell/lock-blocking.sh
tools/polldaemon.c
tools/pvchange.c
tools/pvcreate.c
tools/pvmove.c
tools/pvremove.c
tools/pvresize.c
tools/pvscan.c
tools/reporter.c
tools/toollib.c
tools/vgcfgrestore.c
tools/vgchange.c
tools/vgcreate.c
tools/vgextend.c
tools/vgimportclone.c
tools/vgmerge.c
tools/vgreduce.c
tools/vgremove.c
tools/vgrename.c
tools/vgscan.c
tools/vgsplit.c
This page took 0.041896 seconds and 5 git commands to generate.