2004-05-11 20:01:58 +04:00
/*
2007-08-21 00:55:30 +04:00
* Copyright ( C ) 2004 - 2007 Red Hat , Inc . All rights reserved .
2004-05-11 20:01:58 +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-05-11 20:01:58 +04:00
*
2007-08-21 00:55:30 +04:00
* You should have received a copy of the GNU Lesser General Public License
2004-05-11 20:01:58 +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
2004-05-11 20:01:58 +04:00
*/
2018-06-08 15:40:53 +03:00
# include "base/memory/zalloc.h"
2018-05-14 12:30:20 +03:00
# include "lib/misc/lib.h"
# include "lib/metadata/segtype.h"
# include "lib/datastruct/str_list.h"
# include "lib/activate/activate.h"
2004-05-11 20:01:58 +04:00
2006-04-19 19:33:07 +04:00
static int _zero_merge_segments ( struct lv_segment * seg1 , struct lv_segment * seg2 )
2004-05-11 20:01:58 +04:00
{
seg1 - > len + = seg2 - > len ;
seg1 - > area_len + = seg2 - > area_len ;
return 1 ;
}
# ifdef DEVMAPPER_SUPPORT
2010-07-09 19:34:40 +04:00
static int _zero_add_target_line ( struct dev_manager * dm __attribute__ ( ( unused ) ) ,
struct dm_pool * mem __attribute__ ( ( unused ) ) ,
struct cmd_context * cmd __attribute__ ( ( unused ) ) ,
void * * target_state __attribute__ ( ( unused ) ) ,
struct lv_segment * seg __attribute__ ( ( unused ) ) ,
2011-06-17 18:14:19 +04:00
const struct lv_activate_opts * laopts __attribute__ ( ( unused ) ) ,
2008-01-30 17:00:02 +03:00
struct dm_tree_node * node , uint64_t len ,
2010-07-09 19:34:40 +04:00
uint32_t * pvmove_mirror_count __attribute__ ( ( unused ) ) )
2004-05-11 20:01:58 +04:00
{
2005-11-09 16:08:41 +03:00
return dm_tree_node_add_zero_target ( node , len ) ;
2004-05-11 20:01:58 +04:00
}
2009-02-28 23:04:24 +03:00
static int _zero_target_present ( struct cmd_context * cmd ,
2010-07-09 19:34:40 +04:00
const struct lv_segment * seg __attribute__ ( ( unused ) ) ,
unsigned * attributes __attribute__ ( ( unused ) ) )
2004-05-11 20:01:58 +04:00
{
2006-04-19 19:33:07 +04:00
static int _zero_checked = 0 ;
static int _zero_present = 0 ;
2004-05-11 20:01:58 +04:00
2015-12-17 14:23:33 +03:00
if ( ! activation ( ) )
return 0 ;
2004-05-11 20:01:58 +04:00
2015-12-17 14:23:33 +03:00
if ( ! _zero_checked ) {
_zero_checked = 1 ;
2016-03-22 20:46:15 +03:00
_zero_present = target_present ( cmd , TARGET_NAME_ZERO , 1 ) ;
2015-12-17 14:23:33 +03:00
}
2006-04-19 19:33:07 +04:00
return _zero_present ;
2004-05-11 20:01:58 +04:00
}
2006-10-03 21:55:20 +04:00
static int _zero_modules_needed ( struct dm_pool * mem ,
2010-07-09 19:34:40 +04:00
const struct lv_segment * seg __attribute__ ( ( unused ) ) ,
2008-11-04 01:14:30 +03:00
struct dm_list * modules )
2006-10-03 21:55:20 +04:00
{
2016-03-22 20:46:15 +03:00
if ( ! str_list_add ( mem , modules , MODULE_NAME_ZERO ) ) {
2006-10-03 21:55:20 +04:00
log_error ( " zero module string list allocation failed " ) ;
return 0 ;
}
return 1 ;
}
2014-04-30 01:41:17 +04:00
# endif
2006-10-03 21:55:20 +04:00
2010-12-20 16:32:49 +03:00
static void _zero_destroy ( struct segment_type * segtype )
2004-05-11 20:01:58 +04:00
{
2018-06-08 15:40:53 +03:00
free ( segtype ) ;
2004-05-11 20:01:58 +04:00
}
2024-05-03 12:59:05 +03:00
static const struct segtype_handler _zero_ops = {
2006-05-10 01:23:51 +04:00
. merge_segments = _zero_merge_segments ,
2004-05-11 20:01:58 +04:00
# ifdef DEVMAPPER_SUPPORT
2006-05-10 01:23:51 +04:00
. add_target_line = _zero_add_target_line ,
. target_present = _zero_target_present ,
2006-10-03 21:55:20 +04:00
. modules_needed = _zero_modules_needed ,
2014-04-30 01:41:17 +04:00
# endif
2006-05-10 01:23:51 +04:00
. destroy = _zero_destroy ,
2004-05-11 20:01:58 +04:00
} ;
struct segment_type * init_zero_segtype ( struct cmd_context * cmd )
{
2018-06-08 15:40:53 +03:00
struct segment_type * segtype = zalloc ( sizeof ( * segtype ) ) ;
2004-05-11 20:01:58 +04:00
2008-01-30 16:19:47 +03:00
if ( ! segtype )
return_NULL ;
2004-05-11 20:01:58 +04:00
segtype - > ops = & _zero_ops ;
2015-09-22 21:04:12 +03:00
segtype - > name = SEG_TYPE_NAME_ZERO ;
2005-11-09 01:52:26 +03:00
segtype - > flags = SEG_CAN_SPLIT | SEG_VIRTUAL | SEG_CANNOT_BE_ZEROED ;
2004-05-11 20:01:58 +04:00
2004-09-14 21:37:51 +04:00
log_very_verbose ( " Initialised segtype: %s " , segtype - > name ) ;
2004-05-11 20:01:58 +04:00
return segtype ;
}