annotate agent/src/share/classes/sun/jvm/hotspot/debugger/win32/coff/DumpExports.java @ 2072:d6cd0d55d0b5

6987812: 2/3 SAJDI: "gHotSpotVMTypes was not initialized properly in the remote process" Summary: Change ExportDirectoryTableImpl to return the 'Export RVA' field without modification. Read 'Base Of Data' field in optional header when PE32 format COFF file is read. Refine search for dbgeng.dll and dbghelp.dll. Other cleanups. Reviewed-by: swamyv, poonam
author dcubed
date Thu, 23 Dec 2010 07:58:35 -0800
parents c18cbe5936b8
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
2072
d6cd0d55d0b5 6987812: 2/3 SAJDI: "gHotSpotVMTypes was not initialized properly in the remote process"
dcubed
parents: 1552
diff changeset
2 * Copyright (c) 2001, 2010, Oracle and/or its affiliates. All rights reserved.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
a61af66fc99e Initial load
duke
parents:
diff changeset
4 *
a61af66fc99e Initial load
duke
parents:
diff changeset
5 * This code is free software; you can redistribute it and/or modify it
a61af66fc99e Initial load
duke
parents:
diff changeset
6 * under the terms of the GNU General Public License version 2 only, as
a61af66fc99e Initial load
duke
parents:
diff changeset
7 * published by the Free Software Foundation.
a61af66fc99e Initial load
duke
parents:
diff changeset
8 *
a61af66fc99e Initial load
duke
parents:
diff changeset
9 * This code is distributed in the hope that it will be useful, but WITHOUT
a61af66fc99e Initial load
duke
parents:
diff changeset
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
a61af66fc99e Initial load
duke
parents:
diff changeset
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
a61af66fc99e Initial load
duke
parents:
diff changeset
12 * version 2 for more details (a copy is included in the LICENSE file that
a61af66fc99e Initial load
duke
parents:
diff changeset
13 * accompanied this code).
a61af66fc99e Initial load
duke
parents:
diff changeset
14 *
a61af66fc99e Initial load
duke
parents:
diff changeset
15 * You should have received a copy of the GNU General Public License version
a61af66fc99e Initial load
duke
parents:
diff changeset
16 * 2 along with this work; if not, write to the Free Software Foundation,
a61af66fc99e Initial load
duke
parents:
diff changeset
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
a61af66fc99e Initial load
duke
parents:
diff changeset
18 *
1552
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 0
diff changeset
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 0
diff changeset
20 * or visit www.oracle.com if you need additional information or have any
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 0
diff changeset
21 * questions.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
22 *
a61af66fc99e Initial load
duke
parents:
diff changeset
23 */
a61af66fc99e Initial load
duke
parents:
diff changeset
24
a61af66fc99e Initial load
duke
parents:
diff changeset
25 package sun.jvm.hotspot.debugger.win32.coff;
a61af66fc99e Initial load
duke
parents:
diff changeset
26
a61af66fc99e Initial load
duke
parents:
diff changeset
27 public class DumpExports {
a61af66fc99e Initial load
duke
parents:
diff changeset
28 private static void usage() {
a61af66fc99e Initial load
duke
parents:
diff changeset
29 System.err.println("usage: java DumpExports [.dll name]");
a61af66fc99e Initial load
duke
parents:
diff changeset
30 System.exit(1);
a61af66fc99e Initial load
duke
parents:
diff changeset
31 }
a61af66fc99e Initial load
duke
parents:
diff changeset
32
a61af66fc99e Initial load
duke
parents:
diff changeset
33 public static void main(String[] args) {
a61af66fc99e Initial load
duke
parents:
diff changeset
34 if (args.length != 1) {
a61af66fc99e Initial load
duke
parents:
diff changeset
35 usage();
a61af66fc99e Initial load
duke
parents:
diff changeset
36 }
a61af66fc99e Initial load
duke
parents:
diff changeset
37
a61af66fc99e Initial load
duke
parents:
diff changeset
38 String filename = args[0];
a61af66fc99e Initial load
duke
parents:
diff changeset
39 COFFFile file = COFFFileParser.getParser().parse(filename);
2072
d6cd0d55d0b5 6987812: 2/3 SAJDI: "gHotSpotVMTypes was not initialized properly in the remote process"
dcubed
parents: 1552
diff changeset
40
d6cd0d55d0b5 6987812: 2/3 SAJDI: "gHotSpotVMTypes was not initialized properly in the remote process"
dcubed
parents: 1552
diff changeset
41 // get common point for both things we want to dump
d6cd0d55d0b5 6987812: 2/3 SAJDI: "gHotSpotVMTypes was not initialized properly in the remote process"
dcubed
parents: 1552
diff changeset
42 OptionalHeaderDataDirectories dataDirs = file.getHeader().getOptionalHeader().
d6cd0d55d0b5 6987812: 2/3 SAJDI: "gHotSpotVMTypes was not initialized properly in the remote process"
dcubed
parents: 1552
diff changeset
43 getDataDirectories();
d6cd0d55d0b5 6987812: 2/3 SAJDI: "gHotSpotVMTypes was not initialized properly in the remote process"
dcubed
parents: 1552
diff changeset
44
d6cd0d55d0b5 6987812: 2/3 SAJDI: "gHotSpotVMTypes was not initialized properly in the remote process"
dcubed
parents: 1552
diff changeset
45 // dump the header data directory for the Export Table:
d6cd0d55d0b5 6987812: 2/3 SAJDI: "gHotSpotVMTypes was not initialized properly in the remote process"
dcubed
parents: 1552
diff changeset
46 DataDirectory dir = dataDirs.getExportTable();
d6cd0d55d0b5 6987812: 2/3 SAJDI: "gHotSpotVMTypes was not initialized properly in the remote process"
dcubed
parents: 1552
diff changeset
47 System.out.println("Export table: RVA = " + dir.getRVA() + "/0x" +
d6cd0d55d0b5 6987812: 2/3 SAJDI: "gHotSpotVMTypes was not initialized properly in the remote process"
dcubed
parents: 1552
diff changeset
48 Integer.toHexString(dir.getRVA()) + ", size = " + dir.getSize() + "/0x" +
d6cd0d55d0b5 6987812: 2/3 SAJDI: "gHotSpotVMTypes was not initialized properly in the remote process"
dcubed
parents: 1552
diff changeset
49 Integer.toHexString(dir.getSize()));
d6cd0d55d0b5 6987812: 2/3 SAJDI: "gHotSpotVMTypes was not initialized properly in the remote process"
dcubed
parents: 1552
diff changeset
50
d6cd0d55d0b5 6987812: 2/3 SAJDI: "gHotSpotVMTypes was not initialized properly in the remote process"
dcubed
parents: 1552
diff changeset
51 System.out.println(file.getHeader().getNumberOfSections() + " sections in file");
d6cd0d55d0b5 6987812: 2/3 SAJDI: "gHotSpotVMTypes was not initialized properly in the remote process"
dcubed
parents: 1552
diff changeset
52 for (int i = 1; i <= file.getHeader().getNumberOfSections(); i++) {
d6cd0d55d0b5 6987812: 2/3 SAJDI: "gHotSpotVMTypes was not initialized properly in the remote process"
dcubed
parents: 1552
diff changeset
53 SectionHeader sec = file.getHeader().getSectionHeader(i);
d6cd0d55d0b5 6987812: 2/3 SAJDI: "gHotSpotVMTypes was not initialized properly in the remote process"
dcubed
parents: 1552
diff changeset
54 System.out.println(" Section " + i + ":");
d6cd0d55d0b5 6987812: 2/3 SAJDI: "gHotSpotVMTypes was not initialized properly in the remote process"
dcubed
parents: 1552
diff changeset
55 System.out.println(" Name = '" + sec.getName() + "'");
d6cd0d55d0b5 6987812: 2/3 SAJDI: "gHotSpotVMTypes was not initialized properly in the remote process"
dcubed
parents: 1552
diff changeset
56 System.out.println(" VirtualSize = " + sec.getSize() + "/0x" +
d6cd0d55d0b5 6987812: 2/3 SAJDI: "gHotSpotVMTypes was not initialized properly in the remote process"
dcubed
parents: 1552
diff changeset
57 Integer.toHexString(sec.getSize()));
d6cd0d55d0b5 6987812: 2/3 SAJDI: "gHotSpotVMTypes was not initialized properly in the remote process"
dcubed
parents: 1552
diff changeset
58 System.out.println(" VirtualAddress = " + sec.getVirtualAddress() + "/0x" +
d6cd0d55d0b5 6987812: 2/3 SAJDI: "gHotSpotVMTypes was not initialized properly in the remote process"
dcubed
parents: 1552
diff changeset
59 Integer.toHexString(sec.getVirtualAddress()));
d6cd0d55d0b5 6987812: 2/3 SAJDI: "gHotSpotVMTypes was not initialized properly in the remote process"
dcubed
parents: 1552
diff changeset
60 System.out.println(" SizeOfRawData = " + sec.getSizeOfRawData() + "/0x" +
d6cd0d55d0b5 6987812: 2/3 SAJDI: "gHotSpotVMTypes was not initialized properly in the remote process"
dcubed
parents: 1552
diff changeset
61 Integer.toHexString(sec.getSizeOfRawData()));
d6cd0d55d0b5 6987812: 2/3 SAJDI: "gHotSpotVMTypes was not initialized properly in the remote process"
dcubed
parents: 1552
diff changeset
62 System.out.println(" PointerToRawData = " + sec.getPointerToRawData() + "/0x" +
d6cd0d55d0b5 6987812: 2/3 SAJDI: "gHotSpotVMTypes was not initialized properly in the remote process"
dcubed
parents: 1552
diff changeset
63 Integer.toHexString(sec.getPointerToRawData()));
d6cd0d55d0b5 6987812: 2/3 SAJDI: "gHotSpotVMTypes was not initialized properly in the remote process"
dcubed
parents: 1552
diff changeset
64 }
d6cd0d55d0b5 6987812: 2/3 SAJDI: "gHotSpotVMTypes was not initialized properly in the remote process"
dcubed
parents: 1552
diff changeset
65
d6cd0d55d0b5 6987812: 2/3 SAJDI: "gHotSpotVMTypes was not initialized properly in the remote process"
dcubed
parents: 1552
diff changeset
66 ExportDirectoryTable exports = dataDirs.getExportDirectoryTable();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
67 if (exports == null) {
a61af66fc99e Initial load
duke
parents:
diff changeset
68 System.out.println("No exports found.");
a61af66fc99e Initial load
duke
parents:
diff changeset
69 } else {
a61af66fc99e Initial load
duke
parents:
diff changeset
70 System.out.println("DLL name: " + exports.getDLLName());
a61af66fc99e Initial load
duke
parents:
diff changeset
71 System.out.println("Time/date stamp 0x" + Integer.toHexString(exports.getTimeDateStamp()));
a61af66fc99e Initial load
duke
parents:
diff changeset
72 System.out.println("Major version 0x" + Integer.toHexString(exports.getMajorVersion() & 0xFFFF));
a61af66fc99e Initial load
duke
parents:
diff changeset
73 System.out.println("Minor version 0x" + Integer.toHexString(exports.getMinorVersion() & 0xFFFF));
2072
d6cd0d55d0b5 6987812: 2/3 SAJDI: "gHotSpotVMTypes was not initialized properly in the remote process"
dcubed
parents: 1552
diff changeset
74 System.out.println(exports.getNumberOfNamePointers() + " exports found");
0
a61af66fc99e Initial load
duke
parents:
diff changeset
75 for (int i = 0; i < exports.getNumberOfNamePointers(); i++) {
2072
d6cd0d55d0b5 6987812: 2/3 SAJDI: "gHotSpotVMTypes was not initialized properly in the remote process"
dcubed
parents: 1552
diff changeset
76 short ordinal = exports.getExportOrdinal(i);
d6cd0d55d0b5 6987812: 2/3 SAJDI: "gHotSpotVMTypes was not initialized properly in the remote process"
dcubed
parents: 1552
diff changeset
77 System.out.print("[" + i + "] '" + exports.getExportName(i) + "': [" +
d6cd0d55d0b5 6987812: 2/3 SAJDI: "gHotSpotVMTypes was not initialized properly in the remote process"
dcubed
parents: 1552
diff changeset
78 ordinal + "] = 0x" + Integer.toHexString(exports.getExportAddress(ordinal)));
d6cd0d55d0b5 6987812: 2/3 SAJDI: "gHotSpotVMTypes was not initialized properly in the remote process"
dcubed
parents: 1552
diff changeset
79 System.out.println(exports.isExportAddressForwarder(ordinal)
d6cd0d55d0b5 6987812: 2/3 SAJDI: "gHotSpotVMTypes was not initialized properly in the remote process"
dcubed
parents: 1552
diff changeset
80 ? " Forwarded to '" + exports.getExportAddressForwarder(ordinal) + "'"
d6cd0d55d0b5 6987812: 2/3 SAJDI: "gHotSpotVMTypes was not initialized properly in the remote process"
dcubed
parents: 1552
diff changeset
81 : "");
0
a61af66fc99e Initial load
duke
parents:
diff changeset
82 }
a61af66fc99e Initial load
duke
parents:
diff changeset
83 }
a61af66fc99e Initial load
duke
parents:
diff changeset
84 }
a61af66fc99e Initial load
duke
parents:
diff changeset
85 }