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