Skip to content
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

Revert "Set AppContext.BaseDirectory and the lookup path for AssemblyDirectory to the directory containing the NativeAOT module" #113211

Merged
merged 1 commit into from
Mar 6, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public virtual string CreateStackTraceString(IntPtr ip, bool includeFileInfo, ou
}

// If we don't have precise information, try to map it at least back to the right module.
string? moduleFullFileName = RuntimeAugments.TryGetFullPathToApplicationModule(ip, out IntPtr moduleBase);
string moduleFullFileName = RuntimeAugments.TryGetFullPathToApplicationModule(ip, out IntPtr moduleBase);

// Without any callbacks or the ability to map ip correctly we better admit that we don't know
if (string.IsNullOrEmpty(moduleFullFileName))
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -641,7 +641,7 @@ public static RuntimeTypeHandle GetNullableType(RuntimeTypeHandle nullableType)
/// </summary>
/// <param name="ip">Address inside the module</param>
/// <param name="moduleBase">Module base address</param>
public static unsafe string? TryGetFullPathToApplicationModule(IntPtr ip, out IntPtr moduleBase)
public static unsafe string TryGetFullPathToApplicationModule(IntPtr ip, out IntPtr moduleBase)
Copy link
Preview

Copilot AI Mar 6, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The method signature has been changed to return a non-nullable string, but the implementation may return null when moduleBase is IntPtr.Zero. Consider returning string.Empty instead to adhere to the non-nullable contract.

Copilot is powered by AI, so mistakes are possible. Review output carefully before use.

{
moduleBase = RuntimeImports.RhGetOSModuleFromPointer(ip);
if (moduleBase == IntPtr.Zero)
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.

using Internal.Runtime.Augments;
using System.Collections.Generic;
using System.Runtime;
using System.Runtime.ExceptionServices;
Expand Down Expand Up @@ -37,21 +36,5 @@ internal static void OnUnhandledException(object e)
{
UnhandledException?.Invoke(/* AppDomain */ null, new UnhandledExceptionEventArgs(e, true));
}

private static unsafe string GetRuntimeModulePath()
{
// We aren't going to call this method, we just need an address that we know is in this module.
// As this code is NativeAOT only, we know that this method will be AOT compiled into the executable,
// so the entry point address will be in the module.
void* ip = (void*)(delegate*<string>)&GetRuntimeModulePath;
if (RuntimeAugments.TryGetFullPathToApplicationModule((nint)ip, out _) is string modulePath)
{
return modulePath;
}

// If this method isn't in a dynamically loaded module,
// then it's in the executable. In that case, we can use the process path.
return Environment.ProcessPath;
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ private static string GetBaseDirectoryCore()
{
// Fallback path for hosts that do not set APP_CONTEXT_BASE_DIRECTORY explicitly
#if NATIVEAOT
string? path = GetRuntimeModulePath();
string? path = Environment.ProcessPath;
#else
string? path = Assembly.GetEntryAssembly()?.Location;
#endif
Expand Down

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

Loading