2009-07-24 03:40:05 +04:00
/*
2013-07-05 18:10:25 +04:00
* Copyright ( C ) 2008 - 2013 Red Hat , Inc . All rights reserved .
2009-07-24 03:40:05 +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 Lesser General Public License v .2 .1 .
*
* You should have received a copy of the GNU Lesser 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
*/
2013-03-20 01:37:04 +04:00
# include <stddef.h>
2009-07-24 03:40:05 +04:00
# include "lib.h"
2010-09-30 18:07:47 +04:00
# include "metadata.h"
2009-07-24 03:40:05 +04:00
# include "lvm-string.h"
2015-01-06 16:17:53 +03:00
# include "str_list.h"
2010-10-25 18:08:55 +04:00
# include "lvm_misc.h"
2010-12-15 02:20:58 +03:00
# include "lvm2app.h"
2013-03-20 01:37:04 +04:00
# include "locking.h"
# include "toolcontext.h"
2013-12-18 02:51:11 +04:00
# include "lvm_misc.h"
2009-07-24 03:40:05 +04:00
2013-09-11 03:01:28 +04:00
struct lvm_pv_create_params
{
uint32_t magic ;
lvm_t libh ;
const char * pv_name ;
struct pvcreate_params pv_p ;
} ;
# define PV_CREATE_PARAMS_MAGIC 0xFEED0002
2010-04-19 19:22:24 +04:00
const char * lvm_pv_get_uuid ( const pv_t pv )
2009-07-24 03:40:05 +04:00
{
2013-12-18 02:51:11 +04:00
const char * rc ;
struct saved_env e = store_user_env ( pv - > vg - > cmd ) ;
rc = pv_uuid_dup ( pv ) ;
restore_user_env ( & e ) ;
return rc ;
2009-07-24 03:40:05 +04:00
}
2010-04-19 19:22:24 +04:00
const char * lvm_pv_get_name ( const pv_t pv )
2009-07-24 03:40:05 +04:00
{
2013-12-18 02:51:11 +04:00
const char * rc ;
struct saved_env e = store_user_env ( pv - > vg - > cmd ) ;
rc = dm_pool_strndup ( pv - > vg - > vgmem , pv_dev_name ( pv ) , NAME_LEN ) ;
restore_user_env ( & e ) ;
return rc ;
2009-07-24 03:40:05 +04:00
}
2009-08-13 16:18:15 +04:00
uint64_t lvm_pv_get_mda_count ( const pv_t pv )
2009-07-26 17:06:59 +04:00
{
2013-12-18 02:51:11 +04:00
uint64_t rc ;
struct saved_env e = store_user_env ( pv - > vg - > cmd ) ;
rc = ( uint64_t ) pv_mda_count ( pv ) ;
restore_user_env ( & e ) ;
return rc ;
2009-07-26 17:06:59 +04:00
}
2009-07-28 01:00:50 +04:00
2010-02-14 06:21:37 +03:00
uint64_t lvm_pv_get_dev_size ( const pv_t pv )
{
2013-12-18 02:51:11 +04:00
uint64_t rc ;
struct saved_env e = store_user_env ( pv - > vg - > cmd ) ;
rc = SECTOR_SIZE * pv_dev_size ( pv ) ;
restore_user_env ( & e ) ;
return rc ;
2010-02-14 06:21:37 +03:00
}
uint64_t lvm_pv_get_size ( const pv_t pv )
{
2013-12-18 02:51:11 +04:00
uint64_t rc ;
struct saved_env e = store_user_env ( pv - > vg - > cmd ) ;
rc = SECTOR_SIZE * pv_size_field ( pv ) ;
restore_user_env ( & e ) ;
return rc ;
2010-02-14 06:21:37 +03:00
}
uint64_t lvm_pv_get_free ( const pv_t pv )
{
2013-12-18 02:51:11 +04:00
uint64_t rc ;
struct saved_env e = store_user_env ( pv - > vg - > cmd ) ;
rc = SECTOR_SIZE * pv_free ( pv ) ;
restore_user_env ( & e ) ;
return rc ;
2010-02-14 06:21:37 +03:00
}
2010-10-25 18:08:55 +04:00
struct lvm_property_value lvm_pv_get_property ( const pv_t pv , const char * name )
{
2013-12-18 02:51:11 +04:00
struct lvm_property_value rc ;
struct saved_env e = store_user_env ( pv - > vg - > cmd ) ;
rc = get_property ( pv , NULL , NULL , NULL , NULL , NULL , NULL , name ) ;
restore_user_env ( & e ) ;
return rc ;
2010-11-17 23:12:39 +03:00
}
struct lvm_property_value lvm_pvseg_get_property ( const pvseg_t pvseg ,
const char * name )
{
2013-12-18 02:51:11 +04:00
struct lvm_property_value rc ;
struct saved_env e = store_user_env ( pvseg - > pv - > vg - > cmd ) ;
rc = get_property ( NULL , NULL , NULL , NULL , pvseg , NULL , NULL , name ) ;
restore_user_env ( & e ) ;
return rc ;
2010-10-25 18:08:55 +04:00
}
2013-03-20 01:37:04 +04:00
struct lvm_list_wrapper
{
unsigned long magic ;
2013-08-15 00:14:42 +04:00
struct cmd_context * cmd ;
2013-03-20 01:37:04 +04:00
struct dm_list pvslist ;
struct dm_list vgslist ;
} ;
2013-04-03 00:10:18 +04:00
int lvm_pv_remove ( lvm_t libh , const char * pv_name )
{
2013-12-18 02:51:11 +04:00
int rc = 0 ;
2013-04-03 00:10:18 +04:00
struct cmd_context * cmd = ( struct cmd_context * ) libh ;
2013-12-18 02:51:11 +04:00
struct saved_env e = store_user_env ( cmd ) ;
2015-01-06 16:17:53 +03:00
struct dm_list pv_names ;
2013-07-05 18:10:25 +04:00
2015-01-06 16:17:53 +03:00
dm_list_init ( & pv_names ) ;
if ( ! str_list_add ( cmd - > mem , & pv_names , pv_name ) )
rc = - 1 ;
if ( rc > = 0 & & ! pvremove_many ( cmd , & pv_names , 0 , 0 ) )
2013-12-18 02:51:11 +04:00
rc = - 1 ;
2013-07-05 18:10:25 +04:00
2013-12-18 02:51:11 +04:00
restore_user_env ( & e ) ;
return rc ;
2013-04-03 00:10:18 +04:00
}
2013-03-20 01:37:04 +04:00
2014-01-08 15:04:41 +04:00
# define PV_LIST_MAGIC 4026907153U
2013-09-11 03:01:28 +04:00
2013-12-18 02:51:11 +04:00
static struct dm_list * _lvm_list_pvs ( lvm_t libh )
2013-03-20 01:37:04 +04:00
{
struct lvm_list_wrapper * rc = NULL ;
struct cmd_context * cmd = ( struct cmd_context * ) libh ;
2013-08-15 00:14:42 +04:00
/*
* This memory will get cleared when the library handle
* gets closed , don ' t try to free is as it doesn ' t work
* like malloc / free do .
*/
2013-07-05 18:10:25 +04:00
if ( ! ( rc = dm_pool_zalloc ( cmd - > mem , sizeof ( * rc ) ) ) ) {
2013-03-20 01:37:04 +04:00
log_errno ( ENOMEM , " Memory allocation fail for pv list. " ) ;
return NULL ;
}
if ( ! lock_vol ( cmd , VG_GLOBAL , LCK_VG_WRITE , NULL ) ) {
log_errno ( ENOLCK , " Unable to obtain global lock. " ) ;
} else {
dm_list_init ( & rc - > pvslist ) ;
dm_list_init ( & rc - > vgslist ) ;
if ( ! get_pvs_perserve_vg ( cmd , & rc - > pvslist , & rc - > vgslist ) ) {
return NULL ;
}
2013-08-15 00:14:42 +04:00
/*
* If we have no PVs we still need to have access to cmd
* pointer in the free call .
*/
rc - > cmd = cmd ;
2013-09-11 03:01:28 +04:00
rc - > magic = PV_LIST_MAGIC ;
2013-03-20 01:37:04 +04:00
}
return & rc - > pvslist ;
}
2013-12-18 02:51:11 +04:00
struct dm_list * lvm_list_pvs ( lvm_t libh )
{
struct dm_list * rc ;
struct saved_env e = store_user_env ( ( struct cmd_context * ) libh ) ;
rc = _lvm_list_pvs ( libh ) ;
restore_user_env ( & e ) ;
return rc ;
}
2013-03-20 01:37:04 +04:00
int lvm_list_pvs_free ( struct dm_list * pvlist )
{
2013-07-05 18:10:25 +04:00
struct lvm_list_wrapper * to_delete ;
struct vg_list * vgl ;
struct pv_list * pvl ;
2013-12-18 02:51:11 +04:00
struct saved_env e ;
2013-03-20 01:37:04 +04:00
2013-07-05 18:10:25 +04:00
if ( pvlist ) {
to_delete = dm_list_struct_base ( pvlist , struct lvm_list_wrapper , pvslist ) ;
2013-09-11 03:01:28 +04:00
if ( to_delete - > magic ! = PV_LIST_MAGIC ) {
2013-07-05 18:10:25 +04:00
log_errno ( EINVAL , " Not a correct pvlist structure " ) ;
return - 1 ;
}
2013-03-20 01:37:04 +04:00
2013-12-18 02:51:11 +04:00
/*
* Need to ensure that pointer is valid before we can use reference to
* cmd .
*/
e = store_user_env ( to_delete - > cmd ) ;
2013-07-05 18:10:25 +04:00
dm_list_iterate_items ( vgl , & to_delete - > vgslist ) {
release_vg ( vgl - > vg ) ;
}
2013-03-20 01:37:04 +04:00
2013-07-05 18:10:25 +04:00
dm_list_iterate_items ( pvl , & to_delete - > pvslist )
free_pv_fid ( pvl - > pv ) ;
2013-03-20 01:37:04 +04:00
2013-08-15 00:14:42 +04:00
unlock_vg ( to_delete - > cmd , VG_GLOBAL ) ;
2013-03-20 01:37:04 +04:00
to_delete - > magic = 0xA5A5A5A5 ;
2013-12-18 02:51:11 +04:00
restore_user_env ( & e ) ;
2013-03-20 01:37:04 +04:00
}
2013-07-05 18:10:25 +04:00
return 0 ;
2013-03-20 01:37:04 +04:00
}
2013-12-18 02:51:11 +04:00
static struct dm_list * _lvm_pv_list_pvsegs ( pv_t pv )
2010-11-17 23:10:42 +03:00
{
struct dm_list * list ;
pvseg_list_t * pvseg ;
struct pv_segment * pvl ;
if ( dm_list_empty ( & pv - > segments ) )
return NULL ;
if ( ! ( list = dm_pool_zalloc ( pv - > vg - > vgmem , sizeof ( * list ) ) ) ) {
log_errno ( ENOMEM , " Memory allocation fail for dm_list. " ) ;
return NULL ;
}
2013-07-05 18:10:25 +04:00
2010-11-17 23:10:42 +03:00
dm_list_init ( list ) ;
dm_list_iterate_items ( pvl , & pv - > segments ) {
if ( ! ( pvseg = dm_pool_zalloc ( pv - > vg - > vgmem , sizeof ( * pvseg ) ) ) ) {
log_errno ( ENOMEM ,
" Memory allocation fail for lvm_pvseg_list. " ) ;
return NULL ;
}
pvseg - > pvseg = pvl ;
dm_list_add ( list , & pvseg - > list ) ;
}
2013-07-05 18:10:25 +04:00
2010-11-17 23:10:42 +03:00
return list ;
}
2013-12-18 02:51:11 +04:00
struct dm_list * lvm_pv_list_pvsegs ( pv_t pv )
{
struct dm_list * rc ;
struct saved_env e = store_user_env ( pv - > vg - > cmd ) ;
rc = _lvm_pv_list_pvsegs ( pv ) ;
restore_user_env ( & e ) ;
return rc ;
}
2010-11-25 17:33:44 +03:00
pv_t lvm_pv_from_name ( vg_t vg , const char * name )
{
2013-12-18 02:51:11 +04:00
pv_t rc = NULL ;
2010-11-25 17:33:44 +03:00
struct pv_list * pvl ;
2013-12-18 02:51:11 +04:00
struct saved_env e = store_user_env ( vg - > cmd ) ;
2010-11-25 17:33:44 +03:00
2013-07-05 18:10:25 +04:00
dm_list_iterate_items ( pvl , & vg - > pvs )
2013-12-18 02:51:11 +04:00
if ( ! strcmp ( name , pv_dev_name ( pvl - > pv ) ) ) {
rc = pvl - > pv ;
break ;
}
2013-07-05 18:10:25 +04:00
2013-12-18 02:51:11 +04:00
restore_user_env ( & e ) ;
return rc ;
2010-11-25 17:33:44 +03:00
}
2013-12-18 02:51:11 +04:00
static pv_t _lvm_pv_from_uuid ( vg_t vg , const char * uuid )
2010-11-25 17:34:51 +03:00
{
struct pv_list * pvl ;
struct id id ;
if ( strlen ( uuid ) < ID_LEN ) {
log_errno ( EINVAL , " Invalid UUID string length " ) ;
return NULL ;
}
2012-02-08 15:41:18 +04:00
if ( ! id_read_format ( & id , uuid ) ) {
log_errno ( EINVAL , " Invalid UUID format. " ) ;
return NULL ;
2010-11-25 17:34:51 +03:00
}
2012-02-08 15:41:18 +04:00
2013-07-05 18:10:25 +04:00
dm_list_iterate_items ( pvl , & vg - > pvs )
2010-11-25 17:34:51 +03:00
if ( id_equal ( & id , & pvl - > pv - > id ) )
return pvl - > pv ;
2013-07-05 18:10:25 +04:00
2010-11-25 17:34:51 +03:00
return NULL ;
}
2013-12-18 02:51:11 +04:00
pv_t lvm_pv_from_uuid ( vg_t vg , const char * uuid )
{
pv_t rc ;
struct saved_env e = store_user_env ( vg - > cmd ) ;
rc = _lvm_pv_from_uuid ( vg , uuid ) ;
restore_user_env ( & e ) ;
return rc ;
}
static int _lvm_pv_resize ( const pv_t pv , uint64_t new_size )
2009-07-28 01:00:50 +04:00
{
2013-03-13 23:39:56 +04:00
uint64_t size = new_size > > SECTOR_SHIFT ;
if ( new_size % SECTOR_SIZE ) {
log_errno ( EINVAL , " Size not a multiple of 512 " ) ;
return - 1 ;
}
2013-07-05 18:10:25 +04:00
if ( ! vg_check_write_mode ( pv - > vg ) )
2013-03-13 23:39:56 +04:00
return - 1 ;
2013-06-29 01:25:28 +04:00
if ( ! pv_resize_single ( pv - > vg - > cmd , pv - > vg , pv , size ) ) {
2013-03-13 23:39:56 +04:00
log_error ( " PV re-size failed! " ) ;
return - 1 ;
}
2013-07-05 18:10:25 +04:00
return 0 ;
2009-07-28 01:00:50 +04:00
}
2013-04-04 01:53:21 +04:00
2013-12-18 02:51:11 +04:00
int lvm_pv_resize ( const pv_t pv , uint64_t new_size )
{
int rc ;
struct saved_env e = store_user_env ( pv - > vg - > cmd ) ;
rc = _lvm_pv_resize ( pv , new_size ) ;
restore_user_env ( & e ) ;
return rc ;
}
2013-09-11 03:01:28 +04:00
/*
* Common internal code to create a parameter passing object
*/
static struct lvm_pv_create_params * _lvm_pv_params_create (
lvm_t libh ,
const char * pv_name ,
struct lvm_pv_create_params * pvcp_in )
2013-04-04 01:53:21 +04:00
{
2013-09-11 03:01:28 +04:00
struct lvm_pv_create_params * pvcp = NULL ;
const char * dev = NULL ;
2013-04-04 01:53:21 +04:00
struct cmd_context * cmd = ( struct cmd_context * ) libh ;
2013-09-11 03:01:28 +04:00
if ( ! pv_name | | strlen ( pv_name ) = = 0 ) {
log_error ( " Invalid pv_name " ) ;
return NULL ;
}
if ( ! pvcp_in ) {
pvcp = dm_pool_zalloc ( cmd - > libmem , sizeof ( struct lvm_pv_create_params ) ) ;
} else {
pvcp = pvcp_in ;
}
if ( ! pvcp ) {
return NULL ;
}
dev = dm_pool_strdup ( cmd - > libmem , pv_name ) ;
if ( ! dev ) {
return NULL ;
}
pvcreate_params_set_defaults ( & pvcp - > pv_p ) ;
pvcp - > pv_p . yes = 1 ;
pvcp - > pv_p . force = DONT_PROMPT ;
pvcp - > pv_name = dev ;
pvcp - > libh = libh ;
pvcp - > magic = PV_CREATE_PARAMS_MAGIC ;
return pvcp ;
}
pv_create_params_t lvm_pv_params_create ( lvm_t libh , const char * pv_name )
{
2013-12-18 02:51:11 +04:00
pv_create_params_t rc ;
struct saved_env e = store_user_env ( ( struct cmd_context * ) libh ) ;
rc = _lvm_pv_params_create ( libh , pv_name , NULL ) ;
restore_user_env ( & e ) ;
return rc ;
2013-09-11 03:01:28 +04:00
}
2013-04-04 01:53:21 +04:00
2013-09-11 03:01:28 +04:00
struct lvm_property_value lvm_pv_params_get_property (
const pv_create_params_t params ,
const char * name )
{
struct lvm_property_value rc = {
. is_valid = 0
} ;
2013-12-18 02:51:11 +04:00
struct saved_env e ;
2013-09-11 03:01:28 +04:00
if ( params & & params - > magic = = PV_CREATE_PARAMS_MAGIC ) {
2013-12-18 02:51:11 +04:00
e = store_user_env ( ( struct cmd_context * ) ( params - > libh ) ) ;
2013-09-11 03:01:28 +04:00
rc = get_property ( NULL , NULL , NULL , NULL , NULL , NULL , & params - > pv_p ,
name ) ;
2013-12-18 02:51:11 +04:00
restore_user_env ( & e ) ;
2013-09-11 03:01:28 +04:00
} else {
log_error ( " Invalid pv_create_params parameter " ) ;
}
return rc ;
}
int lvm_pv_params_set_property ( pv_create_params_t params , const char * name ,
struct lvm_property_value * prop )
{
int rc = - 1 ;
2013-12-18 02:51:11 +04:00
struct saved_env e ;
2013-09-11 03:01:28 +04:00
if ( params & & params - > magic = = PV_CREATE_PARAMS_MAGIC ) {
2013-12-18 02:51:11 +04:00
e = store_user_env ( ( struct cmd_context * ) ( params - > libh ) ) ;
2013-09-11 03:01:28 +04:00
rc = set_property ( NULL , NULL , NULL , NULL , & params - > pv_p , name , prop ) ;
2013-12-18 02:51:11 +04:00
restore_user_env ( & e ) ;
2013-09-11 03:01:28 +04:00
} else {
log_error ( " Invalid pv_create_params parameter " ) ;
}
return rc ;
}
static int _pv_create ( pv_create_params_t params )
{
struct cmd_context * cmd = ( struct cmd_context * ) params - > libh ;
if ( params - > pv_p . size ) {
if ( params - > pv_p . size % SECTOR_SIZE ) {
2013-04-04 01:53:21 +04:00
log_errno ( EINVAL , " Size not a multiple of 512 " ) ;
2013-07-05 18:10:25 +04:00
return - 1 ;
2013-04-04 01:53:21 +04:00
}
2013-09-11 03:01:28 +04:00
params - > pv_p . size = params - > pv_p . size > > SECTOR_SHIFT ;
2013-04-04 01:53:21 +04:00
}
2013-09-11 03:01:28 +04:00
if ( ! pvcreate_single ( cmd , params - > pv_name , & params - > pv_p ) )
return - 1 ;
return 0 ;
}
int lvm_pv_create ( lvm_t libh , const char * pv_name , uint64_t size )
{
struct lvm_pv_create_params pp ;
2013-12-18 02:51:11 +04:00
int rc = - 1 ;
struct saved_env e = store_user_env ( ( struct cmd_context * ) libh ) ;
2013-04-04 01:53:21 +04:00
2013-12-18 02:51:11 +04:00
if ( _lvm_pv_params_create ( libh , pv_name , & pp ) ) {
pp . pv_p . size = size ;
rc = _pv_create ( & pp ) ;
}
2013-09-11 03:01:28 +04:00
2013-12-18 02:51:11 +04:00
restore_user_env ( & e ) ;
return rc ;
2013-09-11 03:01:28 +04:00
}
int lvm_pv_create_adv ( pv_create_params_t params )
{
int rc = - 1 ;
2013-12-18 02:51:11 +04:00
struct saved_env e ;
2013-09-11 03:01:28 +04:00
if ( params & & params - > magic = = PV_CREATE_PARAMS_MAGIC ) {
2013-12-18 02:51:11 +04:00
e = store_user_env ( ( struct cmd_context * ) ( params - > libh ) ) ;
2013-09-11 03:01:28 +04:00
rc = _pv_create ( params ) ;
2013-12-18 02:51:11 +04:00
restore_user_env ( & e ) ;
2013-09-11 03:01:28 +04:00
} else {
log_error ( " Invalid pv_create_params parameter " ) ;
}
return rc ;
2013-04-04 01:53:21 +04:00
}