-
Notifications
You must be signed in to change notification settings - Fork 4.7k
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
[release/7.0] Unload MsQuic after checking for QUIC support to free resources (#75163) #75330
Closed
Closed
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 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 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 |
---|---|---|
@@ -1,6 +1,7 @@ | ||
// Licensed to the .NET Foundation under one or more agreements. | ||
// The .NET Foundation licenses this file to you under the MIT license. | ||
|
||
using System.Diagnostics; | ||
using System.Diagnostics.CodeAnalysis; | ||
using System.Runtime.InteropServices; | ||
using Microsoft.Quic; | ||
|
@@ -47,7 +48,8 @@ private MsQuicApi(QUIC_API_TABLE* apiTable) | |
} | ||
} | ||
|
||
internal static MsQuicApi Api { get; } = null!; | ||
private static readonly Lazy<MsQuicApi> _api = new Lazy<MsQuicApi>(AllocateMsQuicApi); | ||
internal static MsQuicApi Api => _api.Value; | ||
|
||
internal static bool IsQuicSupported { get; } | ||
|
||
|
@@ -58,29 +60,21 @@ private MsQuicApi(QUIC_API_TABLE* apiTable) | |
|
||
static MsQuicApi() | ||
{ | ||
IntPtr msQuicHandle; | ||
if (!NativeLibrary.TryLoad($"{Interop.Libraries.MsQuic}.{MsQuicVersion.Major}", typeof(MsQuicApi).Assembly, DllImportSearchPath.AssemblyDirectory, out msQuicHandle) && | ||
!NativeLibrary.TryLoad(Interop.Libraries.MsQuic, typeof(MsQuicApi).Assembly, DllImportSearchPath.AssemblyDirectory, out msQuicHandle)) | ||
if (!TryLoadMsQuic(out IntPtr msQuicHandle)) | ||
{ | ||
return; | ||
} | ||
|
||
try | ||
{ | ||
if (!NativeLibrary.TryGetExport(msQuicHandle, "MsQuicOpenVersion", out IntPtr msQuicOpenVersionAddress)) | ||
{ | ||
return; | ||
} | ||
|
||
QUIC_API_TABLE* apiTable = null; | ||
delegate* unmanaged[Cdecl]<uint, QUIC_API_TABLE**, int> msQuicOpenVersion = (delegate* unmanaged[Cdecl]<uint, QUIC_API_TABLE**, int>)msQuicOpenVersionAddress; | ||
if (StatusFailed(msQuicOpenVersion((uint)MsQuicVersion.Major, &apiTable))) | ||
if (!TryOpenMsQuic(msQuicHandle, out QUIC_API_TABLE* apiTable, out _)) | ||
{ | ||
return; | ||
} | ||
|
||
try | ||
{ | ||
// Check version | ||
int arraySize = 4; | ||
uint* libVersion = stackalloc uint[arraySize]; | ||
uint size = (uint)arraySize * sizeof(uint); | ||
|
@@ -99,7 +93,7 @@ static MsQuicApi() | |
return; | ||
} | ||
|
||
// Assume SChannel is being used on windows and query for the actual provider from the library | ||
// Assume SChannel is being used on windows and query for the actual provider from the library if querying is supported | ||
QUIC_TLS_PROVIDER provider = OperatingSystem.IsWindows() ? QUIC_TLS_PROVIDER.SCHANNEL : QUIC_TLS_PROVIDER.OPENSSL; | ||
size = sizeof(QUIC_TLS_PROVIDER); | ||
apiTable->GetParam(null, QUIC_PARAM_GLOBAL_TLS_PROVIDER, &size, &provider); | ||
|
@@ -122,26 +116,84 @@ static MsQuicApi() | |
Tls13ClientMayBeDisabled = IsTls13Disabled(isServer: false); | ||
} | ||
|
||
Api = new MsQuicApi(apiTable); | ||
IsQuicSupported = true; | ||
} | ||
finally | ||
{ | ||
if (!IsQuicSupported && NativeLibrary.TryGetExport(msQuicHandle, "MsQuicClose", out IntPtr msQuicClose)) | ||
{ | ||
// Gracefully close the API table | ||
((delegate* unmanaged[Cdecl]<QUIC_API_TABLE*, void>)msQuicClose)(apiTable); | ||
} | ||
// Gracefully close the API table to free resources. The API table will be allocated lazily again if needed | ||
bool closed = TryCloseMsQuic(msQuicHandle, apiTable); | ||
Debug.Assert(closed, "Failed to close MsQuic"); | ||
} | ||
|
||
} | ||
finally | ||
{ | ||
if (!IsQuicSupported) | ||
// Unload the library, we will load it again when we actually use QUIC | ||
NativeLibrary.Free(msQuicHandle); | ||
} | ||
} | ||
|
||
private static MsQuicApi AllocateMsQuicApi() | ||
{ | ||
Debug.Assert(IsQuicSupported); | ||
|
||
int openStatus = MsQuic.QUIC_STATUS_INTERNAL_ERROR; | ||
|
||
if (TryLoadMsQuic(out IntPtr msQuicHandle) && | ||
TryOpenMsQuic(msQuicHandle, out QUIC_API_TABLE* apiTable, out openStatus)) | ||
{ | ||
return new MsQuicApi(apiTable); | ||
} | ||
|
||
ThrowHelper.ThrowIfMsQuicError(openStatus); | ||
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. throw ThrowHelper.GetExceptionForMsQuicStatus(openStatus); and then remove the next line? |
||
|
||
// this should unreachable as TryOpenMsQuic returns non-success status on failure | ||
throw new Exception("Failed to create MsQuicApi instance"); | ||
} | ||
|
||
private static bool TryLoadMsQuic(out IntPtr msQuicHandle) => | ||
NativeLibrary.TryLoad($"{Interop.Libraries.MsQuic}.{MsQuicVersion.Major}", typeof(MsQuicApi).Assembly, DllImportSearchPath.AssemblyDirectory, out msQuicHandle) || | ||
NativeLibrary.TryLoad(Interop.Libraries.MsQuic, typeof(MsQuicApi).Assembly, DllImportSearchPath.AssemblyDirectory, out msQuicHandle); | ||
|
||
private static bool TryOpenMsQuic(IntPtr msQuicHandle, out QUIC_API_TABLE* apiTable, out int openStatus) | ||
{ | ||
apiTable = null; | ||
if (!NativeLibrary.TryGetExport(msQuicHandle, "MsQuicOpenVersion", out IntPtr msQuicOpenVersionAddress)) | ||
{ | ||
if (NetEventSource.Log.IsEnabled()) | ||
{ | ||
NetEventSource.Info(null, "Failed to get MsQuicOpenVersion export in msquic library."); | ||
} | ||
|
||
openStatus = MsQuic.QUIC_STATUS_NOT_FOUND; | ||
return false; | ||
} | ||
|
||
QUIC_API_TABLE* table = null; | ||
delegate* unmanaged[Cdecl]<uint, QUIC_API_TABLE**, int> msQuicOpenVersion = (delegate* unmanaged[Cdecl]<uint, QUIC_API_TABLE**, int>)msQuicOpenVersionAddress; | ||
openStatus = msQuicOpenVersion((uint)MsQuicVersion.Major, &table); | ||
if (StatusFailed(openStatus)) | ||
{ | ||
if (NetEventSource.Log.IsEnabled()) | ||
{ | ||
NativeLibrary.Free(msQuicHandle); | ||
NetEventSource.Info(null, $"MsQuicOpenVersion returned {openStatus} status code."); | ||
} | ||
|
||
return false; | ||
} | ||
|
||
apiTable = table; | ||
return true; | ||
} | ||
|
||
private static bool TryCloseMsQuic(IntPtr msQuicHandle, QUIC_API_TABLE* apiTable) | ||
{ | ||
if (NativeLibrary.TryGetExport(msQuicHandle, "MsQuicClose", out IntPtr msQuicClose)) | ||
{ | ||
((delegate* unmanaged[Cdecl]<QUIC_API_TABLE*, void>)msQuicClose)(apiTable); | ||
return true; | ||
} | ||
|
||
return false; | ||
} | ||
|
||
private static bool IsWindowsVersionSupported() => OperatingSystem.IsWindowsVersionAtLeast(MinWindowsVersion.Major, | ||
|
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.
I thought @jkotas had advised against actually unloading it. Did we decide it makes sense to anyway?
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.
Also note that this is not unloading it completely. The library for msquic tracing support stays around: #74710 (comment) .
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 think we can keep the same benefit without unloading the library from the process, we just need to save the IntPtr handle to a static field. The threads should all get deallocated by
MsQuicClose
. The dangling libmsquic.lttng.so is something I have not foreseen when writing this change.