summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/go/go-1.14/CVE-2022-23772.patch
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-devtools/go/go-1.14/CVE-2022-23772.patch')
-rw-r--r--meta/recipes-devtools/go/go-1.14/CVE-2022-23772.patch50
1 files changed, 50 insertions, 0 deletions
diff --git a/meta/recipes-devtools/go/go-1.14/CVE-2022-23772.patch b/meta/recipes-devtools/go/go-1.14/CVE-2022-23772.patch
new file mode 100644
index 0000000000..f0daee3624
--- /dev/null
+++ b/meta/recipes-devtools/go/go-1.14/CVE-2022-23772.patch
@@ -0,0 +1,50 @@
1From 70882eedccac803ddcf1c3215e0ae8fd59847e39 Mon Sep 17 00:00:00 2001
2From: Katie Hockman <katie@golang.org>
3Date: Sat, 26 Feb 2022 20:03:38 +0000
4Subject: [PATCH] [release-branch.go1.16] math/big: prevent overflow in
5 (*Rat).SetString
6
7Credit to rsc@ for the original patch.
8
9Thanks to the OSS-Fuzz project for discovering this
10issue and to Emmanuel Odeke (@odeke_et) for reporting it.
11
12Updates #50699
13Fixes #50700
14Fixes CVE-2022-23772
15---
16 src/math/big/ratconv.go | 5 +++++
17 src/math/big/ratconv_test.go | 1 +
18 2 files changed, 6 insertions(+)
19
20diff --git a/src/math/big/ratconv.go b/src/math/big/ratconv.go
21index 941139e..e8cbdbe 100644
22--- a/src/math/big/ratconv.go
23+++ b/src/math/big/ratconv.go
24@@ -168,6 +168,11 @@ func (z *Rat) SetString(s string) (*Rat, bool) {
25 n := exp5
26 if n < 0 {
27 n = -n
28+ if n < 0 {
29+ // This can occur if -n overflows. -(-1 << 63) would become
30+ // -1 << 63, which is still negative.
31+ return nil, false
32+ }
33 }
34 pow5 := z.b.abs.expNN(natFive, nat(nil).setWord(Word(n)), nil) // use underlying array of z.b.abs
35 if exp5 > 0 {
36diff --git a/src/math/big/ratconv_test.go b/src/math/big/ratconv_test.go
37index ba0d1ba..b820df4 100644
38--- a/src/math/big/ratconv_test.go
39+++ b/src/math/big/ratconv_test.go
40@@ -104,6 +104,7 @@ var setStringTests = []StringTest{
41 {in: "4/3/"},
42 {in: "4/3."},
43 {in: "4/"},
44+ {in: "13e-9223372036854775808"}, // CVE-2022-23772
45
46 // valid
47 {"0", "0", true},
48--
492.17.1
50