2001-10-01 19:29:52 +00:00
/*
2004-03-30 19:35:44 +00:00
* Copyright ( C ) 2001 - 2004 Sistina Software , Inc . All rights reserved .
2012-03-12 14:40:41 +00:00
* Copyright ( C ) 2004 - 2012 Red Hat , Inc . All rights reserved .
2001-10-01 19:29:52 +00:00
*
2004-03-30 19:35:44 +00:00
* This file is part of LVM2 .
2001-10-01 19:29:52 +00:00
*
2004-03-30 19:35:44 +00: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-20 20:55:30 +00:00
* of the GNU Lesser General Public License v .2 .1 .
2001-10-01 19:29:52 +00:00
*
2007-08-20 20:55:30 +00:00
* You should have received a copy of the GNU Lesser General Public License
2004-03-30 19:35:44 +00:00
* along with this program ; if not , write to the Free Software Foundation ,
2016-01-21 11:49:46 +01:00
* Inc . , 51 Franklin Street , Fifth Floor , Boston , MA 02110 - 1301 USA
2001-10-01 19:29:52 +00:00
*/
2018-06-08 13:40:53 +01:00
# include "base/memory/zalloc.h"
2018-05-14 10:30:20 +01:00
# include "lib/misc/lib.h"
# include "lib/filters/filter.h"
2001-10-01 19:29:52 +00:00
2018-06-15 11:03:55 -05:00
static int _passes_lvm_type_device_filter ( struct cmd_context * cmd , struct dev_filter * f , struct device * dev )
2001-10-01 19:29:52 +00:00
{
2013-06-12 12:08:56 +02:00
struct dev_types * dt = ( struct dev_types * ) f - > private ;
2001-10-25 14:04:18 +00:00
const char * name = dev_name ( dev ) ;
2001-10-23 12:33:57 +00:00
2001-10-09 17:20:02 +00:00
/* Is this a recognised device type? */
2013-06-12 12:08:56 +02:00
if ( ! dt - > dev_type_array [ MAJOR ( dev - > dev ) ] . max_partitions ) {
2013-01-07 22:30:29 +00:00
log_debug_devs ( " %s: Skipping: Unrecognised LVM device type % "
PRIu64 , name , ( uint64_t ) MAJOR ( dev - > dev ) ) ;
2001-10-09 17:20:02 +00:00
return 0 ;
2003-01-08 16:41:22 +00:00
}
2001-10-23 12:33:57 +00:00
2013-08-13 23:26:58 +01:00
return 1 ;
2001-10-01 19:29:52 +00:00
}
2012-03-12 14:40:41 +00:00
static void _lvm_type_filter_destroy ( struct dev_filter * f )
{
if ( f - > use_count )
log_error ( INTERNAL_ERROR " Destroying lvm_type filter while in use %u times. " , f - > use_count ) ;
2018-06-08 13:40:53 +01:00
free ( f ) ;
2012-03-12 14:40:41 +00:00
}
2013-06-12 12:08:56 +02:00
struct dev_filter * lvm_type_filter_create ( struct dev_types * dt )
2002-12-03 16:20:38 +00:00
{
struct dev_filter * f ;
2018-06-08 13:40:53 +01:00
if ( ! ( f = zalloc ( sizeof ( struct dev_filter ) ) ) ) {
2002-12-03 16:20:38 +00:00
log_error ( " LVM type filter allocation failed " ) ;
return NULL ;
}
f - > passes_filter = _passes_lvm_type_device_filter ;
2012-03-12 14:40:41 +00:00
f - > destroy = _lvm_type_filter_destroy ;
2010-09-22 01:36:13 +00:00
f - > use_count = 0 ;
2013-06-12 12:08:56 +02:00
f - > private = dt ;
2002-12-03 16:20:38 +00:00
2013-08-13 23:26:58 +01:00
log_debug_devs ( " LVM type filter initialised. " ) ;
2002-12-03 16:20:38 +00:00
return f ;
}