【发布时间】:2017-07-13 19:10:52
【问题描述】:
我们有一个混淆类,我们需要用 bytebuddy 来增强它。我们基本上需要重新定义一种方法。子类化似乎不起作用(代码未执行)。变基有效,但在我们截获的方法中,我们需要调用超类(现在在“继承”中谈论超类)方法。
class Parent {
public void connect(){
...
};
}
class WeNeedToHackThis extends Parent {
public void connect(InetAddress addr){
//... this is what we want to hack
}
public void connect(){
this.connect(null);
// this is getting called from interceptor :( which delegates to our hacked method
// we need to call "real" superclass's (Parent) method instead
}
}
...
Class<?> dynamic = new ByteBuddy()
.with(TypeValidation.DISABLED)
.rebase(commandBase, locator)
.method(named("connect").and(takesArgument(0, InetAddress.class)))
.intercept(MethodDelegation.to(Session3270ConnectMethod.class))
.make()
.load(Thread.currentThread().getContextClassLoader(), ClassLoadingStrategy.Default.INJECTION)
.getLoaded();
//In our interceptor:
public static void connect(InetAddress paramInetAddress,
@Origin Method origin,
@This Object self) throws SessionException {
try {
System.out.println("hi from hijacked");
c.call();
//HOW DO WE CALL SOMETHING LIKE super.connect()
// we need to call Parent.connect();
// but I am stuck at how to access superclass code (new Parent().connect().
// I cant access the Parent class method calls on this object
// if I use @SuperCall or @This then I am getting already overriden version, I need to call the super (Parent's.class) version :(
} catch (Exception e) {
throw new RuntimeException(e);
}
}
【问题讨论】:
-
好吧,我看不太清楚 :) --> "如何调用 Parent.class 类的 'connect()' 方法(这是 WeNeedToHackThis 类继承自的父类 - 基本上我们需要执行:拦截器内的“super.connect()”)
标签: java bytecode-manipulation byte-buddy