How to Write a Java Agent
A case study and tutorial of how VMlens wrote a custom Java agent to trace field accesses.
Join the DZone community and get the full member experience.
Join For FreeFor vmlens, a lightweight Java race condition catcher, we are using a Java agent to trace field accesses. Here are the lessons we learned implementing such an agent.
The Start
Create an agent class with a static public static void premain(String args, Instrumentation inst)
method. Put this class into a jar file with a manifest pointing to the Agent class. The premain method will be called before the main method of the application.
Manifest-Version: 1.0
Ant-Version: Apache Ant 1.9.2
Created-By: 1.8.0_05-b13 (Oracle Corporation)
Built-By: Thomas Krieger
Implementation-Vendor: Anarsoft
Implementation-Title: VMLens Agent
Implementation-Version: 2.0.0.201511181111
Can-Retransform-Classes: true
Premain-Class: com.anarsoft.trace.agent.Agent
Boot-Class-Path: agent_bootstrap.jar
The MANIFEST.MF file is from vmlens.
Class Loader Magic Part 1
The agent class will be loaded by the system class loader. But we have to avoid version conflicts between the classes used by the agent and the application. Especially the frameworks used in the agent should not be visible to the application classes. So we use a dedicated URLClassLoader
to load all other agent classes:
// remember the currently used classloader
ClassLoader contextClassLoader = Thread.currentThread().getContextClassLoader();
// Create and set a special URLClassLoader
URLClassLoader classloader = new URLClassLoader(urlList.toArray(new URL[]{}) , null );
Thread.currentThread().setContextClassLoader(classloader);
// Load and execute the agent
String agentName = "com.anarsoft.trace.agent.runtime.AgentRuntimeImpl";
AgentRuntime agentRuntime = (AgentRuntime) classloader.loadClass(agentName).newInstance();
// reset the classloader
Thread.currentThread().setContextClassLoader(contextClassLoader);
Class Loader Magic Part 2
Now we use asm to add our static callbacks methods when a field is accessed. To make sure that the classes are visible in every other class, they have to be loaded by the bootstrap classloader. To do this they have to be in a Java package and the jar containing them have to be in the boot class path.
package java.anarsoft.trace.agent.bootstrap.callback;
public class FieldAccessCallback {
public static void getStaticField(int field,int methodId) {
}
}
A callback class from vmlens. It has to be in the Java package namespace to be visible in all classes.
Boot-Class-Path: agent_bootstrap.jar
The boot class path entry in the MANIFEST.MF file is from vmlens.
VMLens, a lightweight Java race condition catcher, is built as a Java agent. We know, writing Java agents can be a tricky business. So, if you have any questions, just ask them in a comment below.
Published at DZone with permission of Thomas Krieger, DZone MVB. See the original article here.
Opinions expressed by DZone contributors are their own.
Comments