2
votes
2answers
62 views

Java Bytecode instrumentation with ASM: VerifyError on code injection at INVOKESPECIAL instructions

I'm quite new in bytecode injection. Until now, I was able to get everything what I wanted by exhaustive research and painful trial and error :-) But I seem to have reached my limits with the ...
0
votes
1answer
60 views

Javassist's CtMethod.insertAt(line,src) instruments code at the wrong bytecode position

My goal is to insert a little bit of instrumentation code at the beginning of each basic block of code. It seems like a fairly simple task with Javaassist's ControlFlow.Block and CtMethod.insertAt(). ...
0
votes
1answer
35 views

to get start and end time of application hosted in tomcat using javaagent

I have written a javaagent application to get the execution time of a java application and it works fine. i tried to use this application to get the execution time of a application hosted in tomcat ...
1
vote
0answers
46 views

Error using instrumentation class with -javaagent on play framework 2.1.0-java

I've been using an instrumentation class "SizeOfAgent" to calculate memory requirements on my play 2.0.4 environment. In order to do that I have put "-javaagent:lib\sizeof.jar" on the java command ...
0
votes
1answer
57 views

Glassfish javaagent instrumented class experiences NoClassDefError

I have Oracle GlassFish 3.1.2.2 (build 5) server plugged with my own javaagent. The javaagent instruments specific classes(say servlets) by injecting a piece of bytecode which referes to classes ...
0
votes
1answer
114 views

Retransform native methods in Java Instrumentation Agent library

I am trying to write a Java agent library that is loaded dynamically via attach api to retransform some methods (those that appear in stack traces of certain threads) for recording method entry/exit. ...
1
vote
0answers
91 views

How do you analyze fatal -javaagent errors?

I am trying to add a static method call to the java.lang.Object constructor using the java.lang.instrument API. I know I have the basics right because it works if I make the method call System.gc(). I ...
0
votes
2answers
823 views

Cannot get -javaagent to run without error

I'm trying to create a simple Java Agent program before I implement the real thing. I cannot get it to run. Clearly I have some sort of configuration or class path problem. No amount of looking ...
1
vote
2answers
119 views

How do I catch the read and writes in a java program?

I am trying to create a tool that can capture all the read and writes made by a java program. Also, I would like to know what fields of what object is access/modified. I currently looked at:- 1) ...
1
vote
1answer
314 views

How to create a jvmti agent to see all the loaded classes, objects and their field details

I want to write a java agent to instrument some applications. I am interested in getting the details of the objects, (i.e. their fields) instantiated by the applications. I would also like to catch ...
0
votes
1answer
327 views

How to test a ClassFileTransformer / javaagent?

I implemented a ClassFileTransformer for a javaagent using ASM. Because it has some bugs, I want to write a JUnit test case for it. How do I do this? Using pseudo-code I thought along the lines: // ...
1
vote
2answers
1k views

Location of javaagent jar in bootclasspath

I have a javaagent jar that I put on the bootclasspath using Boot-Class-Path: myagent.jar inside the MANIFEST.MF file. I need to find out the directory on the filesystem in which the jar is ...