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 ,
* Inc . , 59 Temple Place , Suite 330 , Boston , MA 02111 - 1307 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 ;
if ( security_level ( ) )
2005-10-16 23:03:59 +00:00
return dm_strdup ( template ) ;
2004-06-19 18:55:29 +00:00
2006-05-10 17:49:25 +00:00
if ( ! ( filename = dm_malloc ( PATH_MAX ) ) ) {
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 ) ;
2005-10-16 23:03:59 +00:00
dm_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. " ) ;
2005-10-16 23:03:59 +00:00
dm_free ( filename ) ;
2004-06-19 18:55:29 +00:00
return NULL ;
}
2005-10-16 23:03:59 +00:00
dm_free ( * last_filename ) ;
2004-06-19 18:55:29 +00:00
* last_filename = filename ;
return filename ;
}
2002-11-18 14:04:08 +00:00
static int vg_backup_single ( struct cmd_context * cmd , const char * vg_name ,
2009-07-01 17:00:50 +00:00
struct volume_group * vg ,
2002-11-18 14:04:08 +00:00
void * handle )
2001-12-20 16:05:14 +00:00
{
2004-06-19 18:55:29 +00:00
char * * last_filename = ( char * * ) handle ;
char * filename ;
2002-02-11 21:00:35 +00:00
if ( arg_count ( cmd , file_ARG ) ) {
2004-06-19 18:55:29 +00:00
if ( ! ( filename = _expand_filename ( arg_value ( cmd , file_ARG ) ,
vg - > name , last_filename ) ) ) {
stack ;
return ECMD_FAILED ;
}
2002-01-07 09:05:31 +00:00
2009-09-14 22:47:49 +00:00
if ( ! backup_to_file ( filename , vg - > cmd - > cmd_line , vg ) ) {
stack ;
2008-08-13 12:44:24 +00:00
return ECMD_FAILED ;
2009-09-14 22:47:49 +00:00
}
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 " ) ;
stack ;
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 */
2002-01-07 09:05:31 +00:00
if ( ! backup ( vg ) ) {
stack ;
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 ) ;
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 ;
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
2009-09-15 01:38:59 +00:00
ret = process_each_vg ( cmd , argc , argv , READ_ALLOW_INCONSISTENT ,
2009-06-05 20:00:52 +00:00
& last_filename , & vg_backup_single ) ;
2003-04-30 15:25:34 +00:00
2005-10-16 23:03:59 +00:00
dm_free ( last_filename ) ;
2004-06-19 18:55:29 +00:00
2003-04-30 15:25:34 +00:00
init_pvmove ( 0 ) ;
return ret ;
2001-12-20 16:05:14 +00:00
}