0
0
mirror of https://github.com/sp-tarkov/assembly-tool.git synced 2025-02-13 06:30:44 -05:00
assembly-tool/de4dot/de4dot.code/AssemblyClient/NewAppDomainAssemblyServerLoader.cs
Archangel 77a24319b1 Update de4dot to use dnlib 4.4.0 and x64
Adds the source code used for this modification, this de4dot source code has been cleaned of any things not needed for deobfuscating the tarkov assembly

Co-authored-by: 静穏靄 <170472707+seionmoya@users.noreply.github.com>
2024-12-30 16:01:39 +01:00

93 lines
2.4 KiB
C#

/*
Copyright (C) 2011-2015 de4dot@gmail.com
This file is part of de4dot.
de4dot is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
de4dot is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with de4dot. If not, see <http://www.gnu.org/licenses/>.
*/
#if NETFRAMEWORK
using System;
using System.Threading;
using AssemblyData;
namespace de4dot.code.AssemblyClient {
// Starts the server in a new app domain.
public sealed class NewAppDomainAssemblyServerLoader : IpcAssemblyServerLoader {
AppDomain appDomain;
Thread thread;
public NewAppDomainAssemblyServerLoader(AssemblyServiceType serviceType)
: base(serviceType) {
}
public override void LoadServer(string filename) {
if (appDomain != null)
throw new ApplicationException("Server is already loaded");
appDomain = AppDomain.CreateDomain(Utils.RandomName(15, 20));
thread = new Thread(new ThreadStart(() => {
try {
#if NET48
appDomain.ExecuteAssembly(filename, new string[] {
#else
#error Unknown tfm
#endif
((int)serviceType).ToString(), ipcName, ipcUri
});
}
catch (NullReferenceException) {
// Here if appDomain was set to null by Dispose() before this thread started
}
catch (AppDomainUnloadedException) {
// Here if it was unloaded by Dispose()
}
UnloadAppDomain(appDomain);
appDomain = null;
}));
thread.Start();
}
public override void Dispose() {
UnloadAppDomain(appDomain);
if (thread != null) {
try {
if (!thread.Join(100))
thread.Abort();
}
catch (ThreadStateException) {
// Here if eg. the thread wasn't started
}
thread = null;
}
// It could still be loaded if the thread was aborted so do it again
UnloadAppDomain(appDomain);
appDomain = null;
}
static void UnloadAppDomain(AppDomain appDomain) {
if (appDomain != null) {
try {
AppDomain.Unload(appDomain);
}
catch (AppDomainUnloadedException) {
}
catch (CannotUnloadAppDomainException) {
}
}
}
}
}
#endif