summaryrefslogtreecommitdiffstats
path: root/sys/dev/random
diff options
context:
space:
mode:
Diffstat (limited to 'sys/dev/random')
-rw-r--r--sys/dev/random/randomdev.c22
1 files changed, 16 insertions, 6 deletions
diff --git a/sys/dev/random/randomdev.c b/sys/dev/random/randomdev.c
index a0bd578..cd6f873 100644
--- a/sys/dev/random/randomdev.c
+++ b/sys/dev/random/randomdev.c
@@ -141,17 +141,27 @@ SYSCTL_PROC(_kern_random_sys_harvest, OID_AUTO, interrupt,
static int
random_open(dev_t dev, int flags, int fmt, struct thread *td)
{
- if ((flags & FWRITE) && (securelevel > 0 || suser(td->td_proc)))
- return EPERM;
- else
- return 0;
+ int error;
+
+ if (flags & FWRITE) {
+ error = suser(td->td_proc);
+ if (error)
+ return (error);
+ error = securelevel_gt(td->td_proc->p_ucred, 0);
+ if (error)
+ return (error);
+ }
+ return 0;
}
static int
random_close(dev_t dev, int flags, int fmt, struct thread *td)
{
- if ((flags & FWRITE) && !(securelevel > 0 || suser(td->td_proc)))
- random_reseed();
+ if (flags & FWRITE) {
+ if (!(suser(td->td_proc) ||
+ securelevel_gt(td->td_proc->p_ucred, 0)))
+ random_reseed();
+ }
return 0;
}
OpenPOWER on IntegriCloud