]> sourceware.org Git - lvm2.git/blob - lib/activate/activate.c
Remove lvs_in_vg_activated_by_uuid_only call.
[lvm2.git] / lib / activate / activate.c
1 /*
2 * Copyright (C) 2001-2004 Sistina Software, Inc. All rights reserved.
3 * Copyright (C) 2004-2009 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
32 #include <limits.h>
33 #include <fcntl.h>
34 #include <unistd.h>
35
36 #define _skip(fmt, args...) log_very_verbose("Skipping: " fmt , ## args)
37
38 int lvm1_present(struct cmd_context *cmd)
39 {
40 char path[PATH_MAX];
41
42 if (dm_snprintf(path, sizeof(path), "%s/lvm/global", cmd->proc_dir)
43 < 0) {
44 log_error("LVM1 proc global snprintf failed");
45 return 0;
46 }
47
48 if (path_exists(path))
49 return 1;
50 else
51 return 0;
52 }
53
54 int list_segment_modules(struct dm_pool *mem, const struct lv_segment *seg,
55 struct dm_list *modules)
56 {
57 unsigned int s;
58 struct lv_segment *seg2, *snap_seg;
59 struct dm_list *snh;
60
61 if (seg->segtype->ops->modules_needed &&
62 !seg->segtype->ops->modules_needed(mem, seg, modules)) {
63 log_error("module string allocation failed");
64 return 0;
65 }
66
67 if (lv_is_origin(seg->lv))
68 dm_list_iterate(snh, &seg->lv->snapshot_segs)
69 if (!list_lv_modules(mem,
70 dm_list_struct_base(snh,
71 struct lv_segment,
72 origin_list)->cow,
73 modules))
74 return_0;
75
76 if (lv_is_cow(seg->lv)) {
77 snap_seg = find_cow(seg->lv);
78 if (snap_seg->segtype->ops->modules_needed &&
79 !snap_seg->segtype->ops->modules_needed(mem, snap_seg,
80 modules)) {
81 log_error("snap_seg module string allocation failed");
82 return 0;
83 }
84 }
85
86 for (s = 0; s < seg->area_count; s++) {
87 switch (seg_type(seg, s)) {
88 case AREA_LV:
89 seg2 = find_seg_by_le(seg_lv(seg, s), seg_le(seg, s));
90 if (seg2 && !list_segment_modules(mem, seg2, modules))
91 return_0;
92 break;
93 case AREA_PV:
94 case AREA_UNASSIGNED:
95 ;
96 }
97 }
98
99 return 1;
100 }
101
102 int list_lv_modules(struct dm_pool *mem, const struct logical_volume *lv,
103 struct dm_list *modules)
104 {
105 struct lv_segment *seg;
106
107 dm_list_iterate_items(seg, &lv->segments)
108 if (!list_segment_modules(mem, seg, modules))
109 return_0;
110
111 return 1;
112 }
113
114 #ifndef DEVMAPPER_SUPPORT
115 void set_activation(int act)
116 {
117 static int warned = 0;
118
119 if (warned || !act)
120 return;
121
122 log_error("Compiled without libdevmapper support. "
123 "Can't enable activation.");
124
125 warned = 1;
126 }
127 int activation(void)
128 {
129 return 0;
130 }
131 int library_version(char *version, size_t size)
132 {
133 return 0;
134 }
135 int driver_version(char *version, size_t size)
136 {
137 return 0;
138 }
139 int target_version(const char *target_name, uint32_t *maj,
140 uint32_t *min, uint32_t *patchlevel)
141 {
142 return 0;
143 }
144 int target_present(struct cmd_context *cmd, const char *target_name,
145 int use_modprobe)
146 {
147 return 0;
148 }
149 int lv_info(struct cmd_context *cmd, const struct logical_volume *lv, struct lvinfo *info,
150 int with_open_count, int with_read_ahead)
151 {
152 return 0;
153 }
154 int lv_info_by_lvid(struct cmd_context *cmd, const char *lvid_s,
155 struct lvinfo *info, int with_open_count, int with_read_ahead)
156 {
157 return 0;
158 }
159 int lv_snapshot_percent(const struct logical_volume *lv, float *percent,
160 percent_range_t *percent_range)
161 {
162 return 0;
163 }
164 int lv_mirror_percent(struct cmd_context *cmd, struct logical_volume *lv,
165 int wait, float *percent, percent_range_t *percent_range,
166 uint32_t *event_nr)
167 {
168 return 0;
169 }
170 int lvs_in_vg_activated(struct volume_group *vg)
171 {
172 return 0;
173 }
174 int lvs_in_vg_opened(struct volume_group *vg)
175 {
176 return 0;
177 }
178 int lv_suspend(struct cmd_context *cmd, const char *lvid_s)
179 {
180 return 1;
181 }
182 int lv_suspend_if_active(struct cmd_context *cmd, const char *lvid_s)
183 {
184 return 1;
185 }
186 int lv_resume(struct cmd_context *cmd, const char *lvid_s)
187 {
188 return 1;
189 }
190 int lv_resume_if_active(struct cmd_context *cmd, const char *lvid_s)
191 {
192 return 1;
193 }
194 int lv_deactivate(struct cmd_context *cmd, const char *lvid_s)
195 {
196 return 1;
197 }
198 int lv_activation_filter(struct cmd_context *cmd, const char *lvid_s,
199 int *activate_lv)
200 {
201 return 1;
202 }
203 int lv_activate(struct cmd_context *cmd, const char *lvid_s, int exclusive)
204 {
205 return 1;
206 }
207 int lv_activate_with_filter(struct cmd_context *cmd, const char *lvid_s, int exclusive)
208 {
209 return 1;
210 }
211
212 int lv_mknodes(struct cmd_context *cmd, const struct logical_volume *lv)
213 {
214 return 1;
215 }
216
217 int pv_uses_vg(struct physical_volume *pv,
218 struct volume_group *vg)
219 {
220 return 0;
221 }
222
223 void activation_release(void)
224 {
225 return;
226 }
227
228 void activation_exit(void)
229 {
230 return;
231 }
232
233 #else /* DEVMAPPER_SUPPORT */
234
235 static int _activation = 1;
236
237 void set_activation(int act)
238 {
239 if (act == _activation)
240 return;
241
242 _activation = act;
243 if (_activation)
244 log_verbose("Activation enabled. Device-mapper kernel "
245 "driver will be used.");
246 else
247 log_warn("WARNING: Activation disabled. No device-mapper "
248 "interaction will be attempted.");
249 }
250
251 int activation(void)
252 {
253 return _activation;
254 }
255
256 static int _passes_activation_filter(struct cmd_context *cmd,
257 struct logical_volume *lv)
258 {
259 const struct config_node *cn;
260 struct config_value *cv;
261 char *str;
262 char path[PATH_MAX];
263
264 if (!(cn = find_config_tree_node(cmd, "activation/volume_list"))) {
265 /* If no host tags defined, activate */
266 if (dm_list_empty(&cmd->tags))
267 return 1;
268
269 /* If any host tag matches any LV or VG tag, activate */
270 if (str_list_match_list(&cmd->tags, &lv->tags) ||
271 str_list_match_list(&cmd->tags, &lv->vg->tags))
272 return 1;
273
274 /* Don't activate */
275 return 0;
276 }
277
278 for (cv = cn->v; cv; cv = cv->next) {
279 if (cv->type != CFG_STRING) {
280 log_error("Ignoring invalid string in config file "
281 "activation/volume_list");
282 continue;
283 }
284 str = cv->v.str;
285 if (!*str) {
286 log_error("Ignoring empty string in config file "
287 "activation/volume_list");
288 continue;
289 }
290
291 /* Tag? */
292 if (*str == '@') {
293 str++;
294 if (!*str) {
295 log_error("Ignoring empty tag in config file "
296 "activation/volume_list");
297 continue;
298 }
299 /* If any host tag matches any LV or VG tag, activate */
300 if (!strcmp(str, "*")) {
301 if (str_list_match_list(&cmd->tags, &lv->tags)
302 || str_list_match_list(&cmd->tags,
303 &lv->vg->tags))
304 return 1;
305 else
306 continue;
307 }
308 /* If supplied tag matches LV or VG tag, activate */
309 if (str_list_match_item(&lv->tags, str) ||
310 str_list_match_item(&lv->vg->tags, str))
311 return 1;
312 else
313 continue;
314 }
315 if (!strchr(str, '/')) {
316 /* vgname supplied */
317 if (!strcmp(str, lv->vg->name))
318 return 1;
319 else
320 continue;
321 }
322 /* vgname/lvname */
323 if (dm_snprintf(path, sizeof(path), "%s/%s", lv->vg->name,
324 lv->name) < 0) {
325 log_error("dm_snprintf error from %s/%s", lv->vg->name,
326 lv->name);
327 continue;
328 }
329 if (!strcmp(path, str))
330 return 1;
331 }
332
333 return 0;
334 }
335
336 int library_version(char *version, size_t size)
337 {
338 if (!activation())
339 return 0;
340
341 return dm_get_library_version(version, size);
342 }
343
344 int driver_version(char *version, size_t size)
345 {
346 if (!activation())
347 return 0;
348
349 log_very_verbose("Getting driver version");
350
351 return dm_driver_version(version, size);
352 }
353
354 int target_version(const char *target_name, uint32_t *maj,
355 uint32_t *min, uint32_t *patchlevel)
356 {
357 int r = 0;
358 struct dm_task *dmt;
359 struct dm_versions *target, *last_target;
360
361 log_very_verbose("Getting target version for %s", target_name);
362 if (!(dmt = dm_task_create(DM_DEVICE_LIST_VERSIONS)))
363 return_0;
364
365 if (!dm_task_run(dmt)) {
366 log_debug("Failed to get %s target version", target_name);
367 /* Assume this was because LIST_VERSIONS isn't supported */
368 return 1;
369 }
370
371 target = dm_task_get_versions(dmt);
372
373 do {
374 last_target = target;
375
376 if (!strcmp(target_name, target->name)) {
377 r = 1;
378 *maj = target->version[0];
379 *min = target->version[1];
380 *patchlevel = target->version[2];
381 goto out;
382 }
383
384 target = (void *) target + target->next;
385 } while (last_target != target);
386
387 out:
388 dm_task_destroy(dmt);
389
390 return r;
391 }
392
393 int module_present(struct cmd_context *cmd, const char *target_name)
394 {
395 int ret = 0;
396 #ifdef MODPROBE_CMD
397 char module[128];
398 const char *argv[3];
399
400 if (dm_snprintf(module, sizeof(module), "dm-%s", target_name) < 0) {
401 log_error("module_present module name too long: %s",
402 target_name);
403 return 0;
404 }
405
406 argv[0] = MODPROBE_CMD;
407 argv[1] = module;
408 argv[2] = NULL;
409
410 ret = exec_cmd(cmd, argv);
411 #endif
412 return ret;
413 }
414
415 int target_present(struct cmd_context *cmd, const char *target_name,
416 int use_modprobe)
417 {
418 uint32_t maj, min, patchlevel;
419
420 if (!activation())
421 return 0;
422
423 #ifdef MODPROBE_CMD
424 if (use_modprobe) {
425 if (target_version(target_name, &maj, &min, &patchlevel))
426 return 1;
427
428 if (!module_present(cmd, target_name))
429 return_0;
430 }
431 #endif
432
433 return target_version(target_name, &maj, &min, &patchlevel);
434 }
435
436 /*
437 * Returns 1 if info structure populated, else 0 on failure.
438 */
439 int lv_info(struct cmd_context *cmd, const struct logical_volume *lv,
440 struct lvinfo *info, int with_open_count, int with_read_ahead)
441 {
442 struct dm_info dminfo;
443
444 if (!activation())
445 return 0;
446
447 if (!dev_manager_info(lv->vg->cmd->mem, lv, with_open_count,
448 with_read_ahead, &dminfo, &info->read_ahead))
449 return_0;
450
451 info->exists = dminfo.exists;
452 info->suspended = dminfo.suspended;
453 info->open_count = dminfo.open_count;
454 info->major = dminfo.major;
455 info->minor = dminfo.minor;
456 info->read_only = dminfo.read_only;
457 info->live_table = dminfo.live_table;
458 info->inactive_table = dminfo.inactive_table;
459
460 return 1;
461 }
462
463 int lv_info_by_lvid(struct cmd_context *cmd, const char *lvid_s,
464 struct lvinfo *info, int with_open_count, int with_read_ahead)
465 {
466 int r;
467 struct logical_volume *lv;
468
469 if (!(lv = lv_from_lvid(cmd, lvid_s, 0)))
470 return 0;
471
472 r = lv_info(cmd, lv, info, with_open_count, with_read_ahead);
473 vg_release(lv->vg);
474
475 return r;
476 }
477
478 /*
479 * Returns 1 if percent set, else 0 on failure.
480 */
481 int lv_snapshot_percent(const struct logical_volume *lv, float *percent,
482 percent_range_t *percent_range)
483 {
484 int r;
485 struct dev_manager *dm;
486
487 if (!activation())
488 return 0;
489
490 if (!(dm = dev_manager_create(lv->vg->cmd, lv->vg->name)))
491 return_0;
492
493 if (!(r = dev_manager_snapshot_percent(dm, lv, percent, percent_range)))
494 stack;
495
496 dev_manager_destroy(dm);
497
498 return r;
499 }
500
501 /* FIXME Merge with snapshot_percent */
502 int lv_mirror_percent(struct cmd_context *cmd, struct logical_volume *lv,
503 int wait, float *percent, percent_range_t *percent_range,
504 uint32_t *event_nr)
505 {
506 int r;
507 struct dev_manager *dm;
508 struct lvinfo info;
509
510 /* If mirrored LV is temporarily shrinked to 1 area (= linear),
511 * it should be considered in-sync. */
512 if (dm_list_size(&lv->segments) == 1 && first_seg(lv)->area_count == 1) {
513 *percent = 100.0;
514 return 1;
515 }
516
517 if (!activation())
518 return 0;
519
520 if (!lv_info(cmd, lv, &info, 0, 0))
521 return_0;
522
523 if (!info.exists)
524 return 0;
525
526 if (!(dm = dev_manager_create(lv->vg->cmd, lv->vg->name)))
527 return_0;
528
529 if (!(r = dev_manager_mirror_percent(dm, lv, wait, percent,
530 percent_range, event_nr)))
531 stack;
532
533 dev_manager_destroy(dm);
534
535 return r;
536 }
537
538 static int _lv_active(struct cmd_context *cmd, struct logical_volume *lv)
539 {
540 struct lvinfo info;
541
542 if (!lv_info(cmd, lv, &info, 0, 0)) {
543 stack;
544 return -1;
545 }
546
547 return info.exists;
548 }
549
550 static int _lv_open_count(struct cmd_context *cmd, struct logical_volume *lv)
551 {
552 struct lvinfo info;
553
554 if (!lv_info(cmd, lv, &info, 1, 0)) {
555 stack;
556 return -1;
557 }
558
559 return info.open_count;
560 }
561
562 static int _lv_activate_lv(struct logical_volume *lv)
563 {
564 int r;
565 struct dev_manager *dm;
566
567 if (!(dm = dev_manager_create(lv->vg->cmd, lv->vg->name)))
568 return_0;
569
570 if (!(r = dev_manager_activate(dm, lv)))
571 stack;
572
573 dev_manager_destroy(dm);
574 return r;
575 }
576
577 static int _lv_preload(struct logical_volume *lv, int *flush_required)
578 {
579 int r;
580 struct dev_manager *dm;
581
582 if (!(dm = dev_manager_create(lv->vg->cmd, lv->vg->name)))
583 return_0;
584
585 if (!(r = dev_manager_preload(dm, lv, flush_required)))
586 stack;
587
588 dev_manager_destroy(dm);
589 return r;
590 }
591
592 static int _lv_deactivate(struct logical_volume *lv)
593 {
594 int r;
595 struct dev_manager *dm;
596
597 if (!(dm = dev_manager_create(lv->vg->cmd, lv->vg->name)))
598 return_0;
599
600 if (!(r = dev_manager_deactivate(dm, lv)))
601 stack;
602
603 dev_manager_destroy(dm);
604 return r;
605 }
606
607 static int _lv_suspend_lv(struct logical_volume *lv, int lockfs, int flush_required)
608 {
609 int r;
610 struct dev_manager *dm;
611
612 if (!(dm = dev_manager_create(lv->vg->cmd, lv->vg->name)))
613 return_0;
614
615 if (!(r = dev_manager_suspend(dm, lv, lockfs, flush_required)))
616 stack;
617
618 dev_manager_destroy(dm);
619 return r;
620 }
621
622 /*
623 * These two functions return the number of visible LVs in the state,
624 * or -1 on error.
625 */
626 int lvs_in_vg_activated(struct volume_group *vg)
627 {
628 struct lv_list *lvl;
629 int count = 0;
630
631 if (!activation())
632 return 0;
633
634 dm_list_iterate_items(lvl, &vg->lvs) {
635 if (lv_is_visible(lvl->lv))
636 count += (_lv_active(vg->cmd, lvl->lv) == 1);
637 }
638
639 return count;
640 }
641
642 int lvs_in_vg_opened(const struct volume_group *vg)
643 {
644 const struct lv_list *lvl;
645 int count = 0;
646
647 if (!activation())
648 return 0;
649
650 dm_list_iterate_items(lvl, &vg->lvs) {
651 if (lv_is_visible(lvl->lv))
652 count += (_lv_open_count(vg->cmd, lvl->lv) > 0);
653 }
654
655 return count;
656 }
657
658 /*
659 * Determine whether an LV is active locally or in a cluster.
660 * Assumes vg lock held.
661 * Returns:
662 * 0 - not active locally or on any node in cluster
663 * 1 - active either locally or some node in the cluster
664 */
665 int lv_is_active(struct logical_volume *lv)
666 {
667 int ret;
668
669 if (_lv_active(lv->vg->cmd, lv))
670 return 1;
671
672 if (!vg_is_clustered(lv->vg))
673 return 0;
674
675 if ((ret = remote_lock_held(lv->lvid.s)) >= 0)
676 return ret;
677
678 /*
679 * Old compatibility code if locking doesn't support lock query
680 * FIXME: check status to not deactivate already activate device
681 */
682 if (activate_lv_excl(lv->vg->cmd, lv)) {
683 if (!deactivate_lv(lv->vg->cmd, lv))
684 stack;
685 return 0;
686 }
687
688 /*
689 * Exclusive local activation failed so assume it is active elsewhere.
690 */
691 return 1;
692 }
693
694 /*
695 * Returns 0 if an attempt to (un)monitor the device failed.
696 * Returns 1 otherwise.
697 */
698 int monitor_dev_for_events(struct cmd_context *cmd,
699 struct logical_volume *lv, int monitor)
700 {
701 #ifdef DMEVENTD
702 int i, pending = 0, monitored;
703 int r = 1;
704 struct dm_list *tmp, *snh, *snht;
705 struct lv_segment *seg;
706 int (*monitor_fn) (struct lv_segment *s, int e);
707 uint32_t s;
708
709 /* skip dmeventd code altogether */
710 if (dmeventd_monitor_mode() == DMEVENTD_MONITOR_IGNORE)
711 return 1;
712
713 /*
714 * Nothing to do if dmeventd configured not to be used.
715 */
716 if (monitor && !dmeventd_monitor_mode())
717 return 1;
718
719 /*
720 * In case of a snapshot device, we monitor lv->snapshot->lv,
721 * not the actual LV itself.
722 */
723 if (lv_is_cow(lv) && !lv_is_merging_cow(lv))
724 return monitor_dev_for_events(cmd, lv->snapshot->lv, monitor);
725
726 /*
727 * In case this LV is a snapshot origin, we instead monitor
728 * each of its respective snapshots (the origin itself does
729 * not need to be monitored).
730 *
731 * TODO: This may change when snapshots of mirrors are allowed.
732 */
733 if (lv_is_origin(lv)) {
734 dm_list_iterate_safe(snh, snht, &lv->snapshot_segs)
735 if (!monitor_dev_for_events(cmd, dm_list_struct_base(snh,
736 struct lv_segment, origin_list)->cow, monitor))
737 r = 0;
738 return r;
739 }
740
741 dm_list_iterate(tmp, &lv->segments) {
742 seg = dm_list_item(tmp, struct lv_segment);
743
744 /* Recurse for AREA_LV */
745 for (s = 0; s < seg->area_count; s++) {
746 if (seg_type(seg, s) != AREA_LV)
747 continue;
748 if (!monitor_dev_for_events(cmd, seg_lv(seg, s),
749 monitor)) {
750 log_error("Failed to %smonitor %s",
751 monitor ? "" : "un",
752 seg_lv(seg, s)->name);
753 r = 0;
754 }
755 }
756
757 if (!seg_monitored(seg) || (seg->status & PVMOVE))
758 continue;
759
760 monitor_fn = NULL;
761
762 /* Check monitoring status */
763 if (seg->segtype->ops->target_monitored)
764 monitored = seg->segtype->ops->target_monitored(seg, &pending);
765 else
766 continue; /* segtype doesn't support registration */
767
768 /*
769 * FIXME: We should really try again if pending
770 */
771 monitored = (pending) ? 0 : monitored;
772
773 if (monitor) {
774 if (monitored)
775 log_verbose("%s/%s already monitored.", lv->vg->name, lv->name);
776 else if (seg->segtype->ops->target_monitor_events)
777 monitor_fn = seg->segtype->ops->target_monitor_events;
778 } else {
779 if (!monitored)
780 log_verbose("%s/%s already not monitored.", lv->vg->name, lv->name);
781 else if (seg->segtype->ops->target_unmonitor_events)
782 monitor_fn = seg->segtype->ops->target_unmonitor_events;
783 }
784
785 /* Do [un]monitor */
786 if (!monitor_fn)
787 continue;
788
789 log_verbose("%sonitoring %s/%s", monitor ? "M" : "Not m", lv->vg->name, lv->name);
790
791 /* FIXME specify events */
792 if (!monitor_fn(seg, 0)) {
793 log_error("%s/%s: %s segment monitoring function failed.",
794 lv->vg->name, lv->name, seg->segtype->name);
795 return 0;
796 }
797
798 /* Check [un]monitor results */
799 /* Try a couple times if pending, but not forever... */
800 for (i = 0; i < 10; i++) {
801 pending = 0;
802 monitored = seg->segtype->ops->target_monitored(seg, &pending);
803 if (pending ||
804 (!monitored && monitor) ||
805 (monitored && !monitor))
806 log_very_verbose("%s/%s %smonitoring still pending: waiting...",
807 lv->vg->name, lv->name, monitor ? "" : "un");
808 else
809 break;
810 sleep(1);
811 }
812
813 r = (monitored && monitor) || (!monitored && !monitor);
814 }
815
816 return r;
817 #else
818 return 1;
819 #endif
820 }
821
822 static int _lv_suspend(struct cmd_context *cmd, const char *lvid_s,
823 int error_if_not_suspended)
824 {
825 struct logical_volume *lv = NULL, *lv_pre = NULL;
826 struct lvinfo info;
827 int r = 0, lockfs = 0, flush_required = 0;
828
829 if (!activation())
830 return 1;
831
832 if (!(lv = lv_from_lvid(cmd, lvid_s, 0)))
833 goto_out;
834
835 /* Use precommitted metadata if present */
836 if (!(lv_pre = lv_from_lvid(cmd, lvid_s, 1)))
837 goto_out;
838
839 if (test_mode()) {
840 _skip("Suspending '%s'.", lv->name);
841 r = 1;
842 goto out;
843 }
844
845 if (!lv_info(cmd, lv, &info, 0, 0))
846 goto_out;
847
848 if (!info.exists || info.suspended) {
849 if (!error_if_not_suspended) {
850 r = 1;
851 if (info.suspended)
852 memlock_inc();
853 }
854 goto out;
855 }
856
857 lv_calculate_readahead(lv, NULL);
858
859 /* If VG was precommitted, preload devices for the LV */
860 if ((lv_pre->vg->status & PRECOMMITTED)) {
861 if (!_lv_preload(lv_pre, &flush_required)) {
862 /* FIXME Revert preloading */
863 goto_out;
864 }
865 }
866
867 if (!monitor_dev_for_events(cmd, lv, 0))
868 /* FIXME Consider aborting here */
869 stack;
870
871 memlock_inc();
872
873 if (lv_is_origin(lv_pre) || lv_is_cow(lv_pre))
874 lockfs = 1;
875
876 if (!_lv_suspend_lv(lv, lockfs, flush_required)) {
877 memlock_dec();
878 fs_unlock();
879 goto out;
880 }
881
882 r = 1;
883 out:
884 if (lv_pre)
885 vg_release(lv_pre->vg);
886 if (lv)
887 vg_release(lv->vg);
888
889 return r;
890 }
891
892 /* Returns success if the device is not active */
893 int lv_suspend_if_active(struct cmd_context *cmd, const char *lvid_s)
894 {
895 return _lv_suspend(cmd, lvid_s, 0);
896 }
897
898 int lv_suspend(struct cmd_context *cmd, const char *lvid_s)
899 {
900 return _lv_suspend(cmd, lvid_s, 1);
901 }
902
903 static int _lv_resume(struct cmd_context *cmd, const char *lvid_s,
904 int error_if_not_active)
905 {
906 struct logical_volume *lv;
907 struct lvinfo info;
908 int r = 0;
909
910 if (!activation())
911 return 1;
912
913 if (!(lv = lv_from_lvid(cmd, lvid_s, 0)))
914 goto_out;
915
916 if (test_mode()) {
917 _skip("Resuming '%s'.", lv->name);
918 r = 1;
919 goto out;
920 }
921
922 if (!lv_info(cmd, lv, &info, 0, 0))
923 goto_out;
924
925 if (!info.exists || !info.suspended) {
926 r = error_if_not_active ? 0 : 1;
927 goto_out;
928 }
929
930 if (!_lv_activate_lv(lv))
931 goto_out;
932
933 memlock_dec();
934 fs_unlock();
935
936 if (!monitor_dev_for_events(cmd, lv, 1))
937 stack;
938
939 r = 1;
940 out:
941 if (lv)
942 vg_release(lv->vg);
943
944 return r;
945 }
946
947 /* Returns success if the device is not active */
948 int lv_resume_if_active(struct cmd_context *cmd, const char *lvid_s)
949 {
950 return _lv_resume(cmd, lvid_s, 0);
951 }
952
953 int lv_resume(struct cmd_context *cmd, const char *lvid_s)
954 {
955 return _lv_resume(cmd, lvid_s, 1);
956 }
957
958 static int _lv_has_open_snapshots(struct logical_volume *lv)
959 {
960 struct lv_segment *snap_seg;
961 struct lvinfo info;
962 int r = 0;
963
964 dm_list_iterate_items_gen(snap_seg, &lv->snapshot_segs, origin_list) {
965 if (!lv_info(lv->vg->cmd, snap_seg->cow, &info, 1, 0)) {
966 r = 1;
967 continue;
968 }
969
970 if (info.exists && info.open_count) {
971 log_error("LV %s/%s has open snapshot %s: "
972 "not deactivating", lv->vg->name, lv->name,
973 snap_seg->cow->name);
974 r = 1;
975 }
976 }
977
978 return r;
979 }
980
981 int lv_deactivate(struct cmd_context *cmd, const char *lvid_s)
982 {
983 struct logical_volume *lv;
984 struct lvinfo info;
985 int r = 0;
986
987 if (!activation())
988 return 1;
989
990 if (!(lv = lv_from_lvid(cmd, lvid_s, 0)))
991 goto out;
992
993 if (test_mode()) {
994 _skip("Deactivating '%s'.", lv->name);
995 r = 1;
996 goto out;
997 }
998
999 if (!lv_info(cmd, lv, &info, 1, 0))
1000 goto_out;
1001
1002 if (!info.exists) {
1003 r = 1;
1004 goto out;
1005 }
1006
1007 if (lv_is_visible(lv)) {
1008 if (info.open_count) {
1009 log_error("LV %s/%s in use: not deactivating",
1010 lv->vg->name, lv->name);
1011 goto out;
1012 }
1013 if (lv_is_origin(lv) && _lv_has_open_snapshots(lv))
1014 goto_out;
1015 }
1016
1017 lv_calculate_readahead(lv, NULL);
1018
1019 if (!monitor_dev_for_events(cmd, lv, 0))
1020 stack;
1021
1022 memlock_inc();
1023 r = _lv_deactivate(lv);
1024 memlock_dec();
1025 fs_unlock();
1026
1027 if (!lv_info(cmd, lv, &info, 1, 0) || info.exists)
1028 r = 0;
1029 out:
1030 if (lv)
1031 vg_release(lv->vg);
1032
1033 return r;
1034 }
1035
1036 /* Test if LV passes filter */
1037 int lv_activation_filter(struct cmd_context *cmd, const char *lvid_s,
1038 int *activate_lv)
1039 {
1040 struct logical_volume *lv;
1041 int r = 0;
1042
1043 if (!activation()) {
1044 *activate_lv = 1;
1045 return 1;
1046 }
1047
1048 if (!(lv = lv_from_lvid(cmd, lvid_s, 0)))
1049 goto out;
1050
1051 if (!_passes_activation_filter(cmd, lv)) {
1052 log_verbose("Not activating %s/%s due to config file settings",
1053 lv->vg->name, lv->name);
1054 *activate_lv = 0;
1055 } else
1056 *activate_lv = 1;
1057 r = 1;
1058 out:
1059 if (lv)
1060 vg_release(lv->vg);
1061
1062 return r;
1063 }
1064
1065 static int _lv_activate(struct cmd_context *cmd, const char *lvid_s,
1066 int exclusive, int filter)
1067 {
1068 struct logical_volume *lv;
1069 struct lvinfo info;
1070 int r = 0;
1071
1072 if (!activation())
1073 return 1;
1074
1075 if (!(lv = lv_from_lvid(cmd, lvid_s, 0)))
1076 goto out;
1077
1078 if (filter && !_passes_activation_filter(cmd, lv)) {
1079 log_verbose("Not activating %s/%s due to config file settings",
1080 lv->vg->name, lv->name);
1081 goto out;
1082 }
1083
1084 if ((!lv->vg->cmd->partial_activation) && (lv->status & PARTIAL_LV)) {
1085 log_error("Refusing activation of partial LV %s. Use --partial to override.",
1086 lv->name);
1087 goto_out;
1088 }
1089
1090 if (lv_has_unknown_segments(lv)) {
1091 log_error("Refusing activation of LV %s containing "
1092 "an unrecognised segment.", lv->name);
1093 goto_out;
1094 }
1095
1096 if (test_mode()) {
1097 _skip("Activating '%s'.", lv->name);
1098 r = 1;
1099 goto out;
1100 }
1101
1102 if (!lv_info(cmd, lv, &info, 0, 0))
1103 goto_out;
1104
1105 if (info.exists && !info.suspended && info.live_table) {
1106 r = 1;
1107 goto out;
1108 }
1109
1110 lv_calculate_readahead(lv, NULL);
1111
1112 if (exclusive)
1113 lv->status |= ACTIVATE_EXCL;
1114
1115 memlock_inc();
1116 if (!(r = _lv_activate_lv(lv)))
1117 stack;
1118 memlock_dec();
1119 fs_unlock();
1120
1121 if (r && !monitor_dev_for_events(cmd, lv, 1))
1122 stack;
1123
1124 out:
1125 if (lv)
1126 vg_release(lv->vg);
1127
1128 return r;
1129 }
1130
1131 /* Activate LV */
1132 int lv_activate(struct cmd_context *cmd, const char *lvid_s, int exclusive)
1133 {
1134 if (!_lv_activate(cmd, lvid_s, exclusive, 0))
1135 return_0;
1136
1137 return 1;
1138 }
1139
1140 /* Activate LV only if it passes filter */
1141 int lv_activate_with_filter(struct cmd_context *cmd, const char *lvid_s, int exclusive)
1142 {
1143 if (!_lv_activate(cmd, lvid_s, exclusive, 1))
1144 return_0;
1145
1146 return 1;
1147 }
1148
1149 int lv_mknodes(struct cmd_context *cmd, const struct logical_volume *lv)
1150 {
1151 int r = 1;
1152
1153 if (!lv) {
1154 r = dm_mknodes(NULL);
1155 fs_unlock();
1156 return r;
1157 }
1158
1159 if (!activation())
1160 return 1;
1161
1162 r = dev_manager_mknodes(lv);
1163
1164 fs_unlock();
1165
1166 return r;
1167 }
1168
1169 /*
1170 * Does PV use VG somewhere in its construction?
1171 * Returns 1 on failure.
1172 */
1173 int pv_uses_vg(struct physical_volume *pv,
1174 struct volume_group *vg)
1175 {
1176 if (!activation())
1177 return 0;
1178
1179 if (!dm_is_dm_major(MAJOR(pv->dev->dev)))
1180 return 0;
1181
1182 return dev_manager_device_uses_vg(pv->dev, vg);
1183 }
1184
1185 void activation_release(void)
1186 {
1187 dev_manager_release();
1188 }
1189
1190 void activation_exit(void)
1191 {
1192 dev_manager_exit();
1193 }
1194 #endif
This page took 0.088606 seconds and 6 git commands to generate.