2024-05-14 20:37:48 +08:00
|
|
|
|
#include"def_il2cpp.hpp"
|
|
|
|
|
namespace{
|
|
|
|
|
|
2024-05-09 07:23:06 +08:00
|
|
|
|
Il2CppClass* get_il2cppclass1(const char* assemblyName, const char* namespaze,
|
2024-05-14 10:32:10 +08:00
|
|
|
|
const char* klassName,bool strict)
|
2024-05-09 07:23:06 +08:00
|
|
|
|
{
|
2024-05-14 20:37:48 +08:00
|
|
|
|
auto il2cpp_domain=(SafeFptr(il2cpp_domain_get))();
|
|
|
|
|
if (!il2cpp_domain) return NULL;
|
2024-05-14 13:07:12 +08:00
|
|
|
|
void* assembly=0;
|
|
|
|
|
do{
|
|
|
|
|
assembly = (SafeFptr(il2cpp_domain_assembly_open))(il2cpp_domain, assemblyName);
|
|
|
|
|
if(!assembly)break;
|
|
|
|
|
auto image = (SafeFptr(il2cpp_assembly_get_image))(assembly);
|
|
|
|
|
if(!image)break;
|
|
|
|
|
auto klass = (SafeFptr(il2cpp_class_from_name))(image, namespaze, klassName);
|
|
|
|
|
if(klass)return klass;
|
|
|
|
|
}while(0);
|
2024-05-14 10:32:10 +08:00
|
|
|
|
if(strict)return NULL;
|
2024-05-14 13:07:12 +08:00
|
|
|
|
|
|
|
|
|
int _ = 0;
|
|
|
|
|
size_t sz = 0;
|
|
|
|
|
auto assemblies = (SafeFptr(il2cpp_domain_get_assemblies))(il2cpp_domain, &sz);
|
|
|
|
|
if(assemblies)
|
|
|
|
|
for (auto i = 0; i < sz; i++, assemblies++) {
|
|
|
|
|
auto image = (SafeFptr(il2cpp_assembly_get_image))(*assemblies);
|
|
|
|
|
if(!image)continue;
|
|
|
|
|
auto cls = (SafeFptr(il2cpp_class_from_name))(image, namespaze, klassName);
|
|
|
|
|
if(cls)return cls;
|
|
|
|
|
}
|
2024-05-09 07:23:06 +08:00
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
void foreach_func(Il2CppClass* klass, void* userData){
|
2024-05-09 14:22:19 +08:00
|
|
|
|
auto st=(std::vector<Il2CppClass*>*)userData;
|
|
|
|
|
st->push_back(klass);
|
|
|
|
|
|
2024-05-09 07:23:06 +08:00
|
|
|
|
}
|
2024-05-09 14:22:19 +08:00
|
|
|
|
std::vector<Il2CppClass*> get_il2cppclass2(const char* namespaze,
|
2024-05-09 07:23:06 +08:00
|
|
|
|
const char* klassName)
|
|
|
|
|
{
|
2024-05-09 14:22:19 +08:00
|
|
|
|
std::vector<Il2CppClass*>maybes;
|
|
|
|
|
std::vector<Il2CppClass*>klasses;
|
2024-05-14 13:07:12 +08:00
|
|
|
|
(SafeFptr(il2cpp_class_for_each))(foreach_func,&klasses);
|
2024-05-09 07:23:06 +08:00
|
|
|
|
|
2024-05-09 14:22:19 +08:00
|
|
|
|
for(auto klass:klasses){
|
2024-05-14 13:07:12 +08:00
|
|
|
|
auto classname = (SafeFptr(il2cpp_class_get_name))(klass);
|
|
|
|
|
if(!classname)continue;
|
2024-05-09 14:22:19 +08:00
|
|
|
|
if(strcmp(classname,klassName)!=0)continue;
|
|
|
|
|
maybes.push_back(klass);
|
2024-05-14 13:07:12 +08:00
|
|
|
|
auto namespacename=(SafeFptr(il2cpp_class_get_namespace))(klass);
|
|
|
|
|
if(!namespacename)continue;
|
|
|
|
|
if(strlen(namespaze)&&(strcmp(namespacename,namespaze)==0)){
|
|
|
|
|
return {klass};
|
2024-05-09 14:22:19 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return maybes;
|
|
|
|
|
}
|
2024-05-09 15:56:34 +08:00
|
|
|
|
struct AutoThread{
|
2024-05-09 14:22:19 +08:00
|
|
|
|
void*thread=NULL;
|
2024-05-09 15:56:34 +08:00
|
|
|
|
AutoThread(){
|
2024-05-14 13:07:12 +08:00
|
|
|
|
auto il2cpp_domain=(SafeFptr(il2cpp_domain_get))();
|
2024-05-09 14:22:19 +08:00
|
|
|
|
if (!il2cpp_domain) return;
|
2024-05-14 13:07:12 +08:00
|
|
|
|
thread= (SafeFptr(il2cpp_thread_attach))(il2cpp_domain);
|
2024-05-09 14:22:19 +08:00
|
|
|
|
}
|
2024-05-09 15:56:34 +08:00
|
|
|
|
~AutoThread(){
|
2024-05-09 14:22:19 +08:00
|
|
|
|
if(!thread)return;
|
2024-05-14 13:07:12 +08:00
|
|
|
|
(SafeFptr(il2cpp_thread_detach))(thread);
|
2024-05-09 14:22:19 +08:00
|
|
|
|
}
|
|
|
|
|
};
|
2024-05-09 21:31:38 +08:00
|
|
|
|
void tryprintimage(Il2CppClass* klass){
|
2024-05-14 13:07:12 +08:00
|
|
|
|
auto image=(SafeFptr(il2cpp_class_get_image))(klass);
|
2024-05-09 21:31:38 +08:00
|
|
|
|
if(!image)return;
|
2024-05-14 13:07:12 +08:00
|
|
|
|
auto imagen=(SafeFptr(il2cpp_image_get_name))(image);
|
|
|
|
|
auto names=(SafeFptr(il2cpp_class_get_namespace))(klass);
|
|
|
|
|
if(imagen&&names)
|
|
|
|
|
ConsoleOutput("%s:%s",imagen,names);
|
2024-05-09 21:31:38 +08:00
|
|
|
|
}
|
2024-05-09 14:22:19 +08:00
|
|
|
|
uintptr_t getmethodofklass(Il2CppClass* klass,const char* name, int argsCount){
|
|
|
|
|
if(!klass)return NULL;
|
2024-05-14 13:07:12 +08:00
|
|
|
|
auto ret = (SafeFptr(il2cpp_class_get_method_from_name))(klass, name, argsCount);
|
2024-05-09 14:22:19 +08:00
|
|
|
|
if(!ret)return NULL;
|
2024-05-09 21:31:38 +08:00
|
|
|
|
tryprintimage(klass);
|
2024-05-09 14:22:19 +08:00
|
|
|
|
return ret->methodPointer;
|
2024-05-09 07:23:06 +08:00
|
|
|
|
}
|
2024-05-14 20:37:48 +08:00
|
|
|
|
}
|
|
|
|
|
void il2cppfunctions::init(HMODULE game_module)
|
|
|
|
|
{
|
|
|
|
|
RESOLVE_IMPORT(il2cpp_string_new_utf16);
|
|
|
|
|
RESOLVE_IMPORT(il2cpp_string_chars);
|
|
|
|
|
RESOLVE_IMPORT(il2cpp_string_length);
|
|
|
|
|
RESOLVE_IMPORT(il2cpp_image_get_name);
|
|
|
|
|
RESOLVE_IMPORT(il2cpp_class_get_image);
|
|
|
|
|
RESOLVE_IMPORT(il2cpp_string_new_utf16);
|
|
|
|
|
RESOLVE_IMPORT(il2cpp_string_new);
|
|
|
|
|
RESOLVE_IMPORT(il2cpp_domain_get);
|
|
|
|
|
RESOLVE_IMPORT(il2cpp_domain_assembly_open);
|
|
|
|
|
RESOLVE_IMPORT(il2cpp_assembly_get_image);
|
|
|
|
|
RESOLVE_IMPORT(il2cpp_class_from_name);
|
|
|
|
|
RESOLVE_IMPORT(il2cpp_class_get_methods);
|
|
|
|
|
RESOLVE_IMPORT(il2cpp_class_get_method_from_name);
|
|
|
|
|
RESOLVE_IMPORT(il2cpp_method_get_param);
|
|
|
|
|
RESOLVE_IMPORT(il2cpp_object_new);
|
|
|
|
|
RESOLVE_IMPORT(il2cpp_resolve_icall);
|
|
|
|
|
RESOLVE_IMPORT(il2cpp_array_new);
|
|
|
|
|
RESOLVE_IMPORT(il2cpp_thread_attach);
|
|
|
|
|
RESOLVE_IMPORT(il2cpp_thread_detach);
|
|
|
|
|
RESOLVE_IMPORT(il2cpp_class_get_field_from_name);
|
|
|
|
|
RESOLVE_IMPORT(il2cpp_class_is_assignable_from);
|
|
|
|
|
RESOLVE_IMPORT(il2cpp_class_for_each);
|
|
|
|
|
RESOLVE_IMPORT(il2cpp_class_get_nested_types);
|
|
|
|
|
RESOLVE_IMPORT(il2cpp_class_get_type);
|
|
|
|
|
RESOLVE_IMPORT(il2cpp_type_get_object);
|
|
|
|
|
RESOLVE_IMPORT(il2cpp_gchandle_new);
|
|
|
|
|
RESOLVE_IMPORT(il2cpp_gchandle_free);
|
|
|
|
|
RESOLVE_IMPORT(il2cpp_gchandle_get_target);
|
|
|
|
|
RESOLVE_IMPORT(il2cpp_class_from_type);
|
|
|
|
|
RESOLVE_IMPORT(il2cpp_runtime_class_init);
|
|
|
|
|
RESOLVE_IMPORT(il2cpp_runtime_invoke);
|
|
|
|
|
RESOLVE_IMPORT(il2cpp_class_get_name);
|
|
|
|
|
RESOLVE_IMPORT(il2cpp_class_get_namespace);
|
|
|
|
|
RESOLVE_IMPORT(il2cpp_domain_get_assemblies);
|
|
|
|
|
}
|
|
|
|
|
uintptr_t il2cppfunctions::get_method_pointer(const char* assemblyName, const char* namespaze,
|
|
|
|
|
const char* klassName, const char* name, int argsCount,bool strict)
|
|
|
|
|
{
|
|
|
|
|
auto thread=AutoThread();
|
|
|
|
|
if(!thread.thread)return NULL;
|
2024-05-09 14:22:19 +08:00
|
|
|
|
|
2024-05-14 20:37:48 +08:00
|
|
|
|
auto klass=get_il2cppclass1(assemblyName,namespaze,klassName,strict);//正向查询,assemblyName可以为空
|
|
|
|
|
if(klass)
|
|
|
|
|
return getmethodofklass(klass,name,argsCount);
|
|
|
|
|
if(strict)return NULL;
|
|
|
|
|
auto klasses=get_il2cppclass2(namespaze,klassName);//反向查询,namespace可以为空
|
|
|
|
|
for(auto klass:klasses){
|
|
|
|
|
auto method= getmethodofklass(klass,name,argsCount);
|
|
|
|
|
if(method)return method;
|
2024-05-09 07:23:06 +08:00
|
|
|
|
}
|
2024-05-14 20:37:48 +08:00
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
std::optional<std::wstring_view> il2cppfunctions::get_string(void* ptr){
|
|
|
|
|
auto str=reinterpret_cast<Il2CppString*>(ptr);
|
|
|
|
|
if(!str)return {};
|
|
|
|
|
auto wc=(SafeFptr(il2cpp_string_chars))(str);
|
|
|
|
|
auto len=(SafeFptr(il2cpp_string_length))(str);
|
|
|
|
|
if(!(wc&&len))return {};
|
|
|
|
|
return std::wstring_view(wc,len);
|
2024-05-09 07:23:06 +08:00
|
|
|
|
}
|
2024-05-14 20:37:48 +08:00
|
|
|
|
void* il2cppfunctions::create_string(std::wstring_view ws){
|
|
|
|
|
return (SafeFptr(il2cpp_string_new_utf16))(ws.data(),ws.length());
|
|
|
|
|
}
|