Skip to content

Commit 8e2b117

Browse files
neildprattmic
authored andcommitted
http2/hpack: avoid quadratic complexity in hpack decoding
When parsing a field literal containing two Huffman-encoded strings, don't decode the first string until verifying all data is present. Avoids forced quadratic complexity when repeatedly parsing a partial field, repeating the Huffman decoding of the string on each iteration. Thanks to Philippe Antoine (Catena cyber) for reporting this issue. Fixes golang/go#57855 Fixes CVE-2022-41723 Change-Id: I58a743df450a4a4923dddd5cf6bb0592b0a7bdf3 Reviewed-on: https://team-review.git.corp.google.com/c/golang/go-private/+/1688184 TryBot-Result: Security TryBots <[email protected]> Reviewed-by: Julie Qiu <[email protected]> Run-TryBot: Damien Neil <[email protected]> Reviewed-by: Roland Shoemaker <[email protected]> Reviewed-on: https://go-review.googlesource.com/c/net/+/468135 Run-TryBot: Michael Pratt <[email protected]> Reviewed-by: Roland Shoemaker <[email protected]> Reviewed-by: Than McIntosh <[email protected]> Auto-Submit: Michael Pratt <[email protected]> TryBot-Result: Gopher Robot <[email protected]>
1 parent 547e7ed commit 8e2b117

File tree

2 files changed

+79
-30
lines changed

2 files changed

+79
-30
lines changed

http2/hpack/hpack.go

+49-30
Original file line numberDiff line numberDiff line change
@@ -359,22 +359,35 @@ func (d *Decoder) parseFieldLiteral(n uint8, it indexType) error {
359359

360360
var hf HeaderField
361361
wantStr := d.emitEnabled || it.indexed()
362+
var undecodedName undecodedString
362363
if nameIdx > 0 {
363364
ihf, ok := d.at(nameIdx)
364365
if !ok {
365366
return DecodingError{InvalidIndexError(nameIdx)}
366367
}
367368
hf.Name = ihf.Name
368369
} else {
369-
hf.Name, buf, err = d.readString(buf, wantStr)
370+
undecodedName, buf, err = d.readString(buf)
370371
if err != nil {
371372
return err
372373
}
373374
}
374-
hf.Value, buf, err = d.readString(buf, wantStr)
375+
undecodedValue, buf, err := d.readString(buf)
375376
if err != nil {
376377
return err
377378
}
379+
if wantStr {
380+
if nameIdx <= 0 {
381+
hf.Name, err = d.decodeString(undecodedName)
382+
if err != nil {
383+
return err
384+
}
385+
}
386+
hf.Value, err = d.decodeString(undecodedValue)
387+
if err != nil {
388+
return err
389+
}
390+
}
378391
d.buf = buf
379392
if it.indexed() {
380393
d.dynTab.add(hf)
@@ -459,46 +472,52 @@ func readVarInt(n byte, p []byte) (i uint64, remain []byte, err error) {
459472
return 0, origP, errNeedMore
460473
}
461474

462-
// readString decodes an hpack string from p.
475+
// readString reads an hpack string from p.
463476
//
464-
// wantStr is whether s will be used. If false, decompression and
465-
// []byte->string garbage are skipped if s will be ignored
466-
// anyway. This does mean that huffman decoding errors for non-indexed
467-
// strings past the MAX_HEADER_LIST_SIZE are ignored, but the server
468-
// is returning an error anyway, and because they're not indexed, the error
469-
// won't affect the decoding state.
470-
func (d *Decoder) readString(p []byte, wantStr bool) (s string, remain []byte, err error) {
477+
// It returns a reference to the encoded string data to permit deferring decode costs
478+
// until after the caller verifies all data is present.
479+
func (d *Decoder) readString(p []byte) (u undecodedString, remain []byte, err error) {
471480
if len(p) == 0 {
472-
return "", p, errNeedMore
481+
return u, p, errNeedMore
473482
}
474483
isHuff := p[0]&128 != 0
475484
strLen, p, err := readVarInt(7, p)
476485
if err != nil {
477-
return "", p, err
486+
return u, p, err
478487
}
479488
if d.maxStrLen != 0 && strLen > uint64(d.maxStrLen) {
480-
return "", nil, ErrStringLength
489+
// Returning an error here means Huffman decoding errors
490+
// for non-indexed strings past the maximum string length
491+
// are ignored, but the server is returning an error anyway
492+
// and because the string is not indexed the error will not
493+
// affect the decoding state.
494+
return u, nil, ErrStringLength
481495
}
482496
if uint64(len(p)) < strLen {
483-
return "", p, errNeedMore
484-
}
485-
if !isHuff {
486-
if wantStr {
487-
s = string(p[:strLen])
488-
}
489-
return s, p[strLen:], nil
497+
return u, p, errNeedMore
490498
}
499+
u.isHuff = isHuff
500+
u.b = p[:strLen]
501+
return u, p[strLen:], nil
502+
}
491503

492-
if wantStr {
493-
buf := bufPool.Get().(*bytes.Buffer)
494-
buf.Reset() // don't trust others
495-
defer bufPool.Put(buf)
496-
if err := huffmanDecode(buf, d.maxStrLen, p[:strLen]); err != nil {
497-
buf.Reset()
498-
return "", nil, err
499-
}
504+
type undecodedString struct {
505+
isHuff bool
506+
b []byte
507+
}
508+
509+
func (d *Decoder) decodeString(u undecodedString) (string, error) {
510+
if !u.isHuff {
511+
return string(u.b), nil
512+
}
513+
buf := bufPool.Get().(*bytes.Buffer)
514+
buf.Reset() // don't trust others
515+
var s string
516+
err := huffmanDecode(buf, d.maxStrLen, u.b)
517+
if err == nil {
500518
s = buf.String()
501-
buf.Reset() // be nice to GC
502519
}
503-
return s, p[strLen:], nil
520+
buf.Reset() // be nice to GC
521+
bufPool.Put(buf)
522+
return s, err
504523
}

http2/hpack/hpack_test.go

+30
Original file line numberDiff line numberDiff line change
@@ -728,6 +728,36 @@ func TestEmitEnabled(t *testing.T) {
728728
}
729729
}
730730

731+
func TestSlowIncrementalDecode(t *testing.T) {
732+
// TODO(dneil): Fix for -race mode.
733+
t.Skip("too slow in -race mode")
734+
735+
var buf bytes.Buffer
736+
enc := NewEncoder(&buf)
737+
hf := HeaderField{
738+
Name: strings.Repeat("k", 1<<20),
739+
Value: strings.Repeat("v", 1<<20),
740+
}
741+
enc.WriteField(hf)
742+
hbuf := buf.Bytes()
743+
count := 0
744+
dec := NewDecoder(initialHeaderTableSize, func(got HeaderField) {
745+
count++
746+
if count != 1 {
747+
t.Errorf("decoded %v fields, want 1", count)
748+
}
749+
if got.Name != hf.Name {
750+
t.Errorf("decoded Name does not match input")
751+
}
752+
if got.Value != hf.Value {
753+
t.Errorf("decoded Value does not match input")
754+
}
755+
})
756+
for i := 0; i < len(hbuf); i++ {
757+
dec.Write(hbuf[i : i+1])
758+
}
759+
}
760+
731761
func TestSaveBufLimit(t *testing.T) {
732762
const maxStr = 1 << 10
733763
var got []HeaderField

0 commit comments

Comments
 (0)