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