2 * linux/drivers/char/raw.c
4 * Front-end raw character devices. These can be bound to any block
5 * devices to provide genuine Unix raw character device semantics.
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.
11 #include <linux/init.h>
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>
21 #include <linux/mutex.h>
22 #include <linux/smp_lock.h>
23 #include <linux/gfp.h>
25 #include <asm/uaccess.h>
27 struct raw_device_data
{
28 struct block_device
*binding
;
32 static struct class *raw_class
;
33 static struct raw_device_data raw_devices
[MAX_RAW_MINORS
];
34 static DEFINE_MUTEX(raw_mutex
);
35 static const struct file_operations raw_ctl_fops
; /* forward declaration */
38 * Open/close code for raw IO.
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
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.
47 static int raw_open(struct inode
*inode
, struct file
*filp
)
49 const int minor
= iminor(inode
);
50 struct block_device
*bdev
;
53 if (minor
== 0) { /* It is the control device */
54 filp
->f_op
= &raw_ctl_fops
;
59 mutex_lock(&raw_mutex
);
62 * All we need to do on open is check that the device is bound.
64 bdev
= raw_devices
[minor
].binding
;
68 igrab(bdev
->bd_inode
);
69 err
= blkdev_get(bdev
, filp
->f_mode
);
72 err
= bd_claim(bdev
, raw_open
);
75 err
= set_blocksize(bdev
, bdev_logical_block_size(bdev
));
78 filp
->f_flags
|= O_DIRECT
;
79 filp
->f_mapping
= bdev
->bd_inode
->i_mapping
;
80 if (++raw_devices
[minor
].inuse
== 1)
81 filp
->f_path
.dentry
->d_inode
->i_mapping
=
82 bdev
->bd_inode
->i_mapping
;
83 filp
->private_data
= bdev
;
84 mutex_unlock(&raw_mutex
);
91 blkdev_put(bdev
, filp
->f_mode
);
93 mutex_unlock(&raw_mutex
);
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.
102 static int raw_release(struct inode
*inode
, struct file
*filp
)
104 const int minor
= iminor(inode
);
105 struct block_device
*bdev
;
107 mutex_lock(&raw_mutex
);
108 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
;
114 mutex_unlock(&raw_mutex
);
117 blkdev_put(bdev
, filp
->f_mode
);
122 * Forward ioctls to the underlying block device.
125 raw_ioctl(struct file
*filp
, unsigned int command
, unsigned long arg
)
127 struct block_device
*bdev
= filp
->private_data
;
131 ret
= blkdev_ioctl(bdev
, 0, command
, arg
);
137 static void bind_device(struct raw_config_request
*rq
)
139 device_destroy(raw_class
, MKDEV(RAW_MAJOR
, rq
->raw_minor
));
140 device_create(raw_class
, NULL
, MKDEV(RAW_MAJOR
, rq
->raw_minor
), NULL
,
141 "raw%d", rq
->raw_minor
);
145 * Deal with ioctls against the raw-device control interface, to bind
146 * and unbind other raw devices.
148 static long raw_ctl_ioctl(struct file
*filp
, unsigned int command
,
151 struct raw_config_request rq
;
152 struct raw_device_data
*rawdev
;
160 /* First, find out which raw minor we want */
162 if (copy_from_user(&rq
, (void __user
*) arg
, sizeof(rq
))) {
167 if (rq
.raw_minor
<= 0 || rq
.raw_minor
>= MAX_RAW_MINORS
) {
171 rawdev
= &raw_devices
[rq
.raw_minor
];
173 if (command
== RAW_SETBIND
) {
177 * This is like making block devices, so demand the
180 if (!capable(CAP_SYS_ADMIN
)) {
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.
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
) {
200 mutex_lock(&raw_mutex
);
202 mutex_unlock(&raw_mutex
);
206 if (rawdev
->binding
) {
207 bdput(rawdev
->binding
);
208 module_put(THIS_MODULE
);
210 if (rq
.block_major
== 0 && rq
.block_minor
== 0) {
212 rawdev
->binding
= NULL
;
213 device_destroy(raw_class
,
214 MKDEV(RAW_MAJOR
, rq
.raw_minor
));
216 rawdev
->binding
= bdget(dev
);
217 if (rawdev
->binding
== NULL
)
220 __module_get(THIS_MODULE
);
224 mutex_unlock(&raw_mutex
);
226 struct block_device
*bdev
;
228 mutex_lock(&raw_mutex
);
229 bdev
= rawdev
->binding
;
231 rq
.block_major
= MAJOR(bdev
->bd_dev
);
232 rq
.block_minor
= MINOR(bdev
->bd_dev
);
234 rq
.block_major
= rq
.block_minor
= 0;
236 mutex_unlock(&raw_mutex
);
237 if (copy_to_user((void __user
*)arg
, &rq
, sizeof(rq
))) {
252 static const struct file_operations raw_fops
= {
253 .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
,
259 .release
= raw_release
,
260 .unlocked_ioctl
= raw_ioctl
,
261 .owner
= THIS_MODULE
,
264 static const struct file_operations raw_ctl_fops
= {
265 .unlocked_ioctl
= raw_ctl_ioctl
,
267 .owner
= THIS_MODULE
,
270 static struct cdev raw_cdev
;
272 static char *raw_devnode(struct device
*dev
, mode_t
*mode
)
274 return kasprintf(GFP_KERNEL
, "raw/%s", dev_name(dev
));
277 static int __init
raw_init(void)
279 dev_t dev
= MKDEV(RAW_MAJOR
, 0);
282 ret
= register_chrdev_region(dev
, MAX_RAW_MINORS
, "raw");
286 cdev_init(&raw_cdev
, &raw_fops
);
287 ret
= cdev_add(&raw_cdev
, dev
, MAX_RAW_MINORS
);
289 kobject_put(&raw_cdev
.kobj
);
293 raw_class
= class_create(THIS_MODULE
, "raw");
294 if (IS_ERR(raw_class
)) {
295 printk(KERN_ERR
"Error creating raw class.\n");
297 ret
= PTR_ERR(raw_class
);
300 raw_class
->devnode
= raw_devnode
;
301 device_create(raw_class
, NULL
, MKDEV(RAW_MAJOR
, 0), NULL
, "rawctl");
306 unregister_chrdev_region(dev
, MAX_RAW_MINORS
);
311 static void __exit
raw_exit(void)
313 device_destroy(raw_class
, MKDEV(RAW_MAJOR
, 0));
314 class_destroy(raw_class
);
316 unregister_chrdev_region(MKDEV(RAW_MAJOR
, 0), MAX_RAW_MINORS
);
319 module_init(raw_init
);
320 module_exit(raw_exit
);
321 MODULE_LICENSE("GPL");