blob: 9033e505db7f5372069bea4751776dcca5f07e42 [file] [log] [blame]
Greg Kroah-Hartman5fd54ac2017-11-03 11:28:30 +01001// SPDX-License-Identifier: GPL-2.0+
Felipe Balbif0183a32016-04-18 13:09:11 +03002/*
3 * Driver for USB Mass Storage compliant devices
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 * Current development and maintenance by:
6 * (c) 1999-2002 Matthew Dharm (mdharm-usb@one-eyed-alien.net)
7 *
8 * Developed with the assistance of:
9 * (c) 2000 David L. Brown, Jr. (usb-storage@davidb.org)
10 * (c) 2002 Alan Stern (stern@rowland.org)
11 *
12 * Initial work by:
13 * (c) 1999 Michael Gee (michael@linuxspecific.com)
14 *
15 * This driver is based on the 'USB Mass Storage Class' document. This
16 * describes in detail the protocol used to communicate with such
17 * devices. Clearly, the designers had SCSI and ATAPI commands in
18 * mind when they created this document. The commands are all very
19 * similar to commands in the SCSI-II and ATAPI specifications.
20 *
21 * It is important to note that in a number of cases this class
22 * exhibits class-specific exemptions from the USB specification.
23 * Notably the usage of NAK, STALL and ACK differs from the norm, in
24 * that they are used to communicate wait, failed and OK on commands.
25 *
26 * Also, for certain devices, the interrupt endpoint is used to convey
27 * status of a command.
Linus Torvalds1da177e2005-04-16 15:20:36 -070028 */
29
30#include <linux/highmem.h>
Paul Gortmakerf940fcd2011-05-27 09:56:31 -040031#include <linux/export.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#include <scsi/scsi.h>
33#include <scsi/scsi_cmnd.h>
34
35#include "usb.h"
36#include "protocol.h"
37#include "debug.h"
38#include "scsiglue.h"
39#include "transport.h"
40
41/***********************************************************************
42 * Protocol routines
43 ***********************************************************************/
44
Alan Stern3dae5342008-11-20 14:22:18 -050045void usb_stor_pad12_command(struct scsi_cmnd *srb, struct us_data *us)
Linus Torvalds1da177e2005-04-16 15:20:36 -070046{
Alan Stern2f640bf2011-10-25 10:50:58 -040047 /*
48 * Pad the SCSI command with zeros out to 12 bytes. If the
49 * command already is 12 bytes or longer, leave it alone.
Linus Torvalds1da177e2005-04-16 15:20:36 -070050 *
51 * NOTE: This only works because a scsi_cmnd struct field contains
52 * a unsigned char cmnd[16], so we know we have storage available
53 */
Jeffrin Josefc8ef482012-05-30 18:05:47 +053054 for (; srb->cmd_len < 12; srb->cmd_len++)
Linus Torvalds1da177e2005-04-16 15:20:36 -070055 srb->cmnd[srb->cmd_len] = 0;
56
Linus Torvalds1da177e2005-04-16 15:20:36 -070057 /* send the command to the transport layer */
58 usb_stor_invoke_transport(srb, us);
59}
60
Linus Torvalds1da177e2005-04-16 15:20:36 -070061void usb_stor_ufi_command(struct scsi_cmnd *srb, struct us_data *us)
62{
Felipe Balbif0183a32016-04-18 13:09:11 +030063 /*
64 * fix some commands -- this is a form of mode translation
Jeffrin Josefc8ef482012-05-30 18:05:47 +053065 * UFI devices only accept 12 byte long commands
Linus Torvalds1da177e2005-04-16 15:20:36 -070066 *
67 * NOTE: This only works because a scsi_cmnd struct field contains
68 * a unsigned char cmnd[16], so we know we have storage available
69 */
70
71 /* Pad the ATAPI command with zeros */
Jeffrin Josefc8ef482012-05-30 18:05:47 +053072 for (; srb->cmd_len < 12; srb->cmd_len++)
Linus Torvalds1da177e2005-04-16 15:20:36 -070073 srb->cmnd[srb->cmd_len] = 0;
74
75 /* set command length to 12 bytes (this affects the transport layer) */
76 srb->cmd_len = 12;
77
78 /* XXX We should be constantly re-evaluating the need for these */
79
80 /* determine the correct data length for these commands */
81 switch (srb->cmnd[0]) {
82
83 /* for INQUIRY, UFI devices only ever return 36 bytes */
84 case INQUIRY:
85 srb->cmnd[4] = 36;
86 break;
87
88 /* again, for MODE_SENSE_10, we get the minimum (8) */
89 case MODE_SENSE_10:
90 srb->cmnd[7] = 0;
91 srb->cmnd[8] = 8;
92 break;
93
94 /* for REQUEST_SENSE, UFI devices only ever return 18 bytes */
95 case REQUEST_SENSE:
96 srb->cmnd[4] = 18;
97 break;
98 } /* end switch on cmnd[0] */
99
100 /* send the command to the transport layer */
101 usb_stor_invoke_transport(srb, us);
102}
103
104void usb_stor_transparent_scsi_command(struct scsi_cmnd *srb,
105 struct us_data *us)
106{
107 /* send the command to the transport layer */
108 usb_stor_invoke_transport(srb, us);
109}
Alan Sterne6e244b2009-02-12 14:47:44 -0500110EXPORT_SYMBOL_GPL(usb_stor_transparent_scsi_command);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111
112/***********************************************************************
113 * Scatter-gather transfer buffer access routines
114 ***********************************************************************/
115
Felipe Balbif0183a32016-04-18 13:09:11 +0300116/*
117 * Copy a buffer of length buflen to/from the srb's transfer buffer.
Boaz Harroshdd829d22007-09-09 20:22:23 +0300118 * Update the **sgptr and *offset variables so that the next copy will
Alan Stern70841912008-02-20 14:15:58 -0500119 * pick up from where this one left off.
120 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121unsigned int usb_stor_access_xfer_buf(unsigned char *buffer,
Jens Axboe1f6f31a2007-05-11 12:33:09 +0200122 unsigned int buflen, struct scsi_cmnd *srb, struct scatterlist **sgptr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123 unsigned int *offset, enum xfer_buf_dir dir)
124{
Ming Leie5fc70d2013-11-26 12:44:13 +0800125 unsigned int cnt = 0;
Alan Stern70841912008-02-20 14:15:58 -0500126 struct scatterlist *sg = *sgptr;
Ming Leie5fc70d2013-11-26 12:44:13 +0800127 struct sg_mapping_iter miter;
128 unsigned int nents = scsi_sg_count(srb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129
Ming Leie5fc70d2013-11-26 12:44:13 +0800130 if (sg)
131 nents = sg_nents(sg);
132 else
Boaz Harroshdd829d22007-09-09 20:22:23 +0300133 sg = scsi_sglist(srb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134
Ming Leie5fc70d2013-11-26 12:44:13 +0800135 sg_miter_start(&miter, sg, nents, dir == FROM_XFER_BUF ?
136 SG_MITER_FROM_SG: SG_MITER_TO_SG);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137
Ming Leie5fc70d2013-11-26 12:44:13 +0800138 if (!sg_miter_skip(&miter, *offset))
139 return cnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140
Ming Leie5fc70d2013-11-26 12:44:13 +0800141 while (sg_miter_next(&miter) && cnt < buflen) {
Ming Lei40fcd88b82013-12-10 15:01:42 +0800142 unsigned int len = min_t(unsigned int, miter.length,
143 buflen - cnt);
Ming Leie5fc70d2013-11-26 12:44:13 +0800144
145 if (dir == FROM_XFER_BUF)
146 memcpy(buffer + cnt, miter.addr, len);
147 else
148 memcpy(miter.addr, buffer + cnt, len);
149
150 if (*offset + len < miter.piter.sg->length) {
151 *offset += len;
152 *sgptr = miter.piter.sg;
Boaz Harroshdd829d22007-09-09 20:22:23 +0300153 } else {
Boaz Harroshdd829d22007-09-09 20:22:23 +0300154 *offset = 0;
Ming Leie5fc70d2013-11-26 12:44:13 +0800155 *sgptr = sg_next(miter.piter.sg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156 }
Ming Leie5fc70d2013-11-26 12:44:13 +0800157 cnt += len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158 }
Ming Leie5fc70d2013-11-26 12:44:13 +0800159 sg_miter_stop(&miter);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 return cnt;
162}
Alan Sterne6e244b2009-02-12 14:47:44 -0500163EXPORT_SYMBOL_GPL(usb_stor_access_xfer_buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164
Felipe Balbif0183a32016-04-18 13:09:11 +0300165/*
166 * Store the contents of buffer into srb's transfer buffer and set the
Alan Stern70841912008-02-20 14:15:58 -0500167 * SCSI residue.
168 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169void usb_stor_set_xfer_buf(unsigned char *buffer,
170 unsigned int buflen, struct scsi_cmnd *srb)
171{
Jens Axboe1f6f31a2007-05-11 12:33:09 +0200172 unsigned int offset = 0;
173 struct scatterlist *sg = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174
Alan Stern6d512a82008-02-22 17:00:06 -0500175 buflen = min(buflen, scsi_bufflen(srb));
Alan Stern70841912008-02-20 14:15:58 -0500176 buflen = usb_stor_access_xfer_buf(buffer, buflen, srb, &sg, &offset,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 TO_XFER_BUF);
Boaz Harroshdd829d22007-09-09 20:22:23 +0300178 if (buflen < scsi_bufflen(srb))
179 scsi_set_resid(srb, scsi_bufflen(srb) - buflen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180}
Alan Sterne6e244b2009-02-12 14:47:44 -0500181EXPORT_SYMBOL_GPL(usb_stor_set_xfer_buf);