vmError.cpp revision 6853:91eeb8807a03
1/*
2 * Copyright (c) 2003, 2014, 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#include "precompiled.hpp"
26#include "code/codeCache.hpp"
27#include "compiler/compileBroker.hpp"
28#include "gc_interface/collectedHeap.hpp"
29#include "prims/whitebox.hpp"
30#include "runtime/arguments.hpp"
31#include "runtime/atomic.inline.hpp"
32#include "runtime/frame.inline.hpp"
33#include "runtime/init.hpp"
34#include "runtime/os.hpp"
35#include "runtime/thread.inline.hpp"
36#include "runtime/vmThread.hpp"
37#include "runtime/vm_operations.hpp"
38#include "services/memTracker.hpp"
39#include "utilities/debug.hpp"
40#include "utilities/decoder.hpp"
41#include "utilities/defaultStream.hpp"
42#include "utilities/errorReporter.hpp"
43#include "utilities/events.hpp"
44#include "utilities/top.hpp"
45#include "utilities/vmError.hpp"
46
47PRAGMA_FORMAT_MUTE_WARNINGS_FOR_GCC
48
49// List of environment variables that should be reported in error log file.
50const char *env_list[] = {
51  // All platforms
52  "JAVA_HOME", "JRE_HOME", "JAVA_TOOL_OPTIONS", "_JAVA_OPTIONS", "CLASSPATH",
53  "JAVA_COMPILER", "PATH", "USERNAME",
54
55  // Env variables that are defined on Solaris/Linux/BSD
56  "LD_LIBRARY_PATH", "LD_PRELOAD", "SHELL", "DISPLAY",
57  "HOSTTYPE", "OSTYPE", "ARCH", "MACHTYPE",
58
59  // defined on Linux
60  "LD_ASSUME_KERNEL", "_JAVA_SR_SIGNUM",
61
62  // defined on Darwin
63  "DYLD_LIBRARY_PATH", "DYLD_FALLBACK_LIBRARY_PATH",
64  "DYLD_FRAMEWORK_PATH", "DYLD_FALLBACK_FRAMEWORK_PATH",
65  "DYLD_INSERT_LIBRARIES",
66
67  // defined on Windows
68  "OS", "PROCESSOR_IDENTIFIER", "_ALT_JAVA_HOME_DIR",
69
70  (const char *)0
71};
72
73// Fatal error handler for internal errors and crashes.
74//
75// The default behavior of fatal error handler is to print a brief message
76// to standard out (defaultStream::output_fd()), then save detailed information
77// into an error report file (hs_err_pid<pid>.log) and abort VM. If multiple
78// threads are having troubles at the same time, only one error is reported.
79// The thread that is reporting error will abort VM when it is done, all other
80// threads are blocked forever inside report_and_die().
81
82// Constructor for crashes
83VMError::VMError(Thread* thread, unsigned int sig, address pc, void* siginfo, void* context) {
84    _thread = thread;
85    _id = sig;
86    _pc   = pc;
87    _siginfo = siginfo;
88    _context = context;
89
90    _verbose = false;
91    _current_step = 0;
92    _current_step_info = NULL;
93
94    _message = NULL;
95    _detail_msg = NULL;
96    _filename = NULL;
97    _lineno = 0;
98
99    _size = 0;
100}
101
102// Constructor for internal errors
103VMError::VMError(Thread* thread, const char* filename, int lineno,
104                 const char* message, const char * detail_msg)
105{
106  _thread = thread;
107  _id = INTERNAL_ERROR;     // Value that's not an OS exception/signal
108  _filename = filename;
109  _lineno = lineno;
110  _message = message;
111  _detail_msg = detail_msg;
112
113  _verbose = false;
114  _current_step = 0;
115  _current_step_info = NULL;
116
117  _pc = NULL;
118  _siginfo = NULL;
119  _context = NULL;
120
121  _size = 0;
122}
123
124// Constructor for OOM errors
125VMError::VMError(Thread* thread, const char* filename, int lineno, size_t size,
126                 VMErrorType vm_err_type, const char* message) {
127    _thread = thread;
128    _id = vm_err_type; // Value that's not an OS exception/signal
129    _filename = filename;
130    _lineno = lineno;
131    _message = message;
132    _detail_msg = NULL;
133
134    _verbose = false;
135    _current_step = 0;
136    _current_step_info = NULL;
137
138    _pc = NULL;
139    _siginfo = NULL;
140    _context = NULL;
141
142    _size = size;
143}
144
145
146// Constructor for non-fatal errors
147VMError::VMError(const char* message) {
148    _thread = NULL;
149    _id = INTERNAL_ERROR;     // Value that's not an OS exception/signal
150    _filename = NULL;
151    _lineno = 0;
152    _message = message;
153    _detail_msg = NULL;
154
155    _verbose = false;
156    _current_step = 0;
157    _current_step_info = NULL;
158
159    _pc = NULL;
160    _siginfo = NULL;
161    _context = NULL;
162
163    _size = 0;
164}
165
166// -XX:OnError=<string>, where <string> can be a list of commands, separated
167// by ';'. "%p" is replaced by current process id (pid); "%%" is replaced by
168// a single "%". Some examples:
169//
170// -XX:OnError="pmap %p"                // show memory map
171// -XX:OnError="gcore %p; dbx - %p"     // dump core and launch debugger
172// -XX:OnError="cat hs_err_pid%p.log | mail my_email@sun.com"
173// -XX:OnError="kill -9 %p"             // ?#!@#
174
175// A simple parser for -XX:OnError, usage:
176//  ptr = OnError;
177//  while ((cmd = next_OnError_command(buffer, sizeof(buffer), &ptr) != NULL)
178//     ... ...
179static char* next_OnError_command(char* buf, int buflen, const char** ptr) {
180  if (ptr == NULL || *ptr == NULL) return NULL;
181
182  const char* cmd = *ptr;
183
184  // skip leading blanks or ';'
185  while (*cmd == ' ' || *cmd == ';') cmd++;
186
187  if (*cmd == '\0') return NULL;
188
189  const char * cmdend = cmd;
190  while (*cmdend != '\0' && *cmdend != ';') cmdend++;
191
192  Arguments::copy_expand_pid(cmd, cmdend - cmd, buf, buflen);
193
194  *ptr = (*cmdend == '\0' ? cmdend : cmdend + 1);
195  return buf;
196}
197
198
199static void print_bug_submit_message(outputStream *out, Thread *thread) {
200  if (out == NULL) return;
201  out->print_raw_cr("# If you would like to submit a bug report, please visit:");
202  out->print_raw   ("#   ");
203  out->print_raw_cr(Arguments::java_vendor_url_bug());
204  // If the crash is in native code, encourage user to submit a bug to the
205  // provider of that code.
206  if (thread && thread->is_Java_thread() &&
207      !thread->is_hidden_from_external_view()) {
208    JavaThread* jt = (JavaThread*)thread;
209    if (jt->thread_state() == _thread_in_native) {
210      out->print_cr("# The crash happened outside the Java Virtual Machine in native code.\n# See problematic frame for where to report the bug.");
211    }
212  }
213  out->print_raw_cr("#");
214}
215
216bool VMError::coredump_status;
217char VMError::coredump_message[O_BUFLEN];
218
219void VMError::report_coredump_status(const char* message, bool status) {
220  coredump_status = status;
221  strncpy(coredump_message, message, sizeof(coredump_message));
222  coredump_message[sizeof(coredump_message)-1] = 0;
223}
224
225
226// Return a string to describe the error
227char* VMError::error_string(char* buf, int buflen) {
228  char signame_buf[64];
229  const char *signame = os::exception_name(_id, signame_buf, sizeof(signame_buf));
230
231  if (signame) {
232    jio_snprintf(buf, buflen,
233                 "%s (0x%x) at pc=" PTR_FORMAT ", pid=%d, tid=" UINTX_FORMAT,
234                 signame, _id, _pc,
235                 os::current_process_id(), os::current_thread_id());
236  } else if (_filename != NULL && _lineno > 0) {
237    // skip directory names
238    char separator = os::file_separator()[0];
239    const char *p = strrchr(_filename, separator);
240    int n = jio_snprintf(buf, buflen,
241                         "Internal Error at %s:%d, pid=%d, tid=" UINTX_FORMAT,
242                         p ? p + 1 : _filename, _lineno,
243                         os::current_process_id(), os::current_thread_id());
244    if (n >= 0 && n < buflen && _message) {
245      if (_detail_msg) {
246        jio_snprintf(buf + n, buflen - n, "%s%s: %s",
247                     os::line_separator(), _message, _detail_msg);
248      } else {
249        jio_snprintf(buf + n, buflen - n, "%sError: %s",
250                     os::line_separator(), _message);
251      }
252    }
253  } else {
254    jio_snprintf(buf, buflen,
255                 "Internal Error (0x%x), pid=%d, tid=" UINTX_FORMAT,
256                 _id, os::current_process_id(), os::current_thread_id());
257  }
258
259  return buf;
260}
261
262void VMError::print_stack_trace(outputStream* st, JavaThread* jt,
263                                char* buf, int buflen, bool verbose) {
264#ifdef ZERO
265  if (jt->zero_stack()->sp() && jt->top_zero_frame()) {
266    // StackFrameStream uses the frame anchor, which may not have
267    // been set up.  This can be done at any time in Zero, however,
268    // so if it hasn't been set up then we just set it up now and
269    // clear it again when we're done.
270    bool has_last_Java_frame = jt->has_last_Java_frame();
271    if (!has_last_Java_frame)
272      jt->set_last_Java_frame();
273    st->print("Java frames:");
274
275    // If the top frame is a Shark frame and the frame anchor isn't
276    // set up then it's possible that the information in the frame
277    // is garbage: it could be from a previous decache, or it could
278    // simply have never been written.  So we print a warning...
279    StackFrameStream sfs(jt);
280    if (!has_last_Java_frame && !sfs.is_done()) {
281      if (sfs.current()->zeroframe()->is_shark_frame()) {
282        st->print(" (TOP FRAME MAY BE JUNK)");
283      }
284    }
285    st->cr();
286
287    // Print the frames
288    for(int i = 0; !sfs.is_done(); sfs.next(), i++) {
289      sfs.current()->zero_print_on_error(i, st, buf, buflen);
290      st->cr();
291    }
292
293    // Reset the frame anchor if necessary
294    if (!has_last_Java_frame)
295      jt->reset_last_Java_frame();
296  }
297#else
298  if (jt->has_last_Java_frame()) {
299    st->print_cr("Java frames: (J=compiled Java code, j=interpreted, Vv=VM code)");
300    for(StackFrameStream sfs(jt); !sfs.is_done(); sfs.next()) {
301      sfs.current()->print_on_error(st, buf, buflen, verbose);
302      st->cr();
303    }
304  }
305#endif // ZERO
306}
307
308// This is the main function to report a fatal error. Only one thread can
309// call this function, so we don't need to worry about MT-safety. But it's
310// possible that the error handler itself may crash or die on an internal
311// error, for example, when the stack/heap is badly damaged. We must be
312// able to handle recursive errors that happen inside error handler.
313//
314// Error reporting is done in several steps. If a crash or internal error
315// occurred when reporting an error, the nested signal/exception handler
316// can skip steps that are already (or partially) done. Error reporting will
317// continue from the next step. This allows us to retrieve and print
318// information that may be unsafe to get after a fatal error. If it happens,
319// you may find nested report_and_die() frames when you look at the stack
320// in a debugger.
321//
322// In general, a hang in error handler is much worse than a crash or internal
323// error, as it's harder to recover from a hang. Deadlock can happen if we
324// try to grab a lock that is already owned by current thread, or if the
325// owner is blocked forever (e.g. in os::infinite_sleep()). If possible, the
326// error handler and all the functions it called should avoid grabbing any
327// lock. An important thing to notice is that memory allocation needs a lock.
328//
329// We should avoid using large stack allocated buffers. Many errors happen
330// when stack space is already low. Making things even worse is that there
331// could be nested report_and_die() calls on stack (see above). Only one
332// thread can report error, so large buffers are statically allocated in data
333// segment.
334
335void VMError::report(outputStream* st) {
336# define BEGIN if (_current_step == 0) { _current_step = 1;
337# define STEP(n, s) } if (_current_step < n) { _current_step = n; _current_step_info = s;
338# define END }
339
340  // don't allocate large buffer on stack
341  static char buf[O_BUFLEN];
342
343  BEGIN
344
345  STEP(10, "(printing fatal error message)")
346
347    st->print_cr("#");
348    if (should_report_bug(_id)) {
349      st->print_cr("# A fatal error has been detected by the Java Runtime Environment:");
350    } else {
351      st->print_cr("# There is insufficient memory for the Java "
352                   "Runtime Environment to continue.");
353    }
354
355  STEP(15, "(printing type of error)")
356
357     switch(_id) {
358       case OOM_MALLOC_ERROR:
359       case OOM_MMAP_ERROR:
360         if (_size) {
361           st->print("# Native memory allocation ");
362           st->print((_id == (int)OOM_MALLOC_ERROR) ? "(malloc) failed to allocate " :
363                                                 "(mmap) failed to map ");
364           jio_snprintf(buf, sizeof(buf), SIZE_FORMAT, _size);
365           st->print("%s", buf);
366           st->print(" bytes");
367           if (_message != NULL) {
368             st->print(" for ");
369             st->print("%s", _message);
370           }
371           st->cr();
372         } else {
373           if (_message != NULL)
374             st->print("# ");
375             st->print_cr("%s", _message);
376         }
377         // In error file give some solutions
378         if (_verbose) {
379           st->print_cr("# Possible reasons:");
380           st->print_cr("#   The system is out of physical RAM or swap space");
381           st->print_cr("#   In 32 bit mode, the process size limit was hit");
382           st->print_cr("# Possible solutions:");
383           st->print_cr("#   Reduce memory load on the system");
384           st->print_cr("#   Increase physical memory or swap space");
385           st->print_cr("#   Check if swap backing store is full");
386           st->print_cr("#   Use 64 bit Java on a 64 bit OS");
387           st->print_cr("#   Decrease Java heap size (-Xmx/-Xms)");
388           st->print_cr("#   Decrease number of Java threads");
389           st->print_cr("#   Decrease Java thread stack sizes (-Xss)");
390           st->print_cr("#   Set larger code cache with -XX:ReservedCodeCacheSize=");
391           st->print_cr("# This output file may be truncated or incomplete.");
392         } else {
393           return;  // that's enough for the screen
394         }
395         break;
396       case INTERNAL_ERROR:
397       default:
398         break;
399     }
400
401  STEP(20, "(printing exception/signal name)")
402
403     st->print_cr("#");
404     st->print("#  ");
405     // Is it an OS exception/signal?
406     if (os::exception_name(_id, buf, sizeof(buf))) {
407       st->print("%s", buf);
408       st->print(" (0x%x)", _id);                // signal number
409       st->print(" at pc=" PTR_FORMAT, _pc);
410     } else {
411       if (should_report_bug(_id)) {
412         st->print("Internal Error");
413       } else {
414         st->print("Out of Memory Error");
415       }
416       if (_filename != NULL && _lineno > 0) {
417#ifdef PRODUCT
418         // In product mode chop off pathname?
419         char separator = os::file_separator()[0];
420         const char *p = strrchr(_filename, separator);
421         const char *file = p ? p+1 : _filename;
422#else
423         const char *file = _filename;
424#endif
425         size_t len = strlen(file);
426         size_t buflen = sizeof(buf);
427
428         strncpy(buf, file, buflen);
429         if (len + 10 < buflen) {
430           sprintf(buf + len, ":%d", _lineno);
431         }
432         st->print(" (%s)", buf);
433       } else {
434         st->print(" (0x%x)", _id);
435       }
436     }
437
438  STEP(30, "(printing current thread and pid)")
439
440     // process id, thread id
441     st->print(", pid=%d", os::current_process_id());
442     st->print(", tid=" UINTX_FORMAT, os::current_thread_id());
443     st->cr();
444
445  STEP(40, "(printing error message)")
446
447     if (should_report_bug(_id)) {  // already printed the message.
448       // error message
449       if (_detail_msg) {
450         st->print_cr("#  %s: %s", _message ? _message : "Error", _detail_msg);
451       } else if (_message) {
452         st->print_cr("#  Error: %s", _message);
453       }
454    }
455
456  STEP(50, "(printing Java version string)")
457
458     // VM version
459     st->print_cr("#");
460     JDK_Version::current().to_string(buf, sizeof(buf));
461     const char* runtime_name = JDK_Version::runtime_name() != NULL ?
462                                  JDK_Version::runtime_name() : "";
463     const char* runtime_version = JDK_Version::runtime_version() != NULL ?
464                                  JDK_Version::runtime_version() : "";
465     st->print_cr("# JRE version: %s (%s) (build %s)", runtime_name, buf, runtime_version);
466     st->print_cr("# Java VM: %s (%s %s %s %s)",
467                   Abstract_VM_Version::vm_name(),
468                   Abstract_VM_Version::vm_release(),
469                   Abstract_VM_Version::vm_info_string(),
470                   Abstract_VM_Version::vm_platform_string(),
471                   UseCompressedOops ? "compressed oops" : ""
472                 );
473
474  STEP(60, "(printing problematic frame)")
475
476     // Print current frame if we have a context (i.e. it's a crash)
477     if (_context) {
478       st->print_cr("# Problematic frame:");
479       st->print("# ");
480       frame fr = os::fetch_frame_from_context(_context);
481       fr.print_on_error(st, buf, sizeof(buf));
482       st->cr();
483       st->print_cr("#");
484     }
485  STEP(63, "(printing core file information)")
486    st->print("# ");
487    if (coredump_status) {
488      st->print("Core dump written. Default location: %s", coredump_message);
489    } else {
490      st->print("Failed to write core dump. %s", coredump_message);
491    }
492    st->cr();
493    st->print_cr("#");
494
495  STEP(65, "(printing bug submit message)")
496
497     if (should_report_bug(_id) && _verbose) {
498       print_bug_submit_message(st, _thread);
499     }
500
501  STEP(70, "(printing thread)" )
502
503     if (_verbose) {
504       st->cr();
505       st->print_cr("---------------  T H R E A D  ---------------");
506       st->cr();
507     }
508
509  STEP(80, "(printing current thread)" )
510
511     // current thread
512     if (_verbose) {
513       if (_thread) {
514         st->print("Current thread (" PTR_FORMAT "):  ", _thread);
515         _thread->print_on_error(st, buf, sizeof(buf));
516         st->cr();
517       } else {
518         st->print_cr("Current thread is native thread");
519       }
520       st->cr();
521     }
522
523  STEP(90, "(printing siginfo)" )
524
525     // signal no, signal code, address that caused the fault
526     if (_verbose && _siginfo) {
527       os::print_siginfo(st, _siginfo);
528       st->cr();
529     }
530
531  STEP(100, "(printing registers, top of stack, instructions near pc)")
532
533     // registers, top of stack, instructions near pc
534     if (_verbose && _context) {
535       os::print_context(st, _context);
536       st->cr();
537     }
538
539  STEP(105, "(printing register info)")
540
541     // decode register contents if possible
542     if (_verbose && _context && Universe::is_fully_initialized()) {
543       os::print_register_info(st, _context);
544       st->cr();
545     }
546
547  STEP(110, "(printing stack bounds)" )
548
549     if (_verbose) {
550       st->print("Stack: ");
551
552       address stack_top;
553       size_t stack_size;
554
555       if (_thread) {
556          stack_top = _thread->stack_base();
557          stack_size = _thread->stack_size();
558       } else {
559          stack_top = os::current_stack_base();
560          stack_size = os::current_stack_size();
561       }
562
563       address stack_bottom = stack_top - stack_size;
564       st->print("[" PTR_FORMAT "," PTR_FORMAT "]", stack_bottom, stack_top);
565
566       frame fr = _context ? os::fetch_frame_from_context(_context)
567                           : os::current_frame();
568
569       if (fr.sp()) {
570         st->print(",  sp=" PTR_FORMAT, fr.sp());
571         size_t free_stack_size = pointer_delta(fr.sp(), stack_bottom, 1024);
572         st->print(",  free space=" SIZE_FORMAT "k", free_stack_size);
573       }
574
575       st->cr();
576     }
577
578  STEP(120, "(printing native stack)" )
579
580     if (_verbose) {
581     if (os::platform_print_native_stack(st, _context, buf, sizeof(buf))) {
582       // We have printed the native stack in platform-specific code
583       // Windows/x64 needs special handling.
584     } else {
585       frame fr = _context ? os::fetch_frame_from_context(_context)
586                           : os::current_frame();
587
588       // see if it's a valid frame
589       if (fr.pc()) {
590          st->print_cr("Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)");
591
592
593          int count = 0;
594          while (count++ < StackPrintLimit) {
595             fr.print_on_error(st, buf, sizeof(buf));
596             st->cr();
597             // Compiled code may use EBP register on x86 so it looks like
598             // non-walkable C frame. Use frame.sender() for java frames.
599             if (_thread && _thread->is_Java_thread()) {
600               // Catch very first native frame by using stack address.
601               // For JavaThread stack_base and stack_size should be set.
602               if (!_thread->on_local_stack((address)(fr.sender_sp() + 1))) {
603                 break;
604               }
605               if (fr.is_java_frame()) {
606                 RegisterMap map((JavaThread*)_thread, false); // No update
607                 fr = fr.sender(&map);
608               } else {
609                 fr = os::get_sender_for_C_frame(&fr);
610               }
611             } else {
612               // is_first_C_frame() does only simple checks for frame pointer,
613               // it will pass if java compiled code has a pointer in EBP.
614               if (os::is_first_C_frame(&fr)) break;
615               fr = os::get_sender_for_C_frame(&fr);
616             }
617          }
618
619          if (count > StackPrintLimit) {
620             st->print_cr("...<more frames>...");
621          }
622
623          st->cr();
624       }
625     }
626   }
627
628  STEP(130, "(printing Java stack)" )
629
630     if (_verbose && _thread && _thread->is_Java_thread()) {
631       print_stack_trace(st, (JavaThread*)_thread, buf, sizeof(buf));
632     }
633
634  STEP(135, "(printing target Java thread stack)" )
635
636     // printing Java thread stack trace if it is involved in GC crash
637     if (_verbose && _thread && (_thread->is_Named_thread())) {
638       JavaThread*  jt = ((NamedThread *)_thread)->processed_thread();
639       if (jt != NULL) {
640         st->print_cr("JavaThread " PTR_FORMAT " (nid = " UINTX_FORMAT ") was being processed", jt, jt->osthread()->thread_id());
641         print_stack_trace(st, jt, buf, sizeof(buf), true);
642       }
643     }
644
645  STEP(140, "(printing VM operation)" )
646
647     if (_verbose && _thread && _thread->is_VM_thread()) {
648        VMThread* t = (VMThread*)_thread;
649        VM_Operation* op = t->vm_operation();
650        if (op) {
651          op->print_on_error(st);
652          st->cr();
653          st->cr();
654        }
655     }
656
657  STEP(150, "(printing current compile task)" )
658
659     if (_verbose && _thread && _thread->is_Compiler_thread()) {
660        CompilerThread* t = (CompilerThread*)_thread;
661        if (t->task()) {
662           st->cr();
663           st->print_cr("Current CompileTask:");
664           t->task()->print_line_on_error(st, buf, sizeof(buf));
665           st->cr();
666        }
667     }
668
669  STEP(160, "(printing process)" )
670
671     if (_verbose) {
672       st->cr();
673       st->print_cr("---------------  P R O C E S S  ---------------");
674       st->cr();
675     }
676
677  STEP(170, "(printing all threads)" )
678
679     // all threads
680     if (_verbose && _thread) {
681       Threads::print_on_error(st, _thread, buf, sizeof(buf));
682       st->cr();
683     }
684
685  STEP(175, "(printing VM state)" )
686
687     if (_verbose) {
688       // Safepoint state
689       st->print("VM state:");
690
691       if (SafepointSynchronize::is_synchronizing()) st->print("synchronizing");
692       else if (SafepointSynchronize::is_at_safepoint()) st->print("at safepoint");
693       else st->print("not at safepoint");
694
695       // Also see if error occurred during initialization or shutdown
696       if (!Universe::is_fully_initialized()) {
697         st->print(" (not fully initialized)");
698       } else if (VM_Exit::vm_exited()) {
699         st->print(" (shutting down)");
700       } else {
701         st->print(" (normal execution)");
702       }
703       st->cr();
704       st->cr();
705     }
706
707  STEP(180, "(printing owned locks on error)" )
708
709     // mutexes/monitors that currently have an owner
710     if (_verbose) {
711       print_owned_locks_on_error(st);
712       st->cr();
713     }
714
715  STEP(190, "(printing heap information)" )
716
717     if (_verbose && Universe::is_fully_initialized()) {
718       Universe::heap()->print_on_error(st);
719       st->cr();
720
721       st->print_cr("Polling page: " INTPTR_FORMAT, os::get_polling_page());
722       st->cr();
723     }
724
725  STEP(195, "(printing code cache information)" )
726
727     if (_verbose && Universe::is_fully_initialized()) {
728       // print code cache information before vm abort
729       CodeCache::print_summary(st);
730       st->cr();
731     }
732
733  STEP(200, "(printing ring buffers)" )
734
735     if (_verbose) {
736       Events::print_all(st);
737       st->cr();
738     }
739
740  STEP(205, "(printing dynamic libraries)" )
741
742     if (_verbose) {
743       // dynamic libraries, or memory map
744       os::print_dll_info(st);
745       st->cr();
746     }
747
748  STEP(210, "(printing VM options)" )
749
750     if (_verbose) {
751       // VM options
752       Arguments::print_on(st);
753       st->cr();
754     }
755
756  STEP(215, "(printing warning if internal testing API used)" )
757
758     if (WhiteBox::used()) {
759       st->print_cr("Unsupported internal testing APIs have been used.");
760       st->cr();
761     }
762
763  STEP(220, "(printing environment variables)" )
764
765     if (_verbose) {
766       os::print_environment_variables(st, env_list, buf, sizeof(buf));
767       st->cr();
768     }
769
770  STEP(225, "(printing signal handlers)" )
771
772     if (_verbose) {
773       os::print_signal_handlers(st, buf, sizeof(buf));
774       st->cr();
775     }
776
777  STEP(228, "(Native Memory Tracking)" )
778     if (_verbose) {
779       MemTracker::final_report(st);
780     }
781
782  STEP(230, "" )
783
784     if (_verbose) {
785       st->cr();
786       st->print_cr("---------------  S Y S T E M  ---------------");
787       st->cr();
788     }
789
790  STEP(240, "(printing OS information)" )
791
792     if (_verbose) {
793       os::print_os_info(st);
794       st->cr();
795     }
796
797  STEP(250, "(printing CPU info)" )
798     if (_verbose) {
799       os::print_cpu_info(st);
800       st->cr();
801     }
802
803  STEP(260, "(printing memory info)" )
804
805     if (_verbose) {
806       os::print_memory_info(st);
807       st->cr();
808     }
809
810  STEP(270, "(printing internal vm info)" )
811
812     if (_verbose) {
813       st->print_cr("vm_info: %s", Abstract_VM_Version::internal_vm_info_string());
814       st->cr();
815     }
816
817  STEP(280, "(printing date and time)" )
818
819     if (_verbose) {
820       os::print_date_and_time(st);
821       st->cr();
822     }
823
824  END
825
826# undef BEGIN
827# undef STEP
828# undef END
829}
830
831VMError* volatile VMError::first_error = NULL;
832volatile jlong VMError::first_error_tid = -1;
833
834// An error could happen before tty is initialized or after it has been
835// destroyed. Here we use a very simple unbuffered fdStream for printing.
836// Only out.print_raw() and out.print_raw_cr() should be used, as other
837// printing methods need to allocate large buffer on stack. To format a
838// string, use jio_snprintf() with a static buffer or use staticBufferStream.
839fdStream VMError::out(defaultStream::output_fd());
840fdStream VMError::log; // error log used by VMError::report_and_die()
841
842/** Expand a pattern into a buffer starting at pos and open a file using constructed path */
843static int expand_and_open(const char* pattern, char* buf, size_t buflen, size_t pos) {
844  int fd = -1;
845  if (Arguments::copy_expand_pid(pattern, strlen(pattern), &buf[pos], buflen - pos)) {
846    fd = open(buf, O_RDWR | O_CREAT | O_TRUNC, 0666);
847  }
848  return fd;
849}
850
851/**
852 * Construct file name for a log file and return it's file descriptor.
853 * Name and location depends on pattern, default_pattern params and access
854 * permissions.
855 */
856static int prepare_log_file(const char* pattern, const char* default_pattern, char* buf, size_t buflen) {
857  int fd = -1;
858
859  // If possible, use specified pattern to construct log file name
860  if (pattern != NULL) {
861    fd = expand_and_open(pattern, buf, buflen, 0);
862  }
863
864  // Either user didn't specify, or the user's location failed,
865  // so use the default name in the current directory
866  if (fd == -1) {
867    const char* cwd = os::get_current_directory(buf, buflen);
868    if (cwd != NULL) {
869      size_t pos = strlen(cwd);
870      int fsep_len = jio_snprintf(&buf[pos], buflen-pos, "%s", os::file_separator());
871      pos += fsep_len;
872      if (fsep_len > 0) {
873        fd = expand_and_open(default_pattern, buf, buflen, pos);
874      }
875    }
876  }
877
878   // try temp directory if it exists.
879   if (fd == -1) {
880     const char* tmpdir = os::get_temp_directory();
881     if (tmpdir != NULL && strlen(tmpdir) > 0) {
882       int pos = jio_snprintf(buf, buflen, "%s%s", tmpdir, os::file_separator());
883       if (pos > 0) {
884         fd = expand_and_open(default_pattern, buf, buflen, pos);
885       }
886     }
887   }
888
889  return fd;
890}
891
892void VMError::report_and_die() {
893  // Don't allocate large buffer on stack
894  static char buffer[O_BUFLEN];
895
896  // How many errors occurred in error handler when reporting first_error.
897  static int recursive_error_count;
898
899  // We will first print a brief message to standard out (verbose = false),
900  // then save detailed information in log file (verbose = true).
901  static bool out_done = false;         // done printing to standard out
902  static bool log_done = false;         // done saving error log
903  static bool transmit_report_done = false; // done error reporting
904
905  if (SuppressFatalErrorMessage) {
906      os::abort();
907  }
908  jlong mytid = os::current_thread_id();
909  if (first_error == NULL &&
910      Atomic::cmpxchg_ptr(this, &first_error, NULL) == NULL) {
911
912    // first time
913    first_error_tid = mytid;
914    set_error_reported();
915
916    if (ShowMessageBoxOnError || PauseAtExit) {
917      show_message_box(buffer, sizeof(buffer));
918
919      // User has asked JVM to abort. Reset ShowMessageBoxOnError so the
920      // WatcherThread can kill JVM if the error handler hangs.
921      ShowMessageBoxOnError = false;
922    }
923
924    // Write a minidump on Windows, check core dump limits on Linux/Solaris
925    os::check_or_create_dump(_siginfo, _context, buffer, sizeof(buffer));
926
927    // reset signal handlers or exception filter; make sure recursive crashes
928    // are handled properly.
929    reset_signal_handlers();
930
931  } else {
932    // If UseOsErrorReporting we call this for each level of the call stack
933    // while searching for the exception handler.  Only the first level needs
934    // to be reported.
935    if (UseOSErrorReporting && log_done) return;
936
937    // This is not the first error, see if it happened in a different thread
938    // or in the same thread during error reporting.
939    if (first_error_tid != mytid) {
940      char msgbuf[64];
941      jio_snprintf(msgbuf, sizeof(msgbuf),
942                   "[thread " INT64_FORMAT " also had an error]",
943                   mytid);
944      out.print_raw_cr(msgbuf);
945
946      // error reporting is not MT-safe, block current thread
947      os::infinite_sleep();
948
949    } else {
950      if (recursive_error_count++ > 30) {
951        out.print_raw_cr("[Too many errors, abort]");
952        os::die();
953      }
954
955      jio_snprintf(buffer, sizeof(buffer),
956                   "[error occurred during error reporting %s, id 0x%x]",
957                   first_error ? first_error->_current_step_info : "",
958                   _id);
959      if (log.is_open()) {
960        log.cr();
961        log.print_raw_cr(buffer);
962        log.cr();
963      } else {
964        out.cr();
965        out.print_raw_cr(buffer);
966        out.cr();
967      }
968    }
969  }
970
971  // print to screen
972  if (!out_done) {
973    first_error->_verbose = false;
974
975    staticBufferStream sbs(buffer, sizeof(buffer), &out);
976    first_error->report(&sbs);
977
978    out_done = true;
979
980    first_error->_current_step = 0;         // reset current_step
981    first_error->_current_step_info = "";   // reset current_step string
982  }
983
984  // print to error log file
985  if (!log_done) {
986    first_error->_verbose = true;
987
988    // see if log file is already open
989    if (!log.is_open()) {
990      // open log file
991      int fd = prepare_log_file(ErrorFile, "hs_err_pid%p.log", buffer, sizeof(buffer));
992      if (fd != -1) {
993        out.print_raw("# An error report file with more information is saved as:\n# ");
994        out.print_raw_cr(buffer);
995
996        log.set_fd(fd);
997      } else {
998        out.print_raw_cr("# Can not save log file, dump to screen..");
999        log.set_fd(defaultStream::output_fd());
1000        /* Error reporting currently needs dumpfile.
1001         * Maybe implement direct streaming in the future.*/
1002        transmit_report_done = true;
1003      }
1004    }
1005
1006    staticBufferStream sbs(buffer, O_BUFLEN, &log);
1007    first_error->report(&sbs);
1008    first_error->_current_step = 0;         // reset current_step
1009    first_error->_current_step_info = "";   // reset current_step string
1010
1011    // Run error reporting to determine whether or not to report the crash.
1012    if (!transmit_report_done && should_report_bug(first_error->_id)) {
1013      transmit_report_done = true;
1014      FILE* hs_err = os::open(log.fd(), "r");
1015      if (NULL != hs_err) {
1016        ErrorReporter er;
1017        er.call(hs_err, buffer, O_BUFLEN);
1018      }
1019    }
1020
1021    if (log.fd() != defaultStream::output_fd()) {
1022      close(log.fd());
1023    }
1024
1025    log.set_fd(-1);
1026    log_done = true;
1027  }
1028
1029
1030  static bool skip_OnError = false;
1031  if (!skip_OnError && OnError && OnError[0]) {
1032    skip_OnError = true;
1033
1034    out.print_raw_cr("#");
1035    out.print_raw   ("# -XX:OnError=\"");
1036    out.print_raw   (OnError);
1037    out.print_raw_cr("\"");
1038
1039    char* cmd;
1040    const char* ptr = OnError;
1041    while ((cmd = next_OnError_command(buffer, sizeof(buffer), &ptr)) != NULL){
1042      out.print_raw   ("#   Executing ");
1043#if defined(LINUX) || defined(_ALLBSD_SOURCE)
1044      out.print_raw   ("/bin/sh -c ");
1045#elif defined(SOLARIS)
1046      out.print_raw   ("/usr/bin/sh -c ");
1047#endif
1048      out.print_raw   ("\"");
1049      out.print_raw   (cmd);
1050      out.print_raw_cr("\" ...");
1051
1052      os::fork_and_exec(cmd);
1053    }
1054
1055    // done with OnError
1056    OnError = NULL;
1057  }
1058
1059  static bool skip_replay = ReplayCompiles; // Do not overwrite file during replay
1060  if (DumpReplayDataOnError && _thread && _thread->is_Compiler_thread() && !skip_replay) {
1061    skip_replay = true;
1062    ciEnv* env = ciEnv::current();
1063    if (env != NULL) {
1064      int fd = prepare_log_file(ReplayDataFile, "replay_pid%p.log", buffer, sizeof(buffer));
1065      if (fd != -1) {
1066        FILE* replay_data_file = os::open(fd, "w");
1067        if (replay_data_file != NULL) {
1068          fileStream replay_data_stream(replay_data_file, /*need_close=*/true);
1069          env->dump_replay_data_unsafe(&replay_data_stream);
1070          out.print_raw("#\n# Compiler replay data is saved as:\n# ");
1071          out.print_raw_cr(buffer);
1072        } else {
1073          out.print_raw("#\n# Can't open file to dump replay data. Error: ");
1074          out.print_raw_cr(strerror(os::get_last_error()));
1075        }
1076      }
1077    }
1078  }
1079
1080  static bool skip_bug_url = !should_report_bug(first_error->_id);
1081  if (!skip_bug_url) {
1082    skip_bug_url = true;
1083
1084    out.print_raw_cr("#");
1085    print_bug_submit_message(&out, _thread);
1086  }
1087
1088  if (!UseOSErrorReporting) {
1089    // os::abort() will call abort hooks, try it first.
1090    static bool skip_os_abort = false;
1091    if (!skip_os_abort) {
1092      skip_os_abort = true;
1093      bool dump_core = should_report_bug(first_error->_id);
1094      os::abort(dump_core);
1095    }
1096
1097    // if os::abort() doesn't abort, try os::die();
1098    os::die();
1099  }
1100}
1101
1102/*
1103 * OnOutOfMemoryError scripts/commands executed while VM is a safepoint - this
1104 * ensures utilities such as jmap can observe the process is a consistent state.
1105 */
1106class VM_ReportJavaOutOfMemory : public VM_Operation {
1107 private:
1108  VMError *_err;
1109 public:
1110  VM_ReportJavaOutOfMemory(VMError *err) { _err = err; }
1111  VMOp_Type type() const                 { return VMOp_ReportJavaOutOfMemory; }
1112  void doit();
1113};
1114
1115void VM_ReportJavaOutOfMemory::doit() {
1116  // Don't allocate large buffer on stack
1117  static char buffer[O_BUFLEN];
1118
1119  tty->print_cr("#");
1120  tty->print_cr("# java.lang.OutOfMemoryError: %s", _err->message());
1121  tty->print_cr("# -XX:OnOutOfMemoryError=\"%s\"", OnOutOfMemoryError);
1122
1123  // make heap parsability
1124  Universe::heap()->ensure_parsability(false);  // no need to retire TLABs
1125
1126  char* cmd;
1127  const char* ptr = OnOutOfMemoryError;
1128  while ((cmd = next_OnError_command(buffer, sizeof(buffer), &ptr)) != NULL){
1129    tty->print("#   Executing ");
1130#if defined(LINUX)
1131    tty->print  ("/bin/sh -c ");
1132#elif defined(SOLARIS)
1133    tty->print  ("/usr/bin/sh -c ");
1134#endif
1135    tty->print_cr("\"%s\"...", cmd);
1136
1137    os::fork_and_exec(cmd);
1138  }
1139}
1140
1141void VMError::report_java_out_of_memory() {
1142  if (OnOutOfMemoryError && OnOutOfMemoryError[0]) {
1143    MutexLocker ml(Heap_lock);
1144    VM_ReportJavaOutOfMemory op(this);
1145    VMThread::execute(&op);
1146  }
1147}
1148