blob: 990df221c6299a2cd9d2ecb9aab54fda5447560e [file] [log] [blame]
Michal Nazarewiczb6058d02009-10-28 16:57:14 +01001/*
2 * storage_common.c -- Common definitions for mass storage functionality
3 *
4 * Copyright (C) 2003-2008 Alan Stern
5 * Copyeight (C) 2009 Samsung Electronics
Michal Nazarewicz54b83602012-01-13 15:05:16 +01006 * Author: Michal Nazarewicz (mina86@mina86.com)
Michal Nazarewiczd6181702009-10-28 16:57:15 +01007 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
Michal Nazarewiczb6058d02009-10-28 16:57:14 +010012 */
13
Michal Nazarewiczd6181702009-10-28 16:57:15 +010014/*
15 * This file requires the following identifiers used in USB strings to
16 * be defined (each of type pointer to char):
Michal Nazarewiczd6181702009-10-28 16:57:15 +010017 * - fsg_string_interface -- name of the interface
Michal Nazarewicz93bcf122009-10-28 16:57:19 +010018 */
19
Michal Nazarewicz606206c22009-10-28 16:57:21 +010020/*
Per Forlin6532c7f2011-08-19 21:21:27 +020021 * When USB_GADGET_DEBUG_FILES is defined the module param num_buffers
22 * sets the number of pipeline buffers (length of the fsg_buffhd array).
23 * The valid range of num_buffers is: num >= 2 && num <= 4.
24 */
25
Andrzej Pietrasiewicz6fdc5dd2013-09-26 14:38:16 +020026#include <linux/module.h>
27#include <linux/blkdev.h>
28#include <linux/file.h>
29#include <linux/fs.h>
30#include <linux/usb/composite.h>
Michal Nazarewiczd6181702009-10-28 16:57:15 +010031
Andrzej Pietrasiewicz6fdc5dd2013-09-26 14:38:16 +020032#include "storage_common.h"
Michal Nazarewiczb6058d02009-10-28 16:57:14 +010033
Michal Nazarewiczb6058d02009-10-28 16:57:14 +010034/* There is only one interface. */
35
Andrzej Pietrasiewicz6fdc5dd2013-09-26 14:38:16 +020036struct usb_interface_descriptor fsg_intf_desc = {
Michal Nazarewiczd6181702009-10-28 16:57:15 +010037 .bLength = sizeof fsg_intf_desc,
Michal Nazarewiczb6058d02009-10-28 16:57:14 +010038 .bDescriptorType = USB_DT_INTERFACE,
39
Michal Nazarewiczd26a6aa2009-11-09 14:15:23 +010040 .bNumEndpoints = 2, /* Adjusted during fsg_bind() */
Michal Nazarewiczb6058d02009-10-28 16:57:14 +010041 .bInterfaceClass = USB_CLASS_MASS_STORAGE,
Michal Nazarewiczd26a6aa2009-11-09 14:15:23 +010042 .bInterfaceSubClass = USB_SC_SCSI, /* Adjusted during fsg_bind() */
43 .bInterfaceProtocol = USB_PR_BULK, /* Adjusted during fsg_bind() */
Michal Nazarewiczd6181702009-10-28 16:57:15 +010044 .iInterface = FSG_STRING_INTERFACE,
Michal Nazarewiczb6058d02009-10-28 16:57:14 +010045};
Felipe Balbi0700faa2014-04-01 13:19:32 -050046EXPORT_SYMBOL_GPL(fsg_intf_desc);
Michal Nazarewiczb6058d02009-10-28 16:57:14 +010047
Michal Nazarewiczd0893262010-07-05 16:38:04 +020048/*
49 * Three full-speed endpoint descriptors: bulk-in, bulk-out, and
50 * interrupt-in.
51 */
Michal Nazarewiczb6058d02009-10-28 16:57:14 +010052
Andrzej Pietrasiewicz6fdc5dd2013-09-26 14:38:16 +020053struct usb_endpoint_descriptor fsg_fs_bulk_in_desc = {
Michal Nazarewiczb6058d02009-10-28 16:57:14 +010054 .bLength = USB_DT_ENDPOINT_SIZE,
55 .bDescriptorType = USB_DT_ENDPOINT,
56
57 .bEndpointAddress = USB_DIR_IN,
58 .bmAttributes = USB_ENDPOINT_XFER_BULK,
59 /* wMaxPacketSize set by autoconfiguration */
60};
Felipe Balbi0700faa2014-04-01 13:19:32 -050061EXPORT_SYMBOL_GPL(fsg_fs_bulk_in_desc);
Michal Nazarewiczb6058d02009-10-28 16:57:14 +010062
Andrzej Pietrasiewicz6fdc5dd2013-09-26 14:38:16 +020063struct usb_endpoint_descriptor fsg_fs_bulk_out_desc = {
Michal Nazarewiczb6058d02009-10-28 16:57:14 +010064 .bLength = USB_DT_ENDPOINT_SIZE,
65 .bDescriptorType = USB_DT_ENDPOINT,
66
67 .bEndpointAddress = USB_DIR_OUT,
68 .bmAttributes = USB_ENDPOINT_XFER_BULK,
69 /* wMaxPacketSize set by autoconfiguration */
70};
Felipe Balbi0700faa2014-04-01 13:19:32 -050071EXPORT_SYMBOL_GPL(fsg_fs_bulk_out_desc);
Michal Nazarewiczb6058d02009-10-28 16:57:14 +010072
Andrzej Pietrasiewicz6fdc5dd2013-09-26 14:38:16 +020073struct usb_descriptor_header *fsg_fs_function[] = {
Michal Nazarewiczd6181702009-10-28 16:57:15 +010074 (struct usb_descriptor_header *) &fsg_intf_desc,
75 (struct usb_descriptor_header *) &fsg_fs_bulk_in_desc,
76 (struct usb_descriptor_header *) &fsg_fs_bulk_out_desc,
Michal Nazarewiczb6058d02009-10-28 16:57:14 +010077 NULL,
78};
Felipe Balbi0700faa2014-04-01 13:19:32 -050079EXPORT_SYMBOL_GPL(fsg_fs_function);
Michal Nazarewiczb6058d02009-10-28 16:57:14 +010080
81
82/*
83 * USB 2.0 devices need to expose both high speed and full speed
84 * descriptors, unless they only run at full speed.
85 *
Krzysztof Opasiakcc50dc22016-05-22 11:08:15 +020086 * That means alternate endpoint descriptors (bigger packets).
Michal Nazarewiczb6058d02009-10-28 16:57:14 +010087 */
Andrzej Pietrasiewicz6fdc5dd2013-09-26 14:38:16 +020088struct usb_endpoint_descriptor fsg_hs_bulk_in_desc = {
Michal Nazarewiczb6058d02009-10-28 16:57:14 +010089 .bLength = USB_DT_ENDPOINT_SIZE,
90 .bDescriptorType = USB_DT_ENDPOINT,
91
92 /* bEndpointAddress copied from fs_bulk_in_desc during fsg_bind() */
93 .bmAttributes = USB_ENDPOINT_XFER_BULK,
94 .wMaxPacketSize = cpu_to_le16(512),
95};
Felipe Balbi0700faa2014-04-01 13:19:32 -050096EXPORT_SYMBOL_GPL(fsg_hs_bulk_in_desc);
Michal Nazarewiczb6058d02009-10-28 16:57:14 +010097
Andrzej Pietrasiewicz6fdc5dd2013-09-26 14:38:16 +020098struct usb_endpoint_descriptor fsg_hs_bulk_out_desc = {
Michal Nazarewiczb6058d02009-10-28 16:57:14 +010099 .bLength = USB_DT_ENDPOINT_SIZE,
100 .bDescriptorType = USB_DT_ENDPOINT,
101
102 /* bEndpointAddress copied from fs_bulk_out_desc during fsg_bind() */
103 .bmAttributes = USB_ENDPOINT_XFER_BULK,
104 .wMaxPacketSize = cpu_to_le16(512),
Michal Nazarewiczd26a6aa2009-11-09 14:15:23 +0100105 .bInterval = 1, /* NAK every 1 uframe */
Michal Nazarewiczb6058d02009-10-28 16:57:14 +0100106};
Felipe Balbi0700faa2014-04-01 13:19:32 -0500107EXPORT_SYMBOL_GPL(fsg_hs_bulk_out_desc);
Michal Nazarewiczb6058d02009-10-28 16:57:14 +0100108
Michal Nazarewicz93bcf122009-10-28 16:57:19 +0100109
Andrzej Pietrasiewicz6fdc5dd2013-09-26 14:38:16 +0200110struct usb_descriptor_header *fsg_hs_function[] = {
Michal Nazarewiczd6181702009-10-28 16:57:15 +0100111 (struct usb_descriptor_header *) &fsg_intf_desc,
112 (struct usb_descriptor_header *) &fsg_hs_bulk_in_desc,
113 (struct usb_descriptor_header *) &fsg_hs_bulk_out_desc,
Michal Nazarewiczb6058d02009-10-28 16:57:14 +0100114 NULL,
115};
Felipe Balbi0700faa2014-04-01 13:19:32 -0500116EXPORT_SYMBOL_GPL(fsg_hs_function);
Michal Nazarewiczb6058d02009-10-28 16:57:14 +0100117
Andrzej Pietrasiewicz6fdc5dd2013-09-26 14:38:16 +0200118struct usb_endpoint_descriptor fsg_ss_bulk_in_desc = {
Felipe Balbi4bb99b72011-08-03 14:33:27 +0300119 .bLength = USB_DT_ENDPOINT_SIZE,
120 .bDescriptorType = USB_DT_ENDPOINT,
121
122 /* bEndpointAddress copied from fs_bulk_in_desc during fsg_bind() */
123 .bmAttributes = USB_ENDPOINT_XFER_BULK,
124 .wMaxPacketSize = cpu_to_le16(1024),
125};
Felipe Balbi0700faa2014-04-01 13:19:32 -0500126EXPORT_SYMBOL_GPL(fsg_ss_bulk_in_desc);
Felipe Balbi4bb99b72011-08-03 14:33:27 +0300127
Andrzej Pietrasiewicz6fdc5dd2013-09-26 14:38:16 +0200128struct usb_ss_ep_comp_descriptor fsg_ss_bulk_in_comp_desc = {
Felipe Balbi4bb99b72011-08-03 14:33:27 +0300129 .bLength = sizeof(fsg_ss_bulk_in_comp_desc),
130 .bDescriptorType = USB_DT_SS_ENDPOINT_COMP,
131
132 /*.bMaxBurst = DYNAMIC, */
133};
Felipe Balbi0700faa2014-04-01 13:19:32 -0500134EXPORT_SYMBOL_GPL(fsg_ss_bulk_in_comp_desc);
Felipe Balbi4bb99b72011-08-03 14:33:27 +0300135
Andrzej Pietrasiewicz6fdc5dd2013-09-26 14:38:16 +0200136struct usb_endpoint_descriptor fsg_ss_bulk_out_desc = {
Felipe Balbi4bb99b72011-08-03 14:33:27 +0300137 .bLength = USB_DT_ENDPOINT_SIZE,
138 .bDescriptorType = USB_DT_ENDPOINT,
139
140 /* bEndpointAddress copied from fs_bulk_out_desc during fsg_bind() */
141 .bmAttributes = USB_ENDPOINT_XFER_BULK,
142 .wMaxPacketSize = cpu_to_le16(1024),
143};
Felipe Balbi0700faa2014-04-01 13:19:32 -0500144EXPORT_SYMBOL_GPL(fsg_ss_bulk_out_desc);
Felipe Balbi4bb99b72011-08-03 14:33:27 +0300145
Andrzej Pietrasiewicz6fdc5dd2013-09-26 14:38:16 +0200146struct usb_ss_ep_comp_descriptor fsg_ss_bulk_out_comp_desc = {
Felipe Balbi4bb99b72011-08-03 14:33:27 +0300147 .bLength = sizeof(fsg_ss_bulk_in_comp_desc),
148 .bDescriptorType = USB_DT_SS_ENDPOINT_COMP,
149
150 /*.bMaxBurst = DYNAMIC, */
151};
Felipe Balbi0700faa2014-04-01 13:19:32 -0500152EXPORT_SYMBOL_GPL(fsg_ss_bulk_out_comp_desc);
Felipe Balbi4bb99b72011-08-03 14:33:27 +0300153
Andrzej Pietrasiewicz6fdc5dd2013-09-26 14:38:16 +0200154struct usb_descriptor_header *fsg_ss_function[] = {
Felipe Balbi4bb99b72011-08-03 14:33:27 +0300155 (struct usb_descriptor_header *) &fsg_intf_desc,
156 (struct usb_descriptor_header *) &fsg_ss_bulk_in_desc,
157 (struct usb_descriptor_header *) &fsg_ss_bulk_in_comp_desc,
158 (struct usb_descriptor_header *) &fsg_ss_bulk_out_desc,
159 (struct usb_descriptor_header *) &fsg_ss_bulk_out_comp_desc,
Felipe Balbi4bb99b72011-08-03 14:33:27 +0300160 NULL,
161};
Felipe Balbi0700faa2014-04-01 13:19:32 -0500162EXPORT_SYMBOL_GPL(fsg_ss_function);
Michal Nazarewiczb6058d02009-10-28 16:57:14 +0100163
164
165 /*-------------------------------------------------------------------------*/
166
Michal Nazarewiczd0893262010-07-05 16:38:04 +0200167/*
168 * If the next two routines are called while the gadget is registered,
169 * the caller must own fsg->filesem for writing.
170 */
Michal Nazarewiczb6058d02009-10-28 16:57:14 +0100171
Andrzej Pietrasiewicz6fdc5dd2013-09-26 14:38:16 +0200172void fsg_lun_close(struct fsg_lun *curlun)
Michal Nazarewiczd6e16a82012-06-18 14:37:20 +0200173{
174 if (curlun->filp) {
175 LDBG(curlun, "close backing file\n");
176 fput(curlun->filp);
177 curlun->filp = NULL;
178 }
179}
Felipe Balbi0700faa2014-04-01 13:19:32 -0500180EXPORT_SYMBOL_GPL(fsg_lun_close);
Michal Nazarewiczd6e16a82012-06-18 14:37:20 +0200181
Andrzej Pietrasiewicz6fdc5dd2013-09-26 14:38:16 +0200182int fsg_lun_open(struct fsg_lun *curlun, const char *filename)
Michal Nazarewiczb6058d02009-10-28 16:57:14 +0100183{
184 int ro;
185 struct file *filp = NULL;
186 int rc = -EINVAL;
187 struct inode *inode = NULL;
188 loff_t size;
189 loff_t num_sectors;
190 loff_t min_sectors;
Michal Nazarewiczd6e16a82012-06-18 14:37:20 +0200191 unsigned int blkbits;
192 unsigned int blksize;
Michal Nazarewiczb6058d02009-10-28 16:57:14 +0100193
194 /* R/W if we can, R/O if we must */
Michal Nazarewicze909ef52009-10-28 16:57:16 +0100195 ro = curlun->initially_ro;
Michal Nazarewiczb6058d02009-10-28 16:57:14 +0100196 if (!ro) {
197 filp = filp_open(filename, O_RDWR | O_LARGEFILE, 0);
Tejun Heo75f1dc02010-11-13 11:55:17 +0100198 if (PTR_ERR(filp) == -EROFS || PTR_ERR(filp) == -EACCES)
Michal Nazarewiczb6058d02009-10-28 16:57:14 +0100199 ro = 1;
200 }
201 if (ro)
202 filp = filp_open(filename, O_RDONLY | O_LARGEFILE, 0);
203 if (IS_ERR(filp)) {
204 LINFO(curlun, "unable to open backing file: %s\n", filename);
205 return PTR_ERR(filp);
206 }
207
208 if (!(filp->f_mode & FMODE_WRITE))
209 ro = 1;
210
Al Viro496ad9a2013-01-23 17:07:38 -0500211 inode = file_inode(filp);
Al Viro20818a02012-07-22 21:23:33 +0400212 if ((!S_ISREG(inode->i_mode) && !S_ISBLK(inode->i_mode))) {
Michal Nazarewiczb6058d02009-10-28 16:57:14 +0100213 LINFO(curlun, "invalid file type: %s\n", filename);
214 goto out;
215 }
216
Michal Nazarewiczd0893262010-07-05 16:38:04 +0200217 /*
218 * If we can't read the file, it's no good.
219 * If we can't write the file, use it read-only.
220 */
Al Viro7f7f25e2014-02-11 17:49:24 -0500221 if (!(filp->f_mode & FMODE_CAN_READ)) {
Michal Nazarewiczb6058d02009-10-28 16:57:14 +0100222 LINFO(curlun, "file not readable: %s\n", filename);
223 goto out;
224 }
Al Viro7f7f25e2014-02-11 17:49:24 -0500225 if (!(filp->f_mode & FMODE_CAN_WRITE))
Michal Nazarewiczb6058d02009-10-28 16:57:14 +0100226 ro = 1;
227
228 size = i_size_read(inode->i_mapping->host);
229 if (size < 0) {
230 LINFO(curlun, "unable to find file size: %s\n", filename);
231 rc = (int) size;
232 goto out;
233 }
Peiyu Li3f565a32011-08-17 22:52:59 -0700234
235 if (curlun->cdrom) {
Michal Nazarewiczd6e16a82012-06-18 14:37:20 +0200236 blksize = 2048;
237 blkbits = 11;
Peiyu Li3f565a32011-08-17 22:52:59 -0700238 } else if (inode->i_bdev) {
Michal Nazarewiczd6e16a82012-06-18 14:37:20 +0200239 blksize = bdev_logical_block_size(inode->i_bdev);
240 blkbits = blksize_bits(blksize);
Peiyu Li3f565a32011-08-17 22:52:59 -0700241 } else {
Michal Nazarewiczd6e16a82012-06-18 14:37:20 +0200242 blksize = 512;
243 blkbits = 9;
Peiyu Li3f565a32011-08-17 22:52:59 -0700244 }
245
Michal Nazarewiczd6e16a82012-06-18 14:37:20 +0200246 num_sectors = size >> blkbits; /* File size in logic-block-size blocks */
Michal Nazarewiczb6058d02009-10-28 16:57:14 +0100247 min_sectors = 1;
Michal Nazarewicze909ef52009-10-28 16:57:16 +0100248 if (curlun->cdrom) {
Peiyu Li3f565a32011-08-17 22:52:59 -0700249 min_sectors = 300; /* Smallest track is 300 frames */
250 if (num_sectors >= 256*60*75) {
251 num_sectors = 256*60*75 - 1;
Michal Nazarewiczb6058d02009-10-28 16:57:14 +0100252 LINFO(curlun, "file too big: %s\n", filename);
253 LINFO(curlun, "using only first %d blocks\n",
254 (int) num_sectors);
255 }
256 }
257 if (num_sectors < min_sectors) {
258 LINFO(curlun, "file too small: %s\n", filename);
259 rc = -ETOOSMALL;
260 goto out;
261 }
262
Michal Nazarewiczd6e16a82012-06-18 14:37:20 +0200263 if (fsg_lun_is_open(curlun))
264 fsg_lun_close(curlun);
265
Michal Nazarewiczd6e16a82012-06-18 14:37:20 +0200266 curlun->blksize = blksize;
267 curlun->blkbits = blkbits;
Michal Nazarewiczb6058d02009-10-28 16:57:14 +0100268 curlun->ro = ro;
269 curlun->filp = filp;
270 curlun->file_length = size;
271 curlun->num_sectors = num_sectors;
272 LDBG(curlun, "open backing file: %s\n", filename);
Al Viro20818a02012-07-22 21:23:33 +0400273 return 0;
Michal Nazarewiczb6058d02009-10-28 16:57:14 +0100274
275out:
Al Viro20818a02012-07-22 21:23:33 +0400276 fput(filp);
Michal Nazarewiczb6058d02009-10-28 16:57:14 +0100277 return rc;
278}
Felipe Balbi0700faa2014-04-01 13:19:32 -0500279EXPORT_SYMBOL_GPL(fsg_lun_open);
Michal Nazarewiczb6058d02009-10-28 16:57:14 +0100280
281
Michal Nazarewiczb6058d02009-10-28 16:57:14 +0100282/*-------------------------------------------------------------------------*/
283
Michal Nazarewiczd0893262010-07-05 16:38:04 +0200284/*
285 * Sync the file data, don't bother with the metadata.
286 * This code was copied from fs/buffer.c:sys_fdatasync().
287 */
Andrzej Pietrasiewicz6fdc5dd2013-09-26 14:38:16 +0200288int fsg_lun_fsync_sub(struct fsg_lun *curlun)
Michal Nazarewiczb6058d02009-10-28 16:57:14 +0100289{
290 struct file *filp = curlun->filp;
291
292 if (curlun->ro || !filp)
293 return 0;
Christoph Hellwig8018ab02010-03-22 17:32:25 +0100294 return vfs_fsync(filp, 1);
Michal Nazarewiczb6058d02009-10-28 16:57:14 +0100295}
Felipe Balbi0700faa2014-04-01 13:19:32 -0500296EXPORT_SYMBOL_GPL(fsg_lun_fsync_sub);
Michal Nazarewiczb6058d02009-10-28 16:57:14 +0100297
Andrzej Pietrasiewicz6fdc5dd2013-09-26 14:38:16 +0200298void store_cdrom_address(u8 *dest, int msf, u32 addr)
Michal Nazarewiczb6058d02009-10-28 16:57:14 +0100299{
300 if (msf) {
301 /* Convert to Minutes-Seconds-Frames */
302 addr >>= 2; /* Convert to 2048-byte frames */
303 addr += 2*75; /* Lead-in occupies 2 seconds */
304 dest[3] = addr % 75; /* Frames */
305 addr /= 75;
306 dest[2] = addr % 60; /* Seconds */
307 addr /= 60;
308 dest[1] = addr; /* Minutes */
309 dest[0] = 0; /* Reserved */
310 } else {
311 /* Absolute sector */
312 put_unaligned_be32(addr, dest);
313 }
314}
Felipe Balbi0700faa2014-04-01 13:19:32 -0500315EXPORT_SYMBOL_GPL(store_cdrom_address);
Michal Nazarewicz93f93742009-10-28 16:57:17 +0100316
317/*-------------------------------------------------------------------------*/
318
319
Andrzej Pietrasiewicz77850ae2013-10-09 10:06:03 +0200320ssize_t fsg_show_ro(struct fsg_lun *curlun, char *buf)
Michal Nazarewicz93f93742009-10-28 16:57:17 +0100321{
Michal Nazarewicz93f93742009-10-28 16:57:17 +0100322 return sprintf(buf, "%d\n", fsg_lun_is_open(curlun)
323 ? curlun->ro
324 : curlun->initially_ro);
325}
Felipe Balbi0700faa2014-04-01 13:19:32 -0500326EXPORT_SYMBOL_GPL(fsg_show_ro);
Michal Nazarewicz93f93742009-10-28 16:57:17 +0100327
Andrzej Pietrasiewicz77850ae2013-10-09 10:06:03 +0200328ssize_t fsg_show_nofua(struct fsg_lun *curlun, char *buf)
Andy Shevchenkoa93917d2010-07-22 17:53:56 +0300329{
Andy Shevchenkoa93917d2010-07-22 17:53:56 +0300330 return sprintf(buf, "%u\n", curlun->nofua);
331}
Felipe Balbi0700faa2014-04-01 13:19:32 -0500332EXPORT_SYMBOL_GPL(fsg_show_nofua);
Andy Shevchenkoa93917d2010-07-22 17:53:56 +0300333
Andrzej Pietrasiewicz77850ae2013-10-09 10:06:03 +0200334ssize_t fsg_show_file(struct fsg_lun *curlun, struct rw_semaphore *filesem,
Andrzej Pietrasiewicz6fdc5dd2013-09-26 14:38:16 +0200335 char *buf)
Michal Nazarewicz93f93742009-10-28 16:57:17 +0100336{
Michal Nazarewicz93f93742009-10-28 16:57:17 +0100337 char *p;
338 ssize_t rc;
339
340 down_read(filesem);
Michal Nazarewiczd26a6aa2009-11-09 14:15:23 +0100341 if (fsg_lun_is_open(curlun)) { /* Get the complete pathname */
Miklos Szeredi9bf39ab2015-06-19 10:29:13 +0200342 p = file_path(curlun->filp, buf, PAGE_SIZE - 1);
Michal Nazarewicz93f93742009-10-28 16:57:17 +0100343 if (IS_ERR(p))
344 rc = PTR_ERR(p);
345 else {
346 rc = strlen(p);
347 memmove(buf, p, rc);
Michal Nazarewiczd26a6aa2009-11-09 14:15:23 +0100348 buf[rc] = '\n'; /* Add a newline */
Michal Nazarewicz93f93742009-10-28 16:57:17 +0100349 buf[++rc] = 0;
350 }
Michal Nazarewiczd26a6aa2009-11-09 14:15:23 +0100351 } else { /* No file, return 0 bytes */
Michal Nazarewicz93f93742009-10-28 16:57:17 +0100352 *buf = 0;
353 rc = 0;
354 }
355 up_read(filesem);
356 return rc;
357}
Felipe Balbi0700faa2014-04-01 13:19:32 -0500358EXPORT_SYMBOL_GPL(fsg_show_file);
Michal Nazarewicz93f93742009-10-28 16:57:17 +0100359
Andrzej Pietrasiewicz864328e2013-10-09 10:06:04 +0200360ssize_t fsg_show_cdrom(struct fsg_lun *curlun, char *buf)
361{
362 return sprintf(buf, "%u\n", curlun->cdrom);
363}
Felipe Balbi0700faa2014-04-01 13:19:32 -0500364EXPORT_SYMBOL_GPL(fsg_show_cdrom);
Andrzej Pietrasiewicz864328e2013-10-09 10:06:04 +0200365
366ssize_t fsg_show_removable(struct fsg_lun *curlun, char *buf)
367{
368 return sprintf(buf, "%u\n", curlun->removable);
369}
Felipe Balbi0700faa2014-04-01 13:19:32 -0500370EXPORT_SYMBOL_GPL(fsg_show_removable);
Michal Nazarewicz93f93742009-10-28 16:57:17 +0100371
Andrzej Pietrasiewiczb8798632013-10-15 08:33:13 +0200372/*
373 * The caller must hold fsg->filesem for reading when calling this function.
374 */
375static ssize_t _fsg_store_ro(struct fsg_lun *curlun, bool ro)
376{
377 if (fsg_lun_is_open(curlun)) {
378 LDBG(curlun, "read-only status change prevented\n");
379 return -EBUSY;
380 }
381
382 curlun->ro = ro;
383 curlun->initially_ro = ro;
384 LDBG(curlun, "read-only status set to %d\n", curlun->ro);
385
386 return 0;
387}
388
Andrzej Pietrasiewicz77850ae2013-10-09 10:06:03 +0200389ssize_t fsg_store_ro(struct fsg_lun *curlun, struct rw_semaphore *filesem,
Andrzej Pietrasiewicz6fdc5dd2013-09-26 14:38:16 +0200390 const char *buf, size_t count)
Michal Nazarewicz93f93742009-10-28 16:57:17 +0100391{
Michal Nazarewiczfd4477b2011-04-14 11:55:43 +0200392 ssize_t rc;
Andrzej Pietrasiewicz81a1d5e2013-10-15 08:33:12 +0200393 bool ro;
Michal Nazarewicz93f93742009-10-28 16:57:17 +0100394
Andrzej Pietrasiewicz81a1d5e2013-10-15 08:33:12 +0200395 rc = strtobool(buf, &ro);
Michal Nazarewiczdb8fa282011-04-14 00:37:00 +0200396 if (rc)
397 return rc;
Michal Nazarewicz93f93742009-10-28 16:57:17 +0100398
Michal Nazarewiczd0893262010-07-05 16:38:04 +0200399 /*
400 * Allow the write-enable status to change only while the
401 * backing file is closed.
402 */
Michal Nazarewicz93f93742009-10-28 16:57:17 +0100403 down_read(filesem);
Andrzej Pietrasiewiczb8798632013-10-15 08:33:13 +0200404 rc = _fsg_store_ro(curlun, ro);
405 if (!rc)
Michal Nazarewiczfd4477b2011-04-14 11:55:43 +0200406 rc = count;
Michal Nazarewicz93f93742009-10-28 16:57:17 +0100407 up_read(filesem);
Andrzej Pietrasiewiczb8798632013-10-15 08:33:13 +0200408
Michal Nazarewicz93f93742009-10-28 16:57:17 +0100409 return rc;
410}
Felipe Balbi0700faa2014-04-01 13:19:32 -0500411EXPORT_SYMBOL_GPL(fsg_store_ro);
Michal Nazarewicz93f93742009-10-28 16:57:17 +0100412
Andrzej Pietrasiewicz77850ae2013-10-09 10:06:03 +0200413ssize_t fsg_store_nofua(struct fsg_lun *curlun, const char *buf, size_t count)
Andy Shevchenkoa93917d2010-07-22 17:53:56 +0300414{
Andrzej Pietrasiewicz81a1d5e2013-10-15 08:33:12 +0200415 bool nofua;
Michal Nazarewiczdb8fa282011-04-14 00:37:00 +0200416 int ret;
Andy Shevchenkoa93917d2010-07-22 17:53:56 +0300417
Andrzej Pietrasiewicz81a1d5e2013-10-15 08:33:12 +0200418 ret = strtobool(buf, &nofua);
Michal Nazarewiczdb8fa282011-04-14 00:37:00 +0200419 if (ret)
420 return ret;
Andy Shevchenkoa93917d2010-07-22 17:53:56 +0300421
422 /* Sync data when switching from async mode to sync */
423 if (!nofua && curlun->nofua)
424 fsg_lun_fsync_sub(curlun);
425
426 curlun->nofua = nofua;
427
428 return count;
429}
Felipe Balbi0700faa2014-04-01 13:19:32 -0500430EXPORT_SYMBOL_GPL(fsg_store_nofua);
Andy Shevchenkoa93917d2010-07-22 17:53:56 +0300431
Andrzej Pietrasiewicz77850ae2013-10-09 10:06:03 +0200432ssize_t fsg_store_file(struct fsg_lun *curlun, struct rw_semaphore *filesem,
Andrzej Pietrasiewicz6fdc5dd2013-09-26 14:38:16 +0200433 const char *buf, size_t count)
Michal Nazarewicz93f93742009-10-28 16:57:17 +0100434{
Michal Nazarewicz93f93742009-10-28 16:57:17 +0100435 int rc = 0;
436
437 if (curlun->prevent_medium_removal && fsg_lun_is_open(curlun)) {
438 LDBG(curlun, "eject attempt prevented\n");
Michal Nazarewiczd26a6aa2009-11-09 14:15:23 +0100439 return -EBUSY; /* "Door is locked" */
Michal Nazarewicz93f93742009-10-28 16:57:17 +0100440 }
441
442 /* Remove a trailing newline */
443 if (count > 0 && buf[count-1] == '\n')
Michal Nazarewiczd26a6aa2009-11-09 14:15:23 +0100444 ((char *) buf)[count-1] = 0; /* Ugh! */
Michal Nazarewicz93f93742009-10-28 16:57:17 +0100445
Michal Nazarewicz93f93742009-10-28 16:57:17 +0100446 /* Load new medium */
Michal Nazarewiczd6e16a82012-06-18 14:37:20 +0200447 down_write(filesem);
Michal Nazarewicz93f93742009-10-28 16:57:17 +0100448 if (count > 0 && buf[0]) {
Michal Nazarewiczd6e16a82012-06-18 14:37:20 +0200449 /* fsg_lun_open() will close existing file if any. */
Michal Nazarewicz93f93742009-10-28 16:57:17 +0100450 rc = fsg_lun_open(curlun, buf);
451 if (rc == 0)
452 curlun->unit_attention_data =
453 SS_NOT_READY_TO_READY_TRANSITION;
Michal Nazarewiczd6e16a82012-06-18 14:37:20 +0200454 } else if (fsg_lun_is_open(curlun)) {
455 fsg_lun_close(curlun);
456 curlun->unit_attention_data = SS_MEDIUM_NOT_PRESENT;
Michal Nazarewicz93f93742009-10-28 16:57:17 +0100457 }
458 up_write(filesem);
459 return (rc < 0 ? rc : count);
460}
Felipe Balbi0700faa2014-04-01 13:19:32 -0500461EXPORT_SYMBOL_GPL(fsg_store_file);
Andrzej Pietrasiewicz6fdc5dd2013-09-26 14:38:16 +0200462
Andrzej Pietrasiewiczb8798632013-10-15 08:33:13 +0200463ssize_t fsg_store_cdrom(struct fsg_lun *curlun, struct rw_semaphore *filesem,
464 const char *buf, size_t count)
Andrzej Pietrasiewicz864328e2013-10-09 10:06:04 +0200465{
Andrzej Pietrasiewicz81a1d5e2013-10-15 08:33:12 +0200466 bool cdrom;
Andrzej Pietrasiewicz864328e2013-10-09 10:06:04 +0200467 int ret;
468
Andrzej Pietrasiewicz81a1d5e2013-10-15 08:33:12 +0200469 ret = strtobool(buf, &cdrom);
Andrzej Pietrasiewicz864328e2013-10-09 10:06:04 +0200470 if (ret)
471 return ret;
472
Andrzej Pietrasiewiczb8798632013-10-15 08:33:13 +0200473 down_read(filesem);
474 ret = cdrom ? _fsg_store_ro(curlun, true) : 0;
Andrzej Pietrasiewicz864328e2013-10-09 10:06:04 +0200475
Andrzej Pietrasiewiczb8798632013-10-15 08:33:13 +0200476 if (!ret) {
477 curlun->cdrom = cdrom;
478 ret = count;
479 }
480 up_read(filesem);
481
482 return ret;
Andrzej Pietrasiewicz864328e2013-10-09 10:06:04 +0200483}
Felipe Balbi0700faa2014-04-01 13:19:32 -0500484EXPORT_SYMBOL_GPL(fsg_store_cdrom);
Andrzej Pietrasiewicz864328e2013-10-09 10:06:04 +0200485
486ssize_t fsg_store_removable(struct fsg_lun *curlun, const char *buf,
487 size_t count)
488{
Andrzej Pietrasiewicz81a1d5e2013-10-15 08:33:12 +0200489 bool removable;
Andrzej Pietrasiewicz864328e2013-10-09 10:06:04 +0200490 int ret;
491
Andrzej Pietrasiewicz81a1d5e2013-10-15 08:33:12 +0200492 ret = strtobool(buf, &removable);
Andrzej Pietrasiewicz864328e2013-10-09 10:06:04 +0200493 if (ret)
494 return ret;
495
496 curlun->removable = removable;
497
498 return count;
499}
Felipe Balbi0700faa2014-04-01 13:19:32 -0500500EXPORT_SYMBOL_GPL(fsg_store_removable);
Andrzej Pietrasiewicz864328e2013-10-09 10:06:04 +0200501
Andrzej Pietrasiewicz6fdc5dd2013-09-26 14:38:16 +0200502MODULE_LICENSE("GPL");