| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* | 
|  | 2 | * linux/drivers/char/raw.c | 
|  | 3 | * | 
|  | 4 | * Front-end raw character devices.  These can be bound to any block | 
|  | 5 | * devices to provide genuine Unix raw character device semantics. | 
|  | 6 | * | 
|  | 7 | * We reserve minor number 0 for a control interface.  ioctl()s on this | 
|  | 8 | * device are used to bind the other minor numbers to block devices. | 
|  | 9 | */ | 
|  | 10 |  | 
|  | 11 | #include <linux/init.h> | 
|  | 12 | #include <linux/fs.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13 | #include <linux/major.h> | 
|  | 14 | #include <linux/blkdev.h> | 
|  | 15 | #include <linux/module.h> | 
|  | 16 | #include <linux/raw.h> | 
|  | 17 | #include <linux/capability.h> | 
|  | 18 | #include <linux/uio.h> | 
|  | 19 | #include <linux/cdev.h> | 
|  | 20 | #include <linux/device.h> | 
| Arjan van de Ven | 8ed965d | 2006-03-23 03:00:21 -0800 | [diff] [blame] | 21 | #include <linux/mutex.h> | 
| Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 22 | #include <linux/gfp.h> | 
| Al Viro | c4a0472 | 2009-08-24 22:42:56 +0000 | [diff] [blame] | 23 | #include <linux/compat.h> | 
| Jan Kara | 0078bff | 2011-04-29 00:24:29 +0200 | [diff] [blame] | 24 | #include <linux/vmalloc.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 25 |  | 
|  | 26 | #include <asm/uaccess.h> | 
|  | 27 |  | 
|  | 28 | struct raw_device_data { | 
|  | 29 | struct block_device *binding; | 
|  | 30 | int inuse; | 
|  | 31 | }; | 
|  | 32 |  | 
| gregkh@suse.de | ca8eca6 | 2005-03-23 09:53:09 -0800 | [diff] [blame] | 33 | static struct class *raw_class; | 
| Jan Kara | 0078bff | 2011-04-29 00:24:29 +0200 | [diff] [blame] | 34 | static struct raw_device_data *raw_devices; | 
| Arjan van de Ven | 8ed965d | 2006-03-23 03:00:21 -0800 | [diff] [blame] | 35 | static DEFINE_MUTEX(raw_mutex); | 
| Arjan van de Ven | 62322d2 | 2006-07-03 00:24:21 -0700 | [diff] [blame] | 36 | static const struct file_operations raw_ctl_fops; /* forward declaration */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 37 |  | 
| Jan Kara | 0078bff | 2011-04-29 00:24:29 +0200 | [diff] [blame] | 38 | static int max_raw_minors = MAX_RAW_MINORS; | 
|  | 39 |  | 
|  | 40 | module_param(max_raw_minors, int, 0); | 
|  | 41 | MODULE_PARM_DESC(max_raw_minors, "Maximum number of raw devices (1-65536)"); | 
|  | 42 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 43 | /* | 
|  | 44 | * Open/close code for raw IO. | 
|  | 45 | * | 
|  | 46 | * We just rewrite the i_mapping for the /dev/raw/rawN file descriptor to | 
|  | 47 | * point at the blockdev's address_space and set the file handle to use | 
|  | 48 | * O_DIRECT. | 
|  | 49 | * | 
|  | 50 | * Set the device's soft blocksize to the minimum possible.  This gives the | 
|  | 51 | * finest possible alignment and has no adverse impact on performance. | 
|  | 52 | */ | 
|  | 53 | static int raw_open(struct inode *inode, struct file *filp) | 
|  | 54 | { | 
|  | 55 | const int minor = iminor(inode); | 
|  | 56 | struct block_device *bdev; | 
|  | 57 | int err; | 
|  | 58 |  | 
|  | 59 | if (minor == 0) {	/* It is the control device */ | 
|  | 60 | filp->f_op = &raw_ctl_fops; | 
|  | 61 | return 0; | 
|  | 62 | } | 
|  | 63 |  | 
| Arjan van de Ven | 8ed965d | 2006-03-23 03:00:21 -0800 | [diff] [blame] | 64 | mutex_lock(&raw_mutex); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 65 |  | 
|  | 66 | /* | 
|  | 67 | * All we need to do on open is check that the device is bound. | 
|  | 68 | */ | 
|  | 69 | bdev = raw_devices[minor].binding; | 
|  | 70 | err = -ENODEV; | 
|  | 71 | if (!bdev) | 
|  | 72 | goto out; | 
|  | 73 | igrab(bdev->bd_inode); | 
| Tejun Heo | e525fd8 | 2010-11-13 11:55:17 +0100 | [diff] [blame] | 74 | err = blkdev_get(bdev, filp->f_mode | FMODE_EXCL, raw_open); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 75 | if (err) | 
|  | 76 | goto out; | 
| Martin K. Petersen | e1defc4 | 2009-05-22 17:17:49 -0400 | [diff] [blame] | 77 | err = set_blocksize(bdev, bdev_logical_block_size(bdev)); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 78 | if (err) | 
| Tejun Heo | e525fd8 | 2010-11-13 11:55:17 +0100 | [diff] [blame] | 79 | goto out1; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 80 | filp->f_flags |= O_DIRECT; | 
|  | 81 | filp->f_mapping = bdev->bd_inode->i_mapping; | 
|  | 82 | if (++raw_devices[minor].inuse == 1) | 
| Josef Sipek | a7113a9 | 2006-12-08 02:36:55 -0800 | [diff] [blame] | 83 | filp->f_path.dentry->d_inode->i_mapping = | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 84 | bdev->bd_inode->i_mapping; | 
|  | 85 | filp->private_data = bdev; | 
| Arjan van de Ven | 8ed965d | 2006-03-23 03:00:21 -0800 | [diff] [blame] | 86 | mutex_unlock(&raw_mutex); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 87 | return 0; | 
|  | 88 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 89 | out1: | 
| Tejun Heo | e525fd8 | 2010-11-13 11:55:17 +0100 | [diff] [blame] | 90 | blkdev_put(bdev, filp->f_mode | FMODE_EXCL); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 91 | out: | 
| Arjan van de Ven | 8ed965d | 2006-03-23 03:00:21 -0800 | [diff] [blame] | 92 | mutex_unlock(&raw_mutex); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 93 | return err; | 
|  | 94 | } | 
|  | 95 |  | 
|  | 96 | /* | 
|  | 97 | * When the final fd which refers to this character-special node is closed, we | 
|  | 98 | * make its ->mapping point back at its own i_data. | 
|  | 99 | */ | 
|  | 100 | static int raw_release(struct inode *inode, struct file *filp) | 
|  | 101 | { | 
|  | 102 | const int minor= iminor(inode); | 
|  | 103 | struct block_device *bdev; | 
|  | 104 |  | 
| Arjan van de Ven | 8ed965d | 2006-03-23 03:00:21 -0800 | [diff] [blame] | 105 | mutex_lock(&raw_mutex); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 106 | bdev = raw_devices[minor].binding; | 
|  | 107 | if (--raw_devices[minor].inuse == 0) { | 
|  | 108 | /* Here  inode->i_mapping == bdev->bd_inode->i_mapping  */ | 
|  | 109 | inode->i_mapping = &inode->i_data; | 
|  | 110 | inode->i_mapping->backing_dev_info = &default_backing_dev_info; | 
|  | 111 | } | 
| Arjan van de Ven | 8ed965d | 2006-03-23 03:00:21 -0800 | [diff] [blame] | 112 | mutex_unlock(&raw_mutex); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 113 |  | 
| Tejun Heo | e525fd8 | 2010-11-13 11:55:17 +0100 | [diff] [blame] | 114 | blkdev_put(bdev, filp->f_mode | FMODE_EXCL); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 115 | return 0; | 
|  | 116 | } | 
|  | 117 |  | 
|  | 118 | /* | 
|  | 119 | * Forward ioctls to the underlying block device. | 
|  | 120 | */ | 
| Arnd Bergmann | 5592933 | 2010-04-27 00:24:05 +0200 | [diff] [blame] | 121 | static long | 
|  | 122 | raw_ioctl(struct file *filp, unsigned int command, unsigned long arg) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 123 | { | 
|  | 124 | struct block_device *bdev = filp->private_data; | 
| Al Viro | c4a0472 | 2009-08-24 22:42:56 +0000 | [diff] [blame] | 125 | return blkdev_ioctl(bdev, 0, command, arg); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 126 | } | 
|  | 127 |  | 
| Al Viro | c4a0472 | 2009-08-24 22:42:56 +0000 | [diff] [blame] | 128 | static int bind_set(int number, u64 major, u64 minor) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 129 | { | 
| Al Viro | c4a0472 | 2009-08-24 22:42:56 +0000 | [diff] [blame] | 130 | dev_t dev = MKDEV(major, minor); | 
|  | 131 | struct raw_device_data *rawdev; | 
|  | 132 | int err = 0; | 
|  | 133 |  | 
| Jan Kara | 0078bff | 2011-04-29 00:24:29 +0200 | [diff] [blame] | 134 | if (number <= 0 || number >= max_raw_minors) | 
| Al Viro | c4a0472 | 2009-08-24 22:42:56 +0000 | [diff] [blame] | 135 | return -EINVAL; | 
|  | 136 |  | 
|  | 137 | if (MAJOR(dev) != major || MINOR(dev) != minor) | 
|  | 138 | return -EINVAL; | 
|  | 139 |  | 
|  | 140 | rawdev = &raw_devices[number]; | 
|  | 141 |  | 
|  | 142 | /* | 
|  | 143 | * This is like making block devices, so demand the | 
|  | 144 | * same capability | 
|  | 145 | */ | 
|  | 146 | if (!capable(CAP_SYS_ADMIN)) | 
|  | 147 | return -EPERM; | 
|  | 148 |  | 
|  | 149 | /* | 
|  | 150 | * For now, we don't need to check that the underlying | 
|  | 151 | * block device is present or not: we can do that when | 
|  | 152 | * the raw device is opened.  Just check that the | 
|  | 153 | * major/minor numbers make sense. | 
|  | 154 | */ | 
|  | 155 |  | 
|  | 156 | if (MAJOR(dev) == 0 && dev != 0) | 
|  | 157 | return -EINVAL; | 
|  | 158 |  | 
|  | 159 | mutex_lock(&raw_mutex); | 
|  | 160 | if (rawdev->inuse) { | 
|  | 161 | mutex_unlock(&raw_mutex); | 
|  | 162 | return -EBUSY; | 
|  | 163 | } | 
|  | 164 | if (rawdev->binding) { | 
|  | 165 | bdput(rawdev->binding); | 
|  | 166 | module_put(THIS_MODULE); | 
|  | 167 | } | 
|  | 168 | if (!dev) { | 
|  | 169 | /* unbind */ | 
|  | 170 | rawdev->binding = NULL; | 
|  | 171 | device_destroy(raw_class, MKDEV(RAW_MAJOR, number)); | 
|  | 172 | } else { | 
|  | 173 | rawdev->binding = bdget(dev); | 
|  | 174 | if (rawdev->binding == NULL) { | 
|  | 175 | err = -ENOMEM; | 
|  | 176 | } else { | 
|  | 177 | dev_t raw = MKDEV(RAW_MAJOR, number); | 
|  | 178 | __module_get(THIS_MODULE); | 
|  | 179 | device_destroy(raw_class, raw); | 
|  | 180 | device_create(raw_class, NULL, raw, NULL, | 
|  | 181 | "raw%d", number); | 
|  | 182 | } | 
|  | 183 | } | 
|  | 184 | mutex_unlock(&raw_mutex); | 
|  | 185 | return err; | 
|  | 186 | } | 
|  | 187 |  | 
|  | 188 | static int bind_get(int number, dev_t *dev) | 
|  | 189 | { | 
|  | 190 | struct raw_device_data *rawdev; | 
|  | 191 | struct block_device *bdev; | 
|  | 192 |  | 
|  | 193 | if (number <= 0 || number >= MAX_RAW_MINORS) | 
|  | 194 | return -EINVAL; | 
|  | 195 |  | 
|  | 196 | rawdev = &raw_devices[number]; | 
|  | 197 |  | 
|  | 198 | mutex_lock(&raw_mutex); | 
|  | 199 | bdev = rawdev->binding; | 
|  | 200 | *dev = bdev ? bdev->bd_dev : 0; | 
|  | 201 | mutex_unlock(&raw_mutex); | 
|  | 202 | return 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 203 | } | 
|  | 204 |  | 
|  | 205 | /* | 
|  | 206 | * Deal with ioctls against the raw-device control interface, to bind | 
|  | 207 | * and unbind other raw devices. | 
|  | 208 | */ | 
| Arnd Bergmann | 5592933 | 2010-04-27 00:24:05 +0200 | [diff] [blame] | 209 | static long raw_ctl_ioctl(struct file *filp, unsigned int command, | 
|  | 210 | unsigned long arg) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 211 | { | 
|  | 212 | struct raw_config_request rq; | 
| Al Viro | c4a0472 | 2009-08-24 22:42:56 +0000 | [diff] [blame] | 213 | dev_t dev; | 
|  | 214 | int err; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 215 |  | 
|  | 216 | switch (command) { | 
|  | 217 | case RAW_SETBIND: | 
| Al Viro | c4a0472 | 2009-08-24 22:42:56 +0000 | [diff] [blame] | 218 | if (copy_from_user(&rq, (void __user *) arg, sizeof(rq))) | 
|  | 219 | return -EFAULT; | 
|  | 220 |  | 
|  | 221 | return bind_set(rq.raw_minor, rq.block_major, rq.block_minor); | 
|  | 222 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 223 | case RAW_GETBIND: | 
| Al Viro | c4a0472 | 2009-08-24 22:42:56 +0000 | [diff] [blame] | 224 | if (copy_from_user(&rq, (void __user *) arg, sizeof(rq))) | 
|  | 225 | return -EFAULT; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 226 |  | 
| Al Viro | c4a0472 | 2009-08-24 22:42:56 +0000 | [diff] [blame] | 227 | err = bind_get(rq.raw_minor, &dev); | 
|  | 228 | if (err) | 
|  | 229 | return err; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 230 |  | 
| Al Viro | c4a0472 | 2009-08-24 22:42:56 +0000 | [diff] [blame] | 231 | rq.block_major = MAJOR(dev); | 
|  | 232 | rq.block_minor = MINOR(dev); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 233 |  | 
| Al Viro | c4a0472 | 2009-08-24 22:42:56 +0000 | [diff] [blame] | 234 | if (copy_to_user((void __user *)arg, &rq, sizeof(rq))) | 
|  | 235 | return -EFAULT; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 236 |  | 
| Al Viro | c4a0472 | 2009-08-24 22:42:56 +0000 | [diff] [blame] | 237 | return 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 238 | } | 
| Al Viro | c4a0472 | 2009-08-24 22:42:56 +0000 | [diff] [blame] | 239 |  | 
|  | 240 | return -EINVAL; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 241 | } | 
|  | 242 |  | 
| Al Viro | c4a0472 | 2009-08-24 22:42:56 +0000 | [diff] [blame] | 243 | #ifdef CONFIG_COMPAT | 
|  | 244 | struct raw32_config_request { | 
|  | 245 | compat_int_t	raw_minor; | 
|  | 246 | compat_u64	block_major; | 
|  | 247 | compat_u64	block_minor; | 
|  | 248 | }; | 
|  | 249 |  | 
|  | 250 | static long raw_ctl_compat_ioctl(struct file *file, unsigned int cmd, | 
|  | 251 | unsigned long arg) | 
|  | 252 | { | 
|  | 253 | struct raw32_config_request __user *user_req = compat_ptr(arg); | 
|  | 254 | struct raw32_config_request rq; | 
|  | 255 | dev_t dev; | 
|  | 256 | int err = 0; | 
|  | 257 |  | 
|  | 258 | switch (cmd) { | 
|  | 259 | case RAW_SETBIND: | 
|  | 260 | if (copy_from_user(&rq, user_req, sizeof(rq))) | 
|  | 261 | return -EFAULT; | 
|  | 262 |  | 
|  | 263 | return bind_set(rq.raw_minor, rq.block_major, rq.block_minor); | 
|  | 264 |  | 
|  | 265 | case RAW_GETBIND: | 
|  | 266 | if (copy_from_user(&rq, user_req, sizeof(rq))) | 
|  | 267 | return -EFAULT; | 
|  | 268 |  | 
|  | 269 | err = bind_get(rq.raw_minor, &dev); | 
|  | 270 | if (err) | 
|  | 271 | return err; | 
|  | 272 |  | 
|  | 273 | rq.block_major = MAJOR(dev); | 
|  | 274 | rq.block_minor = MINOR(dev); | 
|  | 275 |  | 
|  | 276 | if (copy_to_user(user_req, &rq, sizeof(rq))) | 
|  | 277 | return -EFAULT; | 
|  | 278 |  | 
|  | 279 | return 0; | 
|  | 280 | } | 
|  | 281 |  | 
|  | 282 | return -EINVAL; | 
|  | 283 | } | 
|  | 284 | #endif | 
|  | 285 |  | 
| Arjan van de Ven | 62322d2 | 2006-07-03 00:24:21 -0700 | [diff] [blame] | 286 | static const struct file_operations raw_fops = { | 
| Arnd Bergmann | 5592933 | 2010-04-27 00:24:05 +0200 | [diff] [blame] | 287 | .read		= do_sync_read, | 
|  | 288 | .aio_read	= generic_file_aio_read, | 
|  | 289 | .write		= do_sync_write, | 
|  | 290 | .aio_write	= blkdev_aio_write, | 
|  | 291 | .fsync		= blkdev_fsync, | 
|  | 292 | .open		= raw_open, | 
|  | 293 | .release	= raw_release, | 
|  | 294 | .unlocked_ioctl = raw_ioctl, | 
| Arnd Bergmann | cb3b9cf | 2010-07-06 23:03:55 +0200 | [diff] [blame] | 295 | .llseek		= default_llseek, | 
| Arnd Bergmann | 5592933 | 2010-04-27 00:24:05 +0200 | [diff] [blame] | 296 | .owner		= THIS_MODULE, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 297 | }; | 
|  | 298 |  | 
| Arjan van de Ven | 62322d2 | 2006-07-03 00:24:21 -0700 | [diff] [blame] | 299 | static const struct file_operations raw_ctl_fops = { | 
| Arnd Bergmann | 5592933 | 2010-04-27 00:24:05 +0200 | [diff] [blame] | 300 | .unlocked_ioctl = raw_ctl_ioctl, | 
| Al Viro | c4a0472 | 2009-08-24 22:42:56 +0000 | [diff] [blame] | 301 | #ifdef CONFIG_COMPAT | 
|  | 302 | .compat_ioctl	= raw_ctl_compat_ioctl, | 
|  | 303 | #endif | 
| Arnd Bergmann | 5592933 | 2010-04-27 00:24:05 +0200 | [diff] [blame] | 304 | .open		= raw_open, | 
|  | 305 | .owner		= THIS_MODULE, | 
| Arnd Bergmann | cb3b9cf | 2010-07-06 23:03:55 +0200 | [diff] [blame] | 306 | .llseek		= noop_llseek, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 307 | }; | 
|  | 308 |  | 
| Greg Kroah-Hartman | 7e7654a | 2007-09-12 15:06:57 -0700 | [diff] [blame] | 309 | static struct cdev raw_cdev; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 310 |  | 
| Kay Sievers | e454cea | 2009-09-18 23:01:12 +0200 | [diff] [blame] | 311 | static char *raw_devnode(struct device *dev, mode_t *mode) | 
| Kay Sievers | 6fd4693 | 2009-04-30 15:23:42 +0200 | [diff] [blame] | 312 | { | 
|  | 313 | return kasprintf(GFP_KERNEL, "raw/%s", dev_name(dev)); | 
|  | 314 | } | 
|  | 315 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 316 | static int __init raw_init(void) | 
|  | 317 | { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 318 | dev_t dev = MKDEV(RAW_MAJOR, 0); | 
| Rolf Eike Beer | 3e26a42 | 2006-09-29 02:00:46 -0700 | [diff] [blame] | 319 | int ret; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 320 |  | 
| Jan Kara | 0078bff | 2011-04-29 00:24:29 +0200 | [diff] [blame] | 321 | if (max_raw_minors < 1 || max_raw_minors > 65536) { | 
|  | 322 | printk(KERN_WARNING "raw: invalid max_raw_minors (must be" | 
|  | 323 | " between 1 and 65536), using %d\n", MAX_RAW_MINORS); | 
|  | 324 | max_raw_minors = MAX_RAW_MINORS; | 
|  | 325 | } | 
|  | 326 |  | 
| Joe Perches | 8e03bd6 | 2011-05-28 10:36:25 -0700 | [diff] [blame] | 327 | raw_devices = vzalloc(sizeof(struct raw_device_data) * max_raw_minors); | 
| Jan Kara | 0078bff | 2011-04-29 00:24:29 +0200 | [diff] [blame] | 328 | if (!raw_devices) { | 
|  | 329 | printk(KERN_ERR "Not enough memory for raw device structures\n"); | 
|  | 330 | ret = -ENOMEM; | 
|  | 331 | goto error; | 
|  | 332 | } | 
| Jan Kara | 0078bff | 2011-04-29 00:24:29 +0200 | [diff] [blame] | 333 |  | 
|  | 334 | ret = register_chrdev_region(dev, max_raw_minors, "raw"); | 
| Rolf Eike Beer | 3e26a42 | 2006-09-29 02:00:46 -0700 | [diff] [blame] | 335 | if (ret) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 336 | goto error; | 
|  | 337 |  | 
|  | 338 | cdev_init(&raw_cdev, &raw_fops); | 
| Jan Kara | 0078bff | 2011-04-29 00:24:29 +0200 | [diff] [blame] | 339 | ret = cdev_add(&raw_cdev, dev, max_raw_minors); | 
| Rolf Eike Beer | 3e26a42 | 2006-09-29 02:00:46 -0700 | [diff] [blame] | 340 | if (ret) { | 
| Rolf Eike Beer | 3e26a42 | 2006-09-29 02:00:46 -0700 | [diff] [blame] | 341 | goto error_region; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 342 | } | 
|  | 343 |  | 
| gregkh@suse.de | ca8eca6 | 2005-03-23 09:53:09 -0800 | [diff] [blame] | 344 | raw_class = class_create(THIS_MODULE, "raw"); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 345 | if (IS_ERR(raw_class)) { | 
|  | 346 | printk(KERN_ERR "Error creating raw class.\n"); | 
|  | 347 | cdev_del(&raw_cdev); | 
| Rolf Eike Beer | 3e26a42 | 2006-09-29 02:00:46 -0700 | [diff] [blame] | 348 | ret = PTR_ERR(raw_class); | 
|  | 349 | goto error_region; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 350 | } | 
| Kay Sievers | e454cea | 2009-09-18 23:01:12 +0200 | [diff] [blame] | 351 | raw_class->devnode = raw_devnode; | 
| Greg Kroah-Hartman | 03457cd | 2008-07-21 20:03:34 -0700 | [diff] [blame] | 352 | device_create(raw_class, NULL, MKDEV(RAW_MAJOR, 0), NULL, "rawctl"); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 353 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 354 | return 0; | 
|  | 355 |  | 
| Rolf Eike Beer | 3e26a42 | 2006-09-29 02:00:46 -0700 | [diff] [blame] | 356 | error_region: | 
| Jan Kara | 0078bff | 2011-04-29 00:24:29 +0200 | [diff] [blame] | 357 | unregister_chrdev_region(dev, max_raw_minors); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 358 | error: | 
| Jan Kara | 0078bff | 2011-04-29 00:24:29 +0200 | [diff] [blame] | 359 | vfree(raw_devices); | 
| Rolf Eike Beer | 3e26a42 | 2006-09-29 02:00:46 -0700 | [diff] [blame] | 360 | return ret; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 361 | } | 
|  | 362 |  | 
|  | 363 | static void __exit raw_exit(void) | 
|  | 364 | { | 
| Greg Kroah-Hartman | 38ca6c3 | 2006-08-07 22:19:37 -0700 | [diff] [blame] | 365 | device_destroy(raw_class, MKDEV(RAW_MAJOR, 0)); | 
| gregkh@suse.de | ca8eca6 | 2005-03-23 09:53:09 -0800 | [diff] [blame] | 366 | class_destroy(raw_class); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 367 | cdev_del(&raw_cdev); | 
| Jan Kara | 0078bff | 2011-04-29 00:24:29 +0200 | [diff] [blame] | 368 | unregister_chrdev_region(MKDEV(RAW_MAJOR, 0), max_raw_minors); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 369 | } | 
|  | 370 |  | 
|  | 371 | module_init(raw_init); | 
|  | 372 | module_exit(raw_exit); | 
|  | 373 | MODULE_LICENSE("GPL"); |