2001-12-20 16:05:14 +00:00
/*
2008-01-30 14:00:02 +00:00
* Copyright ( C ) 2001 - 2004 Sistina Software , Inc . All rights reserved .
2007-08-20 20:55:30 +00:00
* Copyright ( C ) 2004 - 2007 Red Hat , Inc . All rights reserved .
2001-12-20 16:05:14 +00:00
*
2004-03-30 19:35:44 +00: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-20 20:55:30 +00:00
* of the GNU Lesser General Public License v .2 .1 .
2004-03-30 19:35:44 +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-12-20 16:05:14 +00:00
*/
# include "tools.h"
2004-06-19 18:55:29 +00:00
static char * _expand_filename ( const char * template , const char * vg_name ,
char * * last_filename )
{
char * filename ;
2017-11-05 18:39:05 +01:00
if ( security_level ( ) ) {
2018-06-08 13:40:53 +01:00
if ( ! ( filename = strdup ( template ) ) ) {
2017-11-05 18:39:05 +01:00
log_error ( " Failed to allocate filename. " ) ;
return NULL ;
}
goto out ;
}
2004-06-19 18:55:29 +00:00
2018-06-08 13:40:53 +01:00
if ( ! ( filename = malloc ( PATH_MAX ) ) ) {
2006-05-10 17:49:25 +00:00
log_error ( " Failed to allocate filename. " ) ;
return NULL ;
}
2012-02-08 11:40:02 +00:00
if ( dm_snprintf ( filename , PATH_MAX , template , vg_name ) < 0 ) {
2004-06-19 18:55:29 +00:00
log_error ( " Error processing filename template %s " ,
template ) ;
2018-06-08 13:40:53 +01:00
free ( filename ) ;
2004-06-19 18:55:29 +00:00
return NULL ;
}
2008-08-13 12:44:24 +00:00
if ( * last_filename & & ! strncmp ( * last_filename , filename , PATH_MAX ) ) {
2004-06-19 18:55:29 +00:00
log_error ( " VGs must be backed up into different files. "
" Use %%s in filename for VG name. " ) ;
2018-06-08 13:40:53 +01:00
free ( filename ) ;
2004-06-19 18:55:29 +00:00
return NULL ;
}
2017-11-05 18:39:05 +01:00
out :
2018-06-08 13:40:53 +01:00
free ( * last_filename ) ;
2004-06-19 18:55:29 +00:00
* last_filename = filename ;
return filename ;
}
2017-10-18 15:57:46 +01:00
static int _vg_backup_single ( struct cmd_context * cmd , const char * vg_name ,
struct volume_group * vg ,
struct processing_handle * handle )
2001-12-20 16:05:14 +00:00
{
2014-11-27 15:02:13 +01:00
char * * last_filename = ( char * * ) handle - > custom_handle ;
2004-06-19 18:55:29 +00:00
char * filename ;
2016-06-21 22:24:52 +01:00
if ( arg_is_set ( cmd , file_ARG ) ) {
2004-06-19 18:55:29 +00:00
if ( ! ( filename = _expand_filename ( arg_value ( cmd , file_ARG ) ,
2013-07-01 11:27:22 +02:00
vg - > name , last_filename ) ) )
return_ECMD_FAILED ;
2002-01-07 09:05:31 +00:00
2013-07-01 11:27:22 +02:00
if ( ! backup_to_file ( filename , vg - > cmd - > cmd_line , vg ) )
return_ECMD_FAILED ;
2002-01-07 09:05:31 +00:00
} else {
2009-07-01 17:00:50 +00:00
if ( vg_read_error ( vg ) = = FAILED_INCONSISTENT ) {
2002-11-18 14:04:08 +00:00
log_error ( " No backup taken: specify filename with -f "
" to backup an inconsistent VG " ) ;
return ECMD_FAILED ;
}
2002-01-07 09:05:31 +00:00
/* just use the normal backup code */
2005-05-17 13:46:38 +00:00
backup_enable ( cmd , 1 ) ; /* force a backup */
2013-07-01 11:27:22 +02:00
if ( ! backup ( vg ) )
return_ECMD_FAILED ;
2001-12-20 16:05:14 +00:00
}
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 20:35:48 +01:00
log_print_unless_silent ( " Volume group \" %s \" successfully backed up. " , vg_name ) ;
2013-07-01 11:27:11 +02:00
2003-10-21 22:06:07 +00:00
return ECMD_PROCESSED ;
2001-12-20 16:05:14 +00:00
}
2002-02-11 20:50:53 +00:00
int vgcfgbackup ( struct cmd_context * cmd , int argc , char * * argv )
2001-12-20 16:05:14 +00:00
{
2003-04-30 15:25:34 +00:00
int ret ;
2004-06-19 18:55:29 +00:00
char * last_filename = NULL ;
2015-02-13 10:36:06 +01:00
struct processing_handle * handle = NULL ;
2016-05-31 12:24:05 +02:00
if ( ! ( handle = init_processing_handle ( cmd , NULL ) ) ) {
2015-02-13 10:36:06 +01:00
log_error ( " Failed to initialize processing handle. " ) ;
return ECMD_FAILED ;
}
handle - > custom_handle = & last_filename ;
2003-04-30 15:25:34 +00:00
2008-09-19 06:42:00 +00:00
init_pvmove ( 1 ) ;
2003-04-30 15:25:34 +00:00
2016-05-03 11:46:28 +02:00
ret = process_each_vg ( cmd , argc , argv , NULL , NULL , READ_ALLOW_INCONSISTENT , 0 ,
2017-10-18 15:57:46 +01:00
handle , & _vg_backup_single ) ;
2003-04-30 15:25:34 +00:00
2018-06-08 13:40:53 +01:00
free ( last_filename ) ;
2004-06-19 18:55:29 +00:00
2003-04-30 15:25:34 +00:00
init_pvmove ( 0 ) ;
2015-02-13 10:42:21 +01:00
destroy_processing_handle ( cmd , handle ) ;
2003-04-30 15:25:34 +00:00
return ret ;
2001-12-20 16:05:14 +00:00
}