]> git.proxmox.com Git - mirror_qemu.git/blame - migration/socket.c
migration: fix typos in qapi-schema from latest migration additions
[mirror_qemu.git] / migration / socket.c
CommitLineData
4951f65b
CL
1/*
2 * QEMU live migration via Unix Domain Sockets
3 *
d984464e 4 * Copyright Red Hat, Inc. 2009-2016
4951f65b
CL
5 *
6 * Authors:
7 * Chris Lalancette <clalance@redhat.com>
d984464e 8 * Daniel P. Berrange <berrange@redhat.com>
4951f65b
CL
9 *
10 * This work is licensed under the terms of the GNU GPL, version 2. See
11 * the COPYING file in the top-level directory.
12 *
6b620ca3
PB
13 * Contributions after 2012-01-13 are licensed under the terms of the
14 * GNU GPL, version 2 or (at your option) any later version.
4951f65b
CL
15 */
16
1393a485 17#include "qemu/osdep.h"
d99598cc 18
4951f65b 19#include "qemu-common.h"
d99598cc 20#include "qemu/error-report.h"
d984464e 21#include "qapi/error.h"
caf71f86 22#include "migration/migration.h"
557ec5a0 23#include "migration/qemu-file.h"
d984464e
DB
24#include "io/channel-socket.h"
25#include "trace.h"
4951f65b 26
4951f65b 27
e65c67e4
DB
28static SocketAddress *tcp_build_address(const char *host_port, Error **errp)
29{
30 InetSocketAddress *iaddr = inet_parse(host_port, errp);
31 SocketAddress *saddr;
32
33 if (!iaddr) {
34 return NULL;
35 }
36
37 saddr = g_new0(SocketAddress, 1);
38 saddr->type = SOCKET_ADDRESS_KIND_INET;
39 saddr->u.inet.data = iaddr;
40
41 return saddr;
42}
43
44
d984464e
DB
45static SocketAddress *unix_build_address(const char *path)
46{
47 SocketAddress *saddr;
48
49 saddr = g_new0(SocketAddress, 1);
50 saddr->type = SOCKET_ADDRESS_KIND_UNIX;
51 saddr->u.q_unix.data = g_new0(UnixSocketAddress, 1);
52 saddr->u.q_unix.data->path = g_strdup(path);
53
54 return saddr;
55}
4951f65b 56
d984464e 57
e1226365
DB
58struct SocketConnectData {
59 MigrationState *s;
60 char *hostname;
61};
62
63static void socket_connect_data_free(void *opaque)
64{
65 struct SocketConnectData *data = opaque;
66 if (!data) {
67 return;
68 }
69 g_free(data->hostname);
70 g_free(data);
71}
72
6f860ae7
DB
73static void socket_outgoing_migration(Object *src,
74 Error *err,
75 gpointer opaque)
4951f65b 76{
e1226365 77 struct SocketConnectData *data = opaque;
d984464e 78 QIOChannel *sioc = QIO_CHANNEL(src);
4951f65b 79
d984464e 80 if (err) {
6f860ae7 81 trace_migration_socket_outgoing_error(error_get_pretty(err));
e1226365
DB
82 data->s->to_dst_file = NULL;
83 migrate_fd_error(data->s, err);
e08c95ce 84 } else {
e1226365
DB
85 trace_migration_socket_outgoing_connected(data->hostname);
86 migration_set_outgoing_channel(data->s, sioc, data->hostname);
4951f65b 87 }
d984464e 88 object_unref(src);
4951f65b
CL
89}
90
6f860ae7
DB
91static void socket_start_outgoing_migration(MigrationState *s,
92 SocketAddress *saddr,
93 Error **errp)
4951f65b 94{
6f860ae7 95 QIOChannelSocket *sioc = qio_channel_socket_new();
e1226365
DB
96 struct SocketConnectData *data = g_new0(struct SocketConnectData, 1);
97 data->s = s;
98 if (saddr->type == SOCKET_ADDRESS_KIND_INET) {
99 data->hostname = g_strdup(saddr->u.inet.data->host);
100 }
d984464e
DB
101 qio_channel_socket_connect_async(sioc,
102 saddr,
6f860ae7 103 socket_outgoing_migration,
e1226365
DB
104 data,
105 socket_connect_data_free);
d984464e 106 qapi_free_SocketAddress(saddr);
4951f65b
CL
107}
108
e65c67e4
DB
109void tcp_start_outgoing_migration(MigrationState *s,
110 const char *host_port,
111 Error **errp)
112{
113 SocketAddress *saddr = tcp_build_address(host_port, errp);
114 socket_start_outgoing_migration(s, saddr, errp);
115}
116
6f860ae7
DB
117void unix_start_outgoing_migration(MigrationState *s,
118 const char *path,
119 Error **errp)
120{
121 SocketAddress *saddr = unix_build_address(path);
122 socket_start_outgoing_migration(s, saddr, errp);
123}
124
d984464e 125
6f860ae7
DB
126static gboolean socket_accept_incoming_migration(QIOChannel *ioc,
127 GIOCondition condition,
128 gpointer opaque)
4951f65b 129{
d984464e
DB
130 QIOChannelSocket *sioc;
131 Error *err = NULL;
4951f65b 132
d984464e
DB
133 sioc = qio_channel_socket_accept(QIO_CHANNEL_SOCKET(ioc),
134 &err);
135 if (!sioc) {
136 error_report("could not accept migration connection (%s)",
137 error_get_pretty(err));
4951f65b
CL
138 goto out;
139 }
140
6f860ae7 141 trace_migration_socket_incoming_accepted();
d984464e
DB
142
143 migration_set_incoming_channel(migrate_get_current(),
144 QIO_CHANNEL(sioc));
145 object_unref(OBJECT(sioc));
ab52a824 146
4951f65b 147out:
d984464e
DB
148 /* Close listening socket as its no longer needed */
149 qio_channel_close(ioc, NULL);
150 return FALSE; /* unregister */
4951f65b
CL
151}
152
d984464e 153
6f860ae7
DB
154static void socket_start_incoming_migration(SocketAddress *saddr,
155 Error **errp)
4951f65b 156{
6f860ae7 157 QIOChannelSocket *listen_ioc = qio_channel_socket_new();
4951f65b 158
d984464e
DB
159 if (qio_channel_socket_listen_sync(listen_ioc, saddr, errp) < 0) {
160 object_unref(OBJECT(listen_ioc));
161 qapi_free_SocketAddress(saddr);
43eaae28 162 return;
4951f65b
CL
163 }
164
d984464e
DB
165 qio_channel_add_watch(QIO_CHANNEL(listen_ioc),
166 G_IO_IN,
6f860ae7 167 socket_accept_incoming_migration,
d984464e
DB
168 listen_ioc,
169 (GDestroyNotify)object_unref);
d984464e 170 qapi_free_SocketAddress(saddr);
4951f65b 171}
6f860ae7 172
e65c67e4
DB
173void tcp_start_incoming_migration(const char *host_port, Error **errp)
174{
175 SocketAddress *saddr = tcp_build_address(host_port, errp);
176 socket_start_incoming_migration(saddr, errp);
177}
178
6f860ae7
DB
179void unix_start_incoming_migration(const char *path, Error **errp)
180{
181 SocketAddress *saddr = unix_build_address(path);
182 socket_start_incoming_migration(saddr, errp);
183}