1
0
mirror of git://sourceware.org/git/lvm2.git synced 2024-10-28 11:55:55 +03:00
lvm2/libdm/libdm-deptree.c

1723 lines
38 KiB
C
Raw Normal View History

/*
* Copyright (C) 2005 Red Hat, Inc. All rights reserved.
*
* This file is part of the device-mapper userspace tools.
*
* This copyrighted material is made available to anyone wishing to use,
* modify, copy, or redistribute it subject to the terms and conditions
* of the GNU Lesser General Public License v.2.1.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program; if not, write to the Free Software Foundation,
* Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#include "lib.h"
#include "libdm-targets.h"
#include "libdm-common.h"
#include "list.h"
#include "kdev_t.h"
#include <stdarg.h>
#include <sys/param.h>
#include <linux/dm-ioctl.h>
#define MAX_TARGET_PARAMSIZE 500000
/* Supported segment types */
enum {
SEG_ERROR,
SEG_LINEAR,
SEG_MIRRORED,
SEG_SNAPSHOT,
SEG_SNAPSHOT_ORIGIN,
SEG_STRIPED,
SEG_ZERO,
};
/* FIXME Add crypt and multipath support */
struct {
unsigned type;
const char *target;
} dm_segtypes[] = {
{ SEG_ERROR, "error" },
{ SEG_LINEAR, "linear" },
{ SEG_MIRRORED, "mirror" },
{ SEG_SNAPSHOT, "snapshot" },
{ SEG_SNAPSHOT_ORIGIN, "snapshot-origin" },
{ SEG_STRIPED, "striped" },
{ SEG_ZERO, "zero"},
};
/* Some segment types have a list of areas of other devices attached */
struct seg_area {
struct list list;
struct deptree_node *dev_node;
uint64_t offset;
};
/* Per-segment properties */
struct load_segment {
struct list list;
unsigned type;
uint64_t size;
unsigned area_count; /* Linear + Striped + Mirrored */
struct list areas; /* Linear + Striped + Mirrored */
uint32_t stripe_size; /* Striped */
int persistent; /* Snapshot */
uint32_t chunk_size; /* Snapshot */
struct deptree_node *cow; /* Snapshot */
struct deptree_node *origin; /* Snapshot + Snapshot origin */
struct deptree_node *log; /* Mirror */
uint32_t region_size; /* Mirror */
unsigned clustered; /* Mirror */
unsigned mirror_area_count; /* Mirror */
};
/* Per-device properties */
struct load_properties {
int read_only;
uint32_t major;
uint32_t minor;
unsigned segment_count;
struct list segs;
const char *new_name;
};
/* Two of these used to join two nodes with uses and used_by. */
struct deptree_link {
struct list list;
struct deptree_node *node;
};
struct deptree_node {
struct deptree *deptree;
const char *name;
const char *uuid;
struct dm_info info;
struct list uses; /* Nodes this node uses */
struct list used_by; /* Nodes that use this node */
void *context; /* External supplied context */
struct load_properties props; /* For creation/table (re)load */
};
struct deptree {
2005-10-17 02:57:20 +04:00
struct dm_pool *mem;
struct dm_hash_table *devs;
struct dm_hash_table *uuids;
struct deptree_node root;
};
/* FIXME Consider exporting this */
static int _dm_snprintf(char *buf, size_t bufsize, const char *format, ...)
{
int n;
va_list ap;
va_start(ap, format);
n = vsnprintf(buf, bufsize, format, ap);
va_end(ap);
if (n < 0 || (n > bufsize - 1))
return -1;
return n;
}
struct deptree *dm_deptree_create(void)
{
struct deptree *deptree;
2005-10-17 02:57:20 +04:00
if (!(deptree = dm_malloc(sizeof(*deptree)))) {
log_error("dm_deptree_create malloc failed");
return NULL;
}
memset(deptree, 0, sizeof(*deptree));
deptree->root.deptree = deptree;
list_init(&deptree->root.uses);
list_init(&deptree->root.used_by);
2005-10-17 02:57:20 +04:00
if (!(deptree->mem = dm_pool_create("deptree", 1024))) {
log_error("deptree pool creation failed");
2005-10-17 02:57:20 +04:00
dm_free(deptree);
return NULL;
}
2005-10-17 02:57:20 +04:00
if (!(deptree->devs = dm_hash_create(8))) {
log_error("deptree hash creation failed");
2005-10-17 02:57:20 +04:00
dm_pool_destroy(deptree->mem);
dm_free(deptree);
return NULL;
}
if (!(deptree->uuids = dm_hash_create(32))) {
log_error("deptree uuid hash creation failed");
dm_hash_destroy(deptree->devs);
dm_pool_destroy(deptree->mem);
dm_free(deptree);
return NULL;
}
return deptree;
}
void dm_deptree_free(struct deptree *deptree)
{
if (!deptree)
return;
dm_hash_destroy(deptree->uuids);
2005-10-17 02:57:20 +04:00
dm_hash_destroy(deptree->devs);
dm_pool_destroy(deptree->mem);
dm_free(deptree);
}
static int _nodes_are_linked(struct deptree_node *parent,
struct deptree_node *child)
{
struct deptree_link *dlink;
list_iterate_items(dlink, &parent->uses)
if (dlink->node == child)
return 1;
return 0;
}
static int _link(struct list *list, struct deptree_node *node)
{
struct deptree_link *dlink;
2005-10-17 02:57:20 +04:00
if (!(dlink = dm_pool_alloc(node->deptree->mem, sizeof(*dlink)))) {
log_error("deptree link allocation failed");
return 0;
}
dlink->node = node;
list_add(list, &dlink->list);
return 1;
}
static int _link_nodes(struct deptree_node *parent,
struct deptree_node *child)
{
if (_nodes_are_linked(parent, child))
return 1;
if (!_link(&parent->uses, child))
return 0;
if (!_link(&child->used_by, parent))
return 0;
return 1;
}
static void _unlink(struct list *list, struct deptree_node *node)
{
struct deptree_link *dlink;
list_iterate_items(dlink, list)
if (dlink->node == node) {
list_del(&dlink->list);
break;
}
}
static void _unlink_nodes(struct deptree_node *parent,
struct deptree_node *child)
{
if (!_nodes_are_linked(parent, child))
return;
_unlink(&parent->uses, child);
_unlink(&child->used_by, parent);
}
static int _add_to_toplevel(struct deptree_node *node)
{
return _link_nodes(&node->deptree->root, node);
}
static void _remove_from_toplevel(struct deptree_node *node)
{
return _unlink_nodes(&node->deptree->root, node);
}
static int _add_to_bottomlevel(struct deptree_node *node)
{
return _link_nodes(node, &node->deptree->root);
}
static void _remove_from_bottomlevel(struct deptree_node *node)
{
return _unlink_nodes(node, &node->deptree->root);
}
static int _link_tree_nodes(struct deptree_node *parent, struct deptree_node *child)
{
/* Don't link to root node if child already has a parent */
if ((parent == &parent->deptree->root)) {
if (dm_deptree_node_num_children(child, 1))
return 1;
} else
_remove_from_toplevel(child);
if ((child == &child->deptree->root)) {
if (dm_deptree_node_num_children(parent, 0))
return 1;
} else
_remove_from_bottomlevel(parent);
return _link_nodes(parent, child);
}
static struct deptree_node *_create_deptree_node(struct deptree *deptree,
const char *name,
const char *uuid,
struct dm_info *info,
void *context)
{
struct deptree_node *node;
uint64_t dev;
2005-10-17 02:57:20 +04:00
if (!(node = dm_pool_zalloc(deptree->mem, sizeof(*node)))) {
log_error("_create_deptree_node alloc failed");
return NULL;
}
node->deptree = deptree;
node->name = name;
node->uuid = uuid;
node->info = *info;
node->context = context;
list_init(&node->uses);
list_init(&node->used_by);
list_init(&node->props.segs);
dev = MKDEV(info->major, info->minor);
2005-10-17 02:57:20 +04:00
if (!dm_hash_insert_binary(deptree->devs, (const char *) &dev,
sizeof(dev), node)) {
log_error("deptree node hash insertion failed");
2005-10-17 02:57:20 +04:00
dm_pool_free(deptree->mem, node);
return NULL;
}
if (uuid && *uuid &&
!dm_hash_insert(deptree->uuids, uuid, node)) {
log_error("deptree uuid hash insertion failed");
dm_hash_remove_binary(deptree->devs, (const char *) &dev,
sizeof(dev));
dm_pool_free(deptree->mem, node);
return NULL;
}
return node;
}
static struct deptree_node *_find_deptree_node(struct deptree *deptree,
uint32_t major, uint32_t minor)
{
uint64_t dev = MKDEV(major, minor);
2005-10-17 02:57:20 +04:00
return dm_hash_lookup_binary(deptree->devs, (const char *) &dev,
sizeof(dev));
}
static struct deptree_node *_find_deptree_node_by_uuid(struct deptree *deptree,
const char *uuid)
{
/* FIXME Do we need to cope with missing LVM- prefix too? */
return dm_hash_lookup(deptree->uuids, uuid);
}
2005-10-17 02:57:20 +04:00
static int _deps(struct dm_task **dmt, struct dm_pool *mem, uint32_t major, uint32_t minor,
const char **name, const char **uuid,
struct dm_info *info, struct dm_deps **deps)
{
memset(info, 0, sizeof(*info));
if (!dm_is_dm_major(major)) {
*name = "";
*uuid = "";
*deps = NULL;
info->major = major;
info->minor = minor;
info->exists = 0;
info->live_table = 0;
info->inactive_table = 0;
info->read_only = 0;
return 1;
}
if (!(*dmt = dm_task_create(DM_DEVICE_DEPS))) {
log_error("deps dm_task creation failed");
return 0;
}
if (!dm_task_set_major(*dmt, major))
goto failed;
if (!dm_task_set_minor(*dmt, minor))
goto failed;
if (!dm_task_run(*dmt))
goto failed;
if (!dm_task_get_info(*dmt, info))
goto failed;
if (!info->exists) {
*name = "";
*uuid = "";
*deps = NULL;
} else {
if (info->major != major) {
log_error("Inconsistent deptree major number: %u != %u",
major, info->major);
goto failed;
}
if (info->minor != minor) {
log_error("Inconsistent deptree minor number: %u != %u",
minor, info->minor);
goto failed;
}
2005-10-17 02:57:20 +04:00
if (!(*name = dm_pool_strdup(mem, dm_task_get_name(*dmt)))) {
log_error("name pool_strdup failed");
goto failed;
}
2005-10-17 02:57:20 +04:00
if (!(*uuid = dm_pool_strdup(mem, dm_task_get_uuid(*dmt)))) {
log_error("uuid pool_strdup failed");
goto failed;
}
*deps = dm_task_get_deps(*dmt);
}
return 1;
failed:
dm_task_destroy(*dmt);
return 0;
}
static struct deptree_node *_add_dev(struct deptree *deptree,
struct deptree_node *parent,
uint32_t major, uint32_t minor)
{
struct dm_task *dmt = NULL;
struct dm_info info;
struct dm_deps *deps = NULL;
const char *name = NULL;
const char *uuid = NULL;
struct deptree_node *node = NULL;
uint32_t i;
int new = 0;
/* Already in tree? */
if (!(node = _find_deptree_node(deptree, major, minor))) {
if (!_deps(&dmt, deptree->mem, major, minor, &name, &uuid, &info, &deps))
return NULL;
if (!(node = _create_deptree_node(deptree, name, uuid,
&info, NULL)))
goto out;
new = 1;
}
if (!_link_tree_nodes(parent, node)) {
node = NULL;
goto out;
}
/* If node was already in tree, no need to recurse. */
if (!new)
goto out;
/* Can't recurse if not a mapped device or there are no dependencies */
if (!node->info.exists || !deps->count) {
if (!_add_to_bottomlevel(node))
node = NULL;
goto out;
}
/* Add dependencies to tree */
for (i = 0; i < deps->count; i++)
if (!_add_dev(deptree, node, MAJOR(deps->device[i]),
MINOR(deps->device[i]))) {
node = NULL;
goto out;
}
out:
if (dmt)
dm_task_destroy(dmt);
return node;
}
static int _node_clear_table(struct deptree_node *dnode)
{
struct dm_task *dmt;
struct dm_info *info;
const char *name;
int r;
if (!(info = &dnode->info)) {
stack;
return 0;
}
if (!(name = dm_deptree_node_get_name(dnode))) {
stack;
return 0;
}
/* Is there a table? */
if (!info->exists || !info->inactive_table)
return 1;
log_verbose("Clearing inactive table %s (%" PRIu32 ":%" PRIu32 ")",
name, info->major, info->minor);
if (!(dmt = dm_task_create(DM_DEVICE_CLEAR))) {
dm_task_destroy(dmt);
log_error("Table clear dm_task creation failed for %s", name);
return 0;
}
if (!dm_task_set_major(dmt, info->major) ||
!dm_task_set_minor(dmt, info->minor)) {
log_error("Failed to set device number for %s table clear", name);
dm_task_destroy(dmt);
return 0;
}
r = dm_task_run(dmt);
if (!dm_task_get_info(dmt, info)) {
stack;
r = 0;
}
dm_task_destroy(dmt);
return r;
}
struct deptree_node *dm_deptree_add_new_dev(struct deptree *deptree,
const char *name,
const char *uuid,
uint32_t major, uint32_t minor,
int read_only,
int clear_inactive,
void *context)
{
struct deptree_node *dnode;
struct dm_info info;
const char *name2;
const char *uuid2;
/* Do we need to add node to tree? */
if (!(dnode = dm_deptree_find_node_by_uuid(deptree, uuid))) {
if (!(name2 = dm_pool_strdup(deptree->mem, name))) {
log_error("name pool_strdup failed");
return NULL;
}
if (!(uuid2 = dm_pool_strdup(deptree->mem, uuid))) {
log_error("uuid pool_strdup failed");
return NULL;
}
info.major = 0;
info.minor = 0;
info.exists = 0;
info.live_table = 0;
info.inactive_table = 0;
info.read_only = 0;
if (!(dnode = _create_deptree_node(deptree, name2, uuid2,
&info, context))) {
stack;
return NULL;
}
/* Attach to root node until a table is supplied */
if (!_add_to_toplevel(dnode) || !_add_to_bottomlevel(dnode)) {
stack;
return NULL;
}
dnode->props.major = major;
dnode->props.minor = minor;
dnode->props.new_name = NULL;
} else if (strcmp(name, dnode->name)) {
/* Do we need to rename node? */
if (!(dnode->props.new_name = dm_pool_strdup(deptree->mem, name))) {
log_error("name pool_strdup failed");
return 0;
}
}
dnode->props.read_only = read_only ? 1 : 0;
if (clear_inactive && !_node_clear_table(dnode)) {
stack;
return NULL;
}
dnode->context = context;
return dnode;
}
int dm_deptree_add_dev(struct deptree *deptree, uint32_t major, uint32_t minor)
{
return _add_dev(deptree, &deptree->root, major, minor) ? 1 : 0;
}
const char *dm_deptree_node_get_name(struct deptree_node *node)
{
return node->info.exists ? node->name : "";
}
const char *dm_deptree_node_get_uuid(struct deptree_node *node)
{
return node->info.exists ? node->uuid : "";
}
const struct dm_info *dm_deptree_node_get_info(struct deptree_node *node)
{
return &node->info;
}
void *dm_deptree_node_get_context(struct deptree_node *node)
{
return node->context;
}
int dm_deptree_node_num_children(struct deptree_node *node, uint32_t inverted)
{
if (inverted) {
if (_nodes_are_linked(&node->deptree->root, node))
return 0;
return list_size(&node->used_by);
}
if (_nodes_are_linked(node, &node->deptree->root))
return 0;
return list_size(&node->uses);
}
2005-10-26 19:21:13 +04:00
/*
* Returns 1 if no prefix supplied
*/
static int _uuid_prefix_matches(const char *uuid, const char *uuid_prefix, size_t uuid_prefix_len)
{
if (!uuid_prefix)
return 1;
if (!strncmp(uuid, uuid_prefix, uuid_prefix_len))
return 1;
/* Handle transition: active device uuids might be missing the prefix */
if (uuid_prefix_len <= 4)
return 0;
2005-10-26 22:33:47 +04:00
if (!strncmp(uuid, "LVM-", 4))
return 0;
if (strncmp(uuid_prefix, "LVM-", 4))
2005-10-26 19:21:13 +04:00
return 0;
if (!strncmp(uuid, uuid_prefix + 4, uuid_prefix_len - 4))
return 1;
return 0;
}
2005-10-26 18:08:24 +04:00
/*
* Returns 1 if no children.
*/
static int _children_suspended(struct deptree_node *node,
uint32_t inverted,
const char *uuid_prefix,
size_t uuid_prefix_len)
{
struct list *list;
struct deptree_link *dlink;
const struct dm_info *dinfo;
const char *uuid;
if (inverted) {
if (_nodes_are_linked(&node->deptree->root, node))
return 1;
list = &node->used_by;
} else {
if (_nodes_are_linked(node, &node->deptree->root))
return 1;
list = &node->uses;
}
list_iterate_items(dlink, list) {
if (!(uuid = dm_deptree_node_get_uuid(dlink->node))) {
stack;
continue;
}
/* Ignore if it doesn't belong to this VG */
2005-10-26 19:21:13 +04:00
if (!_uuid_prefix_matches(uuid, uuid_prefix, uuid_prefix_len))
2005-10-26 18:08:24 +04:00
continue;
if (!(dinfo = dm_deptree_node_get_info(dlink->node))) {
stack;
return 0;
}
if (!dinfo->suspended)
return 0;
}
return 1;
}
/*
* Set major and minor to zero for root of tree.
*/
struct deptree_node *dm_deptree_find_node(struct deptree *deptree,
uint32_t major,
uint32_t minor)
{
if (!major && !minor)
return &deptree->root;
return _find_deptree_node(deptree, major, minor);
}
/*
* Set uuid to NULL for root of tree.
*/
struct deptree_node *dm_deptree_find_node_by_uuid(struct deptree *deptree,
const char *uuid)
{
if (!uuid || !*uuid)
return &deptree->root;
return _find_deptree_node_by_uuid(deptree, uuid);
}
/*
* First time set *handle to NULL.
* Set inverted to invert the tree.
*/
struct deptree_node *dm_deptree_next_child(void **handle,
struct deptree_node *parent,
uint32_t inverted)
{
struct list **dlink = (struct list **) handle;
struct list *use_list;
if (inverted)
use_list = &parent->used_by;
else
use_list = &parent->uses;
if (!*dlink)
*dlink = list_first(use_list);
else
*dlink = list_next(use_list, *dlink);
return (*dlink) ? list_item(*dlink, struct deptree_link)->node : NULL;
}
2005-10-18 16:37:53 +04:00
/*
2005-10-18 17:57:11 +04:00
* Deactivate a device with its dependencies if the uuid prefix matches.
2005-10-18 16:37:53 +04:00
*/
2005-10-25 23:09:41 +04:00
static int _info_by_dev(uint32_t major, uint32_t minor, int with_open_count,
struct dm_info *info)
2005-10-18 16:37:53 +04:00
{
struct dm_task *dmt;
int r;
if (!(dmt = dm_task_create(DM_DEVICE_INFO))) {
log_error("_info_by_dev: dm_task creation failed");
return 0;
}
if (!dm_task_set_major(dmt, major) || !dm_task_set_minor(dmt, minor)) {
log_error("_info_by_dev: Failed to set device number");
dm_task_destroy(dmt);
return 0;
}
2005-10-25 23:09:41 +04:00
if (!with_open_count && !dm_task_no_open_count(dmt))
log_error("Failed to disable open_count");
2005-10-18 16:37:53 +04:00
if ((r = dm_task_run(dmt)))
r = dm_task_get_info(dmt, info);
dm_task_destroy(dmt);
return r;
}
static int _deactivate_node(const char *name, uint32_t major, uint32_t minor)
{
struct dm_task *dmt;
int r;
log_verbose("Removing %s (%" PRIu32 ":%" PRIu32 ")", name, major, minor);
if (!(dmt = dm_task_create(DM_DEVICE_REMOVE))) {
log_error("Deactivation dm_task creation failed for %s", name);
return 0;
}
if (!dm_task_set_major(dmt, major) || !dm_task_set_minor(dmt, minor)) {
log_error("Failed to set device number for %s deactivation", name);
dm_task_destroy(dmt);
return 0;
}
if (!dm_task_no_open_count(dmt))
log_error("Failed to disable open_count");
r = dm_task_run(dmt);
/* FIXME Until kernel returns actual name so dm-ioctl.c can handle it */
rm_dev_node(name);
2005-10-25 23:09:41 +04:00
/* FIXME Remove node from tree or mark invalid? */
dm_task_destroy(dmt);
return r;
}
static int _rename_node(const char *old_name, const char *new_name, uint32_t major, uint32_t minor)
{
struct dm_task *dmt;
int r = 0;
log_verbose("Renaming %s (%" PRIu32 ":%" PRIu32 ") to %s", old_name, major, minor, new_name);
if (!(dmt = dm_task_create(DM_DEVICE_RENAME))) {
log_error("Rename dm_task creation failed for %s", old_name);
return 0;
}
if (!dm_task_set_name(dmt, old_name)) {
log_error("Failed to set name for %s rename.", old_name);
goto out;
}
if (!dm_task_set_newname(dmt, new_name)) {
stack;
goto out;
}
if (!dm_task_no_open_count(dmt))
log_error("Failed to disable open_count");
r = dm_task_run(dmt);
out:
dm_task_destroy(dmt);
return r;
}
/* FIXME Merge with _suspend_node? */
static int _resume_node(const char *name, uint32_t major, uint32_t minor,
struct dm_info *newinfo)
{
struct dm_task *dmt;
int r;
log_verbose("Resuming %s (%" PRIu32 ":%" PRIu32 ")", name, major, minor);
if (!(dmt = dm_task_create(DM_DEVICE_RESUME))) {
log_error("Suspend dm_task creation failed for %s", name);
return 0;
}
if (!dm_task_set_major(dmt, major) || !dm_task_set_minor(dmt, minor)) {
log_error("Failed to set device number for %s resumption.", name);
dm_task_destroy(dmt);
return 0;
}
if (!dm_task_no_open_count(dmt))
log_error("Failed to disable open_count");
if ((r = dm_task_run(dmt)))
r = dm_task_get_info(dmt, newinfo);
dm_task_destroy(dmt);
return r;
}
2005-10-25 23:09:41 +04:00
static int _suspend_node(const char *name, uint32_t major, uint32_t minor,
struct dm_info *newinfo)
{
struct dm_task *dmt;
int r;
log_verbose("Suspending %s (%" PRIu32 ":%" PRIu32 ")", name, major, minor);
if (!(dmt = dm_task_create(DM_DEVICE_SUSPEND))) {
log_error("Suspend dm_task creation failed for %s", name);
return 0;
}
if (!dm_task_set_major(dmt, major) || !dm_task_set_minor(dmt, minor)) {
log_error("Failed to set device number for %s suspension.", name);
dm_task_destroy(dmt);
return 0;
}
if (!dm_task_no_open_count(dmt))
log_error("Failed to disable open_count");
if ((r = dm_task_run(dmt)))
r = dm_task_get_info(dmt, newinfo);
2005-10-18 16:37:53 +04:00
dm_task_destroy(dmt);
return r;
}
2005-10-18 17:57:11 +04:00
int dm_deptree_deactivate_children(struct deptree_node *dnode,
const char *uuid_prefix,
size_t uuid_prefix_len)
2005-10-18 16:37:53 +04:00
{
void *handle = NULL;
struct deptree_node *child = dnode;
struct dm_info info;
const struct dm_info *dinfo;
const char *name;
const char *uuid;
while ((child = dm_deptree_next_child(&handle, dnode, 0))) {
if (!(dinfo = dm_deptree_node_get_info(child))) {
stack;
continue;
}
if (!(name = dm_deptree_node_get_name(child))) {
stack;
continue;
}
if (!(uuid = dm_deptree_node_get_uuid(child))) {
stack;
continue;
}
/* Ignore if it doesn't belong to this VG */
2005-10-26 19:21:13 +04:00
if (!_uuid_prefix_matches(uuid, uuid_prefix, uuid_prefix_len))
2005-10-18 16:37:53 +04:00
continue;
/* Refresh open_count */
2005-10-25 23:09:41 +04:00
if (!_info_by_dev(dinfo->major, dinfo->minor, 1, &info) ||
2005-10-18 16:37:53 +04:00
!info.exists || info.open_count)
continue;
if (!_deactivate_node(name, info.major, info.minor)) {
log_error("Unable to deactivate %s (%" PRIu32
":%" PRIu32 ")", name, info.major,
info.minor);
continue;
}
if (dm_deptree_node_num_children(child, 0))
dm_deptree_deactivate_children(child, uuid_prefix, uuid_prefix_len);
}
return 1;
}
2005-10-25 23:09:41 +04:00
int dm_deptree_suspend_children(struct deptree_node *dnode,
const char *uuid_prefix,
size_t uuid_prefix_len)
{
void *handle = NULL;
struct deptree_node *child = dnode;
struct dm_info info, newinfo;
const struct dm_info *dinfo;
const char *name;
const char *uuid;
2005-10-26 18:08:24 +04:00
/* Suspend nodes at this level of the tree */
2005-10-25 23:09:41 +04:00
while ((child = dm_deptree_next_child(&handle, dnode, 0))) {
if (!(dinfo = dm_deptree_node_get_info(child))) {
stack;
continue;
}
if (!(name = dm_deptree_node_get_name(child))) {
stack;
continue;
}
if (!(uuid = dm_deptree_node_get_uuid(child))) {
stack;
continue;
}
/* Ignore if it doesn't belong to this VG */
2005-10-26 19:21:13 +04:00
if (!_uuid_prefix_matches(uuid, uuid_prefix, uuid_prefix_len))
2005-10-25 23:09:41 +04:00
continue;
2005-10-26 18:08:24 +04:00
/* Ensure immediate parents are already suspended */
if (!_children_suspended(child, 1, uuid_prefix, uuid_prefix_len))
continue;
2005-10-25 23:09:41 +04:00
if (!_info_by_dev(dinfo->major, dinfo->minor, 0, &info) ||
!info.exists)
continue;
if (!_suspend_node(name, info.major, info.minor, &newinfo)) {
log_error("Unable to suspend %s (%" PRIu32
":%" PRIu32 ")", name, info.major,
info.minor);
continue;
}
/* Update cached info */
child->info = newinfo;
2005-10-26 18:08:24 +04:00
}
/* Then suspend any child nodes */
handle = NULL;
while ((child = dm_deptree_next_child(&handle, dnode, 0))) {
if (!(uuid = dm_deptree_node_get_uuid(child))) {
stack;
continue;
}
/* Ignore if it doesn't belong to this VG */
if (uuid_prefix && strncmp(uuid, uuid_prefix, uuid_prefix_len))
continue;
2005-10-25 23:09:41 +04:00
if (dm_deptree_node_num_children(child, 0))
dm_deptree_suspend_children(child, uuid_prefix, uuid_prefix_len);
}
return 1;
}
int dm_deptree_activate_children(struct deptree_node *dnode,
2005-10-25 23:09:41 +04:00
const char *uuid_prefix,
size_t uuid_prefix_len)
{
void *handle = NULL;
struct deptree_node *child = dnode;
struct dm_info newinfo;
const char *name;
2005-10-25 23:09:41 +04:00
const char *uuid;
/* Activate children first */
2005-10-25 23:09:41 +04:00
while ((child = dm_deptree_next_child(&handle, dnode, 0))) {
if (!(uuid = dm_deptree_node_get_uuid(child))) {
stack;
continue;
2005-10-25 23:09:41 +04:00
}
2005-10-26 22:33:47 +04:00
if (_uuid_prefix_matches(uuid, uuid_prefix, uuid_prefix_len))
2005-10-25 23:09:41 +04:00
return 1;
if (dm_deptree_node_num_children(child, 0))
dm_deptree_activate_children(child, uuid_prefix, uuid_prefix_len);
if (!(name = dm_deptree_node_get_name(child))) {
stack;
continue;
}
/* Rename? */
if (child->props.new_name) {
if (!_rename_node(name, child->props.new_name, child->info.major, child->info.minor)) {
log_error("Failed to rename %s (%" PRIu32
":%" PRIu32 ") to %s", name, child->info.major,
child->info.minor, child->props.new_name);
return 0;
}
child->name = child->props.new_name;
child->props.new_name = NULL;
}
if (!child->info.inactive_table && !child->info.suspended)
continue;
if (!_resume_node(name, child->info.major, child->info.minor, &newinfo)) {
log_error("Unable to resume %s (%" PRIu32
":%" PRIu32 ")", name, child->info.major,
child->info.minor);
continue;
}
/* Update cached info */
child->info = newinfo;
2005-10-25 23:09:41 +04:00
}
handle = NULL;
return 1;
}
static int _create_node(struct deptree_node *dnode)
{
int r = 0;
struct dm_task *dmt;
log_verbose("Creating %s", dnode->name);
if (!(dmt = dm_task_create(DM_DEVICE_CREATE))) {
log_error("Create dm_task creation failed for %s", dnode->name);
return 0;
}
if (!dm_task_set_name(dmt, dnode->name)) {
log_error("Failed to set device name for %s", dnode->name);
goto out;
}
if (!dm_task_set_uuid(dmt, dnode->uuid)) {
log_error("Failed to set uuid for %s", dnode->name);
goto out;
}
if (dnode->props.major &&
(!dm_task_set_major(dmt, dnode->props.major) ||
!dm_task_set_minor(dmt, dnode->props.minor))) {
log_error("Failed to set device number for %s creation.", dnode->name);
goto out;
}
if (dnode->props.read_only && !dm_task_set_ro(dmt)) {
log_error("Failed to set read only flag for %s", dnode->name);
goto out;
}
if (!dm_task_no_open_count(dmt))
log_error("Failed to disable open_count");
if ((r = dm_task_run(dmt)))
r = dm_task_get_info(dmt, &dnode->info);
out:
dm_task_destroy(dmt);
return r;
}
static int _build_dev_string(char *devbuf, size_t bufsize, struct deptree_node *node)
{
if (!dm_format_dev(devbuf, bufsize, node->info.major, node->info.minor)) {
log_error("Failed to format %s device number for %s as dm "
"target (%u,%u)",
node->name, node->uuid, node->info.major, node->info.minor);
return 0;
}
return 1;
}
static int _emit_areas_line(struct dm_task *dmt, struct load_segment *seg, char *params, size_t paramsize, int *pos)
{
struct seg_area *area;
char devbuf[10];
int tw;
const char *prefix = "";
list_iterate_items(area, &seg->areas) {
if (!_build_dev_string(devbuf, sizeof(devbuf), area->dev_node)) {
stack;
return 0;
}
if ((tw = _dm_snprintf(params + *pos, paramsize - *pos, "%s%s %" PRIu64,
prefix, devbuf, area->offset)) < 0) {
stack;
return -1;
}
prefix = " ";
*pos += tw;
}
return 1;
}
static int _emit_segment_line(struct dm_task *dmt, struct load_segment *seg, uint64_t *seg_start, char *params, size_t paramsize)
{
int pos = 0;
int tw;
int r;
char originbuf[10], cowbuf[10], logbuf[10];
switch(seg->type) {
case SEG_ERROR:
case SEG_ZERO:
params[0] = '\0';
case SEG_LINEAR:
break;
case SEG_MIRRORED:
if (seg->clustered) {
if ((tw = _dm_snprintf(params + pos, paramsize - pos, "clustered ")) < 0) {
stack;
return -1;
}
pos += tw;
}
if (!seg->log) {
if ((tw = _dm_snprintf(params + pos, paramsize - pos, "core 1 ")) < 0) {
stack;
return -1;
}
pos += tw;
} else {
if (!_build_dev_string(logbuf, sizeof(logbuf), seg->log)) {
stack;
return 0;
}
if ((tw = _dm_snprintf(params + pos, paramsize - pos, "disk 2 %s ", logbuf)) < 0) {
stack;
return -1;
}
pos += tw;
}
if ((tw = _dm_snprintf(params + pos, paramsize - pos, "%u %u ", seg->region_size, seg->mirror_area_count)) < 0) {
stack;
return -1;
}
pos += tw;
break;
case SEG_SNAPSHOT:
if (!_build_dev_string(originbuf, sizeof(originbuf), seg->origin)) {
stack;
return 0;
}
if (!_build_dev_string(cowbuf, sizeof(cowbuf), seg->cow)) {
stack;
return 0;
}
if ((pos = _dm_snprintf(params, paramsize, "%s %s %c %d",
originbuf, cowbuf,
seg->persistent ? 'P' : 'N',
seg->chunk_size)) < 0) {
stack;
return -1;
}
break;
case SEG_SNAPSHOT_ORIGIN:
if (!_build_dev_string(originbuf, sizeof(originbuf), seg->origin)) {
stack;
return 0;
}
if ((pos = _dm_snprintf(params, paramsize, "%s",
originbuf)) < 0) {
stack;
return -1;
}
break;
case SEG_STRIPED:
if ((pos = _dm_snprintf(params, paramsize, "%u %u ",
seg->area_count,
seg->stripe_size)) < 0) {
stack;
return -1;
}
break;
}
switch(seg->type) {
case SEG_ERROR:
case SEG_SNAPSHOT:
case SEG_SNAPSHOT_ORIGIN:
case SEG_ZERO:
break;
case SEG_LINEAR:
case SEG_MIRRORED:
case SEG_STRIPED:
if ((r = _emit_areas_line(dmt, seg, params, paramsize, &pos)) <= 0) {
stack;
return r;
}
break;
}
log_debug("Adding target: %" PRIu64 " %" PRIu64 " %s %s",
*seg_start, seg->size, dm_segtypes[seg->type].target, params);
if (!dm_task_add_target(dmt, *seg_start, seg->size, dm_segtypes[seg->type].target, params)) {
stack;
return 0;
}
*seg_start += seg->size;
return 1;
}
static int _emit_segment(struct dm_task *dmt, struct load_segment *seg,
uint64_t *seg_start)
{
char *params;
size_t paramsize = 4096;
int ret;
do {
if (!(params = dm_malloc(paramsize))) {
log_error("Insufficient space for target parameters.");
return 0;
}
ret = _emit_segment_line(dmt, seg, seg_start, params, paramsize);
dm_free(params);
if (!ret)
stack;
if (ret >= 0)
return ret;
log_debug("Insufficient space in params[%" PRIsize_t
"] for target parameters.", paramsize);
paramsize *= 2;
} while (paramsize < MAX_TARGET_PARAMSIZE);
log_error("Target parameter size too big. Aborting.");
return 0;
}
static int _load_node(struct deptree_node *dnode)
{
int r = 0;
struct dm_task *dmt;
struct load_segment *seg;
uint64_t seg_start = 0;
log_verbose("Loading %s table", dnode->name);
if (!(dmt = dm_task_create(DM_DEVICE_RELOAD))) {
log_error("Reload dm_task creation failed for %s", dnode->name);
return 0;
}
if (!dm_task_set_major(dmt, dnode->info.major) ||
!dm_task_set_minor(dmt, dnode->info.minor)) {
log_error("Failed to set device number for %s reload.", dnode->name);
goto out;
}
if (dnode->props.read_only && !dm_task_set_ro(dmt)) {
log_error("Failed to set read only flag for %s", dnode->name);
goto out;
}
if (!dm_task_no_open_count(dmt))
log_error("Failed to disable open_count");
list_iterate_items(seg, &dnode->props.segs)
if (!_emit_segment(dmt, seg, &seg_start)) {
stack;
goto out;
}
if ((r = dm_task_run(dmt)))
r = dm_task_get_info(dmt, &dnode->info);
dnode->props.segment_count = 0;
out:
dm_task_destroy(dmt);
return r;
}
int dm_deptree_preload_children(struct deptree_node *dnode,
const char *uuid_prefix,
size_t uuid_prefix_len)
{
void *handle = NULL;
struct deptree_node *child;
struct dm_info newinfo;
const char *name;
/* Preload children first */
while ((child = dm_deptree_next_child(&handle, dnode, 0))) {
/* Skip existing non-device-mapper devices */
if (!child->info.exists && child->info.major)
continue;
/* Ignore if it doesn't belong to this VG */
if (uuid_prefix && child->info.exists &&
strncmp(child->uuid, uuid_prefix, uuid_prefix_len))
continue;
if (dm_deptree_node_num_children(child, 0))
dm_deptree_preload_children(child, uuid_prefix, uuid_prefix_len);
if (!(name = dm_deptree_node_get_name(child))) {
stack;
continue;
}
/* FIXME Cope if name exists with no uuid? */
if (!child->info.exists) {
if (!_create_node(child)) {
stack;
return 0;
}
}
if (!child->info.inactive_table && child->props.segment_count) {
if (!_load_node(child)) {
stack;
return 0;
}
}
/* Resume device immediately if it has parents */
if (!dm_deptree_node_num_children(child, 1))
continue;
if (!_resume_node(name, child->info.major, child->info.minor, &newinfo)) {
log_error("Unable to resume %s (%" PRIu32
":%" PRIu32 ")", name, child->info.major,
child->info.minor);
continue;
}
/* Update cached info */
child->info = newinfo;
}
handle = NULL;
return 1;
}
/*
* Returns 1 if unsure.
*/
int dm_deptree_children_use_uuid(struct deptree_node *dnode,
const char *uuid_prefix,
size_t uuid_prefix_len)
{
void *handle = NULL;
struct deptree_node *child = dnode;
const char *uuid;
while ((child = dm_deptree_next_child(&handle, dnode, 0))) {
if (!(uuid = dm_deptree_node_get_uuid(child))) {
log_error("Failed to get uuid for deptree node.");
return 1;
}
if (!strncmp(uuid, uuid_prefix, uuid_prefix_len))
return 1;
if (dm_deptree_node_num_children(child, 0))
dm_deptree_children_use_uuid(child, uuid_prefix, uuid_prefix_len);
}
return 0;
}
/*
* Target functions
*/
static struct load_segment *_add_segment(struct deptree_node *dnode, unsigned type, uint64_t size)
{
struct load_segment *seg;
if (!(seg = dm_pool_zalloc(dnode->deptree->mem, sizeof(*seg)))) {
log_error("deptree node segment allocation failed");
return NULL;
}
seg->type = type;
seg->size = size;
seg->area_count = 0;
list_init(&seg->areas);
seg->stripe_size = 0;
seg->persistent = 0;
seg->chunk_size = 0;
seg->cow = NULL;
seg->origin = NULL;
list_add(&dnode->props.segs, &seg->list);
dnode->props.segment_count++;
return seg;
}
int dm_deptree_node_add_snapshot_origin_target(struct deptree_node *dnode,
uint64_t size,
const char *origin_uuid)
{
struct load_segment *seg;
struct deptree_node *origin_node;
if (!(seg = _add_segment(dnode, SEG_SNAPSHOT_ORIGIN, size))) {
stack;
return 0;
}
if (!(origin_node = dm_deptree_find_node_by_uuid(dnode->deptree, origin_uuid))) {
log_error("Couldn't find snapshot origin uuid %s.", origin_uuid);
return 0;
}
seg->origin = origin_node;
if (!_link_tree_nodes(dnode, origin_node)) {
stack;
return 0;
}
return 1;
}
int dm_deptree_node_add_snapshot_target(struct deptree_node *node,
uint64_t size,
const char *origin_uuid,
const char *cow_uuid,
int persistent,
uint32_t chunk_size)
{
struct load_segment *seg;
struct deptree_node *origin_node, *cow_node;
if (!(seg = _add_segment(node, SEG_SNAPSHOT, size))) {
stack;
return 0;
}
if (!(origin_node = dm_deptree_find_node_by_uuid(node->deptree, origin_uuid))) {
log_error("Couldn't find snapshot origin uuid %s.", origin_uuid);
return 0;
}
seg->origin = origin_node;
if (!_link_tree_nodes(node, origin_node)) {
stack;
return 0;
}
if (!(cow_node = dm_deptree_find_node_by_uuid(node->deptree, cow_uuid))) {
log_error("Couldn't find snapshot origin uuid %s.", cow_uuid);
return 0;
}
seg->cow = cow_node;
if (!_link_tree_nodes(node, cow_node)) {
stack;
return 0;
}
seg->persistent = persistent ? 1 : 0;
seg->chunk_size = chunk_size;
return 1;
}
int dm_deptree_node_add_error_target(struct deptree_node *node,
uint64_t size)
{
if (!_add_segment(node, SEG_ERROR, size)) {
stack;
return 0;
}
return 1;
}
int dm_deptree_node_add_zero_target(struct deptree_node *node,
uint64_t size)
{
if (!_add_segment(node, SEG_ZERO, size)) {
stack;
return 0;
}
return 1;
}
int dm_deptree_node_add_linear_target(struct deptree_node *node,
uint64_t size)
{
if (!_add_segment(node, SEG_LINEAR, size)) {
stack;
return 0;
}
return 1;
}
int dm_deptree_node_add_striped_target(struct deptree_node *node,
uint64_t size,
uint32_t stripe_size)
{
struct load_segment *seg;
if (!(seg = _add_segment(node, SEG_STRIPED, size))) {
stack;
return 0;
}
seg->stripe_size = stripe_size;
return 1;
}
int dm_deptree_node_add_mirror_target_log(struct deptree_node *node,
uint32_t region_size,
unsigned clustered,
const char *log_uuid,
unsigned area_count)
{
struct deptree_node *log_node;
struct load_segment *seg;
if (!node->props.segment_count) {
log_error("Internal error: Attempt to add target area to missing segment.");
return 0;
}
seg = list_item(list_last(&node->props.segs), struct load_segment);
if (!(log_node = dm_deptree_find_node_by_uuid(node->deptree, log_uuid))) {
log_error("Couldn't find snapshot log uuid %s.", log_uuid);
return 0;
}
seg->log = log_node;
if (!_link_tree_nodes(node, log_node)) {
stack;
return 0;
}
seg->region_size = region_size;
seg->clustered = clustered;
seg->mirror_area_count = area_count;
return 1;
}
int dm_deptree_node_add_mirror_target(struct deptree_node *node,
uint64_t size)
{
struct load_segment *seg;
if (!(seg = _add_segment(node, SEG_MIRRORED, size))) {
stack;
return 0;
}
return 1;
}
static int _add_area(struct deptree_node *node, struct load_segment *seg, struct deptree_node *dev_node, uint64_t offset)
{
struct seg_area *area;
if (!(area = dm_pool_zalloc(node->deptree->mem, sizeof (*area)))) {
log_error("Failed to allocate target segment area.");
return 0;
}
area->dev_node = dev_node;
area->offset = offset;
list_add(&seg->areas, &area->list);
seg->area_count++;
return 1;
}
int dm_deptree_node_add_target_area(struct deptree_node *node,
const char *dev_name,
const char *uuid,
uint64_t offset)
{
struct load_segment *seg;
struct stat info;
struct deptree_node *dev_node;
if ((!dev_name || !*dev_name) && (!uuid || !*uuid)) {
log_error("dm_deptree_node_add_target_area called without device");
return 0;
}
if (uuid) {
if (!(dev_node = dm_deptree_find_node_by_uuid(node->deptree, uuid))) {
log_error("Couldn't find area uuid %s.", uuid);
return 0;
}
if (!_link_tree_nodes(node, dev_node)) {
stack;
return 0;
}
} else {
if (stat(dev_name, &info) < 0) {
log_error("Device %s not found.", dev_name);
return 0;
}
if (!S_ISBLK(info.st_mode)) {
log_error("Device %s is not a block device.", dev_name);
return 0;
}
/* FIXME Check correct macro use */
if (!(dev_node = _add_dev(node->deptree, node, MAJOR(info.st_rdev), MINOR(info.st_rdev)))) {
stack;
return 0;
}
}
if (!node->props.segment_count) {
log_error("Internal error: Attempt to add target area to missing segment.");
return 0;
}
seg = list_item(list_last(&node->props.segs), struct load_segment);
if (!_add_area(node, seg, dev_node, offset)) {
stack;
return 0;
}
return 1;
2005-10-25 23:09:41 +04:00
}