Merge tag 'v9.0.0-rc3'
[qemu/ar7.git] / hw / vfio / migration.c
blob1149c6b3740f7f7bb8febdedf435be1adb223e59
1 /*
2 * Migration support for VFIO devices
4 * Copyright NVIDIA, Inc. 2020
6 * This work is licensed under the terms of the GNU GPL, version 2. See
7 * the COPYING file in the top-level directory.
8 */
10 #include "qemu/osdep.h"
11 #include "qemu/main-loop.h"
12 #include "qemu/cutils.h"
13 #include "qemu/units.h"
14 #include "qemu/error-report.h"
15 #include <linux/vfio.h>
16 #include <sys/ioctl.h>
18 #include "sysemu/runstate.h"
19 #include "hw/vfio/vfio-common.h"
20 #include "migration/misc.h"
21 #include "migration/savevm.h"
22 #include "migration/vmstate.h"
23 #include "migration/qemu-file.h"
24 #include "migration/register.h"
25 #include "migration/blocker.h"
26 #include "qapi/error.h"
27 #include "exec/ramlist.h"
28 #include "exec/ram_addr.h"
29 #include "pci.h"
30 #include "trace.h"
31 #include "hw/hw.h"
34 * Flags to be used as unique delimiters for VFIO devices in the migration
35 * stream. These flags are composed as:
36 * 0xffffffff => MSB 32-bit all 1s
37 * 0xef10 => Magic ID, represents emulated (virtual) function IO
38 * 0x0000 => 16-bits reserved for flags
40 * The beginning of state information is marked by _DEV_CONFIG_STATE,
41 * _DEV_SETUP_STATE, or _DEV_DATA_STATE, respectively. The end of a
42 * certain state information is marked by _END_OF_STATE.
44 #define VFIO_MIG_FLAG_END_OF_STATE (0xffffffffef100001ULL)
45 #define VFIO_MIG_FLAG_DEV_CONFIG_STATE (0xffffffffef100002ULL)
46 #define VFIO_MIG_FLAG_DEV_SETUP_STATE (0xffffffffef100003ULL)
47 #define VFIO_MIG_FLAG_DEV_DATA_STATE (0xffffffffef100004ULL)
48 #define VFIO_MIG_FLAG_DEV_INIT_DATA_SENT (0xffffffffef100005ULL)
51 * This is an arbitrary size based on migration of mlx5 devices, where typically
52 * total device migration size is on the order of 100s of MB. Testing with
53 * larger values, e.g. 128MB and 1GB, did not show a performance improvement.
55 #define VFIO_MIG_DEFAULT_DATA_BUFFER_SIZE (1 * MiB)
57 static int64_t bytes_transferred;
59 static const char *mig_state_to_str(enum vfio_device_mig_state state)
61 switch (state) {
62 case VFIO_DEVICE_STATE_ERROR:
63 return "ERROR";
64 case VFIO_DEVICE_STATE_STOP:
65 return "STOP";
66 case VFIO_DEVICE_STATE_RUNNING:
67 return "RUNNING";
68 case VFIO_DEVICE_STATE_STOP_COPY:
69 return "STOP_COPY";
70 case VFIO_DEVICE_STATE_RESUMING:
71 return "RESUMING";
72 case VFIO_DEVICE_STATE_RUNNING_P2P:
73 return "RUNNING_P2P";
74 case VFIO_DEVICE_STATE_PRE_COPY:
75 return "PRE_COPY";
76 case VFIO_DEVICE_STATE_PRE_COPY_P2P:
77 return "PRE_COPY_P2P";
78 default:
79 return "UNKNOWN STATE";
83 static int vfio_migration_set_state(VFIODevice *vbasedev,
84 enum vfio_device_mig_state new_state,
85 enum vfio_device_mig_state recover_state)
87 VFIOMigration *migration = vbasedev->migration;
88 uint64_t buf[DIV_ROUND_UP(sizeof(struct vfio_device_feature) +
89 sizeof(struct vfio_device_feature_mig_state),
90 sizeof(uint64_t))] = {};
91 struct vfio_device_feature *feature = (struct vfio_device_feature *)buf;
92 struct vfio_device_feature_mig_state *mig_state =
93 (struct vfio_device_feature_mig_state *)feature->data;
94 int ret;
96 feature->argsz = sizeof(buf);
97 feature->flags =
98 VFIO_DEVICE_FEATURE_SET | VFIO_DEVICE_FEATURE_MIG_DEVICE_STATE;
99 mig_state->device_state = new_state;
100 if (ioctl(vbasedev->fd, VFIO_DEVICE_FEATURE, feature)) {
101 /* Try to set the device in some good state */
102 ret = -errno;
104 if (recover_state == VFIO_DEVICE_STATE_ERROR) {
105 error_report("%s: Failed setting device state to %s, err: %s. "
106 "Recover state is ERROR. Resetting device",
107 vbasedev->name, mig_state_to_str(new_state),
108 strerror(errno));
110 goto reset_device;
113 error_report(
114 "%s: Failed setting device state to %s, err: %s. Setting device in recover state %s",
115 vbasedev->name, mig_state_to_str(new_state),
116 strerror(errno), mig_state_to_str(recover_state));
118 mig_state->device_state = recover_state;
119 if (ioctl(vbasedev->fd, VFIO_DEVICE_FEATURE, feature)) {
120 ret = -errno;
121 error_report(
122 "%s: Failed setting device in recover state, err: %s. Resetting device",
123 vbasedev->name, strerror(errno));
125 goto reset_device;
128 migration->device_state = recover_state;
130 return ret;
133 migration->device_state = new_state;
134 if (mig_state->data_fd != -1) {
135 if (migration->data_fd != -1) {
137 * This can happen if the device is asynchronously reset and
138 * terminates a data transfer.
140 error_report("%s: data_fd out of sync", vbasedev->name);
141 close(mig_state->data_fd);
143 return -EBADF;
146 migration->data_fd = mig_state->data_fd;
149 trace_vfio_migration_set_state(vbasedev->name, mig_state_to_str(new_state));
151 return 0;
153 reset_device:
154 if (ioctl(vbasedev->fd, VFIO_DEVICE_RESET)) {
155 hw_error("%s: Failed resetting device, err: %s", vbasedev->name,
156 strerror(errno));
159 migration->device_state = VFIO_DEVICE_STATE_RUNNING;
161 return ret;
165 * Some device state transitions require resetting the device if they fail.
166 * This function sets the device in new_state and resets the device if that
167 * fails. Reset is done by using ERROR as the recover state.
169 static int
170 vfio_migration_set_state_or_reset(VFIODevice *vbasedev,
171 enum vfio_device_mig_state new_state)
173 return vfio_migration_set_state(vbasedev, new_state,
174 VFIO_DEVICE_STATE_ERROR);
177 static int vfio_load_buffer(QEMUFile *f, VFIODevice *vbasedev,
178 uint64_t data_size)
180 VFIOMigration *migration = vbasedev->migration;
181 int ret;
183 ret = qemu_file_get_to_fd(f, migration->data_fd, data_size);
184 trace_vfio_load_state_device_data(vbasedev->name, data_size, ret);
186 return ret;
189 static int vfio_save_device_config_state(QEMUFile *f, void *opaque)
191 VFIODevice *vbasedev = opaque;
193 qemu_put_be64(f, VFIO_MIG_FLAG_DEV_CONFIG_STATE);
195 if (vbasedev->ops && vbasedev->ops->vfio_save_config) {
196 vbasedev->ops->vfio_save_config(vbasedev, f);
199 qemu_put_be64(f, VFIO_MIG_FLAG_END_OF_STATE);
201 trace_vfio_save_device_config_state(vbasedev->name);
203 return qemu_file_get_error(f);
206 static int vfio_load_device_config_state(QEMUFile *f, void *opaque)
208 VFIODevice *vbasedev = opaque;
209 uint64_t data;
211 if (vbasedev->ops && vbasedev->ops->vfio_load_config) {
212 int ret;
214 ret = vbasedev->ops->vfio_load_config(vbasedev, f);
215 if (ret) {
216 error_report("%s: Failed to load device config space",
217 vbasedev->name);
218 return ret;
222 data = qemu_get_be64(f);
223 if (data != VFIO_MIG_FLAG_END_OF_STATE) {
224 error_report("%s: Failed loading device config space, "
225 "end flag incorrect 0x%"PRIx64, vbasedev->name, data);
226 return -EINVAL;
229 trace_vfio_load_device_config_state(vbasedev->name);
230 return qemu_file_get_error(f);
233 static void vfio_migration_cleanup(VFIODevice *vbasedev)
235 VFIOMigration *migration = vbasedev->migration;
237 close(migration->data_fd);
238 migration->data_fd = -1;
241 static int vfio_query_stop_copy_size(VFIODevice *vbasedev,
242 uint64_t *stop_copy_size)
244 uint64_t buf[DIV_ROUND_UP(sizeof(struct vfio_device_feature) +
245 sizeof(struct vfio_device_feature_mig_data_size),
246 sizeof(uint64_t))] = {};
247 struct vfio_device_feature *feature = (struct vfio_device_feature *)buf;
248 struct vfio_device_feature_mig_data_size *mig_data_size =
249 (struct vfio_device_feature_mig_data_size *)feature->data;
251 feature->argsz = sizeof(buf);
252 feature->flags =
253 VFIO_DEVICE_FEATURE_GET | VFIO_DEVICE_FEATURE_MIG_DATA_SIZE;
255 if (ioctl(vbasedev->fd, VFIO_DEVICE_FEATURE, feature)) {
256 return -errno;
259 *stop_copy_size = mig_data_size->stop_copy_length;
261 return 0;
264 static int vfio_query_precopy_size(VFIOMigration *migration)
266 struct vfio_precopy_info precopy = {
267 .argsz = sizeof(precopy),
270 migration->precopy_init_size = 0;
271 migration->precopy_dirty_size = 0;
273 if (ioctl(migration->data_fd, VFIO_MIG_GET_PRECOPY_INFO, &precopy)) {
274 return -errno;
277 migration->precopy_init_size = precopy.initial_bytes;
278 migration->precopy_dirty_size = precopy.dirty_bytes;
280 return 0;
283 /* Returns the size of saved data on success and -errno on error */
284 static ssize_t vfio_save_block(QEMUFile *f, VFIOMigration *migration)
286 ssize_t data_size;
288 data_size = read(migration->data_fd, migration->data_buffer,
289 migration->data_buffer_size);
290 if (data_size < 0) {
292 * Pre-copy emptied all the device state for now. For more information,
293 * please refer to the Linux kernel VFIO uAPI.
295 if (errno == ENOMSG) {
296 return 0;
299 return -errno;
301 if (data_size == 0) {
302 return 0;
305 qemu_put_be64(f, VFIO_MIG_FLAG_DEV_DATA_STATE);
306 qemu_put_be64(f, data_size);
307 qemu_put_buffer(f, migration->data_buffer, data_size);
308 bytes_transferred += data_size;
310 trace_vfio_save_block(migration->vbasedev->name, data_size);
312 return qemu_file_get_error(f) ?: data_size;
315 static void vfio_update_estimated_pending_data(VFIOMigration *migration,
316 uint64_t data_size)
318 if (!data_size) {
320 * Pre-copy emptied all the device state for now, update estimated sizes
321 * accordingly.
323 migration->precopy_init_size = 0;
324 migration->precopy_dirty_size = 0;
326 return;
329 if (migration->precopy_init_size) {
330 uint64_t init_size = MIN(migration->precopy_init_size, data_size);
332 migration->precopy_init_size -= init_size;
333 data_size -= init_size;
336 migration->precopy_dirty_size -= MIN(migration->precopy_dirty_size,
337 data_size);
340 static bool vfio_precopy_supported(VFIODevice *vbasedev)
342 VFIOMigration *migration = vbasedev->migration;
344 return migration->mig_flags & VFIO_MIGRATION_PRE_COPY;
347 /* ---------------------------------------------------------------------- */
349 static int vfio_save_prepare(void *opaque, Error **errp)
351 VFIODevice *vbasedev = opaque;
354 * Snapshot doesn't use postcopy nor background snapshot, so allow snapshot
355 * even if they are on.
357 if (runstate_check(RUN_STATE_SAVE_VM)) {
358 return 0;
361 if (migrate_postcopy_ram()) {
362 error_setg(
363 errp, "%s: VFIO migration is not supported with postcopy migration",
364 vbasedev->name);
365 return -EOPNOTSUPP;
368 if (migrate_background_snapshot()) {
369 error_setg(
370 errp,
371 "%s: VFIO migration is not supported with background snapshot",
372 vbasedev->name);
373 return -EOPNOTSUPP;
376 return 0;
379 static int vfio_save_setup(QEMUFile *f, void *opaque)
381 VFIODevice *vbasedev = opaque;
382 VFIOMigration *migration = vbasedev->migration;
383 uint64_t stop_copy_size = VFIO_MIG_DEFAULT_DATA_BUFFER_SIZE;
385 qemu_put_be64(f, VFIO_MIG_FLAG_DEV_SETUP_STATE);
387 vfio_query_stop_copy_size(vbasedev, &stop_copy_size);
388 migration->data_buffer_size = MIN(VFIO_MIG_DEFAULT_DATA_BUFFER_SIZE,
389 stop_copy_size);
390 migration->data_buffer = g_try_malloc0(migration->data_buffer_size);
391 if (!migration->data_buffer) {
392 error_report("%s: Failed to allocate migration data buffer",
393 vbasedev->name);
394 return -ENOMEM;
397 if (vfio_precopy_supported(vbasedev)) {
398 int ret;
400 switch (migration->device_state) {
401 case VFIO_DEVICE_STATE_RUNNING:
402 ret = vfio_migration_set_state(vbasedev, VFIO_DEVICE_STATE_PRE_COPY,
403 VFIO_DEVICE_STATE_RUNNING);
404 if (ret) {
405 return ret;
408 vfio_query_precopy_size(migration);
410 break;
411 case VFIO_DEVICE_STATE_STOP:
412 /* vfio_save_complete_precopy() will go to STOP_COPY */
413 break;
414 default:
415 return -EINVAL;
419 trace_vfio_save_setup(vbasedev->name, migration->data_buffer_size);
421 qemu_put_be64(f, VFIO_MIG_FLAG_END_OF_STATE);
423 return qemu_file_get_error(f);
426 static void vfio_save_cleanup(void *opaque)
428 VFIODevice *vbasedev = opaque;
429 VFIOMigration *migration = vbasedev->migration;
432 * Changing device state from STOP_COPY to STOP can take time. Do it here,
433 * after migration has completed, so it won't increase downtime.
435 if (migration->device_state == VFIO_DEVICE_STATE_STOP_COPY) {
436 vfio_migration_set_state_or_reset(vbasedev, VFIO_DEVICE_STATE_STOP);
439 g_free(migration->data_buffer);
440 migration->data_buffer = NULL;
441 migration->precopy_init_size = 0;
442 migration->precopy_dirty_size = 0;
443 migration->initial_data_sent = false;
444 vfio_migration_cleanup(vbasedev);
445 trace_vfio_save_cleanup(vbasedev->name);
448 static void vfio_state_pending_estimate(void *opaque, uint64_t *must_precopy,
449 uint64_t *can_postcopy)
451 VFIODevice *vbasedev = opaque;
452 VFIOMigration *migration = vbasedev->migration;
454 if (!vfio_device_state_is_precopy(vbasedev)) {
455 return;
458 *must_precopy +=
459 migration->precopy_init_size + migration->precopy_dirty_size;
461 trace_vfio_state_pending_estimate(vbasedev->name, *must_precopy,
462 *can_postcopy,
463 migration->precopy_init_size,
464 migration->precopy_dirty_size);
468 * Migration size of VFIO devices can be as little as a few KBs or as big as
469 * many GBs. This value should be big enough to cover the worst case.
471 #define VFIO_MIG_STOP_COPY_SIZE (100 * GiB)
473 static void vfio_state_pending_exact(void *opaque, uint64_t *must_precopy,
474 uint64_t *can_postcopy)
476 VFIODevice *vbasedev = opaque;
477 VFIOMigration *migration = vbasedev->migration;
478 uint64_t stop_copy_size = VFIO_MIG_STOP_COPY_SIZE;
481 * If getting pending migration size fails, VFIO_MIG_STOP_COPY_SIZE is
482 * reported so downtime limit won't be violated.
484 vfio_query_stop_copy_size(vbasedev, &stop_copy_size);
485 *must_precopy += stop_copy_size;
487 if (vfio_device_state_is_precopy(vbasedev)) {
488 vfio_query_precopy_size(migration);
490 *must_precopy +=
491 migration->precopy_init_size + migration->precopy_dirty_size;
494 trace_vfio_state_pending_exact(vbasedev->name, *must_precopy, *can_postcopy,
495 stop_copy_size, migration->precopy_init_size,
496 migration->precopy_dirty_size);
499 static bool vfio_is_active_iterate(void *opaque)
501 VFIODevice *vbasedev = opaque;
503 return vfio_device_state_is_precopy(vbasedev);
507 * Note about migration rate limiting: VFIO migration buffer size is currently
508 * limited to 1MB, so there is no need to check if migration rate exceeded (as
509 * in the worst case it will exceed by 1MB). However, if the buffer size is
510 * later changed to a bigger value, migration rate should be enforced here.
512 static int vfio_save_iterate(QEMUFile *f, void *opaque)
514 VFIODevice *vbasedev = opaque;
515 VFIOMigration *migration = vbasedev->migration;
516 ssize_t data_size;
518 data_size = vfio_save_block(f, migration);
519 if (data_size < 0) {
520 return data_size;
523 vfio_update_estimated_pending_data(migration, data_size);
525 if (migrate_switchover_ack() && !migration->precopy_init_size &&
526 !migration->initial_data_sent) {
527 qemu_put_be64(f, VFIO_MIG_FLAG_DEV_INIT_DATA_SENT);
528 migration->initial_data_sent = true;
529 } else {
530 qemu_put_be64(f, VFIO_MIG_FLAG_END_OF_STATE);
533 trace_vfio_save_iterate(vbasedev->name, migration->precopy_init_size,
534 migration->precopy_dirty_size);
536 return !migration->precopy_init_size && !migration->precopy_dirty_size;
539 static int vfio_save_complete_precopy(QEMUFile *f, void *opaque)
541 VFIODevice *vbasedev = opaque;
542 ssize_t data_size;
543 int ret;
545 /* We reach here with device state STOP or STOP_COPY only */
546 ret = vfio_migration_set_state(vbasedev, VFIO_DEVICE_STATE_STOP_COPY,
547 VFIO_DEVICE_STATE_STOP);
548 if (ret) {
549 return ret;
552 do {
553 data_size = vfio_save_block(f, vbasedev->migration);
554 if (data_size < 0) {
555 return data_size;
557 } while (data_size);
559 qemu_put_be64(f, VFIO_MIG_FLAG_END_OF_STATE);
560 ret = qemu_file_get_error(f);
561 if (ret) {
562 return ret;
565 trace_vfio_save_complete_precopy(vbasedev->name, ret);
567 return ret;
570 static void vfio_save_state(QEMUFile *f, void *opaque)
572 VFIODevice *vbasedev = opaque;
573 int ret;
575 ret = vfio_save_device_config_state(f, opaque);
576 if (ret) {
577 error_report("%s: Failed to save device config space",
578 vbasedev->name);
579 qemu_file_set_error(f, ret);
583 static int vfio_load_setup(QEMUFile *f, void *opaque)
585 VFIODevice *vbasedev = opaque;
587 return vfio_migration_set_state(vbasedev, VFIO_DEVICE_STATE_RESUMING,
588 vbasedev->migration->device_state);
591 static int vfio_load_cleanup(void *opaque)
593 VFIODevice *vbasedev = opaque;
595 vfio_migration_cleanup(vbasedev);
596 trace_vfio_load_cleanup(vbasedev->name);
598 return 0;
601 static int vfio_load_state(QEMUFile *f, void *opaque, int version_id)
603 VFIODevice *vbasedev = opaque;
604 int ret = 0;
605 uint64_t data;
607 data = qemu_get_be64(f);
608 while (data != VFIO_MIG_FLAG_END_OF_STATE) {
610 trace_vfio_load_state(vbasedev->name, data);
612 switch (data) {
613 case VFIO_MIG_FLAG_DEV_CONFIG_STATE:
615 return vfio_load_device_config_state(f, opaque);
617 case VFIO_MIG_FLAG_DEV_SETUP_STATE:
619 data = qemu_get_be64(f);
620 if (data == VFIO_MIG_FLAG_END_OF_STATE) {
621 return ret;
622 } else {
623 error_report("%s: SETUP STATE: EOS not found 0x%"PRIx64,
624 vbasedev->name, data);
625 return -EINVAL;
627 break;
629 case VFIO_MIG_FLAG_DEV_DATA_STATE:
631 uint64_t data_size = qemu_get_be64(f);
633 if (data_size) {
634 ret = vfio_load_buffer(f, vbasedev, data_size);
635 if (ret < 0) {
636 return ret;
639 break;
641 case VFIO_MIG_FLAG_DEV_INIT_DATA_SENT:
643 if (!vfio_precopy_supported(vbasedev) ||
644 !migrate_switchover_ack()) {
645 error_report("%s: Received INIT_DATA_SENT but switchover ack "
646 "is not used", vbasedev->name);
647 return -EINVAL;
650 ret = qemu_loadvm_approve_switchover();
651 if (ret) {
652 error_report(
653 "%s: qemu_loadvm_approve_switchover failed, err=%d (%s)",
654 vbasedev->name, ret, strerror(-ret));
657 return ret;
659 default:
660 error_report("%s: Unknown tag 0x%"PRIx64, vbasedev->name, data);
661 return -EINVAL;
664 data = qemu_get_be64(f);
665 ret = qemu_file_get_error(f);
666 if (ret) {
667 return ret;
670 return ret;
673 static bool vfio_switchover_ack_needed(void *opaque)
675 VFIODevice *vbasedev = opaque;
677 return vfio_precopy_supported(vbasedev);
680 static const SaveVMHandlers savevm_vfio_handlers = {
681 .save_prepare = vfio_save_prepare,
682 .save_setup = vfio_save_setup,
683 .save_cleanup = vfio_save_cleanup,
684 .state_pending_estimate = vfio_state_pending_estimate,
685 .state_pending_exact = vfio_state_pending_exact,
686 .is_active_iterate = vfio_is_active_iterate,
687 .save_live_iterate = vfio_save_iterate,
688 .save_live_complete_precopy = vfio_save_complete_precopy,
689 .save_state = vfio_save_state,
690 .load_setup = vfio_load_setup,
691 .load_cleanup = vfio_load_cleanup,
692 .load_state = vfio_load_state,
693 .switchover_ack_needed = vfio_switchover_ack_needed,
696 /* ---------------------------------------------------------------------- */
698 static void vfio_vmstate_change_prepare(void *opaque, bool running,
699 RunState state)
701 VFIODevice *vbasedev = opaque;
702 VFIOMigration *migration = vbasedev->migration;
703 enum vfio_device_mig_state new_state;
704 int ret;
706 new_state = migration->device_state == VFIO_DEVICE_STATE_PRE_COPY ?
707 VFIO_DEVICE_STATE_PRE_COPY_P2P :
708 VFIO_DEVICE_STATE_RUNNING_P2P;
710 ret = vfio_migration_set_state_or_reset(vbasedev, new_state);
711 if (ret) {
713 * Migration should be aborted in this case, but vm_state_notify()
714 * currently does not support reporting failures.
716 migration_file_set_error(ret);
719 trace_vfio_vmstate_change_prepare(vbasedev->name, running,
720 RunState_str(state),
721 mig_state_to_str(new_state));
724 static void vfio_vmstate_change(void *opaque, bool running, RunState state)
726 VFIODevice *vbasedev = opaque;
727 enum vfio_device_mig_state new_state;
728 int ret;
730 if (running) {
731 new_state = VFIO_DEVICE_STATE_RUNNING;
732 } else {
733 new_state =
734 (vfio_device_state_is_precopy(vbasedev) &&
735 (state == RUN_STATE_FINISH_MIGRATE || state == RUN_STATE_PAUSED)) ?
736 VFIO_DEVICE_STATE_STOP_COPY :
737 VFIO_DEVICE_STATE_STOP;
740 ret = vfio_migration_set_state_or_reset(vbasedev, new_state);
741 if (ret) {
743 * Migration should be aborted in this case, but vm_state_notify()
744 * currently does not support reporting failures.
746 migration_file_set_error(ret);
749 trace_vfio_vmstate_change(vbasedev->name, running, RunState_str(state),
750 mig_state_to_str(new_state));
753 static int vfio_migration_state_notifier(NotifierWithReturn *notifier,
754 MigrationEvent *e, Error **errp)
756 VFIOMigration *migration = container_of(notifier, VFIOMigration,
757 migration_state);
758 VFIODevice *vbasedev = migration->vbasedev;
760 trace_vfio_migration_state_notifier(vbasedev->name, e->type);
762 if (e->type == MIG_EVENT_PRECOPY_FAILED) {
763 vfio_migration_set_state_or_reset(vbasedev, VFIO_DEVICE_STATE_RUNNING);
765 return 0;
768 static void vfio_migration_free(VFIODevice *vbasedev)
770 g_free(vbasedev->migration);
771 vbasedev->migration = NULL;
774 static int vfio_migration_query_flags(VFIODevice *vbasedev, uint64_t *mig_flags)
776 uint64_t buf[DIV_ROUND_UP(sizeof(struct vfio_device_feature) +
777 sizeof(struct vfio_device_feature_migration),
778 sizeof(uint64_t))] = {};
779 struct vfio_device_feature *feature = (struct vfio_device_feature *)buf;
780 struct vfio_device_feature_migration *mig =
781 (struct vfio_device_feature_migration *)feature->data;
783 feature->argsz = sizeof(buf);
784 feature->flags = VFIO_DEVICE_FEATURE_GET | VFIO_DEVICE_FEATURE_MIGRATION;
785 if (ioctl(vbasedev->fd, VFIO_DEVICE_FEATURE, feature)) {
786 return -errno;
789 *mig_flags = mig->flags;
791 return 0;
794 static bool vfio_dma_logging_supported(VFIODevice *vbasedev)
796 uint64_t buf[DIV_ROUND_UP(sizeof(struct vfio_device_feature),
797 sizeof(uint64_t))] = {};
798 struct vfio_device_feature *feature = (struct vfio_device_feature *)buf;
800 feature->argsz = sizeof(buf);
801 feature->flags = VFIO_DEVICE_FEATURE_PROBE |
802 VFIO_DEVICE_FEATURE_DMA_LOGGING_START;
804 return !ioctl(vbasedev->fd, VFIO_DEVICE_FEATURE, feature);
807 static int vfio_migration_init(VFIODevice *vbasedev)
809 int ret;
810 Object *obj;
811 VFIOMigration *migration;
812 char id[256] = "";
813 g_autofree char *path = NULL, *oid = NULL;
814 uint64_t mig_flags = 0;
815 VMChangeStateHandler *prepare_cb;
817 if (!vbasedev->ops->vfio_get_object) {
818 return -EINVAL;
821 obj = vbasedev->ops->vfio_get_object(vbasedev);
822 if (!obj) {
823 return -EINVAL;
826 ret = vfio_migration_query_flags(vbasedev, &mig_flags);
827 if (ret) {
828 return ret;
831 /* Basic migration functionality must be supported */
832 if (!(mig_flags & VFIO_MIGRATION_STOP_COPY)) {
833 return -EOPNOTSUPP;
836 vbasedev->migration = g_new0(VFIOMigration, 1);
837 migration = vbasedev->migration;
838 migration->vbasedev = vbasedev;
839 migration->device_state = VFIO_DEVICE_STATE_RUNNING;
840 migration->data_fd = -1;
841 migration->mig_flags = mig_flags;
843 vbasedev->dirty_pages_supported = vfio_dma_logging_supported(vbasedev);
845 oid = vmstate_if_get_id(VMSTATE_IF(DEVICE(obj)));
846 if (oid) {
847 path = g_strdup_printf("%s/vfio", oid);
848 } else {
849 path = g_strdup("vfio");
851 strpadcpy(id, sizeof(id), path, '\0');
853 register_savevm_live(id, VMSTATE_INSTANCE_ID_ANY, 1, &savevm_vfio_handlers,
854 vbasedev);
856 prepare_cb = migration->mig_flags & VFIO_MIGRATION_P2P ?
857 vfio_vmstate_change_prepare :
858 NULL;
859 migration->vm_state = qdev_add_vm_change_state_handler_full(
860 vbasedev->dev, vfio_vmstate_change, prepare_cb, vbasedev);
861 migration_add_notifier(&migration->migration_state,
862 vfio_migration_state_notifier);
864 return 0;
867 static void vfio_migration_deinit(VFIODevice *vbasedev)
869 VFIOMigration *migration = vbasedev->migration;
871 migration_remove_notifier(&migration->migration_state);
872 qemu_del_vm_change_state_handler(migration->vm_state);
873 unregister_savevm(VMSTATE_IF(vbasedev->dev), "vfio", vbasedev);
874 vfio_migration_free(vbasedev);
875 vfio_unblock_multiple_devices_migration();
878 static int vfio_block_migration(VFIODevice *vbasedev, Error *err, Error **errp)
880 if (vbasedev->enable_migration == ON_OFF_AUTO_ON) {
881 error_propagate(errp, err);
882 return -EINVAL;
885 vbasedev->migration_blocker = error_copy(err);
886 error_free(err);
888 return migrate_add_blocker_normal(&vbasedev->migration_blocker, errp);
891 /* ---------------------------------------------------------------------- */
893 int64_t vfio_mig_bytes_transferred(void)
895 return bytes_transferred;
898 void vfio_reset_bytes_transferred(void)
900 bytes_transferred = 0;
904 * Return true when either migration initialized or blocker registered.
905 * Currently only return false when adding blocker fails which will
906 * de-register vfio device.
908 bool vfio_migration_realize(VFIODevice *vbasedev, Error **errp)
910 Error *err = NULL;
911 int ret;
913 if (vbasedev->enable_migration == ON_OFF_AUTO_OFF) {
914 error_setg(&err, "%s: Migration is disabled for VFIO device",
915 vbasedev->name);
916 return !vfio_block_migration(vbasedev, err, errp);
919 ret = vfio_migration_init(vbasedev);
920 if (ret) {
921 if (ret == -ENOTTY) {
922 error_setg(&err, "%s: VFIO migration is not supported in kernel",
923 vbasedev->name);
924 } else {
925 error_setg(&err,
926 "%s: Migration couldn't be initialized for VFIO device, "
927 "err: %d (%s)",
928 vbasedev->name, ret, strerror(-ret));
931 return !vfio_block_migration(vbasedev, err, errp);
934 if (!vbasedev->dirty_pages_supported) {
935 if (vbasedev->enable_migration == ON_OFF_AUTO_AUTO) {
936 error_setg(&err,
937 "%s: VFIO device doesn't support device dirty tracking",
938 vbasedev->name);
939 goto add_blocker;
942 warn_report("%s: VFIO device doesn't support device dirty tracking",
943 vbasedev->name);
946 ret = vfio_block_multiple_devices_migration(vbasedev, errp);
947 if (ret) {
948 goto out_deinit;
951 if (vfio_viommu_preset(vbasedev)) {
952 error_setg(&err, "%s: Migration is currently not supported "
953 "with vIOMMU enabled", vbasedev->name);
954 goto add_blocker;
957 trace_vfio_migration_realize(vbasedev->name);
958 return true;
960 add_blocker:
961 ret = vfio_block_migration(vbasedev, err, errp);
962 out_deinit:
963 if (ret) {
964 vfio_migration_deinit(vbasedev);
966 return !ret;
969 void vfio_migration_exit(VFIODevice *vbasedev)
971 if (vbasedev->migration) {
972 vfio_migration_deinit(vbasedev);
975 migrate_del_blocker(&vbasedev->migration_blocker);