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 ,
* Inc . , 59 Temple Place , Suite 330 , Boston , MA 02111 - 1307 USA
*/
# include "lib.h"
# include "toolcontext.h"
2004-09-16 22:40:56 +04:00
# include "segtype.h"
2004-05-11 20:01:58 +04:00
# include "display.h"
# include "text_export.h"
# include "text_import.h"
# include "config.h"
# include "str_list.h"
# include "targets.h"
# include "lvm-string.h"
# include "activate.h"
2007-07-18 19:38:58 +04:00
# include "metadata.h"
2004-05-11 20:01:58 +04:00
2006-04-19 19:33:07 +04:00
static const char * _zero_name ( const struct lv_segment * seg )
2004-05-11 20:01:58 +04:00
{
return seg - > segtype - > name ;
}
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
2006-05-10 01:23:51 +04:00
static int _zero_add_target_line ( struct dev_manager * dm __attribute ( ( unused ) ) ,
struct dm_pool * mem __attribute ( ( unused ) ) ,
2006-05-16 20:48:31 +04:00
struct cmd_context * cmd __attribute ( ( unused ) ) ,
2006-05-10 01:23:51 +04:00
void * * target_state __attribute ( ( unused ) ) ,
struct lv_segment * seg __attribute ( ( unused ) ) ,
struct dm_tree_node * node , uint64_t len ,
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
}
2006-10-18 22:01:53 +04:00
static int _zero_target_present ( const struct lv_segment * seg __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
2006-04-19 19:33:07 +04:00
if ( ! _zero_checked )
_zero_present = target_present ( " zero " , 0 ) ;
2004-05-11 20:01:58 +04:00
2006-04-19 19:33:07 +04:00
_zero_checked = 1 ;
return _zero_present ;
2004-05-11 20:01:58 +04:00
}
# endif
2006-10-03 21:55:20 +04:00
static int _zero_modules_needed ( struct dm_pool * mem ,
2007-08-22 18:38:18 +04:00
const struct lv_segment * seg __attribute ( ( unused ) ) ,
2006-10-03 21:55:20 +04:00
struct list * modules )
{
if ( ! str_list_add ( mem , modules , " zero " ) ) {
log_error ( " zero module string list allocation failed " ) ;
return 0 ;
}
return 1 ;
}
2006-04-19 19:33:07 +04:00
static void _zero_destroy ( const struct segment_type * segtype )
2004-05-11 20:01:58 +04:00
{
2005-10-17 03:03:59 +04:00
dm_free ( ( void * ) segtype ) ;
2004-05-11 20:01:58 +04:00
}
static struct segtype_handler _zero_ops = {
2006-05-10 01:23:51 +04:00
. name = _zero_name ,
. 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 ,
2004-05-11 20:01:58 +04:00
# endif
2006-10-03 21:55:20 +04:00
. modules_needed = _zero_modules_needed ,
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 )
{
2005-10-17 03:03:59 +04:00
struct segment_type * segtype = dm_malloc ( sizeof ( * segtype ) ) ;
2004-05-11 20:01:58 +04:00
if ( ! segtype ) {
stack ;
return NULL ;
}
segtype - > cmd = cmd ;
segtype - > ops = & _zero_ops ;
segtype - > name = " zero " ;
segtype - > private = NULL ;
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 ;
}