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