Merge tag 'fbdev-v5.2' of git://github.com/bzolnier/linux
[linux-2.6-block.git] / drivers / target / target_core_pscsi.c
CommitLineData
c66ac9db
NB
1/*******************************************************************************
2 * Filename: target_core_pscsi.c
3 *
4 * This file contains the generic target mode <-> Linux SCSI subsystem plugin.
5 *
4c76251e 6 * (c) Copyright 2003-2013 Datera, Inc.
c66ac9db
NB
7 *
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
c66ac9db
NB
26#include <linux/string.h>
27#include <linux/parser.h>
28#include <linux/timer.h>
29#include <linux/blkdev.h>
30#include <linux/blk_types.h>
31#include <linux/slab.h>
32#include <linux/spinlock.h>
c66ac9db
NB
33#include <linux/genhd.h>
34#include <linux/cdrom.h>
d6e0175c 35#include <linux/ratelimit.h>
827509e3 36#include <linux/module.h>
d6e0175c
CH
37#include <asm/unaligned.h>
38
c66ac9db 39#include <scsi/scsi_device.h>
c66ac9db 40#include <scsi/scsi_host.h>
e66ecd50 41#include <scsi/scsi_tcq.h>
c66ac9db
NB
42
43#include <target/target_core_base.h>
c4795fb2 44#include <target/target_core_backend.h>
c66ac9db 45
d6e0175c 46#include "target_core_alua.h"
29a05dee 47#include "target_core_internal.h"
c66ac9db
NB
48#include "target_core_pscsi.h"
49
50#define ISPRINT(a) ((a >= ' ') && (a <= '~'))
51
0fd97ccf
CH
52static inline struct pscsi_dev_virt *PSCSI_DEV(struct se_device *dev)
53{
54 return container_of(dev, struct pscsi_dev_virt, dev);
55}
56
de103c93 57static sense_reason_t pscsi_execute_cmd(struct se_cmd *cmd);
2a842aca 58static void pscsi_req_done(struct request *, blk_status_t);
c66ac9db 59
c66ac9db
NB
60/* pscsi_attach_hba():
61 *
62 * pscsi_get_sh() used scsi_host_lookup() to locate struct Scsi_Host.
63 * from the passed SCSI Host ID.
64 */
65static int pscsi_attach_hba(struct se_hba *hba, u32 host_id)
66{
c66ac9db
NB
67 struct pscsi_hba_virt *phv;
68
69 phv = kzalloc(sizeof(struct pscsi_hba_virt), GFP_KERNEL);
6708bb27
AG
70 if (!phv) {
71 pr_err("Unable to allocate struct pscsi_hba_virt\n");
e3d6f909 72 return -ENOMEM;
c66ac9db
NB
73 }
74 phv->phv_host_id = host_id;
e6a8a41a 75 phv->phv_mode = PHV_VIRTUAL_HOST_ID;
c66ac9db 76
5951146d 77 hba->hba_ptr = phv;
c66ac9db 78
6708bb27 79 pr_debug("CORE_HBA[%d] - TCM SCSI HBA Driver %s on"
c66ac9db 80 " Generic Target Core Stack %s\n", hba->hba_id,
ce8dd25d 81 PSCSI_VERSION, TARGET_CORE_VERSION);
6708bb27 82 pr_debug("CORE_HBA[%d] - Attached SCSI HBA to Generic\n",
e3d6f909 83 hba->hba_id);
c66ac9db
NB
84
85 return 0;
86}
87
88static void pscsi_detach_hba(struct se_hba *hba)
89{
90 struct pscsi_hba_virt *phv = hba->hba_ptr;
91 struct Scsi_Host *scsi_host = phv->phv_lld_host;
92
93 if (scsi_host) {
94 scsi_host_put(scsi_host);
95
6708bb27 96 pr_debug("CORE_HBA[%d] - Detached SCSI HBA: %s from"
c66ac9db
NB
97 " Generic Target Core\n", hba->hba_id,
98 (scsi_host->hostt->name) ? (scsi_host->hostt->name) :
99 "Unknown");
100 } else
6708bb27 101 pr_debug("CORE_HBA[%d] - Detached Virtual SCSI HBA"
c66ac9db
NB
102 " from Generic Target Core\n", hba->hba_id);
103
104 kfree(phv);
105 hba->hba_ptr = NULL;
106}
107
108static int pscsi_pmode_enable_hba(struct se_hba *hba, unsigned long mode_flag)
109{
8359cf43 110 struct pscsi_hba_virt *phv = hba->hba_ptr;
c66ac9db 111 struct Scsi_Host *sh = phv->phv_lld_host;
c66ac9db
NB
112 /*
113 * Release the struct Scsi_Host
114 */
6708bb27
AG
115 if (!mode_flag) {
116 if (!sh)
c66ac9db
NB
117 return 0;
118
119 phv->phv_lld_host = NULL;
e6a8a41a 120 phv->phv_mode = PHV_VIRTUAL_HOST_ID;
c66ac9db 121
6708bb27 122 pr_debug("CORE_HBA[%d] - Disabled pSCSI HBA Passthrough"
c66ac9db
NB
123 " %s\n", hba->hba_id, (sh->hostt->name) ?
124 (sh->hostt->name) : "Unknown");
125
126 scsi_host_put(sh);
127 return 0;
128 }
129 /*
130 * Otherwise, locate struct Scsi_Host from the original passed
131 * pSCSI Host ID and enable for phba mode
132 */
e3d6f909 133 sh = scsi_host_lookup(phv->phv_host_id);
58932e96 134 if (!sh) {
6708bb27 135 pr_err("pSCSI: Unable to locate SCSI Host for"
c66ac9db 136 " phv_host_id: %d\n", phv->phv_host_id);
58932e96 137 return -EINVAL;
c66ac9db 138 }
c66ac9db
NB
139
140 phv->phv_lld_host = sh;
141 phv->phv_mode = PHV_LLD_SCSI_HOST_NO;
142
6708bb27 143 pr_debug("CORE_HBA[%d] - Enabled pSCSI HBA Passthrough %s\n",
c66ac9db
NB
144 hba->hba_id, (sh->hostt->name) ? (sh->hostt->name) : "Unknown");
145
146 return 1;
147}
148
149static void pscsi_tape_read_blocksize(struct se_device *dev,
150 struct scsi_device *sdev)
151{
152 unsigned char cdb[MAX_COMMAND_SIZE], *buf;
153 int ret;
154
155 buf = kzalloc(12, GFP_KERNEL);
156 if (!buf)
a04e54f2 157 goto out_free;
c66ac9db
NB
158
159 memset(cdb, 0, MAX_COMMAND_SIZE);
160 cdb[0] = MODE_SENSE;
161 cdb[4] = 0x0c; /* 12 bytes */
162
163 ret = scsi_execute_req(sdev, cdb, DMA_FROM_DEVICE, buf, 12, NULL,
164 HZ, 1, NULL);
165 if (ret)
166 goto out_free;
167
168 /*
169 * If MODE_SENSE still returns zero, set the default value to 1024.
170 */
a85d667e 171 sdev->sector_size = get_unaligned_be24(&buf[9]);
a04e54f2 172out_free:
c66ac9db
NB
173 if (!sdev->sector_size)
174 sdev->sector_size = 1024;
a04e54f2 175
c66ac9db
NB
176 kfree(buf);
177}
178
179static void
180pscsi_set_inquiry_info(struct scsi_device *sdev, struct t10_wwn *wwn)
181{
c66ac9db
NB
182 if (sdev->inquiry_len < INQUIRY_LEN)
183 return;
c66ac9db 184 /*
b2da4abf 185 * Use sdev->inquiry data from drivers/scsi/scsi_scan.c:scsi_add_lun()
c66ac9db 186 */
b2da4abf
DD
187 BUILD_BUG_ON(sizeof(wwn->vendor) != INQUIRY_VENDOR_LEN + 1);
188 snprintf(wwn->vendor, sizeof(wwn->vendor),
189 "%." __stringify(INQUIRY_VENDOR_LEN) "s", sdev->vendor);
190 BUILD_BUG_ON(sizeof(wwn->model) != INQUIRY_MODEL_LEN + 1);
191 snprintf(wwn->model, sizeof(wwn->model),
192 "%." __stringify(INQUIRY_MODEL_LEN) "s", sdev->model);
193 BUILD_BUG_ON(sizeof(wwn->revision) != INQUIRY_REVISION_LEN + 1);
194 snprintf(wwn->revision, sizeof(wwn->revision),
195 "%." __stringify(INQUIRY_REVISION_LEN) "s", sdev->rev);
c66ac9db
NB
196}
197
198static int
199pscsi_get_inquiry_vpd_serial(struct scsi_device *sdev, struct t10_wwn *wwn)
200{
201 unsigned char cdb[MAX_COMMAND_SIZE], *buf;
202 int ret;
203
204 buf = kzalloc(INQUIRY_VPD_SERIAL_LEN, GFP_KERNEL);
205 if (!buf)
e3d6f909 206 return -ENOMEM;
c66ac9db
NB
207
208 memset(cdb, 0, MAX_COMMAND_SIZE);
209 cdb[0] = INQUIRY;
210 cdb[1] = 0x01; /* Query VPD */
211 cdb[2] = 0x80; /* Unit Serial Number */
a85d667e 212 put_unaligned_be16(INQUIRY_VPD_SERIAL_LEN, &cdb[3]);
c66ac9db
NB
213
214 ret = scsi_execute_req(sdev, cdb, DMA_FROM_DEVICE, buf,
215 INQUIRY_VPD_SERIAL_LEN, NULL, HZ, 1, NULL);
216 if (ret)
217 goto out_free;
218
219 snprintf(&wwn->unit_serial[0], INQUIRY_VPD_SERIAL_LEN, "%s", &buf[4]);
220
0fd97ccf 221 wwn->t10_dev->dev_flags |= DF_FIRMWARE_VPD_UNIT_SERIAL;
c66ac9db
NB
222
223 kfree(buf);
224 return 0;
225
226out_free:
227 kfree(buf);
e3d6f909 228 return -EPERM;
c66ac9db
NB
229}
230
231static void
232pscsi_get_inquiry_vpd_device_ident(struct scsi_device *sdev,
233 struct t10_wwn *wwn)
234{
235 unsigned char cdb[MAX_COMMAND_SIZE], *buf, *page_83;
236 int ident_len, page_len, off = 4, ret;
237 struct t10_vpd *vpd;
238
239 buf = kzalloc(INQUIRY_VPD_SERIAL_LEN, GFP_KERNEL);
240 if (!buf)
241 return;
242
243 memset(cdb, 0, MAX_COMMAND_SIZE);
244 cdb[0] = INQUIRY;
245 cdb[1] = 0x01; /* Query VPD */
246 cdb[2] = 0x83; /* Device Identifier */
a85d667e 247 put_unaligned_be16(INQUIRY_VPD_DEVICE_IDENTIFIER_LEN, &cdb[3]);
c66ac9db
NB
248
249 ret = scsi_execute_req(sdev, cdb, DMA_FROM_DEVICE, buf,
250 INQUIRY_VPD_DEVICE_IDENTIFIER_LEN,
251 NULL, HZ, 1, NULL);
252 if (ret)
253 goto out;
254
a85d667e 255 page_len = get_unaligned_be16(&buf[2]);
c66ac9db
NB
256 while (page_len > 0) {
257 /* Grab a pointer to the Identification descriptor */
258 page_83 = &buf[off];
259 ident_len = page_83[3];
260 if (!ident_len) {
6708bb27 261 pr_err("page_83[3]: identifier"
c66ac9db
NB
262 " length zero!\n");
263 break;
264 }
35d1efe8 265 pr_debug("T10 VPD Identifier Length: %d\n", ident_len);
c66ac9db
NB
266
267 vpd = kzalloc(sizeof(struct t10_vpd), GFP_KERNEL);
268 if (!vpd) {
6708bb27 269 pr_err("Unable to allocate memory for"
c66ac9db
NB
270 " struct t10_vpd\n");
271 goto out;
272 }
273 INIT_LIST_HEAD(&vpd->vpd_list);
274
275 transport_set_vpd_proto_id(vpd, page_83);
276 transport_set_vpd_assoc(vpd, page_83);
277
278 if (transport_set_vpd_ident_type(vpd, page_83) < 0) {
279 off += (ident_len + 4);
280 page_len -= (ident_len + 4);
281 kfree(vpd);
282 continue;
283 }
284 if (transport_set_vpd_ident(vpd, page_83) < 0) {
285 off += (ident_len + 4);
286 page_len -= (ident_len + 4);
287 kfree(vpd);
288 continue;
289 }
290
291 list_add_tail(&vpd->vpd_list, &wwn->t10_vpd_list);
292 off += (ident_len + 4);
293 page_len -= (ident_len + 4);
294 }
295
296out:
297 kfree(buf);
298}
299
0fd97ccf
CH
300static int pscsi_add_device_to_list(struct se_device *dev,
301 struct scsi_device *sd)
c66ac9db 302{
0fd97ccf
CH
303 struct pscsi_dev_virt *pdv = PSCSI_DEV(dev);
304 struct request_queue *q = sd->request_queue;
c66ac9db 305
0fd97ccf 306 pdv->pdv_sd = sd;
c66ac9db
NB
307
308 if (!sd->queue_depth) {
309 sd->queue_depth = PSCSI_DEFAULT_QUEUEDEPTH;
310
9cb78c16 311 pr_err("Set broken SCSI Device %d:%d:%llu"
c66ac9db
NB
312 " queue_depth to %d\n", sd->channel, sd->id,
313 sd->lun, sd->queue_depth);
314 }
0fd97ccf 315
a04e54f2
NB
316 dev->dev_attrib.hw_block_size =
317 min_not_zero((int)sd->sector_size, 512);
0fd97ccf 318 dev->dev_attrib.hw_max_sectors =
a04e54f2 319 min_not_zero(sd->host->max_sectors, queue_max_hw_sectors(q));
0fd97ccf
CH
320 dev->dev_attrib.hw_queue_depth = sd->queue_depth;
321
c66ac9db
NB
322 /*
323 * Setup our standard INQUIRY info into se_dev->t10_wwn
324 */
0fd97ccf 325 pscsi_set_inquiry_info(sd, &dev->t10_wwn);
c66ac9db
NB
326
327 /*
328 * Locate VPD WWN Information used for various purposes within
329 * the Storage Engine.
330 */
0fd97ccf 331 if (!pscsi_get_inquiry_vpd_serial(sd, &dev->t10_wwn)) {
c66ac9db
NB
332 /*
333 * If VPD Unit Serial returned GOOD status, try
334 * VPD Device Identification page (0x83).
335 */
0fd97ccf 336 pscsi_get_inquiry_vpd_device_ident(sd, &dev->t10_wwn);
c66ac9db
NB
337 }
338
339 /*
340 * For TYPE_TAPE, attempt to determine blocksize with MODE_SENSE.
341 */
a04e54f2 342 if (sd->type == TYPE_TAPE) {
c66ac9db 343 pscsi_tape_read_blocksize(dev, sd);
a04e54f2
NB
344 dev->dev_attrib.hw_block_size = sd->sector_size;
345 }
0fd97ccf 346 return 0;
c66ac9db
NB
347}
348
0fd97ccf
CH
349static struct se_device *pscsi_alloc_device(struct se_hba *hba,
350 const char *name)
c66ac9db
NB
351{
352 struct pscsi_dev_virt *pdv;
353
354 pdv = kzalloc(sizeof(struct pscsi_dev_virt), GFP_KERNEL);
6708bb27
AG
355 if (!pdv) {
356 pr_err("Unable to allocate memory for struct pscsi_dev_virt\n");
c66ac9db
NB
357 return NULL;
358 }
c66ac9db 359
6708bb27 360 pr_debug("PSCSI: Allocated pdv: %p for %s\n", pdv, name);
0fd97ccf 361 return &pdv->dev;
c66ac9db
NB
362}
363
364/*
365 * Called with struct Scsi_Host->host_lock called.
366 */
0fd97ccf 367static int pscsi_create_type_disk(struct se_device *dev, struct scsi_device *sd)
5dd7ed2e 368 __releases(sh->host_lock)
c66ac9db 369{
0fd97ccf
CH
370 struct pscsi_hba_virt *phv = dev->se_hba->hba_ptr;
371 struct pscsi_dev_virt *pdv = PSCSI_DEV(dev);
c66ac9db
NB
372 struct Scsi_Host *sh = sd->host;
373 struct block_device *bd;
0fd97ccf 374 int ret;
c66ac9db
NB
375
376 if (scsi_device_get(sd)) {
9cb78c16 377 pr_err("scsi_device_get() failed for %d:%d:%d:%llu\n",
c66ac9db
NB
378 sh->host_no, sd->channel, sd->id, sd->lun);
379 spin_unlock_irq(sh->host_lock);
0fd97ccf 380 return -EIO;
c66ac9db
NB
381 }
382 spin_unlock_irq(sh->host_lock);
383 /*
384 * Claim exclusive struct block_device access to struct scsi_device
016a5fec 385 * for TYPE_DISK and TYPE_ZBC using supplied udev_path
c66ac9db 386 */
0fd97ccf 387 bd = blkdev_get_by_path(dev->udev_path,
c66ac9db 388 FMODE_WRITE|FMODE_READ|FMODE_EXCL, pdv);
3ae279d2 389 if (IS_ERR(bd)) {
6708bb27 390 pr_err("pSCSI: blkdev_get_by_path() failed\n");
c66ac9db 391 scsi_device_put(sd);
0fd97ccf 392 return PTR_ERR(bd);
c66ac9db
NB
393 }
394 pdv->pdv_bd = bd;
395
0fd97ccf
CH
396 ret = pscsi_add_device_to_list(dev, sd);
397 if (ret) {
c66ac9db
NB
398 blkdev_put(pdv->pdv_bd, FMODE_WRITE|FMODE_READ|FMODE_EXCL);
399 scsi_device_put(sd);
0fd97ccf 400 return ret;
c66ac9db 401 }
0fd97ccf 402
016a5fec
DLM
403 pr_debug("CORE_PSCSI[%d] - Added TYPE_%s for %d:%d:%d:%llu\n",
404 phv->phv_host_id, sd->type == TYPE_DISK ? "DISK" : "ZBC",
405 sh->host_no, sd->channel, sd->id, sd->lun);
0fd97ccf 406 return 0;
c66ac9db
NB
407}
408
409/*
410 * Called with struct Scsi_Host->host_lock called.
411 */
a04e54f2 412static int pscsi_create_type_nondisk(struct se_device *dev, struct scsi_device *sd)
5dd7ed2e 413 __releases(sh->host_lock)
c66ac9db 414{
0fd97ccf 415 struct pscsi_hba_virt *phv = dev->se_hba->hba_ptr;
c66ac9db 416 struct Scsi_Host *sh = sd->host;
0fd97ccf 417 int ret;
c66ac9db
NB
418
419 if (scsi_device_get(sd)) {
9cb78c16 420 pr_err("scsi_device_get() failed for %d:%d:%d:%llu\n",
c66ac9db
NB
421 sh->host_no, sd->channel, sd->id, sd->lun);
422 spin_unlock_irq(sh->host_lock);
0fd97ccf 423 return -EIO;
c66ac9db
NB
424 }
425 spin_unlock_irq(sh->host_lock);
426
0fd97ccf
CH
427 ret = pscsi_add_device_to_list(dev, sd);
428 if (ret) {
c66ac9db 429 scsi_device_put(sd);
0fd97ccf 430 return ret;
c66ac9db 431 }
9cb78c16 432 pr_debug("CORE_PSCSI[%d] - Added Type: %s for %d:%d:%d:%llu\n",
c66ac9db
NB
433 phv->phv_host_id, scsi_device_type(sd->type), sh->host_no,
434 sd->channel, sd->id, sd->lun);
435
0fd97ccf 436 return 0;
c66ac9db
NB
437}
438
ecf0dd66 439static int pscsi_configure_device(struct se_device *dev)
c66ac9db 440{
0fd97ccf
CH
441 struct se_hba *hba = dev->se_hba;
442 struct pscsi_dev_virt *pdv = PSCSI_DEV(dev);
c66ac9db 443 struct scsi_device *sd;
0fd97ccf 444 struct pscsi_hba_virt *phv = dev->se_hba->hba_ptr;
c66ac9db
NB
445 struct Scsi_Host *sh = phv->phv_lld_host;
446 int legacy_mode_enable = 0;
0fd97ccf 447 int ret;
c66ac9db 448
0fd97ccf
CH
449 if (!(pdv->pdv_flags & PDF_HAS_CHANNEL_ID) ||
450 !(pdv->pdv_flags & PDF_HAS_TARGET_ID) ||
451 !(pdv->pdv_flags & PDF_HAS_LUN_ID)) {
452 pr_err("Missing scsi_channel_id=, scsi_target_id= and"
453 " scsi_lun_id= parameters\n");
454 return -EINVAL;
c66ac9db 455 }
0fd97ccf 456
c66ac9db
NB
457 /*
458 * If not running in PHV_LLD_SCSI_HOST_NO mode, locate the
459 * struct Scsi_Host we will need to bring the TCM/pSCSI object online
460 */
6708bb27 461 if (!sh) {
c66ac9db 462 if (phv->phv_mode == PHV_LLD_SCSI_HOST_NO) {
6708bb27 463 pr_err("pSCSI: Unable to locate struct"
c66ac9db 464 " Scsi_Host for PHV_LLD_SCSI_HOST_NO\n");
0fd97ccf 465 return -ENODEV;
c66ac9db
NB
466 }
467 /*
e6a8a41a 468 * For the newer PHV_VIRTUAL_HOST_ID struct scsi_device
c66ac9db
NB
469 * reference, we enforce that udev_path has been set
470 */
0fd97ccf 471 if (!(dev->dev_flags & DF_USING_UDEV_PATH)) {
6708bb27 472 pr_err("pSCSI: udev_path attribute has not"
c66ac9db 473 " been set before ENABLE=1\n");
0fd97ccf 474 return -EINVAL;
c66ac9db
NB
475 }
476 /*
e6a8a41a 477 * If no scsi_host_id= was passed for PHV_VIRTUAL_HOST_ID,
c66ac9db
NB
478 * use the original TCM hba ID to reference Linux/SCSI Host No
479 * and enable for PHV_LLD_SCSI_HOST_NO mode.
480 */
481 if (!(pdv->pdv_flags & PDF_HAS_VIRT_HOST_ID)) {
0fd97ccf 482 if (hba->dev_count) {
6708bb27 483 pr_err("pSCSI: Unable to set hba_mode"
c66ac9db 484 " with active devices\n");
0fd97ccf 485 return -EEXIST;
c66ac9db 486 }
c66ac9db
NB
487
488 if (pscsi_pmode_enable_hba(hba, 1) != 1)
0fd97ccf 489 return -ENODEV;
c66ac9db
NB
490
491 legacy_mode_enable = 1;
492 hba->hba_flags |= HBA_FLAGS_PSCSI_MODE;
493 sh = phv->phv_lld_host;
494 } else {
e3d6f909 495 sh = scsi_host_lookup(pdv->pdv_host_id);
58932e96 496 if (!sh) {
6708bb27 497 pr_err("pSCSI: Unable to locate"
c66ac9db 498 " pdv_host_id: %d\n", pdv->pdv_host_id);
58932e96 499 return -EINVAL;
c66ac9db 500 }
5a7125c6 501 pdv->pdv_lld_host = sh;
c66ac9db
NB
502 }
503 } else {
e6a8a41a
SH
504 if (phv->phv_mode == PHV_VIRTUAL_HOST_ID) {
505 pr_err("pSCSI: PHV_VIRTUAL_HOST_ID set while"
c66ac9db 506 " struct Scsi_Host exists\n");
0fd97ccf 507 return -EEXIST;
c66ac9db
NB
508 }
509 }
510
511 spin_lock_irq(sh->host_lock);
512 list_for_each_entry(sd, &sh->__devices, siblings) {
513 if ((pdv->pdv_channel_id != sd->channel) ||
514 (pdv->pdv_target_id != sd->id) ||
515 (pdv->pdv_lun_id != sd->lun))
516 continue;
517 /*
518 * Functions will release the held struct scsi_host->host_lock
519 * before calling calling pscsi_add_device_to_list() to register
520 * struct scsi_device with target_core_mod.
521 */
522 switch (sd->type) {
523 case TYPE_DISK:
016a5fec 524 case TYPE_ZBC:
0fd97ccf 525 ret = pscsi_create_type_disk(dev, sd);
c66ac9db 526 break;
c66ac9db 527 default:
a04e54f2 528 ret = pscsi_create_type_nondisk(dev, sd);
c66ac9db
NB
529 break;
530 }
531
0fd97ccf 532 if (ret) {
e6a8a41a 533 if (phv->phv_mode == PHV_VIRTUAL_HOST_ID)
c66ac9db
NB
534 scsi_host_put(sh);
535 else if (legacy_mode_enable) {
536 pscsi_pmode_enable_hba(hba, 0);
537 hba->hba_flags &= ~HBA_FLAGS_PSCSI_MODE;
538 }
539 pdv->pdv_sd = NULL;
0fd97ccf 540 return ret;
c66ac9db 541 }
0fd97ccf 542 return 0;
c66ac9db
NB
543 }
544 spin_unlock_irq(sh->host_lock);
545
6708bb27 546 pr_err("pSCSI: Unable to locate %d:%d:%d:%d\n", sh->host_no,
c66ac9db
NB
547 pdv->pdv_channel_id, pdv->pdv_target_id, pdv->pdv_lun_id);
548
e6a8a41a 549 if (phv->phv_mode == PHV_VIRTUAL_HOST_ID)
c66ac9db
NB
550 scsi_host_put(sh);
551 else if (legacy_mode_enable) {
552 pscsi_pmode_enable_hba(hba, 0);
553 hba->hba_flags &= ~HBA_FLAGS_PSCSI_MODE;
554 }
555
0fd97ccf 556 return -ENODEV;
c66ac9db
NB
557}
558
4cc987ea
NB
559static void pscsi_dev_call_rcu(struct rcu_head *p)
560{
561 struct se_device *dev = container_of(p, struct se_device, rcu_head);
562 struct pscsi_dev_virt *pdv = PSCSI_DEV(dev);
563
564 kfree(pdv);
565}
566
0fd97ccf 567static void pscsi_free_device(struct se_device *dev)
92634706
MC
568{
569 call_rcu(&dev->rcu_head, pscsi_dev_call_rcu);
570}
571
572static void pscsi_destroy_device(struct se_device *dev)
c66ac9db 573{
0fd97ccf
CH
574 struct pscsi_dev_virt *pdv = PSCSI_DEV(dev);
575 struct pscsi_hba_virt *phv = dev->se_hba->hba_ptr;
c66ac9db
NB
576 struct scsi_device *sd = pdv->pdv_sd;
577
578 if (sd) {
579 /*
580 * Release exclusive pSCSI internal struct block_device claim for
016a5fec
DLM
581 * struct scsi_device with TYPE_DISK or TYPE_ZBC
582 * from pscsi_create_type_disk()
c66ac9db 583 */
016a5fec
DLM
584 if ((sd->type == TYPE_DISK || sd->type == TYPE_ZBC) &&
585 pdv->pdv_bd) {
c66ac9db
NB
586 blkdev_put(pdv->pdv_bd,
587 FMODE_WRITE|FMODE_READ|FMODE_EXCL);
588 pdv->pdv_bd = NULL;
589 }
590 /*
591 * For HBA mode PHV_LLD_SCSI_HOST_NO, release the reference
592 * to struct Scsi_Host now.
593 */
594 if ((phv->phv_mode == PHV_LLD_SCSI_HOST_NO) &&
595 (phv->phv_lld_host != NULL))
596 scsi_host_put(phv->phv_lld_host);
5a7125c6
AG
597 else if (pdv->pdv_lld_host)
598 scsi_host_put(pdv->pdv_lld_host);
c66ac9db 599
a04e54f2 600 scsi_device_put(sd);
c66ac9db
NB
601
602 pdv->pdv_sd = NULL;
603 }
c66ac9db
NB
604}
605
dce6ce8c
MC
606static void pscsi_complete_cmd(struct se_cmd *cmd, u8 scsi_status,
607 unsigned char *req_sense)
c66ac9db 608{
0fd97ccf 609 struct pscsi_dev_virt *pdv = PSCSI_DEV(cmd->se_dev);
c66ac9db 610 struct scsi_device *sd = pdv->pdv_sd;
5787cacd 611 struct pscsi_plugin_task *pt = cmd->priv;
1d2a2cd9
NB
612 unsigned char *cdb;
613 /*
614 * Special case for REPORT_LUNs handling where pscsi_plugin_task has
615 * not been allocated because TCM is handling the emulation directly.
616 */
617 if (!pt)
d5829eac 618 return;
c66ac9db 619
1d2a2cd9 620 cdb = &pt->pscsi_cdb[0];
c66ac9db
NB
621 /*
622 * Hack to make sure that Write-Protect modepage is set if R/O mode is
623 * forced.
624 */
29a05dee 625 if (!cmd->data_length)
306c11b2
PB
626 goto after_mode_sense;
627
c66ac9db 628 if (((cdb[0] == MODE_SENSE) || (cdb[0] == MODE_SENSE_10)) &&
dce6ce8c 629 scsi_status == SAM_STAT_GOOD) {
29a05dee
NB
630 bool read_only = target_lun_is_rdonly(cmd);
631
632 if (read_only) {
de103c93
CH
633 unsigned char *buf;
634
635 buf = transport_kmap_data_sg(cmd);
636 if (!buf)
637 ; /* XXX: TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE */
c66ac9db
NB
638
639 if (cdb[0] == MODE_SENSE_10) {
640 if (!(buf[3] & 0x80))
641 buf[3] |= 0x80;
642 } else {
643 if (!(buf[2] & 0x80))
644 buf[2] |= 0x80;
645 }
05d1c7c0 646
5787cacd 647 transport_kunmap_data_sg(cmd);
c66ac9db
NB
648 }
649 }
650after_mode_sense:
651
306c11b2 652 if (sd->type != TYPE_TAPE || !cmd->data_length)
c66ac9db
NB
653 goto after_mode_select;
654
655 /*
656 * Hack to correctly obtain the initiator requested blocksize for
657 * TYPE_TAPE. Since this value is dependent upon each tape media,
658 * struct scsi_device->sector_size will not contain the correct value
659 * by default, so we go ahead and set it so
660 * TRANSPORT(dev)->get_blockdev() returns the correct value to the
661 * storage engine.
662 */
663 if (((cdb[0] == MODE_SELECT) || (cdb[0] == MODE_SELECT_10)) &&
dce6ce8c 664 scsi_status == SAM_STAT_GOOD) {
c66ac9db 665 unsigned char *buf;
c66ac9db
NB
666 u16 bdl;
667 u32 blocksize;
668
dce6ce8c 669 buf = sg_virt(&cmd->t_data_sg[0]);
6708bb27
AG
670 if (!buf) {
671 pr_err("Unable to get buf for scatterlist\n");
c66ac9db
NB
672 goto after_mode_select;
673 }
674
675 if (cdb[0] == MODE_SELECT)
a85d667e 676 bdl = buf[3];
c66ac9db 677 else
a85d667e 678 bdl = get_unaligned_be16(&buf[6]);
c66ac9db
NB
679
680 if (!bdl)
681 goto after_mode_select;
682
683 if (cdb[0] == MODE_SELECT)
a85d667e 684 blocksize = get_unaligned_be24(&buf[9]);
c66ac9db 685 else
a85d667e 686 blocksize = get_unaligned_be24(&buf[13]);
c66ac9db
NB
687
688 sd->sector_size = blocksize;
689 }
690after_mode_select:
691
bd813720 692 if (scsi_status == SAM_STAT_CHECK_CONDITION) {
dce6ce8c 693 transport_copy_sense_to_cmd(cmd, req_sense);
bd813720
LD
694
695 /*
696 * check for TAPE device reads with
697 * FM/EOM/ILI set, so that we can get data
698 * back despite framework assumption that a
699 * check condition means there is no data
700 */
701 if (sd->type == TYPE_TAPE &&
702 cmd->data_direction == DMA_FROM_DEVICE) {
703 /*
704 * is sense data valid, fixed format,
705 * and have FM, EOM, or ILI set?
706 */
707 if (req_sense[0] == 0xf0 && /* valid, fixed format */
708 req_sense[2] & 0xe0 && /* FM, EOM, or ILI */
709 (req_sense[2] & 0xf) == 0) { /* key==NO_SENSE */
710 pr_debug("Tape FM/EOM/ILI status detected. Treat as normal read.\n");
711 cmd->se_cmd_flags |= SCF_TREAT_READ_AS_NORMAL;
712 }
713 }
714 }
c66ac9db
NB
715}
716
c66ac9db
NB
717enum {
718 Opt_scsi_host_id, Opt_scsi_channel_id, Opt_scsi_target_id,
719 Opt_scsi_lun_id, Opt_err
720};
721
722static match_table_t tokens = {
723 {Opt_scsi_host_id, "scsi_host_id=%d"},
724 {Opt_scsi_channel_id, "scsi_channel_id=%d"},
725 {Opt_scsi_target_id, "scsi_target_id=%d"},
726 {Opt_scsi_lun_id, "scsi_lun_id=%d"},
727 {Opt_err, NULL}
728};
729
0fd97ccf
CH
730static ssize_t pscsi_set_configfs_dev_params(struct se_device *dev,
731 const char *page, ssize_t count)
c66ac9db 732{
0fd97ccf
CH
733 struct pscsi_dev_virt *pdv = PSCSI_DEV(dev);
734 struct pscsi_hba_virt *phv = dev->se_hba->hba_ptr;
c66ac9db
NB
735 char *orig, *ptr, *opts;
736 substring_t args[MAX_OPT_ARGS];
737 int ret = 0, arg, token;
738
739 opts = kstrdup(page, GFP_KERNEL);
740 if (!opts)
741 return -ENOMEM;
742
743 orig = opts;
744
90c161b6 745 while ((ptr = strsep(&opts, ",\n")) != NULL) {
c66ac9db
NB
746 if (!*ptr)
747 continue;
748
749 token = match_token(ptr, tokens, args);
750 switch (token) {
751 case Opt_scsi_host_id:
752 if (phv->phv_mode == PHV_LLD_SCSI_HOST_NO) {
6708bb27 753 pr_err("PSCSI[%d]: Unable to accept"
c66ac9db
NB
754 " scsi_host_id while phv_mode =="
755 " PHV_LLD_SCSI_HOST_NO\n",
756 phv->phv_host_id);
757 ret = -EINVAL;
758 goto out;
759 }
ce31c1b0
JE
760 ret = match_int(args, &arg);
761 if (ret)
762 goto out;
c66ac9db 763 pdv->pdv_host_id = arg;
6708bb27 764 pr_debug("PSCSI[%d]: Referencing SCSI Host ID:"
c66ac9db
NB
765 " %d\n", phv->phv_host_id, pdv->pdv_host_id);
766 pdv->pdv_flags |= PDF_HAS_VIRT_HOST_ID;
767 break;
768 case Opt_scsi_channel_id:
ce31c1b0
JE
769 ret = match_int(args, &arg);
770 if (ret)
771 goto out;
c66ac9db 772 pdv->pdv_channel_id = arg;
6708bb27 773 pr_debug("PSCSI[%d]: Referencing SCSI Channel"
c66ac9db
NB
774 " ID: %d\n", phv->phv_host_id,
775 pdv->pdv_channel_id);
776 pdv->pdv_flags |= PDF_HAS_CHANNEL_ID;
777 break;
778 case Opt_scsi_target_id:
ce31c1b0
JE
779 ret = match_int(args, &arg);
780 if (ret)
781 goto out;
c66ac9db 782 pdv->pdv_target_id = arg;
6708bb27 783 pr_debug("PSCSI[%d]: Referencing SCSI Target"
c66ac9db
NB
784 " ID: %d\n", phv->phv_host_id,
785 pdv->pdv_target_id);
786 pdv->pdv_flags |= PDF_HAS_TARGET_ID;
787 break;
788 case Opt_scsi_lun_id:
ce31c1b0
JE
789 ret = match_int(args, &arg);
790 if (ret)
791 goto out;
c66ac9db 792 pdv->pdv_lun_id = arg;
6708bb27 793 pr_debug("PSCSI[%d]: Referencing SCSI LUN ID:"
c66ac9db
NB
794 " %d\n", phv->phv_host_id, pdv->pdv_lun_id);
795 pdv->pdv_flags |= PDF_HAS_LUN_ID;
796 break;
797 default:
798 break;
799 }
800 }
801
802out:
803 kfree(orig);
804 return (!ret) ? count : ret;
805}
806
0fd97ccf 807static ssize_t pscsi_show_configfs_dev_params(struct se_device *dev, char *b)
c66ac9db 808{
0fd97ccf
CH
809 struct pscsi_hba_virt *phv = dev->se_hba->hba_ptr;
810 struct pscsi_dev_virt *pdv = PSCSI_DEV(dev);
c66ac9db
NB
811 struct scsi_device *sd = pdv->pdv_sd;
812 unsigned char host_id[16];
813 ssize_t bl;
c66ac9db 814
e6a8a41a 815 if (phv->phv_mode == PHV_VIRTUAL_HOST_ID)
c66ac9db
NB
816 snprintf(host_id, 16, "%d", pdv->pdv_host_id);
817 else
818 snprintf(host_id, 16, "PHBA Mode");
819
820 bl = sprintf(b, "SCSI Device Bus Location:"
821 " Channel ID: %d Target ID: %d LUN: %d Host ID: %s\n",
822 pdv->pdv_channel_id, pdv->pdv_target_id, pdv->pdv_lun_id,
823 host_id);
824
825 if (sd) {
b2da4abf
DD
826 bl += sprintf(b + bl, " Vendor: %."
827 __stringify(INQUIRY_VENDOR_LEN) "s", sd->vendor);
828 bl += sprintf(b + bl, " Model: %."
829 __stringify(INQUIRY_MODEL_LEN) "s", sd->model);
830 bl += sprintf(b + bl, " Rev: %."
831 __stringify(INQUIRY_REVISION_LEN) "s\n", sd->rev);
c66ac9db
NB
832 }
833 return bl;
834}
835
4246a0b6 836static void pscsi_bi_endio(struct bio *bio)
c66ac9db
NB
837{
838 bio_put(bio);
839}
840
2dbe10a2 841static inline struct bio *pscsi_get_bio(int nr_vecs)
c66ac9db
NB
842{
843 struct bio *bio;
844 /*
845 * Use bio_malloc() following the comment in for bio -> struct request
846 * in block/blk-core.c:blk_make_request()
847 */
2dbe10a2 848 bio = bio_kmalloc(GFP_KERNEL, nr_vecs);
6708bb27
AG
849 if (!bio) {
850 pr_err("PSCSI: bio_kmalloc() failed\n");
c66ac9db
NB
851 return NULL;
852 }
853 bio->bi_end_io = pscsi_bi_endio;
854
855 return bio;
856}
857
de103c93
CH
858static sense_reason_t
859pscsi_map_sg(struct se_cmd *cmd, struct scatterlist *sgl, u32 sgl_nents,
dd9cf046 860 struct request *req)
c66ac9db 861{
0fd97ccf 862 struct pscsi_dev_virt *pdv = PSCSI_DEV(cmd->se_dev);
dd9cf046 863 struct bio *bio = NULL;
c66ac9db
NB
864 struct page *page;
865 struct scatterlist *sg;
7a83aa4e 866 u32 data_len = cmd->data_length, i, len, bytes, off;
5787cacd 867 int nr_pages = (cmd->data_length + sgl[0].offset +
c66ac9db 868 PAGE_SIZE - 1) >> PAGE_SHIFT;
03e98c9e 869 int nr_vecs = 0, rc;
dd9cf046 870 int rw = (cmd->data_direction == DMA_TO_DEVICE);
c66ac9db 871
dd9cf046 872 BUG_ON(!cmd->data_length);
02b1a746 873
6708bb27 874 pr_debug("PSCSI: nr_pages: %d\n", nr_pages);
c66ac9db 875
5787cacd 876 for_each_sg(sgl, sg, sgl_nents, i) {
c66ac9db
NB
877 page = sg_page(sg);
878 off = sg->offset;
879 len = sg->length;
880
6708bb27 881 pr_debug("PSCSI: i: %d page: %p len: %d off: %d\n", i,
c66ac9db
NB
882 page, len, off);
883
8f27d487
AH
884 /*
885 * We only have one page of data in each sg element,
886 * we can not cross a page boundary.
887 */
888 if (off + len > PAGE_SIZE)
889 goto fail;
890
891 if (len > 0 && data_len > 0) {
c66ac9db
NB
892 bytes = min_t(unsigned int, len, PAGE_SIZE - off);
893 bytes = min(bytes, data_len);
894
6708bb27 895 if (!bio) {
8e1ceafe 896new_bio:
c66ac9db
NB
897 nr_vecs = min_t(int, BIO_MAX_PAGES, nr_pages);
898 nr_pages -= nr_vecs;
899 /*
900 * Calls bio_kmalloc() and sets bio->bi_end_io()
901 */
a1d8b49a 902 bio = pscsi_get_bio(nr_vecs);
6708bb27 903 if (!bio)
c66ac9db
NB
904 goto fail;
905
906 if (rw)
e742fc32 907 bio_set_op_attrs(bio, REQ_OP_WRITE, 0);
c66ac9db 908
6708bb27 909 pr_debug("PSCSI: Allocated bio: %p,"
c66ac9db
NB
910 " dir: %s nr_vecs: %d\n", bio,
911 (rw) ? "rw" : "r", nr_vecs);
c66ac9db
NB
912 }
913
6708bb27 914 pr_debug("PSCSI: Calling bio_add_pc_page() i: %d"
c66ac9db
NB
915 " bio: %p page: %p len: %d off: %d\n", i, bio,
916 page, len, off);
917
918 rc = bio_add_pc_page(pdv->pdv_sd->request_queue,
919 bio, page, bytes, off);
6708bb27 920 pr_debug("PSCSI: bio->bi_vcnt: %d nr_vecs: %d\n",
84c85906
ML
921 bio_segments(bio), nr_vecs);
922 if (rc != bytes) {
6708bb27 923 pr_debug("PSCSI: Reached bio->bi_vcnt max:"
c66ac9db
NB
924 " %d i: %d bio: %p, allocating another"
925 " bio\n", bio->bi_vcnt, i, bio);
dd9cf046 926
0abc2a10 927 rc = blk_rq_append_bio(req, &bio);
dd9cf046
CH
928 if (rc) {
929 pr_err("pSCSI: failed to append bio\n");
930 goto fail;
931 }
932
c66ac9db
NB
933 /*
934 * Clear the pointer so that another bio will
dd9cf046 935 * be allocated with pscsi_get_bio() above.
c66ac9db
NB
936 */
937 bio = NULL;
8e1ceafe 938 goto new_bio;
c66ac9db
NB
939 }
940
c66ac9db 941 data_len -= bytes;
c66ac9db
NB
942 }
943 }
c66ac9db 944
dd9cf046 945 if (bio) {
0abc2a10 946 rc = blk_rq_append_bio(req, &bio);
dd9cf046
CH
947 if (rc) {
948 pr_err("pSCSI: failed to append bio\n");
949 goto fail;
950 }
951 }
952
de103c93 953 return 0;
c66ac9db 954fail:
de103c93 955 return TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE;
c66ac9db
NB
956}
957
de103c93
CH
958static sense_reason_t
959pscsi_parse_cdb(struct se_cmd *cmd)
d6e0175c 960{
de103c93
CH
961 if (cmd->se_cmd_flags & SCF_BIDI)
962 return TCM_UNSUPPORTED_SCSI_OPCODE;
d6e0175c 963
7bfea53b 964 return passthrough_parse_cdb(cmd, pscsi_execute_cmd);
d6e0175c
CH
965}
966
de103c93
CH
967static sense_reason_t
968pscsi_execute_cmd(struct se_cmd *cmd)
c66ac9db 969{
0c2ad7d1
CH
970 struct scatterlist *sgl = cmd->t_data_sg;
971 u32 sgl_nents = cmd->t_data_nents;
0fd97ccf 972 struct pscsi_dev_virt *pdv = PSCSI_DEV(cmd->se_dev);
5787cacd 973 struct pscsi_plugin_task *pt;
02b1a746 974 struct request *req;
de103c93 975 sense_reason_t ret;
c66ac9db 976
5787cacd
CH
977 /*
978 * Dynamically alloc cdb space, since it may be larger than
979 * TCM_MAX_COMMAND_SIZE
980 */
981 pt = kzalloc(sizeof(*pt) + scsi_command_size(cmd->t_task_cdb), GFP_KERNEL);
982 if (!pt) {
de103c93 983 return TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE;
5787cacd
CH
984 }
985 cmd->priv = pt;
986
ed3102c6
CH
987 memcpy(pt->pscsi_cdb, cmd->t_task_cdb,
988 scsi_command_size(cmd->t_task_cdb));
485fd0d1 989
dd9cf046 990 req = blk_get_request(pdv->pdv_sd->request_queue,
aebf526b 991 cmd->data_direction == DMA_TO_DEVICE ?
ff005a06 992 REQ_OP_SCSI_OUT : REQ_OP_SCSI_IN, 0);
dd9cf046
CH
993 if (IS_ERR(req)) {
994 pr_err("PSCSI: blk_get_request() failed\n");
995 ret = TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE;
996 goto fail;
997 }
f27b087b 998
dd9cf046
CH
999 if (sgl) {
1000 ret = pscsi_map_sg(cmd, sgl, sgl_nents, req);
de103c93 1001 if (ret)
dd9cf046 1002 goto fail_put_request;
c66ac9db
NB
1003 }
1004
02b1a746 1005 req->end_io = pscsi_req_done;
5787cacd 1006 req->end_io_data = cmd;
82ed4db4
CH
1007 scsi_req(req)->cmd_len = scsi_command_size(pt->pscsi_cdb);
1008 scsi_req(req)->cmd = &pt->pscsi_cdb[0];
016a5fec
DLM
1009 if (pdv->pdv_sd->type == TYPE_DISK ||
1010 pdv->pdv_sd->type == TYPE_ZBC)
02b1a746
CH
1011 req->timeout = PS_TIMEOUT_DISK;
1012 else
1013 req->timeout = PS_TIMEOUT_OTHER;
64c7f1d1 1014 scsi_req(req)->retries = PS_RETRY;
c66ac9db 1015
02b1a746 1016 blk_execute_rq_nowait(pdv->pdv_sd->request_queue, NULL, req,
68d81f40 1017 (cmd->sam_task_attr == TCM_HEAD_TAG),
02b1a746
CH
1018 pscsi_req_done);
1019
03e98c9e 1020 return 0;
02b1a746 1021
dd9cf046
CH
1022fail_put_request:
1023 blk_put_request(req);
5787cacd
CH
1024fail:
1025 kfree(pt);
de103c93 1026 return ret;
c66ac9db
NB
1027}
1028
c66ac9db
NB
1029/* pscsi_get_device_type():
1030 *
1031 *
1032 */
1033static u32 pscsi_get_device_type(struct se_device *dev)
1034{
0fd97ccf 1035 struct pscsi_dev_virt *pdv = PSCSI_DEV(dev);
c66ac9db
NB
1036 struct scsi_device *sd = pdv->pdv_sd;
1037
215a8fe4 1038 return (sd) ? sd->type : TYPE_NO_LUN;
c66ac9db
NB
1039}
1040
1041static sector_t pscsi_get_blocks(struct se_device *dev)
1042{
0fd97ccf 1043 struct pscsi_dev_virt *pdv = PSCSI_DEV(dev);
c66ac9db
NB
1044
1045 if (pdv->pdv_bd && pdv->pdv_bd->bd_part)
1046 return pdv->pdv_bd->bd_part->nr_sects;
1047
c66ac9db
NB
1048 return 0;
1049}
1050
2a842aca 1051static void pscsi_req_done(struct request *req, blk_status_t status)
c66ac9db 1052{
5787cacd
CH
1053 struct se_cmd *cmd = req->end_io_data;
1054 struct pscsi_plugin_task *pt = cmd->priv;
dce6ce8c
MC
1055 int result = scsi_req(req)->result;
1056 u8 scsi_status = status_byte(result) << 1;
5787cacd 1057
dce6ce8c 1058 if (scsi_status) {
5787cacd
CH
1059 pr_debug("PSCSI Status Byte exception at cmd: %p CDB:"
1060 " 0x%02x Result: 0x%08x\n", cmd, pt->pscsi_cdb[0],
dce6ce8c 1061 result);
c66ac9db
NB
1062 }
1063
dce6ce8c
MC
1064 pscsi_complete_cmd(cmd, scsi_status, scsi_req(req)->sense);
1065
1066 switch (host_byte(result)) {
c66ac9db 1067 case DID_OK:
bd813720
LD
1068 target_complete_cmd_with_length(cmd, scsi_status,
1069 cmd->data_length - scsi_req(req)->resid_len);
c66ac9db
NB
1070 break;
1071 default:
5787cacd
CH
1072 pr_debug("PSCSI Host Byte exception at cmd: %p CDB:"
1073 " 0x%02x Result: 0x%08x\n", cmd, pt->pscsi_cdb[0],
dce6ce8c 1074 result);
5787cacd 1075 target_complete_cmd(cmd, SAM_STAT_CHECK_CONDITION);
c66ac9db
NB
1076 break;
1077 }
c66ac9db 1078
92bc5a24 1079 blk_put_request(req);
5787cacd 1080 kfree(pt);
c66ac9db
NB
1081}
1082
0a06d430 1083static const struct target_backend_ops pscsi_ops = {
c66ac9db
NB
1084 .name = "pscsi",
1085 .owner = THIS_MODULE,
530c6891 1086 .transport_flags = TRANSPORT_FLAG_PASSTHROUGH |
4ec5bf0e
BL
1087 TRANSPORT_FLAG_PASSTHROUGH_ALUA |
1088 TRANSPORT_FLAG_PASSTHROUGH_PGR,
c66ac9db
NB
1089 .attach_hba = pscsi_attach_hba,
1090 .detach_hba = pscsi_detach_hba,
1091 .pmode_enable_hba = pscsi_pmode_enable_hba,
0fd97ccf
CH
1092 .alloc_device = pscsi_alloc_device,
1093 .configure_device = pscsi_configure_device,
92634706 1094 .destroy_device = pscsi_destroy_device,
c66ac9db 1095 .free_device = pscsi_free_device,
d6e0175c 1096 .parse_cdb = pscsi_parse_cdb,
c66ac9db
NB
1097 .set_configfs_dev_params = pscsi_set_configfs_dev_params,
1098 .show_configfs_dev_params = pscsi_show_configfs_dev_params,
c66ac9db
NB
1099 .get_device_type = pscsi_get_device_type,
1100 .get_blocks = pscsi_get_blocks,
5873c4d1 1101 .tb_dev_attrib_attrs = passthrough_attrib_attrs,
c66ac9db
NB
1102};
1103
1104static int __init pscsi_module_init(void)
1105{
0a06d430 1106 return transport_backend_register(&pscsi_ops);
c66ac9db
NB
1107}
1108
63b91d5a 1109static void __exit pscsi_module_exit(void)
c66ac9db 1110{
0a06d430 1111 target_backend_unregister(&pscsi_ops);
c66ac9db
NB
1112}
1113
1114MODULE_DESCRIPTION("TCM PSCSI subsystem plugin");
1115MODULE_AUTHOR("nab@Linux-iSCSI.org");
1116MODULE_LICENSE("GPL");
1117
1118module_init(pscsi_module_init);
1119module_exit(pscsi_module_exit);