-
Notifications
You must be signed in to change notification settings - Fork 286
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
Use an IBufferWriter<byte> to write the outgoing SSPI blob #2452
base: main
Are you sure you want to change the base?
Conversation
This change removes the need to pre-allocate anything for the outgoing blobs of SSPI generation. As part of this: - An internal implementation of ArrayBufferWriter is added for platforms that do not support it - SqlObjectPool is imbued with the ability to create/reset pooled objects - TdsParser/TdsLogin is updated to use pooled ArrayBufferWriter instances to generate SSPI blobs - Native methods are updated to take in Span/* for writeable byte[] - SSPIContextProvider signature is updated to take IBufferWriter
@David-Engel can I get a review on this next step in the SSPI journey? |
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #2452 +/- ##
==========================================
- Coverage 72.81% 72.71% -0.11%
==========================================
Files 311 314 +3
Lines 61694 61787 +93
==========================================
+ Hits 44922 44926 +4
- Misses 16772 16861 +89
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. |
@David-Engel ping |
I ran our internal Kerberos test pipeline against this PR and all tests passed. |
src/Microsoft.Data.SqlClient/src/Microsoft/Data/SqlClient/SSPI/NegotiateSSPIContextProvider.cs
Outdated
Show resolved
Hide resolved
@David-Engel can you run this on the kerberos suite again? |
@David-Engel something is up with the merges so let me get those fixed before you do the kerberos runs |
@David-Engel I'm getting sporadic errors that don't seem to always repro: https://sqlclientdrivers.visualstudio.com/public/_build/results?buildId=96359&view=logs&j=b14281d2-3365-502e-c6c8-e9e46d660715&t=a67f9feb-8bad-50ac-92c7-d62292e3e6fb&l=63 Have you seen these or are they related to my pr? |
@@ -519,6 +519,9 @@ | |||
<Compile Include="$(CommonSourceRoot)Microsoft\Data\SqlClient\SqlObjectPool.cs"> | |||
<Link>Microsoft\Data\SqlClient\SqlObjectPool.cs</Link> | |||
</Compile> | |||
<Compile Include="$(CommonSourceRoot)Microsoft\Data\SqlClient\ArrayBufferWriter.cs"> |
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.
Just a minor adjustment here to keep the files in alphabetically order.
<Compile Include="$(CommonSourceRoot)Microsoft\Data\SqlClient\SqlObjectPool.cs"> | ||
<Link>Microsoft\Data\SqlClient\SqlObjectPool.cs</Link> | ||
</Compile> | ||
<Compile Include="$(CommonSourceRoot)Microsoft\Data\SqlClient\ArrayBufferWriter.cs"> |
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.
Same note here.
// The .NET Foundation licenses this file to you under the MIT license. | ||
// See the LICENSE file in the project root for more information. | ||
|
||
#if NETFRAMEWORK || NETSTANDARD |
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.
There is no NetStandard anymore.
#if NETFRAMEWORK || NETSTANDARD | |
#if NETFRAMEWORK |
|
||
private static void ThrowInvalidOperationException_AdvancedTooFar(int capacity) | ||
{ | ||
throw new InvalidOperationException($"Buffer advanced to far: {capacity}"); |
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 new message should be added in the Strings.res
.
|
||
private static void ThrowOutOfMemoryException(uint capacity) | ||
{ | ||
throw new OutOfMemoryException($"Buffer maximum size exceeded: {capacity}"); |
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.
Same note here.
|
||
if (rentedSSPIBuff != null) | ||
if (sspiWriter is { }) |
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.
I believe the is not null
has more readability over this pattern in the cases like this.
@@ -8,6 +8,8 @@ namespace Microsoft.Data.SqlClient | |||
{ | |||
internal partial class TdsParser | |||
{ | |||
private static readonly SqlObjectPool<ArrayBufferWriter<byte>> _writers = new(20, () => new(), a => a.Clear()); |
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.
No complain here only I'm curious about the constant 20 pooled objects here!
cc @David-Engel
I think they are. CI runs against main are clean. The failures point to integrated authentication when running against a named instance. |
Getting back to prioritizing these PRs, can you please address pending feedback and update branch? Thanks! |
Sure! It'll be about a week until I can look at it, but I'll get to it |
This change removes the need to pre-allocate anything for the outgoing blobs of SSPI generation. As part of this:
Part of #2253