migration: propagate error correctly
[qemu.git] / migration-tcp.c
blob619df2108da6494dc92761187392183e7f595e3a
1 /*
2 * QEMU live migration
4 * Copyright IBM, Corp. 2008
6 * Authors:
7 * Anthony Liguori <aliguori@us.ibm.com>
9 * This work is licensed under the terms of the GNU GPL, version 2. See
10 * the COPYING file in the top-level directory.
14 #include "qemu-common.h"
15 #include "qemu_socket.h"
16 #include "migration.h"
17 #include "qemu-char.h"
18 #include "buffered_file.h"
19 #include "block.h"
21 //#define DEBUG_MIGRATION_TCP
23 #ifdef DEBUG_MIGRATION_TCP
24 #define DPRINTF(fmt, ...) \
25 do { printf("migration-tcp: " fmt, ## __VA_ARGS__); } while (0)
26 #else
27 #define DPRINTF(fmt, ...) \
28 do { } while (0)
29 #endif
31 static int socket_errno(MigrationState *s)
33 return socket_error();
36 static int socket_write(MigrationState *s, const void * buf, size_t size)
38 return send(s->fd, buf, size, 0);
41 static int tcp_close(MigrationState *s)
43 DPRINTF("tcp_close\n");
44 if (s->fd != -1) {
45 close(s->fd);
46 s->fd = -1;
48 return 0;
52 static void tcp_wait_for_connect(void *opaque)
54 MigrationState *s = opaque;
55 int val, ret;
56 socklen_t valsize = sizeof(val);
58 DPRINTF("connect completed\n");
59 do {
60 ret = getsockopt(s->fd, SOL_SOCKET, SO_ERROR, (void *) &val, &valsize);
61 } while (ret == -1 && (socket_error()) == EINTR);
63 if (ret < 0) {
64 migrate_fd_error(s);
65 return;
68 qemu_set_fd_handler2(s->fd, NULL, NULL, NULL, NULL);
70 if (val == 0)
71 migrate_fd_connect(s);
72 else {
73 DPRINTF("error connecting %d\n", val);
74 migrate_fd_error(s);
78 int tcp_start_outgoing_migration(MigrationState *s, const char *host_port)
80 struct sockaddr_in addr;
81 int ret;
83 ret = parse_host_port(&addr, host_port);
84 if (ret < 0) {
85 return ret;
87 s->get_error = socket_errno;
88 s->write = socket_write;
89 s->close = tcp_close;
91 s->fd = qemu_socket(PF_INET, SOCK_STREAM, 0);
92 if (s->fd == -1) {
93 return -socket_error();
96 socket_set_nonblock(s->fd);
98 do {
99 ret = connect(s->fd, (struct sockaddr *)&addr, sizeof(addr));
100 if (ret == -1) {
101 ret = -socket_error();
103 if (ret == -EINPROGRESS || ret == -EWOULDBLOCK) {
104 qemu_set_fd_handler2(s->fd, NULL, NULL, tcp_wait_for_connect, s);
105 return 0;
107 } while (ret == -EINTR);
109 if (ret < 0) {
110 DPRINTF("connect failed\n");
111 migrate_fd_error(s);
112 return ret;
114 migrate_fd_connect(s);
115 return 0;
118 static void tcp_accept_incoming_migration(void *opaque)
120 struct sockaddr_in addr;
121 socklen_t addrlen = sizeof(addr);
122 int s = (intptr_t)opaque;
123 QEMUFile *f;
124 int c;
126 do {
127 c = qemu_accept(s, (struct sockaddr *)&addr, &addrlen);
128 } while (c == -1 && socket_error() == EINTR);
130 DPRINTF("accepted migration\n");
132 if (c == -1) {
133 fprintf(stderr, "could not accept migration connection\n");
134 goto out2;
137 f = qemu_fopen_socket(c);
138 if (f == NULL) {
139 fprintf(stderr, "could not qemu_fopen socket\n");
140 goto out;
143 process_incoming_migration(f);
144 qemu_fclose(f);
145 out:
146 close(c);
147 out2:
148 qemu_set_fd_handler2(s, NULL, NULL, NULL, NULL);
149 close(s);
152 int tcp_start_incoming_migration(const char *host_port)
154 struct sockaddr_in addr;
155 int val;
156 int s;
158 if (parse_host_port(&addr, host_port) < 0) {
159 fprintf(stderr, "invalid host/port combination: %s\n", host_port);
160 return -EINVAL;
163 s = qemu_socket(PF_INET, SOCK_STREAM, 0);
164 if (s == -1)
165 return -socket_error();
167 val = 1;
168 setsockopt(s, SOL_SOCKET, SO_REUSEADDR, (const char *)&val, sizeof(val));
170 if (bind(s, (struct sockaddr *)&addr, sizeof(addr)) == -1)
171 goto err;
173 if (listen(s, 1) == -1)
174 goto err;
176 qemu_set_fd_handler2(s, NULL, tcp_accept_incoming_migration, NULL,
177 (void *)(intptr_t)s);
179 return 0;
181 err:
182 close(s);
183 return -socket_error();