blob: 9b29e8eab18fa9291e24b69c6adfa795b6871b35 [file] [log] [blame]
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001/*
Michal Nazarewiczd26a6aa2009-11-09 14:15:23 +01002 * f_mass_storage.c -- Mass Storage USB Composite Function
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01003 *
4 * Copyright (C) 2003-2008 Alan Stern
Michal Nazarewiczd26a6aa2009-11-09 14:15:23 +01005 * Copyright (C) 2009 Samsung Electronics
Michal Nazarewicz54b83602012-01-13 15:05:16 +01006 * Author: Michal Nazarewicz <mina86@mina86.com>
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01007 * 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 Nazarewiczd5e2b672009-10-28 16:57:18 +010040/*
Michal Nazarewiczd26a6aa2009-11-09 14:15:23 +010041 * 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 Nazarewiczd5e2b672009-10-28 16:57:18 +010046 *
Michal Nazarewiczd26a6aa2009-11-09 14:15:23 +010047 * Function supports multiple logical units (LUNs). Backing storage
48 * for each LUN is provided by a regular file or a block device.
49 * Access for each LUN can be limited to read-only. Moreover, the
50 * function can indicate that LUN is removable and/or CD-ROM. (The
51 * later implies read-only access.)
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +010052 *
Michal Nazarewiczd26a6aa2009-11-09 14:15:23 +010053 * 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 Nazarewicz9cfe7452010-08-12 17:43:51 +020075 * ->nofua Flag specifying that FUA flag in SCSI WRITE(10,12)
76 * commands for this LUN shall be ignored.
Michal Nazarewiczd26a6aa2009-11-09 14:15:23 +010077 *
Michal Nazarewiczd26a6aa2009-11-09 14:15:23 +010078 * 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 Li3f565a32011-08-17 22:52:59 -070096 * backing file per LUN.
Michal Nazarewiczd26a6aa2009-11-09 14:15:23 +010097 *
98 *
99 * MSF includes support for module parameters. If gadget using it
100 * decides to use it, the following module parameters will be
101 * available:
102 *
103 * file=filename[,filename...]
104 * Names of the files or block devices used for
105 * backing storage.
106 * ro=b[,b...] Default false, boolean for read-only access.
107 * removable=b[,b...]
Michal Nazarewiczfa84c572012-05-26 16:32:39 -0700108 * Default false, boolean for removable media.
Michal Nazarewiczd26a6aa2009-11-09 14:15:23 +0100109 * cdrom=b[,b...] Default false, boolean for whether to emulate
110 * a CD-ROM drive.
Michal Nazarewicz9cfe7452010-08-12 17:43:51 +0200111 * nofua=b[,b...] Default false, booleans for ignore FUA flag
112 * in SCSI WRITE(10,12) commands
Michal Nazarewiczd26a6aa2009-11-09 14:15:23 +0100113 * luns=N Default N = number of filenames, number of
114 * LUNs to support.
115 * stall Default determined according to the type of
116 * USB device controller (usually true),
117 * boolean to permit the driver to halt
118 * bulk endpoints.
119 *
120 * The module parameters may be prefixed with some string. You need
121 * to consult gadget's documentation or source to verify whether it is
122 * using those module parameters and if it does what are the prefixes
123 * (look for FSG_MODULE_PARAMETERS() macro usage, what's inside it is
124 * the prefix).
125 *
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100126 *
127 * Requirements are modest; only a bulk-in and a bulk-out endpoint are
Michal Nazarewiczd26a6aa2009-11-09 14:15:23 +0100128 * needed. The memory requirement amounts to two 16K buffers, size
129 * configurable by a parameter. Support is included for both
130 * full-speed and high-speed operation.
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100131 *
132 * Note that the driver is slightly non-portable in that it assumes a
133 * single memory/DMA buffer will be useable for bulk-in, bulk-out, and
134 * interrupt-in endpoints. With most device controllers this isn't an
135 * issue, but there may be some with hardware restrictions that prevent
136 * a buffer from being used by more than one endpoint.
137 *
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100138 *
Michal Nazarewicz1a12af12012-06-12 12:42:17 +0200139 * The pathnames of the backing files, the ro settings and nofua
140 * settings are available in the attribute files "file", "ro" and
141 * "nofua" in the lun<n> subdirectory of the gadget's sysfs directory.
142 * If the "removable" option is set, writing to these files will
143 * simulate ejecting/loading the medium (writing an empty line means
144 * eject) and adjusting a write-enable tab. Changes to the ro setting
145 * are not allowed when the medium is loaded or if CD-ROM emulation is
146 * being used.
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100147 *
Fabien Chouteau31436a12010-04-26 12:34:54 +0200148 * When a LUN receive an "eject" SCSI request (Start/Stop Unit),
149 * if the LUN is removable, the backing file is released to simulate
150 * ejection.
151 *
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100152 *
Michal Nazarewiczd26a6aa2009-11-09 14:15:23 +0100153 * This function is heavily based on "File-backed Storage Gadget" by
154 * Alan Stern which in turn is heavily based on "Gadget Zero" by David
155 * Brownell. The driver's SCSI command interface was based on the
156 * "Information technology - Small Computer System Interface - 2"
157 * document from X3T9.2 Project 375D, Revision 10L, 7-SEP-93,
158 * available at <http://www.t10.org/ftp/t10/drafts/s2/s2-r10l.pdf>.
159 * The single exception is opcode 0x23 (READ FORMAT CAPACITIES), which
160 * was based on the "Universal Serial Bus Mass Storage Class UFI
161 * Command Specification" document, Revision 1.0, December 14, 1998,
162 * available at
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100163 * <http://www.usb.org/developers/devclass_docs/usbmass-ufi10.pdf>.
164 */
165
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100166/*
167 * Driver Design
168 *
Michal Nazarewiczd26a6aa2009-11-09 14:15:23 +0100169 * The MSF is fairly straightforward. There is a main kernel
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100170 * thread that handles most of the work. Interrupt routines field
171 * callbacks from the controller driver: bulk- and interrupt-request
172 * completion notifications, endpoint-0 events, and disconnect events.
173 * Completion events are passed to the main thread by wakeup calls. Many
174 * ep0 requests are handled at interrupt time, but SetInterface,
175 * SetConfiguration, and device reset requests are forwarded to the
176 * thread in the form of "exceptions" using SIGUSR1 signals (since they
177 * should interrupt any ongoing file I/O operations).
178 *
179 * The thread's main routine implements the standard command/data/status
180 * parts of a SCSI interaction. It and its subroutines are full of tests
181 * for pending signals/exceptions -- all this polling is necessary since
182 * the kernel has no setjmp/longjmp equivalents. (Maybe this is an
183 * indication that the driver really wants to be running in userspace.)
184 * An important point is that so long as the thread is alive it keeps an
185 * open reference to the backing file. This will prevent unmounting
186 * the backing file's underlying filesystem and could cause problems
187 * during system shutdown, for example. To prevent such problems, the
188 * thread catches INT, TERM, and KILL signals and converts them into
189 * an EXIT exception.
190 *
191 * In normal operation the main thread is started during the gadget's
Michal Nazarewiczd26a6aa2009-11-09 14:15:23 +0100192 * fsg_bind() callback and stopped during fsg_unbind(). But it can
193 * also exit when it receives a signal, and there's no point leaving
194 * the gadget running when the thread is dead. At of this moment, MSF
195 * provides no way to deregister the gadget when thread dies -- maybe
196 * a callback functions is needed.
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100197 *
198 * To provide maximum throughput, the driver uses a circular pipeline of
199 * buffer heads (struct fsg_buffhd). In principle the pipeline can be
200 * arbitrarily long; in practice the benefits don't justify having more
201 * than 2 stages (i.e., double buffering). But it helps to think of the
202 * pipeline as being a long one. Each buffer head contains a bulk-in and
203 * a bulk-out request pointer (since the buffer can be used for both
204 * output and input -- directions always are given from the host's
205 * point of view) as well as a pointer to the buffer and various state
206 * variables.
207 *
208 * Use of the pipeline follows a simple protocol. There is a variable
209 * (fsg->next_buffhd_to_fill) that points to the next buffer head to use.
210 * At any time that buffer head may still be in use from an earlier
211 * request, so each buffer head has a state variable indicating whether
212 * it is EMPTY, FULL, or BUSY. Typical use involves waiting for the
213 * buffer head to be EMPTY, filling the buffer either by file I/O or by
214 * USB I/O (during which the buffer head is BUSY), and marking the buffer
215 * head FULL when the I/O is complete. Then the buffer will be emptied
216 * (again possibly by USB I/O, during which it is marked BUSY) and
217 * finally marked EMPTY again (possibly by a completion routine).
218 *
219 * A module parameter tells the driver to avoid stalling the bulk
220 * endpoints wherever the transport specification allows. This is
221 * necessary for some UDCs like the SuperH, which cannot reliably clear a
222 * halt on a bulk endpoint. However, under certain circumstances the
223 * Bulk-only specification requires a stall. In such cases the driver
224 * will halt the endpoint and set a flag indicating that it should clear
225 * the halt in software during the next device reset. Hopefully this
226 * will permit everything to work correctly. Furthermore, although the
227 * specification allows the bulk-out endpoint to halt when the host sends
228 * too much data, implementing this would cause an unavoidable race.
229 * The driver will always use the "no-stall" approach for OUT transfers.
230 *
231 * One subtle point concerns sending status-stage responses for ep0
232 * requests. Some of these requests, such as device reset, can involve
233 * interrupting an ongoing file I/O operation, which might take an
234 * arbitrarily long time. During that delay the host might give up on
235 * the original ep0 request and issue a new one. When that happens the
236 * driver should not notify the host about completion of the original
237 * request, as the host will no longer be waiting for it. So the driver
238 * assigns to each ep0 request a unique tag, and it keeps track of the
239 * tag value of the request associated with a long-running exception
240 * (device-reset, interface-change, or configuration-change). When the
241 * exception handler is finished, the status-stage response is submitted
242 * only if the current ep0 request tag is equal to the exception request
243 * tag. Thus only the most recently received ep0 request will get a
244 * status-stage response.
245 *
246 * Warning: This driver source file is too long. It ought to be split up
247 * into a header file plus about 3 separate .c files, to handle the details
248 * of the Gadget, USB Mass Storage, and SCSI protocols.
249 */
250
251
252/* #define VERBOSE_DEBUG */
253/* #define DUMP_MSGS */
254
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100255#include <linux/blkdev.h>
256#include <linux/completion.h>
257#include <linux/dcache.h>
258#include <linux/delay.h>
259#include <linux/device.h>
260#include <linux/fcntl.h>
261#include <linux/file.h>
262#include <linux/fs.h>
263#include <linux/kref.h>
264#include <linux/kthread.h>
265#include <linux/limits.h>
266#include <linux/rwsem.h>
267#include <linux/slab.h>
268#include <linux/spinlock.h>
269#include <linux/string.h>
270#include <linux/freezer.h>
271#include <linux/utsname.h>
272
273#include <linux/usb/ch9.h>
274#include <linux/usb/gadget.h>
Jesper Juhla283c032011-01-29 02:26:51 +0100275#include <linux/usb/composite.h>
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100276
277#include "gadget_chips.h"
278
279
Michal Nazarewicze8b6f8c2009-11-09 14:15:22 +0100280/*------------------------------------------------------------------------*/
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100281
Michal Nazarewiczd23b0f02009-11-09 14:15:20 +0100282#define FSG_DRIVER_DESC "Mass Storage Function"
Michal Nazarewiczd26a6aa2009-11-09 14:15:23 +0100283#define FSG_DRIVER_VERSION "2009/09/11"
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100284
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100285static const char fsg_string_interface[] = "Mass Storage";
286
Michal Nazarewiczd23b0f02009-11-09 14:15:20 +0100287#define FSG_NO_DEVICE_STRINGS 1
288#define FSG_NO_OTG 1
289#define FSG_NO_INTR_EP 1
Michal Nazarewicz93bcf122009-10-28 16:57:19 +0100290
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100291#include "storage_common.c"
292
293
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100294/*-------------------------------------------------------------------------*/
295
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +0100296struct fsg_dev;
Michal Nazarewicz8876f5e2010-06-21 13:57:09 +0200297struct fsg_common;
298
299/* FSF callback functions */
300struct fsg_operations {
Michal Nazarewiczb73af612010-10-28 17:31:23 +0200301 /*
302 * Callback function to call when thread exits. If no
Michal Nazarewicz8876f5e2010-06-21 13:57:09 +0200303 * callback is set or it returns value lower then zero MSF
304 * will force eject all LUNs it operates on (including those
305 * marked as non-removable or with prevent_medium_removal flag
Michal Nazarewiczb73af612010-10-28 17:31:23 +0200306 * set).
307 */
Michal Nazarewicz8876f5e2010-06-21 13:57:09 +0200308 int (*thread_exits)(struct fsg_common *common);
309
Michal Nazarewiczb73af612010-10-28 17:31:23 +0200310 /*
311 * Called prior to ejection. Negative return means error,
Michal Nazarewicz8876f5e2010-06-21 13:57:09 +0200312 * zero means to continue with ejection, positive means not to
Michal Nazarewiczb73af612010-10-28 17:31:23 +0200313 * eject.
314 */
Michal Nazarewicz8876f5e2010-06-21 13:57:09 +0200315 int (*pre_eject)(struct fsg_common *common,
316 struct fsg_lun *lun, int num);
Michal Nazarewiczb73af612010-10-28 17:31:23 +0200317 /*
318 * Called after ejection. Negative return means error, zero
319 * or positive is just a success.
320 */
Michal Nazarewicz8876f5e2010-06-21 13:57:09 +0200321 int (*post_eject)(struct fsg_common *common,
322 struct fsg_lun *lun, int num);
323};
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +0100324
Michal Nazarewicza41ae412009-10-28 16:57:20 +0100325/* Data shared by all the FSG instances. */
326struct fsg_common {
Michal Nazarewicz9c610212009-10-28 16:57:22 +0100327 struct usb_gadget *gadget;
Roger Quadros95ed3232011-05-09 13:08:07 +0300328 struct usb_composite_dev *cdev;
Michal Nazarewiczb894f602010-06-25 16:29:28 +0200329 struct fsg_dev *fsg, *new_fsg;
330 wait_queue_head_t fsg_wait;
Michal Nazarewicz9c610212009-10-28 16:57:22 +0100331
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100332 /* filesem protects: backing files in use */
333 struct rw_semaphore filesem;
334
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +0100335 /* lock protects: state, all the req_busy's */
336 spinlock_t lock;
337
338 struct usb_ep *ep0; /* Copy of gadget->ep0 */
339 struct usb_request *ep0req; /* Copy of cdev->req */
340 unsigned int ep0_req_tag;
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +0100341
Michal Nazarewicza41ae412009-10-28 16:57:20 +0100342 struct fsg_buffhd *next_buffhd_to_fill;
343 struct fsg_buffhd *next_buffhd_to_drain;
Per Forlin6532c7f2011-08-19 21:21:27 +0200344 struct fsg_buffhd *buffhds;
Michal Nazarewicza41ae412009-10-28 16:57:20 +0100345
346 int cmnd_size;
347 u8 cmnd[MAX_COMMAND_SIZE];
348
349 unsigned int nluns;
350 unsigned int lun;
351 struct fsg_lun *luns;
352 struct fsg_lun *curlun;
Michal Nazarewicz9c610212009-10-28 16:57:22 +0100353
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +0100354 unsigned int bulk_out_maxpacket;
355 enum fsg_state state; /* For exception handling */
356 unsigned int exception_req_tag;
357
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +0100358 enum data_direction data_dir;
359 u32 data_size;
360 u32 data_size_from_cmnd;
361 u32 tag;
362 u32 residue;
363 u32 usb_amount_left;
364
Michal Nazarewicz481e4922009-11-09 14:15:21 +0100365 unsigned int can_stall:1;
Michal Nazarewicz9c610212009-10-28 16:57:22 +0100366 unsigned int free_storage_on_release:1;
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +0100367 unsigned int phase_error:1;
368 unsigned int short_packet_received:1;
369 unsigned int bad_lun_okay:1;
370 unsigned int running:1;
Michal Nazarewicz9c610212009-10-28 16:57:22 +0100371
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +0100372 int thread_wakeup_needed;
373 struct completion thread_notifier;
374 struct task_struct *thread_task;
Michal Nazarewicze8b6f8c2009-11-09 14:15:22 +0100375
Michal Nazarewicz8876f5e2010-06-21 13:57:09 +0200376 /* Callback functions. */
377 const struct fsg_operations *ops;
Michal Nazarewiczc85efcb2009-11-09 14:15:26 +0100378 /* Gadget's private data. */
379 void *private_data;
380
Michal Nazarewiczb73af612010-10-28 17:31:23 +0200381 /*
382 * Vendor (8 chars), product (16 chars), release (4
383 * hexadecimal digits) and NUL byte
384 */
Michal Nazarewicz481e4922009-11-09 14:15:21 +0100385 char inquiry_string[8 + 16 + 4 + 1];
386
Michal Nazarewicz9c610212009-10-28 16:57:22 +0100387 struct kref ref;
Michal Nazarewicza41ae412009-10-28 16:57:20 +0100388};
389
Michal Nazarewicz481e4922009-11-09 14:15:21 +0100390struct fsg_config {
391 unsigned nluns;
392 struct fsg_lun_config {
393 const char *filename;
394 char ro;
395 char removable;
396 char cdrom;
Michal Nazarewicz9cfe7452010-08-12 17:43:51 +0200397 char nofua;
Michal Nazarewicz481e4922009-11-09 14:15:21 +0100398 } luns[FSG_MAX_LUNS];
399
Michal Nazarewicz8876f5e2010-06-21 13:57:09 +0200400 /* Callback functions. */
401 const struct fsg_operations *ops;
Michal Nazarewiczc85efcb2009-11-09 14:15:26 +0100402 /* Gadget's private data. */
403 void *private_data;
404
Michal Nazarewicz481e4922009-11-09 14:15:21 +0100405 const char *vendor_name; /* 8 characters or less */
406 const char *product_name; /* 16 characters or less */
407 u16 release;
408
409 char can_stall;
410};
411
Michal Nazarewicza41ae412009-10-28 16:57:20 +0100412struct fsg_dev {
Michal Nazarewiczd23b0f02009-11-09 14:15:20 +0100413 struct usb_function function;
Michal Nazarewiczd23b0f02009-11-09 14:15:20 +0100414 struct usb_gadget *gadget; /* Copy of cdev->gadget */
Michal Nazarewicza41ae412009-10-28 16:57:20 +0100415 struct fsg_common *common;
416
Michal Nazarewiczd23b0f02009-11-09 14:15:20 +0100417 u16 interface_number;
418
Michal Nazarewiczd26a6aa2009-11-09 14:15:23 +0100419 unsigned int bulk_in_enabled:1;
420 unsigned int bulk_out_enabled:1;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100421
422 unsigned long atomic_bitflags;
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +0100423#define IGNORE_BULK_OUT 0
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100424
425 struct usb_ep *bulk_in;
426 struct usb_ep *bulk_out;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100427};
428
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +0100429static inline int __fsg_is_set(struct fsg_common *common,
430 const char *func, unsigned line)
431{
432 if (common->fsg)
433 return 1;
434 ERROR(common, "common->fsg is NULL in %s at %u\n", func, line);
Michal Nazarewicz8876f5e2010-06-21 13:57:09 +0200435 WARN_ON(1);
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +0100436 return 0;
437}
438
439#define fsg_is_set(common) likely(__fsg_is_set(common, __func__, __LINE__))
440
Michal Nazarewiczd23b0f02009-11-09 14:15:20 +0100441static inline struct fsg_dev *fsg_from_func(struct usb_function *f)
442{
443 return container_of(f, struct fsg_dev, function);
444}
445
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100446typedef void (*fsg_routine_t)(struct fsg_dev *);
447
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +0100448static int exception_in_progress(struct fsg_common *common)
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100449{
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +0100450 return common->state > FSG_STATE_IDLE;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100451}
452
Greg Kroah-Hartman98346f72011-04-14 13:42:46 -0700453/* Make bulk-out requests be divisible by the maxpacket size */
454static void set_bulk_out_req_length(struct fsg_common *common,
455 struct fsg_buffhd *bh, unsigned int length)
456{
457 unsigned int rem;
458
459 bh->bulk_out_intended_length = length;
460 rem = length % common->bulk_out_maxpacket;
461 if (rem > 0)
462 length += common->bulk_out_maxpacket - rem;
463 bh->outreq->length = length;
464}
465
466
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100467/*-------------------------------------------------------------------------*/
468
469static int fsg_set_halt(struct fsg_dev *fsg, struct usb_ep *ep)
470{
471 const char *name;
472
473 if (ep == fsg->bulk_in)
474 name = "bulk-in";
475 else if (ep == fsg->bulk_out)
476 name = "bulk-out";
477 else
478 name = ep->name;
479 DBG(fsg, "%s set halt\n", name);
480 return usb_ep_set_halt(ep);
481}
482
483
484/*-------------------------------------------------------------------------*/
485
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100486/* These routines may be called in process context or in_irq */
487
488/* Caller must hold fsg->lock */
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +0100489static void wakeup_thread(struct fsg_common *common)
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100490{
491 /* Tell the main thread that something has happened */
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +0100492 common->thread_wakeup_needed = 1;
493 if (common->thread_task)
494 wake_up_process(common->thread_task);
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100495}
496
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +0100497static void raise_exception(struct fsg_common *common, enum fsg_state new_state)
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100498{
499 unsigned long flags;
500
Michal Nazarewiczb73af612010-10-28 17:31:23 +0200501 /*
502 * Do nothing if a higher-priority exception is already in progress.
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100503 * If a lower-or-equal priority exception is in progress, preempt it
Michal Nazarewiczb73af612010-10-28 17:31:23 +0200504 * and notify the main thread by sending it a signal.
505 */
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +0100506 spin_lock_irqsave(&common->lock, flags);
507 if (common->state <= new_state) {
508 common->exception_req_tag = common->ep0_req_tag;
509 common->state = new_state;
510 if (common->thread_task)
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100511 send_sig_info(SIGUSR1, SEND_SIG_FORCED,
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +0100512 common->thread_task);
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100513 }
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +0100514 spin_unlock_irqrestore(&common->lock, flags);
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100515}
516
517
518/*-------------------------------------------------------------------------*/
519
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +0100520static int ep0_queue(struct fsg_common *common)
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100521{
522 int rc;
523
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +0100524 rc = usb_ep_queue(common->ep0, common->ep0req, GFP_ATOMIC);
525 common->ep0->driver_data = common;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100526 if (rc != 0 && rc != -ESHUTDOWN) {
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100527 /* We can't do much more than wait for a reset */
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +0100528 WARNING(common, "error in submission: %s --> %d\n",
529 common->ep0->name, rc);
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100530 }
531 return rc;
532}
533
Michal Nazarewiczb73af612010-10-28 17:31:23 +0200534
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100535/*-------------------------------------------------------------------------*/
536
Michal Nazarewiczb73af612010-10-28 17:31:23 +0200537/* Completion handlers. These always run in_irq. */
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100538
539static void bulk_in_complete(struct usb_ep *ep, struct usb_request *req)
540{
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +0100541 struct fsg_common *common = ep->driver_data;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100542 struct fsg_buffhd *bh = req->context;
543
544 if (req->status || req->actual != req->length)
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +0100545 DBG(common, "%s --> %d, %u/%u\n", __func__,
Michal Nazarewiczb73af612010-10-28 17:31:23 +0200546 req->status, req->actual, req->length);
Michal Nazarewiczd26a6aa2009-11-09 14:15:23 +0100547 if (req->status == -ECONNRESET) /* Request was cancelled */
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100548 usb_ep_fifo_flush(ep);
549
550 /* Hold the lock while we update the request and buffer states */
551 smp_wmb();
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +0100552 spin_lock(&common->lock);
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100553 bh->inreq_busy = 0;
554 bh->state = BUF_STATE_EMPTY;
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +0100555 wakeup_thread(common);
556 spin_unlock(&common->lock);
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100557}
558
559static void bulk_out_complete(struct usb_ep *ep, struct usb_request *req)
560{
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +0100561 struct fsg_common *common = ep->driver_data;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100562 struct fsg_buffhd *bh = req->context;
563
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +0100564 dump_msg(common, "bulk-out", req->buf, req->actual);
Greg Kroah-Hartman98346f72011-04-14 13:42:46 -0700565 if (req->status || req->actual != bh->bulk_out_intended_length)
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +0100566 DBG(common, "%s --> %d, %u/%u\n", __func__,
Greg Kroah-Hartman98346f72011-04-14 13:42:46 -0700567 req->status, req->actual, bh->bulk_out_intended_length);
Michal Nazarewiczd26a6aa2009-11-09 14:15:23 +0100568 if (req->status == -ECONNRESET) /* Request was cancelled */
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100569 usb_ep_fifo_flush(ep);
570
571 /* Hold the lock while we update the request and buffer states */
572 smp_wmb();
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +0100573 spin_lock(&common->lock);
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100574 bh->outreq_busy = 0;
575 bh->state = BUF_STATE_FULL;
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +0100576 wakeup_thread(common);
577 spin_unlock(&common->lock);
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100578}
579
Michal Nazarewiczd23b0f02009-11-09 14:15:20 +0100580static int fsg_setup(struct usb_function *f,
Michal Nazarewiczb73af612010-10-28 17:31:23 +0200581 const struct usb_ctrlrequest *ctrl)
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100582{
Michal Nazarewiczd23b0f02009-11-09 14:15:20 +0100583 struct fsg_dev *fsg = fsg_from_func(f);
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +0100584 struct usb_request *req = fsg->common->ep0req;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100585 u16 w_index = le16_to_cpu(ctrl->wIndex);
Michal Nazarewicz93bcf122009-10-28 16:57:19 +0100586 u16 w_value = le16_to_cpu(ctrl->wValue);
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100587 u16 w_length = le16_to_cpu(ctrl->wLength);
588
Michal Nazarewiczb894f602010-06-25 16:29:28 +0200589 if (!fsg_is_set(fsg->common))
Michal Nazarewicz93bcf122009-10-28 16:57:19 +0100590 return -EOPNOTSUPP;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100591
Roger Quadros73ee4da2011-04-05 18:36:38 +0300592 ++fsg->common->ep0_req_tag; /* Record arrival of a new request */
593 req->context = NULL;
594 req->length = 0;
595 dump_msg(fsg, "ep0-setup", (u8 *) ctrl, sizeof(*ctrl));
596
Michal Nazarewicz93bcf122009-10-28 16:57:19 +0100597 switch (ctrl->bRequest) {
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100598
Sebastian Andrzej Siewior775dafd2012-02-25 18:28:11 +0100599 case US_BULK_RESET_REQUEST:
Michal Nazarewicz93bcf122009-10-28 16:57:19 +0100600 if (ctrl->bRequestType !=
601 (USB_DIR_OUT | USB_TYPE_CLASS | USB_RECIP_INTERFACE))
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100602 break;
Paul Zimmermance7b6122011-10-26 12:07:54 -0700603 if (w_index != fsg->interface_number || w_value != 0 ||
604 w_length != 0)
Michal Nazarewicz93bcf122009-10-28 16:57:19 +0100605 return -EDOM;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100606
Michal Nazarewiczb73af612010-10-28 17:31:23 +0200607 /*
608 * Raise an exception to stop the current operation
609 * and reinitialize our state.
610 */
Michal Nazarewicz93bcf122009-10-28 16:57:19 +0100611 DBG(fsg, "bulk reset request\n");
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +0100612 raise_exception(fsg->common, FSG_STATE_RESET);
Michal Nazarewicz93bcf122009-10-28 16:57:19 +0100613 return DELAYED_STATUS;
614
Sebastian Andrzej Siewior775dafd2012-02-25 18:28:11 +0100615 case US_BULK_GET_MAX_LUN:
Michal Nazarewicz93bcf122009-10-28 16:57:19 +0100616 if (ctrl->bRequestType !=
617 (USB_DIR_IN | USB_TYPE_CLASS | USB_RECIP_INTERFACE))
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100618 break;
Paul Zimmermandb332bc2011-10-13 17:46:36 -0700619 if (w_index != fsg->interface_number || w_value != 0 ||
620 w_length != 1)
Michal Nazarewicz93bcf122009-10-28 16:57:19 +0100621 return -EDOM;
622 VDBG(fsg, "get max LUN\n");
Michal Nazarewiczb73af612010-10-28 17:31:23 +0200623 *(u8 *)req->buf = fsg->common->nluns - 1;
Michal Nazarewiczb00ce112010-01-27 11:14:28 +0100624
625 /* Respond with data/status */
Michal Nazarewiczd7e18a92010-02-03 11:37:17 +0100626 req->length = min((u16)1, w_length);
Michal Nazarewiczb00ce112010-01-27 11:14:28 +0100627 return ep0_queue(fsg->common);
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100628 }
629
Michal Nazarewicz93bcf122009-10-28 16:57:19 +0100630 VDBG(fsg,
Michal Nazarewiczb73af612010-10-28 17:31:23 +0200631 "unknown class-specific control req %02x.%02x v%04x i%04x l%u\n",
Michal Nazarewicz93bcf122009-10-28 16:57:19 +0100632 ctrl->bRequestType, ctrl->bRequest,
633 le16_to_cpu(ctrl->wValue), w_index, w_length);
634 return -EOPNOTSUPP;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100635}
636
637
638/*-------------------------------------------------------------------------*/
639
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100640/* All the following routines run in process context */
641
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100642/* Use this for bulk or interrupt transfers, not ep0 */
643static void start_transfer(struct fsg_dev *fsg, struct usb_ep *ep,
Michal Nazarewiczb73af612010-10-28 17:31:23 +0200644 struct usb_request *req, int *pbusy,
645 enum fsg_buffer_state *state)
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100646{
647 int rc;
648
649 if (ep == fsg->bulk_in)
650 dump_msg(fsg, "bulk-in", req->buf, req->length);
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100651
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +0100652 spin_lock_irq(&fsg->common->lock);
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100653 *pbusy = 1;
654 *state = BUF_STATE_BUSY;
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +0100655 spin_unlock_irq(&fsg->common->lock);
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100656 rc = usb_ep_queue(ep, req, GFP_KERNEL);
657 if (rc != 0) {
658 *pbusy = 0;
659 *state = BUF_STATE_EMPTY;
660
661 /* We can't do much more than wait for a reset */
662
Michal Nazarewiczb73af612010-10-28 17:31:23 +0200663 /*
664 * Note: currently the net2280 driver fails zero-length
665 * submissions if DMA is enabled.
666 */
667 if (rc != -ESHUTDOWN &&
668 !(rc == -EOPNOTSUPP && req->length == 0))
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100669 WARNING(fsg, "error in submission: %s --> %d\n",
Michal Nazarewiczb73af612010-10-28 17:31:23 +0200670 ep->name, rc);
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100671 }
672}
673
Michal Nazarewiczfe52f792010-10-28 17:31:21 +0200674static bool start_in_transfer(struct fsg_common *common, struct fsg_buffhd *bh)
675{
676 if (!fsg_is_set(common))
677 return false;
678 start_transfer(common->fsg, common->fsg->bulk_in,
679 bh->inreq, &bh->inreq_busy, &bh->state);
680 return true;
681}
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100682
Michal Nazarewiczfe52f792010-10-28 17:31:21 +0200683static bool start_out_transfer(struct fsg_common *common, struct fsg_buffhd *bh)
684{
685 if (!fsg_is_set(common))
686 return false;
687 start_transfer(common->fsg, common->fsg->bulk_out,
688 bh->outreq, &bh->outreq_busy, &bh->state);
689 return true;
690}
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +0100691
692static int sleep_thread(struct fsg_common *common)
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100693{
694 int rc = 0;
695
696 /* Wait until a signal arrives or we are woken up */
697 for (;;) {
698 try_to_freeze();
699 set_current_state(TASK_INTERRUPTIBLE);
700 if (signal_pending(current)) {
701 rc = -EINTR;
702 break;
703 }
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +0100704 if (common->thread_wakeup_needed)
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100705 break;
706 schedule();
707 }
708 __set_current_state(TASK_RUNNING);
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +0100709 common->thread_wakeup_needed = 0;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100710 return rc;
711}
712
713
714/*-------------------------------------------------------------------------*/
715
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +0100716static int do_read(struct fsg_common *common)
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100717{
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +0100718 struct fsg_lun *curlun = common->curlun;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100719 u32 lba;
720 struct fsg_buffhd *bh;
721 int rc;
722 u32 amount_left;
723 loff_t file_offset, file_offset_tmp;
724 unsigned int amount;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100725 ssize_t nread;
726
Michal Nazarewiczb73af612010-10-28 17:31:23 +0200727 /*
728 * Get the starting Logical Block Address and check that it's
729 * not too big.
730 */
Michal Nazarewicz0a6a7172010-10-07 14:46:15 +0200731 if (common->cmnd[0] == READ_6)
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +0100732 lba = get_unaligned_be24(&common->cmnd[1]);
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100733 else {
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +0100734 lba = get_unaligned_be32(&common->cmnd[2]);
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100735
Michal Nazarewiczb73af612010-10-28 17:31:23 +0200736 /*
737 * We allow DPO (Disable Page Out = don't save data in the
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100738 * cache) and FUA (Force Unit Access = don't read from the
Michal Nazarewiczb73af612010-10-28 17:31:23 +0200739 * cache), but we don't implement them.
740 */
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +0100741 if ((common->cmnd[1] & ~0x18) != 0) {
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100742 curlun->sense_data = SS_INVALID_FIELD_IN_CDB;
743 return -EINVAL;
744 }
745 }
746 if (lba >= curlun->num_sectors) {
747 curlun->sense_data = SS_LOGICAL_BLOCK_ADDRESS_OUT_OF_RANGE;
748 return -EINVAL;
749 }
Peiyu Li3f565a32011-08-17 22:52:59 -0700750 file_offset = ((loff_t) lba) << curlun->blkbits;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100751
752 /* Carry out the file reads */
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +0100753 amount_left = common->data_size_from_cmnd;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100754 if (unlikely(amount_left == 0))
Michal Nazarewiczd26a6aa2009-11-09 14:15:23 +0100755 return -EIO; /* No default reply */
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100756
757 for (;;) {
Michal Nazarewiczb73af612010-10-28 17:31:23 +0200758 /*
759 * Figure out how much we need to read:
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100760 * Try to read the remaining amount.
761 * But don't read more than the buffer size.
762 * And don't try to read past the end of the file.
Michal Nazarewiczb73af612010-10-28 17:31:23 +0200763 */
Michal Nazarewicz93bcf122009-10-28 16:57:19 +0100764 amount = min(amount_left, FSG_BUFLEN);
Michal Nazarewiczb73af612010-10-28 17:31:23 +0200765 amount = min((loff_t)amount,
766 curlun->file_length - file_offset);
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100767
768 /* Wait for the next buffer to become available */
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +0100769 bh = common->next_buffhd_to_fill;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100770 while (bh->state != BUF_STATE_EMPTY) {
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +0100771 rc = sleep_thread(common);
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100772 if (rc)
773 return rc;
774 }
775
Michal Nazarewiczb73af612010-10-28 17:31:23 +0200776 /*
777 * If we were asked to read past the end of file,
778 * end with an empty buffer.
779 */
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100780 if (amount == 0) {
781 curlun->sense_data =
782 SS_LOGICAL_BLOCK_ADDRESS_OUT_OF_RANGE;
Peiyu Li3f565a32011-08-17 22:52:59 -0700783 curlun->sense_data_info =
784 file_offset >> curlun->blkbits;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100785 curlun->info_valid = 1;
786 bh->inreq->length = 0;
787 bh->state = BUF_STATE_FULL;
788 break;
789 }
790
791 /* Perform the read */
792 file_offset_tmp = file_offset;
793 nread = vfs_read(curlun->filp,
Michal Nazarewiczb73af612010-10-28 17:31:23 +0200794 (char __user *)bh->buf,
795 amount, &file_offset_tmp);
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100796 VLDBG(curlun, "file read %u @ %llu -> %d\n", amount,
Michal Nazarewiczb73af612010-10-28 17:31:23 +0200797 (unsigned long long)file_offset, (int)nread);
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100798 if (signal_pending(current))
799 return -EINTR;
800
801 if (nread < 0) {
Michal Nazarewiczb73af612010-10-28 17:31:23 +0200802 LDBG(curlun, "error in file read: %d\n", (int)nread);
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100803 nread = 0;
804 } else if (nread < amount) {
805 LDBG(curlun, "partial file read: %d/%u\n",
Michal Nazarewiczb73af612010-10-28 17:31:23 +0200806 (int)nread, amount);
Peiyu Li3f565a32011-08-17 22:52:59 -0700807 nread = round_down(nread, curlun->blksize);
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100808 }
809 file_offset += nread;
810 amount_left -= nread;
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +0100811 common->residue -= nread;
Alan Stern04eee252011-08-18 14:29:00 -0400812
813 /*
814 * Except at the end of the transfer, nread will be
815 * equal to the buffer size, which is divisible by the
816 * bulk-in maxpacket size.
817 */
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100818 bh->inreq->length = nread;
819 bh->state = BUF_STATE_FULL;
820
821 /* If an error occurred, report it and its position */
822 if (nread < amount) {
823 curlun->sense_data = SS_UNRECOVERED_READ_ERROR;
Peiyu Li3f565a32011-08-17 22:52:59 -0700824 curlun->sense_data_info =
825 file_offset >> curlun->blkbits;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100826 curlun->info_valid = 1;
827 break;
828 }
829
830 if (amount_left == 0)
Michal Nazarewiczd26a6aa2009-11-09 14:15:23 +0100831 break; /* No more left to read */
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100832
833 /* Send this buffer and go read some more */
834 bh->inreq->zero = 0;
Michal Nazarewiczfe52f792010-10-28 17:31:21 +0200835 if (!start_in_transfer(common, bh))
836 /* Don't know what to do if common->fsg is NULL */
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +0100837 return -EIO;
838 common->next_buffhd_to_fill = bh->next;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100839 }
840
Michal Nazarewiczd26a6aa2009-11-09 14:15:23 +0100841 return -EIO; /* No default reply */
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100842}
843
844
845/*-------------------------------------------------------------------------*/
846
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +0100847static int do_write(struct fsg_common *common)
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100848{
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +0100849 struct fsg_lun *curlun = common->curlun;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100850 u32 lba;
851 struct fsg_buffhd *bh;
852 int get_some_more;
853 u32 amount_left_to_req, amount_left_to_write;
854 loff_t usb_offset, file_offset, file_offset_tmp;
855 unsigned int amount;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100856 ssize_t nwritten;
857 int rc;
858
859 if (curlun->ro) {
860 curlun->sense_data = SS_WRITE_PROTECTED;
861 return -EINVAL;
862 }
863 spin_lock(&curlun->filp->f_lock);
Michal Nazarewiczd26a6aa2009-11-09 14:15:23 +0100864 curlun->filp->f_flags &= ~O_SYNC; /* Default is not to wait */
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100865 spin_unlock(&curlun->filp->f_lock);
866
Michal Nazarewiczb73af612010-10-28 17:31:23 +0200867 /*
868 * Get the starting Logical Block Address and check that it's
869 * not too big
870 */
Michal Nazarewicz0a6a7172010-10-07 14:46:15 +0200871 if (common->cmnd[0] == WRITE_6)
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +0100872 lba = get_unaligned_be24(&common->cmnd[1]);
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100873 else {
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +0100874 lba = get_unaligned_be32(&common->cmnd[2]);
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100875
Michal Nazarewiczb73af612010-10-28 17:31:23 +0200876 /*
877 * We allow DPO (Disable Page Out = don't save data in the
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100878 * cache) and FUA (Force Unit Access = write directly to the
879 * medium). We don't implement DPO; we implement FUA by
Michal Nazarewiczb73af612010-10-28 17:31:23 +0200880 * performing synchronous output.
881 */
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +0100882 if (common->cmnd[1] & ~0x18) {
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100883 curlun->sense_data = SS_INVALID_FIELD_IN_CDB;
884 return -EINVAL;
885 }
Michal Nazarewicz9cfe7452010-08-12 17:43:51 +0200886 if (!curlun->nofua && (common->cmnd[1] & 0x08)) { /* FUA */
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100887 spin_lock(&curlun->filp->f_lock);
888 curlun->filp->f_flags |= O_SYNC;
889 spin_unlock(&curlun->filp->f_lock);
890 }
891 }
892 if (lba >= curlun->num_sectors) {
893 curlun->sense_data = SS_LOGICAL_BLOCK_ADDRESS_OUT_OF_RANGE;
894 return -EINVAL;
895 }
896
897 /* Carry out the file writes */
898 get_some_more = 1;
Peiyu Li3f565a32011-08-17 22:52:59 -0700899 file_offset = usb_offset = ((loff_t) lba) << curlun->blkbits;
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +0100900 amount_left_to_req = common->data_size_from_cmnd;
901 amount_left_to_write = common->data_size_from_cmnd;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100902
903 while (amount_left_to_write > 0) {
904
905 /* Queue a request for more data from the host */
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +0100906 bh = common->next_buffhd_to_fill;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100907 if (bh->state == BUF_STATE_EMPTY && get_some_more) {
908
Michal Nazarewiczb73af612010-10-28 17:31:23 +0200909 /*
910 * Figure out how much we want to get:
Alan Stern04eee252011-08-18 14:29:00 -0400911 * Try to get the remaining amount,
912 * but not more than the buffer size.
Michal Nazarewiczb73af612010-10-28 17:31:23 +0200913 */
Michal Nazarewicz93bcf122009-10-28 16:57:19 +0100914 amount = min(amount_left_to_req, FSG_BUFLEN);
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100915
Alan Stern04eee252011-08-18 14:29:00 -0400916 /* Beyond the end of the backing file? */
917 if (usb_offset >= curlun->file_length) {
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100918 get_some_more = 0;
919 curlun->sense_data =
920 SS_LOGICAL_BLOCK_ADDRESS_OUT_OF_RANGE;
Peiyu Li3f565a32011-08-17 22:52:59 -0700921 curlun->sense_data_info =
922 usb_offset >> curlun->blkbits;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100923 curlun->info_valid = 1;
924 continue;
925 }
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100926
927 /* Get the next buffer */
928 usb_offset += amount;
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +0100929 common->usb_amount_left -= amount;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100930 amount_left_to_req -= amount;
931 if (amount_left_to_req == 0)
932 get_some_more = 0;
933
Michal Nazarewiczb73af612010-10-28 17:31:23 +0200934 /*
Alan Stern04eee252011-08-18 14:29:00 -0400935 * Except at the end of the transfer, amount will be
936 * equal to the buffer size, which is divisible by
937 * the bulk-out maxpacket size.
Michal Nazarewiczb73af612010-10-28 17:31:23 +0200938 */
Paul Zimmermanfe696762011-09-30 15:26:06 -0700939 set_bulk_out_req_length(common, bh, amount);
Michal Nazarewiczfe52f792010-10-28 17:31:21 +0200940 if (!start_out_transfer(common, bh))
Michal Nazarewiczb73af612010-10-28 17:31:23 +0200941 /* Dunno what to do if common->fsg is NULL */
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +0100942 return -EIO;
943 common->next_buffhd_to_fill = bh->next;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100944 continue;
945 }
946
947 /* Write the received data to the backing file */
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +0100948 bh = common->next_buffhd_to_drain;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100949 if (bh->state == BUF_STATE_EMPTY && !get_some_more)
Michal Nazarewiczd26a6aa2009-11-09 14:15:23 +0100950 break; /* We stopped early */
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100951 if (bh->state == BUF_STATE_FULL) {
952 smp_rmb();
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +0100953 common->next_buffhd_to_drain = bh->next;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100954 bh->state = BUF_STATE_EMPTY;
955
956 /* Did something go wrong with the transfer? */
957 if (bh->outreq->status != 0) {
958 curlun->sense_data = SS_COMMUNICATION_FAILURE;
Peiyu Li3f565a32011-08-17 22:52:59 -0700959 curlun->sense_data_info =
960 file_offset >> curlun->blkbits;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100961 curlun->info_valid = 1;
962 break;
963 }
964
965 amount = bh->outreq->actual;
966 if (curlun->file_length - file_offset < amount) {
967 LERROR(curlun,
Michal Nazarewiczb73af612010-10-28 17:31:23 +0200968 "write %u @ %llu beyond end %llu\n",
969 amount, (unsigned long long)file_offset,
970 (unsigned long long)curlun->file_length);
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100971 amount = curlun->file_length - file_offset;
972 }
973
Paul Zimmermanfe696762011-09-30 15:26:06 -0700974 /* Don't accept excess data. The spec doesn't say
975 * what to do in this case. We'll ignore the error.
976 */
977 amount = min(amount, bh->bulk_out_intended_length);
978
Alan Stern04eee252011-08-18 14:29:00 -0400979 /* Don't write a partial block */
980 amount = round_down(amount, curlun->blksize);
981 if (amount == 0)
982 goto empty_write;
983
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100984 /* Perform the write */
985 file_offset_tmp = file_offset;
986 nwritten = vfs_write(curlun->filp,
Michal Nazarewiczb73af612010-10-28 17:31:23 +0200987 (char __user *)bh->buf,
988 amount, &file_offset_tmp);
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100989 VLDBG(curlun, "file write %u @ %llu -> %d\n", amount,
Michal Nazarewiczb73af612010-10-28 17:31:23 +0200990 (unsigned long long)file_offset, (int)nwritten);
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100991 if (signal_pending(current))
Michal Nazarewiczd26a6aa2009-11-09 14:15:23 +0100992 return -EINTR; /* Interrupted! */
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100993
994 if (nwritten < 0) {
995 LDBG(curlun, "error in file write: %d\n",
Michal Nazarewiczb73af612010-10-28 17:31:23 +0200996 (int)nwritten);
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100997 nwritten = 0;
998 } else if (nwritten < amount) {
999 LDBG(curlun, "partial file write: %d/%u\n",
Michal Nazarewiczb73af612010-10-28 17:31:23 +02001000 (int)nwritten, amount);
Peiyu Li3f565a32011-08-17 22:52:59 -07001001 nwritten = round_down(nwritten, curlun->blksize);
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001002 }
1003 file_offset += nwritten;
1004 amount_left_to_write -= nwritten;
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001005 common->residue -= nwritten;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001006
1007 /* If an error occurred, report it and its position */
1008 if (nwritten < amount) {
1009 curlun->sense_data = SS_WRITE_ERROR;
Peiyu Li3f565a32011-08-17 22:52:59 -07001010 curlun->sense_data_info =
1011 file_offset >> curlun->blkbits;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001012 curlun->info_valid = 1;
1013 break;
1014 }
1015
Alan Stern04eee252011-08-18 14:29:00 -04001016 empty_write:
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001017 /* Did the host decide to stop early? */
Paul Zimmermanfe696762011-09-30 15:26:06 -07001018 if (bh->outreq->actual < bh->bulk_out_intended_length) {
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001019 common->short_packet_received = 1;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001020 break;
1021 }
1022 continue;
1023 }
1024
1025 /* Wait for something to happen */
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001026 rc = sleep_thread(common);
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001027 if (rc)
1028 return rc;
1029 }
1030
Michal Nazarewiczd26a6aa2009-11-09 14:15:23 +01001031 return -EIO; /* No default reply */
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001032}
1033
1034
1035/*-------------------------------------------------------------------------*/
1036
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001037static int do_synchronize_cache(struct fsg_common *common)
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001038{
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001039 struct fsg_lun *curlun = common->curlun;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001040 int rc;
1041
1042 /* We ignore the requested LBA and write out all file's
1043 * dirty data buffers. */
1044 rc = fsg_lun_fsync_sub(curlun);
1045 if (rc)
1046 curlun->sense_data = SS_WRITE_ERROR;
1047 return 0;
1048}
1049
1050
1051/*-------------------------------------------------------------------------*/
1052
1053static void invalidate_sub(struct fsg_lun *curlun)
1054{
1055 struct file *filp = curlun->filp;
1056 struct inode *inode = filp->f_path.dentry->d_inode;
1057 unsigned long rc;
1058
1059 rc = invalidate_mapping_pages(inode->i_mapping, 0, -1);
Christoph Hellwig2ecdc822010-01-26 17:27:20 +01001060 VLDBG(curlun, "invalidate_mapping_pages -> %ld\n", rc);
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001061}
1062
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001063static int do_verify(struct fsg_common *common)
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001064{
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001065 struct fsg_lun *curlun = common->curlun;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001066 u32 lba;
1067 u32 verification_length;
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001068 struct fsg_buffhd *bh = common->next_buffhd_to_fill;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001069 loff_t file_offset, file_offset_tmp;
1070 u32 amount_left;
1071 unsigned int amount;
1072 ssize_t nread;
1073
Michal Nazarewiczb73af612010-10-28 17:31:23 +02001074 /*
1075 * Get the starting Logical Block Address and check that it's
1076 * not too big.
1077 */
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001078 lba = get_unaligned_be32(&common->cmnd[2]);
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001079 if (lba >= curlun->num_sectors) {
1080 curlun->sense_data = SS_LOGICAL_BLOCK_ADDRESS_OUT_OF_RANGE;
1081 return -EINVAL;
1082 }
1083
Michal Nazarewiczb73af612010-10-28 17:31:23 +02001084 /*
1085 * We allow DPO (Disable Page Out = don't save data in the
1086 * cache) but we don't implement it.
1087 */
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001088 if (common->cmnd[1] & ~0x10) {
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001089 curlun->sense_data = SS_INVALID_FIELD_IN_CDB;
1090 return -EINVAL;
1091 }
1092
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001093 verification_length = get_unaligned_be16(&common->cmnd[7]);
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001094 if (unlikely(verification_length == 0))
Michal Nazarewiczd26a6aa2009-11-09 14:15:23 +01001095 return -EIO; /* No default reply */
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001096
1097 /* Prepare to carry out the file verify */
Peiyu Li3f565a32011-08-17 22:52:59 -07001098 amount_left = verification_length << curlun->blkbits;
1099 file_offset = ((loff_t) lba) << curlun->blkbits;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001100
1101 /* Write out all the dirty buffers before invalidating them */
1102 fsg_lun_fsync_sub(curlun);
1103 if (signal_pending(current))
1104 return -EINTR;
1105
1106 invalidate_sub(curlun);
1107 if (signal_pending(current))
1108 return -EINTR;
1109
1110 /* Just try to read the requested blocks */
1111 while (amount_left > 0) {
Michal Nazarewiczb73af612010-10-28 17:31:23 +02001112 /*
1113 * Figure out how much we need to read:
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001114 * Try to read the remaining amount, but not more than
1115 * the buffer size.
1116 * And don't try to read past the end of the file.
Michal Nazarewiczb73af612010-10-28 17:31:23 +02001117 */
Michal Nazarewicz93bcf122009-10-28 16:57:19 +01001118 amount = min(amount_left, FSG_BUFLEN);
Michal Nazarewiczb73af612010-10-28 17:31:23 +02001119 amount = min((loff_t)amount,
1120 curlun->file_length - file_offset);
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001121 if (amount == 0) {
1122 curlun->sense_data =
1123 SS_LOGICAL_BLOCK_ADDRESS_OUT_OF_RANGE;
Peiyu Li3f565a32011-08-17 22:52:59 -07001124 curlun->sense_data_info =
1125 file_offset >> curlun->blkbits;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001126 curlun->info_valid = 1;
1127 break;
1128 }
1129
1130 /* Perform the read */
1131 file_offset_tmp = file_offset;
1132 nread = vfs_read(curlun->filp,
1133 (char __user *) bh->buf,
1134 amount, &file_offset_tmp);
1135 VLDBG(curlun, "file read %u @ %llu -> %d\n", amount,
1136 (unsigned long long) file_offset,
1137 (int) nread);
1138 if (signal_pending(current))
1139 return -EINTR;
1140
1141 if (nread < 0) {
Michal Nazarewiczb73af612010-10-28 17:31:23 +02001142 LDBG(curlun, "error in file verify: %d\n", (int)nread);
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001143 nread = 0;
1144 } else if (nread < amount) {
1145 LDBG(curlun, "partial file verify: %d/%u\n",
Michal Nazarewiczb73af612010-10-28 17:31:23 +02001146 (int)nread, amount);
Peiyu Li3f565a32011-08-17 22:52:59 -07001147 nread = round_down(nread, curlun->blksize);
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001148 }
1149 if (nread == 0) {
1150 curlun->sense_data = SS_UNRECOVERED_READ_ERROR;
Peiyu Li3f565a32011-08-17 22:52:59 -07001151 curlun->sense_data_info =
1152 file_offset >> curlun->blkbits;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001153 curlun->info_valid = 1;
1154 break;
1155 }
1156 file_offset += nread;
1157 amount_left -= nread;
1158 }
1159 return 0;
1160}
1161
1162
1163/*-------------------------------------------------------------------------*/
1164
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001165static int do_inquiry(struct fsg_common *common, struct fsg_buffhd *bh)
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001166{
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001167 struct fsg_lun *curlun = common->curlun;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001168 u8 *buf = (u8 *) bh->buf;
1169
Michal Nazarewicz481e4922009-11-09 14:15:21 +01001170 if (!curlun) { /* Unsupported LUNs are okay */
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001171 common->bad_lun_okay = 1;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001172 memset(buf, 0, 36);
Michal Nazarewiczd26a6aa2009-11-09 14:15:23 +01001173 buf[0] = 0x7f; /* Unsupported, no device-type */
1174 buf[4] = 31; /* Additional length */
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001175 return 36;
1176 }
1177
Michal Nazarewicz0a6a7172010-10-07 14:46:15 +02001178 buf[0] = curlun->cdrom ? TYPE_ROM : TYPE_DISK;
Michal Nazarewicz481e4922009-11-09 14:15:21 +01001179 buf[1] = curlun->removable ? 0x80 : 0;
Michal Nazarewiczd26a6aa2009-11-09 14:15:23 +01001180 buf[2] = 2; /* ANSI SCSI level 2 */
1181 buf[3] = 2; /* SCSI-2 INQUIRY data format */
1182 buf[4] = 31; /* Additional length */
1183 buf[5] = 0; /* No special options */
Michal Nazarewicz481e4922009-11-09 14:15:21 +01001184 buf[6] = 0;
1185 buf[7] = 0;
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001186 memcpy(buf + 8, common->inquiry_string, sizeof common->inquiry_string);
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001187 return 36;
1188}
1189
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001190static int do_request_sense(struct fsg_common *common, struct fsg_buffhd *bh)
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001191{
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001192 struct fsg_lun *curlun = common->curlun;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001193 u8 *buf = (u8 *) bh->buf;
1194 u32 sd, sdinfo;
1195 int valid;
1196
1197 /*
1198 * From the SCSI-2 spec., section 7.9 (Unit attention condition):
1199 *
1200 * If a REQUEST SENSE command is received from an initiator
1201 * with a pending unit attention condition (before the target
1202 * generates the contingent allegiance condition), then the
1203 * target shall either:
1204 * a) report any pending sense data and preserve the unit
1205 * attention condition on the logical unit, or,
1206 * b) report the unit attention condition, may discard any
1207 * pending sense data, and clear the unit attention
1208 * condition on the logical unit for that initiator.
1209 *
1210 * FSG normally uses option a); enable this code to use option b).
1211 */
1212#if 0
1213 if (curlun && curlun->unit_attention_data != SS_NO_SENSE) {
1214 curlun->sense_data = curlun->unit_attention_data;
1215 curlun->unit_attention_data = SS_NO_SENSE;
1216 }
1217#endif
1218
Michal Nazarewiczd26a6aa2009-11-09 14:15:23 +01001219 if (!curlun) { /* Unsupported LUNs are okay */
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001220 common->bad_lun_okay = 1;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001221 sd = SS_LOGICAL_UNIT_NOT_SUPPORTED;
1222 sdinfo = 0;
1223 valid = 0;
1224 } else {
1225 sd = curlun->sense_data;
1226 sdinfo = curlun->sense_data_info;
1227 valid = curlun->info_valid << 7;
1228 curlun->sense_data = SS_NO_SENSE;
1229 curlun->sense_data_info = 0;
1230 curlun->info_valid = 0;
1231 }
1232
1233 memset(buf, 0, 18);
Michal Nazarewiczd26a6aa2009-11-09 14:15:23 +01001234 buf[0] = valid | 0x70; /* Valid, current error */
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001235 buf[2] = SK(sd);
1236 put_unaligned_be32(sdinfo, &buf[3]); /* Sense information */
Michal Nazarewiczd26a6aa2009-11-09 14:15:23 +01001237 buf[7] = 18 - 8; /* Additional sense length */
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001238 buf[12] = ASC(sd);
1239 buf[13] = ASCQ(sd);
1240 return 18;
1241}
1242
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001243static int do_read_capacity(struct fsg_common *common, struct fsg_buffhd *bh)
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001244{
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001245 struct fsg_lun *curlun = common->curlun;
1246 u32 lba = get_unaligned_be32(&common->cmnd[2]);
1247 int pmi = common->cmnd[8];
Michal Nazarewiczb73af612010-10-28 17:31:23 +02001248 u8 *buf = (u8 *)bh->buf;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001249
1250 /* Check the PMI and LBA fields */
1251 if (pmi > 1 || (pmi == 0 && lba != 0)) {
1252 curlun->sense_data = SS_INVALID_FIELD_IN_CDB;
1253 return -EINVAL;
1254 }
1255
1256 put_unaligned_be32(curlun->num_sectors - 1, &buf[0]);
1257 /* Max logical block */
Peiyu Li3f565a32011-08-17 22:52:59 -07001258 put_unaligned_be32(curlun->blksize, &buf[4]);/* Block length */
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001259 return 8;
1260}
1261
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001262static int do_read_header(struct fsg_common *common, struct fsg_buffhd *bh)
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001263{
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001264 struct fsg_lun *curlun = common->curlun;
1265 int msf = common->cmnd[1] & 0x02;
1266 u32 lba = get_unaligned_be32(&common->cmnd[2]);
Michal Nazarewiczb73af612010-10-28 17:31:23 +02001267 u8 *buf = (u8 *)bh->buf;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001268
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001269 if (common->cmnd[1] & ~0x02) { /* Mask away MSF */
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001270 curlun->sense_data = SS_INVALID_FIELD_IN_CDB;
1271 return -EINVAL;
1272 }
1273 if (lba >= curlun->num_sectors) {
1274 curlun->sense_data = SS_LOGICAL_BLOCK_ADDRESS_OUT_OF_RANGE;
1275 return -EINVAL;
1276 }
1277
1278 memset(buf, 0, 8);
1279 buf[0] = 0x01; /* 2048 bytes of user data, rest is EC */
1280 store_cdrom_address(&buf[4], msf, lba);
1281 return 8;
1282}
1283
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001284static int do_read_toc(struct fsg_common *common, struct fsg_buffhd *bh)
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001285{
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001286 struct fsg_lun *curlun = common->curlun;
1287 int msf = common->cmnd[1] & 0x02;
1288 int start_track = common->cmnd[6];
Michal Nazarewiczb73af612010-10-28 17:31:23 +02001289 u8 *buf = (u8 *)bh->buf;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001290
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001291 if ((common->cmnd[1] & ~0x02) != 0 || /* Mask away MSF */
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001292 start_track > 1) {
1293 curlun->sense_data = SS_INVALID_FIELD_IN_CDB;
1294 return -EINVAL;
1295 }
1296
1297 memset(buf, 0, 20);
1298 buf[1] = (20-2); /* TOC data length */
1299 buf[2] = 1; /* First track number */
1300 buf[3] = 1; /* Last track number */
1301 buf[5] = 0x16; /* Data track, copying allowed */
1302 buf[6] = 0x01; /* Only track is number 1 */
1303 store_cdrom_address(&buf[8], msf, 0);
1304
1305 buf[13] = 0x16; /* Lead-out track is data */
1306 buf[14] = 0xAA; /* Lead-out track number */
1307 store_cdrom_address(&buf[16], msf, curlun->num_sectors);
1308 return 20;
1309}
1310
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001311static int do_mode_sense(struct fsg_common *common, struct fsg_buffhd *bh)
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001312{
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001313 struct fsg_lun *curlun = common->curlun;
1314 int mscmnd = common->cmnd[0];
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001315 u8 *buf = (u8 *) bh->buf;
1316 u8 *buf0 = buf;
1317 int pc, page_code;
1318 int changeable_values, all_pages;
1319 int valid_page = 0;
1320 int len, limit;
1321
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001322 if ((common->cmnd[1] & ~0x08) != 0) { /* Mask away DBD */
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001323 curlun->sense_data = SS_INVALID_FIELD_IN_CDB;
1324 return -EINVAL;
1325 }
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001326 pc = common->cmnd[2] >> 6;
1327 page_code = common->cmnd[2] & 0x3f;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001328 if (pc == 3) {
1329 curlun->sense_data = SS_SAVING_PARAMETERS_NOT_SUPPORTED;
1330 return -EINVAL;
1331 }
1332 changeable_values = (pc == 1);
1333 all_pages = (page_code == 0x3f);
1334
Michal Nazarewiczb73af612010-10-28 17:31:23 +02001335 /*
1336 * Write the mode parameter header. Fixed values are: default
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001337 * medium type, no cache control (DPOFUA), and no block descriptors.
1338 * The only variable value is the WriteProtect bit. We will fill in
Michal Nazarewiczb73af612010-10-28 17:31:23 +02001339 * the mode data length later.
1340 */
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001341 memset(buf, 0, 8);
Michal Nazarewicz0a6a7172010-10-07 14:46:15 +02001342 if (mscmnd == MODE_SENSE) {
Michal Nazarewiczd26a6aa2009-11-09 14:15:23 +01001343 buf[2] = (curlun->ro ? 0x80 : 0x00); /* WP, DPOFUA */
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001344 buf += 4;
1345 limit = 255;
Michal Nazarewicz0a6a7172010-10-07 14:46:15 +02001346 } else { /* MODE_SENSE_10 */
Michal Nazarewiczd26a6aa2009-11-09 14:15:23 +01001347 buf[3] = (curlun->ro ? 0x80 : 0x00); /* WP, DPOFUA */
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001348 buf += 8;
Michal Nazarewiczd26a6aa2009-11-09 14:15:23 +01001349 limit = 65535; /* Should really be FSG_BUFLEN */
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001350 }
1351
1352 /* No block descriptors */
1353
Michal Nazarewiczb73af612010-10-28 17:31:23 +02001354 /*
1355 * The mode pages, in numerical order. The only page we support
1356 * is the Caching page.
1357 */
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001358 if (page_code == 0x08 || all_pages) {
1359 valid_page = 1;
Michal Nazarewiczd26a6aa2009-11-09 14:15:23 +01001360 buf[0] = 0x08; /* Page code */
1361 buf[1] = 10; /* Page length */
1362 memset(buf+2, 0, 10); /* None of the fields are changeable */
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001363
1364 if (!changeable_values) {
Michal Nazarewiczd26a6aa2009-11-09 14:15:23 +01001365 buf[2] = 0x04; /* Write cache enable, */
1366 /* Read cache not disabled */
1367 /* No cache retention priorities */
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001368 put_unaligned_be16(0xffff, &buf[4]);
1369 /* Don't disable prefetch */
1370 /* Minimum prefetch = 0 */
1371 put_unaligned_be16(0xffff, &buf[8]);
1372 /* Maximum prefetch */
1373 put_unaligned_be16(0xffff, &buf[10]);
1374 /* Maximum prefetch ceiling */
1375 }
1376 buf += 12;
1377 }
1378
Michal Nazarewiczb73af612010-10-28 17:31:23 +02001379 /*
1380 * Check that a valid page was requested and the mode data length
1381 * isn't too long.
1382 */
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001383 len = buf - buf0;
1384 if (!valid_page || len > limit) {
1385 curlun->sense_data = SS_INVALID_FIELD_IN_CDB;
1386 return -EINVAL;
1387 }
1388
1389 /* Store the mode data length */
Michal Nazarewicz0a6a7172010-10-07 14:46:15 +02001390 if (mscmnd == MODE_SENSE)
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001391 buf0[0] = len - 1;
1392 else
1393 put_unaligned_be16(len - 2, buf0);
1394 return len;
1395}
1396
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001397static int do_start_stop(struct fsg_common *common)
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001398{
Fabien Chouteau31436a12010-04-26 12:34:54 +02001399 struct fsg_lun *curlun = common->curlun;
1400 int loej, start;
1401
1402 if (!curlun) {
Michal Nazarewicz481e4922009-11-09 14:15:21 +01001403 return -EINVAL;
Fabien Chouteau31436a12010-04-26 12:34:54 +02001404 } else if (!curlun->removable) {
1405 curlun->sense_data = SS_INVALID_COMMAND;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001406 return -EINVAL;
Michal Nazarewicz8876f5e2010-06-21 13:57:09 +02001407 } else if ((common->cmnd[1] & ~0x01) != 0 || /* Mask away Immed */
1408 (common->cmnd[4] & ~0x03) != 0) { /* Mask LoEj, Start */
Fabien Chouteau31436a12010-04-26 12:34:54 +02001409 curlun->sense_data = SS_INVALID_FIELD_IN_CDB;
1410 return -EINVAL;
1411 }
1412
Michal Nazarewicz8876f5e2010-06-21 13:57:09 +02001413 loej = common->cmnd[4] & 0x02;
1414 start = common->cmnd[4] & 0x01;
Fabien Chouteau31436a12010-04-26 12:34:54 +02001415
Michal Nazarewiczb73af612010-10-28 17:31:23 +02001416 /*
1417 * Our emulation doesn't support mounting; the medium is
1418 * available for use as soon as it is loaded.
1419 */
Michal Nazarewicz8876f5e2010-06-21 13:57:09 +02001420 if (start) {
Fabien Chouteau31436a12010-04-26 12:34:54 +02001421 if (!fsg_lun_is_open(curlun)) {
1422 curlun->sense_data = SS_MEDIUM_NOT_PRESENT;
1423 return -EINVAL;
1424 }
Michal Nazarewicz8876f5e2010-06-21 13:57:09 +02001425 return 0;
Fabien Chouteau31436a12010-04-26 12:34:54 +02001426 }
Michal Nazarewicz8876f5e2010-06-21 13:57:09 +02001427
1428 /* Are we allowed to unload the media? */
1429 if (curlun->prevent_medium_removal) {
1430 LDBG(curlun, "unload attempt prevented\n");
1431 curlun->sense_data = SS_MEDIUM_REMOVAL_PREVENTED;
1432 return -EINVAL;
1433 }
1434
1435 if (!loej)
1436 return 0;
1437
1438 /* Simulate an unload/eject */
1439 if (common->ops && common->ops->pre_eject) {
1440 int r = common->ops->pre_eject(common, curlun,
1441 curlun - common->luns);
1442 if (unlikely(r < 0))
1443 return r;
1444 else if (r)
1445 return 0;
1446 }
1447
1448 up_read(&common->filesem);
1449 down_write(&common->filesem);
1450 fsg_lun_close(curlun);
1451 up_write(&common->filesem);
1452 down_read(&common->filesem);
1453
1454 return common->ops && common->ops->post_eject
1455 ? min(0, common->ops->post_eject(common, curlun,
1456 curlun - common->luns))
1457 : 0;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001458}
1459
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001460static int do_prevent_allow(struct fsg_common *common)
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001461{
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001462 struct fsg_lun *curlun = common->curlun;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001463 int prevent;
1464
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001465 if (!common->curlun) {
Michal Nazarewicz481e4922009-11-09 14:15:21 +01001466 return -EINVAL;
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001467 } else if (!common->curlun->removable) {
1468 common->curlun->sense_data = SS_INVALID_COMMAND;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001469 return -EINVAL;
1470 }
1471
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001472 prevent = common->cmnd[4] & 0x01;
1473 if ((common->cmnd[4] & ~0x01) != 0) { /* Mask away Prevent */
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001474 curlun->sense_data = SS_INVALID_FIELD_IN_CDB;
1475 return -EINVAL;
1476 }
1477
1478 if (curlun->prevent_medium_removal && !prevent)
1479 fsg_lun_fsync_sub(curlun);
1480 curlun->prevent_medium_removal = prevent;
1481 return 0;
1482}
1483
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001484static int do_read_format_capacities(struct fsg_common *common,
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001485 struct fsg_buffhd *bh)
1486{
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001487 struct fsg_lun *curlun = common->curlun;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001488 u8 *buf = (u8 *) bh->buf;
1489
1490 buf[0] = buf[1] = buf[2] = 0;
Michal Nazarewiczd26a6aa2009-11-09 14:15:23 +01001491 buf[3] = 8; /* Only the Current/Maximum Capacity Descriptor */
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001492 buf += 4;
1493
1494 put_unaligned_be32(curlun->num_sectors, &buf[0]);
1495 /* Number of blocks */
Peiyu Li3f565a32011-08-17 22:52:59 -07001496 put_unaligned_be32(curlun->blksize, &buf[4]);/* Block length */
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001497 buf[4] = 0x02; /* Current capacity */
1498 return 12;
1499}
1500
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001501static int do_mode_select(struct fsg_common *common, struct fsg_buffhd *bh)
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001502{
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001503 struct fsg_lun *curlun = common->curlun;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001504
1505 /* We don't support MODE SELECT */
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001506 if (curlun)
1507 curlun->sense_data = SS_INVALID_COMMAND;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001508 return -EINVAL;
1509}
1510
1511
1512/*-------------------------------------------------------------------------*/
1513
1514static int halt_bulk_in_endpoint(struct fsg_dev *fsg)
1515{
1516 int rc;
1517
1518 rc = fsg_set_halt(fsg, fsg->bulk_in);
1519 if (rc == -EAGAIN)
1520 VDBG(fsg, "delayed bulk-in endpoint halt\n");
1521 while (rc != 0) {
1522 if (rc != -EAGAIN) {
1523 WARNING(fsg, "usb_ep_set_halt -> %d\n", rc);
1524 rc = 0;
1525 break;
1526 }
1527
1528 /* Wait for a short time and then try again */
1529 if (msleep_interruptible(100) != 0)
1530 return -EINTR;
1531 rc = usb_ep_set_halt(fsg->bulk_in);
1532 }
1533 return rc;
1534}
1535
1536static int wedge_bulk_in_endpoint(struct fsg_dev *fsg)
1537{
1538 int rc;
1539
1540 DBG(fsg, "bulk-in set wedge\n");
1541 rc = usb_ep_set_wedge(fsg->bulk_in);
1542 if (rc == -EAGAIN)
1543 VDBG(fsg, "delayed bulk-in endpoint wedge\n");
1544 while (rc != 0) {
1545 if (rc != -EAGAIN) {
1546 WARNING(fsg, "usb_ep_set_wedge -> %d\n", rc);
1547 rc = 0;
1548 break;
1549 }
1550
1551 /* Wait for a short time and then try again */
1552 if (msleep_interruptible(100) != 0)
1553 return -EINTR;
1554 rc = usb_ep_set_wedge(fsg->bulk_in);
1555 }
1556 return rc;
1557}
1558
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001559static int throw_away_data(struct fsg_common *common)
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001560{
1561 struct fsg_buffhd *bh;
1562 u32 amount;
1563 int rc;
1564
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001565 for (bh = common->next_buffhd_to_drain;
1566 bh->state != BUF_STATE_EMPTY || common->usb_amount_left > 0;
1567 bh = common->next_buffhd_to_drain) {
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001568
1569 /* Throw away the data in a filled buffer */
1570 if (bh->state == BUF_STATE_FULL) {
1571 smp_rmb();
1572 bh->state = BUF_STATE_EMPTY;
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001573 common->next_buffhd_to_drain = bh->next;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001574
1575 /* A short packet or an error ends everything */
Paul Zimmermanfe696762011-09-30 15:26:06 -07001576 if (bh->outreq->actual < bh->bulk_out_intended_length ||
Michal Nazarewiczb73af612010-10-28 17:31:23 +02001577 bh->outreq->status != 0) {
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001578 raise_exception(common,
1579 FSG_STATE_ABORT_BULK_OUT);
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001580 return -EINTR;
1581 }
1582 continue;
1583 }
1584
1585 /* Try to submit another request if we need one */
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001586 bh = common->next_buffhd_to_fill;
1587 if (bh->state == BUF_STATE_EMPTY
1588 && common->usb_amount_left > 0) {
1589 amount = min(common->usb_amount_left, FSG_BUFLEN);
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001590
Michal Nazarewiczb73af612010-10-28 17:31:23 +02001591 /*
Alan Stern04eee252011-08-18 14:29:00 -04001592 * Except at the end of the transfer, amount will be
1593 * equal to the buffer size, which is divisible by
Michal Nazarewiczb73af612010-10-28 17:31:23 +02001594 * the bulk-out maxpacket size.
1595 */
Paul Zimmermanfe696762011-09-30 15:26:06 -07001596 set_bulk_out_req_length(common, bh, amount);
Michal Nazarewiczfe52f792010-10-28 17:31:21 +02001597 if (!start_out_transfer(common, bh))
Michal Nazarewiczb73af612010-10-28 17:31:23 +02001598 /* Dunno what to do if common->fsg is NULL */
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001599 return -EIO;
1600 common->next_buffhd_to_fill = bh->next;
1601 common->usb_amount_left -= amount;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001602 continue;
1603 }
1604
1605 /* Otherwise wait for something to happen */
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001606 rc = sleep_thread(common);
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001607 if (rc)
1608 return rc;
1609 }
1610 return 0;
1611}
1612
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001613static int finish_reply(struct fsg_common *common)
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001614{
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001615 struct fsg_buffhd *bh = common->next_buffhd_to_fill;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001616 int rc = 0;
1617
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001618 switch (common->data_dir) {
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001619 case DATA_DIR_NONE:
Michal Nazarewiczd26a6aa2009-11-09 14:15:23 +01001620 break; /* Nothing to send */
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001621
Michal Nazarewiczb73af612010-10-28 17:31:23 +02001622 /*
1623 * If we don't know whether the host wants to read or write,
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001624 * this must be CB or CBI with an unknown command. We mustn't
1625 * try to send or receive any data. So stall both bulk pipes
Michal Nazarewiczb73af612010-10-28 17:31:23 +02001626 * if we can and wait for a reset.
1627 */
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001628 case DATA_DIR_UNKNOWN:
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001629 if (!common->can_stall) {
1630 /* Nothing */
1631 } else if (fsg_is_set(common)) {
1632 fsg_set_halt(common->fsg, common->fsg->bulk_out);
1633 rc = halt_bulk_in_endpoint(common->fsg);
1634 } else {
1635 /* Don't know what to do if common->fsg is NULL */
1636 rc = -EIO;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001637 }
1638 break;
1639
1640 /* All but the last buffer of data must have already been sent */
1641 case DATA_DIR_TO_HOST:
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001642 if (common->data_size == 0) {
Michal Nazarewicz93bcf122009-10-28 16:57:19 +01001643 /* Nothing to send */
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001644
Alan Sternee81b3e2011-03-25 11:46:27 -04001645 /* Don't know what to do if common->fsg is NULL */
1646 } else if (!fsg_is_set(common)) {
1647 rc = -EIO;
1648
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001649 /* If there's no residue, simply send the last buffer */
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001650 } else if (common->residue == 0) {
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001651 bh->inreq->zero = 0;
Michal Nazarewiczfe52f792010-10-28 17:31:21 +02001652 if (!start_in_transfer(common, bh))
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001653 return -EIO;
1654 common->next_buffhd_to_fill = bh->next;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001655
Michal Nazarewiczb73af612010-10-28 17:31:23 +02001656 /*
Alan Sternee81b3e2011-03-25 11:46:27 -04001657 * For Bulk-only, mark the end of the data with a short
1658 * packet. If we are allowed to stall, halt the bulk-in
1659 * endpoint. (Note: This violates the Bulk-Only Transport
1660 * specification, which requires us to pad the data if we
1661 * don't halt the endpoint. Presumably nobody will mind.)
Michal Nazarewiczb73af612010-10-28 17:31:23 +02001662 */
Alan Sternee81b3e2011-03-25 11:46:27 -04001663 } else {
Michal Nazarewicz93bcf122009-10-28 16:57:19 +01001664 bh->inreq->zero = 1;
Michal Nazarewiczfe52f792010-10-28 17:31:21 +02001665 if (!start_in_transfer(common, bh))
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001666 rc = -EIO;
1667 common->next_buffhd_to_fill = bh->next;
Alan Sternee81b3e2011-03-25 11:46:27 -04001668 if (common->can_stall)
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001669 rc = halt_bulk_in_endpoint(common->fsg);
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001670 }
1671 break;
1672
Michal Nazarewiczb73af612010-10-28 17:31:23 +02001673 /*
1674 * We have processed all we want from the data the host has sent.
1675 * There may still be outstanding bulk-out requests.
1676 */
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001677 case DATA_DIR_FROM_HOST:
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001678 if (common->residue == 0) {
Michal Nazarewiczd26a6aa2009-11-09 14:15:23 +01001679 /* Nothing to receive */
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001680
1681 /* Did the host stop sending unexpectedly early? */
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001682 } else if (common->short_packet_received) {
1683 raise_exception(common, FSG_STATE_ABORT_BULK_OUT);
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001684 rc = -EINTR;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001685
Michal Nazarewiczb73af612010-10-28 17:31:23 +02001686 /*
1687 * We haven't processed all the incoming data. Even though
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001688 * we may be allowed to stall, doing so would cause a race.
1689 * The controller may already have ACK'ed all the remaining
1690 * bulk-out packets, in which case the host wouldn't see a
1691 * STALL. Not realizing the endpoint was halted, it wouldn't
Michal Nazarewiczb73af612010-10-28 17:31:23 +02001692 * clear the halt -- leading to problems later on.
1693 */
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001694#if 0
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001695 } else if (common->can_stall) {
1696 if (fsg_is_set(common))
1697 fsg_set_halt(common->fsg,
1698 common->fsg->bulk_out);
1699 raise_exception(common, FSG_STATE_ABORT_BULK_OUT);
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001700 rc = -EINTR;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001701#endif
1702
Michal Nazarewiczb73af612010-10-28 17:31:23 +02001703 /*
1704 * We can't stall. Read in the excess data and throw it
1705 * all away.
1706 */
Michal Nazarewiczd26a6aa2009-11-09 14:15:23 +01001707 } else {
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001708 rc = throw_away_data(common);
Michal Nazarewiczd26a6aa2009-11-09 14:15:23 +01001709 }
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001710 break;
1711 }
1712 return rc;
1713}
1714
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001715static int send_status(struct fsg_common *common)
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001716{
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001717 struct fsg_lun *curlun = common->curlun;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001718 struct fsg_buffhd *bh;
Michal Nazarewicz93bcf122009-10-28 16:57:19 +01001719 struct bulk_cs_wrap *csw;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001720 int rc;
Sebastian Andrzej Siewior775dafd2012-02-25 18:28:11 +01001721 u8 status = US_BULK_STAT_OK;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001722 u32 sd, sdinfo = 0;
1723
1724 /* Wait for the next buffer to become available */
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001725 bh = common->next_buffhd_to_fill;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001726 while (bh->state != BUF_STATE_EMPTY) {
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001727 rc = sleep_thread(common);
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001728 if (rc)
1729 return rc;
1730 }
1731
1732 if (curlun) {
1733 sd = curlun->sense_data;
1734 sdinfo = curlun->sense_data_info;
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001735 } else if (common->bad_lun_okay)
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001736 sd = SS_NO_SENSE;
1737 else
1738 sd = SS_LOGICAL_UNIT_NOT_SUPPORTED;
1739
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001740 if (common->phase_error) {
1741 DBG(common, "sending phase-error status\n");
Sebastian Andrzej Siewior775dafd2012-02-25 18:28:11 +01001742 status = US_BULK_STAT_PHASE;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001743 sd = SS_INVALID_COMMAND;
1744 } else if (sd != SS_NO_SENSE) {
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001745 DBG(common, "sending command-failure status\n");
Sebastian Andrzej Siewior775dafd2012-02-25 18:28:11 +01001746 status = US_BULK_STAT_FAIL;
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001747 VDBG(common, " sense data: SK x%02x, ASC x%02x, ASCQ x%02x;"
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001748 " info x%x\n",
1749 SK(sd), ASC(sd), ASCQ(sd), sdinfo);
1750 }
1751
Michal Nazarewicz93bcf122009-10-28 16:57:19 +01001752 /* Store and send the Bulk-only CSW */
Michal Nazarewiczd26a6aa2009-11-09 14:15:23 +01001753 csw = (void *)bh->buf;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001754
Sebastian Andrzej Siewior775dafd2012-02-25 18:28:11 +01001755 csw->Signature = cpu_to_le32(US_BULK_CS_SIGN);
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001756 csw->Tag = common->tag;
1757 csw->Residue = cpu_to_le32(common->residue);
Michal Nazarewicz93bcf122009-10-28 16:57:19 +01001758 csw->Status = status;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001759
Sebastian Andrzej Siewior775dafd2012-02-25 18:28:11 +01001760 bh->inreq->length = US_BULK_CS_WRAP_LEN;
Michal Nazarewicz93bcf122009-10-28 16:57:19 +01001761 bh->inreq->zero = 0;
Michal Nazarewiczfe52f792010-10-28 17:31:21 +02001762 if (!start_in_transfer(common, bh))
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001763 /* Don't know what to do if common->fsg is NULL */
1764 return -EIO;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001765
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001766 common->next_buffhd_to_fill = bh->next;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001767 return 0;
1768}
1769
1770
1771/*-------------------------------------------------------------------------*/
1772
Michal Nazarewiczb73af612010-10-28 17:31:23 +02001773/*
1774 * Check whether the command is properly formed and whether its data size
1775 * and direction agree with the values we already have.
1776 */
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001777static int check_command(struct fsg_common *common, int cmnd_size,
Michal Nazarewiczb73af612010-10-28 17:31:23 +02001778 enum data_direction data_dir, unsigned int mask,
1779 int needs_medium, const char *name)
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001780{
1781 int i;
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001782 int lun = common->cmnd[1] >> 5;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001783 static const char dirletter[4] = {'u', 'o', 'i', 'n'};
1784 char hdlen[20];
1785 struct fsg_lun *curlun;
1786
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001787 hdlen[0] = 0;
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001788 if (common->data_dir != DATA_DIR_UNKNOWN)
1789 sprintf(hdlen, ", H%c=%u", dirletter[(int) common->data_dir],
Michal Nazarewiczb73af612010-10-28 17:31:23 +02001790 common->data_size);
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001791 VDBG(common, "SCSI command: %s; Dc=%d, D%c=%u; Hc=%d%s\n",
Michal Nazarewiczd26a6aa2009-11-09 14:15:23 +01001792 name, cmnd_size, dirletter[(int) data_dir],
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001793 common->data_size_from_cmnd, common->cmnd_size, hdlen);
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001794
Michal Nazarewiczb73af612010-10-28 17:31:23 +02001795 /*
1796 * We can't reply at all until we know the correct data direction
1797 * and size.
1798 */
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001799 if (common->data_size_from_cmnd == 0)
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001800 data_dir = DATA_DIR_NONE;
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001801 if (common->data_size < common->data_size_from_cmnd) {
Michal Nazarewiczb73af612010-10-28 17:31:23 +02001802 /*
1803 * Host data size < Device data size is a phase error.
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001804 * Carry out the command, but only transfer as much as
Michal Nazarewiczb73af612010-10-28 17:31:23 +02001805 * we are allowed.
1806 */
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001807 common->data_size_from_cmnd = common->data_size;
1808 common->phase_error = 1;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001809 }
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001810 common->residue = common->data_size;
1811 common->usb_amount_left = common->data_size;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001812
1813 /* Conflicting data directions is a phase error */
Michal Nazarewiczb73af612010-10-28 17:31:23 +02001814 if (common->data_dir != data_dir && common->data_size_from_cmnd > 0) {
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001815 common->phase_error = 1;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001816 return -EINVAL;
1817 }
1818
1819 /* Verify the length of the command itself */
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001820 if (cmnd_size != common->cmnd_size) {
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001821
Michal Nazarewiczb73af612010-10-28 17:31:23 +02001822 /*
1823 * Special case workaround: There are plenty of buggy SCSI
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001824 * implementations. Many have issues with cbw->Length
1825 * field passing a wrong command size. For those cases we
1826 * always try to work around the problem by using the length
1827 * sent by the host side provided it is at least as large
1828 * as the correct command length.
1829 * Examples of such cases would be MS-Windows, which issues
1830 * REQUEST SENSE with cbw->Length == 12 where it should
1831 * be 6, and xbox360 issuing INQUIRY, TEST UNIT READY and
1832 * REQUEST SENSE with cbw->Length == 10 where it should
1833 * be 6 as well.
1834 */
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001835 if (cmnd_size <= common->cmnd_size) {
1836 DBG(common, "%s is buggy! Expected length %d "
Michal Nazarewicza41ae412009-10-28 16:57:20 +01001837 "but we got %d\n", name,
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001838 cmnd_size, common->cmnd_size);
1839 cmnd_size = common->cmnd_size;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001840 } else {
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001841 common->phase_error = 1;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001842 return -EINVAL;
1843 }
1844 }
1845
1846 /* Check that the LUN values are consistent */
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001847 if (common->lun != lun)
1848 DBG(common, "using LUN %d from CBW, not LUN %d from CDB\n",
1849 common->lun, lun);
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001850
1851 /* Check the LUN */
Yuping Luo144974e2011-10-25 19:13:10 -07001852 curlun = common->curlun;
1853 if (curlun) {
Michal Nazarewicz0a6a7172010-10-07 14:46:15 +02001854 if (common->cmnd[0] != REQUEST_SENSE) {
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001855 curlun->sense_data = SS_NO_SENSE;
1856 curlun->sense_data_info = 0;
1857 curlun->info_valid = 0;
1858 }
1859 } else {
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001860 common->bad_lun_okay = 0;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001861
Michal Nazarewiczb73af612010-10-28 17:31:23 +02001862 /*
1863 * INQUIRY and REQUEST SENSE commands are explicitly allowed
1864 * to use unsupported LUNs; all others may not.
1865 */
Michal Nazarewicz0a6a7172010-10-07 14:46:15 +02001866 if (common->cmnd[0] != INQUIRY &&
1867 common->cmnd[0] != REQUEST_SENSE) {
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001868 DBG(common, "unsupported LUN %d\n", common->lun);
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001869 return -EINVAL;
1870 }
1871 }
1872
Michal Nazarewiczb73af612010-10-28 17:31:23 +02001873 /*
1874 * If a unit attention condition exists, only INQUIRY and
1875 * REQUEST SENSE commands are allowed; anything else must fail.
1876 */
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001877 if (curlun && curlun->unit_attention_data != SS_NO_SENSE &&
Michal Nazarewiczb73af612010-10-28 17:31:23 +02001878 common->cmnd[0] != INQUIRY &&
1879 common->cmnd[0] != REQUEST_SENSE) {
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001880 curlun->sense_data = curlun->unit_attention_data;
1881 curlun->unit_attention_data = SS_NO_SENSE;
1882 return -EINVAL;
1883 }
1884
1885 /* Check that only command bytes listed in the mask are non-zero */
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001886 common->cmnd[1] &= 0x1f; /* Mask away the LUN */
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001887 for (i = 1; i < cmnd_size; ++i) {
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001888 if (common->cmnd[i] && !(mask & (1 << i))) {
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001889 if (curlun)
1890 curlun->sense_data = SS_INVALID_FIELD_IN_CDB;
1891 return -EINVAL;
1892 }
1893 }
1894
1895 /* If the medium isn't mounted and the command needs to access
1896 * it, return an error. */
1897 if (curlun && !fsg_lun_is_open(curlun) && needs_medium) {
1898 curlun->sense_data = SS_MEDIUM_NOT_PRESENT;
1899 return -EINVAL;
1900 }
1901
1902 return 0;
1903}
1904
Yuping Luo144974e2011-10-25 19:13:10 -07001905/* wrapper of check_command for data size in blocks handling */
1906static int check_command_size_in_blocks(struct fsg_common *common,
1907 int cmnd_size, enum data_direction data_dir,
1908 unsigned int mask, int needs_medium, const char *name)
1909{
1910 if (common->curlun)
1911 common->data_size_from_cmnd <<= common->curlun->blkbits;
1912 return check_command(common, cmnd_size, data_dir,
1913 mask, needs_medium, name);
1914}
1915
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001916static int do_scsi_command(struct fsg_common *common)
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001917{
1918 struct fsg_buffhd *bh;
1919 int rc;
1920 int reply = -EINVAL;
1921 int i;
1922 static char unknown[16];
1923
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001924 dump_cdb(common);
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001925
1926 /* Wait for the next buffer to become available for data or status */
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001927 bh = common->next_buffhd_to_fill;
1928 common->next_buffhd_to_drain = bh;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001929 while (bh->state != BUF_STATE_EMPTY) {
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001930 rc = sleep_thread(common);
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001931 if (rc)
1932 return rc;
1933 }
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001934 common->phase_error = 0;
1935 common->short_packet_received = 0;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001936
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001937 down_read(&common->filesem); /* We're using the backing file */
1938 switch (common->cmnd[0]) {
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001939
Michal Nazarewicz0a6a7172010-10-07 14:46:15 +02001940 case INQUIRY:
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001941 common->data_size_from_cmnd = common->cmnd[4];
1942 reply = check_command(common, 6, DATA_DIR_TO_HOST,
Michal Nazarewiczd26a6aa2009-11-09 14:15:23 +01001943 (1<<4), 0,
1944 "INQUIRY");
1945 if (reply == 0)
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001946 reply = do_inquiry(common, bh);
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001947 break;
1948
Michal Nazarewicz0a6a7172010-10-07 14:46:15 +02001949 case MODE_SELECT:
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001950 common->data_size_from_cmnd = common->cmnd[4];
1951 reply = check_command(common, 6, DATA_DIR_FROM_HOST,
Michal Nazarewiczd26a6aa2009-11-09 14:15:23 +01001952 (1<<1) | (1<<4), 0,
1953 "MODE SELECT(6)");
1954 if (reply == 0)
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001955 reply = do_mode_select(common, bh);
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001956 break;
1957
Michal Nazarewicz0a6a7172010-10-07 14:46:15 +02001958 case MODE_SELECT_10:
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001959 common->data_size_from_cmnd =
1960 get_unaligned_be16(&common->cmnd[7]);
1961 reply = check_command(common, 10, DATA_DIR_FROM_HOST,
Michal Nazarewiczd26a6aa2009-11-09 14:15:23 +01001962 (1<<1) | (3<<7), 0,
1963 "MODE SELECT(10)");
1964 if (reply == 0)
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001965 reply = do_mode_select(common, bh);
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001966 break;
1967
Michal Nazarewicz0a6a7172010-10-07 14:46:15 +02001968 case MODE_SENSE:
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001969 common->data_size_from_cmnd = common->cmnd[4];
1970 reply = check_command(common, 6, DATA_DIR_TO_HOST,
Michal Nazarewiczd26a6aa2009-11-09 14:15:23 +01001971 (1<<1) | (1<<2) | (1<<4), 0,
1972 "MODE SENSE(6)");
1973 if (reply == 0)
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001974 reply = do_mode_sense(common, bh);
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001975 break;
1976
Michal Nazarewicz0a6a7172010-10-07 14:46:15 +02001977 case MODE_SENSE_10:
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001978 common->data_size_from_cmnd =
1979 get_unaligned_be16(&common->cmnd[7]);
1980 reply = check_command(common, 10, DATA_DIR_TO_HOST,
Michal Nazarewiczd26a6aa2009-11-09 14:15:23 +01001981 (1<<1) | (1<<2) | (3<<7), 0,
1982 "MODE SENSE(10)");
1983 if (reply == 0)
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001984 reply = do_mode_sense(common, bh);
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001985 break;
1986
Michal Nazarewicz0a6a7172010-10-07 14:46:15 +02001987 case ALLOW_MEDIUM_REMOVAL:
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001988 common->data_size_from_cmnd = 0;
1989 reply = check_command(common, 6, DATA_DIR_NONE,
Michal Nazarewiczd26a6aa2009-11-09 14:15:23 +01001990 (1<<4), 0,
1991 "PREVENT-ALLOW MEDIUM REMOVAL");
1992 if (reply == 0)
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001993 reply = do_prevent_allow(common);
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001994 break;
1995
Michal Nazarewicz0a6a7172010-10-07 14:46:15 +02001996 case READ_6:
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001997 i = common->cmnd[4];
Yuping Luo144974e2011-10-25 19:13:10 -07001998 common->data_size_from_cmnd = (i == 0) ? 256 : i;
1999 reply = check_command_size_in_blocks(common, 6,
2000 DATA_DIR_TO_HOST,
Michal Nazarewiczd26a6aa2009-11-09 14:15:23 +01002001 (7<<1) | (1<<4), 1,
2002 "READ(6)");
2003 if (reply == 0)
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01002004 reply = do_read(common);
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01002005 break;
2006
Michal Nazarewicz0a6a7172010-10-07 14:46:15 +02002007 case READ_10:
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01002008 common->data_size_from_cmnd =
Yuping Luo144974e2011-10-25 19:13:10 -07002009 get_unaligned_be16(&common->cmnd[7]);
2010 reply = check_command_size_in_blocks(common, 10,
2011 DATA_DIR_TO_HOST,
Michal Nazarewiczd26a6aa2009-11-09 14:15:23 +01002012 (1<<1) | (0xf<<2) | (3<<7), 1,
2013 "READ(10)");
2014 if (reply == 0)
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01002015 reply = do_read(common);
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01002016 break;
2017
Michal Nazarewicz0a6a7172010-10-07 14:46:15 +02002018 case READ_12:
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01002019 common->data_size_from_cmnd =
Yuping Luo144974e2011-10-25 19:13:10 -07002020 get_unaligned_be32(&common->cmnd[6]);
2021 reply = check_command_size_in_blocks(common, 12,
2022 DATA_DIR_TO_HOST,
Michal Nazarewiczd26a6aa2009-11-09 14:15:23 +01002023 (1<<1) | (0xf<<2) | (0xf<<6), 1,
2024 "READ(12)");
2025 if (reply == 0)
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01002026 reply = do_read(common);
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01002027 break;
2028
Michal Nazarewicz0a6a7172010-10-07 14:46:15 +02002029 case READ_CAPACITY:
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01002030 common->data_size_from_cmnd = 8;
2031 reply = check_command(common, 10, DATA_DIR_TO_HOST,
Michal Nazarewiczd26a6aa2009-11-09 14:15:23 +01002032 (0xf<<2) | (1<<8), 1,
2033 "READ CAPACITY");
2034 if (reply == 0)
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01002035 reply = do_read_capacity(common, bh);
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01002036 break;
2037
Michal Nazarewicz0a6a7172010-10-07 14:46:15 +02002038 case READ_HEADER:
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01002039 if (!common->curlun || !common->curlun->cdrom)
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01002040 goto unknown_cmnd;
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01002041 common->data_size_from_cmnd =
2042 get_unaligned_be16(&common->cmnd[7]);
2043 reply = check_command(common, 10, DATA_DIR_TO_HOST,
Michal Nazarewiczd26a6aa2009-11-09 14:15:23 +01002044 (3<<7) | (0x1f<<1), 1,
2045 "READ HEADER");
2046 if (reply == 0)
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01002047 reply = do_read_header(common, bh);
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01002048 break;
2049
Michal Nazarewicz0a6a7172010-10-07 14:46:15 +02002050 case READ_TOC:
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01002051 if (!common->curlun || !common->curlun->cdrom)
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01002052 goto unknown_cmnd;
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01002053 common->data_size_from_cmnd =
2054 get_unaligned_be16(&common->cmnd[7]);
2055 reply = check_command(common, 10, DATA_DIR_TO_HOST,
Michal Nazarewiczd26a6aa2009-11-09 14:15:23 +01002056 (7<<6) | (1<<1), 1,
2057 "READ TOC");
2058 if (reply == 0)
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01002059 reply = do_read_toc(common, bh);
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01002060 break;
2061
Michal Nazarewicz0a6a7172010-10-07 14:46:15 +02002062 case READ_FORMAT_CAPACITIES:
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01002063 common->data_size_from_cmnd =
2064 get_unaligned_be16(&common->cmnd[7]);
2065 reply = check_command(common, 10, DATA_DIR_TO_HOST,
Michal Nazarewiczd26a6aa2009-11-09 14:15:23 +01002066 (3<<7), 1,
2067 "READ FORMAT CAPACITIES");
2068 if (reply == 0)
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01002069 reply = do_read_format_capacities(common, bh);
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01002070 break;
2071
Michal Nazarewicz0a6a7172010-10-07 14:46:15 +02002072 case REQUEST_SENSE:
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01002073 common->data_size_from_cmnd = common->cmnd[4];
2074 reply = check_command(common, 6, DATA_DIR_TO_HOST,
Michal Nazarewiczd26a6aa2009-11-09 14:15:23 +01002075 (1<<4), 0,
2076 "REQUEST SENSE");
2077 if (reply == 0)
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01002078 reply = do_request_sense(common, bh);
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01002079 break;
2080
Michal Nazarewicz0a6a7172010-10-07 14:46:15 +02002081 case START_STOP:
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01002082 common->data_size_from_cmnd = 0;
2083 reply = check_command(common, 6, DATA_DIR_NONE,
Michal Nazarewiczd26a6aa2009-11-09 14:15:23 +01002084 (1<<1) | (1<<4), 0,
2085 "START-STOP UNIT");
2086 if (reply == 0)
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01002087 reply = do_start_stop(common);
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01002088 break;
2089
Michal Nazarewicz0a6a7172010-10-07 14:46:15 +02002090 case SYNCHRONIZE_CACHE:
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01002091 common->data_size_from_cmnd = 0;
2092 reply = check_command(common, 10, DATA_DIR_NONE,
Michal Nazarewiczd26a6aa2009-11-09 14:15:23 +01002093 (0xf<<2) | (3<<7), 1,
2094 "SYNCHRONIZE CACHE");
2095 if (reply == 0)
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01002096 reply = do_synchronize_cache(common);
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01002097 break;
2098
Michal Nazarewicz0a6a7172010-10-07 14:46:15 +02002099 case TEST_UNIT_READY:
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01002100 common->data_size_from_cmnd = 0;
2101 reply = check_command(common, 6, DATA_DIR_NONE,
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01002102 0, 1,
2103 "TEST UNIT READY");
2104 break;
2105
Michal Nazarewiczb73af612010-10-28 17:31:23 +02002106 /*
2107 * Although optional, this command is used by MS-Windows. We
2108 * support a minimal version: BytChk must be 0.
2109 */
Michal Nazarewicz0a6a7172010-10-07 14:46:15 +02002110 case VERIFY:
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01002111 common->data_size_from_cmnd = 0;
2112 reply = check_command(common, 10, DATA_DIR_NONE,
Michal Nazarewiczd26a6aa2009-11-09 14:15:23 +01002113 (1<<1) | (0xf<<2) | (3<<7), 1,
2114 "VERIFY");
2115 if (reply == 0)
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01002116 reply = do_verify(common);
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01002117 break;
2118
Michal Nazarewicz0a6a7172010-10-07 14:46:15 +02002119 case WRITE_6:
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01002120 i = common->cmnd[4];
Yuping Luo144974e2011-10-25 19:13:10 -07002121 common->data_size_from_cmnd = (i == 0) ? 256 : i;
2122 reply = check_command_size_in_blocks(common, 6,
2123 DATA_DIR_FROM_HOST,
Michal Nazarewiczd26a6aa2009-11-09 14:15:23 +01002124 (7<<1) | (1<<4), 1,
2125 "WRITE(6)");
2126 if (reply == 0)
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01002127 reply = do_write(common);
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01002128 break;
2129
Michal Nazarewicz0a6a7172010-10-07 14:46:15 +02002130 case WRITE_10:
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01002131 common->data_size_from_cmnd =
Yuping Luo144974e2011-10-25 19:13:10 -07002132 get_unaligned_be16(&common->cmnd[7]);
2133 reply = check_command_size_in_blocks(common, 10,
2134 DATA_DIR_FROM_HOST,
Michal Nazarewiczd26a6aa2009-11-09 14:15:23 +01002135 (1<<1) | (0xf<<2) | (3<<7), 1,
2136 "WRITE(10)");
2137 if (reply == 0)
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01002138 reply = do_write(common);
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01002139 break;
2140
Michal Nazarewicz0a6a7172010-10-07 14:46:15 +02002141 case WRITE_12:
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01002142 common->data_size_from_cmnd =
Yuping Luo144974e2011-10-25 19:13:10 -07002143 get_unaligned_be32(&common->cmnd[6]);
2144 reply = check_command_size_in_blocks(common, 12,
2145 DATA_DIR_FROM_HOST,
Michal Nazarewiczd26a6aa2009-11-09 14:15:23 +01002146 (1<<1) | (0xf<<2) | (0xf<<6), 1,
2147 "WRITE(12)");
2148 if (reply == 0)
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01002149 reply = do_write(common);
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01002150 break;
2151
Michal Nazarewiczb73af612010-10-28 17:31:23 +02002152 /*
2153 * Some mandatory commands that we recognize but don't implement.
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01002154 * They don't mean much in this setting. It's left as an exercise
2155 * for anyone interested to implement RESERVE and RELEASE in terms
Michal Nazarewiczb73af612010-10-28 17:31:23 +02002156 * of Posix locks.
2157 */
Michal Nazarewicz0a6a7172010-10-07 14:46:15 +02002158 case FORMAT_UNIT:
2159 case RELEASE:
2160 case RESERVE:
2161 case SEND_DIAGNOSTIC:
Michal Nazarewiczd26a6aa2009-11-09 14:15:23 +01002162 /* Fall through */
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01002163
2164 default:
Michal Nazarewiczd26a6aa2009-11-09 14:15:23 +01002165unknown_cmnd:
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01002166 common->data_size_from_cmnd = 0;
2167 sprintf(unknown, "Unknown x%02x", common->cmnd[0]);
2168 reply = check_command(common, common->cmnd_size,
Alan Sternc85dcda2012-04-11 16:09:10 -04002169 DATA_DIR_UNKNOWN, ~0, 0, unknown);
Michal Nazarewiczd26a6aa2009-11-09 14:15:23 +01002170 if (reply == 0) {
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01002171 common->curlun->sense_data = SS_INVALID_COMMAND;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01002172 reply = -EINVAL;
2173 }
2174 break;
2175 }
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01002176 up_read(&common->filesem);
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01002177
2178 if (reply == -EINTR || signal_pending(current))
2179 return -EINTR;
2180
2181 /* Set up the single reply buffer for finish_reply() */
2182 if (reply == -EINVAL)
Michal Nazarewiczd26a6aa2009-11-09 14:15:23 +01002183 reply = 0; /* Error reply length */
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01002184 if (reply >= 0 && common->data_dir == DATA_DIR_TO_HOST) {
Michal Nazarewiczb73af612010-10-28 17:31:23 +02002185 reply = min((u32)reply, common->data_size_from_cmnd);
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01002186 bh->inreq->length = reply;
2187 bh->state = BUF_STATE_FULL;
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01002188 common->residue -= reply;
Michal Nazarewiczd26a6aa2009-11-09 14:15:23 +01002189 } /* Otherwise it's already set */
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01002190
2191 return 0;
2192}
2193
2194
2195/*-------------------------------------------------------------------------*/
2196
2197static int received_cbw(struct fsg_dev *fsg, struct fsg_buffhd *bh)
2198{
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01002199 struct usb_request *req = bh->outreq;
Sebastian Andrzej Siewior7ac47042012-02-25 18:28:09 +01002200 struct bulk_cb_wrap *cbw = req->buf;
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01002201 struct fsg_common *common = fsg->common;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01002202
2203 /* Was this a real packet? Should it be ignored? */
2204 if (req->status || test_bit(IGNORE_BULK_OUT, &fsg->atomic_bitflags))
2205 return -EINVAL;
2206
2207 /* Is the CBW valid? */
Sebastian Andrzej Siewior775dafd2012-02-25 18:28:11 +01002208 if (req->actual != US_BULK_CB_WRAP_LEN ||
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01002209 cbw->Signature != cpu_to_le32(
Sebastian Andrzej Siewior775dafd2012-02-25 18:28:11 +01002210 US_BULK_CB_SIGN)) {
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01002211 DBG(fsg, "invalid CBW: len %u sig 0x%x\n",
2212 req->actual,
2213 le32_to_cpu(cbw->Signature));
2214
Michal Nazarewiczb73af612010-10-28 17:31:23 +02002215 /*
2216 * The Bulk-only spec says we MUST stall the IN endpoint
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01002217 * (6.6.1), so it's unavoidable. It also says we must
2218 * retain this state until the next reset, but there's
2219 * no way to tell the controller driver it should ignore
2220 * Clear-Feature(HALT) requests.
2221 *
2222 * We aren't required to halt the OUT endpoint; instead
2223 * we can simply accept and discard any data received
Michal Nazarewiczb73af612010-10-28 17:31:23 +02002224 * until the next reset.
2225 */
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01002226 wedge_bulk_in_endpoint(fsg);
2227 set_bit(IGNORE_BULK_OUT, &fsg->atomic_bitflags);
2228 return -EINVAL;
2229 }
2230
2231 /* Is the CBW meaningful? */
Sebastian Andrzej Siewior775dafd2012-02-25 18:28:11 +01002232 if (cbw->Lun >= FSG_MAX_LUNS || cbw->Flags & ~US_BULK_FLAG_IN ||
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01002233 cbw->Length <= 0 || cbw->Length > MAX_COMMAND_SIZE) {
2234 DBG(fsg, "non-meaningful CBW: lun = %u, flags = 0x%x, "
2235 "cmdlen %u\n",
2236 cbw->Lun, cbw->Flags, cbw->Length);
2237
Michal Nazarewiczb73af612010-10-28 17:31:23 +02002238 /*
2239 * We can do anything we want here, so let's stall the
2240 * bulk pipes if we are allowed to.
2241 */
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01002242 if (common->can_stall) {
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01002243 fsg_set_halt(fsg, fsg->bulk_out);
2244 halt_bulk_in_endpoint(fsg);
2245 }
2246 return -EINVAL;
2247 }
2248
2249 /* Save the command for later */
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01002250 common->cmnd_size = cbw->Length;
2251 memcpy(common->cmnd, cbw->CDB, common->cmnd_size);
Sebastian Andrzej Siewior775dafd2012-02-25 18:28:11 +01002252 if (cbw->Flags & US_BULK_FLAG_IN)
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01002253 common->data_dir = DATA_DIR_TO_HOST;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01002254 else
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01002255 common->data_dir = DATA_DIR_FROM_HOST;
2256 common->data_size = le32_to_cpu(cbw->DataTransferLength);
2257 if (common->data_size == 0)
2258 common->data_dir = DATA_DIR_NONE;
2259 common->lun = cbw->Lun;
Yuping Luo144974e2011-10-25 19:13:10 -07002260 if (common->lun >= 0 && common->lun < common->nluns)
2261 common->curlun = &common->luns[common->lun];
2262 else
2263 common->curlun = NULL;
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01002264 common->tag = cbw->Tag;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01002265 return 0;
2266}
2267
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01002268static int get_next_command(struct fsg_common *common)
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01002269{
2270 struct fsg_buffhd *bh;
2271 int rc = 0;
2272
Michal Nazarewicz93bcf122009-10-28 16:57:19 +01002273 /* Wait for the next buffer to become available */
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01002274 bh = common->next_buffhd_to_fill;
Michal Nazarewicz93bcf122009-10-28 16:57:19 +01002275 while (bh->state != BUF_STATE_EMPTY) {
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01002276 rc = sleep_thread(common);
Michal Nazarewicz93bcf122009-10-28 16:57:19 +01002277 if (rc)
2278 return rc;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01002279 }
Michal Nazarewicz93bcf122009-10-28 16:57:19 +01002280
2281 /* Queue a request to read a Bulk-only CBW */
Sebastian Andrzej Siewior775dafd2012-02-25 18:28:11 +01002282 set_bulk_out_req_length(common, bh, US_BULK_CB_WRAP_LEN);
Michal Nazarewiczfe52f792010-10-28 17:31:21 +02002283 if (!start_out_transfer(common, bh))
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01002284 /* Don't know what to do if common->fsg is NULL */
2285 return -EIO;
Michal Nazarewicz93bcf122009-10-28 16:57:19 +01002286
Michal Nazarewiczb73af612010-10-28 17:31:23 +02002287 /*
2288 * We will drain the buffer in software, which means we
Michal Nazarewicz93bcf122009-10-28 16:57:19 +01002289 * can reuse it for the next filling. No need to advance
Michal Nazarewiczb73af612010-10-28 17:31:23 +02002290 * next_buffhd_to_fill.
2291 */
Michal Nazarewicz93bcf122009-10-28 16:57:19 +01002292
2293 /* Wait for the CBW to arrive */
2294 while (bh->state != BUF_STATE_FULL) {
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01002295 rc = sleep_thread(common);
Michal Nazarewicz93bcf122009-10-28 16:57:19 +01002296 if (rc)
2297 return rc;
2298 }
2299 smp_rmb();
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01002300 rc = fsg_is_set(common) ? received_cbw(common->fsg, bh) : -EIO;
Michal Nazarewicz93bcf122009-10-28 16:57:19 +01002301 bh->state = BUF_STATE_EMPTY;
2302
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01002303 return rc;
2304}
2305
2306
2307/*-------------------------------------------------------------------------*/
2308
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01002309static int alloc_request(struct fsg_common *common, struct usb_ep *ep,
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01002310 struct usb_request **preq)
2311{
2312 *preq = usb_ep_alloc_request(ep, GFP_ATOMIC);
2313 if (*preq)
2314 return 0;
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01002315 ERROR(common, "can't allocate request for %s\n", ep->name);
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01002316 return -ENOMEM;
2317}
2318
Michal Nazarewiczb894f602010-06-25 16:29:28 +02002319/* Reset interface setting and re-init endpoint state (toggle etc). */
2320static int do_set_interface(struct fsg_common *common, struct fsg_dev *new_fsg)
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01002321{
Michal Nazarewiczb894f602010-06-25 16:29:28 +02002322 struct fsg_dev *fsg;
2323 int i, rc = 0;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01002324
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01002325 if (common->running)
2326 DBG(common, "reset interface\n");
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01002327
2328reset:
2329 /* Deallocate the requests */
Michal Nazarewiczb894f602010-06-25 16:29:28 +02002330 if (common->fsg) {
2331 fsg = common->fsg;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01002332
Per Forlin6532c7f2011-08-19 21:21:27 +02002333 for (i = 0; i < fsg_num_buffers; ++i) {
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01002334 struct fsg_buffhd *bh = &common->buffhds[i];
2335
2336 if (bh->inreq) {
2337 usb_ep_free_request(fsg->bulk_in, bh->inreq);
2338 bh->inreq = NULL;
2339 }
2340 if (bh->outreq) {
2341 usb_ep_free_request(fsg->bulk_out, bh->outreq);
2342 bh->outreq = NULL;
2343 }
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01002344 }
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01002345
2346 /* Disable the endpoints */
2347 if (fsg->bulk_in_enabled) {
2348 usb_ep_disable(fsg->bulk_in);
2349 fsg->bulk_in_enabled = 0;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01002350 }
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01002351 if (fsg->bulk_out_enabled) {
2352 usb_ep_disable(fsg->bulk_out);
2353 fsg->bulk_out_enabled = 0;
2354 }
2355
Michal Nazarewiczb894f602010-06-25 16:29:28 +02002356 common->fsg = NULL;
2357 wake_up(&common->fsg_wait);
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01002358 }
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01002359
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01002360 common->running = 0;
Michal Nazarewiczb894f602010-06-25 16:29:28 +02002361 if (!new_fsg || rc)
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01002362 return rc;
2363
Michal Nazarewiczb894f602010-06-25 16:29:28 +02002364 common->fsg = new_fsg;
2365 fsg = common->fsg;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01002366
Michal Nazarewiczb894f602010-06-25 16:29:28 +02002367 /* Enable the endpoints */
Tatyana Brokhmanea2a1df2011-06-28 16:33:50 +03002368 rc = config_ep_by_speed(common->gadget, &(fsg->function), fsg->bulk_in);
Michal Nazarewiczb894f602010-06-25 16:29:28 +02002369 if (rc)
2370 goto reset;
Tatyana Brokhmanea2a1df2011-06-28 16:33:50 +03002371 rc = usb_ep_enable(fsg->bulk_in);
2372 if (rc)
2373 goto reset;
2374 fsg->bulk_in->driver_data = common;
Michal Nazarewiczb894f602010-06-25 16:29:28 +02002375 fsg->bulk_in_enabled = 1;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01002376
Tatyana Brokhmanea2a1df2011-06-28 16:33:50 +03002377 rc = config_ep_by_speed(common->gadget, &(fsg->function),
2378 fsg->bulk_out);
Michal Nazarewiczb894f602010-06-25 16:29:28 +02002379 if (rc)
2380 goto reset;
Tatyana Brokhmanea2a1df2011-06-28 16:33:50 +03002381 rc = usb_ep_enable(fsg->bulk_out);
2382 if (rc)
2383 goto reset;
2384 fsg->bulk_out->driver_data = common;
Michal Nazarewiczb894f602010-06-25 16:29:28 +02002385 fsg->bulk_out_enabled = 1;
Kuninori Morimoto29cc8892011-08-23 03:12:03 -07002386 common->bulk_out_maxpacket = usb_endpoint_maxp(fsg->bulk_out->desc);
Michal Nazarewiczb894f602010-06-25 16:29:28 +02002387 clear_bit(IGNORE_BULK_OUT, &fsg->atomic_bitflags);
2388
2389 /* Allocate the requests */
Per Forlin6532c7f2011-08-19 21:21:27 +02002390 for (i = 0; i < fsg_num_buffers; ++i) {
Michal Nazarewiczb894f602010-06-25 16:29:28 +02002391 struct fsg_buffhd *bh = &common->buffhds[i];
2392
2393 rc = alloc_request(common, fsg->bulk_in, &bh->inreq);
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01002394 if (rc)
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01002395 goto reset;
Michal Nazarewiczb894f602010-06-25 16:29:28 +02002396 rc = alloc_request(common, fsg->bulk_out, &bh->outreq);
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01002397 if (rc)
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01002398 goto reset;
Michal Nazarewiczb894f602010-06-25 16:29:28 +02002399 bh->inreq->buf = bh->outreq->buf = bh->buf;
2400 bh->inreq->context = bh->outreq->context = bh;
2401 bh->inreq->complete = bulk_in_complete;
2402 bh->outreq->complete = bulk_out_complete;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01002403 }
2404
Michal Nazarewiczb894f602010-06-25 16:29:28 +02002405 common->running = 1;
2406 for (i = 0; i < common->nluns; ++i)
2407 common->luns[i].unit_attention_data = SS_RESET_OCCURRED;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01002408 return rc;
2409}
2410
2411
Michal Nazarewiczd23b0f02009-11-09 14:15:20 +01002412/****************************** ALT CONFIGS ******************************/
2413
Michal Nazarewiczd23b0f02009-11-09 14:15:20 +01002414static int fsg_set_alt(struct usb_function *f, unsigned intf, unsigned alt)
2415{
2416 struct fsg_dev *fsg = fsg_from_func(f);
Michal Nazarewiczb894f602010-06-25 16:29:28 +02002417 fsg->common->new_fsg = fsg;
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01002418 raise_exception(fsg->common, FSG_STATE_CONFIG_CHANGE);
Roger Quadros95ed3232011-05-09 13:08:07 +03002419 return USB_GADGET_DELAYED_STATUS;
Michal Nazarewiczd23b0f02009-11-09 14:15:20 +01002420}
2421
2422static void fsg_disable(struct usb_function *f)
2423{
2424 struct fsg_dev *fsg = fsg_from_func(f);
Michal Nazarewiczb894f602010-06-25 16:29:28 +02002425 fsg->common->new_fsg = NULL;
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01002426 raise_exception(fsg->common, FSG_STATE_CONFIG_CHANGE);
Michal Nazarewiczd23b0f02009-11-09 14:15:20 +01002427}
2428
2429
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01002430/*-------------------------------------------------------------------------*/
2431
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01002432static void handle_exception(struct fsg_common *common)
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01002433{
2434 siginfo_t info;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01002435 int i;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01002436 struct fsg_buffhd *bh;
2437 enum fsg_state old_state;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01002438 struct fsg_lun *curlun;
2439 unsigned int exception_req_tag;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01002440
Michal Nazarewiczb73af612010-10-28 17:31:23 +02002441 /*
2442 * Clear the existing signals. Anything but SIGUSR1 is converted
2443 * into a high-priority EXIT exception.
2444 */
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01002445 for (;;) {
Michal Nazarewiczb894f602010-06-25 16:29:28 +02002446 int sig =
2447 dequeue_signal_lock(current, &current->blocked, &info);
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01002448 if (!sig)
2449 break;
2450 if (sig != SIGUSR1) {
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01002451 if (common->state < FSG_STATE_EXIT)
2452 DBG(common, "Main thread exiting on signal\n");
2453 raise_exception(common, FSG_STATE_EXIT);
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01002454 }
2455 }
2456
2457 /* Cancel all the pending transfers */
Michal Nazarewiczb894f602010-06-25 16:29:28 +02002458 if (likely(common->fsg)) {
Per Forlin6532c7f2011-08-19 21:21:27 +02002459 for (i = 0; i < fsg_num_buffers; ++i) {
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01002460 bh = &common->buffhds[i];
2461 if (bh->inreq_busy)
2462 usb_ep_dequeue(common->fsg->bulk_in, bh->inreq);
2463 if (bh->outreq_busy)
2464 usb_ep_dequeue(common->fsg->bulk_out,
2465 bh->outreq);
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01002466 }
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01002467
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01002468 /* Wait until everything is idle */
2469 for (;;) {
2470 int num_active = 0;
Per Forlin6532c7f2011-08-19 21:21:27 +02002471 for (i = 0; i < fsg_num_buffers; ++i) {
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01002472 bh = &common->buffhds[i];
2473 num_active += bh->inreq_busy + bh->outreq_busy;
2474 }
2475 if (num_active == 0)
2476 break;
2477 if (sleep_thread(common))
2478 return;
2479 }
2480
2481 /* Clear out the controller's fifos */
2482 if (common->fsg->bulk_in_enabled)
2483 usb_ep_fifo_flush(common->fsg->bulk_in);
2484 if (common->fsg->bulk_out_enabled)
2485 usb_ep_fifo_flush(common->fsg->bulk_out);
2486 }
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01002487
Michal Nazarewiczb73af612010-10-28 17:31:23 +02002488 /*
2489 * Reset the I/O buffer states and pointers, the SCSI
2490 * state, and the exception. Then invoke the handler.
2491 */
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01002492 spin_lock_irq(&common->lock);
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01002493
Per Forlin6532c7f2011-08-19 21:21:27 +02002494 for (i = 0; i < fsg_num_buffers; ++i) {
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01002495 bh = &common->buffhds[i];
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01002496 bh->state = BUF_STATE_EMPTY;
2497 }
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01002498 common->next_buffhd_to_fill = &common->buffhds[0];
2499 common->next_buffhd_to_drain = &common->buffhds[0];
2500 exception_req_tag = common->exception_req_tag;
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01002501 old_state = common->state;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01002502
2503 if (old_state == FSG_STATE_ABORT_BULK_OUT)
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01002504 common->state = FSG_STATE_STATUS_PHASE;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01002505 else {
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01002506 for (i = 0; i < common->nluns; ++i) {
2507 curlun = &common->luns[i];
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01002508 curlun->prevent_medium_removal = 0;
Michal Nazarewiczd26a6aa2009-11-09 14:15:23 +01002509 curlun->sense_data = SS_NO_SENSE;
2510 curlun->unit_attention_data = SS_NO_SENSE;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01002511 curlun->sense_data_info = 0;
2512 curlun->info_valid = 0;
2513 }
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01002514 common->state = FSG_STATE_IDLE;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01002515 }
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01002516 spin_unlock_irq(&common->lock);
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01002517
2518 /* Carry out any extra actions required for the exception */
2519 switch (old_state) {
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01002520 case FSG_STATE_ABORT_BULK_OUT:
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01002521 send_status(common);
2522 spin_lock_irq(&common->lock);
2523 if (common->state == FSG_STATE_STATUS_PHASE)
2524 common->state = FSG_STATE_IDLE;
2525 spin_unlock_irq(&common->lock);
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01002526 break;
2527
2528 case FSG_STATE_RESET:
Michal Nazarewiczb73af612010-10-28 17:31:23 +02002529 /*
2530 * In case we were forced against our will to halt a
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01002531 * bulk endpoint, clear the halt now. (The SuperH UDC
Michal Nazarewiczb73af612010-10-28 17:31:23 +02002532 * requires this.)
2533 */
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01002534 if (!fsg_is_set(common))
2535 break;
2536 if (test_and_clear_bit(IGNORE_BULK_OUT,
2537 &common->fsg->atomic_bitflags))
2538 usb_ep_clear_halt(common->fsg->bulk_in);
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01002539
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01002540 if (common->ep0_req_tag == exception_req_tag)
2541 ep0_queue(common); /* Complete the status stage */
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01002542
Michal Nazarewiczb73af612010-10-28 17:31:23 +02002543 /*
2544 * Technically this should go here, but it would only be
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01002545 * a waste of time. Ditto for the INTERFACE_CHANGE and
Michal Nazarewiczb73af612010-10-28 17:31:23 +02002546 * CONFIG_CHANGE cases.
2547 */
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01002548 /* for (i = 0; i < common->nluns; ++i) */
2549 /* common->luns[i].unit_attention_data = */
Michal Nazarewiczd26a6aa2009-11-09 14:15:23 +01002550 /* SS_RESET_OCCURRED; */
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01002551 break;
2552
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01002553 case FSG_STATE_CONFIG_CHANGE:
Michal Nazarewiczb894f602010-06-25 16:29:28 +02002554 do_set_interface(common, common->new_fsg);
Roger Quadros95ed3232011-05-09 13:08:07 +03002555 if (common->new_fsg)
2556 usb_composite_setup_continue(common->cdev);
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01002557 break;
2558
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01002559 case FSG_STATE_EXIT:
2560 case FSG_STATE_TERMINATED:
Michal Nazarewiczb894f602010-06-25 16:29:28 +02002561 do_set_interface(common, NULL); /* Free resources */
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01002562 spin_lock_irq(&common->lock);
2563 common->state = FSG_STATE_TERMINATED; /* Stop the thread */
2564 spin_unlock_irq(&common->lock);
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01002565 break;
Michal Nazarewiczd23b0f02009-11-09 14:15:20 +01002566
2567 case FSG_STATE_INTERFACE_CHANGE:
2568 case FSG_STATE_DISCONNECT:
2569 case FSG_STATE_COMMAND_PHASE:
2570 case FSG_STATE_DATA_PHASE:
2571 case FSG_STATE_STATUS_PHASE:
2572 case FSG_STATE_IDLE:
2573 break;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01002574 }
2575}
2576
2577
2578/*-------------------------------------------------------------------------*/
2579
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01002580static int fsg_main_thread(void *common_)
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01002581{
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01002582 struct fsg_common *common = common_;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01002583
Michal Nazarewiczb73af612010-10-28 17:31:23 +02002584 /*
2585 * Allow the thread to be killed by a signal, but set the signal mask
2586 * to block everything but INT, TERM, KILL, and USR1.
2587 */
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01002588 allow_signal(SIGINT);
2589 allow_signal(SIGTERM);
2590 allow_signal(SIGKILL);
2591 allow_signal(SIGUSR1);
2592
2593 /* Allow the thread to be frozen */
2594 set_freezable();
2595
Michal Nazarewiczb73af612010-10-28 17:31:23 +02002596 /*
2597 * Arrange for userspace references to be interpreted as kernel
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01002598 * pointers. That way we can pass a kernel pointer to a routine
Michal Nazarewiczb73af612010-10-28 17:31:23 +02002599 * that expects a __user pointer and it will work okay.
2600 */
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01002601 set_fs(get_ds());
2602
2603 /* The main loop */
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01002604 while (common->state != FSG_STATE_TERMINATED) {
2605 if (exception_in_progress(common) || signal_pending(current)) {
2606 handle_exception(common);
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01002607 continue;
2608 }
2609
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01002610 if (!common->running) {
2611 sleep_thread(common);
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01002612 continue;
2613 }
2614
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01002615 if (get_next_command(common))
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01002616 continue;
2617
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01002618 spin_lock_irq(&common->lock);
2619 if (!exception_in_progress(common))
2620 common->state = FSG_STATE_DATA_PHASE;
2621 spin_unlock_irq(&common->lock);
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01002622
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01002623 if (do_scsi_command(common) || finish_reply(common))
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01002624 continue;
2625
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01002626 spin_lock_irq(&common->lock);
2627 if (!exception_in_progress(common))
2628 common->state = FSG_STATE_STATUS_PHASE;
2629 spin_unlock_irq(&common->lock);
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01002630
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01002631 if (send_status(common))
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01002632 continue;
2633
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01002634 spin_lock_irq(&common->lock);
2635 if (!exception_in_progress(common))
2636 common->state = FSG_STATE_IDLE;
2637 spin_unlock_irq(&common->lock);
Michal Nazarewiczd23b0f02009-11-09 14:15:20 +01002638 }
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01002639
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01002640 spin_lock_irq(&common->lock);
2641 common->thread_task = NULL;
2642 spin_unlock_irq(&common->lock);
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01002643
Michal Nazarewicz8876f5e2010-06-21 13:57:09 +02002644 if (!common->ops || !common->ops->thread_exits
2645 || common->ops->thread_exits(common) < 0) {
Michal Nazarewicz7f1ee822010-01-28 13:05:26 +01002646 struct fsg_lun *curlun = common->luns;
2647 unsigned i = common->nluns;
2648
2649 down_write(&common->filesem);
2650 for (; i--; ++curlun) {
2651 if (!fsg_lun_is_open(curlun))
2652 continue;
2653
2654 fsg_lun_close(curlun);
2655 curlun->unit_attention_data = SS_MEDIUM_NOT_PRESENT;
2656 }
2657 up_write(&common->filesem);
2658 }
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01002659
Michal Nazarewicz00cb6362010-10-28 17:31:22 +02002660 /* Let fsg_unbind() know the thread has exited */
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01002661 complete_and_exit(&common->thread_notifier, 0);
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01002662}
2663
2664
Michal Nazarewicz9c610212009-10-28 16:57:22 +01002665/*************************** DEVICE ATTRIBUTES ***************************/
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01002666
Michal Nazarewiczd23b0f02009-11-09 14:15:20 +01002667/* Write permission is checked per LUN in store_*() functions. */
2668static DEVICE_ATTR(ro, 0644, fsg_show_ro, fsg_store_ro);
Michal Nazarewicz9cfe7452010-08-12 17:43:51 +02002669static DEVICE_ATTR(nofua, 0644, fsg_show_nofua, fsg_store_nofua);
Michal Nazarewiczd23b0f02009-11-09 14:15:20 +01002670static DEVICE_ATTR(file, 0644, fsg_show_file, fsg_store_file);
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01002671
2672
Michal Nazarewicz9c610212009-10-28 16:57:22 +01002673/****************************** FSG COMMON ******************************/
2674
2675static void fsg_common_release(struct kref *ref);
2676
2677static void fsg_lun_release(struct device *dev)
2678{
2679 /* Nothing needs to be done */
2680}
2681
2682static inline void fsg_common_get(struct fsg_common *common)
2683{
2684 kref_get(&common->ref);
2685}
2686
2687static inline void fsg_common_put(struct fsg_common *common)
2688{
2689 kref_put(&common->ref, fsg_common_release);
2690}
2691
Michal Nazarewicz9c610212009-10-28 16:57:22 +01002692static struct fsg_common *fsg_common_init(struct fsg_common *common,
Michal Nazarewicz481e4922009-11-09 14:15:21 +01002693 struct usb_composite_dev *cdev,
2694 struct fsg_config *cfg)
Michal Nazarewicz9c610212009-10-28 16:57:22 +01002695{
Michal Nazarewiczd23b0f02009-11-09 14:15:20 +01002696 struct usb_gadget *gadget = cdev->gadget;
Michal Nazarewicz9c610212009-10-28 16:57:22 +01002697 struct fsg_buffhd *bh;
2698 struct fsg_lun *curlun;
Michal Nazarewicz481e4922009-11-09 14:15:21 +01002699 struct fsg_lun_config *lcfg;
Michal Nazarewicz9c610212009-10-28 16:57:22 +01002700 int nluns, i, rc;
Michal Nazarewiczd23b0f02009-11-09 14:15:20 +01002701 char *pathbuf;
Michal Nazarewicz9c610212009-10-28 16:57:22 +01002702
Per Forlin6532c7f2011-08-19 21:21:27 +02002703 rc = fsg_num_buffers_validate();
2704 if (rc != 0)
2705 return ERR_PTR(rc);
2706
Michal Nazarewicz9c610212009-10-28 16:57:22 +01002707 /* Find out how many LUNs there should be */
Michal Nazarewicz481e4922009-11-09 14:15:21 +01002708 nluns = cfg->nluns;
Michal Nazarewicz9c610212009-10-28 16:57:22 +01002709 if (nluns < 1 || nluns > FSG_MAX_LUNS) {
2710 dev_err(&gadget->dev, "invalid number of LUNs: %u\n", nluns);
2711 return ERR_PTR(-EINVAL);
2712 }
2713
2714 /* Allocate? */
2715 if (!common) {
2716 common = kzalloc(sizeof *common, GFP_KERNEL);
2717 if (!common)
2718 return ERR_PTR(-ENOMEM);
2719 common->free_storage_on_release = 1;
2720 } else {
Jesper Juhla283c032011-01-29 02:26:51 +01002721 memset(common, 0, sizeof *common);
Michal Nazarewicz9c610212009-10-28 16:57:22 +01002722 common->free_storage_on_release = 0;
2723 }
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01002724
Per Forlin6532c7f2011-08-19 21:21:27 +02002725 common->buffhds = kcalloc(fsg_num_buffers,
2726 sizeof *(common->buffhds), GFP_KERNEL);
2727 if (!common->buffhds) {
2728 if (common->free_storage_on_release)
2729 kfree(common);
2730 return ERR_PTR(-ENOMEM);
2731 }
2732
Michal Nazarewicz8876f5e2010-06-21 13:57:09 +02002733 common->ops = cfg->ops;
Michal Nazarewiczc85efcb2009-11-09 14:15:26 +01002734 common->private_data = cfg->private_data;
2735
Michal Nazarewicz9c610212009-10-28 16:57:22 +01002736 common->gadget = gadget;
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01002737 common->ep0 = gadget->ep0;
2738 common->ep0req = cdev->req;
Roger Quadros95ed3232011-05-09 13:08:07 +03002739 common->cdev = cdev;
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01002740
2741 /* Maybe allocate device-global string IDs, and patch descriptors */
2742 if (fsg_strings[FSG_STRING_INTERFACE].id == 0) {
2743 rc = usb_string_id(cdev);
Michal Nazarewiczb9e00082010-05-12 12:51:13 +02002744 if (unlikely(rc < 0))
2745 goto error_release;
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01002746 fsg_strings[FSG_STRING_INTERFACE].id = rc;
2747 fsg_intf_desc.iInterface = rc;
2748 }
Michal Nazarewicz9c610212009-10-28 16:57:22 +01002749
Michal Nazarewiczb73af612010-10-28 17:31:23 +02002750 /*
2751 * Create the LUNs, open their backing files, and register the
2752 * LUN devices in sysfs.
2753 */
Thomas Meyer9823a522011-11-29 22:08:00 +01002754 curlun = kcalloc(nluns, sizeof(*curlun), GFP_KERNEL);
Michal Nazarewiczb9e00082010-05-12 12:51:13 +02002755 if (unlikely(!curlun)) {
2756 rc = -ENOMEM;
2757 goto error_release;
Michal Nazarewicz9c610212009-10-28 16:57:22 +01002758 }
2759 common->luns = curlun;
2760
2761 init_rwsem(&common->filesem);
2762
Michal Nazarewicz481e4922009-11-09 14:15:21 +01002763 for (i = 0, lcfg = cfg->luns; i < nluns; ++i, ++curlun, ++lcfg) {
2764 curlun->cdrom = !!lcfg->cdrom;
2765 curlun->ro = lcfg->cdrom || lcfg->ro;
Roger Quadros3c624d42011-04-05 18:36:39 +03002766 curlun->initially_ro = curlun->ro;
Michal Nazarewicz481e4922009-11-09 14:15:21 +01002767 curlun->removable = lcfg->removable;
Michal Nazarewicz9c610212009-10-28 16:57:22 +01002768 curlun->dev.release = fsg_lun_release;
2769 curlun->dev.parent = &gadget->dev;
Michal Nazarewiczd23b0f02009-11-09 14:15:20 +01002770 /* curlun->dev.driver = &fsg_driver.driver; XXX */
Michal Nazarewicz9c610212009-10-28 16:57:22 +01002771 dev_set_drvdata(&curlun->dev, &common->filesem);
Michal Nazarewicz1a12af12012-06-12 12:42:17 +02002772 dev_set_name(&curlun->dev, "lun%d", i);
Michal Nazarewicz9c610212009-10-28 16:57:22 +01002773
2774 rc = device_register(&curlun->dev);
2775 if (rc) {
2776 INFO(common, "failed to register LUN%d: %d\n", i, rc);
2777 common->nluns = i;
Rahul Ruikar17a93612010-10-28 17:31:19 +02002778 put_device(&curlun->dev);
Michal Nazarewicz9c610212009-10-28 16:57:22 +01002779 goto error_release;
2780 }
2781
2782 rc = device_create_file(&curlun->dev, &dev_attr_ro);
2783 if (rc)
2784 goto error_luns;
2785 rc = device_create_file(&curlun->dev, &dev_attr_file);
2786 if (rc)
2787 goto error_luns;
Michal Nazarewicz9cfe7452010-08-12 17:43:51 +02002788 rc = device_create_file(&curlun->dev, &dev_attr_nofua);
2789 if (rc)
2790 goto error_luns;
Michal Nazarewicz9c610212009-10-28 16:57:22 +01002791
Michal Nazarewicz481e4922009-11-09 14:15:21 +01002792 if (lcfg->filename) {
2793 rc = fsg_lun_open(curlun, lcfg->filename);
Michal Nazarewicz9c610212009-10-28 16:57:22 +01002794 if (rc)
2795 goto error_luns;
Michal Nazarewicz481e4922009-11-09 14:15:21 +01002796 } else if (!curlun->removable) {
Michal Nazarewicz9c610212009-10-28 16:57:22 +01002797 ERROR(common, "no file given for LUN%d\n", i);
2798 rc = -EINVAL;
2799 goto error_luns;
2800 }
2801 }
2802 common->nluns = nluns;
2803
Michal Nazarewicz9c610212009-10-28 16:57:22 +01002804 /* Data buffers cyclic list */
Michal Nazarewicz9c610212009-10-28 16:57:22 +01002805 bh = common->buffhds;
Per Forlin6532c7f2011-08-19 21:21:27 +02002806 i = fsg_num_buffers;
Michal Nazarewiczaae86e82010-03-15 21:38:31 +01002807 goto buffhds_first_it;
Michal Nazarewicz9c610212009-10-28 16:57:22 +01002808 do {
2809 bh->next = bh + 1;
Michal Nazarewiczaae86e82010-03-15 21:38:31 +01002810 ++bh;
2811buffhds_first_it:
2812 bh->buf = kmalloc(FSG_BUFLEN, GFP_KERNEL);
2813 if (unlikely(!bh->buf)) {
2814 rc = -ENOMEM;
2815 goto error_release;
2816 }
2817 } while (--i);
Michal Nazarewicz9c610212009-10-28 16:57:22 +01002818 bh->next = common->buffhds;
2819
Michal Nazarewicz481e4922009-11-09 14:15:21 +01002820 /* Prepare inquiryString */
2821 if (cfg->release != 0xffff) {
2822 i = cfg->release;
2823 } else {
Christoph Egger90f79762010-02-05 13:24:12 +01002824 i = usb_gadget_controller_number(gadget);
Michal Nazarewicz481e4922009-11-09 14:15:21 +01002825 if (i >= 0) {
2826 i = 0x0300 + i;
2827 } else {
Michal Nazarewicz9c610212009-10-28 16:57:22 +01002828 WARNING(common, "controller '%s' not recognized\n",
2829 gadget->name);
Michal Nazarewicz481e4922009-11-09 14:15:21 +01002830 i = 0x0399;
Michal Nazarewicz9c610212009-10-28 16:57:22 +01002831 }
2832 }
Michal Nazarewicz481e4922009-11-09 14:15:21 +01002833 snprintf(common->inquiry_string, sizeof common->inquiry_string,
Michal Nazarewicz1ccd7922010-10-28 17:31:20 +02002834 "%-8s%-16s%04x", cfg->vendor_name ?: "Linux",
Michal Nazarewicz481e4922009-11-09 14:15:21 +01002835 /* Assume product name dependent on the first LUN */
Michal Nazarewicz1ccd7922010-10-28 17:31:20 +02002836 cfg->product_name ?: (common->luns->cdrom
Michal Nazarewicz481e4922009-11-09 14:15:21 +01002837 ? "File-Stor Gadget"
Michal Nazarewicz1ccd7922010-10-28 17:31:20 +02002838 : "File-CD Gadget"),
Michal Nazarewicz481e4922009-11-09 14:15:21 +01002839 i);
Michal Nazarewicz9c610212009-10-28 16:57:22 +01002840
Michal Nazarewiczb73af612010-10-28 17:31:23 +02002841 /*
2842 * Some peripheral controllers are known not to be able to
Michal Nazarewicz9c610212009-10-28 16:57:22 +01002843 * halt bulk endpoints correctly. If one of them is present,
2844 * disable stalls.
2845 */
Michal Nazarewicz481e4922009-11-09 14:15:21 +01002846 common->can_stall = cfg->can_stall &&
Christoph Egger90f79762010-02-05 13:24:12 +01002847 !(gadget_is_at91(common->gadget));
Michal Nazarewicz9c610212009-10-28 16:57:22 +01002848
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01002849 spin_lock_init(&common->lock);
Michal Nazarewicz9c610212009-10-28 16:57:22 +01002850 kref_init(&common->ref);
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01002851
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01002852 /* Tell the thread to start working */
2853 common->thread_task =
Michal Nazarewicz1a12af12012-06-12 12:42:17 +02002854 kthread_create(fsg_main_thread, common, "file-storage");
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01002855 if (IS_ERR(common->thread_task)) {
2856 rc = PTR_ERR(common->thread_task);
2857 goto error_release;
2858 }
2859 init_completion(&common->thread_notifier);
Michal Nazarewiczb894f602010-06-25 16:29:28 +02002860 init_waitqueue_head(&common->fsg_wait);
Michal Nazarewicze8b6f8c2009-11-09 14:15:22 +01002861
Michal Nazarewiczd23b0f02009-11-09 14:15:20 +01002862 /* Information */
2863 INFO(common, FSG_DRIVER_DESC ", version: " FSG_DRIVER_VERSION "\n");
2864 INFO(common, "Number of LUNs=%d\n", common->nluns);
2865
2866 pathbuf = kmalloc(PATH_MAX, GFP_KERNEL);
2867 for (i = 0, nluns = common->nluns, curlun = common->luns;
2868 i < nluns;
2869 ++curlun, ++i) {
2870 char *p = "(no medium)";
2871 if (fsg_lun_is_open(curlun)) {
2872 p = "(error)";
2873 if (pathbuf) {
2874 p = d_path(&curlun->filp->f_path,
2875 pathbuf, PATH_MAX);
2876 if (IS_ERR(p))
2877 p = "(error)";
2878 }
2879 }
2880 LINFO(curlun, "LUN: %s%s%sfile: %s\n",
2881 curlun->removable ? "removable " : "",
2882 curlun->ro ? "read only " : "",
2883 curlun->cdrom ? "CD-ROM " : "",
2884 p);
2885 }
2886 kfree(pathbuf);
2887
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01002888 DBG(common, "I/O thread pid: %d\n", task_pid_nr(common->thread_task));
2889
2890 wake_up_process(common->thread_task);
2891
Michal Nazarewicz9c610212009-10-28 16:57:22 +01002892 return common;
2893
Michal Nazarewicz9c610212009-10-28 16:57:22 +01002894error_luns:
2895 common->nluns = i + 1;
2896error_release:
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01002897 common->state = FSG_STATE_TERMINATED; /* The thread is dead */
Michal Nazarewiczb73af612010-10-28 17:31:23 +02002898 /* Call fsg_common_release() directly, ref might be not initialised. */
Michal Nazarewicz9c610212009-10-28 16:57:22 +01002899 fsg_common_release(&common->ref);
2900 return ERR_PTR(rc);
2901}
2902
Michal Nazarewicz9c610212009-10-28 16:57:22 +01002903static void fsg_common_release(struct kref *ref)
2904{
Michal Nazarewiczb9e00082010-05-12 12:51:13 +02002905 struct fsg_common *common = container_of(ref, struct fsg_common, ref);
Michal Nazarewicz9c610212009-10-28 16:57:22 +01002906
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01002907 /* If the thread isn't already dead, tell it to exit now */
2908 if (common->state != FSG_STATE_TERMINATED) {
2909 raise_exception(common, FSG_STATE_EXIT);
2910 wait_for_completion(&common->thread_notifier);
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01002911 }
2912
Michal Nazarewiczb9e00082010-05-12 12:51:13 +02002913 if (likely(common->luns)) {
2914 struct fsg_lun *lun = common->luns;
2915 unsigned i = common->nluns;
Michal Nazarewicz9c610212009-10-28 16:57:22 +01002916
Michal Nazarewiczb9e00082010-05-12 12:51:13 +02002917 /* In error recovery common->nluns may be zero. */
2918 for (; i; --i, ++lun) {
Michal Nazarewicz9cfe7452010-08-12 17:43:51 +02002919 device_remove_file(&lun->dev, &dev_attr_nofua);
Michal Nazarewiczb9e00082010-05-12 12:51:13 +02002920 device_remove_file(&lun->dev, &dev_attr_ro);
2921 device_remove_file(&lun->dev, &dev_attr_file);
2922 fsg_lun_close(lun);
2923 device_unregister(&lun->dev);
2924 }
2925
2926 kfree(common->luns);
Michal Nazarewicz9c610212009-10-28 16:57:22 +01002927 }
2928
Michal Nazarewiczb9e00082010-05-12 12:51:13 +02002929 {
2930 struct fsg_buffhd *bh = common->buffhds;
Per Forlin6532c7f2011-08-19 21:21:27 +02002931 unsigned i = fsg_num_buffers;
Michal Nazarewiczb9e00082010-05-12 12:51:13 +02002932 do {
2933 kfree(bh->buf);
2934 } while (++bh, --i);
2935 }
Michal Nazarewiczaae86e82010-03-15 21:38:31 +01002936
Per Forlin6532c7f2011-08-19 21:21:27 +02002937 kfree(common->buffhds);
Michal Nazarewicz9c610212009-10-28 16:57:22 +01002938 if (common->free_storage_on_release)
2939 kfree(common);
2940}
2941
2942
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01002943/*-------------------------------------------------------------------------*/
2944
Michal Nazarewiczd23b0f02009-11-09 14:15:20 +01002945static void fsg_unbind(struct usb_configuration *c, struct usb_function *f)
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01002946{
Michal Nazarewiczd23b0f02009-11-09 14:15:20 +01002947 struct fsg_dev *fsg = fsg_from_func(f);
Michal Nazarewiczb894f602010-06-25 16:29:28 +02002948 struct fsg_common *common = fsg->common;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01002949
2950 DBG(fsg, "unbind\n");
Michal Nazarewiczb894f602010-06-25 16:29:28 +02002951 if (fsg->common->fsg == fsg) {
2952 fsg->common->new_fsg = NULL;
2953 raise_exception(fsg->common, FSG_STATE_CONFIG_CHANGE);
2954 /* FIXME: make interruptible or killable somehow? */
2955 wait_event(common->fsg_wait, common->fsg != fsg);
2956 }
2957
2958 fsg_common_put(common);
Michal Nazarewicz0fb2c2a2010-03-29 14:01:32 +02002959 usb_free_descriptors(fsg->function.descriptors);
2960 usb_free_descriptors(fsg->function.hs_descriptors);
Yu Xuf44b9152011-12-10 00:03:33 +08002961 usb_free_descriptors(fsg->function.ss_descriptors);
Michal Nazarewicz9c610212009-10-28 16:57:22 +01002962 kfree(fsg);
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01002963}
2964
Michal Nazarewicz28824b12010-05-05 12:53:13 +02002965static int fsg_bind(struct usb_configuration *c, struct usb_function *f)
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01002966{
Michal Nazarewiczd23b0f02009-11-09 14:15:20 +01002967 struct fsg_dev *fsg = fsg_from_func(f);
2968 struct usb_gadget *gadget = c->cdev->gadget;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01002969 int i;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01002970 struct usb_ep *ep;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01002971
2972 fsg->gadget = gadget;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01002973
Michal Nazarewiczd23b0f02009-11-09 14:15:20 +01002974 /* New interface */
2975 i = usb_interface_id(c, f);
2976 if (i < 0)
2977 return i;
2978 fsg_intf_desc.bInterfaceNumber = i;
2979 fsg->interface_number = i;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01002980
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01002981 /* Find all the endpoints we will use */
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01002982 ep = usb_ep_autoconfig(gadget, &fsg_fs_bulk_in_desc);
2983 if (!ep)
2984 goto autoconf_fail;
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01002985 ep->driver_data = fsg->common; /* claim the endpoint */
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01002986 fsg->bulk_in = ep;
2987
2988 ep = usb_ep_autoconfig(gadget, &fsg_fs_bulk_out_desc);
2989 if (!ep)
2990 goto autoconf_fail;
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01002991 ep->driver_data = fsg->common; /* claim the endpoint */
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01002992 fsg->bulk_out = ep;
2993
Michal Nazarewicze5fd39d2010-06-25 16:29:26 +02002994 /* Copy descriptors */
2995 f->descriptors = usb_copy_descriptors(fsg_fs_function);
2996 if (unlikely(!f->descriptors))
2997 return -ENOMEM;
2998
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01002999 if (gadget_is_dualspeed(gadget)) {
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01003000 /* Assume endpoint addresses are the same for both speeds */
3001 fsg_hs_bulk_in_desc.bEndpointAddress =
3002 fsg_fs_bulk_in_desc.bEndpointAddress;
3003 fsg_hs_bulk_out_desc.bEndpointAddress =
3004 fsg_fs_bulk_out_desc.bEndpointAddress;
Michal Nazarewicz0fb2c2a2010-03-29 14:01:32 +02003005 f->hs_descriptors = usb_copy_descriptors(fsg_hs_function);
Michal Nazarewicze5fd39d2010-06-25 16:29:26 +02003006 if (unlikely(!f->hs_descriptors)) {
3007 usb_free_descriptors(f->descriptors);
Michal Nazarewicz0fb2c2a2010-03-29 14:01:32 +02003008 return -ENOMEM;
Michal Nazarewicze5fd39d2010-06-25 16:29:26 +02003009 }
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01003010 }
3011
Felipe Balbi4bb99b72011-08-03 14:33:27 +03003012 if (gadget_is_superspeed(gadget)) {
3013 unsigned max_burst;
3014
3015 /* Calculate bMaxBurst, we know packet size is 1024 */
3016 max_burst = min_t(unsigned, FSG_BUFLEN / 1024, 15);
3017
3018 fsg_ss_bulk_in_desc.bEndpointAddress =
3019 fsg_fs_bulk_in_desc.bEndpointAddress;
3020 fsg_ss_bulk_in_comp_desc.bMaxBurst = max_burst;
3021
3022 fsg_ss_bulk_out_desc.bEndpointAddress =
3023 fsg_fs_bulk_out_desc.bEndpointAddress;
3024 fsg_ss_bulk_out_comp_desc.bMaxBurst = max_burst;
3025
3026 f->ss_descriptors = usb_copy_descriptors(fsg_ss_function);
3027 if (unlikely(!f->ss_descriptors)) {
3028 usb_free_descriptors(f->hs_descriptors);
3029 usb_free_descriptors(f->descriptors);
3030 return -ENOMEM;
3031 }
3032 }
3033
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01003034 return 0;
3035
3036autoconf_fail:
3037 ERROR(fsg, "unable to autoconfigure all endpoints\n");
Michal Nazarewicze5fd39d2010-06-25 16:29:26 +02003038 return -ENOTSUPP;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01003039}
3040
3041
Michal Nazarewiczd23b0f02009-11-09 14:15:20 +01003042/****************************** ADD FUNCTION ******************************/
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01003043
Michal Nazarewiczd23b0f02009-11-09 14:15:20 +01003044static struct usb_gadget_strings *fsg_strings_array[] = {
3045 &fsg_stringtab,
3046 NULL,
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01003047};
3048
Michal Nazarewicz1dc90982010-06-16 12:07:57 +02003049static int fsg_bind_config(struct usb_composite_dev *cdev,
3050 struct usb_configuration *c,
3051 struct fsg_common *common)
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01003052{
Michal Nazarewiczd23b0f02009-11-09 14:15:20 +01003053 struct fsg_dev *fsg;
3054 int rc;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01003055
Michal Nazarewiczd23b0f02009-11-09 14:15:20 +01003056 fsg = kzalloc(sizeof *fsg, GFP_KERNEL);
3057 if (unlikely(!fsg))
3058 return -ENOMEM;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01003059
Michal Nazarewiczd23b0f02009-11-09 14:15:20 +01003060 fsg->function.name = FSG_DRIVER_DESC;
3061 fsg->function.strings = fsg_strings_array;
Michal Nazarewiczd23b0f02009-11-09 14:15:20 +01003062 fsg->function.bind = fsg_bind;
3063 fsg->function.unbind = fsg_unbind;
3064 fsg->function.setup = fsg_setup;
3065 fsg->function.set_alt = fsg_set_alt;
3066 fsg->function.disable = fsg_disable;
3067
3068 fsg->common = common;
Michal Nazarewiczb73af612010-10-28 17:31:23 +02003069 /*
3070 * Our caller holds a reference to common structure so we
Michal Nazarewiczd23b0f02009-11-09 14:15:20 +01003071 * don't have to be worry about it being freed until we return
3072 * from this function. So instead of incrementing counter now
3073 * and decrement in error recovery we increment it only when
Michal Nazarewiczb73af612010-10-28 17:31:23 +02003074 * call to usb_add_function() was successful.
3075 */
Michal Nazarewiczd23b0f02009-11-09 14:15:20 +01003076
3077 rc = usb_add_function(c, &fsg->function);
Michal Nazarewicz0fb2c2a2010-03-29 14:01:32 +02003078 if (unlikely(rc))
Michal Nazarewicze5fd39d2010-06-25 16:29:26 +02003079 kfree(fsg);
3080 else
3081 fsg_common_get(fsg->common);
Michal Nazarewiczd23b0f02009-11-09 14:15:20 +01003082 return rc;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01003083}
Michal Nazarewicz481e4922009-11-09 14:15:21 +01003084
Michal Nazarewicz481e4922009-11-09 14:15:21 +01003085
3086/************************* Module parameters *************************/
3087
Michal Nazarewicz481e4922009-11-09 14:15:21 +01003088struct fsg_module_parameters {
3089 char *file[FSG_MAX_LUNS];
Fabio Estevam4b5203f2012-01-12 16:09:15 -02003090 bool ro[FSG_MAX_LUNS];
3091 bool removable[FSG_MAX_LUNS];
3092 bool cdrom[FSG_MAX_LUNS];
3093 bool nofua[FSG_MAX_LUNS];
Michal Nazarewicz481e4922009-11-09 14:15:21 +01003094
3095 unsigned int file_count, ro_count, removable_count, cdrom_count;
Michal Nazarewicz9cfe7452010-08-12 17:43:51 +02003096 unsigned int nofua_count;
Michal Nazarewicz481e4922009-11-09 14:15:21 +01003097 unsigned int luns; /* nluns */
Fabio Estevam4b5203f2012-01-12 16:09:15 -02003098 bool stall; /* can_stall */
Michal Nazarewicz481e4922009-11-09 14:15:21 +01003099};
3100
Michal Nazarewicz481e4922009-11-09 14:15:21 +01003101#define _FSG_MODULE_PARAM_ARRAY(prefix, params, name, type, desc) \
3102 module_param_array_named(prefix ## name, params.name, type, \
3103 &prefix ## params.name ## _count, \
3104 S_IRUGO); \
3105 MODULE_PARM_DESC(prefix ## name, desc)
3106
3107#define _FSG_MODULE_PARAM(prefix, params, name, type, desc) \
3108 module_param_named(prefix ## name, params.name, type, \
3109 S_IRUGO); \
3110 MODULE_PARM_DESC(prefix ## name, desc)
3111
3112#define FSG_MODULE_PARAMETERS(prefix, params) \
3113 _FSG_MODULE_PARAM_ARRAY(prefix, params, file, charp, \
3114 "names of backing files or devices"); \
3115 _FSG_MODULE_PARAM_ARRAY(prefix, params, ro, bool, \
3116 "true to force read-only"); \
3117 _FSG_MODULE_PARAM_ARRAY(prefix, params, removable, bool, \
3118 "true to simulate removable media"); \
3119 _FSG_MODULE_PARAM_ARRAY(prefix, params, cdrom, bool, \
3120 "true to simulate CD-ROM instead of disk"); \
Michal Nazarewicz9cfe7452010-08-12 17:43:51 +02003121 _FSG_MODULE_PARAM_ARRAY(prefix, params, nofua, bool, \
3122 "true to ignore SCSI WRITE(10,12) FUA bit"); \
Michal Nazarewicz481e4922009-11-09 14:15:21 +01003123 _FSG_MODULE_PARAM(prefix, params, luns, uint, \
3124 "number of LUNs"); \
3125 _FSG_MODULE_PARAM(prefix, params, stall, bool, \
3126 "false to prevent bulk stalls")
3127
Michal Nazarewicz481e4922009-11-09 14:15:21 +01003128static void
3129fsg_config_from_params(struct fsg_config *cfg,
3130 const struct fsg_module_parameters *params)
3131{
3132 struct fsg_lun_config *lun;
Michal Nazarewiczd26a6aa2009-11-09 14:15:23 +01003133 unsigned i;
Michal Nazarewicz481e4922009-11-09 14:15:21 +01003134
3135 /* Configure LUNs */
Michal Nazarewiczd26a6aa2009-11-09 14:15:23 +01003136 cfg->nluns =
3137 min(params->luns ?: (params->file_count ?: 1u),
3138 (unsigned)FSG_MAX_LUNS);
3139 for (i = 0, lun = cfg->luns; i < cfg->nluns; ++i, ++lun) {
Michal Nazarewicz481e4922009-11-09 14:15:21 +01003140 lun->ro = !!params->ro[i];
3141 lun->cdrom = !!params->cdrom[i];
Michal Nazarewiczfa84c572012-05-26 16:32:39 -07003142 lun->removable = !!params->removable[i];
Michal Nazarewicz481e4922009-11-09 14:15:21 +01003143 lun->filename =
3144 params->file_count > i && params->file[i][0]
3145 ? params->file[i]
3146 : 0;
3147 }
3148
Michal Nazarewiczd26a6aa2009-11-09 14:15:23 +01003149 /* Let MSF use defaults */
Michal Nazarewicz481e4922009-11-09 14:15:21 +01003150 cfg->vendor_name = 0;
3151 cfg->product_name = 0;
3152 cfg->release = 0xffff;
3153
Michal Nazarewicz8876f5e2010-06-21 13:57:09 +02003154 cfg->ops = NULL;
3155 cfg->private_data = NULL;
Michal Nazarewiczc85efcb2009-11-09 14:15:26 +01003156
Michal Nazarewicz481e4922009-11-09 14:15:21 +01003157 /* Finalise */
3158 cfg->can_stall = params->stall;
3159}
3160
3161static inline struct fsg_common *
3162fsg_common_from_params(struct fsg_common *common,
3163 struct usb_composite_dev *cdev,
3164 const struct fsg_module_parameters *params)
3165 __attribute__((unused));
3166static inline struct fsg_common *
3167fsg_common_from_params(struct fsg_common *common,
3168 struct usb_composite_dev *cdev,
3169 const struct fsg_module_parameters *params)
3170{
3171 struct fsg_config cfg;
3172 fsg_config_from_params(&cfg, params);
3173 return fsg_common_init(common, cdev, &cfg);
3174}