Forward SIGUSR2 to the sandbox too

SIGUSR2 was being masked out to be used as a way to dump sentry
stacks. This could cause compatibility problems in cases anyone
uses SIGUSR2 to communicate with the container init process.

PiperOrigin-RevId: 201575374
Change-Id: I312246e828f38ad059139bb45b8addc2ed055d74
This commit is contained in:
Fabricio Voznika
2018-06-21 13:22:18 -07:00
committed by Shentubot
parent d571a4359c
commit f6be5fe619
2 changed files with 4 additions and 11 deletions
+2 -8
View File
@@ -95,7 +95,7 @@ func forwardSignals(k *kernel.Kernel, sigchans []chan os.Signal, start, stop cha
// PrepareForwarding ensures that synchronous signals are forwarded to k and
// returns a callback that starts signal delivery, which itself returns a
// callback that stops signal forwarding.
func PrepareForwarding(k *kernel.Kernel) func() func() {
func PrepareForwarding(k *kernel.Kernel, enablePanicSignal bool) func() func() {
start := make(chan struct{})
stop := make(chan struct{})
@@ -112,7 +112,7 @@ func PrepareForwarding(k *kernel.Kernel) func() func() {
sigchans = append(sigchans, sigchan)
// SignalPanic is handled by Run.
if linux.Signal(sig) == kernel.SignalPanic {
if enablePanicSignal && linux.Signal(sig) == kernel.SignalPanic {
continue
}
@@ -128,9 +128,3 @@ func PrepareForwarding(k *kernel.Kernel) func() func() {
}
}
}
// StartForwarding ensures that synchronous signals are forwarded to k and
// returns a callback that stops signal forwarding.
func StartForwarding(k *kernel.Kernel) func() {
return PrepareForwarding(k)()
}
+2 -3
View File
@@ -215,9 +215,8 @@ func New(spec *specs.Spec, conf *Config, controllerFD, restoreFD int, ioFDs []in
if err := sighandling.IgnoreChildStop(); err != nil {
return nil, fmt.Errorf("failed to ignore child stop signals: %v", err)
}
// Ensure that most signals received in sentry context are forwarded to
// the emulated kernel.
stopSignalForwarding := sighandling.StartForwarding(k)
// Ensure that signals received are forwarded to the emulated kernel.
stopSignalForwarding := sighandling.PrepareForwarding(k, false)()
procArgs, err := newProcess(spec, conf, ioFDs, console, creds, utsns, ipcns, k)
if err != nil {