4 * Copyright IBM, Corp. 2008
5 * Copyright Dell MessageOne 2008
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"
21 #include "buffered_file.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)
30 #define dprintf(fmt, ...) \
34 static int file_errno(FdMigrationState
*s
)
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");
48 qemu_fclose(s
->opaque
);
55 MigrationState
*exec_start_outgoing_migration(Monitor
*mon
,
57 int64_t bandwidth_limit
,
65 s
= qemu_mallocz(sizeof(*s
));
67 f
= popen(command
, "w");
69 dprintf("Unable to popen exec target\n");
75 dprintf("Unable to retrieve file descriptor for popen'd handle\n");
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
;
95 s
->bandwidth_limit
= bandwidth_limit
;
98 migrate_fd_monitor_suspend(s
, mon
);
101 migrate_fd_connect(s
);
102 return &s
->mig_state
;
111 static void exec_accept_incoming_migration(void *opaque
)
113 QEMUFile
*f
= opaque
;
116 ret
= qemu_loadvm_state(f
);
118 fprintf(stderr
, "load of migration failed\n");
121 qemu_announce_self();
122 dprintf("successfully loaded vm state\n");
123 /* we've successfully migrated, close the fd */
124 qemu_set_fd_handler2(qemu_stdio_fd(f
), NULL
, NULL
, NULL
, NULL
);
132 int exec_start_incoming_migration(const char *command
)
136 dprintf("Attempting to start an incoming migration\n");
137 f
= qemu_popen_cmd(command
, "r");
139 dprintf("Unable to apply qemu wrapper to popen file\n");
143 qemu_set_fd_handler2(qemu_stdio_fd(f
), NULL
,
144 exec_accept_incoming_migration
, NULL
,
145 (void *)(unsigned long)f
);