storage_common.c 17.0 KB
Newer Older
1 2 3 4 5
/*
 * storage_common.c -- Common definitions for mass storage functionality
 *
 * Copyright (C) 2003-2008 Alan Stern
 * Copyeight (C) 2009 Samsung Electronics
6
 * Author: Michal Nazarewicz (mina86@mina86.com)
7 8 9 10 11 12 13 14 15 16 17
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 */

/*
 * This file requires the following identifiers used in USB strings to
 * be defined (each of type pointer to char):
 *  - fsg_string_interface    -- name of the interface
18 19
 */

20 21 22 23 24 25
/*
 * When USB_GADGET_DEBUG_FILES is defined the module param num_buffers
 * sets the number of pipeline buffers (length of the fsg_buffhd array).
 * The valid range of num_buffers is: num >= 2 && num <= 4.
 */

26

27
#include <linux/usb/storage.h>
28 29
#include <scsi/scsi.h>
#include <asm/unaligned.h>
30

31

32 33
/*
 * Thanks to NetChip Technologies for donating this product ID.
34 35
 *
 * DO NOT REUSE THESE IDs with any other driver!!  Ever!!
36 37
 * Instead:  allocate your own, using normal USB-IF procedures.
 */
38 39
#define FSG_VENDOR_ID	0x0525	/* NetChip */
#define FSG_PRODUCT_ID	0xa4a5	/* Linux-USB File-backed Storage Gadget */
40 41


42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64
/*-------------------------------------------------------------------------*/


#ifndef DEBUG
#undef VERBOSE_DEBUG
#undef DUMP_MSGS
#endif /* !DEBUG */

#ifdef VERBOSE_DEBUG
#define VLDBG	LDBG
#else
#define VLDBG(lun, fmt, args...) do { } while (0)
#endif /* VERBOSE_DEBUG */

#define LDBG(lun, fmt, args...)   dev_dbg (&(lun)->dev, fmt, ## args)
#define LERROR(lun, fmt, args...) dev_err (&(lun)->dev, fmt, ## args)
#define LWARN(lun, fmt, args...)  dev_warn(&(lun)->dev, fmt, ## args)
#define LINFO(lun, fmt, args...)  dev_info(&(lun)->dev, fmt, ## args)


#ifdef DUMP_MSGS

#  define dump_msg(fsg, /* const char * */ label,			\
65
		   /* const u8 * */ buf, /* unsigned */ length) do {	\
66 67 68 69 70 71 72 73 74 75 76 77
	if (length < 512) {						\
		DBG(fsg, "%s, length %u:\n", label, length);		\
		print_hex_dump(KERN_DEBUG, "", DUMP_PREFIX_OFFSET,	\
			       16, 1, buf, length, 0);			\
	}								\
} while (0)

#  define dump_cdb(fsg) do { } while (0)

#else

#  define dump_msg(fsg, /* const char * */ label, \
78
		   /* const u8 * */ buf, /* unsigned */ length) do { } while (0)
79 80 81

#  ifdef VERBOSE_DEBUG

82
#    define dump_cdb(fsg)						\
83 84 85 86 87 88 89 90 91 92 93 94 95
	print_hex_dump(KERN_DEBUG, "SCSI CDB: ", DUMP_PREFIX_NONE,	\
		       16, 1, (fsg)->cmnd, (fsg)->cmnd_size, 0)		\

#  else

#    define dump_cdb(fsg) do { } while (0)

#  endif /* VERBOSE_DEBUG */

#endif /* DUMP_MSGS */

/*-------------------------------------------------------------------------*/

96 97
/* Length of a SCSI Command Data Block */
#define MAX_COMMAND_SIZE	16
98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114

/* SCSI Sense Key/Additional Sense Code/ASC Qualifier values */
#define SS_NO_SENSE				0
#define SS_COMMUNICATION_FAILURE		0x040800
#define SS_INVALID_COMMAND			0x052000
#define SS_INVALID_FIELD_IN_CDB			0x052400
#define SS_LOGICAL_BLOCK_ADDRESS_OUT_OF_RANGE	0x052100
#define SS_LOGICAL_UNIT_NOT_SUPPORTED		0x052500
#define SS_MEDIUM_NOT_PRESENT			0x023a00
#define SS_MEDIUM_REMOVAL_PREVENTED		0x055302
#define SS_NOT_READY_TO_READY_TRANSITION	0x062800
#define SS_RESET_OCCURRED			0x062900
#define SS_SAVING_PARAMETERS_NOT_SUPPORTED	0x053900
#define SS_UNRECOVERED_READ_ERROR		0x031100
#define SS_WRITE_ERROR				0x030c02
#define SS_WRITE_PROTECTED			0x072700

115
#define SK(x)		((u8) ((x) >> 16))	/* Sense Key byte, etc. */
116 117 118 119 120 121 122
#define ASC(x)		((u8) ((x) >> 8))
#define ASCQ(x)		((u8) (x))


/*-------------------------------------------------------------------------*/


123
struct fsg_lun {
124 125 126 127
	struct file	*filp;
	loff_t		file_length;
	loff_t		num_sectors;

128 129 130 131 132 133 134
	unsigned int	initially_ro:1;
	unsigned int	ro:1;
	unsigned int	removable:1;
	unsigned int	cdrom:1;
	unsigned int	prevent_medium_removal:1;
	unsigned int	registered:1;
	unsigned int	info_valid:1;
135
	unsigned int	nofua:1;
136 137 138 139 140

	u32		sense_data;
	u32		sense_data_info;
	u32		unit_attention_data;

141 142
	unsigned int	blkbits;	/* Bits of logical block size of bound block device */
	unsigned int	blksize;	/* logical block size of bound block device */
143 144 145
	struct device	dev;
};

146 147 148 149
static inline bool fsg_lun_is_open(struct fsg_lun *curlun)
{
	return curlun->filp != NULL;
}
150

151
static inline struct fsg_lun *fsg_lun_from_dev(struct device *dev)
152
{
153
	return container_of(dev, struct fsg_lun, dev);
154 155 156 157 158
}


/* Big enough to hold our biggest descriptor */
#define EP0_BUFSIZE	256
159
#define DELAYED_STATUS	(EP0_BUFSIZE + 999)	/* An impossibly large value */
160

161 162 163 164 165 166 167 168 169 170 171 172 173 174
#ifdef CONFIG_USB_GADGET_DEBUG_FILES

static unsigned int fsg_num_buffers = CONFIG_USB_GADGET_STORAGE_NUM_BUFFERS;
module_param_named(num_buffers, fsg_num_buffers, uint, S_IRUGO);
MODULE_PARM_DESC(num_buffers, "Number of pipeline buffers");

#else

/*
 * Number of buffers we will use.
 * 2 is usually enough for good buffering pipeline
 */
#define fsg_num_buffers	CONFIG_USB_GADGET_STORAGE_NUM_BUFFERS

G
Greg Kroah-Hartman 已提交
175
#endif /* CONFIG_USB_GADGET_DEBUG_FILES */
176 177 178 179 180 181 182 183 184 185

/* check if fsg_num_buffers is within a valid range */
static inline int fsg_num_buffers_validate(void)
{
	if (fsg_num_buffers >= 2 && fsg_num_buffers <= 4)
		return 0;
	pr_err("fsg_num_buffers %u is out of range (%d to %d)\n",
	       fsg_num_buffers, 2 ,4);
	return -EINVAL;
}
186

187 188 189 190 191 192
/* Default size of buffer length. */
#define FSG_BUFLEN	((u32)16384)

/* Maximal number of LUNs supported in mass storage function */
#define FSG_MAX_LUNS	8

193 194 195 196 197 198 199 200 201 202 203
enum fsg_buffer_state {
	BUF_STATE_EMPTY = 0,
	BUF_STATE_FULL,
	BUF_STATE_BUSY
};

struct fsg_buffhd {
	void				*buf;
	enum fsg_buffer_state		state;
	struct fsg_buffhd		*next;

204 205 206 207 208 209 210
	/*
	 * The NetChip 2280 is faster, and handles some protocol faults
	 * better, if we don't submit any short bulk-out read requests.
	 * So we will record the intended request length here.
	 */
	unsigned int			bulk_out_intended_length;

211 212 213 214 215 216 217
	struct usb_request		*inreq;
	int				inreq_busy;
	struct usb_request		*outreq;
	int				outreq_busy;
};

enum fsg_state {
218 219
	/* This one isn't used anywhere */
	FSG_STATE_COMMAND_PHASE = -10,
220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252
	FSG_STATE_DATA_PHASE,
	FSG_STATE_STATUS_PHASE,

	FSG_STATE_IDLE = 0,
	FSG_STATE_ABORT_BULK_OUT,
	FSG_STATE_RESET,
	FSG_STATE_INTERFACE_CHANGE,
	FSG_STATE_CONFIG_CHANGE,
	FSG_STATE_DISCONNECT,
	FSG_STATE_EXIT,
	FSG_STATE_TERMINATED
};

enum data_direction {
	DATA_DIR_UNKNOWN = 0,
	DATA_DIR_FROM_HOST,
	DATA_DIR_TO_HOST,
	DATA_DIR_NONE
};


/*-------------------------------------------------------------------------*/


static inline u32 get_unaligned_be24(u8 *buf)
{
	return 0xffffff & (u32) get_unaligned_be32(buf - 1);
}


/*-------------------------------------------------------------------------*/


253 254 255
enum {
	FSG_STRING_INTERFACE
};
256 257 258 259 260


/* There is only one interface. */

static struct usb_interface_descriptor
261 262
fsg_intf_desc = {
	.bLength =		sizeof fsg_intf_desc,
263 264
	.bDescriptorType =	USB_DT_INTERFACE,

265
	.bNumEndpoints =	2,		/* Adjusted during fsg_bind() */
266
	.bInterfaceClass =	USB_CLASS_MASS_STORAGE,
267 268
	.bInterfaceSubClass =	USB_SC_SCSI,	/* Adjusted during fsg_bind() */
	.bInterfaceProtocol =	USB_PR_BULK,	/* Adjusted during fsg_bind() */
269
	.iInterface =		FSG_STRING_INTERFACE,
270 271
};

272 273 274 275
/*
 * Three full-speed endpoint descriptors: bulk-in, bulk-out, and
 * interrupt-in.
 */
276 277

static struct usb_endpoint_descriptor
278
fsg_fs_bulk_in_desc = {
279 280 281 282 283 284 285 286 287
	.bLength =		USB_DT_ENDPOINT_SIZE,
	.bDescriptorType =	USB_DT_ENDPOINT,

	.bEndpointAddress =	USB_DIR_IN,
	.bmAttributes =		USB_ENDPOINT_XFER_BULK,
	/* wMaxPacketSize set by autoconfiguration */
};

static struct usb_endpoint_descriptor
288
fsg_fs_bulk_out_desc = {
289 290 291 292 293 294 295 296
	.bLength =		USB_DT_ENDPOINT_SIZE,
	.bDescriptorType =	USB_DT_ENDPOINT,

	.bEndpointAddress =	USB_DIR_OUT,
	.bmAttributes =		USB_ENDPOINT_XFER_BULK,
	/* wMaxPacketSize set by autoconfiguration */
};

297
static struct usb_descriptor_header *fsg_fs_function[] = {
298 299 300
	(struct usb_descriptor_header *) &fsg_intf_desc,
	(struct usb_descriptor_header *) &fsg_fs_bulk_in_desc,
	(struct usb_descriptor_header *) &fsg_fs_bulk_out_desc,
301 302 303 304 305 306 307 308 309 310
	NULL,
};


/*
 * USB 2.0 devices need to expose both high speed and full speed
 * descriptors, unless they only run at full speed.
 *
 * That means alternate endpoint descriptors (bigger packets)
 * and a "device qualifier" ... plus more construction options
311
 * for the configuration descriptor.
312 313
 */
static struct usb_endpoint_descriptor
314
fsg_hs_bulk_in_desc = {
315 316 317 318 319 320 321 322 323
	.bLength =		USB_DT_ENDPOINT_SIZE,
	.bDescriptorType =	USB_DT_ENDPOINT,

	/* bEndpointAddress copied from fs_bulk_in_desc during fsg_bind() */
	.bmAttributes =		USB_ENDPOINT_XFER_BULK,
	.wMaxPacketSize =	cpu_to_le16(512),
};

static struct usb_endpoint_descriptor
324
fsg_hs_bulk_out_desc = {
325 326 327 328 329 330
	.bLength =		USB_DT_ENDPOINT_SIZE,
	.bDescriptorType =	USB_DT_ENDPOINT,

	/* bEndpointAddress copied from fs_bulk_out_desc during fsg_bind() */
	.bmAttributes =		USB_ENDPOINT_XFER_BULK,
	.wMaxPacketSize =	cpu_to_le16(512),
331
	.bInterval =		1,	/* NAK every 1 uframe */
332 333
};

334

335
static struct usb_descriptor_header *fsg_hs_function[] = {
336 337 338
	(struct usb_descriptor_header *) &fsg_intf_desc,
	(struct usb_descriptor_header *) &fsg_hs_bulk_in_desc,
	(struct usb_descriptor_header *) &fsg_hs_bulk_out_desc,
339 340 341
	NULL,
};

342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384
static struct usb_endpoint_descriptor
fsg_ss_bulk_in_desc = {
	.bLength =		USB_DT_ENDPOINT_SIZE,
	.bDescriptorType =	USB_DT_ENDPOINT,

	/* bEndpointAddress copied from fs_bulk_in_desc during fsg_bind() */
	.bmAttributes =		USB_ENDPOINT_XFER_BULK,
	.wMaxPacketSize =	cpu_to_le16(1024),
};

static struct usb_ss_ep_comp_descriptor fsg_ss_bulk_in_comp_desc = {
	.bLength =		sizeof(fsg_ss_bulk_in_comp_desc),
	.bDescriptorType =	USB_DT_SS_ENDPOINT_COMP,

	/*.bMaxBurst =		DYNAMIC, */
};

static struct usb_endpoint_descriptor
fsg_ss_bulk_out_desc = {
	.bLength =		USB_DT_ENDPOINT_SIZE,
	.bDescriptorType =	USB_DT_ENDPOINT,

	/* bEndpointAddress copied from fs_bulk_out_desc during fsg_bind() */
	.bmAttributes =		USB_ENDPOINT_XFER_BULK,
	.wMaxPacketSize =	cpu_to_le16(1024),
};

static struct usb_ss_ep_comp_descriptor fsg_ss_bulk_out_comp_desc = {
	.bLength =		sizeof(fsg_ss_bulk_in_comp_desc),
	.bDescriptorType =	USB_DT_SS_ENDPOINT_COMP,

	/*.bMaxBurst =		DYNAMIC, */
};

static struct usb_descriptor_header *fsg_ss_function[] = {
	(struct usb_descriptor_header *) &fsg_intf_desc,
	(struct usb_descriptor_header *) &fsg_ss_bulk_in_desc,
	(struct usb_descriptor_header *) &fsg_ss_bulk_in_comp_desc,
	(struct usb_descriptor_header *) &fsg_ss_bulk_out_desc,
	(struct usb_descriptor_header *) &fsg_ss_bulk_out_comp_desc,
	NULL,
};

385
/* Static strings, in UTF-8 (for simplicity we use only ASCII characters) */
386 387
static struct usb_string		fsg_strings[] = {
	{FSG_STRING_INTERFACE,		fsg_string_interface},
388 389 390
	{}
};

391
static struct usb_gadget_strings	fsg_stringtab = {
392
	.language	= 0x0409,		/* en-us */
393
	.strings	= fsg_strings,
394 395 396 397 398
};


 /*-------------------------------------------------------------------------*/

399 400 401 402
/*
 * If the next two routines are called while the gadget is registered,
 * the caller must own fsg->filesem for writing.
 */
403

404 405 406 407 408 409 410 411 412 413
static void fsg_lun_close(struct fsg_lun *curlun)
{
	if (curlun->filp) {
		LDBG(curlun, "close backing file\n");
		fput(curlun->filp);
		curlun->filp = NULL;
	}
}


414
static int fsg_lun_open(struct fsg_lun *curlun, const char *filename)
415 416 417 418 419 420 421 422
{
	int				ro;
	struct file			*filp = NULL;
	int				rc = -EINVAL;
	struct inode			*inode = NULL;
	loff_t				size;
	loff_t				num_sectors;
	loff_t				min_sectors;
423 424
	unsigned int			blkbits;
	unsigned int			blksize;
425 426

	/* R/W if we can, R/O if we must */
427
	ro = curlun->initially_ro;
428 429
	if (!ro) {
		filp = filp_open(filename, O_RDWR | O_LARGEFILE, 0);
430
		if (PTR_ERR(filp) == -EROFS || PTR_ERR(filp) == -EACCES)
431 432 433 434 435 436 437 438 439 440 441 442
			ro = 1;
	}
	if (ro)
		filp = filp_open(filename, O_RDONLY | O_LARGEFILE, 0);
	if (IS_ERR(filp)) {
		LINFO(curlun, "unable to open backing file: %s\n", filename);
		return PTR_ERR(filp);
	}

	if (!(filp->f_mode & FMODE_WRITE))
		ro = 1;

A
Al Viro 已提交
443
	inode = file_inode(filp);
A
Al Viro 已提交
444
	if ((!S_ISREG(inode->i_mode) && !S_ISBLK(inode->i_mode))) {
445 446 447 448
		LINFO(curlun, "invalid file type: %s\n", filename);
		goto out;
	}

449 450 451 452
	/*
	 * If we can't read the file, it's no good.
	 * If we can't write the file, use it read-only.
	 */
A
Al Viro 已提交
453
	if (!(filp->f_op->read || filp->f_op->aio_read)) {
454 455 456 457 458 459 460 461 462 463 464 465
		LINFO(curlun, "file not readable: %s\n", filename);
		goto out;
	}
	if (!(filp->f_op->write || filp->f_op->aio_write))
		ro = 1;

	size = i_size_read(inode->i_mapping->host);
	if (size < 0) {
		LINFO(curlun, "unable to find file size: %s\n", filename);
		rc = (int) size;
		goto out;
	}
466 467

	if (curlun->cdrom) {
468 469
		blksize = 2048;
		blkbits = 11;
470
	} else if (inode->i_bdev) {
471 472
		blksize = bdev_logical_block_size(inode->i_bdev);
		blkbits = blksize_bits(blksize);
473
	} else {
474 475
		blksize = 512;
		blkbits = 9;
476 477
	}

478
	num_sectors = size >> blkbits; /* File size in logic-block-size blocks */
479
	min_sectors = 1;
480
	if (curlun->cdrom) {
481 482 483
		min_sectors = 300;	/* Smallest track is 300 frames */
		if (num_sectors >= 256*60*75) {
			num_sectors = 256*60*75 - 1;
484 485 486 487 488 489 490 491 492 493 494
			LINFO(curlun, "file too big: %s\n", filename);
			LINFO(curlun, "using only first %d blocks\n",
					(int) num_sectors);
		}
	}
	if (num_sectors < min_sectors) {
		LINFO(curlun, "file too small: %s\n", filename);
		rc = -ETOOSMALL;
		goto out;
	}

495 496 497 498 499
	if (fsg_lun_is_open(curlun))
		fsg_lun_close(curlun);

	curlun->blksize = blksize;
	curlun->blkbits = blkbits;
500 501 502 503 504
	curlun->ro = ro;
	curlun->filp = filp;
	curlun->file_length = size;
	curlun->num_sectors = num_sectors;
	LDBG(curlun, "open backing file: %s\n", filename);
A
Al Viro 已提交
505
	return 0;
506 507

out:
A
Al Viro 已提交
508
	fput(filp);
509 510 511 512 513 514
	return rc;
}


/*-------------------------------------------------------------------------*/

515 516 517 518
/*
 * Sync the file data, don't bother with the metadata.
 * This code was copied from fs/buffer.c:sys_fdatasync().
 */
519
static int fsg_lun_fsync_sub(struct fsg_lun *curlun)
520 521 522 523 524
{
	struct file	*filp = curlun->filp;

	if (curlun->ro || !filp)
		return 0;
525
	return vfs_fsync(filp, 1);
526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544
}

static void store_cdrom_address(u8 *dest, int msf, u32 addr)
{
	if (msf) {
		/* Convert to Minutes-Seconds-Frames */
		addr >>= 2;		/* Convert to 2048-byte frames */
		addr += 2*75;		/* Lead-in occupies 2 seconds */
		dest[3] = addr % 75;	/* Frames */
		addr /= 75;
		dest[2] = addr % 60;	/* Seconds */
		addr /= 60;
		dest[1] = addr;		/* Minutes */
		dest[0] = 0;		/* Reserved */
	} else {
		/* Absolute sector */
		put_unaligned_be32(addr, dest);
	}
}
545 546 547 548 549


/*-------------------------------------------------------------------------*/


550 551
static ssize_t ro_show(struct device *dev, struct device_attribute *attr,
		       char *buf)
552 553 554 555 556 557 558 559
{
	struct fsg_lun	*curlun = fsg_lun_from_dev(dev);

	return sprintf(buf, "%d\n", fsg_lun_is_open(curlun)
				  ? curlun->ro
				  : curlun->initially_ro);
}

560 561
static ssize_t nofua_show(struct device *dev, struct device_attribute *attr,
			  char *buf)
562 563 564 565 566 567
{
	struct fsg_lun	*curlun = fsg_lun_from_dev(dev);

	return sprintf(buf, "%u\n", curlun->nofua);
}

568 569
static ssize_t file_show(struct device *dev, struct device_attribute *attr,
			 char *buf)
570 571 572 573 574 575 576
{
	struct fsg_lun	*curlun = fsg_lun_from_dev(dev);
	struct rw_semaphore	*filesem = dev_get_drvdata(dev);
	char		*p;
	ssize_t		rc;

	down_read(filesem);
577
	if (fsg_lun_is_open(curlun)) {	/* Get the complete pathname */
578 579 580 581 582 583
		p = d_path(&curlun->filp->f_path, buf, PAGE_SIZE - 1);
		if (IS_ERR(p))
			rc = PTR_ERR(p);
		else {
			rc = strlen(p);
			memmove(buf, p, rc);
584
			buf[rc] = '\n';		/* Add a newline */
585 586
			buf[++rc] = 0;
		}
587
	} else {				/* No file, return 0 bytes */
588 589 590 591 592 593 594 595
		*buf = 0;
		rc = 0;
	}
	up_read(filesem);
	return rc;
}


596 597
static ssize_t ro_store(struct device *dev, struct device_attribute *attr,
			const char *buf, size_t count)
598
{
599
	ssize_t		rc;
600 601
	struct fsg_lun	*curlun = fsg_lun_from_dev(dev);
	struct rw_semaphore	*filesem = dev_get_drvdata(dev);
602
	unsigned	ro;
603

604 605 606
	rc = kstrtouint(buf, 2, &ro);
	if (rc)
		return rc;
607

608 609 610 611
	/*
	 * Allow the write-enable status to change only while the
	 * backing file is closed.
	 */
612 613 614 615 616
	down_read(filesem);
	if (fsg_lun_is_open(curlun)) {
		LDBG(curlun, "read-only status change prevented\n");
		rc = -EBUSY;
	} else {
617 618
		curlun->ro = ro;
		curlun->initially_ro = ro;
619
		LDBG(curlun, "read-only status set to %d\n", curlun->ro);
620
		rc = count;
621 622 623 624 625
	}
	up_read(filesem);
	return rc;
}

626 627
static ssize_t nofua_store(struct device *dev, struct device_attribute *attr,
			   const char *buf, size_t count)
628 629
{
	struct fsg_lun	*curlun = fsg_lun_from_dev(dev);
630 631
	unsigned	nofua;
	int		ret;
632

633 634 635
	ret = kstrtouint(buf, 2, &nofua);
	if (ret)
		return ret;
636 637 638 639 640 641 642 643 644 645

	/* Sync data when switching from async mode to sync */
	if (!nofua && curlun->nofua)
		fsg_lun_fsync_sub(curlun);

	curlun->nofua = nofua;

	return count;
}

646 647
static ssize_t file_store(struct device *dev, struct device_attribute *attr,
			  const char *buf, size_t count)
648 649 650 651 652 653 654
{
	struct fsg_lun	*curlun = fsg_lun_from_dev(dev);
	struct rw_semaphore	*filesem = dev_get_drvdata(dev);
	int		rc = 0;

	if (curlun->prevent_medium_removal && fsg_lun_is_open(curlun)) {
		LDBG(curlun, "eject attempt prevented\n");
655
		return -EBUSY;				/* "Door is locked" */
656 657 658 659
	}

	/* Remove a trailing newline */
	if (count > 0 && buf[count-1] == '\n')
660
		((char *) buf)[count-1] = 0;		/* Ugh! */
661 662

	/* Load new medium */
663
	down_write(filesem);
664
	if (count > 0 && buf[0]) {
665
		/* fsg_lun_open() will close existing file if any. */
666 667 668 669
		rc = fsg_lun_open(curlun, buf);
		if (rc == 0)
			curlun->unit_attention_data =
					SS_NOT_READY_TO_READY_TRANSITION;
670 671 672
	} else if (fsg_lun_is_open(curlun)) {
		fsg_lun_close(curlun);
		curlun->unit_attention_data = SS_MEDIUM_NOT_PRESENT;
673 674 675 676
	}
	up_write(filesem);
	return (rc < 0 ? rc : count);
}