blob: 6e29bf2db5367732eaf68f05d1c75dd22adf7966 [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>
Jan Kara0078bff2011-04-29 00:24:29 +020024#include <linux/vmalloc.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025
26#include <asm/uaccess.h>
27
28struct raw_device_data {
29 struct block_device *binding;
30 int inuse;
31};
32
gregkh@suse.deca8eca62005-03-23 09:53:09 -080033static struct class *raw_class;
Jan Kara0078bff2011-04-29 00:24:29 +020034static struct raw_device_data *raw_devices;
Arjan van de Ven8ed965d2006-03-23 03:00:21 -080035static DEFINE_MUTEX(raw_mutex);
Arjan van de Ven62322d22006-07-03 00:24:21 -070036static const struct file_operations raw_ctl_fops; /* forward declaration */
Linus Torvalds1da177e2005-04-16 15:20:36 -070037
Jan Kara0078bff2011-04-29 00:24:29 +020038static int max_raw_minors = MAX_RAW_MINORS;
39
40module_param(max_raw_minors, int, 0);
41MODULE_PARM_DESC(max_raw_minors, "Maximum number of raw devices (1-65536)");
42
Linus Torvalds1da177e2005-04-16 15:20:36 -070043/*
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 */
53static 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 Ven8ed965d2006-03-23 03:00:21 -080064 mutex_lock(&raw_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070065
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 Heoe525fd82010-11-13 11:55:17 +010074 err = blkdev_get(bdev, filp->f_mode | FMODE_EXCL, raw_open);
Linus Torvalds1da177e2005-04-16 15:20:36 -070075 if (err)
76 goto out;
Martin K. Petersene1defc42009-05-22 17:17:49 -040077 err = set_blocksize(bdev, bdev_logical_block_size(bdev));
Linus Torvalds1da177e2005-04-16 15:20:36 -070078 if (err)
Tejun Heoe525fd82010-11-13 11:55:17 +010079 goto out1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070080 filp->f_flags |= O_DIRECT;
81 filp->f_mapping = bdev->bd_inode->i_mapping;
82 if (++raw_devices[minor].inuse == 1)
Al Viro496ad9a2013-01-23 17:07:38 -050083 file_inode(filp)->i_mapping =
Linus Torvalds1da177e2005-04-16 15:20:36 -070084 bdev->bd_inode->i_mapping;
85 filp->private_data = bdev;
Arjan van de Ven8ed965d2006-03-23 03:00:21 -080086 mutex_unlock(&raw_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070087 return 0;
88
Linus Torvalds1da177e2005-04-16 15:20:36 -070089out1:
Tejun Heoe525fd82010-11-13 11:55:17 +010090 blkdev_put(bdev, filp->f_mode | FMODE_EXCL);
Linus Torvalds1da177e2005-04-16 15:20:36 -070091out:
Arjan van de Ven8ed965d2006-03-23 03:00:21 -080092 mutex_unlock(&raw_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070093 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 */
100static 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 Ven8ed965d2006-03-23 03:00:21 -0800105 mutex_lock(&raw_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106 bdev = raw_devices[minor].binding;
Christoph Hellwigb83ae6d2015-01-14 10:42:37 +0100107 if (--raw_devices[minor].inuse == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108 /* Here inode->i_mapping == bdev->bd_inode->i_mapping */
109 inode->i_mapping = &inode->i_data;
Arjan van de Ven8ed965d2006-03-23 03:00:21 -0800110 mutex_unlock(&raw_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111
Tejun Heoe525fd82010-11-13 11:55:17 +0100112 blkdev_put(bdev, filp->f_mode | FMODE_EXCL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 return 0;
114}
115
116/*
117 * Forward ioctls to the underlying block device.
118 */
Arnd Bergmann55929332010-04-27 00:24:05 +0200119static long
120raw_ioctl(struct file *filp, unsigned int command, unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121{
122 struct block_device *bdev = filp->private_data;
Al Viroc4a04722009-08-24 22:42:56 +0000123 return blkdev_ioctl(bdev, 0, command, arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124}
125
Al Viroc4a04722009-08-24 22:42:56 +0000126static int bind_set(int number, u64 major, u64 minor)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127{
Al Viroc4a04722009-08-24 22:42:56 +0000128 dev_t dev = MKDEV(major, minor);
129 struct raw_device_data *rawdev;
130 int err = 0;
131
Jan Kara0078bff2011-04-29 00:24:29 +0200132 if (number <= 0 || number >= max_raw_minors)
Al Viroc4a04722009-08-24 22:42:56 +0000133 return -EINVAL;
134
135 if (MAJOR(dev) != major || MINOR(dev) != minor)
136 return -EINVAL;
137
138 rawdev = &raw_devices[number];
139
140 /*
141 * This is like making block devices, so demand the
142 * same capability
143 */
144 if (!capable(CAP_SYS_ADMIN))
145 return -EPERM;
146
147 /*
148 * For now, we don't need to check that the underlying
149 * block device is present or not: we can do that when
150 * the raw device is opened. Just check that the
151 * major/minor numbers make sense.
152 */
153
154 if (MAJOR(dev) == 0 && dev != 0)
155 return -EINVAL;
156
157 mutex_lock(&raw_mutex);
158 if (rawdev->inuse) {
159 mutex_unlock(&raw_mutex);
160 return -EBUSY;
161 }
162 if (rawdev->binding) {
163 bdput(rawdev->binding);
164 module_put(THIS_MODULE);
165 }
166 if (!dev) {
167 /* unbind */
168 rawdev->binding = NULL;
169 device_destroy(raw_class, MKDEV(RAW_MAJOR, number));
170 } else {
171 rawdev->binding = bdget(dev);
172 if (rawdev->binding == NULL) {
173 err = -ENOMEM;
174 } else {
175 dev_t raw = MKDEV(RAW_MAJOR, number);
176 __module_get(THIS_MODULE);
177 device_destroy(raw_class, raw);
178 device_create(raw_class, NULL, raw, NULL,
179 "raw%d", number);
180 }
181 }
182 mutex_unlock(&raw_mutex);
183 return err;
184}
185
186static int bind_get(int number, dev_t *dev)
187{
188 struct raw_device_data *rawdev;
189 struct block_device *bdev;
190
Paul Bolle5bbb2ae2014-02-04 23:23:12 +0100191 if (number <= 0 || number >= max_raw_minors)
Al Viroc4a04722009-08-24 22:42:56 +0000192 return -EINVAL;
193
194 rawdev = &raw_devices[number];
195
196 mutex_lock(&raw_mutex);
197 bdev = rawdev->binding;
198 *dev = bdev ? bdev->bd_dev : 0;
199 mutex_unlock(&raw_mutex);
200 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201}
202
203/*
204 * Deal with ioctls against the raw-device control interface, to bind
205 * and unbind other raw devices.
206 */
Arnd Bergmann55929332010-04-27 00:24:05 +0200207static long raw_ctl_ioctl(struct file *filp, unsigned int command,
208 unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209{
210 struct raw_config_request rq;
Al Viroc4a04722009-08-24 22:42:56 +0000211 dev_t dev;
212 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213
214 switch (command) {
215 case RAW_SETBIND:
Al Viroc4a04722009-08-24 22:42:56 +0000216 if (copy_from_user(&rq, (void __user *) arg, sizeof(rq)))
217 return -EFAULT;
218
219 return bind_set(rq.raw_minor, rq.block_major, rq.block_minor);
220
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221 case RAW_GETBIND:
Al Viroc4a04722009-08-24 22:42:56 +0000222 if (copy_from_user(&rq, (void __user *) arg, sizeof(rq)))
223 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224
Al Viroc4a04722009-08-24 22:42:56 +0000225 err = bind_get(rq.raw_minor, &dev);
226 if (err)
227 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228
Al Viroc4a04722009-08-24 22:42:56 +0000229 rq.block_major = MAJOR(dev);
230 rq.block_minor = MINOR(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231
Al Viroc4a04722009-08-24 22:42:56 +0000232 if (copy_to_user((void __user *)arg, &rq, sizeof(rq)))
233 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234
Al Viroc4a04722009-08-24 22:42:56 +0000235 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 }
Al Viroc4a04722009-08-24 22:42:56 +0000237
238 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239}
240
Al Viroc4a04722009-08-24 22:42:56 +0000241#ifdef CONFIG_COMPAT
242struct raw32_config_request {
243 compat_int_t raw_minor;
244 compat_u64 block_major;
245 compat_u64 block_minor;
246};
247
248static long raw_ctl_compat_ioctl(struct file *file, unsigned int cmd,
249 unsigned long arg)
250{
251 struct raw32_config_request __user *user_req = compat_ptr(arg);
252 struct raw32_config_request rq;
253 dev_t dev;
254 int err = 0;
255
256 switch (cmd) {
257 case RAW_SETBIND:
258 if (copy_from_user(&rq, user_req, sizeof(rq)))
259 return -EFAULT;
260
261 return bind_set(rq.raw_minor, rq.block_major, rq.block_minor);
262
263 case RAW_GETBIND:
264 if (copy_from_user(&rq, user_req, sizeof(rq)))
265 return -EFAULT;
266
267 err = bind_get(rq.raw_minor, &dev);
268 if (err)
269 return err;
270
271 rq.block_major = MAJOR(dev);
272 rq.block_minor = MINOR(dev);
273
274 if (copy_to_user(user_req, &rq, sizeof(rq)))
275 return -EFAULT;
276
277 return 0;
278 }
279
280 return -EINVAL;
281}
282#endif
283
Arjan van de Ven62322d22006-07-03 00:24:21 -0700284static const struct file_operations raw_fops = {
Al Viroaad4f8b2014-04-02 14:33:16 -0400285 .read = new_sync_read,
David Jefferyb2de5252014-09-29 10:21:10 -0400286 .read_iter = blkdev_read_iter,
Al Viro1456c0a2014-04-03 03:21:50 -0400287 .write = new_sync_write,
288 .write_iter = blkdev_write_iter,
Arnd Bergmann55929332010-04-27 00:24:05 +0200289 .fsync = blkdev_fsync,
290 .open = raw_open,
291 .release = raw_release,
292 .unlocked_ioctl = raw_ioctl,
Arnd Bergmanncb3b9cf2010-07-06 23:03:55 +0200293 .llseek = default_llseek,
Arnd Bergmann55929332010-04-27 00:24:05 +0200294 .owner = THIS_MODULE,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295};
296
Arjan van de Ven62322d22006-07-03 00:24:21 -0700297static const struct file_operations raw_ctl_fops = {
Arnd Bergmann55929332010-04-27 00:24:05 +0200298 .unlocked_ioctl = raw_ctl_ioctl,
Al Viroc4a04722009-08-24 22:42:56 +0000299#ifdef CONFIG_COMPAT
300 .compat_ioctl = raw_ctl_compat_ioctl,
301#endif
Arnd Bergmann55929332010-04-27 00:24:05 +0200302 .open = raw_open,
303 .owner = THIS_MODULE,
Arnd Bergmanncb3b9cf2010-07-06 23:03:55 +0200304 .llseek = noop_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305};
306
Greg Kroah-Hartman7e7654a2007-09-12 15:06:57 -0700307static struct cdev raw_cdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308
Al Viro2c9ede52011-07-23 20:24:48 -0400309static char *raw_devnode(struct device *dev, umode_t *mode)
Kay Sievers6fd46932009-04-30 15:23:42 +0200310{
311 return kasprintf(GFP_KERNEL, "raw/%s", dev_name(dev));
312}
313
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314static int __init raw_init(void)
315{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 dev_t dev = MKDEV(RAW_MAJOR, 0);
Rolf Eike Beer3e26a422006-09-29 02:00:46 -0700317 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318
Jan Kara0078bff2011-04-29 00:24:29 +0200319 if (max_raw_minors < 1 || max_raw_minors > 65536) {
320 printk(KERN_WARNING "raw: invalid max_raw_minors (must be"
321 " between 1 and 65536), using %d\n", MAX_RAW_MINORS);
322 max_raw_minors = MAX_RAW_MINORS;
323 }
324
Joe Perches8e03bd62011-05-28 10:36:25 -0700325 raw_devices = vzalloc(sizeof(struct raw_device_data) * max_raw_minors);
Jan Kara0078bff2011-04-29 00:24:29 +0200326 if (!raw_devices) {
327 printk(KERN_ERR "Not enough memory for raw device structures\n");
328 ret = -ENOMEM;
329 goto error;
330 }
Jan Kara0078bff2011-04-29 00:24:29 +0200331
332 ret = register_chrdev_region(dev, max_raw_minors, "raw");
Rolf Eike Beer3e26a422006-09-29 02:00:46 -0700333 if (ret)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334 goto error;
335
336 cdev_init(&raw_cdev, &raw_fops);
Jan Kara0078bff2011-04-29 00:24:29 +0200337 ret = cdev_add(&raw_cdev, dev, max_raw_minors);
Rolf Eike Beer3e26a422006-09-29 02:00:46 -0700338 if (ret) {
Rolf Eike Beer3e26a422006-09-29 02:00:46 -0700339 goto error_region;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 }
341
gregkh@suse.deca8eca62005-03-23 09:53:09 -0800342 raw_class = class_create(THIS_MODULE, "raw");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 if (IS_ERR(raw_class)) {
344 printk(KERN_ERR "Error creating raw class.\n");
345 cdev_del(&raw_cdev);
Rolf Eike Beer3e26a422006-09-29 02:00:46 -0700346 ret = PTR_ERR(raw_class);
347 goto error_region;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 }
Kay Sieverse454cea2009-09-18 23:01:12 +0200349 raw_class->devnode = raw_devnode;
Greg Kroah-Hartman03457cd2008-07-21 20:03:34 -0700350 device_create(raw_class, NULL, MKDEV(RAW_MAJOR, 0), NULL, "rawctl");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 return 0;
353
Rolf Eike Beer3e26a422006-09-29 02:00:46 -0700354error_region:
Jan Kara0078bff2011-04-29 00:24:29 +0200355 unregister_chrdev_region(dev, max_raw_minors);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356error:
Jan Kara0078bff2011-04-29 00:24:29 +0200357 vfree(raw_devices);
Rolf Eike Beer3e26a422006-09-29 02:00:46 -0700358 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359}
360
361static void __exit raw_exit(void)
362{
Greg Kroah-Hartman38ca6c32006-08-07 22:19:37 -0700363 device_destroy(raw_class, MKDEV(RAW_MAJOR, 0));
gregkh@suse.deca8eca62005-03-23 09:53:09 -0800364 class_destroy(raw_class);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 cdev_del(&raw_cdev);
Jan Kara0078bff2011-04-29 00:24:29 +0200366 unregister_chrdev_region(MKDEV(RAW_MAJOR, 0), max_raw_minors);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367}
368
369module_init(raw_init);
370module_exit(raw_exit);
371MODULE_LICENSE("GPL");