blob: 2505117e88e8bad0f1ce98a49498731634ceaf88 [file] [log] [blame]
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001/*
Michal Nazarewiczd26a6aa2009-11-09 14:15:23 +01002 * f_mass_storage.c -- Mass Storage USB Composite Function
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01003 *
4 * Copyright (C) 2003-2008 Alan Stern
Michal Nazarewiczd26a6aa2009-11-09 14:15:23 +01005 * Copyright (C) 2009 Samsung Electronics
Michal Nazarewicz54b83602012-01-13 15:05:16 +01006 * Author: Michal Nazarewicz <mina86@mina86.com>
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01007 * All rights reserved.
8 *
9 * Redistribution and use in source and binary forms, with or without
10 * modification, are permitted provided that the following conditions
11 * are met:
12 * 1. Redistributions of source code must retain the above copyright
13 * notice, this list of conditions, and the following disclaimer,
14 * without modification.
15 * 2. Redistributions in binary form must reproduce the above copyright
16 * notice, this list of conditions and the following disclaimer in the
17 * documentation and/or other materials provided with the distribution.
18 * 3. The names of the above-listed copyright holders may not be used
19 * to endorse or promote products derived from this software without
20 * specific prior written permission.
21 *
22 * ALTERNATIVELY, this software may be distributed under the terms of the
23 * GNU General Public License ("GPL") as published by the Free Software
24 * Foundation, either version 2 of that License or (at your option) any
25 * later version.
26 *
27 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
28 * IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
29 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
30 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
31 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
32 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
33 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
34 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
35 * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
36 * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
37 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
38 */
39
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +010040/*
Michal Nazarewiczd26a6aa2009-11-09 14:15:23 +010041 * The Mass Storage Function acts as a USB Mass Storage device,
42 * appearing to the host as a disk drive or as a CD-ROM drive. In
43 * addition to providing an example of a genuinely useful composite
44 * function for a USB device, it also illustrates a technique of
45 * double-buffering for increased throughput.
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +010046 *
Michal Nazarewicza8287a42012-06-12 12:42:18 +020047 * For more information about MSF and in particular its module
48 * parameters and sysfs interface read the
49 * <Documentation/usb/mass-storage.txt> file.
50 */
51
52/*
Michal Nazarewiczd26a6aa2009-11-09 14:15:23 +010053 * MSF is configured by specifying a fsg_config structure. It has the
54 * following fields:
55 *
56 * nluns Number of LUNs function have (anywhere from 1
Krzysztof Opasiak75ddead2015-07-20 20:15:19 +020057 * to FSG_MAX_LUNS).
Michal Nazarewiczd26a6aa2009-11-09 14:15:23 +010058 * luns An array of LUN configuration values. This
59 * should be filled for each LUN that
60 * function will include (ie. for "nluns"
61 * LUNs). Each element of the array has
62 * the following fields:
63 * ->filename The path to the backing file for the LUN.
64 * Required if LUN is not marked as
65 * removable.
66 * ->ro Flag specifying access to the LUN shall be
67 * read-only. This is implied if CD-ROM
68 * emulation is enabled as well as when
69 * it was impossible to open "filename"
70 * in R/W mode.
71 * ->removable Flag specifying that LUN shall be indicated as
72 * being removable.
73 * ->cdrom Flag specifying that LUN shall be reported as
74 * being a CD-ROM.
Michal Nazarewicz9cfe7452010-08-12 17:43:51 +020075 * ->nofua Flag specifying that FUA flag in SCSI WRITE(10,12)
76 * commands for this LUN shall be ignored.
Michal Nazarewiczd26a6aa2009-11-09 14:15:23 +010077 *
Michal Nazarewiczd26a6aa2009-11-09 14:15:23 +010078 * vendor_name
79 * product_name
80 * release Information used as a reply to INQUIRY
81 * request. To use default set to NULL,
82 * NULL, 0xffff respectively. The first
83 * field should be 8 and the second 16
84 * characters or less.
85 *
86 * can_stall Set to permit function to halt bulk endpoints.
87 * Disabled on some USB devices known not
88 * to work correctly. You should set it
89 * to true.
90 *
91 * If "removable" is not set for a LUN then a backing file must be
92 * specified. If it is set, then NULL filename means the LUN's medium
93 * is not loaded (an empty string as "filename" in the fsg_config
94 * structure causes error). The CD-ROM emulation includes a single
95 * data track and no audio tracks; hence there need be only one
Peiyu Li3f565a32011-08-17 22:52:59 -070096 * backing file per LUN.
Michal Nazarewiczd26a6aa2009-11-09 14:15:23 +010097 *
Michal Nazarewiczd26a6aa2009-11-09 14:15:23 +010098 * This function is heavily based on "File-backed Storage Gadget" by
99 * Alan Stern which in turn is heavily based on "Gadget Zero" by David
100 * Brownell. The driver's SCSI command interface was based on the
101 * "Information technology - Small Computer System Interface - 2"
102 * document from X3T9.2 Project 375D, Revision 10L, 7-SEP-93,
103 * available at <http://www.t10.org/ftp/t10/drafts/s2/s2-r10l.pdf>.
104 * The single exception is opcode 0x23 (READ FORMAT CAPACITIES), which
105 * was based on the "Universal Serial Bus Mass Storage Class UFI
106 * Command Specification" document, Revision 1.0, December 14, 1998,
107 * available at
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100108 * <http://www.usb.org/developers/devclass_docs/usbmass-ufi10.pdf>.
109 */
110
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100111/*
112 * Driver Design
113 *
Michal Nazarewiczd26a6aa2009-11-09 14:15:23 +0100114 * The MSF is fairly straightforward. There is a main kernel
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100115 * thread that handles most of the work. Interrupt routines field
116 * callbacks from the controller driver: bulk- and interrupt-request
117 * completion notifications, endpoint-0 events, and disconnect events.
118 * Completion events are passed to the main thread by wakeup calls. Many
119 * ep0 requests are handled at interrupt time, but SetInterface,
120 * SetConfiguration, and device reset requests are forwarded to the
121 * thread in the form of "exceptions" using SIGUSR1 signals (since they
122 * should interrupt any ongoing file I/O operations).
123 *
124 * The thread's main routine implements the standard command/data/status
125 * parts of a SCSI interaction. It and its subroutines are full of tests
126 * for pending signals/exceptions -- all this polling is necessary since
127 * the kernel has no setjmp/longjmp equivalents. (Maybe this is an
128 * indication that the driver really wants to be running in userspace.)
129 * An important point is that so long as the thread is alive it keeps an
130 * open reference to the backing file. This will prevent unmounting
131 * the backing file's underlying filesystem and could cause problems
132 * during system shutdown, for example. To prevent such problems, the
133 * thread catches INT, TERM, and KILL signals and converts them into
134 * an EXIT exception.
135 *
136 * In normal operation the main thread is started during the gadget's
Michal Nazarewiczd26a6aa2009-11-09 14:15:23 +0100137 * fsg_bind() callback and stopped during fsg_unbind(). But it can
138 * also exit when it receives a signal, and there's no point leaving
Michal Nazarewicza8287a42012-06-12 12:42:18 +0200139 * the gadget running when the thread is dead. As of this moment, MSF
Michal Nazarewiczd26a6aa2009-11-09 14:15:23 +0100140 * provides no way to deregister the gadget when thread dies -- maybe
141 * a callback functions is needed.
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100142 *
143 * To provide maximum throughput, the driver uses a circular pipeline of
144 * buffer heads (struct fsg_buffhd). In principle the pipeline can be
145 * arbitrarily long; in practice the benefits don't justify having more
146 * than 2 stages (i.e., double buffering). But it helps to think of the
147 * pipeline as being a long one. Each buffer head contains a bulk-in and
148 * a bulk-out request pointer (since the buffer can be used for both
149 * output and input -- directions always are given from the host's
150 * point of view) as well as a pointer to the buffer and various state
151 * variables.
152 *
153 * Use of the pipeline follows a simple protocol. There is a variable
154 * (fsg->next_buffhd_to_fill) that points to the next buffer head to use.
155 * At any time that buffer head may still be in use from an earlier
156 * request, so each buffer head has a state variable indicating whether
157 * it is EMPTY, FULL, or BUSY. Typical use involves waiting for the
158 * buffer head to be EMPTY, filling the buffer either by file I/O or by
159 * USB I/O (during which the buffer head is BUSY), and marking the buffer
160 * head FULL when the I/O is complete. Then the buffer will be emptied
161 * (again possibly by USB I/O, during which it is marked BUSY) and
162 * finally marked EMPTY again (possibly by a completion routine).
163 *
164 * A module parameter tells the driver to avoid stalling the bulk
165 * endpoints wherever the transport specification allows. This is
166 * necessary for some UDCs like the SuperH, which cannot reliably clear a
167 * halt on a bulk endpoint. However, under certain circumstances the
168 * Bulk-only specification requires a stall. In such cases the driver
169 * will halt the endpoint and set a flag indicating that it should clear
170 * the halt in software during the next device reset. Hopefully this
171 * will permit everything to work correctly. Furthermore, although the
172 * specification allows the bulk-out endpoint to halt when the host sends
173 * too much data, implementing this would cause an unavoidable race.
174 * The driver will always use the "no-stall" approach for OUT transfers.
175 *
176 * One subtle point concerns sending status-stage responses for ep0
177 * requests. Some of these requests, such as device reset, can involve
178 * interrupting an ongoing file I/O operation, which might take an
179 * arbitrarily long time. During that delay the host might give up on
180 * the original ep0 request and issue a new one. When that happens the
181 * driver should not notify the host about completion of the original
182 * request, as the host will no longer be waiting for it. So the driver
183 * assigns to each ep0 request a unique tag, and it keeps track of the
184 * tag value of the request associated with a long-running exception
185 * (device-reset, interface-change, or configuration-change). When the
186 * exception handler is finished, the status-stage response is submitted
187 * only if the current ep0 request tag is equal to the exception request
188 * tag. Thus only the most recently received ep0 request will get a
189 * status-stage response.
190 *
191 * Warning: This driver source file is too long. It ought to be split up
192 * into a header file plus about 3 separate .c files, to handle the details
193 * of the Gadget, USB Mass Storage, and SCSI protocols.
194 */
195
196
197/* #define VERBOSE_DEBUG */
198/* #define DUMP_MSGS */
199
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100200#include <linux/blkdev.h>
201#include <linux/completion.h>
202#include <linux/dcache.h>
203#include <linux/delay.h>
204#include <linux/device.h>
205#include <linux/fcntl.h>
206#include <linux/file.h>
207#include <linux/fs.h>
208#include <linux/kref.h>
209#include <linux/kthread.h>
210#include <linux/limits.h>
211#include <linux/rwsem.h>
212#include <linux/slab.h>
213#include <linux/spinlock.h>
214#include <linux/string.h>
215#include <linux/freezer.h>
Andrzej Pietrasiewicze5eaa0d2013-10-09 10:06:01 +0200216#include <linux/module.h>
Felipe Balbi4a1e9212015-08-06 11:23:32 -0500217#include <linux/uaccess.h>
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100218
219#include <linux/usb/ch9.h>
220#include <linux/usb/gadget.h>
Jesper Juhla283c032011-01-29 02:26:51 +0100221#include <linux/usb/composite.h>
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100222
Andrzej Pietrasiewiczef0aa4b2013-10-09 10:06:05 +0200223#include "configfs.h"
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100224
225
Michal Nazarewicze8b6f8c2009-11-09 14:15:22 +0100226/*------------------------------------------------------------------------*/
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100227
Michal Nazarewiczd23b0f02009-11-09 14:15:20 +0100228#define FSG_DRIVER_DESC "Mass Storage Function"
Michal Nazarewiczd26a6aa2009-11-09 14:15:23 +0100229#define FSG_DRIVER_VERSION "2009/09/11"
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100230
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100231static const char fsg_string_interface[] = "Mass Storage";
232
Andrzej Pietrasiewicz6fdc5dd2013-09-26 14:38:16 +0200233#include "storage_common.h"
Andrzej Pietrasiewiczf3fed362013-09-26 14:38:17 +0200234#include "f_mass_storage.h"
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100235
Andrzej Pietrasiewicz6fdc5dd2013-09-26 14:38:16 +0200236/* Static strings, in UTF-8 (for simplicity we use only ASCII characters) */
237static struct usb_string fsg_strings[] = {
238 {FSG_STRING_INTERFACE, fsg_string_interface},
239 {}
240};
241
242static struct usb_gadget_strings fsg_stringtab = {
243 .language = 0x0409, /* en-us */
244 .strings = fsg_strings,
245};
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100246
Andrzej Pietrasiewicz4610f192013-09-26 14:38:19 +0200247static struct usb_gadget_strings *fsg_strings_array[] = {
248 &fsg_stringtab,
249 NULL,
250};
251
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100252/*-------------------------------------------------------------------------*/
253
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +0100254struct fsg_dev;
Michal Nazarewicz8876f5e2010-06-21 13:57:09 +0200255struct fsg_common;
256
Michal Nazarewicza41ae412009-10-28 16:57:20 +0100257/* Data shared by all the FSG instances. */
258struct fsg_common {
Michal Nazarewicz9c610212009-10-28 16:57:22 +0100259 struct usb_gadget *gadget;
Roger Quadros95ed3232011-05-09 13:08:07 +0300260 struct usb_composite_dev *cdev;
Michal Nazarewiczb894f602010-06-25 16:29:28 +0200261 struct fsg_dev *fsg, *new_fsg;
262 wait_queue_head_t fsg_wait;
Michal Nazarewicz9c610212009-10-28 16:57:22 +0100263
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100264 /* filesem protects: backing files in use */
265 struct rw_semaphore filesem;
266
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +0100267 /* lock protects: state, all the req_busy's */
268 spinlock_t lock;
269
270 struct usb_ep *ep0; /* Copy of gadget->ep0 */
271 struct usb_request *ep0req; /* Copy of cdev->req */
272 unsigned int ep0_req_tag;
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +0100273
Michal Nazarewicza41ae412009-10-28 16:57:20 +0100274 struct fsg_buffhd *next_buffhd_to_fill;
275 struct fsg_buffhd *next_buffhd_to_drain;
Per Forlin6532c7f2011-08-19 21:21:27 +0200276 struct fsg_buffhd *buffhds;
Andrzej Pietrasiewicz6fdc5dd2013-09-26 14:38:16 +0200277 unsigned int fsg_num_buffers;
Michal Nazarewicza41ae412009-10-28 16:57:20 +0100278
279 int cmnd_size;
280 u8 cmnd[MAX_COMMAND_SIZE];
281
Michal Nazarewicza41ae412009-10-28 16:57:20 +0100282 unsigned int lun;
Krzysztof Opasiakdd02ea52015-07-31 13:46:07 +0200283 struct fsg_lun *luns[FSG_MAX_LUNS];
Michal Nazarewicza41ae412009-10-28 16:57:20 +0100284 struct fsg_lun *curlun;
Michal Nazarewicz9c610212009-10-28 16:57:22 +0100285
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +0100286 unsigned int bulk_out_maxpacket;
287 enum fsg_state state; /* For exception handling */
288 unsigned int exception_req_tag;
289
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +0100290 enum data_direction data_dir;
291 u32 data_size;
292 u32 data_size_from_cmnd;
293 u32 tag;
294 u32 residue;
295 u32 usb_amount_left;
296
Michal Nazarewicz481e4922009-11-09 14:15:21 +0100297 unsigned int can_stall:1;
Michal Nazarewicz9c610212009-10-28 16:57:22 +0100298 unsigned int free_storage_on_release:1;
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +0100299 unsigned int phase_error:1;
300 unsigned int short_packet_received:1;
301 unsigned int bad_lun_okay:1;
302 unsigned int running:1;
Andrzej Pietrasiewiczbd528d42013-10-09 10:05:53 +0200303 unsigned int sysfs:1;
Michal Nazarewicz9c610212009-10-28 16:57:22 +0100304
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +0100305 int thread_wakeup_needed;
306 struct completion thread_notifier;
307 struct task_struct *thread_task;
Michal Nazarewicze8b6f8c2009-11-09 14:15:22 +0100308
Michal Nazarewicz8876f5e2010-06-21 13:57:09 +0200309 /* Callback functions. */
310 const struct fsg_operations *ops;
Michal Nazarewiczc85efcb2009-11-09 14:15:26 +0100311 /* Gadget's private data. */
312 void *private_data;
313
Michal Nazarewiczb73af612010-10-28 17:31:23 +0200314 /*
315 * Vendor (8 chars), product (16 chars), release (4
316 * hexadecimal digits) and NUL byte
317 */
Michal Nazarewicz481e4922009-11-09 14:15:21 +0100318 char inquiry_string[8 + 16 + 4 + 1];
319
Michal Nazarewicz9c610212009-10-28 16:57:22 +0100320 struct kref ref;
Michal Nazarewicza41ae412009-10-28 16:57:20 +0100321};
322
Michal Nazarewicza41ae412009-10-28 16:57:20 +0100323struct fsg_dev {
Michal Nazarewiczd23b0f02009-11-09 14:15:20 +0100324 struct usb_function function;
Michal Nazarewiczd23b0f02009-11-09 14:15:20 +0100325 struct usb_gadget *gadget; /* Copy of cdev->gadget */
Michal Nazarewicza41ae412009-10-28 16:57:20 +0100326 struct fsg_common *common;
327
Michal Nazarewiczd23b0f02009-11-09 14:15:20 +0100328 u16 interface_number;
329
Michal Nazarewiczd26a6aa2009-11-09 14:15:23 +0100330 unsigned int bulk_in_enabled:1;
331 unsigned int bulk_out_enabled:1;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100332
333 unsigned long atomic_bitflags;
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +0100334#define IGNORE_BULK_OUT 0
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100335
336 struct usb_ep *bulk_in;
337 struct usb_ep *bulk_out;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100338};
339
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +0100340static inline int __fsg_is_set(struct fsg_common *common,
341 const char *func, unsigned line)
342{
343 if (common->fsg)
344 return 1;
345 ERROR(common, "common->fsg is NULL in %s at %u\n", func, line);
Michal Nazarewicz8876f5e2010-06-21 13:57:09 +0200346 WARN_ON(1);
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +0100347 return 0;
348}
349
350#define fsg_is_set(common) likely(__fsg_is_set(common, __func__, __LINE__))
351
Michal Nazarewiczd23b0f02009-11-09 14:15:20 +0100352static inline struct fsg_dev *fsg_from_func(struct usb_function *f)
353{
354 return container_of(f, struct fsg_dev, function);
355}
356
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100357typedef void (*fsg_routine_t)(struct fsg_dev *);
358
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +0100359static int exception_in_progress(struct fsg_common *common)
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100360{
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +0100361 return common->state > FSG_STATE_IDLE;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100362}
363
Greg Kroah-Hartman98346f72011-04-14 13:42:46 -0700364/* Make bulk-out requests be divisible by the maxpacket size */
365static void set_bulk_out_req_length(struct fsg_common *common,
366 struct fsg_buffhd *bh, unsigned int length)
367{
368 unsigned int rem;
369
370 bh->bulk_out_intended_length = length;
371 rem = length % common->bulk_out_maxpacket;
372 if (rem > 0)
373 length += common->bulk_out_maxpacket - rem;
374 bh->outreq->length = length;
375}
376
377
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100378/*-------------------------------------------------------------------------*/
379
380static int fsg_set_halt(struct fsg_dev *fsg, struct usb_ep *ep)
381{
382 const char *name;
383
384 if (ep == fsg->bulk_in)
385 name = "bulk-in";
386 else if (ep == fsg->bulk_out)
387 name = "bulk-out";
388 else
389 name = ep->name;
390 DBG(fsg, "%s set halt\n", name);
391 return usb_ep_set_halt(ep);
392}
393
394
395/*-------------------------------------------------------------------------*/
396
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100397/* These routines may be called in process context or in_irq */
398
399/* Caller must hold fsg->lock */
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +0100400static void wakeup_thread(struct fsg_common *common)
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100401{
UCHINO Satoshid68c2772013-05-23 11:10:11 +0900402 smp_wmb(); /* ensure the write of bh->state is complete */
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100403 /* Tell the main thread that something has happened */
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +0100404 common->thread_wakeup_needed = 1;
405 if (common->thread_task)
406 wake_up_process(common->thread_task);
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100407}
408
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +0100409static void raise_exception(struct fsg_common *common, enum fsg_state new_state)
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100410{
411 unsigned long flags;
412
Michal Nazarewiczb73af612010-10-28 17:31:23 +0200413 /*
414 * Do nothing if a higher-priority exception is already in progress.
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100415 * If a lower-or-equal priority exception is in progress, preempt it
Michal Nazarewiczb73af612010-10-28 17:31:23 +0200416 * and notify the main thread by sending it a signal.
417 */
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +0100418 spin_lock_irqsave(&common->lock, flags);
419 if (common->state <= new_state) {
420 common->exception_req_tag = common->ep0_req_tag;
421 common->state = new_state;
422 if (common->thread_task)
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100423 send_sig_info(SIGUSR1, SEND_SIG_FORCED,
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +0100424 common->thread_task);
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100425 }
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +0100426 spin_unlock_irqrestore(&common->lock, flags);
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100427}
428
429
430/*-------------------------------------------------------------------------*/
431
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +0100432static int ep0_queue(struct fsg_common *common)
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100433{
434 int rc;
435
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +0100436 rc = usb_ep_queue(common->ep0, common->ep0req, GFP_ATOMIC);
437 common->ep0->driver_data = common;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100438 if (rc != 0 && rc != -ESHUTDOWN) {
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100439 /* We can't do much more than wait for a reset */
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +0100440 WARNING(common, "error in submission: %s --> %d\n",
441 common->ep0->name, rc);
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100442 }
443 return rc;
444}
445
Michal Nazarewiczb73af612010-10-28 17:31:23 +0200446
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100447/*-------------------------------------------------------------------------*/
448
Michal Nazarewiczb73af612010-10-28 17:31:23 +0200449/* Completion handlers. These always run in_irq. */
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100450
451static void bulk_in_complete(struct usb_ep *ep, struct usb_request *req)
452{
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +0100453 struct fsg_common *common = ep->driver_data;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100454 struct fsg_buffhd *bh = req->context;
455
456 if (req->status || req->actual != req->length)
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +0100457 DBG(common, "%s --> %d, %u/%u\n", __func__,
Michal Nazarewiczb73af612010-10-28 17:31:23 +0200458 req->status, req->actual, req->length);
Michal Nazarewiczd26a6aa2009-11-09 14:15:23 +0100459 if (req->status == -ECONNRESET) /* Request was cancelled */
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100460 usb_ep_fifo_flush(ep);
461
462 /* Hold the lock while we update the request and buffer states */
463 smp_wmb();
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +0100464 spin_lock(&common->lock);
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100465 bh->inreq_busy = 0;
466 bh->state = BUF_STATE_EMPTY;
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +0100467 wakeup_thread(common);
468 spin_unlock(&common->lock);
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100469}
470
471static void bulk_out_complete(struct usb_ep *ep, struct usb_request *req)
472{
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +0100473 struct fsg_common *common = ep->driver_data;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100474 struct fsg_buffhd *bh = req->context;
475
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +0100476 dump_msg(common, "bulk-out", req->buf, req->actual);
Greg Kroah-Hartman98346f72011-04-14 13:42:46 -0700477 if (req->status || req->actual != bh->bulk_out_intended_length)
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +0100478 DBG(common, "%s --> %d, %u/%u\n", __func__,
Greg Kroah-Hartman98346f72011-04-14 13:42:46 -0700479 req->status, req->actual, bh->bulk_out_intended_length);
Michal Nazarewiczd26a6aa2009-11-09 14:15:23 +0100480 if (req->status == -ECONNRESET) /* Request was cancelled */
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100481 usb_ep_fifo_flush(ep);
482
483 /* Hold the lock while we update the request and buffer states */
484 smp_wmb();
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +0100485 spin_lock(&common->lock);
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100486 bh->outreq_busy = 0;
487 bh->state = BUF_STATE_FULL;
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +0100488 wakeup_thread(common);
489 spin_unlock(&common->lock);
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100490}
491
Krzysztof Opasiakdd02ea52015-07-31 13:46:07 +0200492static int _fsg_common_get_max_lun(struct fsg_common *common)
493{
494 int i = ARRAY_SIZE(common->luns) - 1;
495
496 while (i >= 0 && !common->luns[i])
497 --i;
498
499 return i;
500}
501
Michal Nazarewiczd23b0f02009-11-09 14:15:20 +0100502static int fsg_setup(struct usb_function *f,
Michal Nazarewiczb73af612010-10-28 17:31:23 +0200503 const struct usb_ctrlrequest *ctrl)
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100504{
Michal Nazarewiczd23b0f02009-11-09 14:15:20 +0100505 struct fsg_dev *fsg = fsg_from_func(f);
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +0100506 struct usb_request *req = fsg->common->ep0req;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100507 u16 w_index = le16_to_cpu(ctrl->wIndex);
Michal Nazarewicz93bcf122009-10-28 16:57:19 +0100508 u16 w_value = le16_to_cpu(ctrl->wValue);
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100509 u16 w_length = le16_to_cpu(ctrl->wLength);
510
Michal Nazarewiczb894f602010-06-25 16:29:28 +0200511 if (!fsg_is_set(fsg->common))
Michal Nazarewicz93bcf122009-10-28 16:57:19 +0100512 return -EOPNOTSUPP;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100513
Roger Quadros73ee4da2011-04-05 18:36:38 +0300514 ++fsg->common->ep0_req_tag; /* Record arrival of a new request */
515 req->context = NULL;
516 req->length = 0;
517 dump_msg(fsg, "ep0-setup", (u8 *) ctrl, sizeof(*ctrl));
518
Michal Nazarewicz93bcf122009-10-28 16:57:19 +0100519 switch (ctrl->bRequest) {
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100520
Sebastian Andrzej Siewior775dafd2012-02-25 18:28:11 +0100521 case US_BULK_RESET_REQUEST:
Michal Nazarewicz93bcf122009-10-28 16:57:19 +0100522 if (ctrl->bRequestType !=
523 (USB_DIR_OUT | USB_TYPE_CLASS | USB_RECIP_INTERFACE))
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100524 break;
Paul Zimmermance7b6122011-10-26 12:07:54 -0700525 if (w_index != fsg->interface_number || w_value != 0 ||
526 w_length != 0)
Michal Nazarewicz93bcf122009-10-28 16:57:19 +0100527 return -EDOM;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100528
Michal Nazarewiczb73af612010-10-28 17:31:23 +0200529 /*
530 * Raise an exception to stop the current operation
531 * and reinitialize our state.
532 */
Michal Nazarewicz93bcf122009-10-28 16:57:19 +0100533 DBG(fsg, "bulk reset request\n");
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +0100534 raise_exception(fsg->common, FSG_STATE_RESET);
Pratyush Anand655403c2013-11-04 22:13:54 +0530535 return USB_GADGET_DELAYED_STATUS;
Michal Nazarewicz93bcf122009-10-28 16:57:19 +0100536
Sebastian Andrzej Siewior775dafd2012-02-25 18:28:11 +0100537 case US_BULK_GET_MAX_LUN:
Michal Nazarewicz93bcf122009-10-28 16:57:19 +0100538 if (ctrl->bRequestType !=
539 (USB_DIR_IN | USB_TYPE_CLASS | USB_RECIP_INTERFACE))
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100540 break;
Paul Zimmermandb332bc2011-10-13 17:46:36 -0700541 if (w_index != fsg->interface_number || w_value != 0 ||
542 w_length != 1)
Michal Nazarewicz93bcf122009-10-28 16:57:19 +0100543 return -EDOM;
544 VDBG(fsg, "get max LUN\n");
Krzysztof Opasiakdd02ea52015-07-31 13:46:07 +0200545 *(u8 *)req->buf = _fsg_common_get_max_lun(fsg->common);
Michal Nazarewiczb00ce112010-01-27 11:14:28 +0100546
547 /* Respond with data/status */
Michal Nazarewiczd7e18a92010-02-03 11:37:17 +0100548 req->length = min((u16)1, w_length);
Michal Nazarewiczb00ce112010-01-27 11:14:28 +0100549 return ep0_queue(fsg->common);
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100550 }
551
Michal Nazarewicz93bcf122009-10-28 16:57:19 +0100552 VDBG(fsg,
Michal Nazarewiczb73af612010-10-28 17:31:23 +0200553 "unknown class-specific control req %02x.%02x v%04x i%04x l%u\n",
Michal Nazarewicz93bcf122009-10-28 16:57:19 +0100554 ctrl->bRequestType, ctrl->bRequest,
555 le16_to_cpu(ctrl->wValue), w_index, w_length);
556 return -EOPNOTSUPP;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100557}
558
559
560/*-------------------------------------------------------------------------*/
561
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100562/* All the following routines run in process context */
563
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100564/* Use this for bulk or interrupt transfers, not ep0 */
565static void start_transfer(struct fsg_dev *fsg, struct usb_ep *ep,
Michal Nazarewiczb73af612010-10-28 17:31:23 +0200566 struct usb_request *req, int *pbusy,
567 enum fsg_buffer_state *state)
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100568{
569 int rc;
570
571 if (ep == fsg->bulk_in)
572 dump_msg(fsg, "bulk-in", req->buf, req->length);
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100573
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +0100574 spin_lock_irq(&fsg->common->lock);
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100575 *pbusy = 1;
576 *state = BUF_STATE_BUSY;
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +0100577 spin_unlock_irq(&fsg->common->lock);
Michal Nazarewicz4953ef62014-08-27 22:58:48 +0200578
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100579 rc = usb_ep_queue(ep, req, GFP_KERNEL);
Michal Nazarewicz4953ef62014-08-27 22:58:48 +0200580 if (rc == 0)
581 return; /* All good, we're done */
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100582
Michal Nazarewicz4953ef62014-08-27 22:58:48 +0200583 *pbusy = 0;
584 *state = BUF_STATE_EMPTY;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100585
Michal Nazarewicz4953ef62014-08-27 22:58:48 +0200586 /* We can't do much more than wait for a reset */
587
588 /*
589 * Note: currently the net2280 driver fails zero-length
590 * submissions if DMA is enabled.
591 */
592 if (rc != -ESHUTDOWN && !(rc == -EOPNOTSUPP && req->length == 0))
593 WARNING(fsg, "error in submission: %s --> %d\n", ep->name, rc);
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100594}
595
Michal Nazarewiczfe52f792010-10-28 17:31:21 +0200596static bool start_in_transfer(struct fsg_common *common, struct fsg_buffhd *bh)
597{
598 if (!fsg_is_set(common))
599 return false;
600 start_transfer(common->fsg, common->fsg->bulk_in,
601 bh->inreq, &bh->inreq_busy, &bh->state);
602 return true;
603}
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100604
Michal Nazarewiczfe52f792010-10-28 17:31:21 +0200605static bool start_out_transfer(struct fsg_common *common, struct fsg_buffhd *bh)
606{
607 if (!fsg_is_set(common))
608 return false;
609 start_transfer(common->fsg, common->fsg->bulk_out,
610 bh->outreq, &bh->outreq_busy, &bh->state);
611 return true;
612}
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +0100613
George Cherian2cf93be2013-11-08 10:50:52 +0530614static int sleep_thread(struct fsg_common *common, bool can_freeze)
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100615{
616 int rc = 0;
617
618 /* Wait until a signal arrives or we are woken up */
619 for (;;) {
George Cherian2cf93be2013-11-08 10:50:52 +0530620 if (can_freeze)
621 try_to_freeze();
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100622 set_current_state(TASK_INTERRUPTIBLE);
623 if (signal_pending(current)) {
624 rc = -EINTR;
625 break;
626 }
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +0100627 if (common->thread_wakeup_needed)
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100628 break;
629 schedule();
630 }
631 __set_current_state(TASK_RUNNING);
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +0100632 common->thread_wakeup_needed = 0;
UCHINO Satoshid68c2772013-05-23 11:10:11 +0900633 smp_rmb(); /* ensure the latest bh->state is visible */
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100634 return rc;
635}
636
637
638/*-------------------------------------------------------------------------*/
639
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +0100640static int do_read(struct fsg_common *common)
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100641{
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +0100642 struct fsg_lun *curlun = common->curlun;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100643 u32 lba;
644 struct fsg_buffhd *bh;
645 int rc;
646 u32 amount_left;
647 loff_t file_offset, file_offset_tmp;
648 unsigned int amount;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100649 ssize_t nread;
650
Michal Nazarewiczb73af612010-10-28 17:31:23 +0200651 /*
652 * Get the starting Logical Block Address and check that it's
653 * not too big.
654 */
Michal Nazarewicz0a6a7172010-10-07 14:46:15 +0200655 if (common->cmnd[0] == READ_6)
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +0100656 lba = get_unaligned_be24(&common->cmnd[1]);
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100657 else {
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +0100658 lba = get_unaligned_be32(&common->cmnd[2]);
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100659
Michal Nazarewiczb73af612010-10-28 17:31:23 +0200660 /*
661 * We allow DPO (Disable Page Out = don't save data in the
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100662 * cache) and FUA (Force Unit Access = don't read from the
Michal Nazarewiczb73af612010-10-28 17:31:23 +0200663 * cache), but we don't implement them.
664 */
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +0100665 if ((common->cmnd[1] & ~0x18) != 0) {
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100666 curlun->sense_data = SS_INVALID_FIELD_IN_CDB;
667 return -EINVAL;
668 }
669 }
670 if (lba >= curlun->num_sectors) {
671 curlun->sense_data = SS_LOGICAL_BLOCK_ADDRESS_OUT_OF_RANGE;
672 return -EINVAL;
673 }
Peiyu Li3f565a32011-08-17 22:52:59 -0700674 file_offset = ((loff_t) lba) << curlun->blkbits;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100675
676 /* Carry out the file reads */
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +0100677 amount_left = common->data_size_from_cmnd;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100678 if (unlikely(amount_left == 0))
Michal Nazarewiczd26a6aa2009-11-09 14:15:23 +0100679 return -EIO; /* No default reply */
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100680
681 for (;;) {
Michal Nazarewiczb73af612010-10-28 17:31:23 +0200682 /*
683 * Figure out how much we need to read:
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100684 * Try to read the remaining amount.
685 * But don't read more than the buffer size.
686 * And don't try to read past the end of the file.
Michal Nazarewiczb73af612010-10-28 17:31:23 +0200687 */
Michal Nazarewicz93bcf122009-10-28 16:57:19 +0100688 amount = min(amount_left, FSG_BUFLEN);
Michal Nazarewiczb73af612010-10-28 17:31:23 +0200689 amount = min((loff_t)amount,
690 curlun->file_length - file_offset);
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100691
692 /* Wait for the next buffer to become available */
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +0100693 bh = common->next_buffhd_to_fill;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100694 while (bh->state != BUF_STATE_EMPTY) {
George Cherian2cf93be2013-11-08 10:50:52 +0530695 rc = sleep_thread(common, false);
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100696 if (rc)
697 return rc;
698 }
699
Michal Nazarewiczb73af612010-10-28 17:31:23 +0200700 /*
701 * If we were asked to read past the end of file,
702 * end with an empty buffer.
703 */
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100704 if (amount == 0) {
705 curlun->sense_data =
706 SS_LOGICAL_BLOCK_ADDRESS_OUT_OF_RANGE;
Peiyu Li3f565a32011-08-17 22:52:59 -0700707 curlun->sense_data_info =
708 file_offset >> curlun->blkbits;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100709 curlun->info_valid = 1;
710 bh->inreq->length = 0;
711 bh->state = BUF_STATE_FULL;
712 break;
713 }
714
715 /* Perform the read */
716 file_offset_tmp = file_offset;
717 nread = vfs_read(curlun->filp,
Michal Nazarewiczb73af612010-10-28 17:31:23 +0200718 (char __user *)bh->buf,
719 amount, &file_offset_tmp);
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100720 VLDBG(curlun, "file read %u @ %llu -> %d\n", amount,
Michal Nazarewiczb73af612010-10-28 17:31:23 +0200721 (unsigned long long)file_offset, (int)nread);
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100722 if (signal_pending(current))
723 return -EINTR;
724
725 if (nread < 0) {
Michal Nazarewiczb73af612010-10-28 17:31:23 +0200726 LDBG(curlun, "error in file read: %d\n", (int)nread);
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100727 nread = 0;
728 } else if (nread < amount) {
729 LDBG(curlun, "partial file read: %d/%u\n",
Michal Nazarewiczb73af612010-10-28 17:31:23 +0200730 (int)nread, amount);
Peiyu Li3f565a32011-08-17 22:52:59 -0700731 nread = round_down(nread, curlun->blksize);
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100732 }
733 file_offset += nread;
734 amount_left -= nread;
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +0100735 common->residue -= nread;
Alan Stern04eee252011-08-18 14:29:00 -0400736
737 /*
738 * Except at the end of the transfer, nread will be
739 * equal to the buffer size, which is divisible by the
740 * bulk-in maxpacket size.
741 */
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100742 bh->inreq->length = nread;
743 bh->state = BUF_STATE_FULL;
744
745 /* If an error occurred, report it and its position */
746 if (nread < amount) {
747 curlun->sense_data = SS_UNRECOVERED_READ_ERROR;
Peiyu Li3f565a32011-08-17 22:52:59 -0700748 curlun->sense_data_info =
749 file_offset >> curlun->blkbits;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100750 curlun->info_valid = 1;
751 break;
752 }
753
754 if (amount_left == 0)
Michal Nazarewiczd26a6aa2009-11-09 14:15:23 +0100755 break; /* No more left to read */
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100756
757 /* Send this buffer and go read some more */
758 bh->inreq->zero = 0;
Michal Nazarewiczfe52f792010-10-28 17:31:21 +0200759 if (!start_in_transfer(common, bh))
760 /* Don't know what to do if common->fsg is NULL */
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +0100761 return -EIO;
762 common->next_buffhd_to_fill = bh->next;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100763 }
764
Michal Nazarewiczd26a6aa2009-11-09 14:15:23 +0100765 return -EIO; /* No default reply */
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100766}
767
768
769/*-------------------------------------------------------------------------*/
770
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +0100771static int do_write(struct fsg_common *common)
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100772{
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +0100773 struct fsg_lun *curlun = common->curlun;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100774 u32 lba;
775 struct fsg_buffhd *bh;
776 int get_some_more;
777 u32 amount_left_to_req, amount_left_to_write;
778 loff_t usb_offset, file_offset, file_offset_tmp;
779 unsigned int amount;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100780 ssize_t nwritten;
781 int rc;
782
783 if (curlun->ro) {
784 curlun->sense_data = SS_WRITE_PROTECTED;
785 return -EINVAL;
786 }
787 spin_lock(&curlun->filp->f_lock);
Michal Nazarewiczd26a6aa2009-11-09 14:15:23 +0100788 curlun->filp->f_flags &= ~O_SYNC; /* Default is not to wait */
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100789 spin_unlock(&curlun->filp->f_lock);
790
Michal Nazarewiczb73af612010-10-28 17:31:23 +0200791 /*
792 * Get the starting Logical Block Address and check that it's
793 * not too big
794 */
Michal Nazarewicz0a6a7172010-10-07 14:46:15 +0200795 if (common->cmnd[0] == WRITE_6)
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +0100796 lba = get_unaligned_be24(&common->cmnd[1]);
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100797 else {
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +0100798 lba = get_unaligned_be32(&common->cmnd[2]);
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100799
Michal Nazarewiczb73af612010-10-28 17:31:23 +0200800 /*
801 * We allow DPO (Disable Page Out = don't save data in the
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100802 * cache) and FUA (Force Unit Access = write directly to the
803 * medium). We don't implement DPO; we implement FUA by
Michal Nazarewiczb73af612010-10-28 17:31:23 +0200804 * performing synchronous output.
805 */
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +0100806 if (common->cmnd[1] & ~0x18) {
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100807 curlun->sense_data = SS_INVALID_FIELD_IN_CDB;
808 return -EINVAL;
809 }
Michal Nazarewicz9cfe7452010-08-12 17:43:51 +0200810 if (!curlun->nofua && (common->cmnd[1] & 0x08)) { /* FUA */
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100811 spin_lock(&curlun->filp->f_lock);
812 curlun->filp->f_flags |= O_SYNC;
813 spin_unlock(&curlun->filp->f_lock);
814 }
815 }
816 if (lba >= curlun->num_sectors) {
817 curlun->sense_data = SS_LOGICAL_BLOCK_ADDRESS_OUT_OF_RANGE;
818 return -EINVAL;
819 }
820
821 /* Carry out the file writes */
822 get_some_more = 1;
Peiyu Li3f565a32011-08-17 22:52:59 -0700823 file_offset = usb_offset = ((loff_t) lba) << curlun->blkbits;
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +0100824 amount_left_to_req = common->data_size_from_cmnd;
825 amount_left_to_write = common->data_size_from_cmnd;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100826
827 while (amount_left_to_write > 0) {
828
829 /* Queue a request for more data from the host */
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +0100830 bh = common->next_buffhd_to_fill;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100831 if (bh->state == BUF_STATE_EMPTY && get_some_more) {
832
Michal Nazarewiczb73af612010-10-28 17:31:23 +0200833 /*
834 * Figure out how much we want to get:
Alan Stern04eee252011-08-18 14:29:00 -0400835 * Try to get the remaining amount,
836 * but not more than the buffer size.
Michal Nazarewiczb73af612010-10-28 17:31:23 +0200837 */
Michal Nazarewicz93bcf122009-10-28 16:57:19 +0100838 amount = min(amount_left_to_req, FSG_BUFLEN);
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100839
Alan Stern04eee252011-08-18 14:29:00 -0400840 /* Beyond the end of the backing file? */
841 if (usb_offset >= curlun->file_length) {
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100842 get_some_more = 0;
843 curlun->sense_data =
844 SS_LOGICAL_BLOCK_ADDRESS_OUT_OF_RANGE;
Peiyu Li3f565a32011-08-17 22:52:59 -0700845 curlun->sense_data_info =
846 usb_offset >> curlun->blkbits;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100847 curlun->info_valid = 1;
848 continue;
849 }
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100850
851 /* Get the next buffer */
852 usb_offset += amount;
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +0100853 common->usb_amount_left -= amount;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100854 amount_left_to_req -= amount;
855 if (amount_left_to_req == 0)
856 get_some_more = 0;
857
Michal Nazarewiczb73af612010-10-28 17:31:23 +0200858 /*
Alan Stern04eee252011-08-18 14:29:00 -0400859 * Except at the end of the transfer, amount will be
860 * equal to the buffer size, which is divisible by
861 * the bulk-out maxpacket size.
Michal Nazarewiczb73af612010-10-28 17:31:23 +0200862 */
Paul Zimmermanfe696762011-09-30 15:26:06 -0700863 set_bulk_out_req_length(common, bh, amount);
Michal Nazarewiczfe52f792010-10-28 17:31:21 +0200864 if (!start_out_transfer(common, bh))
Michal Nazarewiczb73af612010-10-28 17:31:23 +0200865 /* Dunno what to do if common->fsg is NULL */
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +0100866 return -EIO;
867 common->next_buffhd_to_fill = bh->next;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100868 continue;
869 }
870
871 /* Write the received data to the backing file */
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +0100872 bh = common->next_buffhd_to_drain;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100873 if (bh->state == BUF_STATE_EMPTY && !get_some_more)
Michal Nazarewiczd26a6aa2009-11-09 14:15:23 +0100874 break; /* We stopped early */
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100875 if (bh->state == BUF_STATE_FULL) {
876 smp_rmb();
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +0100877 common->next_buffhd_to_drain = bh->next;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100878 bh->state = BUF_STATE_EMPTY;
879
880 /* Did something go wrong with the transfer? */
881 if (bh->outreq->status != 0) {
882 curlun->sense_data = SS_COMMUNICATION_FAILURE;
Peiyu Li3f565a32011-08-17 22:52:59 -0700883 curlun->sense_data_info =
884 file_offset >> curlun->blkbits;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100885 curlun->info_valid = 1;
886 break;
887 }
888
889 amount = bh->outreq->actual;
890 if (curlun->file_length - file_offset < amount) {
891 LERROR(curlun,
Michal Nazarewiczb73af612010-10-28 17:31:23 +0200892 "write %u @ %llu beyond end %llu\n",
893 amount, (unsigned long long)file_offset,
894 (unsigned long long)curlun->file_length);
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100895 amount = curlun->file_length - file_offset;
896 }
897
Paul Zimmermanfe696762011-09-30 15:26:06 -0700898 /* Don't accept excess data. The spec doesn't say
899 * what to do in this case. We'll ignore the error.
900 */
901 amount = min(amount, bh->bulk_out_intended_length);
902
Alan Stern04eee252011-08-18 14:29:00 -0400903 /* Don't write a partial block */
904 amount = round_down(amount, curlun->blksize);
905 if (amount == 0)
906 goto empty_write;
907
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100908 /* Perform the write */
909 file_offset_tmp = file_offset;
910 nwritten = vfs_write(curlun->filp,
Michal Nazarewiczb73af612010-10-28 17:31:23 +0200911 (char __user *)bh->buf,
912 amount, &file_offset_tmp);
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100913 VLDBG(curlun, "file write %u @ %llu -> %d\n", amount,
Michal Nazarewiczb73af612010-10-28 17:31:23 +0200914 (unsigned long long)file_offset, (int)nwritten);
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100915 if (signal_pending(current))
Michal Nazarewiczd26a6aa2009-11-09 14:15:23 +0100916 return -EINTR; /* Interrupted! */
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100917
918 if (nwritten < 0) {
919 LDBG(curlun, "error in file write: %d\n",
Michal Nazarewiczb73af612010-10-28 17:31:23 +0200920 (int)nwritten);
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100921 nwritten = 0;
922 } else if (nwritten < amount) {
923 LDBG(curlun, "partial file write: %d/%u\n",
Michal Nazarewiczb73af612010-10-28 17:31:23 +0200924 (int)nwritten, amount);
Peiyu Li3f565a32011-08-17 22:52:59 -0700925 nwritten = round_down(nwritten, curlun->blksize);
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100926 }
927 file_offset += nwritten;
928 amount_left_to_write -= nwritten;
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +0100929 common->residue -= nwritten;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100930
931 /* If an error occurred, report it and its position */
932 if (nwritten < amount) {
933 curlun->sense_data = SS_WRITE_ERROR;
Peiyu Li3f565a32011-08-17 22:52:59 -0700934 curlun->sense_data_info =
935 file_offset >> curlun->blkbits;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100936 curlun->info_valid = 1;
937 break;
938 }
939
Alan Stern04eee252011-08-18 14:29:00 -0400940 empty_write:
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100941 /* Did the host decide to stop early? */
Paul Zimmermanfe696762011-09-30 15:26:06 -0700942 if (bh->outreq->actual < bh->bulk_out_intended_length) {
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +0100943 common->short_packet_received = 1;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100944 break;
945 }
946 continue;
947 }
948
949 /* Wait for something to happen */
George Cherian2cf93be2013-11-08 10:50:52 +0530950 rc = sleep_thread(common, false);
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100951 if (rc)
952 return rc;
953 }
954
Michal Nazarewiczd26a6aa2009-11-09 14:15:23 +0100955 return -EIO; /* No default reply */
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100956}
957
958
959/*-------------------------------------------------------------------------*/
960
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +0100961static int do_synchronize_cache(struct fsg_common *common)
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100962{
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +0100963 struct fsg_lun *curlun = common->curlun;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100964 int rc;
965
966 /* We ignore the requested LBA and write out all file's
967 * dirty data buffers. */
968 rc = fsg_lun_fsync_sub(curlun);
969 if (rc)
970 curlun->sense_data = SS_WRITE_ERROR;
971 return 0;
972}
973
974
975/*-------------------------------------------------------------------------*/
976
977static void invalidate_sub(struct fsg_lun *curlun)
978{
979 struct file *filp = curlun->filp;
Al Viro496ad9a2013-01-23 17:07:38 -0500980 struct inode *inode = file_inode(filp);
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100981 unsigned long rc;
982
983 rc = invalidate_mapping_pages(inode->i_mapping, 0, -1);
Christoph Hellwig2ecdc822010-01-26 17:27:20 +0100984 VLDBG(curlun, "invalidate_mapping_pages -> %ld\n", rc);
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100985}
986
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +0100987static int do_verify(struct fsg_common *common)
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100988{
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +0100989 struct fsg_lun *curlun = common->curlun;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100990 u32 lba;
991 u32 verification_length;
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +0100992 struct fsg_buffhd *bh = common->next_buffhd_to_fill;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +0100993 loff_t file_offset, file_offset_tmp;
994 u32 amount_left;
995 unsigned int amount;
996 ssize_t nread;
997
Michal Nazarewiczb73af612010-10-28 17:31:23 +0200998 /*
999 * Get the starting Logical Block Address and check that it's
1000 * not too big.
1001 */
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001002 lba = get_unaligned_be32(&common->cmnd[2]);
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001003 if (lba >= curlun->num_sectors) {
1004 curlun->sense_data = SS_LOGICAL_BLOCK_ADDRESS_OUT_OF_RANGE;
1005 return -EINVAL;
1006 }
1007
Michal Nazarewiczb73af612010-10-28 17:31:23 +02001008 /*
1009 * We allow DPO (Disable Page Out = don't save data in the
1010 * cache) but we don't implement it.
1011 */
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001012 if (common->cmnd[1] & ~0x10) {
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001013 curlun->sense_data = SS_INVALID_FIELD_IN_CDB;
1014 return -EINVAL;
1015 }
1016
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001017 verification_length = get_unaligned_be16(&common->cmnd[7]);
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001018 if (unlikely(verification_length == 0))
Michal Nazarewiczd26a6aa2009-11-09 14:15:23 +01001019 return -EIO; /* No default reply */
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001020
1021 /* Prepare to carry out the file verify */
Peiyu Li3f565a32011-08-17 22:52:59 -07001022 amount_left = verification_length << curlun->blkbits;
1023 file_offset = ((loff_t) lba) << curlun->blkbits;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001024
1025 /* Write out all the dirty buffers before invalidating them */
1026 fsg_lun_fsync_sub(curlun);
1027 if (signal_pending(current))
1028 return -EINTR;
1029
1030 invalidate_sub(curlun);
1031 if (signal_pending(current))
1032 return -EINTR;
1033
1034 /* Just try to read the requested blocks */
1035 while (amount_left > 0) {
Michal Nazarewiczb73af612010-10-28 17:31:23 +02001036 /*
1037 * Figure out how much we need to read:
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001038 * Try to read the remaining amount, but not more than
1039 * the buffer size.
1040 * And don't try to read past the end of the file.
Michal Nazarewiczb73af612010-10-28 17:31:23 +02001041 */
Michal Nazarewicz93bcf122009-10-28 16:57:19 +01001042 amount = min(amount_left, FSG_BUFLEN);
Michal Nazarewiczb73af612010-10-28 17:31:23 +02001043 amount = min((loff_t)amount,
1044 curlun->file_length - file_offset);
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001045 if (amount == 0) {
1046 curlun->sense_data =
1047 SS_LOGICAL_BLOCK_ADDRESS_OUT_OF_RANGE;
Peiyu Li3f565a32011-08-17 22:52:59 -07001048 curlun->sense_data_info =
1049 file_offset >> curlun->blkbits;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001050 curlun->info_valid = 1;
1051 break;
1052 }
1053
1054 /* Perform the read */
1055 file_offset_tmp = file_offset;
1056 nread = vfs_read(curlun->filp,
1057 (char __user *) bh->buf,
1058 amount, &file_offset_tmp);
1059 VLDBG(curlun, "file read %u @ %llu -> %d\n", amount,
1060 (unsigned long long) file_offset,
1061 (int) nread);
1062 if (signal_pending(current))
1063 return -EINTR;
1064
1065 if (nread < 0) {
Michal Nazarewiczb73af612010-10-28 17:31:23 +02001066 LDBG(curlun, "error in file verify: %d\n", (int)nread);
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001067 nread = 0;
1068 } else if (nread < amount) {
1069 LDBG(curlun, "partial file verify: %d/%u\n",
Michal Nazarewiczb73af612010-10-28 17:31:23 +02001070 (int)nread, amount);
Peiyu Li3f565a32011-08-17 22:52:59 -07001071 nread = round_down(nread, curlun->blksize);
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001072 }
1073 if (nread == 0) {
1074 curlun->sense_data = SS_UNRECOVERED_READ_ERROR;
Peiyu Li3f565a32011-08-17 22:52:59 -07001075 curlun->sense_data_info =
1076 file_offset >> curlun->blkbits;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001077 curlun->info_valid = 1;
1078 break;
1079 }
1080 file_offset += nread;
1081 amount_left -= nread;
1082 }
1083 return 0;
1084}
1085
1086
1087/*-------------------------------------------------------------------------*/
1088
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001089static int do_inquiry(struct fsg_common *common, struct fsg_buffhd *bh)
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001090{
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001091 struct fsg_lun *curlun = common->curlun;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001092 u8 *buf = (u8 *) bh->buf;
1093
Michal Nazarewicz481e4922009-11-09 14:15:21 +01001094 if (!curlun) { /* Unsupported LUNs are okay */
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001095 common->bad_lun_okay = 1;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001096 memset(buf, 0, 36);
Tal Shorerfddc26f2015-03-06 21:53:32 +02001097 buf[0] = TYPE_NO_LUN; /* Unsupported, no device-type */
Michal Nazarewiczd26a6aa2009-11-09 14:15:23 +01001098 buf[4] = 31; /* Additional length */
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001099 return 36;
1100 }
1101
Michal Nazarewicz0a6a7172010-10-07 14:46:15 +02001102 buf[0] = curlun->cdrom ? TYPE_ROM : TYPE_DISK;
Michal Nazarewicz481e4922009-11-09 14:15:21 +01001103 buf[1] = curlun->removable ? 0x80 : 0;
Michal Nazarewiczd26a6aa2009-11-09 14:15:23 +01001104 buf[2] = 2; /* ANSI SCSI level 2 */
1105 buf[3] = 2; /* SCSI-2 INQUIRY data format */
1106 buf[4] = 31; /* Additional length */
1107 buf[5] = 0; /* No special options */
Michal Nazarewicz481e4922009-11-09 14:15:21 +01001108 buf[6] = 0;
1109 buf[7] = 0;
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001110 memcpy(buf + 8, common->inquiry_string, sizeof common->inquiry_string);
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001111 return 36;
1112}
1113
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001114static int do_request_sense(struct fsg_common *common, struct fsg_buffhd *bh)
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001115{
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001116 struct fsg_lun *curlun = common->curlun;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001117 u8 *buf = (u8 *) bh->buf;
1118 u32 sd, sdinfo;
1119 int valid;
1120
1121 /*
1122 * From the SCSI-2 spec., section 7.9 (Unit attention condition):
1123 *
1124 * If a REQUEST SENSE command is received from an initiator
1125 * with a pending unit attention condition (before the target
1126 * generates the contingent allegiance condition), then the
1127 * target shall either:
1128 * a) report any pending sense data and preserve the unit
1129 * attention condition on the logical unit, or,
1130 * b) report the unit attention condition, may discard any
1131 * pending sense data, and clear the unit attention
1132 * condition on the logical unit for that initiator.
1133 *
1134 * FSG normally uses option a); enable this code to use option b).
1135 */
1136#if 0
1137 if (curlun && curlun->unit_attention_data != SS_NO_SENSE) {
1138 curlun->sense_data = curlun->unit_attention_data;
1139 curlun->unit_attention_data = SS_NO_SENSE;
1140 }
1141#endif
1142
Michal Nazarewiczd26a6aa2009-11-09 14:15:23 +01001143 if (!curlun) { /* Unsupported LUNs are okay */
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001144 common->bad_lun_okay = 1;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001145 sd = SS_LOGICAL_UNIT_NOT_SUPPORTED;
1146 sdinfo = 0;
1147 valid = 0;
1148 } else {
1149 sd = curlun->sense_data;
1150 sdinfo = curlun->sense_data_info;
1151 valid = curlun->info_valid << 7;
1152 curlun->sense_data = SS_NO_SENSE;
1153 curlun->sense_data_info = 0;
1154 curlun->info_valid = 0;
1155 }
1156
1157 memset(buf, 0, 18);
Michal Nazarewiczd26a6aa2009-11-09 14:15:23 +01001158 buf[0] = valid | 0x70; /* Valid, current error */
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001159 buf[2] = SK(sd);
1160 put_unaligned_be32(sdinfo, &buf[3]); /* Sense information */
Michal Nazarewiczd26a6aa2009-11-09 14:15:23 +01001161 buf[7] = 18 - 8; /* Additional sense length */
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001162 buf[12] = ASC(sd);
1163 buf[13] = ASCQ(sd);
1164 return 18;
1165}
1166
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001167static int do_read_capacity(struct fsg_common *common, struct fsg_buffhd *bh)
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001168{
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001169 struct fsg_lun *curlun = common->curlun;
1170 u32 lba = get_unaligned_be32(&common->cmnd[2]);
1171 int pmi = common->cmnd[8];
Michal Nazarewiczb73af612010-10-28 17:31:23 +02001172 u8 *buf = (u8 *)bh->buf;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001173
1174 /* Check the PMI and LBA fields */
1175 if (pmi > 1 || (pmi == 0 && lba != 0)) {
1176 curlun->sense_data = SS_INVALID_FIELD_IN_CDB;
1177 return -EINVAL;
1178 }
1179
1180 put_unaligned_be32(curlun->num_sectors - 1, &buf[0]);
1181 /* Max logical block */
Peiyu Li3f565a32011-08-17 22:52:59 -07001182 put_unaligned_be32(curlun->blksize, &buf[4]);/* Block length */
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001183 return 8;
1184}
1185
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001186static int do_read_header(struct fsg_common *common, struct fsg_buffhd *bh)
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001187{
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001188 struct fsg_lun *curlun = common->curlun;
1189 int msf = common->cmnd[1] & 0x02;
1190 u32 lba = get_unaligned_be32(&common->cmnd[2]);
Michal Nazarewiczb73af612010-10-28 17:31:23 +02001191 u8 *buf = (u8 *)bh->buf;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001192
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001193 if (common->cmnd[1] & ~0x02) { /* Mask away MSF */
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001194 curlun->sense_data = SS_INVALID_FIELD_IN_CDB;
1195 return -EINVAL;
1196 }
1197 if (lba >= curlun->num_sectors) {
1198 curlun->sense_data = SS_LOGICAL_BLOCK_ADDRESS_OUT_OF_RANGE;
1199 return -EINVAL;
1200 }
1201
1202 memset(buf, 0, 8);
1203 buf[0] = 0x01; /* 2048 bytes of user data, rest is EC */
1204 store_cdrom_address(&buf[4], msf, lba);
1205 return 8;
1206}
1207
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001208static int do_read_toc(struct fsg_common *common, struct fsg_buffhd *bh)
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001209{
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001210 struct fsg_lun *curlun = common->curlun;
1211 int msf = common->cmnd[1] & 0x02;
1212 int start_track = common->cmnd[6];
Michal Nazarewiczb73af612010-10-28 17:31:23 +02001213 u8 *buf = (u8 *)bh->buf;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001214
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001215 if ((common->cmnd[1] & ~0x02) != 0 || /* Mask away MSF */
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001216 start_track > 1) {
1217 curlun->sense_data = SS_INVALID_FIELD_IN_CDB;
1218 return -EINVAL;
1219 }
1220
1221 memset(buf, 0, 20);
1222 buf[1] = (20-2); /* TOC data length */
1223 buf[2] = 1; /* First track number */
1224 buf[3] = 1; /* Last track number */
1225 buf[5] = 0x16; /* Data track, copying allowed */
1226 buf[6] = 0x01; /* Only track is number 1 */
1227 store_cdrom_address(&buf[8], msf, 0);
1228
1229 buf[13] = 0x16; /* Lead-out track is data */
1230 buf[14] = 0xAA; /* Lead-out track number */
1231 store_cdrom_address(&buf[16], msf, curlun->num_sectors);
1232 return 20;
1233}
1234
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001235static int do_mode_sense(struct fsg_common *common, struct fsg_buffhd *bh)
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001236{
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001237 struct fsg_lun *curlun = common->curlun;
1238 int mscmnd = common->cmnd[0];
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001239 u8 *buf = (u8 *) bh->buf;
1240 u8 *buf0 = buf;
1241 int pc, page_code;
1242 int changeable_values, all_pages;
1243 int valid_page = 0;
1244 int len, limit;
1245
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001246 if ((common->cmnd[1] & ~0x08) != 0) { /* Mask away DBD */
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001247 curlun->sense_data = SS_INVALID_FIELD_IN_CDB;
1248 return -EINVAL;
1249 }
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001250 pc = common->cmnd[2] >> 6;
1251 page_code = common->cmnd[2] & 0x3f;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001252 if (pc == 3) {
1253 curlun->sense_data = SS_SAVING_PARAMETERS_NOT_SUPPORTED;
1254 return -EINVAL;
1255 }
1256 changeable_values = (pc == 1);
1257 all_pages = (page_code == 0x3f);
1258
Michal Nazarewiczb73af612010-10-28 17:31:23 +02001259 /*
1260 * Write the mode parameter header. Fixed values are: default
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001261 * medium type, no cache control (DPOFUA), and no block descriptors.
1262 * The only variable value is the WriteProtect bit. We will fill in
Michal Nazarewiczb73af612010-10-28 17:31:23 +02001263 * the mode data length later.
1264 */
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001265 memset(buf, 0, 8);
Michal Nazarewicz0a6a7172010-10-07 14:46:15 +02001266 if (mscmnd == MODE_SENSE) {
Michal Nazarewiczd26a6aa2009-11-09 14:15:23 +01001267 buf[2] = (curlun->ro ? 0x80 : 0x00); /* WP, DPOFUA */
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001268 buf += 4;
1269 limit = 255;
Michal Nazarewicz0a6a7172010-10-07 14:46:15 +02001270 } else { /* MODE_SENSE_10 */
Michal Nazarewiczd26a6aa2009-11-09 14:15:23 +01001271 buf[3] = (curlun->ro ? 0x80 : 0x00); /* WP, DPOFUA */
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001272 buf += 8;
Michal Nazarewiczd26a6aa2009-11-09 14:15:23 +01001273 limit = 65535; /* Should really be FSG_BUFLEN */
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001274 }
1275
1276 /* No block descriptors */
1277
Michal Nazarewiczb73af612010-10-28 17:31:23 +02001278 /*
1279 * The mode pages, in numerical order. The only page we support
1280 * is the Caching page.
1281 */
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001282 if (page_code == 0x08 || all_pages) {
1283 valid_page = 1;
Michal Nazarewiczd26a6aa2009-11-09 14:15:23 +01001284 buf[0] = 0x08; /* Page code */
1285 buf[1] = 10; /* Page length */
1286 memset(buf+2, 0, 10); /* None of the fields are changeable */
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001287
1288 if (!changeable_values) {
Michal Nazarewiczd26a6aa2009-11-09 14:15:23 +01001289 buf[2] = 0x04; /* Write cache enable, */
1290 /* Read cache not disabled */
1291 /* No cache retention priorities */
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001292 put_unaligned_be16(0xffff, &buf[4]);
1293 /* Don't disable prefetch */
1294 /* Minimum prefetch = 0 */
1295 put_unaligned_be16(0xffff, &buf[8]);
1296 /* Maximum prefetch */
1297 put_unaligned_be16(0xffff, &buf[10]);
1298 /* Maximum prefetch ceiling */
1299 }
1300 buf += 12;
1301 }
1302
Michal Nazarewiczb73af612010-10-28 17:31:23 +02001303 /*
1304 * Check that a valid page was requested and the mode data length
1305 * isn't too long.
1306 */
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001307 len = buf - buf0;
1308 if (!valid_page || len > limit) {
1309 curlun->sense_data = SS_INVALID_FIELD_IN_CDB;
1310 return -EINVAL;
1311 }
1312
1313 /* Store the mode data length */
Michal Nazarewicz0a6a7172010-10-07 14:46:15 +02001314 if (mscmnd == MODE_SENSE)
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001315 buf0[0] = len - 1;
1316 else
1317 put_unaligned_be16(len - 2, buf0);
1318 return len;
1319}
1320
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001321static int do_start_stop(struct fsg_common *common)
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001322{
Fabien Chouteau31436a12010-04-26 12:34:54 +02001323 struct fsg_lun *curlun = common->curlun;
1324 int loej, start;
1325
1326 if (!curlun) {
Michal Nazarewicz481e4922009-11-09 14:15:21 +01001327 return -EINVAL;
Fabien Chouteau31436a12010-04-26 12:34:54 +02001328 } else if (!curlun->removable) {
1329 curlun->sense_data = SS_INVALID_COMMAND;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001330 return -EINVAL;
Michal Nazarewicz8876f5e2010-06-21 13:57:09 +02001331 } else if ((common->cmnd[1] & ~0x01) != 0 || /* Mask away Immed */
1332 (common->cmnd[4] & ~0x03) != 0) { /* Mask LoEj, Start */
Fabien Chouteau31436a12010-04-26 12:34:54 +02001333 curlun->sense_data = SS_INVALID_FIELD_IN_CDB;
1334 return -EINVAL;
1335 }
1336
Michal Nazarewicz8876f5e2010-06-21 13:57:09 +02001337 loej = common->cmnd[4] & 0x02;
1338 start = common->cmnd[4] & 0x01;
Fabien Chouteau31436a12010-04-26 12:34:54 +02001339
Michal Nazarewiczb73af612010-10-28 17:31:23 +02001340 /*
1341 * Our emulation doesn't support mounting; the medium is
1342 * available for use as soon as it is loaded.
1343 */
Michal Nazarewicz8876f5e2010-06-21 13:57:09 +02001344 if (start) {
Fabien Chouteau31436a12010-04-26 12:34:54 +02001345 if (!fsg_lun_is_open(curlun)) {
1346 curlun->sense_data = SS_MEDIUM_NOT_PRESENT;
1347 return -EINVAL;
1348 }
Michal Nazarewicz8876f5e2010-06-21 13:57:09 +02001349 return 0;
Fabien Chouteau31436a12010-04-26 12:34:54 +02001350 }
Michal Nazarewicz8876f5e2010-06-21 13:57:09 +02001351
1352 /* Are we allowed to unload the media? */
1353 if (curlun->prevent_medium_removal) {
1354 LDBG(curlun, "unload attempt prevented\n");
1355 curlun->sense_data = SS_MEDIUM_REMOVAL_PREVENTED;
1356 return -EINVAL;
1357 }
1358
1359 if (!loej)
1360 return 0;
1361
Michal Nazarewicz8876f5e2010-06-21 13:57:09 +02001362 up_read(&common->filesem);
1363 down_write(&common->filesem);
1364 fsg_lun_close(curlun);
1365 up_write(&common->filesem);
1366 down_read(&common->filesem);
1367
Andrzej Pietrasiewicz2b508002012-11-29 15:06:58 +01001368 return 0;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001369}
1370
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001371static int do_prevent_allow(struct fsg_common *common)
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001372{
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001373 struct fsg_lun *curlun = common->curlun;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001374 int prevent;
1375
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001376 if (!common->curlun) {
Michal Nazarewicz481e4922009-11-09 14:15:21 +01001377 return -EINVAL;
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001378 } else if (!common->curlun->removable) {
1379 common->curlun->sense_data = SS_INVALID_COMMAND;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001380 return -EINVAL;
1381 }
1382
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001383 prevent = common->cmnd[4] & 0x01;
1384 if ((common->cmnd[4] & ~0x01) != 0) { /* Mask away Prevent */
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001385 curlun->sense_data = SS_INVALID_FIELD_IN_CDB;
1386 return -EINVAL;
1387 }
1388
1389 if (curlun->prevent_medium_removal && !prevent)
1390 fsg_lun_fsync_sub(curlun);
1391 curlun->prevent_medium_removal = prevent;
1392 return 0;
1393}
1394
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001395static int do_read_format_capacities(struct fsg_common *common,
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001396 struct fsg_buffhd *bh)
1397{
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001398 struct fsg_lun *curlun = common->curlun;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001399 u8 *buf = (u8 *) bh->buf;
1400
1401 buf[0] = buf[1] = buf[2] = 0;
Michal Nazarewiczd26a6aa2009-11-09 14:15:23 +01001402 buf[3] = 8; /* Only the Current/Maximum Capacity Descriptor */
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001403 buf += 4;
1404
1405 put_unaligned_be32(curlun->num_sectors, &buf[0]);
1406 /* Number of blocks */
Peiyu Li3f565a32011-08-17 22:52:59 -07001407 put_unaligned_be32(curlun->blksize, &buf[4]);/* Block length */
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001408 buf[4] = 0x02; /* Current capacity */
1409 return 12;
1410}
1411
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001412static int do_mode_select(struct fsg_common *common, struct fsg_buffhd *bh)
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001413{
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001414 struct fsg_lun *curlun = common->curlun;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001415
1416 /* We don't support MODE SELECT */
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001417 if (curlun)
1418 curlun->sense_data = SS_INVALID_COMMAND;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001419 return -EINVAL;
1420}
1421
1422
1423/*-------------------------------------------------------------------------*/
1424
1425static int halt_bulk_in_endpoint(struct fsg_dev *fsg)
1426{
1427 int rc;
1428
1429 rc = fsg_set_halt(fsg, fsg->bulk_in);
1430 if (rc == -EAGAIN)
1431 VDBG(fsg, "delayed bulk-in endpoint halt\n");
1432 while (rc != 0) {
1433 if (rc != -EAGAIN) {
1434 WARNING(fsg, "usb_ep_set_halt -> %d\n", rc);
1435 rc = 0;
1436 break;
1437 }
1438
1439 /* Wait for a short time and then try again */
1440 if (msleep_interruptible(100) != 0)
1441 return -EINTR;
1442 rc = usb_ep_set_halt(fsg->bulk_in);
1443 }
1444 return rc;
1445}
1446
1447static int wedge_bulk_in_endpoint(struct fsg_dev *fsg)
1448{
1449 int rc;
1450
1451 DBG(fsg, "bulk-in set wedge\n");
1452 rc = usb_ep_set_wedge(fsg->bulk_in);
1453 if (rc == -EAGAIN)
1454 VDBG(fsg, "delayed bulk-in endpoint wedge\n");
1455 while (rc != 0) {
1456 if (rc != -EAGAIN) {
1457 WARNING(fsg, "usb_ep_set_wedge -> %d\n", rc);
1458 rc = 0;
1459 break;
1460 }
1461
1462 /* Wait for a short time and then try again */
1463 if (msleep_interruptible(100) != 0)
1464 return -EINTR;
1465 rc = usb_ep_set_wedge(fsg->bulk_in);
1466 }
1467 return rc;
1468}
1469
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001470static int throw_away_data(struct fsg_common *common)
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001471{
1472 struct fsg_buffhd *bh;
1473 u32 amount;
1474 int rc;
1475
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001476 for (bh = common->next_buffhd_to_drain;
1477 bh->state != BUF_STATE_EMPTY || common->usb_amount_left > 0;
1478 bh = common->next_buffhd_to_drain) {
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001479
1480 /* Throw away the data in a filled buffer */
1481 if (bh->state == BUF_STATE_FULL) {
1482 smp_rmb();
1483 bh->state = BUF_STATE_EMPTY;
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001484 common->next_buffhd_to_drain = bh->next;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001485
1486 /* A short packet or an error ends everything */
Paul Zimmermanfe696762011-09-30 15:26:06 -07001487 if (bh->outreq->actual < bh->bulk_out_intended_length ||
Michal Nazarewiczb73af612010-10-28 17:31:23 +02001488 bh->outreq->status != 0) {
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001489 raise_exception(common,
1490 FSG_STATE_ABORT_BULK_OUT);
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001491 return -EINTR;
1492 }
1493 continue;
1494 }
1495
1496 /* Try to submit another request if we need one */
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001497 bh = common->next_buffhd_to_fill;
1498 if (bh->state == BUF_STATE_EMPTY
1499 && common->usb_amount_left > 0) {
1500 amount = min(common->usb_amount_left, FSG_BUFLEN);
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001501
Michal Nazarewiczb73af612010-10-28 17:31:23 +02001502 /*
Alan Stern04eee252011-08-18 14:29:00 -04001503 * Except at the end of the transfer, amount will be
1504 * equal to the buffer size, which is divisible by
Michal Nazarewiczb73af612010-10-28 17:31:23 +02001505 * the bulk-out maxpacket size.
1506 */
Paul Zimmermanfe696762011-09-30 15:26:06 -07001507 set_bulk_out_req_length(common, bh, amount);
Michal Nazarewiczfe52f792010-10-28 17:31:21 +02001508 if (!start_out_transfer(common, bh))
Michal Nazarewiczb73af612010-10-28 17:31:23 +02001509 /* Dunno what to do if common->fsg is NULL */
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001510 return -EIO;
1511 common->next_buffhd_to_fill = bh->next;
1512 common->usb_amount_left -= amount;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001513 continue;
1514 }
1515
1516 /* Otherwise wait for something to happen */
George Cherian2cf93be2013-11-08 10:50:52 +05301517 rc = sleep_thread(common, true);
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001518 if (rc)
1519 return rc;
1520 }
1521 return 0;
1522}
1523
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001524static int finish_reply(struct fsg_common *common)
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001525{
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001526 struct fsg_buffhd *bh = common->next_buffhd_to_fill;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001527 int rc = 0;
1528
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001529 switch (common->data_dir) {
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001530 case DATA_DIR_NONE:
Michal Nazarewiczd26a6aa2009-11-09 14:15:23 +01001531 break; /* Nothing to send */
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001532
Michal Nazarewiczb73af612010-10-28 17:31:23 +02001533 /*
1534 * If we don't know whether the host wants to read or write,
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001535 * this must be CB or CBI with an unknown command. We mustn't
1536 * try to send or receive any data. So stall both bulk pipes
Michal Nazarewiczb73af612010-10-28 17:31:23 +02001537 * if we can and wait for a reset.
1538 */
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001539 case DATA_DIR_UNKNOWN:
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001540 if (!common->can_stall) {
1541 /* Nothing */
1542 } else if (fsg_is_set(common)) {
1543 fsg_set_halt(common->fsg, common->fsg->bulk_out);
1544 rc = halt_bulk_in_endpoint(common->fsg);
1545 } else {
1546 /* Don't know what to do if common->fsg is NULL */
1547 rc = -EIO;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001548 }
1549 break;
1550
1551 /* All but the last buffer of data must have already been sent */
1552 case DATA_DIR_TO_HOST:
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001553 if (common->data_size == 0) {
Michal Nazarewicz93bcf122009-10-28 16:57:19 +01001554 /* Nothing to send */
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001555
Alan Sternee81b3e2011-03-25 11:46:27 -04001556 /* Don't know what to do if common->fsg is NULL */
1557 } else if (!fsg_is_set(common)) {
1558 rc = -EIO;
1559
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001560 /* If there's no residue, simply send the last buffer */
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001561 } else if (common->residue == 0) {
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001562 bh->inreq->zero = 0;
Michal Nazarewiczfe52f792010-10-28 17:31:21 +02001563 if (!start_in_transfer(common, bh))
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001564 return -EIO;
1565 common->next_buffhd_to_fill = bh->next;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001566
Michal Nazarewiczb73af612010-10-28 17:31:23 +02001567 /*
Alan Sternee81b3e2011-03-25 11:46:27 -04001568 * For Bulk-only, mark the end of the data with a short
1569 * packet. If we are allowed to stall, halt the bulk-in
1570 * endpoint. (Note: This violates the Bulk-Only Transport
1571 * specification, which requires us to pad the data if we
1572 * don't halt the endpoint. Presumably nobody will mind.)
Michal Nazarewiczb73af612010-10-28 17:31:23 +02001573 */
Alan Sternee81b3e2011-03-25 11:46:27 -04001574 } else {
Michal Nazarewicz93bcf122009-10-28 16:57:19 +01001575 bh->inreq->zero = 1;
Michal Nazarewiczfe52f792010-10-28 17:31:21 +02001576 if (!start_in_transfer(common, bh))
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001577 rc = -EIO;
1578 common->next_buffhd_to_fill = bh->next;
Alan Sternee81b3e2011-03-25 11:46:27 -04001579 if (common->can_stall)
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001580 rc = halt_bulk_in_endpoint(common->fsg);
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001581 }
1582 break;
1583
Michal Nazarewiczb73af612010-10-28 17:31:23 +02001584 /*
1585 * We have processed all we want from the data the host has sent.
1586 * There may still be outstanding bulk-out requests.
1587 */
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001588 case DATA_DIR_FROM_HOST:
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001589 if (common->residue == 0) {
Michal Nazarewiczd26a6aa2009-11-09 14:15:23 +01001590 /* Nothing to receive */
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001591
1592 /* Did the host stop sending unexpectedly early? */
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001593 } else if (common->short_packet_received) {
1594 raise_exception(common, FSG_STATE_ABORT_BULK_OUT);
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001595 rc = -EINTR;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001596
Michal Nazarewiczb73af612010-10-28 17:31:23 +02001597 /*
1598 * We haven't processed all the incoming data. Even though
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001599 * we may be allowed to stall, doing so would cause a race.
1600 * The controller may already have ACK'ed all the remaining
1601 * bulk-out packets, in which case the host wouldn't see a
1602 * STALL. Not realizing the endpoint was halted, it wouldn't
Michal Nazarewiczb73af612010-10-28 17:31:23 +02001603 * clear the halt -- leading to problems later on.
1604 */
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001605#if 0
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001606 } else if (common->can_stall) {
1607 if (fsg_is_set(common))
1608 fsg_set_halt(common->fsg,
1609 common->fsg->bulk_out);
1610 raise_exception(common, FSG_STATE_ABORT_BULK_OUT);
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001611 rc = -EINTR;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001612#endif
1613
Michal Nazarewiczb73af612010-10-28 17:31:23 +02001614 /*
1615 * We can't stall. Read in the excess data and throw it
1616 * all away.
1617 */
Michal Nazarewiczd26a6aa2009-11-09 14:15:23 +01001618 } else {
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001619 rc = throw_away_data(common);
Michal Nazarewiczd26a6aa2009-11-09 14:15:23 +01001620 }
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001621 break;
1622 }
1623 return rc;
1624}
1625
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001626static int send_status(struct fsg_common *common)
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001627{
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001628 struct fsg_lun *curlun = common->curlun;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001629 struct fsg_buffhd *bh;
Michal Nazarewicz93bcf122009-10-28 16:57:19 +01001630 struct bulk_cs_wrap *csw;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001631 int rc;
Sebastian Andrzej Siewior775dafd2012-02-25 18:28:11 +01001632 u8 status = US_BULK_STAT_OK;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001633 u32 sd, sdinfo = 0;
1634
1635 /* Wait for the next buffer to become available */
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001636 bh = common->next_buffhd_to_fill;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001637 while (bh->state != BUF_STATE_EMPTY) {
George Cherian2cf93be2013-11-08 10:50:52 +05301638 rc = sleep_thread(common, true);
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001639 if (rc)
1640 return rc;
1641 }
1642
1643 if (curlun) {
1644 sd = curlun->sense_data;
1645 sdinfo = curlun->sense_data_info;
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001646 } else if (common->bad_lun_okay)
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001647 sd = SS_NO_SENSE;
1648 else
1649 sd = SS_LOGICAL_UNIT_NOT_SUPPORTED;
1650
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001651 if (common->phase_error) {
1652 DBG(common, "sending phase-error status\n");
Sebastian Andrzej Siewior775dafd2012-02-25 18:28:11 +01001653 status = US_BULK_STAT_PHASE;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001654 sd = SS_INVALID_COMMAND;
1655 } else if (sd != SS_NO_SENSE) {
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001656 DBG(common, "sending command-failure status\n");
Sebastian Andrzej Siewior775dafd2012-02-25 18:28:11 +01001657 status = US_BULK_STAT_FAIL;
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001658 VDBG(common, " sense data: SK x%02x, ASC x%02x, ASCQ x%02x;"
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001659 " info x%x\n",
1660 SK(sd), ASC(sd), ASCQ(sd), sdinfo);
1661 }
1662
Michal Nazarewicz93bcf122009-10-28 16:57:19 +01001663 /* Store and send the Bulk-only CSW */
Michal Nazarewiczd26a6aa2009-11-09 14:15:23 +01001664 csw = (void *)bh->buf;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001665
Sebastian Andrzej Siewior775dafd2012-02-25 18:28:11 +01001666 csw->Signature = cpu_to_le32(US_BULK_CS_SIGN);
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001667 csw->Tag = common->tag;
1668 csw->Residue = cpu_to_le32(common->residue);
Michal Nazarewicz93bcf122009-10-28 16:57:19 +01001669 csw->Status = status;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001670
Sebastian Andrzej Siewior775dafd2012-02-25 18:28:11 +01001671 bh->inreq->length = US_BULK_CS_WRAP_LEN;
Michal Nazarewicz93bcf122009-10-28 16:57:19 +01001672 bh->inreq->zero = 0;
Michal Nazarewiczfe52f792010-10-28 17:31:21 +02001673 if (!start_in_transfer(common, bh))
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001674 /* Don't know what to do if common->fsg is NULL */
1675 return -EIO;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001676
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001677 common->next_buffhd_to_fill = bh->next;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001678 return 0;
1679}
1680
1681
1682/*-------------------------------------------------------------------------*/
1683
Michal Nazarewiczb73af612010-10-28 17:31:23 +02001684/*
1685 * Check whether the command is properly formed and whether its data size
1686 * and direction agree with the values we already have.
1687 */
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001688static int check_command(struct fsg_common *common, int cmnd_size,
Michal Nazarewiczb73af612010-10-28 17:31:23 +02001689 enum data_direction data_dir, unsigned int mask,
1690 int needs_medium, const char *name)
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001691{
1692 int i;
Sebastian Andrzej Siewior98f3a1b2012-12-03 15:32:36 +01001693 unsigned int lun = common->cmnd[1] >> 5;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001694 static const char dirletter[4] = {'u', 'o', 'i', 'n'};
1695 char hdlen[20];
1696 struct fsg_lun *curlun;
1697
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001698 hdlen[0] = 0;
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001699 if (common->data_dir != DATA_DIR_UNKNOWN)
1700 sprintf(hdlen, ", H%c=%u", dirletter[(int) common->data_dir],
Michal Nazarewiczb73af612010-10-28 17:31:23 +02001701 common->data_size);
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001702 VDBG(common, "SCSI command: %s; Dc=%d, D%c=%u; Hc=%d%s\n",
Michal Nazarewiczd26a6aa2009-11-09 14:15:23 +01001703 name, cmnd_size, dirletter[(int) data_dir],
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001704 common->data_size_from_cmnd, common->cmnd_size, hdlen);
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001705
Michal Nazarewiczb73af612010-10-28 17:31:23 +02001706 /*
1707 * We can't reply at all until we know the correct data direction
1708 * and size.
1709 */
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001710 if (common->data_size_from_cmnd == 0)
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001711 data_dir = DATA_DIR_NONE;
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001712 if (common->data_size < common->data_size_from_cmnd) {
Michal Nazarewiczb73af612010-10-28 17:31:23 +02001713 /*
1714 * Host data size < Device data size is a phase error.
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001715 * Carry out the command, but only transfer as much as
Michal Nazarewiczb73af612010-10-28 17:31:23 +02001716 * we are allowed.
1717 */
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001718 common->data_size_from_cmnd = common->data_size;
1719 common->phase_error = 1;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001720 }
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001721 common->residue = common->data_size;
1722 common->usb_amount_left = common->data_size;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001723
1724 /* Conflicting data directions is a phase error */
Michal Nazarewiczb73af612010-10-28 17:31:23 +02001725 if (common->data_dir != data_dir && common->data_size_from_cmnd > 0) {
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001726 common->phase_error = 1;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001727 return -EINVAL;
1728 }
1729
1730 /* Verify the length of the command itself */
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001731 if (cmnd_size != common->cmnd_size) {
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001732
Michal Nazarewiczb73af612010-10-28 17:31:23 +02001733 /*
1734 * Special case workaround: There are plenty of buggy SCSI
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001735 * implementations. Many have issues with cbw->Length
1736 * field passing a wrong command size. For those cases we
1737 * always try to work around the problem by using the length
1738 * sent by the host side provided it is at least as large
1739 * as the correct command length.
1740 * Examples of such cases would be MS-Windows, which issues
1741 * REQUEST SENSE with cbw->Length == 12 where it should
1742 * be 6, and xbox360 issuing INQUIRY, TEST UNIT READY and
1743 * REQUEST SENSE with cbw->Length == 10 where it should
1744 * be 6 as well.
1745 */
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001746 if (cmnd_size <= common->cmnd_size) {
1747 DBG(common, "%s is buggy! Expected length %d "
Michal Nazarewicza41ae412009-10-28 16:57:20 +01001748 "but we got %d\n", name,
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001749 cmnd_size, common->cmnd_size);
1750 cmnd_size = common->cmnd_size;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001751 } else {
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001752 common->phase_error = 1;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001753 return -EINVAL;
1754 }
1755 }
1756
1757 /* Check that the LUN values are consistent */
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001758 if (common->lun != lun)
Sebastian Andrzej Siewior98f3a1b2012-12-03 15:32:36 +01001759 DBG(common, "using LUN %u from CBW, not LUN %u from CDB\n",
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001760 common->lun, lun);
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001761
1762 /* Check the LUN */
Yuping Luo144974e2011-10-25 19:13:10 -07001763 curlun = common->curlun;
1764 if (curlun) {
Michal Nazarewicz0a6a7172010-10-07 14:46:15 +02001765 if (common->cmnd[0] != REQUEST_SENSE) {
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001766 curlun->sense_data = SS_NO_SENSE;
1767 curlun->sense_data_info = 0;
1768 curlun->info_valid = 0;
1769 }
1770 } else {
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001771 common->bad_lun_okay = 0;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001772
Michal Nazarewiczb73af612010-10-28 17:31:23 +02001773 /*
1774 * INQUIRY and REQUEST SENSE commands are explicitly allowed
1775 * to use unsupported LUNs; all others may not.
1776 */
Michal Nazarewicz0a6a7172010-10-07 14:46:15 +02001777 if (common->cmnd[0] != INQUIRY &&
1778 common->cmnd[0] != REQUEST_SENSE) {
Sebastian Andrzej Siewior98f3a1b2012-12-03 15:32:36 +01001779 DBG(common, "unsupported LUN %u\n", common->lun);
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001780 return -EINVAL;
1781 }
1782 }
1783
Michal Nazarewiczb73af612010-10-28 17:31:23 +02001784 /*
1785 * If a unit attention condition exists, only INQUIRY and
1786 * REQUEST SENSE commands are allowed; anything else must fail.
1787 */
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001788 if (curlun && curlun->unit_attention_data != SS_NO_SENSE &&
Michal Nazarewiczb73af612010-10-28 17:31:23 +02001789 common->cmnd[0] != INQUIRY &&
1790 common->cmnd[0] != REQUEST_SENSE) {
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001791 curlun->sense_data = curlun->unit_attention_data;
1792 curlun->unit_attention_data = SS_NO_SENSE;
1793 return -EINVAL;
1794 }
1795
1796 /* Check that only command bytes listed in the mask are non-zero */
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001797 common->cmnd[1] &= 0x1f; /* Mask away the LUN */
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001798 for (i = 1; i < cmnd_size; ++i) {
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001799 if (common->cmnd[i] && !(mask & (1 << i))) {
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001800 if (curlun)
1801 curlun->sense_data = SS_INVALID_FIELD_IN_CDB;
1802 return -EINVAL;
1803 }
1804 }
1805
1806 /* If the medium isn't mounted and the command needs to access
1807 * it, return an error. */
1808 if (curlun && !fsg_lun_is_open(curlun) && needs_medium) {
1809 curlun->sense_data = SS_MEDIUM_NOT_PRESENT;
1810 return -EINVAL;
1811 }
1812
1813 return 0;
1814}
1815
Yuping Luo144974e2011-10-25 19:13:10 -07001816/* wrapper of check_command for data size in blocks handling */
1817static int check_command_size_in_blocks(struct fsg_common *common,
1818 int cmnd_size, enum data_direction data_dir,
1819 unsigned int mask, int needs_medium, const char *name)
1820{
1821 if (common->curlun)
1822 common->data_size_from_cmnd <<= common->curlun->blkbits;
1823 return check_command(common, cmnd_size, data_dir,
1824 mask, needs_medium, name);
1825}
1826
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001827static int do_scsi_command(struct fsg_common *common)
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001828{
1829 struct fsg_buffhd *bh;
1830 int rc;
1831 int reply = -EINVAL;
1832 int i;
1833 static char unknown[16];
1834
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001835 dump_cdb(common);
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001836
1837 /* Wait for the next buffer to become available for data or status */
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001838 bh = common->next_buffhd_to_fill;
1839 common->next_buffhd_to_drain = bh;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001840 while (bh->state != BUF_STATE_EMPTY) {
George Cherian2cf93be2013-11-08 10:50:52 +05301841 rc = sleep_thread(common, true);
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001842 if (rc)
1843 return rc;
1844 }
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001845 common->phase_error = 0;
1846 common->short_packet_received = 0;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001847
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001848 down_read(&common->filesem); /* We're using the backing file */
1849 switch (common->cmnd[0]) {
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001850
Michal Nazarewicz0a6a7172010-10-07 14:46:15 +02001851 case INQUIRY:
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001852 common->data_size_from_cmnd = common->cmnd[4];
1853 reply = check_command(common, 6, DATA_DIR_TO_HOST,
Michal Nazarewiczd26a6aa2009-11-09 14:15:23 +01001854 (1<<4), 0,
1855 "INQUIRY");
1856 if (reply == 0)
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001857 reply = do_inquiry(common, bh);
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001858 break;
1859
Michal Nazarewicz0a6a7172010-10-07 14:46:15 +02001860 case MODE_SELECT:
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001861 common->data_size_from_cmnd = common->cmnd[4];
1862 reply = check_command(common, 6, DATA_DIR_FROM_HOST,
Michal Nazarewiczd26a6aa2009-11-09 14:15:23 +01001863 (1<<1) | (1<<4), 0,
1864 "MODE SELECT(6)");
1865 if (reply == 0)
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001866 reply = do_mode_select(common, bh);
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001867 break;
1868
Michal Nazarewicz0a6a7172010-10-07 14:46:15 +02001869 case MODE_SELECT_10:
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001870 common->data_size_from_cmnd =
1871 get_unaligned_be16(&common->cmnd[7]);
1872 reply = check_command(common, 10, DATA_DIR_FROM_HOST,
Michal Nazarewiczd26a6aa2009-11-09 14:15:23 +01001873 (1<<1) | (3<<7), 0,
1874 "MODE SELECT(10)");
1875 if (reply == 0)
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001876 reply = do_mode_select(common, bh);
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001877 break;
1878
Michal Nazarewicz0a6a7172010-10-07 14:46:15 +02001879 case MODE_SENSE:
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001880 common->data_size_from_cmnd = common->cmnd[4];
1881 reply = check_command(common, 6, DATA_DIR_TO_HOST,
Michal Nazarewiczd26a6aa2009-11-09 14:15:23 +01001882 (1<<1) | (1<<2) | (1<<4), 0,
1883 "MODE SENSE(6)");
1884 if (reply == 0)
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001885 reply = do_mode_sense(common, bh);
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001886 break;
1887
Michal Nazarewicz0a6a7172010-10-07 14:46:15 +02001888 case MODE_SENSE_10:
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001889 common->data_size_from_cmnd =
1890 get_unaligned_be16(&common->cmnd[7]);
1891 reply = check_command(common, 10, DATA_DIR_TO_HOST,
Michal Nazarewiczd26a6aa2009-11-09 14:15:23 +01001892 (1<<1) | (1<<2) | (3<<7), 0,
1893 "MODE SENSE(10)");
1894 if (reply == 0)
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001895 reply = do_mode_sense(common, bh);
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001896 break;
1897
Michal Nazarewicz0a6a7172010-10-07 14:46:15 +02001898 case ALLOW_MEDIUM_REMOVAL:
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001899 common->data_size_from_cmnd = 0;
1900 reply = check_command(common, 6, DATA_DIR_NONE,
Michal Nazarewiczd26a6aa2009-11-09 14:15:23 +01001901 (1<<4), 0,
1902 "PREVENT-ALLOW MEDIUM REMOVAL");
1903 if (reply == 0)
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001904 reply = do_prevent_allow(common);
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001905 break;
1906
Michal Nazarewicz0a6a7172010-10-07 14:46:15 +02001907 case READ_6:
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001908 i = common->cmnd[4];
Yuping Luo144974e2011-10-25 19:13:10 -07001909 common->data_size_from_cmnd = (i == 0) ? 256 : i;
1910 reply = check_command_size_in_blocks(common, 6,
1911 DATA_DIR_TO_HOST,
Michal Nazarewiczd26a6aa2009-11-09 14:15:23 +01001912 (7<<1) | (1<<4), 1,
1913 "READ(6)");
1914 if (reply == 0)
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001915 reply = do_read(common);
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001916 break;
1917
Michal Nazarewicz0a6a7172010-10-07 14:46:15 +02001918 case READ_10:
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001919 common->data_size_from_cmnd =
Yuping Luo144974e2011-10-25 19:13:10 -07001920 get_unaligned_be16(&common->cmnd[7]);
1921 reply = check_command_size_in_blocks(common, 10,
1922 DATA_DIR_TO_HOST,
Michal Nazarewiczd26a6aa2009-11-09 14:15:23 +01001923 (1<<1) | (0xf<<2) | (3<<7), 1,
1924 "READ(10)");
1925 if (reply == 0)
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001926 reply = do_read(common);
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001927 break;
1928
Michal Nazarewicz0a6a7172010-10-07 14:46:15 +02001929 case READ_12:
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001930 common->data_size_from_cmnd =
Yuping Luo144974e2011-10-25 19:13:10 -07001931 get_unaligned_be32(&common->cmnd[6]);
1932 reply = check_command_size_in_blocks(common, 12,
1933 DATA_DIR_TO_HOST,
Michal Nazarewiczd26a6aa2009-11-09 14:15:23 +01001934 (1<<1) | (0xf<<2) | (0xf<<6), 1,
1935 "READ(12)");
1936 if (reply == 0)
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001937 reply = do_read(common);
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001938 break;
1939
Michal Nazarewicz0a6a7172010-10-07 14:46:15 +02001940 case READ_CAPACITY:
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001941 common->data_size_from_cmnd = 8;
1942 reply = check_command(common, 10, DATA_DIR_TO_HOST,
Michal Nazarewiczd26a6aa2009-11-09 14:15:23 +01001943 (0xf<<2) | (1<<8), 1,
1944 "READ CAPACITY");
1945 if (reply == 0)
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001946 reply = do_read_capacity(common, bh);
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001947 break;
1948
Michal Nazarewicz0a6a7172010-10-07 14:46:15 +02001949 case READ_HEADER:
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001950 if (!common->curlun || !common->curlun->cdrom)
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001951 goto unknown_cmnd;
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001952 common->data_size_from_cmnd =
1953 get_unaligned_be16(&common->cmnd[7]);
1954 reply = check_command(common, 10, DATA_DIR_TO_HOST,
Michal Nazarewiczd26a6aa2009-11-09 14:15:23 +01001955 (3<<7) | (0x1f<<1), 1,
1956 "READ HEADER");
1957 if (reply == 0)
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001958 reply = do_read_header(common, bh);
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001959 break;
1960
Michal Nazarewicz0a6a7172010-10-07 14:46:15 +02001961 case READ_TOC:
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001962 if (!common->curlun || !common->curlun->cdrom)
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001963 goto unknown_cmnd;
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001964 common->data_size_from_cmnd =
1965 get_unaligned_be16(&common->cmnd[7]);
1966 reply = check_command(common, 10, DATA_DIR_TO_HOST,
Michal Nazarewiczd26a6aa2009-11-09 14:15:23 +01001967 (7<<6) | (1<<1), 1,
1968 "READ TOC");
1969 if (reply == 0)
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001970 reply = do_read_toc(common, bh);
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001971 break;
1972
Michal Nazarewicz0a6a7172010-10-07 14:46:15 +02001973 case READ_FORMAT_CAPACITIES:
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001974 common->data_size_from_cmnd =
1975 get_unaligned_be16(&common->cmnd[7]);
1976 reply = check_command(common, 10, DATA_DIR_TO_HOST,
Michal Nazarewiczd26a6aa2009-11-09 14:15:23 +01001977 (3<<7), 1,
1978 "READ FORMAT CAPACITIES");
1979 if (reply == 0)
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001980 reply = do_read_format_capacities(common, bh);
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001981 break;
1982
Michal Nazarewicz0a6a7172010-10-07 14:46:15 +02001983 case REQUEST_SENSE:
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001984 common->data_size_from_cmnd = common->cmnd[4];
1985 reply = check_command(common, 6, DATA_DIR_TO_HOST,
Michal Nazarewiczd26a6aa2009-11-09 14:15:23 +01001986 (1<<4), 0,
1987 "REQUEST SENSE");
1988 if (reply == 0)
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001989 reply = do_request_sense(common, bh);
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001990 break;
1991
Michal Nazarewicz0a6a7172010-10-07 14:46:15 +02001992 case START_STOP:
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001993 common->data_size_from_cmnd = 0;
1994 reply = check_command(common, 6, DATA_DIR_NONE,
Michal Nazarewiczd26a6aa2009-11-09 14:15:23 +01001995 (1<<1) | (1<<4), 0,
1996 "START-STOP UNIT");
1997 if (reply == 0)
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01001998 reply = do_start_stop(common);
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01001999 break;
2000
Michal Nazarewicz0a6a7172010-10-07 14:46:15 +02002001 case SYNCHRONIZE_CACHE:
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01002002 common->data_size_from_cmnd = 0;
2003 reply = check_command(common, 10, DATA_DIR_NONE,
Michal Nazarewiczd26a6aa2009-11-09 14:15:23 +01002004 (0xf<<2) | (3<<7), 1,
2005 "SYNCHRONIZE CACHE");
2006 if (reply == 0)
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01002007 reply = do_synchronize_cache(common);
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01002008 break;
2009
Michal Nazarewicz0a6a7172010-10-07 14:46:15 +02002010 case TEST_UNIT_READY:
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01002011 common->data_size_from_cmnd = 0;
2012 reply = check_command(common, 6, DATA_DIR_NONE,
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01002013 0, 1,
2014 "TEST UNIT READY");
2015 break;
2016
Michal Nazarewiczb73af612010-10-28 17:31:23 +02002017 /*
2018 * Although optional, this command is used by MS-Windows. We
2019 * support a minimal version: BytChk must be 0.
2020 */
Michal Nazarewicz0a6a7172010-10-07 14:46:15 +02002021 case VERIFY:
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01002022 common->data_size_from_cmnd = 0;
2023 reply = check_command(common, 10, DATA_DIR_NONE,
Michal Nazarewiczd26a6aa2009-11-09 14:15:23 +01002024 (1<<1) | (0xf<<2) | (3<<7), 1,
2025 "VERIFY");
2026 if (reply == 0)
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01002027 reply = do_verify(common);
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01002028 break;
2029
Michal Nazarewicz0a6a7172010-10-07 14:46:15 +02002030 case WRITE_6:
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01002031 i = common->cmnd[4];
Yuping Luo144974e2011-10-25 19:13:10 -07002032 common->data_size_from_cmnd = (i == 0) ? 256 : i;
2033 reply = check_command_size_in_blocks(common, 6,
2034 DATA_DIR_FROM_HOST,
Michal Nazarewiczd26a6aa2009-11-09 14:15:23 +01002035 (7<<1) | (1<<4), 1,
2036 "WRITE(6)");
2037 if (reply == 0)
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01002038 reply = do_write(common);
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01002039 break;
2040
Michal Nazarewicz0a6a7172010-10-07 14:46:15 +02002041 case WRITE_10:
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01002042 common->data_size_from_cmnd =
Yuping Luo144974e2011-10-25 19:13:10 -07002043 get_unaligned_be16(&common->cmnd[7]);
2044 reply = check_command_size_in_blocks(common, 10,
2045 DATA_DIR_FROM_HOST,
Michal Nazarewiczd26a6aa2009-11-09 14:15:23 +01002046 (1<<1) | (0xf<<2) | (3<<7), 1,
2047 "WRITE(10)");
2048 if (reply == 0)
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01002049 reply = do_write(common);
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01002050 break;
2051
Michal Nazarewicz0a6a7172010-10-07 14:46:15 +02002052 case WRITE_12:
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01002053 common->data_size_from_cmnd =
Yuping Luo144974e2011-10-25 19:13:10 -07002054 get_unaligned_be32(&common->cmnd[6]);
2055 reply = check_command_size_in_blocks(common, 12,
2056 DATA_DIR_FROM_HOST,
Michal Nazarewiczd26a6aa2009-11-09 14:15:23 +01002057 (1<<1) | (0xf<<2) | (0xf<<6), 1,
2058 "WRITE(12)");
2059 if (reply == 0)
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01002060 reply = do_write(common);
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01002061 break;
2062
Michal Nazarewiczb73af612010-10-28 17:31:23 +02002063 /*
2064 * Some mandatory commands that we recognize but don't implement.
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01002065 * They don't mean much in this setting. It's left as an exercise
2066 * for anyone interested to implement RESERVE and RELEASE in terms
Michal Nazarewiczb73af612010-10-28 17:31:23 +02002067 * of Posix locks.
2068 */
Michal Nazarewicz0a6a7172010-10-07 14:46:15 +02002069 case FORMAT_UNIT:
2070 case RELEASE:
2071 case RESERVE:
2072 case SEND_DIAGNOSTIC:
Michal Nazarewiczd26a6aa2009-11-09 14:15:23 +01002073 /* Fall through */
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01002074
2075 default:
Michal Nazarewiczd26a6aa2009-11-09 14:15:23 +01002076unknown_cmnd:
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01002077 common->data_size_from_cmnd = 0;
2078 sprintf(unknown, "Unknown x%02x", common->cmnd[0]);
2079 reply = check_command(common, common->cmnd_size,
Alan Sternc85dcda2012-04-11 16:09:10 -04002080 DATA_DIR_UNKNOWN, ~0, 0, unknown);
Michal Nazarewiczd26a6aa2009-11-09 14:15:23 +01002081 if (reply == 0) {
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01002082 common->curlun->sense_data = SS_INVALID_COMMAND;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01002083 reply = -EINVAL;
2084 }
2085 break;
2086 }
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01002087 up_read(&common->filesem);
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01002088
2089 if (reply == -EINTR || signal_pending(current))
2090 return -EINTR;
2091
2092 /* Set up the single reply buffer for finish_reply() */
2093 if (reply == -EINVAL)
Michal Nazarewiczd26a6aa2009-11-09 14:15:23 +01002094 reply = 0; /* Error reply length */
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01002095 if (reply >= 0 && common->data_dir == DATA_DIR_TO_HOST) {
Michal Nazarewiczb73af612010-10-28 17:31:23 +02002096 reply = min((u32)reply, common->data_size_from_cmnd);
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01002097 bh->inreq->length = reply;
2098 bh->state = BUF_STATE_FULL;
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01002099 common->residue -= reply;
Michal Nazarewiczd26a6aa2009-11-09 14:15:23 +01002100 } /* Otherwise it's already set */
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01002101
2102 return 0;
2103}
2104
2105
2106/*-------------------------------------------------------------------------*/
2107
2108static int received_cbw(struct fsg_dev *fsg, struct fsg_buffhd *bh)
2109{
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01002110 struct usb_request *req = bh->outreq;
Sebastian Andrzej Siewior7ac47042012-02-25 18:28:09 +01002111 struct bulk_cb_wrap *cbw = req->buf;
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01002112 struct fsg_common *common = fsg->common;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01002113
2114 /* Was this a real packet? Should it be ignored? */
2115 if (req->status || test_bit(IGNORE_BULK_OUT, &fsg->atomic_bitflags))
2116 return -EINVAL;
2117
2118 /* Is the CBW valid? */
Sebastian Andrzej Siewior775dafd2012-02-25 18:28:11 +01002119 if (req->actual != US_BULK_CB_WRAP_LEN ||
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01002120 cbw->Signature != cpu_to_le32(
Sebastian Andrzej Siewior775dafd2012-02-25 18:28:11 +01002121 US_BULK_CB_SIGN)) {
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01002122 DBG(fsg, "invalid CBW: len %u sig 0x%x\n",
2123 req->actual,
2124 le32_to_cpu(cbw->Signature));
2125
Michal Nazarewiczb73af612010-10-28 17:31:23 +02002126 /*
2127 * The Bulk-only spec says we MUST stall the IN endpoint
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01002128 * (6.6.1), so it's unavoidable. It also says we must
2129 * retain this state until the next reset, but there's
2130 * no way to tell the controller driver it should ignore
2131 * Clear-Feature(HALT) requests.
2132 *
2133 * We aren't required to halt the OUT endpoint; instead
2134 * we can simply accept and discard any data received
Michal Nazarewiczb73af612010-10-28 17:31:23 +02002135 * until the next reset.
2136 */
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01002137 wedge_bulk_in_endpoint(fsg);
2138 set_bit(IGNORE_BULK_OUT, &fsg->atomic_bitflags);
2139 return -EINVAL;
2140 }
2141
2142 /* Is the CBW meaningful? */
Krzysztof Opasiakdd02ea52015-07-31 13:46:07 +02002143 if (cbw->Lun >= ARRAY_SIZE(common->luns) ||
2144 cbw->Flags & ~US_BULK_FLAG_IN || cbw->Length <= 0 ||
2145 cbw->Length > MAX_COMMAND_SIZE) {
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01002146 DBG(fsg, "non-meaningful CBW: lun = %u, flags = 0x%x, "
2147 "cmdlen %u\n",
2148 cbw->Lun, cbw->Flags, cbw->Length);
2149
Michal Nazarewiczb73af612010-10-28 17:31:23 +02002150 /*
2151 * We can do anything we want here, so let's stall the
2152 * bulk pipes if we are allowed to.
2153 */
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01002154 if (common->can_stall) {
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01002155 fsg_set_halt(fsg, fsg->bulk_out);
2156 halt_bulk_in_endpoint(fsg);
2157 }
2158 return -EINVAL;
2159 }
2160
2161 /* Save the command for later */
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01002162 common->cmnd_size = cbw->Length;
2163 memcpy(common->cmnd, cbw->CDB, common->cmnd_size);
Sebastian Andrzej Siewior775dafd2012-02-25 18:28:11 +01002164 if (cbw->Flags & US_BULK_FLAG_IN)
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01002165 common->data_dir = DATA_DIR_TO_HOST;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01002166 else
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01002167 common->data_dir = DATA_DIR_FROM_HOST;
2168 common->data_size = le32_to_cpu(cbw->DataTransferLength);
2169 if (common->data_size == 0)
2170 common->data_dir = DATA_DIR_NONE;
2171 common->lun = cbw->Lun;
Krzysztof Opasiakdd02ea52015-07-31 13:46:07 +02002172 if (common->lun < ARRAY_SIZE(common->luns))
Andrzej Pietrasiewicz8b903fd2013-09-26 14:38:18 +02002173 common->curlun = common->luns[common->lun];
Yuping Luo144974e2011-10-25 19:13:10 -07002174 else
2175 common->curlun = NULL;
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01002176 common->tag = cbw->Tag;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01002177 return 0;
2178}
2179
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01002180static int get_next_command(struct fsg_common *common)
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01002181{
2182 struct fsg_buffhd *bh;
2183 int rc = 0;
2184
Michal Nazarewicz93bcf122009-10-28 16:57:19 +01002185 /* Wait for the next buffer to become available */
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01002186 bh = common->next_buffhd_to_fill;
Michal Nazarewicz93bcf122009-10-28 16:57:19 +01002187 while (bh->state != BUF_STATE_EMPTY) {
George Cherian2cf93be2013-11-08 10:50:52 +05302188 rc = sleep_thread(common, true);
Michal Nazarewicz93bcf122009-10-28 16:57:19 +01002189 if (rc)
2190 return rc;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01002191 }
Michal Nazarewicz93bcf122009-10-28 16:57:19 +01002192
2193 /* Queue a request to read a Bulk-only CBW */
Sebastian Andrzej Siewior775dafd2012-02-25 18:28:11 +01002194 set_bulk_out_req_length(common, bh, US_BULK_CB_WRAP_LEN);
Michal Nazarewiczfe52f792010-10-28 17:31:21 +02002195 if (!start_out_transfer(common, bh))
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01002196 /* Don't know what to do if common->fsg is NULL */
2197 return -EIO;
Michal Nazarewicz93bcf122009-10-28 16:57:19 +01002198
Michal Nazarewiczb73af612010-10-28 17:31:23 +02002199 /*
2200 * We will drain the buffer in software, which means we
Michal Nazarewicz93bcf122009-10-28 16:57:19 +01002201 * can reuse it for the next filling. No need to advance
Michal Nazarewiczb73af612010-10-28 17:31:23 +02002202 * next_buffhd_to_fill.
2203 */
Michal Nazarewicz93bcf122009-10-28 16:57:19 +01002204
2205 /* Wait for the CBW to arrive */
2206 while (bh->state != BUF_STATE_FULL) {
George Cherian2cf93be2013-11-08 10:50:52 +05302207 rc = sleep_thread(common, true);
Michal Nazarewicz93bcf122009-10-28 16:57:19 +01002208 if (rc)
2209 return rc;
2210 }
2211 smp_rmb();
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01002212 rc = fsg_is_set(common) ? received_cbw(common->fsg, bh) : -EIO;
Michal Nazarewicz93bcf122009-10-28 16:57:19 +01002213 bh->state = BUF_STATE_EMPTY;
2214
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01002215 return rc;
2216}
2217
2218
2219/*-------------------------------------------------------------------------*/
2220
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01002221static int alloc_request(struct fsg_common *common, struct usb_ep *ep,
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01002222 struct usb_request **preq)
2223{
2224 *preq = usb_ep_alloc_request(ep, GFP_ATOMIC);
2225 if (*preq)
2226 return 0;
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01002227 ERROR(common, "can't allocate request for %s\n", ep->name);
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01002228 return -ENOMEM;
2229}
2230
Michal Nazarewiczb894f602010-06-25 16:29:28 +02002231/* Reset interface setting and re-init endpoint state (toggle etc). */
2232static int do_set_interface(struct fsg_common *common, struct fsg_dev *new_fsg)
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01002233{
Michal Nazarewiczb894f602010-06-25 16:29:28 +02002234 struct fsg_dev *fsg;
2235 int i, rc = 0;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01002236
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01002237 if (common->running)
2238 DBG(common, "reset interface\n");
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01002239
2240reset:
2241 /* Deallocate the requests */
Michal Nazarewiczb894f602010-06-25 16:29:28 +02002242 if (common->fsg) {
2243 fsg = common->fsg;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01002244
Andrzej Pietrasiewicz6fdc5dd2013-09-26 14:38:16 +02002245 for (i = 0; i < common->fsg_num_buffers; ++i) {
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01002246 struct fsg_buffhd *bh = &common->buffhds[i];
2247
2248 if (bh->inreq) {
2249 usb_ep_free_request(fsg->bulk_in, bh->inreq);
2250 bh->inreq = NULL;
2251 }
2252 if (bh->outreq) {
2253 usb_ep_free_request(fsg->bulk_out, bh->outreq);
2254 bh->outreq = NULL;
2255 }
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01002256 }
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01002257
2258 /* Disable the endpoints */
2259 if (fsg->bulk_in_enabled) {
2260 usb_ep_disable(fsg->bulk_in);
2261 fsg->bulk_in_enabled = 0;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01002262 }
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01002263 if (fsg->bulk_out_enabled) {
2264 usb_ep_disable(fsg->bulk_out);
2265 fsg->bulk_out_enabled = 0;
2266 }
2267
Michal Nazarewiczb894f602010-06-25 16:29:28 +02002268 common->fsg = NULL;
2269 wake_up(&common->fsg_wait);
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01002270 }
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01002271
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01002272 common->running = 0;
Michal Nazarewiczb894f602010-06-25 16:29:28 +02002273 if (!new_fsg || rc)
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01002274 return rc;
2275
Michal Nazarewiczb894f602010-06-25 16:29:28 +02002276 common->fsg = new_fsg;
2277 fsg = common->fsg;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01002278
Michal Nazarewiczb894f602010-06-25 16:29:28 +02002279 /* Enable the endpoints */
Tatyana Brokhmanea2a1df2011-06-28 16:33:50 +03002280 rc = config_ep_by_speed(common->gadget, &(fsg->function), fsg->bulk_in);
Michal Nazarewiczb894f602010-06-25 16:29:28 +02002281 if (rc)
2282 goto reset;
Tatyana Brokhmanea2a1df2011-06-28 16:33:50 +03002283 rc = usb_ep_enable(fsg->bulk_in);
2284 if (rc)
2285 goto reset;
2286 fsg->bulk_in->driver_data = common;
Michal Nazarewiczb894f602010-06-25 16:29:28 +02002287 fsg->bulk_in_enabled = 1;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01002288
Tatyana Brokhmanea2a1df2011-06-28 16:33:50 +03002289 rc = config_ep_by_speed(common->gadget, &(fsg->function),
2290 fsg->bulk_out);
Michal Nazarewiczb894f602010-06-25 16:29:28 +02002291 if (rc)
2292 goto reset;
Tatyana Brokhmanea2a1df2011-06-28 16:33:50 +03002293 rc = usb_ep_enable(fsg->bulk_out);
2294 if (rc)
2295 goto reset;
2296 fsg->bulk_out->driver_data = common;
Michal Nazarewiczb894f602010-06-25 16:29:28 +02002297 fsg->bulk_out_enabled = 1;
Kuninori Morimoto29cc8892011-08-23 03:12:03 -07002298 common->bulk_out_maxpacket = usb_endpoint_maxp(fsg->bulk_out->desc);
Michal Nazarewiczb894f602010-06-25 16:29:28 +02002299 clear_bit(IGNORE_BULK_OUT, &fsg->atomic_bitflags);
2300
2301 /* Allocate the requests */
Andrzej Pietrasiewicz6fdc5dd2013-09-26 14:38:16 +02002302 for (i = 0; i < common->fsg_num_buffers; ++i) {
Michal Nazarewiczb894f602010-06-25 16:29:28 +02002303 struct fsg_buffhd *bh = &common->buffhds[i];
2304
2305 rc = alloc_request(common, fsg->bulk_in, &bh->inreq);
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01002306 if (rc)
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01002307 goto reset;
Michal Nazarewiczb894f602010-06-25 16:29:28 +02002308 rc = alloc_request(common, fsg->bulk_out, &bh->outreq);
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01002309 if (rc)
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01002310 goto reset;
Michal Nazarewiczb894f602010-06-25 16:29:28 +02002311 bh->inreq->buf = bh->outreq->buf = bh->buf;
2312 bh->inreq->context = bh->outreq->context = bh;
2313 bh->inreq->complete = bulk_in_complete;
2314 bh->outreq->complete = bulk_out_complete;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01002315 }
2316
Michal Nazarewiczb894f602010-06-25 16:29:28 +02002317 common->running = 1;
Krzysztof Opasiakdd02ea52015-07-31 13:46:07 +02002318 for (i = 0; i < ARRAY_SIZE(common->luns); ++i)
Andrzej Pietrasiewicz8b903fd2013-09-26 14:38:18 +02002319 if (common->luns[i])
2320 common->luns[i]->unit_attention_data =
2321 SS_RESET_OCCURRED;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01002322 return rc;
2323}
2324
2325
Michal Nazarewiczd23b0f02009-11-09 14:15:20 +01002326/****************************** ALT CONFIGS ******************************/
2327
Michal Nazarewiczd23b0f02009-11-09 14:15:20 +01002328static int fsg_set_alt(struct usb_function *f, unsigned intf, unsigned alt)
2329{
2330 struct fsg_dev *fsg = fsg_from_func(f);
Michal Nazarewiczb894f602010-06-25 16:29:28 +02002331 fsg->common->new_fsg = fsg;
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01002332 raise_exception(fsg->common, FSG_STATE_CONFIG_CHANGE);
Roger Quadros95ed3232011-05-09 13:08:07 +03002333 return USB_GADGET_DELAYED_STATUS;
Michal Nazarewiczd23b0f02009-11-09 14:15:20 +01002334}
2335
2336static void fsg_disable(struct usb_function *f)
2337{
2338 struct fsg_dev *fsg = fsg_from_func(f);
Michal Nazarewiczb894f602010-06-25 16:29:28 +02002339 fsg->common->new_fsg = NULL;
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01002340 raise_exception(fsg->common, FSG_STATE_CONFIG_CHANGE);
Michal Nazarewiczd23b0f02009-11-09 14:15:20 +01002341}
2342
2343
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01002344/*-------------------------------------------------------------------------*/
2345
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01002346static void handle_exception(struct fsg_common *common)
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01002347{
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01002348 int i;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01002349 struct fsg_buffhd *bh;
2350 enum fsg_state old_state;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01002351 struct fsg_lun *curlun;
2352 unsigned int exception_req_tag;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01002353
Michal Nazarewiczb73af612010-10-28 17:31:23 +02002354 /*
2355 * Clear the existing signals. Anything but SIGUSR1 is converted
2356 * into a high-priority EXIT exception.
2357 */
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01002358 for (;;) {
Oleg Nesterovbe0e6f22015-11-06 16:32:22 -08002359 int sig = kernel_dequeue_signal(NULL);
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01002360 if (!sig)
2361 break;
2362 if (sig != SIGUSR1) {
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01002363 if (common->state < FSG_STATE_EXIT)
2364 DBG(common, "Main thread exiting on signal\n");
2365 raise_exception(common, FSG_STATE_EXIT);
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01002366 }
2367 }
2368
2369 /* Cancel all the pending transfers */
Michal Nazarewiczb894f602010-06-25 16:29:28 +02002370 if (likely(common->fsg)) {
Andrzej Pietrasiewicz6fdc5dd2013-09-26 14:38:16 +02002371 for (i = 0; i < common->fsg_num_buffers; ++i) {
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01002372 bh = &common->buffhds[i];
2373 if (bh->inreq_busy)
2374 usb_ep_dequeue(common->fsg->bulk_in, bh->inreq);
2375 if (bh->outreq_busy)
2376 usb_ep_dequeue(common->fsg->bulk_out,
2377 bh->outreq);
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01002378 }
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01002379
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01002380 /* Wait until everything is idle */
2381 for (;;) {
2382 int num_active = 0;
Andrzej Pietrasiewicz6fdc5dd2013-09-26 14:38:16 +02002383 for (i = 0; i < common->fsg_num_buffers; ++i) {
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01002384 bh = &common->buffhds[i];
2385 num_active += bh->inreq_busy + bh->outreq_busy;
2386 }
2387 if (num_active == 0)
2388 break;
George Cherian2cf93be2013-11-08 10:50:52 +05302389 if (sleep_thread(common, true))
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01002390 return;
2391 }
2392
2393 /* Clear out the controller's fifos */
2394 if (common->fsg->bulk_in_enabled)
2395 usb_ep_fifo_flush(common->fsg->bulk_in);
2396 if (common->fsg->bulk_out_enabled)
2397 usb_ep_fifo_flush(common->fsg->bulk_out);
2398 }
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01002399
Michal Nazarewiczb73af612010-10-28 17:31:23 +02002400 /*
2401 * Reset the I/O buffer states and pointers, the SCSI
2402 * state, and the exception. Then invoke the handler.
2403 */
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01002404 spin_lock_irq(&common->lock);
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01002405
Andrzej Pietrasiewicz6fdc5dd2013-09-26 14:38:16 +02002406 for (i = 0; i < common->fsg_num_buffers; ++i) {
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01002407 bh = &common->buffhds[i];
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01002408 bh->state = BUF_STATE_EMPTY;
2409 }
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01002410 common->next_buffhd_to_fill = &common->buffhds[0];
2411 common->next_buffhd_to_drain = &common->buffhds[0];
2412 exception_req_tag = common->exception_req_tag;
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01002413 old_state = common->state;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01002414
2415 if (old_state == FSG_STATE_ABORT_BULK_OUT)
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01002416 common->state = FSG_STATE_STATUS_PHASE;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01002417 else {
Krzysztof Opasiakdd02ea52015-07-31 13:46:07 +02002418 for (i = 0; i < ARRAY_SIZE(common->luns); ++i) {
Andrzej Pietrasiewicz8b903fd2013-09-26 14:38:18 +02002419 curlun = common->luns[i];
2420 if (!curlun)
2421 continue;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01002422 curlun->prevent_medium_removal = 0;
Michal Nazarewiczd26a6aa2009-11-09 14:15:23 +01002423 curlun->sense_data = SS_NO_SENSE;
2424 curlun->unit_attention_data = SS_NO_SENSE;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01002425 curlun->sense_data_info = 0;
2426 curlun->info_valid = 0;
2427 }
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01002428 common->state = FSG_STATE_IDLE;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01002429 }
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01002430 spin_unlock_irq(&common->lock);
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01002431
2432 /* Carry out any extra actions required for the exception */
2433 switch (old_state) {
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01002434 case FSG_STATE_ABORT_BULK_OUT:
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01002435 send_status(common);
2436 spin_lock_irq(&common->lock);
2437 if (common->state == FSG_STATE_STATUS_PHASE)
2438 common->state = FSG_STATE_IDLE;
2439 spin_unlock_irq(&common->lock);
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01002440 break;
2441
2442 case FSG_STATE_RESET:
Michal Nazarewiczb73af612010-10-28 17:31:23 +02002443 /*
2444 * In case we were forced against our will to halt a
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01002445 * bulk endpoint, clear the halt now. (The SuperH UDC
Michal Nazarewiczb73af612010-10-28 17:31:23 +02002446 * requires this.)
2447 */
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01002448 if (!fsg_is_set(common))
2449 break;
2450 if (test_and_clear_bit(IGNORE_BULK_OUT,
2451 &common->fsg->atomic_bitflags))
2452 usb_ep_clear_halt(common->fsg->bulk_in);
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01002453
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01002454 if (common->ep0_req_tag == exception_req_tag)
2455 ep0_queue(common); /* Complete the status stage */
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01002456
Michal Nazarewiczb73af612010-10-28 17:31:23 +02002457 /*
2458 * Technically this should go here, but it would only be
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01002459 * a waste of time. Ditto for the INTERFACE_CHANGE and
Michal Nazarewiczb73af612010-10-28 17:31:23 +02002460 * CONFIG_CHANGE cases.
2461 */
Krzysztof Opasiakdd02ea52015-07-31 13:46:07 +02002462 /* for (i = 0; i < common->ARRAY_SIZE(common->luns); ++i) */
Andrzej Pietrasiewicz8b903fd2013-09-26 14:38:18 +02002463 /* if (common->luns[i]) */
2464 /* common->luns[i]->unit_attention_data = */
2465 /* SS_RESET_OCCURRED; */
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01002466 break;
2467
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01002468 case FSG_STATE_CONFIG_CHANGE:
Michal Nazarewiczb894f602010-06-25 16:29:28 +02002469 do_set_interface(common, common->new_fsg);
Roger Quadros95ed3232011-05-09 13:08:07 +03002470 if (common->new_fsg)
2471 usb_composite_setup_continue(common->cdev);
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01002472 break;
2473
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01002474 case FSG_STATE_EXIT:
2475 case FSG_STATE_TERMINATED:
Michal Nazarewiczb894f602010-06-25 16:29:28 +02002476 do_set_interface(common, NULL); /* Free resources */
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01002477 spin_lock_irq(&common->lock);
2478 common->state = FSG_STATE_TERMINATED; /* Stop the thread */
2479 spin_unlock_irq(&common->lock);
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01002480 break;
Michal Nazarewiczd23b0f02009-11-09 14:15:20 +01002481
2482 case FSG_STATE_INTERFACE_CHANGE:
2483 case FSG_STATE_DISCONNECT:
2484 case FSG_STATE_COMMAND_PHASE:
2485 case FSG_STATE_DATA_PHASE:
2486 case FSG_STATE_STATUS_PHASE:
2487 case FSG_STATE_IDLE:
2488 break;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01002489 }
2490}
2491
2492
2493/*-------------------------------------------------------------------------*/
2494
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01002495static int fsg_main_thread(void *common_)
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01002496{
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01002497 struct fsg_common *common = common_;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01002498
Michal Nazarewiczb73af612010-10-28 17:31:23 +02002499 /*
2500 * Allow the thread to be killed by a signal, but set the signal mask
2501 * to block everything but INT, TERM, KILL, and USR1.
2502 */
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01002503 allow_signal(SIGINT);
2504 allow_signal(SIGTERM);
2505 allow_signal(SIGKILL);
2506 allow_signal(SIGUSR1);
2507
2508 /* Allow the thread to be frozen */
2509 set_freezable();
2510
Michal Nazarewiczb73af612010-10-28 17:31:23 +02002511 /*
2512 * Arrange for userspace references to be interpreted as kernel
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01002513 * pointers. That way we can pass a kernel pointer to a routine
Michal Nazarewiczb73af612010-10-28 17:31:23 +02002514 * that expects a __user pointer and it will work okay.
2515 */
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01002516 set_fs(get_ds());
2517
2518 /* The main loop */
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01002519 while (common->state != FSG_STATE_TERMINATED) {
2520 if (exception_in_progress(common) || signal_pending(current)) {
2521 handle_exception(common);
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01002522 continue;
2523 }
2524
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01002525 if (!common->running) {
George Cherian2cf93be2013-11-08 10:50:52 +05302526 sleep_thread(common, true);
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01002527 continue;
2528 }
2529
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01002530 if (get_next_command(common))
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01002531 continue;
2532
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01002533 spin_lock_irq(&common->lock);
2534 if (!exception_in_progress(common))
2535 common->state = FSG_STATE_DATA_PHASE;
2536 spin_unlock_irq(&common->lock);
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01002537
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01002538 if (do_scsi_command(common) || finish_reply(common))
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01002539 continue;
2540
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01002541 spin_lock_irq(&common->lock);
2542 if (!exception_in_progress(common))
2543 common->state = FSG_STATE_STATUS_PHASE;
2544 spin_unlock_irq(&common->lock);
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01002545
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01002546 if (send_status(common))
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01002547 continue;
2548
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01002549 spin_lock_irq(&common->lock);
2550 if (!exception_in_progress(common))
2551 common->state = FSG_STATE_IDLE;
2552 spin_unlock_irq(&common->lock);
Michal Nazarewiczd23b0f02009-11-09 14:15:20 +01002553 }
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01002554
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01002555 spin_lock_irq(&common->lock);
2556 common->thread_task = NULL;
2557 spin_unlock_irq(&common->lock);
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01002558
Michal Nazarewicz8876f5e2010-06-21 13:57:09 +02002559 if (!common->ops || !common->ops->thread_exits
2560 || common->ops->thread_exits(common) < 0) {
Krzysztof Opasiakdd02ea52015-07-31 13:46:07 +02002561 int i;
Michal Nazarewicz7f1ee822010-01-28 13:05:26 +01002562
2563 down_write(&common->filesem);
Krzysztof Opasiakdd02ea52015-07-31 13:46:07 +02002564 for (i = 0; i < ARRAY_SIZE(common->luns); --i) {
2565 struct fsg_lun *curlun = common->luns[i];
Andrzej Pietrasiewicz8b903fd2013-09-26 14:38:18 +02002566 if (!curlun || !fsg_lun_is_open(curlun))
Michal Nazarewicz7f1ee822010-01-28 13:05:26 +01002567 continue;
2568
2569 fsg_lun_close(curlun);
2570 curlun->unit_attention_data = SS_MEDIUM_NOT_PRESENT;
2571 }
2572 up_write(&common->filesem);
2573 }
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01002574
Michal Nazarewicz00cb6362010-10-28 17:31:22 +02002575 /* Let fsg_unbind() know the thread has exited */
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01002576 complete_and_exit(&common->thread_notifier, 0);
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01002577}
2578
2579
Michal Nazarewicz9c610212009-10-28 16:57:22 +01002580/*************************** DEVICE ATTRIBUTES ***************************/
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01002581
Andrzej Pietrasiewicz6fdc5dd2013-09-26 14:38:16 +02002582static ssize_t ro_show(struct device *dev, struct device_attribute *attr, char *buf)
2583{
Andrzej Pietrasiewicz77850ae2013-10-09 10:06:03 +02002584 struct fsg_lun *curlun = fsg_lun_from_dev(dev);
2585
2586 return fsg_show_ro(curlun, buf);
Andrzej Pietrasiewicz6fdc5dd2013-09-26 14:38:16 +02002587}
2588
2589static ssize_t nofua_show(struct device *dev, struct device_attribute *attr,
2590 char *buf)
2591{
Andrzej Pietrasiewicz77850ae2013-10-09 10:06:03 +02002592 struct fsg_lun *curlun = fsg_lun_from_dev(dev);
2593
2594 return fsg_show_nofua(curlun, buf);
Andrzej Pietrasiewicz6fdc5dd2013-09-26 14:38:16 +02002595}
2596
2597static ssize_t file_show(struct device *dev, struct device_attribute *attr,
2598 char *buf)
2599{
Andrzej Pietrasiewicz77850ae2013-10-09 10:06:03 +02002600 struct fsg_lun *curlun = fsg_lun_from_dev(dev);
2601 struct rw_semaphore *filesem = dev_get_drvdata(dev);
2602
2603 return fsg_show_file(curlun, filesem, buf);
Andrzej Pietrasiewicz6fdc5dd2013-09-26 14:38:16 +02002604}
2605
2606static ssize_t ro_store(struct device *dev, struct device_attribute *attr,
2607 const char *buf, size_t count)
2608{
Andrzej Pietrasiewicz77850ae2013-10-09 10:06:03 +02002609 struct fsg_lun *curlun = fsg_lun_from_dev(dev);
2610 struct rw_semaphore *filesem = dev_get_drvdata(dev);
2611
2612 return fsg_store_ro(curlun, filesem, buf, count);
Andrzej Pietrasiewicz6fdc5dd2013-09-26 14:38:16 +02002613}
2614
2615static ssize_t nofua_store(struct device *dev, struct device_attribute *attr,
2616 const char *buf, size_t count)
2617{
Andrzej Pietrasiewicz77850ae2013-10-09 10:06:03 +02002618 struct fsg_lun *curlun = fsg_lun_from_dev(dev);
2619
2620 return fsg_store_nofua(curlun, buf, count);
Andrzej Pietrasiewicz6fdc5dd2013-09-26 14:38:16 +02002621}
2622
2623static ssize_t file_store(struct device *dev, struct device_attribute *attr,
2624 const char *buf, size_t count)
2625{
Andrzej Pietrasiewicz77850ae2013-10-09 10:06:03 +02002626 struct fsg_lun *curlun = fsg_lun_from_dev(dev);
2627 struct rw_semaphore *filesem = dev_get_drvdata(dev);
2628
2629 return fsg_store_file(curlun, filesem, buf, count);
Andrzej Pietrasiewicz6fdc5dd2013-09-26 14:38:16 +02002630}
2631
Greg Kroah-Hartmance26bd22013-08-23 16:34:43 -07002632static DEVICE_ATTR_RW(nofua);
Takashi Iwaic7b364f2015-02-05 14:36:25 +01002633/* mode wil be set in fsg_lun_attr_is_visible() */
2634static DEVICE_ATTR(ro, 0, ro_show, ro_store);
2635static DEVICE_ATTR(file, 0, file_show, file_store);
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01002636
Michal Nazarewicz9c610212009-10-28 16:57:22 +01002637/****************************** FSG COMMON ******************************/
2638
2639static void fsg_common_release(struct kref *ref);
2640
2641static void fsg_lun_release(struct device *dev)
2642{
2643 /* Nothing needs to be done */
2644}
2645
Andrzej Pietrasiewiczf3fed362013-09-26 14:38:17 +02002646void fsg_common_get(struct fsg_common *common)
Michal Nazarewicz9c610212009-10-28 16:57:22 +01002647{
2648 kref_get(&common->ref);
2649}
Andrzej Pietrasiewicz7a93d042013-10-09 10:08:28 +02002650EXPORT_SYMBOL_GPL(fsg_common_get);
Michal Nazarewicz9c610212009-10-28 16:57:22 +01002651
Andrzej Pietrasiewiczf3fed362013-09-26 14:38:17 +02002652void fsg_common_put(struct fsg_common *common)
Michal Nazarewicz9c610212009-10-28 16:57:22 +01002653{
2654 kref_put(&common->ref, fsg_common_release);
2655}
Andrzej Pietrasiewicz7a93d042013-10-09 10:08:28 +02002656EXPORT_SYMBOL_GPL(fsg_common_put);
Michal Nazarewicz9c610212009-10-28 16:57:22 +01002657
Andrzej Pietrasiewicz7a93d042013-10-09 10:08:28 +02002658static struct fsg_common *fsg_common_setup(struct fsg_common *common)
Andrzej Pietrasiewiczb24650d2013-10-09 10:05:54 +02002659{
2660 if (!common) {
2661 common = kzalloc(sizeof(*common), GFP_KERNEL);
2662 if (!common)
2663 return ERR_PTR(-ENOMEM);
2664 common->free_storage_on_release = 1;
2665 } else {
Andrzej Pietrasiewiczb24650d2013-10-09 10:05:54 +02002666 common->free_storage_on_release = 0;
2667 }
2668 init_rwsem(&common->filesem);
2669 spin_lock_init(&common->lock);
2670 kref_init(&common->ref);
2671 init_completion(&common->thread_notifier);
2672 init_waitqueue_head(&common->fsg_wait);
2673 common->state = FSG_STATE_TERMINATED;
Krzysztof Opasiakdd02ea52015-07-31 13:46:07 +02002674 memset(common->luns, 0, sizeof(common->luns));
Andrzej Pietrasiewiczb24650d2013-10-09 10:05:54 +02002675
2676 return common;
2677}
2678
Andrzej Pietrasiewiczbd528d42013-10-09 10:05:53 +02002679void fsg_common_set_sysfs(struct fsg_common *common, bool sysfs)
2680{
2681 common->sysfs = sysfs;
2682}
Andrzej Pietrasiewicz7a93d042013-10-09 10:08:28 +02002683EXPORT_SYMBOL_GPL(fsg_common_set_sysfs);
Andrzej Pietrasiewiczbd528d42013-10-09 10:05:53 +02002684
Andrzej Pietrasiewicz8502d662013-10-09 10:05:52 +02002685static void _fsg_common_free_buffers(struct fsg_buffhd *buffhds, unsigned n)
2686{
2687 if (buffhds) {
2688 struct fsg_buffhd *bh = buffhds;
2689 while (n--) {
2690 kfree(bh->buf);
2691 ++bh;
2692 }
2693 kfree(buffhds);
2694 }
2695}
2696
Andrzej Pietrasiewicz6313caa2013-10-09 10:05:55 +02002697int fsg_common_set_num_buffers(struct fsg_common *common, unsigned int n)
2698{
2699 struct fsg_buffhd *bh, *buffhds;
Felipe Balbife5a6c42016-05-12 16:06:41 +03002700 int i;
Andrzej Pietrasiewicz6313caa2013-10-09 10:05:55 +02002701
2702 buffhds = kcalloc(n, sizeof(*buffhds), GFP_KERNEL);
2703 if (!buffhds)
2704 return -ENOMEM;
2705
2706 /* Data buffers cyclic list */
2707 bh = buffhds;
2708 i = n;
2709 goto buffhds_first_it;
2710 do {
2711 bh->next = bh + 1;
2712 ++bh;
2713buffhds_first_it:
2714 bh->buf = kmalloc(FSG_BUFLEN, GFP_KERNEL);
2715 if (unlikely(!bh->buf))
2716 goto error_release;
2717 } while (--i);
2718 bh->next = buffhds;
2719
2720 _fsg_common_free_buffers(common->buffhds, common->fsg_num_buffers);
2721 common->fsg_num_buffers = n;
2722 common->buffhds = buffhds;
2723
2724 return 0;
2725
2726error_release:
2727 /*
2728 * "buf"s pointed to by heads after n - i are NULL
2729 * so releasing them won't hurt
2730 */
2731 _fsg_common_free_buffers(buffhds, n);
2732
2733 return -ENOMEM;
2734}
Andrzej Pietrasiewicz7a93d042013-10-09 10:08:28 +02002735EXPORT_SYMBOL_GPL(fsg_common_set_num_buffers);
Andrzej Pietrasiewicz6313caa2013-10-09 10:05:55 +02002736
Krzysztof Opasiak5542f582015-07-31 13:37:45 +02002737void fsg_common_remove_lun(struct fsg_lun *lun)
Andrzej Pietrasiewicz70634172013-10-09 10:05:56 +02002738{
Krzysztof Opasiak5542f582015-07-31 13:37:45 +02002739 if (device_is_registered(&lun->dev))
Andrzej Pietrasiewicz70634172013-10-09 10:05:56 +02002740 device_unregister(&lun->dev);
Andrzej Pietrasiewicz70634172013-10-09 10:05:56 +02002741 fsg_lun_close(lun);
2742 kfree(lun);
2743}
Andrzej Pietrasiewicz7a93d042013-10-09 10:08:28 +02002744EXPORT_SYMBOL_GPL(fsg_common_remove_lun);
Andrzej Pietrasiewicz70634172013-10-09 10:05:56 +02002745
2746static void _fsg_common_remove_luns(struct fsg_common *common, int n)
2747{
2748 int i;
2749
2750 for (i = 0; i < n; ++i)
2751 if (common->luns[i]) {
Krzysztof Opasiak5542f582015-07-31 13:37:45 +02002752 fsg_common_remove_lun(common->luns[i]);
Andrzej Pietrasiewicz70634172013-10-09 10:05:56 +02002753 common->luns[i] = NULL;
2754 }
2755}
2756
2757void fsg_common_remove_luns(struct fsg_common *common)
2758{
Krzysztof Opasiakdd02ea52015-07-31 13:46:07 +02002759 _fsg_common_remove_luns(common, ARRAY_SIZE(common->luns));
Andrzej Pietrasiewicz70634172013-10-09 10:05:56 +02002760}
Krzysztof Opasiakbab7a1f2015-07-20 20:15:18 +02002761EXPORT_SYMBOL_GPL(fsg_common_remove_luns);
Andrzej Pietrasiewicz70634172013-10-09 10:05:56 +02002762
Andrzej Pietrasiewicz2412fbf2013-10-09 10:06:02 +02002763void fsg_common_set_ops(struct fsg_common *common,
2764 const struct fsg_operations *ops)
2765{
2766 common->ops = ops;
2767}
Andrzej Pietrasiewicz7a93d042013-10-09 10:08:28 +02002768EXPORT_SYMBOL_GPL(fsg_common_set_ops);
Andrzej Pietrasiewicz2412fbf2013-10-09 10:06:02 +02002769
Andrzej Pietrasiewicze5eaa0d2013-10-09 10:06:01 +02002770void fsg_common_free_buffers(struct fsg_common *common)
2771{
2772 _fsg_common_free_buffers(common->buffhds, common->fsg_num_buffers);
2773 common->buffhds = NULL;
2774}
Andrzej Pietrasiewicz7a93d042013-10-09 10:08:28 +02002775EXPORT_SYMBOL_GPL(fsg_common_free_buffers);
Andrzej Pietrasiewicz70634172013-10-09 10:05:56 +02002776
Andrzej Pietrasiewicza891d7a2013-10-09 10:05:57 +02002777int fsg_common_set_cdev(struct fsg_common *common,
2778 struct usb_composite_dev *cdev, bool can_stall)
2779{
2780 struct usb_string *us;
2781
2782 common->gadget = cdev->gadget;
2783 common->ep0 = cdev->gadget->ep0;
2784 common->ep0req = cdev->req;
2785 common->cdev = cdev;
2786
2787 us = usb_gstrings_attach(cdev, fsg_strings_array,
2788 ARRAY_SIZE(fsg_strings));
2789 if (IS_ERR(us))
2790 return PTR_ERR(us);
2791
2792 fsg_intf_desc.iInterface = us[FSG_STRING_INTERFACE].id;
2793
2794 /*
2795 * Some peripheral controllers are known not to be able to
2796 * halt bulk endpoints correctly. If one of them is present,
2797 * disable stalls.
2798 */
Robert Baldygaa4cc4212015-07-28 07:20:01 +02002799 common->can_stall = can_stall &&
2800 gadget_is_stall_supported(common->gadget);
Andrzej Pietrasiewicza891d7a2013-10-09 10:05:57 +02002801
2802 return 0;
2803}
Andrzej Pietrasiewicz7a93d042013-10-09 10:08:28 +02002804EXPORT_SYMBOL_GPL(fsg_common_set_cdev);
Andrzej Pietrasiewicza891d7a2013-10-09 10:05:57 +02002805
Takashi Iwaic7b364f2015-02-05 14:36:25 +01002806static struct attribute *fsg_lun_dev_attrs[] = {
2807 &dev_attr_ro.attr,
2808 &dev_attr_file.attr,
2809 &dev_attr_nofua.attr,
2810 NULL
2811};
2812
2813static umode_t fsg_lun_dev_is_visible(struct kobject *kobj,
2814 struct attribute *attr, int idx)
Andrzej Pietrasiewiczb27c08c2013-10-09 10:05:58 +02002815{
Takashi Iwaic7b364f2015-02-05 14:36:25 +01002816 struct device *dev = kobj_to_dev(kobj);
2817 struct fsg_lun *lun = fsg_lun_from_dev(dev);
Andrzej Pietrasiewiczb27c08c2013-10-09 10:05:58 +02002818
Takashi Iwaic7b364f2015-02-05 14:36:25 +01002819 if (attr == &dev_attr_ro.attr)
2820 return lun->cdrom ? S_IRUGO : (S_IWUSR | S_IRUGO);
2821 if (attr == &dev_attr_file.attr)
2822 return lun->removable ? (S_IWUSR | S_IRUGO) : S_IRUGO;
2823 return attr->mode;
Andrzej Pietrasiewiczb27c08c2013-10-09 10:05:58 +02002824}
2825
Takashi Iwaic7b364f2015-02-05 14:36:25 +01002826static const struct attribute_group fsg_lun_dev_group = {
2827 .attrs = fsg_lun_dev_attrs,
2828 .is_visible = fsg_lun_dev_is_visible,
2829};
2830
2831static const struct attribute_group *fsg_lun_dev_groups[] = {
2832 &fsg_lun_dev_group,
2833 NULL
2834};
2835
Andrzej Pietrasiewiczb27c08c2013-10-09 10:05:58 +02002836int fsg_common_create_lun(struct fsg_common *common, struct fsg_lun_config *cfg,
2837 unsigned int id, const char *name,
2838 const char **name_pfx)
2839{
2840 struct fsg_lun *lun;
2841 char *pathbuf, *p;
2842 int rc = -ENOMEM;
2843
Krzysztof Opasiakdd02ea52015-07-31 13:46:07 +02002844 if (id >= ARRAY_SIZE(common->luns))
Andrzej Pietrasiewiczb27c08c2013-10-09 10:05:58 +02002845 return -ENODEV;
2846
2847 if (common->luns[id])
2848 return -EBUSY;
2849
2850 if (!cfg->filename && !cfg->removable) {
2851 pr_err("no file given for LUN%d\n", id);
2852 return -EINVAL;
2853 }
2854
2855 lun = kzalloc(sizeof(*lun), GFP_KERNEL);
2856 if (!lun)
2857 return -ENOMEM;
2858
2859 lun->name_pfx = name_pfx;
2860
2861 lun->cdrom = !!cfg->cdrom;
2862 lun->ro = cfg->cdrom || cfg->ro;
2863 lun->initially_ro = lun->ro;
2864 lun->removable = !!cfg->removable;
2865
2866 if (!common->sysfs) {
2867 /* we DON'T own the name!*/
2868 lun->name = name;
2869 } else {
2870 lun->dev.release = fsg_lun_release;
2871 lun->dev.parent = &common->gadget->dev;
Takashi Iwaic7b364f2015-02-05 14:36:25 +01002872 lun->dev.groups = fsg_lun_dev_groups;
Andrzej Pietrasiewiczb27c08c2013-10-09 10:05:58 +02002873 dev_set_drvdata(&lun->dev, &common->filesem);
Andrzej Pietrasiewicza1924d82013-10-25 09:09:27 +02002874 dev_set_name(&lun->dev, "%s", name);
Andrzej Pietrasiewiczb27c08c2013-10-09 10:05:58 +02002875 lun->name = dev_name(&lun->dev);
2876
Takashi Iwaic7b364f2015-02-05 14:36:25 +01002877 rc = device_register(&lun->dev);
Andrzej Pietrasiewiczb27c08c2013-10-09 10:05:58 +02002878 if (rc) {
2879 pr_info("failed to register LUN%d: %d\n", id, rc);
Takashi Iwaic7b364f2015-02-05 14:36:25 +01002880 put_device(&lun->dev);
Andrzej Pietrasiewiczb27c08c2013-10-09 10:05:58 +02002881 goto error_sysfs;
2882 }
2883 }
2884
2885 common->luns[id] = lun;
2886
2887 if (cfg->filename) {
2888 rc = fsg_lun_open(lun, cfg->filename);
2889 if (rc)
2890 goto error_lun;
2891 }
2892
2893 pathbuf = kmalloc(PATH_MAX, GFP_KERNEL);
2894 p = "(no medium)";
2895 if (fsg_lun_is_open(lun)) {
2896 p = "(error)";
2897 if (pathbuf) {
Miklos Szeredi9bf39ab2015-06-19 10:29:13 +02002898 p = file_path(lun->filp, pathbuf, PATH_MAX);
Andrzej Pietrasiewiczb27c08c2013-10-09 10:05:58 +02002899 if (IS_ERR(p))
2900 p = "(error)";
2901 }
2902 }
2903 pr_info("LUN: %s%s%sfile: %s\n",
2904 lun->removable ? "removable " : "",
2905 lun->ro ? "read only " : "",
2906 lun->cdrom ? "CD-ROM " : "",
2907 p);
2908 kfree(pathbuf);
2909
2910 return 0;
2911
2912error_lun:
Krzysztof Opasiak5542f582015-07-31 13:37:45 +02002913 if (device_is_registered(&lun->dev))
Andrzej Pietrasiewiczb27c08c2013-10-09 10:05:58 +02002914 device_unregister(&lun->dev);
Andrzej Pietrasiewiczb27c08c2013-10-09 10:05:58 +02002915 fsg_lun_close(lun);
2916 common->luns[id] = NULL;
2917error_sysfs:
2918 kfree(lun);
2919 return rc;
2920}
Andrzej Pietrasiewicz7a93d042013-10-09 10:08:28 +02002921EXPORT_SYMBOL_GPL(fsg_common_create_lun);
Andrzej Pietrasiewiczb27c08c2013-10-09 10:05:58 +02002922
2923int fsg_common_create_luns(struct fsg_common *common, struct fsg_config *cfg)
2924{
2925 char buf[8]; /* enough for 100000000 different numbers, decimal */
2926 int i, rc;
2927
Krzysztof Opasiakdd02ea52015-07-31 13:46:07 +02002928 fsg_common_remove_luns(common);
2929
2930 for (i = 0; i < cfg->nluns; ++i) {
Andrzej Pietrasiewiczb27c08c2013-10-09 10:05:58 +02002931 snprintf(buf, sizeof(buf), "lun%d", i);
2932 rc = fsg_common_create_lun(common, &cfg->luns[i], i, buf, NULL);
2933 if (rc)
2934 goto fail;
2935 }
2936
Krzysztof Opasiakdd02ea52015-07-31 13:46:07 +02002937 pr_info("Number of LUNs=%d\n", cfg->nluns);
Andrzej Pietrasiewiczb27c08c2013-10-09 10:05:58 +02002938
2939 return 0;
2940
2941fail:
2942 _fsg_common_remove_luns(common, i);
2943 return rc;
2944}
Andrzej Pietrasiewicz7a93d042013-10-09 10:08:28 +02002945EXPORT_SYMBOL_GPL(fsg_common_create_luns);
Andrzej Pietrasiewiczb27c08c2013-10-09 10:05:58 +02002946
Andrzej Pietrasiewicz23682e32013-10-09 10:05:59 +02002947void fsg_common_set_inquiry_string(struct fsg_common *common, const char *vn,
2948 const char *pn)
2949{
2950 int i;
2951
2952 /* Prepare inquiryString */
2953 i = get_default_bcdDevice();
2954 snprintf(common->inquiry_string, sizeof(common->inquiry_string),
2955 "%-8s%-16s%04x", vn ?: "Linux",
2956 /* Assume product name dependent on the first LUN */
2957 pn ?: ((*common->luns)->cdrom
2958 ? "File-CD Gadget"
2959 : "File-Stor Gadget"),
2960 i);
2961}
Andrzej Pietrasiewicz7a93d042013-10-09 10:08:28 +02002962EXPORT_SYMBOL_GPL(fsg_common_set_inquiry_string);
Andrzej Pietrasiewicz23682e32013-10-09 10:05:59 +02002963
Michal Nazarewicz9c610212009-10-28 16:57:22 +01002964static void fsg_common_release(struct kref *ref)
2965{
Michal Nazarewiczb9e00082010-05-12 12:51:13 +02002966 struct fsg_common *common = container_of(ref, struct fsg_common, ref);
Krzysztof Opasiakdd02ea52015-07-31 13:46:07 +02002967 int i;
Michal Nazarewicz9c610212009-10-28 16:57:22 +01002968
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01002969 /* If the thread isn't already dead, tell it to exit now */
2970 if (common->state != FSG_STATE_TERMINATED) {
2971 raise_exception(common, FSG_STATE_EXIT);
2972 wait_for_completion(&common->thread_notifier);
Michal Nazarewiczf78bbca2016-04-08 10:24:11 +02002973 common->thread_task = NULL;
Michal Nazarewicz8ea864c2009-11-09 14:15:24 +01002974 }
2975
Krzysztof Opasiakdd02ea52015-07-31 13:46:07 +02002976 for (i = 0; i < ARRAY_SIZE(common->luns); ++i) {
2977 struct fsg_lun *lun = common->luns[i];
2978 if (!lun)
2979 continue;
2980 fsg_lun_close(lun);
Krzysztof Opasiak5542f582015-07-31 13:37:45 +02002981 if (device_is_registered(&lun->dev))
Krzysztof Opasiakdd02ea52015-07-31 13:46:07 +02002982 device_unregister(&lun->dev);
2983 kfree(lun);
Michal Nazarewicz9c610212009-10-28 16:57:22 +01002984 }
2985
Andrzej Pietrasiewicz8502d662013-10-09 10:05:52 +02002986 _fsg_common_free_buffers(common->buffhds, common->fsg_num_buffers);
Michal Nazarewicz9c610212009-10-28 16:57:22 +01002987 if (common->free_storage_on_release)
2988 kfree(common);
2989}
2990
2991
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01002992/*-------------------------------------------------------------------------*/
2993
Michal Nazarewicz28824b12010-05-05 12:53:13 +02002994static int fsg_bind(struct usb_configuration *c, struct usb_function *f)
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01002995{
Michal Nazarewiczd23b0f02009-11-09 14:15:20 +01002996 struct fsg_dev *fsg = fsg_from_func(f);
Krzysztof Opasiakdd02ea52015-07-31 13:46:07 +02002997 struct fsg_common *common = fsg->common;
Michal Nazarewiczd23b0f02009-11-09 14:15:20 +01002998 struct usb_gadget *gadget = c->cdev->gadget;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01002999 int i;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01003000 struct usb_ep *ep;
Sebastian Andrzej Siewior10287ba2012-10-22 22:15:06 +02003001 unsigned max_burst;
3002 int ret;
Andrzej Pietrasiewicze5eaa0d2013-10-09 10:06:01 +02003003 struct fsg_opts *opts;
Andrzej Pietrasiewicz7a93d042013-10-09 10:08:28 +02003004
Krzysztof Opasiakdd02ea52015-07-31 13:46:07 +02003005 /* Don't allow to bind if we don't have at least one LUN */
3006 ret = _fsg_common_get_max_lun(common);
3007 if (ret < 0) {
3008 pr_err("There should be at least one LUN.\n");
3009 return -EINVAL;
3010 }
3011
Andrzej Pietrasiewicze5eaa0d2013-10-09 10:06:01 +02003012 opts = fsg_opts_from_func_inst(f->fi);
3013 if (!opts->no_configfs) {
3014 ret = fsg_common_set_cdev(fsg->common, c->cdev,
3015 fsg->common->can_stall);
3016 if (ret)
3017 return ret;
Felipe Balbif91d2f42013-11-25 11:07:46 -06003018 fsg_common_set_inquiry_string(fsg->common, NULL, NULL);
Michal Nazarewiczf78bbca2016-04-08 10:24:11 +02003019 }
3020
3021 if (!common->thread_task) {
3022 common->state = FSG_STATE_IDLE;
3023 common->thread_task =
3024 kthread_create(fsg_main_thread, common, "file-storage");
3025 if (IS_ERR(common->thread_task)) {
3026 int ret = PTR_ERR(common->thread_task);
3027 common->thread_task = NULL;
3028 common->state = FSG_STATE_TERMINATED;
Andrzej Pietrasiewicze5eaa0d2013-10-09 10:06:01 +02003029 return ret;
Michal Nazarewiczf78bbca2016-04-08 10:24:11 +02003030 }
3031 DBG(common, "I/O thread pid: %d\n",
3032 task_pid_nr(common->thread_task));
3033 wake_up_process(common->thread_task);
Andrzej Pietrasiewicze5eaa0d2013-10-09 10:06:01 +02003034 }
Andrzej Pietrasiewicze5eaa0d2013-10-09 10:06:01 +02003035
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01003036 fsg->gadget = gadget;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01003037
Michal Nazarewiczd23b0f02009-11-09 14:15:20 +01003038 /* New interface */
3039 i = usb_interface_id(c, f);
3040 if (i < 0)
Sanjay Singh Rawat8078f312015-07-22 16:29:46 +05303041 goto fail;
Michal Nazarewiczd23b0f02009-11-09 14:15:20 +01003042 fsg_intf_desc.bInterfaceNumber = i;
3043 fsg->interface_number = i;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01003044
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01003045 /* Find all the endpoints we will use */
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01003046 ep = usb_ep_autoconfig(gadget, &fsg_fs_bulk_in_desc);
3047 if (!ep)
3048 goto autoconf_fail;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01003049 fsg->bulk_in = ep;
3050
3051 ep = usb_ep_autoconfig(gadget, &fsg_fs_bulk_out_desc);
3052 if (!ep)
3053 goto autoconf_fail;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01003054 fsg->bulk_out = ep;
3055
Sebastian Andrzej Siewior10287ba2012-10-22 22:15:06 +02003056 /* Assume endpoint addresses are the same for both speeds */
3057 fsg_hs_bulk_in_desc.bEndpointAddress =
3058 fsg_fs_bulk_in_desc.bEndpointAddress;
3059 fsg_hs_bulk_out_desc.bEndpointAddress =
3060 fsg_fs_bulk_out_desc.bEndpointAddress;
Michal Nazarewicze5fd39d2010-06-25 16:29:26 +02003061
Sebastian Andrzej Siewior10287ba2012-10-22 22:15:06 +02003062 /* Calculate bMaxBurst, we know packet size is 1024 */
3063 max_burst = min_t(unsigned, FSG_BUFLEN / 1024, 15);
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01003064
Sebastian Andrzej Siewior10287ba2012-10-22 22:15:06 +02003065 fsg_ss_bulk_in_desc.bEndpointAddress =
3066 fsg_fs_bulk_in_desc.bEndpointAddress;
3067 fsg_ss_bulk_in_comp_desc.bMaxBurst = max_burst;
Felipe Balbi4bb99b72011-08-03 14:33:27 +03003068
Sebastian Andrzej Siewior10287ba2012-10-22 22:15:06 +02003069 fsg_ss_bulk_out_desc.bEndpointAddress =
3070 fsg_fs_bulk_out_desc.bEndpointAddress;
3071 fsg_ss_bulk_out_comp_desc.bMaxBurst = max_burst;
Felipe Balbi4bb99b72011-08-03 14:33:27 +03003072
Sebastian Andrzej Siewior10287ba2012-10-22 22:15:06 +02003073 ret = usb_assign_descriptors(f, fsg_fs_function, fsg_hs_function,
John Youn59a3ced2016-02-05 17:07:58 -08003074 fsg_ss_function, fsg_ss_function);
Sebastian Andrzej Siewior10287ba2012-10-22 22:15:06 +02003075 if (ret)
3076 goto autoconf_fail;
Felipe Balbi4bb99b72011-08-03 14:33:27 +03003077
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01003078 return 0;
3079
3080autoconf_fail:
3081 ERROR(fsg, "unable to autoconfigure all endpoints\n");
Sanjay Singh Rawat8078f312015-07-22 16:29:46 +05303082 i = -ENOTSUPP;
3083fail:
3084 /* terminate the thread */
3085 if (fsg->common->state != FSG_STATE_TERMINATED) {
3086 raise_exception(fsg->common, FSG_STATE_EXIT);
3087 wait_for_completion(&fsg->common->thread_notifier);
3088 }
3089 return i;
Michal Nazarewiczd5e2b672009-10-28 16:57:18 +01003090}
3091
Andrzej Pietrasiewicze5eaa0d2013-10-09 10:06:01 +02003092/****************************** ALLOCATE FUNCTION *************************/
3093
3094static void fsg_unbind(struct usb_configuration *c, struct usb_function *f)
3095{
3096 struct fsg_dev *fsg = fsg_from_func(f);
3097 struct fsg_common *common = fsg->common;
3098
3099 DBG(fsg, "unbind\n");
3100 if (fsg->common->fsg == fsg) {
3101 fsg->common->new_fsg = NULL;
3102 raise_exception(fsg->common, FSG_STATE_CONFIG_CHANGE);
3103 /* FIXME: make interruptible or killable somehow? */
3104 wait_event(common->fsg_wait, common->fsg != fsg);
3105 }
3106
Andrzej Pietrasiewicze5eaa0d2013-10-09 10:06:01 +02003107 usb_free_all_descriptors(&fsg->function);
Andrzej Pietrasiewicze5eaa0d2013-10-09 10:06:01 +02003108}
3109
Andrzej Pietrasiewiczef0aa4b2013-10-09 10:06:05 +02003110static inline struct fsg_lun_opts *to_fsg_lun_opts(struct config_item *item)
3111{
3112 return container_of(to_config_group(item), struct fsg_lun_opts, group);
3113}
3114
3115static inline struct fsg_opts *to_fsg_opts(struct config_item *item)
3116{
3117 return container_of(to_config_group(item), struct fsg_opts,
3118 func_inst.group);
3119}
3120
Andrzej Pietrasiewiczef0aa4b2013-10-09 10:06:05 +02003121static void fsg_lun_attr_release(struct config_item *item)
3122{
3123 struct fsg_lun_opts *lun_opts;
3124
3125 lun_opts = to_fsg_lun_opts(item);
3126 kfree(lun_opts);
3127}
3128
3129static struct configfs_item_operations fsg_lun_item_ops = {
Andrzej Pietrasiewicz5bb72892013-10-16 08:34:51 +02003130 .release = fsg_lun_attr_release,
Andrzej Pietrasiewiczef0aa4b2013-10-09 10:06:05 +02003131};
3132
Christoph Hellwig4a90cb22015-10-03 15:32:47 +02003133static ssize_t fsg_lun_opts_file_show(struct config_item *item, char *page)
Andrzej Pietrasiewiczef0aa4b2013-10-09 10:06:05 +02003134{
Christoph Hellwig4a90cb22015-10-03 15:32:47 +02003135 struct fsg_lun_opts *opts = to_fsg_lun_opts(item);
3136 struct fsg_opts *fsg_opts = to_fsg_opts(opts->group.cg_item.ci_parent);
Andrzej Pietrasiewiczef0aa4b2013-10-09 10:06:05 +02003137
3138 return fsg_show_file(opts->lun, &fsg_opts->common->filesem, page);
3139}
3140
Christoph Hellwig4a90cb22015-10-03 15:32:47 +02003141static ssize_t fsg_lun_opts_file_store(struct config_item *item,
Andrzej Pietrasiewiczef0aa4b2013-10-09 10:06:05 +02003142 const char *page, size_t len)
3143{
Christoph Hellwig4a90cb22015-10-03 15:32:47 +02003144 struct fsg_lun_opts *opts = to_fsg_lun_opts(item);
3145 struct fsg_opts *fsg_opts = to_fsg_opts(opts->group.cg_item.ci_parent);
Andrzej Pietrasiewiczef0aa4b2013-10-09 10:06:05 +02003146
3147 return fsg_store_file(opts->lun, &fsg_opts->common->filesem, page, len);
3148}
3149
Christoph Hellwig4a90cb22015-10-03 15:32:47 +02003150CONFIGFS_ATTR(fsg_lun_opts_, file);
Andrzej Pietrasiewiczef0aa4b2013-10-09 10:06:05 +02003151
Christoph Hellwig4a90cb22015-10-03 15:32:47 +02003152static ssize_t fsg_lun_opts_ro_show(struct config_item *item, char *page)
Andrzej Pietrasiewiczef0aa4b2013-10-09 10:06:05 +02003153{
Christoph Hellwig4a90cb22015-10-03 15:32:47 +02003154 return fsg_show_ro(to_fsg_lun_opts(item)->lun, page);
Andrzej Pietrasiewiczef0aa4b2013-10-09 10:06:05 +02003155}
3156
Christoph Hellwig4a90cb22015-10-03 15:32:47 +02003157static ssize_t fsg_lun_opts_ro_store(struct config_item *item,
Andrzej Pietrasiewiczef0aa4b2013-10-09 10:06:05 +02003158 const char *page, size_t len)
3159{
Christoph Hellwig4a90cb22015-10-03 15:32:47 +02003160 struct fsg_lun_opts *opts = to_fsg_lun_opts(item);
3161 struct fsg_opts *fsg_opts = to_fsg_opts(opts->group.cg_item.ci_parent);
Andrzej Pietrasiewiczef0aa4b2013-10-09 10:06:05 +02003162
3163 return fsg_store_ro(opts->lun, &fsg_opts->common->filesem, page, len);
3164}
3165
Christoph Hellwig4a90cb22015-10-03 15:32:47 +02003166CONFIGFS_ATTR(fsg_lun_opts_, ro);
Andrzej Pietrasiewiczef0aa4b2013-10-09 10:06:05 +02003167
Christoph Hellwig4a90cb22015-10-03 15:32:47 +02003168static ssize_t fsg_lun_opts_removable_show(struct config_item *item,
Andrzej Pietrasiewiczef0aa4b2013-10-09 10:06:05 +02003169 char *page)
3170{
Christoph Hellwig4a90cb22015-10-03 15:32:47 +02003171 return fsg_show_removable(to_fsg_lun_opts(item)->lun, page);
Andrzej Pietrasiewiczef0aa4b2013-10-09 10:06:05 +02003172}
3173
Christoph Hellwig4a90cb22015-10-03 15:32:47 +02003174static ssize_t fsg_lun_opts_removable_store(struct config_item *item,
Andrzej Pietrasiewiczef0aa4b2013-10-09 10:06:05 +02003175 const char *page, size_t len)
3176{
Christoph Hellwig4a90cb22015-10-03 15:32:47 +02003177 return fsg_store_removable(to_fsg_lun_opts(item)->lun, page, len);
Andrzej Pietrasiewiczef0aa4b2013-10-09 10:06:05 +02003178}
3179
Christoph Hellwig4a90cb22015-10-03 15:32:47 +02003180CONFIGFS_ATTR(fsg_lun_opts_, removable);
Andrzej Pietrasiewiczef0aa4b2013-10-09 10:06:05 +02003181
Christoph Hellwig4a90cb22015-10-03 15:32:47 +02003182static ssize_t fsg_lun_opts_cdrom_show(struct config_item *item, char *page)
Andrzej Pietrasiewiczef0aa4b2013-10-09 10:06:05 +02003183{
Christoph Hellwig4a90cb22015-10-03 15:32:47 +02003184 return fsg_show_cdrom(to_fsg_lun_opts(item)->lun, page);
Andrzej Pietrasiewiczef0aa4b2013-10-09 10:06:05 +02003185}
3186
Christoph Hellwig4a90cb22015-10-03 15:32:47 +02003187static ssize_t fsg_lun_opts_cdrom_store(struct config_item *item,
Andrzej Pietrasiewiczef0aa4b2013-10-09 10:06:05 +02003188 const char *page, size_t len)
3189{
Christoph Hellwig4a90cb22015-10-03 15:32:47 +02003190 struct fsg_lun_opts *opts = to_fsg_lun_opts(item);
3191 struct fsg_opts *fsg_opts = to_fsg_opts(opts->group.cg_item.ci_parent);
Andrzej Pietrasiewiczb8798632013-10-15 08:33:13 +02003192
3193 return fsg_store_cdrom(opts->lun, &fsg_opts->common->filesem, page,
3194 len);
Andrzej Pietrasiewiczef0aa4b2013-10-09 10:06:05 +02003195}
3196
Christoph Hellwig4a90cb22015-10-03 15:32:47 +02003197CONFIGFS_ATTR(fsg_lun_opts_, cdrom);
Andrzej Pietrasiewiczef0aa4b2013-10-09 10:06:05 +02003198
Christoph Hellwig4a90cb22015-10-03 15:32:47 +02003199static ssize_t fsg_lun_opts_nofua_show(struct config_item *item, char *page)
Andrzej Pietrasiewiczef0aa4b2013-10-09 10:06:05 +02003200{
Christoph Hellwig4a90cb22015-10-03 15:32:47 +02003201 return fsg_show_nofua(to_fsg_lun_opts(item)->lun, page);
Andrzej Pietrasiewiczef0aa4b2013-10-09 10:06:05 +02003202}
3203
Christoph Hellwig4a90cb22015-10-03 15:32:47 +02003204static ssize_t fsg_lun_opts_nofua_store(struct config_item *item,
Andrzej Pietrasiewiczef0aa4b2013-10-09 10:06:05 +02003205 const char *page, size_t len)
3206{
Christoph Hellwig4a90cb22015-10-03 15:32:47 +02003207 return fsg_store_nofua(to_fsg_lun_opts(item)->lun, page, len);
Andrzej Pietrasiewiczef0aa4b2013-10-09 10:06:05 +02003208}
3209
Christoph Hellwig4a90cb22015-10-03 15:32:47 +02003210CONFIGFS_ATTR(fsg_lun_opts_, nofua);
Andrzej Pietrasiewiczef0aa4b2013-10-09 10:06:05 +02003211
3212static struct configfs_attribute *fsg_lun_attrs[] = {
Christoph Hellwig4a90cb22015-10-03 15:32:47 +02003213 &fsg_lun_opts_attr_file,
3214 &fsg_lun_opts_attr_ro,
3215 &fsg_lun_opts_attr_removable,
3216 &fsg_lun_opts_attr_cdrom,
3217 &fsg_lun_opts_attr_nofua,
Andrzej Pietrasiewiczef0aa4b2013-10-09 10:06:05 +02003218 NULL,
3219};
3220
3221static struct config_item_type fsg_lun_type = {
3222 .ct_item_ops = &fsg_lun_item_ops,
3223 .ct_attrs = fsg_lun_attrs,
3224 .ct_owner = THIS_MODULE,
3225};
3226
Andrzej Pietrasiewiczef0aa4b2013-10-09 10:06:05 +02003227static struct config_group *fsg_lun_make(struct config_group *group,
3228 const char *name)
3229{
3230 struct fsg_lun_opts *opts;
3231 struct fsg_opts *fsg_opts;
3232 struct fsg_lun_config config;
3233 char *num_str;
3234 u8 num;
3235 int ret;
3236
3237 num_str = strchr(name, '.');
3238 if (!num_str) {
3239 pr_err("Unable to locate . in LUN.NUMBER\n");
3240 return ERR_PTR(-EINVAL);
3241 }
3242 num_str++;
3243
3244 ret = kstrtou8(num_str, 0, &num);
3245 if (ret)
3246 return ERR_PTR(ret);
3247
3248 fsg_opts = to_fsg_opts(&group->cg_item);
3249 if (num >= FSG_MAX_LUNS)
Andrzej Pietrasiewicz5bb72892013-10-16 08:34:51 +02003250 return ERR_PTR(-ERANGE);
3251
Andrzej Pietrasiewiczef0aa4b2013-10-09 10:06:05 +02003252 mutex_lock(&fsg_opts->lock);
3253 if (fsg_opts->refcnt || fsg_opts->common->luns[num]) {
3254 ret = -EBUSY;
3255 goto out;
3256 }
3257
3258 opts = kzalloc(sizeof(*opts), GFP_KERNEL);
3259 if (!opts) {
3260 ret = -ENOMEM;
3261 goto out;
3262 }
3263
3264 memset(&config, 0, sizeof(config));
3265 config.removable = true;
3266
Andrzej Pietrasiewiczef0aa4b2013-10-09 10:06:05 +02003267 ret = fsg_common_create_lun(fsg_opts->common, &config, num, name,
3268 (const char **)&group->cg_item.ci_name);
3269 if (ret) {
3270 kfree(opts);
3271 goto out;
3272 }
3273 opts->lun = fsg_opts->common->luns[num];
3274 opts->lun_id = num;
3275 mutex_unlock(&fsg_opts->lock);
3276
3277 config_group_init_type_name(&opts->group, name, &fsg_lun_type);
3278
3279 return &opts->group;
3280out:
3281 mutex_unlock(&fsg_opts->lock);
3282 return ERR_PTR(ret);
3283}
3284
3285static void fsg_lun_drop(struct config_group *group, struct config_item *item)
3286{
3287 struct fsg_lun_opts *lun_opts;
3288 struct fsg_opts *fsg_opts;
3289
3290 lun_opts = to_fsg_lun_opts(item);
3291 fsg_opts = to_fsg_opts(&group->cg_item);
3292
3293 mutex_lock(&fsg_opts->lock);
3294 if (fsg_opts->refcnt) {
3295 struct config_item *gadget;
3296
3297 gadget = group->cg_item.ci_parent->ci_parent;
3298 unregister_gadget_item(gadget);
3299 }
3300
Krzysztof Opasiak5542f582015-07-31 13:37:45 +02003301 fsg_common_remove_lun(lun_opts->lun);
Andrzej Pietrasiewiczef0aa4b2013-10-09 10:06:05 +02003302 fsg_opts->common->luns[lun_opts->lun_id] = NULL;
3303 lun_opts->lun_id = 0;
3304 mutex_unlock(&fsg_opts->lock);
3305
3306 config_item_put(item);
3307}
3308
Andrzej Pietrasiewiczef0aa4b2013-10-09 10:06:05 +02003309static void fsg_attr_release(struct config_item *item)
3310{
3311 struct fsg_opts *opts = to_fsg_opts(item);
3312
3313 usb_put_function_instance(&opts->func_inst);
3314}
3315
3316static struct configfs_item_operations fsg_item_ops = {
Andrzej Pietrasiewicz5bb72892013-10-16 08:34:51 +02003317 .release = fsg_attr_release,
Andrzej Pietrasiewiczef0aa4b2013-10-09 10:06:05 +02003318};
3319
Christoph Hellwig4a90cb22015-10-03 15:32:47 +02003320static ssize_t fsg_opts_stall_show(struct config_item *item, char *page)
Andrzej Pietrasiewiczef0aa4b2013-10-09 10:06:05 +02003321{
Christoph Hellwig4a90cb22015-10-03 15:32:47 +02003322 struct fsg_opts *opts = to_fsg_opts(item);
Andrzej Pietrasiewiczef0aa4b2013-10-09 10:06:05 +02003323 int result;
3324
3325 mutex_lock(&opts->lock);
3326 result = sprintf(page, "%d", opts->common->can_stall);
3327 mutex_unlock(&opts->lock);
3328
3329 return result;
3330}
3331
Christoph Hellwig4a90cb22015-10-03 15:32:47 +02003332static ssize_t fsg_opts_stall_store(struct config_item *item, const char *page,
Andrzej Pietrasiewiczef0aa4b2013-10-09 10:06:05 +02003333 size_t len)
3334{
Christoph Hellwig4a90cb22015-10-03 15:32:47 +02003335 struct fsg_opts *opts = to_fsg_opts(item);
Andrzej Pietrasiewiczef0aa4b2013-10-09 10:06:05 +02003336 int ret;
Andrzej Pietrasiewicz5bb72892013-10-16 08:34:51 +02003337 bool stall;
Andrzej Pietrasiewiczef0aa4b2013-10-09 10:06:05 +02003338
3339 mutex_lock(&opts->lock);
Andrzej Pietrasiewicz5bb72892013-10-16 08:34:51 +02003340
Andrzej Pietrasiewiczef0aa4b2013-10-09 10:06:05 +02003341 if (opts->refcnt) {
Andrzej Pietrasiewicz5bb72892013-10-16 08:34:51 +02003342 mutex_unlock(&opts->lock);
3343 return -EBUSY;
Andrzej Pietrasiewiczef0aa4b2013-10-09 10:06:05 +02003344 }
Andrzej Pietrasiewiczef0aa4b2013-10-09 10:06:05 +02003345
Andrzej Pietrasiewicz5bb72892013-10-16 08:34:51 +02003346 ret = strtobool(page, &stall);
3347 if (!ret) {
3348 opts->common->can_stall = stall;
3349 ret = len;
3350 }
Andrzej Pietrasiewiczef0aa4b2013-10-09 10:06:05 +02003351
Andrzej Pietrasiewiczef0aa4b2013-10-09 10:06:05 +02003352 mutex_unlock(&opts->lock);
Andrzej Pietrasiewicz5bb72892013-10-16 08:34:51 +02003353
Andrzej Pietrasiewiczef0aa4b2013-10-09 10:06:05 +02003354 return ret;
3355}
3356
Christoph Hellwig4a90cb22015-10-03 15:32:47 +02003357CONFIGFS_ATTR(fsg_opts_, stall);
Andrzej Pietrasiewiczef0aa4b2013-10-09 10:06:05 +02003358
3359#ifdef CONFIG_USB_GADGET_DEBUG_FILES
Christoph Hellwig4a90cb22015-10-03 15:32:47 +02003360static ssize_t fsg_opts_num_buffers_show(struct config_item *item, char *page)
Andrzej Pietrasiewiczef0aa4b2013-10-09 10:06:05 +02003361{
Christoph Hellwig4a90cb22015-10-03 15:32:47 +02003362 struct fsg_opts *opts = to_fsg_opts(item);
Andrzej Pietrasiewiczef0aa4b2013-10-09 10:06:05 +02003363 int result;
3364
3365 mutex_lock(&opts->lock);
3366 result = sprintf(page, "%d", opts->common->fsg_num_buffers);
3367 mutex_unlock(&opts->lock);
3368
3369 return result;
3370}
3371
Christoph Hellwig4a90cb22015-10-03 15:32:47 +02003372static ssize_t fsg_opts_num_buffers_store(struct config_item *item,
Andrzej Pietrasiewiczef0aa4b2013-10-09 10:06:05 +02003373 const char *page, size_t len)
3374{
Christoph Hellwig4a90cb22015-10-03 15:32:47 +02003375 struct fsg_opts *opts = to_fsg_opts(item);
Andrzej Pietrasiewiczef0aa4b2013-10-09 10:06:05 +02003376 int ret;
3377 u8 num;
3378
3379 mutex_lock(&opts->lock);
3380 if (opts->refcnt) {
3381 ret = -EBUSY;
3382 goto end;
3383 }
3384 ret = kstrtou8(page, 0, &num);
3385 if (ret)
3386 goto end;
3387
Andrzej Pietrasiewiczef0aa4b2013-10-09 10:06:05 +02003388 fsg_common_set_num_buffers(opts->common, num);
3389 ret = len;
3390
3391end:
3392 mutex_unlock(&opts->lock);
3393 return ret;
3394}
3395
Christoph Hellwig4a90cb22015-10-03 15:32:47 +02003396CONFIGFS_ATTR(fsg_opts_, num_buffers);
Andrzej Pietrasiewiczef0aa4b2013-10-09 10:06:05 +02003397#endif
3398
3399static struct configfs_attribute *fsg_attrs[] = {
Christoph Hellwig4a90cb22015-10-03 15:32:47 +02003400 &fsg_opts_attr_stall,
Andrzej Pietrasiewiczef0aa4b2013-10-09 10:06:05 +02003401#ifdef CONFIG_USB_GADGET_DEBUG_FILES
Christoph Hellwig4a90cb22015-10-03 15:32:47 +02003402 &fsg_opts_attr_num_buffers,
Andrzej Pietrasiewiczef0aa4b2013-10-09 10:06:05 +02003403#endif
3404 NULL,
3405};
3406
3407static struct configfs_group_operations fsg_group_ops = {
3408 .make_group = fsg_lun_make,
3409 .drop_item = fsg_lun_drop,
3410};
3411
3412static struct config_item_type fsg_func_type = {
3413 .ct_item_ops = &fsg_item_ops,
3414 .ct_group_ops = &fsg_group_ops,
3415 .ct_attrs = fsg_attrs,
3416 .ct_owner = THIS_MODULE,
3417};
3418
Andrzej Pietrasiewicze5eaa0d2013-10-09 10:06:01 +02003419static void fsg_free_inst(struct usb_function_instance *fi)
3420{
3421 struct fsg_opts *opts;
3422
3423 opts = fsg_opts_from_func_inst(fi);
3424 fsg_common_put(opts->common);
3425 kfree(opts);
3426}
3427
3428static struct usb_function_instance *fsg_alloc_inst(void)
3429{
3430 struct fsg_opts *opts;
Andrzej Pietrasiewiczef0aa4b2013-10-09 10:06:05 +02003431 struct fsg_lun_config config;
Andrzej Pietrasiewicze5eaa0d2013-10-09 10:06:01 +02003432 int rc;
3433
3434 opts = kzalloc(sizeof(*opts), GFP_KERNEL);
3435 if (!opts)
3436 return ERR_PTR(-ENOMEM);
Andrzej Pietrasiewiczef0aa4b2013-10-09 10:06:05 +02003437 mutex_init(&opts->lock);
Andrzej Pietrasiewicze5eaa0d2013-10-09 10:06:01 +02003438 opts->func_inst.free_func_inst = fsg_free_inst;
Andrzej Pietrasiewicz7a93d042013-10-09 10:08:28 +02003439 opts->common = fsg_common_setup(opts->common);
Andrzej Pietrasiewicze5eaa0d2013-10-09 10:06:01 +02003440 if (IS_ERR(opts->common)) {
3441 rc = PTR_ERR(opts->common);
3442 goto release_opts;
3443 }
Andrzej Pietrasiewicze5eaa0d2013-10-09 10:06:01 +02003444
3445 rc = fsg_common_set_num_buffers(opts->common,
3446 CONFIG_USB_GADGET_STORAGE_NUM_BUFFERS);
3447 if (rc)
Krzysztof Opasiakdd02ea52015-07-31 13:46:07 +02003448 goto release_opts;
Andrzej Pietrasiewicze5eaa0d2013-10-09 10:06:01 +02003449
3450 pr_info(FSG_DRIVER_DESC ", version: " FSG_DRIVER_VERSION "\n");
3451
Andrzej Pietrasiewiczef0aa4b2013-10-09 10:06:05 +02003452 memset(&config, 0, sizeof(config));
3453 config.removable = true;
3454 rc = fsg_common_create_lun(opts->common, &config, 0, "lun.0",
3455 (const char **)&opts->func_inst.group.cg_item.ci_name);
Krzysztof Opasiak903588a2015-07-20 20:15:17 +02003456 if (rc)
3457 goto release_buffers;
3458
Andrzej Pietrasiewiczef0aa4b2013-10-09 10:06:05 +02003459 opts->lun0.lun = opts->common->luns[0];
3460 opts->lun0.lun_id = 0;
Andrzej Pietrasiewiczef0aa4b2013-10-09 10:06:05 +02003461
3462 config_group_init_type_name(&opts->func_inst.group, "", &fsg_func_type);
3463
Christoph Hellwig1ae16022016-02-26 11:02:14 +01003464 config_group_init_type_name(&opts->lun0.group, "lun.0", &fsg_lun_type);
3465 configfs_add_default_group(&opts->lun0.group, &opts->func_inst.group);
3466
Andrzej Pietrasiewicze5eaa0d2013-10-09 10:06:01 +02003467 return &opts->func_inst;
3468
Krzysztof Opasiak903588a2015-07-20 20:15:17 +02003469release_buffers:
3470 fsg_common_free_buffers(opts->common);
Andrzej Pietrasiewicze5eaa0d2013-10-09 10:06:01 +02003471release_opts:
3472 kfree(opts);
3473 return ERR_PTR(rc);
3474}
3475
3476static void fsg_free(struct usb_function *f)
3477{
3478 struct fsg_dev *fsg;
Andrzej Pietrasiewiczef0aa4b2013-10-09 10:06:05 +02003479 struct fsg_opts *opts;
Andrzej Pietrasiewicze5eaa0d2013-10-09 10:06:01 +02003480
3481 fsg = container_of(f, struct fsg_dev, function);
Andrzej Pietrasiewiczef0aa4b2013-10-09 10:06:05 +02003482 opts = container_of(f->fi, struct fsg_opts, func_inst);
3483
3484 mutex_lock(&opts->lock);
3485 opts->refcnt--;
3486 mutex_unlock(&opts->lock);
Andrzej Pietrasiewicze5eaa0d2013-10-09 10:06:01 +02003487
3488 kfree(fsg);
3489}
3490
3491static struct usb_function *fsg_alloc(struct usb_function_instance *fi)
3492{
3493 struct fsg_opts *opts = fsg_opts_from_func_inst(fi);
3494 struct fsg_common *common = opts->common;
3495 struct fsg_dev *fsg;
3496
3497 fsg = kzalloc(sizeof(*fsg), GFP_KERNEL);
3498 if (unlikely(!fsg))
3499 return ERR_PTR(-ENOMEM);
3500
Andrzej Pietrasiewiczef0aa4b2013-10-09 10:06:05 +02003501 mutex_lock(&opts->lock);
3502 opts->refcnt++;
3503 mutex_unlock(&opts->lock);
Michal Nazarewicz8515bac2015-06-19 23:56:34 +02003504
Andrzej Pietrasiewicze5eaa0d2013-10-09 10:06:01 +02003505 fsg->function.name = FSG_DRIVER_DESC;
3506 fsg->function.bind = fsg_bind;
3507 fsg->function.unbind = fsg_unbind;
3508 fsg->function.setup = fsg_setup;
3509 fsg->function.set_alt = fsg_set_alt;
3510 fsg->function.disable = fsg_disable;
3511 fsg->function.free_func = fsg_free;
3512
3513 fsg->common = common;
3514
3515 return &fsg->function;
3516}
3517
3518DECLARE_USB_FUNCTION_INIT(mass_storage, fsg_alloc_inst, fsg_alloc);
3519MODULE_LICENSE("GPL");
3520MODULE_AUTHOR("Michal Nazarewicz");
3521
Michal Nazarewicz481e4922009-11-09 14:15:21 +01003522/************************* Module parameters *************************/
3523
Michal Nazarewicz481e4922009-11-09 14:15:21 +01003524
Andrzej Pietrasiewiczf3fed362013-09-26 14:38:17 +02003525void fsg_config_from_params(struct fsg_config *cfg,
Andrzej Pietrasiewicz6fdc5dd2013-09-26 14:38:16 +02003526 const struct fsg_module_parameters *params,
3527 unsigned int fsg_num_buffers)
Michal Nazarewicz481e4922009-11-09 14:15:21 +01003528{
3529 struct fsg_lun_config *lun;
Michal Nazarewiczd26a6aa2009-11-09 14:15:23 +01003530 unsigned i;
Michal Nazarewicz481e4922009-11-09 14:15:21 +01003531
3532 /* Configure LUNs */
Michal Nazarewiczd26a6aa2009-11-09 14:15:23 +01003533 cfg->nluns =
3534 min(params->luns ?: (params->file_count ?: 1u),
3535 (unsigned)FSG_MAX_LUNS);
3536 for (i = 0, lun = cfg->luns; i < cfg->nluns; ++i, ++lun) {
Michal Nazarewicz481e4922009-11-09 14:15:21 +01003537 lun->ro = !!params->ro[i];
3538 lun->cdrom = !!params->cdrom[i];
Michal Nazarewiczfa84c572012-05-26 16:32:39 -07003539 lun->removable = !!params->removable[i];
Michal Nazarewicz481e4922009-11-09 14:15:21 +01003540 lun->filename =
3541 params->file_count > i && params->file[i][0]
3542 ? params->file[i]
Jingoo Han136c4892013-08-05 12:11:05 +09003543 : NULL;
Michal Nazarewicz481e4922009-11-09 14:15:21 +01003544 }
3545
Michal Nazarewiczd26a6aa2009-11-09 14:15:23 +01003546 /* Let MSF use defaults */
Jingoo Han136c4892013-08-05 12:11:05 +09003547 cfg->vendor_name = NULL;
3548 cfg->product_name = NULL;
Michal Nazarewicz481e4922009-11-09 14:15:21 +01003549
Michal Nazarewicz8876f5e2010-06-21 13:57:09 +02003550 cfg->ops = NULL;
3551 cfg->private_data = NULL;
Michal Nazarewiczc85efcb2009-11-09 14:15:26 +01003552
Michal Nazarewicz481e4922009-11-09 14:15:21 +01003553 /* Finalise */
3554 cfg->can_stall = params->stall;
Andrzej Pietrasiewicz6fdc5dd2013-09-26 14:38:16 +02003555 cfg->fsg_num_buffers = fsg_num_buffers;
Michal Nazarewicz481e4922009-11-09 14:15:21 +01003556}
Andrzej Pietrasiewicz7a93d042013-10-09 10:08:28 +02003557EXPORT_SYMBOL_GPL(fsg_config_from_params);