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