Skip to content

Commit 9b842e2

Browse files
rolandshoemakergopherbot
authored andcommitted
crypto/tls: improve ech parsing errors
Make the errors we return when parsing an ECHConfig slightly more verbose. Fixes #71706 Change-Id: Id138fd9defec71ce492a490a71af4981cb9ede51 Reviewed-on: https://go-review.googlesource.com/c/go/+/650720 Auto-Submit: Roland Shoemaker <[email protected]> LUCI-TryBot-Result: Go LUCI <[email protected]> Reviewed-by: Daniel McCarney <[email protected]> Reviewed-by: Michael Knyszek <[email protected]>
1 parent 3013231 commit 9b842e2

File tree

1 file changed

+28
-17
lines changed

1 file changed

+28
-17
lines changed

src/crypto/tls/ech.go

+28-17
Original file line numberDiff line numberDiff line change
@@ -53,67 +53,78 @@ type echConfig struct {
5353
Extensions []echExtension
5454
}
5555

56-
var errMalformedECHConfig = errors.New("tls: malformed ECHConfigList")
56+
var errMalformedECHConfigList = errors.New("tls: malformed ECHConfigList")
57+
58+
type echConfigErr struct {
59+
field string
60+
}
61+
62+
func (e *echConfigErr) Error() string {
63+
if e.field == "" {
64+
return "tls: malformed ECHConfig"
65+
}
66+
return fmt.Sprintf("tls: malformed ECHConfig, invalid %s field", e.field)
67+
}
5768

5869
func parseECHConfig(enc []byte) (skip bool, ec echConfig, err error) {
5970
s := cryptobyte.String(enc)
6071
ec.raw = []byte(enc)
6172
if !s.ReadUint16(&ec.Version) {
62-
return false, echConfig{}, errMalformedECHConfig
73+
return false, echConfig{}, &echConfigErr{"version"}
6374
}
6475
if !s.ReadUint16(&ec.Length) {
65-
return false, echConfig{}, errMalformedECHConfig
76+
return false, echConfig{}, &echConfigErr{"length"}
6677
}
6778
if len(ec.raw) < int(ec.Length)+4 {
68-
return false, echConfig{}, errMalformedECHConfig
79+
return false, echConfig{}, &echConfigErr{"length"}
6980
}
7081
ec.raw = ec.raw[:ec.Length+4]
7182
if ec.Version != extensionEncryptedClientHello {
7283
s.Skip(int(ec.Length))
7384
return true, echConfig{}, nil
7485
}
7586
if !s.ReadUint8(&ec.ConfigID) {
76-
return false, echConfig{}, errMalformedECHConfig
87+
return false, echConfig{}, &echConfigErr{"config_id"}
7788
}
7889
if !s.ReadUint16(&ec.KemID) {
79-
return false, echConfig{}, errMalformedECHConfig
90+
return false, echConfig{}, &echConfigErr{"kem_id"}
8091
}
8192
if !readUint16LengthPrefixed(&s, &ec.PublicKey) {
82-
return false, echConfig{}, errMalformedECHConfig
93+
return false, echConfig{}, &echConfigErr{"public_key"}
8394
}
8495
var cipherSuites cryptobyte.String
8596
if !s.ReadUint16LengthPrefixed(&cipherSuites) {
86-
return false, echConfig{}, errMalformedECHConfig
97+
return false, echConfig{}, &echConfigErr{"cipher_suites"}
8798
}
8899
for !cipherSuites.Empty() {
89100
var c echCipher
90101
if !cipherSuites.ReadUint16(&c.KDFID) {
91-
return false, echConfig{}, errMalformedECHConfig
102+
return false, echConfig{}, &echConfigErr{"cipher_suites kdf_id"}
92103
}
93104
if !cipherSuites.ReadUint16(&c.AEADID) {
94-
return false, echConfig{}, errMalformedECHConfig
105+
return false, echConfig{}, &echConfigErr{"cipher_suites aead_id"}
95106
}
96107
ec.SymmetricCipherSuite = append(ec.SymmetricCipherSuite, c)
97108
}
98109
if !s.ReadUint8(&ec.MaxNameLength) {
99-
return false, echConfig{}, errMalformedECHConfig
110+
return false, echConfig{}, &echConfigErr{"maximum_name_length"}
100111
}
101112
var publicName cryptobyte.String
102113
if !s.ReadUint8LengthPrefixed(&publicName) {
103-
return false, echConfig{}, errMalformedECHConfig
114+
return false, echConfig{}, &echConfigErr{"public_name"}
104115
}
105116
ec.PublicName = publicName
106117
var extensions cryptobyte.String
107118
if !s.ReadUint16LengthPrefixed(&extensions) {
108-
return false, echConfig{}, errMalformedECHConfig
119+
return false, echConfig{}, &echConfigErr{"extensions"}
109120
}
110121
for !extensions.Empty() {
111122
var e echExtension
112123
if !extensions.ReadUint16(&e.Type) {
113-
return false, echConfig{}, errMalformedECHConfig
124+
return false, echConfig{}, &echConfigErr{"extensions type"}
114125
}
115126
if !extensions.ReadUint16LengthPrefixed((*cryptobyte.String)(&e.Data)) {
116-
return false, echConfig{}, errMalformedECHConfig
127+
return false, echConfig{}, &echConfigErr{"extensions data"}
117128
}
118129
ec.Extensions = append(ec.Extensions, e)
119130
}
@@ -128,10 +139,10 @@ func parseECHConfigList(data []byte) ([]echConfig, error) {
128139
s := cryptobyte.String(data)
129140
var length uint16
130141
if !s.ReadUint16(&length) {
131-
return nil, errMalformedECHConfig
142+
return nil, errMalformedECHConfigList
132143
}
133144
if length != uint16(len(data)-2) {
134-
return nil, errMalformedECHConfig
145+
return nil, errMalformedECHConfigList
135146
}
136147
var configs []echConfig
137148
for len(s) > 0 {

0 commit comments

Comments
 (0)