2001-10-03 12:34:08 +00:00
/*
2004-03-30 19:35:44 +00:00
* Copyright ( C ) 2001 - 2004 Sistina Software , Inc . All rights reserved .
* Copyright ( C ) 2004 Red Hat , Inc . All rights reserved .
2001-10-03 12:34:08 +00:00
*
2004-03-30 19:35:44 +00:00
* This file is part of LVM2 .
2001-10-03 12:34:08 +00:00
*
2004-03-30 19:35:44 +00:00
* This copyrighted material is made available to anyone wishing to use ,
* modify , copy , or redistribute it subject to the terms and conditions
* of the GNU General Public License v .2 .
2001-10-03 12:34:08 +00:00
*
* You should have received a copy of the GNU General Public License
2004-03-30 19:35:44 +00: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-03 12:34:08 +00:00
*/
# include "tools.h"
2002-11-18 14:04:08 +00:00
static int lvremove_single ( struct cmd_context * cmd , struct logical_volume * lv ,
2006-05-09 21:23:51 +00:00
void * handle __attribute ( ( unused ) ) )
2001-10-03 12:34:08 +00:00
{
2001-11-19 15:20:50 +00:00
struct volume_group * vg ;
2003-01-08 22:44:07 +00:00
struct lvinfo info ;
2005-11-08 22:52:26 +00:00
struct logical_volume * origin = NULL ;
2001-11-19 15:20:50 +00:00
vg = lv - > vg ;
2001-11-21 19:32:35 +00:00
2002-01-29 17:23:33 +00:00
if ( ! ( vg - > status & LVM_WRITE ) ) {
2002-01-30 15:04:48 +00:00
log_error ( " Volume group \" %s \" is read-only " , vg - > name ) ;
2002-01-29 17:23:33 +00:00
return ECMD_FAILED ;
}
2002-02-20 19:04:55 +00:00
if ( lv_is_origin ( lv ) ) {
2002-01-30 15:04:48 +00:00
log_error ( " Can't remove logical volume \" %s \" under snapshot " ,
2001-11-14 18:38:07 +00:00
lv - > name ) ;
2001-10-04 22:53:37 +00:00
return ECMD_FAILED ;
2001-10-03 12:34:08 +00:00
}
2005-06-03 14:49:51 +00:00
if ( lv - > status & MIRROR_IMAGE ) {
log_error ( " Can't remove logical volume %s used by a mirror " ,
lv - > name ) ;
return ECMD_FAILED ;
}
2005-06-01 16:51:55 +00:00
if ( lv - > status & MIRROR_LOG ) {
log_error ( " Can't remove logical volume %s used as mirror log " ,
lv - > name ) ;
return ECMD_FAILED ;
}
2003-05-06 12:10:18 +00:00
if ( lv - > status & LOCKED ) {
log_error ( " Can't remove locked LV %s " , lv - > name ) ;
return ECMD_FAILED ;
}
/* FIXME Ensure not referred to by another existing LVs */
2005-10-17 18:00:02 +00:00
if ( lv_info ( cmd , lv , & info , 1 ) ) {
2002-04-24 18:20:51 +00:00
if ( info . open_count ) {
log_error ( " Can't remove open logical volume \" %s \" " ,
2002-02-11 21:00:35 +00:00
lv - > name ) ;
2002-04-24 18:20:51 +00:00
return ECMD_FAILED ;
}
if ( info . exists & & ! arg_count ( cmd , force_ARG ) ) {
if ( yes_no_prompt ( " Do you really want to remove active "
" logical volume \" %s \" ? [y/n]: " ,
lv - > name ) = = ' n ' ) {
log_print ( " Logical volume \" %s \" not removed " ,
lv - > name ) ;
2003-10-21 22:06:07 +00:00
return ECMD_FAILED ;
2002-04-24 18:20:51 +00:00
}
2001-10-03 12:34:08 +00:00
}
}
2002-01-09 13:17:14 +00:00
if ( ! archive ( vg ) )
return ECMD_FAILED ;
2006-10-23 11:46:16 +00:00
/* If the VG is clustered then make sure no-one else is using the LV
we are about to remove */
if ( vg - > status & CLUSTERED ) {
if ( ! activate_lv_excl ( cmd , lv ) ) {
log_error ( " Can't get exclusive access to volume \" %s \" " ,
lv - > name ) ;
return ECMD_FAILED ;
}
}
2005-11-08 22:52:26 +00:00
/* FIXME Snapshot commit out of sequence if it fails after here? */
2005-08-15 12:00:04 +00:00
if ( ! deactivate_lv ( cmd , lv ) ) {
2002-02-11 21:00:35 +00:00
log_error ( " Unable to deactivate logical volume \" %s \" " ,
lv - > name ) ;
2002-02-27 12:26:41 +00:00
return ECMD_FAILED ;
2001-11-21 19:32:35 +00:00
}
2002-03-05 20:03:09 +00:00
if ( lv_is_cow ( lv ) ) {
2006-04-06 13:39:16 +00:00
origin = origin_from_cow ( lv ) ;
2002-03-05 20:03:09 +00:00
log_verbose ( " Removing snapshot %s " , lv - > name ) ;
2005-05-09 16:59:01 +00:00
if ( ! vg_remove_snapshot ( lv ) ) {
2002-03-05 20:03:09 +00:00
stack ;
return ECMD_FAILED ;
}
2002-02-21 10:15:54 +00:00
}
2002-01-30 15:04:48 +00:00
log_verbose ( " Releasing logical volume \" %s \" " , lv - > name ) ;
2005-05-09 16:59:01 +00:00
if ( ! lv_remove ( lv ) ) {
2002-01-30 15:04:48 +00:00
log_error ( " Error releasing logical volume \" %s \" " , lv - > name ) ;
2001-10-04 22:53:37 +00:00
return ECMD_FAILED ;
2001-10-03 12:34:08 +00:00
}
/* store it on disks */
2002-11-18 14:04:08 +00:00
if ( ! vg_write ( vg ) )
2001-10-04 22:53:37 +00:00
return ECMD_FAILED ;
2001-10-03 12:34:08 +00:00
2002-01-07 11:12:11 +00:00
backup ( vg ) ;
2001-10-03 12:34:08 +00:00
2003-07-04 22:34:56 +00:00
if ( ! vg_commit ( vg ) )
return ECMD_FAILED ;
2005-11-08 22:52:26 +00:00
/* If no snapshots left, reload without -real. */
if ( origin & & ! lv_is_origin ( origin ) ) {
if ( ! suspend_lv ( cmd , origin ) )
log_error ( " Failed to refresh %s without snapshot. " , origin - > name ) ;
else if ( ! resume_lv ( cmd , origin ) )
log_error ( " Failed to resume %s. " , origin - > name ) ;
}
2002-02-27 12:26:41 +00:00
log_print ( " Logical volume \" %s \" successfully removed " , lv - > name ) ;
2003-10-21 22:06:07 +00:00
return ECMD_PROCESSED ;
2001-10-03 12:34:08 +00:00
}
2002-11-18 14:04:08 +00:00
int lvremove ( struct cmd_context * cmd , int argc , char * * argv )
{
if ( ! argc ) {
log_error ( " Please enter one or more logical volume paths " ) ;
return EINVALID_CMD_LINE ;
}
2003-07-04 22:34:56 +00:00
return process_each_lv ( cmd , argc , argv , LCK_VG_WRITE , NULL ,
2002-11-18 14:04:08 +00:00
& lvremove_single ) ;
}