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