]> git.proxmox.com Git - mirror_qemu.git/commit
migration: Fix possible races when shutting down the return path
authorFabiano Rosas <farosas@suse.de>
Mon, 18 Sep 2023 17:28:17 +0000 (14:28 -0300)
committerStefan Hajnoczi <stefanha@redhat.com>
Wed, 27 Sep 2023 17:58:02 +0000 (13:58 -0400)
commit639decf529793fc544c8055b82be8abe77fa48fa
treefd37e8a1c72201ce869c476665bf10144079ec1d
parent28a8347281e24c2e7bba6d3301472eda41d4c096
migration: Fix possible races when shutting down the return path

We cannot call qemu_file_shutdown() on the return path file without
taking the file lock. The return path thread could be running it's
cleanup code and have just cleared the from_dst_file pointer.

Checking ms->to_dst_file for errors could also race with
migrate_fd_cleanup() which clears the to_dst_file pointer.

Protect both accesses by taking the file lock.

This was caught by inspection, it should be rare, but the next patches
will start calling this code from other places, so let's do the
correct thing.

Reviewed-by: Peter Xu <peterx@redhat.com>
Signed-off-by: Fabiano Rosas <farosas@suse.de>
Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
Message-ID: <20230918172822.19052-4-farosas@suse.de>
migration/migration.c