blob: 7c5b1ef57d34cf32b20cc05a6b82657002307764 [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 Bellinger4c762512013-09-05 15:29:12 -07006 * (c) Copyright 2005-2013 Datera, Inc.
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>
Asias He70d3ae5c2013-02-25 14:03:42 +080033#include <linux/falloc.h>
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080034#include <scsi/scsi.h>
35#include <scsi/scsi_host.h>
Asias He50642762013-02-25 14:03:43 +080036#include <asm/unaligned.h>
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080037
38#include <target/target_core_base.h>
Christoph Hellwigc4795fb2011-11-16 09:46:48 -050039#include <target/target_core_backend.h>
Nicholas Bellingerb2320492014-11-28 04:56:30 +000040#include <target/target_core_backend_configfs.h>
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080041
42#include "target_core_file.h"
43
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -040044static inline struct fd_dev *FD_DEV(struct se_device *dev)
45{
46 return container_of(dev, struct fd_dev, dev);
47}
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080048
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080049static int fd_attach_hba(struct se_hba *hba, u32 host_id)
50{
51 struct fd_host *fd_host;
52
53 fd_host = kzalloc(sizeof(struct fd_host), GFP_KERNEL);
Andy Grover6708bb22011-06-08 10:36:43 -070054 if (!fd_host) {
55 pr_err("Unable to allocate memory for struct fd_host\n");
Andy Grovere3d6f902011-07-19 08:55:10 +000056 return -ENOMEM;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080057 }
58
59 fd_host->fd_host_id = host_id;
60
Andy Grovere3d6f902011-07-19 08:55:10 +000061 hba->hba_ptr = fd_host;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080062
Andy Grover6708bb22011-06-08 10:36:43 -070063 pr_debug("CORE_HBA[%d] - TCM FILEIO HBA Driver %s on Generic"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080064 " Target Core Stack %s\n", hba->hba_id, FD_VERSION,
65 TARGET_CORE_MOD_VERSION);
Nicholas Bellinger95cadac2013-12-12 12:24:11 -080066 pr_debug("CORE_HBA[%d] - Attached FILEIO HBA: %u to Generic\n",
67 hba->hba_id, fd_host->fd_host_id);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080068
69 return 0;
70}
71
72static void fd_detach_hba(struct se_hba *hba)
73{
74 struct fd_host *fd_host = hba->hba_ptr;
75
Andy Grover6708bb22011-06-08 10:36:43 -070076 pr_debug("CORE_HBA[%d] - Detached FILEIO HBA: %u from Generic"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080077 " Target Core\n", hba->hba_id, fd_host->fd_host_id);
78
79 kfree(fd_host);
80 hba->hba_ptr = NULL;
81}
82
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -040083static struct se_device *fd_alloc_device(struct se_hba *hba, const char *name)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080084{
85 struct fd_dev *fd_dev;
Jörn Engel8359cf42011-11-24 02:05:51 +010086 struct fd_host *fd_host = hba->hba_ptr;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080087
88 fd_dev = kzalloc(sizeof(struct fd_dev), GFP_KERNEL);
Andy Grover6708bb22011-06-08 10:36:43 -070089 if (!fd_dev) {
90 pr_err("Unable to allocate memory for struct fd_dev\n");
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080091 return NULL;
92 }
93
94 fd_dev->fd_host = fd_host;
95
Andy Grover6708bb22011-06-08 10:36:43 -070096 pr_debug("FILEIO: Allocated fd_dev for %p\n", name);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080097
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -040098 return &fd_dev->dev;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080099}
100
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400101static int fd_configure_device(struct se_device *dev)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800102{
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400103 struct fd_dev *fd_dev = FD_DEV(dev);
104 struct fd_host *fd_host = dev->se_hba->hba_ptr;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800105 struct file *file;
106 struct inode *inode = NULL;
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400107 int flags, ret = -EINVAL;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800108
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400109 if (!(fd_dev->fbd_flags & FBDF_HAS_PATH)) {
110 pr_err("Missing fd_dev_name=\n");
111 return -EINVAL;
112 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800113
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800114 /*
Nicholas Bellingera4dff302012-05-30 16:25:41 -0700115 * Use O_DSYNC by default instead of O_SYNC to forgo syncing
116 * of pure timestamp updates.
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800117 */
Nicholas Bellingera4dff302012-05-30 16:25:41 -0700118 flags = O_RDWR | O_CREAT | O_LARGEFILE | O_DSYNC;
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400119
Nicholas Bellingerb32f4c72012-09-29 17:15:37 -0700120 /*
121 * Optionally allow fd_buffered_io=1 to be enabled for people
122 * who want use the fs buffer cache as an WriteCache mechanism.
123 *
124 * This means that in event of a hard failure, there is a risk
125 * of silent data-loss if the SCSI client has *not* performed a
126 * forced unit access (FUA) write, or issued SYNCHRONIZE_CACHE
127 * to write-out the entire device cache.
128 */
129 if (fd_dev->fbd_flags & FDBD_HAS_BUFFERED_IO_WCE) {
130 pr_debug("FILEIO: Disabling O_DSYNC, using buffered FILEIO\n");
131 flags &= ~O_DSYNC;
132 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800133
Al Virodbc6e022012-08-01 13:07:04 +0400134 file = filp_open(fd_dev->fd_dev_name, flags, 0600);
Nicholas Bellinger613640e2011-03-14 04:05:59 -0700135 if (IS_ERR(file)) {
Al Virodbc6e022012-08-01 13:07:04 +0400136 pr_err("filp_open(%s) failed\n", fd_dev->fd_dev_name);
Nicholas Bellinger613640e2011-03-14 04:05:59 -0700137 ret = PTR_ERR(file);
138 goto fail;
139 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800140 fd_dev->fd_file = file;
141 /*
142 * If using a block backend with this struct file, we extract
143 * fd_dev->fd_[block,dev]_size from struct block_device.
144 *
145 * Otherwise, we use the passed fd_size= from configfs
146 */
147 inode = file->f_mapping->host;
148 if (S_ISBLK(inode->i_mode)) {
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400149 struct request_queue *q = bdev_get_queue(inode->i_bdev);
Nicholas Bellingercd9323f2012-05-16 16:05:26 -0700150 unsigned long long dev_size;
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400151
Nicholas Bellinger21363ca2013-05-29 21:35:23 -0700152 fd_dev->fd_block_size = bdev_logical_block_size(inode->i_bdev);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800153 /*
154 * Determine the number of bytes from i_size_read() minus
155 * one (1) logical sector from underlying struct block_device
156 */
Nicholas Bellingercd9323f2012-05-16 16:05:26 -0700157 dev_size = (i_size_read(file->f_mapping->host) -
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800158 fd_dev->fd_block_size);
159
Andy Grover6708bb22011-06-08 10:36:43 -0700160 pr_debug("FILEIO: Using size: %llu bytes from struct"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800161 " block_device blocks: %llu logical_block_size: %d\n",
Nicholas Bellingercd9323f2012-05-16 16:05:26 -0700162 dev_size, div_u64(dev_size, fd_dev->fd_block_size),
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800163 fd_dev->fd_block_size);
Asias He70d3ae5c2013-02-25 14:03:42 +0800164 /*
165 * Check if the underlying struct block_device request_queue supports
166 * the QUEUE_FLAG_DISCARD bit for UNMAP/WRITE_SAME in SCSI + TRIM
167 * in ATA and we need to set TPE=1
168 */
169 if (blk_queue_discard(q)) {
170 dev->dev_attrib.max_unmap_lba_count =
171 q->limits.max_discard_sectors;
172 /*
173 * Currently hardcoded to 1 in Linux/SCSI code..
174 */
175 dev->dev_attrib.max_unmap_block_desc_count = 1;
176 dev->dev_attrib.unmap_granularity =
177 q->limits.discard_granularity >> 9;
178 dev->dev_attrib.unmap_granularity_alignment =
179 q->limits.discard_alignment;
180 pr_debug("IFILE: BLOCK Discard support available,"
181 " disabled by default\n");
182 }
183 /*
184 * Enable write same emulation for IBLOCK and use 0xFFFF as
185 * the smaller WRITE_SAME(10) only has a two-byte block count.
186 */
187 dev->dev_attrib.max_write_same_len = 0xFFFF;
Asias He0463a3f2013-04-24 19:38:11 -0700188
189 if (blk_queue_nonrot(q))
190 dev->dev_attrib.is_nonrot = 1;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800191 } else {
192 if (!(fd_dev->fbd_flags & FBDF_HAS_SIZE)) {
Andy Grover6708bb22011-06-08 10:36:43 -0700193 pr_err("FILEIO: Missing fd_dev_size="
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800194 " parameter, and no backing struct"
195 " block_device\n");
196 goto fail;
197 }
198
Nicholas Bellinger21363ca2013-05-29 21:35:23 -0700199 fd_dev->fd_block_size = FD_BLOCKSIZE;
Asias He70d3ae5c2013-02-25 14:03:42 +0800200 /*
201 * Limit UNMAP emulation to 8k Number of LBAs (NoLB)
202 */
203 dev->dev_attrib.max_unmap_lba_count = 0x2000;
204 /*
205 * Currently hardcoded to 1 in Linux/SCSI code..
206 */
207 dev->dev_attrib.max_unmap_block_desc_count = 1;
208 dev->dev_attrib.unmap_granularity = 1;
209 dev->dev_attrib.unmap_granularity_alignment = 0;
210
211 /*
212 * Limit WRITE_SAME w/ UNMAP=0 emulation to 8k Number of LBAs (NoLB)
213 * based upon struct iovec limit for vfs_writev()
214 */
215 dev->dev_attrib.max_write_same_len = 0x1000;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800216 }
217
Nicholas Bellinger21363ca2013-05-29 21:35:23 -0700218 dev->dev_attrib.hw_block_size = fd_dev->fd_block_size;
Nicholas Bellinger95cadac2013-12-12 12:24:11 -0800219 dev->dev_attrib.max_bytes_per_io = FD_MAX_BYTES;
220 dev->dev_attrib.hw_max_sectors = FD_MAX_BYTES / fd_dev->fd_block_size;
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400221 dev->dev_attrib.hw_queue_depth = FD_MAX_DEVICE_QUEUE_DEPTH;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800222
Nicholas Bellingerb32f4c72012-09-29 17:15:37 -0700223 if (fd_dev->fbd_flags & FDBD_HAS_BUFFERED_IO_WCE) {
224 pr_debug("FILEIO: Forcing setting of emulate_write_cache=1"
225 " with FDBD_HAS_BUFFERED_IO_WCE\n");
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400226 dev->dev_attrib.emulate_write_cache = 1;
Nicholas Bellingerb32f4c72012-09-29 17:15:37 -0700227 }
228
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800229 fd_dev->fd_dev_id = fd_host->fd_host_dev_id_count++;
230 fd_dev->fd_queue_depth = dev->queue_depth;
231
Andy Grover6708bb22011-06-08 10:36:43 -0700232 pr_debug("CORE_FILE[%u] - Added TCM FILEIO Device ID: %u at %s,"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800233 " %llu total bytes\n", fd_host->fd_host_id, fd_dev->fd_dev_id,
234 fd_dev->fd_dev_name, fd_dev->fd_dev_size);
235
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400236 return 0;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800237fail:
238 if (fd_dev->fd_file) {
239 filp_close(fd_dev->fd_file, NULL);
240 fd_dev->fd_file = NULL;
241 }
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400242 return ret;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800243}
244
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400245static void fd_free_device(struct se_device *dev)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800246{
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400247 struct fd_dev *fd_dev = FD_DEV(dev);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800248
249 if (fd_dev->fd_file) {
250 filp_close(fd_dev->fd_file, NULL);
251 fd_dev->fd_file = NULL;
252 }
253
254 kfree(fd_dev);
255}
256
Sagi Grimberg8287fa52015-04-19 20:27:20 +0300257static int fd_do_rw(struct se_cmd *cmd, struct file *fd,
258 u32 block_size, struct scatterlist *sgl,
259 u32 sgl_nents, u32 data_length, int is_write)
Nicholas Bellinger42201b52014-01-18 09:33:48 +0000260{
Christoph Hellwig5787cac2012-04-24 00:25:06 -0400261 struct scatterlist *sg;
Christoph Hellwig6b9a44d2015-02-22 08:48:41 -0800262 struct iov_iter iter;
263 struct bio_vec *bvec;
264 ssize_t len = 0;
Sagi Grimberg8287fa52015-04-19 20:27:20 +0300265 loff_t pos = (cmd->t_task_lba * block_size);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800266 int ret = 0, i;
267
Christoph Hellwig6b9a44d2015-02-22 08:48:41 -0800268 bvec = kcalloc(sgl_nents, sizeof(struct bio_vec), GFP_KERNEL);
269 if (!bvec) {
Andy Grover6708bb22011-06-08 10:36:43 -0700270 pr_err("Unable to allocate fd_do_readv iov[]\n");
Andy Grovere3d6f902011-07-19 08:55:10 +0000271 return -ENOMEM;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800272 }
273
Christoph Hellwig5787cac2012-04-24 00:25:06 -0400274 for_each_sg(sgl, sg, sgl_nents, i) {
Christoph Hellwig6b9a44d2015-02-22 08:48:41 -0800275 bvec[i].bv_page = sg_page(sg);
276 bvec[i].bv_len = sg->length;
277 bvec[i].bv_offset = sg->offset;
278
279 len += sg->length;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800280 }
281
Christoph Hellwig6b9a44d2015-02-22 08:48:41 -0800282 iov_iter_bvec(&iter, ITER_BVEC, bvec, sgl_nents, len);
Sebastian Andrzej Siewior778229a2012-12-05 13:09:45 -0800283 if (is_write)
Christoph Hellwig6b9a44d2015-02-22 08:48:41 -0800284 ret = vfs_iter_write(fd, &iter, &pos);
Sebastian Andrzej Siewior778229a2012-12-05 13:09:45 -0800285 else
Christoph Hellwig6b9a44d2015-02-22 08:48:41 -0800286 ret = vfs_iter_read(fd, &iter, &pos);
Sebastian Andrzej Siewior778229a2012-12-05 13:09:45 -0800287
Christoph Hellwig6b9a44d2015-02-22 08:48:41 -0800288 kfree(bvec);
Sebastian Andrzej Siewior778229a2012-12-05 13:09:45 -0800289
290 if (is_write) {
Sagi Grimberg8287fa52015-04-19 20:27:20 +0300291 if (ret < 0 || ret != data_length) {
Sebastian Andrzej Siewior778229a2012-12-05 13:09:45 -0800292 pr_err("%s() write returned %d\n", __func__, ret);
Andy Grovere3d6f902011-07-19 08:55:10 +0000293 return (ret < 0 ? ret : -EINVAL);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800294 }
295 } else {
Sebastian Andrzej Siewior778229a2012-12-05 13:09:45 -0800296 /*
297 * Return zeros and GOOD status even if the READ did not return
298 * the expected virt_size for struct file w/o a backing struct
299 * block_device.
300 */
Al Viro496ad9a2013-01-23 17:07:38 -0500301 if (S_ISBLK(file_inode(fd)->i_mode)) {
Sagi Grimberg8287fa52015-04-19 20:27:20 +0300302 if (ret < 0 || ret != data_length) {
Sebastian Andrzej Siewior778229a2012-12-05 13:09:45 -0800303 pr_err("%s() returned %d, expecting %u for "
304 "S_ISBLK\n", __func__, ret,
Sagi Grimberg8287fa52015-04-19 20:27:20 +0300305 data_length);
Sebastian Andrzej Siewior778229a2012-12-05 13:09:45 -0800306 return (ret < 0 ? ret : -EINVAL);
307 }
308 } else {
309 if (ret < 0) {
310 pr_err("%s() returned %d for non S_ISBLK\n",
311 __func__, ret);
312 return ret;
313 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800314 }
315 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800316 return 1;
317}
318
Christoph Hellwigde103c92012-11-06 12:24:09 -0800319static sense_reason_t
320fd_execute_sync_cache(struct se_cmd *cmd)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800321{
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800322 struct se_device *dev = cmd->se_dev;
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400323 struct fd_dev *fd_dev = FD_DEV(dev);
Andy Grovera1d8b492011-05-02 17:12:10 -0700324 int immed = (cmd->t_task_cdb[1] & 0x2);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800325 loff_t start, end;
326 int ret;
327
328 /*
329 * If the Immediate bit is set, queue up the GOOD response
330 * for this SYNCHRONIZE_CACHE op
331 */
332 if (immed)
Christoph Hellwig5787cac2012-04-24 00:25:06 -0400333 target_complete_cmd(cmd, SAM_STAT_GOOD);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800334
335 /*
336 * Determine if we will be flushing the entire device.
337 */
Andy Grovera1d8b492011-05-02 17:12:10 -0700338 if (cmd->t_task_lba == 0 && cmd->data_length == 0) {
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800339 start = 0;
340 end = LLONG_MAX;
341 } else {
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400342 start = cmd->t_task_lba * dev->dev_attrib.block_size;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800343 if (cmd->data_length)
Zach Brown62d3ab42014-10-06 16:40:13 -0700344 end = start + cmd->data_length - 1;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800345 else
346 end = LLONG_MAX;
347 }
348
349 ret = vfs_fsync_range(fd_dev->fd_file, start, end, 1);
350 if (ret != 0)
Andy Grover6708bb22011-06-08 10:36:43 -0700351 pr_err("FILEIO: vfs_fsync_range() failed: %d\n", ret);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800352
Christoph Hellwig5787cac2012-04-24 00:25:06 -0400353 if (immed)
Christoph Hellwigad67f0d2012-06-17 18:40:53 -0400354 return 0;
Christoph Hellwig5787cac2012-04-24 00:25:06 -0400355
Christoph Hellwigde103c92012-11-06 12:24:09 -0800356 if (ret)
Christoph Hellwig5787cac2012-04-24 00:25:06 -0400357 target_complete_cmd(cmd, SAM_STAT_CHECK_CONDITION);
Christoph Hellwigde103c92012-11-06 12:24:09 -0800358 else
Christoph Hellwig5787cac2012-04-24 00:25:06 -0400359 target_complete_cmd(cmd, SAM_STAT_GOOD);
Christoph Hellwigad67f0d2012-06-17 18:40:53 -0400360
361 return 0;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800362}
363
Nicholas Bellinger7b745c82013-02-19 17:30:34 -0800364static sense_reason_t
365fd_execute_write_same(struct se_cmd *cmd)
366{
367 struct se_device *se_dev = cmd->se_dev;
368 struct fd_dev *fd_dev = FD_DEV(se_dev);
Nicholas Bellinger7b745c82013-02-19 17:30:34 -0800369 loff_t pos = cmd->t_task_lba * se_dev->dev_attrib.block_size;
Christoph Hellwigd4c5dca2015-02-22 08:48:42 -0800370 sector_t nolb = sbc_get_write_same_sectors(cmd);
371 struct iov_iter iter;
372 struct bio_vec *bvec;
373 unsigned int len = 0, i;
374 ssize_t ret;
Nicholas Bellinger7b745c82013-02-19 17:30:34 -0800375
376 if (!nolb) {
377 target_complete_cmd(cmd, SAM_STAT_GOOD);
378 return 0;
379 }
Nicholas Bellingerafd73f12015-02-14 01:32:11 +0000380 if (cmd->prot_op) {
381 pr_err("WRITE_SAME: Protection information with FILEIO"
382 " backends not supported\n");
383 return TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE;
384 }
Nicholas Bellinger7b745c82013-02-19 17:30:34 -0800385
386 if (cmd->t_data_nents > 1 ||
Christoph Hellwigd4c5dca2015-02-22 08:48:42 -0800387 cmd->t_data_sg[0].length != cmd->se_dev->dev_attrib.block_size) {
Nicholas Bellinger7b745c82013-02-19 17:30:34 -0800388 pr_err("WRITE_SAME: Illegal SGL t_data_nents: %u length: %u"
Christoph Hellwigd4c5dca2015-02-22 08:48:42 -0800389 " block_size: %u\n",
390 cmd->t_data_nents,
391 cmd->t_data_sg[0].length,
Nicholas Bellinger7b745c82013-02-19 17:30:34 -0800392 cmd->se_dev->dev_attrib.block_size);
393 return TCM_INVALID_CDB_FIELD;
394 }
395
Christoph Hellwigd4c5dca2015-02-22 08:48:42 -0800396 bvec = kcalloc(nolb, sizeof(struct bio_vec), GFP_KERNEL);
397 if (!bvec)
Nicholas Bellinger7b745c82013-02-19 17:30:34 -0800398 return TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE;
399
Christoph Hellwigd4c5dca2015-02-22 08:48:42 -0800400 for (i = 0; i < nolb; i++) {
401 bvec[i].bv_page = sg_page(&cmd->t_data_sg[0]);
402 bvec[i].bv_len = cmd->t_data_sg[0].length;
403 bvec[i].bv_offset = cmd->t_data_sg[0].offset;
404
405 len += se_dev->dev_attrib.block_size;
Nicholas Bellinger7b745c82013-02-19 17:30:34 -0800406 }
407
Christoph Hellwigd4c5dca2015-02-22 08:48:42 -0800408 iov_iter_bvec(&iter, ITER_BVEC, bvec, nolb, len);
409 ret = vfs_iter_write(fd_dev->fd_file, &iter, &pos);
Nicholas Bellinger7b745c82013-02-19 17:30:34 -0800410
Christoph Hellwigd4c5dca2015-02-22 08:48:42 -0800411 kfree(bvec);
412 if (ret < 0 || ret != len) {
413 pr_err("vfs_iter_write() returned %zd for write same\n", ret);
Nicholas Bellinger7b745c82013-02-19 17:30:34 -0800414 return TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE;
415 }
416
417 target_complete_cmd(cmd, SAM_STAT_GOOD);
418 return 0;
419}
420
Akinobu Mita64d240b2015-04-13 23:21:58 +0900421static int
422fd_do_prot_fill(struct se_device *se_dev, sector_t lba, sector_t nolb,
423 void *buf, size_t bufsize)
424{
425 struct fd_dev *fd_dev = FD_DEV(se_dev);
426 struct file *prot_fd = fd_dev->fd_prot_file;
427 sector_t prot_length, prot;
428 loff_t pos = lba * se_dev->prot_length;
429
430 if (!prot_fd) {
431 pr_err("Unable to locate fd_dev->fd_prot_file\n");
432 return -ENODEV;
433 }
434
435 prot_length = nolb * se_dev->prot_length;
436
437 for (prot = 0; prot < prot_length;) {
438 sector_t len = min_t(sector_t, bufsize, prot_length - prot);
439 ssize_t ret = kernel_write(prot_fd, buf, len, pos + prot);
440
441 if (ret != len) {
442 pr_err("vfs_write to prot file failed: %zd\n", ret);
443 return ret < 0 ? ret : -ENODEV;
444 }
445 prot += ret;
446 }
447
448 return 0;
449}
450
451static int
452fd_do_prot_unmap(struct se_cmd *cmd, sector_t lba, sector_t nolb)
453{
454 void *buf;
455 int rc;
456
457 buf = (void *)__get_free_page(GFP_KERNEL);
458 if (!buf) {
459 pr_err("Unable to allocate FILEIO prot buf\n");
460 return -ENOMEM;
461 }
462 memset(buf, 0xff, PAGE_SIZE);
463
464 rc = fd_do_prot_fill(cmd->se_dev, lba, nolb, buf, PAGE_SIZE);
465
466 free_page((unsigned long)buf);
467
468 return rc;
469}
470
Christoph Hellwigde103c92012-11-06 12:24:09 -0800471static sense_reason_t
Asias He86d71822013-02-25 14:03:46 +0800472fd_do_unmap(struct se_cmd *cmd, void *priv, sector_t lba, sector_t nolb)
Asias He70d3ae5c2013-02-25 14:03:42 +0800473{
Asias He86d71822013-02-25 14:03:46 +0800474 struct file *file = priv;
Asias He70d3ae5c2013-02-25 14:03:42 +0800475 struct inode *inode = file->f_mapping->host;
Asias He70d3ae5c2013-02-25 14:03:42 +0800476 int ret;
477
Akinobu Mita64d240b2015-04-13 23:21:58 +0900478 if (cmd->se_dev->dev_attrib.pi_prot_type) {
479 ret = fd_do_prot_unmap(cmd, lba, nolb);
480 if (ret)
481 return TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE;
482 }
483
Asias He70d3ae5c2013-02-25 14:03:42 +0800484 if (S_ISBLK(inode->i_mode)) {
485 /* The backend is block device, use discard */
486 struct block_device *bdev = inode->i_bdev;
487
Asias He43f55bb2013-02-25 14:03:44 +0800488 ret = blkdev_issue_discard(bdev, lba,
Asias He70d3ae5c2013-02-25 14:03:42 +0800489 nolb, GFP_KERNEL, 0);
490 if (ret < 0) {
491 pr_warn("FILEIO: blkdev_issue_discard() failed: %d\n",
492 ret);
493 return TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE;
494 }
495 } else {
496 /* The backend is normal file, use fallocate */
Asias He43f55bb2013-02-25 14:03:44 +0800497 struct se_device *se_dev = cmd->se_dev;
498 loff_t pos = lba * se_dev->dev_attrib.block_size;
Asias He70d3ae5c2013-02-25 14:03:42 +0800499 unsigned int len = nolb * se_dev->dev_attrib.block_size;
500 int mode = FALLOC_FL_PUNCH_HOLE | FALLOC_FL_KEEP_SIZE;
501
502 if (!file->f_op->fallocate)
503 return TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE;
504
505 ret = file->f_op->fallocate(file, mode, pos, len);
506 if (ret < 0) {
507 pr_warn("FILEIO: fallocate() failed: %d\n", ret);
508 return TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE;
509 }
510 }
511
Asias He43f55bb2013-02-25 14:03:44 +0800512 return 0;
513}
514
515static sense_reason_t
516fd_execute_write_same_unmap(struct se_cmd *cmd)
517{
518 struct se_device *se_dev = cmd->se_dev;
519 struct fd_dev *fd_dev = FD_DEV(se_dev);
520 struct file *file = fd_dev->fd_file;
521 sector_t lba = cmd->t_task_lba;
522 sector_t nolb = sbc_get_write_same_sectors(cmd);
Christoph Hellwig3abff1e2015-03-26 12:27:35 +0100523 sense_reason_t ret;
Asias He43f55bb2013-02-25 14:03:44 +0800524
525 if (!nolb) {
526 target_complete_cmd(cmd, SAM_STAT_GOOD);
527 return 0;
528 }
529
530 ret = fd_do_unmap(cmd, file, lba, nolb);
531 if (ret)
532 return ret;
533
Asias He70d3ae5c2013-02-25 14:03:42 +0800534 target_complete_cmd(cmd, GOOD);
535 return 0;
536}
537
538static sense_reason_t
Asias He50642762013-02-25 14:03:43 +0800539fd_execute_unmap(struct se_cmd *cmd)
540{
Asias He86d71822013-02-25 14:03:46 +0800541 struct file *file = FD_DEV(cmd->se_dev)->fd_file;
Asias He50642762013-02-25 14:03:43 +0800542
Asias He86d71822013-02-25 14:03:46 +0800543 return sbc_execute_unmap(cmd, fd_do_unmap, file);
Asias He50642762013-02-25 14:03:43 +0800544}
545
546static sense_reason_t
Nicholas Bellingera82a9532013-08-19 23:57:30 -0700547fd_execute_rw(struct se_cmd *cmd, struct scatterlist *sgl, u32 sgl_nents,
548 enum dma_data_direction data_direction)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800549{
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800550 struct se_device *dev = cmd->se_dev;
Sagi Grimberg8287fa52015-04-19 20:27:20 +0300551 struct fd_dev *fd_dev = FD_DEV(dev);
552 struct file *file = fd_dev->fd_file;
553 struct file *pfile = fd_dev->fd_prot_file;
Nicholas Bellinger42201b52014-01-18 09:33:48 +0000554 sense_reason_t rc;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800555 int ret = 0;
Nicholas Bellinger046ba642015-01-06 16:10:37 -0800556 /*
557 * We are currently limited by the number of iovecs (2048) per
558 * single vfs_[writev,readv] call.
559 */
560 if (cmd->data_length > FD_MAX_BYTES) {
561 pr_err("FILEIO: Not able to process I/O of %u bytes due to"
562 "FD_MAX_BYTES: %u iovec count limitiation\n",
563 cmd->data_length, FD_MAX_BYTES);
564 return TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE;
565 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800566 /*
567 * Call vectorized fileio functions to map struct scatterlist
568 * physical memory addresses to struct iovec virtual memory.
569 */
Christoph Hellwig5787cac2012-04-24 00:25:06 -0400570 if (data_direction == DMA_FROM_DEVICE) {
Nicholas Bellingeree920462015-02-28 02:44:19 -0800571 if (cmd->prot_type && dev->dev_attrib.pi_prot_type) {
Sagi Grimberg8287fa52015-04-19 20:27:20 +0300572 ret = fd_do_rw(cmd, pfile, dev->prot_length,
573 cmd->t_prot_sg, cmd->t_prot_nents,
574 cmd->prot_length, 0);
Nicholas Bellinger42201b52014-01-18 09:33:48 +0000575 if (ret < 0)
576 return TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE;
577 }
578
Sagi Grimberg8287fa52015-04-19 20:27:20 +0300579 ret = fd_do_rw(cmd, file, dev->dev_attrib.block_size,
580 sgl, sgl_nents, cmd->data_length, 0);
Nicholas Bellinger42201b52014-01-18 09:33:48 +0000581
Nicholas Bellingeree920462015-02-28 02:44:19 -0800582 if (ret > 0 && cmd->prot_type && dev->dev_attrib.pi_prot_type) {
Sagi Grimberg8287fa52015-04-19 20:27:20 +0300583 u32 sectors = cmd->data_length >>
584 ilog2(dev->dev_attrib.block_size);
Nicholas Bellinger42201b52014-01-18 09:33:48 +0000585
Sagi Grimbergf75b6fa2015-04-19 20:27:19 +0300586 rc = sbc_dif_verify(cmd, cmd->t_task_lba, sectors,
587 0, cmd->t_prot_sg, 0);
Sagi Grimberg8287fa52015-04-19 20:27:20 +0300588 if (rc)
Nicholas Bellinger42201b52014-01-18 09:33:48 +0000589 return rc;
Sagi Grimberg8287fa52015-04-19 20:27:20 +0300590 }
591 } else {
592 if (cmd->prot_type && dev->dev_attrib.pi_prot_type) {
593 u32 sectors = cmd->data_length >>
594 ilog2(dev->dev_attrib.block_size);
595
596 rc = sbc_dif_verify(cmd, cmd->t_task_lba, sectors,
597 0, cmd->t_prot_sg, 0);
598 if (rc)
599 return rc;
Nicholas Bellinger42201b52014-01-18 09:33:48 +0000600 }
601
Sagi Grimberg8287fa52015-04-19 20:27:20 +0300602 ret = fd_do_rw(cmd, file, dev->dev_attrib.block_size,
603 sgl, sgl_nents, cmd->data_length, 1);
Nicholas Bellingera4dff302012-05-30 16:25:41 -0700604 /*
Hannes Reinecke125d0112013-11-19 09:07:46 +0100605 * Perform implicit vfs_fsync_range() for fd_do_writev() ops
Nicholas Bellingera4dff302012-05-30 16:25:41 -0700606 * for SCSI WRITEs with Forced Unit Access (FUA) set.
607 * Allow this to happen independent of WCE=0 setting.
608 */
Christoph Hellwig814e5b42015-04-20 15:00:30 +0200609 if (ret > 0 && (cmd->se_cmd_flags & SCF_FUA)) {
Nicholas Bellingera4dff302012-05-30 16:25:41 -0700610 loff_t start = cmd->t_task_lba *
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400611 dev->dev_attrib.block_size;
Zach Brown62d3ab42014-10-06 16:40:13 -0700612 loff_t end;
613
614 if (cmd->data_length)
615 end = start + cmd->data_length - 1;
616 else
617 end = LLONG_MAX;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800618
Nicholas Bellingera4dff302012-05-30 16:25:41 -0700619 vfs_fsync_range(fd_dev->fd_file, start, end, 1);
620 }
Nicholas Bellinger42201b52014-01-18 09:33:48 +0000621
Nicholas Bellingeree920462015-02-28 02:44:19 -0800622 if (ret > 0 && cmd->prot_type && dev->dev_attrib.pi_prot_type) {
Sagi Grimberg8287fa52015-04-19 20:27:20 +0300623 ret = fd_do_rw(cmd, pfile, dev->prot_length,
624 cmd->t_prot_sg, cmd->t_prot_nents,
625 cmd->prot_length, 1);
Nicholas Bellinger42201b52014-01-18 09:33:48 +0000626 if (ret < 0)
627 return TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE;
628 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800629 }
630
Sagi Grimberg8287fa52015-04-19 20:27:20 +0300631 if (ret < 0)
Christoph Hellwigde103c92012-11-06 12:24:09 -0800632 return TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE;
633
Christoph Hellwig5787cac2012-04-24 00:25:06 -0400634 if (ret)
635 target_complete_cmd(cmd, SAM_STAT_GOOD);
Nicholas Bellinger03e98c92011-11-04 02:36:16 -0700636 return 0;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800637}
638
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800639enum {
640 Opt_fd_dev_name, Opt_fd_dev_size, Opt_fd_buffered_io, Opt_err
641};
642
643static match_table_t tokens = {
644 {Opt_fd_dev_name, "fd_dev_name=%s"},
645 {Opt_fd_dev_size, "fd_dev_size=%s"},
Nicholas Bellingerb32f4c72012-09-29 17:15:37 -0700646 {Opt_fd_buffered_io, "fd_buffered_io=%d"},
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800647 {Opt_err, NULL}
648};
649
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400650static ssize_t fd_set_configfs_dev_params(struct se_device *dev,
651 const char *page, ssize_t count)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800652{
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400653 struct fd_dev *fd_dev = FD_DEV(dev);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800654 char *orig, *ptr, *arg_p, *opts;
655 substring_t args[MAX_OPT_ARGS];
Nicholas Bellingerb32f4c72012-09-29 17:15:37 -0700656 int ret = 0, arg, token;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800657
658 opts = kstrdup(page, GFP_KERNEL);
659 if (!opts)
660 return -ENOMEM;
661
662 orig = opts;
663
Sebastian Andrzej Siewior90c161b2011-11-23 20:53:17 +0100664 while ((ptr = strsep(&opts, ",\n")) != NULL) {
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800665 if (!*ptr)
666 continue;
667
668 token = match_token(ptr, tokens, args);
669 switch (token) {
670 case Opt_fd_dev_name:
Al Virodbc6e022012-08-01 13:07:04 +0400671 if (match_strlcpy(fd_dev->fd_dev_name, &args[0],
672 FD_MAX_DEV_NAME) == 0) {
673 ret = -EINVAL;
Jesper Juhl6d180252011-03-14 04:05:56 -0700674 break;
675 }
Andy Grover6708bb22011-06-08 10:36:43 -0700676 pr_debug("FILEIO: Referencing Path: %s\n",
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800677 fd_dev->fd_dev_name);
678 fd_dev->fbd_flags |= FBDF_HAS_PATH;
679 break;
680 case Opt_fd_dev_size:
681 arg_p = match_strdup(&args[0]);
Jesper Juhl6d180252011-03-14 04:05:56 -0700682 if (!arg_p) {
683 ret = -ENOMEM;
684 break;
685 }
Jingoo Han57103d72013-07-19 16:22:19 +0900686 ret = kstrtoull(arg_p, 0, &fd_dev->fd_dev_size);
Jesper Juhl6d180252011-03-14 04:05:56 -0700687 kfree(arg_p);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800688 if (ret < 0) {
Jingoo Han57103d72013-07-19 16:22:19 +0900689 pr_err("kstrtoull() failed for"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800690 " fd_dev_size=\n");
691 goto out;
692 }
Andy Grover6708bb22011-06-08 10:36:43 -0700693 pr_debug("FILEIO: Referencing Size: %llu"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800694 " bytes\n", fd_dev->fd_dev_size);
695 fd_dev->fbd_flags |= FBDF_HAS_SIZE;
696 break;
Nicholas Bellingerb32f4c72012-09-29 17:15:37 -0700697 case Opt_fd_buffered_io:
Joern Engelce31c1b2014-09-02 17:50:00 -0400698 ret = match_int(args, &arg);
699 if (ret)
700 goto out;
Nicholas Bellingerb32f4c72012-09-29 17:15:37 -0700701 if (arg != 1) {
702 pr_err("bogus fd_buffered_io=%d value\n", arg);
703 ret = -EINVAL;
704 goto out;
705 }
706
707 pr_debug("FILEIO: Using buffered I/O"
708 " operations for struct fd_dev\n");
709
710 fd_dev->fbd_flags |= FDBD_HAS_BUFFERED_IO_WCE;
711 break;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800712 default:
713 break;
714 }
715 }
716
717out:
718 kfree(orig);
719 return (!ret) ? count : ret;
720}
721
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400722static ssize_t fd_show_configfs_dev_params(struct se_device *dev, char *b)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800723{
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400724 struct fd_dev *fd_dev = FD_DEV(dev);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800725 ssize_t bl = 0;
726
727 bl = sprintf(b + bl, "TCM FILEIO ID: %u", fd_dev->fd_dev_id);
Nicholas Bellingerb32f4c72012-09-29 17:15:37 -0700728 bl += sprintf(b + bl, " File: %s Size: %llu Mode: %s\n",
729 fd_dev->fd_dev_name, fd_dev->fd_dev_size,
730 (fd_dev->fbd_flags & FDBD_HAS_BUFFERED_IO_WCE) ?
731 "Buffered-WCE" : "O_DSYNC");
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800732 return bl;
733}
734
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800735static sector_t fd_get_blocks(struct se_device *dev)
736{
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400737 struct fd_dev *fd_dev = FD_DEV(dev);
Nicholas Bellingercd9323f2012-05-16 16:05:26 -0700738 struct file *f = fd_dev->fd_file;
739 struct inode *i = f->f_mapping->host;
740 unsigned long long dev_size;
741 /*
742 * When using a file that references an underlying struct block_device,
743 * ensure dev_size is always based on the current inode size in order
744 * to handle underlying block_device resize operations.
745 */
746 if (S_ISBLK(i->i_mode))
Nicholas Bellinger21363ca2013-05-29 21:35:23 -0700747 dev_size = i_size_read(i);
Nicholas Bellingercd9323f2012-05-16 16:05:26 -0700748 else
749 dev_size = fd_dev->fd_dev_size;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800750
Nicholas Bellinger21363ca2013-05-29 21:35:23 -0700751 return div_u64(dev_size - dev->dev_attrib.block_size,
752 dev->dev_attrib.block_size);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800753}
754
Nicholas Bellinger0f5e2ec2014-01-18 09:32:56 +0000755static int fd_init_prot(struct se_device *dev)
756{
757 struct fd_dev *fd_dev = FD_DEV(dev);
758 struct file *prot_file, *file = fd_dev->fd_file;
759 struct inode *inode;
760 int ret, flags = O_RDWR | O_CREAT | O_LARGEFILE | O_DSYNC;
761 char buf[FD_MAX_DEV_PROT_NAME];
762
763 if (!file) {
764 pr_err("Unable to locate fd_dev->fd_file\n");
765 return -ENODEV;
766 }
767
768 inode = file->f_mapping->host;
769 if (S_ISBLK(inode->i_mode)) {
770 pr_err("FILEIO Protection emulation only supported on"
771 " !S_ISBLK\n");
772 return -ENOSYS;
773 }
774
775 if (fd_dev->fbd_flags & FDBD_HAS_BUFFERED_IO_WCE)
776 flags &= ~O_DSYNC;
777
778 snprintf(buf, FD_MAX_DEV_PROT_NAME, "%s.protection",
779 fd_dev->fd_dev_name);
780
781 prot_file = filp_open(buf, flags, 0600);
782 if (IS_ERR(prot_file)) {
783 pr_err("filp_open(%s) failed\n", buf);
784 ret = PTR_ERR(prot_file);
785 return ret;
786 }
787 fd_dev->fd_prot_file = prot_file;
788
789 return 0;
790}
791
Nicholas Bellinger0f5e2ec2014-01-18 09:32:56 +0000792static int fd_format_prot(struct se_device *dev)
793{
Nicholas Bellinger0f5e2ec2014-01-18 09:32:56 +0000794 unsigned char *buf;
Nicholas Bellinger0f5e2ec2014-01-18 09:32:56 +0000795 int unit_size = FDBD_FORMAT_UNIT_SIZE * dev->dev_attrib.block_size;
Akinobu Mita64d240b2015-04-13 23:21:58 +0900796 int ret;
Nicholas Bellinger0f5e2ec2014-01-18 09:32:56 +0000797
798 if (!dev->dev_attrib.pi_prot_type) {
799 pr_err("Unable to format_prot while pi_prot_type == 0\n");
800 return -ENODEV;
801 }
Nicholas Bellinger0f5e2ec2014-01-18 09:32:56 +0000802
Nicholas Bellinger0f5e2ec2014-01-18 09:32:56 +0000803 buf = vzalloc(unit_size);
804 if (!buf) {
805 pr_err("Unable to allocate FILEIO prot buf\n");
806 return -ENOMEM;
807 }
Nicholas Bellinger0f5e2ec2014-01-18 09:32:56 +0000808
809 pr_debug("Using FILEIO prot_length: %llu\n",
Akinobu Mita64d240b2015-04-13 23:21:58 +0900810 (unsigned long long)(dev->transport->get_blocks(dev) + 1) *
811 dev->prot_length);
Nicholas Bellinger0f5e2ec2014-01-18 09:32:56 +0000812
Sagi Grimberg80dcd0c2014-02-19 17:50:16 +0200813 memset(buf, 0xff, unit_size);
Akinobu Mita64d240b2015-04-13 23:21:58 +0900814 ret = fd_do_prot_fill(dev, 0, dev->transport->get_blocks(dev) + 1,
815 buf, unit_size);
Nicholas Bellinger0f5e2ec2014-01-18 09:32:56 +0000816 vfree(buf);
817 return ret;
818}
819
820static void fd_free_prot(struct se_device *dev)
821{
822 struct fd_dev *fd_dev = FD_DEV(dev);
823
824 if (!fd_dev->fd_prot_file)
825 return;
826
827 filp_close(fd_dev->fd_prot_file, NULL);
828 fd_dev->fd_prot_file = NULL;
829}
830
Christoph Hellwig9e999a62012-10-07 10:55:50 -0400831static struct sbc_ops fd_sbc_ops = {
Christoph Hellwig0c2ad7d2012-06-17 18:40:52 -0400832 .execute_rw = fd_execute_rw,
Christoph Hellwigad67f0d2012-06-17 18:40:53 -0400833 .execute_sync_cache = fd_execute_sync_cache,
Nicholas Bellinger7b745c82013-02-19 17:30:34 -0800834 .execute_write_same = fd_execute_write_same,
Asias He70d3ae5c2013-02-25 14:03:42 +0800835 .execute_write_same_unmap = fd_execute_write_same_unmap,
Asias He50642762013-02-25 14:03:43 +0800836 .execute_unmap = fd_execute_unmap,
Christoph Hellwig0c2ad7d2012-06-17 18:40:52 -0400837};
838
Christoph Hellwigde103c92012-11-06 12:24:09 -0800839static sense_reason_t
840fd_parse_cdb(struct se_cmd *cmd)
Christoph Hellwig0c2ad7d2012-06-17 18:40:52 -0400841{
Christoph Hellwig9e999a62012-10-07 10:55:50 -0400842 return sbc_parse_cdb(cmd, &fd_sbc_ops);
Christoph Hellwig0c2ad7d2012-06-17 18:40:52 -0400843}
844
Nicholas Bellingerb2320492014-11-28 04:56:30 +0000845DEF_TB_DEFAULT_ATTRIBS(fileio);
846
847static struct configfs_attribute *fileio_backend_dev_attrs[] = {
848 &fileio_dev_attrib_emulate_model_alias.attr,
849 &fileio_dev_attrib_emulate_dpo.attr,
850 &fileio_dev_attrib_emulate_fua_write.attr,
851 &fileio_dev_attrib_emulate_fua_read.attr,
852 &fileio_dev_attrib_emulate_write_cache.attr,
853 &fileio_dev_attrib_emulate_ua_intlck_ctrl.attr,
854 &fileio_dev_attrib_emulate_tas.attr,
855 &fileio_dev_attrib_emulate_tpu.attr,
856 &fileio_dev_attrib_emulate_tpws.attr,
857 &fileio_dev_attrib_emulate_caw.attr,
858 &fileio_dev_attrib_emulate_3pc.attr,
859 &fileio_dev_attrib_pi_prot_type.attr,
860 &fileio_dev_attrib_hw_pi_prot_type.attr,
861 &fileio_dev_attrib_pi_prot_format.attr,
862 &fileio_dev_attrib_enforce_pr_isids.attr,
863 &fileio_dev_attrib_is_nonrot.attr,
864 &fileio_dev_attrib_emulate_rest_reord.attr,
865 &fileio_dev_attrib_force_pr_aptpl.attr,
866 &fileio_dev_attrib_hw_block_size.attr,
867 &fileio_dev_attrib_block_size.attr,
868 &fileio_dev_attrib_hw_max_sectors.attr,
Nicholas Bellingerb2320492014-11-28 04:56:30 +0000869 &fileio_dev_attrib_optimal_sectors.attr,
870 &fileio_dev_attrib_hw_queue_depth.attr,
871 &fileio_dev_attrib_queue_depth.attr,
872 &fileio_dev_attrib_max_unmap_lba_count.attr,
873 &fileio_dev_attrib_max_unmap_block_desc_count.attr,
874 &fileio_dev_attrib_unmap_granularity.attr,
875 &fileio_dev_attrib_unmap_granularity_alignment.attr,
876 &fileio_dev_attrib_max_write_same_len.attr,
877 NULL,
878};
879
Christoph Hellwig0a06d432015-05-10 18:14:56 +0200880static const struct target_backend_ops fileio_ops = {
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800881 .name = "fileio",
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400882 .inquiry_prod = "FILEIO",
883 .inquiry_rev = FD_VERSION,
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800884 .owner = THIS_MODULE,
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800885 .attach_hba = fd_attach_hba,
886 .detach_hba = fd_detach_hba,
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400887 .alloc_device = fd_alloc_device,
888 .configure_device = fd_configure_device,
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800889 .free_device = fd_free_device,
Christoph Hellwig0c2ad7d2012-06-17 18:40:52 -0400890 .parse_cdb = fd_parse_cdb,
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800891 .set_configfs_dev_params = fd_set_configfs_dev_params,
892 .show_configfs_dev_params = fd_show_configfs_dev_params,
Christoph Hellwig6f23ac82012-10-07 10:55:53 -0400893 .get_device_type = sbc_get_device_type,
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800894 .get_blocks = fd_get_blocks,
Nicholas Bellinger0f5e2ec2014-01-18 09:32:56 +0000895 .init_prot = fd_init_prot,
896 .format_prot = fd_format_prot,
897 .free_prot = fd_free_prot,
Christoph Hellwig0a06d432015-05-10 18:14:56 +0200898 .tb_dev_attrib_attrs = fileio_backend_dev_attrs,
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800899};
900
901static int __init fileio_module_init(void)
902{
Christoph Hellwig0a06d432015-05-10 18:14:56 +0200903 return transport_backend_register(&fileio_ops);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800904}
905
Asias He63b91d52013-02-27 12:50:56 +0800906static void __exit fileio_module_exit(void)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800907{
Christoph Hellwig0a06d432015-05-10 18:14:56 +0200908 target_backend_unregister(&fileio_ops);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800909}
910
911MODULE_DESCRIPTION("TCM FILEIO subsystem plugin");
912MODULE_AUTHOR("nab@Linux-iSCSI.org");
913MODULE_LICENSE("GPL");
914
915module_init(fileio_module_init);
916module_exit(fileio_module_exit);