- 
                Notifications
    You must be signed in to change notification settings 
- Fork 5.2k
Avoid sending EndStream after RST_STREAM with dedicated lock #54552
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
          
     Merged
      
      
            alnikola
  merged 5 commits into
  dotnet:main
from
alnikola:alnikola/42200-dont-send-eof-after-rst-stream
  
      
      
   
  Jun 29, 2021 
      
    
  
     Merged
                    Changes from all commits
      Commits
    
    
            Show all changes
          
          
            5 commits
          
        
        Select commit
          Hold shift + click to select a range
      
      e1361f1
              
                Avoid sending EndStream after RST_STREAM with dedicated lock
              
              
                alnikola 9881121
              
                Use lock(SyncObject) for sending RST_STREAM and EndStream
              
              
                alnikola 9bb75ee
              
                Remove Debug.Assert
              
              
                alnikola a209599
              
                Locking moved to SendReset callers
              
              
                alnikola 9166a80
              
                Comment removed
              
              
                alnikola File filter
Filter by extension
Conversations
          Failed to load comments.   
        
        
          
      Loading
        
  Jump to
        
          Jump to file
        
      
      
          Failed to load files.   
        
        
          
      Loading
        
  Diff view
Diff view
There are no files selected for viewing
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
              | Original file line number | Diff line number | Diff line change | 
|---|---|---|
|  | @@ -245,9 +245,10 @@ public async Task SendRequestBodyAsync(CancellationToken cancellationToken) | |
|  | ||
| _requestCompletionState = StreamCompletionState.Failed; | ||
| Complete(); | ||
|  | ||
| SendReset(); | ||
| } | ||
|  | ||
| SendReset(); | ||
| if (signalWaiter) | ||
| { | ||
| _waitSource.SetResult(true); | ||
|  | @@ -275,17 +276,17 @@ public async Task SendRequestBodyAsync(CancellationToken cancellationToken) | |
| sendReset = _responseCompletionState == StreamCompletionState.Failed; | ||
| Complete(); | ||
| } | ||
| } | ||
|  | ||
| if (sendReset) | ||
| { | ||
| SendReset(); | ||
| } | ||
| else | ||
| { | ||
| // Send EndStream asynchronously and without cancellation. | ||
| // If this fails, it means that the connection is aborting and we will be reset. | ||
| _connection.LogExceptions(_connection.SendEndStreamAsync(StreamId)); | ||
| if (sendReset) | ||
| { | ||
| SendReset(); | ||
| } | ||
| else | ||
| { | ||
| // Send EndStream asynchronously and without cancellation. | ||
| // If this fails, it means that the connection is aborting and we will be reset. | ||
| _connection.LogExceptions(_connection.SendEndStreamAsync(StreamId)); | ||
| } | ||
| } | ||
| } | ||
| } | ||
|  | @@ -325,7 +326,7 @@ public async ValueTask<bool> WaitFor100ContinueAsync(CancellationToken cancellat | |
|  | ||
| private void SendReset() | ||
| { | ||
| Debug.Assert(!Monitor.IsEntered(SyncObject)); | ||
| Debug.Assert(Monitor.IsEntered(SyncObject)); | ||
| Debug.Assert(_requestCompletionState != StreamCompletionState.InProgress); | ||
| Debug.Assert(_responseCompletionState != StreamCompletionState.InProgress); | ||
| Debug.Assert(_requestCompletionState == StreamCompletionState.Failed || _responseCompletionState == StreamCompletionState.Failed, | ||
|  | @@ -336,6 +337,8 @@ private void SendReset() | |
| // Don't send a RST_STREAM if we've already received one from the server. | ||
| if (_resetException == null) | ||
| { | ||
| // If execution reached this line, it's guaranteed that | ||
| // _requestCompletionState == StreamCompletionState.Failed or _responseCompletionState == StreamCompletionState.Failed | ||
| _connection.LogExceptions(_connection.SendRstStreamAsync(StreamId, Http2ProtocolErrorCode.Cancel)); | ||
| } | ||
| } | ||
|  | @@ -384,9 +387,12 @@ private void Cancel() | |
| // When cancellation propagates, SendRequestBodyAsync will set _requestCompletionState to Failed | ||
| requestBodyCancellationSource?.Cancel(); | ||
|  | ||
| if (sendReset) | ||
| lock (SyncObject) | ||
| There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I'm not really happy to lock on the same object just after leaving the above lock block, but it seems dangerous to change order of   | ||
| { | ||
| SendReset(); | ||
| if (sendReset) | ||
| { | ||
| SendReset(); | ||
| } | ||
| } | ||
|  | ||
| if (signalWaiter) | ||
|  | ||
  Add this suggestion to a batch that can be applied as a single commit.
  This suggestion is invalid because no changes were made to the code.
  Suggestions cannot be applied while the pull request is closed.
  Suggestions cannot be applied while viewing a subset of changes.
  Only one suggestion per line can be applied in a batch.
  Add this suggestion to a batch that can be applied as a single commit.
  Applying suggestions on deleted lines is not supported.
  You must change the existing code in this line in order to create a valid suggestion.
  Outdated suggestions cannot be applied.
  This suggestion has been applied or marked resolved.
  Suggestions cannot be applied from pending reviews.
  Suggestions cannot be applied on multi-line comments.
  Suggestions cannot be applied while the pull request is queued to merge.
  Suggestion cannot be applied right now. Please check back later.
  
    
  
    
Uh oh!
There was an error while loading. Please reload this page.