tcg-i386: Tidy data16 prefixes.
[qemu/aliguori-queue.git] / migration-exec.c
blob54358271c5b5b5793b2989f4e2cbbe92609b83f4
1 /*
2 * QEMU live migration
4 * Copyright IBM, Corp. 2008
5 * Copyright Dell MessageOne 2008
7 * Authors:
8 * Anthony Liguori <aliguori@us.ibm.com>
9 * Charles Duffy <charles_duffy@messageone.com>
11 * This work is licensed under the terms of the GNU GPL, version 2. See
12 * the COPYING file in the top-level directory.
16 #include "qemu-common.h"
17 #include "qemu_socket.h"
18 #include "migration.h"
19 #include "qemu-char.h"
20 #include "sysemu.h"
21 #include "buffered_file.h"
22 #include "block.h"
24 //#define DEBUG_MIGRATION_EXEC
26 #ifdef DEBUG_MIGRATION_EXEC
27 #define DPRINTF(fmt, ...) \
28 do { printf("migration-exec: " fmt, ## __VA_ARGS__); } while (0)
29 #else
30 #define DPRINTF(fmt, ...) \
31 do { } while (0)
32 #endif
34 static int file_errno(FdMigrationState *s)
36 return errno;
39 static int file_write(FdMigrationState *s, const void * buf, size_t size)
41 return write(s->fd, buf, size);
44 static int exec_close(FdMigrationState *s)
46 DPRINTF("exec_close\n");
47 if (s->opaque) {
48 qemu_fclose(s->opaque);
49 s->opaque = NULL;
50 s->fd = -1;
52 return 0;
55 MigrationState *exec_start_outgoing_migration(Monitor *mon,
56 const char *command,
57 int64_t bandwidth_limit,
58 int detach,
59 int blk,
60 int inc)
62 FdMigrationState *s;
63 FILE *f;
65 s = qemu_mallocz(sizeof(*s));
67 f = popen(command, "w");
68 if (f == NULL) {
69 DPRINTF("Unable to popen exec target\n");
70 goto err_after_alloc;
73 s->fd = fileno(f);
74 if (s->fd == -1) {
75 DPRINTF("Unable to retrieve file descriptor for popen'd handle\n");
76 goto err_after_open;
79 socket_set_nonblock(s->fd);
81 s->opaque = qemu_popen(f, "w");
83 s->close = exec_close;
84 s->get_error = file_errno;
85 s->write = file_write;
86 s->mig_state.cancel = migrate_fd_cancel;
87 s->mig_state.get_status = migrate_fd_get_status;
88 s->mig_state.release = migrate_fd_release;
90 s->mig_state.blk = blk;
91 s->mig_state.shared = inc;
93 s->state = MIG_STATE_ACTIVE;
94 s->mon = NULL;
95 s->bandwidth_limit = bandwidth_limit;
97 if (!detach) {
98 migrate_fd_monitor_suspend(s, mon);
101 migrate_fd_connect(s);
102 return &s->mig_state;
104 err_after_open:
105 pclose(f);
106 err_after_alloc:
107 qemu_free(s);
108 return NULL;
111 static void exec_accept_incoming_migration(void *opaque)
113 QEMUFile *f = opaque;
114 int ret;
116 ret = qemu_loadvm_state(f);
117 if (ret < 0) {
118 fprintf(stderr, "load of migration failed\n");
119 goto err;
121 qemu_announce_self();
122 DPRINTF("successfully loaded vm state\n");
124 if (autostart)
125 vm_start();
127 err:
128 qemu_set_fd_handler2(qemu_stdio_fd(f), NULL, NULL, NULL, NULL);
129 qemu_fclose(f);
132 int exec_start_incoming_migration(const char *command)
134 QEMUFile *f;
136 DPRINTF("Attempting to start an incoming migration\n");
137 f = qemu_popen_cmd(command, "r");
138 if(f == NULL) {
139 DPRINTF("Unable to apply qemu wrapper to popen file\n");
140 return -errno;
143 qemu_set_fd_handler2(qemu_stdio_fd(f), NULL,
144 exec_accept_incoming_migration, NULL, f);
146 return 0;