123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265 |
- using System;
- using System.Collections.Generic;
- using System.Diagnostics;
- using System.IO;
- using System.Linq;
- using System.Reflection;
- using BepInEx.Common;
- using BepInEx.Logging;
- using Mono.Cecil;
- using Mono.Cecil.Cil;
- using MethodAttributes = Mono.Cecil.MethodAttributes;
- namespace BepInEx.Bootstrap
- {
- public static class Preloader
- {
- #region Path Properties
- public static string ExecutablePath { get; private set; }
- public static string CurrentExecutingAssemblyPath => Assembly.GetExecutingAssembly().CodeBase.Replace("file:///", "").Replace('/', '\\');
- public static string CurrentExecutingAssemblyDirectoryPath => Path.GetDirectoryName(CurrentExecutingAssemblyPath);
- public static string GameName => Path.GetFileNameWithoutExtension(Process.GetCurrentProcess().ProcessName);
- public static string GameRootPath => Path.GetDirectoryName(ExecutablePath);
- public static string ManagedPath => Utility.CombinePaths(GameRootPath, $"{GameName}_Data", "Managed");
- public static string PluginPath => Utility.CombinePaths(GameRootPath, "BepInEx");
- public static string PatcherPluginPath => Utility.CombinePaths(GameRootPath, "BepInEx", "patchers");
- #endregion
- public static PreloaderLogWriter PreloaderLog { get; private set; }
- public static Dictionary<string, IList<AssemblyPatcherDelegate>> PatcherDictionary = new Dictionary<string, IList<AssemblyPatcherDelegate>>(StringComparer.OrdinalIgnoreCase);
- public static void AddPatcher(string dllName, AssemblyPatcherDelegate patcher)
- {
- if (PatcherDictionary.TryGetValue(dllName, out IList<AssemblyPatcherDelegate> patcherList))
- patcherList.Add(patcher);
- else
- {
- patcherList = new List<AssemblyPatcherDelegate>();
- patcherList.Add(patcher);
- PatcherDictionary[dllName] = patcherList;
- }
- }
- private static bool TryGetConfigBool(string key, string defaultValue)
- {
- try
- {
- string result = Config.GetEntry(key, defaultValue);
- return bool.Parse(result);
- }
- catch
- {
- return false;
- }
- }
- internal static void AllocateConsole()
- {
- bool console = TryGetConfigBool("console", "false");
- bool shiftjis = TryGetConfigBool("console-shiftjis", "false");
- if (console)
- {
- try
- {
- UnityInjector.ConsoleUtil.ConsoleWindow.Attach();
- if (shiftjis)
- UnityInjector.ConsoleUtil.ConsoleEncoding.ConsoleCodePage = 932;
- }
- catch (Exception ex)
- {
- Logger.Log(LogLevel.Error, "Failed to allocate console!");
- Logger.Log(LogLevel.Error, ex);
- }
- }
- }
- public static void Main(string[] args)
- {
- try
- {
- AppDomain.CurrentDomain.AssemblyResolve += LocalResolve;
- ExecutablePath = args[0];
-
- AllocateConsole();
- PreloaderLog = new PreloaderLogWriter(TryGetConfigBool("preloader-logconsole", "false"));
- PreloaderLog.Enabled = true;
- string consoleTile = $"BepInEx {Assembly.GetExecutingAssembly().GetName().Version} - {Process.GetCurrentProcess().ProcessName}";
- Console.Title = consoleTile;
- Logger.SetLogger(PreloaderLog);
-
- PreloaderLog.WriteLine(consoleTile);
- Logger.Log(LogLevel.Message, "Preloader started");
- AddPatcher("UnityEngine.dll", PatchEntrypoint);
- if (Directory.Exists(PatcherPluginPath))
- foreach (string assemblyPath in Directory.GetFiles(PatcherPluginPath, "*.dll"))
- {
- try
- {
- var assembly = Assembly.LoadFrom(assemblyPath);
- foreach (var kv in GetPatcherMethods(assembly))
- foreach (var patcher in kv.Value)
- AddPatcher(kv.Key, patcher);
- }
- catch (BadImageFormatException) { } //unmanaged DLL
- catch (ReflectionTypeLoadException) { } //invalid references
- }
- AssemblyPatcher.PatchAll(ManagedPath, PatcherDictionary);
- }
- catch (Exception ex)
- {
- Logger.Log(LogLevel.Fatal, "Could not run preloader!");
- Logger.Log(LogLevel.Fatal, ex);
- PreloaderLog.Enabled = false;
- try
- {
- UnityInjector.ConsoleUtil.ConsoleWindow.Attach();
- Console.Write(PreloaderLog);
- }
- finally
- {
- File.WriteAllText(Path.Combine(GameRootPath, $"preloader_{DateTime.Now:yyyyMMdd_HHmmss_fff}.log"),
- PreloaderLog.ToString());
- PreloaderLog.Dispose();
- }
- }
- }
- internal static IDictionary<string, IList<AssemblyPatcherDelegate>> GetPatcherMethods(Assembly assembly)
- {
- var patcherMethods = new Dictionary<string, IList<AssemblyPatcherDelegate>>(StringComparer.OrdinalIgnoreCase);
- foreach (var type in assembly.GetExportedTypes())
- {
- try
- {
- if (type.IsInterface)
- continue;
- PropertyInfo targetsProperty = type.GetProperty(
- "TargetDLLs",
- BindingFlags.Public | BindingFlags.Static | BindingFlags.IgnoreCase,
- null,
- typeof(IEnumerable<string>),
- Type.EmptyTypes,
- null);
- MethodInfo patcher = type.GetMethod(
- "Patch",
- BindingFlags.Public | BindingFlags.Static | BindingFlags.IgnoreCase,
- null,
- CallingConventions.Any,
- new[] { typeof(AssemblyDefinition) },
- null);
- if (targetsProperty == null || !targetsProperty.CanRead || patcher == null)
- continue;
- AssemblyPatcherDelegate patchDelegate = (ass) => { patcher.Invoke(null, new object[] {ass}); };
- IEnumerable<string> targets = (IEnumerable<string>)targetsProperty.GetValue(null, null);
- foreach (string target in targets)
- {
- if (patcherMethods.TryGetValue(target, out IList<AssemblyPatcherDelegate> patchers))
- patchers.Add(patchDelegate);
- else
- {
- patchers = new List<AssemblyPatcherDelegate>{ patchDelegate };
- patcherMethods[target] = patchers;
- }
- }
- }
- catch (Exception ex)
- {
- Logger.Log(LogLevel.Warning, $"Could not load patcher methods from {assembly.GetName().Name}");
- Logger.Log(LogLevel.Warning, $"{ex}");
- }
- }
- Logger.Log(LogLevel.Info, $"Loaded {patcherMethods.SelectMany(x => x.Value).Distinct().Count()} patcher methods from {assembly.GetName().Name}");
- return patcherMethods;
- }
- internal static void PatchEntrypoint(AssemblyDefinition assembly)
- {
- if (assembly.Name.Name == "UnityEngine")
- {
- #if CECIL_10
- using (AssemblyDefinition injected = AssemblyDefinition.ReadAssembly(CurrentExecutingAssemblyPath))
- #elif CECIL_9
- AssemblyDefinition injected = AssemblyDefinition.ReadAssembly(CurrentExecutingAssemblyPath);
- #endif
- {
- var originalInjectMethod = injected.MainModule.Types.First(x => x.Name == "Chainloader")
- .Methods.First(x => x.Name == "Initialize");
- var injectMethod = assembly.MainModule.ImportReference(originalInjectMethod);
- var sceneManager = assembly.MainModule.Types.First(x => x.Name == "Application");
- var voidType = assembly.MainModule.ImportReference(typeof(void));
- var cctor = new MethodDefinition(".cctor",
- MethodAttributes.Static
- | MethodAttributes.Private
- | MethodAttributes.HideBySig
- | MethodAttributes.SpecialName
- | MethodAttributes.RTSpecialName,
- voidType);
- var ilp = cctor.Body.GetILProcessor();
- ilp.Append(ilp.Create(OpCodes.Call, injectMethod));
- ilp.Append(ilp.Create(OpCodes.Ret));
- sceneManager.Methods.Add(cctor);
- }
- }
- }
- internal static Assembly LocalResolve(object sender, ResolveEventArgs args)
- {
- AssemblyName assemblyName = new AssemblyName(args.Name);
- var foundAssembly = AppDomain.CurrentDomain.GetAssemblies().FirstOrDefault(x => x.GetName().Name == assemblyName.Name);
- if (foundAssembly != null)
- return foundAssembly;
- if (Utility.TryResolveDllAssembly(assemblyName, CurrentExecutingAssemblyDirectoryPath, out foundAssembly) ||
- Utility.TryResolveDllAssembly(assemblyName, PatcherPluginPath, out foundAssembly) ||
- Utility.TryResolveDllAssembly(assemblyName, PluginPath, out foundAssembly))
- return foundAssembly;
- return null;
- }
- }
- }
|