author | lfoltan |
Mon, 21 Oct 2019 13:13:16 -0400 | |
changeset 58722 | cba8afa5cfed |
parent 58537 | 30a9612a657d |
child 58760 | 1f7f707c1aa9 |
permissions | -rw-r--r-- |
1 | 1 |
/* |
54847
59ea39bb2809
8223657: Remove unused THREAD argument from SymbolTable functions
coleenp
parents:
53322
diff
changeset
|
2 |
* Copyright (c) 2003, 2019, Oracle and/or its affiliates. All rights reserved. |
1 | 3 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
4 |
* |
|
5 |
* This code is free software; you can redistribute it and/or modify it |
|
6 |
* under the terms of the GNU General Public License version 2 only, as |
|
7 |
* published by the Free Software Foundation. |
|
8 |
* |
|
9 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
|
10 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
11 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
12 |
* version 2 for more details (a copy is included in the LICENSE file that |
|
13 |
* accompanied this code). |
|
14 |
* |
|
15 |
* You should have received a copy of the GNU General Public License version |
|
16 |
* 2 along with this work; if not, write to the Free Software Foundation, |
|
17 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
|
18 |
* |
|
5547
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
1
diff
changeset
|
19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
1
diff
changeset
|
20 |
* or visit www.oracle.com if you need additional information or have any |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
1
diff
changeset
|
21 |
* questions. |
1 | 22 |
* |
23 |
*/ |
|
24 |
||
7397 | 25 |
#include "precompiled.hpp" |
26 |
#include "classfile/symbolTable.hpp" |
|
39713 | 27 |
#include "classfile/systemDictionaryShared.hpp" |
7397 | 28 |
#include "classfile/verificationType.hpp" |
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
29 |
#include "classfile/verifier.hpp" |
49594
898ef81cbc0e
8200106: Move NoSafepointVerifier out from gcLocker.hpp
stefank
parents:
49393
diff
changeset
|
30 |
#include "logging/log.hpp" |
58537 | 31 |
#include "oops/klass.inline.hpp" |
49393 | 32 |
#include "runtime/handles.inline.hpp" |
1 | 33 |
|
34 |
VerificationType VerificationType::from_tag(u1 tag) { |
|
35 |
switch (tag) { |
|
36 |
case ITEM_Top: return bogus_type(); |
|
37 |
case ITEM_Integer: return integer_type(); |
|
38 |
case ITEM_Float: return float_type(); |
|
39 |
case ITEM_Double: return double_type(); |
|
40 |
case ITEM_Long: return long_type(); |
|
41 |
case ITEM_Null: return null_type(); |
|
42 |
default: |
|
43 |
ShouldNotReachHere(); |
|
44 |
return bogus_type(); |
|
45 |
} |
|
46 |
} |
|
47 |
||
46329
53ccc37bda19
8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents:
46271
diff
changeset
|
48 |
bool VerificationType::resolve_and_check_assignability(InstanceKlass* klass, Symbol* name, |
39713 | 49 |
Symbol* from_name, bool from_field_is_protected, bool from_is_array, bool from_is_object, TRAPS) { |
46271
979ebd346ecf
8169881: Remove implicit Handle conversions oop->Handle
coleenp
parents:
39713
diff
changeset
|
50 |
HandleMark hm(THREAD); |
46329
53ccc37bda19
8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents:
46271
diff
changeset
|
51 |
Klass* this_class = SystemDictionary::resolve_or_fail( |
39713 | 52 |
name, Handle(THREAD, klass->class_loader()), |
53 |
Handle(THREAD, klass->protection_domain()), true, CHECK_false); |
|
54 |
if (log_is_enabled(Debug, class, resolve)) { |
|
46329
53ccc37bda19
8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents:
46271
diff
changeset
|
55 |
Verifier::trace_class_resolution(this_class, klass); |
39713 | 56 |
} |
57 |
||
58 |
if (this_class->is_interface() && (!from_field_is_protected || |
|
59 |
from_name != vmSymbols::java_lang_Object())) { |
|
60 |
// If we are not trying to access a protected field or method in |
|
61 |
// java.lang.Object then, for arrays, we only allow assignability |
|
62 |
// to interfaces java.lang.Cloneable and java.io.Serializable. |
|
63 |
// Otherwise, we treat interfaces as java.lang.Object. |
|
64 |
return !from_is_array || |
|
65 |
this_class == SystemDictionary::Cloneable_klass() || |
|
66 |
this_class == SystemDictionary::Serializable_klass(); |
|
67 |
} else if (from_is_object) { |
|
68 |
Klass* from_class = SystemDictionary::resolve_or_fail( |
|
69 |
from_name, Handle(THREAD, klass->class_loader()), |
|
70 |
Handle(THREAD, klass->protection_domain()), true, CHECK_false); |
|
71 |
if (log_is_enabled(Debug, class, resolve)) { |
|
46329
53ccc37bda19
8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents:
46271
diff
changeset
|
72 |
Verifier::trace_class_resolution(from_class, klass); |
39713 | 73 |
} |
46329
53ccc37bda19
8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents:
46271
diff
changeset
|
74 |
return InstanceKlass::cast(from_class)->is_subclass_of(this_class); |
39713 | 75 |
} |
76 |
||
77 |
return false; |
|
78 |
} |
|
79 |
||
1 | 80 |
bool VerificationType::is_reference_assignable_from( |
27022 | 81 |
const VerificationType& from, ClassVerifier* context, |
82 |
bool from_field_is_protected, TRAPS) const { |
|
46329
53ccc37bda19
8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents:
46271
diff
changeset
|
83 |
InstanceKlass* klass = context->current_class(); |
1 | 84 |
if (from.is_null()) { |
85 |
// null is assignable to any reference |
|
86 |
return true; |
|
87 |
} else if (is_null()) { |
|
88 |
return false; |
|
89 |
} else if (name() == from.name()) { |
|
90 |
return true; |
|
91 |
} else if (is_object()) { |
|
92 |
// We need check the class hierarchy to check assignability |
|
93 |
if (name() == vmSymbols::java_lang_Object()) { |
|
94 |
// any object or array is assignable to java.lang.Object |
|
95 |
return true; |
|
96 |
} |
|
39713 | 97 |
|
58447
319173c62caa
8231606: _method_ordering is not set during CDS dynamic dump time
ccheung
parents:
54927
diff
changeset
|
98 |
if (Arguments::is_dumping_archive()) { |
54927 | 99 |
if (SystemDictionaryShared::add_verification_constraint(klass, |
39713 | 100 |
name(), from.name(), from_field_is_protected, from.is_array(), |
101 |
from.is_object())) { |
|
54927 | 102 |
// If add_verification_constraint() returns true, the resolution/check should be |
103 |
// delayed until runtime. |
|
104 |
return true; |
|
105 |
} |
|
30616
fde3a4fee412
8076318: split verifier needs to add TraceClassResolution
hseigel
parents:
27022
diff
changeset
|
106 |
} |
fde3a4fee412
8076318: split verifier needs to add TraceClassResolution
hseigel
parents:
27022
diff
changeset
|
107 |
|
46329
53ccc37bda19
8155672: Remove instanceKlassHandles and KlassHandles
coleenp
parents:
46271
diff
changeset
|
108 |
return resolve_and_check_assignability(klass, name(), from.name(), |
39713 | 109 |
from_field_is_protected, from.is_array(), from.is_object(), THREAD); |
1 | 110 |
} else if (is_array() && from.is_array()) { |
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
111 |
VerificationType comp_this = get_component(context, CHECK_false); |
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
112 |
VerificationType comp_from = from.get_component(context, CHECK_false); |
6172 | 113 |
if (!comp_this.is_bogus() && !comp_from.is_bogus()) { |
31966
aa9c386e1240
8129895: New verifier fails to reject erroneous cast from int[] to other arrays of small integer types
hseigel
parents:
30616
diff
changeset
|
114 |
return comp_this.is_component_assignable_from(comp_from, context, |
52067
2e72562697bf
8211394: CHECK_ must be used in the rhs of an assignment statement within a block
dholmes
parents:
51997
diff
changeset
|
115 |
from_field_is_protected, THREAD); |
6172 | 116 |
} |
1 | 117 |
} |
118 |
return false; |
|
119 |
} |
|
120 |
||
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
121 |
VerificationType VerificationType::get_component(ClassVerifier *context, TRAPS) const { |
1 | 122 |
assert(is_array() && name()->utf8_length() >= 2, "Must be a valid array"); |
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
123 |
Symbol* component; |
51997
9ce37fa2e179
8209138: Symbol constructor uses u1 as the element type of its name argument
hseigel
parents:
49770
diff
changeset
|
124 |
switch (name()->char_at(1)) { |
58722
cba8afa5cfed
8231844: Enhance type signature characters in classfile_constants.h and improve the JVM to use type signature characters more consistently
lfoltan
parents:
58537
diff
changeset
|
125 |
case JVM_SIGNATURE_BOOLEAN: return VerificationType(Boolean); |
cba8afa5cfed
8231844: Enhance type signature characters in classfile_constants.h and improve the JVM to use type signature characters more consistently
lfoltan
parents:
58537
diff
changeset
|
126 |
case JVM_SIGNATURE_BYTE: return VerificationType(Byte); |
cba8afa5cfed
8231844: Enhance type signature characters in classfile_constants.h and improve the JVM to use type signature characters more consistently
lfoltan
parents:
58537
diff
changeset
|
127 |
case JVM_SIGNATURE_CHAR: return VerificationType(Char); |
cba8afa5cfed
8231844: Enhance type signature characters in classfile_constants.h and improve the JVM to use type signature characters more consistently
lfoltan
parents:
58537
diff
changeset
|
128 |
case JVM_SIGNATURE_SHORT: return VerificationType(Short); |
cba8afa5cfed
8231844: Enhance type signature characters in classfile_constants.h and improve the JVM to use type signature characters more consistently
lfoltan
parents:
58537
diff
changeset
|
129 |
case JVM_SIGNATURE_INT: return VerificationType(Integer); |
cba8afa5cfed
8231844: Enhance type signature characters in classfile_constants.h and improve the JVM to use type signature characters more consistently
lfoltan
parents:
58537
diff
changeset
|
130 |
case JVM_SIGNATURE_LONG: return VerificationType(Long); |
cba8afa5cfed
8231844: Enhance type signature characters in classfile_constants.h and improve the JVM to use type signature characters more consistently
lfoltan
parents:
58537
diff
changeset
|
131 |
case JVM_SIGNATURE_FLOAT: return VerificationType(Float); |
cba8afa5cfed
8231844: Enhance type signature characters in classfile_constants.h and improve the JVM to use type signature characters more consistently
lfoltan
parents:
58537
diff
changeset
|
132 |
case JVM_SIGNATURE_DOUBLE: return VerificationType(Double); |
cba8afa5cfed
8231844: Enhance type signature characters in classfile_constants.h and improve the JVM to use type signature characters more consistently
lfoltan
parents:
58537
diff
changeset
|
133 |
case JVM_SIGNATURE_ARRAY: |
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
134 |
component = context->create_temporary_symbol( |
54847
59ea39bb2809
8223657: Remove unused THREAD argument from SymbolTable functions
coleenp
parents:
53322
diff
changeset
|
135 |
name(), 1, name()->utf8_length()); |
1 | 136 |
return VerificationType::reference_type(component); |
58722
cba8afa5cfed
8231844: Enhance type signature characters in classfile_constants.h and improve the JVM to use type signature characters more consistently
lfoltan
parents:
58537
diff
changeset
|
137 |
case JVM_SIGNATURE_CLASS: |
8076
96d498ec7ae1
6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents:
7397
diff
changeset
|
138 |
component = context->create_temporary_symbol( |
54847
59ea39bb2809
8223657: Remove unused THREAD argument from SymbolTable functions
coleenp
parents:
53322
diff
changeset
|
139 |
name(), 2, name()->utf8_length() - 1); |
1 | 140 |
return VerificationType::reference_type(component); |
141 |
default: |
|
6172 | 142 |
// Met an invalid type signature, e.g. [X |
1 | 143 |
return VerificationType::bogus_type(); |
144 |
} |
|
145 |
} |
|
146 |
||
147 |
void VerificationType::print_on(outputStream* st) const { |
|
148 |
switch (_u._data) { |
|
13476 | 149 |
case Bogus: st->print("top"); break; |
150 |
case Category1: st->print("category1"); break; |
|
151 |
case Category2: st->print("category2"); break; |
|
152 |
case Category2_2nd: st->print("category2_2nd"); break; |
|
153 |
case Boolean: st->print("boolean"); break; |
|
154 |
case Byte: st->print("byte"); break; |
|
155 |
case Short: st->print("short"); break; |
|
156 |
case Char: st->print("char"); break; |
|
157 |
case Integer: st->print("integer"); break; |
|
158 |
case Float: st->print("float"); break; |
|
159 |
case Long: st->print("long"); break; |
|
160 |
case Double: st->print("double"); break; |
|
161 |
case Long_2nd: st->print("long_2nd"); break; |
|
162 |
case Double_2nd: st->print("double_2nd"); break; |
|
163 |
case Null: st->print("null"); break; |
|
164 |
case ReferenceQuery: st->print("reference type"); break; |
|
165 |
case Category1Query: st->print("category1 type"); break; |
|
166 |
case Category2Query: st->print("category2 type"); break; |
|
167 |
case Category2_2ndQuery: st->print("category2_2nd type"); break; |
|
1 | 168 |
default: |
169 |
if (is_uninitialized_this()) { |
|
13476 | 170 |
st->print("uninitializedThis"); |
1 | 171 |
} else if (is_uninitialized()) { |
13476 | 172 |
st->print("uninitialized %d", bci()); |
1 | 173 |
} else { |
52190
4e04b7ab20a3
8209087: Clean up runtime code that compares 'this' to NULL
hseigel
parents:
52067
diff
changeset
|
174 |
if (name() != NULL) { |
4e04b7ab20a3
8209087: Clean up runtime code that compares 'this' to NULL
hseigel
parents:
52067
diff
changeset
|
175 |
name()->print_value_on(st); |
4e04b7ab20a3
8209087: Clean up runtime code that compares 'this' to NULL
hseigel
parents:
52067
diff
changeset
|
176 |
} else { |
4e04b7ab20a3
8209087: Clean up runtime code that compares 'this' to NULL
hseigel
parents:
52067
diff
changeset
|
177 |
st->print_cr("NULL"); |
4e04b7ab20a3
8209087: Clean up runtime code that compares 'this' to NULL
hseigel
parents:
52067
diff
changeset
|
178 |
} |
1 | 179 |
} |
180 |
} |
|
181 |
} |