Merge branch 'addmeto.cc' into 'main'

correctly handle TCP connections without forging them for banned hosts

See merge request etke.cc/postmoogle!41
This commit is contained in:
Aine
2022-11-19 16:21:23 +00:00

View File

@@ -9,6 +9,7 @@ import (
// Listener that rejects connections from banned hosts
type Listener struct {
log *logger.Logger
done chan struct{}
listener net.Listener
isBanned func(net.Addr) bool
}
@@ -16,6 +17,7 @@ type Listener struct {
func NewListener(actual net.Listener, isBanned func(net.Addr) bool, log *logger.Logger) *Listener {
return &Listener{
log: log,
done: make(chan struct{}, 1),
listener: actual,
isBanned: isBanned,
}
@@ -23,24 +25,32 @@ func NewListener(actual net.Listener, isBanned func(net.Addr) bool, log *logger.
// Accept waits for and returns the next connection to the listener.
func (l *Listener) Accept() (net.Conn, error) {
for {
conn, err := l.listener.Accept()
if err != nil {
select {
case <-l.done:
return conn, err
default:
l.log.Warn("cannot accept connection: %v", err)
continue
}
}
if l.isBanned(conn.RemoteAddr()) {
conn.Close()
l.log.Info("rejected connection from %q (already banned)", conn.RemoteAddr())
// Due to go-smtp design, any error returned here will crash whole server,
// thus we have to forge a connection
return &net.TCPConn{}, nil
continue
}
l.log.Debug("accepted connection from %q", conn.RemoteAddr())
return conn, nil
}
}
// Close closes the listener.
// Any blocked Accept operations will be unblocked and return errors.
func (l *Listener) Close() error {
close(l.done)
return l.listener.Close()
}