2 * QEMU live migration via generic fd
4 * Copyright Red Hat, Inc. 2009-2016
7 * Chris Lalancette <clalance@redhat.com>
8 * Daniel P. Berrange <berrange@redhat.com>
10 * This work is licensed under the terms of the GNU GPL, version 2. See
11 * the COPYING file in the top-level directory.
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.
17 #include "qemu/osdep.h"
18 #include "qapi/error.h"
21 #include "migration.h"
22 #include "monitor/monitor.h"
23 #include "io/channel-file.h"
24 #include "io/channel-util.h"
29 static struct FdOutgoingArgs
{
33 int fd_args_get_fd(void)
35 return outgoing_args
.fd
;
38 void fd_cleanup_outgoing_migration(void)
40 if (outgoing_args
.fd
> 0) {
41 close(outgoing_args
.fd
);
42 outgoing_args
.fd
= -1;
46 void fd_start_outgoing_migration(MigrationState
*s
, const char *fdname
, Error
**errp
)
49 int fd
= monitor_get_fd(monitor_cur(), fdname
, errp
);
51 outgoing_args
.fd
= -1;
57 trace_migration_fd_outgoing(fd
);
58 ioc
= qio_channel_new_fd(fd
, errp
);
64 outgoing_args
.fd
= fd
;
66 qio_channel_set_name(ioc
, "migration-fd-outgoing");
67 migration_channel_connect(s
, ioc
, NULL
, NULL
);
68 object_unref(OBJECT(ioc
));
71 static gboolean
fd_accept_incoming_migration(QIOChannel
*ioc
,
72 GIOCondition condition
,
75 migration_channel_process_incoming(ioc
);
76 object_unref(OBJECT(ioc
));
77 return G_SOURCE_REMOVE
;
80 void fd_start_incoming_migration(const char *fdname
, Error
**errp
)
83 int fd
= monitor_fd_param(monitor_cur(), fdname
, errp
);
88 trace_migration_fd_incoming(fd
);
90 ioc
= qio_channel_new_fd(fd
, errp
);
96 qio_channel_set_name(ioc
, "migration-fd-incoming");
97 qio_channel_add_watch_full(ioc
, G_IO_IN
,
98 fd_accept_incoming_migration
,
100 g_main_context_get_thread_default());
102 if (migrate_multifd()) {
103 int channels
= migrate_multifd_channels();
106 ioc
= QIO_CHANNEL(qio_channel_file_new_fd(dup(fd
)));
108 if (QIO_CHANNEL_FILE(ioc
)->fd
== -1) {
109 error_setg(errp
, "Failed to duplicate fd %d", fd
);
113 qio_channel_set_name(ioc
, "migration-fd-incoming");
114 qio_channel_add_watch_full(ioc
, G_IO_IN
,
115 fd_accept_incoming_migration
,
117 g_main_context_get_thread_default());