mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-05 13:17:36 +03:00
http3: minor simplification of panic handling logic (#4942)
This commit is contained in:
parent
8f27760e60
commit
02e276ed70
2 changed files with 11 additions and 15 deletions
|
@ -684,7 +684,7 @@ func (s *Server) handleRequest(conn *connection, str quic.Stream, datagrams *dat
|
||||||
if logger == nil {
|
if logger == nil {
|
||||||
logger = slog.Default()
|
logger = slog.Default()
|
||||||
}
|
}
|
||||||
logger.Error("http: panic serving", "arg", p, "trace", string(buf))
|
logger.Error("http3: panic serving", "arg", p, "trace", string(buf))
|
||||||
}
|
}
|
||||||
}()
|
}()
|
||||||
handler.ServeHTTP(r, req)
|
handler.ServeHTTP(r, req)
|
||||||
|
@ -694,8 +694,13 @@ func (s *Server) handleRequest(conn *connection, str quic.Stream, datagrams *dat
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
// only write response when there is no panic
|
// abort the stream when there is a panic
|
||||||
if !panicked {
|
if panicked {
|
||||||
|
str.CancelRead(quic.StreamErrorCode(ErrCodeInternalError))
|
||||||
|
str.CancelWrite(quic.StreamErrorCode(ErrCodeInternalError))
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
// response not written to the client yet, set Content-Length
|
// response not written to the client yet, set Content-Length
|
||||||
if !r.headerWritten {
|
if !r.headerWritten {
|
||||||
if _, haveCL := r.header["Content-Length"]; !haveCL {
|
if _, haveCL := r.header["Content-Length"]; !haveCL {
|
||||||
|
@ -704,18 +709,9 @@ func (s *Server) handleRequest(conn *connection, str quic.Stream, datagrams *dat
|
||||||
}
|
}
|
||||||
r.Flush()
|
r.Flush()
|
||||||
r.flushTrailers()
|
r.flushTrailers()
|
||||||
}
|
|
||||||
|
|
||||||
// abort the stream when there is a panic
|
|
||||||
if panicked {
|
|
||||||
str.CancelRead(quic.StreamErrorCode(ErrCodeInternalError))
|
|
||||||
str.CancelWrite(quic.StreamErrorCode(ErrCodeInternalError))
|
|
||||||
return
|
|
||||||
}
|
|
||||||
|
|
||||||
// If the EOF was read by the handler, CancelRead() is a no-op.
|
// If the EOF was read by the handler, CancelRead() is a no-op.
|
||||||
str.CancelRead(quic.StreamErrorCode(ErrCodeNoError))
|
str.CancelRead(quic.StreamErrorCode(ErrCodeNoError))
|
||||||
|
|
||||||
str.Close()
|
str.Close()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -314,7 +314,7 @@ var _ = Describe("Server", func() {
|
||||||
|
|
||||||
s.handleRequest(conn, str, nil, qpackDecoder)
|
s.handleRequest(conn, str, nil, qpackDecoder)
|
||||||
Expect(responseBuf.Bytes()).To(HaveLen(0))
|
Expect(responseBuf.Bytes()).To(HaveLen(0))
|
||||||
Expect(logBuf.String()).To(ContainSubstring("http: panic serving"))
|
Expect(logBuf.String()).To(ContainSubstring("http3: panic serving"))
|
||||||
Expect(logBuf.String()).To(ContainSubstring("foobar"))
|
Expect(logBuf.String()).To(ContainSubstring("foobar"))
|
||||||
})
|
})
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue