1
0
mirror of git://sourceware.org/git/lvm2.git synced 2024-10-27 10:25:13 +03:00
lvm2/tools/lvrename.c

127 lines
3.4 KiB
C
Raw Normal View History

2001-11-15 20:27:45 +03:00
/*
2008-01-30 17:00:02 +03:00
* Copyright (C) 2001-2004 Sistina Software, Inc. All rights reserved.
* Copyright (C) 2004-2007 Red Hat, Inc. All rights reserved.
2001-11-15 20:27:45 +03:00
*
2004-03-30 23:35:44 +04:00
* This file is part of LVM2.
2001-11-15 20:27:45 +03:00
*
2004-03-30 23:35:44 +04:00
* This copyrighted material is made available to anyone wishing to use,
* modify, copy, or redistribute it subject to the terms and conditions
* of the GNU Lesser General Public License v.2.1.
2001-11-15 20:27:45 +03: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-11-15 20:27:45 +03:00
*/
#include "tools.h"
#include "lvm-types.h"
2001-11-15 20:27:45 +03:00
/*
* lvrename command implementation.
* Check arguments and call lv_rename() to execute the request.
*/
int lvrename(struct cmd_context *cmd, int argc, char **argv)
2001-11-15 20:27:45 +03:00
{
size_t maxlen;
2001-11-15 20:27:45 +03:00
char *lv_name_old, *lv_name_new;
const char *vg_name, *vg_name_new, *vg_name_old;
2001-11-15 20:27:45 +03:00
char *st;
int r = ECMD_FAILED;
2001-11-15 20:27:45 +03:00
struct volume_group *vg = NULL;
struct lv_list *lvl;
2001-11-15 20:27:45 +03:00
2002-09-05 16:49:23 +04:00
if (argc == 3) {
vg_name = skip_dev_dir(cmd, argv[0], NULL);
2002-09-05 16:49:23 +04:00
lv_name_old = argv[1];
lv_name_new = argv[2];
if (strchr(lv_name_old, '/') &&
(vg_name_old = extract_vgname(cmd, lv_name_old)) &&
strcmp(vg_name_old, vg_name)) {
log_error("Please use a single volume group name "
"(\"%s\" or \"%s\")", vg_name, vg_name_old);
return EINVALID_CMD_LINE;
}
} else if (argc == 2) {
lv_name_old = argv[0];
lv_name_new = argv[1];
vg_name = extract_vgname(cmd, lv_name_old);
} else {
log_error("Old and new logical volume names required");
2001-11-15 20:27:45 +03:00
return EINVALID_CMD_LINE;
}
2003-02-03 23:09:58 +03:00
if (!validate_name(vg_name)) {
2002-09-05 16:49:23 +04:00
log_error("Please provide a valid volume group name");
2001-11-15 20:27:45 +03:00
return EINVALID_CMD_LINE;
}
if (strchr(lv_name_new, '/') &&
(vg_name_new = extract_vgname(cmd, lv_name_new)) &&
2001-11-15 20:27:45 +03:00
strcmp(vg_name, vg_name_new)) {
log_error("Logical volume names must "
2002-01-30 18:04:48 +03:00
"have the same volume group (\"%s\" or \"%s\")",
2001-11-15 20:27:45 +03:00
vg_name, vg_name_new);
return EINVALID_CMD_LINE;
}
if ((st = strrchr(lv_name_old, '/')))
lv_name_old = st + 1;
if ((st = strrchr(lv_name_new, '/')))
lv_name_new = st + 1;
/* Check sanity of new name */
maxlen = NAME_LEN - strlen(vg_name) - strlen(cmd->dev_dir) - 3;
2001-11-15 20:27:45 +03:00
if (strlen(lv_name_new) > maxlen) {
log_error("New logical volume path exceeds maximum length "
"of %" PRIsize_t "!", maxlen);
2001-11-15 20:27:45 +03:00
return ECMD_FAILED;
}
if (!*lv_name_new) {
log_error("New logical volume name may not be blank");
return ECMD_FAILED;
}
if (!apply_lvname_restrictions(lv_name_new)) {
stack;
2002-11-18 17:04:08 +03:00
return ECMD_FAILED;
}
2003-02-03 23:09:58 +03:00
if (!validate_name(lv_name_new)) {
log_error("New logical volume name \"%s\" is invalid",
lv_name_new);
2001-11-15 20:27:45 +03:00
return EINVALID_CMD_LINE;
}
if (!strcmp(lv_name_old, lv_name_new)) {
log_error("Old and new logical volume names must differ");
return EINVALID_CMD_LINE;
}
2002-01-30 18:04:48 +03:00
log_verbose("Checking for existing volume group \"%s\"", vg_name);
if (!(vg = vg_lock_and_read(cmd, vg_name, NULL, LCK_VG_WRITE,
CLUSTERED | EXPORTED_VG | LVM_WRITE,
CORRECT_INCONSISTENT | FAIL_INCONSISTENT)))
return ECMD_FAILED;
if (!(lvl = find_lv_in_vg(vg, lv_name_old))) {
2002-01-30 18:04:48 +03:00
log_error("Existing logical volume \"%s\" not found in "
"volume group \"%s\"", lv_name_old, vg_name);
goto error;
2001-11-15 20:27:45 +03:00
}
if (!lv_rename(cmd, lvl->lv, lv_name_new))
2006-08-19 01:19:54 +04:00
goto error;
2002-01-30 18:04:48 +03:00
log_print("Renamed \"%s\" to \"%s\" in volume group \"%s\"",
lv_name_old, lv_name_new, vg_name);
2001-11-15 20:27:45 +03:00
r = ECMD_PROCESSED;
error:
2009-05-21 07:04:52 +04:00
unlock_and_release_vg(cmd, vg, vg_name);
return r;
2001-11-15 20:27:45 +03:00
}