blob: aa1620abec6dc0b1ccb5a78305ca2ed41800ac5d [file] [log] [blame]
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001/*******************************************************************************
2 * Filename: target_core_iblock.c
3 *
4 * This file contains the Storage Engine <-> Linux BlockIO transport
5 * specific functions.
6 *
Nicholas Bellingerfd9a11d2012-11-09 14:51:48 -08007 * (c) Copyright 2003-2012 RisingTide Systems LLC.
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08008 *
9 * Nicholas A. Bellinger <nab@kernel.org>
10 *
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License as published by
13 * the Free Software Foundation; either version 2 of the License, or
14 * (at your option) any later version.
15 *
16 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU General Public License for more details.
20 *
21 * You should have received a copy of the GNU General Public License
22 * along with this program; if not, write to the Free Software
23 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
24 *
25 ******************************************************************************/
26
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080027#include <linux/string.h>
28#include <linux/parser.h>
29#include <linux/timer.h>
30#include <linux/fs.h>
31#include <linux/blkdev.h>
32#include <linux/slab.h>
33#include <linux/spinlock.h>
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080034#include <linux/bio.h>
35#include <linux/genhd.h>
36#include <linux/file.h>
Paul Gortmaker827509e2011-08-30 14:20:44 -040037#include <linux/module.h>
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080038#include <scsi/scsi.h>
39#include <scsi/scsi_host.h>
Christoph Hellwig14150a62012-06-17 18:40:55 -040040#include <asm/unaligned.h>
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080041
42#include <target/target_core_base.h>
Christoph Hellwigc4795fb2011-11-16 09:46:48 -050043#include <target/target_core_backend.h>
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080044
45#include "target_core_iblock.h"
46
Christoph Hellwigd5b4a212011-12-21 14:20:31 -050047#define IBLOCK_MAX_BIO_PER_TASK 32 /* max # of bios to submit at a time */
48#define IBLOCK_BIO_POOL_SIZE 128
49
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -040050static inline struct iblock_dev *IBLOCK_DEV(struct se_device *dev)
51{
52 return container_of(dev, struct iblock_dev, dev);
53}
54
55
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080056static struct se_subsystem_api iblock_template;
57
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080058/* iblock_attach_hba(): (Part of se_subsystem_api_t template)
59 *
60 *
61 */
62static int iblock_attach_hba(struct se_hba *hba, u32 host_id)
63{
Andy Grover6708bb22011-06-08 10:36:43 -070064 pr_debug("CORE_HBA[%d] - TCM iBlock HBA Driver %s on"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080065 " Generic Target Core Stack %s\n", hba->hba_id,
66 IBLOCK_VERSION, TARGET_CORE_MOD_VERSION);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080067 return 0;
68}
69
70static void iblock_detach_hba(struct se_hba *hba)
71{
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080072}
73
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -040074static struct se_device *iblock_alloc_device(struct se_hba *hba, const char *name)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080075{
76 struct iblock_dev *ib_dev = NULL;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080077
78 ib_dev = kzalloc(sizeof(struct iblock_dev), GFP_KERNEL);
Andy Grover6708bb22011-06-08 10:36:43 -070079 if (!ib_dev) {
80 pr_err("Unable to allocate struct iblock_dev\n");
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080081 return NULL;
82 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080083
Andy Grover6708bb22011-06-08 10:36:43 -070084 pr_debug( "IBLOCK: Allocated ib_dev for %s\n", name);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080085
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -040086 return &ib_dev->dev;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080087}
88
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -040089static int iblock_configure_device(struct se_device *dev)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080090{
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -040091 struct iblock_dev *ib_dev = IBLOCK_DEV(dev);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080092 struct request_queue *q;
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -040093 struct block_device *bd = NULL;
Andy Grover44bfd012012-06-07 10:38:51 -070094 fmode_t mode;
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -040095 int ret = -ENOMEM;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080096
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -040097 if (!(ib_dev->ibd_flags & IBDF_HAS_UDEV_PATH)) {
98 pr_err("Missing udev_path= parameters for IBLOCK\n");
99 return -EINVAL;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800100 }
Christoph Hellwigd5b4a212011-12-21 14:20:31 -0500101
102 ib_dev->ibd_bio_set = bioset_create(IBLOCK_BIO_POOL_SIZE, 0);
Andy Grover6708bb22011-06-08 10:36:43 -0700103 if (!ib_dev->ibd_bio_set) {
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400104 pr_err("IBLOCK: Unable to create bioset\n");
105 goto out;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800106 }
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400107
Andy Grover6708bb22011-06-08 10:36:43 -0700108 pr_debug( "IBLOCK: Claiming struct block_device: %s\n",
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800109 ib_dev->ibd_udev_path);
110
Andy Grover44bfd012012-06-07 10:38:51 -0700111 mode = FMODE_READ|FMODE_EXCL;
112 if (!ib_dev->ibd_readonly)
113 mode |= FMODE_WRITE;
114
115 bd = blkdev_get_by_path(ib_dev->ibd_udev_path, mode, ib_dev);
Nicholas Bellinger613640e2011-03-14 04:05:59 -0700116 if (IS_ERR(bd)) {
117 ret = PTR_ERR(bd);
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400118 goto out_free_bioset;
Nicholas Bellinger613640e2011-03-14 04:05:59 -0700119 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800120 ib_dev->ibd_bd = bd;
121
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400122 q = bdev_get_queue(bd);
123
124 dev->dev_attrib.hw_block_size = bdev_logical_block_size(bd);
125 dev->dev_attrib.hw_max_sectors = UINT_MAX;
126 dev->dev_attrib.hw_queue_depth = q->nr_requests;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800127
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800128 /*
129 * Check if the underlying struct block_device request_queue supports
130 * the QUEUE_FLAG_DISCARD bit for UNMAP/WRITE_SAME in SCSI + TRIM
131 * in ATA and we need to set TPE=1
132 */
Nicholas Bellinger613640e2011-03-14 04:05:59 -0700133 if (blk_queue_discard(q)) {
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400134 dev->dev_attrib.max_unmap_lba_count =
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800135 q->limits.max_discard_sectors;
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400136
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800137 /*
138 * Currently hardcoded to 1 in Linux/SCSI code..
139 */
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400140 dev->dev_attrib.max_unmap_block_desc_count = 1;
141 dev->dev_attrib.unmap_granularity =
Marco Sanvido7347b5f2012-01-20 15:49:27 -0800142 q->limits.discard_granularity >> 9;
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400143 dev->dev_attrib.unmap_granularity_alignment =
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800144 q->limits.discard_alignment;
145
Andy Grover6708bb22011-06-08 10:36:43 -0700146 pr_debug("IBLOCK: BLOCK Discard support available,"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800147 " disabled by default\n");
148 }
Nicholas Bellingerf6970ad2012-11-07 20:08:38 -0800149 /*
150 * Enable write same emulation for IBLOCK and use 0xFFFF as
151 * the smaller WRITE_SAME(10) only has a two-byte block count.
152 */
153 dev->dev_attrib.max_write_same_len = 0xFFFF;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800154
Roland Dreiere22a7f072011-07-05 13:34:52 -0700155 if (blk_queue_nonrot(q))
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400156 dev->dev_attrib.is_nonrot = 1;
Nicholas Bellingerd0c8b252013-01-29 22:10:06 -0800157
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400158 return 0;
Roland Dreiere22a7f072011-07-05 13:34:52 -0700159
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400160out_free_bioset:
161 bioset_free(ib_dev->ibd_bio_set);
162 ib_dev->ibd_bio_set = NULL;
163out:
164 return ret;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800165}
166
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400167static void iblock_free_device(struct se_device *dev)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800168{
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400169 struct iblock_dev *ib_dev = IBLOCK_DEV(dev);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800170
Nicholas Bellingerbc665522011-02-09 15:34:38 -0800171 if (ib_dev->ibd_bd != NULL)
172 blkdev_put(ib_dev->ibd_bd, FMODE_WRITE|FMODE_READ|FMODE_EXCL);
173 if (ib_dev->ibd_bio_set != NULL)
174 bioset_free(ib_dev->ibd_bio_set);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800175 kfree(ib_dev);
176}
177
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800178static unsigned long long iblock_emulate_read_cap_with_block_size(
179 struct se_device *dev,
180 struct block_device *bd,
181 struct request_queue *q)
182{
183 unsigned long long blocks_long = (div_u64(i_size_read(bd->bd_inode),
184 bdev_logical_block_size(bd)) - 1);
185 u32 block_size = bdev_logical_block_size(bd);
186
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400187 if (block_size == dev->dev_attrib.block_size)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800188 return blocks_long;
189
190 switch (block_size) {
191 case 4096:
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400192 switch (dev->dev_attrib.block_size) {
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800193 case 2048:
194 blocks_long <<= 1;
195 break;
196 case 1024:
197 blocks_long <<= 2;
198 break;
199 case 512:
200 blocks_long <<= 3;
201 default:
202 break;
203 }
204 break;
205 case 2048:
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400206 switch (dev->dev_attrib.block_size) {
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800207 case 4096:
208 blocks_long >>= 1;
209 break;
210 case 1024:
211 blocks_long <<= 1;
212 break;
213 case 512:
214 blocks_long <<= 2;
215 break;
216 default:
217 break;
218 }
219 break;
220 case 1024:
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400221 switch (dev->dev_attrib.block_size) {
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800222 case 4096:
223 blocks_long >>= 2;
224 break;
225 case 2048:
226 blocks_long >>= 1;
227 break;
228 case 512:
229 blocks_long <<= 1;
230 break;
231 default:
232 break;
233 }
234 break;
235 case 512:
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400236 switch (dev->dev_attrib.block_size) {
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800237 case 4096:
238 blocks_long >>= 3;
239 break;
240 case 2048:
241 blocks_long >>= 2;
242 break;
243 case 1024:
244 blocks_long >>= 1;
245 break;
246 default:
247 break;
248 }
249 break;
250 default:
251 break;
252 }
253
254 return blocks_long;
255}
256
Nicholas Bellinger3a41d852012-11-17 14:27:55 -0800257static void iblock_complete_cmd(struct se_cmd *cmd)
258{
259 struct iblock_req *ibr = cmd->priv;
260 u8 status;
261
262 if (!atomic_dec_and_test(&ibr->pending))
263 return;
264
265 if (atomic_read(&ibr->ib_bio_err_cnt))
266 status = SAM_STAT_CHECK_CONDITION;
267 else
268 status = SAM_STAT_GOOD;
269
270 target_complete_cmd(cmd, status);
271 kfree(ibr);
272}
273
274static void iblock_bio_done(struct bio *bio, int err)
275{
276 struct se_cmd *cmd = bio->bi_private;
277 struct iblock_req *ibr = cmd->priv;
278
279 /*
280 * Set -EIO if !BIO_UPTODATE and the passed is still err=0
281 */
282 if (!test_bit(BIO_UPTODATE, &bio->bi_flags) && !err)
283 err = -EIO;
284
285 if (err != 0) {
286 pr_err("test_bit(BIO_UPTODATE) failed for bio: %p,"
287 " err: %d\n", bio, err);
288 /*
289 * Bump the ib_bio_err_cnt and release bio.
290 */
291 atomic_inc(&ibr->ib_bio_err_cnt);
292 smp_mb__after_atomic_inc();
293 }
294
295 bio_put(bio);
296
297 iblock_complete_cmd(cmd);
298}
299
300static struct bio *
301iblock_get_bio(struct se_cmd *cmd, sector_t lba, u32 sg_num)
302{
303 struct iblock_dev *ib_dev = IBLOCK_DEV(cmd->se_dev);
304 struct bio *bio;
305
306 /*
307 * Only allocate as many vector entries as the bio code allows us to,
308 * we'll loop later on until we have handled the whole request.
309 */
310 if (sg_num > BIO_MAX_PAGES)
311 sg_num = BIO_MAX_PAGES;
312
313 bio = bio_alloc_bioset(GFP_NOIO, sg_num, ib_dev->ibd_bio_set);
314 if (!bio) {
315 pr_err("Unable to allocate memory for bio\n");
316 return NULL;
317 }
318
319 bio->bi_bdev = ib_dev->ibd_bd;
320 bio->bi_private = cmd;
321 bio->bi_end_io = &iblock_bio_done;
322 bio->bi_sector = lba;
323
324 return bio;
325}
326
327static void iblock_submit_bios(struct bio_list *list, int rw)
328{
329 struct blk_plug plug;
330 struct bio *bio;
331
332 blk_start_plug(&plug);
333 while ((bio = bio_list_pop(list)))
334 submit_bio(rw, bio);
335 blk_finish_plug(&plug);
336}
337
Christoph Hellwigdf5fa692011-10-14 07:29:58 -0400338static void iblock_end_io_flush(struct bio *bio, int err)
339{
340 struct se_cmd *cmd = bio->bi_private;
341
342 if (err)
343 pr_err("IBLOCK: cache flush failed: %d\n", err);
344
Christoph Hellwig5787cac2012-04-24 00:25:06 -0400345 if (cmd) {
Christoph Hellwigde103c92012-11-06 12:24:09 -0800346 if (err)
Christoph Hellwig5787cac2012-04-24 00:25:06 -0400347 target_complete_cmd(cmd, SAM_STAT_CHECK_CONDITION);
Christoph Hellwigde103c92012-11-06 12:24:09 -0800348 else
Christoph Hellwig5787cac2012-04-24 00:25:06 -0400349 target_complete_cmd(cmd, SAM_STAT_GOOD);
Christoph Hellwig5787cac2012-04-24 00:25:06 -0400350 }
351
Christoph Hellwigdf5fa692011-10-14 07:29:58 -0400352 bio_put(bio);
353}
354
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800355/*
Christoph Hellwigdf5fa692011-10-14 07:29:58 -0400356 * Implement SYCHRONIZE CACHE. Note that we can't handle lba ranges and must
357 * always flush the whole cache.
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800358 */
Christoph Hellwigde103c92012-11-06 12:24:09 -0800359static sense_reason_t
360iblock_execute_sync_cache(struct se_cmd *cmd)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800361{
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400362 struct iblock_dev *ib_dev = IBLOCK_DEV(cmd->se_dev);
Andy Grovera1d8b492011-05-02 17:12:10 -0700363 int immed = (cmd->t_task_cdb[1] & 0x2);
Christoph Hellwigdf5fa692011-10-14 07:29:58 -0400364 struct bio *bio;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800365
366 /*
367 * If the Immediate bit is set, queue up the GOOD response
Christoph Hellwigdf5fa692011-10-14 07:29:58 -0400368 * for this SYNCHRONIZE_CACHE op.
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800369 */
370 if (immed)
Christoph Hellwig5787cac2012-04-24 00:25:06 -0400371 target_complete_cmd(cmd, SAM_STAT_GOOD);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800372
Christoph Hellwigdf5fa692011-10-14 07:29:58 -0400373 bio = bio_alloc(GFP_KERNEL, 0);
374 bio->bi_end_io = iblock_end_io_flush;
375 bio->bi_bdev = ib_dev->ibd_bd;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800376 if (!immed)
Christoph Hellwigdf5fa692011-10-14 07:29:58 -0400377 bio->bi_private = cmd;
378 submit_bio(WRITE_FLUSH, bio);
Christoph Hellwigad67f0d2012-06-17 18:40:53 -0400379 return 0;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800380}
381
Christoph Hellwigde103c92012-11-06 12:24:09 -0800382static sense_reason_t
Asias He86d71822013-02-25 14:03:46 +0800383iblock_do_unmap(struct se_cmd *cmd, void *priv,
Asias Hedbc21c52013-02-25 14:03:45 +0800384 sector_t lba, sector_t nolb)
385{
Asias He86d71822013-02-25 14:03:46 +0800386 struct block_device *bdev = priv;
Asias Hedbc21c52013-02-25 14:03:45 +0800387 int ret;
388
389 ret = blkdev_issue_discard(bdev, lba, nolb, GFP_KERNEL, 0);
390 if (ret < 0) {
391 pr_err("blkdev_issue_discard() failed: %d\n", ret);
392 return TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE;
393 }
394
395 return 0;
396}
397
398static sense_reason_t
Christoph Hellwigde103c92012-11-06 12:24:09 -0800399iblock_execute_unmap(struct se_cmd *cmd)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800400{
Asias He86d71822013-02-25 14:03:46 +0800401 struct block_device *bdev = IBLOCK_DEV(cmd->se_dev)->ibd_bd;
Christoph Hellwig14150a62012-06-17 18:40:55 -0400402
Asias He86d71822013-02-25 14:03:46 +0800403 return sbc_execute_unmap(cmd, iblock_do_unmap, bdev);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800404}
405
Christoph Hellwigde103c92012-11-06 12:24:09 -0800406static sense_reason_t
Nicholas Bellingerf6970ad2012-11-07 20:08:38 -0800407iblock_execute_write_same_unmap(struct se_cmd *cmd)
Christoph Hellwig6f974e82012-06-17 18:40:54 -0400408{
Asias Hedbc21c52013-02-25 14:03:45 +0800409 struct block_device *bdev = IBLOCK_DEV(cmd->se_dev)->ibd_bd;
410 sector_t lba = cmd->t_task_lba;
411 sector_t nolb = sbc_get_write_same_sectors(cmd);
412 int ret;
Christoph Hellwig6f974e82012-06-17 18:40:54 -0400413
Asias Hedbc21c52013-02-25 14:03:45 +0800414 ret = iblock_do_unmap(cmd, bdev, lba, nolb);
415 if (ret)
416 return ret;
Christoph Hellwig6f974e82012-06-17 18:40:54 -0400417
418 target_complete_cmd(cmd, GOOD);
419 return 0;
420}
421
Nicholas Bellingerf6970ad2012-11-07 20:08:38 -0800422static sense_reason_t
423iblock_execute_write_same(struct se_cmd *cmd)
424{
425 struct iblock_req *ibr;
426 struct scatterlist *sg;
427 struct bio *bio;
428 struct bio_list list;
429 sector_t block_lba = cmd->t_task_lba;
Roland Dreier972b29c82013-02-22 09:52:57 -0800430 sector_t sectors = sbc_get_write_same_sectors(cmd);
Nicholas Bellingerf6970ad2012-11-07 20:08:38 -0800431
432 sg = &cmd->t_data_sg[0];
433
434 if (cmd->t_data_nents > 1 ||
435 sg->length != cmd->se_dev->dev_attrib.block_size) {
436 pr_err("WRITE_SAME: Illegal SGL t_data_nents: %u length: %u"
437 " block_size: %u\n", cmd->t_data_nents, sg->length,
438 cmd->se_dev->dev_attrib.block_size);
439 return TCM_INVALID_CDB_FIELD;
440 }
441
442 ibr = kzalloc(sizeof(struct iblock_req), GFP_KERNEL);
443 if (!ibr)
444 goto fail;
445 cmd->priv = ibr;
446
447 bio = iblock_get_bio(cmd, block_lba, 1);
448 if (!bio)
449 goto fail_free_ibr;
450
451 bio_list_init(&list);
452 bio_list_add(&list, bio);
453
454 atomic_set(&ibr->pending, 1);
455
456 while (sectors) {
457 while (bio_add_page(bio, sg_page(sg), sg->length, sg->offset)
458 != sg->length) {
459
460 bio = iblock_get_bio(cmd, block_lba, 1);
461 if (!bio)
462 goto fail_put_bios;
463
464 atomic_inc(&ibr->pending);
465 bio_list_add(&list, bio);
466 }
467
468 /* Always in 512 byte units for Linux/Block */
469 block_lba += sg->length >> IBLOCK_LBA_SHIFT;
470 sectors -= 1;
471 }
472
473 iblock_submit_bios(&list, WRITE);
474 return 0;
475
476fail_put_bios:
477 while ((bio = bio_list_pop(&list)))
478 bio_put(bio);
479fail_free_ibr:
480 kfree(ibr);
481fail:
482 return TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE;
483}
484
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800485enum {
Andy Grover44bfd012012-06-07 10:38:51 -0700486 Opt_udev_path, Opt_readonly, Opt_force, Opt_err
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800487};
488
489static match_table_t tokens = {
490 {Opt_udev_path, "udev_path=%s"},
Andy Grover44bfd012012-06-07 10:38:51 -0700491 {Opt_readonly, "readonly=%d"},
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800492 {Opt_force, "force=%d"},
493 {Opt_err, NULL}
494};
495
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400496static ssize_t iblock_set_configfs_dev_params(struct se_device *dev,
497 const char *page, ssize_t count)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800498{
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400499 struct iblock_dev *ib_dev = IBLOCK_DEV(dev);
Jesper Juhl6d180252011-03-14 04:05:56 -0700500 char *orig, *ptr, *arg_p, *opts;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800501 substring_t args[MAX_OPT_ARGS];
Roland Dreier21bca312011-07-05 15:35:02 -0700502 int ret = 0, token;
Andy Grover44bfd012012-06-07 10:38:51 -0700503 unsigned long tmp_readonly;
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_udev_path:
518 if (ib_dev->ibd_bd) {
Andy Grover6708bb22011-06-08 10:36:43 -0700519 pr_err("Unable to set udev_path= while"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800520 " ib_dev->ibd_bd exists\n");
521 ret = -EEXIST;
522 goto out;
523 }
Nicholas Bellinger852b6ed2012-08-22 18:45:11 -0700524 if (match_strlcpy(ib_dev->ibd_udev_path, &args[0],
525 SE_UDEV_PATH_LEN) == 0) {
526 ret = -EINVAL;
Jesper Juhl6d180252011-03-14 04:05:56 -0700527 break;
528 }
Andy Grover6708bb22011-06-08 10:36:43 -0700529 pr_debug("IBLOCK: Referencing UDEV path: %s\n",
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800530 ib_dev->ibd_udev_path);
531 ib_dev->ibd_flags |= IBDF_HAS_UDEV_PATH;
532 break;
Andy Grover44bfd012012-06-07 10:38:51 -0700533 case Opt_readonly:
534 arg_p = match_strdup(&args[0]);
535 if (!arg_p) {
536 ret = -ENOMEM;
537 break;
538 }
539 ret = strict_strtoul(arg_p, 0, &tmp_readonly);
540 kfree(arg_p);
541 if (ret < 0) {
542 pr_err("strict_strtoul() failed for"
543 " readonly=\n");
544 goto out;
545 }
546 ib_dev->ibd_readonly = tmp_readonly;
547 pr_debug("IBLOCK: readonly: %d\n", ib_dev->ibd_readonly);
548 break;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800549 case Opt_force:
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800550 break;
551 default:
552 break;
553 }
554 }
555
556out:
557 kfree(orig);
558 return (!ret) ? count : ret;
559}
560
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400561static ssize_t iblock_show_configfs_dev_params(struct se_device *dev, char *b)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800562{
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400563 struct iblock_dev *ib_dev = IBLOCK_DEV(dev);
564 struct block_device *bd = ib_dev->ibd_bd;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800565 char buf[BDEVNAME_SIZE];
566 ssize_t bl = 0;
567
568 if (bd)
569 bl += sprintf(b + bl, "iBlock device: %s",
570 bdevname(bd, buf));
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400571 if (ib_dev->ibd_flags & IBDF_HAS_UDEV_PATH)
Andy Grover44bfd012012-06-07 10:38:51 -0700572 bl += sprintf(b + bl, " UDEV PATH: %s",
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400573 ib_dev->ibd_udev_path);
574 bl += sprintf(b + bl, " readonly: %d\n", ib_dev->ibd_readonly);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800575
576 bl += sprintf(b + bl, " ");
577 if (bd) {
578 bl += sprintf(b + bl, "Major: %d Minor: %d %s\n",
Roland Dreier21bca312011-07-05 15:35:02 -0700579 MAJOR(bd->bd_dev), MINOR(bd->bd_dev), (!bd->bd_contains) ?
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400580 "" : (bd->bd_holder == ib_dev) ?
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800581 "CLAIMED: IBLOCK" : "CLAIMED: OS");
582 } else {
Roland Dreier21bca312011-07-05 15:35:02 -0700583 bl += sprintf(b + bl, "Major: 0 Minor: 0\n");
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800584 }
585
586 return bl;
587}
588
Christoph Hellwigde103c92012-11-06 12:24:09 -0800589static sense_reason_t
590iblock_execute_rw(struct se_cmd *cmd)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800591{
Christoph Hellwig0c2ad7d2012-06-17 18:40:52 -0400592 struct scatterlist *sgl = cmd->t_data_sg;
593 u32 sgl_nents = cmd->t_data_nents;
594 enum dma_data_direction data_direction = cmd->data_direction;
Andy Grover5951146d2011-07-19 10:26:37 +0000595 struct se_device *dev = cmd->se_dev;
Christoph Hellwig5787cac2012-04-24 00:25:06 -0400596 struct iblock_req *ibr;
Christoph Hellwigdbbf3e92011-09-25 14:56:24 -0400597 struct bio *bio;
598 struct bio_list list;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800599 struct scatterlist *sg;
Christoph Hellwig5787cac2012-04-24 00:25:06 -0400600 u32 sg_num = sgl_nents;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800601 sector_t block_lba;
Christoph Hellwigd5b4a212011-12-21 14:20:31 -0500602 unsigned bio_cnt;
Nicholas Bellingerd0c8b252013-01-29 22:10:06 -0800603 int rw = 0;
Christoph Hellwig5787cac2012-04-24 00:25:06 -0400604 int i;
Christoph Hellwigdbbf3e92011-09-25 14:56:24 -0400605
Christoph Hellwig5787cac2012-04-24 00:25:06 -0400606 if (data_direction == DMA_TO_DEVICE) {
Nicholas Bellingerd0c8b252013-01-29 22:10:06 -0800607 struct iblock_dev *ib_dev = IBLOCK_DEV(dev);
608 struct request_queue *q = bdev_get_queue(ib_dev->ibd_bd);
Christoph Hellwigdbbf3e92011-09-25 14:56:24 -0400609 /*
Nicholas Bellingerd0c8b252013-01-29 22:10:06 -0800610 * Force writethrough using WRITE_FUA if a volatile write cache
611 * is not enabled, or if initiator set the Force Unit Access bit.
Christoph Hellwigdbbf3e92011-09-25 14:56:24 -0400612 */
Nicholas Bellingerd0c8b252013-01-29 22:10:06 -0800613 if (q->flush_flags & REQ_FUA) {
614 if (cmd->se_cmd_flags & SCF_FUA)
615 rw = WRITE_FUA;
616 else if (!(q->flush_flags & REQ_FLUSH))
617 rw = WRITE_FUA;
Nicholas Bellingerd2bdbee2013-05-14 23:41:04 -0700618 else
619 rw = WRITE;
Nicholas Bellingerd0c8b252013-01-29 22:10:06 -0800620 } else {
Christoph Hellwigdbbf3e92011-09-25 14:56:24 -0400621 rw = WRITE;
Nicholas Bellingerd0c8b252013-01-29 22:10:06 -0800622 }
Christoph Hellwigdbbf3e92011-09-25 14:56:24 -0400623 } else {
624 rw = READ;
625 }
626
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800627 /*
Christoph Hellwig5787cac2012-04-24 00:25:06 -0400628 * Convert the blocksize advertised to the initiator to the 512 byte
629 * units unconditionally used by the Linux block layer.
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800630 */
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400631 if (dev->dev_attrib.block_size == 4096)
Christoph Hellwig72a0e5e2012-04-23 11:35:30 -0400632 block_lba = (cmd->t_task_lba << 3);
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400633 else if (dev->dev_attrib.block_size == 2048)
Christoph Hellwig72a0e5e2012-04-23 11:35:30 -0400634 block_lba = (cmd->t_task_lba << 2);
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400635 else if (dev->dev_attrib.block_size == 1024)
Christoph Hellwig72a0e5e2012-04-23 11:35:30 -0400636 block_lba = (cmd->t_task_lba << 1);
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400637 else if (dev->dev_attrib.block_size == 512)
Christoph Hellwig72a0e5e2012-04-23 11:35:30 -0400638 block_lba = cmd->t_task_lba;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800639 else {
Andy Grover6708bb22011-06-08 10:36:43 -0700640 pr_err("Unsupported SCSI -> BLOCK LBA conversion:"
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400641 " %u\n", dev->dev_attrib.block_size);
Christoph Hellwigde103c92012-11-06 12:24:09 -0800642 return TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800643 }
644
Christoph Hellwig5787cac2012-04-24 00:25:06 -0400645 ibr = kzalloc(sizeof(struct iblock_req), GFP_KERNEL);
646 if (!ibr)
647 goto fail;
648 cmd->priv = ibr;
649
Paolo Bonzinie0de4452012-09-07 17:30:41 +0200650 if (!sgl_nents) {
651 atomic_set(&ibr->pending, 1);
652 iblock_complete_cmd(cmd);
653 return 0;
654 }
655
Christoph Hellwig5787cac2012-04-24 00:25:06 -0400656 bio = iblock_get_bio(cmd, block_lba, sgl_nents);
657 if (!bio)
658 goto fail_free_ibr;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800659
Christoph Hellwigdbbf3e92011-09-25 14:56:24 -0400660 bio_list_init(&list);
661 bio_list_add(&list, bio);
Christoph Hellwig5787cac2012-04-24 00:25:06 -0400662
663 atomic_set(&ibr->pending, 2);
Christoph Hellwigd5b4a212011-12-21 14:20:31 -0500664 bio_cnt = 1;
Christoph Hellwigdbbf3e92011-09-25 14:56:24 -0400665
Christoph Hellwig5787cac2012-04-24 00:25:06 -0400666 for_each_sg(sgl, sg, sgl_nents, i) {
Christoph Hellwigdbbf3e92011-09-25 14:56:24 -0400667 /*
668 * XXX: if the length the device accepts is shorter than the
669 * length of the S/G list entry this will cause and
670 * endless loop. Better hope no driver uses huge pages.
671 */
672 while (bio_add_page(bio, sg_page(sg), sg->length, sg->offset)
673 != sg->length) {
Christoph Hellwigd5b4a212011-12-21 14:20:31 -0500674 if (bio_cnt >= IBLOCK_MAX_BIO_PER_TASK) {
675 iblock_submit_bios(&list, rw);
676 bio_cnt = 0;
677 }
678
Christoph Hellwig5787cac2012-04-24 00:25:06 -0400679 bio = iblock_get_bio(cmd, block_lba, sg_num);
Andy Grover6708bb22011-06-08 10:36:43 -0700680 if (!bio)
Christoph Hellwig5787cac2012-04-24 00:25:06 -0400681 goto fail_put_bios;
682
683 atomic_inc(&ibr->pending);
Christoph Hellwigdbbf3e92011-09-25 14:56:24 -0400684 bio_list_add(&list, bio);
Christoph Hellwigd5b4a212011-12-21 14:20:31 -0500685 bio_cnt++;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800686 }
Christoph Hellwigdbbf3e92011-09-25 14:56:24 -0400687
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800688 /* Always in 512 byte units for Linux/Block */
689 block_lba += sg->length >> IBLOCK_LBA_SHIFT;
690 sg_num--;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800691 }
692
Christoph Hellwigd5b4a212011-12-21 14:20:31 -0500693 iblock_submit_bios(&list, rw);
Christoph Hellwig5787cac2012-04-24 00:25:06 -0400694 iblock_complete_cmd(cmd);
Nicholas Bellinger03e98c92011-11-04 02:36:16 -0700695 return 0;
Christoph Hellwigdbbf3e92011-09-25 14:56:24 -0400696
Christoph Hellwig5787cac2012-04-24 00:25:06 -0400697fail_put_bios:
Christoph Hellwigdbbf3e92011-09-25 14:56:24 -0400698 while ((bio = bio_list_pop(&list)))
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800699 bio_put(bio);
Christoph Hellwig5787cac2012-04-24 00:25:06 -0400700fail_free_ibr:
701 kfree(ibr);
Christoph Hellwig5787cac2012-04-24 00:25:06 -0400702fail:
Christoph Hellwigde103c92012-11-06 12:24:09 -0800703 return TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800704}
705
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800706static sector_t iblock_get_blocks(struct se_device *dev)
707{
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400708 struct iblock_dev *ib_dev = IBLOCK_DEV(dev);
709 struct block_device *bd = ib_dev->ibd_bd;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800710 struct request_queue *q = bdev_get_queue(bd);
711
712 return iblock_emulate_read_cap_with_block_size(dev, bd, q);
713}
714
Christoph Hellwig9e999a62012-10-07 10:55:50 -0400715static struct sbc_ops iblock_sbc_ops = {
Christoph Hellwig0c2ad7d2012-06-17 18:40:52 -0400716 .execute_rw = iblock_execute_rw,
Christoph Hellwigad67f0d2012-06-17 18:40:53 -0400717 .execute_sync_cache = iblock_execute_sync_cache,
Christoph Hellwig6f974e82012-06-17 18:40:54 -0400718 .execute_write_same = iblock_execute_write_same,
Nicholas Bellingerf6970ad2012-11-07 20:08:38 -0800719 .execute_write_same_unmap = iblock_execute_write_same_unmap,
Christoph Hellwig14150a62012-06-17 18:40:55 -0400720 .execute_unmap = iblock_execute_unmap,
Christoph Hellwig0c2ad7d2012-06-17 18:40:52 -0400721};
722
Christoph Hellwigde103c92012-11-06 12:24:09 -0800723static sense_reason_t
724iblock_parse_cdb(struct se_cmd *cmd)
Christoph Hellwig0c2ad7d2012-06-17 18:40:52 -0400725{
Christoph Hellwig9e999a62012-10-07 10:55:50 -0400726 return sbc_parse_cdb(cmd, &iblock_sbc_ops);
Christoph Hellwig0c2ad7d2012-06-17 18:40:52 -0400727}
728
Nicholas Bellingerd0c8b252013-01-29 22:10:06 -0800729bool iblock_get_write_cache(struct se_device *dev)
730{
731 struct iblock_dev *ib_dev = IBLOCK_DEV(dev);
732 struct block_device *bd = ib_dev->ibd_bd;
733 struct request_queue *q = bdev_get_queue(bd);
734
735 return q->flush_flags & REQ_FLUSH;
736}
737
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800738static struct se_subsystem_api iblock_template = {
739 .name = "iblock",
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400740 .inquiry_prod = "IBLOCK",
741 .inquiry_rev = IBLOCK_VERSION,
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800742 .owner = THIS_MODULE,
743 .transport_type = TRANSPORT_PLUGIN_VHBA_PDEV,
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800744 .attach_hba = iblock_attach_hba,
745 .detach_hba = iblock_detach_hba,
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400746 .alloc_device = iblock_alloc_device,
747 .configure_device = iblock_configure_device,
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800748 .free_device = iblock_free_device,
Christoph Hellwig0c2ad7d2012-06-17 18:40:52 -0400749 .parse_cdb = iblock_parse_cdb,
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800750 .set_configfs_dev_params = iblock_set_configfs_dev_params,
751 .show_configfs_dev_params = iblock_show_configfs_dev_params,
Christoph Hellwig6f23ac82012-10-07 10:55:53 -0400752 .get_device_type = sbc_get_device_type,
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800753 .get_blocks = iblock_get_blocks,
Nicholas Bellingerd0c8b252013-01-29 22:10:06 -0800754 .get_write_cache = iblock_get_write_cache,
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800755};
756
757static int __init iblock_module_init(void)
758{
759 return transport_subsystem_register(&iblock_template);
760}
761
Asias He63b91d52013-02-27 12:50:56 +0800762static void __exit iblock_module_exit(void)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800763{
764 transport_subsystem_release(&iblock_template);
765}
766
767MODULE_DESCRIPTION("TCM IBLOCK subsystem plugin");
768MODULE_AUTHOR("nab@Linux-iSCSI.org");
769MODULE_LICENSE("GPL");
770
771module_init(iblock_module_init);
772module_exit(iblock_module_exit);