Skip to content

Commit c75bba3

Browse files
authored
Skip Init and Static helpers when looking for a caller (#111446)
* Skip Init and Static helpers when looking for a caller We have learned that real world code may call Assembly.GetCallingAssembly in a static constructor. It returns different value now that there is an extra managed frame introduced by HMF removal. The fix adds the managed helper types to the long ad-hoc list of types that should be skipped for this and similar APIs. It does not change the fact that Assembly.GetCallingAssembly is a slow fragile unreliable API that should not be used. Fixes #111399 * Add regression test
1 parent 982d57f commit c75bba3

File tree

2 files changed

+25
-0
lines changed

2 files changed

+25
-0
lines changed

src/coreclr/vm/appdomain.cpp

+2
Original file line numberDiff line numberDiff line change
@@ -1287,6 +1287,8 @@ bool SystemDomain::IsReflectionInvocationMethod(MethodDesc* pMeth)
12871287
CLASS__DELEGATE,
12881288
CLASS__MULTICAST_DELEGATE,
12891289
CLASS__METHODBASEINVOKER,
1290+
CLASS__INITHELPERS,
1291+
CLASS__STATICSHELPERS,
12901292
};
12911293

12921294
static bool fInited = false;

src/libraries/System.Runtime/tests/System.Reflection.Tests/AssemblyTests.cs

+23
Original file line numberDiff line numberDiff line change
@@ -732,6 +732,29 @@ public void GetCallingAssembly(Assembly assembly1, Assembly assembly2, bool expe
732732
Assert.Equal(expected, assembly1.Equals(assembly2));
733733
}
734734

735+
[Fact]
736+
[ActiveIssue("https://github.com/dotnet/runtime/issues/51673", typeof(PlatformDetection), nameof(PlatformDetection.IsBrowser), nameof(PlatformDetection.IsMonoAOT))]
737+
[ActiveIssue("https://github.com/dotnet/runtime/issues/69919", typeof(PlatformDetection), nameof(PlatformDetection.IsNativeAot))]
738+
public void GetCallingAssemblyInCctor()
739+
{
740+
TestGetCallingAssemblyInCctor.Run();
741+
}
742+
743+
private class TestGetCallingAssemblyInCctor
744+
{
745+
private static Assembly _callingAssembly;
746+
747+
static TestGetCallingAssemblyInCctor()
748+
{
749+
_callingAssembly = Assembly.GetCallingAssembly();
750+
}
751+
752+
public static void Run()
753+
{
754+
Assert.Equal(typeof(AssemblyTests).Assembly, _callingAssembly);
755+
}
756+
}
757+
735758
[Fact]
736759
public void GetExecutingAssembly()
737760
{

0 commit comments

Comments
 (0)