AssemblyPatcher.cs 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187
  1. using System;
  2. using System.Collections.Generic;
  3. using System.IO;
  4. using System.Reflection;
  5. using BepInEx.Configuration;
  6. using BepInEx.Logging;
  7. using BepInEx.Preloader.RuntimeFixes;
  8. using Mono.Cecil;
  9. namespace BepInEx.Preloader.Patching
  10. {
  11. /// <summary>
  12. /// Delegate used in patching assemblies.
  13. /// </summary>
  14. /// <param name="assembly">The assembly that is being patched.</param>
  15. internal delegate void AssemblyPatcherDelegate(ref AssemblyDefinition assembly);
  16. /// <summary>
  17. /// Worker class which is used for loading and patching entire folders of assemblies, or alternatively patching and
  18. /// loading assemblies one at a time.
  19. /// </summary>
  20. internal static class AssemblyPatcher
  21. {
  22. public static List<PatcherPlugin> PatcherPlugins { get; } = new List<PatcherPlugin>();
  23. /// <summary>
  24. /// Adds a single assembly patcher to the pool of applicable patches.
  25. /// </summary>
  26. /// <param name="patcher">Patcher to apply.</param>
  27. public static void AddPatcher(PatcherPlugin patcher)
  28. {
  29. PatcherPlugins.Add(patcher);
  30. }
  31. /// <summary>
  32. /// Adds all patchers from all managed assemblies specified in a directory.
  33. /// </summary>
  34. /// <param name="directory">Directory to search patcher DLLs from.</param>
  35. /// <param name="patcherLocator">A function that locates assembly patchers in a given managed assembly.</param>
  36. public static void AddPatchersFromDirectory(string directory,
  37. Func<Assembly, List<PatcherPlugin>> patcherLocator)
  38. {
  39. if (!Directory.Exists(directory))
  40. return;
  41. var sortedPatchers = new SortedDictionary<string, PatcherPlugin>();
  42. foreach (string assemblyPath in Directory.GetFiles(directory, "*.dll"))
  43. try
  44. {
  45. var assembly = Assembly.LoadFrom(assemblyPath);
  46. foreach (var patcher in patcherLocator(assembly))
  47. sortedPatchers.Add(patcher.Name, patcher);
  48. }
  49. catch (BadImageFormatException) { } //unmanaged DLL
  50. catch (ReflectionTypeLoadException) { } //invalid references
  51. foreach (KeyValuePair<string, PatcherPlugin> patcher in sortedPatchers)
  52. AddPatcher(patcher.Value);
  53. }
  54. private static void InitializePatchers()
  55. {
  56. foreach (var assemblyPatcher in PatcherPlugins)
  57. assemblyPatcher.Initializer?.Invoke();
  58. }
  59. private static void FinalizePatching()
  60. {
  61. foreach (var assemblyPatcher in PatcherPlugins)
  62. assemblyPatcher.Finalizer?.Invoke();
  63. }
  64. /// <summary>
  65. /// Releases all patchers to let them be collected by GC.
  66. /// </summary>
  67. public static void DisposePatchers()
  68. {
  69. PatcherPlugins.Clear();
  70. }
  71. /// <summary>
  72. /// Applies patchers to all assemblies in the given directory and loads patched assemblies into memory.
  73. /// </summary>
  74. /// <param name="directory">Directory to load CLR assemblies from.</param>
  75. public static void PatchAndLoad(string directory)
  76. {
  77. // First, load patchable assemblies into Cecil
  78. var assemblies = new Dictionary<string, AssemblyDefinition>();
  79. foreach (string assemblyPath in Directory.GetFiles(directory, "*.dll"))
  80. {
  81. var assembly = AssemblyDefinition.ReadAssembly(assemblyPath);
  82. //NOTE: this is special cased here because the dependency handling for System.dll is a bit wonky
  83. //System has an assembly reference to itself, and it also has a reference to Mono.Security causing a circular dependency
  84. //It's also generally dangerous to change system.dll since so many things rely on it,
  85. // and it's already loaded into the appdomain since this loader references it, so we might as well skip it
  86. if (assembly.Name.Name == "System"
  87. || assembly.Name.Name == "mscorlib"
  88. ) //mscorlib is already loaded into the appdomain so it can't be patched
  89. {
  90. assembly.Dispose();
  91. continue;
  92. }
  93. if (UnityPatches.AssemblyLocations.ContainsKey(assembly.FullName))
  94. {
  95. Logger.LogWarning($"Tried to load duplicate assembly {Path.GetFileName(assemblyPath)} from Managed folder! Skipping...");
  96. continue;
  97. }
  98. assemblies.Add(Path.GetFileName(assemblyPath), assembly);
  99. UnityPatches.AssemblyLocations.Add(assembly.FullName, Path.GetFullPath(assemblyPath));
  100. }
  101. // Next, initialize all the patchers
  102. InitializePatchers();
  103. // Then, perform the actual patching
  104. var patchedAssemblies = new HashSet<string>();
  105. foreach (var assemblyPatcher in PatcherPlugins)
  106. foreach (string targetDll in assemblyPatcher.TargetDLLs)
  107. if (assemblies.TryGetValue(targetDll, out var assembly))
  108. {
  109. assemblyPatcher.Patcher?.Invoke(ref assembly);
  110. assemblies[targetDll] = assembly;
  111. patchedAssemblies.Add(targetDll);
  112. }
  113. // Finally, load patched assemblies into memory
  114. foreach (KeyValuePair<string, AssemblyDefinition> kv in assemblies)
  115. {
  116. string filename = kv.Key;
  117. var assembly = kv.Value;
  118. if (ConfigDumpAssemblies.Value && patchedAssemblies.Contains(filename))
  119. using (var mem = new MemoryStream())
  120. {
  121. string dirPath = Path.Combine(Paths.BepInExRootPath, "DumpedAssemblies");
  122. if (!Directory.Exists(dirPath))
  123. Directory.CreateDirectory(dirPath);
  124. assembly.Write(mem);
  125. File.WriteAllBytes(Path.Combine(dirPath, filename), mem.ToArray());
  126. }
  127. // Note that since we only *load* assemblies, they shouldn't trigger dependency loading
  128. // Not loading all assemblies is very important not only because of memory reasons,
  129. // but because some games *rely* on that because of messed up internal dependencies.
  130. if (patchedAssemblies.Contains(filename))
  131. Load(assembly);
  132. // Though we have to dispose of all assemblies regardless of them being patched or not
  133. assembly.Dispose();
  134. }
  135. //run all finalizers
  136. FinalizePatching();
  137. }
  138. /// <summary>
  139. /// Loads an individual assembly definition into the CLR.
  140. /// </summary>
  141. /// <param name="assembly">The assembly to load.</param>
  142. public static void Load(AssemblyDefinition assembly)
  143. {
  144. using (var assemblyStream = new MemoryStream())
  145. {
  146. assembly.Write(assemblyStream);
  147. Assembly.Load(assemblyStream.ToArray());
  148. }
  149. }
  150. #region Config
  151. private static readonly ConfigWrapper<bool> ConfigDumpAssemblies = ConfigFile.CoreConfig.Wrap(
  152. "Preloader",
  153. "DumpAssemblies",
  154. "If enabled, BepInEx will save patched assemblies into BepInEx/DumpedAssemblies.\nThis can be used by developers to inspect and debug preloader patchers.",
  155. false);
  156. #endregion
  157. }
  158. }