jdk-24/test/hotspot/jtreg/runtime/cds/appcds/jvmti/InstrumentationTest.java

288 lines
12 KiB
Java
Raw Normal View History

/*
* Copyright (c) 2014, 2022, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*
*/
/*
* @test
* @summary Exercise the java.lang.instrument.Instrumentation APIs on classes archived
* using CDS/AppCDSv1/AppCDSv2.
* @library /test/lib /test/hotspot/jtreg/runtime/cds/appcds /test/hotspot/jtreg/runtime/cds/appcds/test-classes
* @requires vm.cds
* @requires vm.jvmti
* @build jdk.test.whitebox.WhiteBox
* InstrumentationApp
* InstrumentationClassFileTransformer
* InstrumentationRegisterClassFileTransformer
* @run main/othervm InstrumentationTest
*/
// Note: TestCommon is from /test/hotspot/jtreg/runtime/cds/appcds/TestCommon.java
// Note: Util is from /test/hotspot/jtreg/runtime/cds/appcds/test-classes/TestCommon.java
import com.sun.tools.attach.VirtualMachine;
import java.io.File;
import java.io.FileInputStream;
import java.util.Scanner;
import jdk.test.lib.Asserts;
import jdk.test.lib.cds.CDSOptions;
import jdk.test.lib.cds.CDSTestUtils;
import jdk.test.lib.process.OutputAnalyzer;
import jdk.test.lib.helpers.ClassFileInstaller;
public class InstrumentationTest {
public static String bootClasses[] = {
"InstrumentationApp$Intf",
"InstrumentationApp$Bar",
"jdk.test.whitebox.WhiteBox",
};
public static String appClasses[] = {
"InstrumentationApp",
"InstrumentationApp$Foo",
"InstrumentationApp$MyLoader",
};
public static String custClasses[] = {
"InstrumentationApp$Coo",
};
public static String sharedClasses[] = TestCommon.concat(bootClasses, appClasses);
public static String agentClasses[] = {
"InstrumentationClassFileTransformer",
"InstrumentationRegisterClassFileTransformer",
"Util",
};
public static void main(String[] args) throws Throwable {
runTest(false);
runTest(true);
}
public static void runTest(boolean attachAgent) throws Throwable {
String bootJar =
ClassFileInstaller.writeJar("InstrumentationBoot.jar", bootClasses);
String appJar =
ClassFileInstaller.writeJar("InstrumentationApp.jar",
TestCommon.concat(appClasses,
"InstrumentationApp$ArchivedIfAppCDSv2Enabled"));
String custJar =
ClassFileInstaller.writeJar("InstrumentationCust.jar", custClasses);
String agentJar =
ClassFileInstaller.writeJar("InstrumentationAgent.jar",
ClassFileInstaller.Manifest.fromSourceFile("InstrumentationAgent.mf"),
agentClasses);
String bootCP = "-Xbootclasspath/a:" + bootJar;
System.out.println("");
System.out.println("============================================================");
System.out.println("CDS: NO, attachAgent: " + (attachAgent ? "YES" : "NO"));
System.out.println("============================================================");
System.out.println("");
String agentCmdArg, flagFile;
if (attachAgent) {
// we will attach the agent, so don't specify -javaagent in the command line. We'll use
// something harmless like -showversion to make it easier to construct the command line
agentCmdArg = "-showversion";
} else {
agentCmdArg = "-javaagent:" + agentJar;
}
// First, run the test class directly, w/o sharing, as a baseline reference
flagFile = getFlagFile(attachAgent);
AgentAttachThread t = doAttach(attachAgent, flagFile, agentJar);
CDSOptions opts = (new CDSOptions())
.setUseVersion(false)
.setXShareMode("off")
.addSuffix(bootCP,
"-cp", appJar,
"-XX:+UnlockDiagnosticVMOptions",
"-XX:+WhiteBoxAPI",
"-Xshare:off",
agentCmdArg,
"InstrumentationApp", flagFile, bootJar, appJar, custJar);
CDSTestUtils.run(opts)
.assertNormalExit();
checkAttach(t);
// Dump the AppCDS archive. On some platforms AppCDSv2 may not be enabled, so we
// first try the v2 classlist, and if that fails, revert to the v1 classlist.
// Note that the InstrumentationApp$ArchivedIfAppCDSv2Enabled class is archived
// only if V2 is enabled. This is tested by InstrumentationApp.isAppCDSV2Enabled().
String[] v2Classes = {
"InstrumentationApp$ArchivedIfAppCDSv2Enabled",
"java/lang/Object id: 0",
"InstrumentationApp$Intf id: 1",
"InstrumentationApp$Coo id: 2 super: 0 interfaces: 1 source: " + custJar,
};
String[] sharedClassesWithV2 = TestCommon.concat(v2Classes, sharedClasses);
OutputAnalyzer out = TestCommon.dump(appJar, sharedClassesWithV2, bootCP);
if (out.getExitValue() != 0) {
System.out.println("Redumping with AppCDSv2 disabled");
TestCommon.testDump(appJar, sharedClasses, bootCP);
}
// Run with AppCDS.
System.out.println("");
System.out.println("============================================================");
System.out.println("CDS: YES, attachAgent: " + (attachAgent ? "YES" : "NO"));
System.out.println("============================================================");
System.out.println("");
flagFile = getFlagFile(attachAgent);
t = doAttach(attachAgent, flagFile, agentJar);
out = TestCommon.execAuto("-cp", appJar,
bootCP,
"-XX:+UnlockDiagnosticVMOptions",
"-XX:+WhiteBoxAPI",
agentCmdArg,
"InstrumentationApp", flagFile, bootJar, appJar, custJar);
opts = (new CDSOptions()).setXShareMode("auto");
TestCommon.checkExec(out, opts);
checkAttach(t);
}
static int flagFileSerial = 1;
static private String getFlagFile(boolean attachAgent) {
if (attachAgent) {
// Do not reuse the same file name as Windows may fail to
// delete the file.
return "attach.flag." + ProcessHandle.current().pid() +
"." + (flagFileSerial++) + "." + System.currentTimeMillis();
} else {
return "noattach";
}
}
static AgentAttachThread doAttach(boolean attachAgent, String flagFile, String agentJar) throws Throwable {
if (!attachAgent) {
return null;
}
// Hand-shake protocol with the child process
// [1] Parent process (this process) launches child process (InstrumentationApp)
// and then waits until child process writes its pid into the flagFile.
// [2] Child process process starts up, writes its pid into the flagFile,
// and waits for the flagFile to be deleted.
// [3] When parent process gets the pid, it attaches to the child process
// (if we attempt to attach to a process too early, the SIGQUIT
// may cause the child to die) and deletes the flagFile.
// [4] Child process resumes execution.
File f = new File(flagFile);
f.delete();
if (f.exists()) {
throw new RuntimeException("Flag file should not exist: " + f);
}
// At this point, the child process is not yet launched. Note that
// TestCommon.exec() and OutputAnalyzer.OutputAnalyzer() both block
// until the child process has finished.
//
// So, we will launch a AgentAttachThread which will poll the flagFile
// until the child process is launched.
AgentAttachThread t = new AgentAttachThread(flagFile, agentJar);
t.start();
return t;
}
static void checkAttach(AgentAttachThread thread) throws Throwable {
if (thread != null) {
thread.check();
}
}
static class AgentAttachThread extends Thread {
String flagFile;
String agentJar;
volatile boolean succeeded;
AgentAttachThread(String flagFile, String agentJar) {
this.flagFile = flagFile;
this.agentJar = agentJar;
this.succeeded = false;
}
static String getPid(String flagFile) throws Throwable {
while (true) {
// Keep polling until the child process has been launched. If for some
// reason the child process fails to launch, this test will be terminated
// by JTREG's time-out mechanism.
Thread.sleep(100);
File f = new File(flagFile);
if (f.exists() && f.length() > 100) {
try (FileInputStream in = new FileInputStream(f)) {
Scanner scanner = new Scanner(in);
return Long.toString(scanner.nextLong());
} catch (Throwable t) {
// This may happen on Windows if the child process has not
// fully closed the output stream to the flagFile
System.out.println("Ignored: " + t);
t.printStackTrace(System.out);
continue;
}
}
}
}
public void run() {
try {
String pid = getPid(flagFile);
System.out.println("child pid = " + pid);
VirtualMachine vm = VirtualMachine.attach(pid);
System.out.println(agentJar);
vm.loadAgent(agentJar);
} catch (Throwable t) {
t.printStackTrace();
throw new RuntimeException(t);
}
// Delete the flagFile to indicate to the child process that we
// have attached to it, so it should proceed.
File f = new File(flagFile);
for (int i=0; i<5; i++) {
// The detele may fail on Windows if the child JVM is checking
// f.exists() at exactly the same time?? Let's do a little
// dance.
f.delete();
try {
Thread.sleep(10);
} catch (Throwable t) {;}
}
if (f.exists()) {
throw new RuntimeException("Failed to delete " + f);
}
System.out.println("Attach succeeded (parent)");
succeeded = true;
}
void check() throws Throwable {
super.join();
if (!succeeded) {
throw new RuntimeException("Attaching agent to child VM failed");
}
}
}
}