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