This repository was archived by the owner on Jan 23, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4.9k
Release pinned buffers correctly for WinHttpHandler, WinHttpWebSocket #6500
Merged
Merged
Changes from all commits
Commits
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 |
---|---|---|
|
@@ -40,7 +40,7 @@ public static WinHttpRequestState FromIntPtr(IntPtr gcHandle) | |
{ | ||
GCHandle stateHandle = GCHandle.FromIntPtr(gcHandle); | ||
return (WinHttpRequestState)stateHandle.Target; | ||
} | ||
} | ||
|
||
public IntPtr ToIntPtr() | ||
{ | ||
|
@@ -123,6 +123,22 @@ public Func< | |
public long? ExpectedBytesToRead { get; set; } | ||
public long CurrentBytesRead { get; set; } | ||
|
||
// TODO (Issue 2505): temporary pinned buffer caches of 1 item. Will be replaced by PinnableBufferCache. | ||
private GCHandle _cachedReceivePinnedBuffer = default(GCHandle); | ||
|
||
public void PinReceiveBuffer(byte[] buffer) | ||
{ | ||
if (!_cachedReceivePinnedBuffer.IsAllocated || _cachedReceivePinnedBuffer.Target != buffer) | ||
{ | ||
if (_cachedReceivePinnedBuffer.IsAllocated) | ||
{ | ||
_cachedReceivePinnedBuffer.Free(); | ||
} | ||
|
||
_cachedReceivePinnedBuffer = GCHandle.Alloc(buffer, GCHandleType.Pinned); | ||
} | ||
} | ||
|
||
#region IDisposable Members | ||
private void Dispose(bool disposing) | ||
{ | ||
|
@@ -147,7 +163,17 @@ private void Dispose(bool disposing) | |
|
||
if (_operationHandle.IsAllocated) | ||
{ | ||
// This method only gets called when the WinHTTP request handle is fully closed and thus all | ||
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. Is there anything we can assert to ensure that? |
||
// async operations are done. So, it is safe at this point to unpin the buffers and release | ||
// the strong GCHandle for this object. | ||
if (_cachedReceivePinnedBuffer.IsAllocated) | ||
{ | ||
_cachedReceivePinnedBuffer.Free(); | ||
_cachedReceivePinnedBuffer = default(GCHandle); | ||
} | ||
|
||
_operationHandle.Free(); | ||
_operationHandle = default(GCHandle); | ||
} | ||
} | ||
|
||
|
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
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
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
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What guarantees do we have that there isn't still an outstanding operation using the old target? Maybe there's something we can assert, about there not being any outstanding operations or something?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The WinHttpRequestState object relies on the caller (and there is only one caller) to assert that. In particular, the only async operation possible on this pinned receive buffer is from WinHttpResponseStream.ReadAsync(). There is already a check in that public API surface to reject calls to it if the previous ReadAsync is in progress.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ok.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
FWIW #2501 will ensure more consistency checks as well.