2004-04-16 20:12:04 +04:00
/*
* Copyright ( C ) 2004 Luca Berra
2007-08-21 00:55:30 +04:00
* Copyright ( C ) 2004 - 2006 Red Hat , Inc . All rights reserved .
2004-04-16 20:12:04 +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 ,
2016-01-21 13:49:46 +03:00
* Inc . , 51 Franklin Street , Fifth Floor , Boston , MA 02110 - 1301 USA
2004-04-16 20:12:04 +04:00
*/
2018-05-14 12:30:20 +03:00
# include "lib/misc/lib.h"
# include "lib/filters/filter.h"
2004-04-16 20:12:04 +04:00
2013-11-13 17:56:29 +04:00
# ifdef __linux__
2004-04-16 20:12:04 +04:00
2015-09-03 15:19:48 +03:00
# define MSG_SKIPPING "%s: Skipping md component device"
2018-05-04 01:12:07 +03:00
static int _ignore_md ( struct device * dev , int full )
2004-04-16 20:12:04 +04:00
{
2004-11-19 22:25:07 +03:00
int ret ;
if ( ! md_filtering ( ) )
return 1 ;
2018-05-04 01:12:07 +03:00
ret = dev_is_md ( dev , NULL , full ) ;
if ( ret = = - EAGAIN ) {
/* let pass, call again after scan */
dev - > flags | = DEV_FILTER_AFTER_SCAN ;
log_debug_devs ( " filter md deferred %s " , dev_name ( dev ) ) ;
return 1 ;
}
2004-04-16 20:12:04 +04:00
2004-11-18 23:02:21 +03:00
if ( ret = = 1 ) {
2015-09-03 15:19:48 +03:00
if ( dev - > ext . src = = DEV_EXT_NONE )
log_debug_devs ( MSG_SKIPPING , dev_name ( dev ) ) ;
else
log_debug_devs ( MSG_SKIPPING " [%s:%p] " , dev_name ( dev ) ,
dev_ext_name ( dev ) , dev - > ext . handle ) ;
2004-04-16 20:12:04 +04:00
return 0 ;
}
2004-11-18 23:02:21 +03:00
if ( ret < 0 ) {
2013-01-08 02:30:29 +04:00
log_debug_devs ( " %s: Skipping: error in md component detection " ,
dev_name ( dev ) ) ;
2004-04-16 20:12:04 +04:00
return 0 ;
}
return 1 ;
}
2018-05-04 01:12:07 +03:00
static int _ignore_md_lite ( struct dev_filter * f __attribute__ ( ( unused ) ) ,
struct device * dev )
{
return _ignore_md ( dev , 0 ) ;
}
static int _ignore_md_full ( struct dev_filter * f __attribute__ ( ( unused ) ) ,
struct device * dev )
{
return _ignore_md ( dev , 1 ) ;
}
2004-04-16 20:12:04 +04:00
static void _destroy ( struct dev_filter * f )
{
2010-09-22 05:36:13 +04:00
if ( f - > use_count )
2010-09-22 05:50:38 +04:00
log_error ( INTERNAL_ERROR " Destroying md filter while in use %u times. " , f - > use_count ) ;
2010-09-22 05:36:13 +04:00
2005-10-17 03:03:59 +04:00
dm_free ( f ) ;
2004-04-16 20:12:04 +04:00
}
2018-05-04 01:12:07 +03:00
struct dev_filter * md_filter_create ( struct cmd_context * cmd , struct dev_types * dt )
2004-04-16 20:12:04 +04:00
{
struct dev_filter * f ;
2012-08-18 20:59:07 +04:00
if ( ! ( f = dm_zalloc ( sizeof ( * f ) ) ) ) {
2004-04-16 20:12:04 +04:00
log_error ( " md filter allocation failed " ) ;
return NULL ;
}
2018-05-04 01:12:07 +03:00
/*
* FIXME : for commands that want a full md check ( pvcreate , vgcreate ,
* vgextend ) , we do an extra read at the end of every device that the
* filter looks at . This isn ' t necessary ; we only need to do the full
* md check on the PVs that these commands are trying to use .
*/
if ( cmd - > use_full_md_check )
f - > passes_filter = _ignore_md_full ;
else
f - > passes_filter = _ignore_md_lite ;
2004-04-16 20:12:04 +04:00
f - > destroy = _destroy ;
2010-09-22 05:36:13 +04:00
f - > use_count = 0 ;
2013-06-12 14:08:56 +04:00
f - > private = dt ;
2004-04-16 20:12:04 +04:00
2013-08-14 02:26:58 +04:00
log_debug_devs ( " MD filter initialised. " ) ;
2004-04-16 20:12:04 +04:00
return f ;
}
# else
2013-06-12 14:08:56 +04:00
struct dev_filter * md_filter_create ( struct dev_types * dt )
2004-04-16 20:12:04 +04:00
{
return NULL ;
}
# endif