2 * Copyright (c) 1999-2009 Apple, Inc. All rights reserved.
4 * @APPLE_OSREFERENCE_LICENSE_HEADER_START@
6 * This file contains Original Code and/or Modifications of Original Code
7 * as defined in and that are subject to the Apple Public Source License
8 * Version 2.0 (the 'License'). You may not use this file except in
9 * compliance with the License. The rights granted to you under the License
10 * may not be used to create, or enable the creation or redistribution of,
11 * unlawful or unlicensed copies of an Apple operating system, or to
12 * circumvent, violate, or enable the circumvention or violation of, any
13 * terms of an Apple operating system software license agreement.
15 * Please obtain a copy of the License at
16 * http://www.opensource.apple.com/apsl/ and read it before using this file.
18 * The Original Code and all software distributed under the License are
19 * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
20 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
21 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
22 * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
23 * Please see the License for the specific language governing rights and
24 * limitations under the License.
26 * @APPLE_OSREFERENCE_LICENSE_HEADER_END@
30 #include <sys/param.h>
31 #include <sys/systm.h>
33 #include <sys/errno.h>
34 #include <sys/ioctl.h>
36 #include <sys/fcntl.h>
38 #include <miscfs/devfs/devfs.h>
39 #include <kern/locks.h>
40 #include <kern/clock.h>
42 #include <sys/malloc.h>
43 #include <sys/sysproto.h>
44 #include <sys/uio_internal.h>
46 #include <dev/random/randomdev.h>
48 #include <libkern/OSByteOrder.h>
49 #include <libkern/OSAtomic.h>
51 #include <mach/mach_time.h>
53 #define RANDOM_MAJOR -1 /* let the kernel pick the device number */
54 #define RANDOM_MINOR 0
55 #define URANDOM_MINOR 1
57 d_ioctl_t random_ioctl
;
60 * A struct describing which functions will get invoked for certain
63 static struct cdevsw random_cdevsw
=
65 random_open
, /* open */
66 random_close
, /* close */
67 random_read
, /* read */
68 random_write
, /* write */
69 random_ioctl
, /* ioctl */
70 (stop_fcn_t
*)nulldev
, /* stop */
71 (reset_fcn_t
*)nulldev
, /* reset */
73 eno_select
, /* select */
75 eno_strat
, /* strategy */
83 * Called to initialize our device,
84 * and to register ourselves with devfs
91 ret
= cdevsw_add(RANDOM_MAJOR
, &random_cdevsw
);
93 panic("random_init: failed to allocate a major number!");
96 devfs_make_node(makedev(ret
, RANDOM_MINOR
), DEVFS_CHAR
,
97 UID_ROOT
, GID_WHEEL
, 0666, "random", 0);
101 * (which is exactly the same thing in our context)
103 devfs_make_node(makedev(ret
, URANDOM_MINOR
), DEVFS_CHAR
,
104 UID_ROOT
, GID_WHEEL
, 0666, "urandom", 0);
108 random_ioctl( __unused dev_t dev
, u_long cmd
, __unused caddr_t data
,
109 __unused
int flag
, __unused
struct proc
*p
)
123 * Open the device. Make sure init happened, and make sure the caller is
128 random_open(__unused dev_t dev
, int flags
, __unused
int devtype
, __unused
struct proc
*p
)
131 * if we are being opened for write,
132 * make sure that we have privledges do so
134 if (flags
& FWRITE
) {
135 if (securelevel
>= 2) {
139 if ((securelevel
>= 1) && proc_suser(p
)) {
142 #endif /* !__APPLE__ */
154 random_close(__unused dev_t dev
, __unused
int flags
, __unused
int mode
, __unused
struct proc
*p
)
161 * Get entropic data from the Security Server, and use it to reseed the
165 random_write(dev_t dev
, struct uio
*uio
, __unused
int ioflag
)
170 if (minor(dev
) != RANDOM_MINOR
) {
174 /* Security server is sending us entropy */
176 while (uio_resid(uio
) > 0 && retCode
== 0) {
177 /* get the user's data */
178 int bytesToInput
= MIN(uio_resid(uio
),
179 (user_ssize_t
) sizeof(rdBuffer
));
180 retCode
= uiomove(rdBuffer
, bytesToInput
, uio
);
184 retCode
= write_random(rdBuffer
, bytesToInput
);
194 * return data to the caller. Results unpredictable.
197 random_read(__unused dev_t dev
, struct uio
*uio
, __unused
int ioflag
)
202 user_ssize_t bytes_remaining
= uio_resid(uio
);
203 while (bytes_remaining
> 0 && retCode
== 0) {
204 int bytesToRead
= MIN(bytes_remaining
,
205 (user_ssize_t
) sizeof(buffer
));
206 read_random(buffer
, bytesToRead
);
208 retCode
= uiomove(buffer
, bytesToRead
, uio
);
213 bytes_remaining
= uio_resid(uio
);
220 * Return an u_int32_t pseudo-random number.
226 read_random(&buf
, sizeof(buf
));
232 getentropy(__unused
struct proc
* p
, struct getentropy_args
*gap
, __unused
int * ret
)
234 user_addr_t user_addr
;
238 user_addr
= (vm_map_offset_t
)gap
->buffer
;
239 user_size
= gap
->size
;
240 /* Can't request more than 256 random bytes
241 * at once. Complying with openbsd getentropy()
243 if (user_size
> sizeof(buffer
)) {
246 read_random(buffer
, user_size
);
247 return copyout(buffer
, user_addr
, user_size
);