/* * Copyright (c) 2001, 2020, Oracle and/or its affiliates. All rights reserved. * Copyright (c) 2012, 2015 SAP SE. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. Oracle designates this * particular file as subject to the "Classpath" exception as provided * by Oracle in the LICENSE file that accompanied this code. * * This code is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License * version 2 for more details (a copy is included in the LICENSE file that * accompanied this code). * * You should have received a copy of the GNU General Public License version * 2 along with this work; if not, write to the Free Software Foundation, * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. * * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA * or visit www.oracle.com if you need additional information or have any * questions. *
*/
/* This is a special library that should be loaded before libc & * libthread to interpose the signal handler installation functions: * sigaction(), signal(), sigset(). * Used for signal-chaining. See RFE 4381843. * Use of signal() and sigset() is now deprecated as these old API's should * not be used - sigaction is the only truly supported API.
*/
/* Used to synchronize the installation of signal handlers. */ static pthread_mutex_t mutex = PTHREAD_MUTEX_INITIALIZER; static pthread_cond_t cond = PTHREAD_COND_INITIALIZER; static pthread_t tid;
staticvoid signal_lock() {
pthread_mutex_lock(&mutex); /* When the jvm is installing its set of signal handlers, threads
* other than the jvm thread should wait. */ if (jvm_signal_installing) { /* tid is not initialized until jvm_signal_installing is set to true. */ if (pthread_equal(tid, pthread_self()) == 0) { do {
pthread_cond_wait(&cond, &mutex);
} while (jvm_signal_installing);
}
}
}
if (os_signal == NULL) { // Deprecation warning first time through
printf(HOTSPOT_VM_DISTRO " VM warning: the use of signal() and sigset() " "for signal chaining was deprecated in version 16.0 and will " "be removed in a future release. Use sigaction() instead.\n"); if (!is_sigset) {
os_signal = (signal_function_t)dlsym(RTLD_NEXT, "signal");
} else {
os_signal = (signal_function_t)dlsym(RTLD_NEXT, "sigset");
} if (os_signal == NULL) {
printf("%s\n", dlerror()); exit(0);
}
}
#ifdef MACOSX /* On macosx, the OS implementation of signal calls sigaction.
* Make sure we do not deadlock with ourself. (See JDK-8072147). */
reentry = true; #endif
sigused = sigismember(&jvmsigs, sig); if (jvm_signal_installed && sigused) { /* jvm has installed its signal handler for this signal. */ /* Save the handler. Don't really install it. */ if (is_sigset) {
sigblocked = sigismember(&(sact[sig].sa_mask), sig);
}
oldhandler = sact[sig].sa_handler;
save_signal_handler(sig, disp, is_sigset);
signal_unlock(); return oldhandler;
} elseif (jvm_signal_installing) { /* jvm is installing its signal handlers. Install the new * handlers and save the old ones. jvm uses sigaction().
* Leave the piece here just in case. */
oldhandler = call_os_signal(sig, disp, is_sigset);
save_signal_handler(sig, oldhandler, is_sigset);
/* Record the signals used by jvm */
sigaddset(&jvmsigs, sig);
signal_unlock(); return oldhandler;
} else { /* jvm has no relation with this signal (yet). Install the
* the handler. */
oldhandler = call_os_signal(sig, disp, is_sigset);
sigused = sigismember(&jvmsigs, sig); if (jvm_signal_installed && sigused) { /* jvm has installed its signal handler for this signal. */ /* Save the handler. Don't really install it. */ if (oact != NULL) {
*oact = sact[sig];
} if (act != NULL) {
sact[sig] = *act;
}
signal_unlock(); return 0;
} elseif (jvm_signal_installing) { /* jvm is installing its signal handlers. * - if this is a modifying sigaction call, we install a new signal handler and store the old one * as chained signal handler. * - if this is a non-modifying sigaction call, we don't change any state; we just return the existing * signal handler in the system (not the stored one). * This works under the assumption that there is only one modifying sigaction call for a specific signal * within the JVM_begin_signal_setting-JVM_end_signal_setting-window. There can be any number of non-modifying * calls, but they will only return the expected preexisting handler if executed before the modifying call.
*/
res = call_os_sigaction(sig, act, &oldAct); if (res == 0) { if (act != NULL) { /* store pre-existing handler as chained handler */
sact[sig] = oldAct; /* Record the signals used by jvm. */
sigaddset(&jvmsigs, sig);
} if (oact != NULL) {
*oact = oldAct;
}
}
signal_unlock(); return res;
} else { /* jvm has no relation with this signal (yet). Install the
* the handler. */
res = call_os_sigaction(sig, act, oact);
signal_unlock(); return res;
}
}
/* The three functions for the jvm to call into. */
JNIEXPORT void JVM_begin_signal_setting() {
signal_lock();
sigemptyset(&jvmsigs);
jvm_signal_installing = true;
tid = pthread_self();
signal_unlock();
}
JNIEXPORT struct sigaction *JVM_get_signal_action(int sig) { /* Does race condition make sense here? */ if (sigismember(&jvmsigs, sig)) { return &sact[sig];
} return NULL;
}
¤ Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.0.25Bemerkung:
(vorverarbeitet)
¤
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung ist noch experimentell.