mirror of
https://github.com/foxcpp/maddy.git
synced 2025-04-05 22:17:39 +03:00
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:
parent
f9d5c0cb02
commit
ec02cca6f8
3 changed files with 32 additions and 1 deletions
|
@ -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 {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue