[IPV6]: Give sit driver an appropriate module alias.
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / arch / um / drivers / random.c
blob73b2bdd6d2d3b867165e116b7a1b430f34096c9b
1 /* Copyright (C) 2005 Jeff Dike <jdike@addtoit.com> */
2 /* Much of this ripped from drivers/char/hw_random.c, see there for other
3 * copyright.
5 * This software may be used and distributed according to the terms
6 * of the GNU General Public License, incorporated herein by reference.
7 */
8 #include <linux/module.h>
9 #include <linux/fs.h>
10 #include <linux/miscdevice.h>
11 #include <linux/delay.h>
12 #include <asm/uaccess.h>
13 #include "os.h"
16 * core module and version information
18 #define RNG_VERSION "1.0.0"
19 #define RNG_MODULE_NAME "random"
21 #define RNG_MISCDEV_MINOR 183 /* official */
23 /* Changed at init time, in the non-modular case, and at module load
24 * time, in the module case. Presumably, the module subsystem
25 * protects against a module being loaded twice at the same time.
27 static int random_fd = -1;
29 static int rng_dev_open (struct inode *inode, struct file *filp)
31 /* enforce read-only access to this chrdev */
32 if ((filp->f_mode & FMODE_READ) == 0)
33 return -EINVAL;
34 if (filp->f_mode & FMODE_WRITE)
35 return -EINVAL;
37 return 0;
40 static ssize_t rng_dev_read (struct file *filp, char __user *buf, size_t size,
41 loff_t * offp)
43 u32 data;
44 int n, ret = 0, have_data;
46 while(size){
47 n = os_read_file(random_fd, &data, sizeof(data));
48 if(n > 0){
49 have_data = n;
50 while (have_data && size) {
51 if (put_user((u8)data, buf++)) {
52 ret = ret ? : -EFAULT;
53 break;
55 size--;
56 ret++;
57 have_data--;
58 data>>=8;
61 else if(n == -EAGAIN){
62 if (filp->f_flags & O_NONBLOCK)
63 return ret ? : -EAGAIN;
65 if(need_resched())
66 schedule_timeout_interruptible(1);
68 else return n;
69 if (signal_pending (current))
70 return ret ? : -ERESTARTSYS;
72 return ret;
75 static const struct file_operations rng_chrdev_ops = {
76 .owner = THIS_MODULE,
77 .open = rng_dev_open,
78 .read = rng_dev_read,
81 static struct miscdevice rng_miscdev = {
82 RNG_MISCDEV_MINOR,
83 RNG_MODULE_NAME,
84 &rng_chrdev_ops,
88 * rng_init - initialize RNG module
90 static int __init rng_init (void)
92 int err;
94 err = os_open_file("/dev/random", of_read(OPENFLAGS()), 0);
95 if(err < 0)
96 goto out;
98 random_fd = err;
100 err = os_set_fd_block(random_fd, 0);
101 if(err)
102 goto err_out_cleanup_hw;
104 err = misc_register (&rng_miscdev);
105 if (err) {
106 printk (KERN_ERR RNG_MODULE_NAME ": misc device register failed\n");
107 goto err_out_cleanup_hw;
110 out:
111 return err;
113 err_out_cleanup_hw:
114 random_fd = -1;
115 goto out;
119 * rng_cleanup - shutdown RNG module
121 static void __exit rng_cleanup (void)
123 misc_deregister (&rng_miscdev);
126 module_init (rng_init);
127 module_exit (rng_cleanup);
129 MODULE_DESCRIPTION("UML Host Random Number Generator (RNG) driver");
130 MODULE_LICENSE("GPL");