2009-08-05 19:24:29 +04:00
|
|
|
/*
|
|
|
|
* QEMU live migration via Unix Domain Sockets
|
|
|
|
*
|
|
|
|
* 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 20:44:23 +04: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-05 19:24:29 +04:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "qemu-common.h"
|
2012-12-17 21:20:00 +04:00
|
|
|
#include "qemu/sockets.h"
|
2012-12-17 21:19:50 +04:00
|
|
|
#include "migration/migration.h"
|
2012-10-03 16:07:31 +04:00
|
|
|
#include "migration/qemu-file.h"
|
2012-12-17 21:19:44 +04:00
|
|
|
#include "block/block.h"
|
2009-08-05 19:24:29 +04:00
|
|
|
|
|
|
|
//#define DEBUG_MIGRATION_UNIX
|
|
|
|
|
|
|
|
#ifdef DEBUG_MIGRATION_UNIX
|
2010-02-07 02:03:50 +03:00
|
|
|
#define DPRINTF(fmt, ...) \
|
2009-08-05 19:24:29 +04:00
|
|
|
do { printf("migration-unix: " fmt, ## __VA_ARGS__); } while (0)
|
|
|
|
#else
|
2010-02-07 02:03:50 +03:00
|
|
|
#define DPRINTF(fmt, ...) \
|
2009-08-05 19:24:29 +04:00
|
|
|
do { } while (0)
|
|
|
|
#endif
|
|
|
|
|
2012-10-03 16:05:49 +04:00
|
|
|
static void unix_wait_for_connect(int fd, void *opaque)
|
2009-08-05 19:24:29 +04:00
|
|
|
{
|
2010-05-11 17:56:35 +04:00
|
|
|
MigrationState *s = opaque;
|
2009-08-05 19:24:29 +04:00
|
|
|
|
2012-10-03 16:05:49 +04:00
|
|
|
if (fd < 0) {
|
|
|
|
DPRINTF("migrate connect error\n");
|
2013-02-22 20:36:47 +04:00
|
|
|
s->file = NULL;
|
2009-08-05 19:24:29 +04:00
|
|
|
migrate_fd_error(s);
|
2012-10-03 16:05:49 +04:00
|
|
|
} else {
|
|
|
|
DPRINTF("migrate connect success\n");
|
2013-02-22 20:36:47 +04:00
|
|
|
s->file = qemu_fopen_socket(fd, "wb");
|
2009-08-05 19:24:29 +04:00
|
|
|
migrate_fd_connect(s);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-10-02 12:02:46 +04:00
|
|
|
void unix_start_outgoing_migration(MigrationState *s, const char *path, Error **errp)
|
2009-08-05 19:24:29 +04:00
|
|
|
{
|
2013-02-22 20:36:41 +04:00
|
|
|
unix_nonblocking_connect(path, unix_wait_for_connect, s, errp);
|
2009-08-05 19:24:29 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
static void unix_accept_incoming_migration(void *opaque)
|
|
|
|
{
|
|
|
|
struct sockaddr_un addr;
|
|
|
|
socklen_t addrlen = sizeof(addr);
|
2011-02-23 21:09:16 +03:00
|
|
|
int s = (intptr_t)opaque;
|
2009-08-05 19:24:29 +04:00
|
|
|
QEMUFile *f;
|
2010-06-09 16:10:55 +04:00
|
|
|
int c;
|
2009-08-05 19:24:29 +04:00
|
|
|
|
|
|
|
do {
|
2009-12-02 14:24:42 +03:00
|
|
|
c = qemu_accept(s, (struct sockaddr *)&addr, &addrlen);
|
2011-02-23 13:52:12 +03:00
|
|
|
} while (c == -1 && errno == EINTR);
|
2012-08-07 12:49:13 +04:00
|
|
|
qemu_set_fd_handler2(s, NULL, NULL, NULL, NULL);
|
|
|
|
close(s);
|
2009-08-05 19:24:29 +04:00
|
|
|
|
2010-02-07 02:03:50 +03:00
|
|
|
DPRINTF("accepted migration\n");
|
2009-08-05 19:24:29 +04:00
|
|
|
|
|
|
|
if (c == -1) {
|
|
|
|
fprintf(stderr, "could not accept migration connection\n");
|
2012-08-07 12:49:13 +04:00
|
|
|
goto out;
|
2009-08-05 19:24:29 +04:00
|
|
|
}
|
|
|
|
|
2013-02-22 20:36:39 +04:00
|
|
|
f = qemu_fopen_socket(c, "rb");
|
2009-08-05 19:24:29 +04:00
|
|
|
if (f == NULL) {
|
|
|
|
fprintf(stderr, "could not qemu_fopen socket\n");
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
2010-06-09 16:10:55 +04:00
|
|
|
process_incoming_migration(f);
|
2012-08-07 12:50:26 +04:00
|
|
|
return;
|
|
|
|
|
2009-08-05 19:24:29 +04:00
|
|
|
out:
|
2011-02-23 22:44:29 +03:00
|
|
|
close(c);
|
2009-08-05 19:24:29 +04:00
|
|
|
}
|
|
|
|
|
2012-10-02 20:21:18 +04:00
|
|
|
void unix_start_incoming_migration(const char *path, Error **errp)
|
2009-08-05 19:24:29 +04:00
|
|
|
{
|
2011-02-23 22:44:29 +03:00
|
|
|
int s;
|
2009-08-05 19:24:29 +04:00
|
|
|
|
2012-10-03 16:05:49 +04:00
|
|
|
s = unix_listen(path, NULL, 0, errp);
|
|
|
|
if (s < 0) {
|
2012-10-02 20:21:18 +04:00
|
|
|
return;
|
2009-08-05 19:24:29 +04:00
|
|
|
}
|
|
|
|
|
2011-02-23 22:44:29 +03:00
|
|
|
qemu_set_fd_handler2(s, NULL, unix_accept_incoming_migration, NULL,
|
|
|
|
(void *)(intptr_t)s);
|
2009-08-05 19:24:29 +04:00
|
|
|
}
|