Skip to content
Snippets Groups Projects

rtworkq: free cancelled work items

Merged Yuxuan Shui requested to merge yshui/wine:rtworkq-leak-2 into master

Merge request reports

Checking pipeline status.

Approval is optional

Merged by Alexandre JulliardAlexandre Julliard 10 months ago (May 12, 2024 7:25pm UTC)

Activity

Filter activity
  • Approvals
  • Assignees & reviewers
  • Comments (from bots)
  • Comments (from users)
  • Commits & branches
  • Edits
  • Labels
  • Lock status
  • Mentions
  • Merge request status
  • Tracking
  • Yuxuan Shui added 3 commits

    added 3 commits

    • 6ca7d989 - rtworkq: Avoid use-after-free.
    • 5b2f2ab6 - mfplat: tests: Validate MFCancelWorkItem releases the callback.
    • 10707bf0 - rtworkq: Release cancelled work items.

    Compare with previous version

  • Nikolay Sivov
  • Nikolay Sivov
    Nikolay Sivov @nsivov started a thread on commit 5b2f2ab6
  • 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
  • Nikolay Sivov
    Nikolay Sivov @nsivov started a thread on an outdated change in commit 10707bf0
  • 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)
  • Nikolay Sivov
    Nikolay Sivov @nsivov started a thread on an outdated change in commit 10707bf0
  • 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
    • Comment on lines +929 to +944

      I haven't read through properly yet, but isn't it possible TP objects might already be freed at this point, or at any point really.

      Is this fix purely theoretical, or it's possible to demonstrate the issue reliably?

    • Author Developer

      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 to NULL here while holding the queue lock (which means no other threads can remove the item from queue->pending_items, which in turn means the work item will have at least 1 reference), so work_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 Shui
    • Is it possible to have some demo program that demonstrates this?

    • Author Developer

      demonstrate 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.

    • Author Developer

      https://gist.github.com/yshui/2f1c5c8ce9d80e9eef1db4eab51344d0 this demonstrate the CloseThreadpool vs running callback race.

    • Thanks. How do I build this?

    • Author Developer

      What errors are you getting?

      I don't think it needs special build instructions? I link it with mfplat, mf, ole32 and combase.

    • 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.

    • Author Developer

      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?

    • Author Developer

      i hope you understand the problem here. the problem is not the assert, so doesn't matter if the TP implementation handles this case.

      the problem is if the scheduled_item_cancelable_callback is running when we reaches queue_cancel_item, we will double release the work item.

    • Yuxuan Shui changed this line in version 6 of the diff

      changed this line in version 6 of the diff

    • Please register or sign in to reply
  • Yuxuan Shui added 3 commits

    added 3 commits

    • b400b032 - rtworkq: Avoid use-after-free.
    • d033583f - mfplat: tests: Validate MFCancelWorkItem releases the callback.
    • 8b7bf1c7 - rtworkq: Release cancelled work items.

    Compare with previous version

  • Yuxuan Shui added 101 commits

    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.

    Compare with previous version

  • Author Developer

    added todo_wine as per discussed

  • Zhiyi Zhang mentioned in merge request !5158 (merged)

    mentioned in merge request !5158 (merged)

  • Author Developer

    @nsivov since you have approved !5158 (merged), do you understand why there is a race that needs to be fixed now?

    • Author Developer

      @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.

    • Author Developer

      Hmm, i think the clearer version does have a use-after-free problem. If the item is freed in queue_cancel_item while scheduled_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?

    • Author Developer

      Or maybe we can put the whole callback into critical section I don't think this would help.

      Edited by Yuxuan Shui
    • Author Developer

      OK, I restructured it, maybe it's better? :/

    • Author Developer

      I think an alternative to what this MR is doing is adding a cancelled flag to work_item, in queue_cancel_item we set this flag and schedule the Tp object to run immediately, and let the callback release the work item.

    • Hmm, i think the clearer version does have a use-after-free problem. If the item is freed in queue_cancel_item while scheduled_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.

    • Author Developer

      the use-after-free happens if I add the IUnknown_Release(&item->IUnknown_iface)

    • Please register or sign in to reply
  • Yuxuan Shui added 2112 commits

    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.

    Compare with previous version

  • Yuxuan Shui added 1 commit

    added 1 commit

    • c6cd5a08 - rtworkq: Release cancelled work items.

    Compare with previous version

  • Yuxuan Shui marked this merge request as draft

    marked this merge request as draft

  • Yuxuan Shui added 1 commit

    added 1 commit

    • 36b16a0a - rtworkq: Release cancelled work items.

    Compare with previous version

  • Yuxuan Shui marked this merge request as ready

    marked this merge request as ready

  • Loading
  • Loading
  • Loading
  • Loading
  • Loading
  • Loading
  • Loading
  • Loading
  • Loading
  • Loading
  • Please register or sign in to reply
    Loading