]> sourceware.org Git - lvm2.git/blame - tools/lvresize.c
Do not allow users to change the name of RAID sub-LVs or the name of the
[lvm2.git] / tools / lvresize.c
CommitLineData
03a8a07d 1/*
1832f310 2 * Copyright (C) 2001-2004 Sistina Software, Inc. All rights reserved.
daa10ad0 3 * Copyright (C) 2004-2011 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;
8191fe4f 34 percent_type_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
301c2b88 58 if (arg_uint64_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 75
406a9754
DW
76 if (lp->stripe_size & (lp->stripe_size - 1)) {
77 log_error("Stripe size must be power of 2");
78 return 0;
79 }
80
81 return 1;
82}
83
bc175d28
AK
84static int _request_confirmation(struct cmd_context *cmd,
85 const struct volume_group *vg,
86 const struct logical_volume *lv,
87 const struct lvresize_params *lp)
406a9754
DW
88{
89 struct lvinfo info;
90
91 memset(&info, 0, sizeof(info));
92
2d6fcbf6 93 if (!lv_info(cmd, lv, 0, &info, 1, 0) && driver_version(NULL, 0)) {
406a9754
DW
94 log_error("lv_info failed: aborting");
95 return 0;
96 }
97
bc175d28
AK
98 if (lp->resizefs) {
99 if (!info.exists) {
100 log_error("Logical volume %s must be activated "
101 "before resizing filesystem", lp->lv_name);
102 return 0;
103 }
104 return 1;
406a9754
DW
105 }
106
bc175d28
AK
107 if (!info.exists)
108 return 1;
406a9754 109
bc175d28
AK
110 log_warn("WARNING: Reducing active%s logical volume to %s",
111 info.open_count ? " and open" : "",
112 display_size(cmd, (uint64_t) lp->extents * vg->extent_size));
406a9754 113
bc175d28
AK
114 log_warn("THIS MAY DESTROY YOUR DATA (filesystem etc.)");
115
116 if (!arg_count(cmd, force_ARG)) {
117 if (yes_no_prompt("Do you really want to reduce %s? [y/n]: ",
118 lp->lv_name) == 'n') {
fec4de95 119 log_error("Logical volume %s NOT reduced", lp->lv_name);
bc175d28 120 return 0;
406a9754 121 }
bc175d28
AK
122 if (sigint_caught())
123 return 0;
406a9754
DW
124 }
125
126 return 1;
127}
128
c8669f6b 129enum fsadm_cmd_e { FSADM_CMD_CHECK, FSADM_CMD_RESIZE };
bc175d28
AK
130#define FSADM_CMD "fsadm"
131#define FSADM_CMD_MAX_ARGS 6
2955b913 132#define FSADM_CHECK_FAILS_FOR_MOUNTED 3 /* shell exist status code */
c8669f6b 133
bc175d28
AK
134/*
135 * FSADM_CMD --dry-run --verbose --force check lv_path
136 * FSADM_CMD --dry-run --verbose --force resize lv_path size
137 */
ed82bfd2 138static int _fsadm_cmd(struct cmd_context *cmd,
bc175d28
AK
139 const struct volume_group *vg,
140 const struct lvresize_params *lp,
2955b913
ZK
141 enum fsadm_cmd_e fcmd,
142 int *status)
406a9754
DW
143{
144 char lv_path[PATH_MAX];
145 char size_buf[SIZE_BUF];
bc175d28
AK
146 const char *argv[FSADM_CMD_MAX_ARGS + 2];
147 unsigned i = 0;
c8669f6b 148
bc175d28 149 argv[i++] = FSADM_CMD;
c8669f6b
ZK
150
151 if (test_mode())
152 argv[i++] = "--dry-run";
153
bc175d28 154 if (verbose_level() >= _LOG_NOTICE)
c8669f6b
ZK
155 argv[i++] = "--verbose";
156
157 if (arg_count(cmd, force_ARG))
158 argv[i++] = "--force";
159
160 argv[i++] = (fcmd == FSADM_CMD_RESIZE) ? "resize" : "check";
406a9754 161
bc175d28
AK
162 if (dm_snprintf(lv_path, PATH_MAX, "%s%s/%s", cmd->dev_dir, lp->vg_name,
163 lp->lv_name) < 0) {
164 log_error("Couldn't create LV path for %s", lp->lv_name);
406a9754
DW
165 return 0;
166 }
167
c8669f6b 168 argv[i++] = lv_path;
406a9754 169
c8669f6b
ZK
170 if (fcmd == FSADM_CMD_RESIZE) {
171 if (dm_snprintf(size_buf, SIZE_BUF, "%" PRIu64 "K",
172 (uint64_t) lp->extents * vg->extent_size / 2) < 0) {
173 log_error("Couldn't generate new LV size string");
174 return 0;
175 }
406a9754 176
c8669f6b
ZK
177 argv[i++] = size_buf;
178 }
406a9754 179
c8669f6b
ZK
180 argv[i] = NULL;
181
b1b38215 182 return exec_cmd(cmd, argv, status, 1);
406a9754
DW
183}
184
8a2fc586
AK
185static int _lvresize_params(struct cmd_context *cmd, int argc, char **argv,
186 struct lvresize_params *lp)
241913fe
AK
187{
188 const char *cmd_name;
189 char *st;
17dd04ca 190 unsigned dev_dir_found = 0;
a341cab7 191 int use_policy = arg_count(cmd, use_policies_ARG);
241913fe
AK
192
193 lp->sign = SIGN_NONE;
194 lp->resize = LV_ANY;
03a8a07d 195
60274aba 196 cmd_name = command_name(cmd);
03a8a07d 197 if (!strcmp(cmd_name, "lvreduce"))
241913fe 198 lp->resize = LV_REDUCE;
03a8a07d 199 if (!strcmp(cmd_name, "lvextend"))
241913fe 200 lp->resize = LV_EXTEND;
03a8a07d 201
a341cab7
PR
202 if (use_policy) {
203 /* do nothing; _lvresize will handle --use-policies itself */
204 lp->extents = 0;
dfef7f69 205 lp->sign = SIGN_PLUS;
a341cab7
PR
206 lp->percent = PERCENT_LV;
207 } else {
208 /*
209 * Allow omission of extents and size if the user has given us
210 * one or more PVs. Most likely, the intent was "resize this
211 * LV the best you can with these PVs"
212 */
213 if ((arg_count(cmd, extents_ARG) + arg_count(cmd, size_ARG) == 0) &&
214 (argc >= 2)) {
215 lp->extents = 100;
216 lp->percent = PERCENT_PVS;
217 lp->sign = SIGN_PLUS;
218 } else if ((arg_count(cmd, extents_ARG) +
219 arg_count(cmd, size_ARG) != 1)) {
220 log_error("Please specify either size or extents but not "
221 "both.");
222 return 0;
223 }
03a8a07d 224
a341cab7
PR
225 if (arg_count(cmd, extents_ARG)) {
226 lp->extents = arg_uint_value(cmd, extents_ARG, 0);
227 lp->sign = arg_sign_value(cmd, extents_ARG, SIGN_NONE);
228 lp->percent = arg_percent_value(cmd, extents_ARG, PERCENT_NONE);
229 }
03a8a07d 230
a341cab7
PR
231 /* Size returned in kilobyte units; held in sectors */
232 if (arg_count(cmd, size_ARG)) {
233 lp->size = arg_uint64_value(cmd, size_ARG, 0);
234 lp->sign = arg_sign_value(cmd, size_ARG, SIGN_NONE);
235 lp->percent = PERCENT_NONE;
236 }
03a8a07d
AK
237 }
238
241913fe 239 if (lp->resize == LV_EXTEND && lp->sign == SIGN_MINUS) {
03a8a07d 240 log_error("Negative argument not permitted - use lvreduce");
241913fe 241 return 0;
03a8a07d
AK
242 }
243
241913fe 244 if (lp->resize == LV_REDUCE && lp->sign == SIGN_PLUS) {
03a8a07d 245 log_error("Positive sign not permitted - use lvextend");
241913fe 246 return 0;
03a8a07d
AK
247 }
248
a8fb89ad
AK
249 lp->resizefs = arg_is_set(cmd, resizefs_ARG);
250 lp->nofsck = arg_is_set(cmd, nofsck_ARG);
1a9ea74d 251
03a8a07d
AK
252 if (!argc) {
253 log_error("Please provide the logical volume name");
241913fe 254 return 0;
03a8a07d
AK
255 }
256
241913fe 257 lp->lv_name = argv[0];
03a8a07d
AK
258 argv++;
259 argc--;
260
3a370b73
AK
261 if (!(lp->lv_name = skip_dev_dir(cmd, lp->lv_name, &dev_dir_found)) ||
262 !(lp->vg_name = extract_vgname(cmd, lp->lv_name))) {
03a8a07d 263 log_error("Please provide a volume group name");
241913fe 264 return 0;
03a8a07d 265 }
17dd04ca 266
d38bf361
AK
267 if (!validate_name(lp->vg_name)) {
268 log_error("Volume group name %s has invalid characters",
269 lp->vg_name);
6c3dc203 270 return 0;
d38bf361 271 }
03a8a07d 272
241913fe
AK
273 if ((st = strrchr(lp->lv_name, '/')))
274 lp->lv_name = st + 1;
03a8a07d 275
241913fe
AK
276 lp->argc = argc;
277 lp->argv = argv;
278
279 return 1;
280}
7d0e6e80 281
a341cab7
PR
282static int _adjust_policy_params(struct cmd_context *cmd,
283 struct logical_volume *lv, struct lvresize_params *lp)
284{
8191fe4f 285 percent_t percent;
a341cab7
PR
286 int policy_threshold, policy_amount;
287
288 policy_threshold =
289 find_config_tree_int(cmd, "activation/snapshot_autoextend_threshold",
8191fe4f 290 DEFAULT_SNAPSHOT_AUTOEXTEND_THRESHOLD) * PERCENT_1;
a341cab7
PR
291 policy_amount =
292 find_config_tree_int(cmd, "activation/snapshot_autoextend_percent",
293 DEFAULT_SNAPSHOT_AUTOEXTEND_PERCENT);
294
8191fe4f 295 if (policy_threshold >= PERCENT_100)
a341cab7
PR
296 return 1; /* nothing to do */
297
8191fe4f 298 if (!lv_snapshot_percent(lv, &percent))
a341cab7
PR
299 return_0;
300
8191fe4f 301 if (!(PERCENT_0 < percent && percent < PERCENT_100) || percent <= policy_threshold)
a341cab7
PR
302 return 1; /* nothing to do */
303
304 lp->extents = policy_amount;
305 return 1;
306}
307
f4ba9c5d
MB
308static uint32_t lvseg_get_stripes(struct lv_segment *seg, uint32_t *stripesize)
309{
310 uint32_t s;
311 struct lv_segment *seg_mirr;
312
313 /* If segment mirrored, check if images are striped */
314 if (seg_is_mirrored(seg))
315 for (s = 0; s < seg->area_count; s++) {
316 if (seg_type(seg, s) != AREA_LV)
317 continue;
318 seg_mirr = first_seg(seg_lv(seg, s));
319
320 if (seg_is_striped(seg_mirr)) {
321 seg = seg_mirr;
322 break;
323 }
324 }
325
326
327 if (seg_is_striped(seg)) {
328 *stripesize = seg->stripe_size;
329 return seg->area_count;
330 }
331
332 *stripesize = 0;
333 return 0;
334}
335
e5f7352b
AK
336static int _lvresize(struct cmd_context *cmd, struct volume_group *vg,
337 struct lvresize_params *lp)
241913fe 338{
241913fe 339 struct logical_volume *lv;
241913fe
AK
340 struct lvinfo info;
341 uint32_t stripesize_extents = 0;
342 uint32_t seg_stripes = 0, seg_stripesize = 0, seg_size = 0;
ffb0e538 343 uint32_t seg_mirrors = 0;
241913fe
AK
344 uint32_t extents_used = 0;
345 uint32_t size_rest;
dfef7f69 346 uint32_t pv_extent_count = 0;
a0a23eff 347 alloc_policy_t alloc;
0fb173aa 348 struct logical_volume *lock_lv;
241913fe 349 struct lv_list *lvl;
1485ce69 350 struct lv_segment *seg, *uninitialized_var(mirr_seg);
241913fe
AK
351 uint32_t seg_extents;
352 uint32_t sz, str;
2955b913 353 int status;
2c44337b 354 struct dm_list *pvh = NULL;
a341cab7 355 int use_policy = arg_count(cmd, use_policies_ARG);
241913fe 356
03a8a07d 357 /* does LV exist? */
241913fe 358 if (!(lvl = find_lv_in_vg(vg, lp->lv_name))) {
03a8a07d 359 log_error("Logical volume %s not found in volume group %s",
241913fe 360 lp->lv_name, lp->vg_name);
7f0dc9c4 361 return ECMD_FAILED;
03a8a07d
AK
362 }
363
25b73380
AK
364 if (arg_count(cmd, stripes_ARG)) {
365 if (vg->fid->fmt->features & FMT_SEGMENTS)
241913fe 366 lp->stripes = arg_uint_value(cmd, stripes_ARG, 1);
25b73380 367 else
e7ddf416 368 log_warn("Varied striping not supported. Ignoring.");
25b73380
AK
369 }
370
ffb0e538
AK
371 if (arg_count(cmd, mirrors_ARG)) {
372 if (vg->fid->fmt->features & FMT_SEGMENTS)
373 lp->mirrors = arg_uint_value(cmd, mirrors_ARG, 1) + 1;
374 else
e7ddf416 375 log_warn("Mirrors not supported. Ignoring.");
7424de5b
AK
376 if (arg_sign_value(cmd, mirrors_ARG, 0) == SIGN_MINUS) {
377 log_error("Mirrors argument may not be negative");
406a9754 378 return EINVALID_CMD_LINE;
7424de5b 379 }
ffb0e538
AK
380 }
381
bc175d28
AK
382 if (arg_count(cmd, stripesize_ARG) &&
383 !_validate_stripesize(cmd, vg, lp))
384 return EINVALID_CMD_LINE;
25b73380 385
f868d635 386 lv = lvl->lv;
03a8a07d 387
a341cab7
PR
388 if (use_policy) {
389 if (!lv_is_cow(lv)) {
390 log_error("Can't use policy-based resize for non-snapshot volumes.");
391 return ECMD_FAILED;
392 }
393 _adjust_policy_params(cmd, lv, lp);
394 }
395
fd817ff3
MS
396 if (!lv_is_visible(lv)) {
397 log_error("Can't resize internal logical volume %s", lv->name);
398 return ECMD_FAILED;
399 }
400
6e03b44c
AK
401 if (lv->status & LOCKED) {
402 log_error("Can't resize locked LV %s", lv->name);
7f0dc9c4 403 return ECMD_FAILED;
6e03b44c
AK
404 }
405
08b481bb
AK
406 if (lv->status & CONVERTING) {
407 log_error("Can't resize %s while lvconvert in progress", lv->name);
408 return ECMD_FAILED;
409 }
410
72b2cb61 411 alloc = arg_uint_value(cmd, alloc_ARG, lv->alloc);
7f0dc9c4 412
241913fe
AK
413 if (lp->size) {
414 if (lp->size % vg->extent_size) {
415 if (lp->sign == SIGN_MINUS)
416 lp->size -= lp->size % vg->extent_size;
03a8a07d 417 else
241913fe
AK
418 lp->size += vg->extent_size -
419 (lp->size % vg->extent_size);
03a8a07d
AK
420
421 log_print("Rounding up size to full physical extent %s",
72b2cb61 422 display_size(cmd, (uint64_t) lp->size));
03a8a07d
AK
423 }
424
241913fe 425 lp->extents = lp->size / vg->extent_size;
03a8a07d
AK
426 }
427
dfef7f69
DW
428 if (!(pvh = lp->argc ? create_pv_list(cmd->mem, vg, lp->argc,
429 lp->argv, 1) : &vg->pvs)) {
430 stack;
431 return ECMD_FAILED;
432 }
433
34fadac4
AK
434 switch(lp->percent) {
435 case PERCENT_VG:
b18e1fd5 436 lp->extents = percent_of_extents(lp->extents, vg->extent_count);
34fadac4
AK
437 break;
438 case PERCENT_FREE:
b18e1fd5 439 lp->extents = percent_of_extents(lp->extents, vg->free_count);
34fadac4
AK
440 break;
441 case PERCENT_LV:
b18e1fd5 442 lp->extents = percent_of_extents(lp->extents, lv->le_count);
34fadac4 443 break;
dfef7f69 444 case PERCENT_PVS:
ba3851fd
MB
445 if (lp->argc) {
446 pv_extent_count = pv_list_extents_free(pvh);
b18e1fd5 447 lp->extents = percent_of_extents(lp->extents, pv_extent_count);
ba3851fd 448 } else
b18e1fd5 449 lp->extents = percent_of_extents(lp->extents, vg->extent_count);
dfef7f69 450 break;
5bc2af26
MS
451 case PERCENT_ORIGIN:
452 if (!lv_is_cow(lv)) {
453 log_error("Specified LV does not have an origin LV.");
454 return EINVALID_CMD_LINE;
455 }
b18e1fd5 456 lp->extents = percent_of_extents(lp->extents, origin_from_cow(lv)->le_count);
5bc2af26 457 break;
34fadac4
AK
458 case PERCENT_NONE:
459 break;
460 }
461
4079a8f2
ZK
462 if (lp->sign == SIGN_PLUS) {
463 if (lp->extents >= (MAX_EXTENT_COUNT - lv->le_count)) {
464 log_error("Unable to extend %s by %u extents, exceeds limit (%u).",
465 lp->lv_name, lv->le_count, MAX_EXTENT_COUNT);
466 return EINVALID_CMD_LINE;
467 }
241913fe 468 lp->extents += lv->le_count;
4079a8f2 469 }
03a8a07d 470
241913fe
AK
471 if (lp->sign == SIGN_MINUS) {
472 if (lp->extents >= lv->le_count) {
03a8a07d 473 log_error("Unable to reduce %s below 1 extent",
241913fe 474 lp->lv_name);
7f0dc9c4 475 return EINVALID_CMD_LINE;
03a8a07d
AK
476 }
477
241913fe 478 lp->extents = lv->le_count - lp->extents;
03a8a07d
AK
479 }
480
241913fe 481 if (!lp->extents) {
03a8a07d 482 log_error("New size of 0 not permitted");
7f0dc9c4 483 return EINVALID_CMD_LINE;
03a8a07d
AK
484 }
485
241913fe 486 if (lp->extents == lv->le_count) {
a341cab7
PR
487 if (use_policy)
488 return ECMD_PROCESSED; /* Nothing to do. */
c8669f6b
ZK
489 if (!lp->resizefs) {
490 log_error("New size (%d extents) matches existing size "
491 "(%d extents)", lp->extents, lv->le_count);
492 return EINVALID_CMD_LINE;
493 }
494 lp->resize = LV_EXTEND; /* lets pretend zero size extension */
03a8a07d
AK
495 }
496
241913fe 497 seg_size = lp->extents - lv->le_count;
25b73380 498
1832f310 499 /* Use segment type of last segment */
2c44337b 500 dm_list_iterate_items(seg, &lv->segments) {
241913fe 501 lp->segtype = seg->segtype;
1832f310
AK
502 }
503
504 /* FIXME Support LVs with mixed segment types */
54d7741a
AK
505 if (lp->segtype != get_segtype_from_string(cmd, arg_str_value(cmd, type_ARG,
506 lp->segtype->name))) {
241913fe 507 log_error("VolumeType does not match (%s)", lp->segtype->name);
7f0dc9c4 508 return EINVALID_CMD_LINE;
1832f310
AK
509 }
510
1485ce69
AK
511 /* If extending, find mirrors of last segment */
512 if ((lp->extents > lv->le_count)) {
a80192b6
JEB
513 /*
514 * Has the user specified that they would like the additional
515 * extents of a mirror not to have an initial sync?
516 */
517 if (seg_is_mirrored(first_seg(lv)) && arg_count(cmd, nosync_ARG))
518 lv->status |= LV_NOTSYNCED;
519
1485ce69
AK
520 dm_list_iterate_back_items(mirr_seg, &lv->segments) {
521 if (seg_is_mirrored(mirr_seg))
522 seg_mirrors = lv_mirror_count(mirr_seg->lv);
523 else
524 seg_mirrors = 0;
525 break;
526 }
527 if (!arg_count(cmd, mirrors_ARG) && seg_mirrors) {
528 log_print("Extending %" PRIu32 " mirror images.",
529 seg_mirrors);
530 lp->mirrors = seg_mirrors;
531 }
532 if ((arg_count(cmd, mirrors_ARG) || seg_mirrors) &&
533 (lp->mirrors != seg_mirrors)) {
534 log_error("Cannot vary number of mirrors in LV yet.");
535 return EINVALID_CMD_LINE;
536 }
537 }
538
52dc2139 539 /* If extending, find stripes, stripesize & size of last segment */
241913fe
AK
540 if ((lp->extents > lv->le_count) &&
541 !(lp->stripes == 1 || (lp->stripes > 1 && lp->stripe_size))) {
1485ce69
AK
542 /* FIXME Don't assume mirror seg will always be AREA_LV */
543 dm_list_iterate_items(seg, seg_mirrors ? &seg_lv(mirr_seg, 0)->segments : &lv->segments) {
32469fb2 544 if (!seg_is_striped(seg))
1832f310 545 continue;
b8c919b4 546
579944d3 547 sz = seg->stripe_size;
b8c919b4 548 str = seg->area_count;
52dc2139 549
bc175d28 550 if ((seg_stripesize && seg_stripesize != sz &&
1485ce69 551 sz && !lp->stripe_size) ||
241913fe 552 (seg_stripes && seg_stripes != str && !lp->stripes)) {
52dc2139
AK
553 log_error("Please specify number of "
554 "stripes (-i) and stripesize (-I)");
7f0dc9c4 555 return EINVALID_CMD_LINE;
52dc2139
AK
556 }
557
558 seg_stripesize = sz;
559 seg_stripes = str;
560 }
561
241913fe
AK
562 if (!lp->stripes)
563 lp->stripes = seg_stripes;
52dc2139 564
241913fe 565 if (!lp->stripe_size && lp->stripes > 1) {
25b73380 566 if (seg_stripesize) {
12de747d 567 log_print("Using stripesize of last segment %s",
72b2cb61 568 display_size(cmd, (uint64_t) seg_stripesize));
241913fe 569 lp->stripe_size = seg_stripesize;
25b73380 570 } else {
7f0dc9c4 571 lp->stripe_size =
2293567c 572 find_config_tree_int(cmd,
8ef2b021 573 "metadata/stripesize",
8ef2b021 574 DEFAULT_STRIPESIZE) * 2;
12de747d 575 log_print("Using default stripesize %s",
72b2cb61 576 display_size(cmd, (uint64_t) lp->stripe_size));
25b73380
AK
577 }
578 }
52dc2139
AK
579 }
580
581 /* If reducing, find stripes, stripesize & size of last segment */
241913fe 582 if (lp->extents < lv->le_count) {
25b73380 583 extents_used = 0;
52dc2139 584
ffb0e538
AK
585 if (lp->stripes || lp->stripe_size || lp->mirrors)
586 log_error("Ignoring stripes, stripesize and mirrors "
587 "arguments when reducing");
52dc2139 588
2c44337b 589 dm_list_iterate_items(seg, &lv->segments) {
579944d3
AK
590 seg_extents = seg->len;
591
f4ba9c5d
MB
592 /* Check for underlying stripe sizes */
593 seg_stripes = lvseg_get_stripes(seg, &seg_stripesize);
52dc2139 594
ffb0e538 595 if (seg_is_mirrored(seg))
31e9db26 596 seg_mirrors = lv_mirror_count(seg->lv);
ffb0e538
AK
597 else
598 seg_mirrors = 0;
599
241913fe 600 if (lp->extents <= extents_used + seg_extents)
52dc2139
AK
601 break;
602
603 extents_used += seg_extents;
604 }
605
241913fe
AK
606 seg_size = lp->extents - extents_used;
607 lp->stripe_size = seg_stripesize;
608 lp->stripes = seg_stripes;
ffb0e538 609 lp->mirrors = seg_mirrors;
52dc2139
AK
610 }
611
241913fe 612 if (lp->stripes > 1 && !lp->stripe_size) {
25b73380 613 log_error("Stripesize for striped segment should not be 0!");
7f0dc9c4 614 return EINVALID_CMD_LINE;
d4e5f63e 615 }
5a52dca9 616
851b1a96 617 if (lp->stripes > 1) {
241913fe 618 if (!(stripesize_extents = lp->stripe_size / vg->extent_size))
d4e5f63e
AK
619 stripesize_extents = 1;
620
851b1a96 621 size_rest = seg_size % (lp->stripes * stripesize_extents);
44dfb51f
PR
622 /* Round toward the original size. */
623 if (size_rest && lp->extents < lv->le_count) {
851b1a96
MB
624 log_print("Rounding size (%d extents) up to stripe "
625 "boundary size for segment (%d extents)",
6f14cd22
MB
626 lp->extents, lp->extents - size_rest +
627 (lp->stripes * stripesize_extents));
628 lp->extents = lp->extents - size_rest +
629 (lp->stripes * stripesize_extents);
851b1a96 630 } else if (size_rest) {
d4e5f63e
AK
631 log_print("Rounding size (%d extents) down to stripe "
632 "boundary size for segment (%d extents)",
241913fe
AK
633 lp->extents, lp->extents - size_rest);
634 lp->extents = lp->extents - size_rest;
d4e5f63e 635 }
12de747d
AK
636
637 if (lp->stripe_size < STRIPE_SIZE_MIN) {
638 log_error("Invalid stripe size %s",
72b2cb61 639 display_size(cmd, (uint64_t) lp->stripe_size));
406a9754 640 return EINVALID_CMD_LINE;
12de747d 641 }
da4e57f2 642 }
52dc2139 643
241913fe
AK
644 if (lp->extents < lv->le_count) {
645 if (lp->resize == LV_EXTEND) {
03a8a07d
AK
646 log_error("New size given (%d extents) not larger "
647 "than existing size (%d extents)",
241913fe 648 lp->extents, lv->le_count);
7f0dc9c4 649 return EINVALID_CMD_LINE;
c8669f6b
ZK
650 }
651 lp->resize = LV_REDUCE;
652 } else if (lp->extents > lv->le_count) {
241913fe 653 if (lp->resize == LV_REDUCE) {
03a8a07d 654 log_error("New size given (%d extents) not less than "
241913fe 655 "existing size (%d extents)", lp->extents,
03a8a07d 656 lv->le_count);
7f0dc9c4 657 return EINVALID_CMD_LINE;
c8669f6b
ZK
658 }
659 lp->resize = LV_EXTEND;
03a8a07d
AK
660 }
661
864de9ce
AK
662 if (lv_is_origin(lv)) {
663 if (lp->resize == LV_REDUCE) {
664 log_error("Snapshot origin volumes cannot be reduced "
665 "in size yet.");
666 return ECMD_FAILED;
667 }
668
669 memset(&info, 0, sizeof(info));
670
2d6fcbf6 671 if (lv_info(cmd, lv, 0, &info, 0, 0) && info.exists) {
864de9ce
AK
672 log_error("Snapshot origin volumes can be resized "
673 "only while inactive: try lvchange -an");
674 return ECMD_FAILED;
675 }
676 }
677
daa10ad0
ZK
678 if (lv_is_thin_pool(lv)) {
679 if (lp->resize == LV_REDUCE) {
680 log_error("Thin pool volumes cannot be reduced in size yet.");
681 return ECMD_FAILED;
682 }
683
684 if (lp->resizefs) {
685 log_warn("Thin pool volumes do not have filesystem.");
686 lp->resizefs = 0;
687 }
688
689 if (!lp->stripes) {
690 /* Try to use the same strip settings for underlying pool data LV */
691 lp->stripes = last_seg(seg_lv(first_seg(lv), 0))->area_count;
692 if (!lp->stripe_size)
693 lp->stripe_size = last_seg(seg_lv(first_seg(lv), 0))->stripe_size;
694 }
695 }
696
bc175d28
AK
697 if ((lp->resize == LV_REDUCE) && lp->argc)
698 log_warn("Ignoring PVs on command line when reducing");
03a8a07d 699
bc175d28
AK
700 /* Request confirmation before operations that are often mistakes. */
701 if ((lp->resizefs || (lp->resize == LV_REDUCE)) &&
702 !_request_confirmation(cmd, vg, lv, lp)) {
703 stack;
2b238642 704 return ECMD_FAILED;
bc175d28 705 }
03a8a07d 706
1a9ea74d 707 if (lp->resizefs) {
bc175d28 708 if (!lp->nofsck &&
2955b913
ZK
709 !_fsadm_cmd(cmd, vg, lp, FSADM_CMD_CHECK, &status)) {
710 if (status != FSADM_CHECK_FAILS_FOR_MOUNTED) {
da1350d4 711 log_error("Filesystem check failed.");
2955b913
ZK
712 return ECMD_FAILED;
713 }
da1350d4 714 /* some filesystems supports online resize */
c8669f6b
ZK
715 }
716
bc175d28 717 if ((lp->resize == LV_REDUCE) &&
2955b913 718 !_fsadm_cmd(cmd, vg, lp, FSADM_CMD_RESIZE, NULL)) {
da1350d4 719 log_error("Filesystem resize failed.");
c8669f6b
ZK
720 return ECMD_FAILED;
721 }
1a9ea74d 722 }
614a4508 723
1a9ea74d
AK
724 if (!archive(vg)) {
725 stack;
726 return ECMD_FAILED;
727 }
03a8a07d 728
1a9ea74d
AK
729 log_print("%sing logical volume %s to %s",
730 (lp->resize == LV_REDUCE) ? "Reduc" : "Extend",
731 lp->lv_name,
72b2cb61 732 display_size(cmd, (uint64_t) lp->extents * vg->extent_size));
1a9ea74d
AK
733
734 if (lp->resize == LV_REDUCE) {
32469fb2 735 if (!lv_reduce(lv, lv->le_count - lp->extents)) {
7f0dc9c4
AK
736 stack;
737 return ECMD_FAILED;
241913fe 738 }
bc175d28 739 } else if ((lp->extents > lv->le_count) && /* Ensure we extend */
fe93c99a
JEB
740 !lv_extend(lv, lp->segtype,
741 lp->stripes, lp->stripe_size,
742 lp->mirrors, first_seg(lv)->region_size,
9ac61d2b 743 lp->extents - lv->le_count, NULL,
fe93c99a 744 pvh, alloc)) {
1a9ea74d
AK
745 stack;
746 return ECMD_FAILED;
03a8a07d
AK
747 }
748
03a8a07d 749 /* store vg on disk(s) */
25b73380 750 if (!vg_write(vg)) {
914c9723 751 stack;
7f0dc9c4 752 return ECMD_FAILED;
cc8b2cd7 753 }
03a8a07d 754
914c9723 755 /* If snapshot, must suspend all associated devices */
2cd0aa72
AK
756 if (lv_is_cow(lv))
757 lock_lv = origin_from_cow(lv);
914c9723 758 else
0fb173aa 759 lock_lv = lv;
914c9723 760
0fb173aa 761 if (!suspend_lv(cmd, lock_lv)) {
241913fe 762 log_error("Failed to suspend %s", lp->lv_name);
914c9723 763 vg_revert(vg);
8f3fd69f 764 backup(vg);
7f0dc9c4 765 return ECMD_FAILED;
914c9723
AK
766 }
767
768 if (!vg_commit(vg)) {
769 stack;
df13cf08
MS
770 if (!resume_lv(cmd, lock_lv))
771 stack;
8f3fd69f 772 backup(vg);
7f0dc9c4 773 return ECMD_FAILED;
914c9723
AK
774 }
775
0fb173aa 776 if (!resume_lv(cmd, lock_lv)) {
241913fe 777 log_error("Problem reactivating %s", lp->lv_name);
8f3fd69f 778 backup(vg);
7f0dc9c4 779 return ECMD_FAILED;
cc8b2cd7 780 }
03a8a07d 781
8f3fd69f
MB
782 backup(vg);
783
6b58c796
ZK
784 /*
785 * Update lvm pool metadata (drop messages) if the pool has been
786 * resumed and do a pool active/deactivate in other case.
787 *
788 * Note: Active thin pool can be waiting for resize.
789 *
790 * FIXME: Activate only when thin volume is active
791 */
792 if (lv_is_thin_pool(lv) &&
793 !update_pool_lv(lv, !lv_is_active(lv))) {
794 stack;
795 return ECMD_FAILED;
796 }
797
241913fe 798 log_print("Logical volume %s successfully resized", lp->lv_name);
03a8a07d 799
bc175d28 800 if (lp->resizefs && (lp->resize == LV_EXTEND) &&
2955b913 801 !_fsadm_cmd(cmd, vg, lp, FSADM_CMD_RESIZE, NULL)) {
c8669f6b
ZK
802 stack;
803 return ECMD_FAILED;
1a9ea74d
AK
804 }
805
cfb7bfc7 806 return ECMD_PROCESSED;
03a8a07d 807}
241913fe
AK
808
809int lvresize(struct cmd_context *cmd, int argc, char **argv)
810{
811 struct lvresize_params lp;
e5f7352b 812 struct volume_group *vg;
241913fe
AK
813 int r;
814
815 memset(&lp, 0, sizeof(lp));
816
8a2fc586 817 if (!_lvresize_params(cmd, argc, argv, &lp))
241913fe
AK
818 return EINVALID_CMD_LINE;
819
820 log_verbose("Finding volume group %s", lp.vg_name);
b8b3508c
DW
821 vg = vg_read_for_update(cmd, lp.vg_name, NULL, 0);
822 if (vg_read_error(vg)) {
077a6755 823 release_vg(vg);
d0bf2f3f 824 stack;
241913fe 825 return ECMD_FAILED;
d0bf2f3f 826 }
241913fe 827
e5f7352b 828 if (!(r = _lvresize(cmd, vg, &lp)))
241913fe
AK
829 stack;
830
077a6755 831 unlock_and_release_vg(cmd, vg, lp.vg_name);
241913fe
AK
832
833 return r;
834}
This page took 0.195709 seconds and 5 git commands to generate.