void detectHandlers(List <TypeDefinition> handlerTypes, CsvmInfo csvmInfo) { opCodeHandlers = new List <OpCodeHandler>(); var detected = new List <OpCodeHandler>(); foreach (var handlersList in OpCodeHandlers.opcodeHandlers) { opCodeHandlers.Clear(); foreach (var handlerType in handlerTypes) { var info = new UnknownHandlerInfo(handlerType, csvmInfo); detected.Clear(); foreach (var opCodeHandler in handlersList) { if (opCodeHandler.detect(info)) { detected.Add(opCodeHandler); } } if (detected.Count != 1) { goto next; } opCodeHandlers.Add(detected[0]); } if (new List <OpCodeHandler>(Utils.unique(opCodeHandlers)).Count == opCodeHandlers.Count) { return; } next :; } throw new ApplicationException("Could not detect all VM opcode handlers"); }
void detectHandlers(List <TypeDefinition> handlerTypes) { opCodeHandlers = new List <OpCodeHandler>(); var detected = new List <OpCodeHandler>(); foreach (var handlerType in handlerTypes) { var info = new UnknownHandlerInfo(handlerType); detected.Clear(); foreach (var opCodeHandler in opCodeHandlerDetectors) { if (opCodeHandler.detect(info)) { detected.Add(opCodeHandler); } } if (detected.Count != 1) { throw new ApplicationException("Could not detect VM opcode handler"); } opCodeHandlers.Add(detected[0]); } if (new List <OpCodeHandler>(Utils.unique(opCodeHandlers)).Count != opCodeHandlers.Count) { throw new ApplicationException("Could not detect all VM opcode handlers"); } }
public bool detect(UnknownHandlerInfo info) { var sigInfo = OpCodeHandlerSigInfo; if (!compare(sigInfo.NumStaticMethods, info.NumStaticMethods)) { return(false); } if (!compare(sigInfo.NumInstanceMethods, info.NumInstanceMethods)) { return(false); } if (!compare(sigInfo.NumVirtualMethods, info.NumVirtualMethods)) { return(false); } if (!compare(sigInfo.NumCtors, info.NumCtors)) { return(false); } if (!compare(sigInfo.ExecuteMethodThrows, info.ExecuteMethodThrows)) { return(false); } if (!info.hasSameFieldTypes(sigInfo.RequiredFieldTypes)) { return(false); } if (sigInfo.ExecuteMethodLocals != null && !new LocalTypes(info.ExecuteMethod).all(sigInfo.ExecuteMethodLocals)) { return(false); } return(detectInternal(info)); }
public bool detect(UnknownHandlerInfo info) { var sigInfo = OpCodeHandlerSigInfo; if (!compare(sigInfo.NumStaticMethods, info.NumStaticMethods)) return false; if (!compare(sigInfo.NumInstanceMethods, info.NumInstanceMethods)) return false; if (!compare(sigInfo.NumVirtualMethods, info.NumVirtualMethods)) return false; if (!compare(sigInfo.NumCtors, info.NumCtors)) return false; if (!compare(sigInfo.ExecuteMethodThrows, info.ExecuteMethodThrows)) return false; if (!info.hasSameFieldTypes(sigInfo.RequiredFieldTypes)) return false; if (sigInfo.ExecuteMethodLocals != null && !new LocalTypes(info.ExecuteMethod).all(sigInfo.ExecuteMethodLocals)) return false; return detectInternal(info); }
protected override bool detectInternal(UnknownHandlerInfo info) { return isEmptyMethod(info.ReadMethod) && isEmptyMethod(info.ExecuteMethod); }
static bool throw_check(UnknownHandlerInfo info) { return(!DotNetUtils.callsMethod(info.ExecuteMethod, "System.Reflection.MethodInfo System.Type::GetMethod(System.String,System.Reflection.BindingFlags)")); }
static bool rethrow_check(UnknownHandlerInfo info) { return(info.ExecuteMethod.Body.Variables.Count == 0); }
static bool ret_check(UnknownHandlerInfo info) { return(DotNetUtils.callsMethod(info.ExecuteMethod, "System.Reflection.MethodBase System.Reflection.Module::ResolveMethod(System.Int32)")); }
protected override bool detectInternal(UnknownHandlerInfo info) { return(isEmptyMethod(info.ReadMethod) && isEmptyMethod(info.ExecuteMethod)); }
protected override bool detectInternal(UnknownHandlerInfo info) { return true; }
protected override bool detectInternal(UnknownHandlerInfo info) { return info.ExecuteMethod.Body.Variables.Count == 3; }
protected abstract bool detectInternal(UnknownHandlerInfo info);
protected override bool detectInternal(UnknownHandlerInfo info) { return(true); }
protected override bool detectInternal(UnknownHandlerInfo info) { return(DotNetUtils.callsMethod(info.ExecuteMethod, "System.Reflection.MethodInfo System.Type::GetMethod(System.String,System.Reflection.BindingFlags)")); }
protected override bool detectInternal(UnknownHandlerInfo info) { return(DotNetUtils.callsMethod(info.ExecuteMethod, "System.Type System.Reflection.Module::ResolveType(System.Int32)")); }
protected override bool detectInternal(UnknownHandlerInfo info) { return(info.ExecuteMethod.Body.Variables.Count == 3); }
protected override bool detectInternal(UnknownHandlerInfo info) { return DotNetUtils.callsMethod(info.ExecuteMethod, "System.Reflection.MethodBase System.Reflection.Module::ResolveMethod(System.Int32)"); }
static bool leave_check(UnknownHandlerInfo info) { return(!DotNetUtils.callsMethod(info.ExecuteMethod, "System.Reflection.MethodBase System.Reflection.Module::ResolveMethod(System.Int32)") && !DotNetUtils.callsMethod(info.ExecuteMethod, "System.Type System.Reflection.Module::ResolveType(System.Int32)") && !DotNetUtils.callsMethod(info.ExecuteMethod, "System.Reflection.MemberInfo System.Reflection.Module::ResolveMember(System.Int32)")); }
protected override bool detectInternal(UnknownHandlerInfo info) { return DotNetUtils.callsMethod(info.ExecuteMethod, "System.Reflection.MethodInfo System.Type::GetMethod(System.String,System.Reflection.BindingFlags)"); }
static bool nop_check(UnknownHandlerInfo info) { return(isEmptyMethod(info.ReadMethod) && isEmptyMethod(info.ExecuteMethod)); }
void detectHandlers(List<TypeDefinition> handlerTypes) { opCodeHandlers = new List<OpCodeHandler>(); var detected = new List<OpCodeHandler>(); foreach (var handlerType in handlerTypes) { var info = new UnknownHandlerInfo(handlerType); detected.Clear(); foreach (var opCodeHandler in opCodeHandlerDetectors) { if (opCodeHandler.detect(info)) detected.Add(opCodeHandler); } if (detected.Count != 1) throw new ApplicationException("Could not detect VM opcode handler"); opCodeHandlers.Add(detected[0]); } if (new List<OpCodeHandler>(Utils.unique(opCodeHandlers)).Count != opCodeHandlers.Count) throw new ApplicationException("Could not detect all VM opcode handlers"); }
void detectHandlers(List<TypeDefinition> handlerTypes, CsvmInfo csvmInfo) { opCodeHandlers = new List<OpCodeHandler>(); var detected = new List<OpCodeHandler>(); foreach (var handlersList in OpCodeHandlers.opcodeHandlers) { opCodeHandlers.Clear(); foreach (var handlerType in handlerTypes) { var info = new UnknownHandlerInfo(handlerType, csvmInfo); detected.Clear(); foreach (var opCodeHandler in handlersList) { if (opCodeHandler.detect(info)) detected.Add(opCodeHandler); } if (detected.Count != 1) goto next; opCodeHandlers.Add(detected[0]); } if (new List<OpCodeHandler>(Utils.unique(opCodeHandlers)).Count == opCodeHandlers.Count) return; next: ; } throw new ApplicationException("Could not detect all VM opcode handlers"); }