Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update to go1.21.5, go1.20.12 #9351

Merged
merged 2 commits into from Dec 7, 2023
Merged

Conversation

thaJeztah
Copy link
Member

@thaJeztah thaJeztah commented Nov 8, 2023

update to go1.21.5, go1.20.12

go1.21.5 (released 2023-12-05) includes security fixes to the go command,
and the net/http and path/filepath packages, as well as bug fixes to the
compiler, the go command, the runtime, and the crypto/rand, net, os, and
syscall packages. See the Go 1.21.5 milestone on our issue tracker for
details:

from the security mailing:

[security] Go 1.21.5 and Go 1.20.12 are released

Hello gophers,

We have just released Go versions 1.21.5 and 1.20.12, minor point releases.

These minor releases include 3 security fixes following the security policy:

  • net/http: limit chunked data overhead

    A malicious HTTP sender can use chunk extensions to cause a receiver
    reading from a request or response body to read many more bytes from
    the network than are in the body.

    A malicious HTTP client can further exploit this to cause a server to
    automatically read a large amount of data (up to about 1GiB) when a
    handler fails to read the entire body of a request.

    Chunk extensions are a little-used HTTP feature which permit including
    additional metadata in a request or response body sent using the chunked
    encoding. The net/http chunked encoding reader discards this metadata.
    A sender can exploit this by inserting a large metadata segment with
    each byte transferred. The chunk reader now produces an error if the
    ratio of real body to encoded bytes grows too small.

    Thanks to Bartek Nowotarski for reporting this issue.

    This is CVE-2023-39326 and Go issue https://go.dev/issue/64433.

  • cmd/go: go get may unexpectedly fallback to insecure git

    Using go get to fetch a module with the ".git" suffix may unexpectedly
    fallback to the insecure "git://" protocol if the module is unavailable
    via the secure "https://" and "git+ssh://" protocols, even if GOINSECURE
    is not set for said module. This only affects users who are not using
    the module proxy and are fetching modules directly (i.e. GOPROXY=off).

    Thanks to David Leadbeater for reporting this issue.

    This is CVE-2023-45285 and Go issue https://go.dev/issue/63845.

  • path/filepath: retain trailing \ when cleaning paths like \?\c:\

    Go 1.20.11 and Go 1.21.4 inadvertently changed the definition of the
    volume name in Windows paths starting with \?, resulting in
    filepath.Clean(\?\c:) returning \?\c: rather than \?\c:\ (among
    other effects). The previous behavior has been restored.

    This is an update to CVE-2023-45283 and Go issue https://go.dev/issue/64028.

update to go1.21.4, go1.20.11

go1.21.4 (released 2023-11-07) includes security fixes to the path/filepath package, as well as bug fixes to the linker, the runtime, the compiler, and the go/types, net/http, and runtime/cgo packages. See the Go 1.21.4 milestone on our issue tracker for details:

from the security mailing:

[security] Go 1.21.4 and Go 1.20.11 are released

Hello gophers,

We have just released Go versions 1.21.4 and 1.20.11, minor point releases.

These minor releases include 2 security fixes following the security policy:

  • path/filepath: recognize \??\ as a Root Local Device path prefix.

    On Windows, a path beginning with \??\ is a Root Local Device path equivalent
    to a path beginning with \\?\. Paths with a \??\ prefix may be used to
    access arbitrary locations on the system. For example, the path \??\c:\x
    is equivalent to the more common path c:\x.

    The filepath package did not recognize paths with a \??\ prefix as special.

    Clean could convert a rooted path such as \a\..\??\b into
    the root local device path \??\b. It will now convert this
    path into .\??\b.

    IsAbs did not report paths beginning with \??\ as absolute.
    It now does so.

    VolumeName now reports the \??\ prefix as a volume name.

    Join(`, ??, b)could convert a seemingly innocent sequence of path elements into the root local device path??\b. It will now convert this to .??\b`.

    This is CVE-2023-45283 and https://go.dev/issue/63713.

  • path/filepath: recognize device names with trailing spaces and superscripts

    The IsLocal function did not correctly detect reserved names in some cases:

    • reserved names followed by spaces, such as "COM1 ".
    • "COM" or "LPT" followed by a superscript 1, 2, or 3.

    IsLocal now correctly reports these names as non-local.

    This is CVE-2023-45284 and https://go.dev/issue/63713.

@thaJeztah
Copy link
Member Author

Interesting; CI fails on validating vendor (go.sum)

@kzys
Copy link
Member

kzys commented Nov 9, 2023

Very odd. I couldn't reproduce the issue locally.

@thaJeztah
Copy link
Member Author

Yes, I also tried locally, and wasn't able to. Wondering if it's somehow using a different version of Go (or using old Go semantics related to the "gotoolchain" changes)

@thaJeztah
Copy link
Member Author

Unfortunately, it looks lke the security update contains a regression / breaking change, which causes CI to fail (both here in containerd, as well as in moby (docker engine)); see the 1.7 version of this patch; #9352

=== Failed
=== FAIL: pkg/os TestResolvePath/local_path (0.00s)
    os_windows_test.go:247: EvalSymlinks should return no error, but GetFileInformationByHandle \\?\Volume{a88ab5aa-0000-0000-0000-501f00000000}: Incorrect function.

=== FAIL: pkg/os TestResolvePath/symlink_to_local_path (0.00s)
    os_windows_test.go:247: EvalSymlinks should return no error, but GetFileInformationByHandle \\?\Volume{a88ab5aa-0000-0000-0000-501f00000000}: Incorrect function.

=== FAIL: pkg/os TestResolvePath/volume_with_no_mount_point (0.00s)
    os_windows_test.go:247: EvalSymlinks should return no error, but GetFileInformationByHandle \\?\Volume{6e611255-c868-405d-a8bb-4f9da7c536b7}: Incorrect function.

=== FAIL: pkg/os TestResolvePath/symlink_to_volume_with_no_mount_point (0.00s)
    os_windows_test.go:247: EvalSymlinks should return no error, but GetFileInformationByHandle \\?\Volume{6e611255-c868-405d-a8bb-4f9da7c536b7}: Incorrect function.

=== FAIL: pkg/os TestResolvePath/volume_with_mount_point (0.00s)
    os_windows_test.go:247: EvalSymlinks should return no error, but GetFileInformationByHandle \\?\Volume{ebdf9f81-287d-4b54-ade3-be7f569236cc}: Incorrect function.

=== FAIL: pkg/os TestResolvePath/symlink_to_volume_with_mount_point (0.00s)
    os_windows_test.go:247: EvalSymlinks should return no error, but GetFileInformationByHandle \\?\Volume{ebdf9f81-287d-4b54-ade3-be7f569236cc}: Incorrect function.

=== FAIL: pkg/os TestResolvePath (1.10s)

Moving this back to draft while that's being looked into.

@thaJeztah thaJeztah marked this pull request as draft November 9, 2023 10:02
@thaJeztah
Copy link
Member Author

@mxpv mxpv added the status/needs-update Awaiting contributor update label Dec 1, 2023
go1.21.4 (released 2023-11-07) includes security fixes to the path/filepath
package, as well as bug fixes to the linker, the runtime, the compiler, and
the go/types, net/http, and runtime/cgo packages. See the Go 1.21.4 milestone
on our issue tracker for details:

- https://github.com/golang/go/issues?q=milestone%3AGo1.21.4+label%3ACherryPickApproved
- full diff: golang/go@go1.21.3...go1.21.4

from the security mailing:

[security] Go 1.21.4 and Go 1.20.11 are released

Hello gophers,

We have just released Go versions 1.21.4 and 1.20.11, minor point releases.

These minor releases include 2 security fixes following the security policy:

- path/filepath: recognize `\??\` as a Root Local Device path prefix.

  On Windows, a path beginning with `\??\` is a Root Local Device path equivalent
  to a path beginning with `\\?\`. Paths with a `\??\` prefix may be used to
  access arbitrary locations on the system. For example, the path `\??\c:\x`
  is equivalent to the more common path c:\x.

  The filepath package did not recognize paths with a `\??\` prefix as special.

  Clean could convert a rooted path such as `\a\..\??\b` into
  the root local device path `\??\b`. It will now convert this
  path into `.\??\b`.

  `IsAbs` did not report paths beginning with `\??\` as absolute.
  It now does so.

  VolumeName now reports the `\??\` prefix as a volume name.

  `Join(`\`, `??`, `b`)` could convert a seemingly innocent
  sequence of path elements into the root local device path
  `\??\b`. It will now convert this to `\.\??\b`.

  This is CVE-2023-45283 and https://go.dev/issue/63713.

- path/filepath: recognize device names with trailing spaces and superscripts

  The `IsLocal` function did not correctly detect reserved names in some cases:

  - reserved names followed by spaces, such as "COM1 ".
  - "COM" or "LPT" followed by a superscript 1, 2, or 3.

  `IsLocal` now correctly reports these names as non-local.

  This is CVE-2023-45284 and https://go.dev/issue/63713.

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
go1.21.5 (released 2023-12-05) includes security fixes to the go command,
and the net/http and path/filepath packages, as well as bug fixes to the
compiler, the go command, the runtime, and the crypto/rand, net, os, and
syscall packages. See the Go 1.21.5 milestone on our issue tracker for
details:

- https://github.com/golang/go/issues?q=milestone%3AGo1.21.5+label%3ACherryPickApproved
- full diff: golang/go@go1.21.4...go1.21.5

from the security mailing:

[security] Go 1.21.5 and Go 1.20.12 are released

Hello gophers,

We have just released Go versions 1.21.5 and 1.20.12, minor point releases.

These minor releases include 3 security fixes following the security policy:

- net/http: limit chunked data overhead

  A malicious HTTP sender can use chunk extensions to cause a receiver
  reading from a request or response body to read many more bytes from
  the network than are in the body.

  A malicious HTTP client can further exploit this to cause a server to
  automatically read a large amount of data (up to about 1GiB) when a
  handler fails to read the entire body of a request.

  Chunk extensions are a little-used HTTP feature which permit including
  additional metadata in a request or response body sent using the chunked
  encoding. The net/http chunked encoding reader discards this metadata.
  A sender can exploit this by inserting a large metadata segment with
  each byte transferred. The chunk reader now produces an error if the
  ratio of real body to encoded bytes grows too small.

  Thanks to Bartek Nowotarski for reporting this issue.

  This is CVE-2023-39326 and Go issue https://go.dev/issue/64433.

- cmd/go: go get may unexpectedly fallback to insecure git

  Using go get to fetch a module with the ".git" suffix may unexpectedly
  fallback to the insecure "git://" protocol if the module is unavailable
  via the secure "https://" and "git+ssh://" protocols, even if GOINSECURE
  is not set for said module. This only affects users who are not using
  the module proxy and are fetching modules directly (i.e. GOPROXY=off).

  Thanks to David Leadbeater for reporting this issue.

  This is CVE-2023-45285 and Go issue https://go.dev/issue/63845.

- path/filepath: retain trailing \ when cleaning paths like \\?\c:\

  Go 1.20.11 and Go 1.21.4 inadvertently changed the definition of the
  volume name in Windows paths starting with \\?\, resulting in
  filepath.Clean(\\?\c:\) returning \\?\c: rather than \\?\c:\ (among
  other effects). The previous behavior has been restored.

  This is an update to CVE-2023-45283 and Go issue https://go.dev/issue/64028.

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
@thaJeztah thaJeztah changed the title update to go1.21.4, go1.20.11 update to go1.21.5, go1.20.12 Dec 5, 2023
@thaJeztah thaJeztah marked this pull request as ready for review December 5, 2023 22:36
@thaJeztah
Copy link
Member Author

updated to go1.21.5, go1.20.12, which were released today

@thaJeztah
Copy link
Member Author

Looks like we need to update branch protection settings, because it's waiting for "required" checks for 1.21.3 and 1.20.10 (which no longer exist in this PR);

Screenshot 2023-12-06 at 01 25 43

@thaJeztah thaJeztah self-assigned this Dec 6, 2023
@thaJeztah thaJeztah removed the status/needs-update Awaiting contributor update label Dec 6, 2023
Copy link
Member

@akhilerm akhilerm left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

/lgtm

Copy link
Member

@fuweid fuweid left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM

@fuweid fuweid enabled auto-merge December 7, 2023 15:34
@estesp estesp disabled auto-merge December 7, 2023 15:39
@estesp estesp merged commit a68efb1 into containerd:main Dec 7, 2023
42 checks passed
fuweid pushed a commit to fuweid/containerd that referenced this pull request Dec 7, 2023
update to go1.21.5, go1.20.12

Signed-off-by: Wei Fu <fuweid89@gmail.com>
@thaJeztah thaJeztah deleted the update_golang_1.21.4 branch December 7, 2023 16:10
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
Development

Successfully merging this pull request may close these issues.

None yet

7 participants