2017-04-17 21:26:27 +03:00
|
|
|
/*
|
|
|
|
* QEMU migration miscellaneus exported functions
|
|
|
|
*
|
|
|
|
* Copyright IBM, Corp. 2008
|
|
|
|
*
|
|
|
|
* Authors:
|
|
|
|
* Anthony Liguori <aliguori@us.ibm.com>
|
|
|
|
*
|
|
|
|
* This work is licensed under the terms of the GNU GPL, version 2. See
|
|
|
|
* the COPYING file in the top-level directory.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef MIGRATION_MISC_H
|
|
|
|
#define MIGRATION_MISC_H
|
|
|
|
|
2017-04-24 17:51:10 +03:00
|
|
|
#include "qemu/notify.h"
|
2023-10-25 22:44:24 +03:00
|
|
|
#include "qapi/qapi-types-migration.h"
|
2019-02-27 16:24:06 +03:00
|
|
|
#include "qapi/qapi-types-net.h"
|
2017-04-24 17:51:10 +03:00
|
|
|
|
2017-04-17 21:26:27 +03:00
|
|
|
/* migration/ram.c */
|
|
|
|
|
2018-12-11 11:24:51 +03:00
|
|
|
typedef enum PrecopyNotifyReason {
|
|
|
|
PRECOPY_NOTIFY_SETUP = 0,
|
|
|
|
PRECOPY_NOTIFY_BEFORE_BITMAP_SYNC = 1,
|
|
|
|
PRECOPY_NOTIFY_AFTER_BITMAP_SYNC = 2,
|
|
|
|
PRECOPY_NOTIFY_COMPLETE = 3,
|
|
|
|
PRECOPY_NOTIFY_CLEANUP = 4,
|
|
|
|
PRECOPY_NOTIFY_MAX = 5,
|
|
|
|
} PrecopyNotifyReason;
|
|
|
|
|
|
|
|
typedef struct PrecopyNotifyData {
|
|
|
|
enum PrecopyNotifyReason reason;
|
|
|
|
} PrecopyNotifyData;
|
|
|
|
|
|
|
|
void precopy_infrastructure_init(void);
|
|
|
|
void precopy_add_notifier(NotifierWithReturn *n);
|
|
|
|
void precopy_remove_notifier(NotifierWithReturn *n);
|
|
|
|
int precopy_notify(PrecopyNotifyReason reason, Error **errp);
|
|
|
|
|
2017-04-17 21:26:27 +03:00
|
|
|
void ram_mig_init(void);
|
2018-12-11 11:24:50 +03:00
|
|
|
void qemu_guest_free_page_hint(void *addr, size_t len);
|
2023-07-06 10:56:08 +03:00
|
|
|
bool migrate_ram_is_ignored(RAMBlock *block);
|
2017-04-17 21:26:27 +03:00
|
|
|
|
2017-04-21 15:31:22 +03:00
|
|
|
/* migration/block.c */
|
|
|
|
|
|
|
|
#ifdef CONFIG_LIVE_BLOCK_MIGRATION
|
|
|
|
void blk_mig_init(void);
|
|
|
|
#else
|
|
|
|
static inline void blk_mig_init(void) {}
|
|
|
|
#endif
|
|
|
|
|
2019-02-27 16:24:06 +03:00
|
|
|
AnnounceParameters *migrate_announce_params(void);
|
2017-04-24 14:51:10 +03:00
|
|
|
/* migration/savevm.c */
|
|
|
|
|
|
|
|
void dump_vmstate_json_to_file(FILE *out_fp);
|
2017-04-24 20:02:44 +03:00
|
|
|
|
|
|
|
/* migration/migration.c */
|
2017-06-27 07:10:13 +03:00
|
|
|
void migration_object_init(void);
|
2019-02-27 19:49:00 +03:00
|
|
|
void migration_shutdown(void);
|
2017-04-24 20:02:44 +03:00
|
|
|
bool migration_is_idle(void);
|
2019-07-17 03:53:41 +03:00
|
|
|
bool migration_is_active(MigrationState *);
|
2024-02-22 20:28:36 +03:00
|
|
|
bool migrate_mode_is_cpr(MigrationState *);
|
2024-02-22 20:28:30 +03:00
|
|
|
|
|
|
|
typedef enum MigrationEventType {
|
|
|
|
MIG_EVENT_PRECOPY_SETUP,
|
|
|
|
MIG_EVENT_PRECOPY_DONE,
|
|
|
|
MIG_EVENT_PRECOPY_FAILED,
|
|
|
|
MIG_EVENT_MAX
|
|
|
|
} MigrationEventType;
|
|
|
|
|
|
|
|
typedef struct MigrationEvent {
|
|
|
|
MigrationEventType type;
|
|
|
|
} MigrationEvent;
|
|
|
|
|
2024-02-22 20:28:35 +03:00
|
|
|
/*
|
|
|
|
* A MigrationNotifyFunc may return an error code and an Error object,
|
|
|
|
* but only when @e->type is MIG_EVENT_PRECOPY_SETUP. The code is an int
|
|
|
|
* to allow for different failure modes and recovery actions.
|
|
|
|
*/
|
2024-02-22 20:28:32 +03:00
|
|
|
typedef int (*MigrationNotifyFunc)(NotifierWithReturn *notify,
|
|
|
|
MigrationEvent *e, Error **errp);
|
|
|
|
|
2024-02-22 20:28:30 +03:00
|
|
|
/*
|
|
|
|
* Register the notifier @notify to be called when a migration event occurs
|
|
|
|
* for MIG_MODE_NORMAL, as specified by the MigrationEvent passed to @func.
|
|
|
|
* Notifiers may receive events in any of the following orders:
|
|
|
|
* - MIG_EVENT_PRECOPY_SETUP -> MIG_EVENT_PRECOPY_DONE
|
|
|
|
* - MIG_EVENT_PRECOPY_SETUP -> MIG_EVENT_PRECOPY_FAILED
|
|
|
|
* - MIG_EVENT_PRECOPY_FAILED
|
|
|
|
*/
|
2024-02-22 20:28:29 +03:00
|
|
|
void migration_add_notifier(NotifierWithReturn *notify,
|
2024-02-22 20:28:32 +03:00
|
|
|
MigrationNotifyFunc func);
|
2024-02-22 20:28:30 +03:00
|
|
|
|
2024-02-22 20:28:33 +03:00
|
|
|
/*
|
|
|
|
* Same as migration_add_notifier, but applies to be specified @mode.
|
|
|
|
*/
|
|
|
|
void migration_add_notifier_mode(NotifierWithReturn *notify,
|
|
|
|
MigrationNotifyFunc func, MigMode mode);
|
|
|
|
|
2024-02-22 20:28:29 +03:00
|
|
|
void migration_remove_notifier(NotifierWithReturn *notify);
|
2024-02-22 20:28:35 +03:00
|
|
|
int migration_call_notifiers(MigrationState *s, MigrationEventType type,
|
|
|
|
Error **errp);
|
2017-04-24 20:02:44 +03:00
|
|
|
bool migration_in_setup(MigrationState *);
|
|
|
|
bool migration_has_finished(MigrationState *);
|
|
|
|
bool migration_has_failed(MigrationState *);
|
|
|
|
/* ...and after the device transmission */
|
2023-01-17 14:22:46 +03:00
|
|
|
/* True if incoming migration entered POSTCOPY_INCOMING_DISCARD */
|
2020-06-26 10:22:33 +03:00
|
|
|
bool migration_in_incoming_postcopy(void);
|
2023-01-17 14:22:46 +03:00
|
|
|
/* True if incoming migration entered POSTCOPY_INCOMING_ADVISE */
|
|
|
|
bool migration_incoming_postcopy_advised(void);
|
2021-04-01 12:22:24 +03:00
|
|
|
/* True if background snapshot is active */
|
|
|
|
bool migration_in_bg_snapshot(void);
|
2017-06-27 07:10:15 +03:00
|
|
|
|
2018-03-13 22:34:01 +03:00
|
|
|
/* migration/block-dirty-bitmap.c */
|
|
|
|
void dirty_bitmap_mig_init(void);
|
|
|
|
|
2017-04-17 21:26:27 +03:00
|
|
|
#endif
|