You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In early-boot situations on systems without HWRNGs, containerd will hang on start until enough entropy has been gathered for crypto/rand's Read to unblock. In these cases, math/rand's Read is a more ideal choice since it's non-blocking.
Note that this is a much bigger deal than it was before patches for CVE-2018-1108 landed in the Linux kernel.
@AkihiroSuda not yet, this change shouldn't be cherry-picked alone. I haven't figured out what the best set of changes to backport is or whether we still want another change to do seeding in a package rather than every main. If you have an idea or just want to cherry-pick this one first, go ahead
@dmcgowan Could you please elaborate which changes need to be backported when cherry-picking this PR into one of the 1.0.x releases? Thanks a lot in advance.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Addresses at least part of #2451...
In early-boot situations on systems without HWRNGs,
containerdwill hang on start until enough entropy has been gathered forcrypto/rand'sReadto unblock. In these cases,math/rand'sReadis a more ideal choice since it's non-blocking.Note that this is a much bigger deal than it was before patches for CVE-2018-1108 landed in the Linux kernel.
Signed-off-by: Dave Henderson [email protected]