crypto: algif_skcipher - Do not dereference ctx without socket lock
[deliverable/linux.git] / drivers / target / target_core_iblock.c
CommitLineData
c66ac9db
NB
1/*******************************************************************************
2 * Filename: target_core_iblock.c
3 *
4 * This file contains the Storage Engine <-> Linux BlockIO transport
5 * specific functions.
6 *
4c76251e 7 * (c) Copyright 2003-2013 Datera, Inc.
c66ac9db
NB
8 *
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
c66ac9db
NB
27#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>
c66ac9db
NB
34#include <linux/bio.h>
35#include <linux/genhd.h>
36#include <linux/file.h>
827509e3 37#include <linux/module.h>
ba929992 38#include <scsi/scsi_proto.h>
14150a6b 39#include <asm/unaligned.h>
c66ac9db
NB
40
41#include <target/target_core_base.h>
c4795fb2 42#include <target/target_core_backend.h>
c66ac9db
NB
43
44#include "target_core_iblock.h"
45
d5b4a21b
CH
46#define IBLOCK_MAX_BIO_PER_TASK 32 /* max # of bios to submit at a time */
47#define IBLOCK_BIO_POOL_SIZE 128
48
0fd97ccf
CH
49static inline struct iblock_dev *IBLOCK_DEV(struct se_device *dev)
50{
51 return container_of(dev, struct iblock_dev, dev);
52}
53
54
c66ac9db
NB
55static int iblock_attach_hba(struct se_hba *hba, u32 host_id)
56{
6708bb27 57 pr_debug("CORE_HBA[%d] - TCM iBlock HBA Driver %s on"
c66ac9db 58 " Generic Target Core Stack %s\n", hba->hba_id,
ce8dd25d 59 IBLOCK_VERSION, TARGET_CORE_VERSION);
c66ac9db
NB
60 return 0;
61}
62
63static void iblock_detach_hba(struct se_hba *hba)
64{
c66ac9db
NB
65}
66
0fd97ccf 67static struct se_device *iblock_alloc_device(struct se_hba *hba, const char *name)
c66ac9db
NB
68{
69 struct iblock_dev *ib_dev = NULL;
c66ac9db
NB
70
71 ib_dev = kzalloc(sizeof(struct iblock_dev), GFP_KERNEL);
6708bb27
AG
72 if (!ib_dev) {
73 pr_err("Unable to allocate struct iblock_dev\n");
c66ac9db
NB
74 return NULL;
75 }
c66ac9db 76
6708bb27 77 pr_debug( "IBLOCK: Allocated ib_dev for %s\n", name);
c66ac9db 78
0fd97ccf 79 return &ib_dev->dev;
c66ac9db
NB
80}
81
0fd97ccf 82static int iblock_configure_device(struct se_device *dev)
c66ac9db 83{
0fd97ccf 84 struct iblock_dev *ib_dev = IBLOCK_DEV(dev);
c66ac9db 85 struct request_queue *q;
0fd97ccf 86 struct block_device *bd = NULL;
ecebbf6c 87 struct blk_integrity *bi;
44bfd018 88 fmode_t mode;
0fd97ccf 89 int ret = -ENOMEM;
c66ac9db 90
0fd97ccf
CH
91 if (!(ib_dev->ibd_flags & IBDF_HAS_UDEV_PATH)) {
92 pr_err("Missing udev_path= parameters for IBLOCK\n");
93 return -EINVAL;
c66ac9db 94 }
d5b4a21b
CH
95
96 ib_dev->ibd_bio_set = bioset_create(IBLOCK_BIO_POOL_SIZE, 0);
6708bb27 97 if (!ib_dev->ibd_bio_set) {
0fd97ccf
CH
98 pr_err("IBLOCK: Unable to create bioset\n");
99 goto out;
c66ac9db 100 }
0fd97ccf 101
6708bb27 102 pr_debug( "IBLOCK: Claiming struct block_device: %s\n",
c66ac9db
NB
103 ib_dev->ibd_udev_path);
104
44bfd018
AG
105 mode = FMODE_READ|FMODE_EXCL;
106 if (!ib_dev->ibd_readonly)
107 mode |= FMODE_WRITE;
eeeb9522
NB
108 else
109 dev->dev_flags |= DF_READ_ONLY;
44bfd018
AG
110
111 bd = blkdev_get_by_path(ib_dev->ibd_udev_path, mode, ib_dev);
613640e4
NB
112 if (IS_ERR(bd)) {
113 ret = PTR_ERR(bd);
0fd97ccf 114 goto out_free_bioset;
613640e4 115 }
c66ac9db
NB
116 ib_dev->ibd_bd = bd;
117
0fd97ccf
CH
118 q = bdev_get_queue(bd);
119
120 dev->dev_attrib.hw_block_size = bdev_logical_block_size(bd);
046ba642 121 dev->dev_attrib.hw_max_sectors = queue_max_hw_sectors(q);
0fd97ccf 122 dev->dev_attrib.hw_queue_depth = q->nr_requests;
c66ac9db 123
c66ac9db
NB
124 /*
125 * Check if the underlying struct block_device request_queue supports
126 * the QUEUE_FLAG_DISCARD bit for UNMAP/WRITE_SAME in SCSI + TRIM
127 * in ATA and we need to set TPE=1
128 */
613640e4 129 if (blk_queue_discard(q)) {
0fd97ccf 130 dev->dev_attrib.max_unmap_lba_count =
c66ac9db 131 q->limits.max_discard_sectors;
0fd97ccf 132
c66ac9db
NB
133 /*
134 * Currently hardcoded to 1 in Linux/SCSI code..
135 */
0fd97ccf
CH
136 dev->dev_attrib.max_unmap_block_desc_count = 1;
137 dev->dev_attrib.unmap_granularity =
7347b5ff 138 q->limits.discard_granularity >> 9;
0fd97ccf 139 dev->dev_attrib.unmap_granularity_alignment =
c66ac9db 140 q->limits.discard_alignment;
e6f41633
JP
141 dev->dev_attrib.unmap_zeroes_data =
142 q->limits.discard_zeroes_data;
c66ac9db 143
6708bb27 144 pr_debug("IBLOCK: BLOCK Discard support available,"
c66ac9db
NB
145 " disabled by default\n");
146 }
f6970ad3
NB
147 /*
148 * Enable write same emulation for IBLOCK and use 0xFFFF as
149 * the smaller WRITE_SAME(10) only has a two-byte block count.
150 */
151 dev->dev_attrib.max_write_same_len = 0xFFFF;
c66ac9db 152
e22a7f07 153 if (blk_queue_nonrot(q))
0fd97ccf 154 dev->dev_attrib.is_nonrot = 1;
d0c8b259 155
ecebbf6c
NB
156 bi = bdev_get_integrity(bd);
157 if (bi) {
158 struct bio_set *bs = ib_dev->ibd_bio_set;
159
0f8087ec
MP
160 if (!strcmp(bi->profile->name, "T10-DIF-TYPE3-IP") ||
161 !strcmp(bi->profile->name, "T10-DIF-TYPE1-IP")) {
ecebbf6c 162 pr_err("IBLOCK export of blk_integrity: %s not"
0f8087ec 163 " supported\n", bi->profile->name);
ecebbf6c
NB
164 ret = -ENOSYS;
165 goto out_blkdev_put;
166 }
167
0f8087ec 168 if (!strcmp(bi->profile->name, "T10-DIF-TYPE3-CRC")) {
ecebbf6c 169 dev->dev_attrib.pi_prot_type = TARGET_DIF_TYPE3_PROT;
0f8087ec 170 } else if (!strcmp(bi->profile->name, "T10-DIF-TYPE1-CRC")) {
ecebbf6c
NB
171 dev->dev_attrib.pi_prot_type = TARGET_DIF_TYPE1_PROT;
172 }
173
174 if (dev->dev_attrib.pi_prot_type) {
175 if (bioset_integrity_create(bs, IBLOCK_BIO_POOL_SIZE) < 0) {
176 pr_err("Unable to allocate bioset for PI\n");
177 ret = -ENOMEM;
178 goto out_blkdev_put;
179 }
180 pr_debug("IBLOCK setup BIP bs->bio_integrity_pool: %p\n",
181 bs->bio_integrity_pool);
182 }
183 dev->dev_attrib.hw_pi_prot_type = dev->dev_attrib.pi_prot_type;
184 }
185
0fd97ccf 186 return 0;
c66ac9db 187
ecebbf6c
NB
188out_blkdev_put:
189 blkdev_put(ib_dev->ibd_bd, FMODE_WRITE|FMODE_READ|FMODE_EXCL);
0fd97ccf
CH
190out_free_bioset:
191 bioset_free(ib_dev->ibd_bio_set);
192 ib_dev->ibd_bio_set = NULL;
193out:
194 return ret;
c66ac9db
NB
195}
196
4cc987ea
NB
197static void iblock_dev_call_rcu(struct rcu_head *p)
198{
199 struct se_device *dev = container_of(p, struct se_device, rcu_head);
200 struct iblock_dev *ib_dev = IBLOCK_DEV(dev);
201
202 kfree(ib_dev);
203}
204
0fd97ccf 205static void iblock_free_device(struct se_device *dev)
c66ac9db 206{
0fd97ccf 207 struct iblock_dev *ib_dev = IBLOCK_DEV(dev);
c66ac9db 208
bc665524
NB
209 if (ib_dev->ibd_bd != NULL)
210 blkdev_put(ib_dev->ibd_bd, FMODE_WRITE|FMODE_READ|FMODE_EXCL);
d84287bc 211 if (ib_dev->ibd_bio_set != NULL)
bc665524 212 bioset_free(ib_dev->ibd_bio_set);
d84287bc 213
4cc987ea 214 call_rcu(&dev->rcu_head, iblock_dev_call_rcu);
c66ac9db
NB
215}
216
c66ac9db
NB
217static unsigned long long iblock_emulate_read_cap_with_block_size(
218 struct se_device *dev,
219 struct block_device *bd,
220 struct request_queue *q)
221{
222 unsigned long long blocks_long = (div_u64(i_size_read(bd->bd_inode),
223 bdev_logical_block_size(bd)) - 1);
224 u32 block_size = bdev_logical_block_size(bd);
225
0fd97ccf 226 if (block_size == dev->dev_attrib.block_size)
c66ac9db
NB
227 return blocks_long;
228
229 switch (block_size) {
230 case 4096:
0fd97ccf 231 switch (dev->dev_attrib.block_size) {
c66ac9db
NB
232 case 2048:
233 blocks_long <<= 1;
234 break;
235 case 1024:
236 blocks_long <<= 2;
237 break;
238 case 512:
239 blocks_long <<= 3;
240 default:
241 break;
242 }
243 break;
244 case 2048:
0fd97ccf 245 switch (dev->dev_attrib.block_size) {
c66ac9db
NB
246 case 4096:
247 blocks_long >>= 1;
248 break;
249 case 1024:
250 blocks_long <<= 1;
251 break;
252 case 512:
253 blocks_long <<= 2;
254 break;
255 default:
256 break;
257 }
258 break;
259 case 1024:
0fd97ccf 260 switch (dev->dev_attrib.block_size) {
c66ac9db
NB
261 case 4096:
262 blocks_long >>= 2;
263 break;
264 case 2048:
265 blocks_long >>= 1;
266 break;
267 case 512:
268 blocks_long <<= 1;
269 break;
270 default:
271 break;
272 }
273 break;
274 case 512:
0fd97ccf 275 switch (dev->dev_attrib.block_size) {
c66ac9db
NB
276 case 4096:
277 blocks_long >>= 3;
278 break;
279 case 2048:
280 blocks_long >>= 2;
281 break;
282 case 1024:
283 blocks_long >>= 1;
284 break;
285 default:
286 break;
287 }
288 break;
289 default:
290 break;
291 }
292
293 return blocks_long;
294}
295
3a41d85f
NB
296static void iblock_complete_cmd(struct se_cmd *cmd)
297{
298 struct iblock_req *ibr = cmd->priv;
299 u8 status;
300
301 if (!atomic_dec_and_test(&ibr->pending))
302 return;
303
304 if (atomic_read(&ibr->ib_bio_err_cnt))
305 status = SAM_STAT_CHECK_CONDITION;
306 else
307 status = SAM_STAT_GOOD;
308
309 target_complete_cmd(cmd, status);
310 kfree(ibr);
311}
312
4246a0b6 313static void iblock_bio_done(struct bio *bio)
3a41d85f
NB
314{
315 struct se_cmd *cmd = bio->bi_private;
316 struct iblock_req *ibr = cmd->priv;
317
4246a0b6
CH
318 if (bio->bi_error) {
319 pr_err("bio error: %p, err: %d\n", bio, bio->bi_error);
3a41d85f
NB
320 /*
321 * Bump the ib_bio_err_cnt and release bio.
322 */
323 atomic_inc(&ibr->ib_bio_err_cnt);
4e857c58 324 smp_mb__after_atomic();
3a41d85f
NB
325 }
326
327 bio_put(bio);
328
329 iblock_complete_cmd(cmd);
330}
331
332static struct bio *
333iblock_get_bio(struct se_cmd *cmd, sector_t lba, u32 sg_num)
334{
335 struct iblock_dev *ib_dev = IBLOCK_DEV(cmd->se_dev);
336 struct bio *bio;
337
338 /*
339 * Only allocate as many vector entries as the bio code allows us to,
340 * we'll loop later on until we have handled the whole request.
341 */
342 if (sg_num > BIO_MAX_PAGES)
343 sg_num = BIO_MAX_PAGES;
344
345 bio = bio_alloc_bioset(GFP_NOIO, sg_num, ib_dev->ibd_bio_set);
346 if (!bio) {
347 pr_err("Unable to allocate memory for bio\n");
348 return NULL;
349 }
350
351 bio->bi_bdev = ib_dev->ibd_bd;
352 bio->bi_private = cmd;
353 bio->bi_end_io = &iblock_bio_done;
4f024f37 354 bio->bi_iter.bi_sector = lba;
3a41d85f
NB
355
356 return bio;
357}
358
359static void iblock_submit_bios(struct bio_list *list, int rw)
360{
361 struct blk_plug plug;
362 struct bio *bio;
363
364 blk_start_plug(&plug);
365 while ((bio = bio_list_pop(list)))
366 submit_bio(rw, bio);
367 blk_finish_plug(&plug);
368}
369
4246a0b6 370static void iblock_end_io_flush(struct bio *bio)
df5fa691
CH
371{
372 struct se_cmd *cmd = bio->bi_private;
373
4246a0b6
CH
374 if (bio->bi_error)
375 pr_err("IBLOCK: cache flush failed: %d\n", bio->bi_error);
df5fa691 376
5787cacd 377 if (cmd) {
4246a0b6 378 if (bio->bi_error)
5787cacd 379 target_complete_cmd(cmd, SAM_STAT_CHECK_CONDITION);
de103c93 380 else
5787cacd 381 target_complete_cmd(cmd, SAM_STAT_GOOD);
5787cacd
CH
382 }
383
df5fa691
CH
384 bio_put(bio);
385}
386
c66ac9db 387/*
df5fa691
CH
388 * Implement SYCHRONIZE CACHE. Note that we can't handle lba ranges and must
389 * always flush the whole cache.
c66ac9db 390 */
de103c93
CH
391static sense_reason_t
392iblock_execute_sync_cache(struct se_cmd *cmd)
c66ac9db 393{
0fd97ccf 394 struct iblock_dev *ib_dev = IBLOCK_DEV(cmd->se_dev);
a1d8b49a 395 int immed = (cmd->t_task_cdb[1] & 0x2);
df5fa691 396 struct bio *bio;
c66ac9db
NB
397
398 /*
399 * If the Immediate bit is set, queue up the GOOD response
df5fa691 400 * for this SYNCHRONIZE_CACHE op.
c66ac9db
NB
401 */
402 if (immed)
5787cacd 403 target_complete_cmd(cmd, SAM_STAT_GOOD);
c66ac9db 404
df5fa691
CH
405 bio = bio_alloc(GFP_KERNEL, 0);
406 bio->bi_end_io = iblock_end_io_flush;
407 bio->bi_bdev = ib_dev->ibd_bd;
c66ac9db 408 if (!immed)
df5fa691
CH
409 bio->bi_private = cmd;
410 submit_bio(WRITE_FLUSH, bio);
ad67f0d9 411 return 0;
c66ac9db
NB
412}
413
dbc21c5a 414static sense_reason_t
62e46942 415iblock_execute_unmap(struct se_cmd *cmd, sector_t lba, sector_t nolb)
dbc21c5a 416{
62e46942 417 struct block_device *bdev = IBLOCK_DEV(cmd->se_dev)->ibd_bd;
dbc21c5a
AH
418 int ret;
419
420 ret = blkdev_issue_discard(bdev, lba, nolb, GFP_KERNEL, 0);
421 if (ret < 0) {
422 pr_err("blkdev_issue_discard() failed: %d\n", ret);
423 return TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE;
424 }
425
426 return 0;
427}
428
f6970ad3
NB
429static sense_reason_t
430iblock_execute_write_same(struct se_cmd *cmd)
431{
432 struct iblock_req *ibr;
433 struct scatterlist *sg;
434 struct bio *bio;
435 struct bio_list list;
436 sector_t block_lba = cmd->t_task_lba;
972b29c8 437 sector_t sectors = sbc_get_write_same_sectors(cmd);
f6970ad3 438
afd73f1b
NB
439 if (cmd->prot_op) {
440 pr_err("WRITE_SAME: Protection information with IBLOCK"
441 " backends not supported\n");
442 return TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE;
443 }
f6970ad3
NB
444 sg = &cmd->t_data_sg[0];
445
446 if (cmd->t_data_nents > 1 ||
447 sg->length != cmd->se_dev->dev_attrib.block_size) {
448 pr_err("WRITE_SAME: Illegal SGL t_data_nents: %u length: %u"
449 " block_size: %u\n", cmd->t_data_nents, sg->length,
450 cmd->se_dev->dev_attrib.block_size);
451 return TCM_INVALID_CDB_FIELD;
452 }
453
454 ibr = kzalloc(sizeof(struct iblock_req), GFP_KERNEL);
455 if (!ibr)
456 goto fail;
457 cmd->priv = ibr;
458
459 bio = iblock_get_bio(cmd, block_lba, 1);
460 if (!bio)
461 goto fail_free_ibr;
462
463 bio_list_init(&list);
464 bio_list_add(&list, bio);
465
466 atomic_set(&ibr->pending, 1);
467
468 while (sectors) {
469 while (bio_add_page(bio, sg_page(sg), sg->length, sg->offset)
470 != sg->length) {
471
472 bio = iblock_get_bio(cmd, block_lba, 1);
473 if (!bio)
474 goto fail_put_bios;
475
476 atomic_inc(&ibr->pending);
477 bio_list_add(&list, bio);
478 }
479
480 /* Always in 512 byte units for Linux/Block */
481 block_lba += sg->length >> IBLOCK_LBA_SHIFT;
482 sectors -= 1;
483 }
484
485 iblock_submit_bios(&list, WRITE);
486 return 0;
487
488fail_put_bios:
489 while ((bio = bio_list_pop(&list)))
490 bio_put(bio);
491fail_free_ibr:
492 kfree(ibr);
493fail:
494 return TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE;
495}
496
c66ac9db 497enum {
44bfd018 498 Opt_udev_path, Opt_readonly, Opt_force, Opt_err
c66ac9db
NB
499};
500
501static match_table_t tokens = {
502 {Opt_udev_path, "udev_path=%s"},
44bfd018 503 {Opt_readonly, "readonly=%d"},
c66ac9db
NB
504 {Opt_force, "force=%d"},
505 {Opt_err, NULL}
506};
507
0fd97ccf
CH
508static ssize_t iblock_set_configfs_dev_params(struct se_device *dev,
509 const char *page, ssize_t count)
c66ac9db 510{
0fd97ccf 511 struct iblock_dev *ib_dev = IBLOCK_DEV(dev);
6d180253 512 char *orig, *ptr, *arg_p, *opts;
c66ac9db 513 substring_t args[MAX_OPT_ARGS];
21bca31c 514 int ret = 0, token;
44bfd018 515 unsigned long tmp_readonly;
c66ac9db
NB
516
517 opts = kstrdup(page, GFP_KERNEL);
518 if (!opts)
519 return -ENOMEM;
520
521 orig = opts;
522
90c161b6 523 while ((ptr = strsep(&opts, ",\n")) != NULL) {
c66ac9db
NB
524 if (!*ptr)
525 continue;
526
527 token = match_token(ptr, tokens, args);
528 switch (token) {
529 case Opt_udev_path:
530 if (ib_dev->ibd_bd) {
6708bb27 531 pr_err("Unable to set udev_path= while"
c66ac9db
NB
532 " ib_dev->ibd_bd exists\n");
533 ret = -EEXIST;
534 goto out;
535 }
852b6ed1
NB
536 if (match_strlcpy(ib_dev->ibd_udev_path, &args[0],
537 SE_UDEV_PATH_LEN) == 0) {
538 ret = -EINVAL;
6d180253
JJ
539 break;
540 }
6708bb27 541 pr_debug("IBLOCK: Referencing UDEV path: %s\n",
c66ac9db
NB
542 ib_dev->ibd_udev_path);
543 ib_dev->ibd_flags |= IBDF_HAS_UDEV_PATH;
544 break;
44bfd018
AG
545 case Opt_readonly:
546 arg_p = match_strdup(&args[0]);
547 if (!arg_p) {
548 ret = -ENOMEM;
549 break;
550 }
57103d7f 551 ret = kstrtoul(arg_p, 0, &tmp_readonly);
44bfd018
AG
552 kfree(arg_p);
553 if (ret < 0) {
57103d7f 554 pr_err("kstrtoul() failed for"
44bfd018
AG
555 " readonly=\n");
556 goto out;
557 }
558 ib_dev->ibd_readonly = tmp_readonly;
559 pr_debug("IBLOCK: readonly: %d\n", ib_dev->ibd_readonly);
560 break;
c66ac9db 561 case Opt_force:
c66ac9db
NB
562 break;
563 default:
564 break;
565 }
566 }
567
568out:
569 kfree(orig);
570 return (!ret) ? count : ret;
571}
572
0fd97ccf 573static ssize_t iblock_show_configfs_dev_params(struct se_device *dev, char *b)
c66ac9db 574{
0fd97ccf
CH
575 struct iblock_dev *ib_dev = IBLOCK_DEV(dev);
576 struct block_device *bd = ib_dev->ibd_bd;
c66ac9db
NB
577 char buf[BDEVNAME_SIZE];
578 ssize_t bl = 0;
579
580 if (bd)
581 bl += sprintf(b + bl, "iBlock device: %s",
582 bdevname(bd, buf));
0fd97ccf 583 if (ib_dev->ibd_flags & IBDF_HAS_UDEV_PATH)
44bfd018 584 bl += sprintf(b + bl, " UDEV PATH: %s",
0fd97ccf
CH
585 ib_dev->ibd_udev_path);
586 bl += sprintf(b + bl, " readonly: %d\n", ib_dev->ibd_readonly);
c66ac9db
NB
587
588 bl += sprintf(b + bl, " ");
589 if (bd) {
590 bl += sprintf(b + bl, "Major: %d Minor: %d %s\n",
21bca31c 591 MAJOR(bd->bd_dev), MINOR(bd->bd_dev), (!bd->bd_contains) ?
0fd97ccf 592 "" : (bd->bd_holder == ib_dev) ?
c66ac9db
NB
593 "CLAIMED: IBLOCK" : "CLAIMED: OS");
594 } else {
21bca31c 595 bl += sprintf(b + bl, "Major: 0 Minor: 0\n");
c66ac9db
NB
596 }
597
598 return bl;
599}
600
ecebbf6c
NB
601static int
602iblock_alloc_bip(struct se_cmd *cmd, struct bio *bio)
603{
604 struct se_device *dev = cmd->se_dev;
605 struct blk_integrity *bi;
606 struct bio_integrity_payload *bip;
607 struct iblock_dev *ib_dev = IBLOCK_DEV(dev);
608 struct scatterlist *sg;
609 int i, rc;
610
611 bi = bdev_get_integrity(ib_dev->ibd_bd);
612 if (!bi) {
613 pr_err("Unable to locate bio_integrity\n");
614 return -ENODEV;
615 }
616
617 bip = bio_integrity_alloc(bio, GFP_NOIO, cmd->t_prot_nents);
06c1e390 618 if (IS_ERR(bip)) {
ecebbf6c 619 pr_err("Unable to allocate bio_integrity_payload\n");
06c1e390 620 return PTR_ERR(bip);
ecebbf6c
NB
621 }
622
4e13c5d0 623 bip->bip_iter.bi_size = (cmd->data_length / dev->dev_attrib.block_size) *
ecebbf6c 624 dev->prot_length;
4e13c5d0 625 bip->bip_iter.bi_sector = bio->bi_iter.bi_sector;
ecebbf6c 626
4e13c5d0
LT
627 pr_debug("IBLOCK BIP Size: %u Sector: %llu\n", bip->bip_iter.bi_size,
628 (unsigned long long)bip->bip_iter.bi_sector);
ecebbf6c
NB
629
630 for_each_sg(cmd->t_prot_sg, sg, cmd->t_prot_nents, i) {
631
632 rc = bio_integrity_add_page(bio, sg_page(sg), sg->length,
633 sg->offset);
634 if (rc != sg->length) {
635 pr_err("bio_integrity_add_page() failed; %d\n", rc);
636 return -ENOMEM;
637 }
638
639 pr_debug("Added bio integrity page: %p length: %d offset; %d\n",
640 sg_page(sg), sg->length, sg->offset);
641 }
642
643 return 0;
644}
645
de103c93 646static sense_reason_t
a82a9538
NB
647iblock_execute_rw(struct se_cmd *cmd, struct scatterlist *sgl, u32 sgl_nents,
648 enum dma_data_direction data_direction)
c66ac9db 649{
5951146d 650 struct se_device *dev = cmd->se_dev;
5787cacd 651 struct iblock_req *ibr;
ecebbf6c 652 struct bio *bio, *bio_start;
dbbf3e94 653 struct bio_list list;
c66ac9db 654 struct scatterlist *sg;
5787cacd 655 u32 sg_num = sgl_nents;
c66ac9db 656 sector_t block_lba;
d5b4a21b 657 unsigned bio_cnt;
d0c8b259 658 int rw = 0;
5787cacd 659 int i;
dbbf3e94 660
5787cacd 661 if (data_direction == DMA_TO_DEVICE) {
d0c8b259
NB
662 struct iblock_dev *ib_dev = IBLOCK_DEV(dev);
663 struct request_queue *q = bdev_get_queue(ib_dev->ibd_bd);
dbbf3e94 664 /*
d0c8b259
NB
665 * Force writethrough using WRITE_FUA if a volatile write cache
666 * is not enabled, or if initiator set the Force Unit Access bit.
dbbf3e94 667 */
d0c8b259
NB
668 if (q->flush_flags & REQ_FUA) {
669 if (cmd->se_cmd_flags & SCF_FUA)
670 rw = WRITE_FUA;
671 else if (!(q->flush_flags & REQ_FLUSH))
672 rw = WRITE_FUA;
d2bdbee0
NB
673 else
674 rw = WRITE;
d0c8b259 675 } else {
dbbf3e94 676 rw = WRITE;
d0c8b259 677 }
dbbf3e94
CH
678 } else {
679 rw = READ;
680 }
681
c66ac9db 682 /*
5787cacd
CH
683 * Convert the blocksize advertised to the initiator to the 512 byte
684 * units unconditionally used by the Linux block layer.
c66ac9db 685 */
0fd97ccf 686 if (dev->dev_attrib.block_size == 4096)
72a0e5e2 687 block_lba = (cmd->t_task_lba << 3);
0fd97ccf 688 else if (dev->dev_attrib.block_size == 2048)
72a0e5e2 689 block_lba = (cmd->t_task_lba << 2);
0fd97ccf 690 else if (dev->dev_attrib.block_size == 1024)
72a0e5e2 691 block_lba = (cmd->t_task_lba << 1);
0fd97ccf 692 else if (dev->dev_attrib.block_size == 512)
72a0e5e2 693 block_lba = cmd->t_task_lba;
c66ac9db 694 else {
6708bb27 695 pr_err("Unsupported SCSI -> BLOCK LBA conversion:"
0fd97ccf 696 " %u\n", dev->dev_attrib.block_size);
de103c93 697 return TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE;
c66ac9db
NB
698 }
699
5787cacd
CH
700 ibr = kzalloc(sizeof(struct iblock_req), GFP_KERNEL);
701 if (!ibr)
702 goto fail;
703 cmd->priv = ibr;
704
e0de4457
PB
705 if (!sgl_nents) {
706 atomic_set(&ibr->pending, 1);
707 iblock_complete_cmd(cmd);
708 return 0;
709 }
710
5787cacd
CH
711 bio = iblock_get_bio(cmd, block_lba, sgl_nents);
712 if (!bio)
713 goto fail_free_ibr;
dbbf3e94 714
ecebbf6c 715 bio_start = bio;
dbbf3e94
CH
716 bio_list_init(&list);
717 bio_list_add(&list, bio);
5787cacd
CH
718
719 atomic_set(&ibr->pending, 2);
d5b4a21b 720 bio_cnt = 1;
c66ac9db 721
5787cacd 722 for_each_sg(sgl, sg, sgl_nents, i) {
dbbf3e94
CH
723 /*
724 * XXX: if the length the device accepts is shorter than the
725 * length of the S/G list entry this will cause and
726 * endless loop. Better hope no driver uses huge pages.
727 */
728 while (bio_add_page(bio, sg_page(sg), sg->length, sg->offset)
729 != sg->length) {
d5b4a21b
CH
730 if (bio_cnt >= IBLOCK_MAX_BIO_PER_TASK) {
731 iblock_submit_bios(&list, rw);
732 bio_cnt = 0;
733 }
734
5787cacd 735 bio = iblock_get_bio(cmd, block_lba, sg_num);
6708bb27 736 if (!bio)
5787cacd
CH
737 goto fail_put_bios;
738
739 atomic_inc(&ibr->pending);
dbbf3e94 740 bio_list_add(&list, bio);
d5b4a21b 741 bio_cnt++;
c66ac9db 742 }
dbbf3e94 743
c66ac9db
NB
744 /* Always in 512 byte units for Linux/Block */
745 block_lba += sg->length >> IBLOCK_LBA_SHIFT;
746 sg_num--;
c66ac9db
NB
747 }
748
6f16ec43 749 if (cmd->prot_type && dev->dev_attrib.pi_prot_type) {
ecebbf6c
NB
750 int rc = iblock_alloc_bip(cmd, bio_start);
751 if (rc)
752 goto fail_put_bios;
753 }
754
d5b4a21b 755 iblock_submit_bios(&list, rw);
5787cacd 756 iblock_complete_cmd(cmd);
03e98c9e 757 return 0;
dbbf3e94 758
5787cacd 759fail_put_bios:
dbbf3e94 760 while ((bio = bio_list_pop(&list)))
c66ac9db 761 bio_put(bio);
5787cacd
CH
762fail_free_ibr:
763 kfree(ibr);
5787cacd 764fail:
de103c93 765 return TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE;
c66ac9db
NB
766}
767
c66ac9db
NB
768static sector_t iblock_get_blocks(struct se_device *dev)
769{
0fd97ccf
CH
770 struct iblock_dev *ib_dev = IBLOCK_DEV(dev);
771 struct block_device *bd = ib_dev->ibd_bd;
c66ac9db
NB
772 struct request_queue *q = bdev_get_queue(bd);
773
774 return iblock_emulate_read_cap_with_block_size(dev, bd, q);
775}
776
7f7caf6a
AG
777static sector_t iblock_get_alignment_offset_lbas(struct se_device *dev)
778{
779 struct iblock_dev *ib_dev = IBLOCK_DEV(dev);
780 struct block_device *bd = ib_dev->ibd_bd;
781 int ret;
782
783 ret = bdev_alignment_offset(bd);
784 if (ret == -1)
785 return 0;
786
787 /* convert offset-bytes to offset-lbas */
788 return ret / bdev_logical_block_size(bd);
789}
790
791static unsigned int iblock_get_lbppbe(struct se_device *dev)
792{
793 struct iblock_dev *ib_dev = IBLOCK_DEV(dev);
794 struct block_device *bd = ib_dev->ibd_bd;
795 int logs_per_phys = bdev_physical_block_size(bd) / bdev_logical_block_size(bd);
796
797 return ilog2(logs_per_phys);
798}
799
800static unsigned int iblock_get_io_min(struct se_device *dev)
801{
802 struct iblock_dev *ib_dev = IBLOCK_DEV(dev);
803 struct block_device *bd = ib_dev->ibd_bd;
804
805 return bdev_io_min(bd);
806}
807
808static unsigned int iblock_get_io_opt(struct se_device *dev)
809{
810 struct iblock_dev *ib_dev = IBLOCK_DEV(dev);
811 struct block_device *bd = ib_dev->ibd_bd;
812
813 return bdev_io_opt(bd);
814}
815
9e999a6c 816static struct sbc_ops iblock_sbc_ops = {
0c2ad7d1 817 .execute_rw = iblock_execute_rw,
ad67f0d9 818 .execute_sync_cache = iblock_execute_sync_cache,
6f974e8c 819 .execute_write_same = iblock_execute_write_same,
14150a6b 820 .execute_unmap = iblock_execute_unmap,
0c2ad7d1
CH
821};
822
de103c93
CH
823static sense_reason_t
824iblock_parse_cdb(struct se_cmd *cmd)
0c2ad7d1 825{
9e999a6c 826 return sbc_parse_cdb(cmd, &iblock_sbc_ops);
0c2ad7d1
CH
827}
828
452e2010 829static bool iblock_get_write_cache(struct se_device *dev)
d0c8b259
NB
830{
831 struct iblock_dev *ib_dev = IBLOCK_DEV(dev);
832 struct block_device *bd = ib_dev->ibd_bd;
833 struct request_queue *q = bdev_get_queue(bd);
834
835 return q->flush_flags & REQ_FLUSH;
836}
837
0a06d430 838static const struct target_backend_ops iblock_ops = {
c66ac9db 839 .name = "iblock",
0fd97ccf
CH
840 .inquiry_prod = "IBLOCK",
841 .inquiry_rev = IBLOCK_VERSION,
c66ac9db 842 .owner = THIS_MODULE,
c66ac9db
NB
843 .attach_hba = iblock_attach_hba,
844 .detach_hba = iblock_detach_hba,
0fd97ccf
CH
845 .alloc_device = iblock_alloc_device,
846 .configure_device = iblock_configure_device,
c66ac9db 847 .free_device = iblock_free_device,
0c2ad7d1 848 .parse_cdb = iblock_parse_cdb,
c66ac9db
NB
849 .set_configfs_dev_params = iblock_set_configfs_dev_params,
850 .show_configfs_dev_params = iblock_show_configfs_dev_params,
6f23ac8a 851 .get_device_type = sbc_get_device_type,
c66ac9db 852 .get_blocks = iblock_get_blocks,
7f7caf6a
AG
853 .get_alignment_offset_lbas = iblock_get_alignment_offset_lbas,
854 .get_lbppbe = iblock_get_lbppbe,
855 .get_io_min = iblock_get_io_min,
856 .get_io_opt = iblock_get_io_opt,
d0c8b259 857 .get_write_cache = iblock_get_write_cache,
5873c4d1 858 .tb_dev_attrib_attrs = sbc_attrib_attrs,
c66ac9db
NB
859};
860
861static int __init iblock_module_init(void)
862{
0a06d430 863 return transport_backend_register(&iblock_ops);
c66ac9db
NB
864}
865
63b91d5a 866static void __exit iblock_module_exit(void)
c66ac9db 867{
0a06d430 868 target_backend_unregister(&iblock_ops);
c66ac9db
NB
869}
870
871MODULE_DESCRIPTION("TCM IBLOCK subsystem plugin");
872MODULE_AUTHOR("nab@Linux-iSCSI.org");
873MODULE_LICENSE("GPL");
874
875module_init(iblock_module_init);
876module_exit(iblock_module_exit);
This page took 0.657844 seconds and 5 git commands to generate.