]> git.proxmox.com Git - qemu.git/blame - migration-tcp.c
Close socket file descriptor when qemu_accept fails
[qemu.git] / migration-tcp.c
CommitLineData
34c9dd8e
AL
1/*
2 * QEMU live migration
3 *
4 * Copyright IBM, Corp. 2008
5 *
6 * Authors:
7 * Anthony Liguori <aliguori@us.ibm.com>
8 *
9 * This work is licensed under the terms of the GNU GPL, version 2. See
10 * the COPYING file in the top-level directory.
11 *
12 */
13
14#include "qemu-common.h"
15#include "qemu_socket.h"
16#include "migration.h"
17#include "qemu-char.h"
18#include "sysemu.h"
34c9dd8e
AL
19#include "buffered_file.h"
20#include "block.h"
21
22//#define DEBUG_MIGRATION_TCP
23
34c9dd8e 24#ifdef DEBUG_MIGRATION_TCP
d0f2c4c6 25#define DPRINTF(fmt, ...) \
34c9dd8e
AL
26 do { printf("migration-tcp: " fmt, ## __VA_ARGS__); } while (0)
27#else
d0f2c4c6 28#define DPRINTF(fmt, ...) \
34c9dd8e
AL
29 do { } while (0)
30#endif
31
065e2813 32static int socket_errno(FdMigrationState *s)
34c9dd8e 33{
8ad9fa5d 34 return socket_error();
34c9dd8e
AL
35}
36
065e2813 37static int socket_write(FdMigrationState *s, const void * buf, size_t size)
34c9dd8e 38{
065e2813 39 return send(s->fd, buf, size, 0);
34c9dd8e
AL
40}
41
065e2813 42static int tcp_close(FdMigrationState *s)
34c9dd8e 43{
d0f2c4c6 44 DPRINTF("tcp_close\n");
34c9dd8e 45 if (s->fd != -1) {
ff8d81d8
AL
46 close(s->fd);
47 s->fd = -1;
34c9dd8e
AL
48 }
49 return 0;
50}
51
34c9dd8e
AL
52
53static void tcp_wait_for_connect(void *opaque)
54{
55 FdMigrationState *s = opaque;
56 int val, ret;
4761a48b 57 socklen_t valsize = sizeof(val);
34c9dd8e 58
d0f2c4c6 59 DPRINTF("connect completed\n");
34c9dd8e 60 do {
0a656f5f 61 ret = getsockopt(s->fd, SOL_SOCKET, SO_ERROR, (void *) &val, &valsize);
065e2813 62 } while (ret == -1 && (s->get_error(s)) == EINTR);
34c9dd8e
AL
63
64 if (ret < 0) {
065e2813 65 migrate_fd_error(s);
34c9dd8e
AL
66 return;
67 }
68
69 qemu_set_fd_handler2(s->fd, NULL, NULL, NULL, NULL);
70
71 if (val == 0)
065e2813 72 migrate_fd_connect(s);
34c9dd8e 73 else {
d0f2c4c6 74 DPRINTF("error connecting %d\n", val);
065e2813 75 migrate_fd_error(s);
34c9dd8e 76 }
34c9dd8e
AL
77}
78
f327aa0c
JK
79MigrationState *tcp_start_outgoing_migration(Monitor *mon,
80 const char *host_port,
ff8d81d8 81 int64_t bandwidth_limit,
c163b5ca 82 int detach,
83 int blk,
84 int inc)
34c9dd8e
AL
85{
86 struct sockaddr_in addr;
87 FdMigrationState *s;
88 int ret;
89
90 if (parse_host_port(&addr, host_port) < 0)
91 return NULL;
92
93 s = qemu_mallocz(sizeof(*s));
34c9dd8e 94
065e2813
AL
95 s->get_error = socket_errno;
96 s->write = socket_write;
97 s->close = tcp_close;
98 s->mig_state.cancel = migrate_fd_cancel;
99 s->mig_state.get_status = migrate_fd_get_status;
100 s->mig_state.release = migrate_fd_release;
34c9dd8e 101
c163b5ca 102 s->mig_state.blk = blk;
103 s->mig_state.shared = inc;
104
34c9dd8e 105 s->state = MIG_STATE_ACTIVE;
f327aa0c 106 s->mon = NULL;
34c9dd8e 107 s->bandwidth_limit = bandwidth_limit;
40ff6d7e 108 s->fd = qemu_socket(PF_INET, SOCK_STREAM, 0);
34c9dd8e
AL
109 if (s->fd == -1) {
110 qemu_free(s);
ff8d81d8 111 return NULL;
34c9dd8e
AL
112 }
113
17e90973 114 socket_set_nonblock(s->fd);
34c9dd8e 115
f327aa0c
JK
116 if (!detach) {
117 migrate_fd_monitor_suspend(s, mon);
118 }
34c9dd8e
AL
119
120 do {
121 ret = connect(s->fd, (struct sockaddr *)&addr, sizeof(addr));
122 if (ret == -1)
065e2813 123 ret = -(s->get_error(s));
34c9dd8e 124
c1d36665 125 if (ret == -EINPROGRESS || ret == -EWOULDBLOCK)
34c9dd8e
AL
126 qemu_set_fd_handler2(s->fd, NULL, NULL, tcp_wait_for_connect, s);
127 } while (ret == -EINTR);
128
c1d36665 129 if (ret < 0 && ret != -EINPROGRESS && ret != -EWOULDBLOCK) {
d0f2c4c6 130 DPRINTF("connect failed\n");
304e3a7c 131 migrate_fd_error(s);
34c9dd8e 132 } else if (ret >= 0)
065e2813 133 migrate_fd_connect(s);
34c9dd8e
AL
134
135 return &s->mig_state;
136}
137
138static void tcp_accept_incoming_migration(void *opaque)
139{
140 struct sockaddr_in addr;
141 socklen_t addrlen = sizeof(addr);
142 int s = (unsigned long)opaque;
143 QEMUFile *f;
511c0231 144 int c;
34c9dd8e
AL
145
146 do {
40ff6d7e 147 c = qemu_accept(s, (struct sockaddr *)&addr, &addrlen);
c1d36665 148 } while (c == -1 && socket_error() == EINTR);
34c9dd8e 149
d0f2c4c6 150 DPRINTF("accepted migration\n");
34c9dd8e
AL
151
152 if (c == -1) {
153 fprintf(stderr, "could not accept migration connection\n");
d092c108 154 goto out2;
34c9dd8e
AL
155 }
156
c1d36665 157 f = qemu_fopen_socket(c);
34c9dd8e
AL
158 if (f == NULL) {
159 fprintf(stderr, "could not qemu_fopen socket\n");
160 goto out;
161 }
162
511c0231 163 process_incoming_migration(f);
34c9dd8e
AL
164 qemu_fclose(f);
165out:
d092c108
SH
166 close(c);
167out2:
cfaf6d36
JQ
168 qemu_set_fd_handler2(s, NULL, NULL, NULL, NULL);
169 close(s);
34c9dd8e
AL
170}
171
172int tcp_start_incoming_migration(const char *host_port)
173{
174 struct sockaddr_in addr;
175 int val;
176 int s;
177
178 if (parse_host_port(&addr, host_port) < 0) {
179 fprintf(stderr, "invalid host/port combination: %s\n", host_port);
180 return -EINVAL;
181 }
182
40ff6d7e 183 s = qemu_socket(PF_INET, SOCK_STREAM, 0);
34c9dd8e 184 if (s == -1)
c1d36665 185 return -socket_error();
34c9dd8e
AL
186
187 val = 1;
188 setsockopt(s, SOL_SOCKET, SO_REUSEADDR, (const char *)&val, sizeof(val));
189
190 if (bind(s, (struct sockaddr *)&addr, sizeof(addr)) == -1)
191 goto err;
192
193 if (listen(s, 1) == -1)
194 goto err;
195
196 qemu_set_fd_handler2(s, NULL, tcp_accept_incoming_migration, NULL,
197 (void *)(unsigned long)s);
198
199 return 0;
200
201err:
202 close(s);
c1d36665 203 return -socket_error();
34c9dd8e 204}