Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: golang/go
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: go1.21.8
Choose a base ref
...
head repository: golang/go
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: go1.21.9
Choose a head ref
  • 7 commits
  • 12 files changed
  • 5 contributors

Commits on Mar 12, 2024

  1. [release-branch.go1.21] go/types, types2: don't do version checks for…

    … embedded types of imported interfaces
    
    Imported interfaces don't have position information for embedded types.
    When computing the type set of such interfaces, doing a version check
    may fail because it will rely on the Go version of the current package.
    
    We must not do a version check for features of types from imported
    packages - those types have already been typechecked and are "correct".
    The version check code does look at packages to avoid such incorrect
    version checks, but we don't have the package information available
    in an interface type (divorced from its object).
    
    Instead, for now rely on the fact that imported interfaces don't have
    position information for embedded types: if the position is unknown,
    don't do a version check.
    
    We may want to assert that positions are known in all other cases,
    but since this is an older release, don't add such additional changes
    to avoid introducing other bugs.
    
    Fixes #66064.
    
    Change-Id: I773d57e5410c3d4a911ab3e018b3233c2972b3c9
    Reviewed-on: https://go-review.googlesource.com/c/go/+/571075
    Reviewed-by: Robert Findley <rfindley@google.com>
    Auto-Submit: Robert Griesemer <gri@google.com>
    LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
    Reviewed-by: Robert Griesemer <gri@google.com>
    griesemer authored and gopherbot committed Mar 12, 2024
    Copy the full SHA
    6d22988 View commit details

Commits on Mar 13, 2024

  1. [release-branch.go1.21] Revert "go/types, types2: don't do version ch…

    …ecks for embedded types of imported interfaces"
    
    This reverts CL 571075.
    
    Reason for revert: We might want to do a security-only minor release. Back off the release branch to a clean state from the previous minor release. Sorry for the inconvenience.
    
    Change-Id: Ifc8c7e00e6faea3aa547b883eed44180ddb447de
    Reviewed-on: https://go-review.googlesource.com/c/go/+/571355
    LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
    Reviewed-by: Robert Findley <rfindley@google.com>
    cherrymui committed Mar 13, 2024
    Copy the full SHA
    140b37d View commit details

Commits on Mar 26, 2024

  1. [release-branch.go1.21] cmd/internal/obj/ppc64: don't modify runtime.…

    …elf_* symbols
    
    The runtime.elf_* symbols are assembly functions which are used
    to support the gcc/llvm -Os option when used with cgo.
    
    When compiling Go for shared code, we attempt to strip out the
    TOC regenation code added by the go assembler for these symbols.
    
    This causes the symbol to no longer appear as an assembly
    function which causes problems later on when handling other
    implicit symbols.
    
    Avoid adding a TOC regeneration prologue to these functions
    to avoid this issue.
    
    Fixes #66411
    
    Change-Id: Icbf8e4438d177082a57bb228e39b232e7a0d7ada
    Reviewed-on: https://go-review.googlesource.com/c/go/+/571835
    Reviewed-by: Than McIntosh <thanm@google.com>
    Run-TryBot: Paul Murphy <murp@ibm.com>
    Reviewed-by: Cherry Mui <cherryyz@google.com>
    LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
    Reviewed-by: Lynn Boger <laboger@linux.vnet.ibm.com>
    TryBot-Result: Gopher Robot <gobot@golang.org>
    Reviewed-on: https://go-review.googlesource.com/c/go/+/572876
    pmur authored and thanm committed Mar 26, 2024
    Copy the full SHA
    0bd1a22 View commit details

Commits on Mar 27, 2024

  1. [release-branch.go1.21] go/types, types2: don't do version checks for…

    … embedded types of imported interfaces
    
    [This is a re-apply of CL 571075]
    
    Imported interfaces don't have position information for embedded types.
    When computing the type set of such interfaces, doing a version check
    may fail because it will rely on the Go version of the current package.
    
    We must not do a version check for features of types from imported
    packages - those types have already been typechecked and are "correct".
    The version check code does look at packages to avoid such incorrect
    version checks, but we don't have the package information available
    in an interface type (divorced from its object).
    
    Instead, for now rely on the fact that imported interfaces don't have
    position information for embedded types: if the position is unknown,
    don't do a version check.
    
    We may want to assert that positions are known in all other cases,
    but since this is an older release, don't add such additional changes
    to avoid introducing other bugs.
    
    Fixes #66326.
    Updates #66064.
    
    Change-Id: I158cf51aa382f85d612ab958ba4b591de1c5fdb2
    Reviewed-on: https://go-review.googlesource.com/c/go/+/574736
    Reviewed-by: Cherry Mui <cherryyz@google.com>
    LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
    griesemer authored and thanm committed Mar 27, 2024
    Copy the full SHA
    efb7cc4 View commit details

Commits on Mar 28, 2024

  1. [release-branch.go1.21] all: update golang.org/x/net

    Pulls in one HTTP/2 fix:
    
    	0b0455d2c9 http2: reject DATA frames after 1xx and before final headers
    
    For #65927
    Fixes #66254
    
    Change-Id: I257b2634f63e8c6039c44dea24c345043c23c8d2
    Reviewed-on: https://go-review.googlesource.com/c/go/+/574916
    Reviewed-by: Than McIntosh <thanm@google.com>
    Reviewed-by: Dmitri Shuralyov <dmitshur@golang.org>
    LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
    neild authored and thanm committed Mar 28, 2024
    Copy the full SHA
    30d8550 View commit details

Commits on Apr 3, 2024

  1. [release-branch.go1.21] net/http: update bundled golang.org/x/net/http2

    Disable cmd/internal/moddeps test, since this update includes PRIVATE
    track fixes.
    
    Fixes CVE-2023-45288
    For #65051
    Fixes #65387
    
    Change-Id: I17da6da2fe0dd70062b49f94377875acb34829a1
    Reviewed-on: https://team-review.git.corp.google.com/c/golang/go-private/+/2197267
    Reviewed-by: Dmitri Shuralyov <dmitshur@google.com>
    Run-TryBot: Damien Neil <dneil@google.com>
    Reviewed-by: Tatiana Bradley <tatianabradley@google.com>
    Reviewed-on: https://go-review.googlesource.com/c/go/+/576075
    TryBot-Bypass: Dmitri Shuralyov <dmitshur@google.com>
    Commit-Queue: Dmitri Shuralyov <dmitshur@golang.org>
    Auto-Submit: Dmitri Shuralyov <dmitshur@google.com>
    Reviewed-by: Than McIntosh <thanm@google.com>
    neild authored and gopherbot committed Apr 3, 2024
    Copy the full SHA
    ae59133 View commit details
  2. [release-branch.go1.21] go1.21.9

    Change-Id: I6c69376d434dcf310336a0344051037bf58a4cf7
    Reviewed-on: https://go-review.googlesource.com/c/go/+/576117
    Commit-Queue: Gopher Robot <gobot@golang.org>
    Reviewed-by: Than McIntosh <thanm@google.com>
    TryBot-Bypass: Dmitri Shuralyov <dmitshur@google.com>
    Reviewed-by: Dmitri Shuralyov <dmitshur@google.com>
    Auto-Submit: Gopher Robot <gobot@golang.org>
    gopherbot committed Apr 3, 2024
    Copy the full SHA
    d8392e6 View commit details
4 changes: 2 additions & 2 deletions VERSION
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
go1.21.8
time 2024-02-29T18:18:48Z
go1.21.9
time 2024-03-29T15:27:02Z
11 changes: 5 additions & 6 deletions src/cmd/compile/internal/types2/typeset.go
Original file line number Diff line number Diff line change
@@ -255,9 +255,8 @@ func computeInterfaceTypeSet(check *Checker, pos syntax.Pos, ityp *Interface) *_
allTerms := allTermlist
allComparable := false
for i, typ := range ityp.embeddeds {
// The embedding position is nil for imported interfaces
// and also for interface copies after substitution (but
// in that case we don't need to report errors again).
// The embedding position is nil for imported interfaces.
// We don't need to do version checks in those cases.
var pos syntax.Pos // embedding position
if ityp.embedPos != nil {
pos = (*ityp.embedPos)[i]
@@ -270,7 +269,7 @@ func computeInterfaceTypeSet(check *Checker, pos syntax.Pos, ityp *Interface) *_
assert(!isTypeParam(typ))
tset := computeInterfaceTypeSet(check, pos, u)
// If typ is local, an error was already reported where typ is specified/defined.
if check != nil && check.isImportedConstraint(typ) && !check.verifyVersionf(pos, go1_18, "embedding constraint interface %s", typ) {
if pos.IsKnown() && check != nil && check.isImportedConstraint(typ) && !check.verifyVersionf(pos, go1_18, "embedding constraint interface %s", typ) {
continue
}
comparable = tset.comparable
@@ -279,7 +278,7 @@ func computeInterfaceTypeSet(check *Checker, pos syntax.Pos, ityp *Interface) *_
}
terms = tset.terms
case *Union:
if check != nil && !check.verifyVersionf(pos, go1_18, "embedding interface element %s", u) {
if pos.IsKnown() && check != nil && !check.verifyVersionf(pos, go1_18, "embedding interface element %s", u) {
continue
}
tset := computeUnionTypeSet(check, unionSets, pos, u)
@@ -293,7 +292,7 @@ func computeInterfaceTypeSet(check *Checker, pos syntax.Pos, ityp *Interface) *_
if u == Typ[Invalid] {
continue
}
if check != nil && !check.verifyVersionf(pos, go1_18, "embedding non-interface type %s", typ) {
if pos.IsKnown() && check != nil && !check.verifyVersionf(pos, go1_18, "embedding non-interface type %s", typ) {
continue
}
terms = termlist{{false, typ}}
4 changes: 4 additions & 0 deletions src/cmd/go/testdata/script/test_ppc64_linker_funcs.txt
Original file line number Diff line number Diff line change
@@ -14,6 +14,10 @@ go build -ldflags='-linkmode=internal'
exec ./abitest
stdout success

go build -buildmode=pie -o abitest.pie -ldflags='-linkmode=internal'
exec ./abitest.pie
stdout success

-- go.mod --
module abitest

2 changes: 2 additions & 0 deletions src/cmd/internal/moddeps/moddeps_test.go
Original file line number Diff line number Diff line change
@@ -33,6 +33,8 @@ import (
// See issues 36852, 41409, and 43687.
// (Also see golang.org/issue/27348.)
func TestAllDependencies(t *testing.T) {
t.Skip("TODO(#65051): 1.21.9 contains unreleased changes from vendored modules")

goBin := testenv.GoToolPath(t)

// Ensure that all packages imported within GOROOT
19 changes: 18 additions & 1 deletion src/cmd/internal/obj/ppc64/obj9.go
Original file line number Diff line number Diff line change
@@ -36,8 +36,25 @@ import (
"cmd/internal/sys"
"internal/abi"
"log"
"strings"
)

// Is this a symbol which should never have a TOC prologue generated?
// These are special functions which should not have a TOC regeneration
// prologue.
func isNOTOCfunc(name string) bool {
switch {
case name == "runtime.duffzero":
return true
case name == "runtime.duffcopy":
return true
case strings.HasPrefix(name, "runtime.elf_"):
return true
default:
return false
}
}

func progedit(ctxt *obj.Link, p *obj.Prog, newprog obj.ProgAlloc) {
p.From.Class = 0
p.To.Class = 0
@@ -643,7 +660,7 @@ func preprocess(ctxt *obj.Link, cursym *obj.LSym, newprog obj.ProgAlloc) {

q = p

if NeedTOCpointer(c.ctxt) && c.cursym.Name != "runtime.duffzero" && c.cursym.Name != "runtime.duffcopy" {
if NeedTOCpointer(c.ctxt) && !isNOTOCfunc(c.cursym.Name) {
// When compiling Go into PIC, without PCrel support, all functions must start
// with instructions to load the TOC pointer into r2:
//
17 changes: 1 addition & 16 deletions src/cmd/link/internal/ppc64/asm.go
Original file line number Diff line number Diff line change
@@ -475,24 +475,9 @@ func rewriteABIFuncReloc(ctxt *ld.Link, ldr *loader.Loader, tname string, r load
r.SetAdd(int64((n - minReg) * offMul))
firstUse = !ldr.AttrReachable(ts)
if firstUse {
ldr.SetAttrReachable(ts, true)
// This function only becomes reachable now. It has been dropped from
// the text section (it was unreachable until now), it needs included.
//
// Similarly, TOC regeneration should not happen for these functions,
// remove it from this save/restore function.
if ldr.AttrShared(ts) {
sb := ldr.MakeSymbolUpdater(ts)
sb.SetData(sb.Data()[8:])
sb.SetSize(sb.Size() - 8)
relocs := sb.Relocs()
// Only one PCREL reloc to .TOC. should be present.
if relocs.Count() != 1 {
log.Fatalf("Unexpected number of relocs in %s\n", ldr.SymName(ts))
}
sb.ResetRelocs()

}
ldr.SetAttrReachable(ts, true)
}
return ts, firstUse
}
2 changes: 1 addition & 1 deletion src/go.mod
Original file line number Diff line number Diff line change
@@ -4,7 +4,7 @@ go 1.21

require (
golang.org/x/crypto v0.11.1-0.20230711161743-2e82bdd1719d
golang.org/x/net v0.12.1-0.20231027154334-5ca955b1789c
golang.org/x/net v0.12.1-0.20240327214420-1a2eef3ba536
)

require (
4 changes: 2 additions & 2 deletions src/go.sum
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
golang.org/x/crypto v0.11.1-0.20230711161743-2e82bdd1719d h1:LiA25/KWKuXfIq5pMIBq1s5hz3HQxhJJSu/SUGlD+SM=
golang.org/x/crypto v0.11.1-0.20230711161743-2e82bdd1719d/go.mod h1:xgJhtzW8F9jGdVFWZESrid1U1bjeNy4zgy5cRr/CIio=
golang.org/x/net v0.12.1-0.20231027154334-5ca955b1789c h1:d+VvAxu4S13DWtf73R5eY//VaCk3aUcVdyYjM1SX7zw=
golang.org/x/net v0.12.1-0.20231027154334-5ca955b1789c/go.mod h1:zEVYFnQC7m/vmpQFELhcD1EWkZlX69l4oqgmer6hfKA=
golang.org/x/net v0.12.1-0.20240327214420-1a2eef3ba536 h1:QEPT0Le4+itOUqHbs7yUz5y7FoAOuK1ibDlfTcVguHM=
golang.org/x/net v0.12.1-0.20240327214420-1a2eef3ba536/go.mod h1:zEVYFnQC7m/vmpQFELhcD1EWkZlX69l4oqgmer6hfKA=
golang.org/x/sys v0.10.0 h1:SqMFp9UcQJZa+pmYuAKjd9xq1f0j5rLcDIk0mj4qAsA=
golang.org/x/sys v0.10.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
golang.org/x/text v0.11.0 h1:LAntKIrcmeSKERyiOh0XMV39LXS8IE9UL2yP7+f5ij4=
11 changes: 5 additions & 6 deletions src/go/types/typeset.go
Original file line number Diff line number Diff line change
@@ -253,9 +253,8 @@ func computeInterfaceTypeSet(check *Checker, pos token.Pos, ityp *Interface) *_T
allTerms := allTermlist
allComparable := false
for i, typ := range ityp.embeddeds {
// The embedding position is nil for imported interfaces
// and also for interface copies after substitution (but
// in that case we don't need to report errors again).
// The embedding position is nil for imported interfaces.
// We don't need to do version checks in those cases.
var pos token.Pos // embedding position
if ityp.embedPos != nil {
pos = (*ityp.embedPos)[i]
@@ -268,7 +267,7 @@ func computeInterfaceTypeSet(check *Checker, pos token.Pos, ityp *Interface) *_T
assert(!isTypeParam(typ))
tset := computeInterfaceTypeSet(check, pos, u)
// If typ is local, an error was already reported where typ is specified/defined.
if check != nil && check.isImportedConstraint(typ) && !check.verifyVersionf(atPos(pos), go1_18, "embedding constraint interface %s", typ) {
if pos.IsValid() && check != nil && check.isImportedConstraint(typ) && !check.verifyVersionf(atPos(pos), go1_18, "embedding constraint interface %s", typ) {
continue
}
comparable = tset.comparable
@@ -277,7 +276,7 @@ func computeInterfaceTypeSet(check *Checker, pos token.Pos, ityp *Interface) *_T
}
terms = tset.terms
case *Union:
if check != nil && !check.verifyVersionf(atPos(pos), go1_18, "embedding interface element %s", u) {
if pos.IsValid() && check != nil && !check.verifyVersionf(atPos(pos), go1_18, "embedding interface element %s", u) {
continue
}
tset := computeUnionTypeSet(check, unionSets, pos, u)
@@ -291,7 +290,7 @@ func computeInterfaceTypeSet(check *Checker, pos token.Pos, ityp *Interface) *_T
if u == Typ[Invalid] {
continue
}
if check != nil && !check.verifyVersionf(atPos(pos), go1_18, "embedding non-interface type %s", typ) {
if pos.IsValid() && check != nil && !check.verifyVersionf(atPos(pos), go1_18, "embedding non-interface type %s", typ) {
continue
}
terms = termlist{{false, typ}}
15 changes: 15 additions & 0 deletions src/internal/types/testdata/fixedbugs/issue66064.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
// -lang=go1.16

// Copyright 2024 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.

//go:build go1.21

package main

import "slices"

func main() {
_ = slices.Clone([]string{}) // no error should be reported here
}
33 changes: 32 additions & 1 deletion src/net/http/h2_bundle.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/vendor/modules.txt
Original file line number Diff line number Diff line change
@@ -7,7 +7,7 @@ golang.org/x/crypto/cryptobyte/asn1
golang.org/x/crypto/hkdf
golang.org/x/crypto/internal/alias
golang.org/x/crypto/internal/poly1305
# golang.org/x/net v0.12.1-0.20231027154334-5ca955b1789c
# golang.org/x/net v0.12.1-0.20240327214420-1a2eef3ba536
## explicit; go 1.17
golang.org/x/net/dns/dnsmessage
golang.org/x/net/http/httpguts