/* * Copyright (C) 2001 Sistina Software * * LVM is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2, or (at your option) * any later version. * * LVM is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with LVM; see the file COPYING. If not, write to * the Free Software Foundation, 59 Temple Place - Suite 330, * Boston, MA 02111-1307, USA. * */ #include "tools.h" int lvresize(struct cmd_context *cmd, int argc, char **argv) { struct volume_group *vg; struct logical_volume *lv; uint32_t extents = 0; uint32_t size = 0; uint32_t stripes = 0, stripesize = 0; uint32_t seg_stripes = 0, seg_stripesize = 0, seg_size = 0; uint32_t size_rest; sign_t sign = SIGN_NONE; char *lv_name, *vg_name; char lvidbuf[128]; char *st; char *dummy; const char *cmd_name; struct list *pvh, *segh; struct lv_list *lvl; int opt = 0; enum { LV_ANY = 0, LV_REDUCE = 1, LV_EXTEND = 2 } resize = LV_ANY; cmd_name = command_name(cmd); if (!strcmp(cmd_name, "lvreduce")) resize = LV_REDUCE; if (!strcmp(cmd_name, "lvextend")) resize = LV_EXTEND; if (arg_count(cmd, extents_ARG) + arg_count(cmd, size_ARG) != 1) { log_error("Please specify either size or extents (not both)"); return EINVALID_CMD_LINE; } if (arg_count(cmd, extents_ARG)) { extents = arg_int_value(cmd, extents_ARG, 0); sign = arg_sign_value(cmd, extents_ARG, SIGN_NONE); } if (arg_count(cmd, size_ARG)) { size = arg_int_value(cmd, size_ARG, 0); sign = arg_sign_value(cmd, size_ARG, SIGN_NONE); } if (resize == LV_EXTEND && sign == SIGN_MINUS) { log_error("Negative argument not permitted - use lvreduce"); return EINVALID_CMD_LINE; } if (resize == LV_REDUCE && sign == SIGN_PLUS) { log_error("Positive sign not permitted - use lvextend"); return EINVALID_CMD_LINE; } if (arg_count(cmd, stripes_ARG)) { log_print("Varied striping not yet supported. Ignoring."); /* FUTURE stripes = arg_int_value(cmd,stripes_ARG, 1); */ } if (arg_count(cmd, stripesize_ARG)) { log_print("Varied stripesize not yet supported. Ignoring."); /* FUTURE stripesize = 2 * arg_int_value(cmd,stripesize_ARG, 0); */ } if (!argc) { log_error("Please provide the logical volume name"); return EINVALID_CMD_LINE; } lv_name = argv[0]; argv++; argc--; if (!(vg_name = extract_vgname(cmd->fid, lv_name))) { log_error("Please provide a volume group name"); return EINVALID_CMD_LINE; } if ((st = strrchr(lv_name, '/'))) lv_name = st + 1; /* does VG exist? */ log_verbose("Finding volume group %s", vg_name); if (!lock_vol(cmd, vg_name, LCK_VG | LCK_WRITE)) { log_error("Can't get lock for %s", vg_name); return ECMD_FAILED; } if (!(vg = cmd->fid->ops->vg_read(cmd->fid, vg_name))) { log_error("Volume group %s doesn't exist", vg_name); goto error; } if (vg->status & EXPORTED_VG) { log_error("Volume group %s is exported", vg->name); goto error; } if (!(vg->status & LVM_WRITE)) { log_error("Volume group %s is read-only", vg_name); goto error; } /* does LV exist? */ if (!(lvl = find_lv_in_vg(vg, lv_name))) { log_error("Logical volume %s not found in volume group %s", lv_name, vg_name); goto error; } lv = lvl->lv; if (size) { /* No of 512-byte sectors */ extents = size * 2; if (extents % vg->extent_size) { char *s1; if (sign == SIGN_MINUS) extents -= extents % vg->extent_size; else extents += vg->extent_size - (extents % vg->extent_size); log_print("Rounding up size to full physical extent %s", (s1 = display_size(extents / 2, SIZE_SHORT))); dbg_free(s1); } extents /= vg->extent_size; } if (sign == SIGN_PLUS) extents += lv->le_count; if (sign == SIGN_MINUS) { if (extents >= lv->le_count) { log_error("Unable to reduce %s below 1 extent", lv_name); goto error_cmdline; } extents = lv->le_count - extents; } if (!extents) { log_error("New size of 0 not permitted"); goto error_cmdline; } if (extents == lv->le_count) { log_error("New size (%d extents) matches existing size " "(%d extents)", extents, lv->le_count); goto error_cmdline; } /* If extending, find stripes, stripesize & size of last segment */ if (extents > lv->le_count && !(stripes == 1 || (stripes > 1 && stripesize))) { list_iterate(segh, &lv->segments) { struct stripe_segment *seg; uint32_t sz, str; seg = list_item(segh, struct stripe_segment); sz = seg->stripe_size; str = seg->stripes; if ((seg_stripesize && seg_stripesize != sz && !stripesize) || (seg_stripes && seg_stripes != str && !stripes)) { log_error("Please specify number of " "stripes (-i) and stripesize (-I)"); goto error_cmdline; } seg_stripesize = sz; seg_stripes = str; } if (!stripes) stripes = seg_stripes; if (!stripesize && stripes > 1) stripesize = seg_stripesize; seg_size = extents - lv->le_count; } /* If reducing, find stripes, stripesize & size of last segment */ if (extents < lv->le_count) { uint32_t extents_used = 0; if (stripes || stripesize) log_error("Ignoring stripes and stripesize arguments " "when reducing"); list_iterate(segh, &lv->segments) { struct stripe_segment *seg; uint32_t seg_extents; seg = list_item(segh, struct stripe_segment); seg_extents = seg->len; seg_stripesize = seg->stripe_size; seg_stripes = seg->stripes; if (extents <= extents_used + seg_extents) break; extents_used += seg_extents; } seg_size = extents - extents_used; stripesize = seg_stripesize; stripes = seg_stripes; } if ((size_rest = seg_size % stripes)) { log_print("Rounding size (%d extents) down to stripe boundary " "size of last segment (%d extents)", extents, extents - size_rest); extents = extents - size_rest; } if (extents == lv->le_count) { log_error("New size (%d extents) matches existing size " "(%d extents)", extents, lv->le_count); goto error_cmdline; } if (extents < lv->le_count) { if (resize == LV_EXTEND) { log_error("New size given (%d extents) not larger " "than existing size (%d extents)", extents, lv->le_count); goto error_cmdline; } else resize = LV_REDUCE; } if (extents > lv->le_count) { if (resize == LV_REDUCE) { log_error("New size given (%d extents) not less than " "existing size (%d extents)", extents, lv->le_count); goto error_cmdline; } else resize = LV_EXTEND; } if (resize == LV_REDUCE) { if (argc) log_print("Ignoring PVs on command line when reducing"); if (lv_active(lv) > 0) { dummy = display_size((uint64_t) extents * (vg->extent_size / 2), SIZE_SHORT); log_print("WARNING: Reducing active%s logical volume " "to %s", lv_open_count(lv) ? " and open" : "", dummy); log_print("THIS MAY DESTROY YOUR DATA " "(filesystem etc.)"); dbg_free(dummy); } if (!arg_count(cmd, force_ARG)) { if (yes_no_prompt("Do you really want to reduce %s?" " [y/n]: ", lv_name) == 'n') { log_print("Logical volume %s NOT reduced", lv_name); goto error; } } if (!archive(vg)) goto error; if (!lv_reduce(cmd->fid, lv, lv->le_count - extents)) goto error; } if ((resize == LV_EXTEND && argc) && !(pvh = create_pv_list(cmd->mem, vg, argc - opt, argv + opt))) { stack; goto error; } if (resize == LV_EXTEND) { if (!archive(vg)) goto error; if (!argc) { /* Use full list from VG */ pvh = &vg->pvs; } dummy = display_size((uint64_t) extents * (vg->extent_size / 2), SIZE_SHORT); log_print("Extending logical volume %s to %s", lv_name, dummy); dbg_free(dummy); if (!lv_extend(cmd->fid, lv, stripes, stripesize, extents - lv->le_count, pvh)) goto error; } if (!lvid(lv, lvidbuf, sizeof(lvidbuf))) goto error; if (!lock_vol(cmd, lvidbuf, LCK_LV | LCK_WRITE)) { log_error("Can't get lock for %s", lv_name); goto error; } /* store vg on disk(s) */ if (!cmd->fid->ops->vg_write(cmd->fid, vg)) { /* FIXME: Attempt reversion? */ lock_vol(cmd, lvidbuf, LCK_LV | LCK_NONE); goto error; } backup(vg); if (!lock_vol(cmd, lvidbuf, LCK_LV | LCK_NONE)) { log_error("Problem reactivating %s", lv_name); goto error; } lock_vol(cmd, vg_name, LCK_VG | LCK_NONE); log_print("Logical volume %s successfully resized", lv_name); return 0; error: lock_vol(cmd, vg_name, LCK_VG | LCK_NONE); return ECMD_FAILED; error_cmdline: lock_vol(cmd, vg_name, LCK_VG | LCK_NONE); return EINVALID_CMD_LINE; }