gpt4 book ai didi

java - BCel 即时修补方法不起作用

转载 作者:行者123 更新时间:2023-12-01 10:29:07 26 4
gpt4 key购买 nike

我尝试使用 BCEL 将回调插入到 Java 方法中,但回调从未被调用。这些程序运行起来就好像根本没有检测过一样。

我所做的精简版本:

package com.github.worldsender;

import java.lang.reflect.InvocationTargetException;

import org.apache.bcel.*;
import org.apache.bcel.classfile.*;
import org.apache.bcel.generic.*;

public class CustomHook {
public static void callback() {
System.out.println("Success");
}

private static JavaClass getOriginal() {
try {
return Repository.lookupClass("com.github.worldsender.Foo");
} catch (ClassNotFoundException e) {
throw new RuntimeException("Foo not found.", e);
}
}

private static ClassGen modClass(ClassGen classGen) {
for (Method method : classGen.getMethods()) {
if (!method.getName().equals("main"))
continue;
classGen.removeMethod(method);
MethodGen methodGen = modConstructor(classGen, method);
classGen.addMethod(methodGen.getMethod());
methodGen.getInstructionList().dispose();
return classGen;
}
throw new RuntimeException("Method not found, abort");
}

private static MethodGen modConstructor(ClassGen classGen, Method constructor) {
InstructionFactory factory = new InstructionFactory(classGen);
ConstantPoolGen constants = classGen.getConstantPool();
MethodGen methodGen = new MethodGen(constructor, classGen.getClassName(), constants);

InstructionList ilist = methodGen.getInstructionList();

String invokedClass = "com.github.worldsender.CustomHook";
String invokedMethod = "callback";
Type returnType = Type.VOID;
Type[] arguments = Type.NO_ARGS;
short invokeType = Constants.INVOKESTATIC;
InvokeInstruction invoke = factory.createInvoke(invokedClass, invokedMethod, returnType, arguments, invokeType);

ilist.insert(invoke);
methodGen.stripAttributes(true);
methodGen.setMaxStack();
methodGen.setMaxLocals();
return methodGen;
}

public static void main(String[] args) throws Exception {
JavaClass original = getOriginal();
ClassGen modClass = new ClassGen(original);
modClass = modClass(modClass);

Repository.removeClass(original);
Repository.addClass(modClass.getJavaClass());

Class<?> minecraftMain = Class.forName("com.github.worldsender.Foo");

java.lang.reflect.Method meth = minecraftMain.getMethod("main", String[].class);
meth.invoke(null, (Object) args);
}
}
//// Other class
package com.github.worldsender;

public class Foo {
public static void main(String[] args) {
System.out.println("Here");
}
}

打印的内容是:

Here

我所期待的是:

Success
Here

我做错了什么?

最佳答案

打电话时

Repository.addClass(modClass.getJavaClass())

您正在将该类添加到 BCEL 存储库,但不添加到当前 VM 的类路径。调用时

Class.forName("com.github.worldsender.Foo")

但是,您指示 VM 从类路径加载未修改的类文件。因此,您无法观察到任何效果。看看BCEL的built-in class loader用于加载生成的类。

关于java - BCel 即时修补方法不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35189166/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com