2001-10-01 19:29:39 +04:00
/*
2004-03-30 23:35:44 +04:00
* Copyright ( C ) 2001 - 2004 Sistina Software , Inc . All rights reserved .
2009-10-06 00:03:25 +04:00
* Copyright ( C ) 2004 - 2009 Red Hat , Inc . All rights reserved .
2001-11-07 11:50:07 +03:00
*
2004-03-30 23:35:44 +04:00
* This file is part of LVM2 .
2001-11-07 11:50:07 +03:00
*
2004-03-30 23:35:44 +04:00
* This copyrighted material is made available to anyone wishing to use ,
* modify , copy , or redistribute it subject to the terms and conditions
2007-08-21 00:55:30 +04:00
* of the GNU Lesser General Public License v .2 .1 .
2001-11-07 11:50:07 +03:00
*
2007-08-21 00:55:30 +04:00
* You should have received a copy of the GNU Lesser General Public License
2004-03-30 23:35:44 +04:00
* along with this program ; if not , write to the Free Software Foundation ,
2016-01-21 13:49:46 +03:00
* Inc . , 51 Franklin Street , Fifth Floor , Boston , MA 02110 - 1301 USA
2001-10-01 19:29:39 +04:00
*/
# include "tools.h"
2008-07-21 23:26:33 +04:00
/*
2009-10-06 00:03:25 +04:00
* Intial sanity checking of recovery - related command - line arguments .
* These args are : - - restorefile , - - uuid , and - - physicalvolumesize
2008-07-21 23:27:22 +04:00
*
* Output arguments :
* pp : structure allocated by caller , fields written / validated here
2008-07-21 23:26:33 +04:00
*/
2017-10-18 17:57:46 +03:00
static int _pvcreate_restore_params_from_args ( struct cmd_context * cmd , int argc ,
struct pvcreate_params * pp )
2001-10-12 14:32:06 +04:00
{
2016-02-15 23:09:42 +03:00
pp - > restorefile = arg_str_value ( cmd , restorefile_ARG , NULL ) ;
2008-07-25 04:30:57 +04:00
2016-06-22 00:24:52 +03:00
if ( arg_is_set ( cmd , restorefile_ARG ) & & ! arg_is_set ( cmd , uuidstr_ARG ) ) {
2002-11-18 17:04:08 +03:00
log_error ( " --uuid is required with --restorefile " ) ;
2008-07-21 23:26:33 +04:00
return 0 ;
2002-11-18 17:04:08 +03:00
}
2016-06-22 00:24:52 +03:00
if ( ! arg_is_set ( cmd , restorefile_ARG ) & & arg_is_set ( cmd , uuidstr_ARG ) ) {
if ( ! arg_is_set ( cmd , norestorefile_ARG ) & &
2013-06-25 14:31:53 +04:00
find_config_tree_bool ( cmd , devices_require_restorefile_with_uuid_CFG , NULL ) ) {
2010-08-12 08:08:59 +04:00
log_error ( " --restorefile is required with --uuid " ) ;
return 0 ;
}
}
2016-06-22 00:24:52 +03:00
if ( arg_is_set ( cmd , uuidstr_ARG ) & & argc ! = 1 ) {
2002-01-16 21:10:08 +03:00
log_error ( " Can only set uuid on one volume at once " ) ;
2008-07-21 23:26:33 +04:00
return 0 ;
2002-01-16 21:10:08 +03:00
}
2016-06-22 00:24:52 +03:00
if ( arg_is_set ( cmd , uuidstr_ARG ) ) {
2016-02-15 23:09:42 +03:00
pp - > uuid_str = arg_str_value ( cmd , uuidstr_ARG , " " ) ;
2016-02-19 00:31:27 +03:00
if ( ! id_read_format ( & pp - > pva . id , pp - > uuid_str ) )
2008-07-25 04:30:57 +04:00
return 0 ;
2016-02-25 20:56:24 +03:00
pp - > pva . idp = & pp - > pva . id ;
2008-07-25 04:30:57 +04:00
}
2017-04-27 20:13:09 +03:00
if ( arg_sign_value ( cmd , setphysicalvolumesize_ARG , SIGN_NONE ) = = SIGN_MINUS ) {
2009-10-06 00:03:25 +04:00
log_error ( " Physical volume size may not be negative " ) ;
return 0 ;
}
2017-04-27 20:13:09 +03:00
pp - > pva . size = arg_uint64_value ( cmd , setphysicalvolumesize_ARG , UINT64_C ( 0 ) ) ;
2009-10-06 00:03:25 +04:00
2016-06-22 00:24:52 +03:00
if ( arg_is_set ( cmd , restorefile_ARG ) | | arg_is_set ( cmd , uuidstr_ARG ) )
2009-10-06 00:03:25 +04:00
pp - > zero = 0 ;
return 1 ;
}
2017-10-18 17:57:46 +03:00
static int _pvcreate_restore_params_from_backup ( struct cmd_context * cmd ,
2016-02-19 00:38:23 +03:00
struct pvcreate_params * pp )
2016-02-15 23:09:42 +03:00
{
struct volume_group * vg ;
struct pv_list * existing_pvl ;
/*
* When restoring a PV , params need to be read from a backup file .
*/
if ( ! pp - > restorefile )
return 1 ;
if ( ! ( vg = backup_read_vg ( cmd , NULL , pp - > restorefile ) ) ) {
log_error ( " Unable to read volume group from %s " , pp - > restorefile ) ;
return 0 ;
}
2016-02-19 00:31:27 +03:00
if ( ! ( existing_pvl = find_pv_in_vg_by_uuid ( vg , & pp - > pva . id ) ) ) {
2016-02-15 23:09:42 +03:00
release_vg ( vg ) ;
log_error ( " Can't find uuid %s in backup file %s " ,
pp - > uuid_str , pp - > restorefile ) ;
return 0 ;
}
2016-02-19 00:31:27 +03:00
pp - > pva . ba_start = pv_ba_start ( existing_pvl - > pv ) ;
pp - > pva . ba_size = pv_ba_size ( existing_pvl - > pv ) ;
pp - > pva . pe_start = pv_pe_start ( existing_pvl - > pv ) ;
pp - > pva . extent_size = pv_pe_size ( existing_pvl - > pv ) ;
pp - > pva . extent_count = pv_pe_count ( existing_pvl - > pv ) ;
2016-02-15 23:09:42 +03:00
release_vg ( vg ) ;
return 1 ;
}
2008-07-21 23:26:33 +04:00
int pvcreate ( struct cmd_context * cmd , int argc , char * * argv )
{
2016-02-15 23:09:42 +03:00
struct processing_handle * handle ;
2016-02-19 00:38:23 +03:00
struct pvcreate_params pp ;
2016-02-15 23:09:42 +03:00
int ret ;
2008-07-21 23:26:33 +04:00
2016-02-15 23:09:42 +03:00
/*
* Five kinds of pvcreate param values :
* 1. defaults
* 2. recovery - related command line args
* 3. recovery - related args from backup file
* 4. normal command line args
* ( this also checks some settings from 2 & 3 )
* 5. argc / argv free args specifying devices
*/
2016-02-19 00:38:23 +03:00
pvcreate_params_set_defaults ( & pp ) ;
2016-02-15 23:09:42 +03:00
2017-10-18 17:57:46 +03:00
if ( ! _pvcreate_restore_params_from_args ( cmd , argc , & pp ) )
2016-02-15 23:09:42 +03:00
return EINVALID_CMD_LINE ;
2009-10-06 00:03:25 +04:00
2017-10-18 17:57:46 +03:00
if ( ! _pvcreate_restore_params_from_backup ( cmd , & pp ) )
2009-10-06 00:03:25 +04:00
return EINVALID_CMD_LINE ;
2016-02-15 23:09:42 +03:00
2016-02-19 00:38:23 +03:00
if ( ! pvcreate_params_from_args ( cmd , & pp ) )
2008-07-21 23:26:33 +04:00
return EINVALID_CMD_LINE ;
2017-08-11 22:41:37 +03:00
/*
* If - - metadatasize was not given with - - restorefile , set it to pe_start .
* Later code treats this as a maximum size and reduces it to fit .
*/
if ( ! arg_is_set ( cmd , metadatasize_ARG ) & & arg_is_set ( cmd , restorefile_ARG ) )
pp . pva . pvmetadatasize = pp . pva . pe_start ;
/* FIXME Also needs to check any 2nd metadata area isn't inside the data area! */
2016-02-15 23:09:42 +03:00
pp . pv_count = argc ;
pp . pv_names = argv ;
2013-07-01 18:30:12 +04:00
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.
2019-04-18 23:01:19 +03:00
/* Needed to change the set of orphan PVs. */
if ( ! lock_global ( cmd , " ex " ) )
2016-02-15 23:09:42 +03:00
return_ECMD_FAILED ;
2018-12-07 23:35:22 +03:00
clear_hint_file ( cmd ) ;
2019-04-30 22:10:27 +03:00
lvmcache_label_scan ( cmd ) ;
2016-05-31 13:24:05 +03:00
if ( ! ( handle = init_processing_handle ( cmd , NULL ) ) ) {
2016-02-15 23:09:42 +03:00
log_error ( " Failed to initialize processing handle. " ) ;
return ECMD_FAILED ;
}
2010-09-23 16:02:33 +04:00
2016-02-15 23:09:42 +03:00
if ( ! pvcreate_each_device ( cmd , handle , & pp ) )
ret = ECMD_FAILED ;
2019-04-30 22:10:27 +03:00
else
2016-02-15 23:09:42 +03:00
ret = ECMD_PROCESSED ;
2001-10-01 19:29:39 +04:00
2016-02-15 23:09:42 +03:00
destroy_processing_handle ( cmd , handle ) ;
2003-10-22 02:06:07 +04:00
return ret ;
2001-10-01 19:29:39 +04:00
}