2001-11-15 20:27:45 +03:00
/*
2008-01-30 17:00:02 +03: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 .
2001-11-15 20:27:45 +03:00
*
2004-03-30 23:35:44 +04:00
* This file is part of LVM2 .
2001-11-15 20:27:45 +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-15 20:27:45 +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-11-15 20:27:45 +03:00
*/
# include "tools.h"
2015-12-01 18:54:33 +03:00
struct lvrename_params {
2016-03-04 13:36:24 +03:00
int historical ;
2015-12-01 18:54:33 +03:00
const char * lv_name_old ;
const char * lv_name_new ;
} ;
2016-03-04 13:36:24 +03:00
/*
* Dummy LV to represent historical LV .
*/
static struct logical_volume _historical_lv = {
. name = " " ,
. major = - 1 ,
. minor = - 1 ,
. snapshot_segs = DM_LIST_HEAD_INIT ( _historical_lv . snapshot_segs ) ,
. segments = DM_LIST_HEAD_INIT ( _historical_lv . segments ) ,
. tags = DM_LIST_HEAD_INIT ( _historical_lv . tags ) ,
. segs_using_this_lv = DM_LIST_HEAD_INIT ( _historical_lv . segs_using_this_lv ) ,
. indirect_glvs = DM_LIST_HEAD_INIT ( _historical_lv . indirect_glvs ) ,
. hostname = " " ,
} ;
2015-12-01 18:54:33 +03:00
static int _lvrename_single ( struct cmd_context * cmd , const char * vg_name ,
struct volume_group * vg , struct processing_handle * handle )
{
struct lvrename_params * lp = ( struct lvrename_params * ) handle - > custom_handle ;
2016-03-04 13:36:24 +03:00
struct generic_logical_volume * glv ;
struct logical_volume * lv ;
2015-12-01 18:54:33 +03:00
int ret = ECMD_FAILED ;
2016-03-04 13:36:24 +03:00
if ( ! lp - > historical ) {
if ( ! ( lv = find_lv ( vg , lp - > lv_name_old ) ) ) {
log_error ( " Existing logical volume \" %s \" not found in "
" volume group \" %s \" " , lp - > lv_name_old , vg_name ) ;
goto bad ;
}
2015-12-01 18:54:33 +03:00
2016-03-04 13:36:24 +03:00
if ( lv_is_raid_image ( lv ) | | lv_is_raid_metadata ( lv ) ) {
log_error ( " Cannot rename a RAID %s directly " ,
lv_is_raid_image ( lv ) ? " image " :
" metadata area " ) ;
goto bad ;
}
if ( lv_is_raid_with_tracking ( lv ) ) {
log_error ( " Cannot rename %s while it is tracking a split image " ,
lv - > name ) ;
goto bad ;
}
} else {
if ( ! ( glv = find_historical_glv ( vg , lp - > lv_name_old , 0 , NULL ) ) ) {
log_error ( " Existing historical logical volume \" %s \" not found in "
" volume group \" %s \" " , lp - > lv_name_old , vg_name ) ;
goto bad ;
}
2015-12-01 18:54:33 +03:00
2016-03-04 13:36:24 +03:00
_historical_lv . vg = vg ;
_historical_lv . name = lp - > lv_name_old ;
_historical_lv . this_glv = glv ;
lv = & _historical_lv ;
2015-12-01 18:54:33 +03:00
}
2015-12-09 20:51:25 +03:00
/*
* The lvmlockd LV lock is only acquired here to ensure the LV is not
* active on another host . This requests a transient LV lock .
* If the LV is active , a persistent LV lock already exists in
* lvmlockd , and the transient lock request does nothing .
* If the LV is not active , then no LV lock exists and the transient
* lock request acquires the LV lock ( or fails ) . The transient lock
* is automatically released when the command exits .
*/
2016-03-04 13:36:24 +03:00
if ( ! lockd_lv ( cmd , lv , " ex " , 0 ) )
2015-12-09 20:51:25 +03:00
goto_bad ;
2016-03-04 13:36:24 +03:00
if ( ! lv_rename ( cmd , lv , lp - > lv_name_new ) )
2015-12-01 18:54:33 +03:00
goto_bad ;
2016-03-04 13:36:24 +03:00
log_print_unless_silent ( " Renamed \" %s%s \" to \" %s%s \" in volume group \" %s \" " ,
lp - > historical ? HISTORICAL_LV_PREFIX : " " , lp - > lv_name_old ,
lp - > historical ? HISTORICAL_LV_PREFIX : " " , lp - > lv_name_new ,
vg_name ) ;
2015-12-01 18:54:33 +03:00
ret = ECMD_PROCESSED ;
bad :
return ret ;
}
2007-08-04 01:22:10 +04:00
/*
* lvrename command implementation .
* Check arguments and call lv_rename ( ) to execute the request .
*/
2002-02-11 23:50:53 +03:00
int lvrename ( struct cmd_context * cmd , int argc , char * * argv )
2001-11-15 20:27:45 +03:00
{
2015-12-01 18:54:33 +03:00
struct processing_handle * handle = NULL ;
struct lvrename_params lp = { 0 } ;
2002-12-20 02:25:55 +03:00
size_t maxlen ;
2001-11-15 20:27:45 +03:00
char * lv_name_old , * lv_name_new ;
2002-12-20 02:25:55 +03:00
const char * vg_name , * vg_name_new , * vg_name_old ;
2016-03-04 13:36:24 +03:00
int historical = 0 ;
2001-11-15 20:27:45 +03:00
char * st ;
2016-02-23 21:57:56 +03:00
int ret ;
2001-11-15 20:27:45 +03:00
2016-03-04 13:36:24 +03:00
cmd - > include_historical_lvs = 1 ;
2002-09-05 16:49:23 +04:00
if ( argc = = 3 ) {
2007-03-09 23:47:41 +03:00
vg_name = skip_dev_dir ( cmd , argv [ 0 ] , NULL ) ;
2002-09-05 16:49:23 +04:00
lv_name_old = argv [ 1 ] ;
lv_name_new = argv [ 2 ] ;
if ( strchr ( lv_name_old , ' / ' ) & &
( vg_name_old = extract_vgname ( cmd , lv_name_old ) ) & &
strcmp ( vg_name_old , vg_name ) ) {
log_error ( " Please use a single volume group name "
" ( \" %s \" or \" %s \" ) " , vg_name , vg_name_old ) ;
return EINVALID_CMD_LINE ;
}
} else if ( argc = = 2 ) {
lv_name_old = argv [ 0 ] ;
lv_name_new = argv [ 1 ] ;
vg_name = extract_vgname ( cmd , lv_name_old ) ;
} else {
log_error ( " Old and new logical volume names required " ) ;
2001-11-15 20:27:45 +03:00
return EINVALID_CMD_LINE ;
}
2003-02-03 23:09:58 +03:00
if ( ! validate_name ( vg_name ) ) {
2002-09-05 16:49:23 +04:00
log_error ( " Please provide a valid volume group name " ) ;
2001-11-15 20:27:45 +03:00
return EINVALID_CMD_LINE ;
}
if ( strchr ( lv_name_new , ' / ' ) & &
2002-04-24 22:20:51 +04:00
( vg_name_new = extract_vgname ( cmd , lv_name_new ) ) & &
2001-11-15 20:27:45 +03:00
strcmp ( vg_name , vg_name_new ) ) {
log_error ( " Logical volume names must "
2002-01-30 18:04:48 +03:00
" have the same volume group ( \" %s \" or \" %s \" ) " ,
2001-11-15 20:27:45 +03:00
vg_name , vg_name_new ) ;
return EINVALID_CMD_LINE ;
}
if ( ( st = strrchr ( lv_name_old , ' / ' ) ) )
lv_name_old = st + 1 ;
if ( ( st = strrchr ( lv_name_new , ' / ' ) ) )
lv_name_new = st + 1 ;
2016-03-04 13:36:24 +03:00
if ( ! strncmp ( lv_name_old , HISTORICAL_LV_PREFIX , strlen ( HISTORICAL_LV_PREFIX ) ) ) {
lv_name_old = lv_name_old + strlen ( HISTORICAL_LV_PREFIX ) ;
historical = 1 ;
}
if ( ! strncmp ( lv_name_new , HISTORICAL_LV_PREFIX , strlen ( HISTORICAL_LV_PREFIX ) ) ) {
if ( historical )
lv_name_new = lv_name_old + strlen ( HISTORICAL_LV_PREFIX ) ;
else {
log_error ( " Old name references live LV while "
" new name is for historical LV. " ) ;
return EINVALID_CMD_LINE ;
}
}
2001-11-15 20:27:45 +03:00
/* Check sanity of new name */
2014-03-31 13:40:52 +04:00
maxlen = NAME_LEN - strlen ( vg_name ) - 3 ;
2001-11-15 20:27:45 +03:00
if ( strlen ( lv_name_new ) > maxlen ) {
2014-03-31 13:40:52 +04:00
log_error ( " New logical volume name \" %s \" may not exceed % "
PRIsize_t " characters. " , lv_name_new , maxlen ) ;
2014-03-27 15:24:35 +04:00
return EINVALID_CMD_LINE ;
2001-11-15 20:27:45 +03:00
}
if ( ! * lv_name_new ) {
log_error ( " New logical volume name may not be blank " ) ;
2014-03-27 15:24:35 +04:00
return EINVALID_CMD_LINE ;
2001-11-15 20:27:45 +03:00
}
2014-03-27 15:24:35 +04:00
if ( ! apply_lvname_restrictions ( lv_name_new ) ) {
stack ;
return EINVALID_CMD_LINE ;
}
2002-11-18 17:04:08 +03:00
2003-02-03 23:09:58 +03:00
if ( ! validate_name ( lv_name_new ) ) {
2003-09-15 19:01:00 +04:00
log_error ( " New logical volume name \" %s \" is invalid " ,
2013-07-01 13:27:11 +04:00
lv_name_new ) ;
2001-11-15 20:27:45 +03:00
return EINVALID_CMD_LINE ;
}
if ( ! strcmp ( lv_name_old , lv_name_new ) ) {
log_error ( " Old and new logical volume names must differ " ) ;
return EINVALID_CMD_LINE ;
}
2016-03-04 13:36:24 +03:00
lp . historical = historical ;
2015-12-01 18:54:33 +03:00
if ( ! ( lp . lv_name_old = dm_pool_strdup ( cmd - > mem , lv_name_old ) ) )
return ECMD_FAILED ;
2015-03-05 23:00:44 +03:00
2015-12-01 18:54:33 +03:00
if ( ! ( lp . lv_name_new = dm_pool_strdup ( cmd - > mem , lv_name_new ) ) )
return ECMD_FAILED ;
2002-01-29 20:23:33 +03:00
2016-05-31 13:24:05 +03:00
if ( ! ( handle = init_processing_handle ( cmd , NULL ) ) ) {
2015-12-01 18:54:33 +03:00
log_error ( " Failed to initialize processing handle. " ) ;
return ECMD_FAILED ;
2001-11-15 20:27:45 +03:00
}
2015-12-01 18:54:33 +03:00
handle - > custom_handle = & lp ;
2011-12-01 04:09:34 +04:00
2016-05-03 12:46:28 +03:00
ret = process_each_vg ( cmd , 0 , NULL , vg_name , NULL , READ_FOR_UPDATE , 0 , handle ,
2015-12-01 18:54:33 +03:00
_lvrename_single ) ;
2011-12-01 04:09:34 +04:00
2015-12-01 18:54:33 +03:00
destroy_processing_handle ( cmd , handle ) ;
2003-07-05 02:34:56 +04:00
2016-02-23 21:57:56 +03:00
return ret ;
2001-11-15 20:27:45 +03:00
}