[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [PATCH 2/5] migration/multifd: Remove p->running
From: |
Peter Xu |
Subject: |
Re: [PATCH 2/5] migration/multifd: Remove p->running |
Date: |
Mon, 5 Feb 2024 13:34:15 +0800 |
On Fri, Feb 02, 2024 at 04:11:25PM -0300, Fabiano Rosas wrote:
> We currently only need p->running to avoid calling qemu_thread_join()
> on a non existent thread if the thread has never been created.
>
> However, there are at least two bugs in this logic:
>
> 1) On the sending side, p->running is set too early and
> qemu_thread_create() can be skipped due to an error during TLS
> handshake, leaving the flag set and leading to a crash when
> multifd_save_cleanup() calls qemu_thread_join().
>
> 2) During exit, the multifd thread clears the flag while holding the
> channel lock. The counterpart at multifd_save_cleanup() reads the flag
> outside of the lock and might free the mutex while the multifd thread
> still has it locked.
>
> Fix the first issue by setting the flag right before creating the
> thread. Rename it from p->running to p->thread_created to clarify its
> usage.
>
> Fix the second issue by not clearing the flag at the multifd thread
> exit. We don't have any use for that.
>
> Note that these bugs are straight-forward logic issues and not race
> conditions. There is still a gap for races to affect this code due to
> multifd_save_cleanup() being allowed to run concurrently with the
> thread creation loop. This issue is solved in the next patch.
>
Cc: qemu-stable <qemu-stable@nongnu.org>
> Fixes: 29647140157a ("migration/tls: add support for multifd tls-handshake")
> Reported-by: Avihai Horon <avihaih@nvidia.com>
> Reported-by: <chenyuhui5@huawei.com>
> Signed-off-by: Fabiano Rosas <farosas@suse.de>
Reviewed-by: Peter Xu <peterx@redhat.com>
--
Peter Xu
- [PATCH 0/5] migration/multifd: Fix channel creation vs. cleanup races, Fabiano Rosas, 2024/02/02
- [PATCH 1/5] migration/multifd: Join the TLS thread, Fabiano Rosas, 2024/02/02
- [PATCH 2/5] migration/multifd: Remove p->running, Fabiano Rosas, 2024/02/02
- Re: [PATCH 2/5] migration/multifd: Remove p->running,
Peter Xu <=
- [PATCH 4/5] migration/multifd: Move multifd_save_setup into migration thread, Fabiano Rosas, 2024/02/02
- [PATCH 3/5] migration/multifd: Move multifd_save_setup error handling in to the function, Fabiano Rosas, 2024/02/02
- [PATCH 5/5] migration/multifd: Add a synchronization point for channel creation, Fabiano Rosas, 2024/02/02
Re: [PATCH 0/5] migration/multifd: Fix channel creation vs. cleanup races, Peter Xu, 2024/02/05