de4dot-cex/de4dot.code/AssemblyClient/AssemblyClientFactory.cs

75 lines
2.4 KiB
C#
Raw Normal View History

2011-09-22 10:55:30 +08:00
/*
2015-10-30 05:45:26 +08:00
Copyright (C) 2011-2015 de4dot@gmail.com
2011-09-22 10:55:30 +08:00
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/>.
*/
using dnlib.DotNet;
2013-10-03 00:07:28 +08:00
using AssemblyData;
namespace de4dot.code.AssemblyClient {
public interface IAssemblyClientFactory {
2013-10-03 00:07:28 +08:00
IAssemblyClient Create(AssemblyServiceType serviceType);
2011-09-22 10:55:30 +08:00
}
public class SameAppDomainAssemblyClientFactory : IAssemblyClientFactory {
2013-10-03 00:07:28 +08:00
public IAssemblyClient Create(AssemblyServiceType serviceType) {
return new AssemblyClient(new SameAppDomainAssemblyServerLoader(serviceType));
2011-09-22 10:55:30 +08:00
}
}
public class NewAppDomainAssemblyClientFactory : IAssemblyClientFactory {
2013-10-03 00:07:28 +08:00
public IAssemblyClient Create(AssemblyServiceType serviceType) {
return new AssemblyClient(new NewAppDomainAssemblyServerLoader(serviceType));
2011-09-22 10:55:30 +08:00
}
}
public class NewProcessAssemblyClientFactory : IAssemblyClientFactory {
ServerClrVersion serverVersion;
public NewProcessAssemblyClientFactory() {
this.serverVersion = ServerClrVersion.CLR_ANY_ANYCPU;
}
public NewProcessAssemblyClientFactory(ServerClrVersion serverVersion) {
this.serverVersion = serverVersion;
}
2013-10-03 00:07:28 +08:00
public IAssemblyClient Create(AssemblyServiceType serviceType, ModuleDef module) {
return new AssemblyClient(new NewProcessAssemblyServerLoader(serviceType, GetServerClrVersion(module)));
}
2013-10-03 00:07:28 +08:00
public IAssemblyClient Create(AssemblyServiceType serviceType) {
return new AssemblyClient(new NewProcessAssemblyServerLoader(serviceType, serverVersion));
2011-09-22 10:55:30 +08:00
}
public static ServerClrVersion GetServerClrVersion(ModuleDef module) {
switch (module.GetPointerSize()) {
default:
case 4:
if (module.IsClr40)
return ServerClrVersion.CLR_v40_x86;
return ServerClrVersion.CLR_v20_x86;
case 8:
if (module.IsClr40)
return ServerClrVersion.CLR_v40_x64;
return ServerClrVersion.CLR_v20_x64;
}
}
2011-09-22 10:55:30 +08:00
}
}