blob: b4b9d5a4788559b29c9ce97b4b7128c184b528a7 [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>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090022#include <linux/gfp.h>
Al Viroc4a04722009-08-24 22:42:56 +000023#include <linux/compat.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
Arjan van de Ven8ed965d2006-03-23 03:00:21 -080058 mutex_lock(&raw_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070059
60 /*
61 * All we need to do on open is check that the device is bound.
62 */
63 bdev = raw_devices[minor].binding;
64 err = -ENODEV;
65 if (!bdev)
66 goto out;
67 igrab(bdev->bd_inode);
Tejun Heoe525fd82010-11-13 11:55:17 +010068 err = blkdev_get(bdev, filp->f_mode | FMODE_EXCL, raw_open);
Linus Torvalds1da177e2005-04-16 15:20:36 -070069 if (err)
70 goto out;
Martin K. Petersene1defc42009-05-22 17:17:49 -040071 err = set_blocksize(bdev, bdev_logical_block_size(bdev));
Linus Torvalds1da177e2005-04-16 15:20:36 -070072 if (err)
Tejun Heoe525fd82010-11-13 11:55:17 +010073 goto out1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070074 filp->f_flags |= O_DIRECT;
75 filp->f_mapping = bdev->bd_inode->i_mapping;
76 if (++raw_devices[minor].inuse == 1)
Josef Sipeka7113a92006-12-08 02:36:55 -080077 filp->f_path.dentry->d_inode->i_mapping =
Linus Torvalds1da177e2005-04-16 15:20:36 -070078 bdev->bd_inode->i_mapping;
79 filp->private_data = bdev;
Arjan van de Ven8ed965d2006-03-23 03:00:21 -080080 mutex_unlock(&raw_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070081 return 0;
82
Linus Torvalds1da177e2005-04-16 15:20:36 -070083out1:
Tejun Heoe525fd82010-11-13 11:55:17 +010084 blkdev_put(bdev, filp->f_mode | FMODE_EXCL);
Linus Torvalds1da177e2005-04-16 15:20:36 -070085out:
Arjan van de Ven8ed965d2006-03-23 03:00:21 -080086 mutex_unlock(&raw_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070087 return err;
88}
89
90/*
91 * When the final fd which refers to this character-special node is closed, we
92 * make its ->mapping point back at its own i_data.
93 */
94static int raw_release(struct inode *inode, struct file *filp)
95{
96 const int minor= iminor(inode);
97 struct block_device *bdev;
98
Arjan van de Ven8ed965d2006-03-23 03:00:21 -080099 mutex_lock(&raw_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100 bdev = raw_devices[minor].binding;
101 if (--raw_devices[minor].inuse == 0) {
102 /* Here inode->i_mapping == bdev->bd_inode->i_mapping */
103 inode->i_mapping = &inode->i_data;
104 inode->i_mapping->backing_dev_info = &default_backing_dev_info;
105 }
Arjan van de Ven8ed965d2006-03-23 03:00:21 -0800106 mutex_unlock(&raw_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107
Tejun Heoe525fd82010-11-13 11:55:17 +0100108 blkdev_put(bdev, filp->f_mode | FMODE_EXCL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109 return 0;
110}
111
112/*
113 * Forward ioctls to the underlying block device.
114 */
Arnd Bergmann55929332010-04-27 00:24:05 +0200115static long
116raw_ioctl(struct file *filp, unsigned int command, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117{
118 struct block_device *bdev = filp->private_data;
Al Viroc4a04722009-08-24 22:42:56 +0000119 return blkdev_ioctl(bdev, 0, command, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120}
121
Al Viroc4a04722009-08-24 22:42:56 +0000122static int bind_set(int number, u64 major, u64 minor)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123{
Al Viroc4a04722009-08-24 22:42:56 +0000124 dev_t dev = MKDEV(major, minor);
125 struct raw_device_data *rawdev;
126 int err = 0;
127
128 if (number <= 0 || number >= MAX_RAW_MINORS)
129 return -EINVAL;
130
131 if (MAJOR(dev) != major || MINOR(dev) != minor)
132 return -EINVAL;
133
134 rawdev = &raw_devices[number];
135
136 /*
137 * This is like making block devices, so demand the
138 * same capability
139 */
140 if (!capable(CAP_SYS_ADMIN))
141 return -EPERM;
142
143 /*
144 * For now, we don't need to check that the underlying
145 * block device is present or not: we can do that when
146 * the raw device is opened. Just check that the
147 * major/minor numbers make sense.
148 */
149
150 if (MAJOR(dev) == 0 && dev != 0)
151 return -EINVAL;
152
153 mutex_lock(&raw_mutex);
154 if (rawdev->inuse) {
155 mutex_unlock(&raw_mutex);
156 return -EBUSY;
157 }
158 if (rawdev->binding) {
159 bdput(rawdev->binding);
160 module_put(THIS_MODULE);
161 }
162 if (!dev) {
163 /* unbind */
164 rawdev->binding = NULL;
165 device_destroy(raw_class, MKDEV(RAW_MAJOR, number));
166 } else {
167 rawdev->binding = bdget(dev);
168 if (rawdev->binding == NULL) {
169 err = -ENOMEM;
170 } else {
171 dev_t raw = MKDEV(RAW_MAJOR, number);
172 __module_get(THIS_MODULE);
173 device_destroy(raw_class, raw);
174 device_create(raw_class, NULL, raw, NULL,
175 "raw%d", number);
176 }
177 }
178 mutex_unlock(&raw_mutex);
179 return err;
180}
181
182static int bind_get(int number, dev_t *dev)
183{
184 struct raw_device_data *rawdev;
185 struct block_device *bdev;
186
187 if (number <= 0 || number >= MAX_RAW_MINORS)
188 return -EINVAL;
189
190 rawdev = &raw_devices[number];
191
192 mutex_lock(&raw_mutex);
193 bdev = rawdev->binding;
194 *dev = bdev ? bdev->bd_dev : 0;
195 mutex_unlock(&raw_mutex);
196 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197}
198
199/*
200 * Deal with ioctls against the raw-device control interface, to bind
201 * and unbind other raw devices.
202 */
Arnd Bergmann55929332010-04-27 00:24:05 +0200203static long raw_ctl_ioctl(struct file *filp, unsigned int command,
204 unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205{
206 struct raw_config_request rq;
Al Viroc4a04722009-08-24 22:42:56 +0000207 dev_t dev;
208 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209
210 switch (command) {
211 case RAW_SETBIND:
Al Viroc4a04722009-08-24 22:42:56 +0000212 if (copy_from_user(&rq, (void __user *) arg, sizeof(rq)))
213 return -EFAULT;
214
215 return bind_set(rq.raw_minor, rq.block_major, rq.block_minor);
216
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 case RAW_GETBIND:
Al Viroc4a04722009-08-24 22:42:56 +0000218 if (copy_from_user(&rq, (void __user *) arg, sizeof(rq)))
219 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220
Al Viroc4a04722009-08-24 22:42:56 +0000221 err = bind_get(rq.raw_minor, &dev);
222 if (err)
223 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224
Al Viroc4a04722009-08-24 22:42:56 +0000225 rq.block_major = MAJOR(dev);
226 rq.block_minor = MINOR(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227
Al Viroc4a04722009-08-24 22:42:56 +0000228 if (copy_to_user((void __user *)arg, &rq, sizeof(rq)))
229 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230
Al Viroc4a04722009-08-24 22:42:56 +0000231 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 }
Al Viroc4a04722009-08-24 22:42:56 +0000233
234 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235}
236
Al Viroc4a04722009-08-24 22:42:56 +0000237#ifdef CONFIG_COMPAT
238struct raw32_config_request {
239 compat_int_t raw_minor;
240 compat_u64 block_major;
241 compat_u64 block_minor;
242};
243
244static long raw_ctl_compat_ioctl(struct file *file, unsigned int cmd,
245 unsigned long arg)
246{
247 struct raw32_config_request __user *user_req = compat_ptr(arg);
248 struct raw32_config_request rq;
249 dev_t dev;
250 int err = 0;
251
252 switch (cmd) {
253 case RAW_SETBIND:
254 if (copy_from_user(&rq, user_req, sizeof(rq)))
255 return -EFAULT;
256
257 return bind_set(rq.raw_minor, rq.block_major, rq.block_minor);
258
259 case RAW_GETBIND:
260 if (copy_from_user(&rq, user_req, sizeof(rq)))
261 return -EFAULT;
262
263 err = bind_get(rq.raw_minor, &dev);
264 if (err)
265 return err;
266
267 rq.block_major = MAJOR(dev);
268 rq.block_minor = MINOR(dev);
269
270 if (copy_to_user(user_req, &rq, sizeof(rq)))
271 return -EFAULT;
272
273 return 0;
274 }
275
276 return -EINVAL;
277}
278#endif
279
Arjan van de Ven62322d22006-07-03 00:24:21 -0700280static const struct file_operations raw_fops = {
Arnd Bergmann55929332010-04-27 00:24:05 +0200281 .read = do_sync_read,
282 .aio_read = generic_file_aio_read,
283 .write = do_sync_write,
284 .aio_write = blkdev_aio_write,
285 .fsync = blkdev_fsync,
286 .open = raw_open,
287 .release = raw_release,
288 .unlocked_ioctl = raw_ioctl,
Arnd Bergmanncb3b9cf2010-07-06 23:03:55 +0200289 .llseek = default_llseek,
Arnd Bergmann55929332010-04-27 00:24:05 +0200290 .owner = THIS_MODULE,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291};
292
Arjan van de Ven62322d22006-07-03 00:24:21 -0700293static const struct file_operations raw_ctl_fops = {
Arnd Bergmann55929332010-04-27 00:24:05 +0200294 .unlocked_ioctl = raw_ctl_ioctl,
Al Viroc4a04722009-08-24 22:42:56 +0000295#ifdef CONFIG_COMPAT
296 .compat_ioctl = raw_ctl_compat_ioctl,
297#endif
Arnd Bergmann55929332010-04-27 00:24:05 +0200298 .open = raw_open,
299 .owner = THIS_MODULE,
Arnd Bergmanncb3b9cf2010-07-06 23:03:55 +0200300 .llseek = noop_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301};
302
Greg Kroah-Hartman7e7654a2007-09-12 15:06:57 -0700303static struct cdev raw_cdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304
Kay Sieverse454cea2009-09-18 23:01:12 +0200305static char *raw_devnode(struct device *dev, mode_t *mode)
Kay Sievers6fd46932009-04-30 15:23:42 +0200306{
307 return kasprintf(GFP_KERNEL, "raw/%s", dev_name(dev));
308}
309
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310static int __init raw_init(void)
311{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 dev_t dev = MKDEV(RAW_MAJOR, 0);
Rolf Eike Beer3e26a422006-09-29 02:00:46 -0700313 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314
Rolf Eike Beer3e26a422006-09-29 02:00:46 -0700315 ret = register_chrdev_region(dev, MAX_RAW_MINORS, "raw");
316 if (ret)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 goto error;
318
319 cdev_init(&raw_cdev, &raw_fops);
Rolf Eike Beer3e26a422006-09-29 02:00:46 -0700320 ret = cdev_add(&raw_cdev, dev, MAX_RAW_MINORS);
321 if (ret) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322 kobject_put(&raw_cdev.kobj);
Rolf Eike Beer3e26a422006-09-29 02:00:46 -0700323 goto error_region;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 }
325
gregkh@suse.deca8eca62005-03-23 09:53:09 -0800326 raw_class = class_create(THIS_MODULE, "raw");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 if (IS_ERR(raw_class)) {
328 printk(KERN_ERR "Error creating raw class.\n");
329 cdev_del(&raw_cdev);
Rolf Eike Beer3e26a422006-09-29 02:00:46 -0700330 ret = PTR_ERR(raw_class);
331 goto error_region;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 }
Kay Sieverse454cea2009-09-18 23:01:12 +0200333 raw_class->devnode = raw_devnode;
Greg Kroah-Hartman03457cd2008-07-21 20:03:34 -0700334 device_create(raw_class, NULL, MKDEV(RAW_MAJOR, 0), NULL, "rawctl");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 return 0;
337
Rolf Eike Beer3e26a422006-09-29 02:00:46 -0700338error_region:
339 unregister_chrdev_region(dev, MAX_RAW_MINORS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340error:
Rolf Eike Beer3e26a422006-09-29 02:00:46 -0700341 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342}
343
344static void __exit raw_exit(void)
345{
Greg Kroah-Hartman38ca6c32006-08-07 22:19:37 -0700346 device_destroy(raw_class, MKDEV(RAW_MAJOR, 0));
gregkh@suse.deca8eca62005-03-23 09:53:09 -0800347 class_destroy(raw_class);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 cdev_del(&raw_cdev);
349 unregister_chrdev_region(MKDEV(RAW_MAJOR, 0), MAX_RAW_MINORS);
350}
351
352module_init(raw_init);
353module_exit(raw_exit);
354MODULE_LICENSE("GPL");