blob: 2680c69a241737ec38fa3846f039f61e4440f2b2 [file] [log] [blame]
Pete Zaitceva00828e2005-10-22 20:15:09 -07001/*
2 * libusual
3 *
4 * The libusual contains the table of devices common for ub and usb-storage.
5 */
6#include <linux/kernel.h>
7#include <linux/module.h>
8#include <linux/usb.h>
9#include <linux/usb_usual.h>
10#include <linux/vmalloc.h>
11
12/*
13 */
14#define USU_MOD_FL_THREAD 1 /* Thread is running */
15#define USU_MOD_FL_PRESENT 2 /* The module is loaded */
16
17struct mod_status {
18 unsigned long fls;
19};
20
21static struct mod_status stat[3];
22static DEFINE_SPINLOCK(usu_lock);
23
24/*
25 */
26#define USB_US_DEFAULT_BIAS USB_US_TYPE_STOR
Pete Zaitcev5ba35bd2005-12-16 00:39:36 -080027static atomic_t usu_bias = ATOMIC_INIT(USB_US_DEFAULT_BIAS);
Pete Zaitceva00828e2005-10-22 20:15:09 -070028
29#define BIAS_NAME_SIZE (sizeof("usb-storage"))
Pete Zaitceva00828e2005-10-22 20:15:09 -070030static const char *bias_names[3] = { "none", "usb-storage", "ub" };
31
32static DECLARE_MUTEX_LOCKED(usu_init_notify);
33static DECLARE_COMPLETION(usu_end_notify);
34static atomic_t total_threads = ATOMIC_INIT(0);
35
36static int usu_probe_thread(void *arg);
Pete Zaitceva00828e2005-10-22 20:15:09 -070037
38/*
39 * The table.
40 */
41#define UNUSUAL_DEV(id_vendor, id_product, bcdDeviceMin, bcdDeviceMax, \
42 vendorName, productName,useProtocol, useTransport, \
43 initFunction, flags) \
44{ USB_DEVICE_VER(id_vendor, id_product, bcdDeviceMin,bcdDeviceMax), \
45 .driver_info = (flags)|(USB_US_TYPE_STOR<<24) }
46
47#define USUAL_DEV(useProto, useTrans, useType) \
48{ USB_INTERFACE_INFO(USB_CLASS_MASS_STORAGE, useProto, useTrans), \
49 .driver_info = ((useType)<<24) }
50
51struct usb_device_id storage_usb_ids [] = {
52# include "unusual_devs.h"
53 { } /* Terminating entry */
54};
55
56#undef USUAL_DEV
57#undef UNUSUAL_DEV
58
59MODULE_DEVICE_TABLE(usb, storage_usb_ids);
60EXPORT_SYMBOL_GPL(storage_usb_ids);
61
62/*
63 * @type: the module type as an integer
64 */
65void usb_usual_set_present(int type)
66{
67 struct mod_status *st;
68 unsigned long flags;
69
70 if (type <= 0 || type >= 3)
71 return;
72 st = &stat[type];
73 spin_lock_irqsave(&usu_lock, flags);
74 st->fls |= USU_MOD_FL_PRESENT;
75 spin_unlock_irqrestore(&usu_lock, flags);
76}
77EXPORT_SYMBOL_GPL(usb_usual_set_present);
78
79void usb_usual_clear_present(int type)
80{
81 struct mod_status *st;
82 unsigned long flags;
83
84 if (type <= 0 || type >= 3)
85 return;
86 st = &stat[type];
87 spin_lock_irqsave(&usu_lock, flags);
88 st->fls &= ~USU_MOD_FL_PRESENT;
89 spin_unlock_irqrestore(&usu_lock, flags);
90}
91EXPORT_SYMBOL_GPL(usb_usual_clear_present);
92
93/*
94 * Match the calling driver type against the table.
95 * Returns: 0 if the device matches.
96 */
97int usb_usual_check_type(const struct usb_device_id *id, int caller_type)
98{
99 int id_type = USB_US_TYPE(id->driver_info);
100
101 if (caller_type <= 0 || caller_type >= 3)
102 return -EINVAL;
103
104 /* Drivers grab fixed assignment devices */
105 if (id_type == caller_type)
106 return 0;
107 /* Drivers grab devices biased to them */
Pete Zaitcev5ba35bd2005-12-16 00:39:36 -0800108 if (id_type == USB_US_TYPE_NONE && caller_type == atomic_read(&usu_bias))
Pete Zaitceva00828e2005-10-22 20:15:09 -0700109 return 0;
110 return -ENODEV;
111}
112EXPORT_SYMBOL_GPL(usb_usual_check_type);
113
114/*
115 */
116static int usu_probe(struct usb_interface *intf,
117 const struct usb_device_id *id)
118{
119 int type;
120 int rc;
121 unsigned long flags;
122
123 type = USB_US_TYPE(id->driver_info);
124 if (type == 0)
Pete Zaitcev5ba35bd2005-12-16 00:39:36 -0800125 type = atomic_read(&usu_bias);
Pete Zaitceva00828e2005-10-22 20:15:09 -0700126
127 spin_lock_irqsave(&usu_lock, flags);
128 if ((stat[type].fls & (USU_MOD_FL_THREAD|USU_MOD_FL_PRESENT)) != 0) {
129 spin_unlock_irqrestore(&usu_lock, flags);
130 return -ENXIO;
131 }
132 stat[type].fls |= USU_MOD_FL_THREAD;
133 spin_unlock_irqrestore(&usu_lock, flags);
134
135 rc = kernel_thread(usu_probe_thread, (void*)type, CLONE_VM);
136 if (rc < 0) {
137 printk(KERN_WARNING "libusual: "
138 "Unable to start the thread for %s: %d\n",
139 bias_names[type], rc);
140 spin_lock_irqsave(&usu_lock, flags);
141 stat[type].fls &= ~USU_MOD_FL_THREAD;
142 spin_unlock_irqrestore(&usu_lock, flags);
143 return rc; /* Not being -ENXIO causes a message printed */
144 }
145 atomic_inc(&total_threads);
146
147 return -ENXIO;
148}
149
150static void usu_disconnect(struct usb_interface *intf)
151{
152 ; /* We should not be here. */
153}
154
155static struct usb_driver usu_driver = {
156 .owner = THIS_MODULE,
157 .name = "libusual",
158 .probe = usu_probe,
159 .disconnect = usu_disconnect,
160 .id_table = storage_usb_ids,
161};
162
163/*
164 * A whole new thread for a purpose of request_module seems quite stupid.
165 * The request_module forks once inside again. However, if we attempt
166 * to load a storage module from our own modprobe thread, that module
167 * references our symbols, which cannot be resolved until our module is
168 * initialized. I wish there was a way to wait for the end of initialization.
169 * The module notifier reports MODULE_STATE_COMING only.
170 * So, we wait until module->init ends as the next best thing.
171 */
172static int usu_probe_thread(void *arg)
173{
174 int type = (unsigned long) arg;
175 struct mod_status *st = &stat[type];
176 int rc;
177 unsigned long flags;
178
179 daemonize("libusual_%d", type); /* "usb-storage" is kinda too long */
180
181 /* A completion does not work here because it's counted. */
182 down(&usu_init_notify);
183 up(&usu_init_notify);
184
185 rc = request_module(bias_names[type]);
186 spin_lock_irqsave(&usu_lock, flags);
187 if (rc == 0 && (st->fls & USU_MOD_FL_PRESENT) == 0) {
188 /*
189 * This should not happen, but let us keep tabs on it.
190 */
191 printk(KERN_NOTICE "libusual: "
192 "modprobe for %s succeeded, but module is not present\n",
193 bias_names[type]);
194 }
195 st->fls &= ~USU_MOD_FL_THREAD;
196 spin_unlock_irqrestore(&usu_lock, flags);
197
198 complete_and_exit(&usu_end_notify, 0);
199}
200
201/*
202 */
203static int __init usb_usual_init(void)
204{
205 int rc;
206
Pete Zaitceva00828e2005-10-22 20:15:09 -0700207 rc = usb_register(&usu_driver);
208 up(&usu_init_notify);
209 return rc;
210}
211
212static void __exit usb_usual_exit(void)
213{
214 /*
215 * We do not check for any drivers present, because
216 * they keep us pinned with symbol references.
217 */
218
219 usb_deregister(&usu_driver);
220
221 while (atomic_read(&total_threads) > 0) {
222 wait_for_completion(&usu_end_notify);
223 atomic_dec(&total_threads);
224 }
225}
226
227/*
228 * Validate and accept the bias parameter.
Pete Zaitceva00828e2005-10-22 20:15:09 -0700229 */
Pete Zaitcev5ba35bd2005-12-16 00:39:36 -0800230static int usu_set_bias(const char *bias_s, struct kernel_param *kp)
Pete Zaitceva00828e2005-10-22 20:15:09 -0700231{
232 int i;
Pete Zaitcev5ba35bd2005-12-16 00:39:36 -0800233 int len;
Pete Zaitceva00828e2005-10-22 20:15:09 -0700234 int bias_n = 0;
235
Pete Zaitcev5ba35bd2005-12-16 00:39:36 -0800236 len = strlen(bias_s);
237 if (len == 0)
238 return -EDOM;
239 if (bias_s[len-1] == '\n')
240 --len;
241
242 for (i = 1; i < 3; i++) {
243 if (strncmp(bias_s, bias_names[i], len) == 0) {
244 bias_n = i;
245 break;
Pete Zaitceva00828e2005-10-22 20:15:09 -0700246 }
247 }
Pete Zaitcev5ba35bd2005-12-16 00:39:36 -0800248 if (bias_n == 0)
249 return -EINVAL;
250
251 atomic_set(&usu_bias, bias_n);
252 return 0;
253}
254
255static int usu_get_bias(char *buffer, struct kernel_param *kp)
256{
257 return strlen(strcpy(buffer, bias_names[atomic_read(&usu_bias)]));
Pete Zaitceva00828e2005-10-22 20:15:09 -0700258}
259
260module_init(usb_usual_init);
261module_exit(usb_usual_exit);
262
Pete Zaitcev5ba35bd2005-12-16 00:39:36 -0800263module_param_call(bias, usu_set_bias, usu_get_bias, NULL, S_IRUGO|S_IWUSR);
264__MODULE_PARM_TYPE(bias, "string");
Pete Zaitceva00828e2005-10-22 20:15:09 -0700265MODULE_PARM_DESC(bias, "Bias to usb-storage or ub");
266
267MODULE_LICENSE("GPL");