hotspot/src/os/solaris/vm/jvm_solaris.cpp
author xdono
Thu, 02 Oct 2008 19:58:19 -0700
changeset 1217 5eb97f366a6a
parent 1 489c9b5090e2
child 5547 f4b087cbb361
permissions -rw-r--r--
6754988: Update copyright year Summary: Update for files that have been modified starting July 2008 Reviewed-by: ohair, tbell
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
489c9b5090e2 Initial load
duke
parents:
diff changeset
     2
 * Copyright 1998-2007 Sun Microsystems, Inc.  All Rights Reserved.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     4
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
489c9b5090e2 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
489c9b5090e2 Initial load
duke
parents:
diff changeset
     7
 * published by the Free Software Foundation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     8
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
489c9b5090e2 Initial load
duke
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
489c9b5090e2 Initial load
duke
parents:
diff changeset
    13
 * accompanied this code).
489c9b5090e2 Initial load
duke
parents:
diff changeset
    14
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
489c9b5090e2 Initial load
duke
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    18
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    19
 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    20
 * CA 95054 USA or visit www.sun.com if you need additional information or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    21
 * have any questions.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    22
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    23
 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    24
489c9b5090e2 Initial load
duke
parents:
diff changeset
    25
#include "incls/_precompiled.incl"
489c9b5090e2 Initial load
duke
parents:
diff changeset
    26
#include "incls/_jvm_solaris.cpp.incl"
489c9b5090e2 Initial load
duke
parents:
diff changeset
    27
489c9b5090e2 Initial load
duke
parents:
diff changeset
    28
#include <signal.h>
489c9b5090e2 Initial load
duke
parents:
diff changeset
    29
489c9b5090e2 Initial load
duke
parents:
diff changeset
    30
// sun.misc.Signal ///////////////////////////////////////////////////////////
489c9b5090e2 Initial load
duke
parents:
diff changeset
    31
// Signal code is mostly copied from classic vm, signals_md.c   1.4 98/08/23
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
/*
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
 * This function is included primarily as a debugging aid. If Java is
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
 * running in a console window, then pressing <CTRL-\\> will cause
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
 * the current state of all active threads and monitors to be written
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
 * to the console window.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
JVM_ENTRY_NO_ENV(void*, JVM_RegisterSignal(jint sig, void* handler))
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
  // Copied from classic vm
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
  // signals_md.c       1.4 98/08/23
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
  void* newHandler = handler == (void *)2
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
                   ? os::user_handler()
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
                   : handler;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
  switch (sig) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
    /* The following are already used by the VM. */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
    case SIGFPE:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
    case SIGILL:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
    case SIGSEGV:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
    /* The following signal is used by the VM to dump thread stacks unless
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
       ReduceSignalUsage is set, in which case the user is allowed to set
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
       his own _native_ handler for this signal; thus, in either case,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
       we do not allow JVM_RegisterSignal to change the handler. */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
    case BREAK_SIGNAL:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
      return (void *)-1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
    /* The following signals are used for Shutdown Hooks support. However, if
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
       ReduceSignalUsage (-Xrs) is set, Shutdown Hooks must be invoked via
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
       System.exit(), Java is not allowed to use these signals, and the the
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
       user is allowed to set his own _native_ handler for these signals and
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
       invoke System.exit() as needed. Terminator.setup() is avoiding
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
       registration of these signals when -Xrs is present.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
       - If the HUP signal is ignored (from the nohup) command, then Java
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
         is not allowed to use this signal.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
     */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
    case SHUTDOWN1_SIGNAL:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
    case SHUTDOWN2_SIGNAL:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
    case SHUTDOWN3_SIGNAL:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
      if (ReduceSignalUsage) return (void*)-1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
      if (os::Solaris::is_sig_ignored(sig)) return (void*)1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
  /* Check parameterized signals. Don't allow sharing of our interrupt signal */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
  if (sig == os::Solaris::SIGinterrupt()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
      return (void *)-1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
  void* oldHandler = os::signal(sig, newHandler);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
  if (oldHandler == os::user_handler()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
      return (void *)2;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
      return oldHandler;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
JVM_END
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
JVM_ENTRY_NO_ENV(jboolean, JVM_RaiseSignal(jint sig))
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
  if (ReduceSignalUsage) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
    // do not allow SHUTDOWN1_SIGNAL,SHUTDOWN2_SIGNAL,SHUTDOWN3_SIGNAL,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
    // BREAK_SIGNAL to be raised when ReduceSignalUsage is set, since
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
    // no handler for them is actually registered in JVM or via
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
    // JVM_RegisterSignal.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
    if (sig == SHUTDOWN1_SIGNAL || sig == SHUTDOWN2_SIGNAL ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
        sig == SHUTDOWN3_SIGNAL || sig == BREAK_SIGNAL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
      return JNI_FALSE;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
  else if ((sig == SHUTDOWN1_SIGNAL || sig == SHUTDOWN2_SIGNAL ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
            sig == SHUTDOWN3_SIGNAL) && os::Solaris::is_sig_ignored(sig)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
    // do not allow SHUTDOWN1_SIGNAL to be raised when SHUTDOWN1_SIGNAL
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
    // is ignored, since no handler for them is actually registered in JVM
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
    // or via JVM_RegisterSignal.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
    // This also applies for SHUTDOWN2_SIGNAL and SHUTDOWN3_SIGNAL
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
    return JNI_FALSE;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
  os::signal_raise(sig);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
  return JNI_TRUE;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
JVM_END
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
/*
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
  All the defined signal names for Solaris are defined by str2sig().
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
  NOTE that not all of these names are accepted by our Java implementation
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
  Via an existing claim by the VM, sigaction restrictions, or
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
  the "rules of Unix" some of these names will be rejected at runtime.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
  For example the VM sets up to handle USR1, sigaction returns EINVAL for
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
  CANCEL, and Solaris simply doesn't allow catching of KILL.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
  Here are the names currently accepted by a user of sun.misc.Signal with
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
  1.4.1 (ignoring potential interaction with use of chaining, etc):
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
      HUP, INT, TRAP, IOT, ABRT, EMT, BUS, SYS, PIPE, ALRM, TERM, USR2,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
      CLD, CHLD, PWR, WINCH, URG, POLL, IO, TSTP, CONT, TTIN, TTOU, VTALRM,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
      PROF, XCPU, XFSZ, FREEZE, THAW, LOST
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
*/
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
JVM_ENTRY_NO_ENV(jint, JVM_FindSignal(const char *name))
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
  int sig;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
  /* return the named signal's number */
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
  if(str2sig(name, &sig))
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
    return -1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
  else
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
    return sig;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
JVM_END
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
//Reconciliation History
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
// 1.4 98/10/07 13:39:41 jvm_win32.cpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
// 1.6 99/06/22 16:39:00 jvm_win32.cpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
//End