2001-10-03 16:34:08 +04:00
/*
* Copyright ( C ) 2001 Sistina Software
*
* LVM is free software ; you can redistribute it and / or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation ; either version 2 , or ( at your option )
* any later version .
*
* LVM is distributed in the hope that it will be useful ,
* but WITHOUT ANY WARRANTY ; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE . See the
* GNU General Public License for more details .
*
* You should have received a copy of the GNU General Public License
* along with LVM ; see the file COPYING . If not , write to
* the Free Software Foundation , 59 Temple Place - Suite 330 ,
* Boston , MA 02111 - 1307 , USA .
*
*/
# include "tools.h"
int lvremove_single ( char * lv_name ) ;
int lvremove ( int argc , char * * argv )
{
int opt ;
int ret = 0 ;
2001-10-29 16:52:23 +03:00
if ( ! argc ) {
log_error ( " Please enter one or more logical volume paths " ) ;
2001-10-05 02:53:37 +04:00
return EINVALID_CMD_LINE ;
2001-10-03 16:34:08 +04:00
}
for ( opt = 0 ; opt < argc ; opt + + ) {
2001-10-29 16:52:23 +03:00
if ( ( ret = lvremove_single ( argv [ opt ] ) ) )
2001-10-03 16:34:08 +04:00
break ;
}
return ret ;
}
int lvremove_single ( char * lv_name )
{
char * vg_name = NULL ;
struct volume_group * vg ;
2001-10-29 16:52:23 +03:00
struct list_head * lvh ;
2001-10-03 16:34:08 +04:00
struct logical_volume * lv ;
/* does VG exist? */
2001-10-29 16:52:23 +03:00
if ( ! ( vg_name = extract_vgname ( ios , lv_name ) ) ) {
return ECMD_FAILED ;
}
2001-10-03 16:34:08 +04:00
log_verbose ( " Finding volume group %s " , vg_name ) ;
if ( ! ( vg = ios - > vg_read ( ios , vg_name ) ) ) {
2001-10-29 16:52:23 +03:00
log_error ( " Volume group %s doesn't exist " , vg_name ) ;
2001-10-05 02:53:37 +04:00
return ECMD_FAILED ;
2001-10-03 16:34:08 +04:00
}
2001-10-06 01:39:30 +04:00
if ( ! ( vg - > status & ACTIVE ) ) {
2001-10-29 16:52:23 +03:00
log_error ( " Volume group %s must be active before removing a "
2001-10-03 16:34:08 +04:00
" logical volume " , vg_name ) ;
2001-10-05 02:53:37 +04:00
return ECMD_FAILED ;
2001-10-03 16:34:08 +04:00
}
2001-10-29 16:52:23 +03:00
if ( ! ( lvh = find_lv_in_vg ( vg , lv_name ) ) ) {
log_error ( " Can't find logical volume %s in volume group %s " ,
2001-10-03 16:34:08 +04:00
lv_name , vg_name ) ;
2001-10-05 02:53:37 +04:00
return ECMD_FAILED ;
2001-10-03 16:34:08 +04:00
}
2001-10-29 16:52:23 +03:00
lv = & list_entry ( lvh , struct lv_list , list ) - > lv ;
2001-10-06 01:39:30 +04:00
if ( lv - > status & SNAPSHOT_ORG ) {
2001-10-29 16:52:23 +03:00
log_error ( " Can't remove logical volume %s under snapshot " ,
2001-10-03 16:34:08 +04:00
lv_name ) ;
2001-10-05 02:53:37 +04:00
return ECMD_FAILED ;
2001-10-03 16:34:08 +04:00
}
2001-10-09 21:20:02 +04:00
/********** FIXME Ensure logical volume is not open on *any* machine
2001-10-03 16:34:08 +04:00
if ( lv - > open ) {
log_error ( " can't remove open %s logical volume %s " ,
2001-10-06 01:39:30 +04:00
lv - > status & SNAPSHOT ? " snapshot " : " " ,
2001-10-03 16:34:08 +04:00
lv_name ) ;
2001-10-05 02:53:37 +04:00
return ECMD_FAILED ;
2001-10-03 16:34:08 +04:00
}
2001-10-09 21:20:02 +04:00
* * * * * * * * * * * */
2001-10-03 16:34:08 +04:00
if ( ! arg_count ( force_ARG ) ) {
if ( yes_no_prompt
( " Do you really want to remove %s? [y/n]: " ,
lv_name ) = = ' n ' ) {
2001-10-29 16:52:23 +03:00
log_print ( " Logical volume %s not removed " , lv_name ) ;
2001-10-03 16:34:08 +04:00
return 0 ;
}
}
2001-10-29 16:52:23 +03:00
log_verbose ( " Releasing logical volume %s " , lv_name ) ;
if ( lv_remove ( vg , lvh ) ) {
2001-10-03 16:34:08 +04:00
log_error ( " Error releasing logical volume %s " , lv_name ) ;
2001-10-05 02:53:37 +04:00
return ECMD_FAILED ;
2001-10-03 16:34:08 +04:00
}
2001-10-29 16:52:23 +03:00
/********* FIXME
log_verbose ( " Unlinking special file %s " , lv_name ) ;
2001-10-03 16:34:08 +04:00
if ( ! lvm_check_devfs ( ) & & unlink ( lv_name ) = = - 1 )
log_error ( " Error unlinking special file %s " , lv_name ) ;
2001-10-29 16:52:23 +03:00
* * * * * * * * * */
2001-10-03 16:34:08 +04:00
/* store it on disks */
2001-10-29 16:52:23 +03:00
if ( ios - > vg_write ( ios , vg ) )
2001-10-05 02:53:37 +04:00
return ECMD_FAILED ;
2001-10-03 16:34:08 +04:00
2001-10-29 16:52:23 +03:00
/******** FIXME
2001-10-03 16:34:08 +04:00
if ( ( ret = do_autobackup ( vg_name , vg ) ) )
return ret ;
2001-10-29 16:52:23 +03:00
* * * * * * * * * */
2001-10-03 16:34:08 +04:00
log_print ( " logical volume %s successfully removed " , lv_name ) ;
return 0 ;
}
2001-10-29 16:52:23 +03:00