Skip to content

Commit cbca508

Browse files
authored
Fix AsyncVoidMethodBuilder race condition around SynchronizationContext (#99461)
This fixes a long-standing issue we've seen sporadically over the years but for which we just got a solid repro; the symptom is a sporadic unhandled null reference exception that crashes an app when using an async void method builder and a non-default SynchronizationContext. The issue is that, because of how state management is handled in the builder, the builder itself can be cleared while its SetResult method is running, and that means two reads of the _synchronizationContext field can end up returning a non-null value followed by a null value. The fix is to just cache the field into a local before completing the builder, and then only use the local state after.
1 parent 8b62de4 commit cbca508

File tree

1 file changed

+23
-8
lines changed

1 file changed

+23
-8
lines changed

src/libraries/System.Private.CoreLib/src/System/Runtime/CompilerServices/AsyncVoidMethodBuilder.cs

+23-8
Original file line numberDiff line numberDiff line change
@@ -80,13 +80,27 @@ public void SetResult()
8080
TplEventSource.Log.TraceOperationEnd(this.Task.Id, AsyncCausalityStatus.Completed);
8181
}
8282

83+
// Grab the context. Calling SetResult will complete the builder which can cause the state
84+
// to be cleared out of the builder, so we can't touch anything on this builder after calling Set*.
85+
// This clearing is done as part of the AsyncStateMachineBox.MoveNext method after it calls
86+
// MoveNext on the state machine: it's possible to have a chain of events like this:
87+
// Thread 1: Calls AsyncStateMachineBox.MoveNext, which calls StateMachine.MoveNext.
88+
// Thread 1: StateMachine.MoveNext hooks up a continuation and returns
89+
// Thread 2: That continuation runs and calls AsyncStateMachineBox.MoveNext, which calls SetResult on the builder (below)
90+
// which will result in the state machine task being marked completed.
91+
// Thread 1: The original AsyncStateMachineBox.MoveNext call continues and sees that the task is now completed
92+
// Thread 1: Clears the builder
93+
// Thread 2: Continues in this call to AsyncVoidMethodBuilder. If it touches anything on this instance, it will be cleared.
94+
SynchronizationContext? context = _synchronizationContext;
95+
8396
// Mark the builder as completed. As this is a void-returning method, this mostly
8497
// doesn't matter, but it can affect things like debug events related to finalization.
98+
// Marking the task completed will also then enable the MoveNext code to clear state.
8599
_builder.SetResult();
86100

87-
if (_synchronizationContext != null)
101+
if (context != null)
88102
{
89-
NotifySynchronizationContextOfCompletion();
103+
NotifySynchronizationContextOfCompletion(context);
90104
}
91105
}
92106

@@ -106,17 +120,18 @@ public void SetException(Exception exception)
106120
TplEventSource.Log.TraceOperationEnd(this.Task.Id, AsyncCausalityStatus.Error);
107121
}
108122

109-
if (_synchronizationContext != null)
123+
SynchronizationContext? context = _synchronizationContext;
124+
if (context != null)
110125
{
111126
// If we captured a synchronization context, Post the throwing of the exception to it
112127
// and decrement its outstanding operation count.
113128
try
114129
{
115-
Task.ThrowAsync(exception, targetContext: _synchronizationContext);
130+
Task.ThrowAsync(exception, targetContext: context);
116131
}
117132
finally
118133
{
119-
NotifySynchronizationContextOfCompletion();
134+
NotifySynchronizationContextOfCompletion(context);
120135
}
121136
}
122137
else
@@ -132,12 +147,12 @@ public void SetException(Exception exception)
132147
}
133148

134149
/// <summary>Notifies the current synchronization context that the operation completed.</summary>
135-
private void NotifySynchronizationContextOfCompletion()
150+
private static void NotifySynchronizationContextOfCompletion(SynchronizationContext context)
136151
{
137-
Debug.Assert(_synchronizationContext != null, "Must only be used with a non-null context.");
152+
Debug.Assert(context != null, "Must only be used with a non-null context.");
138153
try
139154
{
140-
_synchronizationContext.OperationCompleted();
155+
context.OperationCompleted();
141156
}
142157
catch (Exception exc)
143158
{

0 commit comments

Comments
 (0)