mirror of
git://sourceware.org/git/lvm2.git
synced 2024-12-22 17:35:59 +03:00
3395d72881
_exit doesn't. If there were some open files, an error in exec and subsequent exit() would cause the buffers to be flushed twice. Example: #include <stdio.h> #include <stdlib.h> #include <unistd.h> #include <sys/wait.h> int main() { printf("buu"); if (!fork()) { execl("/bin/true-not-exists", "/bin/true", NULL); exit(1); } wait(NULL); return 0; } Signed-off-by: Mikulas Patocka <mpatocka@redhat.com --- daemons/dmeventd/libdevmapper-event.c | 2 +- lib/misc/lvm-exec.c | 2 +- test/harness.c | 3 ++- tools/dmsetup.c | 2 +- 4 files changed, 5 insertions(+), 4 deletions(-)
816 lines
17 KiB
C
816 lines
17 KiB
C
/*
|
|
* Copyright (C) 2005-2007 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 "dmlib.h"
|
|
#include "libdevmapper-event.h"
|
|
//#include "libmultilog.h"
|
|
#include "dmeventd.h"
|
|
|
|
#include <errno.h>
|
|
#include <fcntl.h>
|
|
#include <stdio.h>
|
|
#include <stdint.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <sys/file.h>
|
|
#include <sys/types.h>
|
|
#include <sys/stat.h>
|
|
#include <unistd.h>
|
|
#include <sys/wait.h>
|
|
#include <arpa/inet.h> /* for htonl, ntohl */
|
|
|
|
static int _sequence_nr = 0;
|
|
|
|
struct dm_event_handler {
|
|
char *dso;
|
|
|
|
char *dev_name;
|
|
|
|
char *uuid;
|
|
int major;
|
|
int minor;
|
|
uint32_t timeout;
|
|
|
|
enum dm_event_mask mask;
|
|
};
|
|
|
|
static void _dm_event_handler_clear_dev_info(struct dm_event_handler *dmevh)
|
|
{
|
|
if (dmevh->dev_name)
|
|
dm_free(dmevh->dev_name);
|
|
if (dmevh->uuid)
|
|
dm_free(dmevh->uuid);
|
|
dmevh->dev_name = dmevh->uuid = NULL;
|
|
dmevh->major = dmevh->minor = 0;
|
|
}
|
|
|
|
struct dm_event_handler *dm_event_handler_create(void)
|
|
{
|
|
struct dm_event_handler *dmevh = NULL;
|
|
|
|
if (!(dmevh = dm_malloc(sizeof(*dmevh))))
|
|
return NULL;
|
|
|
|
dmevh->dso = dmevh->dev_name = dmevh->uuid = NULL;
|
|
dmevh->major = dmevh->minor = 0;
|
|
dmevh->mask = 0;
|
|
dmevh->timeout = 0;
|
|
|
|
return dmevh;
|
|
}
|
|
|
|
void dm_event_handler_destroy(struct dm_event_handler *dmevh)
|
|
{
|
|
_dm_event_handler_clear_dev_info(dmevh);
|
|
if (dmevh->dso)
|
|
dm_free(dmevh->dso);
|
|
dm_free(dmevh);
|
|
}
|
|
|
|
int dm_event_handler_set_dso(struct dm_event_handler *dmevh, const char *path)
|
|
{
|
|
if (!path) /* noop */
|
|
return 0;
|
|
if (dmevh->dso)
|
|
dm_free(dmevh->dso);
|
|
|
|
dmevh->dso = dm_strdup(path);
|
|
if (!dmevh->dso)
|
|
return -ENOMEM;
|
|
|
|
return 0;
|
|
}
|
|
|
|
int dm_event_handler_set_dev_name(struct dm_event_handler *dmevh, const char *dev_name)
|
|
{
|
|
if (!dev_name)
|
|
return 0;
|
|
|
|
_dm_event_handler_clear_dev_info(dmevh);
|
|
|
|
dmevh->dev_name = dm_strdup(dev_name);
|
|
if (!dmevh->dev_name)
|
|
return -ENOMEM;
|
|
return 0;
|
|
}
|
|
|
|
int dm_event_handler_set_uuid(struct dm_event_handler *dmevh, const char *uuid)
|
|
{
|
|
if (!uuid)
|
|
return 0;
|
|
|
|
_dm_event_handler_clear_dev_info(dmevh);
|
|
|
|
dmevh->uuid = dm_strdup(uuid);
|
|
if (!dmevh->dev_name)
|
|
return -ENOMEM;
|
|
return 0;
|
|
}
|
|
|
|
void dm_event_handler_set_major(struct dm_event_handler *dmevh, int major)
|
|
{
|
|
int minor = dmevh->minor;
|
|
|
|
_dm_event_handler_clear_dev_info(dmevh);
|
|
|
|
dmevh->major = major;
|
|
dmevh->minor = minor;
|
|
}
|
|
|
|
void dm_event_handler_set_minor(struct dm_event_handler *dmevh, int minor)
|
|
{
|
|
int major = dmevh->major;
|
|
|
|
_dm_event_handler_clear_dev_info(dmevh);
|
|
|
|
dmevh->major = major;
|
|
dmevh->minor = minor;
|
|
}
|
|
|
|
void dm_event_handler_set_event_mask(struct dm_event_handler *dmevh,
|
|
enum dm_event_mask evmask)
|
|
{
|
|
dmevh->mask = evmask;
|
|
}
|
|
|
|
void dm_event_handler_set_timeout(struct dm_event_handler *dmevh, int timeout)
|
|
{
|
|
dmevh->timeout = timeout;
|
|
}
|
|
|
|
const char *dm_event_handler_get_dso(const struct dm_event_handler *dmevh)
|
|
{
|
|
return dmevh->dso;
|
|
}
|
|
|
|
const char *dm_event_handler_get_dev_name(const struct dm_event_handler *dmevh)
|
|
{
|
|
return dmevh->dev_name;
|
|
}
|
|
|
|
const char *dm_event_handler_get_uuid(const struct dm_event_handler *dmevh)
|
|
{
|
|
return dmevh->uuid;
|
|
}
|
|
|
|
int dm_event_handler_get_major(const struct dm_event_handler *dmevh)
|
|
{
|
|
return dmevh->major;
|
|
}
|
|
|
|
int dm_event_handler_get_minor(const struct dm_event_handler *dmevh)
|
|
{
|
|
return dmevh->minor;
|
|
}
|
|
|
|
int dm_event_handler_get_timeout(const struct dm_event_handler *dmevh)
|
|
{
|
|
return dmevh->timeout;
|
|
}
|
|
|
|
enum dm_event_mask dm_event_handler_get_event_mask(const struct dm_event_handler *dmevh)
|
|
{
|
|
return dmevh->mask;
|
|
}
|
|
|
|
static int _check_message_id(struct dm_event_daemon_message *msg)
|
|
{
|
|
int pid, seq_nr;
|
|
|
|
if ((sscanf(msg->data, "%d:%d", &pid, &seq_nr) != 2) ||
|
|
(pid != getpid()) || (seq_nr != _sequence_nr)) {
|
|
log_error("Ignoring out-of-sequence reply from dmeventd. "
|
|
"Expected %d:%d but received %s", getpid(),
|
|
_sequence_nr, msg->data);
|
|
return 0;
|
|
}
|
|
|
|
return 1;
|
|
}
|
|
|
|
/*
|
|
* daemon_read
|
|
* @fifos
|
|
* @msg
|
|
*
|
|
* Read message from daemon.
|
|
*
|
|
* Returns: 0 on failure, 1 on success
|
|
*/
|
|
static int _daemon_read(struct dm_event_fifos *fifos,
|
|
struct dm_event_daemon_message *msg)
|
|
{
|
|
unsigned bytes = 0;
|
|
int ret, i;
|
|
fd_set fds;
|
|
struct timeval tval = { 0, 0 };
|
|
size_t size = 2 * sizeof(uint32_t); /* status + size */
|
|
char *buf = alloca(size);
|
|
int header = 1;
|
|
|
|
while (bytes < size) {
|
|
for (i = 0, ret = 0; (i < 20) && (ret < 1); i++) {
|
|
/* Watch daemon read FIFO for input. */
|
|
FD_ZERO(&fds);
|
|
FD_SET(fifos->server, &fds);
|
|
tval.tv_sec = 1;
|
|
ret = select(fifos->server + 1, &fds, NULL, NULL,
|
|
&tval);
|
|
if (ret < 0 && errno != EINTR) {
|
|
log_error("Unable to read from event server");
|
|
return 0;
|
|
}
|
|
}
|
|
if (ret < 1) {
|
|
log_error("Unable to read from event server.");
|
|
return 0;
|
|
}
|
|
|
|
ret = read(fifos->server, buf + bytes, size);
|
|
if (ret < 0) {
|
|
if ((errno == EINTR) || (errno == EAGAIN))
|
|
continue;
|
|
else {
|
|
log_error("Unable to read from event server.");
|
|
return 0;
|
|
}
|
|
}
|
|
|
|
bytes += ret;
|
|
if (bytes == 2 * sizeof(uint32_t) && header) {
|
|
msg->cmd = ntohl(*((uint32_t *)buf));
|
|
msg->size = ntohl(*((uint32_t *)buf + 1));
|
|
buf = msg->data = dm_malloc(msg->size);
|
|
size = msg->size;
|
|
bytes = 0;
|
|
header = 0;
|
|
}
|
|
}
|
|
|
|
if (bytes != size) {
|
|
if (msg->data)
|
|
dm_free(msg->data);
|
|
msg->data = NULL;
|
|
}
|
|
|
|
return bytes == size;
|
|
}
|
|
|
|
/* Write message to daemon. */
|
|
static int _daemon_write(struct dm_event_fifos *fifos,
|
|
struct dm_event_daemon_message *msg)
|
|
{
|
|
unsigned bytes = 0;
|
|
int ret = 0;
|
|
fd_set fds;
|
|
|
|
size_t size = 2 * sizeof(uint32_t) + msg->size;
|
|
char *buf = alloca(size);
|
|
char drainbuf[128];
|
|
struct timeval tval = { 0, 0 };
|
|
|
|
*((uint32_t *)buf) = htonl(msg->cmd);
|
|
*((uint32_t *)buf + 1) = htonl(msg->size);
|
|
memcpy(buf + 2 * sizeof(uint32_t), msg->data, msg->size);
|
|
|
|
/* drain the answer fifo */
|
|
while (1) {
|
|
FD_ZERO(&fds);
|
|
FD_SET(fifos->server, &fds);
|
|
tval.tv_usec = 100;
|
|
ret = select(fifos->server + 1, &fds, NULL, NULL, &tval);
|
|
if ((ret < 0) && (errno != EINTR)) {
|
|
log_error("Unable to talk to event daemon");
|
|
return 0;
|
|
}
|
|
if (ret == 0)
|
|
break;
|
|
read(fifos->server, drainbuf, 127);
|
|
}
|
|
|
|
while (bytes < size) {
|
|
do {
|
|
/* Watch daemon write FIFO to be ready for output. */
|
|
FD_ZERO(&fds);
|
|
FD_SET(fifos->client, &fds);
|
|
ret = select(fifos->client + 1, NULL, &fds, NULL, NULL);
|
|
if ((ret < 0) && (errno != EINTR)) {
|
|
log_error("Unable to talk to event daemon");
|
|
return 0;
|
|
}
|
|
} while (ret < 1);
|
|
|
|
ret = write(fifos->client, ((char *) buf) + bytes,
|
|
size - bytes);
|
|
if (ret < 0) {
|
|
if ((errno == EINTR) || (errno == EAGAIN))
|
|
continue;
|
|
else {
|
|
log_error("Unable to talk to event daemon");
|
|
return 0;
|
|
}
|
|
}
|
|
|
|
bytes += ret;
|
|
}
|
|
|
|
return bytes == size;
|
|
}
|
|
|
|
static int _daemon_talk(struct dm_event_fifos *fifos,
|
|
struct dm_event_daemon_message *msg, int cmd,
|
|
const char *dso_name, const char *dev_name,
|
|
enum dm_event_mask evmask, uint32_t timeout)
|
|
{
|
|
const char *dso = dso_name ? dso_name : "";
|
|
const char *dev = dev_name ? dev_name : "";
|
|
const char *fmt = "%d:%d %s %s %u %" PRIu32;
|
|
int msg_size;
|
|
memset(msg, 0, sizeof(*msg));
|
|
|
|
/*
|
|
* Set command and pack the arguments
|
|
* into ASCII message string.
|
|
*/
|
|
msg->cmd = cmd;
|
|
if (cmd == DM_EVENT_CMD_HELLO)
|
|
fmt = "%d:%d HELLO";
|
|
if ((msg_size = dm_asprintf(&(msg->data), fmt, getpid(), _sequence_nr,
|
|
dso, dev, evmask, timeout)) < 0) {
|
|
log_error("_daemon_talk: message allocation failed");
|
|
return -ENOMEM;
|
|
}
|
|
msg->size = msg_size;
|
|
|
|
/*
|
|
* Write command and message to and
|
|
* read status return code from daemon.
|
|
*/
|
|
if (!_daemon_write(fifos, msg)) {
|
|
stack;
|
|
dm_free(msg->data);
|
|
msg->data = 0;
|
|
return -EIO;
|
|
}
|
|
|
|
do {
|
|
|
|
if (msg->data)
|
|
dm_free(msg->data);
|
|
msg->data = 0;
|
|
|
|
if (!_daemon_read(fifos, msg)) {
|
|
stack;
|
|
return -EIO;
|
|
}
|
|
} while (!_check_message_id(msg));
|
|
|
|
_sequence_nr++;
|
|
|
|
return (int32_t) msg->cmd;
|
|
}
|
|
|
|
/*
|
|
* start_daemon
|
|
*
|
|
* This function forks off a process (dmeventd) that will handle
|
|
* the events. I am currently test opening one of the fifos to
|
|
* ensure that the daemon is running and listening... I thought
|
|
* this would be less expensive than fork/exec'ing every time.
|
|
* Perhaps there is an even quicker/better way (no, checking the
|
|
* lock file is _not_ a better way).
|
|
*
|
|
* Returns: 1 on success, 0 otherwise
|
|
*/
|
|
static int _start_daemon(struct dm_event_fifos *fifos)
|
|
{
|
|
int pid, ret = 0;
|
|
int status;
|
|
struct stat statbuf;
|
|
|
|
if (stat(fifos->client_path, &statbuf))
|
|
goto start_server;
|
|
|
|
if (!S_ISFIFO(statbuf.st_mode)) {
|
|
log_error("%s is not a fifo.", fifos->client_path);
|
|
return 0;
|
|
}
|
|
|
|
/* Anyone listening? If not, errno will be ENXIO */
|
|
fifos->client = open(fifos->client_path, O_WRONLY | O_NONBLOCK);
|
|
if (fifos->client >= 0) {
|
|
/* server is running and listening */
|
|
|
|
close(fifos->client);
|
|
return 1;
|
|
} else if (errno != ENXIO) {
|
|
/* problem */
|
|
|
|
log_error("%s: Can't open client fifo %s: %s",
|
|
__func__, fifos->client_path, strerror(errno));
|
|
stack;
|
|
return 0;
|
|
}
|
|
|
|
start_server:
|
|
/* server is not running */
|
|
|
|
if (!strncmp(DMEVENTD_PATH, "/", 1) && stat(DMEVENTD_PATH, &statbuf)) {
|
|
log_error("Unable to find dmeventd.");
|
|
return_0;
|
|
}
|
|
|
|
pid = fork();
|
|
|
|
if (pid < 0)
|
|
log_error("Unable to fork.");
|
|
|
|
else if (!pid) {
|
|
execvp(DMEVENTD_PATH, NULL);
|
|
_exit(EXIT_FAILURE);
|
|
} else {
|
|
if (waitpid(pid, &status, 0) < 0)
|
|
log_error("Unable to start dmeventd: %s",
|
|
strerror(errno));
|
|
else if (WEXITSTATUS(status))
|
|
log_error("Unable to start dmeventd.");
|
|
else
|
|
ret = 1;
|
|
}
|
|
|
|
return ret;
|
|
}
|
|
|
|
/* Initialize client. */
|
|
static int _init_client(struct dm_event_fifos *fifos)
|
|
{
|
|
/* FIXME? Is fifo the most suitable method? Why not share
|
|
comms/daemon code with something else e.g. multipath? */
|
|
|
|
/* init fifos */
|
|
memset(fifos, 0, sizeof(*fifos));
|
|
fifos->client_path = DM_EVENT_FIFO_CLIENT;
|
|
fifos->server_path = DM_EVENT_FIFO_SERVER;
|
|
|
|
if (!_start_daemon(fifos)) {
|
|
stack;
|
|
return 0;
|
|
}
|
|
|
|
/* Open the fifo used to read from the daemon. */
|
|
if ((fifos->server = open(fifos->server_path, O_RDWR)) < 0) {
|
|
log_error("%s: open server fifo %s",
|
|
__func__, fifos->server_path);
|
|
stack;
|
|
return 0;
|
|
}
|
|
|
|
/* Lock out anyone else trying to do communication with the daemon. */
|
|
if (flock(fifos->server, LOCK_EX) < 0) {
|
|
log_error("%s: flock %s", __func__, fifos->server_path);
|
|
close(fifos->server);
|
|
return 0;
|
|
}
|
|
|
|
/* if ((fifos->client = open(fifos->client_path, O_WRONLY | O_NONBLOCK)) < 0) {*/
|
|
if ((fifos->client = open(fifos->client_path, O_RDWR | O_NONBLOCK)) < 0) {
|
|
log_error("%s: Can't open client fifo %s: %s",
|
|
__func__, fifos->client_path, strerror(errno));
|
|
close(fifos->server);
|
|
stack;
|
|
return 0;
|
|
}
|
|
|
|
return 1;
|
|
}
|
|
|
|
static void _dtr_client(struct dm_event_fifos *fifos)
|
|
{
|
|
if (flock(fifos->server, LOCK_UN))
|
|
log_error("flock unlock %s", fifos->server_path);
|
|
|
|
close(fifos->client);
|
|
close(fifos->server);
|
|
}
|
|
|
|
/* Get uuid of a device */
|
|
static struct dm_task *_get_device_info(const struct dm_event_handler *dmevh)
|
|
{
|
|
struct dm_task *dmt;
|
|
struct dm_info info;
|
|
|
|
if (!(dmt = dm_task_create(DM_DEVICE_INFO))) {
|
|
log_error("_get_device_info: dm_task creation for info failed");
|
|
return NULL;
|
|
}
|
|
|
|
if (dmevh->uuid)
|
|
dm_task_set_uuid(dmt, dmevh->uuid);
|
|
else if (dmevh->dev_name)
|
|
dm_task_set_name(dmt, dmevh->dev_name);
|
|
else if (dmevh->major && dmevh->minor) {
|
|
dm_task_set_major(dmt, dmevh->major);
|
|
dm_task_set_minor(dmt, dmevh->minor);
|
|
}
|
|
|
|
/* FIXME Add name or uuid or devno to messages */
|
|
if (!dm_task_run(dmt)) {
|
|
log_error("_get_device_info: dm_task_run() failed");
|
|
goto failed;
|
|
}
|
|
|
|
if (!dm_task_get_info(dmt, &info)) {
|
|
log_error("_get_device_info: failed to get info for device");
|
|
goto failed;
|
|
}
|
|
|
|
if (!info.exists) {
|
|
log_error("_get_device_info: device not found");
|
|
goto failed;
|
|
}
|
|
|
|
return dmt;
|
|
|
|
failed:
|
|
dm_task_destroy(dmt);
|
|
return NULL;
|
|
}
|
|
|
|
/* Handle the event (de)registration call and return negative error codes. */
|
|
static int _do_event(int cmd, struct dm_event_daemon_message *msg,
|
|
const char *dso_name, const char *dev_name,
|
|
enum dm_event_mask evmask, uint32_t timeout)
|
|
{
|
|
int ret;
|
|
struct dm_event_fifos fifos;
|
|
|
|
if (!_init_client(&fifos)) {
|
|
stack;
|
|
return -ESRCH;
|
|
}
|
|
|
|
ret = _daemon_talk(&fifos, msg, DM_EVENT_CMD_HELLO, 0, 0, 0, 0);
|
|
|
|
if (msg->data)
|
|
dm_free(msg->data);
|
|
msg->data = 0;
|
|
|
|
if (!ret)
|
|
ret = _daemon_talk(&fifos, msg, cmd, dso_name, dev_name, evmask, timeout);
|
|
|
|
/* what is the opposite of init? */
|
|
_dtr_client(&fifos);
|
|
|
|
return ret;
|
|
}
|
|
|
|
/* External library interface. */
|
|
int dm_event_register_handler(const struct dm_event_handler *dmevh)
|
|
{
|
|
int ret = 1, err;
|
|
const char *uuid;
|
|
struct dm_task *dmt;
|
|
struct dm_event_daemon_message msg = { 0, 0, NULL };
|
|
|
|
if (!(dmt = _get_device_info(dmevh))) {
|
|
stack;
|
|
return 0;
|
|
}
|
|
|
|
uuid = dm_task_get_uuid(dmt);
|
|
|
|
if ((err = _do_event(DM_EVENT_CMD_REGISTER_FOR_EVENT, &msg,
|
|
dmevh->dso, uuid, dmevh->mask, dmevh->timeout)) < 0) {
|
|
log_error("%s: event registration failed: %s",
|
|
dm_task_get_name(dmt),
|
|
msg.data ? msg.data : strerror(-err));
|
|
ret = 0;
|
|
}
|
|
|
|
if (msg.data)
|
|
dm_free(msg.data);
|
|
|
|
dm_task_destroy(dmt);
|
|
|
|
return ret;
|
|
}
|
|
|
|
int dm_event_unregister_handler(const struct dm_event_handler *dmevh)
|
|
{
|
|
int ret = 1, err;
|
|
const char *uuid;
|
|
struct dm_task *dmt;
|
|
struct dm_event_daemon_message msg = { 0, 0, NULL };
|
|
|
|
if (!(dmt = _get_device_info(dmevh))) {
|
|
stack;
|
|
return 0;
|
|
}
|
|
|
|
uuid = dm_task_get_uuid(dmt);
|
|
|
|
if ((err = _do_event(DM_EVENT_CMD_UNREGISTER_FOR_EVENT, &msg,
|
|
dmevh->dso, uuid, dmevh->mask, dmevh->timeout)) < 0) {
|
|
log_error("%s: event deregistration failed: %s",
|
|
dm_task_get_name(dmt),
|
|
msg.data ? msg.data : strerror(-err));
|
|
ret = 0;
|
|
}
|
|
|
|
if (msg.data)
|
|
dm_free(msg.data);
|
|
|
|
dm_task_destroy(dmt);
|
|
|
|
return ret;
|
|
}
|
|
|
|
/* Fetch a string off src and duplicate it into *dest. */
|
|
/* FIXME: move to separate module to share with the daemon. */
|
|
static char *_fetch_string(char **src, const int delimiter)
|
|
{
|
|
char *p, *ret;
|
|
|
|
if ((p = strchr(*src, delimiter)))
|
|
*p = 0;
|
|
|
|
if ((ret = dm_strdup(*src)))
|
|
*src += strlen(ret) + 1;
|
|
|
|
if (p)
|
|
*p = delimiter;
|
|
|
|
return ret;
|
|
}
|
|
|
|
/* Parse a device message from the daemon. */
|
|
static int _parse_message(struct dm_event_daemon_message *msg, char **dso_name,
|
|
char **uuid, enum dm_event_mask *evmask)
|
|
{
|
|
char *id = NULL;
|
|
char *p = msg->data;
|
|
|
|
if ((id = _fetch_string(&p, ' ')) &&
|
|
(*dso_name = _fetch_string(&p, ' ')) &&
|
|
(*uuid = _fetch_string(&p, ' '))) {
|
|
*evmask = atoi(p);
|
|
|
|
dm_free(id);
|
|
return 0;
|
|
}
|
|
|
|
if (id)
|
|
dm_free(id);
|
|
return -ENOMEM;
|
|
}
|
|
|
|
/*
|
|
* Returns 0 if handler found; error (-ENOMEM, -ENOENT) otherwise.
|
|
*/
|
|
int dm_event_get_registered_device(struct dm_event_handler *dmevh, int next)
|
|
{
|
|
int ret = 0;
|
|
const char *uuid = NULL;
|
|
char *reply_dso = NULL, *reply_uuid = NULL;
|
|
enum dm_event_mask reply_mask = 0;
|
|
struct dm_task *dmt = NULL;
|
|
struct dm_event_daemon_message msg = { 0, 0, NULL };
|
|
|
|
if (!(dmt = _get_device_info(dmevh))) {
|
|
stack;
|
|
return 0;
|
|
}
|
|
|
|
uuid = dm_task_get_uuid(dmt);
|
|
|
|
if (!(ret = _do_event(next ? DM_EVENT_CMD_GET_NEXT_REGISTERED_DEVICE :
|
|
DM_EVENT_CMD_GET_REGISTERED_DEVICE,
|
|
&msg, dmevh->dso, uuid, dmevh->mask, 0))) {
|
|
/* FIXME this will probably horribly break if we get
|
|
ill-formatted reply */
|
|
ret = _parse_message(&msg, &reply_dso, &reply_uuid, &reply_mask);
|
|
} else {
|
|
ret = -ENOENT;
|
|
goto fail;
|
|
}
|
|
|
|
dm_task_destroy(dmt);
|
|
dmt = NULL;
|
|
|
|
if (msg.data) {
|
|
dm_free(msg.data);
|
|
msg.data = NULL;
|
|
}
|
|
|
|
_dm_event_handler_clear_dev_info(dmevh);
|
|
dmevh->uuid = dm_strdup(reply_uuid);
|
|
if (!dmevh->uuid) {
|
|
ret = -ENOMEM;
|
|
goto fail;
|
|
}
|
|
|
|
if (!(dmt = _get_device_info(dmevh))) {
|
|
ret = -ENXIO; /* dmeventd probably gave us bogus uuid back */
|
|
goto fail;
|
|
}
|
|
|
|
dm_event_handler_set_dso(dmevh, reply_dso);
|
|
dm_event_handler_set_event_mask(dmevh, reply_mask);
|
|
|
|
if (reply_dso) {
|
|
dm_free(reply_dso);
|
|
reply_dso = NULL;
|
|
}
|
|
|
|
if (reply_uuid) {
|
|
dm_free(reply_uuid);
|
|
reply_uuid = NULL;
|
|
}
|
|
|
|
dmevh->dev_name = dm_strdup(dm_task_get_name(dmt));
|
|
if (!dmevh->dev_name) {
|
|
ret = -ENOMEM;
|
|
goto fail;
|
|
}
|
|
|
|
struct dm_info info;
|
|
if (!dm_task_get_info(dmt, &info)) {
|
|
ret = -1;
|
|
goto fail;
|
|
}
|
|
|
|
dmevh->major = info.major;
|
|
dmevh->minor = info.minor;
|
|
|
|
dm_task_destroy(dmt);
|
|
|
|
return ret;
|
|
|
|
fail:
|
|
if (msg.data)
|
|
dm_free(msg.data);
|
|
if (reply_dso)
|
|
dm_free(reply_dso);
|
|
if (reply_uuid)
|
|
dm_free(reply_uuid);
|
|
_dm_event_handler_clear_dev_info(dmevh);
|
|
if (dmt)
|
|
dm_task_destroy(dmt);
|
|
return ret;
|
|
}
|
|
|
|
#if 0 /* left out for now */
|
|
|
|
static char *_skip_string(char *src, const int delimiter)
|
|
{
|
|
src = srtchr(src, delimiter);
|
|
if (src && *(src + 1))
|
|
return src + 1;
|
|
return NULL;
|
|
}
|
|
|
|
int dm_event_set_timeout(const char *device_path, uint32_t timeout)
|
|
{
|
|
struct dm_event_daemon_message msg = { 0, 0, NULL };
|
|
|
|
if (!device_exists(device_path))
|
|
return -ENODEV;
|
|
|
|
return _do_event(DM_EVENT_CMD_SET_TIMEOUT, &msg,
|
|
NULL, device_path, 0, timeout);
|
|
}
|
|
|
|
int dm_event_get_timeout(const char *device_path, uint32_t *timeout)
|
|
{
|
|
int ret;
|
|
struct dm_event_daemon_message msg = { 0, 0, NULL };
|
|
|
|
if (!device_exists(device_path))
|
|
return -ENODEV;
|
|
if (!(ret = _do_event(DM_EVENT_CMD_GET_TIMEOUT, &msg, NULL, device_path,
|
|
0, 0))) {
|
|
char *p = _skip_string(msg.data, ' ');
|
|
if (!p) {
|
|
log_error("malformed reply from dmeventd '%s'\n",
|
|
msg.data);
|
|
return -EIO;
|
|
}
|
|
*timeout = atoi(p);
|
|
}
|
|
if (msg.data)
|
|
dm_free(msg.data);
|
|
return ret;
|
|
}
|
|
#endif
|