[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PULL 09/14] migration: Fix use-after-free of migration state object
|
From: |
peterx |
|
Subject: |
[PULL 09/14] migration: Fix use-after-free of migration state object |
|
Date: |
Mon, 29 Jan 2024 11:04:00 +0800 |
From: Fabiano Rosas <farosas@suse.de>
We're currently allowing the process_incoming_migration_bh bottom-half
to run without holding a reference to the 'current_migration' object,
which leads to a segmentation fault if the BH is still live after
migration_shutdown() has dropped the last reference to
current_migration.
In my system the bug manifests as migrate_multifd() returning true
when it shouldn't and multifd_load_shutdown() calling
multifd_recv_terminate_threads() which crashes due to an uninitialized
multifd_recv_state.
Fix the issue by holding a reference to the object when scheduling the
BH and dropping it before returning from the BH. The same is already
done for the cleanup_bh at migrate_fd_cleanup_schedule().
Resolves: https://gitlab.com/qemu-project/qemu/-/issues/1969
Signed-off-by: Fabiano Rosas <farosas@suse.de>
Link: 20240119233922.32588-2-farosas@suse.de">https://lore.kernel.org/r/20240119233922.32588-2-farosas@suse.de
Signed-off-by: Peter Xu <peterx@redhat.com>
---
migration/migration.c | 2 ++
1 file changed, 2 insertions(+)
diff --git a/migration/migration.c b/migration/migration.c
index 219447dea1..cf17b68e57 100644
--- a/migration/migration.c
+++ b/migration/migration.c
@@ -648,6 +648,7 @@ static void process_incoming_migration_bh(void *opaque)
MIGRATION_STATUS_COMPLETED);
qemu_bh_delete(mis->bh);
migration_incoming_state_destroy();
+ object_unref(OBJECT(migrate_get_current()));
}
static void coroutine_fn
@@ -713,6 +714,7 @@ process_incoming_migration_co(void *opaque)
}
mis->bh = qemu_bh_new(process_incoming_migration_bh, mis);
+ object_ref(OBJECT(migrate_get_current()));
qemu_bh_schedule(mis->bh);
return;
fail:
--
2.43.0
- [PULL 00/14] Migration 20240126 patches, peterx, 2024/01/28
- [PULL 01/14] userfaultfd: use 1ULL to build ioctl masks, peterx, 2024/01/28
- [PULL 02/14] migration: Plug memory leak on HMP migrate error path, peterx, 2024/01/28
- [PULL 03/14] migration: Make threshold_size an uint64_t, peterx, 2024/01/28
- [PULL 05/14] analyze-migration.py: Remove trick on parsing ramblocks, peterx, 2024/01/28
- [PULL 04/14] migration: Drop unnecessary check in ram's pending_exact(), peterx, 2024/01/28
- [PULL 06/14] ci: Add a migration compatibility test job, peterx, 2024/01/28
- [PULL 07/14] ci: Disable migration compatibility tests for aarch64, peterx, 2024/01/28
- [PULL 08/14] migration/yank: Use channel features, peterx, 2024/01/28
- [PULL 09/14] migration: Fix use-after-free of migration state object,
peterx <=
- [PULL 10/14] migration: Take reference to migration state around bg_migration_vm_start_bh, peterx, 2024/01/28
- [PULL 11/14] migration: Reference migration state around loadvm_postcopy_handle_run_bh, peterx, 2024/01/28
- [PULL 12/14] migration: Add a wrapper to qemu_bh_schedule, peterx, 2024/01/28
- [PULL 13/14] migration: Centralize BH creation and dispatch, peterx, 2024/01/28
- [PULL 14/14] Make 'uri' optional for migrate QAPI, peterx, 2024/01/28
- Re: [PULL 00/14] Migration 20240126 patches, Peter Maydell, 2024/01/29