author | alanb |
Fri, 07 Apr 2017 08:05:54 +0000 | |
changeset 44545 | 83b611b88ac8 |
parent 36511 | 9d0388c6b336 |
permissions | -rw-r--r-- |
278
b6cec9b83669
6545149: 4/4 JLI Instrumentation.redefineClasses SIGSEGVs on java/lang/Thread
dcubed
parents:
diff
changeset
|
1 |
/* |
5506 | 2 |
* Copyright (c) 2008, Oracle and/or its affiliates. All rights reserved. |
278
b6cec9b83669
6545149: 4/4 JLI Instrumentation.redefineClasses SIGSEGVs on java/lang/Thread
dcubed
parents:
diff
changeset
|
3 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
b6cec9b83669
6545149: 4/4 JLI Instrumentation.redefineClasses SIGSEGVs on java/lang/Thread
dcubed
parents:
diff
changeset
|
4 |
* |
b6cec9b83669
6545149: 4/4 JLI Instrumentation.redefineClasses SIGSEGVs on java/lang/Thread
dcubed
parents:
diff
changeset
|
5 |
* This code is free software; you can redistribute it and/or modify it |
b6cec9b83669
6545149: 4/4 JLI Instrumentation.redefineClasses SIGSEGVs on java/lang/Thread
dcubed
parents:
diff
changeset
|
6 |
* under the terms of the GNU General Public License version 2 only, as |
b6cec9b83669
6545149: 4/4 JLI Instrumentation.redefineClasses SIGSEGVs on java/lang/Thread
dcubed
parents:
diff
changeset
|
7 |
* published by the Free Software Foundation. |
b6cec9b83669
6545149: 4/4 JLI Instrumentation.redefineClasses SIGSEGVs on java/lang/Thread
dcubed
parents:
diff
changeset
|
8 |
* |
b6cec9b83669
6545149: 4/4 JLI Instrumentation.redefineClasses SIGSEGVs on java/lang/Thread
dcubed
parents:
diff
changeset
|
9 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
b6cec9b83669
6545149: 4/4 JLI Instrumentation.redefineClasses SIGSEGVs on java/lang/Thread
dcubed
parents:
diff
changeset
|
10 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
b6cec9b83669
6545149: 4/4 JLI Instrumentation.redefineClasses SIGSEGVs on java/lang/Thread
dcubed
parents:
diff
changeset
|
11 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
b6cec9b83669
6545149: 4/4 JLI Instrumentation.redefineClasses SIGSEGVs on java/lang/Thread
dcubed
parents:
diff
changeset
|
12 |
* version 2 for more details (a copy is included in the LICENSE file that |
b6cec9b83669
6545149: 4/4 JLI Instrumentation.redefineClasses SIGSEGVs on java/lang/Thread
dcubed
parents:
diff
changeset
|
13 |
* accompanied this code). |
b6cec9b83669
6545149: 4/4 JLI Instrumentation.redefineClasses SIGSEGVs on java/lang/Thread
dcubed
parents:
diff
changeset
|
14 |
* |
b6cec9b83669
6545149: 4/4 JLI Instrumentation.redefineClasses SIGSEGVs on java/lang/Thread
dcubed
parents:
diff
changeset
|
15 |
* You should have received a copy of the GNU General Public License version |
b6cec9b83669
6545149: 4/4 JLI Instrumentation.redefineClasses SIGSEGVs on java/lang/Thread
dcubed
parents:
diff
changeset
|
16 |
* 2 along with this work; if not, write to the Free Software Foundation, |
b6cec9b83669
6545149: 4/4 JLI Instrumentation.redefineClasses SIGSEGVs on java/lang/Thread
dcubed
parents:
diff
changeset
|
17 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
b6cec9b83669
6545149: 4/4 JLI Instrumentation.redefineClasses SIGSEGVs on java/lang/Thread
dcubed
parents:
diff
changeset
|
18 |
* |
5506 | 19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
20 |
* or visit www.oracle.com if you need additional information or have any |
|
21 |
* questions. |
|
278
b6cec9b83669
6545149: 4/4 JLI Instrumentation.redefineClasses SIGSEGVs on java/lang/Thread
dcubed
parents:
diff
changeset
|
22 |
*/ |
b6cec9b83669
6545149: 4/4 JLI Instrumentation.redefineClasses SIGSEGVs on java/lang/Thread
dcubed
parents:
diff
changeset
|
23 |
|
36511 | 24 |
import java.io.InputStream; |
25 |
import java.lang.instrument.ClassDefinition; |
|
26 |
import java.lang.instrument.Instrumentation; |
|
27 |
import java.util.Timer; |
|
28 |
import java.util.TimerTask; |
|
278
b6cec9b83669
6545149: 4/4 JLI Instrumentation.redefineClasses SIGSEGVs on java/lang/Thread
dcubed
parents:
diff
changeset
|
29 |
|
b6cec9b83669
6545149: 4/4 JLI Instrumentation.redefineClasses SIGSEGVs on java/lang/Thread
dcubed
parents:
diff
changeset
|
30 |
public class RedefineClassWithNativeMethodAgent { |
b6cec9b83669
6545149: 4/4 JLI Instrumentation.redefineClasses SIGSEGVs on java/lang/Thread
dcubed
parents:
diff
changeset
|
31 |
static Class clz; |
b6cec9b83669
6545149: 4/4 JLI Instrumentation.redefineClasses SIGSEGVs on java/lang/Thread
dcubed
parents:
diff
changeset
|
32 |
|
b6cec9b83669
6545149: 4/4 JLI Instrumentation.redefineClasses SIGSEGVs on java/lang/Thread
dcubed
parents:
diff
changeset
|
33 |
// just read the original class and redefine it via a Timer |
b6cec9b83669
6545149: 4/4 JLI Instrumentation.redefineClasses SIGSEGVs on java/lang/Thread
dcubed
parents:
diff
changeset
|
34 |
public static void premain(String agentArgs, final Instrumentation inst) throws Exception { |
b6cec9b83669
6545149: 4/4 JLI Instrumentation.redefineClasses SIGSEGVs on java/lang/Thread
dcubed
parents:
diff
changeset
|
35 |
String s = agentArgs.substring(0, agentArgs.indexOf(".class")); |
b6cec9b83669
6545149: 4/4 JLI Instrumentation.redefineClasses SIGSEGVs on java/lang/Thread
dcubed
parents:
diff
changeset
|
36 |
clz = Class.forName(s.replace('/', '.')); |
36511 | 37 |
InputStream in; |
38 |
Module m = clz.getModule(); |
|
39 |
if (m != null) { |
|
40 |
in = m.getResourceAsStream(agentArgs); |
|
41 |
} else { |
|
42 |
ClassLoader loader = |
|
43 |
RedefineClassWithNativeMethodAgent.class.getClassLoader(); |
|
44 |
in = loader.getResourceAsStream(agentArgs); |
|
45 |
} |
|
46 |
if (in == null) { |
|
278
b6cec9b83669
6545149: 4/4 JLI Instrumentation.redefineClasses SIGSEGVs on java/lang/Thread
dcubed
parents:
diff
changeset
|
47 |
throw new Exception("Cannot find class: " + agentArgs); |
b6cec9b83669
6545149: 4/4 JLI Instrumentation.redefineClasses SIGSEGVs on java/lang/Thread
dcubed
parents:
diff
changeset
|
48 |
} |
36511 | 49 |
byte[] buffer = in.readAllBytes(); |
278
b6cec9b83669
6545149: 4/4 JLI Instrumentation.redefineClasses SIGSEGVs on java/lang/Thread
dcubed
parents:
diff
changeset
|
50 |
|
b6cec9b83669
6545149: 4/4 JLI Instrumentation.redefineClasses SIGSEGVs on java/lang/Thread
dcubed
parents:
diff
changeset
|
51 |
new Timer(true).schedule(new TimerTask() { |
b6cec9b83669
6545149: 4/4 JLI Instrumentation.redefineClasses SIGSEGVs on java/lang/Thread
dcubed
parents:
diff
changeset
|
52 |
public void run() { |
b6cec9b83669
6545149: 4/4 JLI Instrumentation.redefineClasses SIGSEGVs on java/lang/Thread
dcubed
parents:
diff
changeset
|
53 |
try { |
b6cec9b83669
6545149: 4/4 JLI Instrumentation.redefineClasses SIGSEGVs on java/lang/Thread
dcubed
parents:
diff
changeset
|
54 |
System.out.println("Instrumenting"); |
b6cec9b83669
6545149: 4/4 JLI Instrumentation.redefineClasses SIGSEGVs on java/lang/Thread
dcubed
parents:
diff
changeset
|
55 |
ClassDefinition cld = new ClassDefinition(clz, buffer); |
b6cec9b83669
6545149: 4/4 JLI Instrumentation.redefineClasses SIGSEGVs on java/lang/Thread
dcubed
parents:
diff
changeset
|
56 |
inst.redefineClasses(new ClassDefinition[] { cld }); |
b6cec9b83669
6545149: 4/4 JLI Instrumentation.redefineClasses SIGSEGVs on java/lang/Thread
dcubed
parents:
diff
changeset
|
57 |
} |
b6cec9b83669
6545149: 4/4 JLI Instrumentation.redefineClasses SIGSEGVs on java/lang/Thread
dcubed
parents:
diff
changeset
|
58 |
catch (Exception e) { e.printStackTrace(); } |
b6cec9b83669
6545149: 4/4 JLI Instrumentation.redefineClasses SIGSEGVs on java/lang/Thread
dcubed
parents:
diff
changeset
|
59 |
} |
b6cec9b83669
6545149: 4/4 JLI Instrumentation.redefineClasses SIGSEGVs on java/lang/Thread
dcubed
parents:
diff
changeset
|
60 |
}, 500); |
b6cec9b83669
6545149: 4/4 JLI Instrumentation.redefineClasses SIGSEGVs on java/lang/Thread
dcubed
parents:
diff
changeset
|
61 |
} |
b6cec9b83669
6545149: 4/4 JLI Instrumentation.redefineClasses SIGSEGVs on java/lang/Thread
dcubed
parents:
diff
changeset
|
62 |
} |