2002-11-18 17:04:08 +03:00
/*
2008-01-30 17:00:02 +03:00
* Copyright ( C ) 2001 - 2004 Sistina Software , Inc . All rights reserved .
2011-04-29 23:06:17 +04:00
* Copyright ( C ) 2004 - 2011 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 .
*
* 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 .
2004-03-30 23:35:44 +04: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 "lib.h"
# include "metadata.h"
# include "import-export.h"
# include "display.h"
# include "toolcontext.h"
2003-07-05 02:34:56 +04:00
# include "lvmcache.h"
2012-02-23 17:11:07 +04:00
# include "lvmetad.h"
2015-03-05 23:00:44 +03:00
# include "lvmlockd.h"
2003-09-18 00:35:57 +04:00
# include "lv_alloc.h"
2005-04-20 00:58:25 +04:00
# include "pv_alloc.h"
2004-09-16 22:40:56 +04:00
# include "segtype.h"
2004-05-05 01:25:57 +04:00
# include "text_import.h"
2010-06-29 00:37:10 +04:00
# include "defaults.h"
2015-05-06 14:19:21 +03:00
# include "str_list.h"
2002-11-18 17:04:08 +03:00
2011-10-23 20:05:45 +04:00
typedef int ( * section_fn ) ( struct format_instance * fid ,
2011-08-30 18:55:15 +04:00
struct volume_group * vg , const struct dm_config_node * pvn ,
const struct dm_config_node * vgn ,
2010-03-16 20:30:00 +03:00
struct dm_hash_table * pv_hash ,
2010-03-31 21:20:02 +04:00
struct dm_hash_table * lv_hash ,
2010-03-17 05:11:18 +03:00
unsigned * scan_done_once ,
unsigned report_missing_devices ) ;
2002-11-18 17:04:08 +03:00
# define _read_int32(root, path, result) \
2011-08-30 18:55:15 +04:00
dm_config_get_uint32 ( root , path , ( uint32_t * ) result )
2002-11-18 17:04:08 +03:00
# define _read_uint32(root, path, result) \
2011-08-30 18:55:15 +04:00
dm_config_get_uint32 ( root , path , result )
2002-11-18 17:04:08 +03:00
2012-01-19 19:17:46 +04:00
# define _read_uint64(root, path, result) \
2011-08-30 18:55:15 +04:00
dm_config_get_uint64 ( root , path , result )
2002-11-18 17:04:08 +03:00
/*
* Logs an attempt to read an invalid format file .
*/
static void _invalid_format ( const char * str )
{
log_error ( " Can't process text format file - %s. " , str ) ;
}
/*
* Checks that the config file contains vg metadata , and that it
* we recognise the version number ,
*/
2011-08-30 18:55:15 +04:00
static int _vsn1_check_version ( const struct dm_config_tree * cft )
2002-11-18 17:04:08 +03:00
{
2011-08-30 18:55:15 +04:00
const struct dm_config_node * cn ;
const struct dm_config_value * cv ;
2002-11-18 17:04:08 +03:00
2012-03-02 22:09:46 +04:00
// TODO if this is pvscan --cache, we want this check back.
2012-02-23 17:11:07 +04:00
if ( lvmetad_active ( ) )
return 1 ;
2002-11-18 17:04:08 +03:00
/*
* Check the contents field .
*/
2011-08-30 18:55:15 +04:00
if ( ! ( cn = dm_config_find_node ( cft - > root , CONTENTS_FIELD ) ) ) {
2002-11-18 17:04:08 +03:00
_invalid_format ( " missing contents field " ) ;
return 0 ;
}
cv = cn - > v ;
2011-08-30 18:55:15 +04:00
if ( ! cv | | cv - > type ! = DM_CFG_STRING | | strcmp ( cv - > v . str , CONTENTS_VALUE ) ) {
2002-11-18 17:04:08 +03:00
_invalid_format ( " unrecognised contents field " ) ;
return 0 ;
}
/*
* Check the version number .
*/
2011-08-30 18:55:15 +04:00
if ( ! ( cn = dm_config_find_node ( cft - > root , FORMAT_VERSION_FIELD ) ) ) {
2002-11-18 17:04:08 +03:00
_invalid_format ( " missing version number " ) ;
return 0 ;
}
cv = cn - > v ;
2011-08-30 18:55:15 +04:00
if ( ! cv | | cv - > type ! = DM_CFG_INT | | cv - > v . i ! = FORMAT_VERSION_VALUE ) {
2002-11-18 17:04:08 +03:00
_invalid_format ( " unrecognised version number " ) ;
return 0 ;
}
return 1 ;
}
2008-01-10 21:35:51 +03:00
static int _is_converting ( struct logical_volume * lv )
{
struct lv_segment * seg ;
2014-09-16 00:33:53 +04:00
if ( lv_is_mirrored ( lv ) ) {
2008-01-10 21:35:51 +03:00
seg = first_seg ( lv ) ;
/* Can't use is_temporary_mirror() because the metadata for
* seg_lv may not be read in and flags may not be set yet . */
if ( seg_type ( seg , 0 ) = = AREA_LV & &
strstr ( seg_lv ( seg , 0 ) - > name , MIRROR_SYNC_LAYER ) )
return 1 ;
}
return 0 ;
}
2011-08-30 18:55:15 +04:00
static int _read_id ( struct id * id , const struct dm_config_node * cn , const char * path )
2002-11-18 17:04:08 +03:00
{
2011-08-31 19:19:19 +04:00
const char * uuid ;
2002-11-18 17:04:08 +03:00
2011-08-31 19:19:19 +04:00
if ( ! dm_config_get_str ( cn , path , & uuid ) ) {
2002-11-18 17:04:08 +03:00
log_error ( " Couldn't find uuid. " ) ;
return 0 ;
}
2011-08-31 19:19:19 +04:00
if ( ! id_read_format ( id , uuid ) ) {
2002-11-18 17:04:08 +03:00
log_error ( " Invalid uuid. " ) ;
return 0 ;
}
return 1 ;
}
2011-08-30 18:55:15 +04:00
static int _read_flag_config ( const struct dm_config_node * n , uint64_t * status , int type )
2008-07-10 15:30:57 +04:00
{
2011-08-31 19:19:19 +04:00
const struct dm_config_value * cv ;
2008-07-10 15:30:57 +04:00
* status = 0 ;
2011-08-31 19:19:19 +04:00
if ( ! dm_config_get_list ( n , " status " , & cv ) ) {
2008-07-10 15:30:57 +04:00
log_error ( " Could not find status flags. " ) ;
return 0 ;
}
2011-08-31 19:19:19 +04:00
if ( ! ( read_flags ( status , type | STATUS_FLAG , cv ) ) ) {
2008-07-10 15:30:57 +04:00
log_error ( " Could not read status flags. " ) ;
return 0 ;
}
2011-08-31 19:19:19 +04:00
if ( dm_config_get_list ( n , " flags " , & cv ) ) {
if ( ! ( read_flags ( status , type , cv ) ) ) {
2008-07-10 15:30:57 +04:00
log_error ( " Could not read flags. " ) ;
return 0 ;
}
}
return 1 ;
}
2015-05-06 14:19:21 +03:00
static int _read_str_list ( struct dm_pool * mem , struct dm_list * list , const struct dm_config_value * cv )
{
if ( cv - > type = = DM_CFG_EMPTY_ARRAY )
return 1 ;
while ( cv ) {
if ( cv - > type ! = DM_CFG_STRING ) {
log_error ( " Found an item that is not a string " ) ;
return 0 ;
}
if ( ! str_list_add ( mem , list , dm_pool_strdup ( mem , cv - > v . str ) ) )
return_0 ;
cv = cv - > next ;
}
return 1 ;
}
2011-10-23 20:05:45 +04:00
static int _read_pv ( struct format_instance * fid ,
2011-08-30 18:55:15 +04:00
struct volume_group * vg , const struct dm_config_node * pvn ,
const struct dm_config_node * vgn __attribute__ ( ( unused ) ) ,
2010-03-31 21:20:02 +04:00
struct dm_hash_table * pv_hash ,
2010-07-09 19:34:40 +04:00
struct dm_hash_table * lv_hash __attribute__ ( ( unused ) ) ,
2010-03-31 21:20:02 +04:00
unsigned * scan_done_once ,
2010-03-17 05:11:18 +03:00
unsigned report_missing_devices )
2002-11-18 17:04:08 +03:00
{
2011-10-23 20:05:45 +04:00
struct dm_pool * mem = vg - > vgmem ;
2002-11-18 17:04:08 +03:00
struct physical_volume * pv ;
struct pv_list * pvl ;
2011-08-31 19:19:19 +04:00
const struct dm_config_value * cv ;
2013-05-28 14:37:22 +04:00
uint64_t size , ba_start ;
2002-11-18 17:04:08 +03:00
2015-04-29 16:02:26 +03:00
int outdated = ! strcmp ( pvn - > parent - > key , " outdated_pvs " ) ;
2005-10-17 03:03:59 +04:00
if ( ! ( pvl = dm_pool_zalloc ( mem , sizeof ( * pvl ) ) ) | |
2008-01-30 16:19:47 +03:00
! ( pvl - > pv = dm_pool_zalloc ( mem , sizeof ( * pvl - > pv ) ) ) )
return_0 ;
2002-11-18 17:04:08 +03:00
pv = pvl - > pv ;
/*
* Add the pv to the pv hash for quick lookup when we read
* the lv segments .
*/
2008-01-30 16:19:47 +03:00
if ( ! dm_hash_insert ( pv_hash , pvn - > key , pv ) )
return_0 ;
2002-11-18 17:04:08 +03:00
if ( ! ( pvn = pvn - > child ) ) {
log_error ( " Empty pv section. " ) ;
return 0 ;
}
if ( ! _read_id ( & pv - > id , pvn , " id " ) ) {
2009-03-09 18:42:10 +03:00
log_error ( " Couldn't read uuid for physical volume. " ) ;
2002-11-18 17:04:08 +03:00
return 0 ;
}
2011-06-01 23:29:31 +04:00
pv - > is_labelled = 1 ; /* All format_text PVs are labelled. */
2002-11-18 17:04:08 +03:00
/*
* Convert the uuid into a device .
*/
2012-02-10 05:28:27 +04:00
if ( ! ( pv - > dev = lvmcache_device_from_pvid ( fid - > fmt - > cmd , & pv - > id , scan_done_once ,
2011-06-01 23:29:31 +04:00
& pv - > label_sector ) ) ) {
2010-07-09 19:34:40 +04:00
char buffer [ 64 ] __attribute__ ( ( aligned ( 8 ) ) ) ;
2002-11-18 17:04:08 +03:00
if ( ! id_write_format ( & pv - > id , buffer , sizeof ( buffer ) ) )
2010-03-17 05:11:18 +03:00
buffer [ 0 ] = ' \0 ' ;
if ( report_missing_devices )
2010-05-06 02:37:52 +04:00
log_error_once ( " Couldn't find device with uuid %s. " , buffer ) ;
2002-11-18 17:04:08 +03:00
else
2010-03-17 05:11:18 +03:00
log_very_verbose ( " Couldn't find device with uuid %s. " , buffer ) ;
2002-11-18 17:04:08 +03:00
}
2008-01-30 16:19:47 +03:00
if ( ! ( pv - > vg_name = dm_pool_strdup ( mem , vg - > name ) ) )
return_0 ;
2002-11-18 17:04:08 +03:00
2006-04-13 01:23:04 +04:00
memcpy ( & pv - > vgid , & vg - > id , sizeof ( vg - > id ) ) ;
2015-04-29 16:02:26 +03:00
if ( ! outdated & & ! _read_flag_config ( pvn , & pv - > status , PV_FLAGS ) ) {
2002-11-18 17:04:08 +03:00
log_error ( " Couldn't read status flags for physical volume. " ) ;
return 0 ;
}
2012-02-23 17:11:07 +04:00
/* TODO is the !lvmetad_active() too coarse here? */
if ( ! pv - > dev & & ! lvmetad_active ( ) )
2008-09-19 10:42:00 +04:00
pv - > status | = MISSING_PV ;
2012-11-25 23:41:56 +04:00
if ( ( pv - > status & MISSING_PV ) & & pv - > dev & & pv_mda_used_count ( pv ) = = 0 ) {
pv - > status & = ~ MISSING_PV ;
log_info ( " Recovering a previously MISSING PV %s with no MDAs. " ,
pv_dev_name ( pv ) ) ;
}
2006-10-08 03:17:17 +04:00
/* Late addition */
2012-01-26 01:43:51 +04:00
if ( dm_config_has_node ( pvn , " dev_size " ) & &
! _read_uint64 ( pvn , " dev_size " , & pv - > size ) ) {
log_error ( " Couldn't read dev size for physical volume. " ) ;
return 0 ;
}
2006-10-08 03:17:17 +04:00
2015-04-29 16:02:26 +03:00
if ( ! outdated & & ! _read_uint64 ( pvn , " pe_start " , & pv - > pe_start ) ) {
2013-02-21 16:33:27 +04:00
log_error ( " Couldn't read extent start value (pe_start) "
" for physical volume. " ) ;
2002-11-18 17:04:08 +03:00
return 0 ;
}
2015-04-29 16:02:26 +03:00
if ( ! outdated & & ! _read_int32 ( pvn , " pe_count " , & pv - > pe_count ) ) {
2002-11-18 17:04:08 +03:00
log_error ( " Couldn't find extent count (pe_count) for "
" physical volume. " ) ;
return 0 ;
}
2013-06-27 18:03:35 +04:00
/* Bootloader area is not compulsory - just log_debug for the record if found. */
2013-05-28 14:37:22 +04:00
ba_start = size = 0 ;
2013-06-27 18:03:35 +04:00
_read_uint64 ( pvn , " ba_start " , & ba_start ) ;
_read_uint64 ( pvn , " ba_size " , & size ) ;
if ( ba_start & & size ) {
2015-05-11 12:07:53 +03:00
log_debug_metadata ( " Found bootloader area specification for PV %s "
2013-06-27 18:03:35 +04:00
" in metadata: ba_start=% " PRIu64 " , ba_size=% " PRIu64 " . " ,
pv_dev_name ( pv ) , ba_start , size ) ;
2013-05-28 14:37:22 +04:00
pv - > ba_start = ba_start ;
pv - > ba_size = size ;
2013-06-27 18:03:35 +04:00
} else if ( ( ! ba_start & & size ) | | ( ba_start & & ! size ) ) {
log_error ( " Found incomplete bootloader area specification "
" for PV %s in metadata. " , pv_dev_name ( pv ) ) ;
return 0 ;
2013-02-14 19:04:35 +04:00
}
2008-11-04 01:14:30 +03:00
dm_list_init ( & pv - > tags ) ;
dm_list_init ( & pv - > segments ) ;
2004-03-08 20:19:15 +03:00
/* Optional tags */
2011-08-31 19:19:19 +04:00
if ( dm_config_get_list ( pvn , " tags " , & cv ) & &
2015-05-06 14:19:21 +03:00
! ( _read_str_list ( mem , & pv - > tags , cv ) ) ) {
2004-03-08 20:19:15 +03:00
log_error ( " Couldn't read tags for physical volume %s in %s. " ,
2007-10-12 18:29:32 +04:00
pv_dev_name ( pv ) , vg - > name ) ;
2004-03-08 20:19:15 +03:00
return 0 ;
}
2002-11-18 17:04:08 +03:00
pv - > pe_size = vg - > extent_size ;
2006-10-08 03:17:17 +04:00
2002-11-18 17:04:08 +03:00
pv - > pe_alloc_count = 0 ;
2008-09-19 08:28:58 +04:00
pv - > pe_align = 0 ;
2002-11-18 17:04:08 +03:00
pv - > fmt = fid - > fmt ;
2008-01-30 17:00:02 +03:00
/* Fix up pv size if missing or impossibly large */
if ( ( ! pv - > size | | pv - > size > ( 1ULL < < 62 ) ) & & pv - > dev ) {
if ( ! dev_get_size ( pv - > dev , & pv - > size ) ) {
log_error ( " %s: Couldn't get size. " , pv_dev_name ( pv ) ) ;
return 0 ;
}
log_verbose ( " Fixing up missing size (%s) "
" for PV %s " , display_size ( fid - > fmt - > cmd , pv - > size ) ,
pv_dev_name ( pv ) ) ;
2010-12-22 18:44:09 +03:00
size = pv - > pe_count * ( uint64_t ) vg - > extent_size + pv - > pe_start ;
if ( size > pv - > size )
log_warn ( " WARNING: Physical Volume %s is too large "
" for underlying device " , pv_dev_name ( pv ) ) ;
2008-01-30 17:00:02 +03:00
}
2006-10-19 16:53:47 +04:00
2008-01-30 16:19:47 +03:00
if ( ! alloc_pv_segment_whole_pv ( mem , pv ) )
return_0 ;
2005-04-20 00:58:25 +04:00
2010-04-06 18:04:03 +04:00
vg - > extent_count + = pv - > pe_count ;
vg - > free_count + = pv - > pe_count ;
2015-04-29 16:02:26 +03:00
if ( outdated )
dm_list_add ( & vg - > pvs_outdated , & pvl - > list ) ;
else
add_pvl_to_vgs ( vg , pvl ) ;
2002-11-18 17:04:08 +03:00
return 1 ;
}
static void _insert_segment ( struct logical_volume * lv , struct lv_segment * seg )
{
struct lv_segment * comp ;
2008-11-04 01:14:30 +03:00
dm_list_iterate_items ( comp , & lv - > segments ) {
2002-11-18 17:04:08 +03:00
if ( comp - > le > seg - > le ) {
2008-11-04 01:14:30 +03:00
dm_list_add ( & comp - > list , & seg - > list ) ;
2002-11-18 17:04:08 +03:00
return ;
}
}
lv - > le_count + = seg - > len ;
2008-11-04 01:14:30 +03:00
dm_list_add ( & lv - > segments , & seg - > list ) ;
2002-11-18 17:04:08 +03:00
}
2011-10-23 20:05:45 +04:00
static int _read_segment ( struct logical_volume * lv , const struct dm_config_node * sn ,
2005-10-17 03:03:59 +04:00
struct dm_hash_table * pv_hash )
2002-11-18 17:04:08 +03:00
{
2011-10-23 20:05:45 +04:00
struct dm_pool * mem = lv - > vg - > vgmem ;
2004-05-05 01:25:57 +04:00
uint32_t area_count = 0u ;
2002-11-18 17:04:08 +03:00
struct lv_segment * seg ;
2011-08-31 19:19:19 +04:00
const struct dm_config_node * sn_child = sn - > child ;
2011-08-30 18:55:15 +04:00
const struct dm_config_value * cv ;
2002-11-18 17:04:08 +03:00
uint32_t start_extent , extent_count ;
2004-05-05 01:25:57 +04:00
struct segment_type * segtype ;
const char * segtype_str ;
2002-11-18 17:04:08 +03:00
2009-07-09 15:28:09 +04:00
if ( ! sn_child ) {
2002-11-18 17:04:08 +03:00
log_error ( " Empty segment section. " ) ;
return 0 ;
}
2009-07-09 15:28:09 +04:00
if ( ! _read_int32 ( sn_child , " start_extent " , & start_extent ) ) {
log_error ( " Couldn't read 'start_extent' for segment '%s' "
" of logical volume %s. " , sn - > key , lv - > name ) ;
2002-11-18 17:04:08 +03:00
return 0 ;
}
2009-07-09 15:28:09 +04:00
if ( ! _read_int32 ( sn_child , " extent_count " , & extent_count ) ) {
log_error ( " Couldn't read 'extent_count' for segment '%s' "
" of logical volume %s. " , sn - > key , lv - > name ) ;
2002-11-18 17:04:08 +03:00
return 0 ;
}
2015-09-22 21:04:12 +03:00
segtype_str = SEG_TYPE_NAME_STRIPED ;
2004-05-05 01:25:57 +04:00
2011-08-31 19:19:19 +04:00
if ( ! dm_config_get_str ( sn_child , " type " , & segtype_str ) ) {
log_error ( " Segment type must be a string. " ) ;
return 0 ;
2002-11-18 17:04:08 +03:00
}
2011-10-23 20:05:45 +04:00
if ( ! ( segtype = get_segtype_from_string ( lv - > vg - > cmd , segtype_str ) ) )
2008-01-30 16:19:47 +03:00
return_0 ;
2002-11-18 17:04:08 +03:00
2004-05-05 01:25:57 +04:00
if ( segtype - > ops - > text_import_area_count & &
2009-07-09 15:28:09 +04:00
! segtype - > ops - > text_import_area_count ( sn_child , & area_count ) )
2008-01-30 16:19:47 +03:00
return_0 ;
2003-04-30 19:22:36 +04:00
2011-10-23 20:02:01 +04:00
if ( ! ( seg = alloc_lv_segment ( segtype , lv , start_extent ,
2014-10-26 10:13:59 +03:00
extent_count , 0 , 0 , NULL , area_count ,
2010-04-08 04:28:57 +04:00
extent_count , 0 , 0 , 0 , NULL ) ) ) {
2003-09-18 00:35:57 +04:00
log_error ( " Segment allocation failed " ) ;
2002-11-18 17:04:08 +03:00
return 0 ;
}
2004-05-05 01:25:57 +04:00
if ( seg - > segtype - > ops - > text_import & &
2009-07-09 15:28:09 +04:00
! seg - > segtype - > ops - > text_import ( seg , sn_child , pv_hash ) )
2008-01-30 16:19:47 +03:00
return_0 ;
2002-11-18 17:04:08 +03:00
2004-03-08 20:19:15 +03:00
/* Optional tags */
2011-08-31 19:19:19 +04:00
if ( dm_config_get_list ( sn_child , " tags " , & cv ) & &
2015-05-06 14:19:21 +03:00
! ( _read_str_list ( mem , & seg - > tags , cv ) ) ) {
2004-03-08 20:19:15 +03:00
log_error ( " Couldn't read tags for a segment of %s/%s. " ,
2011-10-23 20:05:45 +04:00
lv - > vg - > name , lv - > name ) ;
2004-03-08 20:19:15 +03:00
return 0 ;
}
2004-05-05 01:25:57 +04:00
/*
* Insert into correct part of segment list .
*/
_insert_segment ( lv , seg ) ;
2002-11-18 17:04:08 +03:00
2014-09-16 03:13:46 +04:00
if ( seg_is_mirror ( seg ) )
lv - > status | = MIRROR ;
2005-05-09 20:59:01 +04:00
if ( seg_is_mirrored ( seg ) )
2004-05-05 01:25:57 +04:00
lv - > status | = MIRRORED ;
2002-11-18 17:04:08 +03:00
2011-08-03 02:07:20 +04:00
if ( seg_is_raid ( seg ) )
lv - > status | = RAID ;
2005-05-09 20:59:01 +04:00
if ( seg_is_virtual ( seg ) )
2004-05-11 20:01:58 +04:00
lv - > status | = VIRTUAL ;
2011-08-03 02:07:20 +04:00
if ( ! seg_is_raid ( seg ) & & _is_converting ( lv ) )
2008-01-10 21:35:51 +03:00
lv - > status | = CONVERTING ;
2004-05-05 01:25:57 +04:00
return 1 ;
}
2002-11-18 17:04:08 +03:00
2011-08-30 18:55:15 +04:00
int text_import_areas ( struct lv_segment * seg , const struct dm_config_node * sn ,
2011-08-31 19:19:19 +04:00
const struct dm_config_value * cv , struct dm_hash_table * pv_hash ,
2009-12-04 20:48:32 +03:00
uint64_t status )
2004-05-05 01:25:57 +04:00
{
unsigned int s ;
struct logical_volume * lv1 ;
2009-07-09 15:29:41 +04:00
struct physical_volume * pv ;
2011-08-30 18:55:15 +04:00
const char * seg_name = dm_config_parent_name ( sn ) ;
2002-11-18 17:04:08 +03:00
2004-05-05 01:25:57 +04:00
if ( ! seg - > area_count ) {
2009-07-09 15:29:41 +04:00
log_error ( " Zero areas not allowed for segment %s " , seg_name ) ;
2004-05-05 01:25:57 +04:00
return 0 ;
}
2002-11-18 17:04:08 +03:00
2011-08-31 19:19:19 +04:00
for ( s = 0 ; cv & & s < seg - > area_count ; s + + , cv = cv - > next ) {
2002-11-18 17:04:08 +03:00
2004-05-05 01:25:57 +04:00
/* first we read the pv */
2011-08-30 18:55:15 +04:00
if ( cv - > type ! = DM_CFG_STRING ) {
2009-07-09 15:29:41 +04:00
log_error ( " Bad volume name in areas array for segment %s. " , seg_name ) ;
2002-11-18 17:04:08 +03:00
return 0 ;
}
2004-05-05 01:25:57 +04:00
if ( ! cv - > next ) {
2009-07-09 15:29:41 +04:00
log_error ( " Missing offset in areas array for segment %s. " , seg_name ) ;
2003-04-25 02:23:24 +04:00
return 0 ;
}
2011-08-30 18:55:15 +04:00
if ( cv - > next - > type ! = DM_CFG_INT ) {
2009-07-09 15:29:41 +04:00
log_error ( " Bad offset in areas array for segment %s. " , seg_name ) ;
2003-04-30 19:22:36 +04:00
return 0 ;
}
2004-05-05 01:25:57 +04:00
/* FIXME Cope if LV not yet read in */
2005-10-17 03:03:59 +04:00
if ( ( pv = dm_hash_lookup ( pv_hash , cv - > v . str ) ) ) {
2008-01-30 16:19:47 +03:00
if ( ! set_lv_segment_area_pv ( seg , s , pv , ( uint32_t ) cv - > next - > v . i ) )
return_0 ;
2004-05-05 01:25:57 +04:00
} else if ( ( lv1 = find_lv ( seg - > lv - > vg , cv - > v . str ) ) ) {
2008-01-16 22:00:59 +03:00
if ( ! set_lv_segment_area_lv ( seg , s , lv1 ,
( uint32_t ) cv - > next - > v . i ,
2009-12-04 20:48:32 +03:00
status ) )
2008-01-16 22:00:59 +03:00
return_0 ;
2004-05-05 01:25:57 +04:00
} else {
log_error ( " Couldn't find volume '%s' "
" for segment '%s'. " ,
2006-05-10 01:23:51 +04:00
cv - > v . str ? : " NULL " , seg_name ) ;
2002-11-18 17:04:08 +03:00
return 0 ;
}
2004-05-05 01:25:57 +04:00
cv = cv - > next ;
2002-11-18 17:04:08 +03:00
}
/*
2004-05-05 01:25:57 +04:00
* Check we read the correct number of stripes .
2002-11-18 17:04:08 +03:00
*/
2004-05-05 01:25:57 +04:00
if ( cv | | ( s < seg - > area_count ) ) {
log_error ( " Incorrect number of areas in area array "
" for segment '%s'. " , seg_name ) ;
return 0 ;
}
2002-11-18 17:04:08 +03:00
return 1 ;
}
2011-10-23 20:05:45 +04:00
static int _read_segments ( struct logical_volume * lv , const struct dm_config_node * lvn ,
2005-10-17 03:03:59 +04:00
struct dm_hash_table * pv_hash )
2002-11-18 17:04:08 +03:00
{
2011-08-30 18:55:15 +04:00
const struct dm_config_node * sn ;
2002-11-18 17:04:08 +03:00
int count = 0 , seg_count ;
for ( sn = lvn ; sn ; sn = sn - > sib ) {
/*
* All sub - sections are assumed to be segments .
*/
if ( ! sn - > v ) {
2011-10-23 20:05:45 +04:00
if ( ! _read_segment ( lv , sn , pv_hash ) )
2008-01-30 16:19:47 +03:00
return_0 ;
2002-11-18 17:04:08 +03:00
count + + ;
}
/* FIXME Remove this restriction */
if ( ( lv - > status & SNAPSHOT ) & & count > 1 ) {
log_error ( " Only one segment permitted for snapshot " ) ;
return 0 ;
}
}
if ( ! _read_int32 ( lvn , " segment_count " , & seg_count ) ) {
2009-07-09 15:28:09 +04:00
log_error ( " Couldn't read segment count for logical volume %s. " ,
lv - > name ) ;
2002-11-18 17:04:08 +03:00
return 0 ;
}
if ( seg_count ! = count ) {
log_error ( " segment_count and actual number of segments "
2009-07-09 15:28:09 +04:00
" disagree for logical volume %s. " , lv - > name ) ;
2002-11-18 17:04:08 +03:00
return 0 ;
}
/*
* Check there are no gaps or overlaps in the lv .
*/
2008-01-30 16:19:47 +03:00
if ( ! check_lv_segments ( lv , 0 ) )
return_0 ;
2002-11-18 17:04:08 +03:00
/*
* Merge segments in case someones been editing things by hand .
*/
2008-01-30 16:19:47 +03:00
if ( ! lv_merge_segments ( lv ) )
return_0 ;
2002-11-18 17:04:08 +03:00
return 1 ;
}
2010-07-09 19:34:40 +04:00
static int _read_lvnames ( struct format_instance * fid __attribute__ ( ( unused ) ) ,
2011-08-30 18:55:15 +04:00
struct volume_group * vg , const struct dm_config_node * lvn ,
const struct dm_config_node * vgn __attribute__ ( ( unused ) ) ,
2010-07-09 19:34:40 +04:00
struct dm_hash_table * pv_hash __attribute__ ( ( unused ) ) ,
2010-03-31 21:20:02 +04:00
struct dm_hash_table * lv_hash ,
2010-07-09 19:34:40 +04:00
unsigned * scan_done_once __attribute__ ( ( unused ) ) ,
unsigned report_missing_devices __attribute__ ( ( unused ) ) )
2002-11-18 17:04:08 +03:00
{
2011-10-23 20:05:45 +04:00
struct dm_pool * mem = vg - > vgmem ;
2002-11-18 17:04:08 +03:00
struct logical_volume * lv ;
2013-06-25 14:28:36 +04:00
const char * str ;
2011-08-31 19:19:19 +04:00
const struct dm_config_value * cv ;
2012-01-19 19:31:45 +04:00
const char * hostname ;
2015-03-09 22:18:14 +03:00
uint64_t timestamp = 0 , lvstatus ;
2002-11-18 17:04:08 +03:00
2009-09-28 21:46:15 +04:00
if ( ! ( lv = alloc_lv ( mem ) ) )
2008-01-30 16:19:47 +03:00
return_0 ;
2002-11-18 17:04:08 +03:00
2015-11-23 01:03:01 +03:00
if ( ! link_lv_to_vg ( vg , lv ) )
return_0 ;
2008-01-30 16:19:47 +03:00
if ( ! ( lv - > name = dm_pool_strdup ( mem , lvn - > key ) ) )
return_0 ;
2002-11-18 17:04:08 +03:00
if ( ! ( lvn = lvn - > child ) ) {
log_error ( " Empty logical volume section. " ) ;
return 0 ;
}
2015-03-09 22:18:14 +03:00
if ( ! _read_flag_config ( lvn , & lvstatus , LV_FLAGS ) ) {
2008-07-10 15:30:57 +04:00
log_error ( " Couldn't read status flags for logical volume %s. " ,
2015-11-23 01:03:01 +03:00
display_lvname ( lv ) ) ;
2002-11-18 17:04:08 +03:00
return 0 ;
}
2015-03-09 22:18:14 +03:00
if ( lvstatus & LVM_WRITE_LOCKED ) {
lvstatus | = LVM_WRITE ;
lvstatus & = ~ LVM_WRITE_LOCKED ;
system_id: make new VGs read-only for old lvm versions
Previous versions of lvm will not obey the restrictions
imposed by the new system_id, and would allow such a VG
to be written. So, a VG with a new system_id is further
changed to force previous lvm versions to treat it as
read-only. This is done by removing the WRITE flag from
the metadata status line of these VGs, and putting a new
WRITE_LOCKED flag in the flags line of the metadata.
Versions of lvm that recognize WRITE_LOCKED, also obey the
new system_id. For these lvm versions, WRITE_LOCKED is
identical to WRITE, and the rules associated with matching
system_id's are imposed.
A new VG lock_type field is also added that causes the same
WRITE/WRITE_LOCKED transformation when set. A previous
version of lvm will also see a VG with lock_type as read-only.
Versions of lvm that recognize WRITE_LOCKED, must also obey
the lock_type setting. Until the lock_type feature is added,
lvm will fail to read any VG with lock_type set and report an
error about an unsupported lock_type. Once the lock_type
feature is added, lvm will allow VGs with lock_type to be
used according to the rules imposed by the lock_type.
When both system_id and lock_type settings are removed, a VG
is written with the old WRITE status flag, and without the
new WRITE_LOCKED flag. This allows old versions of lvm to
use the VG as before.
2015-03-04 20:30:53 +03:00
}
2015-03-09 22:18:14 +03:00
lv - > status = lvstatus ;
system_id: make new VGs read-only for old lvm versions
Previous versions of lvm will not obey the restrictions
imposed by the new system_id, and would allow such a VG
to be written. So, a VG with a new system_id is further
changed to force previous lvm versions to treat it as
read-only. This is done by removing the WRITE flag from
the metadata status line of these VGs, and putting a new
WRITE_LOCKED flag in the flags line of the metadata.
Versions of lvm that recognize WRITE_LOCKED, also obey the
new system_id. For these lvm versions, WRITE_LOCKED is
identical to WRITE, and the rules associated with matching
system_id's are imposed.
A new VG lock_type field is also added that causes the same
WRITE/WRITE_LOCKED transformation when set. A previous
version of lvm will also see a VG with lock_type as read-only.
Versions of lvm that recognize WRITE_LOCKED, must also obey
the lock_type setting. Until the lock_type feature is added,
lvm will fail to read any VG with lock_type set and report an
error about an unsupported lock_type. Once the lock_type
feature is added, lvm will allow VGs with lock_type to be
used according to the rules imposed by the lock_type.
When both system_id and lock_type settings are removed, a VG
is written with the old WRITE status flag, and without the
new WRITE_LOCKED flag. This allows old versions of lvm to
use the VG as before.
2015-03-04 20:30:53 +03:00
2012-01-19 19:31:45 +04:00
if ( dm_config_has_node ( lvn , " creation_time " ) ) {
if ( ! _read_uint64 ( lvn , " creation_time " , & timestamp ) ) {
log_error ( " Invalid creation_time for logical volume %s. " ,
2015-11-23 01:03:01 +03:00
display_lvname ( lv ) ) ;
2012-01-19 19:31:45 +04:00
return 0 ;
}
if ( ! dm_config_get_str ( lvn , " creation_host " , & hostname ) ) {
log_error ( " Couldn't read creation_host for logical volume %s. " ,
2015-11-23 01:03:01 +03:00
display_lvname ( lv ) ) ;
2012-01-19 19:31:45 +04:00
return 0 ;
}
} else if ( dm_config_has_node ( lvn , " creation_host " ) ) {
log_error ( " Missing creation_time for logical volume %s. " ,
2015-11-23 01:03:01 +03:00
display_lvname ( lv ) ) ;
2012-01-19 19:31:45 +04:00
return 0 ;
}
2015-07-09 23:14:19 +03:00
/*
* The LV lock_args string is generated in lvmlockd , and the content
* depends on the lock_type .
*
* lock_type dlm does not use LV lock_args , so the LV lock_args field
* is just set to " dlm " .
*
* lock_type sanlock uses the LV lock_args field to save the
* location on disk of that LV ' s sanlock lock . The disk name is
* specified in the VG lock_args . The lock_args string begins
* with a version number , e . g . 1.0 .0 , followed by a colon , followed
* by a number . The number is the offset on disk where sanlock is
* told to find the LV ' s lock .
* e . g . lock_args = 1.0 .0 : 70254592
* means that the lock is located at offset 70254592.
*
* The lvmlockd code for each specific lock manager also validates
* the lock_args before using it to access the lock manager .
*/
2015-03-05 23:00:44 +03:00
if ( dm_config_get_str ( lvn , " lock_args " , & str ) ) {
if ( ! ( lv - > lock_args = dm_pool_strdup ( mem , str ) ) )
return_0 ;
}
2013-06-25 14:28:36 +04:00
if ( dm_config_get_str ( lvn , " allocation_policy " , & str ) ) {
lv - > alloc = get_alloc_from_string ( str ) ;
2010-11-29 21:35:37 +03:00
if ( lv - > alloc = = ALLOC_INVALID ) {
2015-11-23 01:03:01 +03:00
log_warn ( " WARNING: Ignoring unrecognised allocation policy %s for LV %s. " ,
str , display_lvname ( lv ) ) ;
2010-11-29 21:35:37 +03:00
lv - > alloc = ALLOC_INHERIT ;
}
2015-11-23 01:03:01 +03:00
} else
lv - > alloc = ALLOC_INHERIT ;
2002-11-18 17:04:08 +03:00
2013-06-25 14:28:36 +04:00
if ( dm_config_get_str ( lvn , " profile " , & str ) ) {
2015-11-23 01:03:01 +03:00
log_debug_metadata ( " Adding profile configuration %s for LV %s. " ,
str , display_lvname ( lv ) ) ;
if ( ! ( lv - > profile = add_profile ( vg - > cmd , str , CONFIG_PROFILE_METADATA ) ) ) {
log_error ( " Failed to add configuration profile %s for LV %s. " ,
str , display_lvname ( lv ) ) ;
2013-06-25 14:28:36 +04:00
return 0 ;
}
}
2002-11-18 17:04:08 +03:00
if ( ! _read_int32 ( lvn , " read_ahead " , & lv - > read_ahead ) )
2007-11-09 19:51:54 +03:00
/* If not present, choice of auto or none is configurable */
lv - > read_ahead = vg - > cmd - > default_settings . read_ahead ;
else {
switch ( lv - > read_ahead ) {
case 0 :
lv - > read_ahead = DM_READ_AHEAD_AUTO ;
break ;
2015-11-23 01:03:01 +03:00
case UINT32_C ( - 1 ) :
2007-11-09 19:51:54 +03:00
lv - > read_ahead = DM_READ_AHEAD_NONE ;
break ;
default :
;
}
}
2002-11-18 17:04:08 +03:00
2004-03-08 20:19:15 +03:00
/* Optional tags */
2011-08-31 19:19:19 +04:00
if ( dm_config_get_list ( lvn , " tags " , & cv ) & &
2015-05-06 14:19:21 +03:00
! ( _read_str_list ( mem , & lv - > tags , cv ) ) ) {
2015-11-23 01:03:01 +03:00
log_error ( " Couldn't read tags for logical volume %s. " ,
display_lvname ( lv ) ) ;
2004-03-08 20:19:15 +03:00
return 0 ;
}
2003-04-25 02:23:24 +04:00
2010-03-31 21:20:02 +04:00
if ( ! dm_hash_insert ( lv_hash , lv - > name , lv ) )
return_0 ;
2012-01-19 19:31:45 +04:00
if ( timestamp & & ! lv_set_creation ( lv , hostname , timestamp ) )
return_0 ;
2013-07-05 19:10:47 +04:00
if ( ! lv_is_visible ( lv ) & & strstr ( lv - > name , " _pmspare " ) ) {
if ( vg - > pool_metadata_spare_lv ) {
log_error ( " Couldn't use another pool metadata spare "
2015-11-23 01:03:01 +03:00
" logical volume %s. " , display_lvname ( lv ) ) ;
2013-07-05 19:10:47 +04:00
return 0 ;
}
log_debug_metadata ( " Logical volume %s is pool metadata spare. " ,
2015-11-23 01:03:01 +03:00
display_lvname ( lv ) ) ;
2013-07-05 19:10:47 +04:00
lv - > status | = POOL_METADATA_SPARE ;
vg - > pool_metadata_spare_lv = lv ;
}
2015-03-05 23:00:44 +03:00
if ( ! lv_is_visible ( lv ) & & ! strcmp ( lv - > name , LOCKD_SANLOCK_LV_NAME ) ) {
2015-11-23 01:03:01 +03:00
log_debug_metadata ( " Logical volume %s is sanlock lv. " ,
display_lvname ( lv ) ) ;
2015-03-05 23:00:44 +03:00
lv - > status | = LOCKD_SANLOCK_LV ;
vg - > sanlock_lv = lv ;
}
2012-01-19 19:31:45 +04:00
return 1 ;
2003-04-25 02:23:24 +04:00
}
2014-09-19 16:51:41 +04:00
static int _read_lvsegs ( struct format_instance * fid ,
2011-08-30 18:55:15 +04:00
struct volume_group * vg , const struct dm_config_node * lvn ,
const struct dm_config_node * vgn __attribute__ ( ( unused ) ) ,
2010-03-16 20:30:00 +03:00
struct dm_hash_table * pv_hash ,
2010-03-31 21:20:02 +04:00
struct dm_hash_table * lv_hash ,
2010-07-09 19:34:40 +04:00
unsigned * scan_done_once __attribute__ ( ( unused ) ) ,
unsigned report_missing_devices __attribute__ ( ( unused ) ) )
2003-04-25 02:23:24 +04:00
{
struct logical_volume * lv ;
2010-03-31 21:20:02 +04:00
if ( ! ( lv = dm_hash_lookup ( lv_hash , lvn - > key ) ) ) {
2003-04-25 02:23:24 +04:00
log_error ( " Lost logical volume reference %s " , lvn - > key ) ;
return 0 ;
}
if ( ! ( lvn = lvn - > child ) ) {
log_error ( " Empty logical volume section. " ) ;
return 0 ;
}
/* FIXME: read full lvid */
if ( ! _read_id ( & lv - > lvid . id [ 1 ] , lvn , " id " ) ) {
log_error ( " Couldn't read uuid for logical volume %s. " ,
2015-11-23 01:03:01 +03:00
display_lvname ( lv ) ) ;
2003-04-25 02:23:24 +04:00
return 0 ;
}
memcpy ( & lv - > lvid . id [ 0 ] , & lv - > vg - > id , sizeof ( lv - > lvid . id [ 0 ] ) ) ;
2011-10-23 20:05:45 +04:00
if ( ! _read_segments ( lv , lvn , pv_hash ) )
2008-01-30 16:19:47 +03:00
return_0 ;
2003-04-25 02:23:24 +04:00
2002-11-18 17:04:08 +03:00
lv - > size = ( uint64_t ) lv - > le_count * ( uint64_t ) vg - > extent_size ;
2005-04-07 16:39:44 +04:00
lv - > minor = - 1 ;
lv - > major = - 1 ;
2014-09-19 16:51:41 +04:00
if ( lv - > status & FIXED_MINOR ) {
if ( ! _read_int32 ( lvn , " minor " , & lv - > minor ) ) {
2015-11-23 01:03:01 +03:00
log_error ( " Couldn't read minor number for logical volume %s. " ,
display_lvname ( lv ) ) ;
2014-09-19 16:51:41 +04:00
return 0 ;
}
2014-09-19 19:05:35 +04:00
if ( ! dm_config_has_node ( lvn , " major " ) )
/* If major is missing, pick default */
lv - > major = vg - > cmd - > dev_types - > device_mapper_major ;
else if ( ! _read_int32 ( lvn , " major " , & lv - > major ) ) {
log_warn ( " WARNING: Couldn't read major number for logical "
2015-11-23 01:03:01 +03:00
" volume %s. " , display_lvname ( lv ) ) ;
2014-09-19 19:05:35 +04:00
lv - > major = vg - > cmd - > dev_types - > device_mapper_major ;
2014-09-19 16:51:41 +04:00
}
if ( ! validate_major_minor ( vg - > cmd , fid - > fmt , lv - > major , lv - > minor ) ) {
2014-09-19 19:05:35 +04:00
log_warn ( " WARNING: Ignoring invalid major, minor number for "
2015-11-23 01:03:01 +03:00
" logical volume %s. " , display_lvname ( lv ) ) ;
2014-09-19 19:05:35 +04:00
lv - > major = lv - > minor = - 1 ;
2014-09-19 16:51:41 +04:00
}
2002-11-18 17:04:08 +03:00
}
return 1 ;
}
static int _read_sections ( struct format_instance * fid ,
const char * section , section_fn fn ,
2011-08-30 18:55:15 +04:00
struct volume_group * vg , const struct dm_config_node * vgn ,
2010-03-31 21:20:02 +04:00
struct dm_hash_table * pv_hash ,
struct dm_hash_table * lv_hash ,
int optional ,
2010-03-17 05:11:18 +03:00
unsigned * scan_done_once )
2002-11-18 17:04:08 +03:00
{
2011-08-30 18:55:15 +04:00
const struct dm_config_node * n ;
2010-03-17 05:11:18 +03:00
/* Only report missing devices when doing a scan */
unsigned report_missing_devices = scan_done_once ? ! * scan_done_once : 1 ;
2002-11-18 17:04:08 +03:00
2011-08-31 19:19:19 +04:00
if ( ! dm_config_get_section ( vgn , section , & n ) ) {
2002-11-18 17:04:08 +03:00
if ( ! optional ) {
log_error ( " Couldn't find section '%s'. " , section ) ;
return 0 ;
}
return 1 ;
}
for ( n = n - > child ; n ; n = n - > sib ) {
2011-10-23 20:05:45 +04:00
if ( ! fn ( fid , vg , n , vgn , pv_hash , lv_hash ,
2010-12-20 16:12:55 +03:00
scan_done_once , report_missing_devices ) )
2008-01-30 16:19:47 +03:00
return_0 ;
2002-11-18 17:04:08 +03:00
}
return 1 ;
}
static struct volume_group * _read_vg ( struct format_instance * fid ,
2011-08-30 18:55:15 +04:00
const struct dm_config_tree * cft ,
2015-06-10 17:25:57 +03:00
unsigned use_cached_pvs ,
unsigned allow_lvmetad_extensions )
2002-11-18 17:04:08 +03:00
{
2011-08-31 19:19:19 +04:00
const struct dm_config_node * vgn ;
const struct dm_config_value * cv ;
2015-03-09 22:33:27 +03:00
const char * str , * format_str , * system_id ;
2002-11-18 17:04:08 +03:00
struct volume_group * vg ;
2010-03-31 21:20:02 +04:00
struct dm_hash_table * pv_hash = NULL , * lv_hash = NULL ;
2010-03-17 05:11:18 +03:00
unsigned scan_done_once = use_cached_pvs ;
2015-03-09 22:18:14 +03:00
uint64_t vgstatus ;
2009-04-10 13:59:18 +04:00
2002-11-18 17:04:08 +03:00
/* skip any top-level values */
2010-11-29 21:35:37 +03:00
for ( vgn = cft - > root ; ( vgn & & vgn - > v ) ; vgn = vgn - > sib )
;
2002-11-18 17:04:08 +03:00
if ( ! vgn ) {
log_error ( " Couldn't find volume group in file. " ) ;
2011-03-10 15:43:29 +03:00
return NULL ;
2002-11-18 17:04:08 +03:00
}
2011-03-10 15:43:29 +03:00
if ( ! ( vg = alloc_vg ( " read_vg " , fid - > fmt - > cmd , vgn - > key ) ) )
return_NULL ;
2002-11-18 17:04:08 +03:00
2012-02-27 15:40:58 +04:00
/*
* The pv hash memorises the pv section names - > pv
* structures .
*/
if ( ! ( pv_hash = dm_hash_create ( 64 ) ) ) {
log_error ( " Couldn't create pv hash table. " ) ;
goto bad ;
}
/*
* The lv hash memorises the lv section names - > lv
* structures .
*/
if ( ! ( lv_hash = dm_hash_create ( 1024 ) ) ) {
log_error ( " Couldn't create lv hash table. " ) ;
goto bad ;
}
2002-11-18 17:04:08 +03:00
vgn = vgn - > child ;
2015-03-04 03:30:26 +03:00
/* A backup file might be a backup of a different format */
if ( dm_config_get_str ( vgn , " format " , & format_str ) & &
! ( vg - > original_fmt = get_format_by_name ( fid - > fmt - > cmd , format_str ) ) ) {
log_error ( " Unrecognised format %s for volume group %s. " , format_str , vg - > name ) ;
goto bad ;
}
system_id: make new VGs read-only for old lvm versions
Previous versions of lvm will not obey the restrictions
imposed by the new system_id, and would allow such a VG
to be written. So, a VG with a new system_id is further
changed to force previous lvm versions to treat it as
read-only. This is done by removing the WRITE flag from
the metadata status line of these VGs, and putting a new
WRITE_LOCKED flag in the flags line of the metadata.
Versions of lvm that recognize WRITE_LOCKED, also obey the
new system_id. For these lvm versions, WRITE_LOCKED is
identical to WRITE, and the rules associated with matching
system_id's are imposed.
A new VG lock_type field is also added that causes the same
WRITE/WRITE_LOCKED transformation when set. A previous
version of lvm will also see a VG with lock_type as read-only.
Versions of lvm that recognize WRITE_LOCKED, must also obey
the lock_type setting. Until the lock_type feature is added,
lvm will fail to read any VG with lock_type set and report an
error about an unsupported lock_type. Once the lock_type
feature is added, lvm will allow VGs with lock_type to be
used according to the rules imposed by the lock_type.
When both system_id and lock_type settings are removed, a VG
is written with the old WRITE status flag, and without the
new WRITE_LOCKED flag. This allows old versions of lvm to
use the VG as before.
2015-03-04 20:30:53 +03:00
if ( dm_config_get_str ( vgn , " lock_type " , & str ) ) {
if ( ! ( vg - > lock_type = dm_pool_strdup ( vg - > vgmem , str ) ) )
goto bad ;
}
2015-07-09 23:14:19 +03:00
/*
* The VG lock_args string is generated in lvmlockd , and the content
* depends on the lock_type . lvmlockd begins the lock_args string
* with a version number , e . g . 1.0 .0 , followed by a colon , followed
* by a string that depends on the lock manager . The string after
* the colon is information needed to use the lock manager for the VG .
*
* For sanlock , the string is the name of the internal LV used to store
* sanlock locks . lvmlockd needs to know where the locks are located
* so it can pass that location to sanlock which needs to access the locks .
* e . g . lock_args = 1.0 .0 : lvmlock
* means that the locks are located on the the LV " lvmlock " .
*
* For dlm , the string is the dlm cluster name . lvmlockd needs to use
* a dlm lockspace in this cluster to use the VG .
* e . g . lock_args = 1.0 .0 : foo
* means that the host needs to be a member of the cluster " foo " .
*
* The lvmlockd code for each specific lock manager also validates
* the lock_args before using it to access the lock manager .
*/
2015-03-05 23:00:44 +03:00
if ( dm_config_get_str ( vgn , " lock_args " , & str ) ) {
if ( ! ( vg - > lock_args = dm_pool_strdup ( vg - > vgmem , str ) ) )
goto bad ;
}
2002-11-18 17:04:08 +03:00
if ( ! _read_id ( & vg - > id , vgn , " id " ) ) {
log_error ( " Couldn't read uuid for volume group %s. " , vg - > name ) ;
goto bad ;
}
if ( ! _read_int32 ( vgn , " seqno " , & vg - > seqno ) ) {
log_error ( " Couldn't read 'seqno' for volume group %s. " ,
vg - > name ) ;
goto bad ;
}
2015-03-09 22:18:14 +03:00
if ( ! _read_flag_config ( vgn , & vgstatus , VG_FLAGS ) ) {
2008-07-10 15:30:57 +04:00
log_error ( " Error reading flags of volume group %s. " ,
2002-11-18 17:04:08 +03:00
vg - > name ) ;
goto bad ;
}
2015-03-09 21:27:34 +03:00
/*
* A system id without WRITE_LOCKED is an old lvm1 system id .
*/
2015-03-09 22:33:27 +03:00
if ( dm_config_get_str ( vgn , " system_id " , & system_id ) ) {
if ( ! ( vgstatus & LVM_WRITE_LOCKED ) ) {
if ( ! ( vg - > lvm1_system_id = dm_pool_zalloc ( vg - > vgmem , NAME_LEN + 1 ) ) )
goto_bad ;
strncpy ( vg - > lvm1_system_id , system_id , NAME_LEN ) ;
} else if ( ! ( vg - > system_id = dm_pool_strdup ( vg - > vgmem , system_id ) ) ) {
log_error ( " Failed to allocate memory for system_id in _read_vg. " ) ;
goto bad ;
}
2015-03-09 21:27:34 +03:00
}
2015-03-09 22:18:14 +03:00
if ( vgstatus & LVM_WRITE_LOCKED ) {
vgstatus | = LVM_WRITE ;
vgstatus & = ~ LVM_WRITE_LOCKED ;
system_id: make new VGs read-only for old lvm versions
Previous versions of lvm will not obey the restrictions
imposed by the new system_id, and would allow such a VG
to be written. So, a VG with a new system_id is further
changed to force previous lvm versions to treat it as
read-only. This is done by removing the WRITE flag from
the metadata status line of these VGs, and putting a new
WRITE_LOCKED flag in the flags line of the metadata.
Versions of lvm that recognize WRITE_LOCKED, also obey the
new system_id. For these lvm versions, WRITE_LOCKED is
identical to WRITE, and the rules associated with matching
system_id's are imposed.
A new VG lock_type field is also added that causes the same
WRITE/WRITE_LOCKED transformation when set. A previous
version of lvm will also see a VG with lock_type as read-only.
Versions of lvm that recognize WRITE_LOCKED, must also obey
the lock_type setting. Until the lock_type feature is added,
lvm will fail to read any VG with lock_type set and report an
error about an unsupported lock_type. Once the lock_type
feature is added, lvm will allow VGs with lock_type to be
used according to the rules imposed by the lock_type.
When both system_id and lock_type settings are removed, a VG
is written with the old WRITE status flag, and without the
new WRITE_LOCKED flag. This allows old versions of lvm to
use the VG as before.
2015-03-04 20:30:53 +03:00
}
2015-03-09 22:18:14 +03:00
vg - > status = vgstatus ;
system_id: make new VGs read-only for old lvm versions
Previous versions of lvm will not obey the restrictions
imposed by the new system_id, and would allow such a VG
to be written. So, a VG with a new system_id is further
changed to force previous lvm versions to treat it as
read-only. This is done by removing the WRITE flag from
the metadata status line of these VGs, and putting a new
WRITE_LOCKED flag in the flags line of the metadata.
Versions of lvm that recognize WRITE_LOCKED, also obey the
new system_id. For these lvm versions, WRITE_LOCKED is
identical to WRITE, and the rules associated with matching
system_id's are imposed.
A new VG lock_type field is also added that causes the same
WRITE/WRITE_LOCKED transformation when set. A previous
version of lvm will also see a VG with lock_type as read-only.
Versions of lvm that recognize WRITE_LOCKED, must also obey
the lock_type setting. Until the lock_type feature is added,
lvm will fail to read any VG with lock_type set and report an
error about an unsupported lock_type. Once the lock_type
feature is added, lvm will allow VGs with lock_type to be
used according to the rules imposed by the lock_type.
When both system_id and lock_type settings are removed, a VG
is written with the old WRITE status flag, and without the
new WRITE_LOCKED flag. This allows old versions of lvm to
use the VG as before.
2015-03-04 20:30:53 +03:00
2002-11-18 17:04:08 +03:00
if ( ! _read_int32 ( vgn , " extent_size " , & vg - > extent_size ) ) {
log_error ( " Couldn't read extent size for volume group %s. " ,
vg - > name ) ;
goto bad ;
}
/*
* ' extent_count ' and ' free_count ' get filled in
* implicitly when reading in the pv ' s and lv ' s .
*/
if ( ! _read_int32 ( vgn , " max_lv " , & vg - > max_lv ) ) {
log_error ( " Couldn't read 'max_lv' for volume group %s. " ,
vg - > name ) ;
goto bad ;
}
if ( ! _read_int32 ( vgn , " max_pv " , & vg - > max_pv ) ) {
log_error ( " Couldn't read 'max_pv' for volume group %s. " ,
vg - > name ) ;
goto bad ;
}
2011-08-31 19:19:19 +04:00
if ( dm_config_get_str ( vgn , " allocation_policy " , & str ) ) {
vg - > alloc = get_alloc_from_string ( str ) ;
2010-11-29 21:35:37 +03:00
if ( vg - > alloc = = ALLOC_INVALID ) {
2011-08-31 19:19:19 +04:00
log_warn ( " WARNING: Ignoring unrecognised allocation policy %s for VG %s " , str , vg - > name ) ;
2010-11-29 21:35:37 +03:00
vg - > alloc = ALLOC_NORMAL ;
}
2004-05-19 02:12:53 +04:00
}
2013-06-25 14:28:36 +04:00
if ( dm_config_get_str ( vgn , " profile " , & str ) ) {
log_debug_metadata ( " Adding profile configuration %s for VG %s. " , str , vg - > name ) ;
config: differentiate command and metadata profiles and consolidate profile handling code
- When defining configuration source, the code now uses separate
CONFIG_PROFILE_COMMAND and CONFIG_PROFILE_METADATA markers
(before, it was just CONFIG_PROFILE that did not make the
difference between the two). This helps when checking the
configuration if it contains correct set of options which
are all in either command-profilable or metadata-profilable
group without mixing these groups together - so it's a firm
distinction. The "command profile" can't contain
"metadata profile" and vice versa! This is strictly checked
and if the settings are mixed, such profile is rejected and
it's not used. So in the end, the CONFIG_PROFILE_COMMAND
set of options and CONFIG_PROFILE_METADATA are mutually exclusive
sets.
- Marking configuration with one or the other marker will also
determine the way these configuration sources are positioned
in the configuration cascade which is now:
CONFIG_STRING -> CONFIG_PROFILE_COMMAND -> CONFIG_PROFILE_METADATA -> CONFIG_FILE/CONFIG_MERGED_FILES
- Marking configuration with one or the other marker will also make
it possible to issue a command context refresh (will be probably
a part of a future patch) if needed for settings in global profile
set. For settings in metadata profile set this is impossible since
we can't refresh cmd context in the middle of reading VG/LV metadata
and for each VG/LV separately because each VG/LV can have a different
metadata profile assinged and it's not possible to change these
settings at this level.
- When command profile is incorrect, it's rejected *and also* the
command exits immediately - the profile *must* be correct for the
command that was run with a profile to be executed. Before this
patch, when the profile was found incorrect, there was just the
warning message and the command continued without profile applied.
But it's more correct to exit immediately in this case.
- When metadata profile is incorrect, we reject it during command
runtime (as we know the profile name from metadata and not early
from command line as it is in case of command profiles) and we
*do continue* with the command as we're in the middle of operation.
Also, the metadata profile is applied directly and on the fly on
find_config_tree_* fn call and even if the metadata profile is
found incorrect, we still need to return the non-profiled value
as found in the other configuration provided or default value.
To exit immediately even in this case, we'd need to refactor
existing find_config_tree_* fns so they can return error. Currently,
these fns return only config values (which end up with default
values in the end if the config is not found).
- To check the profile validity before use to be sure it's correct,
one can use :
lvm dumpconfig --commandprofile/--metadataprofile ProfileName --validate
(the --commandprofile/--metadataprofile for dumpconfig will come
as part of the subsequent patch)
- This patch also adds a reference to --commandprofile and
--metadataprofile in the cmd help string (which was missing before
for the --profile for some commands). We do not mention --profile
now as people should use --commandprofile or --metadataprofile
directly. However, the --profile is still supported for backward
compatibility and it's translated as:
--profile == --metadataprofile for lvcreate, vgcreate, lvchange and vgchange
(as these commands are able to attach profile to metadata)
--profile == --commandprofile for all the other commands
(--metadataprofile is not allowed there as it makes no sense)
- This patch also contains some cleanups to make the code handling
the profiles more readable...
2014-05-20 16:13:10 +04:00
vg - > profile = add_profile ( vg - > cmd , str , CONFIG_PROFILE_METADATA ) ;
2013-06-25 14:28:36 +04:00
if ( ! vg - > profile ) {
log_error ( " Failed to add configuration profile %s for VG %s " , str , vg - > name ) ;
goto bad ;
}
}
2010-06-29 00:37:10 +04:00
if ( ! _read_uint32 ( vgn , " metadata_copies " , & vg - > mda_copies ) ) {
vg - > mda_copies = DEFAULT_VGMETADATACOPIES ;
}
2011-10-23 20:05:45 +04:00
if ( ! _read_sections ( fid , " physical_volumes " , _read_pv , vg ,
2010-03-31 21:20:02 +04:00
vgn , pv_hash , lv_hash , 0 , & scan_done_once ) ) {
2002-11-18 17:04:08 +03:00
log_error ( " Couldn't find all physical volumes for volume "
" group %s. " , vg - > name ) ;
goto bad ;
}
2015-06-10 17:25:57 +03:00
if ( allow_lvmetad_extensions )
_read_sections ( fid , " outdated_pvs " , _read_pv , vg ,
vgn , pv_hash , lv_hash , 1 , & scan_done_once ) ;
else if ( dm_config_has_node ( vgn , " outdated_pvs " ) )
log_error ( INTERNAL_ERROR " Unexpected outdated_pvs section in metadata of VG %s. " , vg - > name ) ;
2015-04-29 16:02:26 +03:00
2004-03-08 20:19:15 +03:00
/* Optional tags */
2011-08-31 19:19:19 +04:00
if ( dm_config_get_list ( vgn , " tags " , & cv ) & &
2015-05-06 14:19:21 +03:00
! ( _read_str_list ( vg - > vgmem , & vg - > tags , cv ) ) ) {
2004-03-08 20:19:15 +03:00
log_error ( " Couldn't read tags for volume group %s. " , vg - > name ) ;
goto bad ;
}
2003-04-25 02:23:24 +04:00
2011-10-23 20:05:45 +04:00
if ( ! _read_sections ( fid , " logical_volumes " , _read_lvnames , vg ,
vgn , pv_hash , lv_hash , 1 , NULL ) ) {
2003-04-25 02:23:24 +04:00
log_error ( " Couldn't read all logical volume names for volume "
2002-11-18 17:04:08 +03:00
" group %s. " , vg - > name ) ;
goto bad ;
}
2011-10-23 20:05:45 +04:00
if ( ! _read_sections ( fid , " logical_volumes " , _read_lvsegs , vg ,
vgn , pv_hash , lv_hash , 1 , NULL ) ) {
2003-04-25 02:23:24 +04:00
log_error ( " Couldn't read all logical volumes for "
" volume group %s. " , vg - > name ) ;
goto bad ;
}
2005-10-28 01:51:28 +04:00
if ( ! fixup_imported_mirrors ( vg ) ) {
log_error ( " Failed to fixup mirror pointers after import for "
" volume group %s. " , vg - > name ) ;
goto bad ;
}
2005-10-17 03:03:59 +04:00
dm_hash_destroy ( pv_hash ) ;
2010-03-31 21:20:02 +04:00
dm_hash_destroy ( lv_hash ) ;
2002-11-18 17:04:08 +03:00
2011-03-11 17:50:13 +03:00
vg_set_fid ( vg , fid ) ;
2002-11-18 17:04:08 +03:00
/*
* Finished .
*/
return vg ;
bad :
if ( pv_hash )
2005-10-17 03:03:59 +04:00
dm_hash_destroy ( pv_hash ) ;
2002-11-18 17:04:08 +03:00
2010-03-31 21:20:02 +04:00
if ( lv_hash )
dm_hash_destroy ( lv_hash ) ;
2011-08-11 00:25:29 +04:00
release_vg ( vg ) ;
2002-11-18 17:04:08 +03:00
return NULL ;
}
2005-10-17 03:03:59 +04:00
static void _read_desc ( struct dm_pool * mem ,
2011-08-30 18:55:15 +04:00
const struct dm_config_tree * cft , time_t * when , char * * desc )
2002-11-18 17:04:08 +03:00
{
const char * d ;
unsigned int u = 0u ;
2009-04-03 01:34:41 +04:00
int old_suppress ;
2002-11-18 17:04:08 +03:00
2009-04-03 01:34:41 +04:00
old_suppress = log_suppress ( 1 ) ;
2011-12-21 16:49:00 +04:00
d = dm_config_find_str_allow_empty ( cft - > root , " description " , " " ) ;
2009-04-03 01:34:41 +04:00
log_suppress ( old_suppress ) ;
2005-10-17 03:03:59 +04:00
* desc = dm_pool_strdup ( mem , d ) ;
2002-11-18 17:04:08 +03:00
2011-08-30 18:55:15 +04:00
( void ) dm_config_get_uint32 ( cft - > root , " creation_time " , & u ) ;
2002-11-18 17:04:08 +03:00
* when = u ;
}
2015-07-24 23:20:37 +03:00
/*
* It would be more accurate to call this _read_vgsummary ( ) .
* It is used to read vgsummary information about a VG
* before locking and reading the VG via vg_read ( ) .
*/
2015-03-19 02:43:02 +03:00
static int _read_vgname ( const struct format_type * fmt , const struct dm_config_tree * cft ,
struct lvmcache_vgsummary * vgsummary )
2006-04-11 17:55:59 +04:00
{
2011-08-30 18:55:15 +04:00
const struct dm_config_node * vgn ;
2006-04-11 17:55:59 +04:00
struct dm_pool * mem = fmt - > cmd - > mem ;
2006-04-13 21:32:24 +04:00
int old_suppress ;
old_suppress = log_suppress ( 2 ) ;
2015-03-19 02:43:02 +03:00
vgsummary - > creation_host =
dm_pool_strdup ( mem , dm_config_find_str_allow_empty ( cft - > root , " creation_host " , " " ) ) ;
2006-04-13 21:32:24 +04:00
log_suppress ( old_suppress ) ;
2006-04-11 17:55:59 +04:00
/* skip any top-level values */
for ( vgn = cft - > root ; ( vgn & & vgn - > v ) ; vgn = vgn - > sib ) ;
if ( ! vgn ) {
log_error ( " Couldn't find volume group in file. " ) ;
return 0 ;
}
2015-03-19 02:43:02 +03:00
if ( ! ( vgsummary - > vgname = dm_pool_strdup ( mem , vgn - > key ) ) )
2006-04-11 17:55:59 +04:00
return_0 ;
vgn = vgn - > child ;
2015-03-19 02:43:02 +03:00
if ( ! _read_id ( & vgsummary - > vgid , vgn , " id " ) ) {
log_error ( " Couldn't read uuid for volume group %s. " , vgsummary - > vgname ) ;
2006-04-11 17:55:59 +04:00
return 0 ;
}
2015-03-19 02:43:02 +03:00
if ( ! _read_flag_config ( vgn , & vgsummary - > vgstatus , VG_FLAGS ) ) {
2006-04-11 21:42:15 +04:00
log_error ( " Couldn't find status flags for volume group %s. " ,
2015-03-19 02:43:02 +03:00
vgsummary - > vgname ) ;
2006-04-11 21:42:15 +04:00
return 0 ;
}
2015-07-24 23:20:37 +03:00
dm_config_get_str ( vgn , " lock_type " , & vgsummary - > lock_type ) ;
2015-03-19 02:43:02 +03:00
return 1 ;
2006-04-11 17:55:59 +04:00
}
2002-11-18 17:04:08 +03:00
static struct text_vg_version_ops _vsn1_ops = {
2011-03-27 17:44:08 +04:00
. check_version = _vsn1_check_version ,
2006-05-10 01:23:51 +04:00
. read_vg = _read_vg ,
. read_desc = _read_desc ,
. read_vgname = _read_vgname ,
2002-11-18 17:04:08 +03:00
} ;
struct text_vg_version_ops * text_vg_vsn1_init ( void )
{
return & _vsn1_ops ;
2006-05-10 01:23:51 +04:00
}