forwarder: better pipe error handling

This commit is contained in:
Toby 2020-04-11 15:47:53 -07:00
parent 246c2ce89c
commit f0c647004f
2 changed files with 24 additions and 10 deletions

View file

@ -187,14 +187,21 @@ func (c *QUICClient) handleConn(conn net.Conn) {
return return
} }
defer stream.Close() defer stream.Close()
// From TCP to QUIC // Pipes
errChan := make(chan error, 2)
go func() { go func() {
_ = utils.Pipe(conn, stream, &c.outboundBytes) // TCP to QUIC
errChan <- utils.Pipe(conn, stream, &c.outboundBytes)
_ = conn.Close() _ = conn.Close()
_ = stream.Close() _ = stream.Close()
}() }()
// From QUIC to TCP go func() {
err = utils.Pipe(stream, conn, &c.inboundBytes) // QUIC to TCP
// Closed errChan <- utils.Pipe(stream, conn, &c.inboundBytes)
_ = conn.Close()
_ = stream.Close()
}()
// We only need the first error
err = <-errChan
c.onTCPConnectionClosed(conn.RemoteAddr(), err) c.onTCPConnectionClosed(conn.RemoteAddr(), err)
} }

View file

@ -160,14 +160,21 @@ func (s *QUICServer) handleStream(addr net.Addr, name string, stream quic.Stream
return return
} }
defer tcpConn.Close() defer tcpConn.Close()
// From TCP to QUIC // Pipes
errChan := make(chan error, 2)
go func() { go func() {
_ = utils.Pipe(tcpConn, stream, &s.outboundBytes) // TCP to QUIC
errChan <- utils.Pipe(tcpConn, stream, &s.outboundBytes)
_ = tcpConn.Close() _ = tcpConn.Close()
_ = stream.Close() _ = stream.Close()
}() }()
// From QUIC to TCP go func() {
err = utils.Pipe(stream, tcpConn, &s.inboundBytes) // QUIC to TCP
// Closed errChan <- utils.Pipe(stream, tcpConn, &s.inboundBytes)
_ = tcpConn.Close()
_ = stream.Close()
}()
// We only need the first error
err = <-errChan
s.onClientStreamClosed(addr, name, int(stream.StreamID()), err) s.onClientStreamClosed(addr, name, int(stream.StreamID()), err)
} }