Ian Rogers | 87e552d | 2012-08-31 15:54:48 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2012 The Android Open Source Project |
| 3 | * |
| 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | * you may not use this file except in compliance with the License. |
| 6 | * You may obtain a copy of the License at |
| 7 | * |
| 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | * |
| 10 | * Unless required by applicable law or agreed to in writing, software |
| 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | * See the License for the specific language governing permissions and |
| 14 | * limitations under the License. |
| 15 | */ |
| 16 | |
| 17 | #include "common_throws.h" |
| 18 | |
Ian Rogers | 22d5e73 | 2014-07-15 22:23:51 -0700 | [diff] [blame] | 19 | #include <sstream> |
| 20 | |
Andreas Gampe | 103992b | 2016-01-04 15:32:43 -0800 | [diff] [blame] | 21 | #include "ScopedLocalRef.h" |
| 22 | |
Mathieu Chartier | c785344 | 2015-03-27 14:35:38 -0700 | [diff] [blame] | 23 | #include "art_field-inl.h" |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 24 | #include "art_method-inl.h" |
Elliott Hughes | 07ed66b | 2012-12-12 18:34:25 -0800 | [diff] [blame] | 25 | #include "base/logging.h" |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 26 | #include "class_linker-inl.h" |
Ian Rogers | 4f6ad8a | 2013-03-18 15:27:28 -0700 | [diff] [blame] | 27 | #include "dex_file-inl.h" |
Sebastien Hertz | 75b2a4a | 2013-05-21 09:25:10 +0200 | [diff] [blame] | 28 | #include "dex_instruction-inl.h" |
Ian Rogers | 87e552d | 2012-08-31 15:54:48 -0700 | [diff] [blame] | 29 | #include "invoke_type.h" |
Ian Rogers | 4f6ad8a | 2013-03-18 15:27:28 -0700 | [diff] [blame] | 30 | #include "mirror/class-inl.h" |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 31 | #include "mirror/object-inl.h" |
| 32 | #include "mirror/object_array-inl.h" |
Ian Rogers | 87e552d | 2012-08-31 15:54:48 -0700 | [diff] [blame] | 33 | #include "thread.h" |
Sebastien Hertz | 2d6ba51 | 2013-05-17 11:31:37 +0200 | [diff] [blame] | 34 | #include "verifier/method_verifier.h" |
Ian Rogers | 87e552d | 2012-08-31 15:54:48 -0700 | [diff] [blame] | 35 | |
Ian Rogers | 87e552d | 2012-08-31 15:54:48 -0700 | [diff] [blame] | 36 | namespace art { |
| 37 | |
Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 38 | static void AddReferrerLocation(std::ostream& os, mirror::Class* referrer) |
Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 39 | SHARED_REQUIRES(Locks::mutator_lock_) { |
Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 40 | if (referrer != nullptr) { |
Mathieu Chartier | f832284 | 2014-05-16 10:59:25 -0700 | [diff] [blame] | 41 | std::string location(referrer->GetLocation()); |
Ian Rogers | 87e552d | 2012-08-31 15:54:48 -0700 | [diff] [blame] | 42 | if (!location.empty()) { |
| 43 | os << " (declaration of '" << PrettyDescriptor(referrer) |
| 44 | << "' appears in " << location << ")"; |
| 45 | } |
| 46 | } |
| 47 | } |
| 48 | |
Nicolas Geoffray | 0aa50ce | 2015-03-10 11:03:29 +0000 | [diff] [blame] | 49 | static void ThrowException(const char* exception_descriptor, |
Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 50 | mirror::Class* referrer, const char* fmt, va_list* args = nullptr) |
Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 51 | SHARED_REQUIRES(Locks::mutator_lock_) { |
Ian Rogers | 87e552d | 2012-08-31 15:54:48 -0700 | [diff] [blame] | 52 | std::ostringstream msg; |
Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 53 | if (args != nullptr) { |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 54 | std::string vmsg; |
| 55 | StringAppendV(&vmsg, fmt, *args); |
| 56 | msg << vmsg; |
| 57 | } else { |
| 58 | msg << fmt; |
| 59 | } |
| 60 | AddReferrerLocation(msg, referrer); |
| 61 | Thread* self = Thread::Current(); |
Nicolas Geoffray | 0aa50ce | 2015-03-10 11:03:29 +0000 | [diff] [blame] | 62 | self->ThrowNewException(exception_descriptor, msg.str().c_str()); |
Ian Rogers | 87e552d | 2012-08-31 15:54:48 -0700 | [diff] [blame] | 63 | } |
| 64 | |
Nicolas Geoffray | 0aa50ce | 2015-03-10 11:03:29 +0000 | [diff] [blame] | 65 | static void ThrowWrappedException(const char* exception_descriptor, |
Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 66 | mirror::Class* referrer, const char* fmt, va_list* args = nullptr) |
Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 67 | SHARED_REQUIRES(Locks::mutator_lock_) { |
Andreas Gampe | 329d188 | 2014-04-08 10:32:19 -0700 | [diff] [blame] | 68 | std::ostringstream msg; |
Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 69 | if (args != nullptr) { |
Andreas Gampe | 329d188 | 2014-04-08 10:32:19 -0700 | [diff] [blame] | 70 | std::string vmsg; |
| 71 | StringAppendV(&vmsg, fmt, *args); |
| 72 | msg << vmsg; |
| 73 | } else { |
| 74 | msg << fmt; |
| 75 | } |
| 76 | AddReferrerLocation(msg, referrer); |
| 77 | Thread* self = Thread::Current(); |
Nicolas Geoffray | 0aa50ce | 2015-03-10 11:03:29 +0000 | [diff] [blame] | 78 | self->ThrowNewWrappedException(exception_descriptor, msg.str().c_str()); |
Andreas Gampe | 329d188 | 2014-04-08 10:32:19 -0700 | [diff] [blame] | 79 | } |
| 80 | |
Sebastien Hertz | 56adf60 | 2013-07-09 17:27:07 +0200 | [diff] [blame] | 81 | // AbstractMethodError |
| 82 | |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 83 | void ThrowAbstractMethodError(ArtMethod* method) { |
Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 84 | ThrowException("Ljava/lang/AbstractMethodError;", nullptr, |
Sebastien Hertz | 56adf60 | 2013-07-09 17:27:07 +0200 | [diff] [blame] | 85 | StringPrintf("abstract method \"%s\"", |
| 86 | PrettyMethod(method).c_str()).c_str()); |
| 87 | } |
| 88 | |
Alex Light | 705ad49 | 2015-09-21 11:36:30 -0700 | [diff] [blame] | 89 | void ThrowAbstractMethodError(uint32_t method_idx, const DexFile& dex_file) { |
| 90 | ThrowException("Ljava/lang/AbstractMethodError;", /* referrer */ nullptr, |
| 91 | StringPrintf("abstract method \"%s\"", |
| 92 | PrettyMethod(method_idx, |
| 93 | dex_file, |
| 94 | /* with_signature */ true).c_str()).c_str()); |
| 95 | } |
| 96 | |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 97 | // ArithmeticException |
| 98 | |
Sebastien Hertz | 0a3b863 | 2013-06-26 11:16:01 +0200 | [diff] [blame] | 99 | void ThrowArithmeticExceptionDivideByZero() { |
Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 100 | ThrowException("Ljava/lang/ArithmeticException;", nullptr, "divide by zero"); |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 101 | } |
| 102 | |
| 103 | // ArrayIndexOutOfBoundsException |
| 104 | |
| 105 | void ThrowArrayIndexOutOfBoundsException(int index, int length) { |
Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 106 | ThrowException("Ljava/lang/ArrayIndexOutOfBoundsException;", nullptr, |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 107 | StringPrintf("length=%d; index=%d", length, index).c_str()); |
| 108 | } |
| 109 | |
| 110 | // ArrayStoreException |
| 111 | |
Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 112 | void ThrowArrayStoreException(mirror::Class* element_class, mirror::Class* array_class) { |
Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 113 | ThrowException("Ljava/lang/ArrayStoreException;", nullptr, |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 114 | StringPrintf("%s cannot be stored in an array of type %s", |
| 115 | PrettyDescriptor(element_class).c_str(), |
| 116 | PrettyDescriptor(array_class).c_str()).c_str()); |
| 117 | } |
| 118 | |
| 119 | // ClassCastException |
| 120 | |
Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 121 | void ThrowClassCastException(mirror::Class* dest_type, mirror::Class* src_type) { |
Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 122 | ThrowException("Ljava/lang/ClassCastException;", nullptr, |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 123 | StringPrintf("%s cannot be cast to %s", |
| 124 | PrettyDescriptor(src_type).c_str(), |
| 125 | PrettyDescriptor(dest_type).c_str()).c_str()); |
| 126 | } |
| 127 | |
Nicolas Geoffray | 0aa50ce | 2015-03-10 11:03:29 +0000 | [diff] [blame] | 128 | void ThrowClassCastException(const char* msg) { |
Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 129 | ThrowException("Ljava/lang/ClassCastException;", nullptr, msg); |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 130 | } |
| 131 | |
| 132 | // ClassCircularityError |
| 133 | |
| 134 | void ThrowClassCircularityError(mirror::Class* c) { |
| 135 | std::ostringstream msg; |
| 136 | msg << PrettyDescriptor(c); |
Nicolas Geoffray | 0aa50ce | 2015-03-10 11:03:29 +0000 | [diff] [blame] | 137 | ThrowException("Ljava/lang/ClassCircularityError;", c, msg.str().c_str()); |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 138 | } |
| 139 | |
Roland Levillain | 989ab3b | 2016-05-18 15:52:54 +0100 | [diff] [blame] | 140 | void ThrowClassCircularityError(mirror::Class* c, const char* fmt, ...) { |
| 141 | va_list args; |
| 142 | va_start(args, fmt); |
| 143 | ThrowException("Ljava/lang/ClassCircularityError;", c, fmt, &args); |
| 144 | va_end(args); |
| 145 | } |
| 146 | |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 147 | // ClassFormatError |
| 148 | |
Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 149 | void ThrowClassFormatError(mirror::Class* referrer, const char* fmt, ...) { |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 150 | va_list args; |
| 151 | va_start(args, fmt); |
Nicolas Geoffray | 0aa50ce | 2015-03-10 11:03:29 +0000 | [diff] [blame] | 152 | ThrowException("Ljava/lang/ClassFormatError;", referrer, fmt, &args); |
Roland Levillain | ab880f4 | 2016-05-12 16:24:36 +0100 | [diff] [blame] | 153 | va_end(args); |
| 154 | } |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 155 | |
Ian Rogers | 87e552d | 2012-08-31 15:54:48 -0700 | [diff] [blame] | 156 | // IllegalAccessError |
| 157 | |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 158 | void ThrowIllegalAccessErrorClass(mirror::Class* referrer, mirror::Class* accessed) { |
Ian Rogers | 87e552d | 2012-08-31 15:54:48 -0700 | [diff] [blame] | 159 | std::ostringstream msg; |
Ian Rogers | b726dcb | 2012-09-05 08:57:23 -0700 | [diff] [blame] | 160 | msg << "Illegal class access: '" << PrettyDescriptor(referrer) << "' attempting to access '" |
Ian Rogers | 87e552d | 2012-08-31 15:54:48 -0700 | [diff] [blame] | 161 | << PrettyDescriptor(accessed) << "'"; |
Nicolas Geoffray | 0aa50ce | 2015-03-10 11:03:29 +0000 | [diff] [blame] | 162 | ThrowException("Ljava/lang/IllegalAccessError;", referrer, msg.str().c_str()); |
Ian Rogers | 87e552d | 2012-08-31 15:54:48 -0700 | [diff] [blame] | 163 | } |
| 164 | |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 165 | void ThrowIllegalAccessErrorClassForMethodDispatch(mirror::Class* referrer, mirror::Class* accessed, |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 166 | ArtMethod* called, |
Ian Rogers | 87e552d | 2012-08-31 15:54:48 -0700 | [diff] [blame] | 167 | InvokeType type) { |
| 168 | std::ostringstream msg; |
Ian Rogers | b726dcb | 2012-09-05 08:57:23 -0700 | [diff] [blame] | 169 | msg << "Illegal class access ('" << PrettyDescriptor(referrer) << "' attempting to access '" |
| 170 | << PrettyDescriptor(accessed) << "') in attempt to invoke " << type |
Ian Rogers | 87e552d | 2012-08-31 15:54:48 -0700 | [diff] [blame] | 171 | << " method " << PrettyMethod(called).c_str(); |
Nicolas Geoffray | 0aa50ce | 2015-03-10 11:03:29 +0000 | [diff] [blame] | 172 | ThrowException("Ljava/lang/IllegalAccessError;", referrer, msg.str().c_str()); |
Ian Rogers | 87e552d | 2012-08-31 15:54:48 -0700 | [diff] [blame] | 173 | } |
| 174 | |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 175 | void ThrowIllegalAccessErrorMethod(mirror::Class* referrer, ArtMethod* accessed) { |
Ian Rogers | 87e552d | 2012-08-31 15:54:48 -0700 | [diff] [blame] | 176 | std::ostringstream msg; |
| 177 | msg << "Method '" << PrettyMethod(accessed) << "' is inaccessible to class '" |
| 178 | << PrettyDescriptor(referrer) << "'"; |
Nicolas Geoffray | 0aa50ce | 2015-03-10 11:03:29 +0000 | [diff] [blame] | 179 | ThrowException("Ljava/lang/IllegalAccessError;", referrer, msg.str().c_str()); |
Ian Rogers | 87e552d | 2012-08-31 15:54:48 -0700 | [diff] [blame] | 180 | } |
| 181 | |
Mathieu Chartier | c785344 | 2015-03-27 14:35:38 -0700 | [diff] [blame] | 182 | void ThrowIllegalAccessErrorField(mirror::Class* referrer, ArtField* accessed) { |
Ian Rogers | 87e552d | 2012-08-31 15:54:48 -0700 | [diff] [blame] | 183 | std::ostringstream msg; |
| 184 | msg << "Field '" << PrettyField(accessed, false) << "' is inaccessible to class '" |
| 185 | << PrettyDescriptor(referrer) << "'"; |
Nicolas Geoffray | 0aa50ce | 2015-03-10 11:03:29 +0000 | [diff] [blame] | 186 | ThrowException("Ljava/lang/IllegalAccessError;", referrer, msg.str().c_str()); |
Ian Rogers | 87e552d | 2012-08-31 15:54:48 -0700 | [diff] [blame] | 187 | } |
| 188 | |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 189 | void ThrowIllegalAccessErrorFinalField(ArtMethod* referrer, ArtField* accessed) { |
Ian Rogers | 87e552d | 2012-08-31 15:54:48 -0700 | [diff] [blame] | 190 | std::ostringstream msg; |
| 191 | msg << "Final field '" << PrettyField(accessed, false) << "' cannot be written to by method '" |
| 192 | << PrettyMethod(referrer) << "'"; |
Nicolas Geoffray | 0aa50ce | 2015-03-10 11:03:29 +0000 | [diff] [blame] | 193 | ThrowException("Ljava/lang/IllegalAccessError;", |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 194 | referrer != nullptr ? referrer->GetDeclaringClass() : nullptr, |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 195 | msg.str().c_str()); |
Ian Rogers | 87e552d | 2012-08-31 15:54:48 -0700 | [diff] [blame] | 196 | } |
| 197 | |
Brian Carlstrom | 2ce745c | 2013-07-17 17:44:30 -0700 | [diff] [blame] | 198 | void ThrowIllegalAccessError(mirror::Class* referrer, const char* fmt, ...) { |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 199 | va_list args; |
| 200 | va_start(args, fmt); |
Nicolas Geoffray | 0aa50ce | 2015-03-10 11:03:29 +0000 | [diff] [blame] | 201 | ThrowException("Ljava/lang/IllegalAccessError;", referrer, fmt, &args); |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 202 | va_end(args); |
| 203 | } |
| 204 | |
Jeff Hao | 11d5d8f | 2014-03-26 15:08:20 -0700 | [diff] [blame] | 205 | // IllegalAccessException |
| 206 | |
Nicolas Geoffray | 0aa50ce | 2015-03-10 11:03:29 +0000 | [diff] [blame] | 207 | void ThrowIllegalAccessException(const char* msg) { |
Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 208 | ThrowException("Ljava/lang/IllegalAccessException;", nullptr, msg); |
Jeff Hao | 11d5d8f | 2014-03-26 15:08:20 -0700 | [diff] [blame] | 209 | } |
| 210 | |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 211 | // IllegalArgumentException |
| 212 | |
Nicolas Geoffray | 0aa50ce | 2015-03-10 11:03:29 +0000 | [diff] [blame] | 213 | void ThrowIllegalArgumentException(const char* msg) { |
Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 214 | ThrowException("Ljava/lang/IllegalArgumentException;", nullptr, msg); |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 215 | } |
| 216 | |
| 217 | |
Ian Rogers | 87e552d | 2012-08-31 15:54:48 -0700 | [diff] [blame] | 218 | // IncompatibleClassChangeError |
| 219 | |
| 220 | void ThrowIncompatibleClassChangeError(InvokeType expected_type, InvokeType found_type, |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 221 | ArtMethod* method, ArtMethod* referrer) { |
Ian Rogers | 87e552d | 2012-08-31 15:54:48 -0700 | [diff] [blame] | 222 | std::ostringstream msg; |
| 223 | msg << "The method '" << PrettyMethod(method) << "' was expected to be of type " |
| 224 | << expected_type << " but instead was found to be of type " << found_type; |
Nicolas Geoffray | 0aa50ce | 2015-03-10 11:03:29 +0000 | [diff] [blame] | 225 | ThrowException("Ljava/lang/IncompatibleClassChangeError;", |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 226 | referrer != nullptr ? referrer->GetDeclaringClass() : nullptr, |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 227 | msg.str().c_str()); |
Ian Rogers | 87e552d | 2012-08-31 15:54:48 -0700 | [diff] [blame] | 228 | } |
| 229 | |
Alex Light | 705ad49 | 2015-09-21 11:36:30 -0700 | [diff] [blame] | 230 | void ThrowIncompatibleClassChangeErrorClassForInterfaceSuper(ArtMethod* method, |
| 231 | mirror::Class* target_class, |
| 232 | mirror::Object* this_object, |
| 233 | ArtMethod* referrer) { |
| 234 | // Referrer is calling interface_method on this_object, however, the interface_method isn't |
| 235 | // implemented by this_object. |
| 236 | CHECK(this_object != nullptr); |
| 237 | std::ostringstream msg; |
| 238 | msg << "Class '" << PrettyDescriptor(this_object->GetClass()) |
| 239 | << "' does not implement interface '" << PrettyDescriptor(target_class) << "' in call to '" |
| 240 | << PrettyMethod(method) << "'"; |
| 241 | ThrowException("Ljava/lang/IncompatibleClassChangeError;", |
| 242 | referrer != nullptr ? referrer->GetDeclaringClass() : nullptr, |
| 243 | msg.str().c_str()); |
| 244 | } |
| 245 | |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 246 | void ThrowIncompatibleClassChangeErrorClassForInterfaceDispatch(ArtMethod* interface_method, |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 247 | mirror::Object* this_object, |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 248 | ArtMethod* referrer) { |
Ian Rogers | 87e552d | 2012-08-31 15:54:48 -0700 | [diff] [blame] | 249 | // Referrer is calling interface_method on this_object, however, the interface_method isn't |
| 250 | // implemented by this_object. |
Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 251 | CHECK(this_object != nullptr); |
Ian Rogers | 87e552d | 2012-08-31 15:54:48 -0700 | [diff] [blame] | 252 | std::ostringstream msg; |
| 253 | msg << "Class '" << PrettyDescriptor(this_object->GetClass()) |
| 254 | << "' does not implement interface '" |
| 255 | << PrettyDescriptor(interface_method->GetDeclaringClass()) |
| 256 | << "' in call to '" << PrettyMethod(interface_method) << "'"; |
Nicolas Geoffray | 0aa50ce | 2015-03-10 11:03:29 +0000 | [diff] [blame] | 257 | ThrowException("Ljava/lang/IncompatibleClassChangeError;", |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 258 | referrer != nullptr ? referrer->GetDeclaringClass() : nullptr, |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 259 | msg.str().c_str()); |
Ian Rogers | 87e552d | 2012-08-31 15:54:48 -0700 | [diff] [blame] | 260 | } |
| 261 | |
Mathieu Chartier | c785344 | 2015-03-27 14:35:38 -0700 | [diff] [blame] | 262 | void ThrowIncompatibleClassChangeErrorField(ArtField* resolved_field, bool is_static, |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 263 | ArtMethod* referrer) { |
Ian Rogers | 87e552d | 2012-08-31 15:54:48 -0700 | [diff] [blame] | 264 | std::ostringstream msg; |
| 265 | msg << "Expected '" << PrettyField(resolved_field) << "' to be a " |
Ian Rogers | b726dcb | 2012-09-05 08:57:23 -0700 | [diff] [blame] | 266 | << (is_static ? "static" : "instance") << " field" << " rather than a " |
| 267 | << (is_static ? "instance" : "static") << " field"; |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 268 | ThrowException("Ljava/lang/IncompatibleClassChangeError;", referrer->GetDeclaringClass(), |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 269 | msg.str().c_str()); |
| 270 | } |
| 271 | |
Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 272 | void ThrowIncompatibleClassChangeError(mirror::Class* referrer, const char* fmt, ...) { |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 273 | va_list args; |
| 274 | va_start(args, fmt); |
Nicolas Geoffray | 0aa50ce | 2015-03-10 11:03:29 +0000 | [diff] [blame] | 275 | ThrowException("Ljava/lang/IncompatibleClassChangeError;", referrer, fmt, &args); |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 276 | va_end(args); |
| 277 | } |
| 278 | |
Alex Light | 9139e00 | 2015-10-09 15:59:48 -0700 | [diff] [blame] | 279 | void ThrowIncompatibleClassChangeErrorForMethodConflict(ArtMethod* method) { |
| 280 | DCHECK(method != nullptr); |
| 281 | ThrowException("Ljava/lang/IncompatibleClassChangeError;", |
| 282 | /*referrer*/nullptr, |
| 283 | StringPrintf("Conflicting default method implementations %s", |
| 284 | PrettyMethod(method).c_str()).c_str()); |
| 285 | } |
| 286 | |
| 287 | |
Ian Rogers | 8d31bbd | 2013-10-13 10:44:14 -0700 | [diff] [blame] | 288 | // IOException |
| 289 | |
| 290 | void ThrowIOException(const char* fmt, ...) { |
| 291 | va_list args; |
| 292 | va_start(args, fmt); |
Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 293 | ThrowException("Ljava/io/IOException;", nullptr, fmt, &args); |
Ian Rogers | 8d31bbd | 2013-10-13 10:44:14 -0700 | [diff] [blame] | 294 | va_end(args); |
| 295 | } |
| 296 | |
Andreas Gampe | 329d188 | 2014-04-08 10:32:19 -0700 | [diff] [blame] | 297 | void ThrowWrappedIOException(const char* fmt, ...) { |
| 298 | va_list args; |
| 299 | va_start(args, fmt); |
Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 300 | ThrowWrappedException("Ljava/io/IOException;", nullptr, fmt, &args); |
Andreas Gampe | 329d188 | 2014-04-08 10:32:19 -0700 | [diff] [blame] | 301 | va_end(args); |
| 302 | } |
| 303 | |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 304 | // LinkageError |
| 305 | |
Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 306 | void ThrowLinkageError(mirror::Class* referrer, const char* fmt, ...) { |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 307 | va_list args; |
| 308 | va_start(args, fmt); |
Nicolas Geoffray | 0aa50ce | 2015-03-10 11:03:29 +0000 | [diff] [blame] | 309 | ThrowException("Ljava/lang/LinkageError;", referrer, fmt, &args); |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 310 | va_end(args); |
| 311 | } |
| 312 | |
Vladimir Marko | d5e5a0e | 2015-05-08 12:26:59 +0100 | [diff] [blame] | 313 | void ThrowWrappedLinkageError(mirror::Class* referrer, const char* fmt, ...) { |
| 314 | va_list args; |
| 315 | va_start(args, fmt); |
| 316 | ThrowWrappedException("Ljava/lang/LinkageError;", referrer, fmt, &args); |
| 317 | va_end(args); |
| 318 | } |
| 319 | |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 320 | // NegativeArraySizeException |
| 321 | |
| 322 | void ThrowNegativeArraySizeException(int size) { |
Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 323 | ThrowException("Ljava/lang/NegativeArraySizeException;", nullptr, |
Brian Carlstrom | ea46f95 | 2013-07-30 01:26:50 -0700 | [diff] [blame] | 324 | StringPrintf("%d", size).c_str()); |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 325 | } |
| 326 | |
| 327 | void ThrowNegativeArraySizeException(const char* msg) { |
Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 328 | ThrowException("Ljava/lang/NegativeArraySizeException;", nullptr, msg); |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 329 | } |
| 330 | |
| 331 | // NoSuchFieldError |
| 332 | |
| 333 | void ThrowNoSuchFieldError(const StringPiece& scope, mirror::Class* c, |
Mathieu Chartier | 4e06778 | 2015-05-13 13:13:24 -0700 | [diff] [blame] | 334 | const StringPiece& type, const StringPiece& name) { |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 335 | std::ostringstream msg; |
Ian Rogers | 1ff3c98 | 2014-08-12 02:30:58 -0700 | [diff] [blame] | 336 | std::string temp; |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 337 | msg << "No " << scope << "field " << name << " of type " << type |
Ian Rogers | 1ff3c98 | 2014-08-12 02:30:58 -0700 | [diff] [blame] | 338 | << " in class " << c->GetDescriptor(&temp) << " or its superclasses"; |
Nicolas Geoffray | 0aa50ce | 2015-03-10 11:03:29 +0000 | [diff] [blame] | 339 | ThrowException("Ljava/lang/NoSuchFieldError;", c, msg.str().c_str()); |
Ian Rogers | 87e552d | 2012-08-31 15:54:48 -0700 | [diff] [blame] | 340 | } |
| 341 | |
Mathieu Chartier | 4e06778 | 2015-05-13 13:13:24 -0700 | [diff] [blame] | 342 | void ThrowNoSuchFieldException(mirror::Class* c, const StringPiece& name) { |
| 343 | std::ostringstream msg; |
| 344 | std::string temp; |
| 345 | msg << "No field " << name << " in class " << c->GetDescriptor(&temp); |
| 346 | ThrowException("Ljava/lang/NoSuchFieldException;", c, msg.str().c_str()); |
| 347 | } |
| 348 | |
Ian Rogers | 87e552d | 2012-08-31 15:54:48 -0700 | [diff] [blame] | 349 | // NoSuchMethodError |
| 350 | |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 351 | void ThrowNoSuchMethodError(InvokeType type, mirror::Class* c, const StringPiece& name, |
Ian Rogers | d91d6d6 | 2013-09-25 20:26:14 -0700 | [diff] [blame] | 352 | const Signature& signature) { |
Ian Rogers | 87e552d | 2012-08-31 15:54:48 -0700 | [diff] [blame] | 353 | std::ostringstream msg; |
Ian Rogers | 1ff3c98 | 2014-08-12 02:30:58 -0700 | [diff] [blame] | 354 | std::string temp; |
Ian Rogers | 87e552d | 2012-08-31 15:54:48 -0700 | [diff] [blame] | 355 | msg << "No " << type << " method " << name << signature |
Ian Rogers | 1ff3c98 | 2014-08-12 02:30:58 -0700 | [diff] [blame] | 356 | << " in class " << c->GetDescriptor(&temp) << " or its super classes"; |
Nicolas Geoffray | 0aa50ce | 2015-03-10 11:03:29 +0000 | [diff] [blame] | 357 | ThrowException("Ljava/lang/NoSuchMethodError;", c, msg.str().c_str()); |
Ian Rogers | 87e552d | 2012-08-31 15:54:48 -0700 | [diff] [blame] | 358 | } |
| 359 | |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 360 | void ThrowNoSuchMethodError(uint32_t method_idx) { |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 361 | ArtMethod* method = Thread::Current()->GetCurrentMethod(nullptr); |
Nicolas Geoffray | 0aa50ce | 2015-03-10 11:03:29 +0000 | [diff] [blame] | 362 | mirror::DexCache* dex_cache = method->GetDeclaringClass()->GetDexCache(); |
Ian Rogers | 4445a7e | 2012-10-05 17:19:13 -0700 | [diff] [blame] | 363 | const DexFile& dex_file = *dex_cache->GetDexFile(); |
Ian Rogers | 87e552d | 2012-08-31 15:54:48 -0700 | [diff] [blame] | 364 | std::ostringstream msg; |
| 365 | msg << "No method '" << PrettyMethod(method_idx, dex_file, true) << "'"; |
Nicolas Geoffray | 0aa50ce | 2015-03-10 11:03:29 +0000 | [diff] [blame] | 366 | ThrowException("Ljava/lang/NoSuchMethodError;", |
| 367 | method->GetDeclaringClass(), msg.str().c_str()); |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 368 | } |
| 369 | |
| 370 | // NullPointerException |
| 371 | |
Mathieu Chartier | c785344 | 2015-03-27 14:35:38 -0700 | [diff] [blame] | 372 | void ThrowNullPointerExceptionForFieldAccess(ArtField* field, bool is_read) { |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 373 | std::ostringstream msg; |
| 374 | msg << "Attempt to " << (is_read ? "read from" : "write to") |
| 375 | << " field '" << PrettyField(field, true) << "' on a null object reference"; |
Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 376 | ThrowException("Ljava/lang/NullPointerException;", nullptr, msg.str().c_str()); |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 377 | } |
| 378 | |
Nicolas Geoffray | 0aa50ce | 2015-03-10 11:03:29 +0000 | [diff] [blame] | 379 | static void ThrowNullPointerExceptionForMethodAccessImpl(uint32_t method_idx, |
Sebastien Hertz | 2d6ba51 | 2013-05-17 11:31:37 +0200 | [diff] [blame] | 380 | const DexFile& dex_file, |
| 381 | InvokeType type) |
Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 382 | SHARED_REQUIRES(Locks::mutator_lock_) { |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 383 | std::ostringstream msg; |
| 384 | msg << "Attempt to invoke " << type << " method '" |
| 385 | << PrettyMethod(method_idx, dex_file, true) << "' on a null object reference"; |
Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 386 | ThrowException("Ljava/lang/NullPointerException;", nullptr, msg.str().c_str()); |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 387 | } |
| 388 | |
Nicolas Geoffray | 0aa50ce | 2015-03-10 11:03:29 +0000 | [diff] [blame] | 389 | void ThrowNullPointerExceptionForMethodAccess(uint32_t method_idx, |
Sebastien Hertz | 2d6ba51 | 2013-05-17 11:31:37 +0200 | [diff] [blame] | 390 | InvokeType type) { |
Nicolas Geoffray | 0aa50ce | 2015-03-10 11:03:29 +0000 | [diff] [blame] | 391 | mirror::DexCache* dex_cache = |
| 392 | Thread::Current()->GetCurrentMethod(nullptr)->GetDeclaringClass()->GetDexCache(); |
Sebastien Hertz | 2d6ba51 | 2013-05-17 11:31:37 +0200 | [diff] [blame] | 393 | const DexFile& dex_file = *dex_cache->GetDexFile(); |
Nicolas Geoffray | 0aa50ce | 2015-03-10 11:03:29 +0000 | [diff] [blame] | 394 | ThrowNullPointerExceptionForMethodAccessImpl(method_idx, dex_file, type); |
Sebastien Hertz | 2d6ba51 | 2013-05-17 11:31:37 +0200 | [diff] [blame] | 395 | } |
| 396 | |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 397 | void ThrowNullPointerExceptionForMethodAccess(ArtMethod* method, |
Sebastien Hertz | 2d6ba51 | 2013-05-17 11:31:37 +0200 | [diff] [blame] | 398 | InvokeType type) { |
| 399 | mirror::DexCache* dex_cache = method->GetDeclaringClass()->GetDexCache(); |
| 400 | const DexFile& dex_file = *dex_cache->GetDexFile(); |
Nicolas Geoffray | 0aa50ce | 2015-03-10 11:03:29 +0000 | [diff] [blame] | 401 | ThrowNullPointerExceptionForMethodAccessImpl(method->GetDexMethodIndex(), |
Sebastien Hertz | 2d6ba51 | 2013-05-17 11:31:37 +0200 | [diff] [blame] | 402 | dex_file, type); |
| 403 | } |
| 404 | |
Nicolas Geoffray | e8e1127 | 2016-06-28 18:08:46 +0100 | [diff] [blame] | 405 | static bool IsValidImplicitCheck(uintptr_t addr, ArtMethod* method, const Instruction& instr) |
| 406 | SHARED_REQUIRES(Locks::mutator_lock_) { |
| 407 | if (!CanDoImplicitNullCheckOn(addr)) { |
| 408 | return false; |
| 409 | } |
| 410 | |
| 411 | switch (instr.Opcode()) { |
| 412 | case Instruction::INVOKE_DIRECT: |
| 413 | case Instruction::INVOKE_DIRECT_RANGE: |
| 414 | case Instruction::INVOKE_VIRTUAL: |
| 415 | case Instruction::INVOKE_VIRTUAL_RANGE: |
| 416 | case Instruction::INVOKE_INTERFACE: |
| 417 | case Instruction::INVOKE_INTERFACE_RANGE: |
| 418 | case Instruction::INVOKE_VIRTUAL_QUICK: |
| 419 | case Instruction::INVOKE_VIRTUAL_RANGE_QUICK: { |
| 420 | // Without inlining, we could just check that the offset is the class offset. |
| 421 | // However, when inlining, the compiler can (validly) merge the null check with a field access |
| 422 | // on the same object. Note that the stack map at the NPE will reflect the invoke's location, |
| 423 | // which is the caller. |
| 424 | return true; |
| 425 | } |
| 426 | |
| 427 | case Instruction::IGET: |
| 428 | case Instruction::IGET_WIDE: |
| 429 | case Instruction::IGET_OBJECT: |
| 430 | case Instruction::IGET_BOOLEAN: |
| 431 | case Instruction::IGET_BYTE: |
| 432 | case Instruction::IGET_CHAR: |
| 433 | case Instruction::IGET_SHORT: |
| 434 | case Instruction::IPUT: |
| 435 | case Instruction::IPUT_WIDE: |
| 436 | case Instruction::IPUT_OBJECT: |
| 437 | case Instruction::IPUT_BOOLEAN: |
| 438 | case Instruction::IPUT_BYTE: |
| 439 | case Instruction::IPUT_CHAR: |
| 440 | case Instruction::IPUT_SHORT: { |
Nicolas Geoffray | e8e1127 | 2016-06-28 18:08:46 +0100 | [diff] [blame] | 441 | ArtField* field = |
| 442 | Runtime::Current()->GetClassLinker()->ResolveField(instr.VRegC_22c(), method, false); |
Nicolas Geoffray | 350cc99 | 2016-06-29 21:45:10 +0100 | [diff] [blame] | 443 | return (addr == 0) || |
| 444 | (addr == field->GetOffset().Uint32Value()) || |
| 445 | (kEmitCompilerReadBarrier && (addr == mirror::Object::MonitorOffset().Uint32Value())); |
Nicolas Geoffray | e8e1127 | 2016-06-28 18:08:46 +0100 | [diff] [blame] | 446 | } |
| 447 | |
| 448 | case Instruction::IGET_QUICK: |
| 449 | case Instruction::IGET_BOOLEAN_QUICK: |
| 450 | case Instruction::IGET_BYTE_QUICK: |
| 451 | case Instruction::IGET_CHAR_QUICK: |
| 452 | case Instruction::IGET_SHORT_QUICK: |
| 453 | case Instruction::IGET_WIDE_QUICK: |
| 454 | case Instruction::IGET_OBJECT_QUICK: |
| 455 | case Instruction::IPUT_QUICK: |
| 456 | case Instruction::IPUT_BOOLEAN_QUICK: |
| 457 | case Instruction::IPUT_BYTE_QUICK: |
| 458 | case Instruction::IPUT_CHAR_QUICK: |
| 459 | case Instruction::IPUT_SHORT_QUICK: |
| 460 | case Instruction::IPUT_WIDE_QUICK: |
| 461 | case Instruction::IPUT_OBJECT_QUICK: { |
Nicolas Geoffray | 350cc99 | 2016-06-29 21:45:10 +0100 | [diff] [blame] | 462 | return (addr == 0u) || |
| 463 | (addr == instr.VRegC_22c()) || |
| 464 | (kEmitCompilerReadBarrier && (addr == mirror::Object::MonitorOffset().Uint32Value())); |
Nicolas Geoffray | e8e1127 | 2016-06-28 18:08:46 +0100 | [diff] [blame] | 465 | } |
| 466 | |
| 467 | case Instruction::AGET: |
| 468 | case Instruction::AGET_WIDE: |
| 469 | case Instruction::AGET_OBJECT: |
| 470 | case Instruction::AGET_BOOLEAN: |
| 471 | case Instruction::AGET_BYTE: |
| 472 | case Instruction::AGET_CHAR: |
| 473 | case Instruction::AGET_SHORT: |
| 474 | case Instruction::APUT: |
| 475 | case Instruction::APUT_WIDE: |
| 476 | case Instruction::APUT_OBJECT: |
| 477 | case Instruction::APUT_BOOLEAN: |
| 478 | case Instruction::APUT_BYTE: |
| 479 | case Instruction::APUT_CHAR: |
Nicolas Geoffray | 350cc99 | 2016-06-29 21:45:10 +0100 | [diff] [blame] | 480 | case Instruction::APUT_SHORT: |
| 481 | case Instruction::FILL_ARRAY_DATA: |
Nicolas Geoffray | e8e1127 | 2016-06-28 18:08:46 +0100 | [diff] [blame] | 482 | case Instruction::ARRAY_LENGTH: { |
Nicolas Geoffray | 350cc99 | 2016-06-29 21:45:10 +0100 | [diff] [blame] | 483 | // The length access should crash. We currently do not do implicit checks on |
| 484 | // the array access itself. |
| 485 | return (addr == 0u) || |
| 486 | (addr == mirror::Array::LengthOffset().Uint32Value()) || |
| 487 | (kEmitCompilerReadBarrier && (addr == mirror::Object::MonitorOffset().Uint32Value())); |
Nicolas Geoffray | e8e1127 | 2016-06-28 18:08:46 +0100 | [diff] [blame] | 488 | } |
| 489 | |
| 490 | default: { |
| 491 | // We have covered all the cases where an NPE could occur. |
| 492 | // Note that this must be kept in sync with the compiler, and adding |
| 493 | // any new way to do implicit checks in the compiler should also update |
| 494 | // this code. |
| 495 | return false; |
| 496 | } |
| 497 | } |
| 498 | } |
| 499 | |
| 500 | void ThrowNullPointerExceptionFromDexPC(bool check_address, uintptr_t addr) { |
Nicolas Geoffray | 0aa50ce | 2015-03-10 11:03:29 +0000 | [diff] [blame] | 501 | uint32_t throw_dex_pc; |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 502 | ArtMethod* method = Thread::Current()->GetCurrentMethod(&throw_dex_pc); |
Nicolas Geoffray | 0aa50ce | 2015-03-10 11:03:29 +0000 | [diff] [blame] | 503 | const DexFile::CodeItem* code = method->GetCodeItem(); |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 504 | CHECK_LT(throw_dex_pc, code->insns_size_in_code_units_); |
| 505 | const Instruction* instr = Instruction::At(&code->insns_[throw_dex_pc]); |
Nicolas Geoffray | e8e1127 | 2016-06-28 18:08:46 +0100 | [diff] [blame] | 506 | if (check_address && !IsValidImplicitCheck(addr, method, *instr)) { |
| 507 | const DexFile* dex_file = method->GetDeclaringClass()->GetDexCache()->GetDexFile(); |
| 508 | LOG(FATAL) << "Invalid address for an implicit NullPointerException check: " |
| 509 | << "0x" << std::hex << addr << std::dec |
| 510 | << ", at " |
| 511 | << instr->DumpString(dex_file) |
| 512 | << " in " |
| 513 | << PrettyMethod(method); |
| 514 | } |
| 515 | |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 516 | switch (instr->Opcode()) { |
| 517 | case Instruction::INVOKE_DIRECT: |
Nicolas Geoffray | 0aa50ce | 2015-03-10 11:03:29 +0000 | [diff] [blame] | 518 | ThrowNullPointerExceptionForMethodAccess(instr->VRegB_35c(), kDirect); |
Sebastien Hertz | 75b2a4a | 2013-05-21 09:25:10 +0200 | [diff] [blame] | 519 | break; |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 520 | case Instruction::INVOKE_DIRECT_RANGE: |
Nicolas Geoffray | 0aa50ce | 2015-03-10 11:03:29 +0000 | [diff] [blame] | 521 | ThrowNullPointerExceptionForMethodAccess(instr->VRegB_3rc(), kDirect); |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 522 | break; |
| 523 | case Instruction::INVOKE_VIRTUAL: |
Nicolas Geoffray | 0aa50ce | 2015-03-10 11:03:29 +0000 | [diff] [blame] | 524 | ThrowNullPointerExceptionForMethodAccess(instr->VRegB_35c(), kVirtual); |
Sebastien Hertz | 75b2a4a | 2013-05-21 09:25:10 +0200 | [diff] [blame] | 525 | break; |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 526 | case Instruction::INVOKE_VIRTUAL_RANGE: |
Nicolas Geoffray | 0aa50ce | 2015-03-10 11:03:29 +0000 | [diff] [blame] | 527 | ThrowNullPointerExceptionForMethodAccess(instr->VRegB_3rc(), kVirtual); |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 528 | break; |
| 529 | case Instruction::INVOKE_INTERFACE: |
Nicolas Geoffray | 0aa50ce | 2015-03-10 11:03:29 +0000 | [diff] [blame] | 530 | ThrowNullPointerExceptionForMethodAccess(instr->VRegB_35c(), kInterface); |
Sebastien Hertz | 75b2a4a | 2013-05-21 09:25:10 +0200 | [diff] [blame] | 531 | break; |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 532 | case Instruction::INVOKE_INTERFACE_RANGE: |
Nicolas Geoffray | 0aa50ce | 2015-03-10 11:03:29 +0000 | [diff] [blame] | 533 | ThrowNullPointerExceptionForMethodAccess(instr->VRegB_3rc(), kInterface); |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 534 | break; |
Sebastien Hertz | 2d6ba51 | 2013-05-17 11:31:37 +0200 | [diff] [blame] | 535 | case Instruction::INVOKE_VIRTUAL_QUICK: |
| 536 | case Instruction::INVOKE_VIRTUAL_RANGE_QUICK: { |
| 537 | // Since we replaced the method index, we ask the verifier to tell us which |
| 538 | // method is invoked at this location. |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 539 | ArtMethod* invoked_method = |
Nicolas Geoffray | 0aa50ce | 2015-03-10 11:03:29 +0000 | [diff] [blame] | 540 | verifier::MethodVerifier::FindInvokedMethodAtDexPc(method, throw_dex_pc); |
Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 541 | if (invoked_method != nullptr) { |
Sebastien Hertz | 2d6ba51 | 2013-05-17 11:31:37 +0200 | [diff] [blame] | 542 | // NPE with precise message. |
Nicolas Geoffray | 0aa50ce | 2015-03-10 11:03:29 +0000 | [diff] [blame] | 543 | ThrowNullPointerExceptionForMethodAccess(invoked_method, kVirtual); |
Sebastien Hertz | 2d6ba51 | 2013-05-17 11:31:37 +0200 | [diff] [blame] | 544 | } else { |
| 545 | // NPE with imprecise message. |
Nicolas Geoffray | 0aa50ce | 2015-03-10 11:03:29 +0000 | [diff] [blame] | 546 | ThrowNullPointerException("Attempt to invoke a virtual method on a null object reference"); |
Sebastien Hertz | 2d6ba51 | 2013-05-17 11:31:37 +0200 | [diff] [blame] | 547 | } |
| 548 | break; |
| 549 | } |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 550 | case Instruction::IGET: |
| 551 | case Instruction::IGET_WIDE: |
| 552 | case Instruction::IGET_OBJECT: |
| 553 | case Instruction::IGET_BOOLEAN: |
| 554 | case Instruction::IGET_BYTE: |
| 555 | case Instruction::IGET_CHAR: |
| 556 | case Instruction::IGET_SHORT: { |
Mathieu Chartier | c785344 | 2015-03-27 14:35:38 -0700 | [diff] [blame] | 557 | ArtField* field = |
Nicolas Geoffray | 0aa50ce | 2015-03-10 11:03:29 +0000 | [diff] [blame] | 558 | Runtime::Current()->GetClassLinker()->ResolveField(instr->VRegC_22c(), method, false); |
| 559 | ThrowNullPointerExceptionForFieldAccess(field, true /* read */); |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 560 | break; |
| 561 | } |
Sebastien Hertz | 2d6ba51 | 2013-05-17 11:31:37 +0200 | [diff] [blame] | 562 | case Instruction::IGET_QUICK: |
Mathieu Chartier | ffc605c | 2014-12-10 10:35:44 -0800 | [diff] [blame] | 563 | case Instruction::IGET_BOOLEAN_QUICK: |
| 564 | case Instruction::IGET_BYTE_QUICK: |
| 565 | case Instruction::IGET_CHAR_QUICK: |
| 566 | case Instruction::IGET_SHORT_QUICK: |
Sebastien Hertz | 2d6ba51 | 2013-05-17 11:31:37 +0200 | [diff] [blame] | 567 | case Instruction::IGET_WIDE_QUICK: |
| 568 | case Instruction::IGET_OBJECT_QUICK: { |
| 569 | // Since we replaced the field index, we ask the verifier to tell us which |
| 570 | // field is accessed at this location. |
Mathieu Chartier | c785344 | 2015-03-27 14:35:38 -0700 | [diff] [blame] | 571 | ArtField* field = |
Nicolas Geoffray | 0aa50ce | 2015-03-10 11:03:29 +0000 | [diff] [blame] | 572 | verifier::MethodVerifier::FindAccessedFieldAtDexPc(method, throw_dex_pc); |
Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 573 | if (field != nullptr) { |
Sebastien Hertz | 2d6ba51 | 2013-05-17 11:31:37 +0200 | [diff] [blame] | 574 | // NPE with precise message. |
Nicolas Geoffray | 0aa50ce | 2015-03-10 11:03:29 +0000 | [diff] [blame] | 575 | ThrowNullPointerExceptionForFieldAccess(field, true /* read */); |
Sebastien Hertz | 2d6ba51 | 2013-05-17 11:31:37 +0200 | [diff] [blame] | 576 | } else { |
| 577 | // NPE with imprecise message. |
Nicolas Geoffray | 0aa50ce | 2015-03-10 11:03:29 +0000 | [diff] [blame] | 578 | ThrowNullPointerException("Attempt to read from a field on a null object reference"); |
Sebastien Hertz | 2d6ba51 | 2013-05-17 11:31:37 +0200 | [diff] [blame] | 579 | } |
| 580 | break; |
| 581 | } |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 582 | case Instruction::IPUT: |
| 583 | case Instruction::IPUT_WIDE: |
| 584 | case Instruction::IPUT_OBJECT: |
| 585 | case Instruction::IPUT_BOOLEAN: |
| 586 | case Instruction::IPUT_BYTE: |
| 587 | case Instruction::IPUT_CHAR: |
| 588 | case Instruction::IPUT_SHORT: { |
Mathieu Chartier | c785344 | 2015-03-27 14:35:38 -0700 | [diff] [blame] | 589 | ArtField* field = |
Nicolas Geoffray | 0aa50ce | 2015-03-10 11:03:29 +0000 | [diff] [blame] | 590 | Runtime::Current()->GetClassLinker()->ResolveField(instr->VRegC_22c(), method, false); |
| 591 | ThrowNullPointerExceptionForFieldAccess(field, false /* write */); |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 592 | break; |
| 593 | } |
Sebastien Hertz | 2d6ba51 | 2013-05-17 11:31:37 +0200 | [diff] [blame] | 594 | case Instruction::IPUT_QUICK: |
Fred Shih | 37f05ef | 2014-07-16 18:38:08 -0700 | [diff] [blame] | 595 | case Instruction::IPUT_BOOLEAN_QUICK: |
| 596 | case Instruction::IPUT_BYTE_QUICK: |
| 597 | case Instruction::IPUT_CHAR_QUICK: |
| 598 | case Instruction::IPUT_SHORT_QUICK: |
Sebastien Hertz | 2d6ba51 | 2013-05-17 11:31:37 +0200 | [diff] [blame] | 599 | case Instruction::IPUT_WIDE_QUICK: |
| 600 | case Instruction::IPUT_OBJECT_QUICK: { |
| 601 | // Since we replaced the field index, we ask the verifier to tell us which |
| 602 | // field is accessed at this location. |
Mathieu Chartier | c785344 | 2015-03-27 14:35:38 -0700 | [diff] [blame] | 603 | ArtField* field = |
Nicolas Geoffray | 0aa50ce | 2015-03-10 11:03:29 +0000 | [diff] [blame] | 604 | verifier::MethodVerifier::FindAccessedFieldAtDexPc(method, throw_dex_pc); |
Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 605 | if (field != nullptr) { |
Sebastien Hertz | 2d6ba51 | 2013-05-17 11:31:37 +0200 | [diff] [blame] | 606 | // NPE with precise message. |
Nicolas Geoffray | 0aa50ce | 2015-03-10 11:03:29 +0000 | [diff] [blame] | 607 | ThrowNullPointerExceptionForFieldAccess(field, false /* write */); |
Sebastien Hertz | 2d6ba51 | 2013-05-17 11:31:37 +0200 | [diff] [blame] | 608 | } else { |
| 609 | // NPE with imprecise message. |
Nicolas Geoffray | 0aa50ce | 2015-03-10 11:03:29 +0000 | [diff] [blame] | 610 | ThrowNullPointerException("Attempt to write to a field on a null object reference"); |
Sebastien Hertz | 2d6ba51 | 2013-05-17 11:31:37 +0200 | [diff] [blame] | 611 | } |
| 612 | break; |
| 613 | } |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 614 | case Instruction::AGET: |
| 615 | case Instruction::AGET_WIDE: |
| 616 | case Instruction::AGET_OBJECT: |
| 617 | case Instruction::AGET_BOOLEAN: |
| 618 | case Instruction::AGET_BYTE: |
| 619 | case Instruction::AGET_CHAR: |
| 620 | case Instruction::AGET_SHORT: |
Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 621 | ThrowException("Ljava/lang/NullPointerException;", nullptr, |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 622 | "Attempt to read from null array"); |
| 623 | break; |
| 624 | case Instruction::APUT: |
| 625 | case Instruction::APUT_WIDE: |
| 626 | case Instruction::APUT_OBJECT: |
| 627 | case Instruction::APUT_BOOLEAN: |
| 628 | case Instruction::APUT_BYTE: |
| 629 | case Instruction::APUT_CHAR: |
| 630 | case Instruction::APUT_SHORT: |
Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 631 | ThrowException("Ljava/lang/NullPointerException;", nullptr, |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 632 | "Attempt to write to null array"); |
| 633 | break; |
| 634 | case Instruction::ARRAY_LENGTH: |
Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 635 | ThrowException("Ljava/lang/NullPointerException;", nullptr, |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 636 | "Attempt to get length of null array"); |
| 637 | break; |
Nicolas Geoffray | e8e1127 | 2016-06-28 18:08:46 +0100 | [diff] [blame] | 638 | case Instruction::FILL_ARRAY_DATA: { |
| 639 | ThrowException("Ljava/lang/NullPointerException;", nullptr, |
| 640 | "Attempt to write to null array"); |
| 641 | break; |
| 642 | } |
Nicolas Geoffray | 7f0ae73 | 2016-06-29 14:54:35 +0100 | [diff] [blame] | 643 | case Instruction::MONITOR_ENTER: |
| 644 | case Instruction::MONITOR_EXIT: { |
| 645 | ThrowException("Ljava/lang/NullPointerException;", nullptr, |
| 646 | "Attempt to do a synchronize operation on a null object"); |
| 647 | break; |
| 648 | } |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 649 | default: { |
Nicolas Geoffray | 0aa50ce | 2015-03-10 11:03:29 +0000 | [diff] [blame] | 650 | const DexFile* dex_file = |
| 651 | method->GetDeclaringClass()->GetDexCache()->GetDexFile(); |
Nicolas Geoffray | e8e1127 | 2016-06-28 18:08:46 +0100 | [diff] [blame] | 652 | LOG(FATAL) << "NullPointerException at an unexpected instruction: " |
| 653 | << instr->DumpString(dex_file) |
| 654 | << " in " |
| 655 | << PrettyMethod(method); |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 656 | break; |
| 657 | } |
| 658 | } |
| 659 | } |
| 660 | |
Nicolas Geoffray | 0aa50ce | 2015-03-10 11:03:29 +0000 | [diff] [blame] | 661 | void ThrowNullPointerException(const char* msg) { |
Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 662 | ThrowException("Ljava/lang/NullPointerException;", nullptr, msg); |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 663 | } |
| 664 | |
| 665 | // RuntimeException |
| 666 | |
| 667 | void ThrowRuntimeException(const char* fmt, ...) { |
| 668 | va_list args; |
| 669 | va_start(args, fmt); |
Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 670 | ThrowException("Ljava/lang/RuntimeException;", nullptr, fmt, &args); |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 671 | va_end(args); |
| 672 | } |
| 673 | |
Andreas Gampe | 103992b | 2016-01-04 15:32:43 -0800 | [diff] [blame] | 674 | // Stack overflow. |
| 675 | |
| 676 | void ThrowStackOverflowError(Thread* self) { |
| 677 | if (self->IsHandlingStackOverflow()) { |
| 678 | LOG(ERROR) << "Recursive stack overflow."; |
| 679 | // We don't fail here because SetStackEndForStackOverflow will print better diagnostics. |
| 680 | } |
| 681 | |
| 682 | self->SetStackEndForStackOverflow(); // Allow space on the stack for constructor to execute. |
| 683 | JNIEnvExt* env = self->GetJniEnv(); |
| 684 | std::string msg("stack size "); |
| 685 | msg += PrettySize(self->GetStackSize()); |
| 686 | |
| 687 | // Avoid running Java code for exception initialization. |
| 688 | // TODO: Checks to make this a bit less brittle. |
| 689 | |
| 690 | std::string error_msg; |
| 691 | |
| 692 | // Allocate an uninitialized object. |
| 693 | ScopedLocalRef<jobject> exc(env, |
| 694 | env->AllocObject(WellKnownClasses::java_lang_StackOverflowError)); |
| 695 | if (exc.get() != nullptr) { |
| 696 | // "Initialize". |
| 697 | // StackOverflowError -> VirtualMachineError -> Error -> Throwable -> Object. |
| 698 | // Only Throwable has "custom" fields: |
| 699 | // String detailMessage. |
| 700 | // Throwable cause (= this). |
| 701 | // List<Throwable> suppressedExceptions (= Collections.emptyList()). |
| 702 | // Object stackState; |
| 703 | // StackTraceElement[] stackTrace; |
| 704 | // Only Throwable has a non-empty constructor: |
| 705 | // this.stackTrace = EmptyArray.STACK_TRACE_ELEMENT; |
| 706 | // fillInStackTrace(); |
| 707 | |
| 708 | // detailMessage. |
| 709 | // TODO: Use String::FromModifiedUTF...? |
| 710 | ScopedLocalRef<jstring> s(env, env->NewStringUTF(msg.c_str())); |
| 711 | if (s.get() != nullptr) { |
| 712 | env->SetObjectField(exc.get(), WellKnownClasses::java_lang_Throwable_detailMessage, s.get()); |
| 713 | |
| 714 | // cause. |
| 715 | env->SetObjectField(exc.get(), WellKnownClasses::java_lang_Throwable_cause, exc.get()); |
| 716 | |
| 717 | // suppressedExceptions. |
| 718 | ScopedLocalRef<jobject> emptylist(env, env->GetStaticObjectField( |
| 719 | WellKnownClasses::java_util_Collections, |
| 720 | WellKnownClasses::java_util_Collections_EMPTY_LIST)); |
| 721 | CHECK(emptylist.get() != nullptr); |
| 722 | env->SetObjectField(exc.get(), |
| 723 | WellKnownClasses::java_lang_Throwable_suppressedExceptions, |
| 724 | emptylist.get()); |
| 725 | |
| 726 | // stackState is set as result of fillInStackTrace. fillInStackTrace calls |
| 727 | // nativeFillInStackTrace. |
| 728 | ScopedLocalRef<jobject> stack_state_val(env, nullptr); |
| 729 | { |
| 730 | ScopedObjectAccessUnchecked soa(env); |
| 731 | stack_state_val.reset(soa.Self()->CreateInternalStackTrace<false>(soa)); |
| 732 | } |
| 733 | if (stack_state_val.get() != nullptr) { |
| 734 | env->SetObjectField(exc.get(), |
| 735 | WellKnownClasses::java_lang_Throwable_stackState, |
| 736 | stack_state_val.get()); |
| 737 | |
| 738 | // stackTrace. |
| 739 | ScopedLocalRef<jobject> stack_trace_elem(env, env->GetStaticObjectField( |
| 740 | WellKnownClasses::libcore_util_EmptyArray, |
| 741 | WellKnownClasses::libcore_util_EmptyArray_STACK_TRACE_ELEMENT)); |
| 742 | env->SetObjectField(exc.get(), |
| 743 | WellKnownClasses::java_lang_Throwable_stackTrace, |
| 744 | stack_trace_elem.get()); |
| 745 | } else { |
| 746 | error_msg = "Could not create stack trace."; |
| 747 | } |
| 748 | // Throw the exception. |
| 749 | self->SetException(reinterpret_cast<mirror::Throwable*>(self->DecodeJObject(exc.get()))); |
| 750 | } else { |
| 751 | // Could not allocate a string object. |
| 752 | error_msg = "Couldn't throw new StackOverflowError because JNI NewStringUTF failed."; |
| 753 | } |
| 754 | } else { |
| 755 | error_msg = "Could not allocate StackOverflowError object."; |
| 756 | } |
| 757 | |
| 758 | if (!error_msg.empty()) { |
| 759 | LOG(WARNING) << error_msg; |
| 760 | CHECK(self->IsExceptionPending()); |
| 761 | } |
| 762 | |
| 763 | bool explicit_overflow_check = Runtime::Current()->ExplicitStackOverflowChecks(); |
| 764 | self->ResetDefaultStackEnd(); // Return to default stack size. |
| 765 | |
| 766 | // And restore protection if implicit checks are on. |
| 767 | if (!explicit_overflow_check) { |
| 768 | self->ProtectStack(); |
| 769 | } |
| 770 | } |
| 771 | |
Vladimir Marko | 87f3fcb | 2016-04-28 15:52:11 +0100 | [diff] [blame] | 772 | // StringIndexOutOfBoundsException |
| 773 | |
| 774 | void ThrowStringIndexOutOfBoundsException(int index, int length) { |
| 775 | ThrowException("Ljava/lang/StringIndexOutOfBoundsException;", nullptr, |
| 776 | StringPrintf("length=%d; index=%d", length, index).c_str()); |
| 777 | } |
| 778 | |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 779 | // VerifyError |
| 780 | |
Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 781 | void ThrowVerifyError(mirror::Class* referrer, const char* fmt, ...) { |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 782 | va_list args; |
| 783 | va_start(args, fmt); |
Nicolas Geoffray | 0aa50ce | 2015-03-10 11:03:29 +0000 | [diff] [blame] | 784 | ThrowException("Ljava/lang/VerifyError;", referrer, fmt, &args); |
Ian Rogers | 62d6c77 | 2013-02-27 08:32:07 -0800 | [diff] [blame] | 785 | va_end(args); |
Ian Rogers | 87e552d | 2012-08-31 15:54:48 -0700 | [diff] [blame] | 786 | } |
| 787 | |
| 788 | } // namespace art |