2001-10-02 21:09:05 +04:00
/*
2004-03-30 23:35:44 +04:00
* Copyright ( C ) 2001 - 2004 Sistina Software , Inc . All rights reserved .
2012-03-03 22:32:53 +04:00
* Copyright ( C ) 2004 - 2012 Red Hat , Inc . All rights reserved .
2001-10-02 21:09:05 +04:00
*
2004-03-30 23:35:44 +04:00
* This file is part of LVM2 .
2001-10-02 21:09:05 +04:00
*
2004-03-30 23:35:44 +04:00
* This copyrighted material is made available to anyone wishing to use ,
* modify , copy , or redistribute it subject to the terms and conditions
2007-08-21 00:55:30 +04:00
* of the GNU Lesser General Public License v .2 .1 .
2001-10-02 21:09:05 +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 ,
2016-01-21 13:49:46 +03:00
* Inc . , 51 Franklin Street , Fifth Floor , Boston , MA 02110 - 1301 USA
2001-10-02 21:09:05 +04:00
*/
# include "tools.h"
2018-05-14 12:30:20 +03:00
# include "lib/cache/lvmcache.h"
2018-06-28 22:48:03 +03:00
# include "lib/metadata/metadata.h"
2019-01-16 23:19:09 +03:00
# include "lib/label/hints.h"
2018-06-28 22:48:03 +03:00
# include <dirent.h>
2019-02-13 22:35:24 +03:00
# include <sys/file.h>
2018-06-28 22:48:03 +03:00
2015-10-19 21:58:43 +03:00
struct pvscan_params {
int new_pvs_found ;
int pvs_found ;
uint64_t size_total ;
uint64_t size_new ;
unsigned pv_max_name_len ;
unsigned vg_max_name_len ;
unsigned pv_tmp_namelen ;
char * pv_tmp_name ;
} ;
pvscan: use process_each_vg for autoactivate
This refactors the code for autoactivation. Previously,
as each PV was found, it would be sent to lvmetad, and
the VG would be autoactivated using a non-standard VG
processing function (the "activation_handler") called via
a function pointer from within the lvmetad notification path.
Now, any scanning that the command needs to do (scanning
only the named device args, or scanning all devices when
there are no args), is done first, before any activation
is attempted. During the scans, the VG names are saved.
After scanning is complete, process_each_vg is used to do
autoactivation of the saved VG names. This makes pvscan
activation much more similar to activation done with
vgchange or lvchange.
The separate autoactivate phase also means that if lvmetad
is disabled (either before or during the scan), the command
can continue with the activation step by simply not using
lvmetad and reverting to disk scanning to do the
activation.
2016-04-28 17:37:03 +03:00
struct pvscan_aa_params {
unsigned int activate_errors ;
} ;
2019-02-13 23:21:56 +03:00
static const char * _pvs_online_dir = DEFAULT_RUN_DIR " /pvs_online " ;
static const char * _vgs_online_dir = DEFAULT_RUN_DIR " /vgs_online " ;
2019-02-13 22:35:24 +03:00
2018-06-28 22:48:03 +03:00
static int _pvscan_display_pv ( struct cmd_context * cmd ,
2015-10-19 21:58:43 +03:00
struct physical_volume * pv ,
struct pvscan_params * params )
2002-11-18 17:04:08 +03:00
{
2014-03-19 03:17:36 +04:00
/* XXXXXX-XXXX-XXXX-XXXX-XXXX-XXXX-XXXXXX */
char uuid [ 40 ] __attribute__ ( ( aligned ( 8 ) ) ) ;
2015-10-19 21:58:43 +03:00
const unsigned suffix_len = sizeof ( uuid ) + 10 ;
unsigned pv_len ;
2014-03-19 03:17:36 +04:00
const char * pvdevname = pv_dev_name ( pv ) ;
2002-11-18 17:04:08 +03:00
/* short listing? */
2016-06-22 00:24:52 +03:00
if ( arg_is_set ( cmd , short_ARG ) ) {
2014-03-19 03:19:01 +04:00
log_print_unless_silent ( " %s " , pvdevname ) ;
2015-10-19 21:58:43 +03:00
return ECMD_PROCESSED ;
2002-11-18 17:04:08 +03:00
}
2015-10-19 21:58:43 +03:00
if ( ! params - > pv_max_name_len ) {
lvmcache_get_max_name_lengths ( cmd , & params - > pv_max_name_len , & params - > vg_max_name_len ) ;
2002-11-18 17:04:08 +03:00
2015-10-19 21:58:43 +03:00
params - > pv_max_name_len + = 2 ;
params - > vg_max_name_len + = 2 ;
params - > pv_tmp_namelen = params - > pv_max_name_len + suffix_len ;
2002-11-18 17:04:08 +03:00
2015-10-19 21:58:43 +03:00
if ( ! ( params - > pv_tmp_name = dm_pool_alloc ( cmd - > mem , params - > pv_tmp_namelen ) ) )
return ECMD_FAILED ;
2002-11-18 17:04:08 +03:00
}
2015-10-19 21:58:43 +03:00
pv_len = params - > pv_max_name_len ;
memset ( params - > pv_tmp_name , 0 , params - > pv_tmp_namelen ) ;
2016-06-22 00:24:52 +03:00
if ( arg_is_set ( cmd , uuid_ARG ) ) {
2002-11-18 17:04:08 +03:00
if ( ! id_write_format ( & pv - > id , uuid , sizeof ( uuid ) ) ) {
stack ;
2015-10-19 21:58:43 +03:00
return ECMD_FAILED ;
2002-11-18 17:04:08 +03:00
}
2015-10-19 21:58:43 +03:00
if ( dm_snprintf ( params - > pv_tmp_name , params - > pv_tmp_namelen , " %-*s with UUID %s " ,
params - > pv_max_name_len - 2 , pvdevname , uuid ) < 0 ) {
2014-03-19 03:17:36 +04:00
log_error ( " Invalid PV name with uuid. " ) ;
2015-10-19 21:58:43 +03:00
return ECMD_FAILED ;
2014-03-19 03:17:36 +04:00
}
2015-10-19 21:58:43 +03:00
pvdevname = params - > pv_tmp_name ;
pv_len + = suffix_len ;
2002-11-18 17:04:08 +03:00
}
2014-03-19 03:17:36 +04:00
if ( is_orphan ( pv ) )
config: add silent mode
Accept -q as the short form of --quiet.
Suppress non-essential standard output if -q is given twice.
Treat log/silent in lvm.conf as equivalent to -qq.
Review all log_print messages and change some to
log_print_unless_silent.
When silent, the following commands still produce output:
dumpconfig, lvdisplay, lvmdiskscan, lvs, pvck, pvdisplay,
pvs, version, vgcfgrestore -l, vgdisplay, vgs.
[Needs checking.]
Non-essential messages are shifted from log level 4 to log level 5
for syslog and lvm2_log_fn purposes.
2012-08-25 23:35:48 +04:00
log_print_unless_silent ( " PV %-*s %-*s %s [%s] " ,
2014-03-19 03:17:36 +04:00
pv_len , pvdevname ,
2015-10-19 21:58:43 +03:00
params - > vg_max_name_len , " " ,
config: add silent mode
Accept -q as the short form of --quiet.
Suppress non-essential standard output if -q is given twice.
Treat log/silent in lvm.conf as equivalent to -qq.
Review all log_print messages and change some to
log_print_unless_silent.
When silent, the following commands still produce output:
dumpconfig, lvdisplay, lvmdiskscan, lvs, pvck, pvdisplay,
pvs, version, vgcfgrestore -l, vgdisplay, vgs.
[Needs checking.]
Non-essential messages are shifted from log level 4 to log level 5
for syslog and lvm2_log_fn purposes.
2012-08-25 23:35:48 +04:00
pv - > fmt ? pv - > fmt - > name : " " ,
display_size ( cmd , pv_size ( pv ) ) ) ;
2014-03-19 03:17:36 +04:00
else if ( pv_status ( pv ) & EXPORTED_VG )
log_print_unless_silent ( " PV %-*s is in exported VG %s [%s / %s free] " ,
pv_len , pvdevname , pv_vg_name ( pv ) ,
display_size ( cmd , ( uint64_t ) pv_pe_count ( pv ) * pv_pe_size ( pv ) ) ,
display_size ( cmd , ( uint64_t ) ( pv_pe_count ( pv ) - pv_pe_alloc_count ( pv ) ) * pv_pe_size ( pv ) ) ) ;
else
log_print_unless_silent ( " PV %-*s VG %-*s %s [%s / %s free] " ,
pv_len , pvdevname ,
2015-10-19 21:58:43 +03:00
params - > vg_max_name_len , pv_vg_name ( pv ) ,
2014-03-19 03:17:36 +04:00
pv - > fmt ? pv - > fmt - > name : " " ,
config: add silent mode
Accept -q as the short form of --quiet.
Suppress non-essential standard output if -q is given twice.
Treat log/silent in lvm.conf as equivalent to -qq.
Review all log_print messages and change some to
log_print_unless_silent.
When silent, the following commands still produce output:
dumpconfig, lvdisplay, lvmdiskscan, lvs, pvck, pvdisplay,
pvs, version, vgcfgrestore -l, vgdisplay, vgs.
[Needs checking.]
Non-essential messages are shifted from log level 4 to log level 5
for syslog and lvm2_log_fn purposes.
2012-08-25 23:35:48 +04:00
display_size ( cmd , ( uint64_t ) pv_pe_count ( pv ) * pv_pe_size ( pv ) ) ,
display_size ( cmd , ( uint64_t ) ( pv_pe_count ( pv ) - pv_pe_alloc_count ( pv ) ) * pv_pe_size ( pv ) ) ) ;
2015-10-19 21:58:43 +03:00
return ECMD_PROCESSED ;
}
2018-06-28 22:48:03 +03:00
static int _pvscan_display_single ( struct cmd_context * cmd , struct volume_group * vg ,
2015-10-19 21:58:43 +03:00
struct physical_volume * pv , struct processing_handle * handle )
{
struct pvscan_params * params = ( struct pvscan_params * ) handle - > custom_handle ;
2016-06-22 00:24:52 +03:00
if ( ( arg_is_set ( cmd , exported_ARG ) & & ! ( pv_status ( pv ) & EXPORTED_VG ) ) | |
( arg_is_set ( cmd , novolumegroup_ARG ) & & ( ! is_orphan ( pv ) ) ) ) {
2015-10-19 21:58:43 +03:00
return ECMD_PROCESSED ;
}
params - > pvs_found + + ;
if ( is_orphan ( pv ) ) {
params - > new_pvs_found + + ;
params - > size_new + = pv_size ( pv ) ;
params - > size_total + = pv_size ( pv ) ;
} else {
params - > size_total + = ( uint64_t ) pv_pe_count ( pv ) * pv_pe_size ( pv ) ;
}
2018-06-28 22:48:03 +03:00
_pvscan_display_pv ( cmd , pv , params ) ;
2015-10-19 21:58:43 +03:00
return ECMD_PROCESSED ;
2002-11-18 17:04:08 +03:00
}
2018-07-10 21:39:29 +03:00
int pvscan_display_cmd ( struct cmd_context * cmd , int argc , char * * argv )
2001-10-02 21:09:05 +04:00
{
2015-10-19 21:58:43 +03:00
struct pvscan_params params = { 0 } ;
struct processing_handle * handle = NULL ;
int ret ;
2001-10-02 21:09:05 +04:00
2016-06-22 00:24:52 +03:00
if ( arg_is_set ( cmd , novolumegroup_ARG ) & & arg_is_set ( cmd , exported_ARG ) ) {
2001-10-16 22:07:54 +04:00
log_error ( " Options -e and -n are incompatible " ) ;
2001-10-05 02:53:37 +04:00
return EINVALID_CMD_LINE ;
2001-10-02 21:09:05 +04:00
}
2016-06-22 00:24:52 +03:00
if ( arg_is_set ( cmd , exported_ARG ) | | arg_is_set ( cmd , novolumegroup_ARG ) )
2007-06-28 21:33:44 +04:00
log_warn ( " WARNING: only considering physical volumes %s " ,
2016-06-22 00:24:52 +03:00
arg_is_set ( cmd , exported_ARG ) ?
2001-10-02 21:09:05 +04:00
" of exported volume group(s) " : " in no volume group " ) ;
2016-05-31 13:24:05 +03:00
if ( ! ( handle = init_processing_handle ( cmd , NULL ) ) ) {
2015-10-19 21:58:43 +03:00
log_error ( " Failed to initialize processing handle. " ) ;
ret = ECMD_FAILED ;
goto out ;
2001-10-02 21:09:05 +04:00
}
2015-10-19 21:58:43 +03:00
handle - > custom_handle = & params ;
2001-10-02 21:09:05 +04:00
2018-06-28 22:48:03 +03:00
ret = process_each_pv ( cmd , argc , argv , NULL , 0 , 0 , handle , _pvscan_display_single ) ;
2001-10-02 21:09:05 +04:00
2015-10-19 21:58:43 +03:00
if ( ! params . pvs_found )
config: add silent mode
Accept -q as the short form of --quiet.
Suppress non-essential standard output if -q is given twice.
Treat log/silent in lvm.conf as equivalent to -qq.
Review all log_print messages and change some to
log_print_unless_silent.
When silent, the following commands still produce output:
dumpconfig, lvdisplay, lvmdiskscan, lvs, pvck, pvdisplay,
pvs, version, vgcfgrestore -l, vgdisplay, vgs.
[Needs checking.]
Non-essential messages are shifted from log level 4 to log level 5
for syslog and lvm2_log_fn purposes.
2012-08-25 23:35:48 +04:00
log_print_unless_silent ( " No matching physical volumes found " ) ;
2014-03-19 03:19:01 +04:00
else
log_print_unless_silent ( " Total: %d [%s] / in use: %d [%s] / in no VG: %d [%s] " ,
2015-10-19 21:58:43 +03:00
params . pvs_found ,
display_size ( cmd , params . size_total ) ,
params . pvs_found - params . new_pvs_found ,
display_size ( cmd , ( params . size_total - params . size_new ) ) ,
params . new_pvs_found , display_size ( cmd , params . size_new ) ) ;
2001-10-02 21:09:05 +04:00
2015-10-19 21:58:43 +03:00
out :
2016-06-17 14:29:33 +03:00
destroy_processing_handle ( cmd , handle ) ;
2007-08-23 19:02:26 +04:00
2015-10-19 21:58:43 +03:00
return ret ;
2001-10-02 21:09:05 +04:00
}
2018-06-28 22:48:03 +03:00
2019-02-13 23:21:56 +03:00
static char * _vgname_in_pvid_file_buf ( char * buf )
{
char * p , * n ;
/*
* file contains :
* < major > : < minor > \ n
* vg : < vgname > \ n \ 0
*/
if ( ! ( p = strchr ( buf , ' \n ' ) ) )
return NULL ;
p + + ; /* skip \n */
if ( * p & & ! strncmp ( p , " vg: " , 3 ) ) {
if ( ( n = strchr ( p , ' \n ' ) ) )
* n = ' \0 ' ;
return p + 3 ;
}
return NULL ;
}
# define MAX_PVID_FILE_SIZE 512
/*
* When a PV goes offline , remove the vg online file for that VG
* ( even if other PVs for the VG are still online ) . This means
* that the vg will be activated again when it becomes complete .
*/
static void _online_vg_file_remove ( const char * vgname )
{
char path [ PATH_MAX ] ;
if ( dm_snprintf ( path , sizeof ( path ) , " %s/%s " , _vgs_online_dir , vgname ) < 0 ) {
log_error ( " Path %s/%s is too long. " , _vgs_online_dir , vgname ) ;
return ;
}
log_debug ( " Unlink vg online: %s " , path ) ;
if ( unlink ( path ) )
log_sys_debug ( " unlink " , path ) ;
}
2018-06-28 22:48:03 +03:00
/*
* When a device goes offline we only know its major : minor , not its PVID .
* Since the dev isn ' t around , we can ' t read it to get its PVID , so we have to
* read the PVID files to find the one containing this major : minor and remove
* that one . This means that the PVID files need to contain the devno ' s they
* were created from .
*/
static void _online_pvid_file_remove_devno ( int major , int minor )
{
char path [ PATH_MAX ] ;
2019-02-13 23:21:56 +03:00
char buf [ MAX_PVID_FILE_SIZE ] ;
char buf_in [ MAX_PVID_FILE_SIZE ] ;
char * vgname = NULL ;
2018-06-28 22:48:03 +03:00
DIR * dir ;
struct dirent * de ;
int fd , rv ;
memset ( buf , 0 , sizeof ( buf ) ) ;
snprintf ( buf , sizeof ( buf ) , " %d:%d \n " , major , minor ) ;
log_debug ( " Remove pv online devno %d:%d " , major , minor ) ;
if ( ! ( dir = opendir ( _pvs_online_dir ) ) )
return ;
while ( ( de = readdir ( dir ) ) ) {
if ( de - > d_name [ 0 ] = = ' . ' )
continue ;
memset ( path , 0 , sizeof ( path ) ) ;
snprintf ( path , sizeof ( path ) , " %s/%s " , _pvs_online_dir , de - > d_name ) ;
fd = open ( path , O_RDONLY ) ;
if ( fd < 0 ) {
log_debug ( " Failed to open %s " , path ) ;
continue ;
}
2019-02-13 23:21:56 +03:00
memset ( buf_in , 0 , sizeof ( buf_in ) ) ;
2018-06-28 22:48:03 +03:00
rv = read ( fd , buf_in , sizeof ( buf_in ) ) ;
2018-10-15 15:34:31 +03:00
if ( close ( fd ) )
log_sys_debug ( " close " , path ) ;
2018-06-28 22:48:03 +03:00
if ( ! rv | | rv < 0 ) {
log_debug ( " Failed to read %s " , path ) ;
continue ;
}
if ( ! strncmp ( buf , buf_in , strlen ( buf ) ) ) {
2019-02-13 23:21:56 +03:00
log_debug ( " Unlink pv online %s " , path ) ;
2018-10-15 17:21:01 +03:00
if ( unlink ( path ) )
log_sys_debug ( " unlink " , path ) ;
2019-02-13 23:21:56 +03:00
/* vgname points to an offset in buf_in */
if ( ( vgname = _vgname_in_pvid_file_buf ( buf_in ) ) )
_online_vg_file_remove ( vgname ) ;
else
log_debug ( " No vgname in pvid file " ) ;
2018-06-28 22:48:03 +03:00
break ;
}
}
2018-10-15 17:19:49 +03:00
if ( closedir ( dir ) )
log_sys_debug ( " closedir " , _pvs_online_dir ) ;
2018-06-28 22:48:03 +03:00
}
2019-02-13 23:21:56 +03:00
static void _online_files_remove ( const char * dirpath )
2018-06-28 22:48:03 +03:00
{
char path [ PATH_MAX ] ;
DIR * dir ;
struct dirent * de ;
2019-02-13 23:21:56 +03:00
if ( ! ( dir = opendir ( dirpath ) ) )
2018-06-28 22:48:03 +03:00
return ;
while ( ( de = readdir ( dir ) ) ) {
if ( de - > d_name [ 0 ] = = ' . ' )
continue ;
memset ( path , 0 , sizeof ( path ) ) ;
2019-02-13 23:21:56 +03:00
snprintf ( path , sizeof ( path ) , " %s/%s " , dirpath , de - > d_name ) ;
2018-10-15 17:21:01 +03:00
if ( unlink ( path ) )
log_sys_debug ( " unlink " , path ) ;
2018-06-28 22:48:03 +03:00
}
2018-10-15 17:19:49 +03:00
if ( closedir ( dir ) )
2019-02-13 23:21:56 +03:00
log_sys_debug ( " closedir " , dirpath ) ;
2018-06-28 22:48:03 +03:00
}
2019-02-13 23:21:56 +03:00
static int _online_pvid_file_create ( struct device * dev , const char * vgname )
2018-06-28 22:48:03 +03:00
{
char path [ PATH_MAX ] ;
2019-02-13 23:21:56 +03:00
char buf [ MAX_PVID_FILE_SIZE ] ;
2018-06-28 22:48:03 +03:00
int major , minor ;
int fd ;
int rv ;
2018-11-06 17:04:35 +03:00
int len ;
2019-02-13 23:21:56 +03:00
int len1 = 0 ;
int len2 = 0 ;
memset ( buf , 0 , sizeof ( buf ) ) ;
2018-06-28 22:48:03 +03:00
major = ( int ) MAJOR ( dev - > dev ) ;
minor = ( int ) MINOR ( dev - > dev ) ;
2018-11-06 17:04:35 +03:00
if ( dm_snprintf ( path , sizeof ( path ) , " %s/%s " , _pvs_online_dir , dev - > pvid ) < 0 ) {
log_error ( " Path %s/%s is too long. " , _pvs_online_dir , dev - > pvid ) ;
return 0 ;
}
2018-06-28 22:48:03 +03:00
2019-02-13 23:21:56 +03:00
if ( ( len1 = dm_snprintf ( buf , sizeof ( buf ) , " %d:%d \n " , major , minor ) ) < 0 ) {
log_error ( " Cannot create online pv file for %d:%d. " , major , minor ) ;
2018-11-06 17:04:35 +03:00
return 0 ;
}
2018-06-28 22:48:03 +03:00
2019-02-13 23:21:56 +03:00
if ( vgname ) {
if ( ( len2 = dm_snprintf ( buf + len1 , sizeof ( buf ) - len1 , " vg:%s \n " , vgname ) ) < 0 ) {
log_warn ( " Incomplete online pv file for %d:%d vg %s. " , major , minor , vgname ) ;
/* can still continue without vgname */
len2 = 0 ;
}
}
len = len1 + len2 ;
2018-06-28 22:48:03 +03:00
log_debug ( " Create pv online: %s %d:%d %s " , path , major , minor , dev_name ( dev ) ) ;
fd = open ( path , O_CREAT | O_TRUNC | O_RDWR , S_IRUSR | S_IWUSR ) ;
if ( fd < 0 ) {
2019-02-13 23:21:56 +03:00
log_error ( " Failed to open create %s: %d " , path , errno ) ;
2018-11-06 17:04:35 +03:00
return 0 ;
2018-06-28 22:48:03 +03:00
}
2018-11-06 17:04:35 +03:00
while ( len > 0 ) {
rv = write ( fd , buf , len ) ;
if ( rv < 0 ) {
log_error ( " Failed to write fd %d buf %s dev %s to %s: %d " ,
2018-12-19 18:29:31 +03:00
fd , buf , dev_name ( dev ) , path , errno ) ;
2018-12-21 22:26:15 +03:00
if ( close ( fd ) )
log_sys_debug ( " close " , path ) ;
2018-11-06 17:04:35 +03:00
return 0 ;
}
len - = rv ;
}
2018-06-28 22:48:03 +03:00
/* We don't care about syncing, these files are not even persistent. */
2018-10-15 17:06:35 +03:00
if ( close ( fd ) )
log_sys_debug ( " close " , path ) ;
2018-11-06 17:04:35 +03:00
return 1 ;
2018-06-28 22:48:03 +03:00
}
static int _online_pvid_file_exists ( const char * pvid )
{
char path [ PATH_MAX ] ;
struct stat buf ;
int rv ;
memset ( path , 0 , sizeof ( path ) ) ;
snprintf ( path , sizeof ( path ) , " %s/%s " , _pvs_online_dir , pvid ) ;
log_debug ( " Check pv online: %s " , path ) ;
rv = stat ( path , & buf ) ;
if ( ! rv ) {
log_debug ( " Check pv online: yes " ) ;
return 1 ;
}
log_debug ( " Check pv online: no " ) ;
return 0 ;
}
2019-02-13 23:21:56 +03:00
static void _online_dir_setup ( void )
2018-06-28 22:48:03 +03:00
{
struct stat st ;
int rv ;
2019-02-13 23:21:56 +03:00
if ( ! stat ( DEFAULT_RUN_DIR , & st ) )
goto do_pvs ;
log_debug ( " Creating run_dir. " ) ;
dm_prepare_selinux_context ( DEFAULT_RUN_DIR , S_IFDIR ) ;
rv = mkdir ( DEFAULT_RUN_DIR , 0755 ) ;
dm_prepare_selinux_context ( NULL , 0 ) ;
if ( ( rv < 0 ) & & stat ( DEFAULT_RUN_DIR , & st ) )
log_error ( " Failed to create %s %d " , DEFAULT_RUN_DIR , errno ) ;
do_pvs :
2018-06-28 22:48:03 +03:00
if ( ! stat ( _pvs_online_dir , & st ) )
2019-02-13 23:21:56 +03:00
goto do_vgs ;
2018-06-28 22:48:03 +03:00
2019-02-13 23:21:56 +03:00
log_debug ( " Creating pvs_online_dir. " ) ;
2018-06-28 22:48:03 +03:00
dm_prepare_selinux_context ( _pvs_online_dir , S_IFDIR ) ;
2019-02-13 23:21:56 +03:00
rv = mkdir ( _pvs_online_dir , 0755 ) ;
dm_prepare_selinux_context ( NULL , 0 ) ;
if ( ( rv < 0 ) & & stat ( _pvs_online_dir , & st ) )
log_error ( " Failed to create %s %d " , _pvs_online_dir , errno ) ;
do_vgs :
if ( ! stat ( _vgs_online_dir , & st ) )
return ;
log_debug ( " Creating vgs_online_dir. " ) ;
dm_prepare_selinux_context ( _vgs_online_dir , S_IFDIR ) ;
rv = mkdir ( _vgs_online_dir , 0755 ) ;
2018-06-28 22:48:03 +03:00
dm_prepare_selinux_context ( NULL , 0 ) ;
2019-02-13 23:21:56 +03:00
if ( ( rv < 0 ) & & stat ( _vgs_online_dir , & st ) )
log_error ( " Failed to create %s %d " , _vgs_online_dir , errno ) ;
2018-06-28 22:48:03 +03:00
}
static int _online_pv_found ( struct cmd_context * cmd ,
struct device * dev , struct dm_list * dev_args ,
struct volume_group * vg ,
struct dm_list * found_vgnames )
{
struct pv_list * pvl ;
int pvids_not_online = 0 ;
int dev_args_in_vg = 0 ;
/*
* Create file named for pvid to record this PV is online .
*/
2019-02-13 23:21:56 +03:00
if ( ! _online_pvid_file_create ( dev , vg ? vg - > name : NULL ) )
2018-11-06 17:04:35 +03:00
return_0 ;
2018-06-28 22:48:03 +03:00
2019-02-13 23:21:56 +03:00
if ( ! vg | | ! found_vgnames ) {
log_print ( " pvscan[%d] PV %s online. " , getpid ( ) , dev_name ( dev ) ) ;
2018-06-28 22:48:03 +03:00
return 1 ;
2019-02-13 23:21:56 +03:00
}
2018-06-28 22:48:03 +03:00
/*
* Check if all the PVs for this VG are online . This is only
* needed when autoactivating the VG which should be run only
* when the VG is complete . If the arrival of this dev completes
* the VG , then we want to activate the VG .
*/
dm_list_iterate_items ( pvl , & vg - > pvs ) {
if ( ! _online_pvid_file_exists ( ( const char * ) & pvl - > pv - > id . uuid ) )
pvids_not_online + + ;
/* Check if one of the devs on the command line is in this VG. */
if ( dev_args & & dev_in_device_list ( pvl - > pv - > dev , dev_args ) )
dev_args_in_vg = 1 ;
}
/*
* Return if we did not find an online file for one of the PVIDs
* in the VG , which means the VG is not yet complete .
*/
2019-02-13 23:21:56 +03:00
if ( pvids_not_online ) {
log_print ( " pvscan[%d] PV %s online, VG %s incomplete (need %d). " ,
getpid ( ) , dev_name ( dev ) , vg - > name , pvids_not_online ) ;
2018-06-28 22:48:03 +03:00
return 1 ;
2019-02-13 23:21:56 +03:00
}
log_print ( " pvscan[%d] PV %s online, VG %s is complete. " , getpid ( ) , dev_name ( dev ) , vg - > name ) ;
2018-06-28 22:48:03 +03:00
/*
* When all PVIDs from the VG are online , then add vgname to
* found_vgnames .
*/
log_debug ( " online dev %s completes VG %s. " , dev_name ( dev ) , vg - > name ) ;
/*
* We either want to return all complete VGs that are found on any devs
* we are scanning , or we want to return complete VGs only when they
* contain PVs that were specified on the command line .
*/
if ( ! dev_args | | dev_args_in_vg ) {
log_debug ( " online dev %s can autoactivate VG %s " , dev_name ( dev ) , vg - > name ) ;
if ( ! str_list_add ( cmd - > mem , found_vgnames , dm_pool_strdup ( cmd - > mem , vg - > name ) ) )
stack ;
}
return 1 ;
}
struct _pvscan_baton {
struct cmd_context * cmd ;
struct volume_group * vg ;
struct format_instance * fid ;
} ;
static int _online_pvscan_single ( struct metadata_area * mda , void * baton )
{
struct _pvscan_baton * b = baton ;
struct volume_group * vg ;
if ( mda_is_ignored ( mda ) | |
! ( vg = mda - > ops - > vg_read ( b - > fid , " " , mda , NULL , NULL ) ) )
return 1 ;
/* FIXME Also ensure contents match etc. */
if ( ! b - > vg | | vg - > seqno > b - > vg - > seqno )
b - > vg = vg ;
else if ( b - > vg )
release_vg ( vg ) ;
return 1 ;
}
/*
* disable_remove is 1 when resetting the online state , which begins with
* removing all pvid files , and then creating new pvid files for PVs that
* are found , so we don ' t need to try to remove pvid files here when a PV
* is not found on a device .
*/
static int _online_pvscan_one ( struct cmd_context * cmd , struct device * dev ,
struct dm_list * dev_args ,
struct dm_list * found_vgnames ,
2019-04-15 19:27:49 +03:00
struct dm_list * all_vgs ,
2018-06-28 22:48:03 +03:00
int disable_remove ,
const char * * pvid_without_metadata )
{
struct lvmcache_info * info ;
2019-04-15 19:27:49 +03:00
struct vg_list * vgl ;
2018-06-28 22:48:03 +03:00
struct _pvscan_baton baton ;
const struct format_type * fmt ;
/* Create a dummy instance. */
struct format_instance_ctx fic = { . type = 0 } ;
2019-03-04 23:25:53 +03:00
uint32_t ext_version ;
uint32_t ext_flags ;
2018-06-28 22:48:03 +03:00
int ret = 0 ;
log_debug ( " pvscan metadata from dev %s " , dev_name ( dev ) ) ;
if ( udev_dev_is_mpath_component ( dev ) ) {
2019-02-13 23:21:56 +03:00
log_print ( " pvscan[%d] ignore multipath component %s. " , getpid ( ) , dev_name ( dev ) ) ;
2018-06-28 22:48:03 +03:00
return 1 ;
}
if ( ! ( info = lvmcache_info_from_pvid ( dev - > pvid , dev , 0 ) ) ) {
log_debug ( " No PV info found on %s for PVID %s. " , dev_name ( dev ) , dev - > pvid ) ;
if ( ! disable_remove )
_online_pvid_file_remove_devno ( ( int ) MAJOR ( dev - > dev ) , ( int ) MINOR ( dev - > dev ) ) ;
return 1 ;
}
2018-11-03 18:48:20 +03:00
if ( ! lvmcache_get_label ( info ) ) {
2018-06-28 22:48:03 +03:00
log_debug ( " No PV label found for %s. " , dev_name ( dev ) ) ;
if ( ! disable_remove )
_online_pvid_file_remove_devno ( ( int ) MAJOR ( dev - > dev ) , ( int ) MINOR ( dev - > dev ) ) ;
return 1 ;
}
2019-03-04 23:25:53 +03:00
ext_version = lvmcache_ext_version ( info ) ;
ext_flags = lvmcache_ext_flags ( info ) ;
if ( ( ext_version > = 2 ) & & ! ( ext_flags & PV_EXT_USED ) ) {
log_print ( " pvscan[%d] PV %s not used. " , getpid ( ) , dev_name ( dev ) ) ;
return 1 ;
}
2018-06-28 22:48:03 +03:00
fmt = lvmcache_fmt ( info ) ;
baton . cmd = cmd ;
baton . vg = NULL ;
baton . fid = fmt - > ops - > create_instance ( fmt , & fic ) ;
if ( ! baton . fid ) {
ret = 0 ;
goto_out ;
}
lvmcache_foreach_mda ( info , _online_pvscan_single , & baton ) ;
if ( ! baton . vg ) {
if ( pvid_without_metadata )
* pvid_without_metadata = dm_pool_strdup ( cmd - > mem , dev - > pvid ) ;
fmt - > ops - > destroy_instance ( baton . fid ) ;
}
2019-03-06 00:19:05 +03:00
if ( baton . vg & & vg_is_shared ( baton . vg ) ) {
log_print ( " pvscan[%d] PV %s ignore shared VG. " , getpid ( ) , dev_name ( dev ) ) ;
release_vg ( baton . vg ) ;
return 1 ;
}
2019-03-14 00:03:02 +03:00
if ( baton . vg & &
baton . vg - > system_id & & baton . vg - > system_id [ 0 ] & &
cmd - > system_id & & cmd - > system_id [ 0 ] & &
vg_is_foreign ( baton . vg ) ) {
log_verbose ( " Ignore PV %s with VG system id %s with our system id %s " ,
dev_name ( dev ) , baton . vg - > system_id , cmd - > system_id ) ;
2019-03-06 00:19:05 +03:00
log_print ( " pvscan[%d] PV %s ignore foreign VG. " , getpid ( ) , dev_name ( dev ) ) ;
release_vg ( baton . vg ) ;
return 1 ;
}
2019-04-06 00:44:00 +03:00
/*
* Do not consider a device online ( for purposes of autoactivation )
* if its size does not match the PV size recorded in the metadata .
* It may mean that it ' s not the correct dev for the PV , e . g . it
* could be an md component device that ' s not been filtered .
*/
if ( baton . vg & & cmd - > check_pv_dev_sizes ) {
struct pv_list * pvl ;
uint64_t dev_size = 0 ;
uint64_t meta_pv_size = 0 ;
dm_list_iterate_items ( pvl , & baton . vg - > pvs ) {
if ( pvl - > pv - > dev ! = dev )
continue ;
if ( ! dev_get_size ( dev , & dev_size ) )
stack ;
meta_pv_size = pv_size ( pvl - > pv ) ;
break ;
}
if ( dev_size ! = meta_pv_size ) {
log_print ( " pvscan[%d] PV %s ignore for size %llu not matching device %llu. " ,
getpid ( ) , dev_name ( dev ) ,
( unsigned long long ) meta_pv_size , ( unsigned long long ) dev_size ) ;
release_vg ( baton . vg ) ;
return 1 ;
}
}
2018-06-28 22:48:03 +03:00
ret = _online_pv_found ( cmd , dev , dev_args , baton . vg , found_vgnames ) ;
2019-04-15 19:27:49 +03:00
/*
* Save vg ' s in case they need to be used at the end for checking PVs
* without metadata ( in _check_vg_with_pvid_complete ) .
*/
if ( all_vgs & & baton . vg ) {
int found = 0 ;
dm_list_iterate_items ( vgl , all_vgs ) {
if ( ! strcmp ( baton . vg - > name , vgl - > vg - > name ) ) {
found = 1 ;
break ;
}
}
if ( ! found ) {
if ( ( vgl = malloc ( sizeof ( struct vg_list ) ) ) ) {
vgl - > vg = baton . vg ;
baton . vg = NULL ;
dm_list_add ( all_vgs , & vgl - > list ) ;
}
}
}
if ( baton . vg )
release_vg ( baton . vg ) ;
2018-06-28 22:48:03 +03:00
out :
return ret ;
}
2019-04-15 19:27:49 +03:00
/*
* This is to handle the case where pvscan - - cache - aay ( with no dev args )
* gets to the final PV , completing the VG , but that final PV does not
* have VG metadata . In this case , we need to use VG metadata from a
* previously scanned PV in the same VG , which we saved in the all_vgs
* list . Using this saved metadata , we can find which VG this PVID
* belongs to , and then check if that VG is now complete , and if so
* add the VG name to the list of complete VGs to be autoactivated .
*
* The " pvid " arg here is the PVID of the PV that has just been scanned
* and didn ' t have metadata . We look through previously scanned VG
* metadata to find the VG this PVID belongs to , and then check that VG
* metadata to see if all the PVs are now online .
*/
static void _check_vg_with_pvid_complete ( struct cmd_context * cmd ,
struct dm_list * found_vgnames ,
struct dm_list * all_vgs ,
const char * pvid )
{
struct vg_list * vgl ;
struct pv_list * pvl ;
struct volume_group * vg ;
int pvids_not_online = 0 ;
int found ;
dm_list_iterate_items ( vgl , all_vgs ) {
vg = vgl - > vg ;
found = 0 ;
dm_list_iterate_items ( pvl , & vg - > pvs ) {
if ( strcmp ( ( const char * ) & pvl - > pv - > id . uuid , pvid ) )
continue ;
found = 1 ;
break ;
}
if ( ! found )
continue ;
dm_list_iterate_items ( pvl , & vg - > pvs ) {
if ( ! _online_pvid_file_exists ( ( const char * ) & pvl - > pv - > id . uuid ) ) {
pvids_not_online + + ;
break ;
}
}
if ( ! pvids_not_online ) {
log_debug ( " pvid %s makes complete VG %s " , pvid , vg - > name ) ;
if ( ! str_list_add ( cmd - > mem , found_vgnames , dm_pool_strdup ( cmd - > mem , vg - > name ) ) )
stack ;
} else
log_debug ( " pvid %s incomplete VG %s " , pvid , vg - > name ) ;
break ;
}
}
2018-06-28 22:48:03 +03:00
/*
* dev_args is the list of devices that were specified on the
* pvscan command line .
*
* . When dev_args is NULL , any complete VGs that are found will
* be returned in found_vgnames .
*
* . When dev_args is set , then complete VGs that that contain
* devs in dev_args will be returned in found_vgnames .
*/
static void _online_pvscan_all_devs ( struct cmd_context * cmd ,
struct dm_list * found_vgnames ,
struct dm_list * dev_args )
{
2019-04-15 19:27:49 +03:00
struct dm_list all_vgs ;
2018-06-28 22:48:03 +03:00
struct dev_iter * iter ;
2019-04-15 19:27:49 +03:00
struct vg_list * vgl ;
2018-06-28 22:48:03 +03:00
struct device * dev ;
2019-04-15 19:27:49 +03:00
const char * pvid_without_metadata ;
dm_list_init ( & all_vgs ) ;
2018-06-28 22:48:03 +03:00
label_scan ( cmd ) ;
2018-12-04 23:06:46 +03:00
if ( ! ( iter = dev_iter_create ( cmd - > filter , 1 ) ) ) {
2018-06-28 22:48:03 +03:00
log_error ( " dev_iter creation failed " ) ;
return ;
}
while ( ( dev = dev_iter_get ( cmd , iter ) ) ) {
if ( sigint_caught ( ) ) {
stack ;
break ;
}
2019-04-15 19:27:49 +03:00
pvid_without_metadata = NULL ;
if ( ! _online_pvscan_one ( cmd , dev , dev_args , found_vgnames , & all_vgs , 1 , & pvid_without_metadata ) ) {
2018-06-28 22:48:03 +03:00
stack ;
break ;
}
2019-04-15 19:27:49 +03:00
/* This PV without metadata may complete a VG. */
if ( pvid_without_metadata )
_check_vg_with_pvid_complete ( cmd , found_vgnames , & all_vgs , pvid_without_metadata ) ;
2018-06-28 22:48:03 +03:00
}
2019-04-15 19:27:49 +03:00
dm_list_iterate_items ( vgl , & all_vgs )
release_vg ( vgl - > vg ) ;
2018-06-28 22:48:03 +03:00
dev_iter_destroy ( iter ) ;
}
static int _pvscan_aa_single ( struct cmd_context * cmd , const char * vg_name ,
struct volume_group * vg , struct processing_handle * handle )
{
struct pvscan_aa_params * pp = ( struct pvscan_aa_params * ) handle - > custom_handle ;
if ( vg_is_clustered ( vg ) )
return ECMD_PROCESSED ;
if ( vg_is_exported ( vg ) )
return ECMD_PROCESSED ;
if ( vg_is_shared ( vg ) )
return ECMD_PROCESSED ;
log_debug ( " pvscan autoactivating VG %s. " , vg_name ) ;
if ( ! vgchange_activate ( cmd , vg , CHANGE_AAY ) ) {
log_error ( " %s: autoactivation failed. " , vg - > name ) ;
pp - > activate_errors + + ;
}
return ECMD_PROCESSED ;
}
2019-02-13 23:21:56 +03:00
static int _online_vg_file_create ( struct cmd_context * cmd , const char * vgname )
{
char path [ PATH_MAX ] ;
int fd ;
if ( dm_snprintf ( path , sizeof ( path ) , " %s/%s " , _vgs_online_dir , vgname ) < 0 ) {
log_error ( " Path %s/%s is too long. " , _vgs_online_dir , vgname ) ;
return 0 ;
}
log_debug ( " Create vg online: %s " , path ) ;
fd = open ( path , O_CREAT | O_EXCL | O_TRUNC | O_RDWR , S_IRUSR | S_IWUSR ) ;
if ( fd < 0 ) {
log_debug ( " Failed to create %s: %d " , path , errno ) ;
return 0 ;
}
/* We don't care about syncing, these files are not even persistent. */
if ( close ( fd ) )
log_sys_debug ( " close " , path ) ;
return 1 ;
}
2018-06-28 22:48:03 +03:00
static int _pvscan_aa ( struct cmd_context * cmd , struct pvscan_aa_params * pp ,
2019-02-13 22:35:24 +03:00
struct dm_list * vgnames )
2018-06-28 22:48:03 +03:00
{
struct processing_handle * handle = NULL ;
2019-02-13 23:21:56 +03:00
struct dm_str_list * sl , * sl2 ;
2018-06-28 22:48:03 +03:00
int ret ;
2019-02-13 22:35:24 +03:00
if ( dm_list_empty ( vgnames ) ) {
2018-06-28 22:48:03 +03:00
log_debug ( " No VGs to autoactivate. " ) ;
return ECMD_PROCESSED ;
}
if ( ! ( handle = init_processing_handle ( cmd , NULL ) ) ) {
log_error ( " Failed to initialize processing handle. " ) ;
return ECMD_FAILED ;
}
handle - > custom_handle = pp ;
2019-02-13 23:21:56 +03:00
/*
* For each complete vg that can be autoactivated , see if this
* particular pvscan command should activate the vg . There can be
* multiple concurrent pvscans for the same completed vg ( when all the
* PVs for the VG appear at once ) , and we want only one of the pvscans
* to run the activation . The first to create the file will do it .
*/
dm_list_iterate_items_safe ( sl , sl2 , vgnames ) {
if ( ! _online_vg_file_create ( cmd , sl - > str ) ) {
log_print ( " pvscan[%d] VG %s skip autoactivation. " , getpid ( ) , sl - > str ) ;
str_list_del ( vgnames , sl - > str ) ;
continue ;
}
log_print ( " pvscan[%d] VG %s run autoactivation. " , getpid ( ) , sl - > str ) ;
}
if ( dm_list_empty ( vgnames ) ) {
destroy_processing_handle ( cmd , handle ) ;
return ECMD_PROCESSED ;
}
2018-06-28 22:48:03 +03:00
ret = process_each_vg ( cmd , 0 , NULL , NULL , vgnames , READ_FOR_UPDATE , 0 , handle , _pvscan_aa_single ) ;
destroy_processing_handle ( cmd , handle ) ;
return ret ;
}
2018-07-10 21:39:29 +03:00
int pvscan_cache_cmd ( struct cmd_context * cmd , int argc , char * * argv )
2018-06-28 22:48:03 +03:00
{
struct pvscan_aa_params pp = { 0 } ;
2019-02-27 01:35:16 +03:00
struct dm_list add_devs ;
struct dm_list rem_devs ;
2019-02-13 22:35:24 +03:00
struct dm_list vgnames ;
struct dm_list * complete_vgnames = NULL ;
2018-06-28 22:48:03 +03:00
struct device * dev ;
struct device_list * devl ;
const char * pv_name ;
const char * pvid_without_metadata = NULL ;
int32_t major = - 1 ;
int32_t minor = - 1 ;
int devno_args = 0 ;
2019-02-27 01:35:16 +03:00
int all_devs ;
2018-06-28 22:48:03 +03:00
struct arg_value_group_list * current_group ;
dev_t devno ;
2019-04-05 22:03:38 +03:00
int filtered ;
2018-06-28 22:48:03 +03:00
int do_activate = arg_is_set ( cmd , activate_ARG ) ;
int add_errors = 0 ;
2019-01-16 23:19:09 +03:00
int add_single_count = 0 ;
2018-06-28 22:48:03 +03:00
int ret = ECMD_PROCESSED ;
2019-02-27 01:35:16 +03:00
dm_list_init ( & add_devs ) ;
dm_list_init ( & rem_devs ) ;
2019-02-13 22:35:24 +03:00
dm_list_init ( & vgnames ) ;
if ( do_activate )
complete_vgnames = & vgnames ;
2018-06-28 22:48:03 +03:00
if ( arg_is_set ( cmd , major_ARG ) + arg_is_set ( cmd , minor_ARG ) )
devno_args = 1 ;
if ( devno_args & & ( ! arg_is_set ( cmd , major_ARG ) | | ! arg_is_set ( cmd , minor_ARG ) ) ) {
log_error ( " Both --major and --minor required to identify devices. " ) ;
return EINVALID_CMD_LINE ;
}
2019-02-27 01:35:16 +03:00
if ( argc | | devno_args ) {
log_verbose ( " pvscan devices on command line. " ) ;
cmd - > pvscan_cache_single = 1 ;
all_devs = 0 ;
} else {
all_devs = 1 ;
}
_online_dir_setup ( ) ;
2019-02-26 19:30:11 +03:00
2019-02-27 01:35:16 +03:00
/* Creates a list of dev names from /dev, sysfs, etc; does not read any. */
dev_cache_scan ( ) ;
2018-06-28 22:48:03 +03:00
2019-02-13 22:35:24 +03:00
/*
2019-02-27 01:35:16 +03:00
* For each device command arg ( from either position or - - major / - - minor ) ,
* decide if that device is being added to the system ( a dev node exists
* for it in / dev ) , or being removed from the system ( no dev node exists
* for it in / dev ) . Create entries in add_devs / rem_devs for each arg
* accordingly .
2019-02-13 22:35:24 +03:00
*/
2019-02-27 01:35:16 +03:00
while ( argc ) {
argc - - ;
2018-06-28 22:48:03 +03:00
pv_name = * argv + + ;
if ( pv_name [ 0 ] = = ' / ' ) {
2018-12-04 23:06:46 +03:00
if ( ! ( dev = dev_cache_get ( cmd , pv_name , cmd - > filter ) ) ) {
2018-06-28 22:48:03 +03:00
log_debug ( " pvscan arg %s not found. " , pv_name ) ;
if ( ( dev = dev_cache_get ( cmd , pv_name , NULL ) ) ) {
/* nothing to do for this dev name */
2019-04-05 22:03:38 +03:00
log_print ( " pvscan[%d] device %s excluded by filter. " , getpid ( ) , dev_name ( dev ) ) ;
2018-06-28 22:48:03 +03:00
} else {
log_error ( " Physical Volume %s not found. " , pv_name ) ;
ret = ECMD_FAILED ;
}
} else {
/*
* Scan device . This dev could still be removed
* below if it doesn ' t pass other filters .
*/
log_debug ( " pvscan arg %s found. " , pv_name ) ;
if ( ! ( devl = dm_pool_zalloc ( cmd - > mem , sizeof ( * devl ) ) ) )
return_0 ;
devl - > dev = dev ;
2019-02-27 01:35:16 +03:00
dm_list_add ( & add_devs , & devl - > list ) ;
2018-06-28 22:48:03 +03:00
}
} else {
if ( sscanf ( pv_name , " %d:%d " , & major , & minor ) ! = 2 ) {
log_warn ( " WARNING: Failed to parse major:minor from %s, skipping. " , pv_name ) ;
continue ;
}
2018-11-03 19:13:10 +03:00
devno = MKDEV ( major , minor ) ;
2018-06-28 22:48:03 +03:00
2019-04-05 22:03:38 +03:00
if ( ! ( dev = dev_cache_get_by_devt ( cmd , devno , cmd - > filter , & filtered ) ) ) {
if ( filtered ) {
if ( ( dev = dev_cache_get_by_devt ( cmd , devno , NULL , NULL ) ) )
log_print ( " pvscan[%d] device %d:%d %s excluded by filter. " , getpid ( ) , major , minor , dev_name ( dev ) ) ;
else
log_print ( " pvscan[%d] device %d:%d excluded by filter. " , getpid ( ) , major , minor ) ;
} else
log_print ( " pvscan[%d] device %d:%d not found. " , getpid ( ) , major , minor ) ;
2019-02-27 01:35:16 +03:00
if ( ! ( dev = dm_pool_zalloc ( cmd - > mem , sizeof ( struct device ) ) ) )
return_0 ;
if ( ! ( devl = dm_pool_zalloc ( cmd - > mem , sizeof ( * devl ) ) ) )
return_0 ;
dev - > dev = devno ;
devl - > dev = dev ;
dm_list_add ( & rem_devs , & devl - > list ) ;
2018-06-28 22:48:03 +03:00
} else {
/*
* Scan device . This dev could still be removed
* below if it doesn ' t pass other filters .
*/
log_debug ( " pvscan arg %d:%d found. " , major , minor ) ;
if ( ! ( devl = dm_pool_zalloc ( cmd - > mem , sizeof ( * devl ) ) ) )
return_0 ;
devl - > dev = dev ;
2019-02-27 01:35:16 +03:00
dm_list_add ( & add_devs , & devl - > list ) ;
2018-06-28 22:48:03 +03:00
}
}
}
/* Process any grouped --major --minor args */
dm_list_iterate_items ( current_group , & cmd - > arg_value_groups ) {
major = grouped_arg_int_value ( current_group - > arg_values , major_ARG , major ) ;
minor = grouped_arg_int_value ( current_group - > arg_values , minor_ARG , minor ) ;
if ( major < 0 | | minor < 0 )
continue ;
2018-11-03 19:13:10 +03:00
devno = MKDEV ( major , minor ) ;
2018-06-28 22:48:03 +03:00
2019-04-05 22:03:38 +03:00
if ( ! ( dev = dev_cache_get_by_devt ( cmd , devno , cmd - > filter , & filtered ) ) ) {
if ( filtered ) {
if ( ( dev = dev_cache_get_by_devt ( cmd , devno , NULL , NULL ) ) )
log_print ( " pvscan[%d] device %d:%d %s excluded by filter. " , getpid ( ) , major , minor , dev_name ( dev ) ) ;
else
log_print ( " pvscan[%d] device %d:%d excluded by filter. " , getpid ( ) , major , minor ) ;
} else
log_print ( " pvscan[%d] device %d:%d not found. " , getpid ( ) , major , minor ) ;
2019-02-27 01:35:16 +03:00
if ( ! ( dev = dm_pool_zalloc ( cmd - > mem , sizeof ( struct device ) ) ) )
return_0 ;
if ( ! ( devl = dm_pool_zalloc ( cmd - > mem , sizeof ( * devl ) ) ) )
return_0 ;
dev - > dev = devno ;
devl - > dev = dev ;
dm_list_add ( & rem_devs , & devl - > list ) ;
2018-06-28 22:48:03 +03:00
} else {
log_debug ( " pvscan arg %d:%d found. " , major , minor ) ;
if ( ! ( devl = dm_pool_zalloc ( cmd - > mem , sizeof ( * devl ) ) ) )
return_0 ;
devl - > dev = dev ;
2019-02-27 01:35:16 +03:00
dm_list_add ( & add_devs , & devl - > list ) ;
2018-06-28 22:48:03 +03:00
}
2019-02-27 01:35:16 +03:00
}
2018-06-28 22:48:03 +03:00
2019-02-27 01:35:16 +03:00
/*
* No device args means rescan / regenerate / [ reactivate ] everything .
* Scan all devices when no args are given ; clear all pvid
* files on recreate pvid files for existing devices .
* When - aay is set , any complete vg is activated
* ( even if it ' s already active . )
*/
if ( all_devs ) {
/*
* pvscan - - cache removes existing hints and recreates new ones .
* We begin by clearing hints at the start of the command .
* The pvscan_recreate_hints flag is used to enable the
* special case hint recreation in label_scan .
*/
cmd - > pvscan_recreate_hints = 1 ;
pvscan_recreate_hints_begin ( cmd ) ;
log_verbose ( " pvscan all devices for requested refresh. " ) ;
_online_files_remove ( _pvs_online_dir ) ;
_online_files_remove ( _vgs_online_dir ) ;
_online_pvscan_all_devs ( cmd , complete_vgnames , NULL ) ;
cmd - > pvscan_recreate_hints = 0 ;
cmd - > use_hints = 0 ;
goto activate ;
2018-06-28 22:48:03 +03:00
}
2019-02-27 01:35:16 +03:00
log_verbose ( " pvscan only specific devices add %d rem %d. " ,
dm_list_size ( & add_devs ) , dm_list_size ( & rem_devs ) ) ;
/*
* Unlink online files for devices that no longer have a device node .
* When unlinking a pvid file for dev , we don ' t need to scan the dev
* ( we can ' t since it ' s gone ) , but we know which pvid file it is
* because the major : minor are saved in the pvid files which we can
* read to find the correct one .
*/
dm_list_iterate_items ( devl , & rem_devs )
_online_pvid_file_remove_devno ( ( int ) MAJOR ( devl - > dev - > dev ) , ( int ) MINOR ( devl - > dev - > dev ) ) ;
/*
* Create online files for devices that exist and pass the filter .
* When creating a pvid file for a dev , we have to scan it first
* to know that it ' s ours and what its pvid is ( and which vg it
* belongs to if we want to do autoactivation . )
*/
if ( ! dm_list_empty ( & add_devs ) ) {
label_scan_devs ( cmd , cmd - > filter , & add_devs ) ;
2018-06-28 22:48:03 +03:00
2019-02-27 01:35:16 +03:00
dm_list_iterate_items ( devl , & add_devs ) {
2018-06-28 22:48:03 +03:00
dev = devl - > dev ;
2019-04-05 22:03:38 +03:00
if ( dev - > flags & DEV_FILTER_OUT_SCAN ) {
log_print ( " pvscan[%d] device %s excluded by filter. " , getpid ( ) , dev_name ( dev ) ) ;
2018-06-28 22:48:03 +03:00
continue ;
2019-04-05 22:03:38 +03:00
}
2018-06-28 22:48:03 +03:00
2019-01-16 23:19:09 +03:00
add_single_count + + ;
2019-04-15 19:27:49 +03:00
if ( ! _online_pvscan_one ( cmd , dev , NULL , complete_vgnames , NULL , 0 , & pvid_without_metadata ) )
2018-06-28 22:48:03 +03:00
add_errors + + ;
}
}
2019-02-27 01:35:16 +03:00
/*
* After scanning only specific devs to add a device , there is a
* special case that requires us to then scan all devs . That is when
* the dev scanned has no VG metadata , and it ' s the final device to
* complete the VG . In this case we want to autoactivate the VG , but
* the scanned device does not know what VG it ' s in or whether that VG
* is now complete . In this case we need to scan all devs and pick out
* the complete VG holding this device so we can then autoactivate that
* VG .
*/
if ( ! dm_list_empty ( & add_devs ) & & complete_vgnames & & dm_list_empty ( complete_vgnames ) & &
pvid_without_metadata & & do_activate ) {
log_verbose ( " pvscan all devices for PV without metadata: %s. " , pvid_without_metadata ) ;
_online_pvscan_all_devs ( cmd , complete_vgnames , & add_devs ) ;
}
2019-01-16 23:19:09 +03:00
/*
* When a new PV appears , the system runs pvscan - - cache dev .
* This also means that existing hints are invalid , and
* we can force hints to be refreshed here . There may be
* cases where this detects a change that the other methods
* of detecting invalid hints doesn ' t catch .
*/
if ( add_single_count )
invalidate_hints ( cmd ) ;
2019-02-27 01:35:16 +03:00
activate :
2018-06-28 22:48:03 +03:00
/*
* Step 2 : when the PV was recorded online , we check if all the
* PVs for the VG are online . If so , the vgname was added to the
* list , and we can attempt to autoactivate LVs in the VG .
*/
if ( do_activate )
2019-02-13 22:35:24 +03:00
ret = _pvscan_aa ( cmd , & pp , complete_vgnames ) ;
2018-06-28 22:48:03 +03:00
if ( add_errors | | pp . activate_errors )
ret = ECMD_FAILED ;
if ( ! sync_local_dev_names ( cmd ) )
stack ;
return ret ;
}
2018-07-10 21:39:29 +03:00
int pvscan ( struct cmd_context * cmd , int argc , char * * argv )
{
log_error ( INTERNAL_ERROR " Missing function for command definition %d:%s. " ,
cmd - > command - > command_index , cmd - > command - > command_id ) ;
return ECMD_FAILED ;
}