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 ,
* Inc . , 59 Temple Place , Suite 330 , Boston , MA 02111 - 1307 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
*/
2009-11-01 22:51:54 +03:00
static int pvcreate_restore_params_validate ( struct cmd_context * cmd ,
2009-10-06 00:03:25 +04:00
int argc , char * * argv ,
struct pvcreate_params * pp )
2001-10-12 14:32:06 +04:00
{
2008-07-25 04:30:57 +04:00
const char * uuid = NULL ;
struct volume_group * vg ;
2010-03-16 18:48:27 +03:00
struct pv_list * existing_pvl ;
2008-07-25 04:30:57 +04:00
2002-11-18 17:04:08 +03:00
if ( arg_count ( cmd , restorefile_ARG ) & & ! arg_count ( cmd , uuidstr_ARG ) ) {
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
}
2010-08-12 08:08:59 +04:00
if ( ! arg_count ( cmd , restorefile_ARG ) & & arg_count ( cmd , uuidstr_ARG ) ) {
if ( ! arg_count ( 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 ;
}
}
2002-02-12 00:00:35 +03:00
if ( arg_count ( 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
}
2008-07-25 04:30:57 +04:00
if ( arg_count ( cmd , uuidstr_ARG ) ) {
uuid = arg_str_value ( cmd , uuidstr_ARG , " " ) ;
2013-02-18 13:51:32 +04:00
if ( ! id_read_format ( & pp - > rp . id , uuid ) )
2008-07-25 04:30:57 +04:00
return 0 ;
2013-02-18 13:51:32 +04:00
pp - > rp . idp = & pp - > rp . id ;
2012-02-23 17:11:07 +04:00
lvmcache_seed_infos_from_lvmetad ( cmd ) ; /* need to check for UUID dups */
2008-07-25 04:30:57 +04:00
}
if ( arg_count ( cmd , restorefile_ARG ) ) {
2013-02-18 13:51:32 +04:00
pp - > rp . restorefile = arg_str_value ( cmd , restorefile_ARG , " " ) ;
2008-07-25 04:30:57 +04:00
/* The uuid won't already exist */
2013-02-18 13:51:32 +04:00
if ( ! ( vg = backup_read_vg ( cmd , NULL , pp - > rp . restorefile ) ) ) {
2008-07-25 04:30:57 +04:00
log_error ( " Unable to read volume group from %s " ,
2013-02-18 13:51:32 +04:00
pp - > rp . restorefile ) ;
2008-07-25 04:30:57 +04:00
return 0 ;
}
2013-02-18 13:51:32 +04:00
if ( ! ( existing_pvl = find_pv_in_vg_by_uuid ( vg , pp - > rp . idp ) ) ) {
2012-10-18 16:32:56 +04:00
release_vg ( vg ) ;
2008-07-25 04:30:57 +04:00
log_error ( " Can't find uuid %s in backup file %s " ,
2013-02-18 13:51:32 +04:00
uuid , pp - > rp . restorefile ) ;
2008-07-25 04:30:57 +04:00
return 0 ;
}
2013-05-28 14:37:22 +04:00
pp - > rp . ba_start = pv_ba_start ( existing_pvl - > pv ) ;
pp - > rp . ba_size = pv_ba_size ( existing_pvl - > pv ) ;
2013-02-18 13:51:32 +04:00
pp - > rp . pe_start = pv_pe_start ( existing_pvl - > pv ) ;
pp - > rp . extent_size = pv_pe_size ( existing_pvl - > pv ) ;
pp - > rp . extent_count = pv_pe_count ( existing_pvl - > pv ) ;
2013-02-14 19:04:35 +04:00
2011-08-11 00:25:29 +04:00
release_vg ( vg ) ;
2008-07-25 04:30:57 +04:00
}
2012-02-28 18:24:57 +04:00
if ( arg_sign_value ( cmd , physicalvolumesize_ARG , SIGN_NONE ) = = SIGN_MINUS ) {
2009-10-06 00:03:25 +04:00
log_error ( " Physical volume size may not be negative " ) ;
return 0 ;
}
pp - > size = arg_uint64_value ( cmd , physicalvolumesize_ARG , UINT64_C ( 0 ) ) ;
if ( arg_count ( cmd , restorefile_ARG ) | | arg_count ( cmd , uuidstr_ARG ) )
pp - > zero = 0 ;
return 1 ;
}
2008-07-21 23:26:33 +04:00
int pvcreate ( struct cmd_context * cmd , int argc , char * * argv )
{
2008-07-25 18:59:51 +04:00
int i ;
2008-07-21 23:26:33 +04:00
int ret = ECMD_PROCESSED ;
struct pvcreate_params pp ;
2009-11-01 22:51:54 +03:00
pvcreate_params_set_defaults ( & pp ) ;
2009-10-06 00:03:25 +04:00
2009-11-01 22:51:54 +03:00
if ( ! pvcreate_restore_params_validate ( cmd , argc , argv , & pp ) ) {
2009-10-06 00:03:25 +04:00
return EINVALID_CMD_LINE ;
}
2015-02-13 17:58:51 +03:00
if ( ! pvcreate_params_validate ( cmd , argc , & pp ) ) {
2008-07-21 23:26:33 +04:00
return EINVALID_CMD_LINE ;
}
2001-10-12 14:32:06 +04:00
for ( i = 0 ; i < argc ; i + + ) {
2013-07-01 18:30:12 +04:00
if ( sigint_caught ( ) )
return_ECMD_FAILED ;
2011-08-30 18:55:15 +04:00
dm_unescape_colons_and_at_signs ( argv [ i ] , NULL , NULL ) ;
2010-09-23 16:02:33 +04:00
2013-07-09 05:37:56 +04:00
if ( ! pvcreate_single ( cmd , argv [ i ] , & pp ) )
2008-07-25 18:59:51 +04:00
ret = ECMD_FAILED ;
2001-10-12 14:32:06 +04:00
}
2001-10-01 19:29:39 +04:00
2003-10-22 02:06:07 +04:00
return ret ;
2001-10-01 19:29:39 +04:00
}