Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 1 | /* |
Michal Nazarewicz | d26a6aa | 2009-11-09 14:15:23 +0100 | [diff] [blame] | 2 | * f_mass_storage.c -- Mass Storage USB Composite Function |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 3 | * |
| 4 | * Copyright (C) 2003-2008 Alan Stern |
Michal Nazarewicz | d26a6aa | 2009-11-09 14:15:23 +0100 | [diff] [blame] | 5 | * Copyright (C) 2009 Samsung Electronics |
Michal Nazarewicz | 54b8360 | 2012-01-13 15:05:16 +0100 | [diff] [blame] | 6 | * Author: Michal Nazarewicz <mina86@mina86.com> |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 7 | * All rights reserved. |
| 8 | * |
| 9 | * Redistribution and use in source and binary forms, with or without |
| 10 | * modification, are permitted provided that the following conditions |
| 11 | * are met: |
| 12 | * 1. Redistributions of source code must retain the above copyright |
| 13 | * notice, this list of conditions, and the following disclaimer, |
| 14 | * without modification. |
| 15 | * 2. Redistributions in binary form must reproduce the above copyright |
| 16 | * notice, this list of conditions and the following disclaimer in the |
| 17 | * documentation and/or other materials provided with the distribution. |
| 18 | * 3. The names of the above-listed copyright holders may not be used |
| 19 | * to endorse or promote products derived from this software without |
| 20 | * specific prior written permission. |
| 21 | * |
| 22 | * ALTERNATIVELY, this software may be distributed under the terms of the |
| 23 | * GNU General Public License ("GPL") as published by the Free Software |
| 24 | * Foundation, either version 2 of that License or (at your option) any |
| 25 | * later version. |
| 26 | * |
| 27 | * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS |
| 28 | * IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, |
| 29 | * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR |
| 30 | * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR |
| 31 | * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, |
| 32 | * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, |
| 33 | * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR |
| 34 | * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF |
| 35 | * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING |
| 36 | * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS |
| 37 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 38 | */ |
| 39 | |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 40 | /* |
Michal Nazarewicz | d26a6aa | 2009-11-09 14:15:23 +0100 | [diff] [blame] | 41 | * The Mass Storage Function acts as a USB Mass Storage device, |
| 42 | * appearing to the host as a disk drive or as a CD-ROM drive. In |
| 43 | * addition to providing an example of a genuinely useful composite |
| 44 | * function for a USB device, it also illustrates a technique of |
| 45 | * double-buffering for increased throughput. |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 46 | * |
Michal Nazarewicz | d26a6aa | 2009-11-09 14:15:23 +0100 | [diff] [blame] | 47 | * Function supports multiple logical units (LUNs). Backing storage |
| 48 | * for each LUN is provided by a regular file or a block device. |
| 49 | * Access for each LUN can be limited to read-only. Moreover, the |
| 50 | * function can indicate that LUN is removable and/or CD-ROM. (The |
| 51 | * later implies read-only access.) |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 52 | * |
Michal Nazarewicz | d26a6aa | 2009-11-09 14:15:23 +0100 | [diff] [blame] | 53 | * MSF is configured by specifying a fsg_config structure. It has the |
| 54 | * following fields: |
| 55 | * |
| 56 | * nluns Number of LUNs function have (anywhere from 1 |
| 57 | * to FSG_MAX_LUNS which is 8). |
| 58 | * luns An array of LUN configuration values. This |
| 59 | * should be filled for each LUN that |
| 60 | * function will include (ie. for "nluns" |
| 61 | * LUNs). Each element of the array has |
| 62 | * the following fields: |
| 63 | * ->filename The path to the backing file for the LUN. |
| 64 | * Required if LUN is not marked as |
| 65 | * removable. |
| 66 | * ->ro Flag specifying access to the LUN shall be |
| 67 | * read-only. This is implied if CD-ROM |
| 68 | * emulation is enabled as well as when |
| 69 | * it was impossible to open "filename" |
| 70 | * in R/W mode. |
| 71 | * ->removable Flag specifying that LUN shall be indicated as |
| 72 | * being removable. |
| 73 | * ->cdrom Flag specifying that LUN shall be reported as |
| 74 | * being a CD-ROM. |
Michal Nazarewicz | 9cfe745 | 2010-08-12 17:43:51 +0200 | [diff] [blame] | 75 | * ->nofua Flag specifying that FUA flag in SCSI WRITE(10,12) |
| 76 | * commands for this LUN shall be ignored. |
Michal Nazarewicz | d26a6aa | 2009-11-09 14:15:23 +0100 | [diff] [blame] | 77 | * |
Michal Nazarewicz | d26a6aa | 2009-11-09 14:15:23 +0100 | [diff] [blame] | 78 | * vendor_name |
| 79 | * product_name |
| 80 | * release Information used as a reply to INQUIRY |
| 81 | * request. To use default set to NULL, |
| 82 | * NULL, 0xffff respectively. The first |
| 83 | * field should be 8 and the second 16 |
| 84 | * characters or less. |
| 85 | * |
| 86 | * can_stall Set to permit function to halt bulk endpoints. |
| 87 | * Disabled on some USB devices known not |
| 88 | * to work correctly. You should set it |
| 89 | * to true. |
| 90 | * |
| 91 | * If "removable" is not set for a LUN then a backing file must be |
| 92 | * specified. If it is set, then NULL filename means the LUN's medium |
| 93 | * is not loaded (an empty string as "filename" in the fsg_config |
| 94 | * structure causes error). The CD-ROM emulation includes a single |
| 95 | * data track and no audio tracks; hence there need be only one |
Peiyu Li | 3f565a3 | 2011-08-17 22:52:59 -0700 | [diff] [blame] | 96 | * backing file per LUN. |
Michal Nazarewicz | d26a6aa | 2009-11-09 14:15:23 +0100 | [diff] [blame] | 97 | * |
| 98 | * |
| 99 | * MSF includes support for module parameters. If gadget using it |
| 100 | * decides to use it, the following module parameters will be |
| 101 | * available: |
| 102 | * |
| 103 | * file=filename[,filename...] |
| 104 | * Names of the files or block devices used for |
| 105 | * backing storage. |
| 106 | * ro=b[,b...] Default false, boolean for read-only access. |
| 107 | * removable=b[,b...] |
Michal Nazarewicz | fa84c57 | 2012-05-26 16:32:39 -0700 | [diff] [blame] | 108 | * Default false, boolean for removable media. |
Michal Nazarewicz | d26a6aa | 2009-11-09 14:15:23 +0100 | [diff] [blame] | 109 | * cdrom=b[,b...] Default false, boolean for whether to emulate |
| 110 | * a CD-ROM drive. |
Michal Nazarewicz | 9cfe745 | 2010-08-12 17:43:51 +0200 | [diff] [blame] | 111 | * nofua=b[,b...] Default false, booleans for ignore FUA flag |
| 112 | * in SCSI WRITE(10,12) commands |
Michal Nazarewicz | d26a6aa | 2009-11-09 14:15:23 +0100 | [diff] [blame] | 113 | * luns=N Default N = number of filenames, number of |
| 114 | * LUNs to support. |
| 115 | * stall Default determined according to the type of |
| 116 | * USB device controller (usually true), |
| 117 | * boolean to permit the driver to halt |
| 118 | * bulk endpoints. |
| 119 | * |
| 120 | * The module parameters may be prefixed with some string. You need |
| 121 | * to consult gadget's documentation or source to verify whether it is |
| 122 | * using those module parameters and if it does what are the prefixes |
| 123 | * (look for FSG_MODULE_PARAMETERS() macro usage, what's inside it is |
| 124 | * the prefix). |
| 125 | * |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 126 | * |
| 127 | * Requirements are modest; only a bulk-in and a bulk-out endpoint are |
Michal Nazarewicz | d26a6aa | 2009-11-09 14:15:23 +0100 | [diff] [blame] | 128 | * needed. The memory requirement amounts to two 16K buffers, size |
| 129 | * configurable by a parameter. Support is included for both |
| 130 | * full-speed and high-speed operation. |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 131 | * |
| 132 | * Note that the driver is slightly non-portable in that it assumes a |
| 133 | * single memory/DMA buffer will be useable for bulk-in, bulk-out, and |
| 134 | * interrupt-in endpoints. With most device controllers this isn't an |
| 135 | * issue, but there may be some with hardware restrictions that prevent |
| 136 | * a buffer from being used by more than one endpoint. |
| 137 | * |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 138 | * |
Michal Nazarewicz | 1a12af1 | 2012-06-12 12:42:17 +0200 | [diff] [blame^] | 139 | * The pathnames of the backing files, the ro settings and nofua |
| 140 | * settings are available in the attribute files "file", "ro" and |
| 141 | * "nofua" in the lun<n> subdirectory of the gadget's sysfs directory. |
| 142 | * If the "removable" option is set, writing to these files will |
| 143 | * simulate ejecting/loading the medium (writing an empty line means |
| 144 | * eject) and adjusting a write-enable tab. Changes to the ro setting |
| 145 | * are not allowed when the medium is loaded or if CD-ROM emulation is |
| 146 | * being used. |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 147 | * |
Fabien Chouteau | 31436a1 | 2010-04-26 12:34:54 +0200 | [diff] [blame] | 148 | * When a LUN receive an "eject" SCSI request (Start/Stop Unit), |
| 149 | * if the LUN is removable, the backing file is released to simulate |
| 150 | * ejection. |
| 151 | * |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 152 | * |
Michal Nazarewicz | d26a6aa | 2009-11-09 14:15:23 +0100 | [diff] [blame] | 153 | * This function is heavily based on "File-backed Storage Gadget" by |
| 154 | * Alan Stern which in turn is heavily based on "Gadget Zero" by David |
| 155 | * Brownell. The driver's SCSI command interface was based on the |
| 156 | * "Information technology - Small Computer System Interface - 2" |
| 157 | * document from X3T9.2 Project 375D, Revision 10L, 7-SEP-93, |
| 158 | * available at <http://www.t10.org/ftp/t10/drafts/s2/s2-r10l.pdf>. |
| 159 | * The single exception is opcode 0x23 (READ FORMAT CAPACITIES), which |
| 160 | * was based on the "Universal Serial Bus Mass Storage Class UFI |
| 161 | * Command Specification" document, Revision 1.0, December 14, 1998, |
| 162 | * available at |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 163 | * <http://www.usb.org/developers/devclass_docs/usbmass-ufi10.pdf>. |
| 164 | */ |
| 165 | |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 166 | /* |
| 167 | * Driver Design |
| 168 | * |
Michal Nazarewicz | d26a6aa | 2009-11-09 14:15:23 +0100 | [diff] [blame] | 169 | * The MSF is fairly straightforward. There is a main kernel |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 170 | * thread that handles most of the work. Interrupt routines field |
| 171 | * callbacks from the controller driver: bulk- and interrupt-request |
| 172 | * completion notifications, endpoint-0 events, and disconnect events. |
| 173 | * Completion events are passed to the main thread by wakeup calls. Many |
| 174 | * ep0 requests are handled at interrupt time, but SetInterface, |
| 175 | * SetConfiguration, and device reset requests are forwarded to the |
| 176 | * thread in the form of "exceptions" using SIGUSR1 signals (since they |
| 177 | * should interrupt any ongoing file I/O operations). |
| 178 | * |
| 179 | * The thread's main routine implements the standard command/data/status |
| 180 | * parts of a SCSI interaction. It and its subroutines are full of tests |
| 181 | * for pending signals/exceptions -- all this polling is necessary since |
| 182 | * the kernel has no setjmp/longjmp equivalents. (Maybe this is an |
| 183 | * indication that the driver really wants to be running in userspace.) |
| 184 | * An important point is that so long as the thread is alive it keeps an |
| 185 | * open reference to the backing file. This will prevent unmounting |
| 186 | * the backing file's underlying filesystem and could cause problems |
| 187 | * during system shutdown, for example. To prevent such problems, the |
| 188 | * thread catches INT, TERM, and KILL signals and converts them into |
| 189 | * an EXIT exception. |
| 190 | * |
| 191 | * In normal operation the main thread is started during the gadget's |
Michal Nazarewicz | d26a6aa | 2009-11-09 14:15:23 +0100 | [diff] [blame] | 192 | * fsg_bind() callback and stopped during fsg_unbind(). But it can |
| 193 | * also exit when it receives a signal, and there's no point leaving |
| 194 | * the gadget running when the thread is dead. At of this moment, MSF |
| 195 | * provides no way to deregister the gadget when thread dies -- maybe |
| 196 | * a callback functions is needed. |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 197 | * |
| 198 | * To provide maximum throughput, the driver uses a circular pipeline of |
| 199 | * buffer heads (struct fsg_buffhd). In principle the pipeline can be |
| 200 | * arbitrarily long; in practice the benefits don't justify having more |
| 201 | * than 2 stages (i.e., double buffering). But it helps to think of the |
| 202 | * pipeline as being a long one. Each buffer head contains a bulk-in and |
| 203 | * a bulk-out request pointer (since the buffer can be used for both |
| 204 | * output and input -- directions always are given from the host's |
| 205 | * point of view) as well as a pointer to the buffer and various state |
| 206 | * variables. |
| 207 | * |
| 208 | * Use of the pipeline follows a simple protocol. There is a variable |
| 209 | * (fsg->next_buffhd_to_fill) that points to the next buffer head to use. |
| 210 | * At any time that buffer head may still be in use from an earlier |
| 211 | * request, so each buffer head has a state variable indicating whether |
| 212 | * it is EMPTY, FULL, or BUSY. Typical use involves waiting for the |
| 213 | * buffer head to be EMPTY, filling the buffer either by file I/O or by |
| 214 | * USB I/O (during which the buffer head is BUSY), and marking the buffer |
| 215 | * head FULL when the I/O is complete. Then the buffer will be emptied |
| 216 | * (again possibly by USB I/O, during which it is marked BUSY) and |
| 217 | * finally marked EMPTY again (possibly by a completion routine). |
| 218 | * |
| 219 | * A module parameter tells the driver to avoid stalling the bulk |
| 220 | * endpoints wherever the transport specification allows. This is |
| 221 | * necessary for some UDCs like the SuperH, which cannot reliably clear a |
| 222 | * halt on a bulk endpoint. However, under certain circumstances the |
| 223 | * Bulk-only specification requires a stall. In such cases the driver |
| 224 | * will halt the endpoint and set a flag indicating that it should clear |
| 225 | * the halt in software during the next device reset. Hopefully this |
| 226 | * will permit everything to work correctly. Furthermore, although the |
| 227 | * specification allows the bulk-out endpoint to halt when the host sends |
| 228 | * too much data, implementing this would cause an unavoidable race. |
| 229 | * The driver will always use the "no-stall" approach for OUT transfers. |
| 230 | * |
| 231 | * One subtle point concerns sending status-stage responses for ep0 |
| 232 | * requests. Some of these requests, such as device reset, can involve |
| 233 | * interrupting an ongoing file I/O operation, which might take an |
| 234 | * arbitrarily long time. During that delay the host might give up on |
| 235 | * the original ep0 request and issue a new one. When that happens the |
| 236 | * driver should not notify the host about completion of the original |
| 237 | * request, as the host will no longer be waiting for it. So the driver |
| 238 | * assigns to each ep0 request a unique tag, and it keeps track of the |
| 239 | * tag value of the request associated with a long-running exception |
| 240 | * (device-reset, interface-change, or configuration-change). When the |
| 241 | * exception handler is finished, the status-stage response is submitted |
| 242 | * only if the current ep0 request tag is equal to the exception request |
| 243 | * tag. Thus only the most recently received ep0 request will get a |
| 244 | * status-stage response. |
| 245 | * |
| 246 | * Warning: This driver source file is too long. It ought to be split up |
| 247 | * into a header file plus about 3 separate .c files, to handle the details |
| 248 | * of the Gadget, USB Mass Storage, and SCSI protocols. |
| 249 | */ |
| 250 | |
| 251 | |
| 252 | /* #define VERBOSE_DEBUG */ |
| 253 | /* #define DUMP_MSGS */ |
| 254 | |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 255 | #include <linux/blkdev.h> |
| 256 | #include <linux/completion.h> |
| 257 | #include <linux/dcache.h> |
| 258 | #include <linux/delay.h> |
| 259 | #include <linux/device.h> |
| 260 | #include <linux/fcntl.h> |
| 261 | #include <linux/file.h> |
| 262 | #include <linux/fs.h> |
| 263 | #include <linux/kref.h> |
| 264 | #include <linux/kthread.h> |
| 265 | #include <linux/limits.h> |
| 266 | #include <linux/rwsem.h> |
| 267 | #include <linux/slab.h> |
| 268 | #include <linux/spinlock.h> |
| 269 | #include <linux/string.h> |
| 270 | #include <linux/freezer.h> |
| 271 | #include <linux/utsname.h> |
| 272 | |
| 273 | #include <linux/usb/ch9.h> |
| 274 | #include <linux/usb/gadget.h> |
Jesper Juhl | a283c03 | 2011-01-29 02:26:51 +0100 | [diff] [blame] | 275 | #include <linux/usb/composite.h> |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 276 | |
| 277 | #include "gadget_chips.h" |
| 278 | |
| 279 | |
Michal Nazarewicz | e8b6f8c | 2009-11-09 14:15:22 +0100 | [diff] [blame] | 280 | /*------------------------------------------------------------------------*/ |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 281 | |
Michal Nazarewicz | d23b0f0 | 2009-11-09 14:15:20 +0100 | [diff] [blame] | 282 | #define FSG_DRIVER_DESC "Mass Storage Function" |
Michal Nazarewicz | d26a6aa | 2009-11-09 14:15:23 +0100 | [diff] [blame] | 283 | #define FSG_DRIVER_VERSION "2009/09/11" |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 284 | |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 285 | static const char fsg_string_interface[] = "Mass Storage"; |
| 286 | |
Michal Nazarewicz | d23b0f0 | 2009-11-09 14:15:20 +0100 | [diff] [blame] | 287 | #define FSG_NO_DEVICE_STRINGS 1 |
| 288 | #define FSG_NO_OTG 1 |
| 289 | #define FSG_NO_INTR_EP 1 |
Michal Nazarewicz | 93bcf12 | 2009-10-28 16:57:19 +0100 | [diff] [blame] | 290 | |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 291 | #include "storage_common.c" |
| 292 | |
| 293 | |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 294 | /*-------------------------------------------------------------------------*/ |
| 295 | |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 296 | struct fsg_dev; |
Michal Nazarewicz | 8876f5e | 2010-06-21 13:57:09 +0200 | [diff] [blame] | 297 | struct fsg_common; |
| 298 | |
| 299 | /* FSF callback functions */ |
| 300 | struct fsg_operations { |
Michal Nazarewicz | b73af61 | 2010-10-28 17:31:23 +0200 | [diff] [blame] | 301 | /* |
| 302 | * Callback function to call when thread exits. If no |
Michal Nazarewicz | 8876f5e | 2010-06-21 13:57:09 +0200 | [diff] [blame] | 303 | * callback is set or it returns value lower then zero MSF |
| 304 | * will force eject all LUNs it operates on (including those |
| 305 | * marked as non-removable or with prevent_medium_removal flag |
Michal Nazarewicz | b73af61 | 2010-10-28 17:31:23 +0200 | [diff] [blame] | 306 | * set). |
| 307 | */ |
Michal Nazarewicz | 8876f5e | 2010-06-21 13:57:09 +0200 | [diff] [blame] | 308 | int (*thread_exits)(struct fsg_common *common); |
| 309 | |
Michal Nazarewicz | b73af61 | 2010-10-28 17:31:23 +0200 | [diff] [blame] | 310 | /* |
| 311 | * Called prior to ejection. Negative return means error, |
Michal Nazarewicz | 8876f5e | 2010-06-21 13:57:09 +0200 | [diff] [blame] | 312 | * zero means to continue with ejection, positive means not to |
Michal Nazarewicz | b73af61 | 2010-10-28 17:31:23 +0200 | [diff] [blame] | 313 | * eject. |
| 314 | */ |
Michal Nazarewicz | 8876f5e | 2010-06-21 13:57:09 +0200 | [diff] [blame] | 315 | int (*pre_eject)(struct fsg_common *common, |
| 316 | struct fsg_lun *lun, int num); |
Michal Nazarewicz | b73af61 | 2010-10-28 17:31:23 +0200 | [diff] [blame] | 317 | /* |
| 318 | * Called after ejection. Negative return means error, zero |
| 319 | * or positive is just a success. |
| 320 | */ |
Michal Nazarewicz | 8876f5e | 2010-06-21 13:57:09 +0200 | [diff] [blame] | 321 | int (*post_eject)(struct fsg_common *common, |
| 322 | struct fsg_lun *lun, int num); |
| 323 | }; |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 324 | |
Michal Nazarewicz | a41ae41 | 2009-10-28 16:57:20 +0100 | [diff] [blame] | 325 | /* Data shared by all the FSG instances. */ |
| 326 | struct fsg_common { |
Michal Nazarewicz | 9c61021 | 2009-10-28 16:57:22 +0100 | [diff] [blame] | 327 | struct usb_gadget *gadget; |
Roger Quadros | 95ed323 | 2011-05-09 13:08:07 +0300 | [diff] [blame] | 328 | struct usb_composite_dev *cdev; |
Michal Nazarewicz | b894f60 | 2010-06-25 16:29:28 +0200 | [diff] [blame] | 329 | struct fsg_dev *fsg, *new_fsg; |
| 330 | wait_queue_head_t fsg_wait; |
Michal Nazarewicz | 9c61021 | 2009-10-28 16:57:22 +0100 | [diff] [blame] | 331 | |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 332 | /* filesem protects: backing files in use */ |
| 333 | struct rw_semaphore filesem; |
| 334 | |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 335 | /* lock protects: state, all the req_busy's */ |
| 336 | spinlock_t lock; |
| 337 | |
| 338 | struct usb_ep *ep0; /* Copy of gadget->ep0 */ |
| 339 | struct usb_request *ep0req; /* Copy of cdev->req */ |
| 340 | unsigned int ep0_req_tag; |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 341 | |
Michal Nazarewicz | a41ae41 | 2009-10-28 16:57:20 +0100 | [diff] [blame] | 342 | struct fsg_buffhd *next_buffhd_to_fill; |
| 343 | struct fsg_buffhd *next_buffhd_to_drain; |
Per Forlin | 6532c7f | 2011-08-19 21:21:27 +0200 | [diff] [blame] | 344 | struct fsg_buffhd *buffhds; |
Michal Nazarewicz | a41ae41 | 2009-10-28 16:57:20 +0100 | [diff] [blame] | 345 | |
| 346 | int cmnd_size; |
| 347 | u8 cmnd[MAX_COMMAND_SIZE]; |
| 348 | |
| 349 | unsigned int nluns; |
| 350 | unsigned int lun; |
| 351 | struct fsg_lun *luns; |
| 352 | struct fsg_lun *curlun; |
Michal Nazarewicz | 9c61021 | 2009-10-28 16:57:22 +0100 | [diff] [blame] | 353 | |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 354 | unsigned int bulk_out_maxpacket; |
| 355 | enum fsg_state state; /* For exception handling */ |
| 356 | unsigned int exception_req_tag; |
| 357 | |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 358 | enum data_direction data_dir; |
| 359 | u32 data_size; |
| 360 | u32 data_size_from_cmnd; |
| 361 | u32 tag; |
| 362 | u32 residue; |
| 363 | u32 usb_amount_left; |
| 364 | |
Michal Nazarewicz | 481e492 | 2009-11-09 14:15:21 +0100 | [diff] [blame] | 365 | unsigned int can_stall:1; |
Michal Nazarewicz | 9c61021 | 2009-10-28 16:57:22 +0100 | [diff] [blame] | 366 | unsigned int free_storage_on_release:1; |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 367 | unsigned int phase_error:1; |
| 368 | unsigned int short_packet_received:1; |
| 369 | unsigned int bad_lun_okay:1; |
| 370 | unsigned int running:1; |
Michal Nazarewicz | 9c61021 | 2009-10-28 16:57:22 +0100 | [diff] [blame] | 371 | |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 372 | int thread_wakeup_needed; |
| 373 | struct completion thread_notifier; |
| 374 | struct task_struct *thread_task; |
Michal Nazarewicz | e8b6f8c | 2009-11-09 14:15:22 +0100 | [diff] [blame] | 375 | |
Michal Nazarewicz | 8876f5e | 2010-06-21 13:57:09 +0200 | [diff] [blame] | 376 | /* Callback functions. */ |
| 377 | const struct fsg_operations *ops; |
Michal Nazarewicz | c85efcb | 2009-11-09 14:15:26 +0100 | [diff] [blame] | 378 | /* Gadget's private data. */ |
| 379 | void *private_data; |
| 380 | |
Michal Nazarewicz | b73af61 | 2010-10-28 17:31:23 +0200 | [diff] [blame] | 381 | /* |
| 382 | * Vendor (8 chars), product (16 chars), release (4 |
| 383 | * hexadecimal digits) and NUL byte |
| 384 | */ |
Michal Nazarewicz | 481e492 | 2009-11-09 14:15:21 +0100 | [diff] [blame] | 385 | char inquiry_string[8 + 16 + 4 + 1]; |
| 386 | |
Michal Nazarewicz | 9c61021 | 2009-10-28 16:57:22 +0100 | [diff] [blame] | 387 | struct kref ref; |
Michal Nazarewicz | a41ae41 | 2009-10-28 16:57:20 +0100 | [diff] [blame] | 388 | }; |
| 389 | |
Michal Nazarewicz | 481e492 | 2009-11-09 14:15:21 +0100 | [diff] [blame] | 390 | struct fsg_config { |
| 391 | unsigned nluns; |
| 392 | struct fsg_lun_config { |
| 393 | const char *filename; |
| 394 | char ro; |
| 395 | char removable; |
| 396 | char cdrom; |
Michal Nazarewicz | 9cfe745 | 2010-08-12 17:43:51 +0200 | [diff] [blame] | 397 | char nofua; |
Michal Nazarewicz | 481e492 | 2009-11-09 14:15:21 +0100 | [diff] [blame] | 398 | } luns[FSG_MAX_LUNS]; |
| 399 | |
Michal Nazarewicz | 8876f5e | 2010-06-21 13:57:09 +0200 | [diff] [blame] | 400 | /* Callback functions. */ |
| 401 | const struct fsg_operations *ops; |
Michal Nazarewicz | c85efcb | 2009-11-09 14:15:26 +0100 | [diff] [blame] | 402 | /* Gadget's private data. */ |
| 403 | void *private_data; |
| 404 | |
Michal Nazarewicz | 481e492 | 2009-11-09 14:15:21 +0100 | [diff] [blame] | 405 | const char *vendor_name; /* 8 characters or less */ |
| 406 | const char *product_name; /* 16 characters or less */ |
| 407 | u16 release; |
| 408 | |
| 409 | char can_stall; |
| 410 | }; |
| 411 | |
Michal Nazarewicz | a41ae41 | 2009-10-28 16:57:20 +0100 | [diff] [blame] | 412 | struct fsg_dev { |
Michal Nazarewicz | d23b0f0 | 2009-11-09 14:15:20 +0100 | [diff] [blame] | 413 | struct usb_function function; |
Michal Nazarewicz | d23b0f0 | 2009-11-09 14:15:20 +0100 | [diff] [blame] | 414 | struct usb_gadget *gadget; /* Copy of cdev->gadget */ |
Michal Nazarewicz | a41ae41 | 2009-10-28 16:57:20 +0100 | [diff] [blame] | 415 | struct fsg_common *common; |
| 416 | |
Michal Nazarewicz | d23b0f0 | 2009-11-09 14:15:20 +0100 | [diff] [blame] | 417 | u16 interface_number; |
| 418 | |
Michal Nazarewicz | d26a6aa | 2009-11-09 14:15:23 +0100 | [diff] [blame] | 419 | unsigned int bulk_in_enabled:1; |
| 420 | unsigned int bulk_out_enabled:1; |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 421 | |
| 422 | unsigned long atomic_bitflags; |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 423 | #define IGNORE_BULK_OUT 0 |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 424 | |
| 425 | struct usb_ep *bulk_in; |
| 426 | struct usb_ep *bulk_out; |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 427 | }; |
| 428 | |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 429 | static inline int __fsg_is_set(struct fsg_common *common, |
| 430 | const char *func, unsigned line) |
| 431 | { |
| 432 | if (common->fsg) |
| 433 | return 1; |
| 434 | ERROR(common, "common->fsg is NULL in %s at %u\n", func, line); |
Michal Nazarewicz | 8876f5e | 2010-06-21 13:57:09 +0200 | [diff] [blame] | 435 | WARN_ON(1); |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 436 | return 0; |
| 437 | } |
| 438 | |
| 439 | #define fsg_is_set(common) likely(__fsg_is_set(common, __func__, __LINE__)) |
| 440 | |
Michal Nazarewicz | d23b0f0 | 2009-11-09 14:15:20 +0100 | [diff] [blame] | 441 | static inline struct fsg_dev *fsg_from_func(struct usb_function *f) |
| 442 | { |
| 443 | return container_of(f, struct fsg_dev, function); |
| 444 | } |
| 445 | |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 446 | typedef void (*fsg_routine_t)(struct fsg_dev *); |
| 447 | |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 448 | static int exception_in_progress(struct fsg_common *common) |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 449 | { |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 450 | return common->state > FSG_STATE_IDLE; |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 451 | } |
| 452 | |
Greg Kroah-Hartman | 98346f7 | 2011-04-14 13:42:46 -0700 | [diff] [blame] | 453 | /* Make bulk-out requests be divisible by the maxpacket size */ |
| 454 | static void set_bulk_out_req_length(struct fsg_common *common, |
| 455 | struct fsg_buffhd *bh, unsigned int length) |
| 456 | { |
| 457 | unsigned int rem; |
| 458 | |
| 459 | bh->bulk_out_intended_length = length; |
| 460 | rem = length % common->bulk_out_maxpacket; |
| 461 | if (rem > 0) |
| 462 | length += common->bulk_out_maxpacket - rem; |
| 463 | bh->outreq->length = length; |
| 464 | } |
| 465 | |
| 466 | |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 467 | /*-------------------------------------------------------------------------*/ |
| 468 | |
| 469 | static int fsg_set_halt(struct fsg_dev *fsg, struct usb_ep *ep) |
| 470 | { |
| 471 | const char *name; |
| 472 | |
| 473 | if (ep == fsg->bulk_in) |
| 474 | name = "bulk-in"; |
| 475 | else if (ep == fsg->bulk_out) |
| 476 | name = "bulk-out"; |
| 477 | else |
| 478 | name = ep->name; |
| 479 | DBG(fsg, "%s set halt\n", name); |
| 480 | return usb_ep_set_halt(ep); |
| 481 | } |
| 482 | |
| 483 | |
| 484 | /*-------------------------------------------------------------------------*/ |
| 485 | |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 486 | /* These routines may be called in process context or in_irq */ |
| 487 | |
| 488 | /* Caller must hold fsg->lock */ |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 489 | static void wakeup_thread(struct fsg_common *common) |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 490 | { |
| 491 | /* Tell the main thread that something has happened */ |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 492 | common->thread_wakeup_needed = 1; |
| 493 | if (common->thread_task) |
| 494 | wake_up_process(common->thread_task); |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 495 | } |
| 496 | |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 497 | static void raise_exception(struct fsg_common *common, enum fsg_state new_state) |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 498 | { |
| 499 | unsigned long flags; |
| 500 | |
Michal Nazarewicz | b73af61 | 2010-10-28 17:31:23 +0200 | [diff] [blame] | 501 | /* |
| 502 | * Do nothing if a higher-priority exception is already in progress. |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 503 | * If a lower-or-equal priority exception is in progress, preempt it |
Michal Nazarewicz | b73af61 | 2010-10-28 17:31:23 +0200 | [diff] [blame] | 504 | * and notify the main thread by sending it a signal. |
| 505 | */ |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 506 | spin_lock_irqsave(&common->lock, flags); |
| 507 | if (common->state <= new_state) { |
| 508 | common->exception_req_tag = common->ep0_req_tag; |
| 509 | common->state = new_state; |
| 510 | if (common->thread_task) |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 511 | send_sig_info(SIGUSR1, SEND_SIG_FORCED, |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 512 | common->thread_task); |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 513 | } |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 514 | spin_unlock_irqrestore(&common->lock, flags); |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 515 | } |
| 516 | |
| 517 | |
| 518 | /*-------------------------------------------------------------------------*/ |
| 519 | |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 520 | static int ep0_queue(struct fsg_common *common) |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 521 | { |
| 522 | int rc; |
| 523 | |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 524 | rc = usb_ep_queue(common->ep0, common->ep0req, GFP_ATOMIC); |
| 525 | common->ep0->driver_data = common; |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 526 | if (rc != 0 && rc != -ESHUTDOWN) { |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 527 | /* We can't do much more than wait for a reset */ |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 528 | WARNING(common, "error in submission: %s --> %d\n", |
| 529 | common->ep0->name, rc); |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 530 | } |
| 531 | return rc; |
| 532 | } |
| 533 | |
Michal Nazarewicz | b73af61 | 2010-10-28 17:31:23 +0200 | [diff] [blame] | 534 | |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 535 | /*-------------------------------------------------------------------------*/ |
| 536 | |
Michal Nazarewicz | b73af61 | 2010-10-28 17:31:23 +0200 | [diff] [blame] | 537 | /* Completion handlers. These always run in_irq. */ |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 538 | |
| 539 | static void bulk_in_complete(struct usb_ep *ep, struct usb_request *req) |
| 540 | { |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 541 | struct fsg_common *common = ep->driver_data; |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 542 | struct fsg_buffhd *bh = req->context; |
| 543 | |
| 544 | if (req->status || req->actual != req->length) |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 545 | DBG(common, "%s --> %d, %u/%u\n", __func__, |
Michal Nazarewicz | b73af61 | 2010-10-28 17:31:23 +0200 | [diff] [blame] | 546 | req->status, req->actual, req->length); |
Michal Nazarewicz | d26a6aa | 2009-11-09 14:15:23 +0100 | [diff] [blame] | 547 | if (req->status == -ECONNRESET) /* Request was cancelled */ |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 548 | usb_ep_fifo_flush(ep); |
| 549 | |
| 550 | /* Hold the lock while we update the request and buffer states */ |
| 551 | smp_wmb(); |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 552 | spin_lock(&common->lock); |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 553 | bh->inreq_busy = 0; |
| 554 | bh->state = BUF_STATE_EMPTY; |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 555 | wakeup_thread(common); |
| 556 | spin_unlock(&common->lock); |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 557 | } |
| 558 | |
| 559 | static void bulk_out_complete(struct usb_ep *ep, struct usb_request *req) |
| 560 | { |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 561 | struct fsg_common *common = ep->driver_data; |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 562 | struct fsg_buffhd *bh = req->context; |
| 563 | |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 564 | dump_msg(common, "bulk-out", req->buf, req->actual); |
Greg Kroah-Hartman | 98346f7 | 2011-04-14 13:42:46 -0700 | [diff] [blame] | 565 | if (req->status || req->actual != bh->bulk_out_intended_length) |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 566 | DBG(common, "%s --> %d, %u/%u\n", __func__, |
Greg Kroah-Hartman | 98346f7 | 2011-04-14 13:42:46 -0700 | [diff] [blame] | 567 | req->status, req->actual, bh->bulk_out_intended_length); |
Michal Nazarewicz | d26a6aa | 2009-11-09 14:15:23 +0100 | [diff] [blame] | 568 | if (req->status == -ECONNRESET) /* Request was cancelled */ |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 569 | usb_ep_fifo_flush(ep); |
| 570 | |
| 571 | /* Hold the lock while we update the request and buffer states */ |
| 572 | smp_wmb(); |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 573 | spin_lock(&common->lock); |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 574 | bh->outreq_busy = 0; |
| 575 | bh->state = BUF_STATE_FULL; |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 576 | wakeup_thread(common); |
| 577 | spin_unlock(&common->lock); |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 578 | } |
| 579 | |
Michal Nazarewicz | d23b0f0 | 2009-11-09 14:15:20 +0100 | [diff] [blame] | 580 | static int fsg_setup(struct usb_function *f, |
Michal Nazarewicz | b73af61 | 2010-10-28 17:31:23 +0200 | [diff] [blame] | 581 | const struct usb_ctrlrequest *ctrl) |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 582 | { |
Michal Nazarewicz | d23b0f0 | 2009-11-09 14:15:20 +0100 | [diff] [blame] | 583 | struct fsg_dev *fsg = fsg_from_func(f); |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 584 | struct usb_request *req = fsg->common->ep0req; |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 585 | u16 w_index = le16_to_cpu(ctrl->wIndex); |
Michal Nazarewicz | 93bcf12 | 2009-10-28 16:57:19 +0100 | [diff] [blame] | 586 | u16 w_value = le16_to_cpu(ctrl->wValue); |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 587 | u16 w_length = le16_to_cpu(ctrl->wLength); |
| 588 | |
Michal Nazarewicz | b894f60 | 2010-06-25 16:29:28 +0200 | [diff] [blame] | 589 | if (!fsg_is_set(fsg->common)) |
Michal Nazarewicz | 93bcf12 | 2009-10-28 16:57:19 +0100 | [diff] [blame] | 590 | return -EOPNOTSUPP; |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 591 | |
Roger Quadros | 73ee4da | 2011-04-05 18:36:38 +0300 | [diff] [blame] | 592 | ++fsg->common->ep0_req_tag; /* Record arrival of a new request */ |
| 593 | req->context = NULL; |
| 594 | req->length = 0; |
| 595 | dump_msg(fsg, "ep0-setup", (u8 *) ctrl, sizeof(*ctrl)); |
| 596 | |
Michal Nazarewicz | 93bcf12 | 2009-10-28 16:57:19 +0100 | [diff] [blame] | 597 | switch (ctrl->bRequest) { |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 598 | |
Sebastian Andrzej Siewior | 775dafd | 2012-02-25 18:28:11 +0100 | [diff] [blame] | 599 | case US_BULK_RESET_REQUEST: |
Michal Nazarewicz | 93bcf12 | 2009-10-28 16:57:19 +0100 | [diff] [blame] | 600 | if (ctrl->bRequestType != |
| 601 | (USB_DIR_OUT | USB_TYPE_CLASS | USB_RECIP_INTERFACE)) |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 602 | break; |
Paul Zimmerman | ce7b612 | 2011-10-26 12:07:54 -0700 | [diff] [blame] | 603 | if (w_index != fsg->interface_number || w_value != 0 || |
| 604 | w_length != 0) |
Michal Nazarewicz | 93bcf12 | 2009-10-28 16:57:19 +0100 | [diff] [blame] | 605 | return -EDOM; |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 606 | |
Michal Nazarewicz | b73af61 | 2010-10-28 17:31:23 +0200 | [diff] [blame] | 607 | /* |
| 608 | * Raise an exception to stop the current operation |
| 609 | * and reinitialize our state. |
| 610 | */ |
Michal Nazarewicz | 93bcf12 | 2009-10-28 16:57:19 +0100 | [diff] [blame] | 611 | DBG(fsg, "bulk reset request\n"); |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 612 | raise_exception(fsg->common, FSG_STATE_RESET); |
Michal Nazarewicz | 93bcf12 | 2009-10-28 16:57:19 +0100 | [diff] [blame] | 613 | return DELAYED_STATUS; |
| 614 | |
Sebastian Andrzej Siewior | 775dafd | 2012-02-25 18:28:11 +0100 | [diff] [blame] | 615 | case US_BULK_GET_MAX_LUN: |
Michal Nazarewicz | 93bcf12 | 2009-10-28 16:57:19 +0100 | [diff] [blame] | 616 | if (ctrl->bRequestType != |
| 617 | (USB_DIR_IN | USB_TYPE_CLASS | USB_RECIP_INTERFACE)) |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 618 | break; |
Paul Zimmerman | db332bc | 2011-10-13 17:46:36 -0700 | [diff] [blame] | 619 | if (w_index != fsg->interface_number || w_value != 0 || |
| 620 | w_length != 1) |
Michal Nazarewicz | 93bcf12 | 2009-10-28 16:57:19 +0100 | [diff] [blame] | 621 | return -EDOM; |
| 622 | VDBG(fsg, "get max LUN\n"); |
Michal Nazarewicz | b73af61 | 2010-10-28 17:31:23 +0200 | [diff] [blame] | 623 | *(u8 *)req->buf = fsg->common->nluns - 1; |
Michal Nazarewicz | b00ce11 | 2010-01-27 11:14:28 +0100 | [diff] [blame] | 624 | |
| 625 | /* Respond with data/status */ |
Michal Nazarewicz | d7e18a9 | 2010-02-03 11:37:17 +0100 | [diff] [blame] | 626 | req->length = min((u16)1, w_length); |
Michal Nazarewicz | b00ce11 | 2010-01-27 11:14:28 +0100 | [diff] [blame] | 627 | return ep0_queue(fsg->common); |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 628 | } |
| 629 | |
Michal Nazarewicz | 93bcf12 | 2009-10-28 16:57:19 +0100 | [diff] [blame] | 630 | VDBG(fsg, |
Michal Nazarewicz | b73af61 | 2010-10-28 17:31:23 +0200 | [diff] [blame] | 631 | "unknown class-specific control req %02x.%02x v%04x i%04x l%u\n", |
Michal Nazarewicz | 93bcf12 | 2009-10-28 16:57:19 +0100 | [diff] [blame] | 632 | ctrl->bRequestType, ctrl->bRequest, |
| 633 | le16_to_cpu(ctrl->wValue), w_index, w_length); |
| 634 | return -EOPNOTSUPP; |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 635 | } |
| 636 | |
| 637 | |
| 638 | /*-------------------------------------------------------------------------*/ |
| 639 | |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 640 | /* All the following routines run in process context */ |
| 641 | |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 642 | /* Use this for bulk or interrupt transfers, not ep0 */ |
| 643 | static void start_transfer(struct fsg_dev *fsg, struct usb_ep *ep, |
Michal Nazarewicz | b73af61 | 2010-10-28 17:31:23 +0200 | [diff] [blame] | 644 | struct usb_request *req, int *pbusy, |
| 645 | enum fsg_buffer_state *state) |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 646 | { |
| 647 | int rc; |
| 648 | |
| 649 | if (ep == fsg->bulk_in) |
| 650 | dump_msg(fsg, "bulk-in", req->buf, req->length); |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 651 | |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 652 | spin_lock_irq(&fsg->common->lock); |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 653 | *pbusy = 1; |
| 654 | *state = BUF_STATE_BUSY; |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 655 | spin_unlock_irq(&fsg->common->lock); |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 656 | rc = usb_ep_queue(ep, req, GFP_KERNEL); |
| 657 | if (rc != 0) { |
| 658 | *pbusy = 0; |
| 659 | *state = BUF_STATE_EMPTY; |
| 660 | |
| 661 | /* We can't do much more than wait for a reset */ |
| 662 | |
Michal Nazarewicz | b73af61 | 2010-10-28 17:31:23 +0200 | [diff] [blame] | 663 | /* |
| 664 | * Note: currently the net2280 driver fails zero-length |
| 665 | * submissions if DMA is enabled. |
| 666 | */ |
| 667 | if (rc != -ESHUTDOWN && |
| 668 | !(rc == -EOPNOTSUPP && req->length == 0)) |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 669 | WARNING(fsg, "error in submission: %s --> %d\n", |
Michal Nazarewicz | b73af61 | 2010-10-28 17:31:23 +0200 | [diff] [blame] | 670 | ep->name, rc); |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 671 | } |
| 672 | } |
| 673 | |
Michal Nazarewicz | fe52f79 | 2010-10-28 17:31:21 +0200 | [diff] [blame] | 674 | static bool start_in_transfer(struct fsg_common *common, struct fsg_buffhd *bh) |
| 675 | { |
| 676 | if (!fsg_is_set(common)) |
| 677 | return false; |
| 678 | start_transfer(common->fsg, common->fsg->bulk_in, |
| 679 | bh->inreq, &bh->inreq_busy, &bh->state); |
| 680 | return true; |
| 681 | } |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 682 | |
Michal Nazarewicz | fe52f79 | 2010-10-28 17:31:21 +0200 | [diff] [blame] | 683 | static bool start_out_transfer(struct fsg_common *common, struct fsg_buffhd *bh) |
| 684 | { |
| 685 | if (!fsg_is_set(common)) |
| 686 | return false; |
| 687 | start_transfer(common->fsg, common->fsg->bulk_out, |
| 688 | bh->outreq, &bh->outreq_busy, &bh->state); |
| 689 | return true; |
| 690 | } |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 691 | |
| 692 | static int sleep_thread(struct fsg_common *common) |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 693 | { |
| 694 | int rc = 0; |
| 695 | |
| 696 | /* Wait until a signal arrives or we are woken up */ |
| 697 | for (;;) { |
| 698 | try_to_freeze(); |
| 699 | set_current_state(TASK_INTERRUPTIBLE); |
| 700 | if (signal_pending(current)) { |
| 701 | rc = -EINTR; |
| 702 | break; |
| 703 | } |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 704 | if (common->thread_wakeup_needed) |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 705 | break; |
| 706 | schedule(); |
| 707 | } |
| 708 | __set_current_state(TASK_RUNNING); |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 709 | common->thread_wakeup_needed = 0; |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 710 | return rc; |
| 711 | } |
| 712 | |
| 713 | |
| 714 | /*-------------------------------------------------------------------------*/ |
| 715 | |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 716 | static int do_read(struct fsg_common *common) |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 717 | { |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 718 | struct fsg_lun *curlun = common->curlun; |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 719 | u32 lba; |
| 720 | struct fsg_buffhd *bh; |
| 721 | int rc; |
| 722 | u32 amount_left; |
| 723 | loff_t file_offset, file_offset_tmp; |
| 724 | unsigned int amount; |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 725 | ssize_t nread; |
| 726 | |
Michal Nazarewicz | b73af61 | 2010-10-28 17:31:23 +0200 | [diff] [blame] | 727 | /* |
| 728 | * Get the starting Logical Block Address and check that it's |
| 729 | * not too big. |
| 730 | */ |
Michal Nazarewicz | 0a6a717 | 2010-10-07 14:46:15 +0200 | [diff] [blame] | 731 | if (common->cmnd[0] == READ_6) |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 732 | lba = get_unaligned_be24(&common->cmnd[1]); |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 733 | else { |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 734 | lba = get_unaligned_be32(&common->cmnd[2]); |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 735 | |
Michal Nazarewicz | b73af61 | 2010-10-28 17:31:23 +0200 | [diff] [blame] | 736 | /* |
| 737 | * We allow DPO (Disable Page Out = don't save data in the |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 738 | * cache) and FUA (Force Unit Access = don't read from the |
Michal Nazarewicz | b73af61 | 2010-10-28 17:31:23 +0200 | [diff] [blame] | 739 | * cache), but we don't implement them. |
| 740 | */ |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 741 | if ((common->cmnd[1] & ~0x18) != 0) { |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 742 | curlun->sense_data = SS_INVALID_FIELD_IN_CDB; |
| 743 | return -EINVAL; |
| 744 | } |
| 745 | } |
| 746 | if (lba >= curlun->num_sectors) { |
| 747 | curlun->sense_data = SS_LOGICAL_BLOCK_ADDRESS_OUT_OF_RANGE; |
| 748 | return -EINVAL; |
| 749 | } |
Peiyu Li | 3f565a3 | 2011-08-17 22:52:59 -0700 | [diff] [blame] | 750 | file_offset = ((loff_t) lba) << curlun->blkbits; |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 751 | |
| 752 | /* Carry out the file reads */ |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 753 | amount_left = common->data_size_from_cmnd; |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 754 | if (unlikely(amount_left == 0)) |
Michal Nazarewicz | d26a6aa | 2009-11-09 14:15:23 +0100 | [diff] [blame] | 755 | return -EIO; /* No default reply */ |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 756 | |
| 757 | for (;;) { |
Michal Nazarewicz | b73af61 | 2010-10-28 17:31:23 +0200 | [diff] [blame] | 758 | /* |
| 759 | * Figure out how much we need to read: |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 760 | * Try to read the remaining amount. |
| 761 | * But don't read more than the buffer size. |
| 762 | * And don't try to read past the end of the file. |
Michal Nazarewicz | b73af61 | 2010-10-28 17:31:23 +0200 | [diff] [blame] | 763 | */ |
Michal Nazarewicz | 93bcf12 | 2009-10-28 16:57:19 +0100 | [diff] [blame] | 764 | amount = min(amount_left, FSG_BUFLEN); |
Michal Nazarewicz | b73af61 | 2010-10-28 17:31:23 +0200 | [diff] [blame] | 765 | amount = min((loff_t)amount, |
| 766 | curlun->file_length - file_offset); |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 767 | |
| 768 | /* Wait for the next buffer to become available */ |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 769 | bh = common->next_buffhd_to_fill; |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 770 | while (bh->state != BUF_STATE_EMPTY) { |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 771 | rc = sleep_thread(common); |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 772 | if (rc) |
| 773 | return rc; |
| 774 | } |
| 775 | |
Michal Nazarewicz | b73af61 | 2010-10-28 17:31:23 +0200 | [diff] [blame] | 776 | /* |
| 777 | * If we were asked to read past the end of file, |
| 778 | * end with an empty buffer. |
| 779 | */ |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 780 | if (amount == 0) { |
| 781 | curlun->sense_data = |
| 782 | SS_LOGICAL_BLOCK_ADDRESS_OUT_OF_RANGE; |
Peiyu Li | 3f565a3 | 2011-08-17 22:52:59 -0700 | [diff] [blame] | 783 | curlun->sense_data_info = |
| 784 | file_offset >> curlun->blkbits; |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 785 | curlun->info_valid = 1; |
| 786 | bh->inreq->length = 0; |
| 787 | bh->state = BUF_STATE_FULL; |
| 788 | break; |
| 789 | } |
| 790 | |
| 791 | /* Perform the read */ |
| 792 | file_offset_tmp = file_offset; |
| 793 | nread = vfs_read(curlun->filp, |
Michal Nazarewicz | b73af61 | 2010-10-28 17:31:23 +0200 | [diff] [blame] | 794 | (char __user *)bh->buf, |
| 795 | amount, &file_offset_tmp); |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 796 | VLDBG(curlun, "file read %u @ %llu -> %d\n", amount, |
Michal Nazarewicz | b73af61 | 2010-10-28 17:31:23 +0200 | [diff] [blame] | 797 | (unsigned long long)file_offset, (int)nread); |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 798 | if (signal_pending(current)) |
| 799 | return -EINTR; |
| 800 | |
| 801 | if (nread < 0) { |
Michal Nazarewicz | b73af61 | 2010-10-28 17:31:23 +0200 | [diff] [blame] | 802 | LDBG(curlun, "error in file read: %d\n", (int)nread); |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 803 | nread = 0; |
| 804 | } else if (nread < amount) { |
| 805 | LDBG(curlun, "partial file read: %d/%u\n", |
Michal Nazarewicz | b73af61 | 2010-10-28 17:31:23 +0200 | [diff] [blame] | 806 | (int)nread, amount); |
Peiyu Li | 3f565a3 | 2011-08-17 22:52:59 -0700 | [diff] [blame] | 807 | nread = round_down(nread, curlun->blksize); |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 808 | } |
| 809 | file_offset += nread; |
| 810 | amount_left -= nread; |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 811 | common->residue -= nread; |
Alan Stern | 04eee25 | 2011-08-18 14:29:00 -0400 | [diff] [blame] | 812 | |
| 813 | /* |
| 814 | * Except at the end of the transfer, nread will be |
| 815 | * equal to the buffer size, which is divisible by the |
| 816 | * bulk-in maxpacket size. |
| 817 | */ |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 818 | bh->inreq->length = nread; |
| 819 | bh->state = BUF_STATE_FULL; |
| 820 | |
| 821 | /* If an error occurred, report it and its position */ |
| 822 | if (nread < amount) { |
| 823 | curlun->sense_data = SS_UNRECOVERED_READ_ERROR; |
Peiyu Li | 3f565a3 | 2011-08-17 22:52:59 -0700 | [diff] [blame] | 824 | curlun->sense_data_info = |
| 825 | file_offset >> curlun->blkbits; |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 826 | curlun->info_valid = 1; |
| 827 | break; |
| 828 | } |
| 829 | |
| 830 | if (amount_left == 0) |
Michal Nazarewicz | d26a6aa | 2009-11-09 14:15:23 +0100 | [diff] [blame] | 831 | break; /* No more left to read */ |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 832 | |
| 833 | /* Send this buffer and go read some more */ |
| 834 | bh->inreq->zero = 0; |
Michal Nazarewicz | fe52f79 | 2010-10-28 17:31:21 +0200 | [diff] [blame] | 835 | if (!start_in_transfer(common, bh)) |
| 836 | /* Don't know what to do if common->fsg is NULL */ |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 837 | return -EIO; |
| 838 | common->next_buffhd_to_fill = bh->next; |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 839 | } |
| 840 | |
Michal Nazarewicz | d26a6aa | 2009-11-09 14:15:23 +0100 | [diff] [blame] | 841 | return -EIO; /* No default reply */ |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 842 | } |
| 843 | |
| 844 | |
| 845 | /*-------------------------------------------------------------------------*/ |
| 846 | |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 847 | static int do_write(struct fsg_common *common) |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 848 | { |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 849 | struct fsg_lun *curlun = common->curlun; |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 850 | u32 lba; |
| 851 | struct fsg_buffhd *bh; |
| 852 | int get_some_more; |
| 853 | u32 amount_left_to_req, amount_left_to_write; |
| 854 | loff_t usb_offset, file_offset, file_offset_tmp; |
| 855 | unsigned int amount; |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 856 | ssize_t nwritten; |
| 857 | int rc; |
| 858 | |
| 859 | if (curlun->ro) { |
| 860 | curlun->sense_data = SS_WRITE_PROTECTED; |
| 861 | return -EINVAL; |
| 862 | } |
| 863 | spin_lock(&curlun->filp->f_lock); |
Michal Nazarewicz | d26a6aa | 2009-11-09 14:15:23 +0100 | [diff] [blame] | 864 | curlun->filp->f_flags &= ~O_SYNC; /* Default is not to wait */ |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 865 | spin_unlock(&curlun->filp->f_lock); |
| 866 | |
Michal Nazarewicz | b73af61 | 2010-10-28 17:31:23 +0200 | [diff] [blame] | 867 | /* |
| 868 | * Get the starting Logical Block Address and check that it's |
| 869 | * not too big |
| 870 | */ |
Michal Nazarewicz | 0a6a717 | 2010-10-07 14:46:15 +0200 | [diff] [blame] | 871 | if (common->cmnd[0] == WRITE_6) |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 872 | lba = get_unaligned_be24(&common->cmnd[1]); |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 873 | else { |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 874 | lba = get_unaligned_be32(&common->cmnd[2]); |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 875 | |
Michal Nazarewicz | b73af61 | 2010-10-28 17:31:23 +0200 | [diff] [blame] | 876 | /* |
| 877 | * We allow DPO (Disable Page Out = don't save data in the |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 878 | * cache) and FUA (Force Unit Access = write directly to the |
| 879 | * medium). We don't implement DPO; we implement FUA by |
Michal Nazarewicz | b73af61 | 2010-10-28 17:31:23 +0200 | [diff] [blame] | 880 | * performing synchronous output. |
| 881 | */ |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 882 | if (common->cmnd[1] & ~0x18) { |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 883 | curlun->sense_data = SS_INVALID_FIELD_IN_CDB; |
| 884 | return -EINVAL; |
| 885 | } |
Michal Nazarewicz | 9cfe745 | 2010-08-12 17:43:51 +0200 | [diff] [blame] | 886 | if (!curlun->nofua && (common->cmnd[1] & 0x08)) { /* FUA */ |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 887 | spin_lock(&curlun->filp->f_lock); |
| 888 | curlun->filp->f_flags |= O_SYNC; |
| 889 | spin_unlock(&curlun->filp->f_lock); |
| 890 | } |
| 891 | } |
| 892 | if (lba >= curlun->num_sectors) { |
| 893 | curlun->sense_data = SS_LOGICAL_BLOCK_ADDRESS_OUT_OF_RANGE; |
| 894 | return -EINVAL; |
| 895 | } |
| 896 | |
| 897 | /* Carry out the file writes */ |
| 898 | get_some_more = 1; |
Peiyu Li | 3f565a3 | 2011-08-17 22:52:59 -0700 | [diff] [blame] | 899 | file_offset = usb_offset = ((loff_t) lba) << curlun->blkbits; |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 900 | amount_left_to_req = common->data_size_from_cmnd; |
| 901 | amount_left_to_write = common->data_size_from_cmnd; |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 902 | |
| 903 | while (amount_left_to_write > 0) { |
| 904 | |
| 905 | /* Queue a request for more data from the host */ |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 906 | bh = common->next_buffhd_to_fill; |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 907 | if (bh->state == BUF_STATE_EMPTY && get_some_more) { |
| 908 | |
Michal Nazarewicz | b73af61 | 2010-10-28 17:31:23 +0200 | [diff] [blame] | 909 | /* |
| 910 | * Figure out how much we want to get: |
Alan Stern | 04eee25 | 2011-08-18 14:29:00 -0400 | [diff] [blame] | 911 | * Try to get the remaining amount, |
| 912 | * but not more than the buffer size. |
Michal Nazarewicz | b73af61 | 2010-10-28 17:31:23 +0200 | [diff] [blame] | 913 | */ |
Michal Nazarewicz | 93bcf12 | 2009-10-28 16:57:19 +0100 | [diff] [blame] | 914 | amount = min(amount_left_to_req, FSG_BUFLEN); |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 915 | |
Alan Stern | 04eee25 | 2011-08-18 14:29:00 -0400 | [diff] [blame] | 916 | /* Beyond the end of the backing file? */ |
| 917 | if (usb_offset >= curlun->file_length) { |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 918 | get_some_more = 0; |
| 919 | curlun->sense_data = |
| 920 | SS_LOGICAL_BLOCK_ADDRESS_OUT_OF_RANGE; |
Peiyu Li | 3f565a3 | 2011-08-17 22:52:59 -0700 | [diff] [blame] | 921 | curlun->sense_data_info = |
| 922 | usb_offset >> curlun->blkbits; |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 923 | curlun->info_valid = 1; |
| 924 | continue; |
| 925 | } |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 926 | |
| 927 | /* Get the next buffer */ |
| 928 | usb_offset += amount; |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 929 | common->usb_amount_left -= amount; |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 930 | amount_left_to_req -= amount; |
| 931 | if (amount_left_to_req == 0) |
| 932 | get_some_more = 0; |
| 933 | |
Michal Nazarewicz | b73af61 | 2010-10-28 17:31:23 +0200 | [diff] [blame] | 934 | /* |
Alan Stern | 04eee25 | 2011-08-18 14:29:00 -0400 | [diff] [blame] | 935 | * Except at the end of the transfer, amount will be |
| 936 | * equal to the buffer size, which is divisible by |
| 937 | * the bulk-out maxpacket size. |
Michal Nazarewicz | b73af61 | 2010-10-28 17:31:23 +0200 | [diff] [blame] | 938 | */ |
Paul Zimmerman | fe69676 | 2011-09-30 15:26:06 -0700 | [diff] [blame] | 939 | set_bulk_out_req_length(common, bh, amount); |
Michal Nazarewicz | fe52f79 | 2010-10-28 17:31:21 +0200 | [diff] [blame] | 940 | if (!start_out_transfer(common, bh)) |
Michal Nazarewicz | b73af61 | 2010-10-28 17:31:23 +0200 | [diff] [blame] | 941 | /* Dunno what to do if common->fsg is NULL */ |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 942 | return -EIO; |
| 943 | common->next_buffhd_to_fill = bh->next; |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 944 | continue; |
| 945 | } |
| 946 | |
| 947 | /* Write the received data to the backing file */ |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 948 | bh = common->next_buffhd_to_drain; |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 949 | if (bh->state == BUF_STATE_EMPTY && !get_some_more) |
Michal Nazarewicz | d26a6aa | 2009-11-09 14:15:23 +0100 | [diff] [blame] | 950 | break; /* We stopped early */ |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 951 | if (bh->state == BUF_STATE_FULL) { |
| 952 | smp_rmb(); |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 953 | common->next_buffhd_to_drain = bh->next; |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 954 | bh->state = BUF_STATE_EMPTY; |
| 955 | |
| 956 | /* Did something go wrong with the transfer? */ |
| 957 | if (bh->outreq->status != 0) { |
| 958 | curlun->sense_data = SS_COMMUNICATION_FAILURE; |
Peiyu Li | 3f565a3 | 2011-08-17 22:52:59 -0700 | [diff] [blame] | 959 | curlun->sense_data_info = |
| 960 | file_offset >> curlun->blkbits; |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 961 | curlun->info_valid = 1; |
| 962 | break; |
| 963 | } |
| 964 | |
| 965 | amount = bh->outreq->actual; |
| 966 | if (curlun->file_length - file_offset < amount) { |
| 967 | LERROR(curlun, |
Michal Nazarewicz | b73af61 | 2010-10-28 17:31:23 +0200 | [diff] [blame] | 968 | "write %u @ %llu beyond end %llu\n", |
| 969 | amount, (unsigned long long)file_offset, |
| 970 | (unsigned long long)curlun->file_length); |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 971 | amount = curlun->file_length - file_offset; |
| 972 | } |
| 973 | |
Paul Zimmerman | fe69676 | 2011-09-30 15:26:06 -0700 | [diff] [blame] | 974 | /* Don't accept excess data. The spec doesn't say |
| 975 | * what to do in this case. We'll ignore the error. |
| 976 | */ |
| 977 | amount = min(amount, bh->bulk_out_intended_length); |
| 978 | |
Alan Stern | 04eee25 | 2011-08-18 14:29:00 -0400 | [diff] [blame] | 979 | /* Don't write a partial block */ |
| 980 | amount = round_down(amount, curlun->blksize); |
| 981 | if (amount == 0) |
| 982 | goto empty_write; |
| 983 | |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 984 | /* Perform the write */ |
| 985 | file_offset_tmp = file_offset; |
| 986 | nwritten = vfs_write(curlun->filp, |
Michal Nazarewicz | b73af61 | 2010-10-28 17:31:23 +0200 | [diff] [blame] | 987 | (char __user *)bh->buf, |
| 988 | amount, &file_offset_tmp); |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 989 | VLDBG(curlun, "file write %u @ %llu -> %d\n", amount, |
Michal Nazarewicz | b73af61 | 2010-10-28 17:31:23 +0200 | [diff] [blame] | 990 | (unsigned long long)file_offset, (int)nwritten); |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 991 | if (signal_pending(current)) |
Michal Nazarewicz | d26a6aa | 2009-11-09 14:15:23 +0100 | [diff] [blame] | 992 | return -EINTR; /* Interrupted! */ |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 993 | |
| 994 | if (nwritten < 0) { |
| 995 | LDBG(curlun, "error in file write: %d\n", |
Michal Nazarewicz | b73af61 | 2010-10-28 17:31:23 +0200 | [diff] [blame] | 996 | (int)nwritten); |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 997 | nwritten = 0; |
| 998 | } else if (nwritten < amount) { |
| 999 | LDBG(curlun, "partial file write: %d/%u\n", |
Michal Nazarewicz | b73af61 | 2010-10-28 17:31:23 +0200 | [diff] [blame] | 1000 | (int)nwritten, amount); |
Peiyu Li | 3f565a3 | 2011-08-17 22:52:59 -0700 | [diff] [blame] | 1001 | nwritten = round_down(nwritten, curlun->blksize); |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 1002 | } |
| 1003 | file_offset += nwritten; |
| 1004 | amount_left_to_write -= nwritten; |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 1005 | common->residue -= nwritten; |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 1006 | |
| 1007 | /* If an error occurred, report it and its position */ |
| 1008 | if (nwritten < amount) { |
| 1009 | curlun->sense_data = SS_WRITE_ERROR; |
Peiyu Li | 3f565a3 | 2011-08-17 22:52:59 -0700 | [diff] [blame] | 1010 | curlun->sense_data_info = |
| 1011 | file_offset >> curlun->blkbits; |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 1012 | curlun->info_valid = 1; |
| 1013 | break; |
| 1014 | } |
| 1015 | |
Alan Stern | 04eee25 | 2011-08-18 14:29:00 -0400 | [diff] [blame] | 1016 | empty_write: |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 1017 | /* Did the host decide to stop early? */ |
Paul Zimmerman | fe69676 | 2011-09-30 15:26:06 -0700 | [diff] [blame] | 1018 | if (bh->outreq->actual < bh->bulk_out_intended_length) { |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 1019 | common->short_packet_received = 1; |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 1020 | break; |
| 1021 | } |
| 1022 | continue; |
| 1023 | } |
| 1024 | |
| 1025 | /* Wait for something to happen */ |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 1026 | rc = sleep_thread(common); |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 1027 | if (rc) |
| 1028 | return rc; |
| 1029 | } |
| 1030 | |
Michal Nazarewicz | d26a6aa | 2009-11-09 14:15:23 +0100 | [diff] [blame] | 1031 | return -EIO; /* No default reply */ |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 1032 | } |
| 1033 | |
| 1034 | |
| 1035 | /*-------------------------------------------------------------------------*/ |
| 1036 | |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 1037 | static int do_synchronize_cache(struct fsg_common *common) |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 1038 | { |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 1039 | struct fsg_lun *curlun = common->curlun; |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 1040 | int rc; |
| 1041 | |
| 1042 | /* We ignore the requested LBA and write out all file's |
| 1043 | * dirty data buffers. */ |
| 1044 | rc = fsg_lun_fsync_sub(curlun); |
| 1045 | if (rc) |
| 1046 | curlun->sense_data = SS_WRITE_ERROR; |
| 1047 | return 0; |
| 1048 | } |
| 1049 | |
| 1050 | |
| 1051 | /*-------------------------------------------------------------------------*/ |
| 1052 | |
| 1053 | static void invalidate_sub(struct fsg_lun *curlun) |
| 1054 | { |
| 1055 | struct file *filp = curlun->filp; |
| 1056 | struct inode *inode = filp->f_path.dentry->d_inode; |
| 1057 | unsigned long rc; |
| 1058 | |
| 1059 | rc = invalidate_mapping_pages(inode->i_mapping, 0, -1); |
Christoph Hellwig | 2ecdc82 | 2010-01-26 17:27:20 +0100 | [diff] [blame] | 1060 | VLDBG(curlun, "invalidate_mapping_pages -> %ld\n", rc); |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 1061 | } |
| 1062 | |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 1063 | static int do_verify(struct fsg_common *common) |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 1064 | { |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 1065 | struct fsg_lun *curlun = common->curlun; |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 1066 | u32 lba; |
| 1067 | u32 verification_length; |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 1068 | struct fsg_buffhd *bh = common->next_buffhd_to_fill; |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 1069 | loff_t file_offset, file_offset_tmp; |
| 1070 | u32 amount_left; |
| 1071 | unsigned int amount; |
| 1072 | ssize_t nread; |
| 1073 | |
Michal Nazarewicz | b73af61 | 2010-10-28 17:31:23 +0200 | [diff] [blame] | 1074 | /* |
| 1075 | * Get the starting Logical Block Address and check that it's |
| 1076 | * not too big. |
| 1077 | */ |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 1078 | lba = get_unaligned_be32(&common->cmnd[2]); |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 1079 | if (lba >= curlun->num_sectors) { |
| 1080 | curlun->sense_data = SS_LOGICAL_BLOCK_ADDRESS_OUT_OF_RANGE; |
| 1081 | return -EINVAL; |
| 1082 | } |
| 1083 | |
Michal Nazarewicz | b73af61 | 2010-10-28 17:31:23 +0200 | [diff] [blame] | 1084 | /* |
| 1085 | * We allow DPO (Disable Page Out = don't save data in the |
| 1086 | * cache) but we don't implement it. |
| 1087 | */ |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 1088 | if (common->cmnd[1] & ~0x10) { |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 1089 | curlun->sense_data = SS_INVALID_FIELD_IN_CDB; |
| 1090 | return -EINVAL; |
| 1091 | } |
| 1092 | |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 1093 | verification_length = get_unaligned_be16(&common->cmnd[7]); |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 1094 | if (unlikely(verification_length == 0)) |
Michal Nazarewicz | d26a6aa | 2009-11-09 14:15:23 +0100 | [diff] [blame] | 1095 | return -EIO; /* No default reply */ |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 1096 | |
| 1097 | /* Prepare to carry out the file verify */ |
Peiyu Li | 3f565a3 | 2011-08-17 22:52:59 -0700 | [diff] [blame] | 1098 | amount_left = verification_length << curlun->blkbits; |
| 1099 | file_offset = ((loff_t) lba) << curlun->blkbits; |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 1100 | |
| 1101 | /* Write out all the dirty buffers before invalidating them */ |
| 1102 | fsg_lun_fsync_sub(curlun); |
| 1103 | if (signal_pending(current)) |
| 1104 | return -EINTR; |
| 1105 | |
| 1106 | invalidate_sub(curlun); |
| 1107 | if (signal_pending(current)) |
| 1108 | return -EINTR; |
| 1109 | |
| 1110 | /* Just try to read the requested blocks */ |
| 1111 | while (amount_left > 0) { |
Michal Nazarewicz | b73af61 | 2010-10-28 17:31:23 +0200 | [diff] [blame] | 1112 | /* |
| 1113 | * Figure out how much we need to read: |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 1114 | * Try to read the remaining amount, but not more than |
| 1115 | * the buffer size. |
| 1116 | * And don't try to read past the end of the file. |
Michal Nazarewicz | b73af61 | 2010-10-28 17:31:23 +0200 | [diff] [blame] | 1117 | */ |
Michal Nazarewicz | 93bcf12 | 2009-10-28 16:57:19 +0100 | [diff] [blame] | 1118 | amount = min(amount_left, FSG_BUFLEN); |
Michal Nazarewicz | b73af61 | 2010-10-28 17:31:23 +0200 | [diff] [blame] | 1119 | amount = min((loff_t)amount, |
| 1120 | curlun->file_length - file_offset); |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 1121 | if (amount == 0) { |
| 1122 | curlun->sense_data = |
| 1123 | SS_LOGICAL_BLOCK_ADDRESS_OUT_OF_RANGE; |
Peiyu Li | 3f565a3 | 2011-08-17 22:52:59 -0700 | [diff] [blame] | 1124 | curlun->sense_data_info = |
| 1125 | file_offset >> curlun->blkbits; |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 1126 | curlun->info_valid = 1; |
| 1127 | break; |
| 1128 | } |
| 1129 | |
| 1130 | /* Perform the read */ |
| 1131 | file_offset_tmp = file_offset; |
| 1132 | nread = vfs_read(curlun->filp, |
| 1133 | (char __user *) bh->buf, |
| 1134 | amount, &file_offset_tmp); |
| 1135 | VLDBG(curlun, "file read %u @ %llu -> %d\n", amount, |
| 1136 | (unsigned long long) file_offset, |
| 1137 | (int) nread); |
| 1138 | if (signal_pending(current)) |
| 1139 | return -EINTR; |
| 1140 | |
| 1141 | if (nread < 0) { |
Michal Nazarewicz | b73af61 | 2010-10-28 17:31:23 +0200 | [diff] [blame] | 1142 | LDBG(curlun, "error in file verify: %d\n", (int)nread); |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 1143 | nread = 0; |
| 1144 | } else if (nread < amount) { |
| 1145 | LDBG(curlun, "partial file verify: %d/%u\n", |
Michal Nazarewicz | b73af61 | 2010-10-28 17:31:23 +0200 | [diff] [blame] | 1146 | (int)nread, amount); |
Peiyu Li | 3f565a3 | 2011-08-17 22:52:59 -0700 | [diff] [blame] | 1147 | nread = round_down(nread, curlun->blksize); |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 1148 | } |
| 1149 | if (nread == 0) { |
| 1150 | curlun->sense_data = SS_UNRECOVERED_READ_ERROR; |
Peiyu Li | 3f565a3 | 2011-08-17 22:52:59 -0700 | [diff] [blame] | 1151 | curlun->sense_data_info = |
| 1152 | file_offset >> curlun->blkbits; |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 1153 | curlun->info_valid = 1; |
| 1154 | break; |
| 1155 | } |
| 1156 | file_offset += nread; |
| 1157 | amount_left -= nread; |
| 1158 | } |
| 1159 | return 0; |
| 1160 | } |
| 1161 | |
| 1162 | |
| 1163 | /*-------------------------------------------------------------------------*/ |
| 1164 | |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 1165 | static int do_inquiry(struct fsg_common *common, struct fsg_buffhd *bh) |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 1166 | { |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 1167 | struct fsg_lun *curlun = common->curlun; |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 1168 | u8 *buf = (u8 *) bh->buf; |
| 1169 | |
Michal Nazarewicz | 481e492 | 2009-11-09 14:15:21 +0100 | [diff] [blame] | 1170 | if (!curlun) { /* Unsupported LUNs are okay */ |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 1171 | common->bad_lun_okay = 1; |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 1172 | memset(buf, 0, 36); |
Michal Nazarewicz | d26a6aa | 2009-11-09 14:15:23 +0100 | [diff] [blame] | 1173 | buf[0] = 0x7f; /* Unsupported, no device-type */ |
| 1174 | buf[4] = 31; /* Additional length */ |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 1175 | return 36; |
| 1176 | } |
| 1177 | |
Michal Nazarewicz | 0a6a717 | 2010-10-07 14:46:15 +0200 | [diff] [blame] | 1178 | buf[0] = curlun->cdrom ? TYPE_ROM : TYPE_DISK; |
Michal Nazarewicz | 481e492 | 2009-11-09 14:15:21 +0100 | [diff] [blame] | 1179 | buf[1] = curlun->removable ? 0x80 : 0; |
Michal Nazarewicz | d26a6aa | 2009-11-09 14:15:23 +0100 | [diff] [blame] | 1180 | buf[2] = 2; /* ANSI SCSI level 2 */ |
| 1181 | buf[3] = 2; /* SCSI-2 INQUIRY data format */ |
| 1182 | buf[4] = 31; /* Additional length */ |
| 1183 | buf[5] = 0; /* No special options */ |
Michal Nazarewicz | 481e492 | 2009-11-09 14:15:21 +0100 | [diff] [blame] | 1184 | buf[6] = 0; |
| 1185 | buf[7] = 0; |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 1186 | memcpy(buf + 8, common->inquiry_string, sizeof common->inquiry_string); |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 1187 | return 36; |
| 1188 | } |
| 1189 | |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 1190 | static int do_request_sense(struct fsg_common *common, struct fsg_buffhd *bh) |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 1191 | { |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 1192 | struct fsg_lun *curlun = common->curlun; |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 1193 | u8 *buf = (u8 *) bh->buf; |
| 1194 | u32 sd, sdinfo; |
| 1195 | int valid; |
| 1196 | |
| 1197 | /* |
| 1198 | * From the SCSI-2 spec., section 7.9 (Unit attention condition): |
| 1199 | * |
| 1200 | * If a REQUEST SENSE command is received from an initiator |
| 1201 | * with a pending unit attention condition (before the target |
| 1202 | * generates the contingent allegiance condition), then the |
| 1203 | * target shall either: |
| 1204 | * a) report any pending sense data and preserve the unit |
| 1205 | * attention condition on the logical unit, or, |
| 1206 | * b) report the unit attention condition, may discard any |
| 1207 | * pending sense data, and clear the unit attention |
| 1208 | * condition on the logical unit for that initiator. |
| 1209 | * |
| 1210 | * FSG normally uses option a); enable this code to use option b). |
| 1211 | */ |
| 1212 | #if 0 |
| 1213 | if (curlun && curlun->unit_attention_data != SS_NO_SENSE) { |
| 1214 | curlun->sense_data = curlun->unit_attention_data; |
| 1215 | curlun->unit_attention_data = SS_NO_SENSE; |
| 1216 | } |
| 1217 | #endif |
| 1218 | |
Michal Nazarewicz | d26a6aa | 2009-11-09 14:15:23 +0100 | [diff] [blame] | 1219 | if (!curlun) { /* Unsupported LUNs are okay */ |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 1220 | common->bad_lun_okay = 1; |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 1221 | sd = SS_LOGICAL_UNIT_NOT_SUPPORTED; |
| 1222 | sdinfo = 0; |
| 1223 | valid = 0; |
| 1224 | } else { |
| 1225 | sd = curlun->sense_data; |
| 1226 | sdinfo = curlun->sense_data_info; |
| 1227 | valid = curlun->info_valid << 7; |
| 1228 | curlun->sense_data = SS_NO_SENSE; |
| 1229 | curlun->sense_data_info = 0; |
| 1230 | curlun->info_valid = 0; |
| 1231 | } |
| 1232 | |
| 1233 | memset(buf, 0, 18); |
Michal Nazarewicz | d26a6aa | 2009-11-09 14:15:23 +0100 | [diff] [blame] | 1234 | buf[0] = valid | 0x70; /* Valid, current error */ |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 1235 | buf[2] = SK(sd); |
| 1236 | put_unaligned_be32(sdinfo, &buf[3]); /* Sense information */ |
Michal Nazarewicz | d26a6aa | 2009-11-09 14:15:23 +0100 | [diff] [blame] | 1237 | buf[7] = 18 - 8; /* Additional sense length */ |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 1238 | buf[12] = ASC(sd); |
| 1239 | buf[13] = ASCQ(sd); |
| 1240 | return 18; |
| 1241 | } |
| 1242 | |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 1243 | static int do_read_capacity(struct fsg_common *common, struct fsg_buffhd *bh) |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 1244 | { |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 1245 | struct fsg_lun *curlun = common->curlun; |
| 1246 | u32 lba = get_unaligned_be32(&common->cmnd[2]); |
| 1247 | int pmi = common->cmnd[8]; |
Michal Nazarewicz | b73af61 | 2010-10-28 17:31:23 +0200 | [diff] [blame] | 1248 | u8 *buf = (u8 *)bh->buf; |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 1249 | |
| 1250 | /* Check the PMI and LBA fields */ |
| 1251 | if (pmi > 1 || (pmi == 0 && lba != 0)) { |
| 1252 | curlun->sense_data = SS_INVALID_FIELD_IN_CDB; |
| 1253 | return -EINVAL; |
| 1254 | } |
| 1255 | |
| 1256 | put_unaligned_be32(curlun->num_sectors - 1, &buf[0]); |
| 1257 | /* Max logical block */ |
Peiyu Li | 3f565a3 | 2011-08-17 22:52:59 -0700 | [diff] [blame] | 1258 | put_unaligned_be32(curlun->blksize, &buf[4]);/* Block length */ |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 1259 | return 8; |
| 1260 | } |
| 1261 | |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 1262 | static int do_read_header(struct fsg_common *common, struct fsg_buffhd *bh) |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 1263 | { |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 1264 | struct fsg_lun *curlun = common->curlun; |
| 1265 | int msf = common->cmnd[1] & 0x02; |
| 1266 | u32 lba = get_unaligned_be32(&common->cmnd[2]); |
Michal Nazarewicz | b73af61 | 2010-10-28 17:31:23 +0200 | [diff] [blame] | 1267 | u8 *buf = (u8 *)bh->buf; |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 1268 | |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 1269 | if (common->cmnd[1] & ~0x02) { /* Mask away MSF */ |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 1270 | curlun->sense_data = SS_INVALID_FIELD_IN_CDB; |
| 1271 | return -EINVAL; |
| 1272 | } |
| 1273 | if (lba >= curlun->num_sectors) { |
| 1274 | curlun->sense_data = SS_LOGICAL_BLOCK_ADDRESS_OUT_OF_RANGE; |
| 1275 | return -EINVAL; |
| 1276 | } |
| 1277 | |
| 1278 | memset(buf, 0, 8); |
| 1279 | buf[0] = 0x01; /* 2048 bytes of user data, rest is EC */ |
| 1280 | store_cdrom_address(&buf[4], msf, lba); |
| 1281 | return 8; |
| 1282 | } |
| 1283 | |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 1284 | static int do_read_toc(struct fsg_common *common, struct fsg_buffhd *bh) |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 1285 | { |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 1286 | struct fsg_lun *curlun = common->curlun; |
| 1287 | int msf = common->cmnd[1] & 0x02; |
| 1288 | int start_track = common->cmnd[6]; |
Michal Nazarewicz | b73af61 | 2010-10-28 17:31:23 +0200 | [diff] [blame] | 1289 | u8 *buf = (u8 *)bh->buf; |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 1290 | |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 1291 | if ((common->cmnd[1] & ~0x02) != 0 || /* Mask away MSF */ |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 1292 | start_track > 1) { |
| 1293 | curlun->sense_data = SS_INVALID_FIELD_IN_CDB; |
| 1294 | return -EINVAL; |
| 1295 | } |
| 1296 | |
| 1297 | memset(buf, 0, 20); |
| 1298 | buf[1] = (20-2); /* TOC data length */ |
| 1299 | buf[2] = 1; /* First track number */ |
| 1300 | buf[3] = 1; /* Last track number */ |
| 1301 | buf[5] = 0x16; /* Data track, copying allowed */ |
| 1302 | buf[6] = 0x01; /* Only track is number 1 */ |
| 1303 | store_cdrom_address(&buf[8], msf, 0); |
| 1304 | |
| 1305 | buf[13] = 0x16; /* Lead-out track is data */ |
| 1306 | buf[14] = 0xAA; /* Lead-out track number */ |
| 1307 | store_cdrom_address(&buf[16], msf, curlun->num_sectors); |
| 1308 | return 20; |
| 1309 | } |
| 1310 | |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 1311 | static int do_mode_sense(struct fsg_common *common, struct fsg_buffhd *bh) |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 1312 | { |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 1313 | struct fsg_lun *curlun = common->curlun; |
| 1314 | int mscmnd = common->cmnd[0]; |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 1315 | u8 *buf = (u8 *) bh->buf; |
| 1316 | u8 *buf0 = buf; |
| 1317 | int pc, page_code; |
| 1318 | int changeable_values, all_pages; |
| 1319 | int valid_page = 0; |
| 1320 | int len, limit; |
| 1321 | |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 1322 | if ((common->cmnd[1] & ~0x08) != 0) { /* Mask away DBD */ |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 1323 | curlun->sense_data = SS_INVALID_FIELD_IN_CDB; |
| 1324 | return -EINVAL; |
| 1325 | } |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 1326 | pc = common->cmnd[2] >> 6; |
| 1327 | page_code = common->cmnd[2] & 0x3f; |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 1328 | if (pc == 3) { |
| 1329 | curlun->sense_data = SS_SAVING_PARAMETERS_NOT_SUPPORTED; |
| 1330 | return -EINVAL; |
| 1331 | } |
| 1332 | changeable_values = (pc == 1); |
| 1333 | all_pages = (page_code == 0x3f); |
| 1334 | |
Michal Nazarewicz | b73af61 | 2010-10-28 17:31:23 +0200 | [diff] [blame] | 1335 | /* |
| 1336 | * Write the mode parameter header. Fixed values are: default |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 1337 | * medium type, no cache control (DPOFUA), and no block descriptors. |
| 1338 | * The only variable value is the WriteProtect bit. We will fill in |
Michal Nazarewicz | b73af61 | 2010-10-28 17:31:23 +0200 | [diff] [blame] | 1339 | * the mode data length later. |
| 1340 | */ |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 1341 | memset(buf, 0, 8); |
Michal Nazarewicz | 0a6a717 | 2010-10-07 14:46:15 +0200 | [diff] [blame] | 1342 | if (mscmnd == MODE_SENSE) { |
Michal Nazarewicz | d26a6aa | 2009-11-09 14:15:23 +0100 | [diff] [blame] | 1343 | buf[2] = (curlun->ro ? 0x80 : 0x00); /* WP, DPOFUA */ |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 1344 | buf += 4; |
| 1345 | limit = 255; |
Michal Nazarewicz | 0a6a717 | 2010-10-07 14:46:15 +0200 | [diff] [blame] | 1346 | } else { /* MODE_SENSE_10 */ |
Michal Nazarewicz | d26a6aa | 2009-11-09 14:15:23 +0100 | [diff] [blame] | 1347 | buf[3] = (curlun->ro ? 0x80 : 0x00); /* WP, DPOFUA */ |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 1348 | buf += 8; |
Michal Nazarewicz | d26a6aa | 2009-11-09 14:15:23 +0100 | [diff] [blame] | 1349 | limit = 65535; /* Should really be FSG_BUFLEN */ |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 1350 | } |
| 1351 | |
| 1352 | /* No block descriptors */ |
| 1353 | |
Michal Nazarewicz | b73af61 | 2010-10-28 17:31:23 +0200 | [diff] [blame] | 1354 | /* |
| 1355 | * The mode pages, in numerical order. The only page we support |
| 1356 | * is the Caching page. |
| 1357 | */ |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 1358 | if (page_code == 0x08 || all_pages) { |
| 1359 | valid_page = 1; |
Michal Nazarewicz | d26a6aa | 2009-11-09 14:15:23 +0100 | [diff] [blame] | 1360 | buf[0] = 0x08; /* Page code */ |
| 1361 | buf[1] = 10; /* Page length */ |
| 1362 | memset(buf+2, 0, 10); /* None of the fields are changeable */ |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 1363 | |
| 1364 | if (!changeable_values) { |
Michal Nazarewicz | d26a6aa | 2009-11-09 14:15:23 +0100 | [diff] [blame] | 1365 | buf[2] = 0x04; /* Write cache enable, */ |
| 1366 | /* Read cache not disabled */ |
| 1367 | /* No cache retention priorities */ |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 1368 | put_unaligned_be16(0xffff, &buf[4]); |
| 1369 | /* Don't disable prefetch */ |
| 1370 | /* Minimum prefetch = 0 */ |
| 1371 | put_unaligned_be16(0xffff, &buf[8]); |
| 1372 | /* Maximum prefetch */ |
| 1373 | put_unaligned_be16(0xffff, &buf[10]); |
| 1374 | /* Maximum prefetch ceiling */ |
| 1375 | } |
| 1376 | buf += 12; |
| 1377 | } |
| 1378 | |
Michal Nazarewicz | b73af61 | 2010-10-28 17:31:23 +0200 | [diff] [blame] | 1379 | /* |
| 1380 | * Check that a valid page was requested and the mode data length |
| 1381 | * isn't too long. |
| 1382 | */ |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 1383 | len = buf - buf0; |
| 1384 | if (!valid_page || len > limit) { |
| 1385 | curlun->sense_data = SS_INVALID_FIELD_IN_CDB; |
| 1386 | return -EINVAL; |
| 1387 | } |
| 1388 | |
| 1389 | /* Store the mode data length */ |
Michal Nazarewicz | 0a6a717 | 2010-10-07 14:46:15 +0200 | [diff] [blame] | 1390 | if (mscmnd == MODE_SENSE) |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 1391 | buf0[0] = len - 1; |
| 1392 | else |
| 1393 | put_unaligned_be16(len - 2, buf0); |
| 1394 | return len; |
| 1395 | } |
| 1396 | |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 1397 | static int do_start_stop(struct fsg_common *common) |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 1398 | { |
Fabien Chouteau | 31436a1 | 2010-04-26 12:34:54 +0200 | [diff] [blame] | 1399 | struct fsg_lun *curlun = common->curlun; |
| 1400 | int loej, start; |
| 1401 | |
| 1402 | if (!curlun) { |
Michal Nazarewicz | 481e492 | 2009-11-09 14:15:21 +0100 | [diff] [blame] | 1403 | return -EINVAL; |
Fabien Chouteau | 31436a1 | 2010-04-26 12:34:54 +0200 | [diff] [blame] | 1404 | } else if (!curlun->removable) { |
| 1405 | curlun->sense_data = SS_INVALID_COMMAND; |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 1406 | return -EINVAL; |
Michal Nazarewicz | 8876f5e | 2010-06-21 13:57:09 +0200 | [diff] [blame] | 1407 | } else if ((common->cmnd[1] & ~0x01) != 0 || /* Mask away Immed */ |
| 1408 | (common->cmnd[4] & ~0x03) != 0) { /* Mask LoEj, Start */ |
Fabien Chouteau | 31436a1 | 2010-04-26 12:34:54 +0200 | [diff] [blame] | 1409 | curlun->sense_data = SS_INVALID_FIELD_IN_CDB; |
| 1410 | return -EINVAL; |
| 1411 | } |
| 1412 | |
Michal Nazarewicz | 8876f5e | 2010-06-21 13:57:09 +0200 | [diff] [blame] | 1413 | loej = common->cmnd[4] & 0x02; |
| 1414 | start = common->cmnd[4] & 0x01; |
Fabien Chouteau | 31436a1 | 2010-04-26 12:34:54 +0200 | [diff] [blame] | 1415 | |
Michal Nazarewicz | b73af61 | 2010-10-28 17:31:23 +0200 | [diff] [blame] | 1416 | /* |
| 1417 | * Our emulation doesn't support mounting; the medium is |
| 1418 | * available for use as soon as it is loaded. |
| 1419 | */ |
Michal Nazarewicz | 8876f5e | 2010-06-21 13:57:09 +0200 | [diff] [blame] | 1420 | if (start) { |
Fabien Chouteau | 31436a1 | 2010-04-26 12:34:54 +0200 | [diff] [blame] | 1421 | if (!fsg_lun_is_open(curlun)) { |
| 1422 | curlun->sense_data = SS_MEDIUM_NOT_PRESENT; |
| 1423 | return -EINVAL; |
| 1424 | } |
Michal Nazarewicz | 8876f5e | 2010-06-21 13:57:09 +0200 | [diff] [blame] | 1425 | return 0; |
Fabien Chouteau | 31436a1 | 2010-04-26 12:34:54 +0200 | [diff] [blame] | 1426 | } |
Michal Nazarewicz | 8876f5e | 2010-06-21 13:57:09 +0200 | [diff] [blame] | 1427 | |
| 1428 | /* Are we allowed to unload the media? */ |
| 1429 | if (curlun->prevent_medium_removal) { |
| 1430 | LDBG(curlun, "unload attempt prevented\n"); |
| 1431 | curlun->sense_data = SS_MEDIUM_REMOVAL_PREVENTED; |
| 1432 | return -EINVAL; |
| 1433 | } |
| 1434 | |
| 1435 | if (!loej) |
| 1436 | return 0; |
| 1437 | |
| 1438 | /* Simulate an unload/eject */ |
| 1439 | if (common->ops && common->ops->pre_eject) { |
| 1440 | int r = common->ops->pre_eject(common, curlun, |
| 1441 | curlun - common->luns); |
| 1442 | if (unlikely(r < 0)) |
| 1443 | return r; |
| 1444 | else if (r) |
| 1445 | return 0; |
| 1446 | } |
| 1447 | |
| 1448 | up_read(&common->filesem); |
| 1449 | down_write(&common->filesem); |
| 1450 | fsg_lun_close(curlun); |
| 1451 | up_write(&common->filesem); |
| 1452 | down_read(&common->filesem); |
| 1453 | |
| 1454 | return common->ops && common->ops->post_eject |
| 1455 | ? min(0, common->ops->post_eject(common, curlun, |
| 1456 | curlun - common->luns)) |
| 1457 | : 0; |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 1458 | } |
| 1459 | |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 1460 | static int do_prevent_allow(struct fsg_common *common) |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 1461 | { |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 1462 | struct fsg_lun *curlun = common->curlun; |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 1463 | int prevent; |
| 1464 | |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 1465 | if (!common->curlun) { |
Michal Nazarewicz | 481e492 | 2009-11-09 14:15:21 +0100 | [diff] [blame] | 1466 | return -EINVAL; |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 1467 | } else if (!common->curlun->removable) { |
| 1468 | common->curlun->sense_data = SS_INVALID_COMMAND; |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 1469 | return -EINVAL; |
| 1470 | } |
| 1471 | |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 1472 | prevent = common->cmnd[4] & 0x01; |
| 1473 | if ((common->cmnd[4] & ~0x01) != 0) { /* Mask away Prevent */ |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 1474 | curlun->sense_data = SS_INVALID_FIELD_IN_CDB; |
| 1475 | return -EINVAL; |
| 1476 | } |
| 1477 | |
| 1478 | if (curlun->prevent_medium_removal && !prevent) |
| 1479 | fsg_lun_fsync_sub(curlun); |
| 1480 | curlun->prevent_medium_removal = prevent; |
| 1481 | return 0; |
| 1482 | } |
| 1483 | |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 1484 | static int do_read_format_capacities(struct fsg_common *common, |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 1485 | struct fsg_buffhd *bh) |
| 1486 | { |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 1487 | struct fsg_lun *curlun = common->curlun; |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 1488 | u8 *buf = (u8 *) bh->buf; |
| 1489 | |
| 1490 | buf[0] = buf[1] = buf[2] = 0; |
Michal Nazarewicz | d26a6aa | 2009-11-09 14:15:23 +0100 | [diff] [blame] | 1491 | buf[3] = 8; /* Only the Current/Maximum Capacity Descriptor */ |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 1492 | buf += 4; |
| 1493 | |
| 1494 | put_unaligned_be32(curlun->num_sectors, &buf[0]); |
| 1495 | /* Number of blocks */ |
Peiyu Li | 3f565a3 | 2011-08-17 22:52:59 -0700 | [diff] [blame] | 1496 | put_unaligned_be32(curlun->blksize, &buf[4]);/* Block length */ |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 1497 | buf[4] = 0x02; /* Current capacity */ |
| 1498 | return 12; |
| 1499 | } |
| 1500 | |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 1501 | static int do_mode_select(struct fsg_common *common, struct fsg_buffhd *bh) |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 1502 | { |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 1503 | struct fsg_lun *curlun = common->curlun; |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 1504 | |
| 1505 | /* We don't support MODE SELECT */ |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 1506 | if (curlun) |
| 1507 | curlun->sense_data = SS_INVALID_COMMAND; |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 1508 | return -EINVAL; |
| 1509 | } |
| 1510 | |
| 1511 | |
| 1512 | /*-------------------------------------------------------------------------*/ |
| 1513 | |
| 1514 | static int halt_bulk_in_endpoint(struct fsg_dev *fsg) |
| 1515 | { |
| 1516 | int rc; |
| 1517 | |
| 1518 | rc = fsg_set_halt(fsg, fsg->bulk_in); |
| 1519 | if (rc == -EAGAIN) |
| 1520 | VDBG(fsg, "delayed bulk-in endpoint halt\n"); |
| 1521 | while (rc != 0) { |
| 1522 | if (rc != -EAGAIN) { |
| 1523 | WARNING(fsg, "usb_ep_set_halt -> %d\n", rc); |
| 1524 | rc = 0; |
| 1525 | break; |
| 1526 | } |
| 1527 | |
| 1528 | /* Wait for a short time and then try again */ |
| 1529 | if (msleep_interruptible(100) != 0) |
| 1530 | return -EINTR; |
| 1531 | rc = usb_ep_set_halt(fsg->bulk_in); |
| 1532 | } |
| 1533 | return rc; |
| 1534 | } |
| 1535 | |
| 1536 | static int wedge_bulk_in_endpoint(struct fsg_dev *fsg) |
| 1537 | { |
| 1538 | int rc; |
| 1539 | |
| 1540 | DBG(fsg, "bulk-in set wedge\n"); |
| 1541 | rc = usb_ep_set_wedge(fsg->bulk_in); |
| 1542 | if (rc == -EAGAIN) |
| 1543 | VDBG(fsg, "delayed bulk-in endpoint wedge\n"); |
| 1544 | while (rc != 0) { |
| 1545 | if (rc != -EAGAIN) { |
| 1546 | WARNING(fsg, "usb_ep_set_wedge -> %d\n", rc); |
| 1547 | rc = 0; |
| 1548 | break; |
| 1549 | } |
| 1550 | |
| 1551 | /* Wait for a short time and then try again */ |
| 1552 | if (msleep_interruptible(100) != 0) |
| 1553 | return -EINTR; |
| 1554 | rc = usb_ep_set_wedge(fsg->bulk_in); |
| 1555 | } |
| 1556 | return rc; |
| 1557 | } |
| 1558 | |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 1559 | static int throw_away_data(struct fsg_common *common) |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 1560 | { |
| 1561 | struct fsg_buffhd *bh; |
| 1562 | u32 amount; |
| 1563 | int rc; |
| 1564 | |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 1565 | for (bh = common->next_buffhd_to_drain; |
| 1566 | bh->state != BUF_STATE_EMPTY || common->usb_amount_left > 0; |
| 1567 | bh = common->next_buffhd_to_drain) { |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 1568 | |
| 1569 | /* Throw away the data in a filled buffer */ |
| 1570 | if (bh->state == BUF_STATE_FULL) { |
| 1571 | smp_rmb(); |
| 1572 | bh->state = BUF_STATE_EMPTY; |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 1573 | common->next_buffhd_to_drain = bh->next; |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 1574 | |
| 1575 | /* A short packet or an error ends everything */ |
Paul Zimmerman | fe69676 | 2011-09-30 15:26:06 -0700 | [diff] [blame] | 1576 | if (bh->outreq->actual < bh->bulk_out_intended_length || |
Michal Nazarewicz | b73af61 | 2010-10-28 17:31:23 +0200 | [diff] [blame] | 1577 | bh->outreq->status != 0) { |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 1578 | raise_exception(common, |
| 1579 | FSG_STATE_ABORT_BULK_OUT); |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 1580 | return -EINTR; |
| 1581 | } |
| 1582 | continue; |
| 1583 | } |
| 1584 | |
| 1585 | /* Try to submit another request if we need one */ |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 1586 | bh = common->next_buffhd_to_fill; |
| 1587 | if (bh->state == BUF_STATE_EMPTY |
| 1588 | && common->usb_amount_left > 0) { |
| 1589 | amount = min(common->usb_amount_left, FSG_BUFLEN); |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 1590 | |
Michal Nazarewicz | b73af61 | 2010-10-28 17:31:23 +0200 | [diff] [blame] | 1591 | /* |
Alan Stern | 04eee25 | 2011-08-18 14:29:00 -0400 | [diff] [blame] | 1592 | * Except at the end of the transfer, amount will be |
| 1593 | * equal to the buffer size, which is divisible by |
Michal Nazarewicz | b73af61 | 2010-10-28 17:31:23 +0200 | [diff] [blame] | 1594 | * the bulk-out maxpacket size. |
| 1595 | */ |
Paul Zimmerman | fe69676 | 2011-09-30 15:26:06 -0700 | [diff] [blame] | 1596 | set_bulk_out_req_length(common, bh, amount); |
Michal Nazarewicz | fe52f79 | 2010-10-28 17:31:21 +0200 | [diff] [blame] | 1597 | if (!start_out_transfer(common, bh)) |
Michal Nazarewicz | b73af61 | 2010-10-28 17:31:23 +0200 | [diff] [blame] | 1598 | /* Dunno what to do if common->fsg is NULL */ |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 1599 | return -EIO; |
| 1600 | common->next_buffhd_to_fill = bh->next; |
| 1601 | common->usb_amount_left -= amount; |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 1602 | continue; |
| 1603 | } |
| 1604 | |
| 1605 | /* Otherwise wait for something to happen */ |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 1606 | rc = sleep_thread(common); |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 1607 | if (rc) |
| 1608 | return rc; |
| 1609 | } |
| 1610 | return 0; |
| 1611 | } |
| 1612 | |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 1613 | static int finish_reply(struct fsg_common *common) |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 1614 | { |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 1615 | struct fsg_buffhd *bh = common->next_buffhd_to_fill; |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 1616 | int rc = 0; |
| 1617 | |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 1618 | switch (common->data_dir) { |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 1619 | case DATA_DIR_NONE: |
Michal Nazarewicz | d26a6aa | 2009-11-09 14:15:23 +0100 | [diff] [blame] | 1620 | break; /* Nothing to send */ |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 1621 | |
Michal Nazarewicz | b73af61 | 2010-10-28 17:31:23 +0200 | [diff] [blame] | 1622 | /* |
| 1623 | * If we don't know whether the host wants to read or write, |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 1624 | * this must be CB or CBI with an unknown command. We mustn't |
| 1625 | * try to send or receive any data. So stall both bulk pipes |
Michal Nazarewicz | b73af61 | 2010-10-28 17:31:23 +0200 | [diff] [blame] | 1626 | * if we can and wait for a reset. |
| 1627 | */ |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 1628 | case DATA_DIR_UNKNOWN: |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 1629 | if (!common->can_stall) { |
| 1630 | /* Nothing */ |
| 1631 | } else if (fsg_is_set(common)) { |
| 1632 | fsg_set_halt(common->fsg, common->fsg->bulk_out); |
| 1633 | rc = halt_bulk_in_endpoint(common->fsg); |
| 1634 | } else { |
| 1635 | /* Don't know what to do if common->fsg is NULL */ |
| 1636 | rc = -EIO; |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 1637 | } |
| 1638 | break; |
| 1639 | |
| 1640 | /* All but the last buffer of data must have already been sent */ |
| 1641 | case DATA_DIR_TO_HOST: |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 1642 | if (common->data_size == 0) { |
Michal Nazarewicz | 93bcf12 | 2009-10-28 16:57:19 +0100 | [diff] [blame] | 1643 | /* Nothing to send */ |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 1644 | |
Alan Stern | ee81b3e | 2011-03-25 11:46:27 -0400 | [diff] [blame] | 1645 | /* Don't know what to do if common->fsg is NULL */ |
| 1646 | } else if (!fsg_is_set(common)) { |
| 1647 | rc = -EIO; |
| 1648 | |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 1649 | /* If there's no residue, simply send the last buffer */ |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 1650 | } else if (common->residue == 0) { |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 1651 | bh->inreq->zero = 0; |
Michal Nazarewicz | fe52f79 | 2010-10-28 17:31:21 +0200 | [diff] [blame] | 1652 | if (!start_in_transfer(common, bh)) |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 1653 | return -EIO; |
| 1654 | common->next_buffhd_to_fill = bh->next; |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 1655 | |
Michal Nazarewicz | b73af61 | 2010-10-28 17:31:23 +0200 | [diff] [blame] | 1656 | /* |
Alan Stern | ee81b3e | 2011-03-25 11:46:27 -0400 | [diff] [blame] | 1657 | * For Bulk-only, mark the end of the data with a short |
| 1658 | * packet. If we are allowed to stall, halt the bulk-in |
| 1659 | * endpoint. (Note: This violates the Bulk-Only Transport |
| 1660 | * specification, which requires us to pad the data if we |
| 1661 | * don't halt the endpoint. Presumably nobody will mind.) |
Michal Nazarewicz | b73af61 | 2010-10-28 17:31:23 +0200 | [diff] [blame] | 1662 | */ |
Alan Stern | ee81b3e | 2011-03-25 11:46:27 -0400 | [diff] [blame] | 1663 | } else { |
Michal Nazarewicz | 93bcf12 | 2009-10-28 16:57:19 +0100 | [diff] [blame] | 1664 | bh->inreq->zero = 1; |
Michal Nazarewicz | fe52f79 | 2010-10-28 17:31:21 +0200 | [diff] [blame] | 1665 | if (!start_in_transfer(common, bh)) |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 1666 | rc = -EIO; |
| 1667 | common->next_buffhd_to_fill = bh->next; |
Alan Stern | ee81b3e | 2011-03-25 11:46:27 -0400 | [diff] [blame] | 1668 | if (common->can_stall) |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 1669 | rc = halt_bulk_in_endpoint(common->fsg); |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 1670 | } |
| 1671 | break; |
| 1672 | |
Michal Nazarewicz | b73af61 | 2010-10-28 17:31:23 +0200 | [diff] [blame] | 1673 | /* |
| 1674 | * We have processed all we want from the data the host has sent. |
| 1675 | * There may still be outstanding bulk-out requests. |
| 1676 | */ |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 1677 | case DATA_DIR_FROM_HOST: |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 1678 | if (common->residue == 0) { |
Michal Nazarewicz | d26a6aa | 2009-11-09 14:15:23 +0100 | [diff] [blame] | 1679 | /* Nothing to receive */ |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 1680 | |
| 1681 | /* Did the host stop sending unexpectedly early? */ |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 1682 | } else if (common->short_packet_received) { |
| 1683 | raise_exception(common, FSG_STATE_ABORT_BULK_OUT); |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 1684 | rc = -EINTR; |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 1685 | |
Michal Nazarewicz | b73af61 | 2010-10-28 17:31:23 +0200 | [diff] [blame] | 1686 | /* |
| 1687 | * We haven't processed all the incoming data. Even though |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 1688 | * we may be allowed to stall, doing so would cause a race. |
| 1689 | * The controller may already have ACK'ed all the remaining |
| 1690 | * bulk-out packets, in which case the host wouldn't see a |
| 1691 | * STALL. Not realizing the endpoint was halted, it wouldn't |
Michal Nazarewicz | b73af61 | 2010-10-28 17:31:23 +0200 | [diff] [blame] | 1692 | * clear the halt -- leading to problems later on. |
| 1693 | */ |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 1694 | #if 0 |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 1695 | } else if (common->can_stall) { |
| 1696 | if (fsg_is_set(common)) |
| 1697 | fsg_set_halt(common->fsg, |
| 1698 | common->fsg->bulk_out); |
| 1699 | raise_exception(common, FSG_STATE_ABORT_BULK_OUT); |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 1700 | rc = -EINTR; |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 1701 | #endif |
| 1702 | |
Michal Nazarewicz | b73af61 | 2010-10-28 17:31:23 +0200 | [diff] [blame] | 1703 | /* |
| 1704 | * We can't stall. Read in the excess data and throw it |
| 1705 | * all away. |
| 1706 | */ |
Michal Nazarewicz | d26a6aa | 2009-11-09 14:15:23 +0100 | [diff] [blame] | 1707 | } else { |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 1708 | rc = throw_away_data(common); |
Michal Nazarewicz | d26a6aa | 2009-11-09 14:15:23 +0100 | [diff] [blame] | 1709 | } |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 1710 | break; |
| 1711 | } |
| 1712 | return rc; |
| 1713 | } |
| 1714 | |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 1715 | static int send_status(struct fsg_common *common) |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 1716 | { |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 1717 | struct fsg_lun *curlun = common->curlun; |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 1718 | struct fsg_buffhd *bh; |
Michal Nazarewicz | 93bcf12 | 2009-10-28 16:57:19 +0100 | [diff] [blame] | 1719 | struct bulk_cs_wrap *csw; |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 1720 | int rc; |
Sebastian Andrzej Siewior | 775dafd | 2012-02-25 18:28:11 +0100 | [diff] [blame] | 1721 | u8 status = US_BULK_STAT_OK; |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 1722 | u32 sd, sdinfo = 0; |
| 1723 | |
| 1724 | /* Wait for the next buffer to become available */ |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 1725 | bh = common->next_buffhd_to_fill; |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 1726 | while (bh->state != BUF_STATE_EMPTY) { |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 1727 | rc = sleep_thread(common); |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 1728 | if (rc) |
| 1729 | return rc; |
| 1730 | } |
| 1731 | |
| 1732 | if (curlun) { |
| 1733 | sd = curlun->sense_data; |
| 1734 | sdinfo = curlun->sense_data_info; |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 1735 | } else if (common->bad_lun_okay) |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 1736 | sd = SS_NO_SENSE; |
| 1737 | else |
| 1738 | sd = SS_LOGICAL_UNIT_NOT_SUPPORTED; |
| 1739 | |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 1740 | if (common->phase_error) { |
| 1741 | DBG(common, "sending phase-error status\n"); |
Sebastian Andrzej Siewior | 775dafd | 2012-02-25 18:28:11 +0100 | [diff] [blame] | 1742 | status = US_BULK_STAT_PHASE; |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 1743 | sd = SS_INVALID_COMMAND; |
| 1744 | } else if (sd != SS_NO_SENSE) { |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 1745 | DBG(common, "sending command-failure status\n"); |
Sebastian Andrzej Siewior | 775dafd | 2012-02-25 18:28:11 +0100 | [diff] [blame] | 1746 | status = US_BULK_STAT_FAIL; |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 1747 | VDBG(common, " sense data: SK x%02x, ASC x%02x, ASCQ x%02x;" |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 1748 | " info x%x\n", |
| 1749 | SK(sd), ASC(sd), ASCQ(sd), sdinfo); |
| 1750 | } |
| 1751 | |
Michal Nazarewicz | 93bcf12 | 2009-10-28 16:57:19 +0100 | [diff] [blame] | 1752 | /* Store and send the Bulk-only CSW */ |
Michal Nazarewicz | d26a6aa | 2009-11-09 14:15:23 +0100 | [diff] [blame] | 1753 | csw = (void *)bh->buf; |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 1754 | |
Sebastian Andrzej Siewior | 775dafd | 2012-02-25 18:28:11 +0100 | [diff] [blame] | 1755 | csw->Signature = cpu_to_le32(US_BULK_CS_SIGN); |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 1756 | csw->Tag = common->tag; |
| 1757 | csw->Residue = cpu_to_le32(common->residue); |
Michal Nazarewicz | 93bcf12 | 2009-10-28 16:57:19 +0100 | [diff] [blame] | 1758 | csw->Status = status; |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 1759 | |
Sebastian Andrzej Siewior | 775dafd | 2012-02-25 18:28:11 +0100 | [diff] [blame] | 1760 | bh->inreq->length = US_BULK_CS_WRAP_LEN; |
Michal Nazarewicz | 93bcf12 | 2009-10-28 16:57:19 +0100 | [diff] [blame] | 1761 | bh->inreq->zero = 0; |
Michal Nazarewicz | fe52f79 | 2010-10-28 17:31:21 +0200 | [diff] [blame] | 1762 | if (!start_in_transfer(common, bh)) |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 1763 | /* Don't know what to do if common->fsg is NULL */ |
| 1764 | return -EIO; |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 1765 | |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 1766 | common->next_buffhd_to_fill = bh->next; |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 1767 | return 0; |
| 1768 | } |
| 1769 | |
| 1770 | |
| 1771 | /*-------------------------------------------------------------------------*/ |
| 1772 | |
Michal Nazarewicz | b73af61 | 2010-10-28 17:31:23 +0200 | [diff] [blame] | 1773 | /* |
| 1774 | * Check whether the command is properly formed and whether its data size |
| 1775 | * and direction agree with the values we already have. |
| 1776 | */ |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 1777 | static int check_command(struct fsg_common *common, int cmnd_size, |
Michal Nazarewicz | b73af61 | 2010-10-28 17:31:23 +0200 | [diff] [blame] | 1778 | enum data_direction data_dir, unsigned int mask, |
| 1779 | int needs_medium, const char *name) |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 1780 | { |
| 1781 | int i; |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 1782 | int lun = common->cmnd[1] >> 5; |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 1783 | static const char dirletter[4] = {'u', 'o', 'i', 'n'}; |
| 1784 | char hdlen[20]; |
| 1785 | struct fsg_lun *curlun; |
| 1786 | |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 1787 | hdlen[0] = 0; |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 1788 | if (common->data_dir != DATA_DIR_UNKNOWN) |
| 1789 | sprintf(hdlen, ", H%c=%u", dirletter[(int) common->data_dir], |
Michal Nazarewicz | b73af61 | 2010-10-28 17:31:23 +0200 | [diff] [blame] | 1790 | common->data_size); |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 1791 | VDBG(common, "SCSI command: %s; Dc=%d, D%c=%u; Hc=%d%s\n", |
Michal Nazarewicz | d26a6aa | 2009-11-09 14:15:23 +0100 | [diff] [blame] | 1792 | name, cmnd_size, dirletter[(int) data_dir], |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 1793 | common->data_size_from_cmnd, common->cmnd_size, hdlen); |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 1794 | |
Michal Nazarewicz | b73af61 | 2010-10-28 17:31:23 +0200 | [diff] [blame] | 1795 | /* |
| 1796 | * We can't reply at all until we know the correct data direction |
| 1797 | * and size. |
| 1798 | */ |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 1799 | if (common->data_size_from_cmnd == 0) |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 1800 | data_dir = DATA_DIR_NONE; |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 1801 | if (common->data_size < common->data_size_from_cmnd) { |
Michal Nazarewicz | b73af61 | 2010-10-28 17:31:23 +0200 | [diff] [blame] | 1802 | /* |
| 1803 | * Host data size < Device data size is a phase error. |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 1804 | * Carry out the command, but only transfer as much as |
Michal Nazarewicz | b73af61 | 2010-10-28 17:31:23 +0200 | [diff] [blame] | 1805 | * we are allowed. |
| 1806 | */ |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 1807 | common->data_size_from_cmnd = common->data_size; |
| 1808 | common->phase_error = 1; |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 1809 | } |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 1810 | common->residue = common->data_size; |
| 1811 | common->usb_amount_left = common->data_size; |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 1812 | |
| 1813 | /* Conflicting data directions is a phase error */ |
Michal Nazarewicz | b73af61 | 2010-10-28 17:31:23 +0200 | [diff] [blame] | 1814 | if (common->data_dir != data_dir && common->data_size_from_cmnd > 0) { |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 1815 | common->phase_error = 1; |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 1816 | return -EINVAL; |
| 1817 | } |
| 1818 | |
| 1819 | /* Verify the length of the command itself */ |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 1820 | if (cmnd_size != common->cmnd_size) { |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 1821 | |
Michal Nazarewicz | b73af61 | 2010-10-28 17:31:23 +0200 | [diff] [blame] | 1822 | /* |
| 1823 | * Special case workaround: There are plenty of buggy SCSI |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 1824 | * implementations. Many have issues with cbw->Length |
| 1825 | * field passing a wrong command size. For those cases we |
| 1826 | * always try to work around the problem by using the length |
| 1827 | * sent by the host side provided it is at least as large |
| 1828 | * as the correct command length. |
| 1829 | * Examples of such cases would be MS-Windows, which issues |
| 1830 | * REQUEST SENSE with cbw->Length == 12 where it should |
| 1831 | * be 6, and xbox360 issuing INQUIRY, TEST UNIT READY and |
| 1832 | * REQUEST SENSE with cbw->Length == 10 where it should |
| 1833 | * be 6 as well. |
| 1834 | */ |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 1835 | if (cmnd_size <= common->cmnd_size) { |
| 1836 | DBG(common, "%s is buggy! Expected length %d " |
Michal Nazarewicz | a41ae41 | 2009-10-28 16:57:20 +0100 | [diff] [blame] | 1837 | "but we got %d\n", name, |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 1838 | cmnd_size, common->cmnd_size); |
| 1839 | cmnd_size = common->cmnd_size; |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 1840 | } else { |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 1841 | common->phase_error = 1; |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 1842 | return -EINVAL; |
| 1843 | } |
| 1844 | } |
| 1845 | |
| 1846 | /* Check that the LUN values are consistent */ |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 1847 | if (common->lun != lun) |
| 1848 | DBG(common, "using LUN %d from CBW, not LUN %d from CDB\n", |
| 1849 | common->lun, lun); |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 1850 | |
| 1851 | /* Check the LUN */ |
Yuping Luo | 144974e | 2011-10-25 19:13:10 -0700 | [diff] [blame] | 1852 | curlun = common->curlun; |
| 1853 | if (curlun) { |
Michal Nazarewicz | 0a6a717 | 2010-10-07 14:46:15 +0200 | [diff] [blame] | 1854 | if (common->cmnd[0] != REQUEST_SENSE) { |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 1855 | curlun->sense_data = SS_NO_SENSE; |
| 1856 | curlun->sense_data_info = 0; |
| 1857 | curlun->info_valid = 0; |
| 1858 | } |
| 1859 | } else { |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 1860 | common->bad_lun_okay = 0; |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 1861 | |
Michal Nazarewicz | b73af61 | 2010-10-28 17:31:23 +0200 | [diff] [blame] | 1862 | /* |
| 1863 | * INQUIRY and REQUEST SENSE commands are explicitly allowed |
| 1864 | * to use unsupported LUNs; all others may not. |
| 1865 | */ |
Michal Nazarewicz | 0a6a717 | 2010-10-07 14:46:15 +0200 | [diff] [blame] | 1866 | if (common->cmnd[0] != INQUIRY && |
| 1867 | common->cmnd[0] != REQUEST_SENSE) { |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 1868 | DBG(common, "unsupported LUN %d\n", common->lun); |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 1869 | return -EINVAL; |
| 1870 | } |
| 1871 | } |
| 1872 | |
Michal Nazarewicz | b73af61 | 2010-10-28 17:31:23 +0200 | [diff] [blame] | 1873 | /* |
| 1874 | * If a unit attention condition exists, only INQUIRY and |
| 1875 | * REQUEST SENSE commands are allowed; anything else must fail. |
| 1876 | */ |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 1877 | if (curlun && curlun->unit_attention_data != SS_NO_SENSE && |
Michal Nazarewicz | b73af61 | 2010-10-28 17:31:23 +0200 | [diff] [blame] | 1878 | common->cmnd[0] != INQUIRY && |
| 1879 | common->cmnd[0] != REQUEST_SENSE) { |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 1880 | curlun->sense_data = curlun->unit_attention_data; |
| 1881 | curlun->unit_attention_data = SS_NO_SENSE; |
| 1882 | return -EINVAL; |
| 1883 | } |
| 1884 | |
| 1885 | /* Check that only command bytes listed in the mask are non-zero */ |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 1886 | common->cmnd[1] &= 0x1f; /* Mask away the LUN */ |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 1887 | for (i = 1; i < cmnd_size; ++i) { |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 1888 | if (common->cmnd[i] && !(mask & (1 << i))) { |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 1889 | if (curlun) |
| 1890 | curlun->sense_data = SS_INVALID_FIELD_IN_CDB; |
| 1891 | return -EINVAL; |
| 1892 | } |
| 1893 | } |
| 1894 | |
| 1895 | /* If the medium isn't mounted and the command needs to access |
| 1896 | * it, return an error. */ |
| 1897 | if (curlun && !fsg_lun_is_open(curlun) && needs_medium) { |
| 1898 | curlun->sense_data = SS_MEDIUM_NOT_PRESENT; |
| 1899 | return -EINVAL; |
| 1900 | } |
| 1901 | |
| 1902 | return 0; |
| 1903 | } |
| 1904 | |
Yuping Luo | 144974e | 2011-10-25 19:13:10 -0700 | [diff] [blame] | 1905 | /* wrapper of check_command for data size in blocks handling */ |
| 1906 | static int check_command_size_in_blocks(struct fsg_common *common, |
| 1907 | int cmnd_size, enum data_direction data_dir, |
| 1908 | unsigned int mask, int needs_medium, const char *name) |
| 1909 | { |
| 1910 | if (common->curlun) |
| 1911 | common->data_size_from_cmnd <<= common->curlun->blkbits; |
| 1912 | return check_command(common, cmnd_size, data_dir, |
| 1913 | mask, needs_medium, name); |
| 1914 | } |
| 1915 | |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 1916 | static int do_scsi_command(struct fsg_common *common) |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 1917 | { |
| 1918 | struct fsg_buffhd *bh; |
| 1919 | int rc; |
| 1920 | int reply = -EINVAL; |
| 1921 | int i; |
| 1922 | static char unknown[16]; |
| 1923 | |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 1924 | dump_cdb(common); |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 1925 | |
| 1926 | /* Wait for the next buffer to become available for data or status */ |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 1927 | bh = common->next_buffhd_to_fill; |
| 1928 | common->next_buffhd_to_drain = bh; |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 1929 | while (bh->state != BUF_STATE_EMPTY) { |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 1930 | rc = sleep_thread(common); |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 1931 | if (rc) |
| 1932 | return rc; |
| 1933 | } |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 1934 | common->phase_error = 0; |
| 1935 | common->short_packet_received = 0; |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 1936 | |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 1937 | down_read(&common->filesem); /* We're using the backing file */ |
| 1938 | switch (common->cmnd[0]) { |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 1939 | |
Michal Nazarewicz | 0a6a717 | 2010-10-07 14:46:15 +0200 | [diff] [blame] | 1940 | case INQUIRY: |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 1941 | common->data_size_from_cmnd = common->cmnd[4]; |
| 1942 | reply = check_command(common, 6, DATA_DIR_TO_HOST, |
Michal Nazarewicz | d26a6aa | 2009-11-09 14:15:23 +0100 | [diff] [blame] | 1943 | (1<<4), 0, |
| 1944 | "INQUIRY"); |
| 1945 | if (reply == 0) |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 1946 | reply = do_inquiry(common, bh); |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 1947 | break; |
| 1948 | |
Michal Nazarewicz | 0a6a717 | 2010-10-07 14:46:15 +0200 | [diff] [blame] | 1949 | case MODE_SELECT: |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 1950 | common->data_size_from_cmnd = common->cmnd[4]; |
| 1951 | reply = check_command(common, 6, DATA_DIR_FROM_HOST, |
Michal Nazarewicz | d26a6aa | 2009-11-09 14:15:23 +0100 | [diff] [blame] | 1952 | (1<<1) | (1<<4), 0, |
| 1953 | "MODE SELECT(6)"); |
| 1954 | if (reply == 0) |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 1955 | reply = do_mode_select(common, bh); |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 1956 | break; |
| 1957 | |
Michal Nazarewicz | 0a6a717 | 2010-10-07 14:46:15 +0200 | [diff] [blame] | 1958 | case MODE_SELECT_10: |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 1959 | common->data_size_from_cmnd = |
| 1960 | get_unaligned_be16(&common->cmnd[7]); |
| 1961 | reply = check_command(common, 10, DATA_DIR_FROM_HOST, |
Michal Nazarewicz | d26a6aa | 2009-11-09 14:15:23 +0100 | [diff] [blame] | 1962 | (1<<1) | (3<<7), 0, |
| 1963 | "MODE SELECT(10)"); |
| 1964 | if (reply == 0) |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 1965 | reply = do_mode_select(common, bh); |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 1966 | break; |
| 1967 | |
Michal Nazarewicz | 0a6a717 | 2010-10-07 14:46:15 +0200 | [diff] [blame] | 1968 | case MODE_SENSE: |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 1969 | common->data_size_from_cmnd = common->cmnd[4]; |
| 1970 | reply = check_command(common, 6, DATA_DIR_TO_HOST, |
Michal Nazarewicz | d26a6aa | 2009-11-09 14:15:23 +0100 | [diff] [blame] | 1971 | (1<<1) | (1<<2) | (1<<4), 0, |
| 1972 | "MODE SENSE(6)"); |
| 1973 | if (reply == 0) |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 1974 | reply = do_mode_sense(common, bh); |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 1975 | break; |
| 1976 | |
Michal Nazarewicz | 0a6a717 | 2010-10-07 14:46:15 +0200 | [diff] [blame] | 1977 | case MODE_SENSE_10: |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 1978 | common->data_size_from_cmnd = |
| 1979 | get_unaligned_be16(&common->cmnd[7]); |
| 1980 | reply = check_command(common, 10, DATA_DIR_TO_HOST, |
Michal Nazarewicz | d26a6aa | 2009-11-09 14:15:23 +0100 | [diff] [blame] | 1981 | (1<<1) | (1<<2) | (3<<7), 0, |
| 1982 | "MODE SENSE(10)"); |
| 1983 | if (reply == 0) |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 1984 | reply = do_mode_sense(common, bh); |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 1985 | break; |
| 1986 | |
Michal Nazarewicz | 0a6a717 | 2010-10-07 14:46:15 +0200 | [diff] [blame] | 1987 | case ALLOW_MEDIUM_REMOVAL: |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 1988 | common->data_size_from_cmnd = 0; |
| 1989 | reply = check_command(common, 6, DATA_DIR_NONE, |
Michal Nazarewicz | d26a6aa | 2009-11-09 14:15:23 +0100 | [diff] [blame] | 1990 | (1<<4), 0, |
| 1991 | "PREVENT-ALLOW MEDIUM REMOVAL"); |
| 1992 | if (reply == 0) |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 1993 | reply = do_prevent_allow(common); |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 1994 | break; |
| 1995 | |
Michal Nazarewicz | 0a6a717 | 2010-10-07 14:46:15 +0200 | [diff] [blame] | 1996 | case READ_6: |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 1997 | i = common->cmnd[4]; |
Yuping Luo | 144974e | 2011-10-25 19:13:10 -0700 | [diff] [blame] | 1998 | common->data_size_from_cmnd = (i == 0) ? 256 : i; |
| 1999 | reply = check_command_size_in_blocks(common, 6, |
| 2000 | DATA_DIR_TO_HOST, |
Michal Nazarewicz | d26a6aa | 2009-11-09 14:15:23 +0100 | [diff] [blame] | 2001 | (7<<1) | (1<<4), 1, |
| 2002 | "READ(6)"); |
| 2003 | if (reply == 0) |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 2004 | reply = do_read(common); |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 2005 | break; |
| 2006 | |
Michal Nazarewicz | 0a6a717 | 2010-10-07 14:46:15 +0200 | [diff] [blame] | 2007 | case READ_10: |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 2008 | common->data_size_from_cmnd = |
Yuping Luo | 144974e | 2011-10-25 19:13:10 -0700 | [diff] [blame] | 2009 | get_unaligned_be16(&common->cmnd[7]); |
| 2010 | reply = check_command_size_in_blocks(common, 10, |
| 2011 | DATA_DIR_TO_HOST, |
Michal Nazarewicz | d26a6aa | 2009-11-09 14:15:23 +0100 | [diff] [blame] | 2012 | (1<<1) | (0xf<<2) | (3<<7), 1, |
| 2013 | "READ(10)"); |
| 2014 | if (reply == 0) |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 2015 | reply = do_read(common); |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 2016 | break; |
| 2017 | |
Michal Nazarewicz | 0a6a717 | 2010-10-07 14:46:15 +0200 | [diff] [blame] | 2018 | case READ_12: |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 2019 | common->data_size_from_cmnd = |
Yuping Luo | 144974e | 2011-10-25 19:13:10 -0700 | [diff] [blame] | 2020 | get_unaligned_be32(&common->cmnd[6]); |
| 2021 | reply = check_command_size_in_blocks(common, 12, |
| 2022 | DATA_DIR_TO_HOST, |
Michal Nazarewicz | d26a6aa | 2009-11-09 14:15:23 +0100 | [diff] [blame] | 2023 | (1<<1) | (0xf<<2) | (0xf<<6), 1, |
| 2024 | "READ(12)"); |
| 2025 | if (reply == 0) |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 2026 | reply = do_read(common); |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 2027 | break; |
| 2028 | |
Michal Nazarewicz | 0a6a717 | 2010-10-07 14:46:15 +0200 | [diff] [blame] | 2029 | case READ_CAPACITY: |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 2030 | common->data_size_from_cmnd = 8; |
| 2031 | reply = check_command(common, 10, DATA_DIR_TO_HOST, |
Michal Nazarewicz | d26a6aa | 2009-11-09 14:15:23 +0100 | [diff] [blame] | 2032 | (0xf<<2) | (1<<8), 1, |
| 2033 | "READ CAPACITY"); |
| 2034 | if (reply == 0) |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 2035 | reply = do_read_capacity(common, bh); |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 2036 | break; |
| 2037 | |
Michal Nazarewicz | 0a6a717 | 2010-10-07 14:46:15 +0200 | [diff] [blame] | 2038 | case READ_HEADER: |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 2039 | if (!common->curlun || !common->curlun->cdrom) |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 2040 | goto unknown_cmnd; |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 2041 | common->data_size_from_cmnd = |
| 2042 | get_unaligned_be16(&common->cmnd[7]); |
| 2043 | reply = check_command(common, 10, DATA_DIR_TO_HOST, |
Michal Nazarewicz | d26a6aa | 2009-11-09 14:15:23 +0100 | [diff] [blame] | 2044 | (3<<7) | (0x1f<<1), 1, |
| 2045 | "READ HEADER"); |
| 2046 | if (reply == 0) |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 2047 | reply = do_read_header(common, bh); |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 2048 | break; |
| 2049 | |
Michal Nazarewicz | 0a6a717 | 2010-10-07 14:46:15 +0200 | [diff] [blame] | 2050 | case READ_TOC: |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 2051 | if (!common->curlun || !common->curlun->cdrom) |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 2052 | goto unknown_cmnd; |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 2053 | common->data_size_from_cmnd = |
| 2054 | get_unaligned_be16(&common->cmnd[7]); |
| 2055 | reply = check_command(common, 10, DATA_DIR_TO_HOST, |
Michal Nazarewicz | d26a6aa | 2009-11-09 14:15:23 +0100 | [diff] [blame] | 2056 | (7<<6) | (1<<1), 1, |
| 2057 | "READ TOC"); |
| 2058 | if (reply == 0) |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 2059 | reply = do_read_toc(common, bh); |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 2060 | break; |
| 2061 | |
Michal Nazarewicz | 0a6a717 | 2010-10-07 14:46:15 +0200 | [diff] [blame] | 2062 | case READ_FORMAT_CAPACITIES: |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 2063 | common->data_size_from_cmnd = |
| 2064 | get_unaligned_be16(&common->cmnd[7]); |
| 2065 | reply = check_command(common, 10, DATA_DIR_TO_HOST, |
Michal Nazarewicz | d26a6aa | 2009-11-09 14:15:23 +0100 | [diff] [blame] | 2066 | (3<<7), 1, |
| 2067 | "READ FORMAT CAPACITIES"); |
| 2068 | if (reply == 0) |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 2069 | reply = do_read_format_capacities(common, bh); |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 2070 | break; |
| 2071 | |
Michal Nazarewicz | 0a6a717 | 2010-10-07 14:46:15 +0200 | [diff] [blame] | 2072 | case REQUEST_SENSE: |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 2073 | common->data_size_from_cmnd = common->cmnd[4]; |
| 2074 | reply = check_command(common, 6, DATA_DIR_TO_HOST, |
Michal Nazarewicz | d26a6aa | 2009-11-09 14:15:23 +0100 | [diff] [blame] | 2075 | (1<<4), 0, |
| 2076 | "REQUEST SENSE"); |
| 2077 | if (reply == 0) |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 2078 | reply = do_request_sense(common, bh); |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 2079 | break; |
| 2080 | |
Michal Nazarewicz | 0a6a717 | 2010-10-07 14:46:15 +0200 | [diff] [blame] | 2081 | case START_STOP: |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 2082 | common->data_size_from_cmnd = 0; |
| 2083 | reply = check_command(common, 6, DATA_DIR_NONE, |
Michal Nazarewicz | d26a6aa | 2009-11-09 14:15:23 +0100 | [diff] [blame] | 2084 | (1<<1) | (1<<4), 0, |
| 2085 | "START-STOP UNIT"); |
| 2086 | if (reply == 0) |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 2087 | reply = do_start_stop(common); |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 2088 | break; |
| 2089 | |
Michal Nazarewicz | 0a6a717 | 2010-10-07 14:46:15 +0200 | [diff] [blame] | 2090 | case SYNCHRONIZE_CACHE: |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 2091 | common->data_size_from_cmnd = 0; |
| 2092 | reply = check_command(common, 10, DATA_DIR_NONE, |
Michal Nazarewicz | d26a6aa | 2009-11-09 14:15:23 +0100 | [diff] [blame] | 2093 | (0xf<<2) | (3<<7), 1, |
| 2094 | "SYNCHRONIZE CACHE"); |
| 2095 | if (reply == 0) |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 2096 | reply = do_synchronize_cache(common); |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 2097 | break; |
| 2098 | |
Michal Nazarewicz | 0a6a717 | 2010-10-07 14:46:15 +0200 | [diff] [blame] | 2099 | case TEST_UNIT_READY: |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 2100 | common->data_size_from_cmnd = 0; |
| 2101 | reply = check_command(common, 6, DATA_DIR_NONE, |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 2102 | 0, 1, |
| 2103 | "TEST UNIT READY"); |
| 2104 | break; |
| 2105 | |
Michal Nazarewicz | b73af61 | 2010-10-28 17:31:23 +0200 | [diff] [blame] | 2106 | /* |
| 2107 | * Although optional, this command is used by MS-Windows. We |
| 2108 | * support a minimal version: BytChk must be 0. |
| 2109 | */ |
Michal Nazarewicz | 0a6a717 | 2010-10-07 14:46:15 +0200 | [diff] [blame] | 2110 | case VERIFY: |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 2111 | common->data_size_from_cmnd = 0; |
| 2112 | reply = check_command(common, 10, DATA_DIR_NONE, |
Michal Nazarewicz | d26a6aa | 2009-11-09 14:15:23 +0100 | [diff] [blame] | 2113 | (1<<1) | (0xf<<2) | (3<<7), 1, |
| 2114 | "VERIFY"); |
| 2115 | if (reply == 0) |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 2116 | reply = do_verify(common); |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 2117 | break; |
| 2118 | |
Michal Nazarewicz | 0a6a717 | 2010-10-07 14:46:15 +0200 | [diff] [blame] | 2119 | case WRITE_6: |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 2120 | i = common->cmnd[4]; |
Yuping Luo | 144974e | 2011-10-25 19:13:10 -0700 | [diff] [blame] | 2121 | common->data_size_from_cmnd = (i == 0) ? 256 : i; |
| 2122 | reply = check_command_size_in_blocks(common, 6, |
| 2123 | DATA_DIR_FROM_HOST, |
Michal Nazarewicz | d26a6aa | 2009-11-09 14:15:23 +0100 | [diff] [blame] | 2124 | (7<<1) | (1<<4), 1, |
| 2125 | "WRITE(6)"); |
| 2126 | if (reply == 0) |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 2127 | reply = do_write(common); |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 2128 | break; |
| 2129 | |
Michal Nazarewicz | 0a6a717 | 2010-10-07 14:46:15 +0200 | [diff] [blame] | 2130 | case WRITE_10: |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 2131 | common->data_size_from_cmnd = |
Yuping Luo | 144974e | 2011-10-25 19:13:10 -0700 | [diff] [blame] | 2132 | get_unaligned_be16(&common->cmnd[7]); |
| 2133 | reply = check_command_size_in_blocks(common, 10, |
| 2134 | DATA_DIR_FROM_HOST, |
Michal Nazarewicz | d26a6aa | 2009-11-09 14:15:23 +0100 | [diff] [blame] | 2135 | (1<<1) | (0xf<<2) | (3<<7), 1, |
| 2136 | "WRITE(10)"); |
| 2137 | if (reply == 0) |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 2138 | reply = do_write(common); |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 2139 | break; |
| 2140 | |
Michal Nazarewicz | 0a6a717 | 2010-10-07 14:46:15 +0200 | [diff] [blame] | 2141 | case WRITE_12: |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 2142 | common->data_size_from_cmnd = |
Yuping Luo | 144974e | 2011-10-25 19:13:10 -0700 | [diff] [blame] | 2143 | get_unaligned_be32(&common->cmnd[6]); |
| 2144 | reply = check_command_size_in_blocks(common, 12, |
| 2145 | DATA_DIR_FROM_HOST, |
Michal Nazarewicz | d26a6aa | 2009-11-09 14:15:23 +0100 | [diff] [blame] | 2146 | (1<<1) | (0xf<<2) | (0xf<<6), 1, |
| 2147 | "WRITE(12)"); |
| 2148 | if (reply == 0) |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 2149 | reply = do_write(common); |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 2150 | break; |
| 2151 | |
Michal Nazarewicz | b73af61 | 2010-10-28 17:31:23 +0200 | [diff] [blame] | 2152 | /* |
| 2153 | * Some mandatory commands that we recognize but don't implement. |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 2154 | * They don't mean much in this setting. It's left as an exercise |
| 2155 | * for anyone interested to implement RESERVE and RELEASE in terms |
Michal Nazarewicz | b73af61 | 2010-10-28 17:31:23 +0200 | [diff] [blame] | 2156 | * of Posix locks. |
| 2157 | */ |
Michal Nazarewicz | 0a6a717 | 2010-10-07 14:46:15 +0200 | [diff] [blame] | 2158 | case FORMAT_UNIT: |
| 2159 | case RELEASE: |
| 2160 | case RESERVE: |
| 2161 | case SEND_DIAGNOSTIC: |
Michal Nazarewicz | d26a6aa | 2009-11-09 14:15:23 +0100 | [diff] [blame] | 2162 | /* Fall through */ |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 2163 | |
| 2164 | default: |
Michal Nazarewicz | d26a6aa | 2009-11-09 14:15:23 +0100 | [diff] [blame] | 2165 | unknown_cmnd: |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 2166 | common->data_size_from_cmnd = 0; |
| 2167 | sprintf(unknown, "Unknown x%02x", common->cmnd[0]); |
| 2168 | reply = check_command(common, common->cmnd_size, |
Alan Stern | c85dcda | 2012-04-11 16:09:10 -0400 | [diff] [blame] | 2169 | DATA_DIR_UNKNOWN, ~0, 0, unknown); |
Michal Nazarewicz | d26a6aa | 2009-11-09 14:15:23 +0100 | [diff] [blame] | 2170 | if (reply == 0) { |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 2171 | common->curlun->sense_data = SS_INVALID_COMMAND; |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 2172 | reply = -EINVAL; |
| 2173 | } |
| 2174 | break; |
| 2175 | } |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 2176 | up_read(&common->filesem); |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 2177 | |
| 2178 | if (reply == -EINTR || signal_pending(current)) |
| 2179 | return -EINTR; |
| 2180 | |
| 2181 | /* Set up the single reply buffer for finish_reply() */ |
| 2182 | if (reply == -EINVAL) |
Michal Nazarewicz | d26a6aa | 2009-11-09 14:15:23 +0100 | [diff] [blame] | 2183 | reply = 0; /* Error reply length */ |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 2184 | if (reply >= 0 && common->data_dir == DATA_DIR_TO_HOST) { |
Michal Nazarewicz | b73af61 | 2010-10-28 17:31:23 +0200 | [diff] [blame] | 2185 | reply = min((u32)reply, common->data_size_from_cmnd); |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 2186 | bh->inreq->length = reply; |
| 2187 | bh->state = BUF_STATE_FULL; |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 2188 | common->residue -= reply; |
Michal Nazarewicz | d26a6aa | 2009-11-09 14:15:23 +0100 | [diff] [blame] | 2189 | } /* Otherwise it's already set */ |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 2190 | |
| 2191 | return 0; |
| 2192 | } |
| 2193 | |
| 2194 | |
| 2195 | /*-------------------------------------------------------------------------*/ |
| 2196 | |
| 2197 | static int received_cbw(struct fsg_dev *fsg, struct fsg_buffhd *bh) |
| 2198 | { |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 2199 | struct usb_request *req = bh->outreq; |
Sebastian Andrzej Siewior | 7ac4704 | 2012-02-25 18:28:09 +0100 | [diff] [blame] | 2200 | struct bulk_cb_wrap *cbw = req->buf; |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 2201 | struct fsg_common *common = fsg->common; |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 2202 | |
| 2203 | /* Was this a real packet? Should it be ignored? */ |
| 2204 | if (req->status || test_bit(IGNORE_BULK_OUT, &fsg->atomic_bitflags)) |
| 2205 | return -EINVAL; |
| 2206 | |
| 2207 | /* Is the CBW valid? */ |
Sebastian Andrzej Siewior | 775dafd | 2012-02-25 18:28:11 +0100 | [diff] [blame] | 2208 | if (req->actual != US_BULK_CB_WRAP_LEN || |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 2209 | cbw->Signature != cpu_to_le32( |
Sebastian Andrzej Siewior | 775dafd | 2012-02-25 18:28:11 +0100 | [diff] [blame] | 2210 | US_BULK_CB_SIGN)) { |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 2211 | DBG(fsg, "invalid CBW: len %u sig 0x%x\n", |
| 2212 | req->actual, |
| 2213 | le32_to_cpu(cbw->Signature)); |
| 2214 | |
Michal Nazarewicz | b73af61 | 2010-10-28 17:31:23 +0200 | [diff] [blame] | 2215 | /* |
| 2216 | * The Bulk-only spec says we MUST stall the IN endpoint |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 2217 | * (6.6.1), so it's unavoidable. It also says we must |
| 2218 | * retain this state until the next reset, but there's |
| 2219 | * no way to tell the controller driver it should ignore |
| 2220 | * Clear-Feature(HALT) requests. |
| 2221 | * |
| 2222 | * We aren't required to halt the OUT endpoint; instead |
| 2223 | * we can simply accept and discard any data received |
Michal Nazarewicz | b73af61 | 2010-10-28 17:31:23 +0200 | [diff] [blame] | 2224 | * until the next reset. |
| 2225 | */ |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 2226 | wedge_bulk_in_endpoint(fsg); |
| 2227 | set_bit(IGNORE_BULK_OUT, &fsg->atomic_bitflags); |
| 2228 | return -EINVAL; |
| 2229 | } |
| 2230 | |
| 2231 | /* Is the CBW meaningful? */ |
Sebastian Andrzej Siewior | 775dafd | 2012-02-25 18:28:11 +0100 | [diff] [blame] | 2232 | if (cbw->Lun >= FSG_MAX_LUNS || cbw->Flags & ~US_BULK_FLAG_IN || |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 2233 | cbw->Length <= 0 || cbw->Length > MAX_COMMAND_SIZE) { |
| 2234 | DBG(fsg, "non-meaningful CBW: lun = %u, flags = 0x%x, " |
| 2235 | "cmdlen %u\n", |
| 2236 | cbw->Lun, cbw->Flags, cbw->Length); |
| 2237 | |
Michal Nazarewicz | b73af61 | 2010-10-28 17:31:23 +0200 | [diff] [blame] | 2238 | /* |
| 2239 | * We can do anything we want here, so let's stall the |
| 2240 | * bulk pipes if we are allowed to. |
| 2241 | */ |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 2242 | if (common->can_stall) { |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 2243 | fsg_set_halt(fsg, fsg->bulk_out); |
| 2244 | halt_bulk_in_endpoint(fsg); |
| 2245 | } |
| 2246 | return -EINVAL; |
| 2247 | } |
| 2248 | |
| 2249 | /* Save the command for later */ |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 2250 | common->cmnd_size = cbw->Length; |
| 2251 | memcpy(common->cmnd, cbw->CDB, common->cmnd_size); |
Sebastian Andrzej Siewior | 775dafd | 2012-02-25 18:28:11 +0100 | [diff] [blame] | 2252 | if (cbw->Flags & US_BULK_FLAG_IN) |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 2253 | common->data_dir = DATA_DIR_TO_HOST; |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 2254 | else |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 2255 | common->data_dir = DATA_DIR_FROM_HOST; |
| 2256 | common->data_size = le32_to_cpu(cbw->DataTransferLength); |
| 2257 | if (common->data_size == 0) |
| 2258 | common->data_dir = DATA_DIR_NONE; |
| 2259 | common->lun = cbw->Lun; |
Yuping Luo | 144974e | 2011-10-25 19:13:10 -0700 | [diff] [blame] | 2260 | if (common->lun >= 0 && common->lun < common->nluns) |
| 2261 | common->curlun = &common->luns[common->lun]; |
| 2262 | else |
| 2263 | common->curlun = NULL; |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 2264 | common->tag = cbw->Tag; |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 2265 | return 0; |
| 2266 | } |
| 2267 | |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 2268 | static int get_next_command(struct fsg_common *common) |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 2269 | { |
| 2270 | struct fsg_buffhd *bh; |
| 2271 | int rc = 0; |
| 2272 | |
Michal Nazarewicz | 93bcf12 | 2009-10-28 16:57:19 +0100 | [diff] [blame] | 2273 | /* Wait for the next buffer to become available */ |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 2274 | bh = common->next_buffhd_to_fill; |
Michal Nazarewicz | 93bcf12 | 2009-10-28 16:57:19 +0100 | [diff] [blame] | 2275 | while (bh->state != BUF_STATE_EMPTY) { |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 2276 | rc = sleep_thread(common); |
Michal Nazarewicz | 93bcf12 | 2009-10-28 16:57:19 +0100 | [diff] [blame] | 2277 | if (rc) |
| 2278 | return rc; |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 2279 | } |
Michal Nazarewicz | 93bcf12 | 2009-10-28 16:57:19 +0100 | [diff] [blame] | 2280 | |
| 2281 | /* Queue a request to read a Bulk-only CBW */ |
Sebastian Andrzej Siewior | 775dafd | 2012-02-25 18:28:11 +0100 | [diff] [blame] | 2282 | set_bulk_out_req_length(common, bh, US_BULK_CB_WRAP_LEN); |
Michal Nazarewicz | fe52f79 | 2010-10-28 17:31:21 +0200 | [diff] [blame] | 2283 | if (!start_out_transfer(common, bh)) |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 2284 | /* Don't know what to do if common->fsg is NULL */ |
| 2285 | return -EIO; |
Michal Nazarewicz | 93bcf12 | 2009-10-28 16:57:19 +0100 | [diff] [blame] | 2286 | |
Michal Nazarewicz | b73af61 | 2010-10-28 17:31:23 +0200 | [diff] [blame] | 2287 | /* |
| 2288 | * We will drain the buffer in software, which means we |
Michal Nazarewicz | 93bcf12 | 2009-10-28 16:57:19 +0100 | [diff] [blame] | 2289 | * can reuse it for the next filling. No need to advance |
Michal Nazarewicz | b73af61 | 2010-10-28 17:31:23 +0200 | [diff] [blame] | 2290 | * next_buffhd_to_fill. |
| 2291 | */ |
Michal Nazarewicz | 93bcf12 | 2009-10-28 16:57:19 +0100 | [diff] [blame] | 2292 | |
| 2293 | /* Wait for the CBW to arrive */ |
| 2294 | while (bh->state != BUF_STATE_FULL) { |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 2295 | rc = sleep_thread(common); |
Michal Nazarewicz | 93bcf12 | 2009-10-28 16:57:19 +0100 | [diff] [blame] | 2296 | if (rc) |
| 2297 | return rc; |
| 2298 | } |
| 2299 | smp_rmb(); |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 2300 | rc = fsg_is_set(common) ? received_cbw(common->fsg, bh) : -EIO; |
Michal Nazarewicz | 93bcf12 | 2009-10-28 16:57:19 +0100 | [diff] [blame] | 2301 | bh->state = BUF_STATE_EMPTY; |
| 2302 | |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 2303 | return rc; |
| 2304 | } |
| 2305 | |
| 2306 | |
| 2307 | /*-------------------------------------------------------------------------*/ |
| 2308 | |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 2309 | static int alloc_request(struct fsg_common *common, struct usb_ep *ep, |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 2310 | struct usb_request **preq) |
| 2311 | { |
| 2312 | *preq = usb_ep_alloc_request(ep, GFP_ATOMIC); |
| 2313 | if (*preq) |
| 2314 | return 0; |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 2315 | ERROR(common, "can't allocate request for %s\n", ep->name); |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 2316 | return -ENOMEM; |
| 2317 | } |
| 2318 | |
Michal Nazarewicz | b894f60 | 2010-06-25 16:29:28 +0200 | [diff] [blame] | 2319 | /* Reset interface setting and re-init endpoint state (toggle etc). */ |
| 2320 | static int do_set_interface(struct fsg_common *common, struct fsg_dev *new_fsg) |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 2321 | { |
Michal Nazarewicz | b894f60 | 2010-06-25 16:29:28 +0200 | [diff] [blame] | 2322 | struct fsg_dev *fsg; |
| 2323 | int i, rc = 0; |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 2324 | |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 2325 | if (common->running) |
| 2326 | DBG(common, "reset interface\n"); |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 2327 | |
| 2328 | reset: |
| 2329 | /* Deallocate the requests */ |
Michal Nazarewicz | b894f60 | 2010-06-25 16:29:28 +0200 | [diff] [blame] | 2330 | if (common->fsg) { |
| 2331 | fsg = common->fsg; |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 2332 | |
Per Forlin | 6532c7f | 2011-08-19 21:21:27 +0200 | [diff] [blame] | 2333 | for (i = 0; i < fsg_num_buffers; ++i) { |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 2334 | struct fsg_buffhd *bh = &common->buffhds[i]; |
| 2335 | |
| 2336 | if (bh->inreq) { |
| 2337 | usb_ep_free_request(fsg->bulk_in, bh->inreq); |
| 2338 | bh->inreq = NULL; |
| 2339 | } |
| 2340 | if (bh->outreq) { |
| 2341 | usb_ep_free_request(fsg->bulk_out, bh->outreq); |
| 2342 | bh->outreq = NULL; |
| 2343 | } |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 2344 | } |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 2345 | |
| 2346 | /* Disable the endpoints */ |
| 2347 | if (fsg->bulk_in_enabled) { |
| 2348 | usb_ep_disable(fsg->bulk_in); |
| 2349 | fsg->bulk_in_enabled = 0; |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 2350 | } |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 2351 | if (fsg->bulk_out_enabled) { |
| 2352 | usb_ep_disable(fsg->bulk_out); |
| 2353 | fsg->bulk_out_enabled = 0; |
| 2354 | } |
| 2355 | |
Michal Nazarewicz | b894f60 | 2010-06-25 16:29:28 +0200 | [diff] [blame] | 2356 | common->fsg = NULL; |
| 2357 | wake_up(&common->fsg_wait); |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 2358 | } |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 2359 | |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 2360 | common->running = 0; |
Michal Nazarewicz | b894f60 | 2010-06-25 16:29:28 +0200 | [diff] [blame] | 2361 | if (!new_fsg || rc) |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 2362 | return rc; |
| 2363 | |
Michal Nazarewicz | b894f60 | 2010-06-25 16:29:28 +0200 | [diff] [blame] | 2364 | common->fsg = new_fsg; |
| 2365 | fsg = common->fsg; |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 2366 | |
Michal Nazarewicz | b894f60 | 2010-06-25 16:29:28 +0200 | [diff] [blame] | 2367 | /* Enable the endpoints */ |
Tatyana Brokhman | ea2a1df | 2011-06-28 16:33:50 +0300 | [diff] [blame] | 2368 | rc = config_ep_by_speed(common->gadget, &(fsg->function), fsg->bulk_in); |
Michal Nazarewicz | b894f60 | 2010-06-25 16:29:28 +0200 | [diff] [blame] | 2369 | if (rc) |
| 2370 | goto reset; |
Tatyana Brokhman | ea2a1df | 2011-06-28 16:33:50 +0300 | [diff] [blame] | 2371 | rc = usb_ep_enable(fsg->bulk_in); |
| 2372 | if (rc) |
| 2373 | goto reset; |
| 2374 | fsg->bulk_in->driver_data = common; |
Michal Nazarewicz | b894f60 | 2010-06-25 16:29:28 +0200 | [diff] [blame] | 2375 | fsg->bulk_in_enabled = 1; |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 2376 | |
Tatyana Brokhman | ea2a1df | 2011-06-28 16:33:50 +0300 | [diff] [blame] | 2377 | rc = config_ep_by_speed(common->gadget, &(fsg->function), |
| 2378 | fsg->bulk_out); |
Michal Nazarewicz | b894f60 | 2010-06-25 16:29:28 +0200 | [diff] [blame] | 2379 | if (rc) |
| 2380 | goto reset; |
Tatyana Brokhman | ea2a1df | 2011-06-28 16:33:50 +0300 | [diff] [blame] | 2381 | rc = usb_ep_enable(fsg->bulk_out); |
| 2382 | if (rc) |
| 2383 | goto reset; |
| 2384 | fsg->bulk_out->driver_data = common; |
Michal Nazarewicz | b894f60 | 2010-06-25 16:29:28 +0200 | [diff] [blame] | 2385 | fsg->bulk_out_enabled = 1; |
Kuninori Morimoto | 29cc889 | 2011-08-23 03:12:03 -0700 | [diff] [blame] | 2386 | common->bulk_out_maxpacket = usb_endpoint_maxp(fsg->bulk_out->desc); |
Michal Nazarewicz | b894f60 | 2010-06-25 16:29:28 +0200 | [diff] [blame] | 2387 | clear_bit(IGNORE_BULK_OUT, &fsg->atomic_bitflags); |
| 2388 | |
| 2389 | /* Allocate the requests */ |
Per Forlin | 6532c7f | 2011-08-19 21:21:27 +0200 | [diff] [blame] | 2390 | for (i = 0; i < fsg_num_buffers; ++i) { |
Michal Nazarewicz | b894f60 | 2010-06-25 16:29:28 +0200 | [diff] [blame] | 2391 | struct fsg_buffhd *bh = &common->buffhds[i]; |
| 2392 | |
| 2393 | rc = alloc_request(common, fsg->bulk_in, &bh->inreq); |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 2394 | if (rc) |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 2395 | goto reset; |
Michal Nazarewicz | b894f60 | 2010-06-25 16:29:28 +0200 | [diff] [blame] | 2396 | rc = alloc_request(common, fsg->bulk_out, &bh->outreq); |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 2397 | if (rc) |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 2398 | goto reset; |
Michal Nazarewicz | b894f60 | 2010-06-25 16:29:28 +0200 | [diff] [blame] | 2399 | bh->inreq->buf = bh->outreq->buf = bh->buf; |
| 2400 | bh->inreq->context = bh->outreq->context = bh; |
| 2401 | bh->inreq->complete = bulk_in_complete; |
| 2402 | bh->outreq->complete = bulk_out_complete; |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 2403 | } |
| 2404 | |
Michal Nazarewicz | b894f60 | 2010-06-25 16:29:28 +0200 | [diff] [blame] | 2405 | common->running = 1; |
| 2406 | for (i = 0; i < common->nluns; ++i) |
| 2407 | common->luns[i].unit_attention_data = SS_RESET_OCCURRED; |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 2408 | return rc; |
| 2409 | } |
| 2410 | |
| 2411 | |
Michal Nazarewicz | d23b0f0 | 2009-11-09 14:15:20 +0100 | [diff] [blame] | 2412 | /****************************** ALT CONFIGS ******************************/ |
| 2413 | |
Michal Nazarewicz | d23b0f0 | 2009-11-09 14:15:20 +0100 | [diff] [blame] | 2414 | static int fsg_set_alt(struct usb_function *f, unsigned intf, unsigned alt) |
| 2415 | { |
| 2416 | struct fsg_dev *fsg = fsg_from_func(f); |
Michal Nazarewicz | b894f60 | 2010-06-25 16:29:28 +0200 | [diff] [blame] | 2417 | fsg->common->new_fsg = fsg; |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 2418 | raise_exception(fsg->common, FSG_STATE_CONFIG_CHANGE); |
Roger Quadros | 95ed323 | 2011-05-09 13:08:07 +0300 | [diff] [blame] | 2419 | return USB_GADGET_DELAYED_STATUS; |
Michal Nazarewicz | d23b0f0 | 2009-11-09 14:15:20 +0100 | [diff] [blame] | 2420 | } |
| 2421 | |
| 2422 | static void fsg_disable(struct usb_function *f) |
| 2423 | { |
| 2424 | struct fsg_dev *fsg = fsg_from_func(f); |
Michal Nazarewicz | b894f60 | 2010-06-25 16:29:28 +0200 | [diff] [blame] | 2425 | fsg->common->new_fsg = NULL; |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 2426 | raise_exception(fsg->common, FSG_STATE_CONFIG_CHANGE); |
Michal Nazarewicz | d23b0f0 | 2009-11-09 14:15:20 +0100 | [diff] [blame] | 2427 | } |
| 2428 | |
| 2429 | |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 2430 | /*-------------------------------------------------------------------------*/ |
| 2431 | |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 2432 | static void handle_exception(struct fsg_common *common) |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 2433 | { |
| 2434 | siginfo_t info; |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 2435 | int i; |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 2436 | struct fsg_buffhd *bh; |
| 2437 | enum fsg_state old_state; |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 2438 | struct fsg_lun *curlun; |
| 2439 | unsigned int exception_req_tag; |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 2440 | |
Michal Nazarewicz | b73af61 | 2010-10-28 17:31:23 +0200 | [diff] [blame] | 2441 | /* |
| 2442 | * Clear the existing signals. Anything but SIGUSR1 is converted |
| 2443 | * into a high-priority EXIT exception. |
| 2444 | */ |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 2445 | for (;;) { |
Michal Nazarewicz | b894f60 | 2010-06-25 16:29:28 +0200 | [diff] [blame] | 2446 | int sig = |
| 2447 | dequeue_signal_lock(current, ¤t->blocked, &info); |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 2448 | if (!sig) |
| 2449 | break; |
| 2450 | if (sig != SIGUSR1) { |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 2451 | if (common->state < FSG_STATE_EXIT) |
| 2452 | DBG(common, "Main thread exiting on signal\n"); |
| 2453 | raise_exception(common, FSG_STATE_EXIT); |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 2454 | } |
| 2455 | } |
| 2456 | |
| 2457 | /* Cancel all the pending transfers */ |
Michal Nazarewicz | b894f60 | 2010-06-25 16:29:28 +0200 | [diff] [blame] | 2458 | if (likely(common->fsg)) { |
Per Forlin | 6532c7f | 2011-08-19 21:21:27 +0200 | [diff] [blame] | 2459 | for (i = 0; i < fsg_num_buffers; ++i) { |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 2460 | bh = &common->buffhds[i]; |
| 2461 | if (bh->inreq_busy) |
| 2462 | usb_ep_dequeue(common->fsg->bulk_in, bh->inreq); |
| 2463 | if (bh->outreq_busy) |
| 2464 | usb_ep_dequeue(common->fsg->bulk_out, |
| 2465 | bh->outreq); |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 2466 | } |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 2467 | |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 2468 | /* Wait until everything is idle */ |
| 2469 | for (;;) { |
| 2470 | int num_active = 0; |
Per Forlin | 6532c7f | 2011-08-19 21:21:27 +0200 | [diff] [blame] | 2471 | for (i = 0; i < fsg_num_buffers; ++i) { |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 2472 | bh = &common->buffhds[i]; |
| 2473 | num_active += bh->inreq_busy + bh->outreq_busy; |
| 2474 | } |
| 2475 | if (num_active == 0) |
| 2476 | break; |
| 2477 | if (sleep_thread(common)) |
| 2478 | return; |
| 2479 | } |
| 2480 | |
| 2481 | /* Clear out the controller's fifos */ |
| 2482 | if (common->fsg->bulk_in_enabled) |
| 2483 | usb_ep_fifo_flush(common->fsg->bulk_in); |
| 2484 | if (common->fsg->bulk_out_enabled) |
| 2485 | usb_ep_fifo_flush(common->fsg->bulk_out); |
| 2486 | } |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 2487 | |
Michal Nazarewicz | b73af61 | 2010-10-28 17:31:23 +0200 | [diff] [blame] | 2488 | /* |
| 2489 | * Reset the I/O buffer states and pointers, the SCSI |
| 2490 | * state, and the exception. Then invoke the handler. |
| 2491 | */ |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 2492 | spin_lock_irq(&common->lock); |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 2493 | |
Per Forlin | 6532c7f | 2011-08-19 21:21:27 +0200 | [diff] [blame] | 2494 | for (i = 0; i < fsg_num_buffers; ++i) { |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 2495 | bh = &common->buffhds[i]; |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 2496 | bh->state = BUF_STATE_EMPTY; |
| 2497 | } |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 2498 | common->next_buffhd_to_fill = &common->buffhds[0]; |
| 2499 | common->next_buffhd_to_drain = &common->buffhds[0]; |
| 2500 | exception_req_tag = common->exception_req_tag; |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 2501 | old_state = common->state; |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 2502 | |
| 2503 | if (old_state == FSG_STATE_ABORT_BULK_OUT) |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 2504 | common->state = FSG_STATE_STATUS_PHASE; |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 2505 | else { |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 2506 | for (i = 0; i < common->nluns; ++i) { |
| 2507 | curlun = &common->luns[i]; |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 2508 | curlun->prevent_medium_removal = 0; |
Michal Nazarewicz | d26a6aa | 2009-11-09 14:15:23 +0100 | [diff] [blame] | 2509 | curlun->sense_data = SS_NO_SENSE; |
| 2510 | curlun->unit_attention_data = SS_NO_SENSE; |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 2511 | curlun->sense_data_info = 0; |
| 2512 | curlun->info_valid = 0; |
| 2513 | } |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 2514 | common->state = FSG_STATE_IDLE; |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 2515 | } |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 2516 | spin_unlock_irq(&common->lock); |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 2517 | |
| 2518 | /* Carry out any extra actions required for the exception */ |
| 2519 | switch (old_state) { |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 2520 | case FSG_STATE_ABORT_BULK_OUT: |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 2521 | send_status(common); |
| 2522 | spin_lock_irq(&common->lock); |
| 2523 | if (common->state == FSG_STATE_STATUS_PHASE) |
| 2524 | common->state = FSG_STATE_IDLE; |
| 2525 | spin_unlock_irq(&common->lock); |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 2526 | break; |
| 2527 | |
| 2528 | case FSG_STATE_RESET: |
Michal Nazarewicz | b73af61 | 2010-10-28 17:31:23 +0200 | [diff] [blame] | 2529 | /* |
| 2530 | * In case we were forced against our will to halt a |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 2531 | * bulk endpoint, clear the halt now. (The SuperH UDC |
Michal Nazarewicz | b73af61 | 2010-10-28 17:31:23 +0200 | [diff] [blame] | 2532 | * requires this.) |
| 2533 | */ |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 2534 | if (!fsg_is_set(common)) |
| 2535 | break; |
| 2536 | if (test_and_clear_bit(IGNORE_BULK_OUT, |
| 2537 | &common->fsg->atomic_bitflags)) |
| 2538 | usb_ep_clear_halt(common->fsg->bulk_in); |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 2539 | |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 2540 | if (common->ep0_req_tag == exception_req_tag) |
| 2541 | ep0_queue(common); /* Complete the status stage */ |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 2542 | |
Michal Nazarewicz | b73af61 | 2010-10-28 17:31:23 +0200 | [diff] [blame] | 2543 | /* |
| 2544 | * Technically this should go here, but it would only be |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 2545 | * a waste of time. Ditto for the INTERFACE_CHANGE and |
Michal Nazarewicz | b73af61 | 2010-10-28 17:31:23 +0200 | [diff] [blame] | 2546 | * CONFIG_CHANGE cases. |
| 2547 | */ |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 2548 | /* for (i = 0; i < common->nluns; ++i) */ |
| 2549 | /* common->luns[i].unit_attention_data = */ |
Michal Nazarewicz | d26a6aa | 2009-11-09 14:15:23 +0100 | [diff] [blame] | 2550 | /* SS_RESET_OCCURRED; */ |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 2551 | break; |
| 2552 | |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 2553 | case FSG_STATE_CONFIG_CHANGE: |
Michal Nazarewicz | b894f60 | 2010-06-25 16:29:28 +0200 | [diff] [blame] | 2554 | do_set_interface(common, common->new_fsg); |
Roger Quadros | 95ed323 | 2011-05-09 13:08:07 +0300 | [diff] [blame] | 2555 | if (common->new_fsg) |
| 2556 | usb_composite_setup_continue(common->cdev); |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 2557 | break; |
| 2558 | |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 2559 | case FSG_STATE_EXIT: |
| 2560 | case FSG_STATE_TERMINATED: |
Michal Nazarewicz | b894f60 | 2010-06-25 16:29:28 +0200 | [diff] [blame] | 2561 | do_set_interface(common, NULL); /* Free resources */ |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 2562 | spin_lock_irq(&common->lock); |
| 2563 | common->state = FSG_STATE_TERMINATED; /* Stop the thread */ |
| 2564 | spin_unlock_irq(&common->lock); |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 2565 | break; |
Michal Nazarewicz | d23b0f0 | 2009-11-09 14:15:20 +0100 | [diff] [blame] | 2566 | |
| 2567 | case FSG_STATE_INTERFACE_CHANGE: |
| 2568 | case FSG_STATE_DISCONNECT: |
| 2569 | case FSG_STATE_COMMAND_PHASE: |
| 2570 | case FSG_STATE_DATA_PHASE: |
| 2571 | case FSG_STATE_STATUS_PHASE: |
| 2572 | case FSG_STATE_IDLE: |
| 2573 | break; |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 2574 | } |
| 2575 | } |
| 2576 | |
| 2577 | |
| 2578 | /*-------------------------------------------------------------------------*/ |
| 2579 | |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 2580 | static int fsg_main_thread(void *common_) |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 2581 | { |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 2582 | struct fsg_common *common = common_; |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 2583 | |
Michal Nazarewicz | b73af61 | 2010-10-28 17:31:23 +0200 | [diff] [blame] | 2584 | /* |
| 2585 | * Allow the thread to be killed by a signal, but set the signal mask |
| 2586 | * to block everything but INT, TERM, KILL, and USR1. |
| 2587 | */ |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 2588 | allow_signal(SIGINT); |
| 2589 | allow_signal(SIGTERM); |
| 2590 | allow_signal(SIGKILL); |
| 2591 | allow_signal(SIGUSR1); |
| 2592 | |
| 2593 | /* Allow the thread to be frozen */ |
| 2594 | set_freezable(); |
| 2595 | |
Michal Nazarewicz | b73af61 | 2010-10-28 17:31:23 +0200 | [diff] [blame] | 2596 | /* |
| 2597 | * Arrange for userspace references to be interpreted as kernel |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 2598 | * pointers. That way we can pass a kernel pointer to a routine |
Michal Nazarewicz | b73af61 | 2010-10-28 17:31:23 +0200 | [diff] [blame] | 2599 | * that expects a __user pointer and it will work okay. |
| 2600 | */ |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 2601 | set_fs(get_ds()); |
| 2602 | |
| 2603 | /* The main loop */ |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 2604 | while (common->state != FSG_STATE_TERMINATED) { |
| 2605 | if (exception_in_progress(common) || signal_pending(current)) { |
| 2606 | handle_exception(common); |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 2607 | continue; |
| 2608 | } |
| 2609 | |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 2610 | if (!common->running) { |
| 2611 | sleep_thread(common); |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 2612 | continue; |
| 2613 | } |
| 2614 | |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 2615 | if (get_next_command(common)) |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 2616 | continue; |
| 2617 | |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 2618 | spin_lock_irq(&common->lock); |
| 2619 | if (!exception_in_progress(common)) |
| 2620 | common->state = FSG_STATE_DATA_PHASE; |
| 2621 | spin_unlock_irq(&common->lock); |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 2622 | |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 2623 | if (do_scsi_command(common) || finish_reply(common)) |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 2624 | continue; |
| 2625 | |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 2626 | spin_lock_irq(&common->lock); |
| 2627 | if (!exception_in_progress(common)) |
| 2628 | common->state = FSG_STATE_STATUS_PHASE; |
| 2629 | spin_unlock_irq(&common->lock); |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 2630 | |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 2631 | if (send_status(common)) |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 2632 | continue; |
| 2633 | |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 2634 | spin_lock_irq(&common->lock); |
| 2635 | if (!exception_in_progress(common)) |
| 2636 | common->state = FSG_STATE_IDLE; |
| 2637 | spin_unlock_irq(&common->lock); |
Michal Nazarewicz | d23b0f0 | 2009-11-09 14:15:20 +0100 | [diff] [blame] | 2638 | } |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 2639 | |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 2640 | spin_lock_irq(&common->lock); |
| 2641 | common->thread_task = NULL; |
| 2642 | spin_unlock_irq(&common->lock); |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 2643 | |
Michal Nazarewicz | 8876f5e | 2010-06-21 13:57:09 +0200 | [diff] [blame] | 2644 | if (!common->ops || !common->ops->thread_exits |
| 2645 | || common->ops->thread_exits(common) < 0) { |
Michal Nazarewicz | 7f1ee82 | 2010-01-28 13:05:26 +0100 | [diff] [blame] | 2646 | struct fsg_lun *curlun = common->luns; |
| 2647 | unsigned i = common->nluns; |
| 2648 | |
| 2649 | down_write(&common->filesem); |
| 2650 | for (; i--; ++curlun) { |
| 2651 | if (!fsg_lun_is_open(curlun)) |
| 2652 | continue; |
| 2653 | |
| 2654 | fsg_lun_close(curlun); |
| 2655 | curlun->unit_attention_data = SS_MEDIUM_NOT_PRESENT; |
| 2656 | } |
| 2657 | up_write(&common->filesem); |
| 2658 | } |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 2659 | |
Michal Nazarewicz | 00cb636 | 2010-10-28 17:31:22 +0200 | [diff] [blame] | 2660 | /* Let fsg_unbind() know the thread has exited */ |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 2661 | complete_and_exit(&common->thread_notifier, 0); |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 2662 | } |
| 2663 | |
| 2664 | |
Michal Nazarewicz | 9c61021 | 2009-10-28 16:57:22 +0100 | [diff] [blame] | 2665 | /*************************** DEVICE ATTRIBUTES ***************************/ |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 2666 | |
Michal Nazarewicz | d23b0f0 | 2009-11-09 14:15:20 +0100 | [diff] [blame] | 2667 | /* Write permission is checked per LUN in store_*() functions. */ |
| 2668 | static DEVICE_ATTR(ro, 0644, fsg_show_ro, fsg_store_ro); |
Michal Nazarewicz | 9cfe745 | 2010-08-12 17:43:51 +0200 | [diff] [blame] | 2669 | static DEVICE_ATTR(nofua, 0644, fsg_show_nofua, fsg_store_nofua); |
Michal Nazarewicz | d23b0f0 | 2009-11-09 14:15:20 +0100 | [diff] [blame] | 2670 | static DEVICE_ATTR(file, 0644, fsg_show_file, fsg_store_file); |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 2671 | |
| 2672 | |
Michal Nazarewicz | 9c61021 | 2009-10-28 16:57:22 +0100 | [diff] [blame] | 2673 | /****************************** FSG COMMON ******************************/ |
| 2674 | |
| 2675 | static void fsg_common_release(struct kref *ref); |
| 2676 | |
| 2677 | static void fsg_lun_release(struct device *dev) |
| 2678 | { |
| 2679 | /* Nothing needs to be done */ |
| 2680 | } |
| 2681 | |
| 2682 | static inline void fsg_common_get(struct fsg_common *common) |
| 2683 | { |
| 2684 | kref_get(&common->ref); |
| 2685 | } |
| 2686 | |
| 2687 | static inline void fsg_common_put(struct fsg_common *common) |
| 2688 | { |
| 2689 | kref_put(&common->ref, fsg_common_release); |
| 2690 | } |
| 2691 | |
Michal Nazarewicz | 9c61021 | 2009-10-28 16:57:22 +0100 | [diff] [blame] | 2692 | static struct fsg_common *fsg_common_init(struct fsg_common *common, |
Michal Nazarewicz | 481e492 | 2009-11-09 14:15:21 +0100 | [diff] [blame] | 2693 | struct usb_composite_dev *cdev, |
| 2694 | struct fsg_config *cfg) |
Michal Nazarewicz | 9c61021 | 2009-10-28 16:57:22 +0100 | [diff] [blame] | 2695 | { |
Michal Nazarewicz | d23b0f0 | 2009-11-09 14:15:20 +0100 | [diff] [blame] | 2696 | struct usb_gadget *gadget = cdev->gadget; |
Michal Nazarewicz | 9c61021 | 2009-10-28 16:57:22 +0100 | [diff] [blame] | 2697 | struct fsg_buffhd *bh; |
| 2698 | struct fsg_lun *curlun; |
Michal Nazarewicz | 481e492 | 2009-11-09 14:15:21 +0100 | [diff] [blame] | 2699 | struct fsg_lun_config *lcfg; |
Michal Nazarewicz | 9c61021 | 2009-10-28 16:57:22 +0100 | [diff] [blame] | 2700 | int nluns, i, rc; |
Michal Nazarewicz | d23b0f0 | 2009-11-09 14:15:20 +0100 | [diff] [blame] | 2701 | char *pathbuf; |
Michal Nazarewicz | 9c61021 | 2009-10-28 16:57:22 +0100 | [diff] [blame] | 2702 | |
Per Forlin | 6532c7f | 2011-08-19 21:21:27 +0200 | [diff] [blame] | 2703 | rc = fsg_num_buffers_validate(); |
| 2704 | if (rc != 0) |
| 2705 | return ERR_PTR(rc); |
| 2706 | |
Michal Nazarewicz | 9c61021 | 2009-10-28 16:57:22 +0100 | [diff] [blame] | 2707 | /* Find out how many LUNs there should be */ |
Michal Nazarewicz | 481e492 | 2009-11-09 14:15:21 +0100 | [diff] [blame] | 2708 | nluns = cfg->nluns; |
Michal Nazarewicz | 9c61021 | 2009-10-28 16:57:22 +0100 | [diff] [blame] | 2709 | if (nluns < 1 || nluns > FSG_MAX_LUNS) { |
| 2710 | dev_err(&gadget->dev, "invalid number of LUNs: %u\n", nluns); |
| 2711 | return ERR_PTR(-EINVAL); |
| 2712 | } |
| 2713 | |
| 2714 | /* Allocate? */ |
| 2715 | if (!common) { |
| 2716 | common = kzalloc(sizeof *common, GFP_KERNEL); |
| 2717 | if (!common) |
| 2718 | return ERR_PTR(-ENOMEM); |
| 2719 | common->free_storage_on_release = 1; |
| 2720 | } else { |
Jesper Juhl | a283c03 | 2011-01-29 02:26:51 +0100 | [diff] [blame] | 2721 | memset(common, 0, sizeof *common); |
Michal Nazarewicz | 9c61021 | 2009-10-28 16:57:22 +0100 | [diff] [blame] | 2722 | common->free_storage_on_release = 0; |
| 2723 | } |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 2724 | |
Per Forlin | 6532c7f | 2011-08-19 21:21:27 +0200 | [diff] [blame] | 2725 | common->buffhds = kcalloc(fsg_num_buffers, |
| 2726 | sizeof *(common->buffhds), GFP_KERNEL); |
| 2727 | if (!common->buffhds) { |
| 2728 | if (common->free_storage_on_release) |
| 2729 | kfree(common); |
| 2730 | return ERR_PTR(-ENOMEM); |
| 2731 | } |
| 2732 | |
Michal Nazarewicz | 8876f5e | 2010-06-21 13:57:09 +0200 | [diff] [blame] | 2733 | common->ops = cfg->ops; |
Michal Nazarewicz | c85efcb | 2009-11-09 14:15:26 +0100 | [diff] [blame] | 2734 | common->private_data = cfg->private_data; |
| 2735 | |
Michal Nazarewicz | 9c61021 | 2009-10-28 16:57:22 +0100 | [diff] [blame] | 2736 | common->gadget = gadget; |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 2737 | common->ep0 = gadget->ep0; |
| 2738 | common->ep0req = cdev->req; |
Roger Quadros | 95ed323 | 2011-05-09 13:08:07 +0300 | [diff] [blame] | 2739 | common->cdev = cdev; |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 2740 | |
| 2741 | /* Maybe allocate device-global string IDs, and patch descriptors */ |
| 2742 | if (fsg_strings[FSG_STRING_INTERFACE].id == 0) { |
| 2743 | rc = usb_string_id(cdev); |
Michal Nazarewicz | b9e0008 | 2010-05-12 12:51:13 +0200 | [diff] [blame] | 2744 | if (unlikely(rc < 0)) |
| 2745 | goto error_release; |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 2746 | fsg_strings[FSG_STRING_INTERFACE].id = rc; |
| 2747 | fsg_intf_desc.iInterface = rc; |
| 2748 | } |
Michal Nazarewicz | 9c61021 | 2009-10-28 16:57:22 +0100 | [diff] [blame] | 2749 | |
Michal Nazarewicz | b73af61 | 2010-10-28 17:31:23 +0200 | [diff] [blame] | 2750 | /* |
| 2751 | * Create the LUNs, open their backing files, and register the |
| 2752 | * LUN devices in sysfs. |
| 2753 | */ |
Thomas Meyer | 9823a52 | 2011-11-29 22:08:00 +0100 | [diff] [blame] | 2754 | curlun = kcalloc(nluns, sizeof(*curlun), GFP_KERNEL); |
Michal Nazarewicz | b9e0008 | 2010-05-12 12:51:13 +0200 | [diff] [blame] | 2755 | if (unlikely(!curlun)) { |
| 2756 | rc = -ENOMEM; |
| 2757 | goto error_release; |
Michal Nazarewicz | 9c61021 | 2009-10-28 16:57:22 +0100 | [diff] [blame] | 2758 | } |
| 2759 | common->luns = curlun; |
| 2760 | |
| 2761 | init_rwsem(&common->filesem); |
| 2762 | |
Michal Nazarewicz | 481e492 | 2009-11-09 14:15:21 +0100 | [diff] [blame] | 2763 | for (i = 0, lcfg = cfg->luns; i < nluns; ++i, ++curlun, ++lcfg) { |
| 2764 | curlun->cdrom = !!lcfg->cdrom; |
| 2765 | curlun->ro = lcfg->cdrom || lcfg->ro; |
Roger Quadros | 3c624d4 | 2011-04-05 18:36:39 +0300 | [diff] [blame] | 2766 | curlun->initially_ro = curlun->ro; |
Michal Nazarewicz | 481e492 | 2009-11-09 14:15:21 +0100 | [diff] [blame] | 2767 | curlun->removable = lcfg->removable; |
Michal Nazarewicz | 9c61021 | 2009-10-28 16:57:22 +0100 | [diff] [blame] | 2768 | curlun->dev.release = fsg_lun_release; |
| 2769 | curlun->dev.parent = &gadget->dev; |
Michal Nazarewicz | d23b0f0 | 2009-11-09 14:15:20 +0100 | [diff] [blame] | 2770 | /* curlun->dev.driver = &fsg_driver.driver; XXX */ |
Michal Nazarewicz | 9c61021 | 2009-10-28 16:57:22 +0100 | [diff] [blame] | 2771 | dev_set_drvdata(&curlun->dev, &common->filesem); |
Michal Nazarewicz | 1a12af1 | 2012-06-12 12:42:17 +0200 | [diff] [blame^] | 2772 | dev_set_name(&curlun->dev, "lun%d", i); |
Michal Nazarewicz | 9c61021 | 2009-10-28 16:57:22 +0100 | [diff] [blame] | 2773 | |
| 2774 | rc = device_register(&curlun->dev); |
| 2775 | if (rc) { |
| 2776 | INFO(common, "failed to register LUN%d: %d\n", i, rc); |
| 2777 | common->nluns = i; |
Rahul Ruikar | 17a9361 | 2010-10-28 17:31:19 +0200 | [diff] [blame] | 2778 | put_device(&curlun->dev); |
Michal Nazarewicz | 9c61021 | 2009-10-28 16:57:22 +0100 | [diff] [blame] | 2779 | goto error_release; |
| 2780 | } |
| 2781 | |
| 2782 | rc = device_create_file(&curlun->dev, &dev_attr_ro); |
| 2783 | if (rc) |
| 2784 | goto error_luns; |
| 2785 | rc = device_create_file(&curlun->dev, &dev_attr_file); |
| 2786 | if (rc) |
| 2787 | goto error_luns; |
Michal Nazarewicz | 9cfe745 | 2010-08-12 17:43:51 +0200 | [diff] [blame] | 2788 | rc = device_create_file(&curlun->dev, &dev_attr_nofua); |
| 2789 | if (rc) |
| 2790 | goto error_luns; |
Michal Nazarewicz | 9c61021 | 2009-10-28 16:57:22 +0100 | [diff] [blame] | 2791 | |
Michal Nazarewicz | 481e492 | 2009-11-09 14:15:21 +0100 | [diff] [blame] | 2792 | if (lcfg->filename) { |
| 2793 | rc = fsg_lun_open(curlun, lcfg->filename); |
Michal Nazarewicz | 9c61021 | 2009-10-28 16:57:22 +0100 | [diff] [blame] | 2794 | if (rc) |
| 2795 | goto error_luns; |
Michal Nazarewicz | 481e492 | 2009-11-09 14:15:21 +0100 | [diff] [blame] | 2796 | } else if (!curlun->removable) { |
Michal Nazarewicz | 9c61021 | 2009-10-28 16:57:22 +0100 | [diff] [blame] | 2797 | ERROR(common, "no file given for LUN%d\n", i); |
| 2798 | rc = -EINVAL; |
| 2799 | goto error_luns; |
| 2800 | } |
| 2801 | } |
| 2802 | common->nluns = nluns; |
| 2803 | |
Michal Nazarewicz | 9c61021 | 2009-10-28 16:57:22 +0100 | [diff] [blame] | 2804 | /* Data buffers cyclic list */ |
Michal Nazarewicz | 9c61021 | 2009-10-28 16:57:22 +0100 | [diff] [blame] | 2805 | bh = common->buffhds; |
Per Forlin | 6532c7f | 2011-08-19 21:21:27 +0200 | [diff] [blame] | 2806 | i = fsg_num_buffers; |
Michal Nazarewicz | aae86e8 | 2010-03-15 21:38:31 +0100 | [diff] [blame] | 2807 | goto buffhds_first_it; |
Michal Nazarewicz | 9c61021 | 2009-10-28 16:57:22 +0100 | [diff] [blame] | 2808 | do { |
| 2809 | bh->next = bh + 1; |
Michal Nazarewicz | aae86e8 | 2010-03-15 21:38:31 +0100 | [diff] [blame] | 2810 | ++bh; |
| 2811 | buffhds_first_it: |
| 2812 | bh->buf = kmalloc(FSG_BUFLEN, GFP_KERNEL); |
| 2813 | if (unlikely(!bh->buf)) { |
| 2814 | rc = -ENOMEM; |
| 2815 | goto error_release; |
| 2816 | } |
| 2817 | } while (--i); |
Michal Nazarewicz | 9c61021 | 2009-10-28 16:57:22 +0100 | [diff] [blame] | 2818 | bh->next = common->buffhds; |
| 2819 | |
Michal Nazarewicz | 481e492 | 2009-11-09 14:15:21 +0100 | [diff] [blame] | 2820 | /* Prepare inquiryString */ |
| 2821 | if (cfg->release != 0xffff) { |
| 2822 | i = cfg->release; |
| 2823 | } else { |
Christoph Egger | 90f7976 | 2010-02-05 13:24:12 +0100 | [diff] [blame] | 2824 | i = usb_gadget_controller_number(gadget); |
Michal Nazarewicz | 481e492 | 2009-11-09 14:15:21 +0100 | [diff] [blame] | 2825 | if (i >= 0) { |
| 2826 | i = 0x0300 + i; |
| 2827 | } else { |
Michal Nazarewicz | 9c61021 | 2009-10-28 16:57:22 +0100 | [diff] [blame] | 2828 | WARNING(common, "controller '%s' not recognized\n", |
| 2829 | gadget->name); |
Michal Nazarewicz | 481e492 | 2009-11-09 14:15:21 +0100 | [diff] [blame] | 2830 | i = 0x0399; |
Michal Nazarewicz | 9c61021 | 2009-10-28 16:57:22 +0100 | [diff] [blame] | 2831 | } |
| 2832 | } |
Michal Nazarewicz | 481e492 | 2009-11-09 14:15:21 +0100 | [diff] [blame] | 2833 | snprintf(common->inquiry_string, sizeof common->inquiry_string, |
Michal Nazarewicz | 1ccd792 | 2010-10-28 17:31:20 +0200 | [diff] [blame] | 2834 | "%-8s%-16s%04x", cfg->vendor_name ?: "Linux", |
Michal Nazarewicz | 481e492 | 2009-11-09 14:15:21 +0100 | [diff] [blame] | 2835 | /* Assume product name dependent on the first LUN */ |
Michal Nazarewicz | 1ccd792 | 2010-10-28 17:31:20 +0200 | [diff] [blame] | 2836 | cfg->product_name ?: (common->luns->cdrom |
Michal Nazarewicz | 481e492 | 2009-11-09 14:15:21 +0100 | [diff] [blame] | 2837 | ? "File-Stor Gadget" |
Michal Nazarewicz | 1ccd792 | 2010-10-28 17:31:20 +0200 | [diff] [blame] | 2838 | : "File-CD Gadget"), |
Michal Nazarewicz | 481e492 | 2009-11-09 14:15:21 +0100 | [diff] [blame] | 2839 | i); |
Michal Nazarewicz | 9c61021 | 2009-10-28 16:57:22 +0100 | [diff] [blame] | 2840 | |
Michal Nazarewicz | b73af61 | 2010-10-28 17:31:23 +0200 | [diff] [blame] | 2841 | /* |
| 2842 | * Some peripheral controllers are known not to be able to |
Michal Nazarewicz | 9c61021 | 2009-10-28 16:57:22 +0100 | [diff] [blame] | 2843 | * halt bulk endpoints correctly. If one of them is present, |
| 2844 | * disable stalls. |
| 2845 | */ |
Michal Nazarewicz | 481e492 | 2009-11-09 14:15:21 +0100 | [diff] [blame] | 2846 | common->can_stall = cfg->can_stall && |
Christoph Egger | 90f7976 | 2010-02-05 13:24:12 +0100 | [diff] [blame] | 2847 | !(gadget_is_at91(common->gadget)); |
Michal Nazarewicz | 9c61021 | 2009-10-28 16:57:22 +0100 | [diff] [blame] | 2848 | |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 2849 | spin_lock_init(&common->lock); |
Michal Nazarewicz | 9c61021 | 2009-10-28 16:57:22 +0100 | [diff] [blame] | 2850 | kref_init(&common->ref); |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 2851 | |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 2852 | /* Tell the thread to start working */ |
| 2853 | common->thread_task = |
Michal Nazarewicz | 1a12af1 | 2012-06-12 12:42:17 +0200 | [diff] [blame^] | 2854 | kthread_create(fsg_main_thread, common, "file-storage"); |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 2855 | if (IS_ERR(common->thread_task)) { |
| 2856 | rc = PTR_ERR(common->thread_task); |
| 2857 | goto error_release; |
| 2858 | } |
| 2859 | init_completion(&common->thread_notifier); |
Michal Nazarewicz | b894f60 | 2010-06-25 16:29:28 +0200 | [diff] [blame] | 2860 | init_waitqueue_head(&common->fsg_wait); |
Michal Nazarewicz | e8b6f8c | 2009-11-09 14:15:22 +0100 | [diff] [blame] | 2861 | |
Michal Nazarewicz | d23b0f0 | 2009-11-09 14:15:20 +0100 | [diff] [blame] | 2862 | /* Information */ |
| 2863 | INFO(common, FSG_DRIVER_DESC ", version: " FSG_DRIVER_VERSION "\n"); |
| 2864 | INFO(common, "Number of LUNs=%d\n", common->nluns); |
| 2865 | |
| 2866 | pathbuf = kmalloc(PATH_MAX, GFP_KERNEL); |
| 2867 | for (i = 0, nluns = common->nluns, curlun = common->luns; |
| 2868 | i < nluns; |
| 2869 | ++curlun, ++i) { |
| 2870 | char *p = "(no medium)"; |
| 2871 | if (fsg_lun_is_open(curlun)) { |
| 2872 | p = "(error)"; |
| 2873 | if (pathbuf) { |
| 2874 | p = d_path(&curlun->filp->f_path, |
| 2875 | pathbuf, PATH_MAX); |
| 2876 | if (IS_ERR(p)) |
| 2877 | p = "(error)"; |
| 2878 | } |
| 2879 | } |
| 2880 | LINFO(curlun, "LUN: %s%s%sfile: %s\n", |
| 2881 | curlun->removable ? "removable " : "", |
| 2882 | curlun->ro ? "read only " : "", |
| 2883 | curlun->cdrom ? "CD-ROM " : "", |
| 2884 | p); |
| 2885 | } |
| 2886 | kfree(pathbuf); |
| 2887 | |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 2888 | DBG(common, "I/O thread pid: %d\n", task_pid_nr(common->thread_task)); |
| 2889 | |
| 2890 | wake_up_process(common->thread_task); |
| 2891 | |
Michal Nazarewicz | 9c61021 | 2009-10-28 16:57:22 +0100 | [diff] [blame] | 2892 | return common; |
| 2893 | |
Michal Nazarewicz | 9c61021 | 2009-10-28 16:57:22 +0100 | [diff] [blame] | 2894 | error_luns: |
| 2895 | common->nluns = i + 1; |
| 2896 | error_release: |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 2897 | common->state = FSG_STATE_TERMINATED; /* The thread is dead */ |
Michal Nazarewicz | b73af61 | 2010-10-28 17:31:23 +0200 | [diff] [blame] | 2898 | /* Call fsg_common_release() directly, ref might be not initialised. */ |
Michal Nazarewicz | 9c61021 | 2009-10-28 16:57:22 +0100 | [diff] [blame] | 2899 | fsg_common_release(&common->ref); |
| 2900 | return ERR_PTR(rc); |
| 2901 | } |
| 2902 | |
Michal Nazarewicz | 9c61021 | 2009-10-28 16:57:22 +0100 | [diff] [blame] | 2903 | static void fsg_common_release(struct kref *ref) |
| 2904 | { |
Michal Nazarewicz | b9e0008 | 2010-05-12 12:51:13 +0200 | [diff] [blame] | 2905 | struct fsg_common *common = container_of(ref, struct fsg_common, ref); |
Michal Nazarewicz | 9c61021 | 2009-10-28 16:57:22 +0100 | [diff] [blame] | 2906 | |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 2907 | /* If the thread isn't already dead, tell it to exit now */ |
| 2908 | if (common->state != FSG_STATE_TERMINATED) { |
| 2909 | raise_exception(common, FSG_STATE_EXIT); |
| 2910 | wait_for_completion(&common->thread_notifier); |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 2911 | } |
| 2912 | |
Michal Nazarewicz | b9e0008 | 2010-05-12 12:51:13 +0200 | [diff] [blame] | 2913 | if (likely(common->luns)) { |
| 2914 | struct fsg_lun *lun = common->luns; |
| 2915 | unsigned i = common->nluns; |
Michal Nazarewicz | 9c61021 | 2009-10-28 16:57:22 +0100 | [diff] [blame] | 2916 | |
Michal Nazarewicz | b9e0008 | 2010-05-12 12:51:13 +0200 | [diff] [blame] | 2917 | /* In error recovery common->nluns may be zero. */ |
| 2918 | for (; i; --i, ++lun) { |
Michal Nazarewicz | 9cfe745 | 2010-08-12 17:43:51 +0200 | [diff] [blame] | 2919 | device_remove_file(&lun->dev, &dev_attr_nofua); |
Michal Nazarewicz | b9e0008 | 2010-05-12 12:51:13 +0200 | [diff] [blame] | 2920 | device_remove_file(&lun->dev, &dev_attr_ro); |
| 2921 | device_remove_file(&lun->dev, &dev_attr_file); |
| 2922 | fsg_lun_close(lun); |
| 2923 | device_unregister(&lun->dev); |
| 2924 | } |
| 2925 | |
| 2926 | kfree(common->luns); |
Michal Nazarewicz | 9c61021 | 2009-10-28 16:57:22 +0100 | [diff] [blame] | 2927 | } |
| 2928 | |
Michal Nazarewicz | b9e0008 | 2010-05-12 12:51:13 +0200 | [diff] [blame] | 2929 | { |
| 2930 | struct fsg_buffhd *bh = common->buffhds; |
Per Forlin | 6532c7f | 2011-08-19 21:21:27 +0200 | [diff] [blame] | 2931 | unsigned i = fsg_num_buffers; |
Michal Nazarewicz | b9e0008 | 2010-05-12 12:51:13 +0200 | [diff] [blame] | 2932 | do { |
| 2933 | kfree(bh->buf); |
| 2934 | } while (++bh, --i); |
| 2935 | } |
Michal Nazarewicz | aae86e8 | 2010-03-15 21:38:31 +0100 | [diff] [blame] | 2936 | |
Per Forlin | 6532c7f | 2011-08-19 21:21:27 +0200 | [diff] [blame] | 2937 | kfree(common->buffhds); |
Michal Nazarewicz | 9c61021 | 2009-10-28 16:57:22 +0100 | [diff] [blame] | 2938 | if (common->free_storage_on_release) |
| 2939 | kfree(common); |
| 2940 | } |
| 2941 | |
| 2942 | |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 2943 | /*-------------------------------------------------------------------------*/ |
| 2944 | |
Michal Nazarewicz | d23b0f0 | 2009-11-09 14:15:20 +0100 | [diff] [blame] | 2945 | static void fsg_unbind(struct usb_configuration *c, struct usb_function *f) |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 2946 | { |
Michal Nazarewicz | d23b0f0 | 2009-11-09 14:15:20 +0100 | [diff] [blame] | 2947 | struct fsg_dev *fsg = fsg_from_func(f); |
Michal Nazarewicz | b894f60 | 2010-06-25 16:29:28 +0200 | [diff] [blame] | 2948 | struct fsg_common *common = fsg->common; |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 2949 | |
| 2950 | DBG(fsg, "unbind\n"); |
Michal Nazarewicz | b894f60 | 2010-06-25 16:29:28 +0200 | [diff] [blame] | 2951 | if (fsg->common->fsg == fsg) { |
| 2952 | fsg->common->new_fsg = NULL; |
| 2953 | raise_exception(fsg->common, FSG_STATE_CONFIG_CHANGE); |
| 2954 | /* FIXME: make interruptible or killable somehow? */ |
| 2955 | wait_event(common->fsg_wait, common->fsg != fsg); |
| 2956 | } |
| 2957 | |
| 2958 | fsg_common_put(common); |
Michal Nazarewicz | 0fb2c2a | 2010-03-29 14:01:32 +0200 | [diff] [blame] | 2959 | usb_free_descriptors(fsg->function.descriptors); |
| 2960 | usb_free_descriptors(fsg->function.hs_descriptors); |
Yu Xu | f44b915 | 2011-12-10 00:03:33 +0800 | [diff] [blame] | 2961 | usb_free_descriptors(fsg->function.ss_descriptors); |
Michal Nazarewicz | 9c61021 | 2009-10-28 16:57:22 +0100 | [diff] [blame] | 2962 | kfree(fsg); |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 2963 | } |
| 2964 | |
Michal Nazarewicz | 28824b1 | 2010-05-05 12:53:13 +0200 | [diff] [blame] | 2965 | static int fsg_bind(struct usb_configuration *c, struct usb_function *f) |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 2966 | { |
Michal Nazarewicz | d23b0f0 | 2009-11-09 14:15:20 +0100 | [diff] [blame] | 2967 | struct fsg_dev *fsg = fsg_from_func(f); |
| 2968 | struct usb_gadget *gadget = c->cdev->gadget; |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 2969 | int i; |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 2970 | struct usb_ep *ep; |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 2971 | |
| 2972 | fsg->gadget = gadget; |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 2973 | |
Michal Nazarewicz | d23b0f0 | 2009-11-09 14:15:20 +0100 | [diff] [blame] | 2974 | /* New interface */ |
| 2975 | i = usb_interface_id(c, f); |
| 2976 | if (i < 0) |
| 2977 | return i; |
| 2978 | fsg_intf_desc.bInterfaceNumber = i; |
| 2979 | fsg->interface_number = i; |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 2980 | |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 2981 | /* Find all the endpoints we will use */ |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 2982 | ep = usb_ep_autoconfig(gadget, &fsg_fs_bulk_in_desc); |
| 2983 | if (!ep) |
| 2984 | goto autoconf_fail; |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 2985 | ep->driver_data = fsg->common; /* claim the endpoint */ |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 2986 | fsg->bulk_in = ep; |
| 2987 | |
| 2988 | ep = usb_ep_autoconfig(gadget, &fsg_fs_bulk_out_desc); |
| 2989 | if (!ep) |
| 2990 | goto autoconf_fail; |
Michal Nazarewicz | 8ea864c | 2009-11-09 14:15:24 +0100 | [diff] [blame] | 2991 | ep->driver_data = fsg->common; /* claim the endpoint */ |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 2992 | fsg->bulk_out = ep; |
| 2993 | |
Michal Nazarewicz | e5fd39d | 2010-06-25 16:29:26 +0200 | [diff] [blame] | 2994 | /* Copy descriptors */ |
| 2995 | f->descriptors = usb_copy_descriptors(fsg_fs_function); |
| 2996 | if (unlikely(!f->descriptors)) |
| 2997 | return -ENOMEM; |
| 2998 | |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 2999 | if (gadget_is_dualspeed(gadget)) { |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 3000 | /* Assume endpoint addresses are the same for both speeds */ |
| 3001 | fsg_hs_bulk_in_desc.bEndpointAddress = |
| 3002 | fsg_fs_bulk_in_desc.bEndpointAddress; |
| 3003 | fsg_hs_bulk_out_desc.bEndpointAddress = |
| 3004 | fsg_fs_bulk_out_desc.bEndpointAddress; |
Michal Nazarewicz | 0fb2c2a | 2010-03-29 14:01:32 +0200 | [diff] [blame] | 3005 | f->hs_descriptors = usb_copy_descriptors(fsg_hs_function); |
Michal Nazarewicz | e5fd39d | 2010-06-25 16:29:26 +0200 | [diff] [blame] | 3006 | if (unlikely(!f->hs_descriptors)) { |
| 3007 | usb_free_descriptors(f->descriptors); |
Michal Nazarewicz | 0fb2c2a | 2010-03-29 14:01:32 +0200 | [diff] [blame] | 3008 | return -ENOMEM; |
Michal Nazarewicz | e5fd39d | 2010-06-25 16:29:26 +0200 | [diff] [blame] | 3009 | } |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 3010 | } |
| 3011 | |
Felipe Balbi | 4bb99b7 | 2011-08-03 14:33:27 +0300 | [diff] [blame] | 3012 | if (gadget_is_superspeed(gadget)) { |
| 3013 | unsigned max_burst; |
| 3014 | |
| 3015 | /* Calculate bMaxBurst, we know packet size is 1024 */ |
| 3016 | max_burst = min_t(unsigned, FSG_BUFLEN / 1024, 15); |
| 3017 | |
| 3018 | fsg_ss_bulk_in_desc.bEndpointAddress = |
| 3019 | fsg_fs_bulk_in_desc.bEndpointAddress; |
| 3020 | fsg_ss_bulk_in_comp_desc.bMaxBurst = max_burst; |
| 3021 | |
| 3022 | fsg_ss_bulk_out_desc.bEndpointAddress = |
| 3023 | fsg_fs_bulk_out_desc.bEndpointAddress; |
| 3024 | fsg_ss_bulk_out_comp_desc.bMaxBurst = max_burst; |
| 3025 | |
| 3026 | f->ss_descriptors = usb_copy_descriptors(fsg_ss_function); |
| 3027 | if (unlikely(!f->ss_descriptors)) { |
| 3028 | usb_free_descriptors(f->hs_descriptors); |
| 3029 | usb_free_descriptors(f->descriptors); |
| 3030 | return -ENOMEM; |
| 3031 | } |
| 3032 | } |
| 3033 | |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 3034 | return 0; |
| 3035 | |
| 3036 | autoconf_fail: |
| 3037 | ERROR(fsg, "unable to autoconfigure all endpoints\n"); |
Michal Nazarewicz | e5fd39d | 2010-06-25 16:29:26 +0200 | [diff] [blame] | 3038 | return -ENOTSUPP; |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 3039 | } |
| 3040 | |
| 3041 | |
Michal Nazarewicz | d23b0f0 | 2009-11-09 14:15:20 +0100 | [diff] [blame] | 3042 | /****************************** ADD FUNCTION ******************************/ |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 3043 | |
Michal Nazarewicz | d23b0f0 | 2009-11-09 14:15:20 +0100 | [diff] [blame] | 3044 | static struct usb_gadget_strings *fsg_strings_array[] = { |
| 3045 | &fsg_stringtab, |
| 3046 | NULL, |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 3047 | }; |
| 3048 | |
Michal Nazarewicz | 1dc9098 | 2010-06-16 12:07:57 +0200 | [diff] [blame] | 3049 | static int fsg_bind_config(struct usb_composite_dev *cdev, |
| 3050 | struct usb_configuration *c, |
| 3051 | struct fsg_common *common) |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 3052 | { |
Michal Nazarewicz | d23b0f0 | 2009-11-09 14:15:20 +0100 | [diff] [blame] | 3053 | struct fsg_dev *fsg; |
| 3054 | int rc; |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 3055 | |
Michal Nazarewicz | d23b0f0 | 2009-11-09 14:15:20 +0100 | [diff] [blame] | 3056 | fsg = kzalloc(sizeof *fsg, GFP_KERNEL); |
| 3057 | if (unlikely(!fsg)) |
| 3058 | return -ENOMEM; |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 3059 | |
Michal Nazarewicz | d23b0f0 | 2009-11-09 14:15:20 +0100 | [diff] [blame] | 3060 | fsg->function.name = FSG_DRIVER_DESC; |
| 3061 | fsg->function.strings = fsg_strings_array; |
Michal Nazarewicz | d23b0f0 | 2009-11-09 14:15:20 +0100 | [diff] [blame] | 3062 | fsg->function.bind = fsg_bind; |
| 3063 | fsg->function.unbind = fsg_unbind; |
| 3064 | fsg->function.setup = fsg_setup; |
| 3065 | fsg->function.set_alt = fsg_set_alt; |
| 3066 | fsg->function.disable = fsg_disable; |
| 3067 | |
| 3068 | fsg->common = common; |
Michal Nazarewicz | b73af61 | 2010-10-28 17:31:23 +0200 | [diff] [blame] | 3069 | /* |
| 3070 | * Our caller holds a reference to common structure so we |
Michal Nazarewicz | d23b0f0 | 2009-11-09 14:15:20 +0100 | [diff] [blame] | 3071 | * don't have to be worry about it being freed until we return |
| 3072 | * from this function. So instead of incrementing counter now |
| 3073 | * and decrement in error recovery we increment it only when |
Michal Nazarewicz | b73af61 | 2010-10-28 17:31:23 +0200 | [diff] [blame] | 3074 | * call to usb_add_function() was successful. |
| 3075 | */ |
Michal Nazarewicz | d23b0f0 | 2009-11-09 14:15:20 +0100 | [diff] [blame] | 3076 | |
| 3077 | rc = usb_add_function(c, &fsg->function); |
Michal Nazarewicz | 0fb2c2a | 2010-03-29 14:01:32 +0200 | [diff] [blame] | 3078 | if (unlikely(rc)) |
Michal Nazarewicz | e5fd39d | 2010-06-25 16:29:26 +0200 | [diff] [blame] | 3079 | kfree(fsg); |
| 3080 | else |
| 3081 | fsg_common_get(fsg->common); |
Michal Nazarewicz | d23b0f0 | 2009-11-09 14:15:20 +0100 | [diff] [blame] | 3082 | return rc; |
Michal Nazarewicz | d5e2b67 | 2009-10-28 16:57:18 +0100 | [diff] [blame] | 3083 | } |
Michal Nazarewicz | 481e492 | 2009-11-09 14:15:21 +0100 | [diff] [blame] | 3084 | |
Michal Nazarewicz | 481e492 | 2009-11-09 14:15:21 +0100 | [diff] [blame] | 3085 | |
| 3086 | /************************* Module parameters *************************/ |
| 3087 | |
Michal Nazarewicz | 481e492 | 2009-11-09 14:15:21 +0100 | [diff] [blame] | 3088 | struct fsg_module_parameters { |
| 3089 | char *file[FSG_MAX_LUNS]; |
Fabio Estevam | 4b5203f | 2012-01-12 16:09:15 -0200 | [diff] [blame] | 3090 | bool ro[FSG_MAX_LUNS]; |
| 3091 | bool removable[FSG_MAX_LUNS]; |
| 3092 | bool cdrom[FSG_MAX_LUNS]; |
| 3093 | bool nofua[FSG_MAX_LUNS]; |
Michal Nazarewicz | 481e492 | 2009-11-09 14:15:21 +0100 | [diff] [blame] | 3094 | |
| 3095 | unsigned int file_count, ro_count, removable_count, cdrom_count; |
Michal Nazarewicz | 9cfe745 | 2010-08-12 17:43:51 +0200 | [diff] [blame] | 3096 | unsigned int nofua_count; |
Michal Nazarewicz | 481e492 | 2009-11-09 14:15:21 +0100 | [diff] [blame] | 3097 | unsigned int luns; /* nluns */ |
Fabio Estevam | 4b5203f | 2012-01-12 16:09:15 -0200 | [diff] [blame] | 3098 | bool stall; /* can_stall */ |
Michal Nazarewicz | 481e492 | 2009-11-09 14:15:21 +0100 | [diff] [blame] | 3099 | }; |
| 3100 | |
Michal Nazarewicz | 481e492 | 2009-11-09 14:15:21 +0100 | [diff] [blame] | 3101 | #define _FSG_MODULE_PARAM_ARRAY(prefix, params, name, type, desc) \ |
| 3102 | module_param_array_named(prefix ## name, params.name, type, \ |
| 3103 | &prefix ## params.name ## _count, \ |
| 3104 | S_IRUGO); \ |
| 3105 | MODULE_PARM_DESC(prefix ## name, desc) |
| 3106 | |
| 3107 | #define _FSG_MODULE_PARAM(prefix, params, name, type, desc) \ |
| 3108 | module_param_named(prefix ## name, params.name, type, \ |
| 3109 | S_IRUGO); \ |
| 3110 | MODULE_PARM_DESC(prefix ## name, desc) |
| 3111 | |
| 3112 | #define FSG_MODULE_PARAMETERS(prefix, params) \ |
| 3113 | _FSG_MODULE_PARAM_ARRAY(prefix, params, file, charp, \ |
| 3114 | "names of backing files or devices"); \ |
| 3115 | _FSG_MODULE_PARAM_ARRAY(prefix, params, ro, bool, \ |
| 3116 | "true to force read-only"); \ |
| 3117 | _FSG_MODULE_PARAM_ARRAY(prefix, params, removable, bool, \ |
| 3118 | "true to simulate removable media"); \ |
| 3119 | _FSG_MODULE_PARAM_ARRAY(prefix, params, cdrom, bool, \ |
| 3120 | "true to simulate CD-ROM instead of disk"); \ |
Michal Nazarewicz | 9cfe745 | 2010-08-12 17:43:51 +0200 | [diff] [blame] | 3121 | _FSG_MODULE_PARAM_ARRAY(prefix, params, nofua, bool, \ |
| 3122 | "true to ignore SCSI WRITE(10,12) FUA bit"); \ |
Michal Nazarewicz | 481e492 | 2009-11-09 14:15:21 +0100 | [diff] [blame] | 3123 | _FSG_MODULE_PARAM(prefix, params, luns, uint, \ |
| 3124 | "number of LUNs"); \ |
| 3125 | _FSG_MODULE_PARAM(prefix, params, stall, bool, \ |
| 3126 | "false to prevent bulk stalls") |
| 3127 | |
Michal Nazarewicz | 481e492 | 2009-11-09 14:15:21 +0100 | [diff] [blame] | 3128 | static void |
| 3129 | fsg_config_from_params(struct fsg_config *cfg, |
| 3130 | const struct fsg_module_parameters *params) |
| 3131 | { |
| 3132 | struct fsg_lun_config *lun; |
Michal Nazarewicz | d26a6aa | 2009-11-09 14:15:23 +0100 | [diff] [blame] | 3133 | unsigned i; |
Michal Nazarewicz | 481e492 | 2009-11-09 14:15:21 +0100 | [diff] [blame] | 3134 | |
| 3135 | /* Configure LUNs */ |
Michal Nazarewicz | d26a6aa | 2009-11-09 14:15:23 +0100 | [diff] [blame] | 3136 | cfg->nluns = |
| 3137 | min(params->luns ?: (params->file_count ?: 1u), |
| 3138 | (unsigned)FSG_MAX_LUNS); |
| 3139 | for (i = 0, lun = cfg->luns; i < cfg->nluns; ++i, ++lun) { |
Michal Nazarewicz | 481e492 | 2009-11-09 14:15:21 +0100 | [diff] [blame] | 3140 | lun->ro = !!params->ro[i]; |
| 3141 | lun->cdrom = !!params->cdrom[i]; |
Michal Nazarewicz | fa84c57 | 2012-05-26 16:32:39 -0700 | [diff] [blame] | 3142 | lun->removable = !!params->removable[i]; |
Michal Nazarewicz | 481e492 | 2009-11-09 14:15:21 +0100 | [diff] [blame] | 3143 | lun->filename = |
| 3144 | params->file_count > i && params->file[i][0] |
| 3145 | ? params->file[i] |
| 3146 | : 0; |
| 3147 | } |
| 3148 | |
Michal Nazarewicz | d26a6aa | 2009-11-09 14:15:23 +0100 | [diff] [blame] | 3149 | /* Let MSF use defaults */ |
Michal Nazarewicz | 481e492 | 2009-11-09 14:15:21 +0100 | [diff] [blame] | 3150 | cfg->vendor_name = 0; |
| 3151 | cfg->product_name = 0; |
| 3152 | cfg->release = 0xffff; |
| 3153 | |
Michal Nazarewicz | 8876f5e | 2010-06-21 13:57:09 +0200 | [diff] [blame] | 3154 | cfg->ops = NULL; |
| 3155 | cfg->private_data = NULL; |
Michal Nazarewicz | c85efcb | 2009-11-09 14:15:26 +0100 | [diff] [blame] | 3156 | |
Michal Nazarewicz | 481e492 | 2009-11-09 14:15:21 +0100 | [diff] [blame] | 3157 | /* Finalise */ |
| 3158 | cfg->can_stall = params->stall; |
| 3159 | } |
| 3160 | |
| 3161 | static inline struct fsg_common * |
| 3162 | fsg_common_from_params(struct fsg_common *common, |
| 3163 | struct usb_composite_dev *cdev, |
| 3164 | const struct fsg_module_parameters *params) |
| 3165 | __attribute__((unused)); |
| 3166 | static inline struct fsg_common * |
| 3167 | fsg_common_from_params(struct fsg_common *common, |
| 3168 | struct usb_composite_dev *cdev, |
| 3169 | const struct fsg_module_parameters *params) |
| 3170 | { |
| 3171 | struct fsg_config cfg; |
| 3172 | fsg_config_from_params(&cfg, params); |
| 3173 | return fsg_common_init(common, cdev, &cfg); |
| 3174 | } |