Fix process-wide signal handler override in JNI_OnLoad#632
Open
rfcom wants to merge 1 commit intoFazecast:masterfrom
Open
Fix process-wide signal handler override in JNI_OnLoad#632rfcom wants to merge 1 commit intoFazecast:masterfrom
rfcom wants to merge 1 commit intoFazecast:masterfrom
Conversation
JNI_OnLoad called sigaction() to set SIGUSR1 and SIGUSR2 to SIG_IGN, overwriting the JVM's signal chain process-wide without saving the previous handler (third argument NULL instead of &oldAction). On Linux, JavaScriptCore (WebKit) uses SIGUSR1 to suspend threads during garbage collection: the GC thread sends SIGUSR1 via pthread_kill to all threads, and each thread's handler calls sem_post to acknowledge. With SIG_IGN, the acknowledgement never arrives and the GC thread waits indefinitely, causing a permanent hang in any JavaFX WebView application that uses jSerialComm. Remove all sigaction() calls from JNI_OnLoad. Replace with per-thread pthread_sigmask() calls in the two event reader threads, which blocks only the signals that could interrupt serial port I/O in those specific threads without affecting the rest of the process. SIGUSR1 and SIGUSR2 are intentionally NOT blocked. These threads must remain suspendable by the JVM GC — blocking them would prevent garbage collection from working on those threads. The other signals (SIGHUP, SIGTTOU, SIGTTIN) are also unnecessary process-wide because serial ports are opened with O_NOCTTY, which prevents them from becoming the controlling terminal. Fixes Fazecast#631
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
JNI_OnLoad called sigaction() to set SIGUSR1 and SIGUSR2 to SIG_IGN, overwriting the JVM's signal chain process-wide without saving the previous handler (third argument NULL instead of &oldAction).
On Linux, JavaScriptCore (WebKit) uses SIGUSR1 to suspend threads during garbage collection: the GC thread sends SIGUSR1 via pthread_kill to all threads, and each thread's handler calls sem_post to acknowledge. With SIG_IGN, the acknowledgement never arrives and the GC thread waits indefinitely, causing a permanent hang in any JavaFX WebView application that uses jSerialComm.
Remove all sigaction() calls from JNI_OnLoad. Replace with per-thread pthread_sigmask() calls in the two event reader threads, which blocks only the signals that could interrupt serial port I/O in those specific threads without affecting the rest of the process.
SIGUSR1 and SIGUSR2 are intentionally NOT blocked. These threads must remain suspendable by the JVM GC — blocking them would prevent garbage collection from working on those threads.
The other signals (SIGHUP, SIGTTOU, SIGTTIN) are also unnecessary process-wide because serial ports are opened with O_NOCTTY, which prevents them from becoming the controlling terminal.
Fixes #631