Pete Zaitcev | a00828e | 2005-10-22 20:15:09 -0700 | [diff] [blame] | 1 | /* |
| 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> |
Matthew Dharm | 0e3c8c2 | 2006-08-31 13:37:29 -0700 | [diff] [blame] | 11 | #include <linux/kthread.h> |
Daniel Walker | 75c43b6 | 2008-02-04 23:57:42 -0800 | [diff] [blame] | 12 | #include <linux/mutex.h> |
Pete Zaitcev | a00828e | 2005-10-22 20:15:09 -0700 | [diff] [blame] | 13 | |
| 14 | /* |
| 15 | */ |
| 16 | #define USU_MOD_FL_THREAD 1 /* Thread is running */ |
| 17 | #define USU_MOD_FL_PRESENT 2 /* The module is loaded */ |
| 18 | |
| 19 | struct mod_status { |
| 20 | unsigned long fls; |
| 21 | }; |
| 22 | |
| 23 | static struct mod_status stat[3]; |
| 24 | static DEFINE_SPINLOCK(usu_lock); |
| 25 | |
| 26 | /* |
| 27 | */ |
| 28 | #define USB_US_DEFAULT_BIAS USB_US_TYPE_STOR |
Pete Zaitcev | 5ba35bd | 2005-12-16 00:39:36 -0800 | [diff] [blame] | 29 | static atomic_t usu_bias = ATOMIC_INIT(USB_US_DEFAULT_BIAS); |
Pete Zaitcev | a00828e | 2005-10-22 20:15:09 -0700 | [diff] [blame] | 30 | |
| 31 | #define BIAS_NAME_SIZE (sizeof("usb-storage")) |
Pete Zaitcev | a00828e | 2005-10-22 20:15:09 -0700 | [diff] [blame] | 32 | static const char *bias_names[3] = { "none", "usb-storage", "ub" }; |
| 33 | |
Daniel Walker | 75c43b6 | 2008-02-04 23:57:42 -0800 | [diff] [blame] | 34 | static DEFINE_MUTEX(usu_probe_mutex); |
Pete Zaitcev | a00828e | 2005-10-22 20:15:09 -0700 | [diff] [blame] | 35 | static DECLARE_COMPLETION(usu_end_notify); |
| 36 | static atomic_t total_threads = ATOMIC_INIT(0); |
| 37 | |
| 38 | static int usu_probe_thread(void *arg); |
Pete Zaitcev | a00828e | 2005-10-22 20:15:09 -0700 | [diff] [blame] | 39 | |
| 40 | /* |
Pete Zaitcev | a00828e | 2005-10-22 20:15:09 -0700 | [diff] [blame] | 41 | * @type: the module type as an integer |
| 42 | */ |
| 43 | void usb_usual_set_present(int type) |
| 44 | { |
| 45 | struct mod_status *st; |
| 46 | unsigned long flags; |
| 47 | |
| 48 | if (type <= 0 || type >= 3) |
| 49 | return; |
| 50 | st = &stat[type]; |
| 51 | spin_lock_irqsave(&usu_lock, flags); |
| 52 | st->fls |= USU_MOD_FL_PRESENT; |
| 53 | spin_unlock_irqrestore(&usu_lock, flags); |
| 54 | } |
| 55 | EXPORT_SYMBOL_GPL(usb_usual_set_present); |
| 56 | |
| 57 | void usb_usual_clear_present(int type) |
| 58 | { |
| 59 | struct mod_status *st; |
| 60 | unsigned long flags; |
| 61 | |
| 62 | if (type <= 0 || type >= 3) |
| 63 | return; |
| 64 | st = &stat[type]; |
| 65 | spin_lock_irqsave(&usu_lock, flags); |
| 66 | st->fls &= ~USU_MOD_FL_PRESENT; |
| 67 | spin_unlock_irqrestore(&usu_lock, flags); |
| 68 | } |
| 69 | EXPORT_SYMBOL_GPL(usb_usual_clear_present); |
| 70 | |
| 71 | /* |
| 72 | * Match the calling driver type against the table. |
| 73 | * Returns: 0 if the device matches. |
| 74 | */ |
| 75 | int usb_usual_check_type(const struct usb_device_id *id, int caller_type) |
| 76 | { |
| 77 | int id_type = USB_US_TYPE(id->driver_info); |
| 78 | |
| 79 | if (caller_type <= 0 || caller_type >= 3) |
| 80 | return -EINVAL; |
| 81 | |
| 82 | /* Drivers grab fixed assignment devices */ |
| 83 | if (id_type == caller_type) |
| 84 | return 0; |
| 85 | /* Drivers grab devices biased to them */ |
Pete Zaitcev | 5ba35bd | 2005-12-16 00:39:36 -0800 | [diff] [blame] | 86 | if (id_type == USB_US_TYPE_NONE && caller_type == atomic_read(&usu_bias)) |
Pete Zaitcev | a00828e | 2005-10-22 20:15:09 -0700 | [diff] [blame] | 87 | return 0; |
| 88 | return -ENODEV; |
| 89 | } |
| 90 | EXPORT_SYMBOL_GPL(usb_usual_check_type); |
| 91 | |
| 92 | /* |
| 93 | */ |
| 94 | static int usu_probe(struct usb_interface *intf, |
| 95 | const struct usb_device_id *id) |
| 96 | { |
Pete Zaitcev | 64e35d9 | 2007-03-08 20:02:26 -0800 | [diff] [blame] | 97 | int rc; |
Alan Cox | 6d453b9 | 2006-01-17 15:39:25 -0800 | [diff] [blame] | 98 | unsigned long type; |
Matthew Dharm | 0e3c8c2 | 2006-08-31 13:37:29 -0700 | [diff] [blame] | 99 | struct task_struct* task; |
Pete Zaitcev | a00828e | 2005-10-22 20:15:09 -0700 | [diff] [blame] | 100 | unsigned long flags; |
| 101 | |
| 102 | type = USB_US_TYPE(id->driver_info); |
| 103 | if (type == 0) |
Pete Zaitcev | 5ba35bd | 2005-12-16 00:39:36 -0800 | [diff] [blame] | 104 | type = atomic_read(&usu_bias); |
Pete Zaitcev | a00828e | 2005-10-22 20:15:09 -0700 | [diff] [blame] | 105 | |
| 106 | spin_lock_irqsave(&usu_lock, flags); |
| 107 | if ((stat[type].fls & (USU_MOD_FL_THREAD|USU_MOD_FL_PRESENT)) != 0) { |
| 108 | spin_unlock_irqrestore(&usu_lock, flags); |
| 109 | return -ENXIO; |
| 110 | } |
| 111 | stat[type].fls |= USU_MOD_FL_THREAD; |
| 112 | spin_unlock_irqrestore(&usu_lock, flags); |
| 113 | |
Rusty Russell | 0430421 | 2008-04-21 06:38:34 +1000 | [diff] [blame] | 114 | task = kthread_run(usu_probe_thread, (void*)type, "libusual_%ld", type); |
Matthew Dharm | 0e3c8c2 | 2006-08-31 13:37:29 -0700 | [diff] [blame] | 115 | if (IS_ERR(task)) { |
Pete Zaitcev | 64e35d9 | 2007-03-08 20:02:26 -0800 | [diff] [blame] | 116 | rc = PTR_ERR(task); |
Pete Zaitcev | a00828e | 2005-10-22 20:15:09 -0700 | [diff] [blame] | 117 | printk(KERN_WARNING "libusual: " |
| 118 | "Unable to start the thread for %s: %d\n", |
| 119 | bias_names[type], rc); |
| 120 | spin_lock_irqsave(&usu_lock, flags); |
| 121 | stat[type].fls &= ~USU_MOD_FL_THREAD; |
| 122 | spin_unlock_irqrestore(&usu_lock, flags); |
| 123 | return rc; /* Not being -ENXIO causes a message printed */ |
| 124 | } |
| 125 | atomic_inc(&total_threads); |
| 126 | |
| 127 | return -ENXIO; |
| 128 | } |
| 129 | |
| 130 | static void usu_disconnect(struct usb_interface *intf) |
| 131 | { |
| 132 | ; /* We should not be here. */ |
| 133 | } |
| 134 | |
| 135 | static struct usb_driver usu_driver = { |
Pete Zaitcev | a00828e | 2005-10-22 20:15:09 -0700 | [diff] [blame] | 136 | .name = "libusual", |
| 137 | .probe = usu_probe, |
| 138 | .disconnect = usu_disconnect, |
Alan Stern | e6e244b | 2009-02-12 14:47:44 -0500 | [diff] [blame] | 139 | .id_table = usb_storage_usb_ids, |
Pete Zaitcev | a00828e | 2005-10-22 20:15:09 -0700 | [diff] [blame] | 140 | }; |
| 141 | |
| 142 | /* |
| 143 | * A whole new thread for a purpose of request_module seems quite stupid. |
| 144 | * The request_module forks once inside again. However, if we attempt |
| 145 | * to load a storage module from our own modprobe thread, that module |
| 146 | * references our symbols, which cannot be resolved until our module is |
| 147 | * initialized. I wish there was a way to wait for the end of initialization. |
| 148 | * The module notifier reports MODULE_STATE_COMING only. |
| 149 | * So, we wait until module->init ends as the next best thing. |
| 150 | */ |
| 151 | static int usu_probe_thread(void *arg) |
| 152 | { |
| 153 | int type = (unsigned long) arg; |
| 154 | struct mod_status *st = &stat[type]; |
| 155 | int rc; |
| 156 | unsigned long flags; |
| 157 | |
Daniel Walker | 75c43b6 | 2008-02-04 23:57:42 -0800 | [diff] [blame] | 158 | mutex_lock(&usu_probe_mutex); |
Pete Zaitcev | a00828e | 2005-10-22 20:15:09 -0700 | [diff] [blame] | 159 | rc = request_module(bias_names[type]); |
| 160 | spin_lock_irqsave(&usu_lock, flags); |
| 161 | if (rc == 0 && (st->fls & USU_MOD_FL_PRESENT) == 0) { |
| 162 | /* |
| 163 | * This should not happen, but let us keep tabs on it. |
| 164 | */ |
| 165 | printk(KERN_NOTICE "libusual: " |
| 166 | "modprobe for %s succeeded, but module is not present\n", |
| 167 | bias_names[type]); |
| 168 | } |
| 169 | st->fls &= ~USU_MOD_FL_THREAD; |
| 170 | spin_unlock_irqrestore(&usu_lock, flags); |
Daniel Walker | 75c43b6 | 2008-02-04 23:57:42 -0800 | [diff] [blame] | 171 | mutex_unlock(&usu_probe_mutex); |
Pete Zaitcev | a00828e | 2005-10-22 20:15:09 -0700 | [diff] [blame] | 172 | |
| 173 | complete_and_exit(&usu_end_notify, 0); |
| 174 | } |
| 175 | |
| 176 | /* |
| 177 | */ |
| 178 | static int __init usb_usual_init(void) |
| 179 | { |
| 180 | int rc; |
| 181 | |
Daniel Walker | 75c43b6 | 2008-02-04 23:57:42 -0800 | [diff] [blame] | 182 | mutex_lock(&usu_probe_mutex); |
Pete Zaitcev | a00828e | 2005-10-22 20:15:09 -0700 | [diff] [blame] | 183 | rc = usb_register(&usu_driver); |
Daniel Walker | 75c43b6 | 2008-02-04 23:57:42 -0800 | [diff] [blame] | 184 | mutex_unlock(&usu_probe_mutex); |
Pete Zaitcev | a00828e | 2005-10-22 20:15:09 -0700 | [diff] [blame] | 185 | return rc; |
| 186 | } |
| 187 | |
| 188 | static void __exit usb_usual_exit(void) |
| 189 | { |
| 190 | /* |
| 191 | * We do not check for any drivers present, because |
| 192 | * they keep us pinned with symbol references. |
| 193 | */ |
| 194 | |
| 195 | usb_deregister(&usu_driver); |
| 196 | |
| 197 | while (atomic_read(&total_threads) > 0) { |
| 198 | wait_for_completion(&usu_end_notify); |
| 199 | atomic_dec(&total_threads); |
| 200 | } |
| 201 | } |
| 202 | |
| 203 | /* |
| 204 | * Validate and accept the bias parameter. |
Pete Zaitcev | a00828e | 2005-10-22 20:15:09 -0700 | [diff] [blame] | 205 | */ |
Pete Zaitcev | 5ba35bd | 2005-12-16 00:39:36 -0800 | [diff] [blame] | 206 | static int usu_set_bias(const char *bias_s, struct kernel_param *kp) |
Pete Zaitcev | a00828e | 2005-10-22 20:15:09 -0700 | [diff] [blame] | 207 | { |
| 208 | int i; |
Pete Zaitcev | 5ba35bd | 2005-12-16 00:39:36 -0800 | [diff] [blame] | 209 | int len; |
Pete Zaitcev | a00828e | 2005-10-22 20:15:09 -0700 | [diff] [blame] | 210 | int bias_n = 0; |
| 211 | |
Pete Zaitcev | 5ba35bd | 2005-12-16 00:39:36 -0800 | [diff] [blame] | 212 | len = strlen(bias_s); |
| 213 | if (len == 0) |
| 214 | return -EDOM; |
| 215 | if (bias_s[len-1] == '\n') |
| 216 | --len; |
| 217 | |
| 218 | for (i = 1; i < 3; i++) { |
| 219 | if (strncmp(bias_s, bias_names[i], len) == 0) { |
| 220 | bias_n = i; |
| 221 | break; |
Pete Zaitcev | a00828e | 2005-10-22 20:15:09 -0700 | [diff] [blame] | 222 | } |
| 223 | } |
Pete Zaitcev | 5ba35bd | 2005-12-16 00:39:36 -0800 | [diff] [blame] | 224 | if (bias_n == 0) |
| 225 | return -EINVAL; |
| 226 | |
| 227 | atomic_set(&usu_bias, bias_n); |
| 228 | return 0; |
| 229 | } |
| 230 | |
| 231 | static int usu_get_bias(char *buffer, struct kernel_param *kp) |
| 232 | { |
| 233 | return strlen(strcpy(buffer, bias_names[atomic_read(&usu_bias)])); |
Pete Zaitcev | a00828e | 2005-10-22 20:15:09 -0700 | [diff] [blame] | 234 | } |
| 235 | |
| 236 | module_init(usb_usual_init); |
| 237 | module_exit(usb_usual_exit); |
| 238 | |
Pete Zaitcev | 5ba35bd | 2005-12-16 00:39:36 -0800 | [diff] [blame] | 239 | module_param_call(bias, usu_set_bias, usu_get_bias, NULL, S_IRUGO|S_IWUSR); |
| 240 | __MODULE_PARM_TYPE(bias, "string"); |
Pete Zaitcev | a00828e | 2005-10-22 20:15:09 -0700 | [diff] [blame] | 241 | MODULE_PARM_DESC(bias, "Bias to usb-storage or ub"); |
| 242 | |
| 243 | MODULE_LICENSE("GPL"); |