diff options
| author | Mark Johnston <markj@FreeBSD.org> | 2025-09-19 22:58:22 +0000 |
|---|---|---|
| committer | Mark Johnston <markj@FreeBSD.org> | 2025-09-20 12:21:57 +0000 |
| commit | 174d5d9397c492aff67f7ad49e130039697dc1dd (patch) | |
| tree | 63c8c03957d8a9b732883a1f04b61fb5ac0ba8dd | |
| parent | 7ea59a07046a0bf25d4fccb456715dffaae52021 (diff) | |
random: fxrng: Add an entry for RANDOM_RANDOMDEV to the source table
Otherwise we get a NULL pointer dereference when writing to /dev/random.
PR: 288826
Reviewed by: cem
MFC after: 1 week
Fixes: fa8db724ae6e ("random: Treat writes to /dev/random as separate from /entropy")
Differential Revision: https://reviews.freebsd.org/D52633
| -rw-r--r-- | sys/dev/random/fenestrasX/fx_pool.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/sys/dev/random/fenestrasX/fx_pool.c b/sys/dev/random/fenestrasX/fx_pool.c index d2e6f0db71ee..f4ad1e295d54 100644 --- a/sys/dev/random/fenestrasX/fx_pool.c +++ b/sys/dev/random/fenestrasX/fx_pool.c @@ -164,6 +164,9 @@ static const struct fxrng_ent_char { [RANDOM_CALLOUT] = { .entc_cls = &fxrng_lo_push, }, + [RANDOM_RANDOMDEV] = { + .entc_cls = &fxrng_lo_push, + }, [RANDOM_PURE_OCTEON] = { .entc_cls = &fxrng_hi_push, /* Could be made pull. */ }, |
