aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2023-08-02[release-branch.go1.21] go1.21rc4go1.21rc4Gopher Robot
Change-Id: I4a166f3d04747703f2c0b3c3f245d9cde44f3068 Reviewed-on: https://go-review.googlesource.com/c/go/+/514777 Reviewed-by: David Chase <drchase@google.com> Run-TryBot: Gopher Robot <gobot@golang.org> Auto-Submit: Gopher Robot <gobot@golang.org> TryBot-Result: Gopher Robot <gobot@golang.org> Reviewed-by: Russ Cox <rsc@golang.org>
2023-08-01[release-branch.go1.21] crypto/tls: restrict RSA keys in certificates to <= ↵Roland Shoemaker
8192 bits Extremely large RSA keys in certificate chains can cause a client/server to expend significant CPU time verifying signatures. Limit this by restricting the size of RSA keys transmitted during handshakes to <= 8192 bits. Based on a survey of publicly trusted RSA keys, there are currently only three certificates in circulation with keys larger than this, and all three appear to be test certificates that are not actively deployed. It is possible there are larger keys in use in private PKIs, but we target the web PKI, so causing breakage here in the interests of increasing the default safety of users of crypto/tls seems reasonable. Thanks to Mateusz Poliwczak for reporting this issue. Updates #61460 Fixes CVE-2023-29409 Change-Id: Ie35038515a649199a36a12fc2c5df3af855dca6c Reviewed-on: https://team-review.git.corp.google.com/c/golang/go-private/+/1912161 Reviewed-by: Damien Neil <dneil@google.com> Reviewed-by: Tatiana Bradley <tatianabradley@google.com> Run-TryBot: Roland Shoemaker <bracewell@google.com> (cherry picked from commit d865c715d92887361e4bd5596e19e513f27781b7) Reviewed-on: https://go-review.googlesource.com/c/go/+/515056 Run-TryBot: David Chase <drchase@google.com> TryBot-Result: Gopher Robot <gobot@golang.org>
2023-08-01[release-branch.go1.21] cmd/go: make go list -m -u all not complain about ↵Russ Cox
missing checksums This is a band-aid of a fix for Go 1.21, to create space to work on a real fix for Go 1.22, if in fact the real fix is different. It simply disables the go.sum update check during go list -m -u. I don't have a self-contained test for the breakage. See #61605. All existing tests continue to pass. For #61605. After merging into the Go 1.21 branch we can move #61605 to the Go 1.22 milestone. Change-Id: Ib155710092003f08d2a6ce0aefa8e0270cad5a5c Reviewed-on: https://go-review.googlesource.com/c/go/+/514899 Reviewed-by: Michael Matloob <matloob@golang.org> Run-TryBot: Russ Cox <rsc@golang.org> TryBot-Result: Gopher Robot <gobot@golang.org> Reviewed-by: Dmitri Shuralyov <dmitshur@golang.org> Reviewed-by: Dmitri Shuralyov <dmitshur@google.com>
2023-07-31[release-branch.go1.21] misc/wasm: switch default WASI runtimeJohan Brandhorst-Satzkorn
The default WASI runtime was originally set to Wazero, because it was the first runtime used to test the Go implementation and because we could easily find and fix issues in our implementation and theirs. In CL 498675 we switched the default wasip1 runner to Wasmtime as it runs faster and is a more established and mature runtime. We should switch the default runtime to Wasmtime to consistently promote Wasmtime as the primary tested and approved runtime. Change-Id: Ic6c064142321af90f015e02b7fe0e71444d8842c Reviewed-on: https://go-review.googlesource.com/c/go/+/513235 TryBot-Result: Gopher Robot <gobot@golang.org> Reviewed-by: Eli Bendersky <eliben@google.com> Run-TryBot: Johan Brandhorst-Satzkorn <johan.brandhorst@gmail.com> Auto-Submit: Johan Brandhorst-Satzkorn <johan.brandhorst@gmail.com> Reviewed-by: Dmitri Shuralyov <dmitshur@google.com> Reviewed-by: Dmitri Shuralyov <dmitshur@golang.org> (cherry picked from commit 4918490962ebda2b055bd1d160af9e9daa529522) Reviewed-on: https://go-review.googlesource.com/c/go/+/514155 Auto-Submit: Dmitri Shuralyov <dmitshur@golang.org> Reviewed-by: David Chase <drchase@google.com>
2023-07-31[release-branch.go1.21] spec: update spec to version at tipRobert Griesemer
This updates the spec by copying over several recent CLs describing the new type inference mechanisms. Fixes #61659. Change-Id: I750c901e73e0404f782a3632f5cd936e3775ae13 Reviewed-on: https://go-review.googlesource.com/c/go/+/514435 Reviewed-by: Robert Griesemer <gri@google.com> Auto-Submit: Robert Griesemer <gri@google.com> TryBot-Bypass: Robert Griesemer <gri@google.com> Reviewed-by: Ian Lance Taylor <iant@google.com>
2023-07-31[release-branch.go1.21 cmd/cgo/internal/test: don't pass -lm on darwinCherry Mui
On darwin, -lm is not necessary as the math functions are included in libSystem. Passing -lm multiple times results in linker warnings. Don't pass it on darwin. For #61229. Change-Id: I72d8dab1f0eead68cbeb176ac97b8ed1a0cfddab Reviewed-on: https://go-review.googlesource.com/c/go/+/508697 Run-TryBot: Cherry Mui <cherryyz@google.com> TryBot-Result: Gopher Robot <gobot@golang.org> Reviewed-by: Than McIntosh <thanm@google.com> (cherry picked from commit 333c80694c797b5540c959f33c710bc6eba0d141) Reviewed-on: https://go-review.googlesource.com/c/go/+/513758
2023-07-28[release-branch.go1.21] cmd/dist: handle -json flag in runPending (minimal)Dmitri Shuralyov
The -json flag is new to Go 1.21, but missed skips in runPending. This CL adds minimal code to fix that. CL 512115 cleans up a bit. For #37486. Fixes #61557. Change-Id: I53e426c9a5585b2703f0ff6661a0470e1993f960 Reviewed-on: https://go-review.googlesource.com/c/go/+/513761 TryBot-Result: Gopher Robot <gobot@golang.org> Reviewed-by: Austin Clements <austin@google.com> Reviewed-by: Dmitri Shuralyov <dmitshur@google.com> Run-TryBot: Dmitri Shuralyov <dmitshur@golang.org> Auto-Submit: Dmitri Shuralyov <dmitshur@golang.org>
2023-07-27[release-branch.go1.21] maps: remove Keys and ValuesIan Lance Taylor
Preserve the names in case we want them to return an iterator. Keep the efficient runtime implementations for now, as we will probably want them under some name, perhaps KeysSlice and ValuesSlice. Fixes #61538 Change-Id: I6b03010bf071fb4531cb2f967dad46425962fcb8 Reviewed-on: https://go-review.googlesource.com/c/go/+/513476 Run-TryBot: Ian Lance Taylor <iant@golang.org> Auto-Submit: Ian Lance Taylor <iant@google.com> Reviewed-by: Ian Lance Taylor <iant@google.com> Run-TryBot: Ian Lance Taylor <iant@google.com> TryBot-Result: Gopher Robot <gobot@golang.org> Reviewed-by: Russ Cox <rsc@golang.org> Reviewed-on: https://go-review.googlesource.com/c/go/+/513715 Run-TryBot: Russ Cox <rsc@golang.org>
2023-07-27[release-branch.go1.21] cmd/link: don't generate DYSYMTAB when external ↵Cherry Mui
linking on Mach-O When external linking, the external linker will generate it. Updates #60694. For #61229. Change-Id: I086a7628dd9baa84b46315641746fc3640473f2b Reviewed-on: https://go-review.googlesource.com/c/go/+/502617 Reviewed-by: Than McIntosh <thanm@google.com> Run-TryBot: Cherry Mui <cherryyz@google.com> TryBot-Result: Gopher Robot <gobot@golang.org> (cherry picked from commit f55e7e104bbef911f1495b39c3c2ff366ad3be4d) Reviewed-on: https://go-review.googlesource.com/c/go/+/513757
2023-07-24[release-branch.go1.21] log/slog: fix comment above log levelszikaeroh
This extra newline causes pkg.go.dev and gopls to only show the bottom half of this comment; I'm pretty sure this entire thing is meant to be in the docs. Change-Id: I5bbf081fb2072d9d773d5a995bc3693dc44f65ff Reviewed-on: https://go-review.googlesource.com/c/go/+/511855 Run-TryBot: Jonathan Amsterdam <jba@google.com> Reviewed-by: Jonathan Amsterdam <jba@google.com> Reviewed-by: Carlos Amedee <carlos@golang.org> TryBot-Result: Gopher Robot <gobot@golang.org> Reviewed-on: https://go-review.googlesource.com/c/go/+/512199 Reviewed-by: Dmitri Shuralyov <dmitshur@golang.org> Run-TryBot: Dmitri Shuralyov <dmitshur@golang.org> Reviewed-by: Dmitri Shuralyov <dmitshur@google.com> Auto-Submit: Dmitri Shuralyov <dmitshur@golang.org>
2023-07-24[release-branch.go1.21] go/types, types2: update documentation for GoVersionRob Findley
Update the documentation for Config.GoVersion to reflect the changes made for #61175. Change-Id: I9f3fbcf8ee88e52d6a5e7cf80dad3d2fb5313893 Reviewed-on: https://go-review.googlesource.com/c/go/+/511096 TryBot-Result: Gopher Robot <gobot@golang.org> Run-TryBot: Robert Findley <rfindley@google.com> Reviewed-by: Robert Griesemer <gri@google.com> (cherry picked from commit 12f3d6858e73abf6bc78c8fe5ce5d0220ffaeb5c) Reviewed-on: https://go-review.googlesource.com/c/go/+/511699 Run-TryBot: Dmitri Shuralyov <dmitshur@golang.org>
2023-07-21[release-branch.go1.21] cmd/dist: apply timeout scale even if timeout isn't ↵Dmitri Shuralyov
overridden The timeout field is documented as being available so that it's possible to override timeout by setting a non-zero value. If it's left at zero, we don't need to override the default go test timeout, but we still need to apply the timeout scale whenever it's something other than 1. Fixes #61468. Change-Id: I63634e9b3ef8c4ec7f334b5a6b4bf3cad121355c Reviewed-on: https://go-review.googlesource.com/c/go/+/511976 Reviewed-by: Bryan Mills <bcmills@google.com> TryBot-Result: Gopher Robot <gobot@golang.org> Auto-Submit: Dmitri Shuralyov <dmitshur@golang.org> Run-TryBot: Dmitri Shuralyov <dmitshur@golang.org> Reviewed-by: Dmitri Shuralyov <dmitshur@google.com>
2023-07-21[release-branch.go1.21] cmd/asm, cmd/internal/obj: generate proper atomic ↵Meng Zhuo
ops for riscv64 Go's memory model closely follows the approach C++ concurrency memory model (https://go.dev/ref/mem) and Go atomic "has the same semantics as C++'s sequentially consistent atomics". Meanwhile according to RISCV manual A.6 "Mappings from C/C++ primitives to RISC-V primitives". C/C++ atomic operations (memory_order_acq_rel) should be map to "amo<op>.{w|d}.aqrl" LR/SC (memory_order_acq_rel) should map to "lr.{w|d}.aq; <op>; sc.{w|d}.rl" goos: linux goarch: riscv64 pkg: runtime/internal/atomic │ atomic.old.bench │ atomic.new.bench │ │ sec/op │ sec/op vs base │ AtomicLoad64-4 4.216n ± 1% 4.202n ± 0% ~ (p=0.127 n=10) AtomicStore64-4 5.040n ± 0% 6.718n ± 0% +33.30% (p=0.000 n=10) AtomicLoad-4 4.217n ± 0% 4.213n ± 0% ~ (p=0.145 n=10) AtomicStore-4 5.040n ± 0% 6.718n ± 0% +33.30% (p=0.000 n=10) And8-4 9.237n ± 0% 9.240n ± 0% ~ (p=0.582 n=10) And-4 5.878n ± 0% 6.719n ± 0% +14.31% (p=0.000 n=10) And8Parallel-4 28.44n ± 0% 28.46n ± 0% +0.07% (p=0.000 n=10) AndParallel-4 28.40n ± 0% 28.43n ± 0% +0.11% (p=0.000 n=10) Or8-4 8.399n ± 0% 8.398n ± 0% ~ (p=0.357 n=10) Or-4 5.879n ± 0% 6.718n ± 0% +14.27% (p=0.000 n=10) Or8Parallel-4 28.43n ± 0% 28.45n ± 0% +0.09% (p=0.000 n=10) OrParallel-4 28.40n ± 0% 28.43n ± 0% +0.11% (p=0.000 n=10) Xadd-4 30.05n ± 0% 30.10n ± 0% +0.18% (p=0.000 n=10) Xadd64-4 30.05n ± 0% 30.09n ± 0% +0.12% (p=0.000 n=10) Cas-4 60.48n ± 0% 61.13n ± 0% +1.08% (p=0.000 n=10) Cas64-4 62.28n ± 0% 62.34n ± 0% ~ (p=0.810 n=10) Xchg-4 30.05n ± 0% 30.09n ± 0% +0.15% (p=0.000 n=10) Xchg64-4 30.05n ± 0% 30.09n ± 0% +0.13% (p=0.000 n=10) geomean 15.42n 16.17n +4.89% Fixes #61295 Change-Id: I97b5325db50467eeec36fb079bded7b09a32330f Reviewed-on: https://go-review.googlesource.com/c/go/+/508715 Reviewed-by: Austin Clements <austin@google.com> Reviewed-by: Joel Sing <joel@sing.id.au> Run-TryBot: M Zhuo <mzh@golangcn.org> Reviewed-by: Cherry Mui <cherryyz@google.com> Reviewed-by: Bryan Mills <bcmills@google.com> TryBot-Result: Gopher Robot <gobot@golang.org> (cherry picked from commit 890b96f7abd8ba5b2243959d9b49c212a0fc4d78) Reviewed-on: https://go-review.googlesource.com/c/go/+/511856 Auto-Submit: M Zhuo <mzh@golangcn.org> Reviewed-by: Heschi Kreinick <heschi@google.com> Reviewed-by: M Zhuo <mzh@golangcn.org>
2023-07-21[release-branch.go1.21] go/types, types2: a min/max value argument must not ↵Robert Griesemer
be untyped Fizes #61492. Change-Id: I5770e238e44b724816894d914b3ea5dc78bc3ced Reviewed-on: https://go-review.googlesource.com/c/go/+/511835 Reviewed-by: Robert Griesemer <gri@google.com> Auto-Submit: Robert Griesemer <gri@google.com> Run-TryBot: Robert Griesemer <gri@google.com> Reviewed-by: Matthew Dempsky <mdempsky@google.com> TryBot-Result: Gopher Robot <gobot@golang.org> Reviewed-on: https://go-review.googlesource.com/c/go/+/511857 Reviewed-by: Cherry Mui <cherryyz@google.com>
2023-07-20[release-branch.go1.21 cmd/go: attach PGO profile for test dependenciesCherry Mui
When running "go test" including a main package which has a PGO profile, we currently build the package being tested and its dependencies with PGO, but we failed to attach the profile to test-only dependencies. If a package is (transitively) imported by both the package being tested and the test, the PGO version and the non-PGO version of the package are both linked into the binary, causing link-time error. This CL fixes this by attaching the PGO profile to dependencies of the test. Fixes #61376. Change-Id: I2559db9843c4cdab596b31e2025d8475ffbf58ec Reviewed-on: https://go-review.googlesource.com/c/go/+/510835 Run-TryBot: Cherry Mui <cherryyz@google.com> Reviewed-by: Bryan Mills <bcmills@google.com> TryBot-Result: Gopher Robot <gobot@golang.org> (cherry picked from commit af0609b080dd6d9101d8c6aa31ef6378ac70d60a) Reviewed-on: https://go-review.googlesource.com/c/go/+/511698
2023-07-20[release-branch.go1.21] doc: delete go1.21.html copyDmitri Shuralyov
When the final Go 1.21.0 release is made, the release notes will lose the draft status and begin to be visible at https://go.dev/doc/go1.21. The source go1.21.html file will then move from the main Go repository to x/website as part of it becoming a finished and eventually frozen historical release notes page. The https://tip.golang.org/doc/go1.21 page that currently serves the current draft always uses the main repository's main branch, so this copy on the release branch is not used by anything. Its existence on this branch may attract backports, which are harmless but also not very useful. Avoid that temptation by deleting it here sooner. (Since the first RC comes with a mostly complete release notes draft, maybe in the future we can consider moving this file to x/website right before a release branch is cut, making the draft available at https://go.dev/doc/go1.21 sooner so fewer links will need updating.) For #58645. Change-Id: I92c0200b748a5f255f9b8113b4952c122631c6d6 Reviewed-on: https://go-review.googlesource.com/c/go/+/511317 Auto-Submit: Dmitri Shuralyov <dmitshur@golang.org> Reviewed-by: Heschi Kreinick <heschi@google.com> TryBot-Bypass: Dmitri Shuralyov <dmitshur@golang.org> Reviewed-by: Dmitri Shuralyov <dmitshur@google.com>
2023-07-20[release-branch.go1.21] runtime: ensure stack is aligned in ↵qmuntal
_rt0_amd64_windows_lib The Windows DLL loader may call a DLL entry point, in our case _rt0_amd64_windows_lib, with a stack that is not 16-byte aligned. In theory, it shouldn't, but under some circumstances, it does (see below how to reproduce it). Having an unaligned stack can, and probably will, cause problems down the line, for example if a movaps instruction tries to store a value in an unaligned address it throws an Access Violation exception (code 0xc0000005). I managed to consistently reproduce this issue by loading a Go DLL into a C program that has the Page Heap Verification diagnostic enabled [1]. Updates #54187 (and potentially fixes) [1] https://learn.microsoft.com/en-us/windows-hardware/drivers/debugger/example-12---using-page-heap-verification-to-find-a-bug Change-Id: Id0fea7f407e024c9b8cdce10ce4802d7535e7542 Reviewed-on: https://go-review.googlesource.com/c/go/+/510755 TryBot-Result: Gopher Robot <gobot@golang.org> Reviewed-by: Cherry Mui <cherryyz@google.com> Reviewed-by: Than McIntosh <thanm@google.com> Run-TryBot: Quim Muntal <quimmuntal@gmail.com> (cherry picked from commit 5fe3f0a265c90a9c0346403742c6cafeb154503b) Reviewed-on: https://go-review.googlesource.com/c/go/+/511135 Run-TryBot: Dmitri Shuralyov <dmitshur@golang.org> Reviewed-by: Quim Muntal <quimmuntal@gmail.com>
2023-07-20[release-branch.go1.21] net: tolerate permission errors in interface testsHeschi Kreinick
On our linux-arm64 builders, we're getting permission errors despite running as root. Detect those errors and skip the test. Fixes #61414. Change-Id: I5d7c45789337bee3860b19335bbb9eb884c48986 Reviewed-on: https://go-review.googlesource.com/c/go/+/510737 Auto-Submit: Heschi Kreinick <heschi@google.com> Run-TryBot: Heschi Kreinick <heschi@google.com> Reviewed-by: Ian Lance Taylor <iant@google.com> TryBot-Result: Gopher Robot <gobot@golang.org> (cherry picked from commit 8e1ec1cb9385414a7d6b664d8ace6bc9468cc500) Reviewed-on: https://go-review.googlesource.com/c/go/+/511136 Reviewed-by: Dmitri Shuralyov <dmitshur@google.com> TryBot-Bypass: Dmitri Shuralyov <dmitshur@golang.org> Reviewed-by: Dmitri Shuralyov <dmitshur@golang.org>
2023-07-19[release-branch.go1.21] doc/go1.21: add release notes for linux/loong64Guoqi Chen
Fixes #53301 Change-Id: Id447d57d43b12c3748267295928d45a089549340 Reviewed-on: https://go-review.googlesource.com/c/go/+/507815 Reviewed-by: Ian Lance Taylor <iant@golang.org> Reviewed-by: Dmitri Shuralyov <dmitshur@google.com> TryBot-Bypass: Ian Lance Taylor <iant@golang.org> Reviewed-by: Meidan Li <limeidan@loongson.cn> TryBot-Bypass: Ian Lance Taylor <iant@google.com> Auto-Submit: Ian Lance Taylor <iant@golang.org> Auto-Submit: Ian Lance Taylor <iant@google.com> Reviewed-by: Ian Lance Taylor <iant@google.com> (cherry picked from commit 700727151fe3772ecc2315af101d2e5d93269c0c) Reviewed-on: https://go-review.googlesource.com/c/go/+/510916 Reviewed-by: Heschi Kreinick <heschi@google.com>
2023-07-18[release-branch.go1.21] all: merge master (2639a17) into release-branch.go1.21Heschi Kreinick
Change-Id: I316578aec6c2b618c840d43a65ef87b8d2168ac0
2023-07-18doc: run relnotes againCarlos Amedee
Relnote (golang.org/x/build/cmd/relnote) was run again. Some of the simpler entries were resolved. TODO's remain for other entries. For #58645 Change-Id: I0acb5e87b2e9655ffd472e728259a4aa6c4da50e Reviewed-on: https://go-review.googlesource.com/c/go/+/510375 Reviewed-by: Dmitri Shuralyov <dmitshur@golang.org> Run-TryBot: Carlos Amedee <carlos@golang.org> Reviewed-by: Dmitri Shuralyov <dmitshur@google.com> TryBot-Result: Gopher Robot <gobot@golang.org>
2023-07-18net/rpc: use conventional `err` in exampledarkfeline
It is conventional to use `err` for error variables, so change the example to use `err` instead of `e`. Change-Id: I53bc3c5384fe608b322a55c564e9aee228b43329 GitHub-Last-Rev: 3e2ed84eefad7104b952bc6eab1c3b0af6f8f80e GitHub-Pull-Request: golang/go#61375 Reviewed-on: https://go-review.googlesource.com/c/go/+/510075 Reviewed-by: Rob Pike <r@golang.org> Run-TryBot: Ian Lance Taylor <iant@google.com> Run-TryBot: Rob Pike <r@golang.org> Reviewed-by: Allen Li <ayatane@google.com> Reviewed-by: Ian Lance Taylor <iant@google.com> TryBot-Result: Gopher Robot <gobot@golang.org> Auto-Submit: Ian Lance Taylor <iant@google.com>
2023-07-17go/types, types2: remove unnecessary assert on pointer sizeRob Findley
As described in #61249, uncommon pointer sizes do exist. Remove an unnecessary assertion. Fixes #61249 Change-Id: Ib15857bd6bcd42ec530817a132bb8db036236c3b Reviewed-on: https://go-review.googlesource.com/c/go/+/508821 Reviewed-by: Robert Griesemer <gri@google.com> Auto-Submit: Robert Findley <rfindley@google.com> Run-TryBot: Robert Findley <rfindley@google.com> TryBot-Result: Gopher Robot <gobot@golang.org>
2023-07-17math: test large negative values as args for trig functionsKeith Randall
Sin/Tan are odd, Cos is even, so it is easy to compute the correct result from the positive argument case. Change-Id: If851d00fc7f515ece8199cf56d21186ced51e94f Reviewed-on: https://go-review.googlesource.com/c/go/+/509815 Run-TryBot: Keith Randall <khr@golang.org> TryBot-Result: Gopher Robot <gobot@golang.org> Reviewed-by: Srinivas Pokala <Pokala.Srinivas@ibm.com> Reviewed-by: Robert Griesemer <gri@google.com> Reviewed-by: Keith Randall <khr@google.com>
2023-07-17cmd/go: fix tests when go.env sets GOPROXY=direct GOSUMDB=offBryan C. Mills
Tested locally by changing GOROOT/go.env. At some point perhaps we should also set up a builder that runs with some common expected modifications to go.env (such as GOTOOLCHAIN=local GOPROXY=direct GOSUMDB=off). Fixes #61358. Updates #61359. Change-Id: I365ec536bec86370e302fb726fa897400ab42cf3 Reviewed-on: https://go-review.googlesource.com/c/go/+/509637 TryBot-Result: Gopher Robot <gobot@golang.org> Reviewed-by: Russ Cox <rsc@golang.org> Run-TryBot: Bryan Mills <bcmills@google.com> Auto-Submit: Bryan Mills <bcmills@google.com>
2023-07-17doc/go1.21: use consistent capitalization for amd64Austin Clements
Fixes #61388 Change-Id: I173498b57081aacf772f0d3a9ce0a76ed7b19385 Reviewed-on: https://go-review.googlesource.com/c/go/+/510295 Auto-Submit: Austin Clements <austin@google.com> Reviewed-by: Cherry Mui <cherryyz@google.com> TryBot-Bypass: Austin Clements <austin@google.com>
2023-07-14log/slog: doc commonHandler.handleJonathan Amsterdam
Change-Id: Id301b772e472e1cb7cd8bccaa5a13ff7b6f94711 Reviewed-on: https://go-review.googlesource.com/c/go/+/509596 Run-TryBot: Jonathan Amsterdam <jba@google.com> TryBot-Result: Gopher Robot <gobot@golang.org> Reviewed-by: Bryan Mills <bcmills@google.com>
2023-07-14log/slog: fix issue with concurrent writesWill Roden
This causes instances commonHandler created by withAttrs or withGroup to share a mutex with their parent preventing concurrent writes to their shared writer. Fixes #61321 Change-Id: Ieec225e88ad51c84b41bad6c409fac48c90320b2 Reviewed-on: https://go-review.googlesource.com/c/go/+/509196 Reviewed-by: Bryan Mills <bcmills@google.com> TryBot-Result: Gopher Robot <gobot@golang.org> Run-TryBot: Jonathan Amsterdam <jba@google.com> Reviewed-by: Jonathan Amsterdam <jba@google.com>
2023-07-14[release-branch.go1.21] go1.21rc3go1.21rc3Gopher Robot
Change-Id: Ibab6e2a998d5b57fcae923fa0627037846af1492 Reviewed-on: https://go-review.googlesource.com/c/go/+/509775 Reviewed-by: Eli Bendersky <eliben@google.com> TryBot-Result: Gopher Robot <gobot@golang.org> Reviewed-by: Cherry Mui <cherryyz@google.com> Run-TryBot: Gopher Robot <gobot@golang.org> Auto-Submit: Gopher Robot <gobot@golang.org>
2023-07-14cmd/covdata: format package comment for 'go doc' renderingBryan C. Mills
Due to an errant newline, both 'go doc' and pkg.go.dev currently interpret the long comment in cmd/covdata/doc.go as a file comment instead of package documentation. Removing the errant newline caused 'go doc' to render the comment, but it does not strip out the interior '//' tokens from the '/* … */' block. Removing those tokens and fixing up indentation seems to give satisfactory rendering. Change-Id: I5757c649e7380b026f7d8d1b6fd3cb6dddfb27ad Reviewed-on: https://go-review.googlesource.com/c/go/+/509635 Reviewed-by: Than McIntosh <thanm@google.com> TryBot-Result: Gopher Robot <gobot@golang.org> Run-TryBot: Bryan Mills <bcmills@google.com> Auto-Submit: Bryan Mills <bcmills@google.com>
2023-07-13bytes: remove builders check from compare testJohan Brandhorst-Satzkorn
TestCompareBytes already took into account the -short testing flag, however, only if not run on one of the Go builders. This extra condition is no longer necessary as we have much better longtest coverage than we did when the check was added. Fixes #61071 Change-Id: I0fc716f4e7baa04019ee00608f223f27c931edcc Reviewed-on: https://go-review.googlesource.com/c/go/+/507416 Run-TryBot: Ian Lance Taylor <iant@google.com> Reviewed-by: Bryan Mills <bcmills@google.com> Auto-Submit: Johan Brandhorst-Satzkorn <johan.brandhorst@gmail.com> TryBot-Bypass: Johan Brandhorst-Satzkorn <johan.brandhorst@gmail.com> Auto-Submit: Ian Lance Taylor <iant@google.com> Reviewed-by: Ian Lance Taylor <iant@google.com>
2023-07-13[release-branch.go1.21] all: merge master (b88bd91) into release-branch.go1.21Cherry Mui
Merge List: + 2023-07-13 b88bd917b8 cmd/go/internal/modfetch: always allow Stat for the current toolchain to succeed + 2023-07-13 d4f0d896a6 net/http: revert stray edit to h2_bundle.go from CL 508996 + 2023-07-13 4a0f51696e all: remove duplicate word and fix comment + 2023-07-12 49d42128fd all: fix typos and remove repeated words Change-Id: Ie4f17f633483d5cd1d244b6e7cde6422dc246d9e
2023-07-13cmd/go/internal/modfetch: always allow Stat for the current toolchain to succeedBryan C. Mills
This fixes a failure mode observed in TestScript/gotoolchain_version when building go1.21rc3. Updates #61259. Change-Id: Ifb14a5b94b687adea7a26c1155591e3ae75b7a62 Reviewed-on: https://go-review.googlesource.com/c/go/+/509217 Reviewed-by: Cherry Mui <cherryyz@google.com> Auto-Submit: Bryan Mills <bcmills@google.com> TryBot-Result: Gopher Robot <gobot@golang.org> Reviewed-by: Russ Cox <rsc@golang.org> Run-TryBot: Bryan Mills <bcmills@google.com>
2023-07-13net/http: revert stray edit to h2_bundle.go from CL 508996Bryan C. Mills
h2_bundle.go is generated from x/net/http2, so it must not be edited manually. Change-Id: If76716ce8baf581321358734e5b8bef3541632ca Reviewed-on: https://go-review.googlesource.com/c/go/+/508922 Run-TryBot: Bryan Mills <bcmills@google.com> TryBot-Result: Gopher Robot <gobot@golang.org> Reviewed-by: Cherry Mui <cherryyz@google.com> Auto-Submit: Bryan Mills <bcmills@google.com>
2023-07-13all: remove duplicate word and fix commentcui fliter
Change-Id: I3302b94a47f384ec2519d08af50b3b5725c5b42a Reviewed-on: https://go-review.googlesource.com/c/go/+/508995 Reviewed-by: Cherry Mui <cherryyz@google.com> TryBot-Result: Gopher Robot <gobot@golang.org> Run-TryBot: shuang cui <imcusg@gmail.com> Reviewed-by: Ian Lance Taylor <iant@google.com> Run-TryBot: Ian Lance Taylor <iant@google.com> Auto-Submit: Ian Lance Taylor <iant@google.com>
2023-07-12all: fix typos and remove repeated wordsDan Kortschak
Change-Id: I5f06a4ef1d827eb0fe32a8d98444142108b0d573 Reviewed-on: https://go-review.googlesource.com/c/go/+/508996 Run-TryBot: Ian Lance Taylor <iant@google.com> Auto-Submit: Keith Randall <khr@golang.org> TryBot-Result: Gopher Robot <gobot@golang.org> Run-TryBot: Keith Randall <khr@golang.org> Reviewed-by: Keith Randall <khr@golang.org> Reviewed-by: Ian Lance Taylor <iant@google.com> Auto-Submit: Ian Lance Taylor <iant@google.com> Reviewed-by: Keith Randall <khr@google.com>
2023-07-12[release-branch.go1.21] all: merge master (6244b19) into release-branch.go1.21Cherry Mui
Merge List: + 2023-07-12 6244b1946b all: update vendored dependencies + 2023-07-12 b4872ea187 cmd/go: fix go get go@badversion + 2023-07-12 87350393e6 cmd/go: fix GOTOOLCHAIN parsing for +auto + 2023-07-12 230e549142 doc/go1.21: add a release note for CL 463177 + 2023-07-12 5e4000ad7f cmd/compile: on PPC64, fix sign/zero extension when masking + 2023-07-11 af8f94e3c5 src/README.vendor: s/latest/master/ + 2023-07-11 3eaee3d5dd testing/slogtest: check for no group with empty record + 2023-07-11 167c8b73bf net/http/fcgi: eliminate goroutine leaks in tests + 2023-07-11 cb7a091d72 os/exec: ignore context.Canceled errors in TestConcurrentExec + 2023-07-11 651869716a log/slog: replace nil contexts with context.Background() + 2023-07-11 3f8b04bfb5 log/slog: change XXXCtx functions to XXXContext + 2023-07-11 4c58d6bf52 time: increase arbitrary upper bound in TestReset to 10s + 2023-07-11 6a063b01b0 net: mptcp: force using MPTCP with GODEBUG + 2023-07-10 07ede7a543 syscall: serialize locks on ForkLock on platforms where forkExecPipe is not atomic + 2023-07-10 7dc62f3bda test: add test cases for index value with range array clear + 2023-07-10 0b65b02ba5 cmd/compile: fix clear on slice with zero size elem + 2023-07-10 c4db811e44 cmd/compile: don't ICE on unaligned offsets for pointer writes + 2023-07-07 5c15498609 os: support reading empty root directories on Windows + 2023-07-07 894d24d617 src/database/sql: run gofmt + 2023-07-07 ac9137f8d3 go/types, types2: do not mutate arguments in NewChecker + 2023-07-07 158d11196f math: add test that covers riscv64 fnm{add,sub} codegen + 2023-07-07 d3d78b4bcc log/slog: handle recursively empty groups + 2023-07-06 39c5070712 os: do not skip directory entries with zero inodes on wasip1 + 2023-07-06 e6ec2a34dc runtime: print output on failure in TestMemPprof + 2023-07-06 449ef3795d net: only build cgo_stub.go on unix or wasip1 + 2023-07-06 6305d7fdd3 cmd/go: pass GoVersion in vet config + 2023-07-06 b490bdc27d go/types: record Config.GoVersion for reporting in Package.GoVersion method + 2023-07-06 36ea4f9680 log/slog: fix faulty test + 2023-07-05 3fce111535 cmd/compile: fix FMA negative commutativity of riscv64 + 2023-07-05 c8dad424bf math: fix portable FMA when x*y < 0 and x*y == -z + 2023-07-05 cd6676126b database/sql: prevent internal context error from being returned from Rows.Err() + 2023-07-05 b2215e49c7 runtime,runtime/metrics: clarify OS stack metrics + 2023-07-04 e126572f8a runtime: have ReadMemStats do a nil check before switching stacks + 2023-07-04 e4ed92a355 os, syscall: update unreachable link about =C: envs + 2023-07-04 5c1a15df41 test/codegen: enable Mul2 DivPow2 test for riscv64 + 2023-06-30 5b72f45dd1 runtime: check GOFLAGS not GCFLAGS + 2023-06-29 18e17e2cb1 net: enable pure Go resolver for wasip1 + 2023-06-29 1e97c51536 syscall: stub Getrlimit on wasip1 + 2023-06-29 683f51d307 cmd/asm/internal/lex: fix comment, remove the first "has" + 2023-06-29 2db31efdba cmd/compile/internal/types2: make TestIssue43124 match the go/types version + 2023-06-29 499458f7ca net/http: validate Host header before sending + 2023-06-29 fe73c186eb cmd/{go,compile}: run gofmt + 2023-06-29 da5d8fdd0c runtime: run wasip1 tests with wazero + 2023-06-29 411c99671a slices, maps: add examples; doc comment fixes + 2023-06-29 03cd8a7b0e internal/bytealg: fix alignment code in equal_riscv64.s + 2023-06-28 8b5fe5980c cmd/compile: handle min/max correctly in mayCall + 2023-06-28 79d4defa75 cmd/compile/internal/ssagen: fix min/max codegen, again + 2023-06-28 a3093eca64 cmd/go: enable slog vet check during 'go test' + 2023-06-27 6691f438c3 cmd/dist, internal/abi: support bootstrapping with gccgo + 2023-06-27 942c1c12d8 runtime: fix trace.Stop deadlock when built with faketime + 2023-06-27 4ad4128d3c cmd/compile: fix bad order of evaluation for min/max builtin + 2023-06-27 4f36f7e4dd encoding: document that base32 and base64 do not use UTF-8 + 2023-06-27 8008c0840f syscall: clarify which handles are affected by SysProcAttr.NoInheritHandles + 2023-06-27 13529cc5f4 syscall: try non-blocking stdio on wasip1 + 2023-06-26 1dbbafc70f go/types, types2: replace TODO with clarifying comment + 2023-06-26 7cc0740596 slices: add godoc links + 2023-06-26 d49017a7c3 go/types, types2: fix interface unification + 2023-06-26 b3ca8d2b3c types2, go/types: record final type for min/max arguments + 2023-06-26 ee361ce66c go/types, types2: more readable inference trace + 2023-06-26 9f6e87ff74 doc/go1.21: document changes in crypto/x509 + 2023-06-26 f5015b5164 doc/go1.21: context.Background and TODO may now appear equal + 2023-06-24 a031f4ef83 cmd/compile: fix min/max builtin code generation + 2023-06-24 ea927e560d slices: clarify MinFunc/MaxFunc result for equal elements + 2023-06-23 3619255777 crypto/x509: rename duplicated test + 2023-06-23 48dbb6227a runtime: set raceignore to zero when starting a new goroutine + 2023-06-23 3adcce5ae7 crypto: document non-determinism of GenerateKey + 2023-06-23 6dce882b3a cmd/compile: scanning closures body when visiting wrapper function + 2023-06-23 164aceea08 log/slog: fix broken link to AnyValue in comment + 2023-06-23 82e17c4d11 log/slog: fix broken link to Record.Clone in package docs + 2023-06-22 25e46693a1 cmd/go: impersonate 'go tool dist list' if 'go tool dist' is not present + 2023-06-22 f8616b8484 internal/platform,cmd/dist: export the list of supported platforms + 2023-06-22 51885c1fa2 cmd/{go,cover}: enable response file args for cmd/cover + 2023-06-22 3479e1e543 internal/fuzz: fix typo in comment + 2023-06-22 20313660f5 crypto/x509: tolerate multiple matching chains in testVerify + 2023-06-21 78c3aba470 net/mail: permit more characters in mail headers + 2023-06-21 633b742ae0 test: add test that caused a gofrontend crash + 2023-06-21 ad2c517708 doc/go1.21: correct GOOS to GOARCH (another location) + 2023-06-21 b23cae8095 doc/go1.21: correct GOOS to GOARCH + 2023-06-21 b1f1fb2950 go/types, types2: avoid spurious "declared and not used" error + 2023-06-21 e45202f215 runtime: relate GODEBUG=gctrace output to runtime/metrics + 2023-06-21 36edde9d9f cmd/go: shorten longest 5 tests + 2023-06-21 413e6c0499 cmd/compile/internal/ir: typo + 2023-06-20 f3bf18117b log/slog: fix HandlerOptions.ReplaceAttr doc + 2023-06-20 e122ebabb6 encoding/binary: on invalid type return -1 from Size + 2023-06-20 8484f2fe02 cmd/go: add comment for intentional misspelling Change-Id: Ie91c398dde7ca2a210b286c7865d3e7a905d6ea9
2023-07-12all: update vendored dependenciesRuss Cox
Generated by: go install golang.org/x/tools/cmd/bundle@latest go install golang.org/x/build/cmd/updatestd@latest updatestd -goroot=$GOROOT -branch=master For #36905. For #55079. Fixes #61174 (vet checkers understanding Go language version). Fixes #61200 (slog InfoCtx -> InfoContext etc). Change-Id: I4f2c86960ce72d6df06e23da1b1297ab3ff2eecf Reviewed-on: https://go-review.googlesource.com/c/go/+/509099 Reviewed-by: Ian Lance Taylor <iant@google.com> Reviewed-by: Jonathan Amsterdam <jba@google.com> Reviewed-by: Alan Donovan <adonovan@google.com> TryBot-Result: Gopher Robot <gobot@golang.org> Reviewed-by: Heschi Kreinick <heschi@google.com> Reviewed-by: Bryan Mills <bcmills@google.com> Reviewed-by: Damien Neil <dneil@google.com>
2023-07-12cmd/go: fix go get go@badversionRuss Cox
It was panicking instead of printing a nice error. Fixes #61258. Fixes #61259. Change-Id: Ia30853db5bc7f1f2a4c7e91169c659ae2b79adcb Reviewed-on: https://go-review.googlesource.com/c/go/+/509097 Run-TryBot: Russ Cox <rsc@golang.org> TryBot-Result: Gopher Robot <gobot@golang.org> Reviewed-by: Bryan Mills <bcmills@google.com>
2023-07-12cmd/go: fix GOTOOLCHAIN parsing for +autoRuss Cox
The call from toolchain.Select to gover.FromToolchain was passing the wrong argument but this was masked by gover.IsValid being a little bit too lax. Fix and test IsValid, which then breaks the existing gotoolchain_local test, and then fix toolchain.Select to fix the test. Fixes #61068. Change-Id: I505ceb227457d6a51bd5e47f009b2fb1010c0d1f Reviewed-on: https://go-review.googlesource.com/c/go/+/508820 Reviewed-by: Bryan Mills <bcmills@google.com> Run-TryBot: Russ Cox <rsc@golang.org> TryBot-Result: Gopher Robot <gobot@golang.org>
2023-07-12doc/go1.21: add a release note for CL 463177Bryan C. Mills
I'm not sure why the relnote tool did not fill in a TODO for that change; one was requested in http://go.dev/cl/c/go/+/463177/3#message-87065dffb06e196fba9a325fefb32f16b41b6b15. Updates #50807. Updates #27225. Change-Id: If6be8c126bcafb04ba92de88d2fc74a0557a07b8 Reviewed-on: https://go-review.googlesource.com/c/go/+/509098 Reviewed-by: Cherry Mui <cherryyz@google.com> Auto-Submit: Bryan Mills <bcmills@google.com> TryBot-Result: Gopher Robot <gobot@golang.org> Run-TryBot: Bryan Mills <bcmills@google.com>
2023-07-12cmd/compile: on PPC64, fix sign/zero extension when maskingPaul E. Murphy
(ANDCCconst [y] (MOV.*reg x)) should only be merged when zero extending. Otherwise, sign bits are lost on negative values. (ANDCCconst [0xFF] (MOVBreg x)) should be simplified to a zero extension of x. Likewise for the MOVHreg variant. Fixes #61297 Change-Id: I04e4fd7dc6a826e870681f37506620d48393698b Reviewed-on: https://go-review.googlesource.com/c/go/+/508775 TryBot-Result: Gopher Robot <gobot@golang.org> Run-TryBot: Paul Murphy <murp@ibm.com> Reviewed-by: Bryan Mills <bcmills@google.com> Reviewed-by: Cherry Mui <cherryyz@google.com>
2023-07-11src/README.vendor: s/latest/master/Jonathan Amsterdam
Update the README to specify the module query "@master" instead of "@latest". Vendoring the highest tagged version is unlikely to be right. Usually one wants to vendor the module at HEAD. Change-Id: Id00d23523a13fd3dcd73d6eacefdf50bcdbfa26e Reviewed-on: https://go-review.googlesource.com/c/go/+/508823 TryBot-Result: Gopher Robot <gobot@golang.org> Run-TryBot: Jonathan Amsterdam <jba@google.com> Reviewed-by: Bryan Mills <bcmills@google.com>
2023-07-11testing/slogtest: check for no group with empty recordJonathan Amsterdam
As #61067 pointed out, slog did not properly handle empty groups. https://go.dev/cl/508436 dealt with most cases inside slog itself, but handlers must still do a check on their own. Namely, a handler must not output a group created by WithGroup unless the Record has attributes. This change adds a test to slogtest to check that case. Fixes #61227. Change-Id: Ibc065b6e5f6e199a41bce8332ea8c7f9d8373392 Reviewed-on: https://go-review.googlesource.com/c/go/+/508438 Reviewed-by: Alan Donovan <adonovan@google.com> Run-TryBot: Jonathan Amsterdam <jba@google.com> TryBot-Result: Gopher Robot <gobot@golang.org>
2023-07-11net/http/fcgi: eliminate goroutine leaks in testsBryan C. Mills
Also fix a (minor) double-Close error in Serve that was exposed by the test fix. Serve accepts a net.Listener, which produces net.Conn instances. The documentation for net.Conn requires its methods to be safe for concurrent use, so most implementations likely allow Close to be called multiple times as a side effect of making it safe to call concurrently with other methods. However, the net.Conn interface is a superset of the io.Closer interface, io.Closer explicitly leaves the behavior of multiple Close calls undefined, and net.Conn does not explicitly document a stricter requirement. Perhaps more importantly, the test for the fcgi package calls unexported functions that accept an io.ReadWriteCloser (not a net.Conn), and at least one of the test-helper ReadWriteCloser implementations expects Close to be called only once. The goroutine leaks were exposed by a racy arbitrary timeout reported in #61271. Fixing the goroutine leak exposed the double-Close error: one of the leaked goroutines was blocked on reading from an unclosed pipe. Closing the pipe (to unblock the goroutine) triggered the second Close call. Fixes #61271. Change-Id: I5cfac8870e4bb4f13adeee48910d165dbd4b76fe Reviewed-on: https://go-review.googlesource.com/c/go/+/508815 Run-TryBot: Bryan Mills <bcmills@google.com> Reviewed-by: Ian Lance Taylor <iant@google.com> TryBot-Result: Gopher Robot <gobot@golang.org>
2023-07-11os/exec: ignore context.Canceled errors in TestConcurrentExecBryan C. Mills
We cancel the Context to unblock the test as soon as all of the "exit" processes have completed. If that happens to occur before all of the "hang" processes have started, the Start calls may fail with context.Canceled. Since those errors are possible in normal operation of the test, ignore them. Fixes #61277. Updates #61080. Change-Id: I20db083ec89ca88eb085ceb2892b9f87f83705ac Reviewed-on: https://go-review.googlesource.com/c/go/+/508755 TryBot-Result: Gopher Robot <gobot@golang.org> Run-TryBot: Bryan Mills <bcmills@google.com> Auto-Submit: Bryan Mills <bcmills@google.com> Reviewed-by: Ian Lance Taylor <iant@google.com>
2023-07-11log/slog: replace nil contexts with context.Background()Jonathan Amsterdam
Passing nil for a context is discouraged. We should avoid it. Fixes #61219. Change-Id: I664387070aacb56af580b6b0791ca40982d2a711 Reviewed-on: https://go-review.googlesource.com/c/go/+/508437 Run-TryBot: Jonathan Amsterdam <jba@google.com> TryBot-Result: Gopher Robot <gobot@golang.org> Reviewed-by: Alan Donovan <adonovan@google.com>
2023-07-11log/slog: change XXXCtx functions to XXXContextJonathan Amsterdam
Fixes #61200. Change-Id: I3071dbf673bcd2d24e62644b40d481c953703978 Reviewed-on: https://go-review.googlesource.com/c/go/+/508195 Run-TryBot: Jonathan Amsterdam <jba@google.com> Reviewed-by: Russ Cox <rsc@golang.org> TryBot-Result: Gopher Robot <gobot@golang.org>
2023-07-11time: increase arbitrary upper bound in TestReset to 10sBryan C. Mills
The previous upper bound was around 0.375 s, which is empirically too short on a slow, heavily-loaded builder. Since the test doesn't seem to depend on the actual duration in any meaningful way, let's make it several orders of magnitude larger. Fixes #61266. Change-Id: I6dde5e174966ee385db67e3cb87334f463c7e597 Reviewed-on: https://go-review.googlesource.com/c/go/+/508695 TryBot-Result: Gopher Robot <gobot@golang.org> Run-TryBot: Bryan Mills <bcmills@google.com> Reviewed-by: Ian Lance Taylor <iant@google.com>
2023-07-11net: mptcp: force using MPTCP with GODEBUGMatthieu Baerts
When adding MPTCP support to address the proposal #56539, I missed the GODEBUG setting from Russ Cox's plan: I am inclined to say that we add MPTCP as an opt-in for a release or two, and then make it opt-out. There should be a GODEBUG setting (...) See: https://github.com/golang/go/issues/56539#issuecomment-1309294637 Thanks to andrius4669 for having reported this issue to me. It makes sense to have this GODEBUG setting not to have to modify applications to use MPTCP (if available). It can then be useful to estimate the impact in case we want to switch from opt-in to opt-out later. The MPTCP E2E test has been modified to make sure we can enable MPTCP either via the source code like it was already the case before or with this environment variable: GODEBUG=multipathtcp=1 The documentation has been adapted accordingly. I don't know if it is too late for Go 1.21 but I had to put a version in the documentation. The modification is small, the risk seems low and this was supposed to be there from the beginning according to Russ Cox's specifications. It can also be backported or only be present in the future v1.22 if it is easier. Note: I didn't re-open #56539 or open a new one. It is not clear to me what I should do in this case. Fixes #56539 Change-Id: I9201f4dc0b99e3643075a34c7032a95528c48fa0 Reviewed-on: https://go-review.googlesource.com/c/go/+/507375 Reviewed-by: Cherry Mui <cherryyz@google.com> Auto-Submit: Ian Lance Taylor <iant@golang.org> Run-TryBot: Ian Lance Taylor <iant@golang.org> TryBot-Result: Gopher Robot <gobot@golang.org> Reviewed-by: Damien Neil <dneil@google.com>