blob: 822ced9639aaf67463b359055ee825ff863761ea [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Uwe Zeisbergerf30c2262006-10-03 23:01:26 +02002 * drivers/usb/core/file.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 *
4 * (C) Copyright Linus Torvalds 1999
5 * (C) Copyright Johannes Erdfelt 1999-2001
6 * (C) Copyright Andreas Gal 1999
7 * (C) Copyright Gregory P. Smith 1999
8 * (C) Copyright Deti Fliegl 1999 (new USB architecture)
9 * (C) Copyright Randy Dunlap 2000
10 * (C) Copyright David Brownell 2000-2001 (kernel hotplug, usb_device_id,
Matthias Beyer469271f2013-10-10 23:41:27 +020011 * more docs, etc)
Linus Torvalds1da177e2005-04-16 15:20:36 -070012 * (C) Copyright Yggdrasil Computing, Inc. 2000
13 * (usb_device_id matching changes by Adam J. Richter)
14 * (C) Copyright Greg Kroah-Hartman 2002-2003
15 *
16 */
17
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#include <linux/errno.h>
Alan Sternd4ead162007-05-22 11:46:41 -040020#include <linux/rwsem.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090021#include <linux/slab.h>
Andy Shevchenkof8868ed2015-12-10 16:49:14 +020022#include <linux/string.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include <linux/usb.h>
24
Greg KH6d5e8252005-04-18 17:39:24 -070025#include "usb.h"
26
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#define MAX_USB_MINORS 256
Arjan van de Ven99ac48f2006-03-28 01:56:41 -080028static const struct file_operations *usb_minors[MAX_USB_MINORS];
Alan Sternd4ead162007-05-22 11:46:41 -040029static DECLARE_RWSEM(minor_rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -070030
Matthias Beyer1335f2d2013-10-10 23:41:28 +020031static int usb_open(struct inode *inode, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -070032{
Linus Torvalds1da177e2005-04-16 15:20:36 -070033 int err = -ENODEV;
Al Viroe84f9e52013-09-22 14:17:15 -040034 const struct file_operations *new_fops;
Linus Torvalds1da177e2005-04-16 15:20:36 -070035
Alan Sternd4ead162007-05-22 11:46:41 -040036 down_read(&minor_rwsem);
Al Viroe84f9e52013-09-22 14:17:15 -040037 new_fops = fops_get(usb_minors[iminor(inode)]);
Linus Torvalds1da177e2005-04-16 15:20:36 -070038
Al Viroe84f9e52013-09-22 14:17:15 -040039 if (!new_fops)
Alan Sternd4ead162007-05-22 11:46:41 -040040 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -070041
Al Viroe84f9e52013-09-22 14:17:15 -040042 replace_fops(file, new_fops);
Linus Torvalds1da177e2005-04-16 15:20:36 -070043 /* Curiouser and curiouser... NULL ->open() as "no device" ? */
44 if (file->f_op->open)
Matthias Beyer469271f2013-10-10 23:41:27 +020045 err = file->f_op->open(inode, file);
Alan Sternd4ead162007-05-22 11:46:41 -040046 done:
47 up_read(&minor_rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -070048 return err;
49}
50
Luiz Fernando N. Capitulino066202d2006-08-05 20:37:11 -030051static const struct file_operations usb_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070052 .owner = THIS_MODULE,
53 .open = usb_open,
Arnd Bergmann6038f372010-08-15 18:52:59 +020054 .llseek = noop_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -070055};
56
Greg Kroah-Hartman43104f12006-06-20 15:14:07 -070057static struct usb_class {
58 struct kref kref;
59 struct class *class;
60} *usb_class;
61
Al Viro2c9ede52011-07-23 20:24:48 -040062static char *usb_devnode(struct device *dev, umode_t *mode)
Kay Sieversf7a386c2009-04-30 15:23:42 +020063{
64 struct usb_class_driver *drv;
65
66 drv = dev_get_drvdata(dev);
Kay Sieverse454cea2009-09-18 23:01:12 +020067 if (!drv || !drv->devnode)
Kay Sieversf7a386c2009-04-30 15:23:42 +020068 return NULL;
Kay Sieverse454cea2009-09-18 23:01:12 +020069 return drv->devnode(dev, mode);
Kay Sieversf7a386c2009-04-30 15:23:42 +020070}
71
Greg Kroah-Hartman43104f12006-06-20 15:14:07 -070072static int init_usb_class(void)
73{
74 int result = 0;
75
76 if (usb_class != NULL) {
77 kref_get(&usb_class->kref);
78 goto exit;
79 }
80
81 usb_class = kmalloc(sizeof(*usb_class), GFP_KERNEL);
82 if (!usb_class) {
83 result = -ENOMEM;
84 goto exit;
85 }
86
87 kref_init(&usb_class->kref);
Greg Kroah-Hartman7e972432012-04-25 17:22:37 -070088 usb_class->class = class_create(THIS_MODULE, "usbmisc");
Greg Kroah-Hartman43104f12006-06-20 15:14:07 -070089 if (IS_ERR(usb_class->class)) {
Alexey Khoroshilovde5535f2013-06-06 01:27:15 +040090 result = PTR_ERR(usb_class->class);
Greg Kroah-Hartman69a85942008-08-14 09:37:34 -070091 printk(KERN_ERR "class_create failed for usb devices\n");
Greg Kroah-Hartman43104f12006-06-20 15:14:07 -070092 kfree(usb_class);
93 usb_class = NULL;
Dan Carpentered7487c2009-11-10 11:02:08 +020094 goto exit;
Greg Kroah-Hartman43104f12006-06-20 15:14:07 -070095 }
Kay Sieverse454cea2009-09-18 23:01:12 +020096 usb_class->class->devnode = usb_devnode;
Greg Kroah-Hartman43104f12006-06-20 15:14:07 -070097
98exit:
99 return result;
100}
101
102static void release_usb_class(struct kref *kref)
103{
104 /* Ok, we cheat as we know we only have one usb_class */
105 class_destroy(usb_class->class);
106 kfree(usb_class);
107 usb_class = NULL;
108}
109
110static void destroy_usb_class(void)
111{
112 if (usb_class)
113 kref_put(&usb_class->kref, release_usb_class);
114}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115
116int usb_major_init(void)
117{
118 int error;
119
120 error = register_chrdev(USB_MAJOR, "usb", &usb_fops);
Greg Kroah-Hartman43104f12006-06-20 15:14:07 -0700121 if (error)
Greg Kroah-Hartman69a85942008-08-14 09:37:34 -0700122 printk(KERN_ERR "Unable to get major %d for usb devices\n",
123 USB_MAJOR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125 return error;
126}
127
128void usb_major_cleanup(void)
129{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130 unregister_chrdev(USB_MAJOR, "usb");
131}
132
133/**
134 * usb_register_dev - register a USB device, and ask for a minor number
135 * @intf: pointer to the usb_interface that is being registered
136 * @class_driver: pointer to the usb_class_driver for this device
137 *
138 * This should be called by all USB drivers that use the USB major number.
139 * If CONFIG_USB_DYNAMIC_MINORS is enabled, the minor number will be
140 * dynamically allocated out of the list of available ones. If it is not
141 * enabled, the minor number will be based on the next available free minor,
142 * starting at the class_driver->minor_base.
143 *
Greg Kroah-Hartmand6e5bcf2005-06-20 21:15:16 -0700144 * This function also creates a usb class device in the sysfs tree.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 *
146 * usb_deregister_dev() must be called when the driver is done with
147 * the minor numbers given out by this function.
148 *
Yacine Belkadi626f0902013-08-02 20:10:04 +0200149 * Return: -EINVAL if something bad happens with trying to register a
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150 * device, and 0 on success.
151 */
152int usb_register_dev(struct usb_interface *intf,
153 struct usb_class_driver *class_driver)
154{
Alan Stern0026e002010-09-21 15:01:53 -0400155 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156 int minor_base = class_driver->minor_base;
Alan Stern0026e002010-09-21 15:01:53 -0400157 int minor;
Kay Sievers7071a3c2008-05-02 06:02:41 +0200158 char name[20];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159
160#ifdef CONFIG_USB_DYNAMIC_MINORS
Matthias Beyer469271f2013-10-10 23:41:27 +0200161 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 * We don't care what the device tries to start at, we want to start
163 * at zero to pack the devices into the smallest available space with
164 * no holes in the minor range.
165 */
166 minor_base = 0;
167#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168
169 if (class_driver->fops == NULL)
Alan Stern0026e002010-09-21 15:01:53 -0400170 return -EINVAL;
171 if (intf->minor >= 0)
172 return -EADDRINUSE;
173
174 retval = init_usb_class();
175 if (retval)
176 return retval;
177
Greg Kroah-Hartman079d4402012-05-01 21:33:35 -0700178 dev_dbg(&intf->dev, "looking for a minor, starting at %d\n", minor_base);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179
Alan Sternd4ead162007-05-22 11:46:41 -0400180 down_write(&minor_rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 for (minor = minor_base; minor < MAX_USB_MINORS; ++minor) {
182 if (usb_minors[minor])
183 continue;
184
185 usb_minors[minor] = class_driver->fops;
Alan Stern0026e002010-09-21 15:01:53 -0400186 intf->minor = minor;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 break;
188 }
Alan Sternd4ead162007-05-22 11:46:41 -0400189 up_write(&minor_rwsem);
Alan Stern0026e002010-09-21 15:01:53 -0400190 if (intf->minor < 0)
191 return -EXFULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 /* create a usb class device for this usb interface */
Kay Sievers7071a3c2008-05-02 06:02:41 +0200194 snprintf(name, sizeof(name), class_driver->name, minor - minor_base);
Greg Kroah-Hartmanb0b090e2008-07-21 20:03:34 -0700195 intf->usb_dev = device_create(usb_class->class, &intf->dev,
Kay Sieversf7a386c2009-04-30 15:23:42 +0200196 MKDEV(USB_MAJOR, minor), class_driver,
Andy Shevchenkof8868ed2015-12-10 16:49:14 +0200197 "%s", kbasename(name));
Greg Kroah-Hartman0873c762006-06-20 13:09:50 -0700198 if (IS_ERR(intf->usb_dev)) {
Alan Sternd4ead162007-05-22 11:46:41 -0400199 down_write(&minor_rwsem);
Alan Stern0026e002010-09-21 15:01:53 -0400200 usb_minors[minor] = NULL;
201 intf->minor = -1;
Alan Sternd4ead162007-05-22 11:46:41 -0400202 up_write(&minor_rwsem);
Greg Kroah-Hartman0873c762006-06-20 13:09:50 -0700203 retval = PTR_ERR(intf->usb_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 return retval;
206}
Greg Kroah-Hartman782e70c2008-01-25 11:12:21 -0600207EXPORT_SYMBOL_GPL(usb_register_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208
209/**
210 * usb_deregister_dev - deregister a USB device's dynamic minor.
211 * @intf: pointer to the usb_interface that is being deregistered
212 * @class_driver: pointer to the usb_class_driver for this device
213 *
214 * Used in conjunction with usb_register_dev(). This function is called
215 * when the USB driver is finished with the minor numbers gotten from a
216 * call to usb_register_dev() (usually when the device is disconnected
217 * from the system.)
218 *
Greg Kroah-Hartmand6e5bcf2005-06-20 21:15:16 -0700219 * This function also removes the usb class device from the sysfs tree.
220 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221 * This should be called by all drivers that use the USB major number.
222 */
223void usb_deregister_dev(struct usb_interface *intf,
224 struct usb_class_driver *class_driver)
225{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 if (intf->minor == -1)
227 return;
228
Greg Kroah-Hartman079d4402012-05-01 21:33:35 -0700229 dev_dbg(&intf->dev, "removing %d minor\n", intf->minor);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230
Alan Sternd4ead162007-05-22 11:46:41 -0400231 down_write(&minor_rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 usb_minors[intf->minor] = NULL;
Alan Sternd4ead162007-05-22 11:46:41 -0400233 up_write(&minor_rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234
Greg Kroah-Hartman0873c762006-06-20 13:09:50 -0700235 device_destroy(usb_class->class, MKDEV(USB_MAJOR, intf->minor));
236 intf->usb_dev = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237 intf->minor = -1;
Greg Kroah-Hartman43104f12006-06-20 15:14:07 -0700238 destroy_usb_class();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239}
Greg Kroah-Hartman782e70c2008-01-25 11:12:21 -0600240EXPORT_SYMBOL_GPL(usb_deregister_dev);