2009-08-18 15:56:25 +02:00
|
|
|
/*
|
|
|
|
* QEMU live migration via generic fd
|
|
|
|
*
|
|
|
|
* Copyright Red Hat, Inc. 2009
|
|
|
|
*
|
|
|
|
* Authors:
|
|
|
|
* Chris Lalancette <clalance@redhat.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 17:44:23 +01:00
|
|
|
* Contributions after 2012-01-13 are licensed under the terms of the
|
|
|
|
* GNU GPL, version 2 or (at your option) any later version.
|
2009-08-18 15:56:25 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "qemu-common.h"
|
|
|
|
#include "qemu_socket.h"
|
|
|
|
#include "migration.h"
|
|
|
|
#include "monitor.h"
|
|
|
|
#include "qemu-char.h"
|
|
|
|
#include "buffered_file.h"
|
|
|
|
#include "block.h"
|
|
|
|
#include "qemu_socket.h"
|
|
|
|
|
|
|
|
//#define DEBUG_MIGRATION_FD
|
|
|
|
|
|
|
|
#ifdef DEBUG_MIGRATION_FD
|
2010-02-07 00:03:50 +01:00
|
|
|
#define DPRINTF(fmt, ...) \
|
2009-08-18 15:56:25 +02:00
|
|
|
do { printf("migration-fd: " fmt, ## __VA_ARGS__); } while (0)
|
|
|
|
#else
|
2010-02-07 00:03:50 +01:00
|
|
|
#define DPRINTF(fmt, ...) \
|
2009-08-18 15:56:25 +02:00
|
|
|
do { } while (0)
|
|
|
|
#endif
|
|
|
|
|
2010-05-11 15:56:35 +02:00
|
|
|
static int fd_errno(MigrationState *s)
|
2009-08-18 15:56:25 +02:00
|
|
|
{
|
|
|
|
return errno;
|
|
|
|
}
|
|
|
|
|
2010-05-11 15:56:35 +02:00
|
|
|
static int fd_write(MigrationState *s, const void * buf, size_t size)
|
2009-08-18 15:56:25 +02:00
|
|
|
{
|
|
|
|
return write(s->fd, buf, size);
|
|
|
|
}
|
|
|
|
|
2010-05-11 15:56:35 +02:00
|
|
|
static int fd_close(MigrationState *s)
|
2009-08-18 15:56:25 +02:00
|
|
|
{
|
2011-10-27 09:12:04 +02:00
|
|
|
struct stat st;
|
|
|
|
int ret;
|
|
|
|
|
2010-02-07 00:03:50 +01:00
|
|
|
DPRINTF("fd_close\n");
|
2012-09-27 13:30:15 +02:00
|
|
|
ret = fstat(s->fd, &st);
|
|
|
|
if (ret == 0 && S_ISREG(st.st_mode)) {
|
|
|
|
/*
|
|
|
|
* If the file handle is a regular file make sure the
|
|
|
|
* data is flushed to disk before signaling success.
|
|
|
|
*/
|
|
|
|
ret = fsync(s->fd);
|
2011-10-27 09:12:04 +02:00
|
|
|
if (ret != 0) {
|
|
|
|
ret = -errno;
|
2012-09-27 13:30:15 +02:00
|
|
|
perror("migration-fd: fsync");
|
2011-10-27 09:12:04 +02:00
|
|
|
return ret;
|
|
|
|
}
|
2009-08-18 15:56:25 +02:00
|
|
|
}
|
2012-09-27 13:30:15 +02:00
|
|
|
ret = close(s->fd);
|
|
|
|
s->fd = -1;
|
|
|
|
if (ret != 0) {
|
|
|
|
ret = -errno;
|
|
|
|
perror("migration-fd: close");
|
|
|
|
}
|
|
|
|
return ret;
|
2009-08-18 15:56:25 +02:00
|
|
|
}
|
|
|
|
|
2012-10-02 10:02:46 +02:00
|
|
|
void fd_start_outgoing_migration(MigrationState *s, const char *fdname, Error **errp)
|
2009-08-18 15:56:25 +02:00
|
|
|
{
|
2012-10-02 10:02:46 +02:00
|
|
|
s->fd = monitor_get_fd(cur_mon, fdname, errp);
|
2009-08-18 15:56:25 +02:00
|
|
|
if (s->fd == -1) {
|
2012-10-02 10:02:46 +02:00
|
|
|
return;
|
2009-08-18 15:56:25 +02:00
|
|
|
}
|
|
|
|
|
2012-10-02 10:02:46 +02:00
|
|
|
fcntl(s->fd, F_SETFL, O_NONBLOCK);
|
2009-08-18 15:56:25 +02:00
|
|
|
s->get_error = fd_errno;
|
|
|
|
s->write = fd_write;
|
|
|
|
s->close = fd_close;
|
|
|
|
|
|
|
|
migrate_fd_connect(s);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void fd_accept_incoming_migration(void *opaque)
|
|
|
|
{
|
|
|
|
QEMUFile *f = opaque;
|
|
|
|
|
2012-08-08 10:21:26 +02:00
|
|
|
qemu_set_fd_handler2(qemu_get_fd(f), NULL, NULL, NULL, NULL);
|
2012-08-07 10:49:13 +02:00
|
|
|
process_incoming_migration(f);
|
2009-08-18 15:56:25 +02:00
|
|
|
}
|
|
|
|
|
2012-10-02 18:21:18 +02:00
|
|
|
void fd_start_incoming_migration(const char *infd, Error **errp)
|
2009-08-18 15:56:25 +02:00
|
|
|
{
|
|
|
|
int fd;
|
|
|
|
QEMUFile *f;
|
|
|
|
|
2010-02-07 00:03:50 +01:00
|
|
|
DPRINTF("Attempting to start an incoming migration via fd\n");
|
2009-08-18 15:56:25 +02:00
|
|
|
|
|
|
|
fd = strtol(infd, NULL, 0);
|
|
|
|
f = qemu_fdopen(fd, "rb");
|
|
|
|
if(f == NULL) {
|
2012-10-02 18:21:18 +02:00
|
|
|
error_setg_errno(errp, errno, "failed to open the source descriptor");
|
|
|
|
return;
|
2009-08-18 15:56:25 +02:00
|
|
|
}
|
|
|
|
|
2010-03-11 17:55:38 +01:00
|
|
|
qemu_set_fd_handler2(fd, NULL, fd_accept_incoming_migration, NULL, f);
|
2009-08-18 15:56:25 +02:00
|
|
|
}
|