locks and kernel randomness...
Warner Losh
imp at bsdimp.com
Tue Feb 24 19:45:46 UTC 2015
> On Feb 24, 2015, at 11:30 AM, John-Mark Gurney <jmg at funkthat.com> wrote:
>
> Warner Losh wrote this message on Tue, Feb 24, 2015 at 11:03 -0700:
>>
>>> On Feb 24, 2015, at 10:40 AM, John-Mark Gurney <jmg at funkthat.com> wrote:
>>>
>>> Warner Losh wrote this message on Tue, Feb 24, 2015 at 07:56 -0700:
>>>> Then again, if you want to change random(), provide a weak_random() that???s
>>>> the traditional non-crypto thing that???s fast and lockless. That would make it easy
>>>> to audit in our tree. The scheduler doesn???t need cryptographic randomness, it
>>>> just needs to make different choices sometimes to ensure its notion of fairness.
>>>
>>> I do not support having a weak_random... If the consumer is sure
>>> enough that you don't need a secure random, then they can pick an LCG
>>> and implement it themselves and deal (or not) w/ the locking issues...
>>>
>>> It appears that the scheduler had an LCG but for some reason the authors
>>> didn't feel like using it here..
>>
>> Why don???t you support having a common random routine that???s to mix the
>> pot, but not cryptographically secure? Lots of algorithms use them, and having
>> a common one would keep us from reinventing the wheel.
>
> Why can't these algorithms use a cryptographically secure RNG instead?
> No one has truely answered that point.. Everyone says they want to use
> an insecure RNG, but the real question is, why can't/shouldn't these
> algorithms use a CSPRNG?
They could, assuming that no locks are needed to get this and the computation
isn’t too large because this is in the fast path of the kernel. They just don’t need
it to be that strong. Not having any other interactions with the rest of the system
is also desirable.
Historically, a CSPRNG is spelled rand() or random(). So by calling those functions,
they are saying they want that. Some callers need more, others do not.
Warner
More information about the freebsd-arch
mailing list