Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
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 ourterms of service andprivacy statement. We’ll occasionally send you account related emails.

Already on GitHub?Sign in to your account

Fix cryptographic certificates for post go 1.19#3161

Open
dperny wants to merge1 commit intomoby:master
base:master
Choose a base branch
Loading
fromdperny:fix-go-1.19

Conversation

dperny
Copy link
Collaborator

- What I did

Go 1.19 changed the way cryptographic certificates were verified, which broke a certain edge case of root CA rotation. This edge case is now disallowed.

- How I did it

As of go 1.19, the logic for certificate trust chain validation changed, and a chain including two certs with the same key will not validate. This case would usually occur when reissuing the same cert with a later expiration date. Because of this validation failure, our root rotation algorithm fails. While it might be possible to adjust the rotation procedure to accommodate such a cert change, it is somewhat of an edge case, and, more importantly, we do not currently possess the cryptographic expertise to safely make such a change. So, as a result, this operation is disallowed. The new root cert must have a new key.

- How to test it

Test changes within.

@thaJeztah
Copy link
Member

Looks like generated files need an update (also golangci-lint failing; could be out of memory?)

Comment on lines 463 to 471
//defer close(actualErrChan)
require.Error(t, err)
err = <-actualErrChan
require.Error(t, err)
require.IsType(t, x509.UnknownAuthorityError{}, err)
require.ErrorAs(t, err, &x509.UnknownAuthorityError{})
// require.IsType(t, x509.UnknownAuthorityError{}, err)

_, actualErrChan, err = tlsGRPCDial(tc.Context, l.Addr().String(), tcConfig.ClientTLSCreds)
defer close(actualErrChan)
//defer close(actualErrChan)
Copy link
Member

Choose a reason for hiding this comment

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

Are these commented-out lines temporary? Or forgot to remove?

@dperny
Copy link
CollaboratorAuthor

Something is broken with the linter. Even on my local machine, runningmake lint gets to thegolang-ci lint stage and very rapidly consumes some 20GB of RAM, then dies to the OOM killer.

@thaJeztah
Copy link
Member

Wondering if it needs settings tweaked; if it's a case of it running in a container and trying to spawn too many parallel things 🤔

I know I had to tweak GOMAXPROCS and some other things some years back for moby/moby

Go 1.19 changed the way cryptographic certificates were verified, whichbroke a certain edge case of root CA rotation. This edge case is nowdisallowed.Signed-off-by: Drew Erny <derny@mirantis.com>
@codecov-commenter
Copy link

Codecov Report

Merging#3161 (8a140cf) intomaster (911c976) willincrease coverage by0.07%.
The diff coverage is40.00%.

Additional details and impacted files
@@            Coverage Diff             @@##           master    #3161      +/-   ##==========================================+ Coverage   57.28%   57.35%   +0.07%==========================================  Files         144      144                Lines       30598    30603       +5     ==========================================+ Hits        17528    17553      +25+ Misses      11732    11709      -23- Partials     1338     1341       +3

Sign up for freeto join this conversation on GitHub. Already have an account?Sign in to comment
Reviewers

@thaJeztahthaJeztahthaJeztah left review comments

Assignees
No one assigned
Labels
None yet
Projects
None yet
Milestone
No milestone
Development

Successfully merging this pull request may close these issues.

3 participants
@dperny@thaJeztah@codecov-commenter

[8]ページ先頭

©2009-2025 Movatter.jp