Path: blob/aarch64-shenandoah-jdk8u272-b10/hotspot/src/os/aix/vm/jvm_aix.cpp
32284 views
/*1* Copyright (c) 1999, 2013, Oracle and/or its affiliates. All rights reserved.2* Copyright 2012, 2013 SAP AG. 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 it6* under the terms of the GNU General Public License version 2 only, as7* published by the Free Software Foundation.8*9* This code is distributed in the hope that it will be useful, but WITHOUT10* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or11* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License12* version 2 for more details (a copy is included in the LICENSE file that13* accompanied this code).14*15* You should have received a copy of the GNU General Public License version16* 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 USA20* or visit www.oracle.com if you need additional information or have any21* questions.22*23*/2425#include "precompiled.hpp"26#include "prims/jvm.h"27#include "runtime/interfaceSupport.hpp"28#include "runtime/osThread.hpp"2930#include <signal.h>313233// sun.misc.Signal ///////////////////////////////////////////////////////////34// Signal code is mostly copied from classic vm, signals_md.c 1.4 98/08/2335/*36* This function is included primarily as a debugging aid. If Java is37* running in a console window, then pressing <CTRL-\\> will cause38* the current state of all active threads and monitors to be written39* to the console window.40*/4142JVM_ENTRY_NO_ENV(void*, JVM_RegisterSignal(jint sig, void* handler))43// Copied from classic vm44// signals_md.c 1.4 98/08/2345void* newHandler = handler == (void *)246? os::user_handler()47: handler;48switch (sig) {49/* The following are already used by the VM. */50case INTERRUPT_SIGNAL:51case SIGFPE:52case SIGILL:53case SIGSEGV:5455/* The following signal is used by the VM to dump thread stacks unless56ReduceSignalUsage is set, in which case the user is allowed to set57his own _native_ handler for this signal; thus, in either case,58we do not allow JVM_RegisterSignal to change the handler. */59case BREAK_SIGNAL:60return (void *)-1;6162/* The following signals are used for Shutdown Hooks support. However, if63ReduceSignalUsage (-Xrs) is set, Shutdown Hooks must be invoked via64System.exit(), Java is not allowed to use these signals, and the the65user is allowed to set his own _native_ handler for these signals and66invoke System.exit() as needed. Terminator.setup() is avoiding67registration of these signals when -Xrs is present.68- If the HUP signal is ignored (from the nohup) command, then Java69is not allowed to use this signal.70*/7172case SHUTDOWN1_SIGNAL:73case SHUTDOWN2_SIGNAL:74case SHUTDOWN3_SIGNAL:75if (ReduceSignalUsage) return (void*)-1;76if (os::Aix::is_sig_ignored(sig)) return (void*)1;77}7879void* oldHandler = os::signal(sig, newHandler);80if (oldHandler == os::user_handler()) {81return (void *)2;82} else {83return oldHandler;84}85JVM_END868788JVM_ENTRY_NO_ENV(jboolean, JVM_RaiseSignal(jint sig))89if (ReduceSignalUsage) {90// do not allow SHUTDOWN1_SIGNAL,SHUTDOWN2_SIGNAL,SHUTDOWN3_SIGNAL,91// BREAK_SIGNAL to be raised when ReduceSignalUsage is set, since92// no handler for them is actually registered in JVM or via93// JVM_RegisterSignal.94if (sig == SHUTDOWN1_SIGNAL || sig == SHUTDOWN2_SIGNAL ||95sig == SHUTDOWN3_SIGNAL || sig == BREAK_SIGNAL) {96return JNI_FALSE;97}98}99else if ((sig == SHUTDOWN1_SIGNAL || sig == SHUTDOWN2_SIGNAL ||100sig == SHUTDOWN3_SIGNAL) && os::Aix::is_sig_ignored(sig)) {101// do not allow SHUTDOWN1_SIGNAL to be raised when SHUTDOWN1_SIGNAL102// is ignored, since no handler for them is actually registered in JVM103// or via JVM_RegisterSignal.104// This also applies for SHUTDOWN2_SIGNAL and SHUTDOWN3_SIGNAL105return JNI_FALSE;106}107108os::signal_raise(sig);109return JNI_TRUE;110JVM_END111112/*113All the defined signal names for Linux.114115NOTE that not all of these names are accepted by our Java implementation116117Via an existing claim by the VM, sigaction restrictions, or118the "rules of Unix" some of these names will be rejected at runtime.119For example the VM sets up to handle USR1, sigaction returns EINVAL for120STOP, and Linux simply doesn't allow catching of KILL.121122Here are the names currently accepted by a user of sun.misc.Signal with1231.4.1 (ignoring potential interaction with use of chaining, etc):124125HUP, INT, TRAP, ABRT, IOT, BUS, USR2, PIPE, ALRM, TERM, STKFLT,126CLD, CHLD, CONT, TSTP, TTIN, TTOU, URG, XCPU, XFSZ, VTALRM, PROF,127WINCH, POLL, IO, PWR, SYS128129*/130131struct siglabel {132const char *name;133int number;134};135136struct siglabel siglabels[] = {137/* derived from /usr/include/bits/signum.h on RH7.2 */138"HUP", SIGHUP, /* Hangup (POSIX). */139"INT", SIGINT, /* Interrupt (ANSI). */140"QUIT", SIGQUIT, /* Quit (POSIX). */141"ILL", SIGILL, /* Illegal instruction (ANSI). */142"TRAP", SIGTRAP, /* Trace trap (POSIX). */143"ABRT", SIGABRT, /* Abort (ANSI). */144"IOT", SIGIOT, /* IOT trap (4.2 BSD). */145"BUS", SIGBUS, /* BUS error (4.2 BSD). */146"FPE", SIGFPE, /* Floating-point exception (ANSI). */147"KILL", SIGKILL, /* Kill, unblockable (POSIX). */148"USR1", SIGUSR1, /* User-defined signal 1 (POSIX). */149"SEGV", SIGSEGV, /* Segmentation violation (ANSI). */150"USR2", SIGUSR2, /* User-defined signal 2 (POSIX). */151"PIPE", SIGPIPE, /* Broken pipe (POSIX). */152"ALRM", SIGALRM, /* Alarm clock (POSIX). */153"TERM", SIGTERM, /* Termination (ANSI). */154#ifdef SIGSTKFLT155"STKFLT", SIGSTKFLT, /* Stack fault. */156#endif157"CLD", SIGCLD, /* Same as SIGCHLD (System V). */158"CHLD", SIGCHLD, /* Child status has changed (POSIX). */159"CONT", SIGCONT, /* Continue (POSIX). */160"STOP", SIGSTOP, /* Stop, unblockable (POSIX). */161"TSTP", SIGTSTP, /* Keyboard stop (POSIX). */162"TTIN", SIGTTIN, /* Background read from tty (POSIX). */163"TTOU", SIGTTOU, /* Background write to tty (POSIX). */164"URG", SIGURG, /* Urgent condition on socket (4.2 BSD). */165"XCPU", SIGXCPU, /* CPU limit exceeded (4.2 BSD). */166"XFSZ", SIGXFSZ, /* File size limit exceeded (4.2 BSD). */167"DANGER", SIGDANGER, /* System crash imminent; free up some page space (AIX). */168"VTALRM", SIGVTALRM, /* Virtual alarm clock (4.2 BSD). */169"PROF", SIGPROF, /* Profiling alarm clock (4.2 BSD). */170"WINCH", SIGWINCH, /* Window size change (4.3 BSD, Sun). */171"POLL", SIGPOLL, /* Pollable event occurred (System V). */172"IO", SIGIO, /* I/O now possible (4.2 BSD). */173"PWR", SIGPWR, /* Power failure restart (System V). */174#ifdef SIGSYS175"SYS", SIGSYS /* Bad system call. Only on some Linuxen! */176#endif177};178179JVM_ENTRY_NO_ENV(jint, JVM_FindSignal(const char *name))180181/* find and return the named signal's number */182183for(uint i=0; i<ARRAY_SIZE(siglabels); i++)184if(!strcmp(name, siglabels[i].name))185return siglabels[i].number;186187return -1;188189JVM_END190191// used by os::exception_name()192extern bool signal_name(int signo, char* buf, size_t len) {193for(uint i = 0; i < ARRAY_SIZE(siglabels); i++) {194if (signo == siglabels[i].number) {195jio_snprintf(buf, len, "SIG%s", siglabels[i].name);196return true;197}198}199return false;200}201202203