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