Add more recover() at goroutine start points

This is a double-edged sword though as blind panic recovery
can lead to consistency issues in program state.

In particular, halting imapsql update push due to panic can lead
to a deadlock in IMAP code.

Panic in MTA-STS cache maintenance routine can lead to degraded
security.
This commit is contained in:
fox.cpp 2020-09-10 20:41:12 +03:00
parent f9d5c0cb02
commit ec02cca6f8
No known key found for this signature in database
GPG key ID: 5B991F6215D2FCC0
3 changed files with 32 additions and 1 deletions

View file

@ -33,6 +33,7 @@ import (
"fmt"
"os"
"path/filepath"
"runtime/debug"
"runtime/trace"
"strconv"
"strings"
@ -387,6 +388,11 @@ func (store *Storage) EnableUpdatePipe(mode updatepipe.BackendMode) error {
defer func() {
store.updPushStop <- struct{}{}
close(wrapped)
if err := recover(); err != nil {
stack := debug.Stack()
log.Printf("panic during imapsql update push: %v\n%s", err, stack)
}
}()
for {