rtworkq: free cancelled work items
Merge request reports
Activity
requested review from @nsivov
assigned to @yshui
- Resolved by Yuxuan Shui
- Resolved by Yuxuan Shui
3572 3573 hr = MFCancelWorkItem(key); 3573 3574 ok(hr == S_OK, "Failed to cancel item, hr %#lx.\n", hr); 3574 3575 3576 refcount = IMFAsyncCallback_Release(&callback->IMFAsyncCallback_iface); 3577 ok(refcount == 0, "Unexpected refcount %lu.\n", refcount); 3578 880 880 return S_OK; 881 881 } 882 882 883 static HRESULT queue_cancel_item(struct queue *queue, RTWQWORKITEM_KEY key) 883 static HRESULT queue_cancel_item(struct queue *queue, const RTWQWORKITEM_KEY key) changed this line in version 6 of the diff
929 930 // Safely either stop the thread pool object, or if the callback is already running, wait for it to finish. 931 // This way, we can safely release the reference to the work item. 932 if (work_object_type == WORK_ITEM_WAIT) 933 { 934 SetThreadpoolWait(work_object.wait_object, NULL, NULL); 935 WaitForThreadpoolWaitCallbacks(work_object.wait_object, TRUE); 936 CloseThreadpoolWait(work_object.wait_object); 937 } 938 else if (work_object_type == WORK_ITEM_TIMER) 939 { 940 SetThreadpoolTimer(work_object.timer_object, NULL, 0, 0); 941 WaitForThreadpoolTimerCallbacks(work_object.timer_object, TRUE); 942 CloseThreadpoolTimer(work_object.timer_object); 943 } 944 the only place the TP objects are freed is in this function or in
work_item_Release
. we set the pointers to the TP objects toNULL
here while holding the queue lock (which means no other threads can remove the item fromqueue->pending_items
, which in turn means the work item will have at least 1 reference), sowork_item_Release
won't release it. therefore we can safely release it here.i haven't tried to demonstrate this issue but it's clearly there
Edited by Yuxuan Shuidemonstrate the leak? or demonstrate the race condition?
in the first case, our unit test already does. in the second case, i don't see how that's useful? the race condition is pretty clearly there, simply based on the fact that the callback might be running when you try to cancel it.
https://gist.github.com/yshui/2f1c5c8ce9d80e9eef1db4eab51344d0 this demonstrate the
CloseThreadpool
vs running callback race.First thing is that it's not supported in current mingw-w64. And I'm not sure if building cpp stuff with it will work at all on windows.
The "hit race" condition is not really a race, isn't it? It means callback was called after item was cancelled. That could mean that cancellation does not work, but it's not a problem in call order I think. Regarding managing TP objects, does our rtworkq work correctly on Windows? Maybe we need to fix something on threadpool side.
not supported
not sure what you mean by that? I can build it fine with mingw-w64-g++ and it runs.
cancellation does not work
this is not true. callback could still be called after MFCancelWorkItem returns success, the documentation says as much.
and the thing is, more than this "hit race" case, our current rtworkq implementation triggers a assert in threadpool that says exactly what i predicted (callback is running when you try to close it). and that's exactly the race I am trying to avoid here.
what more proof do you want?
changed this line in version 6 of the diff
added 101 commits
-
8b7bf1c7...cb4939eb - 98 commits from branch
wine:master
- 582121f6 - rtworkq: Avoid use-after-free.
- 85933179 - mfplat: tests: Validate MFCancelWorkItem releases the callback.
- 60f79f7b - rtworkq: Release cancelled work items.
Toggle commit list-
8b7bf1c7...cb4939eb - 98 commits from branch
mentioned in merge request !5158 (merged)
@nsivov since you have approved !5158 (merged), do you understand why there is a race that needs to be fixed now?
@zhiyi's fix for the race in !5158 (merged) is much much nicer than mine. I updated this MR to build on top of that and also fix the memory leak.
hopefully it's clearer now.
Hmm, i think the clearer version does have a use-after-free problem. If the item is freed in
queue_cancel_item
whilescheduled_item_cancelable_callback
/waiting_item_cancelable_callback
is running, the latter will use-after-free.I am afraid my original version is still the only way to do this. @zhiyi do you have thoughts? since you have worked on this part of code just recently?
Or maybe we can put the whole callback into critical sectionI don't think this would help.Edited by Yuxuan ShuiHmm, i think the clearer version does have a use-after-free problem. If the item is freed in
queue_cancel_item
whilescheduled_item_cancelable_callback
/waiting_item_cancelable_callback
is running, the latter will use-after-free.How can this use-after-free happen? If scheduled_item_cancelable_callback() is still running, queue_cancel_item() merely decreases the work item reference count and not actually releasing the object.
added 2112 commits
-
60f79f7b...5eb46419 - 2109 commits from branch
wine:master
- a763714f - rtworkq: Avoid use-after-free.
- 8e9d548b - mfplat: tests: Validate MFCancelWorkItem releases the callback.
- 438bf9f1 - rtworkq: Release cancelled work items.
Toggle commit list-
60f79f7b...5eb46419 - 2109 commits from branch