]> sourceware.org Git - lvm2.git/blame - tools/lvresize.c
Check for duplicate paths (pvids) on the commandline of vgcreate.
[lvm2.git] / tools / lvresize.c
CommitLineData
03a8a07d 1/*
1832f310 2 * Copyright (C) 2001-2004 Sistina Software, Inc. All rights reserved.
c8669f6b 3 * Copyright (C) 2004-2009 Red Hat, Inc. All rights reserved.
03a8a07d 4 *
6606c3ae 5 * This file is part of LVM2.
03a8a07d 6 *
6606c3ae
AK
7 * This copyrighted material is made available to anyone wishing to use,
8 * modify, copy, or redistribute it subject to the terms and conditions
be684599 9 * of the GNU Lesser General Public License v.2.1.
03a8a07d 10 *
be684599 11 * You should have received a copy of the GNU Lesser General Public License
6606c3ae
AK
12 * along with this program; if not, write to the Free Software Foundation,
13 * Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
03a8a07d
AK
14 */
15
16#include "tools.h"
17
1a9ea74d
AK
18#define SIZE_BUF 128
19
241913fe 20struct lvresize_params {
8ef2b021 21 const char *vg_name;
241913fe
AK
22 const char *lv_name;
23
24 uint32_t stripes;
25 uint32_t stripe_size;
ffb0e538 26 uint32_t mirrors;
241913fe 27
72b2cb61 28 const struct segment_type *segtype;
241913fe 29
241913fe
AK
30 /* size */
31 uint32_t extents;
32 uint64_t size;
33 sign_t sign;
34fadac4 34 percent_t percent;
03a8a07d
AK
35
36 enum {
37 LV_ANY = 0,
38 LV_REDUCE = 1,
39 LV_EXTEND = 2
241913fe
AK
40 } resize;
41
1a9ea74d
AK
42 int resizefs;
43 int nofsck;
44
241913fe
AK
45 int argc;
46 char **argv;
47};
48
bc175d28
AK
49static int _validate_stripesize(struct cmd_context *cmd,
50 const struct volume_group *vg,
51 struct lvresize_params *lp)
406a9754
DW
52{
53 if (arg_sign_value(cmd, stripesize_ARG, 0) == SIGN_MINUS) {
54 log_error("Stripesize may not be negative.");
55 return 0;
56 }
57
204a12e5 58 if (arg_uint_value(cmd, stripesize_ARG, 0) > STRIPE_SIZE_LIMIT * 2) {
406a9754
DW
59 log_error("Stripe size cannot be larger than %s",
60 display_size(cmd, (uint64_t) STRIPE_SIZE_LIMIT));
61 return 0;
62 }
63
64 if (!(vg->fid->fmt->features & FMT_SEGMENTS))
65 log_warn("Varied stripesize not supported. Ignoring.");
204a12e5 66 else if (arg_uint_value(cmd, stripesize_ARG, 0) > vg->extent_size * 2) {
406a9754
DW
67 log_error("Reducing stripe size %s to maximum, "
68 "physical extent size %s",
69 display_size(cmd,
204a12e5 70 (uint64_t) arg_uint_value(cmd, stripesize_ARG, 0)),
406a9754
DW
71 display_size(cmd, (uint64_t) vg->extent_size));
72 lp->stripe_size = vg->extent_size;
73 } else
204a12e5 74 lp->stripe_size = arg_uint_value(cmd, stripesize_ARG, 0);
406a9754
DW
75
76 if (lp->mirrors) {
77 log_error("Mirrors and striping cannot be combined yet.");
78 return 0;
79 }
80 if (lp->stripe_size & (lp->stripe_size - 1)) {
81 log_error("Stripe size must be power of 2");
82 return 0;
83 }
84
85 return 1;
86}
87
bc175d28
AK
88static int _request_confirmation(struct cmd_context *cmd,
89 const struct volume_group *vg,
90 const struct logical_volume *lv,
91 const struct lvresize_params *lp)
406a9754
DW
92{
93 struct lvinfo info;
94
95 memset(&info, 0, sizeof(info));
96
a6b22cf3 97 if (!lv_info(cmd, lv, &info, 1, 0) && driver_version(NULL, 0)) {
406a9754
DW
98 log_error("lv_info failed: aborting");
99 return 0;
100 }
101
bc175d28
AK
102 if (lp->resizefs) {
103 if (!info.exists) {
104 log_error("Logical volume %s must be activated "
105 "before resizing filesystem", lp->lv_name);
106 return 0;
107 }
108 return 1;
406a9754
DW
109 }
110
bc175d28
AK
111 if (!info.exists)
112 return 1;
406a9754 113
bc175d28
AK
114 log_warn("WARNING: Reducing active%s logical volume to %s",
115 info.open_count ? " and open" : "",
116 display_size(cmd, (uint64_t) lp->extents * vg->extent_size));
406a9754 117
bc175d28
AK
118 log_warn("THIS MAY DESTROY YOUR DATA (filesystem etc.)");
119
120 if (!arg_count(cmd, force_ARG)) {
121 if (yes_no_prompt("Do you really want to reduce %s? [y/n]: ",
122 lp->lv_name) == 'n') {
fec4de95 123 log_error("Logical volume %s NOT reduced", lp->lv_name);
bc175d28 124 return 0;
406a9754 125 }
bc175d28
AK
126 if (sigint_caught())
127 return 0;
406a9754
DW
128 }
129
130 return 1;
131}
132
c8669f6b 133enum fsadm_cmd_e { FSADM_CMD_CHECK, FSADM_CMD_RESIZE };
bc175d28
AK
134#define FSADM_CMD "fsadm"
135#define FSADM_CMD_MAX_ARGS 6
c8669f6b 136
bc175d28
AK
137/*
138 * FSADM_CMD --dry-run --verbose --force check lv_path
139 * FSADM_CMD --dry-run --verbose --force resize lv_path size
140 */
ed82bfd2 141static int _fsadm_cmd(struct cmd_context *cmd,
bc175d28
AK
142 const struct volume_group *vg,
143 const struct lvresize_params *lp,
144 enum fsadm_cmd_e fcmd)
406a9754
DW
145{
146 char lv_path[PATH_MAX];
147 char size_buf[SIZE_BUF];
bc175d28
AK
148 const char *argv[FSADM_CMD_MAX_ARGS + 2];
149 unsigned i = 0;
c8669f6b 150
bc175d28 151 argv[i++] = FSADM_CMD;
c8669f6b
ZK
152
153 if (test_mode())
154 argv[i++] = "--dry-run";
155
bc175d28 156 if (verbose_level() >= _LOG_NOTICE)
c8669f6b
ZK
157 argv[i++] = "--verbose";
158
159 if (arg_count(cmd, force_ARG))
160 argv[i++] = "--force";
161
162 argv[i++] = (fcmd == FSADM_CMD_RESIZE) ? "resize" : "check";
406a9754 163
bc175d28
AK
164 if (dm_snprintf(lv_path, PATH_MAX, "%s%s/%s", cmd->dev_dir, lp->vg_name,
165 lp->lv_name) < 0) {
166 log_error("Couldn't create LV path for %s", lp->lv_name);
406a9754
DW
167 return 0;
168 }
169
c8669f6b 170 argv[i++] = lv_path;
406a9754 171
c8669f6b
ZK
172 if (fcmd == FSADM_CMD_RESIZE) {
173 if (dm_snprintf(size_buf, SIZE_BUF, "%" PRIu64 "K",
174 (uint64_t) lp->extents * vg->extent_size / 2) < 0) {
175 log_error("Couldn't generate new LV size string");
176 return 0;
177 }
406a9754 178
c8669f6b
ZK
179 argv[i++] = size_buf;
180 }
406a9754 181
c8669f6b
ZK
182 argv[i] = NULL;
183
ed82bfd2 184 return exec_cmd(cmd, argv);
406a9754
DW
185}
186
8a2fc586
AK
187static int _lvresize_params(struct cmd_context *cmd, int argc, char **argv,
188 struct lvresize_params *lp)
241913fe
AK
189{
190 const char *cmd_name;
191 char *st;
17dd04ca 192 unsigned dev_dir_found = 0;
241913fe
AK
193
194 lp->sign = SIGN_NONE;
195 lp->resize = LV_ANY;
03a8a07d 196
60274aba 197 cmd_name = command_name(cmd);
03a8a07d 198 if (!strcmp(cmd_name, "lvreduce"))
241913fe 199 lp->resize = LV_REDUCE;
03a8a07d 200 if (!strcmp(cmd_name, "lvextend"))
241913fe 201 lp->resize = LV_EXTEND;
03a8a07d 202
dfef7f69
DW
203 /*
204 * Allow omission of extents and size if the user has given us
205 * one or more PVs. Most likely, the intent was "resize this
206 * LV the best you can with these PVs"
207 */
208 if ((arg_count(cmd, extents_ARG) + arg_count(cmd, size_ARG) == 0) &&
209 (argc >= 2)) {
210 lp->extents = 100;
211 lp->percent = PERCENT_PVS;
212 lp->sign = SIGN_PLUS;
213 } else if ((arg_count(cmd, extents_ARG) +
214 arg_count(cmd, size_ARG) != 1)) {
215 log_error("Please specify either size or extents but not "
216 "both.");
241913fe 217 return 0;
03a8a07d
AK
218 }
219
6fda126d 220 if (arg_count(cmd, extents_ARG)) {
241913fe
AK
221 lp->extents = arg_uint_value(cmd, extents_ARG, 0);
222 lp->sign = arg_sign_value(cmd, extents_ARG, SIGN_NONE);
34fadac4 223 lp->percent = arg_percent_value(cmd, extents_ARG, PERCENT_NONE);
03a8a07d
AK
224 }
225
1832f310 226 /* Size returned in kilobyte units; held in sectors */
6fda126d 227 if (arg_count(cmd, size_ARG)) {
204a12e5 228 lp->size = arg_uint64_value(cmd, size_ARG, UINT64_C(0));
241913fe 229 lp->sign = arg_sign_value(cmd, size_ARG, SIGN_NONE);
34fadac4 230 lp->percent = PERCENT_NONE;
03a8a07d
AK
231 }
232
241913fe 233 if (lp->resize == LV_EXTEND && lp->sign == SIGN_MINUS) {
03a8a07d 234 log_error("Negative argument not permitted - use lvreduce");
241913fe 235 return 0;
03a8a07d
AK
236 }
237
241913fe 238 if (lp->resize == LV_REDUCE && lp->sign == SIGN_PLUS) {
03a8a07d 239 log_error("Positive sign not permitted - use lvextend");
241913fe 240 return 0;
03a8a07d
AK
241 }
242
a8fb89ad
AK
243 lp->resizefs = arg_is_set(cmd, resizefs_ARG);
244 lp->nofsck = arg_is_set(cmd, nofsck_ARG);
1a9ea74d 245
03a8a07d
AK
246 if (!argc) {
247 log_error("Please provide the logical volume name");
241913fe 248 return 0;
03a8a07d
AK
249 }
250
241913fe 251 lp->lv_name = argv[0];
03a8a07d
AK
252 argv++;
253 argc--;
254
3a370b73
AK
255 if (!(lp->lv_name = skip_dev_dir(cmd, lp->lv_name, &dev_dir_found)) ||
256 !(lp->vg_name = extract_vgname(cmd, lp->lv_name))) {
03a8a07d 257 log_error("Please provide a volume group name");
241913fe 258 return 0;
03a8a07d 259 }
17dd04ca 260
d38bf361
AK
261 if (!validate_name(lp->vg_name)) {
262 log_error("Volume group name %s has invalid characters",
263 lp->vg_name);
6c3dc203 264 return 0;
d38bf361 265 }
03a8a07d 266
241913fe
AK
267 if ((st = strrchr(lp->lv_name, '/')))
268 lp->lv_name = st + 1;
03a8a07d 269
241913fe
AK
270 lp->argc = argc;
271 lp->argv = argv;
272
273 return 1;
274}
7d0e6e80 275
e5f7352b
AK
276static int _lvresize(struct cmd_context *cmd, struct volume_group *vg,
277 struct lvresize_params *lp)
241913fe 278{
241913fe 279 struct logical_volume *lv;
241913fe
AK
280 struct lvinfo info;
281 uint32_t stripesize_extents = 0;
282 uint32_t seg_stripes = 0, seg_stripesize = 0, seg_size = 0;
ffb0e538 283 uint32_t seg_mirrors = 0;
241913fe
AK
284 uint32_t extents_used = 0;
285 uint32_t size_rest;
dfef7f69 286 uint32_t pv_extent_count = 0;
a0a23eff 287 alloc_policy_t alloc;
0fb173aa 288 struct logical_volume *lock_lv;
241913fe 289 struct lv_list *lvl;
241913fe
AK
290 struct lv_segment *seg;
291 uint32_t seg_extents;
292 uint32_t sz, str;
2c44337b 293 struct dm_list *pvh = NULL;
241913fe 294
03a8a07d 295 /* does LV exist? */
241913fe 296 if (!(lvl = find_lv_in_vg(vg, lp->lv_name))) {
03a8a07d 297 log_error("Logical volume %s not found in volume group %s",
241913fe 298 lp->lv_name, lp->vg_name);
7f0dc9c4 299 return ECMD_FAILED;
03a8a07d
AK
300 }
301
25b73380
AK
302 if (arg_count(cmd, stripes_ARG)) {
303 if (vg->fid->fmt->features & FMT_SEGMENTS)
241913fe 304 lp->stripes = arg_uint_value(cmd, stripes_ARG, 1);
25b73380 305 else
e7ddf416 306 log_warn("Varied striping not supported. Ignoring.");
25b73380
AK
307 }
308
ffb0e538
AK
309 if (arg_count(cmd, mirrors_ARG)) {
310 if (vg->fid->fmt->features & FMT_SEGMENTS)
311 lp->mirrors = arg_uint_value(cmd, mirrors_ARG, 1) + 1;
312 else
e7ddf416 313 log_warn("Mirrors not supported. Ignoring.");
7424de5b
AK
314 if (arg_sign_value(cmd, mirrors_ARG, 0) == SIGN_MINUS) {
315 log_error("Mirrors argument may not be negative");
406a9754 316 return EINVALID_CMD_LINE;
7424de5b 317 }
ffb0e538
AK
318 }
319
bc175d28
AK
320 if (arg_count(cmd, stripesize_ARG) &&
321 !_validate_stripesize(cmd, vg, lp))
322 return EINVALID_CMD_LINE;
25b73380 323
f868d635 324 lv = lvl->lv;
03a8a07d 325
fd817ff3
MS
326 if (!lv_is_visible(lv)) {
327 log_error("Can't resize internal logical volume %s", lv->name);
328 return ECMD_FAILED;
329 }
330
6e03b44c
AK
331 if (lv->status & LOCKED) {
332 log_error("Can't resize locked LV %s", lv->name);
7f0dc9c4 333 return ECMD_FAILED;
6e03b44c
AK
334 }
335
08b481bb
AK
336 if (lv->status & CONVERTING) {
337 log_error("Can't resize %s while lvconvert in progress", lv->name);
338 return ECMD_FAILED;
339 }
340
72b2cb61 341 alloc = arg_uint_value(cmd, alloc_ARG, lv->alloc);
7f0dc9c4 342
241913fe
AK
343 if (lp->size) {
344 if (lp->size % vg->extent_size) {
345 if (lp->sign == SIGN_MINUS)
346 lp->size -= lp->size % vg->extent_size;
03a8a07d 347 else
241913fe
AK
348 lp->size += vg->extent_size -
349 (lp->size % vg->extent_size);
03a8a07d
AK
350
351 log_print("Rounding up size to full physical extent %s",
72b2cb61 352 display_size(cmd, (uint64_t) lp->size));
03a8a07d
AK
353 }
354
241913fe 355 lp->extents = lp->size / vg->extent_size;
03a8a07d
AK
356 }
357
dfef7f69
DW
358 if (!(pvh = lp->argc ? create_pv_list(cmd->mem, vg, lp->argc,
359 lp->argv, 1) : &vg->pvs)) {
360 stack;
361 return ECMD_FAILED;
362 }
363
34fadac4
AK
364 switch(lp->percent) {
365 case PERCENT_VG:
366 lp->extents = lp->extents * vg->extent_count / 100;
367 break;
368 case PERCENT_FREE:
369 lp->extents = lp->extents * vg->free_count / 100;
370 break;
371 case PERCENT_LV:
372 lp->extents = lp->extents * lv->le_count / 100;
373 break;
dfef7f69 374 case PERCENT_PVS:
ba3851fd
MB
375 if (lp->argc) {
376 pv_extent_count = pv_list_extents_free(pvh);
377 lp->extents = lp->extents * pv_extent_count / 100;
378 } else
379 lp->extents = lp->extents * vg->extent_count / 100;
dfef7f69 380 break;
5bc2af26
MS
381 case PERCENT_ORIGIN:
382 if (!lv_is_cow(lv)) {
383 log_error("Specified LV does not have an origin LV.");
384 return EINVALID_CMD_LINE;
385 }
386 lp->extents = lp->extents * origin_from_cow(lv)->le_count / 100;
387 break;
34fadac4
AK
388 case PERCENT_NONE:
389 break;
390 }
391
241913fe
AK
392 if (lp->sign == SIGN_PLUS)
393 lp->extents += lv->le_count;
03a8a07d 394
241913fe
AK
395 if (lp->sign == SIGN_MINUS) {
396 if (lp->extents >= lv->le_count) {
03a8a07d 397 log_error("Unable to reduce %s below 1 extent",
241913fe 398 lp->lv_name);
7f0dc9c4 399 return EINVALID_CMD_LINE;
03a8a07d
AK
400 }
401
241913fe 402 lp->extents = lv->le_count - lp->extents;
03a8a07d
AK
403 }
404
241913fe 405 if (!lp->extents) {
03a8a07d 406 log_error("New size of 0 not permitted");
7f0dc9c4 407 return EINVALID_CMD_LINE;
03a8a07d
AK
408 }
409
241913fe 410 if (lp->extents == lv->le_count) {
c8669f6b
ZK
411 if (!lp->resizefs) {
412 log_error("New size (%d extents) matches existing size "
413 "(%d extents)", lp->extents, lv->le_count);
414 return EINVALID_CMD_LINE;
415 }
416 lp->resize = LV_EXTEND; /* lets pretend zero size extension */
03a8a07d
AK
417 }
418
241913fe 419 seg_size = lp->extents - lv->le_count;
25b73380 420
1832f310 421 /* Use segment type of last segment */
2c44337b 422 dm_list_iterate_items(seg, &lv->segments) {
241913fe 423 lp->segtype = seg->segtype;
1832f310
AK
424 }
425
426 /* FIXME Support LVs with mixed segment types */
72b2cb61 427 if (lp->segtype != arg_ptr_value(cmd, type_ARG, lp->segtype)) {
241913fe 428 log_error("VolumeType does not match (%s)", lp->segtype->name);
7f0dc9c4 429 return EINVALID_CMD_LINE;
1832f310
AK
430 }
431
52dc2139 432 /* If extending, find stripes, stripesize & size of last segment */
241913fe
AK
433 if ((lp->extents > lv->le_count) &&
434 !(lp->stripes == 1 || (lp->stripes > 1 && lp->stripe_size))) {
2c44337b 435 dm_list_iterate_items(seg, &lv->segments) {
32469fb2 436 if (!seg_is_striped(seg))
1832f310 437 continue;
b8c919b4 438
579944d3 439 sz = seg->stripe_size;
b8c919b4 440 str = seg->area_count;
52dc2139 441
bc175d28
AK
442 if ((seg_stripesize && seg_stripesize != sz &&
443 !lp->stripe_size) ||
241913fe 444 (seg_stripes && seg_stripes != str && !lp->stripes)) {
52dc2139
AK
445 log_error("Please specify number of "
446 "stripes (-i) and stripesize (-I)");
7f0dc9c4 447 return EINVALID_CMD_LINE;
52dc2139
AK
448 }
449
450 seg_stripesize = sz;
451 seg_stripes = str;
452 }
453
241913fe
AK
454 if (!lp->stripes)
455 lp->stripes = seg_stripes;
52dc2139 456
241913fe 457 if (!lp->stripe_size && lp->stripes > 1) {
25b73380 458 if (seg_stripesize) {
12de747d 459 log_print("Using stripesize of last segment %s",
72b2cb61 460 display_size(cmd, (uint64_t) seg_stripesize));
241913fe 461 lp->stripe_size = seg_stripesize;
25b73380 462 } else {
7f0dc9c4 463 lp->stripe_size =
2293567c 464 find_config_tree_int(cmd,
8ef2b021 465 "metadata/stripesize",
8ef2b021 466 DEFAULT_STRIPESIZE) * 2;
12de747d 467 log_print("Using default stripesize %s",
72b2cb61 468 display_size(cmd, (uint64_t) lp->stripe_size));
25b73380
AK
469 }
470 }
52dc2139
AK
471 }
472
ffb0e538
AK
473 /* If extending, find mirrors of last segment */
474 if ((lp->extents > lv->le_count)) {
2c44337b 475 dm_list_iterate_back_items(seg, &lv->segments) {
ffb0e538 476 if (seg_is_mirrored(seg))
31e9db26 477 seg_mirrors = lv_mirror_count(seg->lv);
ffb0e538
AK
478 else
479 seg_mirrors = 0;
480 break;
481 }
482 if (!arg_count(cmd, mirrors_ARG) && seg_mirrors) {
483 log_print("Extending %" PRIu32 " mirror images.",
484 seg_mirrors);
485 lp->mirrors = seg_mirrors;
486 }
487 if ((arg_count(cmd, mirrors_ARG) || seg_mirrors) &&
488 (lp->mirrors != seg_mirrors)) {
489 log_error("Cannot vary number of mirrors in LV yet.");
490 return EINVALID_CMD_LINE;
491 }
492 }
493
52dc2139 494 /* If reducing, find stripes, stripesize & size of last segment */
241913fe 495 if (lp->extents < lv->le_count) {
25b73380 496 extents_used = 0;
52dc2139 497
ffb0e538
AK
498 if (lp->stripes || lp->stripe_size || lp->mirrors)
499 log_error("Ignoring stripes, stripesize and mirrors "
500 "arguments when reducing");
52dc2139 501
2c44337b 502 dm_list_iterate_items(seg, &lv->segments) {
579944d3
AK
503 seg_extents = seg->len;
504
32469fb2 505 if (seg_is_striped(seg)) {
b8c919b4
AK
506 seg_stripesize = seg->stripe_size;
507 seg_stripes = seg->area_count;
508 }
52dc2139 509
ffb0e538 510 if (seg_is_mirrored(seg))
31e9db26 511 seg_mirrors = lv_mirror_count(seg->lv);
ffb0e538
AK
512 else
513 seg_mirrors = 0;
514
241913fe 515 if (lp->extents <= extents_used + seg_extents)
52dc2139
AK
516 break;
517
518 extents_used += seg_extents;
519 }
520
241913fe
AK
521 seg_size = lp->extents - extents_used;
522 lp->stripe_size = seg_stripesize;
523 lp->stripes = seg_stripes;
ffb0e538 524 lp->mirrors = seg_mirrors;
52dc2139
AK
525 }
526
241913fe 527 if (lp->stripes > 1 && !lp->stripe_size) {
25b73380 528 log_error("Stripesize for striped segment should not be 0!");
7f0dc9c4 529 return EINVALID_CMD_LINE;
d4e5f63e 530 }
5a52dca9 531
241913fe
AK
532 if ((lp->stripes > 1)) {
533 if (!(stripesize_extents = lp->stripe_size / vg->extent_size))
d4e5f63e
AK
534 stripesize_extents = 1;
535
241913fe 536 if ((size_rest = seg_size % (lp->stripes * stripesize_extents))) {
d4e5f63e
AK
537 log_print("Rounding size (%d extents) down to stripe "
538 "boundary size for segment (%d extents)",
241913fe
AK
539 lp->extents, lp->extents - size_rest);
540 lp->extents = lp->extents - size_rest;
d4e5f63e 541 }
12de747d
AK
542
543 if (lp->stripe_size < STRIPE_SIZE_MIN) {
544 log_error("Invalid stripe size %s",
72b2cb61 545 display_size(cmd, (uint64_t) lp->stripe_size));
406a9754 546 return EINVALID_CMD_LINE;
12de747d 547 }
da4e57f2 548 }
52dc2139 549
241913fe
AK
550 if (lp->extents < lv->le_count) {
551 if (lp->resize == LV_EXTEND) {
03a8a07d
AK
552 log_error("New size given (%d extents) not larger "
553 "than existing size (%d extents)",
241913fe 554 lp->extents, lv->le_count);
7f0dc9c4 555 return EINVALID_CMD_LINE;
c8669f6b
ZK
556 }
557 lp->resize = LV_REDUCE;
558 } else if (lp->extents > lv->le_count) {
241913fe 559 if (lp->resize == LV_REDUCE) {
03a8a07d 560 log_error("New size given (%d extents) not less than "
241913fe 561 "existing size (%d extents)", lp->extents,
03a8a07d 562 lv->le_count);
7f0dc9c4 563 return EINVALID_CMD_LINE;
c8669f6b
ZK
564 }
565 lp->resize = LV_EXTEND;
03a8a07d
AK
566 }
567
864de9ce
AK
568 if (lv_is_origin(lv)) {
569 if (lp->resize == LV_REDUCE) {
570 log_error("Snapshot origin volumes cannot be reduced "
571 "in size yet.");
572 return ECMD_FAILED;
573 }
574
575 memset(&info, 0, sizeof(info));
576
a6b22cf3 577 if (lv_info(cmd, lv, &info, 0, 0) && info.exists) {
864de9ce
AK
578 log_error("Snapshot origin volumes can be resized "
579 "only while inactive: try lvchange -an");
580 return ECMD_FAILED;
581 }
582 }
583
bc175d28
AK
584 if ((lp->resize == LV_REDUCE) && lp->argc)
585 log_warn("Ignoring PVs on command line when reducing");
03a8a07d 586
bc175d28
AK
587 /* Request confirmation before operations that are often mistakes. */
588 if ((lp->resizefs || (lp->resize == LV_REDUCE)) &&
589 !_request_confirmation(cmd, vg, lv, lp)) {
590 stack;
2b238642 591 return ECMD_FAILED;
bc175d28 592 }
03a8a07d 593
1a9ea74d 594 if (lp->resizefs) {
bc175d28
AK
595 if (!lp->nofsck &&
596 !_fsadm_cmd(cmd, vg, lp, FSADM_CMD_CHECK)) {
c8669f6b
ZK
597 stack;
598 return ECMD_FAILED;
599 }
600
bc175d28
AK
601 if ((lp->resize == LV_REDUCE) &&
602 !_fsadm_cmd(cmd, vg, lp, FSADM_CMD_RESIZE)) {
c8669f6b
ZK
603 stack;
604 return ECMD_FAILED;
605 }
1a9ea74d 606 }
614a4508 607
1a9ea74d
AK
608 if (!archive(vg)) {
609 stack;
610 return ECMD_FAILED;
611 }
03a8a07d 612
1a9ea74d
AK
613 log_print("%sing logical volume %s to %s",
614 (lp->resize == LV_REDUCE) ? "Reduc" : "Extend",
615 lp->lv_name,
72b2cb61 616 display_size(cmd, (uint64_t) lp->extents * vg->extent_size));
1a9ea74d
AK
617
618 if (lp->resize == LV_REDUCE) {
32469fb2 619 if (!lv_reduce(lv, lv->le_count - lp->extents)) {
7f0dc9c4
AK
620 stack;
621 return ECMD_FAILED;
241913fe 622 }
bc175d28
AK
623 } else if ((lp->extents > lv->le_count) && /* Ensure we extend */
624 !lv_extend(lv, lp->segtype, lp->stripes,
ffb0e538 625 lp->stripe_size, lp->mirrors,
32469fb2
AK
626 lp->extents - lv->le_count,
627 NULL, 0u, 0u, pvh, alloc)) {
1a9ea74d
AK
628 stack;
629 return ECMD_FAILED;
03a8a07d
AK
630 }
631
03a8a07d 632 /* store vg on disk(s) */
25b73380 633 if (!vg_write(vg)) {
914c9723 634 stack;
7f0dc9c4 635 return ECMD_FAILED;
cc8b2cd7 636 }
03a8a07d 637
914c9723 638 /* If snapshot, must suspend all associated devices */
2cd0aa72
AK
639 if (lv_is_cow(lv))
640 lock_lv = origin_from_cow(lv);
914c9723 641 else
0fb173aa 642 lock_lv = lv;
914c9723 643
0fb173aa 644 if (!suspend_lv(cmd, lock_lv)) {
241913fe 645 log_error("Failed to suspend %s", lp->lv_name);
914c9723 646 vg_revert(vg);
8f3fd69f 647 backup(vg);
7f0dc9c4 648 return ECMD_FAILED;
914c9723
AK
649 }
650
651 if (!vg_commit(vg)) {
652 stack;
df13cf08
MS
653 if (!resume_lv(cmd, lock_lv))
654 stack;
8f3fd69f 655 backup(vg);
7f0dc9c4 656 return ECMD_FAILED;
914c9723
AK
657 }
658
0fb173aa 659 if (!resume_lv(cmd, lock_lv)) {
241913fe 660 log_error("Problem reactivating %s", lp->lv_name);
8f3fd69f 661 backup(vg);
7f0dc9c4 662 return ECMD_FAILED;
cc8b2cd7 663 }
03a8a07d 664
8f3fd69f
MB
665 backup(vg);
666
241913fe 667 log_print("Logical volume %s successfully resized", lp->lv_name);
03a8a07d 668
bc175d28
AK
669 if (lp->resizefs && (lp->resize == LV_EXTEND) &&
670 !_fsadm_cmd(cmd, vg, lp, FSADM_CMD_RESIZE)) {
c8669f6b
ZK
671 stack;
672 return ECMD_FAILED;
1a9ea74d
AK
673 }
674
cfb7bfc7 675 return ECMD_PROCESSED;
03a8a07d 676}
241913fe
AK
677
678int lvresize(struct cmd_context *cmd, int argc, char **argv)
679{
680 struct lvresize_params lp;
e5f7352b 681 struct volume_group *vg;
241913fe
AK
682 int r;
683
684 memset(&lp, 0, sizeof(lp));
685
8a2fc586 686 if (!_lvresize_params(cmd, argc, argv, &lp))
241913fe
AK
687 return EINVALID_CMD_LINE;
688
689 log_verbose("Finding volume group %s", lp.vg_name);
b8b3508c
DW
690 vg = vg_read_for_update(cmd, lp.vg_name, NULL, 0);
691 if (vg_read_error(vg)) {
4c611a22 692 vg_release(vg);
d0bf2f3f 693 stack;
241913fe 694 return ECMD_FAILED;
d0bf2f3f 695 }
241913fe 696
e5f7352b 697 if (!(r = _lvresize(cmd, vg, &lp)))
241913fe
AK
698 stack;
699
25a2e7b8 700 unlock_and_release_vg(cmd, vg, lp.vg_name);
241913fe
AK
701
702 return r;
703}
This page took 0.165785 seconds and 5 git commands to generate.