]> Cypherpunks repositories - gostls13.git/commitdiff
cmd/go/internal/modget: synchronize writes to modOnly map in runGet
authorBryan C. Mills <bcmills@google.com>
Mon, 4 Nov 2019 04:40:44 +0000 (23:40 -0500)
committerBryan C. Mills <bcmills@google.com>
Tue, 5 Nov 2019 19:06:28 +0000 (19:06 +0000)
Fixes #35317

Change-Id: Id858a25dc16a1bbff1802d25bcd4aca31c1133bc
Reviewed-on: https://go-review.googlesource.com/c/go/+/205067
Run-TryBot: Bryan C. Mills <bcmills@google.com>
TryBot-Result: Gobot Gobot <gobot@golang.org>
Reviewed-by: Jay Conrod <jayconrod@google.com>
src/cmd/go/internal/modget/get.go
src/cmd/go/testdata/script/mod_issue35317.txt [new file with mode: 0644]

index eb0534f24b37bafcb43143741dc868e7df55788e..9a6b29350a226906d26942f2736b43734d377697 100644 (file)
@@ -454,6 +454,7 @@ func runGet(cmd *base.Command, args []string) {
        // This includes explicitly requested modules that don't have a root package
        // and modules with a target version of "none".
        var wg sync.WaitGroup
+       var modOnlyMu sync.Mutex
        modOnly := make(map[string]*query)
        for _, q := range queries {
                if q.m.Version == "none" {
@@ -466,7 +467,9 @@ func runGet(cmd *base.Command, args []string) {
                                if hasPkg, err := modload.ModuleHasRootPackage(q.m); err != nil {
                                        base.Errorf("go get: %v", err)
                                } else if !hasPkg {
+                                       modOnlyMu.Lock()
                                        modOnly[q.m.Path] = q
+                                       modOnlyMu.Unlock()
                                }
                                wg.Done()
                        }(q)
diff --git a/src/cmd/go/testdata/script/mod_issue35317.txt b/src/cmd/go/testdata/script/mod_issue35317.txt
new file mode 100644 (file)
index 0000000..003390b
--- /dev/null
@@ -0,0 +1,8 @@
+# Regression test for golang.org/issue/35317:
+# 'go get' with multiple module-only arguments was racy.
+
+env GO111MODULE=on
+[short] skip
+
+go mod init example.com
+go get golang.org/x/text@v0.3.0 golang.org/x/internal@v0.1.0