1
0
mirror of git://sourceware.org/git/lvm2.git synced 2024-10-27 18:55:19 +03:00
lvm2/libdm/libdm-common.c

597 lines
12 KiB
C
Raw Normal View History

/*
2004-03-30 23:08:57 +04:00
* Copyright (C) 2001-2004 Sistina Software, Inc. All rights reserved.
* Copyright (C) 2004-2007 Red Hat, Inc. All rights reserved.
*
2004-03-30 23:08:57 +04:00
* 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"
2003-07-02 01:20:58 +04:00
#include "list.h"
#include "kdev_t.h"
#include <stdarg.h>
#include <sys/param.h>
#include <linux/dm-ioctl.h>
2004-04-06 22:54:00 +04:00
#ifdef HAVE_SELINUX
# include <selinux/selinux.h>
#endif
#define DEV_DIR "/dev/"
static char _dm_dir[PATH_MAX] = DEV_DIR DM_DIR;
2003-01-22 00:25:11 +03:00
static int _verbose = 0;
/*
* Library users can provide their own logging
* function.
*/
static void _default_log(int level, const char *file __attribute((unused)),
int line __attribute((unused)), const char *f, ...)
{
va_list ap;
int use_stderr = level & _LOG_STDERR;
level &= ~_LOG_STDERR;
2003-01-22 00:25:11 +03:00
if (level > _LOG_WARN && !_verbose)
return;
va_start(ap, f);
2003-01-22 00:25:11 +03:00
if (level < _LOG_WARN)
vfprintf(stderr, f, ap);
2003-01-22 00:25:11 +03:00
else
vfprintf(use_stderr ? stderr : stdout, f, ap);
va_end(ap);
2003-01-22 00:25:11 +03:00
if (level < _LOG_WARN)
fprintf(stderr, "\n");
else
fprintf(use_stderr ? stderr : stdout, "\n");
}
dm_log_fn dm_log = _default_log;
void dm_log_init(dm_log_fn fn)
{
if (fn)
dm_log = fn;
else
dm_log = _default_log;
}
2003-01-22 00:25:11 +03:00
void dm_log_init_verbose(int level)
{
_verbose = level;
}
static void _build_dev_path(char *buffer, size_t len, const char *dev_name)
{
/* If there's a /, assume caller knows what they're doing */
if (strchr(dev_name, '/'))
snprintf(buffer, len, "%s", dev_name);
else
snprintf(buffer, len, "%s/%s", _dm_dir, dev_name);
}
int dm_get_library_version(char *version, size_t size)
{
strncpy(version, DM_LIB_VERSION, size);
return 1;
}
struct dm_task *dm_task_create(int type)
{
2005-10-17 02:57:20 +04:00
struct dm_task *dmt = dm_malloc(sizeof(*dmt));
if (!dmt) {
log_error("dm_task_create: malloc(%" PRIsize_t ") failed",
sizeof(*dmt));
return NULL;
}
2006-05-10 20:23:41 +04:00
if (!dm_check_version()) {
dm_free(dmt);
return NULL;
2006-05-10 20:23:41 +04:00
}
memset(dmt, 0, sizeof(*dmt));
dmt->type = type;
dmt->minor = -1;
2003-04-02 23:03:00 +04:00
dmt->major = -1;
dmt->uid = DEVICE_UID;
dmt->gid = DEVICE_GID;
dmt->mode = DEVICE_MODE;
2005-09-20 20:39:12 +04:00
dmt->no_open_count = 0;
dmt->read_ahead = DM_READ_AHEAD_AUTO;
dmt->read_ahead_flags = 0;
2003-01-22 00:25:11 +03:00
return dmt;
}
int dm_task_set_name(struct dm_task *dmt, const char *name)
{
char *pos;
char path[PATH_MAX];
struct stat st1, st2;
if (dmt->dev_name) {
2005-10-17 02:57:20 +04:00
dm_free(dmt->dev_name);
dmt->dev_name = NULL;
}
/* If path was supplied, remove it if it points to the same device
* as its last component.
*/
if ((pos = strrchr(name, '/'))) {
snprintf(path, sizeof(path), "%s/%s", _dm_dir, pos + 1);
if (stat(name, &st1) || stat(path, &st2) ||
!(st1.st_dev == st2.st_dev)) {
log_error("dm_task_set_name: Device %s not found",
name);
return 0;
}
name = pos + 1;
}
2005-10-17 02:57:20 +04:00
if (!(dmt->dev_name = dm_strdup(name))) {
2002-01-18 22:37:26 +03:00
log_error("dm_task_set_name: strdup(%s) failed", name);
return 0;
}
return 1;
}
int dm_task_set_uuid(struct dm_task *dmt, const char *uuid)
{
if (dmt->uuid) {
2005-10-17 02:57:20 +04:00
dm_free(dmt->uuid);
dmt->uuid = NULL;
}
2005-10-17 02:57:20 +04:00
if (!(dmt->uuid = dm_strdup(uuid))) {
log_error("dm_task_set_uuid: strdup(%s) failed", uuid);
return 0;
}
return 1;
}
2003-04-02 23:03:00 +04:00
int dm_task_set_major(struct dm_task *dmt, int major)
{
dmt->major = major;
return 1;
}
int dm_task_set_minor(struct dm_task *dmt, int minor)
{
dmt->minor = minor;
return 1;
}
int dm_task_set_uid(struct dm_task *dmt, uid_t uid)
{
dmt->uid = uid;
return 1;
}
int dm_task_set_gid(struct dm_task *dmt, gid_t gid)
{
dmt->gid = gid;
return 1;
}
int dm_task_set_mode(struct dm_task *dmt, mode_t mode)
{
dmt->mode = mode;
return 1;
}
int dm_task_add_target(struct dm_task *dmt, uint64_t start, uint64_t size,
const char *ttype, const char *params)
{
struct target *t = create_target(start, size, ttype, params);
if (!t)
return 0;
if (!dmt->head)
dmt->head = dmt->tail = t;
else {
dmt->tail->next = t;
dmt->tail = t;
}
return 1;
}
2004-04-06 22:54:00 +04:00
#ifdef HAVE_SELINUX
2005-10-25 21:30:00 +04:00
int dm_set_selinux_context(const char *path, mode_t mode)
2004-04-06 22:54:00 +04:00
{
security_context_t scontext;
if (is_selinux_enabled() <= 0)
2004-07-03 22:14:12 +04:00
return 1;
2004-04-06 22:54:00 +04:00
2005-06-13 17:11:48 +04:00
if (matchpathcon(path, mode, &scontext) < 0) {
log_error("%s: matchpathcon %07o failed: %s", path, mode,
strerror(errno));
2004-04-06 22:54:00 +04:00
return 0;
}
2005-06-13 17:11:48 +04:00
log_debug("Setting SELinux context for %s to %s.", path, scontext);
if ((lsetfilecon(path, scontext) < 0) && (errno != ENOTSUP)) {
log_sys_error("lsetfilecon", path);
2005-06-13 17:11:48 +04:00
freecon(scontext);
2004-04-06 22:54:00 +04:00
return 0;
}
2005-06-13 17:11:48 +04:00
freecon(scontext);
2004-04-06 22:54:00 +04:00
return 1;
}
#endif
static int _add_dev_node(const char *dev_name, uint32_t major, uint32_t minor,
uid_t uid, gid_t gid, mode_t mode)
{
char path[PATH_MAX];
struct stat info;
2003-01-22 00:25:11 +03:00
dev_t dev = MKDEV(major, minor);
mode_t old_mask;
_build_dev_path(path, sizeof(path), dev_name);
if (stat(path, &info) >= 0) {
if (!S_ISBLK(info.st_mode)) {
log_error("A non-block device file at '%s' "
"is already present", path);
return 0;
}
/* If right inode already exists we don't touch uid etc. */
if (info.st_rdev == dev)
return 1;
if (unlink(path) < 0) {
log_error("Unable to unlink device node for '%s'",
dev_name);
return 0;
}
}
old_mask = umask(0);
if (mknod(path, S_IFBLK | mode, dev) < 0) {
log_error("Unable to make device node for '%s'", dev_name);
return 0;
}
umask(old_mask);
if (chown(path, uid, gid) < 0) {
log_sys_error("chown", path);
return 0;
}
2004-04-06 22:54:00 +04:00
#ifdef HAVE_SELINUX
2005-10-25 21:30:00 +04:00
if (!dm_set_selinux_context(path, S_IFBLK))
2004-04-06 22:54:00 +04:00
return 0;
#endif
return 1;
}
2003-07-02 01:20:58 +04:00
static int _rename_dev_node(const char *old_name, const char *new_name)
{
char oldpath[PATH_MAX];
char newpath[PATH_MAX];
struct stat info;
_build_dev_path(oldpath, sizeof(oldpath), old_name);
_build_dev_path(newpath, sizeof(newpath), new_name);
if (stat(newpath, &info) == 0) {
if (!S_ISBLK(info.st_mode)) {
log_error("A non-block device file at '%s' "
"is already present", newpath);
return 0;
}
if (unlink(newpath) < 0) {
2003-01-22 00:25:11 +03:00
if (errno == EPERM) {
/* devfs, entry has already been renamed */
return 1;
}
log_error("Unable to unlink device node for '%s'",
new_name);
return 0;
}
}
if (rename(oldpath, newpath) < 0) {
log_error("Unable to rename device node from '%s' to '%s'",
old_name, new_name);
return 0;
}
return 1;
}
2003-07-02 01:20:58 +04:00
static int _rm_dev_node(const char *dev_name)
{
char path[PATH_MAX];
struct stat info;
_build_dev_path(path, sizeof(path), dev_name);
if (stat(path, &info) < 0)
return 1;
if (unlink(path) < 0) {
log_error("Unable to unlink device node for '%s'", dev_name);
return 0;
}
return 1;
}
2007-11-30 17:59:57 +03:00
int get_dev_node_read_ahead(const char *dev_name, uint32_t *read_ahead)
{
*read_ahead = 0;
return 1;
}
static int _set_read_ahead(const char *dev_name, uint32_t read_ahead)
{
return 1;
}
static int _set_dev_node_read_ahead(const char *dev_name, uint32_t read_ahead,
uint32_t read_ahead_flags)
{
uint32_t current_read_ahead;
if (read_ahead == DM_READ_AHEAD_AUTO)
return 1;
if (read_ahead == DM_READ_AHEAD_NONE)
read_ahead = 0;
if (read_ahead_flags & DM_READ_AHEAD_MINIMUM_FLAG) {
if (!get_dev_node_read_ahead(dev_name, &current_read_ahead))
return_0;
if (current_read_ahead > read_ahead) {
log_debug("%s: read ahead %" PRIu32
" below minimum of %" PRIu32,
dev_name, current_read_ahead, read_ahead);
return 1;
}
}
return _set_read_ahead(dev_name, read_ahead);
}
2003-07-02 01:20:58 +04:00
typedef enum {
NODE_ADD,
NODE_DEL,
2007-11-30 17:59:57 +03:00
NODE_RENAME,
NODE_READ_AHEAD
2003-07-02 01:20:58 +04:00
} node_op_t;
static int _do_node_op(node_op_t type, const char *dev_name, uint32_t major,
uint32_t minor, uid_t uid, gid_t gid, mode_t mode,
2007-11-30 17:59:57 +03:00
const char *old_name, uint32_t read_ahead,
uint32_t read_ahead_flags)
2003-07-02 01:20:58 +04:00
{
switch (type) {
case NODE_ADD:
return _add_dev_node(dev_name, major, minor, uid, gid, mode);
2003-07-02 01:20:58 +04:00
case NODE_DEL:
return _rm_dev_node(dev_name);
case NODE_RENAME:
return _rename_dev_node(old_name, dev_name);
2007-11-30 17:59:57 +03:00
case NODE_READ_AHEAD:
return _set_dev_node_read_ahead(dev_name, read_ahead,
read_ahead_flags);
2003-07-02 01:20:58 +04:00
}
return 1;
}
static LIST_INIT(_node_ops);
struct node_op_parms {
struct list list;
node_op_t type;
char *dev_name;
uint32_t major;
uint32_t minor;
uid_t uid;
gid_t gid;
mode_t mode;
2007-11-30 17:59:57 +03:00
uint32_t read_ahead;
uint32_t read_ahead_flags;
2003-07-02 01:20:58 +04:00
char *old_name;
char names[0];
};
static void _store_str(char **pos, char **ptr, const char *str)
{
strcpy(*pos, str);
*ptr = *pos;
*pos += strlen(*ptr) + 1;
}
static int _stack_node_op(node_op_t type, const char *dev_name, uint32_t major,
uint32_t minor, uid_t uid, gid_t gid, mode_t mode,
2007-11-30 17:59:57 +03:00
const char *old_name, uint32_t read_ahead,
uint32_t read_ahead_flags)
2003-07-02 01:20:58 +04:00
{
struct node_op_parms *nop;
size_t len = strlen(dev_name) + strlen(old_name) + 2;
char *pos;
2005-10-17 02:57:20 +04:00
if (!(nop = dm_malloc(sizeof(*nop) + len))) {
2003-07-02 01:20:58 +04:00
log_error("Insufficient memory to stack mknod operation");
return 0;
}
pos = nop->names;
nop->type = type;
nop->major = major;
nop->minor = minor;
nop->uid = uid;
nop->gid = gid;
nop->mode = mode;
2007-11-30 17:59:57 +03:00
nop->read_ahead = read_ahead;
nop->read_ahead_flags = read_ahead_flags;
2003-07-02 01:20:58 +04:00
_store_str(&pos, &nop->dev_name, dev_name);
_store_str(&pos, &nop->old_name, old_name);
list_add(&_node_ops, &nop->list);
return 1;
}
static void _pop_node_ops(void)
{
struct list *noph, *nopht;
struct node_op_parms *nop;
list_iterate_safe(noph, nopht, &_node_ops) {
nop = list_item(noph, struct node_op_parms);
_do_node_op(nop->type, nop->dev_name, nop->major, nop->minor,
2007-11-30 17:59:57 +03:00
nop->uid, nop->gid, nop->mode, nop->old_name,
nop->read_ahead, nop->read_ahead_flags);
2003-07-02 01:20:58 +04:00
list_del(&nop->list);
2005-10-17 02:57:20 +04:00
dm_free(nop);
2003-07-02 01:20:58 +04:00
}
}
int add_dev_node(const char *dev_name, uint32_t major, uint32_t minor,
uid_t uid, gid_t gid, mode_t mode)
2003-07-02 01:20:58 +04:00
{
return _stack_node_op(NODE_ADD, dev_name, major, minor, uid, gid, mode,
2007-11-30 17:59:57 +03:00
"", 0, 0);
2003-07-02 01:20:58 +04:00
}
int rename_dev_node(const char *old_name, const char *new_name)
{
2007-11-30 17:59:57 +03:00
return _stack_node_op(NODE_RENAME, new_name, 0, 0, 0, 0, 0, old_name,
0, 0);
2003-07-02 01:20:58 +04:00
}
int rm_dev_node(const char *dev_name)
{
2007-11-30 17:59:57 +03:00
return _stack_node_op(NODE_DEL, dev_name, 0, 0, 0, 0, 0, "", 0, 0);
}
int set_dev_node_read_ahead(const char *dev_name, uint32_t read_ahead,
uint32_t read_ahead_flags)
{
if (read_ahead == DM_READ_AHEAD_AUTO)
return 1;
return _stack_node_op(NODE_READ_AHEAD, dev_name, 0, 0, 0, 0, 0, "",
read_ahead, read_ahead_flags);
2003-07-02 01:20:58 +04:00
}
void update_devs(void)
{
_pop_node_ops();
}
int dm_set_dev_dir(const char *dev_dir)
{
size_t len;
const char *slash;
if (*dev_dir != '/') {
log_debug("Invalid dev_dir value, %s: "
"not an absolute name.", dev_dir);
return 0;
}
len = strlen(dev_dir);
slash = dev_dir[len-1] == '/' ? "" : "/";
if (snprintf(_dm_dir, sizeof _dm_dir, "%s%s%s", dev_dir, slash, DM_DIR)
>= sizeof _dm_dir) {
log_debug("Invalid dev_dir value, %s: name too long.", dev_dir);
return 0;
}
return 1;
}
const char *dm_dir(void)
{
return _dm_dir;
}
2005-10-17 02:57:20 +04:00
int dm_mknodes(const char *name)
{
struct dm_task *dmt;
int r = 0;
if (!(dmt = dm_task_create(DM_DEVICE_MKNODES)))
return 0;
if (name && !dm_task_set_name(dmt, name))
goto out;
if (!dm_task_no_open_count(dmt))
goto out;
r = dm_task_run(dmt);
out:
dm_task_destroy(dmt);
return r;
}
2005-10-17 22:05:39 +04:00
int dm_driver_version(char *version, size_t size)
{
struct dm_task *dmt;
int r = 0;
if (!(dmt = dm_task_create(DM_DEVICE_VERSION)))
return 0;
if (!dm_task_run(dmt))
log_error("Failed to get driver version");
if (!dm_task_get_driver_version(dmt, version, size))
goto out;
r = 1;
out:
dm_task_destroy(dmt);
return r;
}