1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33#ifdef CONFIG_USB_STORAGE_DEBUG
34#define DEBUG
35#endif
36
37#include <linux/sched.h>
38#include <linux/errno.h>
39#include <linux/module.h>
40#include <linux/slab.h>
41#include <linux/kthread.h>
42#include <linux/mutex.h>
43#include <linux/utsname.h>
44
45#include <scsi/scsi.h>
46#include <scsi/scsi_cmnd.h>
47#include <scsi/scsi_device.h>
48
49#include "usb.h"
50#include "scsiglue.h"
51#include "transport.h"
52#include "protocol.h"
53#include "debug.h"
54#include "initializers.h"
55
56#include "sierra_ms.h"
57#include "option_ms.h"
58
59#if IS_ENABLED(CONFIG_USB_UAS)
60#include "uas-detect.h"
61#endif
62
63#define DRV_NAME "usb-storage"
64
65
66MODULE_AUTHOR("Matthew Dharm <mdharm-usb@one-eyed-alien.net>");
67MODULE_DESCRIPTION("USB Mass Storage driver for Linux");
68MODULE_LICENSE("GPL");
69
70static unsigned int delay_use = 1;
71module_param(delay_use, uint, S_IRUGO | S_IWUSR);
72MODULE_PARM_DESC(delay_use, "seconds to delay before using a new device");
73
74static char quirks[128];
75module_param_string(quirks, quirks, sizeof(quirks), S_IRUGO | S_IWUSR);
76MODULE_PARM_DESC(quirks, "supplemental list of device IDs and their quirks");
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94#define UNUSUAL_DEV(idVendor, idProduct, bcdDeviceMin, bcdDeviceMax, \
95 vendor_name, product_name, use_protocol, use_transport, \
96 init_function, Flags) \
97{ \
98 .vendorName = vendor_name, \
99 .productName = product_name, \
100 .useProtocol = use_protocol, \
101 .useTransport = use_transport, \
102 .initFunction = init_function, \
103}
104
105#define COMPLIANT_DEV UNUSUAL_DEV
106
107#define USUAL_DEV(use_protocol, use_transport) \
108{ \
109 .useProtocol = use_protocol, \
110 .useTransport = use_transport, \
111}
112
113#define UNUSUAL_VENDOR_INTF(idVendor, cl, sc, pr, \
114 vendor_name, product_name, use_protocol, use_transport, \
115 init_function, Flags) \
116{ \
117 .vendorName = vendor_name, \
118 .productName = product_name, \
119 .useProtocol = use_protocol, \
120 .useTransport = use_transport, \
121 .initFunction = init_function, \
122}
123
124static struct us_unusual_dev us_unusual_dev_list[] = {
125# include "unusual_devs.h"
126 { }
127};
128
129static struct us_unusual_dev for_dynamic_ids =
130 USUAL_DEV(USB_SC_SCSI, USB_PR_BULK);
131
132#undef UNUSUAL_DEV
133#undef COMPLIANT_DEV
134#undef USUAL_DEV
135#undef UNUSUAL_VENDOR_INTF
136
137#ifdef CONFIG_LOCKDEP
138
139static struct lock_class_key us_interface_key[USB_MAXINTERFACES];
140
141static void us_set_lock_class(struct mutex *mutex,
142 struct usb_interface *intf)
143{
144 struct usb_device *udev = interface_to_usbdev(intf);
145 struct usb_host_config *config = udev->actconfig;
146 int i;
147
148 for (i = 0; i < config->desc.bNumInterfaces; i++) {
149 if (config->interface[i] == intf)
150 break;
151 }
152
153 BUG_ON(i == config->desc.bNumInterfaces);
154
155 lockdep_set_class(mutex, &us_interface_key[i]);
156}
157
158#else
159
160static void us_set_lock_class(struct mutex *mutex,
161 struct usb_interface *intf)
162{
163}
164
165#endif
166
167#ifdef CONFIG_PM
168
169int usb_stor_suspend(struct usb_interface *iface, pm_message_t message)
170{
171 struct us_data *us = usb_get_intfdata(iface);
172
173
174 mutex_lock(&us->dev_mutex);
175
176 if (us->suspend_resume_hook)
177 (us->suspend_resume_hook)(us, US_SUSPEND);
178
179
180
181
182
183
184 mutex_unlock(&us->dev_mutex);
185 return 0;
186}
187EXPORT_SYMBOL_GPL(usb_stor_suspend);
188
189int usb_stor_resume(struct usb_interface *iface)
190{
191 struct us_data *us = usb_get_intfdata(iface);
192
193 mutex_lock(&us->dev_mutex);
194
195 if (us->suspend_resume_hook)
196 (us->suspend_resume_hook)(us, US_RESUME);
197
198 mutex_unlock(&us->dev_mutex);
199 return 0;
200}
201EXPORT_SYMBOL_GPL(usb_stor_resume);
202
203int usb_stor_reset_resume(struct usb_interface *iface)
204{
205 struct us_data *us = usb_get_intfdata(iface);
206
207
208 usb_stor_report_bus_reset(us);
209
210
211
212
213
214 return 0;
215}
216EXPORT_SYMBOL_GPL(usb_stor_reset_resume);
217
218#endif
219
220
221
222
223
224
225int usb_stor_pre_reset(struct usb_interface *iface)
226{
227 struct us_data *us = usb_get_intfdata(iface);
228
229
230 mutex_lock(&us->dev_mutex);
231 return 0;
232}
233EXPORT_SYMBOL_GPL(usb_stor_pre_reset);
234
235int usb_stor_post_reset(struct usb_interface *iface)
236{
237 struct us_data *us = usb_get_intfdata(iface);
238
239
240 usb_stor_report_bus_reset(us);
241
242
243
244
245
246
247 mutex_unlock(&us->dev_mutex);
248 return 0;
249}
250EXPORT_SYMBOL_GPL(usb_stor_post_reset);
251
252
253
254
255
256
257
258
259
260
261void fill_inquiry_response(struct us_data *us, unsigned char *data,
262 unsigned int data_len)
263{
264 if (data_len < 36)
265 return;
266
267 memset(data+8, ' ', 28);
268 if (data[0]&0x20) {
269
270
271
272
273
274
275
276
277
278
279 } else {
280 u16 bcdDevice = le16_to_cpu(us->pusb_dev->descriptor.bcdDevice);
281 int n;
282
283 n = strlen(us->unusual_dev->vendorName);
284 memcpy(data+8, us->unusual_dev->vendorName, min(8, n));
285 n = strlen(us->unusual_dev->productName);
286 memcpy(data+16, us->unusual_dev->productName, min(16, n));
287
288 data[32] = 0x30 + ((bcdDevice>>12) & 0x0F);
289 data[33] = 0x30 + ((bcdDevice>>8) & 0x0F);
290 data[34] = 0x30 + ((bcdDevice>>4) & 0x0F);
291 data[35] = 0x30 + ((bcdDevice) & 0x0F);
292 }
293
294 usb_stor_set_xfer_buf(data, data_len, us->srb);
295}
296EXPORT_SYMBOL_GPL(fill_inquiry_response);
297
298static int usb_stor_control_thread(void * __us)
299{
300 struct us_data *us = (struct us_data *)__us;
301 struct Scsi_Host *host = us_to_host(us);
302 struct scsi_cmnd *srb;
303
304 for (;;) {
305 usb_stor_dbg(us, "*** thread sleeping\n");
306 if (wait_for_completion_interruptible(&us->cmnd_ready))
307 break;
308
309 usb_stor_dbg(us, "*** thread awakened\n");
310
311
312 mutex_lock(&(us->dev_mutex));
313
314
315 scsi_lock(host);
316
317
318 srb = us->srb;
319 if (srb == NULL) {
320 scsi_unlock(host);
321 mutex_unlock(&us->dev_mutex);
322 usb_stor_dbg(us, "-- exiting\n");
323 break;
324 }
325
326
327 if (test_bit(US_FLIDX_TIMED_OUT, &us->dflags)) {
328 srb->result = DID_ABORT << 16;
329 goto SkipForAbort;
330 }
331
332 scsi_unlock(host);
333
334
335
336
337
338 if (srb->sc_data_direction == DMA_BIDIRECTIONAL) {
339 usb_stor_dbg(us, "UNKNOWN data direction\n");
340 srb->result = DID_ERROR << 16;
341 }
342
343
344
345
346
347 else if (srb->device->id &&
348 !(us->fflags & US_FL_SCM_MULT_TARG)) {
349 usb_stor_dbg(us, "Bad target number (%d:%d)\n",
350 srb->device->id, srb->device->lun);
351 srb->result = DID_BAD_TARGET << 16;
352 }
353
354 else if (srb->device->lun > us->max_lun) {
355 usb_stor_dbg(us, "Bad LUN (%d:%d)\n",
356 srb->device->id, srb->device->lun);
357 srb->result = DID_BAD_TARGET << 16;
358 }
359
360
361
362
363
364 else if ((srb->cmnd[0] == INQUIRY) &&
365 (us->fflags & US_FL_FIX_INQUIRY)) {
366 unsigned char data_ptr[36] = {
367 0x00, 0x80, 0x02, 0x02,
368 0x1F, 0x00, 0x00, 0x00};
369
370 usb_stor_dbg(us, "Faking INQUIRY command\n");
371 fill_inquiry_response(us, data_ptr, 36);
372 srb->result = SAM_STAT_GOOD;
373 }
374
375
376 else {
377 US_DEBUG(usb_stor_show_command(us, srb));
378 us->proto_handler(srb, us);
379 usb_mark_last_busy(us->pusb_dev);
380 }
381
382
383 scsi_lock(host);
384
385
386 if (srb->result == DID_ABORT << 16) {
387SkipForAbort:
388 usb_stor_dbg(us, "scsi command aborted\n");
389 srb = NULL;
390 }
391
392
393
394
395
396
397
398
399 if (test_bit(US_FLIDX_TIMED_OUT, &us->dflags)) {
400 complete(&(us->notify));
401
402
403 clear_bit(US_FLIDX_ABORTING, &us->dflags);
404 clear_bit(US_FLIDX_TIMED_OUT, &us->dflags);
405 }
406
407
408 us->srb = NULL;
409 scsi_unlock(host);
410
411
412 mutex_unlock(&us->dev_mutex);
413
414
415 if (srb) {
416 usb_stor_dbg(us, "scsi cmd done, result=0x%x\n",
417 srb->result);
418 srb->scsi_done(srb);
419 }
420 }
421
422
423 for (;;) {
424 set_current_state(TASK_INTERRUPTIBLE);
425 if (kthread_should_stop())
426 break;
427 schedule();
428 }
429 __set_current_state(TASK_RUNNING);
430 return 0;
431}
432
433
434
435
436
437
438static int associate_dev(struct us_data *us, struct usb_interface *intf)
439{
440
441 us->pusb_dev = interface_to_usbdev(intf);
442 us->pusb_intf = intf;
443 us->ifnum = intf->cur_altsetting->desc.bInterfaceNumber;
444 usb_stor_dbg(us, "Vendor: 0x%04x, Product: 0x%04x, Revision: 0x%04x\n",
445 le16_to_cpu(us->pusb_dev->descriptor.idVendor),
446 le16_to_cpu(us->pusb_dev->descriptor.idProduct),
447 le16_to_cpu(us->pusb_dev->descriptor.bcdDevice));
448 usb_stor_dbg(us, "Interface Subclass: 0x%02x, Protocol: 0x%02x\n",
449 intf->cur_altsetting->desc.bInterfaceSubClass,
450 intf->cur_altsetting->desc.bInterfaceProtocol);
451
452
453 usb_set_intfdata(intf, us);
454
455
456 us->cr = kmalloc(sizeof(*us->cr), GFP_KERNEL);
457 if (!us->cr)
458 return -ENOMEM;
459
460 us->iobuf = usb_alloc_coherent(us->pusb_dev, US_IOBUF_SIZE,
461 GFP_KERNEL, &us->iobuf_dma);
462 if (!us->iobuf) {
463 usb_stor_dbg(us, "I/O buffer allocation failed\n");
464 return -ENOMEM;
465 }
466 return 0;
467}
468
469
470#define TOLOWER(x) ((x) | 0x20)
471
472
473void usb_stor_adjust_quirks(struct usb_device *udev, unsigned long *fflags)
474{
475 char *p;
476 u16 vid = le16_to_cpu(udev->descriptor.idVendor);
477 u16 pid = le16_to_cpu(udev->descriptor.idProduct);
478 unsigned f = 0;
479 unsigned int mask = (US_FL_SANE_SENSE | US_FL_BAD_SENSE |
480 US_FL_FIX_CAPACITY | US_FL_IGNORE_UAS |
481 US_FL_CAPACITY_HEURISTICS | US_FL_IGNORE_DEVICE |
482 US_FL_NOT_LOCKABLE | US_FL_MAX_SECTORS_64 |
483 US_FL_CAPACITY_OK | US_FL_IGNORE_RESIDUE |
484 US_FL_SINGLE_LUN | US_FL_NO_WP_DETECT |
485 US_FL_NO_READ_DISC_INFO | US_FL_NO_READ_CAPACITY_16 |
486 US_FL_INITIAL_READ10 | US_FL_WRITE_CACHE |
487 US_FL_NO_ATA_1X | US_FL_NO_REPORT_OPCODES |
488 US_FL_MAX_SECTORS_240 | US_FL_NO_REPORT_LUNS |
489 US_FL_ALWAYS_SYNC);
490
491 p = quirks;
492 while (*p) {
493
494 if (vid == simple_strtoul(p, &p, 16) &&
495 *p == ':' &&
496 pid == simple_strtoul(p+1, &p, 16) &&
497 *p == ':')
498 break;
499
500
501 while (*p) {
502 if (*p++ == ',')
503 break;
504 }
505 }
506 if (!*p)
507 return;
508
509
510 while (*++p && *p != ',') {
511 switch (TOLOWER(*p)) {
512 case 'a':
513 f |= US_FL_SANE_SENSE;
514 break;
515 case 'b':
516 f |= US_FL_BAD_SENSE;
517 break;
518 case 'c':
519 f |= US_FL_FIX_CAPACITY;
520 break;
521 case 'd':
522 f |= US_FL_NO_READ_DISC_INFO;
523 break;
524 case 'e':
525 f |= US_FL_NO_READ_CAPACITY_16;
526 break;
527 case 'f':
528 f |= US_FL_NO_REPORT_OPCODES;
529 break;
530 case 'g':
531 f |= US_FL_MAX_SECTORS_240;
532 break;
533 case 'h':
534 f |= US_FL_CAPACITY_HEURISTICS;
535 break;
536 case 'i':
537 f |= US_FL_IGNORE_DEVICE;
538 break;
539 case 'j':
540 f |= US_FL_NO_REPORT_LUNS;
541 break;
542 case 'l':
543 f |= US_FL_NOT_LOCKABLE;
544 break;
545 case 'm':
546 f |= US_FL_MAX_SECTORS_64;
547 break;
548 case 'n':
549 f |= US_FL_INITIAL_READ10;
550 break;
551 case 'o':
552 f |= US_FL_CAPACITY_OK;
553 break;
554 case 'p':
555 f |= US_FL_WRITE_CACHE;
556 break;
557 case 'r':
558 f |= US_FL_IGNORE_RESIDUE;
559 break;
560 case 's':
561 f |= US_FL_SINGLE_LUN;
562 break;
563 case 't':
564 f |= US_FL_NO_ATA_1X;
565 break;
566 case 'u':
567 f |= US_FL_IGNORE_UAS;
568 break;
569 case 'w':
570 f |= US_FL_NO_WP_DETECT;
571 break;
572 case 'y':
573 f |= US_FL_ALWAYS_SYNC;
574 break;
575
576 }
577 }
578 *fflags = (*fflags & ~mask) | f;
579}
580EXPORT_SYMBOL_GPL(usb_stor_adjust_quirks);
581
582
583static int get_device_info(struct us_data *us, const struct usb_device_id *id,
584 struct us_unusual_dev *unusual_dev)
585{
586 struct usb_device *dev = us->pusb_dev;
587 struct usb_interface_descriptor *idesc =
588 &us->pusb_intf->cur_altsetting->desc;
589 struct device *pdev = &us->pusb_intf->dev;
590
591
592 us->unusual_dev = unusual_dev;
593 us->subclass = (unusual_dev->useProtocol == USB_SC_DEVICE) ?
594 idesc->bInterfaceSubClass :
595 unusual_dev->useProtocol;
596 us->protocol = (unusual_dev->useTransport == USB_PR_DEVICE) ?
597 idesc->bInterfaceProtocol :
598 unusual_dev->useTransport;
599 us->fflags = id->driver_info;
600 usb_stor_adjust_quirks(us->pusb_dev, &us->fflags);
601
602 if (us->fflags & US_FL_IGNORE_DEVICE) {
603 dev_info(pdev, "device ignored\n");
604 return -ENODEV;
605 }
606
607
608
609
610
611 if (dev->speed != USB_SPEED_HIGH)
612 us->fflags &= ~US_FL_GO_SLOW;
613
614 if (us->fflags)
615 dev_info(pdev, "Quirks match for vid %04x pid %04x: %lx\n",
616 le16_to_cpu(dev->descriptor.idVendor),
617 le16_to_cpu(dev->descriptor.idProduct),
618 us->fflags);
619
620
621
622
623
624
625
626 if (id->idVendor || id->idProduct) {
627 static const char *msgs[3] = {
628 "an unneeded SubClass entry",
629 "an unneeded Protocol entry",
630 "unneeded SubClass and Protocol entries"};
631 struct usb_device_descriptor *ddesc = &dev->descriptor;
632 int msg = -1;
633
634 if (unusual_dev->useProtocol != USB_SC_DEVICE &&
635 us->subclass == idesc->bInterfaceSubClass)
636 msg += 1;
637 if (unusual_dev->useTransport != USB_PR_DEVICE &&
638 us->protocol == idesc->bInterfaceProtocol)
639 msg += 2;
640 if (msg >= 0 && !(us->fflags & US_FL_NEED_OVERRIDE))
641 dev_notice(pdev, "This device "
642 "(%04x,%04x,%04x S %02x P %02x)"
643 " has %s in unusual_devs.h (kernel"
644 " %s)\n"
645 " Please send a copy of this message to "
646 "<linux-usb@vger.kernel.org> and "
647 "<usb-storage@lists.one-eyed-alien.net>\n",
648 le16_to_cpu(ddesc->idVendor),
649 le16_to_cpu(ddesc->idProduct),
650 le16_to_cpu(ddesc->bcdDevice),
651 idesc->bInterfaceSubClass,
652 idesc->bInterfaceProtocol,
653 msgs[msg],
654 utsname()->release);
655 }
656
657 return 0;
658}
659
660
661static void get_transport(struct us_data *us)
662{
663 switch (us->protocol) {
664 case USB_PR_CB:
665 us->transport_name = "Control/Bulk";
666 us->transport = usb_stor_CB_transport;
667 us->transport_reset = usb_stor_CB_reset;
668 us->max_lun = 7;
669 break;
670
671 case USB_PR_CBI:
672 us->transport_name = "Control/Bulk/Interrupt";
673 us->transport = usb_stor_CB_transport;
674 us->transport_reset = usb_stor_CB_reset;
675 us->max_lun = 7;
676 break;
677
678 case USB_PR_BULK:
679 us->transport_name = "Bulk";
680 us->transport = usb_stor_Bulk_transport;
681 us->transport_reset = usb_stor_Bulk_reset;
682 break;
683 }
684}
685
686
687static void get_protocol(struct us_data *us)
688{
689 switch (us->subclass) {
690 case USB_SC_RBC:
691 us->protocol_name = "Reduced Block Commands (RBC)";
692 us->proto_handler = usb_stor_transparent_scsi_command;
693 break;
694
695 case USB_SC_8020:
696 us->protocol_name = "8020i";
697 us->proto_handler = usb_stor_pad12_command;
698 us->max_lun = 0;
699 break;
700
701 case USB_SC_QIC:
702 us->protocol_name = "QIC-157";
703 us->proto_handler = usb_stor_pad12_command;
704 us->max_lun = 0;
705 break;
706
707 case USB_SC_8070:
708 us->protocol_name = "8070i";
709 us->proto_handler = usb_stor_pad12_command;
710 us->max_lun = 0;
711 break;
712
713 case USB_SC_SCSI:
714 us->protocol_name = "Transparent SCSI";
715 us->proto_handler = usb_stor_transparent_scsi_command;
716 break;
717
718 case USB_SC_UFI:
719 us->protocol_name = "Uniform Floppy Interface (UFI)";
720 us->proto_handler = usb_stor_ufi_command;
721 break;
722 }
723}
724
725
726static int get_pipes(struct us_data *us)
727{
728 struct usb_host_interface *alt = us->pusb_intf->cur_altsetting;
729 struct usb_endpoint_descriptor *ep_in;
730 struct usb_endpoint_descriptor *ep_out;
731 struct usb_endpoint_descriptor *ep_int;
732 int res;
733
734
735
736
737
738
739
740 res = usb_find_common_endpoints(alt, &ep_in, &ep_out, NULL, NULL);
741 if (res) {
742 usb_stor_dbg(us, "bulk endpoints not found\n");
743 return res;
744 }
745
746 res = usb_find_int_in_endpoint(alt, &ep_int);
747 if (res && us->protocol == USB_PR_CBI) {
748 usb_stor_dbg(us, "interrupt endpoint not found\n");
749 return res;
750 }
751
752
753 us->send_ctrl_pipe = usb_sndctrlpipe(us->pusb_dev, 0);
754 us->recv_ctrl_pipe = usb_rcvctrlpipe(us->pusb_dev, 0);
755 us->send_bulk_pipe = usb_sndbulkpipe(us->pusb_dev,
756 usb_endpoint_num(ep_out));
757 us->recv_bulk_pipe = usb_rcvbulkpipe(us->pusb_dev,
758 usb_endpoint_num(ep_in));
759 if (ep_int) {
760 us->recv_intr_pipe = usb_rcvintpipe(us->pusb_dev,
761 usb_endpoint_num(ep_int));
762 us->ep_bInterval = ep_int->bInterval;
763 }
764 return 0;
765}
766
767
768static int usb_stor_acquire_resources(struct us_data *us)
769{
770 int p;
771 struct task_struct *th;
772
773 us->current_urb = usb_alloc_urb(0, GFP_KERNEL);
774 if (!us->current_urb)
775 return -ENOMEM;
776
777
778
779
780
781 if (us->unusual_dev->initFunction) {
782 p = us->unusual_dev->initFunction(us);
783 if (p)
784 return p;
785 }
786
787
788 th = kthread_run(usb_stor_control_thread, us, "usb-storage");
789 if (IS_ERR(th)) {
790 dev_warn(&us->pusb_intf->dev,
791 "Unable to start control thread\n");
792 return PTR_ERR(th);
793 }
794 us->ctl_thread = th;
795
796 return 0;
797}
798
799
800static void usb_stor_release_resources(struct us_data *us)
801{
802
803
804
805
806
807 usb_stor_dbg(us, "-- sending exit command to thread\n");
808 complete(&us->cmnd_ready);
809 if (us->ctl_thread)
810 kthread_stop(us->ctl_thread);
811
812
813 if (us->extra_destructor) {
814 usb_stor_dbg(us, "-- calling extra_destructor()\n");
815 us->extra_destructor(us->extra);
816 }
817
818
819 kfree(us->extra);
820 usb_free_urb(us->current_urb);
821}
822
823
824static void dissociate_dev(struct us_data *us)
825{
826
827 kfree(us->cr);
828 usb_free_coherent(us->pusb_dev, US_IOBUF_SIZE, us->iobuf, us->iobuf_dma);
829
830
831 usb_set_intfdata(us->pusb_intf, NULL);
832}
833
834
835
836
837
838static void quiesce_and_remove_host(struct us_data *us)
839{
840 struct Scsi_Host *host = us_to_host(us);
841
842
843 if (us->pusb_dev->state == USB_STATE_NOTATTACHED) {
844 set_bit(US_FLIDX_DISCONNECTING, &us->dflags);
845 wake_up(&us->delay_wait);
846 }
847
848
849
850
851
852 cancel_delayed_work_sync(&us->scan_dwork);
853
854
855 if (test_bit(US_FLIDX_SCAN_PENDING, &us->dflags))
856 usb_autopm_put_interface_no_suspend(us->pusb_intf);
857
858
859
860
861
862 scsi_remove_host(host);
863
864
865
866
867
868 scsi_lock(host);
869 set_bit(US_FLIDX_DISCONNECTING, &us->dflags);
870 scsi_unlock(host);
871 wake_up(&us->delay_wait);
872}
873
874
875static void release_everything(struct us_data *us)
876{
877 usb_stor_release_resources(us);
878 dissociate_dev(us);
879
880
881
882
883
884 scsi_host_put(us_to_host(us));
885}
886
887
888static void usb_stor_scan_dwork(struct work_struct *work)
889{
890 struct us_data *us = container_of(work, struct us_data,
891 scan_dwork.work);
892 struct device *dev = &us->pusb_intf->dev;
893
894 dev_dbg(dev, "starting scan\n");
895
896
897 if (us->protocol == USB_PR_BULK &&
898 !(us->fflags & US_FL_SINGLE_LUN) &&
899 !(us->fflags & US_FL_SCM_MULT_TARG)) {
900 mutex_lock(&us->dev_mutex);
901 us->max_lun = usb_stor_Bulk_max_lun(us);
902
903
904
905
906
907 if (us->max_lun >= 8)
908 us_to_host(us)->max_lun = us->max_lun+1;
909 mutex_unlock(&us->dev_mutex);
910 }
911 scsi_scan_host(us_to_host(us));
912 dev_dbg(dev, "scan complete\n");
913
914
915
916 usb_autopm_put_interface(us->pusb_intf);
917 clear_bit(US_FLIDX_SCAN_PENDING, &us->dflags);
918}
919
920static unsigned int usb_stor_sg_tablesize(struct usb_interface *intf)
921{
922 struct usb_device *usb_dev = interface_to_usbdev(intf);
923
924 if (usb_dev->bus->sg_tablesize) {
925 return usb_dev->bus->sg_tablesize;
926 }
927 return SG_ALL;
928}
929
930
931int usb_stor_probe1(struct us_data **pus,
932 struct usb_interface *intf,
933 const struct usb_device_id *id,
934 struct us_unusual_dev *unusual_dev,
935 struct scsi_host_template *sht)
936{
937 struct Scsi_Host *host;
938 struct us_data *us;
939 int result;
940
941 dev_info(&intf->dev, "USB Mass Storage device detected\n");
942
943
944
945
946
947 host = scsi_host_alloc(sht, sizeof(*us));
948 if (!host) {
949 dev_warn(&intf->dev, "Unable to allocate the scsi host\n");
950 return -ENOMEM;
951 }
952
953
954
955
956 host->max_cmd_len = 16;
957 host->sg_tablesize = usb_stor_sg_tablesize(intf);
958 *pus = us = host_to_us(host);
959 mutex_init(&(us->dev_mutex));
960 us_set_lock_class(&us->dev_mutex, intf);
961 init_completion(&us->cmnd_ready);
962 init_completion(&(us->notify));
963 init_waitqueue_head(&us->delay_wait);
964 INIT_DELAYED_WORK(&us->scan_dwork, usb_stor_scan_dwork);
965
966
967 result = associate_dev(us, intf);
968 if (result)
969 goto BadDevice;
970
971
972 result = get_device_info(us, id, unusual_dev);
973 if (result)
974 goto BadDevice;
975
976
977 get_transport(us);
978 get_protocol(us);
979
980
981
982
983
984 return 0;
985
986BadDevice:
987 usb_stor_dbg(us, "storage_probe() failed\n");
988 release_everything(us);
989 return result;
990}
991EXPORT_SYMBOL_GPL(usb_stor_probe1);
992
993
994int usb_stor_probe2(struct us_data *us)
995{
996 int result;
997 struct device *dev = &us->pusb_intf->dev;
998
999
1000 if (!us->transport || !us->proto_handler) {
1001 result = -ENXIO;
1002 goto BadDevice;
1003 }
1004 usb_stor_dbg(us, "Transport: %s\n", us->transport_name);
1005 usb_stor_dbg(us, "Protocol: %s\n", us->protocol_name);
1006
1007 if (us->fflags & US_FL_SCM_MULT_TARG) {
1008
1009
1010
1011
1012 us->max_lun = 7;
1013
1014 us_to_host(us)->this_id = 7;
1015
1016 } else {
1017
1018 us_to_host(us)->max_id = 1;
1019
1020
1021
1022
1023
1024 if (us->transport == usb_stor_Bulk_transport)
1025 us_to_host(us)->no_scsi2_lun_in_cdb = 1;
1026 }
1027
1028
1029 if (us->fflags & US_FL_SINGLE_LUN)
1030 us->max_lun = 0;
1031
1032
1033 result = get_pipes(us);
1034 if (result)
1035 goto BadDevice;
1036
1037
1038
1039
1040
1041 if (us->fflags & US_FL_INITIAL_READ10)
1042 set_bit(US_FLIDX_REDO_READ10, &us->dflags);
1043
1044
1045 result = usb_stor_acquire_resources(us);
1046 if (result)
1047 goto BadDevice;
1048 usb_autopm_get_interface_no_resume(us->pusb_intf);
1049 snprintf(us->scsi_name, sizeof(us->scsi_name), "usb-storage %s",
1050 dev_name(&us->pusb_intf->dev));
1051 result = scsi_add_host(us_to_host(us), dev);
1052 if (result) {
1053 dev_warn(dev,
1054 "Unable to add the scsi host\n");
1055 goto HostAddErr;
1056 }
1057
1058
1059 set_bit(US_FLIDX_SCAN_PENDING, &us->dflags);
1060
1061 if (delay_use > 0)
1062 dev_dbg(dev, "waiting for device to settle before scanning\n");
1063 queue_delayed_work(system_freezable_wq, &us->scan_dwork,
1064 delay_use * HZ);
1065 return 0;
1066
1067
1068HostAddErr:
1069 usb_autopm_put_interface_no_suspend(us->pusb_intf);
1070BadDevice:
1071 usb_stor_dbg(us, "storage_probe() failed\n");
1072 release_everything(us);
1073 return result;
1074}
1075EXPORT_SYMBOL_GPL(usb_stor_probe2);
1076
1077
1078void usb_stor_disconnect(struct usb_interface *intf)
1079{
1080 struct us_data *us = usb_get_intfdata(intf);
1081
1082 quiesce_and_remove_host(us);
1083 release_everything(us);
1084}
1085EXPORT_SYMBOL_GPL(usb_stor_disconnect);
1086
1087static struct scsi_host_template usb_stor_host_template;
1088
1089
1090static int storage_probe(struct usb_interface *intf,
1091 const struct usb_device_id *id)
1092{
1093 struct us_unusual_dev *unusual_dev;
1094 struct us_data *us;
1095 int result;
1096 int size;
1097
1098
1099#if IS_ENABLED(CONFIG_USB_UAS)
1100 if (uas_use_uas_driver(intf, id, NULL))
1101 return -ENXIO;
1102#endif
1103
1104
1105
1106
1107
1108 if (usb_usual_ignore_device(intf))
1109 return -ENXIO;
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119 size = ARRAY_SIZE(us_unusual_dev_list);
1120 if (id >= usb_storage_usb_ids && id < usb_storage_usb_ids + size) {
1121 unusual_dev = (id - usb_storage_usb_ids) + us_unusual_dev_list;
1122 } else {
1123 unusual_dev = &for_dynamic_ids;
1124
1125 dev_dbg(&intf->dev, "Use Bulk-Only transport with the Transparent SCSI protocol for dynamic id: 0x%04x 0x%04x\n",
1126 id->idVendor, id->idProduct);
1127 }
1128
1129 result = usb_stor_probe1(&us, intf, id, unusual_dev,
1130 &usb_stor_host_template);
1131 if (result)
1132 return result;
1133
1134
1135
1136 result = usb_stor_probe2(us);
1137 return result;
1138}
1139
1140static struct usb_driver usb_storage_driver = {
1141 .name = DRV_NAME,
1142 .probe = storage_probe,
1143 .disconnect = usb_stor_disconnect,
1144 .suspend = usb_stor_suspend,
1145 .resume = usb_stor_resume,
1146 .reset_resume = usb_stor_reset_resume,
1147 .pre_reset = usb_stor_pre_reset,
1148 .post_reset = usb_stor_post_reset,
1149 .id_table = usb_storage_usb_ids,
1150 .supports_autosuspend = 1,
1151 .soft_unbind = 1,
1152};
1153
1154module_usb_stor_driver(usb_storage_driver, usb_stor_host_template, DRV_NAME);
1155