blob: b7b760b1d42316a6d48df1b70829bd64df11bea9 [file] [log] [blame]
aliguori065e2812008-11-11 16:46:33 +00001/*
2 * QEMU live migration
3 *
4 * Copyright IBM, Corp. 2008
5 * Copyright Dell MessageOne 2008
6 *
7 * Authors:
8 * Anthony Liguori <aliguori@us.ibm.com>
9 * Charles Duffy <charles_duffy@messageone.com>
10 *
11 * This work is licensed under the terms of the GNU GPL, version 2. See
12 * the COPYING file in the top-level directory.
13 *
Paolo Bonzini6b620ca2012-01-13 17:44:23 +010014 * Contributions after 2012-01-13 are licensed under the terms of the
15 * GNU GPL, version 2 or (at your option) any later version.
aliguori065e2812008-11-11 16:46:33 +000016 */
17
18#include "qemu-common.h"
Paolo Bonzini1de7afc2012-12-17 18:20:00 +010019#include "qemu/sockets.h"
Paolo Bonzinicaf71f82012-12-17 18:19:50 +010020#include "migration/migration.h"
Juan Quintela557ec5a2012-10-03 14:07:31 +020021#include "migration/qemu-file.h"
Paolo Bonzini737e1502012-12-17 18:19:44 +010022#include "block/block.h"
Blue Swirl0ffbba32010-06-04 20:01:07 +000023#include <sys/types.h>
24#include <sys/wait.h>
aliguori065e2812008-11-11 16:46:33 +000025
26//#define DEBUG_MIGRATION_EXEC
27
28#ifdef DEBUG_MIGRATION_EXEC
malcd0f2c4c2010-02-07 02:03:50 +030029#define DPRINTF(fmt, ...) \
aliguori065e2812008-11-11 16:46:33 +000030 do { printf("migration-exec: " fmt, ## __VA_ARGS__); } while (0)
31#else
malcd0f2c4c2010-02-07 02:03:50 +030032#define DPRINTF(fmt, ...) \
aliguori065e2812008-11-11 16:46:33 +000033 do { } while (0)
34#endif
35
Juan Quintela22f00a42010-05-11 15:56:35 +020036static int file_errno(MigrationState *s)
aliguori065e2812008-11-11 16:46:33 +000037{
38 return errno;
39}
40
Juan Quintela22f00a42010-05-11 15:56:35 +020041static int file_write(MigrationState *s, const void * buf, size_t size)
aliguori065e2812008-11-11 16:46:33 +000042{
43 return write(s->fd, buf, size);
44}
45
Juan Quintela22f00a42010-05-11 15:56:35 +020046static int exec_close(MigrationState *s)
aliguori065e2812008-11-11 16:46:33 +000047{
Anthony Liguori41ef56e2010-06-02 14:55:25 -050048 int ret = 0;
malcd0f2c4c2010-02-07 02:03:50 +030049 DPRINTF("exec_close\n");
Paolo Bonzini6c360132012-09-27 13:30:15 +020050 ret = qemu_fclose(s->opaque);
51 s->opaque = NULL;
52 s->fd = -1;
53 if (ret >= 0 && !(WIFEXITED(ret) && WEXITSTATUS(ret) == 0)) {
54 /* close succeeded, but non-zero exit code: */
55 ret = -EIO; /* fake errno value */
aliguori065e2812008-11-11 16:46:33 +000056 }
Anthony Liguori41ef56e2010-06-02 14:55:25 -050057 return ret;
aliguori065e2812008-11-11 16:46:33 +000058}
59
Paolo Bonzinif37afb52012-10-02 10:02:46 +020060void exec_start_outgoing_migration(MigrationState *s, const char *command, Error **errp)
aliguori065e2812008-11-11 16:46:33 +000061{
aliguori065e2812008-11-11 16:46:33 +000062 FILE *f;
63
aliguori065e2812008-11-11 16:46:33 +000064 f = popen(command, "w");
65 if (f == NULL) {
Paolo Bonzinif37afb52012-10-02 10:02:46 +020066 error_setg_errno(errp, errno, "failed to popen the migration target");
67 return;
aliguori065e2812008-11-11 16:46:33 +000068 }
69
70 s->fd = fileno(f);
Paolo Bonzinif37afb52012-10-02 10:02:46 +020071 assert(s->fd != -1);
Chris Lalancette90750002009-08-05 17:07:35 +020072 socket_set_nonblock(s->fd);
aliguori065e2812008-11-11 16:46:33 +000073
74 s->opaque = qemu_popen(f, "w");
75
aliguori8ad9fa52008-11-12 22:29:11 +000076 s->close = exec_close;
aliguori065e2812008-11-11 16:46:33 +000077 s->get_error = file_errno;
78 s->write = file_write;
aliguori065e2812008-11-11 16:46:33 +000079
80 migrate_fd_connect(s);
aliguori065e2812008-11-11 16:46:33 +000081}
82
Chris Lalancette8a43b1e2009-05-25 16:38:23 +020083static void exec_accept_incoming_migration(void *opaque)
aliguori065e2812008-11-11 16:46:33 +000084{
Chris Lalancette8a43b1e2009-05-25 16:38:23 +020085 QEMUFile *f = opaque;
aliguori065e2812008-11-11 16:46:33 +000086
Paolo Bonzinid263a202012-08-08 10:21:26 +020087 qemu_set_fd_handler2(qemu_get_fd(f), NULL, NULL, NULL, NULL);
Paolo Bonzinia6ef2902012-08-07 10:49:13 +020088 process_incoming_migration(f);
Chris Lalancette8a43b1e2009-05-25 16:38:23 +020089}
90
Paolo Bonzini43eaae22012-10-02 18:21:18 +020091void exec_start_incoming_migration(const char *command, Error **errp)
Chris Lalancette8a43b1e2009-05-25 16:38:23 +020092{
93 QEMUFile *f;
94
malcd0f2c4c2010-02-07 02:03:50 +030095 DPRINTF("Attempting to start an incoming migration\n");
Chris Lalancette8a43b1e2009-05-25 16:38:23 +020096 f = qemu_popen_cmd(command, "r");
97 if(f == NULL) {
Paolo Bonzini43eaae22012-10-02 18:21:18 +020098 error_setg_errno(errp, errno, "failed to popen the migration source");
99 return;
Chris Lalancette8a43b1e2009-05-25 16:38:23 +0200100 }
101
Paolo Bonzinid263a202012-08-08 10:21:26 +0200102 qemu_set_fd_handler2(qemu_get_fd(f), NULL,
Juan Quintela1c39e2a2010-03-11 17:55:38 +0100103 exec_accept_incoming_migration, NULL, f);
aliguori065e2812008-11-11 16:46:33 +0000104}