src/share/vm/classfile/verifier.hpp

Mon, 25 Jun 2012 21:33:35 -0400

author
coleenp
date
Mon, 25 Jun 2012 21:33:35 -0400
changeset 3875
246d977b51f2
parent 2708
1d1603768966
child 3992
4ee06e614636
permissions
-rw-r--r--

7178670: runtime/7158800/BadUtf8.java fails in SymbolTable::rehash_table
Summary: Cannot delete _buckets and HashtableEntries in shared space (CDS)
Reviewed-by: acorn, kvn, dlong, dcubed, kamg

duke@435 1 /*
trims@2708 2 * Copyright (c) 1998, 2011, Oracle and/or its affiliates. All rights reserved.
duke@435 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
duke@435 4 *
duke@435 5 * This code is free software; you can redistribute it and/or modify it
duke@435 6 * under the terms of the GNU General Public License version 2 only, as
duke@435 7 * published by the Free Software Foundation.
duke@435 8 *
duke@435 9 * This code is distributed in the hope that it will be useful, but WITHOUT
duke@435 10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
duke@435 11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
duke@435 12 * version 2 for more details (a copy is included in the LICENSE file that
duke@435 13 * accompanied this code).
duke@435 14 *
duke@435 15 * You should have received a copy of the GNU General Public License version
duke@435 16 * 2 along with this work; if not, write to the Free Software Foundation,
duke@435 17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
duke@435 18 *
trims@1907 19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
trims@1907 20 * or visit www.oracle.com if you need additional information or have any
trims@1907 21 * questions.
duke@435 22 *
duke@435 23 */
duke@435 24
stefank@2314 25 #ifndef SHARE_VM_CLASSFILE_VERIFIER_HPP
stefank@2314 26 #define SHARE_VM_CLASSFILE_VERIFIER_HPP
stefank@2314 27
stefank@2314 28 #include "classfile/verificationType.hpp"
stefank@2314 29 #include "memory/gcLocker.hpp"
stefank@2314 30 #include "oops/klass.hpp"
stefank@2314 31 #include "oops/methodOop.hpp"
stefank@2314 32 #include "runtime/handles.hpp"
stefank@2314 33 #include "utilities/exceptions.hpp"
stefank@2314 34
duke@435 35 // The verifier class
duke@435 36 class Verifier : AllStatic {
duke@435 37 public:
jrose@1957 38 enum {
jrose@1957 39 STACKMAP_ATTRIBUTE_MAJOR_VERSION = 50,
jrose@1957 40 INVOKEDYNAMIC_MAJOR_VERSION = 51
jrose@1957 41 };
duke@435 42 typedef enum { ThrowException, NoException } Mode;
duke@435 43
duke@435 44 /**
duke@435 45 * Verify the bytecodes for a class. If 'throw_exception' is true
duke@435 46 * then the appropriate VerifyError or ClassFormatError will be thrown.
duke@435 47 * Otherwise, no exception is thrown and the return indicates the
duke@435 48 * error.
duke@435 49 */
acorn@1408 50 static bool verify(instanceKlassHandle klass, Mode mode, bool should_verify_class, TRAPS);
duke@435 51
acorn@1408 52 // Return false if the class is loaded by the bootstrap loader,
acorn@1408 53 // or if defineClass was called requesting skipping verification
acorn@1408 54 // -Xverify:all/none override this value
acorn@1408 55 static bool should_verify_for(oop class_loader, bool should_verify_class);
duke@435 56
duke@435 57 // Relax certain verifier checks to enable some broken 1.1 apps to run on 1.2.
duke@435 58 static bool relax_verify_for(oop class_loader);
duke@435 59
duke@435 60 private:
acorn@1408 61 static bool is_eligible_for_verification(instanceKlassHandle klass, bool should_verify_class);
coleenp@2497 62 static Symbol* inference_verify(
duke@435 63 instanceKlassHandle klass, char* msg, size_t msg_len, TRAPS);
duke@435 64 };
duke@435 65
duke@435 66 class RawBytecodeStream;
duke@435 67 class StackMapFrame;
duke@435 68 class StackMapTable;
duke@435 69
duke@435 70 // Summary of verifier's memory usage:
duke@435 71 // StackMapTable is stack allocated.
coleenp@2497 72 // StackMapFrame are resource allocated. There is only one ResourceMark
coleenp@2497 73 // for each class verification, which is created at the top level.
duke@435 74 // There is one mutable StackMapFrame (current_frame) which is updated
duke@435 75 // by abstract bytecode interpretation. frame_in_exception_handler() returns
duke@435 76 // a frame that has a mutable one-item stack (ready for pushing the
duke@435 77 // catch type exception object). All the other StackMapFrame's
duke@435 78 // are immutable (including their locals and stack arrays) after
duke@435 79 // their constructions.
duke@435 80 // locals/stack arrays in StackMapFrame are resource allocated.
duke@435 81 // locals/stack arrays can be shared between StackMapFrame's, except
duke@435 82 // the mutable StackMapFrame (current_frame).
duke@435 83
duke@435 84 // These macros are used similarly to CHECK macros but also check
duke@435 85 // the status of the verifier and return if that has an error.
duke@435 86 #define CHECK_VERIFY(verifier) \
duke@435 87 CHECK); if ((verifier)->has_error()) return; (0
duke@435 88 #define CHECK_VERIFY_(verifier, result) \
duke@435 89 CHECK_(result)); if ((verifier)->has_error()) return (result); (0
duke@435 90
duke@435 91 // A new instance of this class is created for each class being verified
duke@435 92 class ClassVerifier : public StackObj {
duke@435 93 private:
duke@435 94 Thread* _thread;
coleenp@2497 95 Symbol* _exception_type;
duke@435 96 char* _message;
duke@435 97 size_t _message_buffer_len;
coleenp@2497 98 GrowableArray<Symbol*>* _symbols; // keep a list of symbols created
duke@435 99
duke@435 100 void verify_method(methodHandle method, TRAPS);
duke@435 101 char* generate_code_data(methodHandle m, u4 code_length, TRAPS);
duke@435 102 void verify_exception_handler_table(u4 code_length, char* code_data, int& min, int& max, TRAPS);
duke@435 103 void verify_local_variable_table(u4 code_length, char* code_data, TRAPS);
duke@435 104
duke@435 105 VerificationType cp_ref_index_to_type(
duke@435 106 int index, constantPoolHandle cp, TRAPS) {
duke@435 107 return cp_index_to_type(cp->klass_ref_index_at(index), cp, THREAD);
duke@435 108 }
duke@435 109
duke@435 110 bool is_protected_access(
duke@435 111 instanceKlassHandle this_class, klassOop target_class,
coleenp@2497 112 Symbol* field_name, Symbol* field_sig, bool is_method);
duke@435 113
duke@435 114 void verify_cp_index(constantPoolHandle cp, int index, TRAPS);
duke@435 115 void verify_cp_type(
duke@435 116 int index, constantPoolHandle cp, unsigned int types, TRAPS);
duke@435 117 void verify_cp_class_type(int index, constantPoolHandle cp, TRAPS);
duke@435 118
duke@435 119 u2 verify_stackmap_table(
duke@435 120 u2 stackmap_index, u2 bci, StackMapFrame* current_frame,
duke@435 121 StackMapTable* stackmap_table, bool no_control_flow, TRAPS);
duke@435 122
duke@435 123 void verify_exception_handler_targets(
duke@435 124 u2 bci, bool this_uninit, StackMapFrame* current_frame,
duke@435 125 StackMapTable* stackmap_table, TRAPS);
duke@435 126
duke@435 127 void verify_ldc(
duke@435 128 int opcode, u2 index, StackMapFrame *current_frame,
duke@435 129 constantPoolHandle cp, u2 bci, TRAPS);
duke@435 130
duke@435 131 void verify_switch(
duke@435 132 RawBytecodeStream* bcs, u4 code_length, char* code_data,
duke@435 133 StackMapFrame* current_frame, StackMapTable* stackmap_table, TRAPS);
duke@435 134
duke@435 135 void verify_field_instructions(
duke@435 136 RawBytecodeStream* bcs, StackMapFrame* current_frame,
duke@435 137 constantPoolHandle cp, TRAPS);
duke@435 138
duke@435 139 void verify_invoke_init(
duke@435 140 RawBytecodeStream* bcs, VerificationType ref_class_type,
duke@435 141 StackMapFrame* current_frame, u4 code_length, bool* this_uninit,
duke@435 142 constantPoolHandle cp, TRAPS);
duke@435 143
duke@435 144 void verify_invoke_instructions(
duke@435 145 RawBytecodeStream* bcs, u4 code_length, StackMapFrame* current_frame,
duke@435 146 bool* this_uninit, VerificationType return_type,
duke@435 147 constantPoolHandle cp, TRAPS);
duke@435 148
duke@435 149 VerificationType get_newarray_type(u2 index, u2 bci, TRAPS);
duke@435 150 void verify_anewarray(
duke@435 151 u2 index, constantPoolHandle cp, StackMapFrame* current_frame, TRAPS);
duke@435 152 void verify_return_value(
duke@435 153 VerificationType return_type, VerificationType type, u2 offset, TRAPS);
duke@435 154
duke@435 155 void verify_iload (u2 index, StackMapFrame* current_frame, TRAPS);
duke@435 156 void verify_lload (u2 index, StackMapFrame* current_frame, TRAPS);
duke@435 157 void verify_fload (u2 index, StackMapFrame* current_frame, TRAPS);
duke@435 158 void verify_dload (u2 index, StackMapFrame* current_frame, TRAPS);
duke@435 159 void verify_aload (u2 index, StackMapFrame* current_frame, TRAPS);
duke@435 160 void verify_istore(u2 index, StackMapFrame* current_frame, TRAPS);
duke@435 161 void verify_lstore(u2 index, StackMapFrame* current_frame, TRAPS);
duke@435 162 void verify_fstore(u2 index, StackMapFrame* current_frame, TRAPS);
duke@435 163 void verify_dstore(u2 index, StackMapFrame* current_frame, TRAPS);
duke@435 164 void verify_astore(u2 index, StackMapFrame* current_frame, TRAPS);
duke@435 165 void verify_iinc (u2 index, StackMapFrame* current_frame, TRAPS);
duke@435 166
coleenp@2497 167 bool name_in_supers(Symbol* ref_name, instanceKlassHandle current);
duke@435 168
kamg@2297 169 VerificationType object_type() const;
kamg@2297 170
duke@435 171 instanceKlassHandle _klass; // the class being verified
duke@435 172 methodHandle _method; // current method being verified
duke@435 173 VerificationType _this_type; // the verification type of the current class
duke@435 174
jrose@1925 175 // Some recursive calls from the verifier to the name resolver
jrose@1925 176 // can cause the current class to be re-verified and rewritten.
jrose@1925 177 // If this happens, the original verification should not continue,
jrose@1925 178 // because constant pool indexes will have changed.
jrose@1925 179 // The rewriter is preceded by the verifier. If the verifier throws
jrose@1925 180 // an error, rewriting is prevented. Also, rewriting always precedes
jrose@1925 181 // bytecode execution or compilation. Thus, is_rewritten implies
jrose@1925 182 // that a class has been verified and prepared for execution.
jrose@1925 183 bool was_recursively_verified() { return _klass->is_rewritten(); }
jrose@1925 184
duke@435 185 public:
duke@435 186 enum {
duke@435 187 BYTECODE_OFFSET = 1,
duke@435 188 NEW_OFFSET = 2
duke@435 189 };
duke@435 190
duke@435 191 // constructor
duke@435 192 ClassVerifier(instanceKlassHandle klass, char* msg, size_t msg_len, TRAPS);
duke@435 193
duke@435 194 // destructor
duke@435 195 ~ClassVerifier();
duke@435 196
duke@435 197 Thread* thread() { return _thread; }
duke@435 198 methodHandle method() { return _method; }
duke@435 199 instanceKlassHandle current_class() const { return _klass; }
duke@435 200 VerificationType current_type() const { return _this_type; }
duke@435 201
duke@435 202 // Verifies the class. If a verify or class file format error occurs,
duke@435 203 // the '_exception_name' symbols will set to the exception name and
duke@435 204 // the message_buffer will be filled in with the exception message.
duke@435 205 void verify_class(TRAPS);
duke@435 206
duke@435 207 // Return status modes
coleenp@2497 208 Symbol* result() const { return _exception_type; }
coleenp@2497 209 bool has_error() const { return result() != NULL; }
duke@435 210
duke@435 211 // Called when verify or class format errors are encountered.
duke@435 212 // May throw an exception based upon the mode.
duke@435 213 void verify_error(u2 offset, const char* fmt, ...);
duke@435 214 void verify_error(const char* fmt, ...);
duke@435 215 void class_format_error(const char* fmt, ...);
duke@435 216 void format_error_message(const char* fmt, int offset, va_list args);
duke@435 217
coleenp@2497 218 klassOop load_class(Symbol* name, TRAPS);
duke@435 219
duke@435 220 int change_sig_to_verificationType(
duke@435 221 SignatureStream* sig_type, VerificationType* inference_type, TRAPS);
duke@435 222
duke@435 223 VerificationType cp_index_to_type(int index, constantPoolHandle cp, TRAPS) {
coleenp@2497 224 return VerificationType::reference_type(cp->klass_name_at(index));
duke@435 225 }
duke@435 226
coleenp@2497 227 // Keep a list of temporary symbols created during verification because
coleenp@2497 228 // their reference counts need to be decrememented when the verifier object
coleenp@2497 229 // goes out of scope. Since these symbols escape the scope in which they're
coleenp@2497 230 // created, we can't use a TempNewSymbol.
coleenp@2497 231 Symbol* create_temporary_symbol(const Symbol* s, int begin, int end, TRAPS);
coleenp@2497 232 Symbol* create_temporary_symbol(const char *s, int length, TRAPS);
coleenp@2497 233
duke@435 234 static bool _verify_verbose; // for debugging
duke@435 235 };
duke@435 236
duke@435 237 inline int ClassVerifier::change_sig_to_verificationType(
duke@435 238 SignatureStream* sig_type, VerificationType* inference_type, TRAPS) {
duke@435 239 BasicType bt = sig_type->type();
duke@435 240 switch (bt) {
duke@435 241 case T_OBJECT:
duke@435 242 case T_ARRAY:
duke@435 243 {
coleenp@2497 244 Symbol* name = sig_type->as_symbol(CHECK_0);
coleenp@2497 245 // Create another symbol to save as signature stream unreferences
coleenp@2497 246 // this symbol.
coleenp@2497 247 Symbol* name_copy =
coleenp@2497 248 create_temporary_symbol(name, 0, name->utf8_length(), CHECK_0);
coleenp@2497 249 assert(name_copy == name, "symbols don't match");
duke@435 250 *inference_type =
coleenp@2497 251 VerificationType::reference_type(name_copy);
duke@435 252 return 1;
duke@435 253 }
duke@435 254 case T_LONG:
duke@435 255 *inference_type = VerificationType::long_type();
duke@435 256 *++inference_type = VerificationType::long2_type();
duke@435 257 return 2;
duke@435 258 case T_DOUBLE:
duke@435 259 *inference_type = VerificationType::double_type();
duke@435 260 *++inference_type = VerificationType::double2_type();
duke@435 261 return 2;
duke@435 262 case T_INT:
duke@435 263 case T_BOOLEAN:
duke@435 264 case T_BYTE:
duke@435 265 case T_CHAR:
duke@435 266 case T_SHORT:
duke@435 267 *inference_type = VerificationType::integer_type();
duke@435 268 return 1;
duke@435 269 case T_FLOAT:
duke@435 270 *inference_type = VerificationType::float_type();
duke@435 271 return 1;
duke@435 272 default:
duke@435 273 ShouldNotReachHere();
duke@435 274 return 1;
duke@435 275 }
duke@435 276 }
stefank@2314 277
stefank@2314 278 #endif // SHARE_VM_CLASSFILE_VERIFIER_HPP

mercurial