2002-11-18 17:04:08 +03:00
/*
2004-03-30 23:35:44 +04:00
* Copyright ( C ) 2001 - 2004 Sistina Software , Inc . All rights reserved .
2007-08-21 00:55:30 +04:00
* Copyright ( C ) 2004 - 2007 Red Hat , Inc . All rights reserved .
2002-11-18 17:04:08 +03:00
*
2004-03-30 23:35:44 +04:00
* This file is part of LVM2 .
2002-11-18 17:04:08 +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 .
2002-11-18 17:04:08 +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
2002-11-18 17:04:08 +03:00
*/
# include "tools.h"
static int vgconvert_single ( struct cmd_context * cmd , const char * vg_name ,
2009-07-01 21:00:50 +04:00
struct volume_group * vg ,
2010-07-09 19:34:40 +04:00
void * handle __attribute__ ( ( unused ) ) )
2002-11-18 17:04:08 +03:00
{
2011-02-25 17:02:53 +03:00
struct physical_volume * pv , * existing_pv ;
2013-02-18 15:47:31 +04:00
struct pvcreate_restorable_params rp ;
2003-11-06 19:58:38 +03:00
struct logical_volume * lv ;
struct lv_list * lvl ;
2002-11-18 17:04:08 +03:00
int pvmetadatacopies = 0 ;
uint64_t pvmetadatasize = 0 ;
2011-02-25 17:02:53 +03:00
struct pv_list * pvl ;
int change_made = 0 ;
2003-11-06 19:58:38 +03:00
struct lvinfo info ;
int active = 0 ;
2002-11-18 17:04:08 +03:00
2009-09-15 02:47:49 +04:00
if ( ! vg_check_status ( vg , LVM_WRITE | EXPORTED_VG ) ) {
stack ;
2002-11-18 17:04:08 +03:00
return ECMD_FAILED ;
2009-09-15 02:47:49 +04:00
}
2002-11-18 17:04:08 +03:00
2011-02-25 17:02:53 +03:00
if ( vg - > fid - > fmt = = cmd - > fmt ) {
2002-11-18 17:04:08 +03:00
log_error ( " Volume group \" %s \" already uses format %s " ,
vg_name , cmd - > fmt - > name ) ;
return ECMD_FAILED ;
}
2011-02-25 17:02:53 +03:00
if ( cmd - > fmt - > features & FMT_MDAS ) {
2012-02-28 18:24:57 +04:00
if ( arg_sign_value ( cmd , metadatasize_ARG , SIGN_NONE ) = = SIGN_MINUS ) {
2003-09-15 19:04:39 +04:00
log_error ( " Metadata size may not be negative " ) ;
return EINVALID_CMD_LINE ;
}
2002-12-20 02:25:55 +03:00
pvmetadatasize = arg_uint64_value ( cmd , metadatasize_ARG ,
2007-11-14 03:08:25 +03:00
UINT64_C ( 0 ) ) ;
2002-11-18 17:04:08 +03:00
if ( ! pvmetadatasize )
pvmetadatasize =
2013-03-05 20:00:43 +04:00
find_config_tree_int ( cmd , metadata_pvmetadatasize_CFG ) ;
2002-11-18 17:04:08 +03:00
2009-10-06 00:55:56 +04:00
pvmetadatacopies = arg_int_value ( cmd , pvmetadatacopies_ARG , - 1 ) ;
2002-11-18 17:04:08 +03:00
if ( pvmetadatacopies < 0 )
pvmetadatacopies =
2013-03-05 20:00:43 +04:00
find_config_tree_int ( cmd , metadata_pvmetadatacopies_CFG ) ;
2002-11-18 17:04:08 +03:00
}
2013-05-28 14:37:22 +04:00
if ( cmd - > fmt - > features & FMT_BAS ) {
if ( arg_sign_value ( cmd , bootloaderareasize_ARG , SIGN_NONE ) = = SIGN_MINUS ) {
log_error ( " Bootloader area size may not be negative " ) ;
2013-02-15 14:14:26 +04:00
return EINVALID_CMD_LINE ;
}
2013-05-28 14:37:22 +04:00
rp . ba_size = arg_uint64_value ( cmd , bootloaderareasize_ARG , UINT64_C ( 0 ) ) ;
2013-02-15 14:14:26 +04:00
}
2002-11-18 17:04:08 +03:00
if ( ! archive ( vg ) ) {
log_error ( " Archive of \" %s \" metadata failed. " , vg_name ) ;
return ECMD_FAILED ;
}
2008-08-29 17:41:21 +04:00
/* Set PV/LV limit if converting from unlimited metadata format */
if ( vg - > fid - > fmt - > features & FMT_UNLIMITED_VOLS & &
2011-02-25 17:02:53 +03:00
! ( cmd - > fmt - > features & FMT_UNLIMITED_VOLS ) ) {
2008-08-29 17:41:21 +04:00
if ( ! vg - > max_lv )
vg - > max_lv = 255 ;
if ( ! vg - > max_pv )
vg - > max_pv = 255 ;
}
2008-08-28 22:41:51 +04:00
/* If converting to restricted lvid, check if lvid is compatible */
if ( ! ( vg - > fid - > fmt - > features & FMT_RESTRICTED_LVIDS ) & &
2011-02-25 17:02:53 +03:00
cmd - > fmt - > features & FMT_RESTRICTED_LVIDS )
2008-11-04 01:14:30 +03:00
dm_list_iterate_items ( lvl , & vg - > lvs )
2008-08-28 22:41:51 +04:00
if ( ! lvid_in_restricted_range ( & lvl - > lv - > lvid ) ) {
log_error ( " Logical volume %s lvid format is "
" incompatible with requested "
" metadata format. " , lvl - > lv - > name ) ;
return ECMD_FAILED ;
}
2003-11-06 19:58:38 +03:00
/* Attempt to change any LVIDs that are too big */
2011-02-25 17:02:53 +03:00
if ( cmd - > fmt - > features & FMT_RESTRICTED_LVIDS ) {
2008-11-04 01:14:30 +03:00
dm_list_iterate_items ( lvl , & vg - > lvs ) {
2003-11-06 19:58:38 +03:00
lv = lvl - > lv ;
2005-04-07 16:39:44 +04:00
if ( lv - > status & SNAPSHOT )
continue ;
2003-11-06 19:58:38 +03:00
if ( lvnum_from_lvid ( & lv - > lvid ) < MAX_RESTRICTED_LVS )
continue ;
2010-08-17 20:25:32 +04:00
if ( lv_info ( cmd , lv , 0 , & info , 0 , 0 ) & & info . exists ) {
2003-11-06 19:58:38 +03:00
log_error ( " Logical volume %s must be "
" deactivated before conversion. " ,
lv - > name ) ;
active + + ;
continue ;
}
lvid_from_lvnum ( & lv - > lvid , & lv - > vg - > id , find_free_lvnum ( lv ) ) ;
}
}
2009-09-15 02:47:49 +04:00
if ( active ) {
stack ;
2003-11-06 19:58:38 +03:00
return ECMD_FAILED ;
2009-09-15 02:47:49 +04:00
}
2003-11-06 19:58:38 +03:00
2011-02-25 17:02:53 +03:00
dm_list_iterate_items ( pvl , & vg - > pvs ) {
existing_pv = pvl - > pv ;
2013-02-18 15:47:31 +04:00
rp . id = existing_pv - > id ;
rp . idp = & rp . id ;
rp . pe_start = pv_pe_start ( existing_pv ) ;
rp . extent_count = pv_pe_count ( existing_pv ) ;
rp . extent_size = pv_pe_size ( existing_pv ) ;
2011-02-25 17:02:53 +03:00
/* pe_end = pv_pe_count(existing_pv) * pv_pe_size(existing_pv) + pe_start - 1; */
if ( ! ( pv = pv_create ( cmd , pv_dev ( existing_pv ) ,
2013-02-18 15:47:31 +04:00
0 , 0 , 0 ,
2011-02-25 17:02:53 +03:00
arg_int64_value ( cmd , labelsector_ARG ,
DEFAULT_LABELSECTOR ) ,
2013-02-18 15:47:31 +04:00
pvmetadatacopies , pvmetadatasize , 0 , & rp ) ) ) {
2011-02-25 17:02:53 +03:00
log_error ( " Failed to setup physical volume \" %s \" " ,
pv_dev_name ( existing_pv ) ) ;
if ( change_made )
log_error ( " Use pvcreate and vgcfgrestore to "
" repair from archived metadata. " ) ;
return ECMD_FAILED ;
}
/* Need to revert manually if it fails after this point */
change_made = 1 ;
log_verbose ( " Set up physical volume for \" %s \" with % " PRIu64
" available sectors " , pv_dev_name ( pv ) , pv_size ( pv ) ) ;
/* Wipe existing label first */
if ( ! label_remove ( pv_dev ( pv ) ) ) {
log_error ( " Failed to wipe existing label on %s " ,
pv_dev_name ( pv ) ) ;
log_error ( " Use pvcreate and vgcfgrestore to repair "
" from archived metadata. " ) ;
return ECMD_FAILED ;
}
log_very_verbose ( " Writing physical volume data to disk \" %s \" " ,
pv_dev_name ( pv ) ) ;
2011-02-28 16:19:02 +03:00
if ( ! ( pv_write ( cmd , pv , 0 ) ) ) {
2011-02-25 17:02:53 +03:00
log_error ( " Failed to write physical volume \" %s \" " ,
pv_dev_name ( pv ) ) ;
log_error ( " Use pvcreate and vgcfgrestore to repair "
" from archived metadata. " ) ;
return ECMD_FAILED ;
}
log_verbose ( " Physical volume \" %s \" successfully created " ,
pv_dev_name ( pv ) ) ;
}
2002-11-18 17:04:08 +03:00
log_verbose ( " Deleting existing metadata for VG %s " , vg_name ) ;
2009-09-03 01:39:07 +04:00
if ( ! vg_remove_mdas ( vg ) ) {
2002-11-18 17:04:08 +03:00
log_error ( " Removal of existing metadata for %s failed. " ,
vg_name ) ;
2011-02-25 17:02:53 +03:00
log_error ( " Use pvcreate and vgcfgrestore to repair "
" from archived metadata. " ) ;
return ECMD_FAILED ;
2002-11-18 17:04:08 +03:00
}
2003-04-25 02:13:48 +04:00
/* FIXME Cache the label format change so we don't have to skip this */
if ( test_mode ( ) ) {
log_verbose ( " Test mode: Skipping metadata writing for VG %s in "
" format %s " , vg_name , cmd - > fmt - > name ) ;
2003-10-22 02:06:07 +04:00
return ECMD_PROCESSED ;
2003-04-25 02:13:48 +04:00
}
2002-11-18 17:04:08 +03:00
log_verbose ( " Writing metadata for VG %s using format %s " , vg_name ,
2011-02-25 17:02:53 +03:00
cmd - > fmt - > name ) ;
if ( ! backup_restore_vg ( cmd , vg ) ) {
2002-11-18 17:04:08 +03:00
log_error ( " Conversion failed for volume group %s. " , vg_name ) ;
2011-02-25 17:02:53 +03:00
log_error ( " Use pvcreate and vgcfgrestore to repair from "
" archived metadata. " ) ;
return ECMD_FAILED ;
2002-11-18 17:04:08 +03:00
}
config: add silent mode
Accept -q as the short form of --quiet.
Suppress non-essential standard output if -q is given twice.
Treat log/silent in lvm.conf as equivalent to -qq.
Review all log_print messages and change some to
log_print_unless_silent.
When silent, the following commands still produce output:
dumpconfig, lvdisplay, lvmdiskscan, lvs, pvck, pvdisplay,
pvs, version, vgcfgrestore -l, vgdisplay, vgs.
[Needs checking.]
Non-essential messages are shifted from log level 4 to log level 5
for syslog and lvm2_log_fn purposes.
2012-08-25 23:35:48 +04:00
log_print_unless_silent ( " Volume group %s successfully converted " , vg_name ) ;
2002-11-18 17:04:08 +03:00
backup ( vg ) ;
2003-10-22 02:06:07 +04:00
return ECMD_PROCESSED ;
2002-11-18 17:04:08 +03:00
}
int vgconvert ( struct cmd_context * cmd , int argc , char * * argv )
{
if ( ! argc ) {
log_error ( " Please enter volume group(s) " ) ;
return EINVALID_CMD_LINE ;
}
if ( arg_int_value ( cmd , labelsector_ARG , 0 ) > = LABEL_SCAN_SECTORS ) {
log_error ( " labelsector must be less than %lu " ,
LABEL_SCAN_SECTORS ) ;
return EINVALID_CMD_LINE ;
}
2009-10-06 00:55:56 +04:00
if ( arg_count ( cmd , metadatacopies_ARG ) ) {
log_error ( " Invalid option --metadatacopies, "
" use --pvmetadatacopies instead. " ) ;
return EINVALID_CMD_LINE ;
}
2002-11-18 17:04:08 +03:00
if ( ! ( cmd - > fmt - > features & FMT_MDAS ) & &
2009-10-06 00:55:56 +04:00
( arg_count ( cmd , pvmetadatacopies_ARG ) | |
2002-11-18 17:04:08 +03:00
arg_count ( cmd , metadatasize_ARG ) ) ) {
log_error ( " Metadata parameters only apply to text format " ) ;
return EINVALID_CMD_LINE ;
}
2009-10-06 00:55:56 +04:00
if ( arg_count ( cmd , pvmetadatacopies_ARG ) & &
arg_int_value ( cmd , pvmetadatacopies_ARG , - 1 ) > 2 ) {
2002-11-18 17:04:08 +03:00
log_error ( " Metadatacopies may only be 0, 1 or 2 " ) ;
return EINVALID_CMD_LINE ;
}
2013-05-28 14:37:22 +04:00
if ( ! ( cmd - > fmt - > features & FMT_BAS ) & &
arg_count ( cmd , bootloaderareasize_ARG ) ) {
log_error ( " Bootloader area parameters only apply to text format " ) ;
2013-02-15 14:14:26 +04:00
return EINVALID_CMD_LINE ;
}
2009-07-01 21:00:50 +04:00
return process_each_vg ( cmd , argc , argv , READ_FOR_UPDATE , NULL ,
2002-11-18 17:04:08 +03:00
& vgconvert_single ) ;
}