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