]> sourceware.org Git - lvm2.git/blob - lib/activate/activate.c
Thin add function to read thin volume percent
[lvm2.git] / lib / activate / activate.c
1 /*
2 * Copyright (C) 2001-2004 Sistina Software, Inc. All rights reserved.
3 * Copyright (C) 2004-2012 Red Hat, Inc. All rights reserved.
4 *
5 * This file is part of LVM2.
6 *
7 * This copyrighted material is made available to anyone wishing to use,
8 * modify, copy, or redistribute it subject to the terms and conditions
9 * of the GNU Lesser General Public License v.2.1.
10 *
11 * You should have received a copy of the GNU Lesser General Public License
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
14 */
15
16 #include "lib.h"
17 #include "metadata.h"
18 #include "activate.h"
19 #include "memlock.h"
20 #include "display.h"
21 #include "fs.h"
22 #include "lvm-exec.h"
23 #include "lvm-file.h"
24 #include "lvm-string.h"
25 #include "toolcontext.h"
26 #include "dev_manager.h"
27 #include "str_list.h"
28 #include "config.h"
29 #include "filter.h"
30 #include "segtype.h"
31 #include "sharedlib.h"
32
33 #include <limits.h>
34 #include <fcntl.h>
35 #include <unistd.h>
36
37 #define _skip(fmt, args...) log_very_verbose("Skipping: " fmt , ## args)
38
39 int lvm1_present(struct cmd_context *cmd)
40 {
41 static char path[PATH_MAX];
42
43 if (dm_snprintf(path, sizeof(path), "%s/lvm/global", cmd->proc_dir)
44 < 0) {
45 log_error("LVM1 proc global snprintf failed");
46 return 0;
47 }
48
49 if (path_exists(path))
50 return 1;
51 else
52 return 0;
53 }
54
55 int list_segment_modules(struct dm_pool *mem, const struct lv_segment *seg,
56 struct dm_list *modules)
57 {
58 unsigned int s;
59 struct lv_segment *seg2, *snap_seg;
60 struct dm_list *snh;
61
62 if (seg->segtype->ops->modules_needed &&
63 !seg->segtype->ops->modules_needed(mem, seg, modules)) {
64 log_error("module string allocation failed");
65 return 0;
66 }
67
68 if (lv_is_origin(seg->lv))
69 dm_list_iterate(snh, &seg->lv->snapshot_segs)
70 if (!list_lv_modules(mem,
71 dm_list_struct_base(snh,
72 struct lv_segment,
73 origin_list)->cow,
74 modules))
75 return_0;
76
77 if (lv_is_cow(seg->lv)) {
78 snap_seg = find_cow(seg->lv);
79 if (snap_seg->segtype->ops->modules_needed &&
80 !snap_seg->segtype->ops->modules_needed(mem, snap_seg,
81 modules)) {
82 log_error("snap_seg module string allocation failed");
83 return 0;
84 }
85 }
86
87 for (s = 0; s < seg->area_count; s++) {
88 switch (seg_type(seg, s)) {
89 case AREA_LV:
90 seg2 = find_seg_by_le(seg_lv(seg, s), seg_le(seg, s));
91 if (seg2 && !list_segment_modules(mem, seg2, modules))
92 return_0;
93 break;
94 case AREA_PV:
95 case AREA_UNASSIGNED:
96 ;
97 }
98 }
99
100 return 1;
101 }
102
103 int list_lv_modules(struct dm_pool *mem, const struct logical_volume *lv,
104 struct dm_list *modules)
105 {
106 struct lv_segment *seg;
107
108 dm_list_iterate_items(seg, &lv->segments)
109 if (!list_segment_modules(mem, seg, modules))
110 return_0;
111
112 return 1;
113 }
114
115 #ifndef DEVMAPPER_SUPPORT
116 void set_activation(int act)
117 {
118 static int warned = 0;
119
120 if (warned || !act)
121 return;
122
123 log_error("Compiled without libdevmapper support. "
124 "Can't enable activation.");
125
126 warned = 1;
127 }
128 int activation(void)
129 {
130 return 0;
131 }
132 int library_version(char *version, size_t size)
133 {
134 return 0;
135 }
136 int driver_version(char *version, size_t size)
137 {
138 return 0;
139 }
140 int target_version(const char *target_name, uint32_t *maj,
141 uint32_t *min, uint32_t *patchlevel)
142 {
143 return 0;
144 }
145 int target_present(struct cmd_context *cmd, const char *target_name,
146 int use_modprobe)
147 {
148 return 0;
149 }
150 int lvm_dm_prefix_check(const char *sysfs_dir, int major, int minor, const char *prefix)
151 {
152 return 0;
153 }
154 int lv_info(struct cmd_context *cmd, const struct logical_volume *lv, unsigned origin_only,
155 struct lvinfo *info, int with_open_count, int with_read_ahead)
156 {
157 return 0;
158 }
159 int lv_info_by_lvid(struct cmd_context *cmd, const char *lvid_s,
160 unsigned origin_only,
161 struct lvinfo *info, int with_open_count, int with_read_ahead)
162 {
163 return 0;
164 }
165 int lv_snapshot_percent(const struct logical_volume *lv, percent_t *percent)
166 {
167 return 0;
168 }
169 int lv_mirror_percent(struct cmd_context *cmd, const struct logical_volume *lv,
170 int wait, percent_t *percent, uint32_t *event_nr)
171 {
172 return 0;
173 }
174 int lvs_in_vg_activated(struct volume_group *vg)
175 {
176 return 0;
177 }
178 int lvs_in_vg_opened(const struct volume_group *vg)
179 {
180 return 0;
181 }
182 /******
183 int lv_suspend(struct cmd_context *cmd, const char *lvid_s)
184 {
185 return 1;
186 }
187 *******/
188 int lv_suspend_if_active(struct cmd_context *cmd, const char *lvid_s, unsigned origin_only)
189 {
190 return 1;
191 }
192 int lv_resume(struct cmd_context *cmd, const char *lvid_s, unsigned origin_only)
193 {
194 return 1;
195 }
196 int lv_resume_if_active(struct cmd_context *cmd, const char *lvid_s,
197 unsigned origin_only, unsigned exclusive, unsigned revert)
198 {
199 return 1;
200 }
201 int lv_deactivate(struct cmd_context *cmd, const char *lvid_s)
202 {
203 return 1;
204 }
205 int lv_activation_filter(struct cmd_context *cmd, const char *lvid_s,
206 int *activate_lv)
207 {
208 return 1;
209 }
210 int lv_activate(struct cmd_context *cmd, const char *lvid_s, int exclusive)
211 {
212 return 1;
213 }
214 int lv_activate_with_filter(struct cmd_context *cmd, const char *lvid_s, int exclusive)
215 {
216 return 1;
217 }
218 int lv_mknodes(struct cmd_context *cmd, const struct logical_volume *lv)
219 {
220 return 1;
221 }
222 int lv_send_message(const struct logical_volume *lv, const char *message)
223 {
224 return 0;
225 }
226 int pv_uses_vg(struct physical_volume *pv,
227 struct volume_group *vg)
228 {
229 return 0;
230 }
231 void activation_release(void)
232 {
233 }
234 void activation_exit(void)
235 {
236 }
237
238 int lv_is_active(struct logical_volume *lv)
239 {
240 return 0;
241 }
242 int lv_is_active_but_not_locally(struct logical_volume *lv)
243 {
244 return 0;
245 }
246 int lv_is_active_exclusive(struct logical_volume *lv)
247 {
248 return 0;
249 }
250 int lv_is_active_exclusive_locally(struct logical_volume *lv)
251 {
252 return 0;
253 }
254 int lv_is_active_exclusive_remotely(struct logical_volume *lv)
255 {
256 return 0;
257 }
258
259 int lv_check_transient(struct logical_volume *lv)
260 {
261 return 1;
262 }
263 int monitor_dev_for_events(struct cmd_context *cmd, struct logical_volume *lv,
264 struct lv_activate_opts *laopts, int monitor)
265 {
266 return 1;
267 }
268 #else /* DEVMAPPER_SUPPORT */
269
270 static int _activation = 1;
271
272 void set_activation(int act)
273 {
274 if (act == _activation)
275 return;
276
277 _activation = act;
278 if (_activation)
279 log_verbose("Activation enabled. Device-mapper kernel "
280 "driver will be used.");
281 else
282 log_warn("WARNING: Activation disabled. No device-mapper "
283 "interaction will be attempted.");
284 }
285
286 int activation(void)
287 {
288 return _activation;
289 }
290
291 static int _passes_volumes_filter(struct cmd_context *cmd,
292 struct logical_volume *lv,
293 const struct dm_config_node *cn,
294 const char *config_path)
295 {
296 const struct dm_config_value *cv;
297 const char *str;
298 static char path[PATH_MAX];
299
300 log_verbose("%s configuration setting defined: "
301 "Checking the list to match %s/%s",
302 config_path, lv->vg->name, lv->name);
303
304 for (cv = cn->v; cv; cv = cv->next) {
305 if (cv->type != DM_CFG_STRING) {
306 log_error("Ignoring invalid string in config file %s",
307 config_path);
308 continue;
309 }
310 str = cv->v.str;
311 if (!*str) {
312 log_error("Ignoring empty string in config file %s",
313 config_path);
314 continue;
315 }
316
317
318 /* Tag? */
319 if (*str == '@') {
320 str++;
321 if (!*str) {
322 log_error("Ignoring empty tag in config file "
323 "%s", config_path);
324 continue;
325 }
326 /* If any host tag matches any LV or VG tag, activate */
327 if (!strcmp(str, "*")) {
328 if (str_list_match_list(&cmd->tags, &lv->tags, NULL)
329 || str_list_match_list(&cmd->tags,
330 &lv->vg->tags, NULL))
331 return 1;
332 else
333 continue;
334 }
335 /* If supplied tag matches LV or VG tag, activate */
336 if (str_list_match_item(&lv->tags, str) ||
337 str_list_match_item(&lv->vg->tags, str))
338 return 1;
339 else
340 continue;
341 }
342 if (!strchr(str, '/')) {
343 /* vgname supplied */
344 if (!strcmp(str, lv->vg->name))
345 return 1;
346 else
347 continue;
348 }
349 /* vgname/lvname */
350 if (dm_snprintf(path, sizeof(path), "%s/%s", lv->vg->name,
351 lv->name) < 0) {
352 log_error("dm_snprintf error from %s/%s", lv->vg->name,
353 lv->name);
354 continue;
355 }
356 if (!strcmp(path, str))
357 return 1;
358 }
359
360 log_verbose("No item supplied in %s configuration setting "
361 "matches %s/%s", config_path, lv->vg->name, lv->name);
362
363 return 0;
364 }
365
366 static int _passes_activation_filter(struct cmd_context *cmd,
367 struct logical_volume *lv)
368 {
369 const struct dm_config_node *cn;
370
371 if (!(cn = find_config_tree_node(cmd, "activation/volume_list"))) {
372 log_verbose("activation/volume_list configuration setting "
373 "not defined: Checking only host tags for %s/%s",
374 lv->vg->name, lv->name);
375
376 /* If no host tags defined, activate */
377 if (dm_list_empty(&cmd->tags))
378 return 1;
379
380 /* If any host tag matches any LV or VG tag, activate */
381 if (str_list_match_list(&cmd->tags, &lv->tags, NULL) ||
382 str_list_match_list(&cmd->tags, &lv->vg->tags, NULL))
383 return 1;
384
385 log_verbose("No host tag matches %s/%s",
386 lv->vg->name, lv->name);
387
388 /* Don't activate */
389 return 0;
390 }
391
392 return _passes_volumes_filter(cmd, lv, cn, "activation/volume_list");
393 }
394
395 static int _passes_readonly_filter(struct cmd_context *cmd,
396 struct logical_volume *lv)
397 {
398 const struct dm_config_node *cn;
399
400 if (!(cn = find_config_tree_node(cmd, "activation/read_only_volume_list")))
401 return 0;
402
403 return _passes_volumes_filter(cmd, lv, cn, "activation/read_only_volume_list");
404 }
405
406 int library_version(char *version, size_t size)
407 {
408 if (!activation())
409 return 0;
410
411 return dm_get_library_version(version, size);
412 }
413
414 int driver_version(char *version, size_t size)
415 {
416 if (!activation())
417 return 0;
418
419 log_very_verbose("Getting driver version");
420
421 return dm_driver_version(version, size);
422 }
423
424 int target_version(const char *target_name, uint32_t *maj,
425 uint32_t *min, uint32_t *patchlevel)
426 {
427 int r = 0;
428 struct dm_task *dmt;
429 struct dm_versions *target, *last_target;
430
431 log_very_verbose("Getting target version for %s", target_name);
432 if (!(dmt = dm_task_create(DM_DEVICE_LIST_VERSIONS)))
433 return_0;
434
435 if (activation_checks() && !dm_task_enable_checks(dmt))
436 goto_out;
437
438 if (!dm_task_run(dmt)) {
439 log_debug("Failed to get %s target version", target_name);
440 /* Assume this was because LIST_VERSIONS isn't supported */
441 return 1;
442 }
443
444 target = dm_task_get_versions(dmt);
445
446 do {
447 last_target = target;
448
449 if (!strcmp(target_name, target->name)) {
450 r = 1;
451 *maj = target->version[0];
452 *min = target->version[1];
453 *patchlevel = target->version[2];
454 goto out;
455 }
456
457 target = (struct dm_versions *)((char *) target + target->next);
458 } while (last_target != target);
459
460 out:
461 dm_task_destroy(dmt);
462
463 return r;
464 }
465
466 int lvm_dm_prefix_check(int major, int minor, const char *prefix)
467 {
468 struct dm_task *dmt;
469 const char *uuid;
470 int r;
471
472 if (!(dmt = dm_task_create(DM_DEVICE_STATUS)))
473 return_0;
474
475 if (!dm_task_set_minor(dmt, minor) ||
476 !dm_task_set_major(dmt, major) ||
477 !dm_task_run(dmt) ||
478 !(uuid = dm_task_get_uuid(dmt))) {
479 dm_task_destroy(dmt);
480 return 0;
481 }
482
483 r = strncasecmp(uuid, prefix, strlen(prefix));
484 dm_task_destroy(dmt);
485
486 return r ? 0 : 1;
487 }
488
489 int module_present(struct cmd_context *cmd, const char *target_name)
490 {
491 int ret = 0;
492 #ifdef MODPROBE_CMD
493 char module[128];
494 const char *argv[3];
495
496 if (dm_snprintf(module, sizeof(module), "dm-%s", target_name) < 0) {
497 log_error("module_present module name too long: %s",
498 target_name);
499 return 0;
500 }
501
502 argv[0] = MODPROBE_CMD;
503 argv[1] = module;
504 argv[2] = NULL;
505
506 ret = exec_cmd(cmd, argv, NULL, 0);
507 #endif
508 return ret;
509 }
510
511 int target_present(struct cmd_context *cmd, const char *target_name,
512 int use_modprobe)
513 {
514 uint32_t maj, min, patchlevel;
515
516 if (!activation())
517 return 0;
518
519 #ifdef MODPROBE_CMD
520 if (use_modprobe) {
521 if (target_version(target_name, &maj, &min, &patchlevel))
522 return 1;
523
524 if (!module_present(cmd, target_name))
525 return_0;
526 }
527 #endif
528
529 return target_version(target_name, &maj, &min, &patchlevel);
530 }
531
532 /*
533 * Returns 1 if info structure populated, else 0 on failure.
534 */
535 int lv_info(struct cmd_context *cmd, const struct logical_volume *lv, unsigned origin_only,
536 struct lvinfo *info, int with_open_count, int with_read_ahead)
537 {
538 struct dm_info dminfo;
539
540 if (!activation())
541 return 0;
542 /*
543 * If open_count info is requested and we have to be sure our own udev
544 * transactions are finished
545 * For non-clustered locking type we are only interested for non-delete operation
546 * in progress - as only those could lead to opened files
547 */
548 if (with_open_count) {
549 if (locking_is_clustered())
550 sync_local_dev_names(cmd); /* Wait to have udev in sync */
551 else if (fs_has_non_delete_ops())
552 fs_unlock(); /* For non clustered - wait if there are non-delete ops */
553 }
554
555 if (!dev_manager_info(lv->vg->cmd->mem, lv, origin_only ? "real" : NULL, with_open_count,
556 with_read_ahead, &dminfo, &info->read_ahead))
557 return_0;
558
559 info->exists = dminfo.exists;
560 info->suspended = dminfo.suspended;
561 info->open_count = dminfo.open_count;
562 info->major = dminfo.major;
563 info->minor = dminfo.minor;
564 info->read_only = dminfo.read_only;
565 info->live_table = dminfo.live_table;
566 info->inactive_table = dminfo.inactive_table;
567
568 return 1;
569 }
570
571 int lv_info_by_lvid(struct cmd_context *cmd, const char *lvid_s,
572 unsigned origin_only,
573 struct lvinfo *info, int with_open_count, int with_read_ahead)
574 {
575 int r;
576 struct logical_volume *lv;
577
578 if (!(lv = lv_from_lvid(cmd, lvid_s, 0)))
579 return 0;
580
581 if (!lv_is_origin(lv))
582 origin_only = 0;
583
584 r = lv_info(cmd, lv, origin_only, info, with_open_count, with_read_ahead);
585 release_vg(lv->vg);
586
587 return r;
588 }
589
590 int lv_check_not_in_use(struct cmd_context *cmd __attribute__((unused)),
591 struct logical_volume *lv, struct lvinfo *info)
592 {
593 if (!info->exists)
594 return 1;
595
596 /* If sysfs is not used, use open_count information only. */
597 if (!*dm_sysfs_dir()) {
598 if (info->open_count) {
599 log_error("Logical volume %s/%s in use.",
600 lv->vg->name, lv->name);
601 return 0;
602 }
603
604 return 1;
605 }
606
607 if (dm_device_has_holders(info->major, info->minor)) {
608 log_error("Logical volume %s/%s is used by another device.",
609 lv->vg->name, lv->name);
610 return 0;
611 }
612
613 if (dm_device_has_mounted_fs(info->major, info->minor)) {
614 log_error("Logical volume %s/%s contains a filesystem in use.",
615 lv->vg->name, lv->name);
616 return 0;
617 }
618
619 return 1;
620 }
621
622 /*
623 * Returns 1 if percent set, else 0 on failure.
624 */
625 int lv_check_transient(struct logical_volume *lv)
626 {
627 int r;
628 struct dev_manager *dm;
629
630 if (!activation())
631 return 0;
632
633 log_debug("Checking transient status for LV %s/%s", lv->vg->name, lv->name);
634
635 if (!(dm = dev_manager_create(lv->vg->cmd, lv->vg->name, 1)))
636 return_0;
637
638 if (!(r = dev_manager_transient(dm, lv)))
639 stack;
640
641 dev_manager_destroy(dm);
642
643 return r;
644 }
645
646 /*
647 * Returns 1 if percent set, else 0 on failure.
648 */
649 int lv_snapshot_percent(const struct logical_volume *lv, percent_t *percent)
650 {
651 int r;
652 struct dev_manager *dm;
653
654 if (!activation())
655 return 0;
656
657 log_debug("Checking snapshot percent for LV %s/%s", lv->vg->name, lv->name);
658
659 if (!(dm = dev_manager_create(lv->vg->cmd, lv->vg->name, 1)))
660 return_0;
661
662 if (!(r = dev_manager_snapshot_percent(dm, lv, percent)))
663 stack;
664
665 dev_manager_destroy(dm);
666
667 return r;
668 }
669
670 /* FIXME Merge with snapshot_percent */
671 int lv_mirror_percent(struct cmd_context *cmd, const struct logical_volume *lv,
672 int wait, percent_t *percent, uint32_t *event_nr)
673 {
674 int r;
675 struct dev_manager *dm;
676 struct lvinfo info;
677
678 /* If mirrored LV is temporarily shrinked to 1 area (= linear),
679 * it should be considered in-sync. */
680 if (dm_list_size(&lv->segments) == 1 && first_seg(lv)->area_count == 1) {
681 *percent = PERCENT_100;
682 return 1;
683 }
684
685 if (!activation())
686 return 0;
687
688 log_debug("Checking mirror percent for LV %s/%s", lv->vg->name, lv->name);
689
690 if (!lv_info(cmd, lv, 0, &info, 0, 0))
691 return_0;
692
693 if (!info.exists)
694 return 0;
695
696 if (!(dm = dev_manager_create(lv->vg->cmd, lv->vg->name, 1)))
697 return_0;
698
699 if (!(r = dev_manager_mirror_percent(dm, lv, wait, percent, event_nr)))
700 stack;
701
702 dev_manager_destroy(dm);
703
704 return r;
705 }
706
707 int lv_raid_percent(const struct logical_volume *lv, percent_t *percent)
708 {
709 return lv_mirror_percent(lv->vg->cmd, lv, 0, percent, NULL);
710 }
711
712 /*
713 * Returns data or metadata percent usage, depends on metadata 0/1.
714 * Returns 1 if percent set, else 0 on failure.
715 */
716 int lv_thin_pool_percent(const struct logical_volume *lv, int metadata,
717 percent_t *percent)
718 {
719 int r;
720 struct dev_manager *dm;
721
722 if (!activation())
723 return 0;
724
725 log_debug("Checking thin %sdata percent for LV %s/%s",
726 (metadata) ? "meta" : "", lv->vg->name, lv->name);
727
728 if (!(dm = dev_manager_create(lv->vg->cmd, lv->vg->name, 1)))
729 return_0;
730
731 if (!(r = dev_manager_thin_pool_percent(dm, lv, metadata, percent)))
732 stack;
733
734 dev_manager_destroy(dm);
735
736 return r;
737 }
738
739 /*
740 * Returns 1 if percent set, else 0 on failure.
741 */
742 int lv_thin_percent(const struct logical_volume *lv,
743 int mapped, percent_t *percent)
744 {
745 int r;
746 struct dev_manager *dm;
747
748 if (!activation())
749 return 0;
750
751 log_debug("Checking thin percent for LV %s/%s",
752 lv->vg->name, lv->name);
753
754 if (!(dm = dev_manager_create(lv->vg->cmd, lv->vg->name, 1)))
755 return_0;
756
757 if (!(r = dev_manager_thin_percent(dm, lv, mapped, percent)))
758 stack;
759
760 dev_manager_destroy(dm);
761
762 return r;
763 }
764
765 static int _lv_active(struct cmd_context *cmd, struct logical_volume *lv)
766 {
767 struct lvinfo info;
768
769 if (!lv_info(cmd, lv, 0, &info, 0, 0)) {
770 stack;
771 return -1;
772 }
773
774 return info.exists;
775 }
776
777 static int _lv_open_count(struct cmd_context *cmd, struct logical_volume *lv)
778 {
779 struct lvinfo info;
780
781 if (!lv_info(cmd, lv, 0, &info, 1, 0)) {
782 stack;
783 return -1;
784 }
785
786 return info.open_count;
787 }
788
789 static int _lv_activate_lv(struct logical_volume *lv, struct lv_activate_opts *laopts)
790 {
791 int r;
792 struct dev_manager *dm;
793
794 if (!(dm = dev_manager_create(lv->vg->cmd, lv->vg->name, (lv->status & PVMOVE) ? 0 : 1)))
795 return_0;
796
797 if (!(r = dev_manager_activate(dm, lv, laopts)))
798 stack;
799
800 dev_manager_destroy(dm);
801 return r;
802 }
803
804 static int _lv_preload(struct logical_volume *lv, struct lv_activate_opts *laopts,
805 int *flush_required)
806 {
807 int r = 0;
808 struct dev_manager *dm;
809 int old_readonly = laopts->read_only;
810
811 laopts->read_only = _passes_readonly_filter(lv->vg->cmd, lv);
812
813 if (!(dm = dev_manager_create(lv->vg->cmd, lv->vg->name, (lv->status & PVMOVE) ? 0 : 1)))
814 goto_out;
815
816 if (!(r = dev_manager_preload(dm, lv, laopts, flush_required)))
817 stack;
818
819 dev_manager_destroy(dm);
820
821 laopts->read_only = old_readonly;
822 out:
823 return r;
824 }
825
826 static int _lv_deactivate(struct logical_volume *lv)
827 {
828 int r;
829 struct dev_manager *dm;
830
831 if (!(dm = dev_manager_create(lv->vg->cmd, lv->vg->name, 1)))
832 return_0;
833
834 if (!(r = dev_manager_deactivate(dm, lv)))
835 stack;
836
837 dev_manager_destroy(dm);
838 return r;
839 }
840
841 static int _lv_suspend_lv(struct logical_volume *lv, struct lv_activate_opts *laopts,
842 int lockfs, int flush_required)
843 {
844 int r;
845 struct dev_manager *dm;
846
847 laopts->read_only = _passes_readonly_filter(lv->vg->cmd, lv);
848
849 /*
850 * When we are asked to manipulate (normally suspend/resume) the PVMOVE
851 * device directly, we don't want to touch the devices that use it.
852 */
853 if (!(dm = dev_manager_create(lv->vg->cmd, lv->vg->name, (lv->status & PVMOVE) ? 0 : 1)))
854 return_0;
855
856 if (!(r = dev_manager_suspend(dm, lv, laopts, lockfs, flush_required)))
857 stack;
858
859 dev_manager_destroy(dm);
860 return r;
861 }
862
863 /*
864 * These two functions return the number of visible LVs in the state,
865 * or -1 on error. FIXME Check this.
866 */
867 int lvs_in_vg_activated(struct volume_group *vg)
868 {
869 struct lv_list *lvl;
870 int count = 0;
871
872 if (!activation())
873 return 0;
874
875 dm_list_iterate_items(lvl, &vg->lvs)
876 if (lv_is_visible(lvl->lv))
877 count += (_lv_active(vg->cmd, lvl->lv) == 1);
878
879 log_debug("Counted %d active LVs in VG %s", count, vg->name);
880
881 return count;
882 }
883
884 int lvs_in_vg_opened(const struct volume_group *vg)
885 {
886 const struct lv_list *lvl;
887 int count = 0;
888
889 if (!activation())
890 return 0;
891
892 dm_list_iterate_items(lvl, &vg->lvs)
893 if (lv_is_visible(lvl->lv))
894 count += (_lv_open_count(vg->cmd, lvl->lv) > 0);
895
896 log_debug("Counted %d open LVs in VG %s", count, vg->name);
897
898 return count;
899 }
900
901 /*
902 * _lv_is_active
903 * @lv: logical volume being queried
904 * @locally: set if active locally (when provided)
905 * @exclusive: set if active exclusively (when provided)
906 *
907 * Determine whether an LV is active locally or in a cluster.
908 * In addition to the return code which indicates whether or
909 * not the LV is active somewhere, two other values are set
910 * to yield more information about the status of the activation:
911 * return locally exclusively status
912 * ====== ======= =========== ======
913 * 0 0 0 not active
914 * 1 0 0 active remotely
915 * 1 0 1 exclusive remotely
916 * 1 1 0 active locally and possibly remotely
917 * 1 1 1 exclusive locally (or local && !cluster)
918 * The VG lock must be held to call this function.
919 *
920 * Returns: 0 or 1
921 */
922 static int _lv_is_active(struct logical_volume *lv,
923 int *locally, int *exclusive)
924 {
925 int r, l, e; /* remote, local, and exclusive */
926
927 r = l = e = 0;
928
929 if (_lv_active(lv->vg->cmd, lv))
930 l = 1;
931
932 if (!vg_is_clustered(lv->vg)) {
933 e = 1; /* exclusive by definition */
934 goto out;
935 }
936
937 /* Active locally, and the caller doesn't care about exclusive */
938 if (l && !exclusive)
939 goto out;
940
941 if ((r = remote_lock_held(lv->lvid.s, &e)) >= 0)
942 goto out;
943
944 /*
945 * If lock query is not supported (due to interfacing with old
946 * code), then we cannot evaluate exclusivity properly.
947 *
948 * Old users of this function will never be affected by this,
949 * since they are only concerned about active vs. not active.
950 * New users of this function who specifically ask for 'exclusive'
951 * will be given an error message.
952 */
953 if (l) {
954 if (exclusive)
955 log_error("Unable to determine exclusivity of %s",
956 lv->name);
957 goto out;
958 }
959
960 /* FIXME: Is this fallback alright? */
961 if (activate_lv_excl(lv->vg->cmd, lv)) {
962 if (!deactivate_lv(lv->vg->cmd, lv))
963 stack;
964 /* FIXME: locally & exclusive are undefined. */
965 return 0;
966 }
967 /* FIXME: Check exclusive value here. */
968 out:
969 if (locally)
970 *locally = l;
971 if (exclusive)
972 *exclusive = e;
973
974 log_very_verbose("%s/%s is %sactive%s%s",
975 lv->vg->name, lv->name,
976 (r || l) ? "" : "not ",
977 (exclusive && e) ? " exclusive" : "",
978 e ? (l ? " locally" : " remotely") : "");
979
980 return r || l;
981 }
982
983 int lv_is_active(struct logical_volume *lv)
984 {
985 return _lv_is_active(lv, NULL, NULL);
986 }
987
988 int lv_is_active_but_not_locally(struct logical_volume *lv)
989 {
990 int l;
991 return _lv_is_active(lv, &l, NULL) && !l;
992 }
993
994 int lv_is_active_exclusive(struct logical_volume *lv)
995 {
996 int e;
997
998 return _lv_is_active(lv, NULL, &e) && e;
999 }
1000
1001 int lv_is_active_exclusive_locally(struct logical_volume *lv)
1002 {
1003 int l, e;
1004
1005 return _lv_is_active(lv, &l, &e) && l && e;
1006 }
1007
1008 int lv_is_active_exclusive_remotely(struct logical_volume *lv)
1009 {
1010 int l, e;
1011
1012 return _lv_is_active(lv, &l, &e) && !l && e;
1013 }
1014
1015 #ifdef DMEVENTD
1016 static struct dm_event_handler *_create_dm_event_handler(struct cmd_context *cmd, const char *dmuuid, const char *dso,
1017 const int timeout, enum dm_event_mask mask)
1018 {
1019 struct dm_event_handler *dmevh;
1020
1021 if (!(dmevh = dm_event_handler_create()))
1022 return_NULL;
1023
1024 if (dm_event_handler_set_dmeventd_path(dmevh, find_config_tree_str(cmd, "dmeventd/executable", NULL)))
1025 goto_bad;
1026
1027 if (dm_event_handler_set_dso(dmevh, dso))
1028 goto_bad;
1029
1030 if (dm_event_handler_set_uuid(dmevh, dmuuid))
1031 goto_bad;
1032
1033 dm_event_handler_set_timeout(dmevh, timeout);
1034 dm_event_handler_set_event_mask(dmevh, mask);
1035
1036 return dmevh;
1037
1038 bad:
1039 dm_event_handler_destroy(dmevh);
1040 return NULL;
1041 }
1042
1043 char *get_monitor_dso_path(struct cmd_context *cmd, const char *libpath)
1044 {
1045 char *path;
1046
1047 if (!(path = dm_pool_alloc(cmd->mem, PATH_MAX))) {
1048 log_error("Failed to allocate dmeventd library path.");
1049 return NULL;
1050 }
1051
1052 get_shared_library_path(cmd, libpath, path, PATH_MAX);
1053
1054 return path;
1055 }
1056
1057 static char *_build_target_uuid(struct cmd_context *cmd, struct logical_volume *lv)
1058 {
1059 const char *layer;
1060
1061 if (lv_is_thin_pool(lv))
1062 layer = "tpool"; /* Monitor "tpool" for the "thin pool". */
1063 else if (lv_is_origin(lv))
1064 layer = "real"; /* Monitor "real" for "snapshot-origin". */
1065 else
1066 layer = NULL;
1067
1068 return build_dm_uuid(cmd->mem, lv->lvid.s, layer);
1069 }
1070
1071 int target_registered_with_dmeventd(struct cmd_context *cmd, const char *dso,
1072 struct logical_volume *lv, int *pending)
1073 {
1074 char *uuid;
1075 enum dm_event_mask evmask = 0;
1076 struct dm_event_handler *dmevh;
1077 *pending = 0;
1078
1079 if (!dso)
1080 return_0;
1081
1082 if (!(uuid = _build_target_uuid(cmd, lv)))
1083 return_0;
1084
1085 if (!(dmevh = _create_dm_event_handler(cmd, uuid, dso, 0, DM_EVENT_ALL_ERRORS)))
1086 return_0;
1087
1088 if (dm_event_get_registered_device(dmevh, 0)) {
1089 dm_event_handler_destroy(dmevh);
1090 return 0;
1091 }
1092
1093 evmask = dm_event_handler_get_event_mask(dmevh);
1094 if (evmask & DM_EVENT_REGISTRATION_PENDING) {
1095 *pending = 1;
1096 evmask &= ~DM_EVENT_REGISTRATION_PENDING;
1097 }
1098
1099 dm_event_handler_destroy(dmevh);
1100
1101 return evmask;
1102 }
1103
1104 int target_register_events(struct cmd_context *cmd, const char *dso, struct logical_volume *lv,
1105 int evmask __attribute__((unused)), int set, int timeout)
1106 {
1107 char *uuid;
1108 struct dm_event_handler *dmevh;
1109 int r;
1110
1111 if (!dso)
1112 return_0;
1113
1114 /* We always monitor the "real" device, never the "snapshot-origin" itself. */
1115 if (!(uuid = _build_target_uuid(cmd, lv)))
1116 return_0;
1117
1118 if (!(dmevh = _create_dm_event_handler(cmd, uuid, dso, timeout,
1119 DM_EVENT_ALL_ERRORS | (timeout ? DM_EVENT_TIMEOUT : 0))))
1120 return_0;
1121
1122 r = set ? dm_event_register_handler(dmevh) : dm_event_unregister_handler(dmevh);
1123
1124 dm_event_handler_destroy(dmevh);
1125
1126 if (!r)
1127 return_0;
1128
1129 log_info("%s %s for events", set ? "Monitored" : "Unmonitored", uuid);
1130
1131 return 1;
1132 }
1133
1134 #endif
1135
1136 /*
1137 * Returns 0 if an attempt to (un)monitor the device failed.
1138 * Returns 1 otherwise.
1139 */
1140 int monitor_dev_for_events(struct cmd_context *cmd, struct logical_volume *lv,
1141 const struct lv_activate_opts *laopts, int monitor)
1142 {
1143 #ifdef DMEVENTD
1144 int i, pending = 0, monitored;
1145 int r = 1;
1146 struct dm_list *tmp, *snh, *snht;
1147 struct lv_segment *seg;
1148 struct lv_segment *log_seg;
1149 int (*monitor_fn) (struct lv_segment *s, int e);
1150 uint32_t s;
1151 static const struct lv_activate_opts zlaopts = { 0 };
1152
1153 if (!laopts)
1154 laopts = &zlaopts;
1155
1156 /* skip dmeventd code altogether */
1157 if (dmeventd_monitor_mode() == DMEVENTD_MONITOR_IGNORE)
1158 return 1;
1159
1160 /*
1161 * Nothing to do if dmeventd configured not to be used.
1162 */
1163 if (monitor && !dmeventd_monitor_mode())
1164 return 1;
1165
1166 /*
1167 * In case of a snapshot device, we monitor lv->snapshot->lv,
1168 * not the actual LV itself.
1169 */
1170 if (lv_is_cow(lv) && (laopts->no_merging || !lv_is_merging_cow(lv)))
1171 return monitor_dev_for_events(cmd, lv->snapshot->lv, NULL, monitor);
1172
1173 /*
1174 * In case this LV is a snapshot origin, we instead monitor
1175 * each of its respective snapshots. The origin itself may
1176 * also need to be monitored if it is a mirror, for example.
1177 */
1178 if (!laopts->origin_only && lv_is_origin(lv))
1179 dm_list_iterate_safe(snh, snht, &lv->snapshot_segs)
1180 if (!monitor_dev_for_events(cmd, dm_list_struct_base(snh,
1181 struct lv_segment, origin_list)->cow, NULL, monitor))
1182 r = 0;
1183
1184 /*
1185 * If the volume is mirrored and its log is also mirrored, monitor
1186 * the log volume as well.
1187 */
1188 if ((seg = first_seg(lv)) != NULL && seg->log_lv != NULL &&
1189 (log_seg = first_seg(seg->log_lv)) != NULL &&
1190 seg_is_mirrored(log_seg))
1191 if (!monitor_dev_for_events(cmd, seg->log_lv, NULL, monitor))
1192 r = 0;
1193
1194 dm_list_iterate(tmp, &lv->segments) {
1195 seg = dm_list_item(tmp, struct lv_segment);
1196
1197 /* Recurse for AREA_LV */
1198 for (s = 0; s < seg->area_count; s++) {
1199 if (seg_type(seg, s) != AREA_LV)
1200 continue;
1201 if (!monitor_dev_for_events(cmd, seg_lv(seg, s), NULL,
1202 monitor)) {
1203 log_error("Failed to %smonitor %s",
1204 monitor ? "" : "un",
1205 seg_lv(seg, s)->name);
1206 r = 0;
1207 }
1208 }
1209
1210 if (!seg_monitored(seg) || (seg->status & PVMOVE))
1211 continue;
1212
1213 monitor_fn = NULL;
1214
1215 /* Check monitoring status */
1216 if (seg->segtype->ops->target_monitored)
1217 monitored = seg->segtype->ops->target_monitored(seg, &pending);
1218 else
1219 continue; /* segtype doesn't support registration */
1220
1221 /*
1222 * FIXME: We should really try again if pending
1223 */
1224 monitored = (pending) ? 0 : monitored;
1225
1226 if (monitor) {
1227 if (monitored)
1228 log_verbose("%s/%s already monitored.", lv->vg->name, lv->name);
1229 else if (seg->segtype->ops->target_monitor_events)
1230 monitor_fn = seg->segtype->ops->target_monitor_events;
1231 } else {
1232 if (!monitored)
1233 log_verbose("%s/%s already not monitored.", lv->vg->name, lv->name);
1234 else if (seg->segtype->ops->target_unmonitor_events)
1235 monitor_fn = seg->segtype->ops->target_unmonitor_events;
1236 }
1237
1238 /* Do [un]monitor */
1239 if (!monitor_fn)
1240 continue;
1241
1242 log_verbose("%sonitoring %s/%s%s", monitor ? "M" : "Not m", lv->vg->name, lv->name,
1243 test_mode() ? " [Test mode: skipping this]" : "");
1244
1245 /* FIXME Test mode should really continue a bit further. */
1246 if (test_mode())
1247 continue;
1248
1249 /* FIXME specify events */
1250 if (!monitor_fn(seg, 0)) {
1251 log_error("%s/%s: %s segment monitoring function failed.",
1252 lv->vg->name, lv->name, seg->segtype->name);
1253 return 0;
1254 }
1255
1256 /* Check [un]monitor results */
1257 /* Try a couple times if pending, but not forever... */
1258 for (i = 0; i < 10; i++) {
1259 pending = 0;
1260 monitored = seg->segtype->ops->target_monitored(seg, &pending);
1261 if (pending ||
1262 (!monitored && monitor) ||
1263 (monitored && !monitor))
1264 log_very_verbose("%s/%s %smonitoring still pending: waiting...",
1265 lv->vg->name, lv->name, monitor ? "" : "un");
1266 else
1267 break;
1268 sleep(1);
1269 }
1270
1271 if (r)
1272 r = (monitored && monitor) || (!monitored && !monitor);
1273 }
1274
1275 return r;
1276 #else
1277 return 1;
1278 #endif
1279 }
1280
1281 struct detached_lv_data {
1282 struct logical_volume *lv_pre;
1283 struct lv_activate_opts *laopts;
1284 int *flush_required;
1285 };
1286
1287 static int _preload_detached_lv(struct cmd_context *cmd, struct logical_volume *lv, void *data)
1288 {
1289 struct detached_lv_data *detached = data;
1290 struct lv_list *lvl_pre;
1291
1292 if ((lvl_pre = find_lv_in_vg(detached->lv_pre->vg, lv->name))) {
1293 if (lv_is_visible(lvl_pre->lv) && lv_is_active(lv) && (!lv_is_cow(lv) || !lv_is_cow(lvl_pre->lv)) &&
1294 !_lv_preload(lvl_pre->lv, detached->laopts, detached->flush_required))
1295 return_0;
1296 }
1297
1298 return 1;
1299 }
1300
1301 static int _lv_suspend(struct cmd_context *cmd, const char *lvid_s,
1302 struct lv_activate_opts *laopts, int error_if_not_suspended)
1303 {
1304 struct logical_volume *lv = NULL, *lv_pre = NULL, *pvmove_lv = NULL;
1305 struct lv_list *lvl_pre;
1306 struct seg_list *sl;
1307 struct lv_segment *snap_seg;
1308 struct lvinfo info;
1309 int r = 0, lockfs = 0, flush_required = 0;
1310 struct detached_lv_data detached;
1311
1312 if (!activation())
1313 return 1;
1314
1315 if (!(lv = lv_from_lvid(cmd, lvid_s, 0)))
1316 goto_out;
1317
1318 /* Use precommitted metadata if present */
1319 if (!(lv_pre = lv_from_lvid(cmd, lvid_s, 1)))
1320 goto_out;
1321
1322 /* Ignore origin_only unless LV is origin in both old and new metadata */
1323 if (!lv_is_origin(lv) || !lv_is_origin(lv_pre))
1324 laopts->origin_only = 0;
1325
1326 if (test_mode()) {
1327 _skip("Suspending %s%s.", lv->name, laopts->origin_only ? " origin without snapshots" : "");
1328 r = 1;
1329 goto out;
1330 }
1331
1332 if (!lv_info(cmd, lv, laopts->origin_only, &info, 0, 0))
1333 goto_out;
1334
1335 if (!info.exists || info.suspended) {
1336 if (!error_if_not_suspended) {
1337 r = 1;
1338 if (info.suspended)
1339 critical_section_inc(cmd, "already suspended");
1340 }
1341 goto out;
1342 }
1343
1344 if (!lv_read_replicator_vgs(lv))
1345 goto_out;
1346
1347 lv_calculate_readahead(lv, NULL);
1348
1349 /*
1350 * Preload devices for the LV.
1351 * If the PVMOVE LV is being removed, it's only present in the old
1352 * metadata and not the new, so we must explicitly add the new
1353 * tables for all the changed LVs here, as the relationships
1354 * are not found by walking the new metadata.
1355 */
1356 if (!(lv_pre->status & LOCKED) &&
1357 (lv->status & LOCKED) &&
1358 (pvmove_lv = find_pvmove_lv_in_lv(lv))) {
1359 /* Preload all the LVs above the PVMOVE LV */
1360 dm_list_iterate_items(sl, &pvmove_lv->segs_using_this_lv) {
1361 if (!(lvl_pre = find_lv_in_vg(lv_pre->vg, sl->seg->lv->name))) {
1362 log_error(INTERNAL_ERROR "LV %s missing from preload metadata", sl->seg->lv->name);
1363 goto out;
1364 }
1365 if (!_lv_preload(lvl_pre->lv, laopts, &flush_required))
1366 goto_out;
1367 }
1368 /* Now preload the PVMOVE LV itself */
1369 if (!(lvl_pre = find_lv_in_vg(lv_pre->vg, pvmove_lv->name))) {
1370 log_error(INTERNAL_ERROR "LV %s missing from preload metadata", pvmove_lv->name);
1371 goto out;
1372 }
1373 if (!_lv_preload(lvl_pre->lv, laopts, &flush_required))
1374 goto_out;
1375 } else {
1376 if (!_lv_preload(lv_pre, laopts, &flush_required))
1377 /* FIXME Revert preloading */
1378 goto_out;
1379
1380 /*
1381 * Search for existing LVs that have become detached and preload them.
1382 */
1383 detached.lv_pre = lv_pre;
1384 detached.laopts = laopts;
1385 detached.flush_required = &flush_required;
1386
1387 if (!for_each_sub_lv(cmd, lv, &_preload_detached_lv, &detached))
1388 goto_out;
1389
1390 /*
1391 * Preload any snapshots that are being removed.
1392 */
1393 if (!laopts->origin_only && lv_is_origin(lv)) {
1394 dm_list_iterate_items_gen(snap_seg, &lv->snapshot_segs, origin_list) {
1395 if (!(lvl_pre = find_lv_in_vg_by_lvid(lv_pre->vg, &snap_seg->cow->lvid))) {
1396 log_error(INTERNAL_ERROR "LV %s (%s) missing from preload metadata",
1397 snap_seg->cow->name, snap_seg->cow->lvid.id[1].uuid);
1398 goto out;
1399 }
1400 if (!lv_is_cow(lvl_pre->lv) &&
1401 !_lv_preload(lvl_pre->lv, laopts, &flush_required))
1402 goto_out;
1403 }
1404 }
1405 }
1406
1407 if (!monitor_dev_for_events(cmd, lv, laopts, 0))
1408 /* FIXME Consider aborting here */
1409 stack;
1410
1411 critical_section_inc(cmd, "suspending");
1412 if (pvmove_lv)
1413 critical_section_inc(cmd, "suspending pvmove LV");
1414
1415 if (!laopts->origin_only &&
1416 (lv_is_origin(lv_pre) || lv_is_cow(lv_pre)))
1417 lockfs = 1;
1418
1419 /*
1420 * Suspending an LV directly above a PVMOVE LV also
1421 * suspends other LVs using that same PVMOVE LV.
1422 * FIXME Remove this and delay the 'clear node' until
1423 * after the code knows whether there's a different
1424 * inactive table to load or not instead so lv_suspend
1425 * can be called separately for each LV safely.
1426 */
1427 if ((lv_pre->vg->status & PRECOMMITTED) &&
1428 (lv_pre->status & LOCKED) && find_pvmove_lv_in_lv(lv_pre)) {
1429 if (!_lv_suspend_lv(lv_pre, laopts, lockfs, flush_required)) {
1430 critical_section_dec(cmd, "failed precommitted suspend");
1431 if (pvmove_lv)
1432 critical_section_dec(cmd, "failed precommitted suspend (pvmove)");
1433 goto_out;
1434 }
1435 } else {
1436 /* Normal suspend */
1437 if (!_lv_suspend_lv(lv, laopts, lockfs, flush_required)) {
1438 critical_section_dec(cmd, "failed suspend");
1439 if (pvmove_lv)
1440 critical_section_dec(cmd, "failed suspend (pvmove)");
1441 goto_out;
1442 }
1443 }
1444
1445 r = 1;
1446 out:
1447 if (lv_pre)
1448 release_vg(lv_pre->vg);
1449 if (lv) {
1450 lv_release_replicator_vgs(lv);
1451 release_vg(lv->vg);
1452 }
1453
1454 return r;
1455 }
1456
1457 /* Returns success if the device is not active */
1458 int lv_suspend_if_active(struct cmd_context *cmd, const char *lvid_s, unsigned origin_only)
1459 {
1460 struct lv_activate_opts laopts = { .origin_only = origin_only };
1461
1462 return _lv_suspend(cmd, lvid_s, &laopts, 0);
1463 }
1464
1465 /* No longer used */
1466 /***********
1467 int lv_suspend(struct cmd_context *cmd, const char *lvid_s)
1468 {
1469 return _lv_suspend(cmd, lvid_s, 1);
1470 }
1471 ***********/
1472
1473 /*
1474 * _lv_resume
1475 * @cmd
1476 * @lvid_s
1477 * @origin_only
1478 * @exclusive: This parameter only has an affect in cluster-context.
1479 * It forces local target type to be used (instead of
1480 * cluster-aware type).
1481 * @error_if_not_active
1482 */
1483 static int _lv_resume(struct cmd_context *cmd, const char *lvid_s,
1484 struct lv_activate_opts *laopts, int error_if_not_active)
1485 {
1486 struct logical_volume *lv;
1487 struct lvinfo info;
1488 int r = 0;
1489
1490 if (!activation())
1491 return 1;
1492
1493 if (!(lv = lv_from_lvid(cmd, lvid_s, 0)))
1494 goto_out;
1495
1496 if (!lv_is_origin(lv))
1497 laopts->origin_only = 0;
1498
1499 if (test_mode()) {
1500 _skip("Resuming %s%s%s.", lv->name, laopts->origin_only ? " without snapshots" : "",
1501 laopts->revert ? " (reverting)" : "");
1502 r = 1;
1503 goto out;
1504 }
1505
1506 log_debug("Resuming LV %s/%s%s%s%s.", lv->vg->name, lv->name,
1507 error_if_not_active ? "" : " if active",
1508 laopts->origin_only ? " without snapshots" : "",
1509 laopts->revert ? " (reverting)" : "");
1510
1511 if (!lv_info(cmd, lv, laopts->origin_only, &info, 0, 0))
1512 goto_out;
1513
1514 if (!info.exists || !info.suspended) {
1515 if (error_if_not_active)
1516 goto_out;
1517 r = 1;
1518 if (!info.suspended)
1519 critical_section_dec(cmd, "already resumed");
1520 goto out;
1521 }
1522
1523 laopts->read_only = _passes_readonly_filter(cmd, lv);
1524
1525 if (!_lv_activate_lv(lv, laopts))
1526 goto_out;
1527
1528 critical_section_dec(cmd, "resumed");
1529
1530 if (!monitor_dev_for_events(cmd, lv, laopts, 1))
1531 stack;
1532
1533 r = 1;
1534 out:
1535 if (lv)
1536 release_vg(lv->vg);
1537
1538 return r;
1539 }
1540
1541 /* Returns success if the device is not active */
1542 int lv_resume_if_active(struct cmd_context *cmd, const char *lvid_s,
1543 unsigned origin_only, unsigned exclusive, unsigned revert)
1544 {
1545 struct lv_activate_opts laopts = {
1546 .origin_only = origin_only,
1547 /*
1548 * When targets are activated exclusively in a cluster, the
1549 * non-clustered target should be used. This only happens
1550 * if exclusive is set.
1551 */
1552 .exclusive = exclusive,
1553 .revert = revert
1554 };
1555
1556 return _lv_resume(cmd, lvid_s, &laopts, 0);
1557 }
1558
1559 int lv_resume(struct cmd_context *cmd, const char *lvid_s, unsigned origin_only)
1560 {
1561 struct lv_activate_opts laopts = { .origin_only = origin_only, };
1562
1563 return _lv_resume(cmd, lvid_s, &laopts, 1);
1564 }
1565
1566 static int _lv_has_open_snapshots(struct logical_volume *lv)
1567 {
1568 struct lv_segment *snap_seg;
1569 struct lvinfo info;
1570 int r = 0;
1571
1572 dm_list_iterate_items_gen(snap_seg, &lv->snapshot_segs, origin_list) {
1573 if (!lv_info(lv->vg->cmd, snap_seg->cow, 0, &info, 1, 0)) {
1574 r = 1;
1575 continue;
1576 }
1577
1578 if (info.exists && info.open_count) {
1579 log_error("LV %s/%s has open snapshot %s: "
1580 "not deactivating", lv->vg->name, lv->name,
1581 snap_seg->cow->name);
1582 r = 1;
1583 }
1584 }
1585
1586 return r;
1587 }
1588
1589 int lv_deactivate(struct cmd_context *cmd, const char *lvid_s)
1590 {
1591 struct logical_volume *lv;
1592 struct lvinfo info;
1593 int r = 0;
1594
1595 if (!activation())
1596 return 1;
1597
1598 if (!(lv = lv_from_lvid(cmd, lvid_s, 0)))
1599 goto out;
1600
1601 if (test_mode()) {
1602 _skip("Deactivating '%s'.", lv->name);
1603 r = 1;
1604 goto out;
1605 }
1606
1607 log_debug("Deactivating %s/%s.", lv->vg->name, lv->name);
1608
1609 if (!lv_info(cmd, lv, 0, &info, 1, 0))
1610 goto_out;
1611
1612 if (!info.exists) {
1613 r = 1;
1614 goto out;
1615 }
1616
1617 if (lv_is_visible(lv)) {
1618 if (!lv_check_not_in_use(cmd, lv, &info))
1619 goto_out;
1620
1621 if (lv_is_origin(lv) && _lv_has_open_snapshots(lv))
1622 goto_out;
1623 }
1624
1625 if (!lv_read_replicator_vgs(lv))
1626 goto_out;
1627
1628 lv_calculate_readahead(lv, NULL);
1629
1630 if (!monitor_dev_for_events(cmd, lv, NULL, 0))
1631 stack;
1632
1633 critical_section_inc(cmd, "deactivating");
1634 r = _lv_deactivate(lv);
1635 critical_section_dec(cmd, "deactivated");
1636
1637 if (!lv_info(cmd, lv, 0, &info, 0, 0) || info.exists)
1638 r = 0;
1639 out:
1640 if (lv) {
1641 lv_release_replicator_vgs(lv);
1642 release_vg(lv->vg);
1643 }
1644
1645 return r;
1646 }
1647
1648 /* Test if LV passes filter */
1649 int lv_activation_filter(struct cmd_context *cmd, const char *lvid_s,
1650 int *activate_lv)
1651 {
1652 struct logical_volume *lv;
1653 int r = 0;
1654
1655 if (!activation()) {
1656 *activate_lv = 1;
1657 return 1;
1658 }
1659
1660 if (!(lv = lv_from_lvid(cmd, lvid_s, 0)))
1661 goto out;
1662
1663 if (!_passes_activation_filter(cmd, lv)) {
1664 log_verbose("Not activating %s/%s since it does not pass "
1665 "activation filter.", lv->vg->name, lv->name);
1666 *activate_lv = 0;
1667 } else
1668 *activate_lv = 1;
1669 r = 1;
1670 out:
1671 if (lv)
1672 release_vg(lv->vg);
1673
1674 return r;
1675 }
1676
1677 static int _lv_activate(struct cmd_context *cmd, const char *lvid_s,
1678 struct lv_activate_opts *laopts, int filter)
1679 {
1680 struct logical_volume *lv;
1681 struct lvinfo info;
1682 int r = 0;
1683
1684 if (!activation())
1685 return 1;
1686
1687 if (!(lv = lv_from_lvid(cmd, lvid_s, 0)))
1688 goto out;
1689
1690 if (filter && !_passes_activation_filter(cmd, lv)) {
1691 log_error("Not activating %s/%s since it does not pass "
1692 "activation filter.", lv->vg->name, lv->name);
1693 goto out;
1694 }
1695
1696 if ((!lv->vg->cmd->partial_activation) && (lv->status & PARTIAL_LV)) {
1697 log_error("Refusing activation of partial LV %s. Use --partial to override.",
1698 lv->name);
1699 goto_out;
1700 }
1701
1702 if (lv_has_unknown_segments(lv)) {
1703 log_error("Refusing activation of LV %s containing "
1704 "an unrecognised segment.", lv->name);
1705 goto_out;
1706 }
1707
1708 if (test_mode()) {
1709 _skip("Activating '%s'.", lv->name);
1710 r = 1;
1711 goto out;
1712 }
1713
1714 if (filter)
1715 laopts->read_only = _passes_readonly_filter(cmd, lv);
1716
1717 log_debug("Activating %s/%s%s%s.", lv->vg->name, lv->name,
1718 laopts->exclusive ? " exclusively" : "",
1719 laopts->read_only ? " read-only" : "");
1720
1721 if (!lv_info(cmd, lv, 0, &info, 0, 0))
1722 goto_out;
1723
1724 /*
1725 * Nothing to do?
1726 */
1727 if (info.exists && !info.suspended && info.live_table &&
1728 (info.read_only == read_only_lv(lv, laopts))) {
1729 r = 1;
1730 goto out;
1731 }
1732
1733 if (!lv_read_replicator_vgs(lv))
1734 goto_out;
1735
1736 lv_calculate_readahead(lv, NULL);
1737
1738 critical_section_inc(cmd, "activating");
1739 if (!(r = _lv_activate_lv(lv, laopts)))
1740 stack;
1741 critical_section_dec(cmd, "activated");
1742
1743 if (r && !monitor_dev_for_events(cmd, lv, laopts, 1))
1744 stack;
1745
1746 out:
1747 if (lv) {
1748 lv_release_replicator_vgs(lv);
1749 release_vg(lv->vg);
1750 }
1751
1752 return r;
1753 }
1754
1755 /* Activate LV */
1756 int lv_activate(struct cmd_context *cmd, const char *lvid_s, int exclusive)
1757 {
1758 struct lv_activate_opts laopts = { .exclusive = exclusive };
1759
1760 if (!_lv_activate(cmd, lvid_s, &laopts, 0))
1761 return_0;
1762
1763 return 1;
1764 }
1765
1766 /* Activate LV only if it passes filter */
1767 int lv_activate_with_filter(struct cmd_context *cmd, const char *lvid_s, int exclusive)
1768 {
1769 struct lv_activate_opts laopts = { .exclusive = exclusive };
1770
1771 if (!_lv_activate(cmd, lvid_s, &laopts, 1))
1772 return_0;
1773
1774 return 1;
1775 }
1776
1777 int lv_mknodes(struct cmd_context *cmd, const struct logical_volume *lv)
1778 {
1779 int r = 1;
1780
1781 if (!lv) {
1782 r = dm_mknodes(NULL);
1783 fs_unlock();
1784 return r;
1785 }
1786
1787 if (!activation())
1788 return 1;
1789
1790 r = dev_manager_mknodes(lv);
1791
1792 fs_unlock();
1793
1794 return r;
1795 }
1796
1797 /*
1798 * Does PV use VG somewhere in its construction?
1799 * Returns 1 on failure.
1800 */
1801 int pv_uses_vg(struct physical_volume *pv,
1802 struct volume_group *vg)
1803 {
1804 if (!activation())
1805 return 0;
1806
1807 if (!dm_is_dm_major(MAJOR(pv->dev->dev)))
1808 return 0;
1809
1810 return dev_manager_device_uses_vg(pv->dev, vg);
1811 }
1812
1813 void activation_release(void)
1814 {
1815 dev_manager_release();
1816 }
1817
1818 void activation_exit(void)
1819 {
1820 dev_manager_exit();
1821 }
1822 #endif
This page took 0.115419 seconds and 6 git commands to generate.