2008-11-11 16:46:33 +00:00
|
|
|
/*
|
|
|
|
* QEMU live migration
|
|
|
|
*
|
|
|
|
* Copyright IBM, Corp. 2008
|
|
|
|
* Copyright Dell MessageOne 2008
|
|
|
|
*
|
|
|
|
* Authors:
|
|
|
|
* Anthony Liguori <aliguori@us.ibm.com>
|
|
|
|
* Charles Duffy <charles_duffy@messageone.com>
|
|
|
|
*
|
|
|
|
* This work is licensed under the terms of the GNU GPL, version 2. See
|
|
|
|
* the COPYING file in the top-level directory.
|
|
|
|
*
|
2012-01-13 16:44:23 +00:00
|
|
|
* Contributions after 2012-01-13 are licensed under the terms of the
|
|
|
|
* GNU GPL, version 2 or (at your option) any later version.
|
2008-11-11 16:46:33 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "qemu-common.h"
|
|
|
|
#include "qemu_socket.h"
|
|
|
|
#include "migration.h"
|
|
|
|
#include "qemu-char.h"
|
|
|
|
#include "buffered_file.h"
|
|
|
|
#include "block.h"
|
2010-06-04 20:01:07 +00:00
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/wait.h>
|
2008-11-11 16:46:33 +00:00
|
|
|
|
|
|
|
//#define DEBUG_MIGRATION_EXEC
|
|
|
|
|
|
|
|
#ifdef DEBUG_MIGRATION_EXEC
|
2010-02-06 23:03:50 +00:00
|
|
|
#define DPRINTF(fmt, ...) \
|
2008-11-11 16:46:33 +00:00
|
|
|
do { printf("migration-exec: " fmt, ## __VA_ARGS__); } while (0)
|
|
|
|
#else
|
2010-02-06 23:03:50 +00:00
|
|
|
#define DPRINTF(fmt, ...) \
|
2008-11-11 16:46:33 +00:00
|
|
|
do { } while (0)
|
|
|
|
#endif
|
|
|
|
|
2010-05-11 13:56:35 +00:00
|
|
|
static int file_errno(MigrationState *s)
|
2008-11-11 16:46:33 +00:00
|
|
|
{
|
|
|
|
return errno;
|
|
|
|
}
|
|
|
|
|
2010-05-11 13:56:35 +00:00
|
|
|
static int file_write(MigrationState *s, const void * buf, size_t size)
|
2008-11-11 16:46:33 +00:00
|
|
|
{
|
|
|
|
return write(s->fd, buf, size);
|
|
|
|
}
|
|
|
|
|
2010-05-11 13:56:35 +00:00
|
|
|
static int exec_close(MigrationState *s)
|
2008-11-11 16:46:33 +00:00
|
|
|
{
|
2010-06-02 19:55:25 +00:00
|
|
|
int ret = 0;
|
2010-02-06 23:03:50 +00:00
|
|
|
DPRINTF("exec_close\n");
|
2012-09-27 11:30:15 +00:00
|
|
|
ret = qemu_fclose(s->opaque);
|
|
|
|
s->opaque = NULL;
|
|
|
|
s->fd = -1;
|
|
|
|
if (ret >= 0 && !(WIFEXITED(ret) && WEXITSTATUS(ret) == 0)) {
|
|
|
|
/* close succeeded, but non-zero exit code: */
|
|
|
|
ret = -EIO; /* fake errno value */
|
2008-11-11 16:46:33 +00:00
|
|
|
}
|
2010-06-02 19:55:25 +00:00
|
|
|
return ret;
|
2008-11-11 16:46:33 +00:00
|
|
|
}
|
|
|
|
|
2012-10-02 08:02:46 +00:00
|
|
|
void exec_start_outgoing_migration(MigrationState *s, const char *command, Error **errp)
|
2008-11-11 16:46:33 +00:00
|
|
|
{
|
|
|
|
FILE *f;
|
|
|
|
|
|
|
|
f = popen(command, "w");
|
|
|
|
if (f == NULL) {
|
2012-10-02 08:02:46 +00:00
|
|
|
error_setg_errno(errp, errno, "failed to popen the migration target");
|
|
|
|
return;
|
2008-11-11 16:46:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
s->fd = fileno(f);
|
2012-10-02 08:02:46 +00:00
|
|
|
assert(s->fd != -1);
|
2009-08-05 15:07:35 +00:00
|
|
|
socket_set_nonblock(s->fd);
|
2008-11-11 16:46:33 +00:00
|
|
|
|
|
|
|
s->opaque = qemu_popen(f, "w");
|
|
|
|
|
2008-11-12 22:29:11 +00:00
|
|
|
s->close = exec_close;
|
2008-11-11 16:46:33 +00:00
|
|
|
s->get_error = file_errno;
|
|
|
|
s->write = file_write;
|
|
|
|
|
|
|
|
migrate_fd_connect(s);
|
|
|
|
}
|
|
|
|
|
2009-05-25 14:38:23 +00:00
|
|
|
static void exec_accept_incoming_migration(void *opaque)
|
2008-11-11 16:46:33 +00:00
|
|
|
{
|
2009-05-25 14:38:23 +00:00
|
|
|
QEMUFile *f = opaque;
|
2008-11-11 16:46:33 +00:00
|
|
|
|
2012-08-08 08:21:26 +00:00
|
|
|
qemu_set_fd_handler2(qemu_get_fd(f), NULL, NULL, NULL, NULL);
|
2012-08-07 08:49:13 +00:00
|
|
|
process_incoming_migration(f);
|
2009-05-25 14:38:23 +00:00
|
|
|
}
|
|
|
|
|
2012-10-02 16:21:18 +00:00
|
|
|
void exec_start_incoming_migration(const char *command, Error **errp)
|
2009-05-25 14:38:23 +00:00
|
|
|
{
|
|
|
|
QEMUFile *f;
|
|
|
|
|
2010-02-06 23:03:50 +00:00
|
|
|
DPRINTF("Attempting to start an incoming migration\n");
|
2009-05-25 14:38:23 +00:00
|
|
|
f = qemu_popen_cmd(command, "r");
|
|
|
|
if(f == NULL) {
|
2012-10-02 16:21:18 +00:00
|
|
|
error_setg_errno(errp, errno, "failed to popen the migration source");
|
|
|
|
return;
|
2009-05-25 14:38:23 +00:00
|
|
|
}
|
|
|
|
|
2012-08-08 08:21:26 +00:00
|
|
|
qemu_set_fd_handler2(qemu_get_fd(f), NULL,
|
2010-03-11 16:55:38 +00:00
|
|
|
exec_accept_incoming_migration, NULL, f);
|
2008-11-11 16:46:33 +00:00
|
|
|
}
|