mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 20:27:35 +03:00
implement HTTP/3 stream hijacking
This commit is contained in:
parent
a54816867f
commit
48a2cce9df
10 changed files with 152 additions and 37 deletions
|
@ -43,6 +43,7 @@ type roundTripperOpts struct {
|
|||
EnableDatagram bool
|
||||
MaxHeaderBytes int64
|
||||
AdditionalSettings map[uint64]uint64
|
||||
StreamHijacker func(FrameType, quic.Stream) (hijacked bool, err error)
|
||||
}
|
||||
|
||||
// client is a HTTP3 client doing requests
|
||||
|
@ -118,6 +119,9 @@ func (c *client) dial(ctx context.Context) error {
|
|||
}
|
||||
}()
|
||||
|
||||
if c.opts.StreamHijacker != nil {
|
||||
go c.handleBidirectionalStreams()
|
||||
}
|
||||
go c.handleUnidirectionalStreams()
|
||||
return nil
|
||||
}
|
||||
|
@ -136,6 +140,30 @@ func (c *client) setupConn() error {
|
|||
return err
|
||||
}
|
||||
|
||||
func (c *client) handleBidirectionalStreams() {
|
||||
for {
|
||||
str, err := c.conn.AcceptStream(context.Background())
|
||||
if err != nil {
|
||||
c.logger.Debugf("accepting bidirectional stream failed: %s", err)
|
||||
return
|
||||
}
|
||||
go func(str quic.Stream) {
|
||||
for {
|
||||
_, err := parseNextFrame(str, func(ft FrameType) (processed bool, err error) {
|
||||
return c.opts.StreamHijacker(ft, str)
|
||||
})
|
||||
if err == errHijacked {
|
||||
return
|
||||
}
|
||||
if err != nil {
|
||||
c.logger.Debugf("error handling stream: %s", err)
|
||||
}
|
||||
c.conn.CloseWithError(quic.ApplicationErrorCode(errorFrameUnexpected), "received HTTP/3 frame on bidirectional stream")
|
||||
}
|
||||
}(str)
|
||||
}
|
||||
}
|
||||
|
||||
func (c *client) handleUnidirectionalStreams() {
|
||||
for {
|
||||
str, err := c.conn.AcceptUniStream(context.Background())
|
||||
|
@ -165,7 +193,7 @@ func (c *client) handleUnidirectionalStreams() {
|
|||
str.CancelRead(quic.StreamErrorCode(errorStreamCreationError))
|
||||
return
|
||||
}
|
||||
f, err := parseNextFrame(str)
|
||||
f, err := parseNextFrame(str, nil)
|
||||
if err != nil {
|
||||
c.conn.CloseWithError(quic.ApplicationErrorCode(errorFrameError), "")
|
||||
return
|
||||
|
@ -276,7 +304,7 @@ func (c *client) doRequest(
|
|||
return nil, newStreamError(errorInternalError, err)
|
||||
}
|
||||
|
||||
frame, err := parseNextFrame(str)
|
||||
frame, err := parseNextFrame(str, nil)
|
||||
if err != nil {
|
||||
return nil, newStreamError(errorFrameError, err)
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue