summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/go
diff options
context:
space:
mode:
authorDavide Gardenal <davidegarde2000@gmail.com>2022-03-31 16:39:37 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2022-04-09 08:27:11 +0100
commit048094bcf91ba71f875fff7a8c725f998d2e3f28 (patch)
tree84ae5ce11aa22a371b633ba0da0a32dab3c7d095 /meta/recipes-devtools/go
parentf80b5868fa1501b5188f675d04690a457e1ff724 (diff)
downloadpoky-048094bcf91ba71f875fff7a8c725f998d2e3f28.tar.gz
go: backport patch fix for CVE-2021-38297
Patch taken from https://github.com/golang/go/commit/4548fcc8dfd933c237f29bba6f90040a85922564 from the following issue https://github.com/golang/go/issues/48797 Original repo https://go.googlesource.com/go/+/77f2750f4398990eed972186706f160631d7dae4 (From OE-Core rev: e9e3c3969544d18f0da90a10156c40da84d5b549) Signed-off-by: Davide Gardenal <davide.gardenal@huawei.com> Signed-off-by: Steve Sakoman <steve@sakoman.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/go')
-rw-r--r--meta/recipes-devtools/go/go-1.14.inc2
-rw-r--r--meta/recipes-devtools/go/go-1.14/CVE-2021-38297.patch97
2 files changed, 99 insertions, 0 deletions
diff --git a/meta/recipes-devtools/go/go-1.14.inc b/meta/recipes-devtools/go/go-1.14.inc
index 9b3c3b30a8..08d547a837 100644
--- a/meta/recipes-devtools/go/go-1.14.inc
+++ b/meta/recipes-devtools/go/go-1.14.inc
@@ -19,9 +19,11 @@ SRC_URI += "\
19 file://CVE-2021-34558.patch \ 19 file://CVE-2021-34558.patch \
20 file://CVE-2021-33196.patch \ 20 file://CVE-2021-33196.patch \
21 file://CVE-2021-33197.patch \ 21 file://CVE-2021-33197.patch \
22 file://CVE-2021-38297.patch \
22 file://CVE-2022-23806.patch \ 23 file://CVE-2022-23806.patch \
23 file://CVE-2022-23772.patch \ 24 file://CVE-2022-23772.patch \
24" 25"
26
25SRC_URI_append_libc-musl = " file://0009-ld-replace-glibc-dynamic-linker-with-musl.patch" 27SRC_URI_append_libc-musl = " file://0009-ld-replace-glibc-dynamic-linker-with-musl.patch"
26SRC_URI[main.sha256sum] = "7ed13b2209e54a451835997f78035530b331c5b6943cdcd68a3d815fdc009149" 28SRC_URI[main.sha256sum] = "7ed13b2209e54a451835997f78035530b331c5b6943cdcd68a3d815fdc009149"
27 29
diff --git a/meta/recipes-devtools/go/go-1.14/CVE-2021-38297.patch b/meta/recipes-devtools/go/go-1.14/CVE-2021-38297.patch
new file mode 100644
index 0000000000..24ceabf808
--- /dev/null
+++ b/meta/recipes-devtools/go/go-1.14/CVE-2021-38297.patch
@@ -0,0 +1,97 @@
1From 4548fcc8dfd933c237f29bba6f90040a85922564 Mon Sep 17 00:00:00 2001
2From: Michael Knyszek <mknyszek@google.com>
3Date: Thu, 2 Sep 2021 16:51:59 -0400
4Subject: [PATCH] [release-branch.go1.16] misc/wasm, cmd/link: do not let
5 command line args overwrite global data
6
7On Wasm, wasm_exec.js puts command line arguments at the beginning
8of the linear memory (following the "zero page"). Currently there
9is no limit for this, and a very long command line can overwrite
10the program's data section. Prevent this by limiting the command
11line to 4096 bytes, and in the linker ensuring the data section
12starts at a high enough address (8192).
13
14(Arguably our address assignment on Wasm is a bit confusing. This
15is the minimum fix I can come up with.)
16
17Thanks to Ben Lubar for reporting this issue.
18
19Change by Cherry Mui <cherryyz@google.com>.
20
21For #48797
22Fixes #48799
23Fixes CVE-2021-38297
24
25Change-Id: I0f50fbb2a5b6d0d047e3c134a88988d9133e4ab3
26Reviewed-on: https://team-review.git.corp.google.com/c/golang/go-private/+/1205933
27Reviewed-by: Roland Shoemaker <bracewell@google.com>
28Reviewed-by: Than McIntosh <thanm@google.com>
29Reviewed-on: https://go-review.googlesource.com/c/go/+/354591
30Trust: Michael Knyszek <mknyszek@google.com>
31Reviewed-by: Heschi Kreinick <heschi@google.com>
32
33CVE: CVE-2021-38297
34
35Upstream-Status: Backport:
36https://github.com/golang/go/commit/4548fcc8dfd933c237f29bba6f90040a85922564
37
38Inline of ctxt.isWAsm followin this implemetation:
39https://github.com/golang/go/blob/4548fcc8dfd933c237f29bba6f90040a85922564/src/cmd/link/internal/ld/target.go#L127
40
41Signed-off-by: Davide Gardenal <davide.gardenal@huawei.com>
42---
43 misc/wasm/wasm_exec.js | 7 +++++++
44 src/cmd/link/internal/ld/data.go | 11 ++++++++++-
45 2 files changed, 17 insertions(+), 1 deletion(-)
46
47diff --git a/misc/wasm/wasm_exec.js b/misc/wasm/wasm_exec.js
48index 82041e6bb901..a0a264278b1b 100644
49--- a/misc/wasm/wasm_exec.js
50+++ b/misc/wasm/wasm_exec.js
51@@ -564,6 +564,13 @@
52 offset += 8;
53 });
54
55+ // The linker guarantees global data starts from at least wasmMinDataAddr.
56+ // Keep in sync with cmd/link/internal/ld/data.go:wasmMinDataAddr.
57+ const wasmMinDataAddr = 4096 + 4096;
58+ if (offset >= wasmMinDataAddr) {
59+ throw new Error("command line too long");
60+ }
61+
62 this._inst.exports.run(argc, argv);
63 if (this.exited) {
64 this._resolveExitPromise();
65diff --git a/src/cmd/link/internal/ld/data.go b/src/cmd/link/internal/ld/data.go
66index 52035e96301c..54a1d188cdb9 100644
67--- a/src/cmd/link/internal/ld/data.go
68+++ b/src/cmd/link/internal/ld/data.go
69@@ -2330,6 +2330,11 @@ func assignAddress(ctxt *Link, sect *sym.Section, n int, s loader.Sym, va uint64
70 return sect, n, va
71 }
72
73+// On Wasm, we reserve 4096 bytes for zero page, then 4096 bytes for wasm_exec.js
74+// to store command line args. Data sections starts from at least address 8192.
75+// Keep in sync with wasm_exec.js.
76+const wasmMinDataAddr = 4096 + 4096
77+
78 // address assigns virtual addresses to all segments and sections and
79 // returns all segments in file order.
80 func (ctxt *Link) address() []*sym.Segment {
81@@ -2339,10 +2344,14 @@ func (ctxt *Link) address() []*sym.Segment {
82 order = append(order, &Segtext)
83 Segtext.Rwx = 05
84 Segtext.Vaddr = va
85- for _, s := range Segtext.Sections {
86+ for i, s := range Segtext.Sections {
87 va = uint64(Rnd(int64(va), int64(s.Align)))
88 s.Vaddr = va
89 va += s.Length
90+
91+ if ctxt.Arch.Family == sys.Wasm && i == 0 && va < wasmMinDataAddr {
92+ va = wasmMinDataAddr
93+ }
94 }
95
96 Segtext.Length = va - uint64(*FlagTextAddr)
97 \ No newline at end of file