2001-09-25 16:49:28 +04:00
/*
2004-03-30 23:35:44 +04:00
* Copyright ( C ) 2001 - 2004 Sistina Software , Inc . All rights reserved .
2005-11-29 00:00:37 +03:00
* Copyright ( C ) 2004 - 2005 Red Hat , Inc . All rights reserved .
2001-09-25 16:49:28 +04:00
*
2004-03-30 23:35:44 +04:00
* This file is part of LVM2 .
*
* 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 .
*
* You should have received a copy of the GNU General Public License
* along with this program ; if not , write to the Free Software Foundation ,
* Inc . , 59 Temple Place , Suite 330 , Boston , MA 02111 - 1307 USA
2001-09-25 16:49:28 +04:00
*/
2001-10-06 01:39:30 +04:00
# include "tools.h"
2005-11-29 00:00:37 +03:00
# include "lv_alloc.h"
2006-05-11 22:39:24 +04:00
# include "xlate.h"
2001-09-25 16:49:28 +04:00
2002-01-01 00:27:39 +03:00
# include <sys/stat.h>
2004-06-15 21:23:49 +04:00
# include <sys/wait.h>
2002-01-01 00:27:39 +03:00
2006-05-11 22:39:24 +04:00
/* From linux/drivers/md/dm-log.c */
# define MIRROR_MAGIC 0x4D695272
# define MIRROR_DISK_VERSION 2
2006-04-19 19:33:07 +04:00
/* Command line args */
2006-05-10 01:23:51 +04:00
unsigned arg_count ( struct cmd_context * cmd , int a )
2006-04-19 19:33:07 +04:00
{
return cmd - > args [ a ] . count ;
}
const char * arg_value ( struct cmd_context * cmd , int a )
{
return cmd - > args [ a ] . value ;
}
const char * arg_str_value ( struct cmd_context * cmd , int a , const char * def )
{
return arg_count ( cmd , a ) ? cmd - > args [ a ] . value : def ;
}
int32_t arg_int_value ( struct cmd_context * cmd , int a , const int32_t def )
{
return arg_count ( cmd , a ) ? cmd - > args [ a ] . i_value : def ;
}
uint32_t arg_uint_value ( struct cmd_context * cmd , int a , const uint32_t def )
{
return arg_count ( cmd , a ) ? cmd - > args [ a ] . ui_value : def ;
}
2006-05-10 01:23:51 +04:00
int64_t arg_int64_value ( struct cmd_context * cmd , int a , const int64_t def )
2006-04-19 19:33:07 +04:00
{
return arg_count ( cmd , a ) ? cmd - > args [ a ] . i64_value : def ;
}
uint64_t arg_uint64_value ( struct cmd_context * cmd , int a , const uint64_t def )
{
return arg_count ( cmd , a ) ? cmd - > args [ a ] . ui64_value : def ;
}
const void * arg_ptr_value ( struct cmd_context * cmd , int a , const void * def )
{
return arg_count ( cmd , a ) ? cmd - > args [ a ] . ptr : def ;
}
sign_t arg_sign_value ( struct cmd_context * cmd , int a , const sign_t def )
{
return arg_count ( cmd , a ) ? cmd - > args [ a ] . sign : def ;
}
2006-10-02 20:15:03 +04:00
percent_t arg_percent_value ( struct cmd_context * cmd , int a , const percent_t def )
2006-09-26 13:35:43 +04:00
{
return arg_count ( cmd , a ) ? cmd - > args [ a ] . percent : def ;
}
2006-04-19 19:33:07 +04:00
int arg_count_increment ( struct cmd_context * cmd , int a )
{
return cmd - > args [ a ] . count + + ;
}
const char * command_name ( struct cmd_context * cmd )
{
return cmd - > command - > name ;
}
2006-08-26 03:02:33 +04:00
/*
* Strip dev_dir if present
*/
2007-03-09 23:47:41 +03:00
char * skip_dev_dir ( struct cmd_context * cmd , const char * vg_name ,
unsigned * dev_dir_found )
2006-08-26 03:02:33 +04:00
{
2007-03-09 23:47:41 +03:00
const char * dmdir = dm_dir ( ) ;
size_t dmdir_len = strlen ( dmdir ) , vglv_sz ;
char * vgname , * lvname , * layer , * vglv ;
2006-08-26 03:02:33 +04:00
2007-03-09 23:47:41 +03:00
/* FIXME Do this properly */
2006-08-26 03:02:33 +04:00
if ( * vg_name = = ' / ' ) {
while ( * vg_name = = ' / ' )
vg_name + + ;
vg_name - - ;
}
2007-03-09 23:47:41 +03:00
/* Reformat string if /dev/mapper found */
if ( ! strncmp ( vg_name , dmdir , dmdir_len ) & & vg_name [ dmdir_len ] = = ' / ' ) {
if ( dev_dir_found )
* dev_dir_found = 1 ;
vg_name + = dmdir_len ;
while ( * vg_name = = ' / ' )
vg_name + + ;
if ( ! dm_split_lvm_name ( cmd - > mem , vg_name , & vgname , & lvname , & layer ) | |
* layer ) {
log_error ( " skip_dev_dir: Couldn't split up device name %s " ,
vg_name ) ;
return ( char * ) vg_name ;
}
vglv_sz = strlen ( vgname ) + strlen ( lvname ) + 2 ;
if ( ! ( vglv = dm_pool_alloc ( cmd - > mem , vglv_sz ) ) | |
dm_snprintf ( vglv , vglv_sz , " %s%s%s " , vgname ,
* lvname ? " / " : " " ,
lvname ) < 0 ) {
log_error ( " vg/lv string alloc failed " ) ;
return ( char * ) vg_name ;
}
return vglv ;
}
2006-08-26 03:02:33 +04:00
if ( ! strncmp ( vg_name , cmd - > dev_dir , strlen ( cmd - > dev_dir ) ) ) {
2007-03-09 23:47:41 +03:00
if ( dev_dir_found )
* dev_dir_found = 1 ;
2006-08-26 03:02:33 +04:00
vg_name + = strlen ( cmd - > dev_dir ) ;
while ( * vg_name = = ' / ' )
vg_name + + ;
2007-03-09 23:47:41 +03:00
} else if ( dev_dir_found )
* dev_dir_found = 0 ;
2006-08-26 03:02:33 +04:00
return ( char * ) vg_name ;
}
2005-01-19 20:31:51 +03:00
/*
* Metadata iteration functions
*/
2002-02-11 23:50:53 +03:00
int process_each_lv_in_vg ( struct cmd_context * cmd , struct volume_group * vg ,
2004-03-08 20:19:15 +03:00
struct list * arg_lvnames , struct list * tags ,
2002-11-18 17:04:08 +03:00
void * handle ,
2002-02-12 00:00:35 +03:00
int ( * process_single ) ( struct cmd_context * cmd ,
2002-11-18 17:04:08 +03:00
struct logical_volume * lv ,
void * handle ) )
2001-11-19 18:20:50 +03:00
{
int ret_max = 0 ;
int ret = 0 ;
2006-05-10 01:23:51 +04:00
unsigned process_all = 0 ;
unsigned process_lv = 0 ;
unsigned tags_supplied = 0 ;
unsigned lvargs_supplied = 0 ;
unsigned lvargs_matched = 0 ;
2001-11-19 18:20:50 +03:00
2003-10-16 00:02:46 +04:00
struct lv_list * lvl ;
2001-11-19 18:20:50 +03:00
if ( vg - > status & EXPORTED_VG ) {
2002-01-30 18:04:48 +03:00
log_error ( " Volume group \" %s \" is exported " , vg - > name ) ;
2001-11-19 18:20:50 +03:00
return ECMD_FAILED ;
}
2002-01-29 20:23:33 +03:00
2004-03-08 20:19:15 +03:00
if ( tags & & ! list_empty ( tags ) )
tags_supplied = 1 ;
if ( arg_lvnames & & ! list_empty ( arg_lvnames ) )
lvargs_supplied = 1 ;
/* Process all LVs in this VG if no restrictions given */
if ( ! tags_supplied & & ! lvargs_supplied )
process_all = 1 ;
/* Or if VG tags match */
if ( ! process_lv & & tags_supplied & &
2004-05-11 22:45:11 +04:00
str_list_match_list ( tags , & vg - > tags ) ) {
2004-03-08 20:19:15 +03:00
process_all = 1 ;
2004-05-11 22:45:11 +04:00
}
2004-03-08 20:19:15 +03:00
2003-10-16 00:02:46 +04:00
list_iterate_items ( lvl , & vg - > lvs ) {
2005-04-07 16:39:44 +04:00
if ( lvl - > lv - > status & SNAPSHOT )
continue ;
2004-03-08 20:19:15 +03:00
/* Should we process this LV? */
if ( process_all )
process_lv = 1 ;
else
process_lv = 0 ;
/* LV tag match? */
if ( ! process_lv & & tags_supplied & &
2004-05-11 22:45:11 +04:00
str_list_match_list ( tags , & lvl - > lv - > tags ) ) {
2004-03-08 20:19:15 +03:00
process_lv = 1 ;
2004-05-11 22:45:11 +04:00
}
2004-03-08 20:19:15 +03:00
/* LV name match? */
2004-05-05 22:31:38 +04:00
if ( lvargs_supplied & &
str_list_match_item ( arg_lvnames , lvl - > lv - > name ) ) {
2004-03-08 20:19:15 +03:00
process_lv = 1 ;
2004-05-05 22:31:38 +04:00
lvargs_matched + + ;
}
2004-03-08 20:19:15 +03:00
if ( ! process_lv )
continue ;
2003-10-16 00:02:46 +04:00
ret = process_single ( cmd , lvl - > lv , handle ) ;
2001-11-19 18:20:50 +03:00
if ( ret > ret_max )
ret_max = ret ;
}
2004-05-05 22:31:38 +04:00
if ( lvargs_supplied & & lvargs_matched ! = list_size ( arg_lvnames ) ) {
log_error ( " One or more specified logical volume(s) not found. " ) ;
if ( ret_max < ECMD_FAILED )
ret_max = ECMD_FAILED ;
}
2001-11-19 18:20:50 +03:00
return ret_max ;
}
2002-02-11 23:50:53 +03:00
int process_each_lv ( struct cmd_context * cmd , int argc , char * * argv ,
2002-11-18 17:04:08 +03:00
int lock_type , void * handle ,
2002-02-12 00:00:35 +03:00
int ( * process_single ) ( struct cmd_context * cmd ,
2002-11-18 17:04:08 +03:00
struct logical_volume * lv ,
void * handle ) )
2001-11-14 21:38:07 +03:00
{
int opt = 0 ;
int ret_max = 0 ;
int ret = 0 ;
2002-11-18 17:04:08 +03:00
int consistent ;
2001-11-14 21:38:07 +03:00
2005-06-01 20:51:55 +04:00
struct list * tags_arg ;
2004-06-15 21:23:49 +04:00
struct list * vgnames ; /* VGs to process */
2005-06-01 20:51:55 +04:00
struct str_list * sll , * strl ;
2001-11-14 21:38:07 +03:00
struct volume_group * vg ;
2004-03-08 20:19:15 +03:00
struct list tags , lvnames ;
struct list arg_lvnames ; /* Cmdline vgname or vgname/lvname */
char * vglv ;
size_t vglv_sz ;
2001-11-14 21:38:07 +03:00
2002-12-20 02:25:55 +03:00
const char * vgname ;
2001-11-14 21:38:07 +03:00
2004-03-08 20:19:15 +03:00
list_init ( & tags ) ;
list_init ( & arg_lvnames ) ;
2001-11-14 21:38:07 +03:00
if ( argc ) {
2004-03-08 20:19:15 +03:00
struct list arg_vgnames ;
2001-11-14 21:38:07 +03:00
log_verbose ( " Using logical volume(s) on command line " ) ;
2004-03-08 20:19:15 +03:00
list_init ( & arg_vgnames ) ;
2001-11-14 21:38:07 +03:00
for ( ; opt < argc ; opt + + ) {
2004-03-08 20:19:15 +03:00
const char * lv_name = argv [ opt ] ;
2003-07-05 02:34:56 +04:00
char * vgname_def ;
2007-03-09 23:47:41 +03:00
unsigned dev_dir_found = 0 ;
2002-11-18 17:04:08 +03:00
2004-03-08 20:19:15 +03:00
/* Do we have a tag or vgname or lvname? */
2002-11-18 17:04:08 +03:00
vgname = lv_name ;
2004-03-08 20:19:15 +03:00
if ( * vgname = = ' @ ' ) {
if ( ! validate_name ( vgname + 1 ) ) {
log_error ( " Skipping invalid tag %s " ,
vgname ) ;
continue ;
}
if ( ! str_list_add ( cmd - > mem , & tags ,
2005-10-17 03:03:59 +04:00
dm_pool_strdup ( cmd - > mem ,
2004-03-08 20:19:15 +03:00
vgname + 1 ) ) ) {
log_error ( " strlist allocation failed " ) ;
return ECMD_FAILED ;
}
continue ;
}
/* FIXME Jumbled parsing */
2007-03-09 23:47:41 +03:00
vgname = skip_dev_dir ( cmd , vgname , & dev_dir_found ) ;
2003-07-05 02:34:56 +04:00
if ( * vgname = = ' / ' ) {
log_error ( " \" %s \" : Invalid path for Logical "
2004-03-08 20:19:15 +03:00
" Volume " , argv [ opt ] ) ;
2003-07-05 02:34:56 +04:00
if ( ret_max < ECMD_FAILED )
ret_max = ECMD_FAILED ;
continue ;
}
2004-03-08 20:19:15 +03:00
lv_name = vgname ;
2002-11-18 17:04:08 +03:00
if ( strchr ( vgname , ' / ' ) ) {
/* Must be an LV */
2004-03-08 20:19:15 +03:00
lv_name = strchr ( vgname , ' / ' ) ;
while ( * lv_name = = ' / ' )
lv_name + + ;
if ( ! ( vgname = extract_vgname ( cmd , vgname ) ) ) {
2002-11-18 17:04:08 +03:00
if ( ret_max < ECMD_FAILED )
ret_max = ECMD_FAILED ;
continue ;
}
2004-03-08 20:19:15 +03:00
} else if ( ! dev_dir_found & &
2004-05-11 22:45:11 +04:00
( vgname_def = default_vgname ( cmd ) ) ) {
2003-07-05 02:34:56 +04:00
vgname = vgname_def ;
2004-03-08 20:19:15 +03:00
} else
lv_name = NULL ;
2003-07-05 02:34:56 +04:00
2004-03-08 20:19:15 +03:00
if ( ! str_list_add ( cmd - > mem , & arg_vgnames ,
2005-10-17 03:03:59 +04:00
dm_pool_strdup ( cmd - > mem , vgname ) ) ) {
2004-03-08 20:19:15 +03:00
log_error ( " strlist allocation failed " ) ;
2002-01-29 20:23:33 +03:00
return ECMD_FAILED ;
}
2004-03-08 20:19:15 +03:00
if ( ! lv_name ) {
if ( ! str_list_add ( cmd - > mem , & arg_lvnames ,
2005-10-17 03:03:59 +04:00
dm_pool_strdup ( cmd - > mem ,
2004-05-11 22:45:11 +04:00
vgname ) ) ) {
2004-03-08 20:19:15 +03:00
log_error ( " strlist allocation failed " ) ;
return ECMD_FAILED ;
}
} else {
vglv_sz = strlen ( vgname ) + strlen ( lv_name ) + 2 ;
2005-10-17 03:03:59 +04:00
if ( ! ( vglv = dm_pool_alloc ( cmd - > mem , vglv_sz ) ) | |
2006-08-21 16:54:53 +04:00
dm_snprintf ( vglv , vglv_sz , " %s/%s " , vgname ,
2004-03-08 20:19:15 +03:00
lv_name ) < 0 ) {
log_error ( " vg/lv string alloc failed " ) ;
return ECMD_FAILED ;
}
2004-06-15 21:23:49 +04:00
if ( ! str_list_add ( cmd - > mem , & arg_lvnames , vglv ) ) {
2004-03-08 20:19:15 +03:00
log_error ( " strlist allocation failed " ) ;
return ECMD_FAILED ;
}
2001-11-14 21:38:07 +03:00
}
}
2004-03-08 20:19:15 +03:00
vgnames = & arg_vgnames ;
2004-05-11 22:45:11 +04:00
}
2004-03-08 20:19:15 +03:00
if ( ! argc | | ! list_empty ( & tags ) ) {
2002-01-16 17:43:27 +03:00
log_verbose ( " Finding all logical volumes " ) ;
2004-03-08 20:19:15 +03:00
if ( ! ( vgnames = get_vgs ( cmd , 0 ) ) | | list_empty ( vgnames ) ) {
2001-11-14 21:38:07 +03:00
log_error ( " No volume groups found " ) ;
2004-05-20 20:18:58 +04:00
return ret_max ;
2001-11-14 21:38:07 +03:00
}
2004-03-08 20:19:15 +03:00
}
2005-06-01 20:51:55 +04:00
list_iterate_items ( strl , vgnames ) {
vgname = strl - > str ;
2004-03-08 20:19:15 +03:00
if ( ! vgname | | ! * vgname )
continue ; /* FIXME Unnecessary? */
if ( ! lock_vol ( cmd , vgname , lock_type ) ) {
log_error ( " Can't lock %s: skipping " , vgname ) ;
continue ;
}
if ( lock_type & LCK_WRITE )
consistent = 1 ;
else
consistent = 0 ;
2006-04-13 01:23:04 +04:00
if ( ! ( vg = vg_read ( cmd , vgname , NULL , & consistent ) ) | | ! consistent ) {
2004-03-08 20:19:15 +03:00
unlock_vg ( cmd , vgname ) ;
if ( ! vg )
log_error ( " Volume group \" %s \" "
" not found " , vgname ) ;
2006-09-02 05:18:17 +04:00
else {
if ( ( vg - > status & CLUSTERED ) & &
! locking_is_clustered ( ) & &
! lockingfailed ( ) ) {
log_error ( " Skipping clustered volume "
" group %s " , vgname ) ;
if ( ret_max < ECMD_FAILED )
ret_max = ECMD_FAILED ;
continue ;
}
2004-03-08 20:19:15 +03:00
log_error ( " Volume group \" %s \" "
" inconsistent " , vgname ) ;
2006-09-02 05:18:17 +04:00
}
2004-05-11 22:45:11 +04:00
if ( ! vg | | ! ( vg = recover_vg ( cmd , vgname , lock_type ) ) ) {
2004-03-08 20:19:15 +03:00
if ( ret_max < ECMD_FAILED )
ret_max = ECMD_FAILED ;
continue ;
}
}
2006-09-02 05:18:17 +04:00
if ( ( vg - > status & CLUSTERED ) & & ! locking_is_clustered ( ) & &
! lockingfailed ( ) ) {
unlock_vg ( cmd , vgname ) ;
log_error ( " Skipping clustered volume group %s " , vgname ) ;
if ( ret_max < ECMD_FAILED )
ret_max = ECMD_FAILED ;
continue ;
}
2004-03-08 20:19:15 +03:00
tags_arg = & tags ;
list_init ( & lvnames ) ; /* LVs to be processed in this VG */
list_iterate_items ( sll , & arg_lvnames ) {
const char * vg_name = sll - > str ;
const char * lv_name = strchr ( vg_name , ' / ' ) ;
if ( ( ! lv_name & & ! strcmp ( vg_name , vgname ) ) ) {
/* Process all LVs in this VG */
tags_arg = NULL ;
list_init ( & lvnames ) ;
break ;
} else if ( ! strncmp ( vg_name , vgname , strlen ( vgname ) ) & &
strlen ( vgname ) = = lv_name - vg_name ) {
if ( ! str_list_add ( cmd - > mem , & lvnames ,
2005-10-17 03:03:59 +04:00
dm_pool_strdup ( cmd - > mem ,
2004-03-08 20:19:15 +03:00
lv_name + 1 ) ) ) {
2004-05-11 22:45:11 +04:00
log_error ( " strlist allocation failed " ) ;
return ECMD_FAILED ;
2002-11-18 17:04:08 +03:00
}
2001-11-14 21:38:07 +03:00
}
}
2004-03-08 20:19:15 +03:00
ret = process_each_lv_in_vg ( cmd , vg , & lvnames , tags_arg ,
handle , process_single ) ;
unlock_vg ( cmd , vgname ) ;
if ( ret > ret_max )
ret_max = ret ;
2001-11-14 21:38:07 +03:00
}
return ret_max ;
}
2005-04-20 00:58:25 +04:00
int process_each_segment_in_pv ( struct cmd_context * cmd ,
struct volume_group * vg ,
struct physical_volume * pv ,
void * handle ,
int ( * process_single ) ( struct cmd_context * cmd ,
struct volume_group * vg ,
struct pv_segment * pvseg ,
void * handle ) )
{
struct pv_segment * pvseg ;
int ret_max = 0 ;
int ret ;
list_iterate_items ( pvseg , & pv - > segments ) {
ret = process_single ( cmd , vg , pvseg , handle ) ;
if ( ret > ret_max )
ret_max = ret ;
}
return ret_max ;
}
2002-12-12 23:55:49 +03:00
int process_each_segment_in_lv ( struct cmd_context * cmd ,
struct logical_volume * lv ,
void * handle ,
int ( * process_single ) ( struct cmd_context * cmd ,
struct lv_segment * seg ,
void * handle ) )
{
struct lv_segment * seg ;
int ret_max = 0 ;
int ret ;
2003-10-16 00:02:46 +04:00
list_iterate_items ( seg , & lv - > segments ) {
2002-12-12 23:55:49 +03:00
ret = process_single ( cmd , seg , handle ) ;
if ( ret > ret_max )
ret_max = ret ;
}
return ret_max ;
}
2004-03-08 20:19:15 +03:00
static int _process_one_vg ( struct cmd_context * cmd , const char * vg_name ,
2006-04-13 01:23:04 +04:00
const char * vgid ,
2004-03-08 20:19:15 +03:00
struct list * tags , struct list * arg_vgnames ,
int lock_type , int consistent , void * handle ,
int ret_max ,
int ( * process_single ) ( struct cmd_context * cmd ,
const char * vg_name ,
struct volume_group * vg ,
int consistent , void * handle ) )
{
struct volume_group * vg ;
int ret = 0 ;
if ( ! lock_vol ( cmd , vg_name , lock_type ) ) {
log_error ( " Can't lock %s: skipping " , vg_name ) ;
return ret_max ;
}
log_verbose ( " Finding volume group \" %s \" " , vg_name ) ;
2006-05-10 21:49:25 +04:00
if ( ! ( vg = vg_read ( cmd , vg_name , vgid , & consistent ) ) ) {
log_error ( " Volume group \" %s \" not found " , vg_name ) ;
unlock_vg ( cmd , vg_name ) ;
2006-06-15 00:27:15 +04:00
return ECMD_FAILED ;
2006-05-10 21:49:25 +04:00
}
2004-03-08 20:19:15 +03:00
2006-09-02 05:18:17 +04:00
if ( ( vg - > status & CLUSTERED ) & & ! locking_is_clustered ( ) & &
! lockingfailed ( ) ) {
log_error ( " Skipping clustered volume group %s " , vg_name ) ;
unlock_vg ( cmd , vg_name ) ;
return ECMD_FAILED ;
}
2004-03-08 20:19:15 +03:00
if ( ! list_empty ( tags ) ) {
/* Only process if a tag matches or it's on arg_vgnames */
if ( ! str_list_match_item ( arg_vgnames , vg_name ) & &
! str_list_match_list ( tags , & vg - > tags ) ) {
unlock_vg ( cmd , vg_name ) ;
return ret_max ;
}
}
if ( ( ret = process_single ( cmd , vg_name , vg , consistent ,
2004-05-11 22:45:11 +04:00
handle ) ) > ret_max ) {
2004-03-08 20:19:15 +03:00
ret_max = ret ;
2004-05-11 22:45:11 +04:00
}
2004-03-08 20:19:15 +03:00
unlock_vg ( cmd , vg_name ) ;
return ret_max ;
}
2002-02-12 00:00:35 +03:00
int process_each_vg ( struct cmd_context * cmd , int argc , char * * argv ,
2002-11-18 17:04:08 +03:00
int lock_type , int consistent , void * handle ,
2002-02-12 00:00:35 +03:00
int ( * process_single ) ( struct cmd_context * cmd ,
2002-11-18 17:04:08 +03:00
const char * vg_name ,
struct volume_group * vg ,
int consistent , void * handle ) )
2001-10-06 01:39:30 +04:00
{
int opt = 0 ;
int ret_max = 0 ;
2004-03-08 20:19:15 +03:00
struct str_list * sl ;
2006-04-13 01:23:04 +04:00
struct list * vgnames , * vgids ;
2004-03-08 20:19:15 +03:00
struct list arg_vgnames , tags ;
2001-10-06 01:39:30 +04:00
2006-04-13 01:23:04 +04:00
const char * vg_name , * vgid ;
2002-02-11 18:42:34 +03:00
2004-03-08 20:19:15 +03:00
list_init ( & tags ) ;
list_init ( & arg_vgnames ) ;
2001-10-06 01:39:30 +04:00
if ( argc ) {
log_verbose ( " Using volume group(s) on command line " ) ;
2004-03-08 20:19:15 +03:00
2002-02-11 18:42:34 +03:00
for ( ; opt < argc ; opt + + ) {
vg_name = argv [ opt ] ;
2004-03-08 20:19:15 +03:00
if ( * vg_name = = ' @ ' ) {
if ( ! validate_name ( vg_name + 1 ) ) {
log_error ( " Skipping invalid tag %s " ,
vg_name ) ;
continue ;
}
if ( ! str_list_add ( cmd - > mem , & tags ,
2005-10-17 03:03:59 +04:00
dm_pool_strdup ( cmd - > mem ,
2004-03-08 20:19:15 +03:00
vg_name + 1 ) ) ) {
log_error ( " strlist allocation failed " ) ;
return ECMD_FAILED ;
}
continue ;
}
2007-03-09 23:47:41 +03:00
vg_name = skip_dev_dir ( cmd , vg_name , NULL ) ;
2002-04-24 22:20:51 +04:00
if ( strchr ( vg_name , ' / ' ) ) {
log_error ( " Invalid volume group name: %s " ,
vg_name ) ;
continue ;
}
2004-03-08 20:19:15 +03:00
if ( ! str_list_add ( cmd - > mem , & arg_vgnames ,
2005-10-17 03:03:59 +04:00
dm_pool_strdup ( cmd - > mem , vg_name ) ) ) {
2004-03-08 20:19:15 +03:00
log_error ( " strlist allocation failed " ) ;
return ECMD_FAILED ;
2002-02-11 18:42:34 +03:00
}
}
2004-03-08 20:19:15 +03:00
vgnames = & arg_vgnames ;
}
if ( ! argc | | ! list_empty ( & tags ) ) {
2002-01-16 17:43:27 +03:00
log_verbose ( " Finding all volume groups " ) ;
2006-04-13 01:23:04 +04:00
if ( ! ( vgids = get_vgids ( cmd , 0 ) ) | | list_empty ( vgids ) ) {
2001-10-06 01:39:30 +04:00
log_error ( " No volume groups found " ) ;
2004-05-20 20:18:58 +04:00
return ret_max ;
2001-10-06 01:39:30 +04:00
}
2006-04-13 01:23:04 +04:00
list_iterate_items ( sl , vgids ) {
vgid = sl - > str ;
2006-04-14 01:08:29 +04:00
if ( ! vgid | | ! ( vg_name = vgname_from_vgid ( cmd - > mem , vgid ) ) | |
! * vg_name )
2006-04-13 01:23:04 +04:00
continue ;
ret_max = _process_one_vg ( cmd , vg_name , vgid , & tags ,
& arg_vgnames ,
lock_type , consistent , handle ,
ret_max , process_single ) ;
}
} else {
list_iterate_items ( sl , vgnames ) {
vg_name = sl - > str ;
if ( ! vg_name | | ! * vg_name )
continue ; /* FIXME Unnecessary? */
ret_max = _process_one_vg ( cmd , vg_name , NULL , & tags ,
& arg_vgnames ,
lock_type , consistent , handle ,
ret_max , process_single ) ;
}
2001-10-06 01:39:30 +04:00
}
return ret_max ;
}
2001-10-08 22:44:22 +04:00
2002-02-11 23:50:53 +03:00
int process_each_pv_in_vg ( struct cmd_context * cmd , struct volume_group * vg ,
2004-03-08 20:19:15 +03:00
struct list * tags , void * handle ,
2002-02-12 00:00:35 +03:00
int ( * process_single ) ( struct cmd_context * cmd ,
struct volume_group * vg ,
2002-11-18 17:04:08 +03:00
struct physical_volume * pv ,
void * handle ) )
2001-11-19 18:20:50 +03:00
{
int ret_max = 0 ;
int ret = 0 ;
2003-10-16 00:02:46 +04:00
struct pv_list * pvl ;
2001-11-19 18:20:50 +03:00
2004-03-08 20:19:15 +03:00
list_iterate_items ( pvl , & vg - > pvs ) {
if ( tags & & ! list_empty ( tags ) & &
2004-05-11 22:45:11 +04:00
! str_list_match_list ( tags , & pvl - > pv - > tags ) ) {
2004-03-08 20:19:15 +03:00
continue ;
2004-05-11 22:45:11 +04:00
}
2003-10-16 00:02:46 +04:00
if ( ( ret = process_single ( cmd , vg , pvl - > pv , handle ) ) > ret_max )
2002-01-21 19:05:23 +03:00
ret_max = ret ;
2004-03-08 20:19:15 +03:00
}
2002-01-21 19:05:23 +03:00
return ret_max ;
2001-11-19 18:20:50 +03:00
}
2004-06-19 23:27:00 +04:00
static int _process_all_devs ( struct cmd_context * cmd , void * handle ,
int ( * process_single ) ( struct cmd_context * cmd ,
struct volume_group * vg ,
struct physical_volume * pv ,
void * handle ) )
{
struct physical_volume * pv ;
struct physical_volume pv_dummy ;
struct dev_iter * iter ;
struct device * dev ;
int ret_max = 0 ;
int ret = 0 ;
2005-03-08 16:46:17 +03:00
if ( ! ( iter = dev_iter_create ( cmd - > filter , 1 ) ) ) {
2004-06-19 23:27:00 +04:00
log_error ( " dev_iter creation failed " ) ;
return ECMD_FAILED ;
}
while ( ( dev = dev_iter_get ( iter ) ) ) {
if ( ! ( pv = pv_read ( cmd , dev_name ( dev ) , NULL , NULL , 0 ) ) ) {
memset ( & pv_dummy , 0 , sizeof ( pv_dummy ) ) ;
list_init ( & pv_dummy . tags ) ;
2005-04-20 00:58:25 +04:00
list_init ( & pv_dummy . segments ) ;
2004-06-19 23:27:00 +04:00
pv_dummy . dev = dev ;
pv_dummy . fmt = NULL ;
pv = & pv_dummy ;
}
ret = process_single ( cmd , NULL , pv , handle ) ;
if ( ret > ret_max )
ret_max = ret ;
}
dev_iter_destroy ( iter ) ;
return ret_max ;
}
2002-02-12 00:00:35 +03:00
int process_each_pv ( struct cmd_context * cmd , int argc , char * * argv ,
2002-11-18 17:04:08 +03:00
struct volume_group * vg , void * handle ,
2002-02-12 00:00:35 +03:00
int ( * process_single ) ( struct cmd_context * cmd ,
struct volume_group * vg ,
2002-11-18 17:04:08 +03:00
struct physical_volume * pv ,
void * handle ) )
2001-10-12 01:35:55 +04:00
{
int opt = 0 ;
int ret_max = 0 ;
int ret = 0 ;
2002-01-21 17:28:12 +03:00
struct pv_list * pvl ;
2002-12-12 23:55:49 +03:00
struct physical_volume * pv ;
2004-03-08 20:19:15 +03:00
struct list * pvslist , * vgnames ;
struct list tags ;
struct str_list * sll ;
char * tagname ;
int consistent = 1 ;
list_init ( & tags ) ;
2001-10-12 01:35:55 +04:00
if ( argc ) {
log_verbose ( " Using physical volume(s) on command line " ) ;
for ( ; opt < argc ; opt + + ) {
2004-03-08 20:19:15 +03:00
if ( * argv [ opt ] = = ' @ ' ) {
tagname = argv [ opt ] + 1 ;
if ( ! validate_name ( tagname ) ) {
log_error ( " Skipping invalid tag %s " ,
tagname ) ;
2004-05-05 22:31:38 +04:00
if ( ret_max < EINVALID_CMD_LINE )
ret_max = EINVALID_CMD_LINE ;
2004-03-08 20:19:15 +03:00
continue ;
}
if ( ! str_list_add ( cmd - > mem , & tags ,
2005-10-17 03:03:59 +04:00
dm_pool_strdup ( cmd - > mem ,
2004-03-08 20:19:15 +03:00
tagname ) ) ) {
log_error ( " strlist allocation failed " ) ;
return ECMD_FAILED ;
}
continue ;
}
2002-12-12 23:55:49 +03:00
if ( vg ) {
if ( ! ( pvl = find_pv_in_vg ( vg , argv [ opt ] ) ) ) {
log_error ( " Physical Volume \" %s \" not "
" found in Volume Group "
" \" %s \" " , argv [ opt ] ,
vg - > name ) ;
2003-10-22 02:06:07 +04:00
ret_max = ECMD_FAILED ;
2002-12-12 23:55:49 +03:00
continue ;
}
pv = pvl - > pv ;
} else {
2004-06-19 23:27:00 +04:00
if ( ! ( pv = pv_read ( cmd , argv [ opt ] , NULL ,
NULL , 1 ) ) ) {
2002-12-12 23:55:49 +03:00
log_error ( " Failed to read physical "
" volume \" %s \" " , argv [ opt ] ) ;
2003-10-22 02:06:07 +04:00
ret_max = ECMD_FAILED ;
2002-12-12 23:55:49 +03:00
continue ;
}
2001-10-12 01:35:55 +04:00
}
2002-12-12 23:55:49 +03:00
ret = process_single ( cmd , vg , pv , handle ) ;
2001-10-12 01:35:55 +04:00
if ( ret > ret_max )
ret_max = ret ;
}
2004-03-08 20:19:15 +03:00
if ( ! list_empty ( & tags ) & & ( vgnames = get_vgs ( cmd , 0 ) ) & &
! list_empty ( vgnames ) ) {
list_iterate_items ( sll , vgnames ) {
2006-05-10 21:49:25 +04:00
if ( ! ( vg = vg_read ( cmd , sll - > str , NULL , & consistent ) ) ) {
log_error ( " Volume group \" %s \" not found " , sll - > str ) ;
ret_max = ECMD_FAILED ;
continue ;
}
2004-03-08 20:19:15 +03:00
if ( ! consistent )
continue ;
2006-09-02 05:18:17 +04:00
if ( ( vg - > status & CLUSTERED ) & &
! locking_is_clustered ( ) & &
! lockingfailed ( ) ) {
log_error ( " Skipping clustered volume "
" group %s " , sll - > str ) ;
continue ;
}
2004-03-08 20:19:15 +03:00
ret = process_each_pv_in_vg ( cmd , vg , & tags ,
handle ,
process_single ) ;
if ( ret > ret_max )
ret_max = ret ;
}
}
2001-10-12 01:35:55 +04:00
} else {
2002-12-12 23:55:49 +03:00
if ( vg ) {
log_verbose ( " Using all physical volume(s) in "
" volume group " ) ;
2004-03-08 20:19:15 +03:00
ret = process_each_pv_in_vg ( cmd , vg , NULL , handle ,
process_single ) ;
2003-10-22 02:06:07 +04:00
if ( ret > ret_max )
ret_max = ret ;
2004-06-19 23:27:00 +04:00
} else if ( arg_count ( cmd , all_ARG ) ) {
ret = _process_all_devs ( cmd , handle , process_single ) ;
if ( ret > ret_max )
ret_max = ret ;
2002-12-12 23:55:49 +03:00
} else {
log_verbose ( " Scanning for physical volume names " ) ;
2002-12-20 02:25:55 +03:00
if ( ! ( pvslist = get_pvs ( cmd ) ) )
2002-12-12 23:55:49 +03:00
return ECMD_FAILED ;
2003-10-16 00:02:46 +04:00
list_iterate_items ( pvl , pvslist ) {
ret = process_single ( cmd , NULL , pvl - > pv ,
handle ) ;
2002-12-12 23:55:49 +03:00
if ( ret > ret_max )
ret_max = ret ;
}
}
2001-10-12 01:35:55 +04:00
}
return ret_max ;
}
2005-01-19 20:31:51 +03:00
/*
* Determine volume group name from a logical volume name
*/
2002-12-20 02:25:55 +03:00
const char * extract_vgname ( struct cmd_context * cmd , const char * lv_name )
2001-11-14 21:38:07 +03:00
{
2002-12-20 02:25:55 +03:00
const char * vg_name = lv_name ;
2001-11-06 22:02:26 +03:00
char * st ;
2002-04-24 22:20:51 +04:00
char * dev_dir = cmd - > dev_dir ;
2003-07-05 02:34:56 +04:00
int dev_dir_provided = 0 ;
2001-10-29 16:52:23 +03:00
/* Path supplied? */
2001-11-06 22:02:26 +03:00
if ( vg_name & & strchr ( vg_name , ' / ' ) ) {
2001-11-15 20:27:45 +03:00
/* Strip dev_dir (optional) */
2003-07-05 02:34:56 +04:00
if ( * vg_name = = ' / ' ) {
while ( * vg_name = = ' / ' )
vg_name + + ;
vg_name - - ;
}
if ( ! strncmp ( vg_name , dev_dir , strlen ( dev_dir ) ) ) {
2001-11-12 18:10:01 +03:00
vg_name + = strlen ( dev_dir ) ;
2003-07-05 02:34:56 +04:00
dev_dir_provided = 1 ;
while ( * vg_name = = ' / ' )
vg_name + + ;
}
if ( * vg_name = = ' / ' ) {
log_error ( " \" %s \" : Invalid path for Logical "
" Volume " , lv_name ) ;
return 0 ;
}
2004-03-08 20:19:15 +03:00
2003-07-05 02:34:56 +04:00
/* Require exactly one set of consecutive slashes */
if ( ( st = strchr ( vg_name , ' / ' ) ) )
while ( * st = = ' / ' )
st + + ;
2001-10-29 16:52:23 +03:00
2003-07-05 02:34:56 +04:00
if ( ! strchr ( vg_name , ' / ' ) | | strchr ( st , ' / ' ) ) {
2002-01-30 18:04:48 +03:00
log_error ( " \" %s \" : Invalid path for Logical Volume " ,
2001-11-14 21:38:07 +03:00
lv_name ) ;
2001-10-29 16:52:23 +03:00
return 0 ;
}
2005-10-17 03:03:59 +04:00
vg_name = dm_pool_strdup ( cmd - > mem , vg_name ) ;
2001-10-29 16:52:23 +03:00
if ( ! vg_name ) {
log_error ( " Allocation of vg_name failed " ) ;
return 0 ;
}
* strchr ( vg_name , ' / ' ) = ' \0 ' ;
return vg_name ;
}
2001-11-06 22:02:26 +03:00
2002-04-24 22:20:51 +04:00
if ( ! ( vg_name = default_vgname ( cmd ) ) ) {
2001-11-06 22:02:26 +03:00
if ( lv_name )
2002-01-30 18:04:48 +03:00
log_error ( " Path required for Logical Volume \" %s \" " ,
2001-11-14 21:38:07 +03:00
lv_name ) ;
2001-11-06 22:02:26 +03:00
return 0 ;
}
2001-11-14 21:38:07 +03:00
2001-11-06 22:02:26 +03:00
return vg_name ;
}
2005-01-19 20:31:51 +03:00
/*
* Extract default volume group name from environment
*/
2002-04-24 22:20:51 +04:00
char * default_vgname ( struct cmd_context * cmd )
2001-11-06 22:02:26 +03:00
{
char * vg_path ;
2001-10-29 16:52:23 +03:00
/* Take default VG from environment? */
2001-11-14 21:38:07 +03:00
vg_path = getenv ( " LVM_VG_NAME " ) ;
2001-11-06 22:02:26 +03:00
if ( ! vg_path )
2001-10-29 16:52:23 +03:00
return 0 ;
2007-03-09 23:47:41 +03:00
vg_path = skip_dev_dir ( cmd , vg_path , NULL ) ;
2001-10-29 16:52:23 +03:00
if ( strchr ( vg_path , ' / ' ) ) {
2002-01-30 18:04:48 +03:00
log_error ( " Environment Volume Group in LVM_VG_NAME invalid: "
" \" %s \" " , vg_path ) ;
2001-10-29 16:52:23 +03:00
return 0 ;
}
2005-10-17 03:03:59 +04:00
return dm_pool_strdup ( cmd - > mem , vg_path ) ;
2001-10-29 16:52:23 +03:00
}
2002-01-21 19:05:23 +03:00
2005-01-19 20:31:51 +03:00
/*
* Process physical extent range specifiers
*/
2006-10-22 03:18:43 +04:00
static int _add_pe_range ( struct dm_pool * mem , const char * pvname ,
struct list * pe_ranges , uint32_t start , uint32_t count )
2003-04-25 02:23:24 +04:00
{
2004-08-18 01:55:23 +04:00
struct pe_range * per ;
2003-04-25 02:23:24 +04:00
2006-10-22 03:18:43 +04:00
log_debug ( " Adding PE range: start PE % " PRIu32 " length % " PRIu32
" on %s " , start , count , pvname ) ;
2003-04-25 02:23:24 +04:00
/* Ensure no overlap with existing areas */
2004-08-18 01:55:23 +04:00
list_iterate_items ( per , pe_ranges ) {
if ( ( ( start < per - > start ) & & ( start + count - 1 > = per - > start ) )
| | ( ( start > = per - > start ) & &
( per - > start + per - > count - 1 ) > = start ) ) {
2006-10-22 03:18:43 +04:00
log_error ( " Overlapping PE ranges specified (% " PRIu32
" -% " PRIu32 " , % " PRIu32 " -% " PRIu32 " ) "
" on %s " ,
2004-08-18 01:55:23 +04:00
start , start + count - 1 , per - > start ,
2006-10-22 03:18:43 +04:00
per - > start + per - > count - 1 , pvname ) ;
2003-04-25 02:23:24 +04:00
return 0 ;
}
}
2005-10-17 03:03:59 +04:00
if ( ! ( per = dm_pool_alloc ( mem , sizeof ( * per ) ) ) ) {
2003-04-25 02:23:24 +04:00
log_error ( " Allocation of list failed " ) ;
return 0 ;
}
2004-08-18 01:55:23 +04:00
per - > start = start ;
per - > count = count ;
list_add ( pe_ranges , & per - > list ) ;
2003-04-25 02:23:24 +04:00
return 1 ;
}
2005-10-17 03:03:59 +04:00
static int _parse_pes ( struct dm_pool * mem , char * c , struct list * pe_ranges ,
2006-10-22 03:18:43 +04:00
const char * pvname , uint32_t size )
2003-04-25 02:23:24 +04:00
{
char * endptr ;
uint32_t start , end ;
/* Default to whole PV */
if ( ! c ) {
2006-10-22 03:18:43 +04:00
if ( ! _add_pe_range ( mem , pvname , pe_ranges , UINT32_C ( 0 ) , size ) ) {
2003-04-25 02:23:24 +04:00
stack ;
return 0 ;
}
return 1 ;
}
while ( * c ) {
if ( * c ! = ' : ' )
goto error ;
c + + ;
/* Disallow :: and :\0 */
if ( * c = = ' : ' | | ! * c )
goto error ;
/* Default to whole range */
start = UINT32_C ( 0 ) ;
end = size - 1 ;
/* Start extent given? */
if ( isdigit ( * c ) ) {
start = ( uint32_t ) strtoul ( c , & endptr , 10 ) ;
if ( endptr = = c )
goto error ;
c = endptr ;
/* Just one number given? */
if ( ! * c | | * c = = ' : ' )
end = start ;
}
/* Range? */
if ( * c = = ' - ' ) {
c + + ;
if ( isdigit ( * c ) ) {
end = ( uint32_t ) strtoul ( c , & endptr , 10 ) ;
if ( endptr = = c )
goto error ;
c = endptr ;
}
}
if ( * c & & * c ! = ' : ' )
goto error ;
if ( ( start > end ) | | ( end > size - 1 ) ) {
log_error ( " PE range error: start extent % " PRIu32 " to "
" end extent % " PRIu32 , start , end ) ;
return 0 ;
}
2006-10-22 03:18:43 +04:00
if ( ! _add_pe_range ( mem , pvname , pe_ranges , start , end - start + 1 ) ) {
2003-04-25 02:23:24 +04:00
stack ;
return 0 ;
}
}
return 1 ;
error :
log_error ( " Physical extent parsing error at %s " , c ) ;
return 0 ;
}
2006-10-22 03:18:43 +04:00
static int _create_pv_entry ( struct dm_pool * mem , struct pv_list * pvl ,
2004-08-18 01:55:23 +04:00
char * colon , int allocatable_only , struct list * r )
2004-03-08 20:19:15 +03:00
{
const char * pvname ;
2006-10-22 03:18:43 +04:00
struct pv_list * new_pvl = NULL , * pvl2 ;
2004-08-18 01:55:23 +04:00
struct list * pe_ranges ;
2004-03-08 20:19:15 +03:00
pvname = dev_name ( pvl - > pv - > dev ) ;
2004-08-18 01:55:23 +04:00
if ( allocatable_only & & ! ( pvl - > pv - > status & ALLOCATABLE_PV ) ) {
2004-03-08 20:19:15 +03:00
log_error ( " Physical volume %s not allocatable " , pvname ) ;
2006-10-22 03:18:43 +04:00
return 1 ;
2004-03-08 20:19:15 +03:00
}
2004-08-18 01:55:23 +04:00
if ( allocatable_only & &
( pvl - > pv - > pe_count = = pvl - > pv - > pe_alloc_count ) ) {
2004-05-11 22:45:11 +04:00
log_err ( " No free extents on physical volume \" %s \" " , pvname ) ;
2006-10-22 03:18:43 +04:00
return 1 ;
2004-03-08 20:19:15 +03:00
}
2006-10-22 03:18:43 +04:00
list_iterate_items ( pvl2 , r )
if ( pvl - > pv - > dev = = pvl2 - > pv - > dev ) {
new_pvl = pvl2 ;
break ;
}
if ( ! new_pvl ) {
if ( ! ( new_pvl = dm_pool_alloc ( mem , sizeof ( * new_pvl ) ) ) ) {
log_err ( " Unable to allocate physical volume list. " ) ;
return 0 ;
}
2004-03-08 20:19:15 +03:00
2006-10-22 03:18:43 +04:00
memcpy ( new_pvl , pvl , sizeof ( * new_pvl ) ) ;
2004-03-08 20:19:15 +03:00
2006-10-22 03:18:43 +04:00
if ( ! ( pe_ranges = dm_pool_alloc ( mem , sizeof ( * pe_ranges ) ) ) ) {
log_error ( " Allocation of pe_ranges list failed " ) ;
return 0 ;
}
list_init ( pe_ranges ) ;
new_pvl - > pe_ranges = pe_ranges ;
list_add ( r , & new_pvl - > list ) ;
2004-03-08 20:19:15 +03:00
}
2004-08-18 01:55:23 +04:00
/* Determine selected physical extents */
2007-01-16 00:55:11 +03:00
if ( ! _parse_pes ( mem , colon , new_pvl - > pe_ranges , dev_name ( pvl - > pv - > dev ) ,
2006-10-22 03:18:43 +04:00
pvl - > pv - > pe_count ) ) {
2004-03-08 20:19:15 +03:00
stack ;
2006-10-22 03:18:43 +04:00
return 0 ;
2004-03-08 20:19:15 +03:00
}
2006-10-22 03:18:43 +04:00
return 1 ;
2004-03-08 20:19:15 +03:00
}
2005-10-17 03:03:59 +04:00
struct list * create_pv_list ( struct dm_pool * mem , struct volume_group * vg , int argc ,
2004-08-18 01:55:23 +04:00
char * * argv , int allocatable_only )
2002-01-21 19:05:23 +03:00
{
struct list * r ;
2004-03-08 20:19:15 +03:00
struct pv_list * pvl ;
struct list tags , arg_pvnames ;
2004-05-11 22:45:11 +04:00
const char * pvname = NULL ;
2004-03-08 20:19:15 +03:00
char * colon , * tagname ;
2002-01-21 19:05:23 +03:00
int i ;
/* Build up list of PVs */
2005-10-17 03:03:59 +04:00
if ( ! ( r = dm_pool_alloc ( mem , sizeof ( * r ) ) ) ) {
2002-01-21 19:05:23 +03:00
log_error ( " Allocation of list failed " ) ;
return NULL ;
}
list_init ( r ) ;
2004-03-08 20:19:15 +03:00
list_init ( & tags ) ;
list_init ( & arg_pvnames ) ;
2002-01-21 19:05:23 +03:00
for ( i = 0 ; i < argc ; i + + ) {
2004-03-08 20:19:15 +03:00
if ( * argv [ i ] = = ' @ ' ) {
tagname = argv [ i ] + 1 ;
if ( ! validate_name ( tagname ) ) {
log_error ( " Skipping invalid tag %s " , tagname ) ;
continue ;
}
list_iterate_items ( pvl , & vg - > pvs ) {
if ( str_list_match_item ( & pvl - > pv - > tags ,
2004-05-19 01:55:55 +04:00
tagname ) ) {
2006-10-22 03:18:43 +04:00
if ( ! _create_pv_entry ( mem , pvl , NULL ,
allocatable_only ,
r ) ) {
stack ;
return NULL ;
}
2004-03-08 20:19:15 +03:00
}
2003-04-25 02:23:24 +04:00
}
2002-01-21 19:05:23 +03:00
continue ;
}
2004-03-08 20:19:15 +03:00
pvname = argv [ i ] ;
2003-04-25 02:23:24 +04:00
2004-03-08 20:19:15 +03:00
if ( ( colon = strchr ( pvname , ' : ' ) ) ) {
2005-10-17 03:03:59 +04:00
if ( ! ( pvname = dm_pool_strndup ( mem , pvname ,
2004-03-08 20:19:15 +03:00
( unsigned ) ( colon -
pvname ) ) ) ) {
log_error ( " Failed to clone PV name " ) ;
return NULL ;
}
2003-04-25 02:23:24 +04:00
}
2004-05-11 22:45:11 +04:00
if ( ! ( pvl = find_pv_in_vg ( vg , pvname ) ) ) {
log_err ( " Physical Volume \" %s \" not found in "
" Volume Group \" %s \" " , pvname , vg - > name ) ;
return NULL ;
}
2006-10-22 03:18:43 +04:00
if ( ! _create_pv_entry ( mem , pvl , colon , allocatable_only , r ) ) {
stack ;
return NULL ;
}
2002-01-21 19:05:23 +03:00
}
2004-03-08 20:19:15 +03:00
if ( list_empty ( r ) )
log_error ( " No specified PVs have space available " ) ;
2002-01-29 20:23:33 +03:00
return list_empty ( r ) ? NULL : r ;
2002-01-21 19:05:23 +03:00
}
2003-04-25 02:23:24 +04:00
2005-10-17 03:03:59 +04:00
struct list * clone_pv_list ( struct dm_pool * mem , struct list * pvsl )
2003-04-25 02:23:24 +04:00
{
2003-10-16 00:02:46 +04:00
struct list * r ;
2003-04-25 02:23:24 +04:00
struct pv_list * pvl , * new_pvl ;
/* Build up list of PVs */
2005-10-17 03:03:59 +04:00
if ( ! ( r = dm_pool_alloc ( mem , sizeof ( * r ) ) ) ) {
2003-04-25 02:23:24 +04:00
log_error ( " Allocation of list failed " ) ;
return NULL ;
}
list_init ( r ) ;
2003-10-16 00:02:46 +04:00
list_iterate_items ( pvl , pvsl ) {
2005-10-17 03:03:59 +04:00
if ( ! ( new_pvl = dm_pool_zalloc ( mem , sizeof ( * new_pvl ) ) ) ) {
2003-04-25 02:23:24 +04:00
log_error ( " Unable to allocate physical volume list. " ) ;
return NULL ;
}
memcpy ( new_pvl , pvl , sizeof ( * new_pvl ) ) ;
list_add ( r , & new_pvl - > list ) ;
}
return r ;
}
2004-06-15 21:23:49 +04:00
2005-01-19 20:31:51 +03:00
/*
* Attempt metadata recovery
*/
2005-01-19 20:30:50 +03:00
struct volume_group * recover_vg ( struct cmd_context * cmd , const char * vgname ,
int lock_type )
{
int consistent = 1 ;
2006-09-02 05:18:17 +04:00
/* Don't attempt automatic recovery without proper locking */
if ( lockingfailed ( ) )
return NULL ;
2005-01-19 20:30:50 +03:00
lock_type & = ~ LCK_TYPE_MASK ;
lock_type | = LCK_WRITE ;
if ( ! lock_vol ( cmd , vgname , lock_type ) ) {
log_error ( " Can't lock %s for metadata recovery: skipping " ,
vgname ) ;
return NULL ;
}
2006-04-13 01:23:04 +04:00
return vg_read ( cmd , vgname , NULL , & consistent ) ;
2005-01-19 20:30:50 +03:00
}
2005-06-03 18:49:51 +04:00
int apply_lvname_restrictions ( const char * name )
{
if ( ! strncmp ( name , " snapshot " , 8 ) ) {
log_error ( " Names starting \" snapshot \" are reserved. "
" Please choose a different LV name. " ) ;
return 0 ;
}
if ( ! strncmp ( name , " pvmove " , 6 ) ) {
log_error ( " Names starting \" pvmove \" are reserved. "
" Please choose a different LV name. " ) ;
return 0 ;
}
if ( strstr ( name , " _mlog " ) ) {
log_error ( " Names including \" _mlog \" are reserved. "
" Please choose a different LV name. " ) ;
return 0 ;
}
if ( strstr ( name , " _mimage " ) ) {
log_error ( " Names including \" _mimage \" are reserved. "
" Please choose a different LV name. " ) ;
return 0 ;
}
return 1 ;
}
2005-06-06 22:16:33 +04:00
int validate_vg_name ( struct cmd_context * cmd , const char * vg_name )
{
char vg_path [ PATH_MAX ] ;
if ( ! validate_name ( vg_name ) )
return 0 ;
snprintf ( vg_path , PATH_MAX , " %s%s " , cmd - > dev_dir , vg_name ) ;
if ( path_exists ( vg_path ) ) {
log_error ( " %s: already exists in filesystem " , vg_path ) ;
return 0 ;
2005-08-13 00:02:21 +04:00
}
return 1 ;
}
2006-05-10 01:23:51 +04:00
int generate_log_name_format ( struct volume_group * vg __attribute ( ( unused ) ) ,
const char * lv_name , char * buffer , size_t size )
2005-08-13 00:02:21 +04:00
{
2006-08-21 16:54:53 +04:00
if ( dm_snprintf ( buffer , size , " %s_mlog " , lv_name ) < 0 ) {
2005-08-13 00:02:21 +04:00
stack ;
return 0 ;
}
2006-04-28 21:01:07 +04:00
/* FIXME I think we can cope without this. Cf. _add_lv_to_dtree()
2005-08-13 00:02:21 +04:00
if ( find_lv_in_vg ( vg , buffer ) & &
2006-08-21 16:54:53 +04:00
dm_snprintf ( buffer , size , " %s_mlog_%%d " ,
2005-08-13 00:02:21 +04:00
lv_name ) < 0 ) {
stack ;
return 0 ;
2005-06-06 22:16:33 +04:00
}
2006-04-28 21:01:07 +04:00
* * * * * * */
2005-06-06 22:16:33 +04:00
return 1 ;
}
2005-08-04 05:14:36 +04:00
/*
2006-05-11 22:39:24 +04:00
* Initialize the LV with ' value ' .
2005-08-04 05:14:36 +04:00
*/
2006-11-04 00:07:15 +03:00
int set_lv ( struct cmd_context * cmd , struct logical_volume * lv ,
uint64_t sectors , int value )
2005-08-04 05:14:36 +04:00
{
struct device * dev ;
char * name ;
/*
* FIXME :
* < clausen > also , more than 4 k
* < clausen > say , reiserfs puts it ' s superblock 32 k in , IIRC
* < ejt_ > k , I ' ll drop a fixme to that effect
2006-04-13 01:23:04 +04:00
* ( I know the device is at least 4 k , but not 32 k )
2005-08-04 05:14:36 +04:00
*/
2005-10-17 03:03:59 +04:00
if ( ! ( name = dm_pool_alloc ( cmd - > mem , PATH_MAX ) ) ) {
2006-05-11 22:39:24 +04:00
log_error ( " Name allocation failed - device not cleared " ) ;
2005-08-04 05:14:36 +04:00
return 0 ;
}
2006-08-21 16:54:53 +04:00
if ( dm_snprintf ( name , PATH_MAX , " %s%s/%s " , cmd - > dev_dir ,
2005-08-04 05:14:36 +04:00
lv - > vg - > name , lv - > name ) < 0 ) {
2006-05-11 22:39:24 +04:00
log_error ( " Name too long - device not cleared (%s) " , lv - > name ) ;
2005-08-04 05:14:36 +04:00
return 0 ;
}
2006-05-11 22:39:24 +04:00
log_verbose ( " Clearing start of logical volume \" %s \" " , lv - > name ) ;
2005-08-04 05:14:36 +04:00
if ( ! ( dev = dev_cache_get ( name , NULL ) ) ) {
2006-05-11 22:39:24 +04:00
log_error ( " %s: not found: device not cleared " , name ) ;
2005-08-04 05:14:36 +04:00
return 0 ;
}
if ( ! dev_open_quiet ( dev ) )
return 0 ;
2006-11-04 00:07:15 +03:00
dev_set ( dev , UINT64_C ( 0 ) ,
2006-11-04 00:23:06 +03:00
sectors ? ( size_t ) sectors < < SECTOR_SHIFT : ( size_t ) 4096 ,
value ) ;
2006-10-24 22:25:30 +04:00
dev_flush ( dev ) ;
2006-05-11 22:39:24 +04:00
dev_close_immediate ( dev ) ;
return 1 ;
}
/*
* This function writes a new header to the mirror log header to the lv
*
* Returns : 1 on success , 0 on failure
*/
static int _write_log_header ( struct cmd_context * cmd , struct logical_volume * lv )
{
struct device * dev ;
char * name ;
struct { /* The mirror log header */
uint32_t magic ;
uint32_t version ;
uint64_t nr_regions ;
} log_header ;
log_header . magic = xlate32 ( MIRROR_MAGIC ) ;
log_header . version = xlate32 ( MIRROR_DISK_VERSION ) ;
log_header . nr_regions = xlate64 ( ( uint64_t ) - 1 ) ;
if ( ! ( name = dm_pool_alloc ( cmd - > mem , PATH_MAX ) ) ) {
log_error ( " Name allocation failed - log header not written (%s) " ,
lv - > name ) ;
return 0 ;
}
2006-08-21 16:54:53 +04:00
if ( dm_snprintf ( name , PATH_MAX , " %s%s/%s " , cmd - > dev_dir ,
2006-05-11 22:39:24 +04:00
lv - > vg - > name , lv - > name ) < 0 ) {
log_error ( " Name too long - log header not written (%s) " , lv - > name ) ;
return 0 ;
}
log_verbose ( " Writing log header to device, %s " , lv - > name ) ;
if ( ! ( dev = dev_cache_get ( name , NULL ) ) ) {
log_error ( " %s: not found: log header not written " , name ) ;
return 0 ;
}
if ( ! dev_open_quiet ( dev ) )
return 0 ;
if ( ! dev_write ( dev , UINT64_C ( 0 ) , sizeof ( log_header ) , & log_header ) ) {
log_error ( " Failed to write log header to %s " , name ) ;
dev_close_immediate ( dev ) ;
return 0 ;
}
2005-08-04 05:14:36 +04:00
dev_close_immediate ( dev ) ;
return 1 ;
}
2005-11-29 00:00:37 +03:00
struct logical_volume * create_mirror_log ( struct cmd_context * cmd ,
struct volume_group * vg ,
struct alloc_handle * ah ,
alloc_policy_t alloc ,
2006-05-11 22:39:24 +04:00
const char * lv_name ,
2007-03-26 20:10:10 +04:00
int in_sync ,
struct list * tags )
2005-11-29 00:00:37 +03:00
{
struct logical_volume * log_lv ;
char * log_name ;
size_t len ;
2007-03-26 20:10:10 +04:00
struct str_list * sl ;
2005-11-29 00:00:37 +03:00
len = strlen ( lv_name ) + 32 ;
if ( ! ( log_name = alloca ( len ) ) | |
! ( generate_log_name_format ( vg , lv_name , log_name , len ) ) ) {
log_error ( " log_name allocation failed. "
" Remove new LV and retry. " ) ;
return NULL ;
}
if ( ! ( log_lv = lv_create_empty ( vg - > fid , log_name , NULL ,
VISIBLE_LV | LVM_READ | LVM_WRITE ,
alloc , 0 , vg ) ) ) {
stack ;
return NULL ;
}
if ( ! lv_add_log_segment ( ah , log_lv ) ) {
stack ;
goto error ;
}
2007-03-26 20:10:10 +04:00
/* Temporary tag mirror log */
list_iterate_items ( sl , tags )
if ( ! str_list_add ( cmd - > mem , & log_lv - > tags , sl - > str ) ) {
log_error ( " Aborting. Unable to tag mirror log. " ) ;
goto error ;
}
2005-11-29 00:00:37 +03:00
/* store mirror log on disk(s) */
if ( ! vg_write ( vg ) ) {
stack ;
goto error ;
}
backup ( vg ) ;
if ( ! vg_commit ( vg ) ) {
stack ;
goto error ;
}
2006-09-11 18:24:58 +04:00
if ( ! activation ( ) & & in_sync ) {
log_error ( " Aborting. Unable to create in-sync mirror log "
" while activation is disabled. " ) ;
goto error ;
}
2005-11-29 00:00:37 +03:00
if ( ! activate_lv ( cmd , log_lv ) ) {
log_error ( " Aborting. Failed to activate mirror log. "
" Remove new LVs and retry. " ) ;
goto error ;
}
2007-03-26 20:10:10 +04:00
list_iterate_items ( sl , tags )
if ( ! str_list_del ( & log_lv - > tags , sl - > str ) )
log_error ( " Failed to remove tag %s from mirror log. " ,
sl - > str ) ;
2006-11-04 00:07:15 +03:00
if ( activation ( ) & & ! set_lv ( cmd , log_lv , log_lv - > size ,
2006-11-03 02:33:20 +03:00
in_sync ? - 1 : 0 ) ) {
2005-11-29 00:00:37 +03:00
log_error ( " Aborting. Failed to wipe mirror log. "
" Remove new LV and retry. " ) ;
goto error ;
}
2006-09-11 18:24:58 +04:00
if ( activation ( ) & & ! _write_log_header ( cmd , log_lv ) ) {
2006-05-11 22:39:24 +04:00
log_error ( " Aborting. Failed to write mirror log header. "
" Remove new LV and retry. " ) ;
goto error ;
}
2005-11-29 00:00:37 +03:00
if ( ! deactivate_lv ( cmd , log_lv ) ) {
log_error ( " Aborting. Failed to deactivate mirror log. "
" Remove new LV and retry. " ) ;
goto error ;
}
log_lv - > status & = ~ VISIBLE_LV ;
return log_lv ;
error :
/* FIXME Attempt to clean up. */
return NULL ;
}