1 /* Copyright (C) 2005 - 2008 Jeff Dike <jdike@{linux.intel,addtoit}.com> */
3 /* Much of this ripped from drivers/char/hw_random.c, see there for other
6 * This software may be used and distributed according to the terms
7 * of the GNU General Public License, incorporated herein by reference.
9 #include <linux/sched.h>
10 #include <linux/smp_lock.h>
11 #include <linux/module.h>
13 #include <linux/interrupt.h>
14 #include <linux/miscdevice.h>
15 #include <linux/delay.h>
16 #include <asm/uaccess.h>
21 * core module and version information
23 #define RNG_VERSION "1.0.0"
24 #define RNG_MODULE_NAME "hw_random"
26 #define RNG_MISCDEV_MINOR 183 /* official */
28 /* Changed at init time, in the non-modular case, and at module load
29 * time, in the module case. Presumably, the module subsystem
30 * protects against a module being loaded twice at the same time.
32 static int random_fd
= -1;
33 static DECLARE_WAIT_QUEUE_HEAD(host_read_wait
);
35 static int rng_dev_open (struct inode
*inode
, struct file
*filp
)
39 /* enforce read-only access to this chrdev */
40 if ((filp
->f_mode
& FMODE_READ
) == 0)
42 if ((filp
->f_mode
& FMODE_WRITE
) != 0)
48 static atomic_t host_sleep_count
= ATOMIC_INIT(0);
50 static ssize_t
rng_dev_read (struct file
*filp
, char __user
*buf
, size_t size
,
54 int n
, ret
= 0, have_data
;
57 n
= os_read_file(random_fd
, &data
, sizeof(data
));
60 while (have_data
&& size
) {
61 if (put_user((u8
) data
, buf
++)) {
62 ret
= ret
? : -EFAULT
;
71 else if (n
== -EAGAIN
) {
72 DECLARE_WAITQUEUE(wait
, current
);
74 if (filp
->f_flags
& O_NONBLOCK
)
75 return ret
? : -EAGAIN
;
77 atomic_inc(&host_sleep_count
);
78 reactivate_fd(random_fd
, RANDOM_IRQ
);
79 add_sigio_fd(random_fd
);
81 add_wait_queue(&host_read_wait
, &wait
);
82 set_task_state(current
, TASK_INTERRUPTIBLE
);
85 set_task_state(current
, TASK_RUNNING
);
86 remove_wait_queue(&host_read_wait
, &wait
);
88 if (atomic_dec_and_test(&host_sleep_count
)) {
89 ignore_sigio_fd(random_fd
);
90 deactivate_fd(random_fd
, RANDOM_IRQ
);
96 if (signal_pending (current
))
97 return ret
? : -ERESTARTSYS
;
102 static const struct file_operations rng_chrdev_ops
= {
103 .owner
= THIS_MODULE
,
104 .open
= rng_dev_open
,
105 .read
= rng_dev_read
,
108 /* rng_init shouldn't be called more than once at boot time */
109 static struct miscdevice rng_miscdev
= {
115 static irqreturn_t
random_interrupt(int irq
, void *data
)
117 wake_up(&host_read_wait
);
123 * rng_init - initialize RNG module
125 static int __init
rng_init (void)
129 err
= os_open_file("/dev/random", of_read(OPENFLAGS()), 0);
135 err
= um_request_irq(RANDOM_IRQ
, random_fd
, IRQ_READ
, random_interrupt
,
136 IRQF_DISABLED
| IRQF_SAMPLE_RANDOM
, "random",
139 goto err_out_cleanup_hw
;
141 sigio_broken(random_fd
, 1);
143 err
= misc_register (&rng_miscdev
);
145 printk (KERN_ERR RNG_MODULE_NAME
": misc device register "
147 goto err_out_cleanup_hw
;
153 os_close_file(random_fd
);
159 * rng_cleanup - shutdown RNG module
161 static void __exit
rng_cleanup (void)
163 os_close_file(random_fd
);
164 misc_deregister (&rng_miscdev
);
167 module_init (rng_init
);
168 module_exit (rng_cleanup
);
170 MODULE_DESCRIPTION("UML Host Random Number Generator (RNG) driver");
171 MODULE_LICENSE("GPL");