]>
Commit | Line | Data |
---|---|---|
5bb7910a AL |
1 | /* |
2 | * QEMU live migration | |
3 | * | |
4 | * Copyright IBM, Corp. 2008 | |
5 | * | |
6 | * Authors: | |
7 | * Anthony Liguori <[email protected]> | |
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 | #ifndef QEMU_MIGRATION_H | |
15 | #define QEMU_MIGRATION_H | |
16 | ||
f96fc8a0 | 17 | #include "qdict.h" |
376253ec AL |
18 | #include "qemu-common.h" |
19 | ||
5bb7910a AL |
20 | #define MIG_STATE_ERROR -1 |
21 | #define MIG_STATE_COMPLETED 0 | |
22 | #define MIG_STATE_CANCELLED 1 | |
23 | #define MIG_STATE_ACTIVE 2 | |
24 | ||
25 | typedef struct MigrationState MigrationState; | |
26 | ||
27 | struct MigrationState | |
28 | { | |
29 | /* FIXME: add more accessors to print migration info */ | |
30 | void (*cancel)(MigrationState *s); | |
31 | int (*get_status)(MigrationState *s); | |
32 | void (*release)(MigrationState *s); | |
c163b5ca LS |
33 | int blk; |
34 | int shared; | |
5bb7910a AL |
35 | }; |
36 | ||
065e2813 AL |
37 | typedef struct FdMigrationState FdMigrationState; |
38 | ||
39 | struct FdMigrationState | |
40 | { | |
41 | MigrationState mig_state; | |
42 | int64_t bandwidth_limit; | |
43 | QEMUFile *file; | |
44 | int fd; | |
f327aa0c | 45 | Monitor *mon; |
065e2813 AL |
46 | int state; |
47 | int (*get_error)(struct FdMigrationState*); | |
48 | int (*close)(struct FdMigrationState*); | |
49 | int (*write)(struct FdMigrationState*, const void *, size_t); | |
50 | void *opaque; | |
51 | }; | |
52 | ||
5bb7910a AL |
53 | void qemu_start_incoming_migration(const char *uri); |
54 | ||
5f79da00 | 55 | void do_migrate(Monitor *mon, const QDict *qdict, QObject **ret_data); |
5bb7910a | 56 | |
911d2963 | 57 | void do_migrate_cancel(Monitor *mon, const QDict *qdict, QObject **ret_data); |
5bb7910a | 58 | |
3a492104 | 59 | void do_migrate_set_speed(Monitor *mon, const QDict *qdict, QObject **ret_data); |
5bb7910a | 60 | |
a0a3fd60 GC |
61 | uint64_t migrate_max_downtime(void); |
62 | ||
d54908a5 | 63 | void do_migrate_set_downtime(Monitor *mon, const QDict *qdict); |
2ea42952 | 64 | |
c86a6683 LC |
65 | void do_info_migrate_print(Monitor *mon, const QObject *data); |
66 | ||
67 | void do_info_migrate(Monitor *mon, QObject **ret_data); | |
5bb7910a | 68 | |
065e2813 AL |
69 | int exec_start_incoming_migration(const char *host_port); |
70 | ||
f327aa0c JK |
71 | MigrationState *exec_start_outgoing_migration(Monitor *mon, |
72 | const char *host_port, | |
c163b5ca LS |
73 | int64_t bandwidth_limit, |
74 | int detach, | |
75 | int blk, | |
76 | int inc); | |
065e2813 | 77 | |
34c9dd8e AL |
78 | int tcp_start_incoming_migration(const char *host_port); |
79 | ||
f327aa0c JK |
80 | MigrationState *tcp_start_outgoing_migration(Monitor *mon, |
81 | const char *host_port, | |
34c9dd8e | 82 | int64_t bandwidth_limit, |
c163b5ca LS |
83 | int detach, |
84 | int blk, | |
85 | int inc); | |
34c9dd8e | 86 | |
4951f65b CL |
87 | int unix_start_incoming_migration(const char *path); |
88 | ||
f327aa0c JK |
89 | MigrationState *unix_start_outgoing_migration(Monitor *mon, |
90 | const char *path, | |
4951f65b | 91 | int64_t bandwidth_limit, |
c163b5ca LS |
92 | int detach, |
93 | int blk, | |
94 | int inc); | |
4951f65b | 95 | |
5ac1fad3 PB |
96 | int fd_start_incoming_migration(const char *path); |
97 | ||
98 | MigrationState *fd_start_outgoing_migration(Monitor *mon, | |
99 | const char *fdname, | |
100 | int64_t bandwidth_limit, | |
c163b5ca LS |
101 | int detach, |
102 | int blk, | |
103 | int inc); | |
5ac1fad3 | 104 | |
f327aa0c | 105 | void migrate_fd_monitor_suspend(FdMigrationState *s, Monitor *mon); |
731b0364 | 106 | |
065e2813 AL |
107 | void migrate_fd_error(FdMigrationState *s); |
108 | ||
109 | void migrate_fd_cleanup(FdMigrationState *s); | |
110 | ||
111 | void migrate_fd_put_notify(void *opaque); | |
112 | ||
113 | ssize_t migrate_fd_put_buffer(void *opaque, const void *data, size_t size); | |
114 | ||
115 | void migrate_fd_connect(FdMigrationState *s); | |
116 | ||
117 | void migrate_fd_put_ready(void *opaque); | |
118 | ||
119 | int migrate_fd_get_status(MigrationState *mig_state); | |
120 | ||
121 | void migrate_fd_cancel(MigrationState *mig_state); | |
122 | ||
123 | void migrate_fd_release(MigrationState *mig_state); | |
124 | ||
125 | void migrate_fd_wait_for_unfreeze(void *opaque); | |
126 | ||
127 | int migrate_fd_close(void *opaque); | |
128 | ||
129 | static inline FdMigrationState *migrate_to_fms(MigrationState *mig_state) | |
130 | { | |
131 | return container_of(mig_state, FdMigrationState, mig_state); | |
132 | } | |
133 | ||
5bb7910a | 134 | #endif |