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 int _monitor_lvs_in_vg(struct cmd_context
*cmd
,
21 struct volume_group
*vg
, int reg
)
24 struct logical_volume
*lv
;
29 dm_list_iterate_items(lvl
, &vg
->lvs
) {
32 if (!lv_info(cmd
, lv
, &info
, 0, 0))
35 lv_active
= info
.exists
;
38 * FIXME: Need to consider all cases... PVMOVE, etc
40 if ((lv
->status
& PVMOVE
) || !lv_active
)
43 if (!monitor_dev_for_events(cmd
, lv
, reg
)) {
50 * returns the number of _new_ monitored devices
56 static int _activate_lvs_in_vg(struct cmd_context
*cmd
,
57 struct volume_group
*vg
, int activate
)
60 struct logical_volume
*lv
;
61 int count
= 0, expected_count
= 0;
63 dm_list_iterate_items(lvl
, &vg
->lvs
) {
66 if (!lv_is_visible(lv
))
69 /* Only request activation of snapshot origin devices */
70 if ((lv
->status
& SNAPSHOT
) || lv_is_cow(lv
))
73 /* Only request activation of mirror LV */
74 if ((lv
->status
& MIRROR_IMAGE
) || (lv
->status
& MIRROR_LOG
))
77 /* Can't deactivate a pvmove LV */
78 /* FIXME There needs to be a controlled way of doing this */
79 if (((activate
== CHANGE_AN
) || (activate
== CHANGE_ALN
)) &&
80 ((lv
->status
& PVMOVE
) ))
85 if (activate
== CHANGE_AN
) {
86 if (!deactivate_lv(cmd
, lv
))
88 } else if (activate
== CHANGE_ALN
) {
89 if (!deactivate_lv_local(cmd
, lv
))
91 } else if (lv_is_origin(lv
) || (activate
== CHANGE_AE
)) {
92 if (!activate_lv_excl(cmd
, lv
))
94 } else if (activate
== CHANGE_ALY
) {
95 if (!activate_lv_local(cmd
, lv
))
97 } else if (!activate_lv(cmd
, lv
))
100 if (activate
!= CHANGE_AN
&& activate
!= CHANGE_ALN
&&
101 (lv
->status
& (PVMOVE
|CONVERTING
)))
102 lv_spawn_background_polling(cmd
, lv
);
108 log_verbose("%s %d logical volumes in volume group %s",
109 activate
? "Activated" : "Deactivated",
112 return (expected_count
!= count
) ? ECMD_FAILED
: ECMD_PROCESSED
;
115 static int _vgchange_monitoring(struct cmd_context
*cmd
, struct volume_group
*vg
)
117 int active
, monitored
;
119 if ((active
= lvs_in_vg_activated(vg
)) &&
120 dmeventd_monitor_mode() != DMEVENTD_MONITOR_IGNORE
) {
121 monitored
= _monitor_lvs_in_vg(cmd
, vg
, dmeventd_monitor_mode());
122 log_print("%d logical volume(s) in volume group "
123 "\"%s\" %smonitored",
124 monitored
, vg
->name
, (dmeventd_monitor_mode()) ? "" : "un");
127 return ECMD_PROCESSED
;
130 static int _vgchange_available(struct cmd_context
*cmd
, struct volume_group
*vg
)
132 int lv_open
, active
, monitored
;
137 * Safe, since we never write out new metadata here. Required for
138 * partial activation to work.
140 cmd
->handles_missing_pvs
= 1;
142 available
= arg_uint_value(cmd
, available_ARG
, 0);
144 if ((available
== CHANGE_AN
) || (available
== CHANGE_ALN
))
147 /* FIXME: Force argument to deactivate them? */
148 if (!activate
&& (lv_open
= lvs_in_vg_opened(vg
))) {
149 log_error("Can't deactivate volume group \"%s\" with %d open "
150 "logical volume(s)", vg
->name
, lv_open
);
154 /* FIXME Move into library where clvmd can use it */
156 check_current_backup(vg
);
158 if (activate
&& (active
= lvs_in_vg_activated(vg
))) {
159 log_verbose("%d logical volume(s) in volume group \"%s\" "
160 "already active", active
, vg
->name
);
161 if (dmeventd_monitor_mode() != DMEVENTD_MONITOR_IGNORE
) {
162 monitored
= _monitor_lvs_in_vg(cmd
, vg
, dmeventd_monitor_mode());
163 log_verbose("%d existing logical volume(s) in volume "
164 "group \"%s\" %smonitored",
166 dmeventd_monitor_mode() ? "" : "un");
170 ret
= _activate_lvs_in_vg(cmd
, vg
, available
);
172 log_print("%d logical volume(s) in volume group \"%s\" now active",
173 lvs_in_vg_activated(vg
), vg
->name
);
177 static int _vgchange_alloc(struct cmd_context
*cmd
, struct volume_group
*vg
)
179 alloc_policy_t alloc
;
181 alloc
= arg_uint_value(cmd
, alloc_ARG
, ALLOC_NORMAL
);
188 /* FIXME: make consistent with vg_set_alloc_policy() */
189 if (alloc
== vg
->alloc
) {
190 log_error("Volume group allocation policy is already %s",
191 get_alloc_string(vg
->alloc
));
194 if (!vg_set_alloc_policy(vg
, alloc
)) {
199 if (!vg_write(vg
) || !vg_commit(vg
)) {
206 log_print("Volume group \"%s\" successfully changed", vg
->name
);
208 return ECMD_PROCESSED
;
211 static int _vgchange_resizeable(struct cmd_context
*cmd
,
212 struct volume_group
*vg
)
214 int resizeable
= !strcmp(arg_str_value(cmd
, resizeable_ARG
, "n"), "y");
216 if (resizeable
&& vg_is_resizeable(vg
)) {
217 log_error("Volume group \"%s\" is already resizeable",
222 if (!resizeable
&& !vg_is_resizeable(vg
)) {
223 log_error("Volume group \"%s\" is already not resizeable",
234 vg
->status
|= RESIZEABLE_VG
;
236 vg
->status
&= ~RESIZEABLE_VG
;
238 if (!vg_write(vg
) || !vg_commit(vg
)) {
245 log_print("Volume group \"%s\" successfully changed", vg
->name
);
247 return ECMD_PROCESSED
;
250 static int _vgchange_clustered(struct cmd_context
*cmd
,
251 struct volume_group
*vg
)
253 int clustered
= !strcmp(arg_str_value(cmd
, clustered_ARG
, "n"), "y");
255 if (clustered
&& (vg_is_clustered(vg
))) {
256 log_error("Volume group \"%s\" is already clustered",
261 if (!clustered
&& !(vg_is_clustered(vg
))) {
262 log_error("Volume group \"%s\" is already not clustered",
272 if (!vg_set_clustered(vg
, clustered
))
275 if (!vg_write(vg
) || !vg_commit(vg
)) {
282 log_print("Volume group \"%s\" successfully changed", vg
->name
);
284 return ECMD_PROCESSED
;
287 static int _vgchange_logicalvolume(struct cmd_context
*cmd
,
288 struct volume_group
*vg
)
290 uint32_t max_lv
= arg_uint_value(cmd
, logicalvolume_ARG
, 0);
297 if (!vg_set_max_lv(vg
, max_lv
)) {
302 if (!vg_write(vg
) || !vg_commit(vg
)) {
309 log_print("Volume group \"%s\" successfully changed", vg
->name
);
311 return ECMD_PROCESSED
;
314 static int _vgchange_physicalvolumes(struct cmd_context
*cmd
,
315 struct volume_group
*vg
)
317 uint32_t max_pv
= arg_uint_value(cmd
, maxphysicalvolumes_ARG
, 0);
319 if (arg_sign_value(cmd
, maxphysicalvolumes_ARG
, 0) == SIGN_MINUS
) {
320 log_error("MaxPhysicalVolumes may not be negative");
321 return EINVALID_CMD_LINE
;
329 if (!vg_set_max_pv(vg
, max_pv
)) {
334 if (!vg_write(vg
) || !vg_commit(vg
)) {
341 log_print("Volume group \"%s\" successfully changed", vg
->name
);
343 return ECMD_PROCESSED
;
346 static int _vgchange_pesize(struct cmd_context
*cmd
, struct volume_group
*vg
)
348 uint32_t extent_size
;
350 if (arg_sign_value(cmd
, physicalextentsize_ARG
, 0) == SIGN_MINUS
) {
351 log_error("Physical extent size may not be negative");
352 return EINVALID_CMD_LINE
;
355 extent_size
= arg_uint_value(cmd
, physicalextentsize_ARG
, 0);
356 /* FIXME: remove check - redundant with vg_change_pesize */
357 if (extent_size
== vg
->extent_size
) {
358 log_error("Physical extent size of VG %s is already %s",
359 vg
->name
, display_size(cmd
, (uint64_t) extent_size
));
360 return ECMD_PROCESSED
;
368 if (!vg_set_extent_size(vg
, extent_size
)) {
370 return EINVALID_CMD_LINE
;
373 if (!vg_write(vg
) || !vg_commit(vg
)) {
380 log_print("Volume group \"%s\" successfully changed", vg
->name
);
382 return ECMD_PROCESSED
;
385 static int _vgchange_tag(struct cmd_context
*cmd
, struct volume_group
*vg
,
390 if (!(tag
= arg_str_value(cmd
, arg
, NULL
))) {
391 log_error("Failed to get tag");
395 if (!(vg
->fid
->fmt
->features
& FMT_TAGS
)) {
396 log_error("Volume group %s does not support tags", vg
->name
);
405 if ((arg
== addtag_ARG
)) {
406 if (!str_list_add(cmd
->mem
, &vg
->tags
, tag
)) {
407 log_error("Failed to add tag %s to volume group %s",
412 if (!str_list_del(&vg
->tags
, tag
)) {
413 log_error("Failed to remove tag %s from volume group "
414 "%s", tag
, vg
->name
);
419 if (!vg_write(vg
) || !vg_commit(vg
)) {
426 log_print("Volume group \"%s\" successfully changed", vg
->name
);
428 return ECMD_PROCESSED
;
431 static int _vgchange_uuid(struct cmd_context
*cmd
__attribute((unused
)),
432 struct volume_group
*vg
)
436 if (lvs_in_vg_activated(vg
)) {
437 log_error("Volume group has active logical volumes");
446 if (!id_create(&vg
->id
)) {
447 log_error("Failed to generate new random UUID for VG %s.",
452 dm_list_iterate_items(lvl
, &vg
->lvs
) {
453 memcpy(&lvl
->lv
->lvid
, &vg
->id
, sizeof(vg
->id
));
456 if (!vg_write(vg
) || !vg_commit(vg
)) {
463 log_print("Volume group \"%s\" successfully changed", vg
->name
);
465 return ECMD_PROCESSED
;
468 static int _vgchange_refresh(struct cmd_context
*cmd
, struct volume_group
*vg
)
470 log_verbose("Refreshing volume group \"%s\"", vg
->name
);
472 if (!vg_refresh_visible(cmd
, vg
)) {
477 return ECMD_PROCESSED
;
480 static int vgchange_single(struct cmd_context
*cmd
, const char *vg_name
,
481 struct volume_group
*vg
,
482 void *handle
__attribute((unused
)))
486 if (vg_is_exported(vg
)) {
487 log_error("Volume group \"%s\" is exported", vg_name
);
491 init_dmeventd_monitor(arg_int_value(cmd
, monitor_ARG
,
492 (is_static() || arg_count(cmd
, ignoremonitoring_ARG
)) ?
493 DMEVENTD_MONITOR_IGNORE
: DEFAULT_DMEVENTD_MONITOR
));
495 if (arg_count(cmd
, available_ARG
))
496 r
= _vgchange_available(cmd
, vg
);
498 else if (arg_count(cmd
, monitor_ARG
))
499 r
= _vgchange_monitoring(cmd
, vg
);
501 else if (arg_count(cmd
, resizeable_ARG
))
502 r
= _vgchange_resizeable(cmd
, vg
);
504 else if (arg_count(cmd
, logicalvolume_ARG
))
505 r
= _vgchange_logicalvolume(cmd
, vg
);
507 else if (arg_count(cmd
, maxphysicalvolumes_ARG
))
508 r
= _vgchange_physicalvolumes(cmd
, vg
);
510 else if (arg_count(cmd
, addtag_ARG
))
511 r
= _vgchange_tag(cmd
, vg
, addtag_ARG
);
513 else if (arg_count(cmd
, deltag_ARG
))
514 r
= _vgchange_tag(cmd
, vg
, deltag_ARG
);
516 else if (arg_count(cmd
, physicalextentsize_ARG
))
517 r
= _vgchange_pesize(cmd
, vg
);
519 else if (arg_count(cmd
, uuid_ARG
))
520 r
= _vgchange_uuid(cmd
, vg
);
522 else if (arg_count(cmd
, alloc_ARG
))
523 r
= _vgchange_alloc(cmd
, vg
);
525 else if (arg_count(cmd
, clustered_ARG
))
526 r
= _vgchange_clustered(cmd
, vg
);
528 else if (arg_count(cmd
, refresh_ARG
))
529 r
= _vgchange_refresh(cmd
, vg
);
534 int vgchange(struct cmd_context
*cmd
, int argc
, char **argv
)
537 (arg_count(cmd
, available_ARG
) + arg_count(cmd
, logicalvolume_ARG
) +
538 arg_count(cmd
, maxphysicalvolumes_ARG
) +
539 arg_count(cmd
, resizeable_ARG
) + arg_count(cmd
, deltag_ARG
) +
540 arg_count(cmd
, addtag_ARG
) + arg_count(cmd
, uuid_ARG
) +
541 arg_count(cmd
, physicalextentsize_ARG
) +
542 arg_count(cmd
, clustered_ARG
) + arg_count(cmd
, alloc_ARG
) +
543 arg_count(cmd
, monitor_ARG
) + arg_count(cmd
, refresh_ARG
))) {
544 log_error("One of -a, -c, -l, -p, -s, -x, --refresh, "
545 "--uuid, --alloc, --addtag or --deltag required");
546 return EINVALID_CMD_LINE
;
549 /* FIXME Cope with several changes at once! */
550 if (arg_count(cmd
, available_ARG
) + arg_count(cmd
, logicalvolume_ARG
) +
551 arg_count(cmd
, maxphysicalvolumes_ARG
) +
552 arg_count(cmd
, resizeable_ARG
) + arg_count(cmd
, deltag_ARG
) +
553 arg_count(cmd
, addtag_ARG
) + arg_count(cmd
, alloc_ARG
) +
554 arg_count(cmd
, uuid_ARG
) + arg_count(cmd
, clustered_ARG
) +
555 arg_count(cmd
, physicalextentsize_ARG
) > 1) {
556 log_error("Only one of -a, -c, -l, -p, -s, -x, --uuid, "
557 "--alloc, --addtag or --deltag allowed");
558 return EINVALID_CMD_LINE
;
561 if (arg_count(cmd
, ignorelockingfailure_ARG
) &&
562 !arg_count(cmd
, available_ARG
)) {
563 log_error("--ignorelockingfailure only available with -a");
564 return EINVALID_CMD_LINE
;
567 if (arg_count(cmd
, available_ARG
) == 1
568 && arg_count(cmd
, autobackup_ARG
)) {
569 log_error("-A option not necessary with -a option");
570 return EINVALID_CMD_LINE
;
573 return process_each_vg(cmd
, argc
, argv
,
574 (arg_count(cmd
, available_ARG
)) ?