annotate src/share/vm/memory/filemap.hpp @ 20730:8210e5f2e21b

8044269: Analysis of archive files. Summary: Add checksum verification. Reviewed-by: iklam, dholmes, mschoene
author jiangli
date Tue, 12 Aug 2014 17:46:16 -0400
parents 85c1ca43713f
children 8cb56c8cb30d
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
12056
740e263c80c6 8003424: Enable Class Data Sharing for CompressedOops
hseigel
parents: 11056
diff changeset
2 * Copyright (c) 2003, 2013, 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
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
25 #ifndef SHARE_VM_MEMORY_FILEMAP_HPP
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
26 #define SHARE_VM_MEMORY_FILEMAP_HPP
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
27
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
28 #include "memory/metaspaceShared.hpp"
12838
85c1ca43713f 8024547: MaxMetaspaceSize should limit the committed memory used by the metaspaces
stefank
parents: 12056
diff changeset
29 #include "memory/metaspace.hpp"
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
30
0
a61af66fc99e Initial load
duke
parents:
diff changeset
31 // Layout of the file:
a61af66fc99e Initial load
duke
parents:
diff changeset
32 // header: dump of archive instance plus versioning info, datestamp, etc.
a61af66fc99e Initial load
duke
parents:
diff changeset
33 // [magic # = 0xF00BABA2]
a61af66fc99e Initial load
duke
parents:
diff changeset
34 // ... padding to align on page-boundary
a61af66fc99e Initial load
duke
parents:
diff changeset
35 // read-write space from CompactingPermGenGen
a61af66fc99e Initial load
duke
parents:
diff changeset
36 // read-only space from CompactingPermGenGen
a61af66fc99e Initial load
duke
parents:
diff changeset
37 // misc data (block offset table, string table, symbols, dictionary, etc.)
a61af66fc99e Initial load
duke
parents:
diff changeset
38 // tag(666)
a61af66fc99e Initial load
duke
parents:
diff changeset
39
a61af66fc99e Initial load
duke
parents:
diff changeset
40 static const int JVM_SHARED_JARS_MAX = 128;
a61af66fc99e Initial load
duke
parents:
diff changeset
41 static const int JVM_SPACENAME_MAX = 128;
a61af66fc99e Initial load
duke
parents:
diff changeset
42 static const int JVM_IDENT_MAX = 256;
a61af66fc99e Initial load
duke
parents:
diff changeset
43 static const int JVM_ARCH_MAX = 12;
a61af66fc99e Initial load
duke
parents:
diff changeset
44
a61af66fc99e Initial load
duke
parents:
diff changeset
45
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
46 class Metaspace;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
47
6197
d2a62e0f25eb 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 1972
diff changeset
48 class FileMapInfo : public CHeapObj<mtInternal> {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
49 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
50 enum {
a61af66fc99e Initial load
duke
parents:
diff changeset
51 _invalid_version = -1,
a61af66fc99e Initial load
duke
parents:
diff changeset
52 _current_version = 1
a61af66fc99e Initial load
duke
parents:
diff changeset
53 };
a61af66fc99e Initial load
duke
parents:
diff changeset
54
a61af66fc99e Initial load
duke
parents:
diff changeset
55 bool _file_open;
a61af66fc99e Initial load
duke
parents:
diff changeset
56 int _fd;
20730
8210e5f2e21b 8044269: Analysis of archive files.
jiangli
parents: 12838
diff changeset
57 size_t _file_offset;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
58
a61af66fc99e Initial load
duke
parents:
diff changeset
59 // FileMapHeader describes the shared space data in the file to be
a61af66fc99e Initial load
duke
parents:
diff changeset
60 // mapped. This structure gets written to a file. It is not a class, so
a61af66fc99e Initial load
duke
parents:
diff changeset
61 // that the compilers don't add any compiler-private data to it.
a61af66fc99e Initial load
duke
parents:
diff changeset
62
a61af66fc99e Initial load
duke
parents:
diff changeset
63 struct FileMapHeader {
a61af66fc99e Initial load
duke
parents:
diff changeset
64 int _magic; // identify file type.
20730
8210e5f2e21b 8044269: Analysis of archive files.
jiangli
parents: 12838
diff changeset
65 int _crc; // header crc checksum.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
66 int _version; // (from enum, above.)
a61af66fc99e Initial load
duke
parents:
diff changeset
67 size_t _alignment; // how shared archive should be aligned
7461
561148896559 8005076: Creating a CDS archive with one alignment and running another causes a crash.
hseigel
parents: 6882
diff changeset
68 int _obj_alignment; // value of ObjectAlignmentInBytes
0
a61af66fc99e Initial load
duke
parents:
diff changeset
69
a61af66fc99e Initial load
duke
parents:
diff changeset
70 struct space_info {
20730
8210e5f2e21b 8044269: Analysis of archive files.
jiangli
parents: 12838
diff changeset
71 int _crc; // crc checksum of the current space
8210e5f2e21b 8044269: Analysis of archive files.
jiangli
parents: 12838
diff changeset
72 size_t _file_offset; // sizeof(this) rounded to vm page size
0
a61af66fc99e Initial load
duke
parents:
diff changeset
73 char* _base; // copy-on-write base address
a61af66fc99e Initial load
duke
parents:
diff changeset
74 size_t _capacity; // for validity checking
a61af66fc99e Initial load
duke
parents:
diff changeset
75 size_t _used; // for setting space top on read
a61af66fc99e Initial load
duke
parents:
diff changeset
76 bool _read_only; // read only space?
a61af66fc99e Initial load
duke
parents:
diff changeset
77 bool _allow_exec; // executable code in space?
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
78 } _space[MetaspaceShared::n_regions];
0
a61af66fc99e Initial load
duke
parents:
diff changeset
79
a61af66fc99e Initial load
duke
parents:
diff changeset
80 // The following fields are all sanity checks for whether this archive
a61af66fc99e Initial load
duke
parents:
diff changeset
81 // will function correctly with this JVM and the bootclasspath it's
a61af66fc99e Initial load
duke
parents:
diff changeset
82 // invoked with.
a61af66fc99e Initial load
duke
parents:
diff changeset
83 char _arch[JVM_ARCH_MAX]; // architecture
a61af66fc99e Initial load
duke
parents:
diff changeset
84 char _jvm_ident[JVM_IDENT_MAX]; // identifier for jvm
a61af66fc99e Initial load
duke
parents:
diff changeset
85 int _num_jars; // Number of jars in bootclasspath
a61af66fc99e Initial load
duke
parents:
diff changeset
86
a61af66fc99e Initial load
duke
parents:
diff changeset
87 // Per jar file data: timestamp, size.
a61af66fc99e Initial load
duke
parents:
diff changeset
88
a61af66fc99e Initial load
duke
parents:
diff changeset
89 struct {
a61af66fc99e Initial load
duke
parents:
diff changeset
90 time_t _timestamp; // jar timestamp.
a61af66fc99e Initial load
duke
parents:
diff changeset
91 long _filesize; // jar file size.
a61af66fc99e Initial load
duke
parents:
diff changeset
92 } _jar[JVM_SHARED_JARS_MAX];
a61af66fc99e Initial load
duke
parents:
diff changeset
93 } _header;
a61af66fc99e Initial load
duke
parents:
diff changeset
94 const char* _full_path;
a61af66fc99e Initial load
duke
parents:
diff changeset
95
a61af66fc99e Initial load
duke
parents:
diff changeset
96 static FileMapInfo* _current_info;
a61af66fc99e Initial load
duke
parents:
diff changeset
97
a61af66fc99e Initial load
duke
parents:
diff changeset
98 bool init_from_file(int fd);
a61af66fc99e Initial load
duke
parents:
diff changeset
99 void align_file_position();
a61af66fc99e Initial load
duke
parents:
diff changeset
100
a61af66fc99e Initial load
duke
parents:
diff changeset
101 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
102 FileMapInfo() {
a61af66fc99e Initial load
duke
parents:
diff changeset
103 _file_offset = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
104 _file_open = false;
a61af66fc99e Initial load
duke
parents:
diff changeset
105 _header._version = _invalid_version;
a61af66fc99e Initial load
duke
parents:
diff changeset
106 }
a61af66fc99e Initial load
duke
parents:
diff changeset
107
a61af66fc99e Initial load
duke
parents:
diff changeset
108 static int current_version() { return _current_version; }
20730
8210e5f2e21b 8044269: Analysis of archive files.
jiangli
parents: 12838
diff changeset
109 int compute_header_crc();
8210e5f2e21b 8044269: Analysis of archive files.
jiangli
parents: 12838
diff changeset
110 void set_header_crc(int crc) { _header._crc = crc; }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
111 void populate_header(size_t alignment);
a61af66fc99e Initial load
duke
parents:
diff changeset
112 bool validate();
a61af66fc99e Initial load
duke
parents:
diff changeset
113 void invalidate();
a61af66fc99e Initial load
duke
parents:
diff changeset
114 int version() { return _header._version; }
a61af66fc99e Initial load
duke
parents:
diff changeset
115 size_t alignment() { return _header._alignment; }
a61af66fc99e Initial load
duke
parents:
diff changeset
116 size_t space_capacity(int i) { return _header._space[i]._capacity; }
a61af66fc99e Initial load
duke
parents:
diff changeset
117 char* region_base(int i) { return _header._space[i]._base; }
a61af66fc99e Initial load
duke
parents:
diff changeset
118 struct FileMapHeader* header() { return &_header; }
a61af66fc99e Initial load
duke
parents:
diff changeset
119
8720
fad90b102190 8008310: Some adjustments needed to minimal VM warnings and errors for unsupported command line options
jprovino
parents: 7461
diff changeset
120 static void set_current_info(FileMapInfo* info) {
fad90b102190 8008310: Some adjustments needed to minimal VM warnings and errors for unsupported command line options
jprovino
parents: 7461
diff changeset
121 CDS_ONLY(_current_info = info;)
fad90b102190 8008310: Some adjustments needed to minimal VM warnings and errors for unsupported command line options
jprovino
parents: 7461
diff changeset
122 }
fad90b102190 8008310: Some adjustments needed to minimal VM warnings and errors for unsupported command line options
jprovino
parents: 7461
diff changeset
123
fad90b102190 8008310: Some adjustments needed to minimal VM warnings and errors for unsupported command line options
jprovino
parents: 7461
diff changeset
124 static FileMapInfo* current_info() {
fad90b102190 8008310: Some adjustments needed to minimal VM warnings and errors for unsupported command line options
jprovino
parents: 7461
diff changeset
125 CDS_ONLY(return _current_info;)
fad90b102190 8008310: Some adjustments needed to minimal VM warnings and errors for unsupported command line options
jprovino
parents: 7461
diff changeset
126 NOT_CDS(return NULL;)
fad90b102190 8008310: Some adjustments needed to minimal VM warnings and errors for unsupported command line options
jprovino
parents: 7461
diff changeset
127 }
fad90b102190 8008310: Some adjustments needed to minimal VM warnings and errors for unsupported command line options
jprovino
parents: 7461
diff changeset
128
0
a61af66fc99e Initial load
duke
parents:
diff changeset
129 static void assert_mark(bool check);
a61af66fc99e Initial load
duke
parents:
diff changeset
130
a61af66fc99e Initial load
duke
parents:
diff changeset
131 // File manipulation.
8720
fad90b102190 8008310: Some adjustments needed to minimal VM warnings and errors for unsupported command line options
jprovino
parents: 7461
diff changeset
132 bool initialize() NOT_CDS_RETURN_(false);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
133 bool open_for_read();
a61af66fc99e Initial load
duke
parents:
diff changeset
134 void open_for_write();
a61af66fc99e Initial load
duke
parents:
diff changeset
135 void write_header();
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
136 void write_space(int i, Metaspace* space, bool read_only);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
137 void write_region(int region, char* base, size_t size,
a61af66fc99e Initial load
duke
parents:
diff changeset
138 size_t capacity, bool read_only, bool allow_exec);
a61af66fc99e Initial load
duke
parents:
diff changeset
139 void write_bytes(const void* buffer, int count);
a61af66fc99e Initial load
duke
parents:
diff changeset
140 void write_bytes_aligned(const void* buffer, int count);
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
141 char* map_region(int i);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
142 void unmap_region(int i);
20730
8210e5f2e21b 8044269: Analysis of archive files.
jiangli
parents: 12838
diff changeset
143 bool verify_region_checksum(int i);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
144 void close();
a61af66fc99e Initial load
duke
parents:
diff changeset
145 bool is_open() { return _file_open; }
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6197
diff changeset
146 ReservedSpace reserve_shared_memory();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
147
a61af66fc99e Initial load
duke
parents:
diff changeset
148 // JVM/TI RedefineClasses() support:
a61af66fc99e Initial load
duke
parents:
diff changeset
149 // Remap the shared readonly space to shared readwrite, private.
a61af66fc99e Initial load
duke
parents:
diff changeset
150 bool remap_shared_readonly_as_readwrite();
a61af66fc99e Initial load
duke
parents:
diff changeset
151
a61af66fc99e Initial load
duke
parents:
diff changeset
152 // Errors.
a61af66fc99e Initial load
duke
parents:
diff changeset
153 static void fail_stop(const char *msg, ...);
a61af66fc99e Initial load
duke
parents:
diff changeset
154 void fail_continue(const char *msg, ...);
a61af66fc99e Initial load
duke
parents:
diff changeset
155
a61af66fc99e Initial load
duke
parents:
diff changeset
156 // Return true if given address is in the mapped shared space.
8720
fad90b102190 8008310: Some adjustments needed to minimal VM warnings and errors for unsupported command line options
jprovino
parents: 7461
diff changeset
157 bool is_in_shared_space(const void* p) NOT_CDS_RETURN_(false);
11056
221df7e37535 8016075: Win32 crash with CDS enabled and small heap size
iklam
parents: 8720
diff changeset
158 void print_shared_spaces() NOT_CDS_RETURN;
12056
740e263c80c6 8003424: Enable Class Data Sharing for CompressedOops
hseigel
parents: 11056
diff changeset
159
740e263c80c6 8003424: Enable Class Data Sharing for CompressedOops
hseigel
parents: 11056
diff changeset
160 static size_t shared_spaces_size() {
740e263c80c6 8003424: Enable Class Data Sharing for CompressedOops
hseigel
parents: 11056
diff changeset
161 return align_size_up(SharedReadOnlySize + SharedReadWriteSize +
740e263c80c6 8003424: Enable Class Data Sharing for CompressedOops
hseigel
parents: 11056
diff changeset
162 SharedMiscDataSize + SharedMiscCodeSize,
740e263c80c6 8003424: Enable Class Data Sharing for CompressedOops
hseigel
parents: 11056
diff changeset
163 os::vm_allocation_granularity());
740e263c80c6 8003424: Enable Class Data Sharing for CompressedOops
hseigel
parents: 11056
diff changeset
164 }
740e263c80c6 8003424: Enable Class Data Sharing for CompressedOops
hseigel
parents: 11056
diff changeset
165
740e263c80c6 8003424: Enable Class Data Sharing for CompressedOops
hseigel
parents: 11056
diff changeset
166 // Stop CDS sharing and unmap CDS regions.
740e263c80c6 8003424: Enable Class Data Sharing for CompressedOops
hseigel
parents: 11056
diff changeset
167 static void stop_sharing_and_unmap(const char* msg);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
168 };
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
169
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1552
diff changeset
170 #endif // SHARE_VM_MEMORY_FILEMAP_HPP