Page MenuHomeFreeBSD

kern: random: use a spinlock for the reseed lock
AbandonedPublic

Authored by kevans on Oct 13 2021, 7:12 AM.
Tags
None
Referenced Files
F81518903: D32478.diff
Wed, Apr 17, 11:14 AM
Unknown Object (File)
Sat, Mar 30, 11:49 PM
Unknown Object (File)
Dec 26 2023, 8:34 PM
Unknown Object (File)
Dec 25 2023, 2:34 AM
Unknown Object (File)
Dec 23 2023, 9:20 AM
Unknown Object (File)
Nov 28 2023, 3:56 AM
Unknown Object (File)
Nov 1 2023, 11:17 PM
Unknown Object (File)
Sep 27 2023, 12:12 PM

Details

Reviewers
None
Group Reviewers
csprng
Summary

read_random() will often induce a reseed in fortuna; make the reseed
lock a spinlock to allow random consumers in non-sleepable contexts.

The fX implementation has the same issue in the standard read path with
the brng lock, but that's out of scope for the time being as I've not
done any testing with fX.

X-NetApp-PR: #69
Sponsored by: NetApp, Inc.
Sponsored by: Klara, Inc.

Diff Detail

Repository
rS FreeBSD src repository - subversion
Lint
Lint Passed
Unit
No Test Coverage
Build Status
Buildable 42101
Build 38989: arc lint + arc unit

Event Timeline

This looks safe enough to me.

I don't believe anything should be consuming random in interrupt contexts. Could you elaborate on the scenario / bug?

In D32478#732631, @cem wrote:

I don't believe anything should be consuming random in interrupt contexts. Could you elaborate on the scenario / bug?

I'll double check tomorrow, but it's some downstream code that's iirc trying to consume random in the net epoch... but I might be crossing memories on that one. It's definitely downstream stuff, at least. :-)

but net epoch is allowed to take a non-spin mutex

In D32478#732634, @mjg wrote:

but net epoch is allowed to take a non-spin mutex

OK, so definitely crossing memories on that one.

OK, without going into too much detail, the downstream code is periodically polling random in what's effectively a swi.

In D32478#732631, @cem wrote:

I don't believe anything should be consuming random in interrupt contexts. Could you elaborate on the scenario / bug?

Anything else I can do to better elucidate on NetApp's needs? When you say "should be" here, do you consider it a fundamentally bad idea or just that it's not a scenario that should be happening in stock FreeBSD?

I meant fundamentally bad idea. Very little work should happen in interrupt context. Taking a global lock and running AES in software is somewhat expensive.

Also, I am concerned about the effect — of making this a spinlock — on all the non-SWI code that formerly blocked but would now spin on the lock.

In D32478#736882, @cem wrote:

I meant fundamentally bad idea. Very little work should happen in interrupt context. Taking a global lock and running AES in software is somewhat expensive.

Sure, fair enough; I think it's a not-quite-interrupt-context but they treat it as such for 'other reasons', but I don't fully understand the context (it's a bit of an atypical application). But given that:

Also, I am concerned about the effect — of making this a spinlock — on all the non-SWI code that formerly blocked but would now spin on the lock.

I'm going to push it back downstream and abandon this, since it's a low-maintenance diff for them to maintain. Thanks!