include/standard-headers: add pvrdma related headers
[qemu.git] / migration / exec.c
blob0bc5a427dd6b4913ef8e1e44f07dc002e8d6858a
1 /*
2 * QEMU live migration
4 * Copyright IBM, Corp. 2008
5 * Copyright Dell MessageOne 2008
6 * Copyright Red Hat, Inc. 2015-2016
8 * Authors:
9 * Anthony Liguori <aliguori@us.ibm.com>
10 * Charles Duffy <charles_duffy@messageone.com>
11 * Daniel P. Berrange <berrange@redhat.com>
13 * This work is licensed under the terms of the GNU GPL, version 2. See
14 * the COPYING file in the top-level directory.
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.
20 #include "qemu/osdep.h"
21 #include "channel.h"
22 #include "exec.h"
23 #include "io/channel-command.h"
24 #include "trace.h"
27 void exec_start_outgoing_migration(MigrationState *s, const char *command, Error **errp)
29 QIOChannel *ioc;
30 const char *argv[] = { "/bin/sh", "-c", command, NULL };
32 trace_migration_exec_outgoing(command);
33 ioc = QIO_CHANNEL(qio_channel_command_new_spawn(argv,
34 O_RDWR,
35 errp));
36 if (!ioc) {
37 return;
40 qio_channel_set_name(ioc, "migration-exec-outgoing");
41 migration_channel_connect(s, ioc, NULL, NULL);
42 object_unref(OBJECT(ioc));
45 static gboolean exec_accept_incoming_migration(QIOChannel *ioc,
46 GIOCondition condition,
47 gpointer opaque)
49 migration_channel_process_incoming(ioc);
50 object_unref(OBJECT(ioc));
51 return G_SOURCE_REMOVE;
54 void exec_start_incoming_migration(const char *command, Error **errp)
56 QIOChannel *ioc;
57 const char *argv[] = { "/bin/sh", "-c", command, NULL };
59 trace_migration_exec_incoming(command);
60 ioc = QIO_CHANNEL(qio_channel_command_new_spawn(argv,
61 O_RDWR,
62 errp));
63 if (!ioc) {
64 return;
67 qio_channel_set_name(ioc, "migration-exec-incoming");
68 qio_channel_add_watch(ioc,
69 G_IO_IN,
70 exec_accept_incoming_migration,
71 NULL,
72 NULL);