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