4 * Copyright (C) 2001-2004 Sistina Software, Inc. All rights reserved.
5 * Copyright (C) 2004-2007 Red Hat, Inc. All rights reserved.
7 * This file is part of LVM2.
9 * This copyrighted material is made available to anyone wishing to use,
10 * modify, copy, or redistribute it subject to the terms and conditions
11 * of the GNU Lesser General Public License v.2.1.
13 * You should have received a copy of the GNU Lesser General Public License
14 * along with this program; if not, write to the Free Software Foundation,
15 * Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20 static char *_expand_filename(const char *template, const char *vg_name
,
26 return dm_strdup(template);
28 if (!(filename
= dm_malloc(PATH_MAX
))) {
29 log_error("Failed to allocate filename.");
33 if (snprintf(filename
, PATH_MAX
, template, vg_name
) < 0) {
34 log_error("Error processing filename template %s",
39 if (*last_filename
&& !strncmp(*last_filename
, filename
, PATH_MAX
)) {
40 log_error("VGs must be backed up into different files. "
41 "Use %%s in filename for VG name.");
46 dm_free(*last_filename
);
47 *last_filename
= filename
;
52 static int vg_backup_single(struct cmd_context
*cmd
, const char *vg_name
,
53 struct volume_group
*vg
,
56 char **last_filename
= (char **)handle
;
59 if (arg_count(cmd
, file_ARG
)) {
60 if (!(filename
= _expand_filename(arg_value(cmd
, file_ARG
),
61 vg
->name
, last_filename
))) {
66 if (!backup_to_file(filename
, vg
->cmd
->cmd_line
, vg
)) {
71 if (vg_read_error(vg
) == FAILED_INCONSISTENT
) {
72 log_error("No backup taken: specify filename with -f "
73 "to backup an inconsistent VG");
78 /* just use the normal backup code */
79 backup_enable(cmd
, 1); /* force a backup */
86 log_print("Volume group \"%s\" successfully backed up.", vg_name
);
87 return ECMD_PROCESSED
;
90 int vgcfgbackup(struct cmd_context
*cmd
, int argc
, char **argv
)
93 char *last_filename
= NULL
;
97 ret
= process_each_vg(cmd
, argc
, argv
, READ_ALLOW_INCONSISTENT
,
98 &last_filename
, &vg_backup_single
);
100 dm_free(last_filename
);