Michal Nazarewicz | b6058d0 | 2009-10-28 16:57:14 +0100 | [diff] [blame] | 1 | /* |
| 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 Nazarewicz | 54b8360 | 2012-01-13 15:05:16 +0100 | [diff] [blame] | 6 | * Author: Michal Nazarewicz (mina86@mina86.com) |
Michal Nazarewicz | d618170 | 2009-10-28 16:57:15 +0100 | [diff] [blame] | 7 | * |
| 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 Nazarewicz | b6058d0 | 2009-10-28 16:57:14 +0100 | [diff] [blame] | 12 | */ |
| 13 | |
Michal Nazarewicz | d618170 | 2009-10-28 16:57:15 +0100 | [diff] [blame] | 14 | /* |
| 15 | * This file requires the following identifiers used in USB strings to |
| 16 | * be defined (each of type pointer to char): |
Michal Nazarewicz | d618170 | 2009-10-28 16:57:15 +0100 | [diff] [blame] | 17 | * - fsg_string_interface -- name of the interface |
Michal Nazarewicz | 93bcf12 | 2009-10-28 16:57:19 +0100 | [diff] [blame] | 18 | */ |
| 19 | |
Michal Nazarewicz | 606206c2 | 2009-10-28 16:57:21 +0100 | [diff] [blame] | 20 | /* |
Per Forlin | 6532c7f | 2011-08-19 21:21:27 +0200 | [diff] [blame] | 21 | * 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 Pietrasiewicz | 6fdc5dd | 2013-09-26 14:38:16 +0200 | [diff] [blame] | 26 | #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 Nazarewicz | d618170 | 2009-10-28 16:57:15 +0100 | [diff] [blame] | 31 | |
Andrzej Pietrasiewicz | 6fdc5dd | 2013-09-26 14:38:16 +0200 | [diff] [blame] | 32 | #include "storage_common.h" |
Michal Nazarewicz | b6058d0 | 2009-10-28 16:57:14 +0100 | [diff] [blame] | 33 | |
Michal Nazarewicz | b6058d0 | 2009-10-28 16:57:14 +0100 | [diff] [blame] | 34 | /* There is only one interface. */ |
| 35 | |
Andrzej Pietrasiewicz | 6fdc5dd | 2013-09-26 14:38:16 +0200 | [diff] [blame] | 36 | struct usb_interface_descriptor fsg_intf_desc = { |
Michal Nazarewicz | d618170 | 2009-10-28 16:57:15 +0100 | [diff] [blame] | 37 | .bLength = sizeof fsg_intf_desc, |
Michal Nazarewicz | b6058d0 | 2009-10-28 16:57:14 +0100 | [diff] [blame] | 38 | .bDescriptorType = USB_DT_INTERFACE, |
| 39 | |
Michal Nazarewicz | d26a6aa | 2009-11-09 14:15:23 +0100 | [diff] [blame] | 40 | .bNumEndpoints = 2, /* Adjusted during fsg_bind() */ |
Michal Nazarewicz | b6058d0 | 2009-10-28 16:57:14 +0100 | [diff] [blame] | 41 | .bInterfaceClass = USB_CLASS_MASS_STORAGE, |
Michal Nazarewicz | d26a6aa | 2009-11-09 14:15:23 +0100 | [diff] [blame] | 42 | .bInterfaceSubClass = USB_SC_SCSI, /* Adjusted during fsg_bind() */ |
| 43 | .bInterfaceProtocol = USB_PR_BULK, /* Adjusted during fsg_bind() */ |
Michal Nazarewicz | d618170 | 2009-10-28 16:57:15 +0100 | [diff] [blame] | 44 | .iInterface = FSG_STRING_INTERFACE, |
Michal Nazarewicz | b6058d0 | 2009-10-28 16:57:14 +0100 | [diff] [blame] | 45 | }; |
Felipe Balbi | 0700faa | 2014-04-01 13:19:32 -0500 | [diff] [blame] | 46 | EXPORT_SYMBOL_GPL(fsg_intf_desc); |
Michal Nazarewicz | b6058d0 | 2009-10-28 16:57:14 +0100 | [diff] [blame] | 47 | |
Michal Nazarewicz | d089326 | 2010-07-05 16:38:04 +0200 | [diff] [blame] | 48 | /* |
| 49 | * Three full-speed endpoint descriptors: bulk-in, bulk-out, and |
| 50 | * interrupt-in. |
| 51 | */ |
Michal Nazarewicz | b6058d0 | 2009-10-28 16:57:14 +0100 | [diff] [blame] | 52 | |
Andrzej Pietrasiewicz | 6fdc5dd | 2013-09-26 14:38:16 +0200 | [diff] [blame] | 53 | struct usb_endpoint_descriptor fsg_fs_bulk_in_desc = { |
Michal Nazarewicz | b6058d0 | 2009-10-28 16:57:14 +0100 | [diff] [blame] | 54 | .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 Balbi | 0700faa | 2014-04-01 13:19:32 -0500 | [diff] [blame] | 61 | EXPORT_SYMBOL_GPL(fsg_fs_bulk_in_desc); |
Michal Nazarewicz | b6058d0 | 2009-10-28 16:57:14 +0100 | [diff] [blame] | 62 | |
Andrzej Pietrasiewicz | 6fdc5dd | 2013-09-26 14:38:16 +0200 | [diff] [blame] | 63 | struct usb_endpoint_descriptor fsg_fs_bulk_out_desc = { |
Michal Nazarewicz | b6058d0 | 2009-10-28 16:57:14 +0100 | [diff] [blame] | 64 | .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 Balbi | 0700faa | 2014-04-01 13:19:32 -0500 | [diff] [blame] | 71 | EXPORT_SYMBOL_GPL(fsg_fs_bulk_out_desc); |
Michal Nazarewicz | b6058d0 | 2009-10-28 16:57:14 +0100 | [diff] [blame] | 72 | |
Andrzej Pietrasiewicz | 6fdc5dd | 2013-09-26 14:38:16 +0200 | [diff] [blame] | 73 | struct usb_descriptor_header *fsg_fs_function[] = { |
Michal Nazarewicz | d618170 | 2009-10-28 16:57:15 +0100 | [diff] [blame] | 74 | (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 Nazarewicz | b6058d0 | 2009-10-28 16:57:14 +0100 | [diff] [blame] | 77 | NULL, |
| 78 | }; |
Felipe Balbi | 0700faa | 2014-04-01 13:19:32 -0500 | [diff] [blame] | 79 | EXPORT_SYMBOL_GPL(fsg_fs_function); |
Michal Nazarewicz | b6058d0 | 2009-10-28 16:57:14 +0100 | [diff] [blame] | 80 | |
| 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 Opasiak | cc50dc2 | 2016-05-22 11:08:15 +0200 | [diff] [blame] | 86 | * That means alternate endpoint descriptors (bigger packets). |
Michal Nazarewicz | b6058d0 | 2009-10-28 16:57:14 +0100 | [diff] [blame] | 87 | */ |
Andrzej Pietrasiewicz | 6fdc5dd | 2013-09-26 14:38:16 +0200 | [diff] [blame] | 88 | struct usb_endpoint_descriptor fsg_hs_bulk_in_desc = { |
Michal Nazarewicz | b6058d0 | 2009-10-28 16:57:14 +0100 | [diff] [blame] | 89 | .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 Balbi | 0700faa | 2014-04-01 13:19:32 -0500 | [diff] [blame] | 96 | EXPORT_SYMBOL_GPL(fsg_hs_bulk_in_desc); |
Michal Nazarewicz | b6058d0 | 2009-10-28 16:57:14 +0100 | [diff] [blame] | 97 | |
Andrzej Pietrasiewicz | 6fdc5dd | 2013-09-26 14:38:16 +0200 | [diff] [blame] | 98 | struct usb_endpoint_descriptor fsg_hs_bulk_out_desc = { |
Michal Nazarewicz | b6058d0 | 2009-10-28 16:57:14 +0100 | [diff] [blame] | 99 | .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 Nazarewicz | d26a6aa | 2009-11-09 14:15:23 +0100 | [diff] [blame] | 105 | .bInterval = 1, /* NAK every 1 uframe */ |
Michal Nazarewicz | b6058d0 | 2009-10-28 16:57:14 +0100 | [diff] [blame] | 106 | }; |
Felipe Balbi | 0700faa | 2014-04-01 13:19:32 -0500 | [diff] [blame] | 107 | EXPORT_SYMBOL_GPL(fsg_hs_bulk_out_desc); |
Michal Nazarewicz | b6058d0 | 2009-10-28 16:57:14 +0100 | [diff] [blame] | 108 | |
Michal Nazarewicz | 93bcf12 | 2009-10-28 16:57:19 +0100 | [diff] [blame] | 109 | |
Andrzej Pietrasiewicz | 6fdc5dd | 2013-09-26 14:38:16 +0200 | [diff] [blame] | 110 | struct usb_descriptor_header *fsg_hs_function[] = { |
Michal Nazarewicz | d618170 | 2009-10-28 16:57:15 +0100 | [diff] [blame] | 111 | (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 Nazarewicz | b6058d0 | 2009-10-28 16:57:14 +0100 | [diff] [blame] | 114 | NULL, |
| 115 | }; |
Felipe Balbi | 0700faa | 2014-04-01 13:19:32 -0500 | [diff] [blame] | 116 | EXPORT_SYMBOL_GPL(fsg_hs_function); |
Michal Nazarewicz | b6058d0 | 2009-10-28 16:57:14 +0100 | [diff] [blame] | 117 | |
Andrzej Pietrasiewicz | 6fdc5dd | 2013-09-26 14:38:16 +0200 | [diff] [blame] | 118 | struct usb_endpoint_descriptor fsg_ss_bulk_in_desc = { |
Felipe Balbi | 4bb99b7 | 2011-08-03 14:33:27 +0300 | [diff] [blame] | 119 | .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 Balbi | 0700faa | 2014-04-01 13:19:32 -0500 | [diff] [blame] | 126 | EXPORT_SYMBOL_GPL(fsg_ss_bulk_in_desc); |
Felipe Balbi | 4bb99b7 | 2011-08-03 14:33:27 +0300 | [diff] [blame] | 127 | |
Andrzej Pietrasiewicz | 6fdc5dd | 2013-09-26 14:38:16 +0200 | [diff] [blame] | 128 | struct usb_ss_ep_comp_descriptor fsg_ss_bulk_in_comp_desc = { |
Felipe Balbi | 4bb99b7 | 2011-08-03 14:33:27 +0300 | [diff] [blame] | 129 | .bLength = sizeof(fsg_ss_bulk_in_comp_desc), |
| 130 | .bDescriptorType = USB_DT_SS_ENDPOINT_COMP, |
| 131 | |
| 132 | /*.bMaxBurst = DYNAMIC, */ |
| 133 | }; |
Felipe Balbi | 0700faa | 2014-04-01 13:19:32 -0500 | [diff] [blame] | 134 | EXPORT_SYMBOL_GPL(fsg_ss_bulk_in_comp_desc); |
Felipe Balbi | 4bb99b7 | 2011-08-03 14:33:27 +0300 | [diff] [blame] | 135 | |
Andrzej Pietrasiewicz | 6fdc5dd | 2013-09-26 14:38:16 +0200 | [diff] [blame] | 136 | struct usb_endpoint_descriptor fsg_ss_bulk_out_desc = { |
Felipe Balbi | 4bb99b7 | 2011-08-03 14:33:27 +0300 | [diff] [blame] | 137 | .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 Balbi | 0700faa | 2014-04-01 13:19:32 -0500 | [diff] [blame] | 144 | EXPORT_SYMBOL_GPL(fsg_ss_bulk_out_desc); |
Felipe Balbi | 4bb99b7 | 2011-08-03 14:33:27 +0300 | [diff] [blame] | 145 | |
Andrzej Pietrasiewicz | 6fdc5dd | 2013-09-26 14:38:16 +0200 | [diff] [blame] | 146 | struct usb_ss_ep_comp_descriptor fsg_ss_bulk_out_comp_desc = { |
Felipe Balbi | 4bb99b7 | 2011-08-03 14:33:27 +0300 | [diff] [blame] | 147 | .bLength = sizeof(fsg_ss_bulk_in_comp_desc), |
| 148 | .bDescriptorType = USB_DT_SS_ENDPOINT_COMP, |
| 149 | |
| 150 | /*.bMaxBurst = DYNAMIC, */ |
| 151 | }; |
Felipe Balbi | 0700faa | 2014-04-01 13:19:32 -0500 | [diff] [blame] | 152 | EXPORT_SYMBOL_GPL(fsg_ss_bulk_out_comp_desc); |
Felipe Balbi | 4bb99b7 | 2011-08-03 14:33:27 +0300 | [diff] [blame] | 153 | |
Andrzej Pietrasiewicz | 6fdc5dd | 2013-09-26 14:38:16 +0200 | [diff] [blame] | 154 | struct usb_descriptor_header *fsg_ss_function[] = { |
Felipe Balbi | 4bb99b7 | 2011-08-03 14:33:27 +0300 | [diff] [blame] | 155 | (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 Balbi | 4bb99b7 | 2011-08-03 14:33:27 +0300 | [diff] [blame] | 160 | NULL, |
| 161 | }; |
Felipe Balbi | 0700faa | 2014-04-01 13:19:32 -0500 | [diff] [blame] | 162 | EXPORT_SYMBOL_GPL(fsg_ss_function); |
Michal Nazarewicz | b6058d0 | 2009-10-28 16:57:14 +0100 | [diff] [blame] | 163 | |
| 164 | |
| 165 | /*-------------------------------------------------------------------------*/ |
| 166 | |
Michal Nazarewicz | d089326 | 2010-07-05 16:38:04 +0200 | [diff] [blame] | 167 | /* |
| 168 | * If the next two routines are called while the gadget is registered, |
| 169 | * the caller must own fsg->filesem for writing. |
| 170 | */ |
Michal Nazarewicz | b6058d0 | 2009-10-28 16:57:14 +0100 | [diff] [blame] | 171 | |
Andrzej Pietrasiewicz | 6fdc5dd | 2013-09-26 14:38:16 +0200 | [diff] [blame] | 172 | void fsg_lun_close(struct fsg_lun *curlun) |
Michal Nazarewicz | d6e16a8 | 2012-06-18 14:37:20 +0200 | [diff] [blame] | 173 | { |
| 174 | if (curlun->filp) { |
| 175 | LDBG(curlun, "close backing file\n"); |
| 176 | fput(curlun->filp); |
| 177 | curlun->filp = NULL; |
| 178 | } |
| 179 | } |
Felipe Balbi | 0700faa | 2014-04-01 13:19:32 -0500 | [diff] [blame] | 180 | EXPORT_SYMBOL_GPL(fsg_lun_close); |
Michal Nazarewicz | d6e16a8 | 2012-06-18 14:37:20 +0200 | [diff] [blame] | 181 | |
Andrzej Pietrasiewicz | 6fdc5dd | 2013-09-26 14:38:16 +0200 | [diff] [blame] | 182 | int fsg_lun_open(struct fsg_lun *curlun, const char *filename) |
Michal Nazarewicz | b6058d0 | 2009-10-28 16:57:14 +0100 | [diff] [blame] | 183 | { |
| 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 Nazarewicz | d6e16a8 | 2012-06-18 14:37:20 +0200 | [diff] [blame] | 191 | unsigned int blkbits; |
| 192 | unsigned int blksize; |
Michal Nazarewicz | b6058d0 | 2009-10-28 16:57:14 +0100 | [diff] [blame] | 193 | |
| 194 | /* R/W if we can, R/O if we must */ |
Michal Nazarewicz | e909ef5 | 2009-10-28 16:57:16 +0100 | [diff] [blame] | 195 | ro = curlun->initially_ro; |
Michal Nazarewicz | b6058d0 | 2009-10-28 16:57:14 +0100 | [diff] [blame] | 196 | if (!ro) { |
| 197 | filp = filp_open(filename, O_RDWR | O_LARGEFILE, 0); |
Tejun Heo | 75f1dc0 | 2010-11-13 11:55:17 +0100 | [diff] [blame] | 198 | if (PTR_ERR(filp) == -EROFS || PTR_ERR(filp) == -EACCES) |
Michal Nazarewicz | b6058d0 | 2009-10-28 16:57:14 +0100 | [diff] [blame] | 199 | 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 Viro | 496ad9a | 2013-01-23 17:07:38 -0500 | [diff] [blame] | 211 | inode = file_inode(filp); |
Al Viro | 20818a0 | 2012-07-22 21:23:33 +0400 | [diff] [blame] | 212 | if ((!S_ISREG(inode->i_mode) && !S_ISBLK(inode->i_mode))) { |
Michal Nazarewicz | b6058d0 | 2009-10-28 16:57:14 +0100 | [diff] [blame] | 213 | LINFO(curlun, "invalid file type: %s\n", filename); |
| 214 | goto out; |
| 215 | } |
| 216 | |
Michal Nazarewicz | d089326 | 2010-07-05 16:38:04 +0200 | [diff] [blame] | 217 | /* |
| 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 Viro | 7f7f25e | 2014-02-11 17:49:24 -0500 | [diff] [blame] | 221 | if (!(filp->f_mode & FMODE_CAN_READ)) { |
Michal Nazarewicz | b6058d0 | 2009-10-28 16:57:14 +0100 | [diff] [blame] | 222 | LINFO(curlun, "file not readable: %s\n", filename); |
| 223 | goto out; |
| 224 | } |
Al Viro | 7f7f25e | 2014-02-11 17:49:24 -0500 | [diff] [blame] | 225 | if (!(filp->f_mode & FMODE_CAN_WRITE)) |
Michal Nazarewicz | b6058d0 | 2009-10-28 16:57:14 +0100 | [diff] [blame] | 226 | 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 Li | 3f565a3 | 2011-08-17 22:52:59 -0700 | [diff] [blame] | 234 | |
| 235 | if (curlun->cdrom) { |
Michal Nazarewicz | d6e16a8 | 2012-06-18 14:37:20 +0200 | [diff] [blame] | 236 | blksize = 2048; |
| 237 | blkbits = 11; |
Peiyu Li | 3f565a3 | 2011-08-17 22:52:59 -0700 | [diff] [blame] | 238 | } else if (inode->i_bdev) { |
Michal Nazarewicz | d6e16a8 | 2012-06-18 14:37:20 +0200 | [diff] [blame] | 239 | blksize = bdev_logical_block_size(inode->i_bdev); |
| 240 | blkbits = blksize_bits(blksize); |
Peiyu Li | 3f565a3 | 2011-08-17 22:52:59 -0700 | [diff] [blame] | 241 | } else { |
Michal Nazarewicz | d6e16a8 | 2012-06-18 14:37:20 +0200 | [diff] [blame] | 242 | blksize = 512; |
| 243 | blkbits = 9; |
Peiyu Li | 3f565a3 | 2011-08-17 22:52:59 -0700 | [diff] [blame] | 244 | } |
| 245 | |
Michal Nazarewicz | d6e16a8 | 2012-06-18 14:37:20 +0200 | [diff] [blame] | 246 | num_sectors = size >> blkbits; /* File size in logic-block-size blocks */ |
Michal Nazarewicz | b6058d0 | 2009-10-28 16:57:14 +0100 | [diff] [blame] | 247 | min_sectors = 1; |
Michal Nazarewicz | e909ef5 | 2009-10-28 16:57:16 +0100 | [diff] [blame] | 248 | if (curlun->cdrom) { |
Peiyu Li | 3f565a3 | 2011-08-17 22:52:59 -0700 | [diff] [blame] | 249 | min_sectors = 300; /* Smallest track is 300 frames */ |
| 250 | if (num_sectors >= 256*60*75) { |
| 251 | num_sectors = 256*60*75 - 1; |
Michal Nazarewicz | b6058d0 | 2009-10-28 16:57:14 +0100 | [diff] [blame] | 252 | 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 Nazarewicz | d6e16a8 | 2012-06-18 14:37:20 +0200 | [diff] [blame] | 263 | if (fsg_lun_is_open(curlun)) |
| 264 | fsg_lun_close(curlun); |
| 265 | |
Michal Nazarewicz | d6e16a8 | 2012-06-18 14:37:20 +0200 | [diff] [blame] | 266 | curlun->blksize = blksize; |
| 267 | curlun->blkbits = blkbits; |
Michal Nazarewicz | b6058d0 | 2009-10-28 16:57:14 +0100 | [diff] [blame] | 268 | 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 Viro | 20818a0 | 2012-07-22 21:23:33 +0400 | [diff] [blame] | 273 | return 0; |
Michal Nazarewicz | b6058d0 | 2009-10-28 16:57:14 +0100 | [diff] [blame] | 274 | |
| 275 | out: |
Al Viro | 20818a0 | 2012-07-22 21:23:33 +0400 | [diff] [blame] | 276 | fput(filp); |
Michal Nazarewicz | b6058d0 | 2009-10-28 16:57:14 +0100 | [diff] [blame] | 277 | return rc; |
| 278 | } |
Felipe Balbi | 0700faa | 2014-04-01 13:19:32 -0500 | [diff] [blame] | 279 | EXPORT_SYMBOL_GPL(fsg_lun_open); |
Michal Nazarewicz | b6058d0 | 2009-10-28 16:57:14 +0100 | [diff] [blame] | 280 | |
| 281 | |
Michal Nazarewicz | b6058d0 | 2009-10-28 16:57:14 +0100 | [diff] [blame] | 282 | /*-------------------------------------------------------------------------*/ |
| 283 | |
Michal Nazarewicz | d089326 | 2010-07-05 16:38:04 +0200 | [diff] [blame] | 284 | /* |
| 285 | * Sync the file data, don't bother with the metadata. |
| 286 | * This code was copied from fs/buffer.c:sys_fdatasync(). |
| 287 | */ |
Andrzej Pietrasiewicz | 6fdc5dd | 2013-09-26 14:38:16 +0200 | [diff] [blame] | 288 | int fsg_lun_fsync_sub(struct fsg_lun *curlun) |
Michal Nazarewicz | b6058d0 | 2009-10-28 16:57:14 +0100 | [diff] [blame] | 289 | { |
| 290 | struct file *filp = curlun->filp; |
| 291 | |
| 292 | if (curlun->ro || !filp) |
| 293 | return 0; |
Christoph Hellwig | 8018ab0 | 2010-03-22 17:32:25 +0100 | [diff] [blame] | 294 | return vfs_fsync(filp, 1); |
Michal Nazarewicz | b6058d0 | 2009-10-28 16:57:14 +0100 | [diff] [blame] | 295 | } |
Felipe Balbi | 0700faa | 2014-04-01 13:19:32 -0500 | [diff] [blame] | 296 | EXPORT_SYMBOL_GPL(fsg_lun_fsync_sub); |
Michal Nazarewicz | b6058d0 | 2009-10-28 16:57:14 +0100 | [diff] [blame] | 297 | |
Andrzej Pietrasiewicz | 6fdc5dd | 2013-09-26 14:38:16 +0200 | [diff] [blame] | 298 | void store_cdrom_address(u8 *dest, int msf, u32 addr) |
Michal Nazarewicz | b6058d0 | 2009-10-28 16:57:14 +0100 | [diff] [blame] | 299 | { |
| 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 Balbi | 0700faa | 2014-04-01 13:19:32 -0500 | [diff] [blame] | 315 | EXPORT_SYMBOL_GPL(store_cdrom_address); |
Michal Nazarewicz | 93f9374 | 2009-10-28 16:57:17 +0100 | [diff] [blame] | 316 | |
| 317 | /*-------------------------------------------------------------------------*/ |
| 318 | |
| 319 | |
Andrzej Pietrasiewicz | 77850ae | 2013-10-09 10:06:03 +0200 | [diff] [blame] | 320 | ssize_t fsg_show_ro(struct fsg_lun *curlun, char *buf) |
Michal Nazarewicz | 93f9374 | 2009-10-28 16:57:17 +0100 | [diff] [blame] | 321 | { |
Michal Nazarewicz | 93f9374 | 2009-10-28 16:57:17 +0100 | [diff] [blame] | 322 | return sprintf(buf, "%d\n", fsg_lun_is_open(curlun) |
| 323 | ? curlun->ro |
| 324 | : curlun->initially_ro); |
| 325 | } |
Felipe Balbi | 0700faa | 2014-04-01 13:19:32 -0500 | [diff] [blame] | 326 | EXPORT_SYMBOL_GPL(fsg_show_ro); |
Michal Nazarewicz | 93f9374 | 2009-10-28 16:57:17 +0100 | [diff] [blame] | 327 | |
Andrzej Pietrasiewicz | 77850ae | 2013-10-09 10:06:03 +0200 | [diff] [blame] | 328 | ssize_t fsg_show_nofua(struct fsg_lun *curlun, char *buf) |
Andy Shevchenko | a93917d | 2010-07-22 17:53:56 +0300 | [diff] [blame] | 329 | { |
Andy Shevchenko | a93917d | 2010-07-22 17:53:56 +0300 | [diff] [blame] | 330 | return sprintf(buf, "%u\n", curlun->nofua); |
| 331 | } |
Felipe Balbi | 0700faa | 2014-04-01 13:19:32 -0500 | [diff] [blame] | 332 | EXPORT_SYMBOL_GPL(fsg_show_nofua); |
Andy Shevchenko | a93917d | 2010-07-22 17:53:56 +0300 | [diff] [blame] | 333 | |
Andrzej Pietrasiewicz | 77850ae | 2013-10-09 10:06:03 +0200 | [diff] [blame] | 334 | ssize_t fsg_show_file(struct fsg_lun *curlun, struct rw_semaphore *filesem, |
Andrzej Pietrasiewicz | 6fdc5dd | 2013-09-26 14:38:16 +0200 | [diff] [blame] | 335 | char *buf) |
Michal Nazarewicz | 93f9374 | 2009-10-28 16:57:17 +0100 | [diff] [blame] | 336 | { |
Michal Nazarewicz | 93f9374 | 2009-10-28 16:57:17 +0100 | [diff] [blame] | 337 | char *p; |
| 338 | ssize_t rc; |
| 339 | |
| 340 | down_read(filesem); |
Michal Nazarewicz | d26a6aa | 2009-11-09 14:15:23 +0100 | [diff] [blame] | 341 | if (fsg_lun_is_open(curlun)) { /* Get the complete pathname */ |
Miklos Szeredi | 9bf39ab | 2015-06-19 10:29:13 +0200 | [diff] [blame] | 342 | p = file_path(curlun->filp, buf, PAGE_SIZE - 1); |
Michal Nazarewicz | 93f9374 | 2009-10-28 16:57:17 +0100 | [diff] [blame] | 343 | if (IS_ERR(p)) |
| 344 | rc = PTR_ERR(p); |
| 345 | else { |
| 346 | rc = strlen(p); |
| 347 | memmove(buf, p, rc); |
Michal Nazarewicz | d26a6aa | 2009-11-09 14:15:23 +0100 | [diff] [blame] | 348 | buf[rc] = '\n'; /* Add a newline */ |
Michal Nazarewicz | 93f9374 | 2009-10-28 16:57:17 +0100 | [diff] [blame] | 349 | buf[++rc] = 0; |
| 350 | } |
Michal Nazarewicz | d26a6aa | 2009-11-09 14:15:23 +0100 | [diff] [blame] | 351 | } else { /* No file, return 0 bytes */ |
Michal Nazarewicz | 93f9374 | 2009-10-28 16:57:17 +0100 | [diff] [blame] | 352 | *buf = 0; |
| 353 | rc = 0; |
| 354 | } |
| 355 | up_read(filesem); |
| 356 | return rc; |
| 357 | } |
Felipe Balbi | 0700faa | 2014-04-01 13:19:32 -0500 | [diff] [blame] | 358 | EXPORT_SYMBOL_GPL(fsg_show_file); |
Michal Nazarewicz | 93f9374 | 2009-10-28 16:57:17 +0100 | [diff] [blame] | 359 | |
Andrzej Pietrasiewicz | 864328e | 2013-10-09 10:06:04 +0200 | [diff] [blame] | 360 | ssize_t fsg_show_cdrom(struct fsg_lun *curlun, char *buf) |
| 361 | { |
| 362 | return sprintf(buf, "%u\n", curlun->cdrom); |
| 363 | } |
Felipe Balbi | 0700faa | 2014-04-01 13:19:32 -0500 | [diff] [blame] | 364 | EXPORT_SYMBOL_GPL(fsg_show_cdrom); |
Andrzej Pietrasiewicz | 864328e | 2013-10-09 10:06:04 +0200 | [diff] [blame] | 365 | |
| 366 | ssize_t fsg_show_removable(struct fsg_lun *curlun, char *buf) |
| 367 | { |
| 368 | return sprintf(buf, "%u\n", curlun->removable); |
| 369 | } |
Felipe Balbi | 0700faa | 2014-04-01 13:19:32 -0500 | [diff] [blame] | 370 | EXPORT_SYMBOL_GPL(fsg_show_removable); |
Michal Nazarewicz | 93f9374 | 2009-10-28 16:57:17 +0100 | [diff] [blame] | 371 | |
Philipp Gesang | 6ac4709 | 2016-08-01 17:04:19 +0200 | [diff] [blame] | 372 | ssize_t fsg_show_inquiry_string(struct fsg_lun *curlun, char *buf) |
| 373 | { |
| 374 | return sprintf(buf, "%s\n", curlun->inquiry_string); |
| 375 | } |
| 376 | EXPORT_SYMBOL_GPL(fsg_show_inquiry_string); |
| 377 | |
Andrzej Pietrasiewicz | b879863 | 2013-10-15 08:33:13 +0200 | [diff] [blame] | 378 | /* |
| 379 | * The caller must hold fsg->filesem for reading when calling this function. |
| 380 | */ |
| 381 | static ssize_t _fsg_store_ro(struct fsg_lun *curlun, bool ro) |
| 382 | { |
| 383 | if (fsg_lun_is_open(curlun)) { |
| 384 | LDBG(curlun, "read-only status change prevented\n"); |
| 385 | return -EBUSY; |
| 386 | } |
| 387 | |
| 388 | curlun->ro = ro; |
| 389 | curlun->initially_ro = ro; |
| 390 | LDBG(curlun, "read-only status set to %d\n", curlun->ro); |
| 391 | |
| 392 | return 0; |
| 393 | } |
| 394 | |
Andrzej Pietrasiewicz | 77850ae | 2013-10-09 10:06:03 +0200 | [diff] [blame] | 395 | ssize_t fsg_store_ro(struct fsg_lun *curlun, struct rw_semaphore *filesem, |
Andrzej Pietrasiewicz | 6fdc5dd | 2013-09-26 14:38:16 +0200 | [diff] [blame] | 396 | const char *buf, size_t count) |
Michal Nazarewicz | 93f9374 | 2009-10-28 16:57:17 +0100 | [diff] [blame] | 397 | { |
Michal Nazarewicz | fd4477b | 2011-04-14 11:55:43 +0200 | [diff] [blame] | 398 | ssize_t rc; |
Andrzej Pietrasiewicz | 81a1d5e | 2013-10-15 08:33:12 +0200 | [diff] [blame] | 399 | bool ro; |
Michal Nazarewicz | 93f9374 | 2009-10-28 16:57:17 +0100 | [diff] [blame] | 400 | |
Andrzej Pietrasiewicz | 81a1d5e | 2013-10-15 08:33:12 +0200 | [diff] [blame] | 401 | rc = strtobool(buf, &ro); |
Michal Nazarewicz | db8fa28 | 2011-04-14 00:37:00 +0200 | [diff] [blame] | 402 | if (rc) |
| 403 | return rc; |
Michal Nazarewicz | 93f9374 | 2009-10-28 16:57:17 +0100 | [diff] [blame] | 404 | |
Michal Nazarewicz | d089326 | 2010-07-05 16:38:04 +0200 | [diff] [blame] | 405 | /* |
| 406 | * Allow the write-enable status to change only while the |
| 407 | * backing file is closed. |
| 408 | */ |
Michal Nazarewicz | 93f9374 | 2009-10-28 16:57:17 +0100 | [diff] [blame] | 409 | down_read(filesem); |
Andrzej Pietrasiewicz | b879863 | 2013-10-15 08:33:13 +0200 | [diff] [blame] | 410 | rc = _fsg_store_ro(curlun, ro); |
| 411 | if (!rc) |
Michal Nazarewicz | fd4477b | 2011-04-14 11:55:43 +0200 | [diff] [blame] | 412 | rc = count; |
Michal Nazarewicz | 93f9374 | 2009-10-28 16:57:17 +0100 | [diff] [blame] | 413 | up_read(filesem); |
Andrzej Pietrasiewicz | b879863 | 2013-10-15 08:33:13 +0200 | [diff] [blame] | 414 | |
Michal Nazarewicz | 93f9374 | 2009-10-28 16:57:17 +0100 | [diff] [blame] | 415 | return rc; |
| 416 | } |
Felipe Balbi | 0700faa | 2014-04-01 13:19:32 -0500 | [diff] [blame] | 417 | EXPORT_SYMBOL_GPL(fsg_store_ro); |
Michal Nazarewicz | 93f9374 | 2009-10-28 16:57:17 +0100 | [diff] [blame] | 418 | |
Andrzej Pietrasiewicz | 77850ae | 2013-10-09 10:06:03 +0200 | [diff] [blame] | 419 | ssize_t fsg_store_nofua(struct fsg_lun *curlun, const char *buf, size_t count) |
Andy Shevchenko | a93917d | 2010-07-22 17:53:56 +0300 | [diff] [blame] | 420 | { |
Andrzej Pietrasiewicz | 81a1d5e | 2013-10-15 08:33:12 +0200 | [diff] [blame] | 421 | bool nofua; |
Michal Nazarewicz | db8fa28 | 2011-04-14 00:37:00 +0200 | [diff] [blame] | 422 | int ret; |
Andy Shevchenko | a93917d | 2010-07-22 17:53:56 +0300 | [diff] [blame] | 423 | |
Andrzej Pietrasiewicz | 81a1d5e | 2013-10-15 08:33:12 +0200 | [diff] [blame] | 424 | ret = strtobool(buf, &nofua); |
Michal Nazarewicz | db8fa28 | 2011-04-14 00:37:00 +0200 | [diff] [blame] | 425 | if (ret) |
| 426 | return ret; |
Andy Shevchenko | a93917d | 2010-07-22 17:53:56 +0300 | [diff] [blame] | 427 | |
| 428 | /* Sync data when switching from async mode to sync */ |
| 429 | if (!nofua && curlun->nofua) |
| 430 | fsg_lun_fsync_sub(curlun); |
| 431 | |
| 432 | curlun->nofua = nofua; |
| 433 | |
| 434 | return count; |
| 435 | } |
Felipe Balbi | 0700faa | 2014-04-01 13:19:32 -0500 | [diff] [blame] | 436 | EXPORT_SYMBOL_GPL(fsg_store_nofua); |
Andy Shevchenko | a93917d | 2010-07-22 17:53:56 +0300 | [diff] [blame] | 437 | |
Andrzej Pietrasiewicz | 77850ae | 2013-10-09 10:06:03 +0200 | [diff] [blame] | 438 | ssize_t fsg_store_file(struct fsg_lun *curlun, struct rw_semaphore *filesem, |
Andrzej Pietrasiewicz | 6fdc5dd | 2013-09-26 14:38:16 +0200 | [diff] [blame] | 439 | const char *buf, size_t count) |
Michal Nazarewicz | 93f9374 | 2009-10-28 16:57:17 +0100 | [diff] [blame] | 440 | { |
Michal Nazarewicz | 93f9374 | 2009-10-28 16:57:17 +0100 | [diff] [blame] | 441 | int rc = 0; |
| 442 | |
| 443 | if (curlun->prevent_medium_removal && fsg_lun_is_open(curlun)) { |
| 444 | LDBG(curlun, "eject attempt prevented\n"); |
Michal Nazarewicz | d26a6aa | 2009-11-09 14:15:23 +0100 | [diff] [blame] | 445 | return -EBUSY; /* "Door is locked" */ |
Michal Nazarewicz | 93f9374 | 2009-10-28 16:57:17 +0100 | [diff] [blame] | 446 | } |
| 447 | |
| 448 | /* Remove a trailing newline */ |
| 449 | if (count > 0 && buf[count-1] == '\n') |
Michal Nazarewicz | d26a6aa | 2009-11-09 14:15:23 +0100 | [diff] [blame] | 450 | ((char *) buf)[count-1] = 0; /* Ugh! */ |
Michal Nazarewicz | 93f9374 | 2009-10-28 16:57:17 +0100 | [diff] [blame] | 451 | |
Michal Nazarewicz | 93f9374 | 2009-10-28 16:57:17 +0100 | [diff] [blame] | 452 | /* Load new medium */ |
Michal Nazarewicz | d6e16a8 | 2012-06-18 14:37:20 +0200 | [diff] [blame] | 453 | down_write(filesem); |
Michal Nazarewicz | 93f9374 | 2009-10-28 16:57:17 +0100 | [diff] [blame] | 454 | if (count > 0 && buf[0]) { |
Michal Nazarewicz | d6e16a8 | 2012-06-18 14:37:20 +0200 | [diff] [blame] | 455 | /* fsg_lun_open() will close existing file if any. */ |
Michal Nazarewicz | 93f9374 | 2009-10-28 16:57:17 +0100 | [diff] [blame] | 456 | rc = fsg_lun_open(curlun, buf); |
| 457 | if (rc == 0) |
| 458 | curlun->unit_attention_data = |
| 459 | SS_NOT_READY_TO_READY_TRANSITION; |
Michal Nazarewicz | d6e16a8 | 2012-06-18 14:37:20 +0200 | [diff] [blame] | 460 | } else if (fsg_lun_is_open(curlun)) { |
| 461 | fsg_lun_close(curlun); |
| 462 | curlun->unit_attention_data = SS_MEDIUM_NOT_PRESENT; |
Michal Nazarewicz | 93f9374 | 2009-10-28 16:57:17 +0100 | [diff] [blame] | 463 | } |
| 464 | up_write(filesem); |
| 465 | return (rc < 0 ? rc : count); |
| 466 | } |
Felipe Balbi | 0700faa | 2014-04-01 13:19:32 -0500 | [diff] [blame] | 467 | EXPORT_SYMBOL_GPL(fsg_store_file); |
Andrzej Pietrasiewicz | 6fdc5dd | 2013-09-26 14:38:16 +0200 | [diff] [blame] | 468 | |
Andrzej Pietrasiewicz | b879863 | 2013-10-15 08:33:13 +0200 | [diff] [blame] | 469 | ssize_t fsg_store_cdrom(struct fsg_lun *curlun, struct rw_semaphore *filesem, |
| 470 | const char *buf, size_t count) |
Andrzej Pietrasiewicz | 864328e | 2013-10-09 10:06:04 +0200 | [diff] [blame] | 471 | { |
Andrzej Pietrasiewicz | 81a1d5e | 2013-10-15 08:33:12 +0200 | [diff] [blame] | 472 | bool cdrom; |
Andrzej Pietrasiewicz | 864328e | 2013-10-09 10:06:04 +0200 | [diff] [blame] | 473 | int ret; |
| 474 | |
Andrzej Pietrasiewicz | 81a1d5e | 2013-10-15 08:33:12 +0200 | [diff] [blame] | 475 | ret = strtobool(buf, &cdrom); |
Andrzej Pietrasiewicz | 864328e | 2013-10-09 10:06:04 +0200 | [diff] [blame] | 476 | if (ret) |
| 477 | return ret; |
| 478 | |
Andrzej Pietrasiewicz | b879863 | 2013-10-15 08:33:13 +0200 | [diff] [blame] | 479 | down_read(filesem); |
| 480 | ret = cdrom ? _fsg_store_ro(curlun, true) : 0; |
Andrzej Pietrasiewicz | 864328e | 2013-10-09 10:06:04 +0200 | [diff] [blame] | 481 | |
Andrzej Pietrasiewicz | b879863 | 2013-10-15 08:33:13 +0200 | [diff] [blame] | 482 | if (!ret) { |
| 483 | curlun->cdrom = cdrom; |
| 484 | ret = count; |
| 485 | } |
| 486 | up_read(filesem); |
| 487 | |
| 488 | return ret; |
Andrzej Pietrasiewicz | 864328e | 2013-10-09 10:06:04 +0200 | [diff] [blame] | 489 | } |
Felipe Balbi | 0700faa | 2014-04-01 13:19:32 -0500 | [diff] [blame] | 490 | EXPORT_SYMBOL_GPL(fsg_store_cdrom); |
Andrzej Pietrasiewicz | 864328e | 2013-10-09 10:06:04 +0200 | [diff] [blame] | 491 | |
| 492 | ssize_t fsg_store_removable(struct fsg_lun *curlun, const char *buf, |
| 493 | size_t count) |
| 494 | { |
Andrzej Pietrasiewicz | 81a1d5e | 2013-10-15 08:33:12 +0200 | [diff] [blame] | 495 | bool removable; |
Andrzej Pietrasiewicz | 864328e | 2013-10-09 10:06:04 +0200 | [diff] [blame] | 496 | int ret; |
| 497 | |
Andrzej Pietrasiewicz | 81a1d5e | 2013-10-15 08:33:12 +0200 | [diff] [blame] | 498 | ret = strtobool(buf, &removable); |
Andrzej Pietrasiewicz | 864328e | 2013-10-09 10:06:04 +0200 | [diff] [blame] | 499 | if (ret) |
| 500 | return ret; |
| 501 | |
| 502 | curlun->removable = removable; |
| 503 | |
| 504 | return count; |
| 505 | } |
Felipe Balbi | 0700faa | 2014-04-01 13:19:32 -0500 | [diff] [blame] | 506 | EXPORT_SYMBOL_GPL(fsg_store_removable); |
Andrzej Pietrasiewicz | 864328e | 2013-10-09 10:06:04 +0200 | [diff] [blame] | 507 | |
Philipp Gesang | 6ac4709 | 2016-08-01 17:04:19 +0200 | [diff] [blame] | 508 | ssize_t fsg_store_inquiry_string(struct fsg_lun *curlun, const char *buf, |
| 509 | size_t count) |
| 510 | { |
| 511 | const size_t len = min(count, sizeof(curlun->inquiry_string)); |
| 512 | |
| 513 | if (len == 0 || buf[0] == '\n') { |
| 514 | curlun->inquiry_string[0] = 0; |
| 515 | } else { |
| 516 | snprintf(curlun->inquiry_string, |
| 517 | sizeof(curlun->inquiry_string), "%-28s", buf); |
| 518 | if (curlun->inquiry_string[len-1] == '\n') |
| 519 | curlun->inquiry_string[len-1] = ' '; |
| 520 | } |
| 521 | |
| 522 | return count; |
| 523 | } |
| 524 | EXPORT_SYMBOL_GPL(fsg_store_inquiry_string); |
| 525 | |
Andrzej Pietrasiewicz | 6fdc5dd | 2013-09-26 14:38:16 +0200 | [diff] [blame] | 526 | MODULE_LICENSE("GPL"); |