Skip to content

Commit

Permalink
internal/export/idna: fix infinite loop in Go pre-1.10
Browse files Browse the repository at this point in the history
lookupString returns 0 for incomplete UTF-8 sequences, so to
prevent infinite loops we must specifically check for that case.
However, CL 73730 which fixed this issue in 2017 was lost in the
shuffle that allowed multiple Unicode versions in x/text (CL 83235),
and the fix was never applied to idna9.0.0.go.

This CL fixes that oversight.

Updates golang/go#22184

Change-Id: I3a6ab08b157f4017560020ff259d1afbe49a9e71
Reviewed-on: https://go-review.googlesource.com/c/text/+/361494
Reviewed-by: Damien Neil <dneil@google.com>
TryBot-Result: Gopher Robot <gobot@golang.org>
Run-TryBot: Ian Lance Taylor <iant@golang.org>
Reviewed-by: David Chase <drchase@google.com>
Reviewed-by: Marcel van Lohuizen <mpvl@golang.org>
  • Loading branch information
TimothyGu authored and neild committed Jun 8, 2023
1 parent 48e4a4a commit efb744f
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 1 deletion.
17 changes: 16 additions & 1 deletion internal/export/idna/idna9.0.0.go
Expand Up @@ -197,7 +197,7 @@ type options struct {
bidirule func(s string) bool
}

// A Profile defines the configuration of a IDNA mapper.
// A Profile defines the configuration of an IDNA mapper.
type Profile struct {
options
}
Expand Down Expand Up @@ -426,6 +426,9 @@ func validateRegistration(p *Profile, s string) (string, error) {
}
for i := 0; i < len(s); {
v, sz := trie.lookupString(s[i:])
if sz == 0 {
return s, runeError(utf8.RuneError)
}
// Copy bytes not copied so far.
switch p.simplify(info(v).category()) {
// TODO: handle the NV8 defined in the Unicode idna data set to allow
Expand All @@ -448,6 +451,15 @@ func validateAndMap(p *Profile, s string) (string, error) {
)
for i := 0; i < len(s); {
v, sz := trie.lookupString(s[i:])
if sz == 0 {
b = append(b, s[k:i]...)
b = append(b, "\ufffd"...)
k = len(s)
if err == nil {
err = runeError(utf8.RuneError)
}
break
}
start := i
i += sz
// Copy bytes not copied so far.
Expand Down Expand Up @@ -580,6 +592,9 @@ func validateFromPunycode(p *Profile, s string) error {
}
for i := 0; i < len(s); {
v, sz := trie.lookupString(s[i:])
if sz == 0 {
return runeError(utf8.RuneError)
}
if c := p.simplify(info(v).category()); c != valid && c != deviation {
return &labelError{s, "V6"}
}
Expand Down
1 change: 1 addition & 0 deletions internal/export/idna/idna9.0.0_test.go
Expand Up @@ -78,6 +78,7 @@ func TestLabelErrors(t *testing.T) {
{resolve, "\u3002b", "b", ""},
{resolve, "..b", "b", ""},
{resolve, "b..", "b..", ""},
{resolve, "\xed", "", "P1"},

// Raw punycode
{punyA, "", "", ""},
Expand Down

0 comments on commit efb744f

Please sign in to comment.