-
Notifications
You must be signed in to change notification settings - Fork 17.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
runtime: killed threads do not crash whole process #30753
Comments
I don't know what we can do here. I'm open to suggestions. |
If it's not possible to detect silently crashed / killed threads from Go runtime, I guess I can ask systemd to implement
Feel free to close if it's not possible. |
Thanks. I don't know that it's not possible. I just don't know of a way to do it. |
Killing just a thread like this seems like it would break all sorts of things, not just Go. Is this really standard behavior for systemd? I'm also confused because your strace output indicates a SIGSYS, but Go is supposed to trap SIGSYS and turn it into a fatal runtime panic. Does seccomp somehow produce a SIGSYS that can't actually be trapped? |
Yes, by default seccomp's SIGSYS is untrappable:
It can be trapped if
I agree that killing a thread seems a bit weird in context of systemd and mentioned it here: |
So currently it looks like systemd can do 2 things when it comes to not allowed syscalls ( more detailed explanation can be found at https://www.freedesktop.org/software/systemd/man/systemd.exec.html#System%20Call%20Filtering:
This doesn't look like what we want ever.
One interesting thing i noted out of this is that we call |
I don't think it matters if |
What version of Go are you using (
go version
)?Does this issue reproduce with the latest release?
Yes
What operating system and processor architecture are you using (
go env
)?go env
OutputWhat did you do?
I have a program running under systemd and with
SystemCallFilter
applied. My list of allowed syscalls does not includemadvise
, which eventually leads to:Here one thread is killed by
SIGSYS
for seccomp violation.What did you expect to see?
Whole process panics, clearly indicating failure.
What did you see instead?
One thread is dead and random part of my program is not working anymore (either reads from channel or udp socket, not so sure).
The text was updated successfully, but these errors were encountered: