1 /*
  2  * Copyright (c) 1998, 2023, Oracle and/or its affiliates. All rights reserved.
  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  *
 19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
 20  * or visit www.oracle.com if you need additional information or have any
 21  * questions.
 22  *
 23  */
 24 
 25 #ifndef SHARE_UTILITIES_EXCEPTIONS_HPP
 26 #define SHARE_UTILITIES_EXCEPTIONS_HPP
 27 
 28 #include "memory/allocation.hpp"
 29 #include "oops/oopsHierarchy.hpp"
 30 #include "utilities/ostream.hpp"
 31 #include "utilities/sizes.hpp"
 32 
 33 // This file provides the basic support for exception handling in the VM.
 34 // Note: We do not use C++ exceptions to avoid compiler dependencies and
 35 // unpredictable performance.
 36 //
 37 // Scheme: Exceptions are stored with the thread. There is never more
 38 // than one pending exception per thread. All functions that can throw
 39 // an exception carry a THREAD argument (usually the last argument and
 40 // declared with the TRAPS macro). Throwing an exception means setting
 41 // a pending exception in the thread. Upon return from a function that
 42 // can throw an exception, we must check if an exception is pending.
 43 // The CHECK macros do this in a convenient way. Carrying around the
 44 // thread provides also convenient access to it (e.g. for Handle
 45 // creation, w/o the need for recomputation).
 46 
 47 
 48 
 49 // Forward declarations to be independent of the include structure.
 50 
 51 class JavaThread;
 52 class Handle;
 53 class Symbol;
 54 class JavaCallArguments;
 55 class methodHandle;
 56 
 57 // The ThreadShadow class is a helper class to access the _pending_exception
 58 // field of the Thread class w/o having access to the Thread's interface (for
 59 // include hierarchy reasons).
 60 
 61 class ThreadShadow: public CHeapObj<mtThread> {
 62   friend class VMStructs;
 63   friend class JVMCIVMStructs;
 64 
 65  protected:
 66   oop  _pending_exception;                       // Thread has gc actions.
 67   const char* _exception_file;                   // file information for exception (debugging only)
 68   int         _exception_line;                   // line information for exception (debugging only)
 69   friend void check_ThreadShadow();              // checks _pending_exception offset
 70 
 71   // The following virtual exists only to force creation of a vtable.
 72   // We need ThreadShadow to have a vtable, even in product builds,
 73   // so that its layout will start at an offset of zero relative to Thread.
 74   // Some C++ compilers are so "clever" that they put the ThreadShadow
 75   // base class at offset 4 in Thread (after Thread's vtable), if they
 76   // notice that Thread has a vtable but ThreadShadow does not.
 77   virtual void unused_initial_virtual() { }
 78 
 79  public:
 80   oop  pending_exception() const                 { return _pending_exception; }
 81   bool has_pending_exception() const             { return _pending_exception != nullptr; }
 82   const char* exception_file() const             { return _exception_file; }
 83   int  exception_line() const                    { return _exception_line; }
 84 
 85   // Code generation support
 86   static ByteSize pending_exception_offset()     { return byte_offset_of(ThreadShadow, _pending_exception); }
 87 
 88   // use THROW whenever possible!
 89   void set_pending_exception(oop exception, const char* file, int line);
 90 
 91   // use CLEAR_PENDING_EXCEPTION whenever possible!
 92   void clear_pending_exception();
 93 
 94   // use CLEAR_PENDING_NONASYNC_EXCEPTION to clear probable nonasync exception.
 95   void clear_pending_nonasync_exception();
 96 
 97   ThreadShadow() : _pending_exception(nullptr),
 98                    _exception_file(nullptr), _exception_line(0) {}
 99 };
100 
101 
102 // Exceptions is a helper class that encapsulates all operations
103 // that require access to the thread interface and which are
104 // relatively rare. The Exceptions operations should only be
105 // used directly if the macros below are insufficient.
106 
107 class Exceptions {
108   // Either `exception` or `symbol` must be non-null but not both.
109   static bool special_exception(JavaThread* thread, const char* file, int line, Handle exception, Symbol* name = nullptr, const char* message = nullptr);
110 
111   // Count out of memory errors that are interesting in error diagnosis
112   static volatile int _out_of_memory_error_java_heap_errors;
113   static volatile int _out_of_memory_error_metaspace_errors;
114   static volatile int _out_of_memory_error_class_metaspace_errors;
115 
116   // Count linkage errors
117   static volatile int _linkage_errors;
118  public:
119   // this enum is defined to indicate whether it is safe to
120   // ignore the encoding scheme of the original message string.
121   typedef enum {
122     safe_to_utf8 = 0,
123     unsafe_to_utf8 = 1
124   } ExceptionMsgToUtf8Mode;
125   // Throw exceptions: w/o message, w/ message & with formatted message.
126   static void _throw_oop(JavaThread* thread, const char* file, int line, oop exception);
127   static void _throw(JavaThread* thread, const char* file, int line, Handle exception, const char* msg = nullptr);
128 
129   static void _throw_msg(JavaThread* thread, const char* file, int line, Symbol* name, const char* message);
130   static void _throw_msg(JavaThread* thread, const char* file, int line, Symbol* name, const char* message,
131                          Handle loader, Handle protection_domain);
132 
133   static void _throw_msg_cause(JavaThread* thread, const char* file, int line, Symbol* name, const char* message, Handle h_cause);
134   static void _throw_msg_cause(JavaThread* thread, const char* file, int line, Symbol* name, const char* message, Handle h_cause,
135                                Handle h_loader, Handle h_protection_domain);
136 
137   static void _throw_cause(JavaThread* thread, const char* file, int line, Symbol* name, Handle h_cause);
138   static void _throw_cause(JavaThread* thread, const char* file, int line, Symbol* name, Handle h_cause,
139                            Handle h_loader, Handle h_protection_domain);
140 
141   static void _throw_args(JavaThread* thread, const char* file, int line,
142                           Symbol* name, Symbol* signature,
143                           JavaCallArguments* args);
144 
145   // There is no THROW... macro for this method. Caller should remember
146   // to do a return after calling it.
147   static void fthrow(JavaThread* thread, const char* file, int line, Symbol* name,
148                      const char* format, ...) ATTRIBUTE_PRINTF(5, 6);
149 
150   // Create and initialize a new exception
151   static Handle new_exception(JavaThread* thread, Symbol* name,
152                               Symbol* signature, JavaCallArguments* args,
153                               Handle loader, Handle protection_domain);
154 
155   static Handle new_exception(JavaThread* thread, Symbol* name,
156                               Symbol* signature, JavaCallArguments* args,
157                               Handle cause,
158                               Handle loader, Handle protection_domain);
159 
160   static Handle new_exception(JavaThread* thread, Symbol* name,
161                               Handle cause,
162                               Handle loader, Handle protection_domain,
163                               ExceptionMsgToUtf8Mode to_utf8_safe = safe_to_utf8);
164 
165   static Handle new_exception(JavaThread* thread, Symbol* name,
166                               const char* message, Handle cause,
167                               Handle loader, Handle protection_domain,
168                               ExceptionMsgToUtf8Mode to_utf8_safe = safe_to_utf8);
169 
170   static Handle new_exception(JavaThread* thread, Symbol* name,
171                               const char* message,
172                               ExceptionMsgToUtf8Mode to_utf8_safe = safe_to_utf8);
173 
174   static void throw_stack_overflow_exception(JavaThread* thread, const char* file, int line, const methodHandle& method);
175 
176   static void wrap_dynamic_exception(bool is_indy, JavaThread* thread);
177 
178   // Exception counting for error files of interesting exceptions that may have
179   // caused a problem for the jvm
180   static volatile int _stack_overflow_errors;
181 
182   static bool has_exception_counts();
183   static void count_out_of_memory_exceptions(Handle exception);
184   static void print_exception_counts_on_error(outputStream* st);
185 
186   // for AbortVMOnException flag
187   static void debug_check_abort(Handle exception, const char* message = nullptr);
188   static void debug_check_abort_helper(Handle exception, const char* message = nullptr);
189   static void debug_check_abort(const char *value_string, const char* message = nullptr);
190 
191   // for logging exceptions
192   static void log_exception(Handle exception, const char* message);
193 };
194 
195 
196 // The THREAD & TRAPS macros facilitate the declaration of functions that throw exceptions.
197 // Convention: Use the TRAPS macro as the last argument of such a function; e.g.:
198 //
199 // int this_function_may_trap(int x, float y, TRAPS)
200 
201 #define THREAD __the_thread__
202 #define TRAPS  JavaThread* THREAD
203 
204 
205 // The CHECK... macros should be used to pass along a THREAD reference and to check for pending
206 // exceptions. In special situations it is necessary to handle pending exceptions explicitly,
207 // in these cases the PENDING_EXCEPTION helper macros should be used.
208 //
209 // Macro naming conventions: Macros that end with _ require a result value to be returned. They
210 // are for functions with non-void result type. The result value is usually ignored because of
211 // the exception and is only needed for syntactic correctness. The _0 ending is a shortcut for
212 // _(0) since this is a frequent case. Example:
213 //
214 // int result = this_function_may_trap(x_arg, y_arg, CHECK_0);
215 //
216 // CAUTION: make sure that the function call using a CHECK macro is not the only statement of a
217 // conditional branch w/o enclosing {} braces, since the CHECK macros expand into several state-
218 // ments! Also make sure it is not used on a function call that is part of a return statement!
219 
220 #define PENDING_EXCEPTION                        (((ThreadShadow*)THREAD)->pending_exception())
221 #define HAS_PENDING_EXCEPTION                    (((ThreadShadow*)THREAD)->has_pending_exception())
222 #define CLEAR_PENDING_EXCEPTION                  (((ThreadShadow*)THREAD)->clear_pending_exception())
223 
224 #define CHECK                                    THREAD); if (HAS_PENDING_EXCEPTION) return       ; (void)(0
225 #define CHECK_(result)                           THREAD); if (HAS_PENDING_EXCEPTION) return result; (void)(0
226 #define CHECK_0                                  CHECK_(0)
227 #define CHECK_NH                                 CHECK_(Handle())
228 #define CHECK_NULL                               CHECK_(nullptr)
229 #define CHECK_false                              CHECK_(false)
230 #define CHECK_JNI_ERR                            CHECK_(JNI_ERR)
231 
232 // CAUTION: These macros clears all exceptions including async exceptions, use it with caution.
233 #define CHECK_AND_CLEAR                         THREAD); if (HAS_PENDING_EXCEPTION) { CLEAR_PENDING_EXCEPTION; return;        } (void)(0
234 #define CHECK_AND_CLEAR_(result)                THREAD); if (HAS_PENDING_EXCEPTION) { CLEAR_PENDING_EXCEPTION; return result; } (void)(0
235 #define CHECK_AND_CLEAR_0                       CHECK_AND_CLEAR_(0)
236 #define CHECK_AND_CLEAR_NH                      CHECK_AND_CLEAR_(Handle())
237 #define CHECK_AND_CLEAR_NULL                    CHECK_AND_CLEAR_(nullptr)
238 #define CHECK_AND_CLEAR_false                   CHECK_AND_CLEAR_(false)
239 
240 // CAUTION: These macros clears all exceptions except probable async exceptions j.l.InternalError.
241 // So use it with caution.
242 #define CLEAR_PENDING_NONASYNC_EXCEPTION        (((ThreadShadow*)THREAD)->clear_pending_nonasync_exception())
243 #define CHECK_AND_CLEAR_NONASYNC                THREAD); if (HAS_PENDING_EXCEPTION) { CLEAR_PENDING_NONASYNC_EXCEPTION; return; } (void)(0
244 #define CHECK_AND_CLEAR_NONASYNC_(result)       THREAD); if (HAS_PENDING_EXCEPTION) { CLEAR_PENDING_NONASYNC_EXCEPTION; return result; } (void)(0
245 #define CHECK_AND_CLEAR_NONASYNC_0              CHECK_AND_CLEAR_NONASYNC_(0)
246 #define CHECK_AND_CLEAR_NONASYNC_NH             CHECK_AND_CLEAR_NONASYNC_(Handle())
247 #define CHECK_AND_CLEAR_NONASYNC_NULL           CHECK_AND_CLEAR_NONASYNC_(nullptr)
248 #define CHECK_AND_CLEAR_NONASYNC_false          CHECK_AND_CLEAR_NONASYNC_(false)
249 
250 // The THROW... macros should be used to throw an exception. They require a THREAD variable to be
251 // visible within the scope containing the THROW. Usually this is achieved by declaring the function
252 // with a TRAPS argument.
253 
254 #define THREAD_AND_LOCATION                      THREAD, __FILE__, __LINE__
255 
256 #define THROW_OOP(e)                                \
257   { Exceptions::_throw_oop(THREAD_AND_LOCATION, e);                             return;  }
258 
259 #define THROW_HANDLE(e)                                \
260   { Exceptions::_throw(THREAD_AND_LOCATION, e);                             return;  }
261 
262 #define THROW(name)                                 \
263   { Exceptions::_throw_msg(THREAD_AND_LOCATION, name, nullptr); return;  }
264 
265 #define THROW_MSG(name, message)                    \
266   { Exceptions::_throw_msg(THREAD_AND_LOCATION, name, message); return;  }
267 
268 #define THROW_CAUSE(name, cause)   \
269   { Exceptions::_throw_cause(THREAD_AND_LOCATION, name, cause); return; }
270 
271 #define THROW_MSG_LOADER(name, message, loader, protection_domain) \
272   { Exceptions::_throw_msg(THREAD_AND_LOCATION, name, message, loader, protection_domain); return;  }
273 
274 #define THROW_ARG(name, signature, args) \
275   { Exceptions::_throw_args(THREAD_AND_LOCATION, name, signature, args);   return; }
276 
277 #define THROW_OOP_(e, result)                       \
278   { Exceptions::_throw_oop(THREAD_AND_LOCATION, e);                           return result; }
279 
280 #define THROW_HANDLE_(e, result)                       \
281   { Exceptions::_throw(THREAD_AND_LOCATION, e);                           return result; }
282 
283 #define THROW_(name, result)                        \
284   { Exceptions::_throw_msg(THREAD_AND_LOCATION, name, nullptr); return result; }
285 
286 #define THROW_MSG_(name, message, result)           \
287   { Exceptions::_throw_msg(THREAD_AND_LOCATION, name, message); return result; }
288 
289 #define THROW_MSG_LOADER_(name, message, loader, protection_domain, result) \
290   { Exceptions::_throw_msg(THREAD_AND_LOCATION, name, message, loader, protection_domain); return result; }
291 
292 #define THROW_ARG_(name, signature, args, result) \
293   { Exceptions::_throw_args(THREAD_AND_LOCATION, name, signature, args); return result; }
294 
295 #define THROW_MSG_CAUSE(name, message, cause)   \
296   { Exceptions::_throw_msg_cause(THREAD_AND_LOCATION, name, message, cause); return; }
297 
298 #define THROW_MSG_CAUSE_(name, message, cause, result)   \
299   { Exceptions::_throw_msg_cause(THREAD_AND_LOCATION, name, message, cause); return result; }
300 
301 
302 #define THROW_OOP_0(e)                      THROW_OOP_(e, 0)
303 #define THROW_HANDLE_0(e)                   THROW_HANDLE_(e, 0)
304 #define THROW_0(name)                       THROW_(name, 0)
305 #define THROW_MSG_0(name, message)          THROW_MSG_(name, message, 0)
306 #define THROW_WRAPPED_0(name, oop_to_wrap)  THROW_WRAPPED_(name, oop_to_wrap, 0)
307 #define THROW_ARG_0(name, signature, arg)   THROW_ARG_(name, signature, arg, 0)
308 #define THROW_MSG_CAUSE_0(name, message, cause) THROW_MSG_CAUSE_(name, message, cause, 0)
309 #define THROW_MSG_CAUSE_NULL(name, message, cause) THROW_MSG_CAUSE_(name, message, cause, nullptr)
310 
311 #define THROW_NULL(name)                    THROW_(name, nullptr)
312 #define THROW_MSG_NULL(name, message)       THROW_MSG_(name, message, nullptr)
313 
314 // The CATCH macro checks that no exception has been thrown by a function; it is used at
315 // call sites about which is statically known that the callee cannot throw an exception
316 // even though it is declared with TRAPS.
317 
318 #define CATCH                              \
319   THREAD); if (HAS_PENDING_EXCEPTION) {    \
320     oop ex = PENDING_EXCEPTION;            \
321     CLEAR_PENDING_EXCEPTION;               \
322     DEBUG_ONLY(ex->print();)               \
323     assert(false, "CATCH");                \
324   } (void)(0
325 
326 // ExceptionMark is a stack-allocated helper class for local exception handling.
327 // It is used with the EXCEPTION_MARK macro.
328 
329 class ExceptionMark {
330  private:
331   JavaThread* _thread;
332   inline void check_no_pending_exception();
333 
334  public:
335   ExceptionMark();
336   ExceptionMark(JavaThread* thread);
337   ~ExceptionMark();
338 
339   JavaThread* thread() {
340     return _thread;
341   }
342 };
343 
344 // Use an EXCEPTION_MARK for 'local' exceptions. EXCEPTION_MARK makes sure that no
345 // pending exception exists upon entering its scope and tests that no pending exception
346 // exists when leaving the scope.
347 
348 // See also preserveException.hpp for PreserveExceptionMark
349 // which preserves pre-existing exceptions and does not allow new
350 // exceptions.
351 
352 #define EXCEPTION_MARK                           ExceptionMark __em; JavaThread* THREAD = __em.thread();
353 
354 #endif // SHARE_UTILITIES_EXCEPTIONS_HPP