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