]> git.proxmox.com Git - mirror_qemu.git/blame - migration/exec.c
migration: Define MultifdRecvParams sooner
[mirror_qemu.git] / migration / exec.c
CommitLineData
065e2813
AL
1/*
2 * QEMU live migration
3 *
4 * Copyright IBM, Corp. 2008
5 * Copyright Dell MessageOne 2008
527792fa 6 * Copyright Red Hat, Inc. 2015-2016
065e2813
AL
7 *
8 * Authors:
9 * Anthony Liguori <aliguori@us.ibm.com>
10 * Charles Duffy <charles_duffy@messageone.com>
527792fa 11 * Daniel P. Berrange <berrange@redhat.com>
065e2813
AL
12 *
13 * This work is licensed under the terms of the GNU GPL, version 2. See
14 * the COPYING file in the top-level directory.
15 *
6b620ca3
PB
16 * Contributions after 2012-01-13 are licensed under the terms of the
17 * GNU GPL, version 2 or (at your option) any later version.
065e2813
AL
18 */
19
1393a485 20#include "qemu/osdep.h"
dd4339c5 21#include "channel.h"
f4dbe1bf 22#include "exec.h"
527792fa
DB
23#include "io/channel-command.h"
24#include "trace.h"
065e2813 25
065e2813 26
f37afb5a 27void exec_start_outgoing_migration(MigrationState *s, const char *command, Error **errp)
065e2813 28{
527792fa
DB
29 QIOChannel *ioc;
30 const char *argv[] = { "/bin/sh", "-c", command, NULL };
31
32 trace_migration_exec_outgoing(command);
33 ioc = QIO_CHANNEL(qio_channel_command_new_spawn(argv,
062d81f0 34 O_RDWR,
527792fa
DB
35 errp));
36 if (!ioc) {
f37afb5a 37 return;
065e2813
AL
38 }
39
6f01f136 40 qio_channel_set_name(ioc, "migration-exec-outgoing");
688a3dcb 41 migration_channel_connect(s, ioc, NULL, NULL);
527792fa 42 object_unref(OBJECT(ioc));
065e2813
AL
43}
44
527792fa
DB
45static gboolean exec_accept_incoming_migration(QIOChannel *ioc,
46 GIOCondition condition,
47 gpointer opaque)
065e2813 48{
54314711 49 migration_channel_process_incoming(ioc);
527792fa 50 object_unref(OBJECT(ioc));
2a543bfd 51 return G_SOURCE_REMOVE;
8a43b1ea
CL
52}
53
43eaae28 54void exec_start_incoming_migration(const char *command, Error **errp)
8a43b1ea 55{
527792fa
DB
56 QIOChannel *ioc;
57 const char *argv[] = { "/bin/sh", "-c", command, NULL };
8a43b1ea 58
527792fa
DB
59 trace_migration_exec_incoming(command);
60 ioc = QIO_CHANNEL(qio_channel_command_new_spawn(argv,
062d81f0 61 O_RDWR,
527792fa
DB
62 errp));
63 if (!ioc) {
43eaae28 64 return;
8a43b1ea
CL
65 }
66
6f01f136 67 qio_channel_set_name(ioc, "migration-exec-incoming");
527792fa
DB
68 qio_channel_add_watch(ioc,
69 G_IO_IN,
70 exec_accept_incoming_migration,
71 NULL,
72 NULL);
065e2813 73}