]> git.proxmox.com Git - qemu.git/blame - migration-exec.c
target-mips: Add ASE DSP multiply instructions
[qemu.git] / migration-exec.c
CommitLineData
065e2813
AL
1/*
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 *
6b620ca3
PB
14 * Contributions after 2012-01-13 are licensed under the terms of the
15 * GNU GPL, version 2 or (at your option) any later version.
065e2813
AL
16 */
17
18#include "qemu-common.h"
19#include "qemu_socket.h"
20#include "migration.h"
21#include "qemu-char.h"
065e2813
AL
22#include "buffered_file.h"
23#include "block.h"
0ffbba35
BS
24#include <sys/types.h>
25#include <sys/wait.h>
065e2813
AL
26
27//#define DEBUG_MIGRATION_EXEC
28
29#ifdef DEBUG_MIGRATION_EXEC
d0f2c4c6 30#define DPRINTF(fmt, ...) \
065e2813
AL
31 do { printf("migration-exec: " fmt, ## __VA_ARGS__); } while (0)
32#else
d0f2c4c6 33#define DPRINTF(fmt, ...) \
065e2813
AL
34 do { } while (0)
35#endif
36
22f00a44 37static int file_errno(MigrationState *s)
065e2813
AL
38{
39 return errno;
40}
41
22f00a44 42static int file_write(MigrationState *s, const void * buf, size_t size)
065e2813
AL
43{
44 return write(s->fd, buf, size);
45}
46
22f00a44 47static int exec_close(MigrationState *s)
065e2813 48{
41ef56e6 49 int ret = 0;
d0f2c4c6 50 DPRINTF("exec_close\n");
065e2813 51 if (s->opaque) {
41ef56e6 52 ret = qemu_fclose(s->opaque);
065e2813
AL
53 s->opaque = NULL;
54 s->fd = -1;
e375fe34
EH
55 if (ret >= 0 && !(WIFEXITED(ret) && WEXITSTATUS(ret) == 0)) {
56 /* close succeeded, but non-zero exit code: */
57 ret = -EIO; /* fake errno value */
41ef56e6 58 }
065e2813 59 }
41ef56e6 60 return ret;
065e2813
AL
61}
62
f37afb5a 63void exec_start_outgoing_migration(MigrationState *s, const char *command, Error **errp)
065e2813 64{
065e2813
AL
65 FILE *f;
66
065e2813
AL
67 f = popen(command, "w");
68 if (f == NULL) {
f37afb5a
PB
69 error_setg_errno(errp, errno, "failed to popen the migration target");
70 return;
065e2813
AL
71 }
72
73 s->fd = fileno(f);
f37afb5a 74 assert(s->fd != -1);
90750009 75 socket_set_nonblock(s->fd);
065e2813
AL
76
77 s->opaque = qemu_popen(f, "w");
78
8ad9fa5d 79 s->close = exec_close;
065e2813
AL
80 s->get_error = file_errno;
81 s->write = file_write;
065e2813
AL
82
83 migrate_fd_connect(s);
065e2813
AL
84}
85
8a43b1ea 86static void exec_accept_incoming_migration(void *opaque)
065e2813 87{
8a43b1ea 88 QEMUFile *f = opaque;
065e2813 89
511c0231 90 process_incoming_migration(f);
cfaf6d36 91 qemu_set_fd_handler2(qemu_stdio_fd(f), NULL, NULL, NULL, NULL);
065e2813 92 qemu_fclose(f);
8a43b1ea
CL
93}
94
43eaae28 95void exec_start_incoming_migration(const char *command, Error **errp)
8a43b1ea
CL
96{
97 QEMUFile *f;
98
d0f2c4c6 99 DPRINTF("Attempting to start an incoming migration\n");
8a43b1ea
CL
100 f = qemu_popen_cmd(command, "r");
101 if(f == NULL) {
43eaae28
PB
102 error_setg_errno(errp, errno, "failed to popen the migration source");
103 return;
8a43b1ea
CL
104 }
105
7f79dd28 106 qemu_set_fd_handler2(qemu_stdio_fd(f), NULL,
1c39e2a2 107 exec_accept_incoming_migration, NULL, f);
065e2813 108}