]>
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 | 18 | #include "qemu-common.h" |
99a0db9b | 19 | #include "notify.h" |
fa2756b7 | 20 | #include "error.h" |
376253ec | 21 | |
22f00a44 | 22 | typedef struct MigrationState MigrationState; |
dc7acc61 | 23 | |
22f00a44 | 24 | struct MigrationState |
065e2813 | 25 | { |
065e2813 AL |
26 | int64_t bandwidth_limit; |
27 | QEMUFile *file; | |
28 | int fd; | |
f327aa0c | 29 | Monitor *mon; |
065e2813 | 30 | int state; |
22f00a44 JQ |
31 | int (*get_error)(MigrationState *s); |
32 | int (*close)(MigrationState *s); | |
33 | int (*write)(MigrationState *s, const void *buff, size_t size); | |
065e2813 | 34 | void *opaque; |
3f77fc55 JQ |
35 | int blk; |
36 | int shared; | |
065e2813 AL |
37 | }; |
38 | ||
511c0231 JQ |
39 | void process_incoming_migration(QEMUFile *f); |
40 | ||
8ca5e801 | 41 | int qemu_start_incoming_migration(const char *uri); |
5bb7910a | 42 | |
b5d17adb | 43 | int do_migrate(Monitor *mon, const QDict *qdict, QObject **ret_data); |
5bb7910a | 44 | |
a0a3fd60 GC |
45 | uint64_t migrate_max_downtime(void); |
46 | ||
c86a6683 LC |
47 | void do_info_migrate_print(Monitor *mon, const QObject *data); |
48 | ||
49 | void do_info_migrate(Monitor *mon, QObject **ret_data); | |
5bb7910a | 50 | |
065e2813 AL |
51 | int exec_start_incoming_migration(const char *host_port); |
52 | ||
07af4452 | 53 | int exec_start_outgoing_migration(MigrationState *s, const char *host_port); |
065e2813 | 54 | |
34c9dd8e AL |
55 | int tcp_start_incoming_migration(const char *host_port); |
56 | ||
07af4452 | 57 | int tcp_start_outgoing_migration(MigrationState *s, const char *host_port); |
34c9dd8e | 58 | |
4951f65b CL |
59 | int unix_start_incoming_migration(const char *path); |
60 | ||
07af4452 | 61 | int unix_start_outgoing_migration(MigrationState *s, const char *path); |
4951f65b | 62 | |
5ac1fad3 PB |
63 | int fd_start_incoming_migration(const char *path); |
64 | ||
07af4452 | 65 | int fd_start_outgoing_migration(MigrationState *s, const char *fdname); |
5ac1fad3 | 66 | |
22f00a44 | 67 | void migrate_fd_error(MigrationState *s); |
065e2813 | 68 | |
22f00a44 | 69 | void migrate_fd_connect(MigrationState *s); |
065e2813 | 70 | |
99a0db9b GH |
71 | void add_migration_state_change_notifier(Notifier *notify); |
72 | void remove_migration_state_change_notifier(Notifier *notify); | |
afe2df69 | 73 | bool migration_is_active(MigrationState *); |
7073693b | 74 | bool migration_has_finished(MigrationState *); |
afe2df69 | 75 | bool migration_has_failed(MigrationState *); |
99a0db9b | 76 | |
adc56dda BS |
77 | uint64_t ram_bytes_remaining(void); |
78 | uint64_t ram_bytes_transferred(void); | |
79 | uint64_t ram_bytes_total(void); | |
80 | ||
81 | int ram_save_live(Monitor *mon, QEMUFile *f, int stage, void *opaque); | |
82 | int ram_load(QEMUFile *f, void *opaque, int version_id); | |
83 | ||
fa2756b7 AL |
84 | /** |
85 | * @migrate_add_blocker - prevent migration from proceeding | |
86 | * | |
87 | * @reason - an error to be returned whenever migration is attempted | |
88 | */ | |
89 | void migrate_add_blocker(Error *reason); | |
90 | ||
91 | /** | |
92 | * @migrate_del_blocker - remove a blocking error from migration | |
93 | * | |
94 | * @reason - the error blocking migration | |
95 | */ | |
96 | void migrate_del_blocker(Error *reason); | |
97 | ||
5bb7910a | 98 | #endif |