On Fri, Feb 07, 2020 at 07:49:22PM -0500, Theodore Y. Ts'o wrote: > "add_device_randomness()" and so what this commit is doing is simply > counting the length of xxx in "rng_seed=xxx" and assuming that those > bytes are 100% entropy and simply crediting the trusted entropy by > length of xxx. If xxx happened to be a hex string, or worse, was That'd been what I'd intially read the commit message as saying :/ > The second is that we're treating rng_seed as being magic, and if > someone tries to pass in something like rng_seed=0x7932dca76b51 > because they didn't understand how rng_seed was going to work, it > would be surprising. We already have a kaslr-seed property on arm64 since we need a seed for KASLR *super* early, we could generalize that I guess but it's not clear to me that it's a good idea. One fun thing here is that the kernel command line is visible to userspace so we go and erase the seed from the command line after reading it. > My preference would be to pass in the random seed *not* on the > command-line at all, but as a separate parameter which is passed to > the bootloader, just as we pass in the device-tree, the initrd and the > command-line as separate things. The problem is that how we pass in > extra boot parameters is architecture specific, and how we might do it > for x86 is different than for arm64. So yeah, it's a bit more > inconvenient to do things that way; but I think it's also much > cleaner. Anything that requires boot protocol updates is going to be rather difficult to deploy for the use it'll likely get - as far as I can see we're basically just talking about the cases where there's some entropy source available to the bootloader that the kernel can't get at directly. With the arm64 kaslr-seed it's not clear that people are feeding actual entropy in there, they could be using something like the device serial number to give different layouts on different devices even if they can't get any useful entropy for boot to boot variation.