Path: blob/aarch64-shenandoah-jdk8u272-b10/hotspot/src/os/bsd/vm/jvm_bsd.cpp
32284 views
/*1* Copyright (c) 1999, 2011, Oracle and/or its affiliates. All rights reserved.2* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.3*4* This code is free software; you can redistribute it and/or modify it5* under the terms of the GNU General Public License version 2 only, as6* published by the Free Software Foundation.7*8* This code is distributed in the hope that it will be useful, but WITHOUT9* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or10* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License11* version 2 for more details (a copy is included in the LICENSE file that12* accompanied this code).13*14* You should have received a copy of the GNU General Public License version15* 2 along with this work; if not, write to the Free Software Foundation,16* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.17*18* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA19* or visit www.oracle.com if you need additional information or have any20* questions.21*22*/2324#include "precompiled.hpp"25#include "prims/jvm.h"26#include "runtime/interfaceSupport.hpp"27#include "runtime/osThread.hpp"2829#include <signal.h>303132// sun.misc.Signal ///////////////////////////////////////////////////////////33// Signal code is mostly copied from classic vm, signals_md.c 1.4 98/08/2334/*35* This function is included primarily as a debugging aid. If Java is36* running in a console window, then pressing <CTRL-\\> will cause37* the current state of all active threads and monitors to be written38* to the console window.39*/4041JVM_ENTRY_NO_ENV(void*, JVM_RegisterSignal(jint sig, void* handler))42// Copied from classic vm43// signals_md.c 1.4 98/08/2344void* newHandler = handler == (void *)245? os::user_handler()46: handler;47switch (sig) {48/* The following are already used by the VM. */49case INTERRUPT_SIGNAL:50case SIGFPE:51case SIGILL:52case SIGSEGV:5354/* The following signal is used by the VM to dump thread stacks unless55ReduceSignalUsage is set, in which case the user is allowed to set56his own _native_ handler for this signal; thus, in either case,57we do not allow JVM_RegisterSignal to change the handler. */58case BREAK_SIGNAL:59return (void *)-1;6061/* The following signals are used for Shutdown Hooks support. However, if62ReduceSignalUsage (-Xrs) is set, Shutdown Hooks must be invoked via63System.exit(), Java is not allowed to use these signals, and the the64user is allowed to set his own _native_ handler for these signals and65invoke System.exit() as needed. Terminator.setup() is avoiding66registration of these signals when -Xrs is present.67- If the HUP signal is ignored (from the nohup) command, then Java68is not allowed to use this signal.69*/7071case SHUTDOWN1_SIGNAL:72case SHUTDOWN2_SIGNAL:73case SHUTDOWN3_SIGNAL:74if (ReduceSignalUsage) return (void*)-1;75if (os::Bsd::is_sig_ignored(sig)) return (void*)1;76}7778void* oldHandler = os::signal(sig, newHandler);79if (oldHandler == os::user_handler()) {80return (void *)2;81} else {82return oldHandler;83}84JVM_END858687JVM_ENTRY_NO_ENV(jboolean, JVM_RaiseSignal(jint sig))88if (ReduceSignalUsage) {89// do not allow SHUTDOWN1_SIGNAL,SHUTDOWN2_SIGNAL,SHUTDOWN3_SIGNAL,90// BREAK_SIGNAL to be raised when ReduceSignalUsage is set, since91// no handler for them is actually registered in JVM or via92// JVM_RegisterSignal.93if (sig == SHUTDOWN1_SIGNAL || sig == SHUTDOWN2_SIGNAL ||94sig == SHUTDOWN3_SIGNAL || sig == BREAK_SIGNAL) {95return JNI_FALSE;96}97}98else if ((sig == SHUTDOWN1_SIGNAL || sig == SHUTDOWN2_SIGNAL ||99sig == SHUTDOWN3_SIGNAL) && os::Bsd::is_sig_ignored(sig)) {100// do not allow SHUTDOWN1_SIGNAL to be raised when SHUTDOWN1_SIGNAL101// is ignored, since no handler for them is actually registered in JVM102// or via JVM_RegisterSignal.103// This also applies for SHUTDOWN2_SIGNAL and SHUTDOWN3_SIGNAL104return JNI_FALSE;105}106107os::signal_raise(sig);108return JNI_TRUE;109JVM_END110111/*112All the defined signal names for Bsd.113114NOTE that not all of these names are accepted by our Java implementation115116Via an existing claim by the VM, sigaction restrictions, or117the "rules of Unix" some of these names will be rejected at runtime.118For example the VM sets up to handle USR1, sigaction returns EINVAL for119STOP, and Bsd simply doesn't allow catching of KILL.120121Here are the names currently accepted by a user of sun.misc.Signal with1221.4.1 (ignoring potential interaction with use of chaining, etc):123124HUP, INT, TRAP, ABRT, IOT, BUS, USR2, PIPE, ALRM, TERM, STKFLT,125CLD, CHLD, CONT, TSTP, TTIN, TTOU, URG, XCPU, XFSZ, VTALRM, PROF,126WINCH, POLL, IO, PWR, SYS127128*/129130struct siglabel {131const char *name;132int number;133};134135struct siglabel siglabels[] = {136/* derived from /usr/include/bits/signum.h on RH7.2 */137"HUP", SIGHUP, /* Hangup (POSIX). */138"INT", SIGINT, /* Interrupt (ANSI). */139"QUIT", SIGQUIT, /* Quit (POSIX). */140"ILL", SIGILL, /* Illegal instruction (ANSI). */141"TRAP", SIGTRAP, /* Trace trap (POSIX). */142"ABRT", SIGABRT, /* Abort (ANSI). */143"EMT", SIGEMT, /* EMT trap */144"FPE", SIGFPE, /* Floating-point exception (ANSI). */145"KILL", SIGKILL, /* Kill, unblockable (POSIX). */146"BUS", SIGBUS, /* BUS error (4.2 BSD). */147"SEGV", SIGSEGV, /* Segmentation violation (ANSI). */148"SYS", SIGSYS, /* Bad system call. Only on some Bsden! */149"PIPE", SIGPIPE, /* Broken pipe (POSIX). */150"ALRM", SIGALRM, /* Alarm clock (POSIX). */151"TERM", SIGTERM, /* Termination (ANSI). */152"URG", SIGURG, /* Urgent condition on socket (4.2 BSD). */153"STOP", SIGSTOP, /* Stop, unblockable (POSIX). */154"TSTP", SIGTSTP, /* Keyboard stop (POSIX). */155"CONT", SIGCONT, /* Continue (POSIX). */156"CHLD", SIGCHLD, /* Child status has changed (POSIX). */157"TTIN", SIGTTIN, /* Background read from tty (POSIX). */158"TTOU", SIGTTOU, /* Background write to tty (POSIX). */159"IO", SIGIO, /* I/O now possible (4.2 BSD). */160"XCPU", SIGXCPU, /* CPU limit exceeded (4.2 BSD). */161"XFSZ", SIGXFSZ, /* File size limit exceeded (4.2 BSD). */162"VTALRM", SIGVTALRM, /* Virtual alarm clock (4.2 BSD). */163"PROF", SIGPROF, /* Profiling alarm clock (4.2 BSD). */164"WINCH", SIGWINCH, /* Window size change (4.3 BSD, Sun). */165"INFO", SIGINFO, /* Information request. */166"USR1", SIGUSR1, /* User-defined signal 1 (POSIX). */167"USR2", SIGUSR2 /* User-defined signal 2 (POSIX). */168};169170JVM_ENTRY_NO_ENV(jint, JVM_FindSignal(const char *name))171172/* find and return the named signal's number */173174for(uint i=0; i<ARRAY_SIZE(siglabels); i++)175if(!strcmp(name, siglabels[i].name))176return siglabels[i].number;177178return -1;179180JVM_END181182// used by os::exception_name()183extern bool signal_name(int signo, char* buf, size_t len) {184for(uint i = 0; i < ARRAY_SIZE(siglabels); i++) {185if (signo == siglabels[i].number) {186jio_snprintf(buf, len, "SIG%s", siglabels[i].name);187return true;188}189}190return false;191}192193194