blob: 2936cfe41dc12c960ed86ed0a91d0a09bab75f1f [file] [log] [blame]
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001/*******************************************************************************
2 * Filename: target_core_file.c
3 *
4 * This file contains the Storage Engine <-> FILEIO transport specific functions
5 *
Nicholas Bellingerfd9a11d2012-11-09 14:51:48 -08006 * (c) Copyright 2005-2012 RisingTide Systems LLC.
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08007 *
8 * Nicholas A. Bellinger <nab@kernel.org>
9 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
23 *
24 ******************************************************************************/
25
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080026#include <linux/string.h>
27#include <linux/parser.h>
28#include <linux/timer.h>
29#include <linux/blkdev.h>
30#include <linux/slab.h>
31#include <linux/spinlock.h>
Paul Gortmaker827509e2011-08-30 14:20:44 -040032#include <linux/module.h>
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080033#include <scsi/scsi.h>
34#include <scsi/scsi_host.h>
35
36#include <target/target_core_base.h>
Christoph Hellwigc4795fb2011-11-16 09:46:48 -050037#include <target/target_core_backend.h>
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080038
39#include "target_core_file.h"
40
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -040041static inline struct fd_dev *FD_DEV(struct se_device *dev)
42{
43 return container_of(dev, struct fd_dev, dev);
44}
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080045
46/* fd_attach_hba(): (Part of se_subsystem_api_t template)
47 *
48 *
49 */
50static int fd_attach_hba(struct se_hba *hba, u32 host_id)
51{
52 struct fd_host *fd_host;
53
54 fd_host = kzalloc(sizeof(struct fd_host), GFP_KERNEL);
Andy Grover6708bb22011-06-08 10:36:43 -070055 if (!fd_host) {
56 pr_err("Unable to allocate memory for struct fd_host\n");
Andy Grovere3d6f902011-07-19 08:55:10 +000057 return -ENOMEM;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080058 }
59
60 fd_host->fd_host_id = host_id;
61
Andy Grovere3d6f902011-07-19 08:55:10 +000062 hba->hba_ptr = fd_host;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080063
Andy Grover6708bb22011-06-08 10:36:43 -070064 pr_debug("CORE_HBA[%d] - TCM FILEIO HBA Driver %s on Generic"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080065 " Target Core Stack %s\n", hba->hba_id, FD_VERSION,
66 TARGET_CORE_MOD_VERSION);
Andy Grover6708bb22011-06-08 10:36:43 -070067 pr_debug("CORE_HBA[%d] - Attached FILEIO HBA: %u to Generic"
Andy Grovere3d6f902011-07-19 08:55:10 +000068 " MaxSectors: %u\n",
69 hba->hba_id, fd_host->fd_host_id, FD_MAX_SECTORS);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080070
71 return 0;
72}
73
74static void fd_detach_hba(struct se_hba *hba)
75{
76 struct fd_host *fd_host = hba->hba_ptr;
77
Andy Grover6708bb22011-06-08 10:36:43 -070078 pr_debug("CORE_HBA[%d] - Detached FILEIO HBA: %u from Generic"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080079 " Target Core\n", hba->hba_id, fd_host->fd_host_id);
80
81 kfree(fd_host);
82 hba->hba_ptr = NULL;
83}
84
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -040085static struct se_device *fd_alloc_device(struct se_hba *hba, const char *name)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080086{
87 struct fd_dev *fd_dev;
Jörn Engel8359cf42011-11-24 02:05:51 +010088 struct fd_host *fd_host = hba->hba_ptr;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080089
90 fd_dev = kzalloc(sizeof(struct fd_dev), GFP_KERNEL);
Andy Grover6708bb22011-06-08 10:36:43 -070091 if (!fd_dev) {
92 pr_err("Unable to allocate memory for struct fd_dev\n");
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080093 return NULL;
94 }
95
96 fd_dev->fd_host = fd_host;
97
Andy Grover6708bb22011-06-08 10:36:43 -070098 pr_debug("FILEIO: Allocated fd_dev for %p\n", name);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080099
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400100 return &fd_dev->dev;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800101}
102
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400103static int fd_configure_device(struct se_device *dev)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800104{
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400105 struct fd_dev *fd_dev = FD_DEV(dev);
106 struct fd_host *fd_host = dev->se_hba->hba_ptr;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800107 struct file *file;
108 struct inode *inode = NULL;
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400109 int flags, ret = -EINVAL;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800110
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400111 if (!(fd_dev->fbd_flags & FBDF_HAS_PATH)) {
112 pr_err("Missing fd_dev_name=\n");
113 return -EINVAL;
114 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800115
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800116 /*
Nicholas Bellingera4dff302012-05-30 16:25:41 -0700117 * Use O_DSYNC by default instead of O_SYNC to forgo syncing
118 * of pure timestamp updates.
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800119 */
Nicholas Bellingera4dff302012-05-30 16:25:41 -0700120 flags = O_RDWR | O_CREAT | O_LARGEFILE | O_DSYNC;
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400121
Nicholas Bellingerb32f4c72012-09-29 17:15:37 -0700122 /*
123 * Optionally allow fd_buffered_io=1 to be enabled for people
124 * who want use the fs buffer cache as an WriteCache mechanism.
125 *
126 * This means that in event of a hard failure, there is a risk
127 * of silent data-loss if the SCSI client has *not* performed a
128 * forced unit access (FUA) write, or issued SYNCHRONIZE_CACHE
129 * to write-out the entire device cache.
130 */
131 if (fd_dev->fbd_flags & FDBD_HAS_BUFFERED_IO_WCE) {
132 pr_debug("FILEIO: Disabling O_DSYNC, using buffered FILEIO\n");
133 flags &= ~O_DSYNC;
134 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800135
Al Virodbc6e022012-08-01 13:07:04 +0400136 file = filp_open(fd_dev->fd_dev_name, flags, 0600);
Nicholas Bellinger613640e2011-03-14 04:05:59 -0700137 if (IS_ERR(file)) {
Al Virodbc6e022012-08-01 13:07:04 +0400138 pr_err("filp_open(%s) failed\n", fd_dev->fd_dev_name);
Nicholas Bellinger613640e2011-03-14 04:05:59 -0700139 ret = PTR_ERR(file);
140 goto fail;
141 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800142 fd_dev->fd_file = file;
143 /*
144 * If using a block backend with this struct file, we extract
145 * fd_dev->fd_[block,dev]_size from struct block_device.
146 *
147 * Otherwise, we use the passed fd_size= from configfs
148 */
149 inode = file->f_mapping->host;
150 if (S_ISBLK(inode->i_mode)) {
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400151 struct request_queue *q = bdev_get_queue(inode->i_bdev);
Nicholas Bellingercd9323f2012-05-16 16:05:26 -0700152 unsigned long long dev_size;
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400153
154 dev->dev_attrib.hw_block_size =
155 bdev_logical_block_size(inode->i_bdev);
156 dev->dev_attrib.hw_max_sectors = queue_max_hw_sectors(q);
157
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800158 /*
159 * Determine the number of bytes from i_size_read() minus
160 * one (1) logical sector from underlying struct block_device
161 */
Nicholas Bellingercd9323f2012-05-16 16:05:26 -0700162 dev_size = (i_size_read(file->f_mapping->host) -
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800163 fd_dev->fd_block_size);
164
Andy Grover6708bb22011-06-08 10:36:43 -0700165 pr_debug("FILEIO: Using size: %llu bytes from struct"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800166 " block_device blocks: %llu logical_block_size: %d\n",
Nicholas Bellingercd9323f2012-05-16 16:05:26 -0700167 dev_size, div_u64(dev_size, fd_dev->fd_block_size),
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800168 fd_dev->fd_block_size);
169 } else {
170 if (!(fd_dev->fbd_flags & FBDF_HAS_SIZE)) {
Andy Grover6708bb22011-06-08 10:36:43 -0700171 pr_err("FILEIO: Missing fd_dev_size="
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800172 " parameter, and no backing struct"
173 " block_device\n");
174 goto fail;
175 }
176
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400177 dev->dev_attrib.hw_block_size = FD_BLOCKSIZE;
178 dev->dev_attrib.hw_max_sectors = FD_MAX_SECTORS;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800179 }
180
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400181 fd_dev->fd_block_size = dev->dev_attrib.hw_block_size;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800182
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400183 dev->dev_attrib.hw_queue_depth = FD_MAX_DEVICE_QUEUE_DEPTH;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800184
Nicholas Bellingerb32f4c72012-09-29 17:15:37 -0700185 if (fd_dev->fbd_flags & FDBD_HAS_BUFFERED_IO_WCE) {
186 pr_debug("FILEIO: Forcing setting of emulate_write_cache=1"
187 " with FDBD_HAS_BUFFERED_IO_WCE\n");
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400188 dev->dev_attrib.emulate_write_cache = 1;
Nicholas Bellingerb32f4c72012-09-29 17:15:37 -0700189 }
190
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800191 fd_dev->fd_dev_id = fd_host->fd_host_dev_id_count++;
192 fd_dev->fd_queue_depth = dev->queue_depth;
Nicholas Bellinger7b745c82013-02-19 17:30:34 -0800193 /*
194 * Limit WRITE_SAME w/ UNMAP=0 emulation to 8k Number of LBAs (NoLB)
195 * based upon struct iovec limit for vfs_writev()
196 */
197 dev->dev_attrib.max_write_same_len = 0x1000;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800198
Andy Grover6708bb22011-06-08 10:36:43 -0700199 pr_debug("CORE_FILE[%u] - Added TCM FILEIO Device ID: %u at %s,"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800200 " %llu total bytes\n", fd_host->fd_host_id, fd_dev->fd_dev_id,
201 fd_dev->fd_dev_name, fd_dev->fd_dev_size);
202
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400203 return 0;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800204fail:
205 if (fd_dev->fd_file) {
206 filp_close(fd_dev->fd_file, NULL);
207 fd_dev->fd_file = NULL;
208 }
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400209 return ret;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800210}
211
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400212static void fd_free_device(struct se_device *dev)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800213{
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400214 struct fd_dev *fd_dev = FD_DEV(dev);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800215
216 if (fd_dev->fd_file) {
217 filp_close(fd_dev->fd_file, NULL);
218 fd_dev->fd_file = NULL;
219 }
220
221 kfree(fd_dev);
222}
223
Sebastian Andrzej Siewior778229a2012-12-05 13:09:45 -0800224static int fd_do_rw(struct se_cmd *cmd, struct scatterlist *sgl,
225 u32 sgl_nents, int is_write)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800226{
Christoph Hellwig5787cac2012-04-24 00:25:06 -0400227 struct se_device *se_dev = cmd->se_dev;
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400228 struct fd_dev *dev = FD_DEV(se_dev);
Andy Grover6708bb22011-06-08 10:36:43 -0700229 struct file *fd = dev->fd_file;
Christoph Hellwig5787cac2012-04-24 00:25:06 -0400230 struct scatterlist *sg;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800231 struct iovec *iov;
232 mm_segment_t old_fs;
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400233 loff_t pos = (cmd->t_task_lba * se_dev->dev_attrib.block_size);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800234 int ret = 0, i;
235
Christoph Hellwig5787cac2012-04-24 00:25:06 -0400236 iov = kzalloc(sizeof(struct iovec) * sgl_nents, GFP_KERNEL);
Andy Grover6708bb22011-06-08 10:36:43 -0700237 if (!iov) {
238 pr_err("Unable to allocate fd_do_readv iov[]\n");
Andy Grovere3d6f902011-07-19 08:55:10 +0000239 return -ENOMEM;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800240 }
241
Christoph Hellwig5787cac2012-04-24 00:25:06 -0400242 for_each_sg(sgl, sg, sgl_nents, i) {
Sebastian Andrzej Siewior9649fa12011-11-28 12:33:10 +0100243 iov[i].iov_len = sg->length;
Sebastian Andrzej Siewior40ff2c32012-12-05 12:08:29 +0100244 iov[i].iov_base = kmap(sg_page(sg)) + sg->offset;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800245 }
246
247 old_fs = get_fs();
248 set_fs(get_ds());
Sebastian Andrzej Siewior778229a2012-12-05 13:09:45 -0800249
250 if (is_write)
251 ret = vfs_writev(fd, &iov[0], sgl_nents, &pos);
252 else
253 ret = vfs_readv(fd, &iov[0], sgl_nents, &pos);
254
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800255 set_fs(old_fs);
256
Sebastian Andrzej Siewior40ff2c32012-12-05 12:08:29 +0100257 for_each_sg(sgl, sg, sgl_nents, i)
258 kunmap(sg_page(sg));
Sebastian Andrzej Siewior778229a2012-12-05 13:09:45 -0800259
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800260 kfree(iov);
Sebastian Andrzej Siewior778229a2012-12-05 13:09:45 -0800261
262 if (is_write) {
Christoph Hellwig5787cac2012-04-24 00:25:06 -0400263 if (ret < 0 || ret != cmd->data_length) {
Sebastian Andrzej Siewior778229a2012-12-05 13:09:45 -0800264 pr_err("%s() write returned %d\n", __func__, ret);
Andy Grovere3d6f902011-07-19 08:55:10 +0000265 return (ret < 0 ? ret : -EINVAL);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800266 }
267 } else {
Sebastian Andrzej Siewior778229a2012-12-05 13:09:45 -0800268 /*
269 * Return zeros and GOOD status even if the READ did not return
270 * the expected virt_size for struct file w/o a backing struct
271 * block_device.
272 */
273 if (S_ISBLK(fd->f_dentry->d_inode->i_mode)) {
274 if (ret < 0 || ret != cmd->data_length) {
275 pr_err("%s() returned %d, expecting %u for "
276 "S_ISBLK\n", __func__, ret,
277 cmd->data_length);
278 return (ret < 0 ? ret : -EINVAL);
279 }
280 } else {
281 if (ret < 0) {
282 pr_err("%s() returned %d for non S_ISBLK\n",
283 __func__, ret);
284 return ret;
285 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800286 }
287 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800288 return 1;
289}
290
Christoph Hellwigde103c92012-11-06 12:24:09 -0800291static sense_reason_t
292fd_execute_sync_cache(struct se_cmd *cmd)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800293{
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800294 struct se_device *dev = cmd->se_dev;
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400295 struct fd_dev *fd_dev = FD_DEV(dev);
Andy Grovera1d8b492011-05-02 17:12:10 -0700296 int immed = (cmd->t_task_cdb[1] & 0x2);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800297 loff_t start, end;
298 int ret;
299
300 /*
301 * If the Immediate bit is set, queue up the GOOD response
302 * for this SYNCHRONIZE_CACHE op
303 */
304 if (immed)
Christoph Hellwig5787cac2012-04-24 00:25:06 -0400305 target_complete_cmd(cmd, SAM_STAT_GOOD);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800306
307 /*
308 * Determine if we will be flushing the entire device.
309 */
Andy Grovera1d8b492011-05-02 17:12:10 -0700310 if (cmd->t_task_lba == 0 && cmd->data_length == 0) {
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800311 start = 0;
312 end = LLONG_MAX;
313 } else {
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400314 start = cmd->t_task_lba * dev->dev_attrib.block_size;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800315 if (cmd->data_length)
316 end = start + cmd->data_length;
317 else
318 end = LLONG_MAX;
319 }
320
321 ret = vfs_fsync_range(fd_dev->fd_file, start, end, 1);
322 if (ret != 0)
Andy Grover6708bb22011-06-08 10:36:43 -0700323 pr_err("FILEIO: vfs_fsync_range() failed: %d\n", ret);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800324
Christoph Hellwig5787cac2012-04-24 00:25:06 -0400325 if (immed)
Christoph Hellwigad67f0d2012-06-17 18:40:53 -0400326 return 0;
Christoph Hellwig5787cac2012-04-24 00:25:06 -0400327
Christoph Hellwigde103c92012-11-06 12:24:09 -0800328 if (ret)
Christoph Hellwig5787cac2012-04-24 00:25:06 -0400329 target_complete_cmd(cmd, SAM_STAT_CHECK_CONDITION);
Christoph Hellwigde103c92012-11-06 12:24:09 -0800330 else
Christoph Hellwig5787cac2012-04-24 00:25:06 -0400331 target_complete_cmd(cmd, SAM_STAT_GOOD);
Christoph Hellwigad67f0d2012-06-17 18:40:53 -0400332
333 return 0;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800334}
335
Nicholas Bellinger7b745c82013-02-19 17:30:34 -0800336static unsigned char *
337fd_setup_write_same_buf(struct se_cmd *cmd, struct scatterlist *sg,
338 unsigned int len)
339{
340 struct se_device *se_dev = cmd->se_dev;
341 unsigned int block_size = se_dev->dev_attrib.block_size;
342 unsigned int i = 0, end;
343 unsigned char *buf, *p, *kmap_buf;
344
345 buf = kzalloc(min_t(unsigned int, len, PAGE_SIZE), GFP_KERNEL);
346 if (!buf) {
347 pr_err("Unable to allocate fd_execute_write_same buf\n");
348 return NULL;
349 }
350
351 kmap_buf = kmap(sg_page(sg)) + sg->offset;
352 if (!kmap_buf) {
353 pr_err("kmap() failed in fd_setup_write_same\n");
354 kfree(buf);
355 return NULL;
356 }
357 /*
358 * Fill local *buf to contain multiple WRITE_SAME blocks up to
359 * min(len, PAGE_SIZE)
360 */
361 p = buf;
362 end = min_t(unsigned int, len, PAGE_SIZE);
363
364 while (i < end) {
365 memcpy(p, kmap_buf, block_size);
366
367 i += block_size;
368 p += block_size;
369 }
370 kunmap(sg_page(sg));
371
372 return buf;
373}
374
375static sense_reason_t
376fd_execute_write_same(struct se_cmd *cmd)
377{
378 struct se_device *se_dev = cmd->se_dev;
379 struct fd_dev *fd_dev = FD_DEV(se_dev);
380 struct file *f = fd_dev->fd_file;
381 struct scatterlist *sg;
382 struct iovec *iov;
383 mm_segment_t old_fs;
Roland Dreier972b29c82013-02-22 09:52:57 -0800384 sector_t nolb = sbc_get_write_same_sectors(cmd);
Nicholas Bellinger7b745c82013-02-19 17:30:34 -0800385 loff_t pos = cmd->t_task_lba * se_dev->dev_attrib.block_size;
386 unsigned int len, len_tmp, iov_num;
387 int i, rc;
388 unsigned char *buf;
389
390 if (!nolb) {
391 target_complete_cmd(cmd, SAM_STAT_GOOD);
392 return 0;
393 }
394 sg = &cmd->t_data_sg[0];
395
396 if (cmd->t_data_nents > 1 ||
397 sg->length != cmd->se_dev->dev_attrib.block_size) {
398 pr_err("WRITE_SAME: Illegal SGL t_data_nents: %u length: %u"
399 " block_size: %u\n", cmd->t_data_nents, sg->length,
400 cmd->se_dev->dev_attrib.block_size);
401 return TCM_INVALID_CDB_FIELD;
402 }
403
404 len = len_tmp = nolb * se_dev->dev_attrib.block_size;
405 iov_num = DIV_ROUND_UP(len, PAGE_SIZE);
406
407 buf = fd_setup_write_same_buf(cmd, sg, len);
408 if (!buf)
409 return TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE;
410
411 iov = vzalloc(sizeof(struct iovec) * iov_num);
412 if (!iov) {
413 pr_err("Unable to allocate fd_execute_write_same iovecs\n");
414 kfree(buf);
415 return TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE;
416 }
417 /*
418 * Map the single fabric received scatterlist block now populated
419 * in *buf into each iovec for I/O submission.
420 */
421 for (i = 0; i < iov_num; i++) {
422 iov[i].iov_base = buf;
423 iov[i].iov_len = min_t(unsigned int, len_tmp, PAGE_SIZE);
424 len_tmp -= iov[i].iov_len;
425 }
426
427 old_fs = get_fs();
428 set_fs(get_ds());
429 rc = vfs_writev(f, &iov[0], iov_num, &pos);
430 set_fs(old_fs);
431
432 vfree(iov);
433 kfree(buf);
434
435 if (rc < 0 || rc != len) {
436 pr_err("vfs_writev() returned %d for write same\n", rc);
437 return TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE;
438 }
439
440 target_complete_cmd(cmd, SAM_STAT_GOOD);
441 return 0;
442}
443
Christoph Hellwigde103c92012-11-06 12:24:09 -0800444static sense_reason_t
445fd_execute_rw(struct se_cmd *cmd)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800446{
Christoph Hellwig0c2ad7d2012-06-17 18:40:52 -0400447 struct scatterlist *sgl = cmd->t_data_sg;
448 u32 sgl_nents = cmd->t_data_nents;
449 enum dma_data_direction data_direction = cmd->data_direction;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800450 struct se_device *dev = cmd->se_dev;
451 int ret = 0;
452
453 /*
454 * Call vectorized fileio functions to map struct scatterlist
455 * physical memory addresses to struct iovec virtual memory.
456 */
Christoph Hellwig5787cac2012-04-24 00:25:06 -0400457 if (data_direction == DMA_FROM_DEVICE) {
Sebastian Andrzej Siewior778229a2012-12-05 13:09:45 -0800458 ret = fd_do_rw(cmd, sgl, sgl_nents, 0);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800459 } else {
Sebastian Andrzej Siewior778229a2012-12-05 13:09:45 -0800460 ret = fd_do_rw(cmd, sgl, sgl_nents, 1);
Nicholas Bellingera4dff302012-05-30 16:25:41 -0700461 /*
462 * Perform implict vfs_fsync_range() for fd_do_writev() ops
463 * for SCSI WRITEs with Forced Unit Access (FUA) set.
464 * Allow this to happen independent of WCE=0 setting.
465 */
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800466 if (ret > 0 &&
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400467 dev->dev_attrib.emulate_fua_write > 0 &&
Christoph Hellwig2d3a4b52011-11-14 11:36:29 -0500468 (cmd->se_cmd_flags & SCF_FUA)) {
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400469 struct fd_dev *fd_dev = FD_DEV(dev);
Nicholas Bellingera4dff302012-05-30 16:25:41 -0700470 loff_t start = cmd->t_task_lba *
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400471 dev->dev_attrib.block_size;
Nicholas Bellingera4dff302012-05-30 16:25:41 -0700472 loff_t end = start + cmd->data_length;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800473
Nicholas Bellingera4dff302012-05-30 16:25:41 -0700474 vfs_fsync_range(fd_dev->fd_file, start, end, 1);
475 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800476 }
477
Christoph Hellwigde103c92012-11-06 12:24:09 -0800478 if (ret < 0)
479 return TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE;
480
Christoph Hellwig5787cac2012-04-24 00:25:06 -0400481 if (ret)
482 target_complete_cmd(cmd, SAM_STAT_GOOD);
Nicholas Bellinger03e98c92011-11-04 02:36:16 -0700483 return 0;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800484}
485
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800486enum {
487 Opt_fd_dev_name, Opt_fd_dev_size, Opt_fd_buffered_io, Opt_err
488};
489
490static match_table_t tokens = {
491 {Opt_fd_dev_name, "fd_dev_name=%s"},
492 {Opt_fd_dev_size, "fd_dev_size=%s"},
Nicholas Bellingerb32f4c72012-09-29 17:15:37 -0700493 {Opt_fd_buffered_io, "fd_buffered_io=%d"},
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800494 {Opt_err, NULL}
495};
496
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400497static ssize_t fd_set_configfs_dev_params(struct se_device *dev,
498 const char *page, ssize_t count)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800499{
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400500 struct fd_dev *fd_dev = FD_DEV(dev);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800501 char *orig, *ptr, *arg_p, *opts;
502 substring_t args[MAX_OPT_ARGS];
Nicholas Bellingerb32f4c72012-09-29 17:15:37 -0700503 int ret = 0, arg, token;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800504
505 opts = kstrdup(page, GFP_KERNEL);
506 if (!opts)
507 return -ENOMEM;
508
509 orig = opts;
510
Sebastian Andrzej Siewior90c161b2011-11-23 20:53:17 +0100511 while ((ptr = strsep(&opts, ",\n")) != NULL) {
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800512 if (!*ptr)
513 continue;
514
515 token = match_token(ptr, tokens, args);
516 switch (token) {
517 case Opt_fd_dev_name:
Al Virodbc6e022012-08-01 13:07:04 +0400518 if (match_strlcpy(fd_dev->fd_dev_name, &args[0],
519 FD_MAX_DEV_NAME) == 0) {
520 ret = -EINVAL;
Jesper Juhl6d180252011-03-14 04:05:56 -0700521 break;
522 }
Andy Grover6708bb22011-06-08 10:36:43 -0700523 pr_debug("FILEIO: Referencing Path: %s\n",
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800524 fd_dev->fd_dev_name);
525 fd_dev->fbd_flags |= FBDF_HAS_PATH;
526 break;
527 case Opt_fd_dev_size:
528 arg_p = match_strdup(&args[0]);
Jesper Juhl6d180252011-03-14 04:05:56 -0700529 if (!arg_p) {
530 ret = -ENOMEM;
531 break;
532 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800533 ret = strict_strtoull(arg_p, 0, &fd_dev->fd_dev_size);
Jesper Juhl6d180252011-03-14 04:05:56 -0700534 kfree(arg_p);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800535 if (ret < 0) {
Andy Grover6708bb22011-06-08 10:36:43 -0700536 pr_err("strict_strtoull() failed for"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800537 " fd_dev_size=\n");
538 goto out;
539 }
Andy Grover6708bb22011-06-08 10:36:43 -0700540 pr_debug("FILEIO: Referencing Size: %llu"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800541 " bytes\n", fd_dev->fd_dev_size);
542 fd_dev->fbd_flags |= FBDF_HAS_SIZE;
543 break;
Nicholas Bellingerb32f4c72012-09-29 17:15:37 -0700544 case Opt_fd_buffered_io:
545 match_int(args, &arg);
546 if (arg != 1) {
547 pr_err("bogus fd_buffered_io=%d value\n", arg);
548 ret = -EINVAL;
549 goto out;
550 }
551
552 pr_debug("FILEIO: Using buffered I/O"
553 " operations for struct fd_dev\n");
554
555 fd_dev->fbd_flags |= FDBD_HAS_BUFFERED_IO_WCE;
556 break;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800557 default:
558 break;
559 }
560 }
561
562out:
563 kfree(orig);
564 return (!ret) ? count : ret;
565}
566
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400567static ssize_t fd_show_configfs_dev_params(struct se_device *dev, char *b)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800568{
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400569 struct fd_dev *fd_dev = FD_DEV(dev);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800570 ssize_t bl = 0;
571
572 bl = sprintf(b + bl, "TCM FILEIO ID: %u", fd_dev->fd_dev_id);
Nicholas Bellingerb32f4c72012-09-29 17:15:37 -0700573 bl += sprintf(b + bl, " File: %s Size: %llu Mode: %s\n",
574 fd_dev->fd_dev_name, fd_dev->fd_dev_size,
575 (fd_dev->fbd_flags & FDBD_HAS_BUFFERED_IO_WCE) ?
576 "Buffered-WCE" : "O_DSYNC");
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800577 return bl;
578}
579
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800580static sector_t fd_get_blocks(struct se_device *dev)
581{
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400582 struct fd_dev *fd_dev = FD_DEV(dev);
Nicholas Bellingercd9323f2012-05-16 16:05:26 -0700583 struct file *f = fd_dev->fd_file;
584 struct inode *i = f->f_mapping->host;
585 unsigned long long dev_size;
586 /*
587 * When using a file that references an underlying struct block_device,
588 * ensure dev_size is always based on the current inode size in order
589 * to handle underlying block_device resize operations.
590 */
591 if (S_ISBLK(i->i_mode))
592 dev_size = (i_size_read(i) - fd_dev->fd_block_size);
593 else
594 dev_size = fd_dev->fd_dev_size;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800595
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400596 return div_u64(dev_size, dev->dev_attrib.block_size);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800597}
598
Christoph Hellwig9e999a62012-10-07 10:55:50 -0400599static struct sbc_ops fd_sbc_ops = {
Christoph Hellwig0c2ad7d2012-06-17 18:40:52 -0400600 .execute_rw = fd_execute_rw,
Christoph Hellwigad67f0d2012-06-17 18:40:53 -0400601 .execute_sync_cache = fd_execute_sync_cache,
Nicholas Bellinger7b745c82013-02-19 17:30:34 -0800602 .execute_write_same = fd_execute_write_same,
Christoph Hellwig0c2ad7d2012-06-17 18:40:52 -0400603};
604
Christoph Hellwigde103c92012-11-06 12:24:09 -0800605static sense_reason_t
606fd_parse_cdb(struct se_cmd *cmd)
Christoph Hellwig0c2ad7d2012-06-17 18:40:52 -0400607{
Christoph Hellwig9e999a62012-10-07 10:55:50 -0400608 return sbc_parse_cdb(cmd, &fd_sbc_ops);
Christoph Hellwig0c2ad7d2012-06-17 18:40:52 -0400609}
610
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800611static struct se_subsystem_api fileio_template = {
612 .name = "fileio",
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400613 .inquiry_prod = "FILEIO",
614 .inquiry_rev = FD_VERSION,
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800615 .owner = THIS_MODULE,
616 .transport_type = TRANSPORT_PLUGIN_VHBA_PDEV,
617 .attach_hba = fd_attach_hba,
618 .detach_hba = fd_detach_hba,
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400619 .alloc_device = fd_alloc_device,
620 .configure_device = fd_configure_device,
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800621 .free_device = fd_free_device,
Christoph Hellwig0c2ad7d2012-06-17 18:40:52 -0400622 .parse_cdb = fd_parse_cdb,
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800623 .set_configfs_dev_params = fd_set_configfs_dev_params,
624 .show_configfs_dev_params = fd_show_configfs_dev_params,
Christoph Hellwig6f23ac82012-10-07 10:55:53 -0400625 .get_device_type = sbc_get_device_type,
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800626 .get_blocks = fd_get_blocks,
627};
628
629static int __init fileio_module_init(void)
630{
631 return transport_subsystem_register(&fileio_template);
632}
633
Asias He63b91d52013-02-27 12:50:56 +0800634static void __exit fileio_module_exit(void)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800635{
636 transport_subsystem_release(&fileio_template);
637}
638
639MODULE_DESCRIPTION("TCM FILEIO subsystem plugin");
640MODULE_AUTHOR("nab@Linux-iSCSI.org");
641MODULE_LICENSE("GPL");
642
643module_init(fileio_module_init);
644module_exit(fileio_module_exit);