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