blob: b38942f6bf3140684be8ffadfcbac7381201baa5 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
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 Torvalds1da177e2005-04-16 15:20:36 -070013#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 Ven8ed965d2006-03-23 03:00:21 -080021#include <linux/mutex.h>
Jonathan Corbetc0bed682008-05-16 13:54:46 -060022#include <linux/smp_lock.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090023#include <linux/gfp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024
25#include <asm/uaccess.h>
26
27struct raw_device_data {
28 struct block_device *binding;
29 int inuse;
30};
31
gregkh@suse.deca8eca62005-03-23 09:53:09 -080032static struct class *raw_class;
Linus Torvalds1da177e2005-04-16 15:20:36 -070033static struct raw_device_data raw_devices[MAX_RAW_MINORS];
Arjan van de Ven8ed965d2006-03-23 03:00:21 -080034static DEFINE_MUTEX(raw_mutex);
Arjan van de Ven62322d22006-07-03 00:24:21 -070035static const struct file_operations raw_ctl_fops; /* forward declaration */
Linus Torvalds1da177e2005-04-16 15:20:36 -070036
37/*
38 * Open/close code for raw IO.
39 *
40 * We just rewrite the i_mapping for the /dev/raw/rawN file descriptor to
41 * point at the blockdev's address_space and set the file handle to use
42 * O_DIRECT.
43 *
44 * Set the device's soft blocksize to the minimum possible. This gives the
45 * finest possible alignment and has no adverse impact on performance.
46 */
47static int raw_open(struct inode *inode, struct file *filp)
48{
49 const int minor = iminor(inode);
50 struct block_device *bdev;
51 int err;
52
53 if (minor == 0) { /* It is the control device */
54 filp->f_op = &raw_ctl_fops;
55 return 0;
56 }
57
Jonathan Corbetc0bed682008-05-16 13:54:46 -060058 lock_kernel();
Arjan van de Ven8ed965d2006-03-23 03:00:21 -080059 mutex_lock(&raw_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070060
61 /*
62 * All we need to do on open is check that the device is bound.
63 */
64 bdev = raw_devices[minor].binding;
65 err = -ENODEV;
66 if (!bdev)
67 goto out;
68 igrab(bdev->bd_inode);
Al Viro572c4892007-10-08 13:24:05 -040069 err = blkdev_get(bdev, filp->f_mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -070070 if (err)
71 goto out;
72 err = bd_claim(bdev, raw_open);
73 if (err)
74 goto out1;
Martin K. Petersene1defc42009-05-22 17:17:49 -040075 err = set_blocksize(bdev, bdev_logical_block_size(bdev));
Linus Torvalds1da177e2005-04-16 15:20:36 -070076 if (err)
77 goto out2;
78 filp->f_flags |= O_DIRECT;
79 filp->f_mapping = bdev->bd_inode->i_mapping;
80 if (++raw_devices[minor].inuse == 1)
Josef Sipeka7113a92006-12-08 02:36:55 -080081 filp->f_path.dentry->d_inode->i_mapping =
Linus Torvalds1da177e2005-04-16 15:20:36 -070082 bdev->bd_inode->i_mapping;
83 filp->private_data = bdev;
Arjan van de Ven8ed965d2006-03-23 03:00:21 -080084 mutex_unlock(&raw_mutex);
Jonathan Corbetc0bed682008-05-16 13:54:46 -060085 unlock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -070086 return 0;
87
88out2:
89 bd_release(bdev);
90out1:
Al Viro9a1c3542008-02-22 20:40:24 -050091 blkdev_put(bdev, filp->f_mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -070092out:
Arjan van de Ven8ed965d2006-03-23 03:00:21 -080093 mutex_unlock(&raw_mutex);
Dan Carpenter996ff682009-03-27 13:28:48 +030094 unlock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -070095 return err;
96}
97
98/*
99 * When the final fd which refers to this character-special node is closed, we
100 * make its ->mapping point back at its own i_data.
101 */
102static int raw_release(struct inode *inode, struct file *filp)
103{
104 const int minor= iminor(inode);
105 struct block_device *bdev;
106
Arjan van de Ven8ed965d2006-03-23 03:00:21 -0800107 mutex_lock(&raw_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108 bdev = raw_devices[minor].binding;
109 if (--raw_devices[minor].inuse == 0) {
110 /* Here inode->i_mapping == bdev->bd_inode->i_mapping */
111 inode->i_mapping = &inode->i_data;
112 inode->i_mapping->backing_dev_info = &default_backing_dev_info;
113 }
Arjan van de Ven8ed965d2006-03-23 03:00:21 -0800114 mutex_unlock(&raw_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115
116 bd_release(bdev);
Al Viro9a1c3542008-02-22 20:40:24 -0500117 blkdev_put(bdev, filp->f_mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 return 0;
119}
120
121/*
122 * Forward ioctls to the underlying block device.
123 */
Arnd Bergmann55929332010-04-27 00:24:05 +0200124static long
125raw_ioctl(struct file *filp, unsigned int command, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126{
127 struct block_device *bdev = filp->private_data;
Arnd Bergmann55929332010-04-27 00:24:05 +0200128 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129
Arnd Bergmann55929332010-04-27 00:24:05 +0200130 lock_kernel();
131 ret = blkdev_ioctl(bdev, 0, command, arg);
132 unlock_kernel();
133
134 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135}
136
137static void bind_device(struct raw_config_request *rq)
138{
Greg Kroah-Hartman38ca6c32006-08-07 22:19:37 -0700139 device_destroy(raw_class, MKDEV(RAW_MAJOR, rq->raw_minor));
Greg Kroah-Hartman03457cd2008-07-21 20:03:34 -0700140 device_create(raw_class, NULL, MKDEV(RAW_MAJOR, rq->raw_minor), NULL,
141 "raw%d", rq->raw_minor);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142}
143
144/*
145 * Deal with ioctls against the raw-device control interface, to bind
146 * and unbind other raw devices.
147 */
Arnd Bergmann55929332010-04-27 00:24:05 +0200148static long raw_ctl_ioctl(struct file *filp, unsigned int command,
149 unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150{
151 struct raw_config_request rq;
152 struct raw_device_data *rawdev;
153 int err = 0;
154
Arnd Bergmann55929332010-04-27 00:24:05 +0200155 lock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156 switch (command) {
157 case RAW_SETBIND:
158 case RAW_GETBIND:
159
160 /* First, find out which raw minor we want */
161
162 if (copy_from_user(&rq, (void __user *) arg, sizeof(rq))) {
163 err = -EFAULT;
164 goto out;
165 }
166
Jeff Moyer38584c12007-02-10 01:46:10 -0800167 if (rq.raw_minor <= 0 || rq.raw_minor >= MAX_RAW_MINORS) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 err = -EINVAL;
169 goto out;
170 }
171 rawdev = &raw_devices[rq.raw_minor];
172
173 if (command == RAW_SETBIND) {
174 dev_t dev;
175
176 /*
177 * This is like making block devices, so demand the
178 * same capability
179 */
180 if (!capable(CAP_SYS_ADMIN)) {
181 err = -EPERM;
182 goto out;
183 }
184
185 /*
186 * For now, we don't need to check that the underlying
187 * block device is present or not: we can do that when
188 * the raw device is opened. Just check that the
189 * major/minor numbers make sense.
190 */
191
192 dev = MKDEV(rq.block_major, rq.block_minor);
193 if ((rq.block_major == 0 && rq.block_minor != 0) ||
194 MAJOR(dev) != rq.block_major ||
195 MINOR(dev) != rq.block_minor) {
196 err = -EINVAL;
197 goto out;
198 }
199
Arjan van de Ven8ed965d2006-03-23 03:00:21 -0800200 mutex_lock(&raw_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 if (rawdev->inuse) {
Arjan van de Ven8ed965d2006-03-23 03:00:21 -0800202 mutex_unlock(&raw_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 err = -EBUSY;
204 goto out;
205 }
206 if (rawdev->binding) {
207 bdput(rawdev->binding);
208 module_put(THIS_MODULE);
209 }
210 if (rq.block_major == 0 && rq.block_minor == 0) {
211 /* unbind */
212 rawdev->binding = NULL;
Greg Kroah-Hartman38ca6c32006-08-07 22:19:37 -0700213 device_destroy(raw_class,
gregkh@suse.deca8eca62005-03-23 09:53:09 -0800214 MKDEV(RAW_MAJOR, rq.raw_minor));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 } else {
216 rawdev->binding = bdget(dev);
217 if (rawdev->binding == NULL)
218 err = -ENOMEM;
219 else {
220 __module_get(THIS_MODULE);
221 bind_device(&rq);
222 }
223 }
Arjan van de Ven8ed965d2006-03-23 03:00:21 -0800224 mutex_unlock(&raw_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 } else {
226 struct block_device *bdev;
227
Arjan van de Ven8ed965d2006-03-23 03:00:21 -0800228 mutex_lock(&raw_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 bdev = rawdev->binding;
230 if (bdev) {
231 rq.block_major = MAJOR(bdev->bd_dev);
232 rq.block_minor = MINOR(bdev->bd_dev);
233 } else {
234 rq.block_major = rq.block_minor = 0;
235 }
Arjan van de Ven8ed965d2006-03-23 03:00:21 -0800236 mutex_unlock(&raw_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237 if (copy_to_user((void __user *)arg, &rq, sizeof(rq))) {
238 err = -EFAULT;
239 goto out;
240 }
241 }
242 break;
243 default:
244 err = -EINVAL;
245 break;
246 }
247out:
Arnd Bergmann55929332010-04-27 00:24:05 +0200248 unlock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 return err;
250}
251
Arjan van de Ven62322d22006-07-03 00:24:21 -0700252static const struct file_operations raw_fops = {
Arnd Bergmann55929332010-04-27 00:24:05 +0200253 .read = do_sync_read,
254 .aio_read = generic_file_aio_read,
255 .write = do_sync_write,
256 .aio_write = blkdev_aio_write,
257 .fsync = blkdev_fsync,
258 .open = raw_open,
259 .release = raw_release,
260 .unlocked_ioctl = raw_ioctl,
261 .owner = THIS_MODULE,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262};
263
Arjan van de Ven62322d22006-07-03 00:24:21 -0700264static const struct file_operations raw_ctl_fops = {
Arnd Bergmann55929332010-04-27 00:24:05 +0200265 .unlocked_ioctl = raw_ctl_ioctl,
266 .open = raw_open,
267 .owner = THIS_MODULE,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268};
269
Greg Kroah-Hartman7e7654a2007-09-12 15:06:57 -0700270static struct cdev raw_cdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271
Kay Sieverse454cea2009-09-18 23:01:12 +0200272static char *raw_devnode(struct device *dev, mode_t *mode)
Kay Sievers6fd46932009-04-30 15:23:42 +0200273{
274 return kasprintf(GFP_KERNEL, "raw/%s", dev_name(dev));
275}
276
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277static int __init raw_init(void)
278{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 dev_t dev = MKDEV(RAW_MAJOR, 0);
Rolf Eike Beer3e26a422006-09-29 02:00:46 -0700280 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281
Rolf Eike Beer3e26a422006-09-29 02:00:46 -0700282 ret = register_chrdev_region(dev, MAX_RAW_MINORS, "raw");
283 if (ret)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 goto error;
285
286 cdev_init(&raw_cdev, &raw_fops);
Rolf Eike Beer3e26a422006-09-29 02:00:46 -0700287 ret = cdev_add(&raw_cdev, dev, MAX_RAW_MINORS);
288 if (ret) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 kobject_put(&raw_cdev.kobj);
Rolf Eike Beer3e26a422006-09-29 02:00:46 -0700290 goto error_region;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 }
292
gregkh@suse.deca8eca62005-03-23 09:53:09 -0800293 raw_class = class_create(THIS_MODULE, "raw");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 if (IS_ERR(raw_class)) {
295 printk(KERN_ERR "Error creating raw class.\n");
296 cdev_del(&raw_cdev);
Rolf Eike Beer3e26a422006-09-29 02:00:46 -0700297 ret = PTR_ERR(raw_class);
298 goto error_region;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299 }
Kay Sieverse454cea2009-09-18 23:01:12 +0200300 raw_class->devnode = raw_devnode;
Greg Kroah-Hartman03457cd2008-07-21 20:03:34 -0700301 device_create(raw_class, NULL, MKDEV(RAW_MAJOR, 0), NULL, "rawctl");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303 return 0;
304
Rolf Eike Beer3e26a422006-09-29 02:00:46 -0700305error_region:
306 unregister_chrdev_region(dev, MAX_RAW_MINORS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307error:
Rolf Eike Beer3e26a422006-09-29 02:00:46 -0700308 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309}
310
311static void __exit raw_exit(void)
312{
Greg Kroah-Hartman38ca6c32006-08-07 22:19:37 -0700313 device_destroy(raw_class, MKDEV(RAW_MAJOR, 0));
gregkh@suse.deca8eca62005-03-23 09:53:09 -0800314 class_destroy(raw_class);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315 cdev_del(&raw_cdev);
316 unregister_chrdev_region(MKDEV(RAW_MAJOR, 0), MAX_RAW_MINORS);
317}
318
319module_init(raw_init);
320module_exit(raw_exit);
321MODULE_LICENSE("GPL");