blob: ef1c8c158f66b950fdf94c4d64d3510de3779f4d [file] [log] [blame]
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001/*******************************************************************************
2 * Filename: target_core_pscsi.c
3 *
4 * This file contains the generic target mode <-> Linux SCSI subsystem plugin.
5 *
Nicholas Bellinger4c762512013-09-05 15:29:12 -07006 * (c) Copyright 2003-2013 Datera, Inc.
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08007 *
8 * Nicholas A. Bellinger <nab@kernel.org>
9 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
23 *
24 ******************************************************************************/
25
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080026#include <linux/string.h>
27#include <linux/parser.h>
28#include <linux/timer.h>
29#include <linux/blkdev.h>
30#include <linux/blk_types.h>
31#include <linux/slab.h>
32#include <linux/spinlock.h>
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080033#include <linux/genhd.h>
34#include <linux/cdrom.h>
Christoph Hellwigd6e01752012-05-20 11:59:14 -040035#include <linux/ratelimit.h>
Paul Gortmaker827509e2011-08-30 14:20:44 -040036#include <linux/module.h>
Christoph Hellwigd6e01752012-05-20 11:59:14 -040037#include <asm/unaligned.h>
38
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080039#include <scsi/scsi_device.h>
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080040#include <scsi/scsi_host.h>
Nicholas Bellingere66ecd52011-05-19 20:19:14 -070041#include <scsi/scsi_tcq.h>
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080042
43#include <target/target_core_base.h>
Christoph Hellwigc4795fb2011-11-16 09:46:48 -050044#include <target/target_core_backend.h>
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080045
Christoph Hellwigd6e01752012-05-20 11:59:14 -040046#include "target_core_alua.h"
Nicholas Bellinger29a05de2015-03-22 20:42:19 -070047#include "target_core_internal.h"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080048#include "target_core_pscsi.h"
49
50#define ISPRINT(a) ((a >= ' ') && (a <= '~'))
51
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -040052static inline struct pscsi_dev_virt *PSCSI_DEV(struct se_device *dev)
53{
54 return container_of(dev, struct pscsi_dev_virt, dev);
55}
56
Christoph Hellwigde103c92012-11-06 12:24:09 -080057static sense_reason_t pscsi_execute_cmd(struct se_cmd *cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080058static void pscsi_req_done(struct request *, int);
59
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080060/* 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{
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080067 struct pscsi_hba_virt *phv;
68
69 phv = kzalloc(sizeof(struct pscsi_hba_virt), GFP_KERNEL);
Andy Grover6708bb22011-06-08 10:36:43 -070070 if (!phv) {
71 pr_err("Unable to allocate struct pscsi_hba_virt\n");
Andy Grovere3d6f902011-07-19 08:55:10 +000072 return -ENOMEM;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080073 }
74 phv->phv_host_id = host_id;
Stefan Hajnoczie6a8a412012-02-23 18:15:26 +000075 phv->phv_mode = PHV_VIRTUAL_HOST_ID;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080076
Andy Grover5951146d2011-07-19 10:26:37 +000077 hba->hba_ptr = phv;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080078
Andy Grover6708bb22011-06-08 10:36:43 -070079 pr_debug("CORE_HBA[%d] - TCM SCSI HBA Driver %s on"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080080 " Generic Target Core Stack %s\n", hba->hba_id,
Christoph Hellwigce8dd252015-06-19 15:14:39 +020081 PSCSI_VERSION, TARGET_CORE_VERSION);
Andy Grover6708bb22011-06-08 10:36:43 -070082 pr_debug("CORE_HBA[%d] - Attached SCSI HBA to Generic\n",
Andy Grovere3d6f902011-07-19 08:55:10 +000083 hba->hba_id);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080084
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
Andy Grover6708bb22011-06-08 10:36:43 -070096 pr_debug("CORE_HBA[%d] - Detached SCSI HBA: %s from"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080097 " Generic Target Core\n", hba->hba_id,
98 (scsi_host->hostt->name) ? (scsi_host->hostt->name) :
99 "Unknown");
100 } else
Andy Grover6708bb22011-06-08 10:36:43 -0700101 pr_debug("CORE_HBA[%d] - Detached Virtual SCSI HBA"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800102 " 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{
Jörn Engel8359cf42011-11-24 02:05:51 +0100110 struct pscsi_hba_virt *phv = hba->hba_ptr;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800111 struct Scsi_Host *sh = phv->phv_lld_host;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800112 /*
113 * Release the struct Scsi_Host
114 */
Andy Grover6708bb22011-06-08 10:36:43 -0700115 if (!mode_flag) {
116 if (!sh)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800117 return 0;
118
119 phv->phv_lld_host = NULL;
Stefan Hajnoczie6a8a412012-02-23 18:15:26 +0000120 phv->phv_mode = PHV_VIRTUAL_HOST_ID;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800121
Andy Grover6708bb22011-06-08 10:36:43 -0700122 pr_debug("CORE_HBA[%d] - Disabled pSCSI HBA Passthrough"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800123 " %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 */
Andy Grovere3d6f902011-07-19 08:55:10 +0000133 sh = scsi_host_lookup(phv->phv_host_id);
Wei Yongjun58932e92013-10-25 21:53:33 +0800134 if (!sh) {
Andy Grover6708bb22011-06-08 10:36:43 -0700135 pr_err("pSCSI: Unable to locate SCSI Host for"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800136 " phv_host_id: %d\n", phv->phv_host_id);
Wei Yongjun58932e92013-10-25 21:53:33 +0800137 return -EINVAL;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800138 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800139
140 phv->phv_lld_host = sh;
141 phv->phv_mode = PHV_LLD_SCSI_HOST_NO;
142
Andy Grover6708bb22011-06-08 10:36:43 -0700143 pr_debug("CORE_HBA[%d] - Enabled pSCSI HBA Passthrough %s\n",
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800144 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)
Nicholas Bellingerf8e24ea2016-11-03 23:06:53 -0700157 goto out_free;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800158
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 */
171 sdev->sector_size = (buf[9] << 16) | (buf[10] << 8) | (buf[11]);
Nicholas Bellingerf8e24ea2016-11-03 23:06:53 -0700172out_free:
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800173 if (!sdev->sector_size)
174 sdev->sector_size = 1024;
Nicholas Bellingerf8e24ea2016-11-03 23:06:53 -0700175
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800176 kfree(buf);
177}
178
179static void
180pscsi_set_inquiry_info(struct scsi_device *sdev, struct t10_wwn *wwn)
181{
182 unsigned char *buf;
183
184 if (sdev->inquiry_len < INQUIRY_LEN)
185 return;
186
187 buf = sdev->inquiry;
188 if (!buf)
189 return;
190 /*
191 * Use sdev->inquiry from drivers/scsi/scsi_scan.c:scsi_alloc_sdev()
192 */
193 memcpy(&wwn->vendor[0], &buf[8], sizeof(wwn->vendor));
194 memcpy(&wwn->model[0], &buf[16], sizeof(wwn->model));
195 memcpy(&wwn->revision[0], &buf[32], sizeof(wwn->revision));
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)
Andy Grovere3d6f902011-07-19 08:55:10 +0000206 return -ENOMEM;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800207
208 memset(cdb, 0, MAX_COMMAND_SIZE);
209 cdb[0] = INQUIRY;
210 cdb[1] = 0x01; /* Query VPD */
211 cdb[2] = 0x80; /* Unit Serial Number */
212 cdb[3] = (INQUIRY_VPD_SERIAL_LEN >> 8) & 0xff;
213 cdb[4] = (INQUIRY_VPD_SERIAL_LEN & 0xff);
214
215 ret = scsi_execute_req(sdev, cdb, DMA_FROM_DEVICE, buf,
216 INQUIRY_VPD_SERIAL_LEN, NULL, HZ, 1, NULL);
217 if (ret)
218 goto out_free;
219
220 snprintf(&wwn->unit_serial[0], INQUIRY_VPD_SERIAL_LEN, "%s", &buf[4]);
221
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400222 wwn->t10_dev->dev_flags |= DF_FIRMWARE_VPD_UNIT_SERIAL;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800223
224 kfree(buf);
225 return 0;
226
227out_free:
228 kfree(buf);
Andy Grovere3d6f902011-07-19 08:55:10 +0000229 return -EPERM;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800230}
231
232static void
233pscsi_get_inquiry_vpd_device_ident(struct scsi_device *sdev,
234 struct t10_wwn *wwn)
235{
236 unsigned char cdb[MAX_COMMAND_SIZE], *buf, *page_83;
237 int ident_len, page_len, off = 4, ret;
238 struct t10_vpd *vpd;
239
240 buf = kzalloc(INQUIRY_VPD_SERIAL_LEN, GFP_KERNEL);
241 if (!buf)
242 return;
243
244 memset(cdb, 0, MAX_COMMAND_SIZE);
245 cdb[0] = INQUIRY;
246 cdb[1] = 0x01; /* Query VPD */
247 cdb[2] = 0x83; /* Device Identifier */
248 cdb[3] = (INQUIRY_VPD_DEVICE_IDENTIFIER_LEN >> 8) & 0xff;
249 cdb[4] = (INQUIRY_VPD_DEVICE_IDENTIFIER_LEN & 0xff);
250
251 ret = scsi_execute_req(sdev, cdb, DMA_FROM_DEVICE, buf,
252 INQUIRY_VPD_DEVICE_IDENTIFIER_LEN,
253 NULL, HZ, 1, NULL);
254 if (ret)
255 goto out;
256
257 page_len = (buf[2] << 8) | buf[3];
258 while (page_len > 0) {
259 /* Grab a pointer to the Identification descriptor */
260 page_83 = &buf[off];
261 ident_len = page_83[3];
262 if (!ident_len) {
Andy Grover6708bb22011-06-08 10:36:43 -0700263 pr_err("page_83[3]: identifier"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800264 " length zero!\n");
265 break;
266 }
Masanari Iida35d1efe2012-08-16 22:43:13 +0900267 pr_debug("T10 VPD Identifier Length: %d\n", ident_len);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800268
269 vpd = kzalloc(sizeof(struct t10_vpd), GFP_KERNEL);
270 if (!vpd) {
Andy Grover6708bb22011-06-08 10:36:43 -0700271 pr_err("Unable to allocate memory for"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800272 " struct t10_vpd\n");
273 goto out;
274 }
275 INIT_LIST_HEAD(&vpd->vpd_list);
276
277 transport_set_vpd_proto_id(vpd, page_83);
278 transport_set_vpd_assoc(vpd, page_83);
279
280 if (transport_set_vpd_ident_type(vpd, page_83) < 0) {
281 off += (ident_len + 4);
282 page_len -= (ident_len + 4);
283 kfree(vpd);
284 continue;
285 }
286 if (transport_set_vpd_ident(vpd, page_83) < 0) {
287 off += (ident_len + 4);
288 page_len -= (ident_len + 4);
289 kfree(vpd);
290 continue;
291 }
292
293 list_add_tail(&vpd->vpd_list, &wwn->t10_vpd_list);
294 off += (ident_len + 4);
295 page_len -= (ident_len + 4);
296 }
297
298out:
299 kfree(buf);
300}
301
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400302static int pscsi_add_device_to_list(struct se_device *dev,
303 struct scsi_device *sd)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800304{
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400305 struct pscsi_dev_virt *pdv = PSCSI_DEV(dev);
306 struct request_queue *q = sd->request_queue;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800307
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400308 pdv->pdv_sd = sd;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800309
310 if (!sd->queue_depth) {
311 sd->queue_depth = PSCSI_DEFAULT_QUEUEDEPTH;
312
Hannes Reinecke9cb78c12014-06-25 15:27:36 +0200313 pr_err("Set broken SCSI Device %d:%d:%llu"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800314 " queue_depth to %d\n", sd->channel, sd->id,
315 sd->lun, sd->queue_depth);
316 }
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400317
Nicholas Bellingerf8e24ea2016-11-03 23:06:53 -0700318 dev->dev_attrib.hw_block_size =
319 min_not_zero((int)sd->sector_size, 512);
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400320 dev->dev_attrib.hw_max_sectors =
Nicholas Bellingerf8e24ea2016-11-03 23:06:53 -0700321 min_not_zero(sd->host->max_sectors, queue_max_hw_sectors(q));
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400322 dev->dev_attrib.hw_queue_depth = sd->queue_depth;
323
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800324 /*
325 * Setup our standard INQUIRY info into se_dev->t10_wwn
326 */
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400327 pscsi_set_inquiry_info(sd, &dev->t10_wwn);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800328
329 /*
330 * Locate VPD WWN Information used for various purposes within
331 * the Storage Engine.
332 */
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400333 if (!pscsi_get_inquiry_vpd_serial(sd, &dev->t10_wwn)) {
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800334 /*
335 * If VPD Unit Serial returned GOOD status, try
336 * VPD Device Identification page (0x83).
337 */
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400338 pscsi_get_inquiry_vpd_device_ident(sd, &dev->t10_wwn);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800339 }
340
341 /*
342 * For TYPE_TAPE, attempt to determine blocksize with MODE_SENSE.
343 */
Nicholas Bellingerf8e24ea2016-11-03 23:06:53 -0700344 if (sd->type == TYPE_TAPE) {
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800345 pscsi_tape_read_blocksize(dev, sd);
Nicholas Bellingerf8e24ea2016-11-03 23:06:53 -0700346 dev->dev_attrib.hw_block_size = sd->sector_size;
347 }
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400348 return 0;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800349}
350
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400351static struct se_device *pscsi_alloc_device(struct se_hba *hba,
352 const char *name)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800353{
354 struct pscsi_dev_virt *pdv;
355
356 pdv = kzalloc(sizeof(struct pscsi_dev_virt), GFP_KERNEL);
Andy Grover6708bb22011-06-08 10:36:43 -0700357 if (!pdv) {
358 pr_err("Unable to allocate memory for struct pscsi_dev_virt\n");
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800359 return NULL;
360 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800361
Andy Grover6708bb22011-06-08 10:36:43 -0700362 pr_debug("PSCSI: Allocated pdv: %p for %s\n", pdv, name);
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400363 return &pdv->dev;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800364}
365
366/*
367 * Called with struct Scsi_Host->host_lock called.
368 */
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400369static int pscsi_create_type_disk(struct se_device *dev, struct scsi_device *sd)
Dan Carpenter5dd7ed2e2011-03-14 04:06:01 -0700370 __releases(sh->host_lock)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800371{
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400372 struct pscsi_hba_virt *phv = dev->se_hba->hba_ptr;
373 struct pscsi_dev_virt *pdv = PSCSI_DEV(dev);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800374 struct Scsi_Host *sh = sd->host;
375 struct block_device *bd;
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400376 int ret;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800377
378 if (scsi_device_get(sd)) {
Hannes Reinecke9cb78c12014-06-25 15:27:36 +0200379 pr_err("scsi_device_get() failed for %d:%d:%d:%llu\n",
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800380 sh->host_no, sd->channel, sd->id, sd->lun);
381 spin_unlock_irq(sh->host_lock);
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400382 return -EIO;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800383 }
384 spin_unlock_irq(sh->host_lock);
385 /*
386 * Claim exclusive struct block_device access to struct scsi_device
387 * for TYPE_DISK using supplied udev_path
388 */
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400389 bd = blkdev_get_by_path(dev->udev_path,
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800390 FMODE_WRITE|FMODE_READ|FMODE_EXCL, pdv);
Dan Carpenter3ae279d2011-02-09 15:34:36 -0800391 if (IS_ERR(bd)) {
Andy Grover6708bb22011-06-08 10:36:43 -0700392 pr_err("pSCSI: blkdev_get_by_path() failed\n");
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800393 scsi_device_put(sd);
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400394 return PTR_ERR(bd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800395 }
396 pdv->pdv_bd = bd;
397
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400398 ret = pscsi_add_device_to_list(dev, sd);
399 if (ret) {
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800400 blkdev_put(pdv->pdv_bd, FMODE_WRITE|FMODE_READ|FMODE_EXCL);
401 scsi_device_put(sd);
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400402 return ret;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800403 }
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400404
Hannes Reinecke9cb78c12014-06-25 15:27:36 +0200405 pr_debug("CORE_PSCSI[%d] - Added TYPE_DISK for %d:%d:%d:%llu\n",
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800406 phv->phv_host_id, sh->host_no, sd->channel, sd->id, sd->lun);
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400407 return 0;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800408}
409
410/*
411 * Called with struct Scsi_Host->host_lock called.
412 */
Nicholas Bellingerf8e24ea2016-11-03 23:06:53 -0700413static int pscsi_create_type_nondisk(struct se_device *dev, struct scsi_device *sd)
Dan Carpenter5dd7ed2e2011-03-14 04:06:01 -0700414 __releases(sh->host_lock)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800415{
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400416 struct pscsi_hba_virt *phv = dev->se_hba->hba_ptr;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800417 struct Scsi_Host *sh = sd->host;
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400418 int ret;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800419
420 if (scsi_device_get(sd)) {
Hannes Reinecke9cb78c12014-06-25 15:27:36 +0200421 pr_err("scsi_device_get() failed for %d:%d:%d:%llu\n",
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800422 sh->host_no, sd->channel, sd->id, sd->lun);
423 spin_unlock_irq(sh->host_lock);
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400424 return -EIO;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800425 }
426 spin_unlock_irq(sh->host_lock);
427
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400428 ret = pscsi_add_device_to_list(dev, sd);
429 if (ret) {
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800430 scsi_device_put(sd);
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400431 return ret;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800432 }
Hannes Reinecke9cb78c12014-06-25 15:27:36 +0200433 pr_debug("CORE_PSCSI[%d] - Added Type: %s for %d:%d:%d:%llu\n",
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800434 phv->phv_host_id, scsi_device_type(sd->type), sh->host_no,
435 sd->channel, sd->id, sd->lun);
436
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400437 return 0;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800438}
439
Fengguang Wuecf0dd62012-10-10 07:30:20 +0800440static int pscsi_configure_device(struct se_device *dev)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800441{
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400442 struct se_hba *hba = dev->se_hba;
443 struct pscsi_dev_virt *pdv = PSCSI_DEV(dev);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800444 struct scsi_device *sd;
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400445 struct pscsi_hba_virt *phv = dev->se_hba->hba_ptr;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800446 struct Scsi_Host *sh = phv->phv_lld_host;
447 int legacy_mode_enable = 0;
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400448 int ret;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800449
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400450 if (!(pdv->pdv_flags & PDF_HAS_CHANNEL_ID) ||
451 !(pdv->pdv_flags & PDF_HAS_TARGET_ID) ||
452 !(pdv->pdv_flags & PDF_HAS_LUN_ID)) {
453 pr_err("Missing scsi_channel_id=, scsi_target_id= and"
454 " scsi_lun_id= parameters\n");
455 return -EINVAL;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800456 }
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400457
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800458 /*
459 * If not running in PHV_LLD_SCSI_HOST_NO mode, locate the
460 * struct Scsi_Host we will need to bring the TCM/pSCSI object online
461 */
Andy Grover6708bb22011-06-08 10:36:43 -0700462 if (!sh) {
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800463 if (phv->phv_mode == PHV_LLD_SCSI_HOST_NO) {
Andy Grover6708bb22011-06-08 10:36:43 -0700464 pr_err("pSCSI: Unable to locate struct"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800465 " Scsi_Host for PHV_LLD_SCSI_HOST_NO\n");
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400466 return -ENODEV;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800467 }
468 /*
Stefan Hajnoczie6a8a412012-02-23 18:15:26 +0000469 * For the newer PHV_VIRTUAL_HOST_ID struct scsi_device
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800470 * reference, we enforce that udev_path has been set
471 */
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400472 if (!(dev->dev_flags & DF_USING_UDEV_PATH)) {
Andy Grover6708bb22011-06-08 10:36:43 -0700473 pr_err("pSCSI: udev_path attribute has not"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800474 " been set before ENABLE=1\n");
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400475 return -EINVAL;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800476 }
477 /*
Stefan Hajnoczie6a8a412012-02-23 18:15:26 +0000478 * If no scsi_host_id= was passed for PHV_VIRTUAL_HOST_ID,
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800479 * use the original TCM hba ID to reference Linux/SCSI Host No
480 * and enable for PHV_LLD_SCSI_HOST_NO mode.
481 */
482 if (!(pdv->pdv_flags & PDF_HAS_VIRT_HOST_ID)) {
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400483 if (hba->dev_count) {
Andy Grover6708bb22011-06-08 10:36:43 -0700484 pr_err("pSCSI: Unable to set hba_mode"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800485 " with active devices\n");
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400486 return -EEXIST;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800487 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800488
489 if (pscsi_pmode_enable_hba(hba, 1) != 1)
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400490 return -ENODEV;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800491
492 legacy_mode_enable = 1;
493 hba->hba_flags |= HBA_FLAGS_PSCSI_MODE;
494 sh = phv->phv_lld_host;
495 } else {
Andy Grovere3d6f902011-07-19 08:55:10 +0000496 sh = scsi_host_lookup(pdv->pdv_host_id);
Wei Yongjun58932e92013-10-25 21:53:33 +0800497 if (!sh) {
Andy Grover6708bb22011-06-08 10:36:43 -0700498 pr_err("pSCSI: Unable to locate"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800499 " pdv_host_id: %d\n", pdv->pdv_host_id);
Wei Yongjun58932e92013-10-25 21:53:33 +0800500 return -EINVAL;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800501 }
Andy Grover5a7125c2015-05-22 14:07:44 -0700502 pdv->pdv_lld_host = sh;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800503 }
504 } else {
Stefan Hajnoczie6a8a412012-02-23 18:15:26 +0000505 if (phv->phv_mode == PHV_VIRTUAL_HOST_ID) {
506 pr_err("pSCSI: PHV_VIRTUAL_HOST_ID set while"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800507 " struct Scsi_Host exists\n");
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400508 return -EEXIST;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800509 }
510 }
511
512 spin_lock_irq(sh->host_lock);
513 list_for_each_entry(sd, &sh->__devices, siblings) {
514 if ((pdv->pdv_channel_id != sd->channel) ||
515 (pdv->pdv_target_id != sd->id) ||
516 (pdv->pdv_lun_id != sd->lun))
517 continue;
518 /*
519 * Functions will release the held struct scsi_host->host_lock
520 * before calling calling pscsi_add_device_to_list() to register
521 * struct scsi_device with target_core_mod.
522 */
523 switch (sd->type) {
524 case TYPE_DISK:
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400525 ret = pscsi_create_type_disk(dev, sd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800526 break;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800527 default:
Nicholas Bellingerf8e24ea2016-11-03 23:06:53 -0700528 ret = pscsi_create_type_nondisk(dev, sd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800529 break;
530 }
531
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400532 if (ret) {
Stefan Hajnoczie6a8a412012-02-23 18:15:26 +0000533 if (phv->phv_mode == PHV_VIRTUAL_HOST_ID)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800534 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;
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400540 return ret;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800541 }
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400542 return 0;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800543 }
544 spin_unlock_irq(sh->host_lock);
545
Andy Grover6708bb22011-06-08 10:36:43 -0700546 pr_err("pSCSI: Unable to locate %d:%d:%d:%d\n", sh->host_no,
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800547 pdv->pdv_channel_id, pdv->pdv_target_id, pdv->pdv_lun_id);
548
Stefan Hajnoczie6a8a412012-02-23 18:15:26 +0000549 if (phv->phv_mode == PHV_VIRTUAL_HOST_ID)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800550 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
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400556 return -ENODEV;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800557}
558
Nicholas Bellinger4cc987e2015-05-19 00:03:07 -0700559static 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
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400567static void pscsi_free_device(struct se_device *dev)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800568{
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400569 struct pscsi_dev_virt *pdv = PSCSI_DEV(dev);
570 struct pscsi_hba_virt *phv = dev->se_hba->hba_ptr;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800571 struct scsi_device *sd = pdv->pdv_sd;
572
573 if (sd) {
574 /*
575 * Release exclusive pSCSI internal struct block_device claim for
576 * struct scsi_device with TYPE_DISK from pscsi_create_type_disk()
577 */
578 if ((sd->type == TYPE_DISK) && pdv->pdv_bd) {
579 blkdev_put(pdv->pdv_bd,
580 FMODE_WRITE|FMODE_READ|FMODE_EXCL);
581 pdv->pdv_bd = NULL;
582 }
583 /*
584 * For HBA mode PHV_LLD_SCSI_HOST_NO, release the reference
585 * to struct Scsi_Host now.
586 */
587 if ((phv->phv_mode == PHV_LLD_SCSI_HOST_NO) &&
588 (phv->phv_lld_host != NULL))
589 scsi_host_put(phv->phv_lld_host);
Andy Grover5a7125c2015-05-22 14:07:44 -0700590 else if (pdv->pdv_lld_host)
591 scsi_host_put(pdv->pdv_lld_host);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800592
Nicholas Bellingerf8e24ea2016-11-03 23:06:53 -0700593 scsi_device_put(sd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800594
595 pdv->pdv_sd = NULL;
596 }
Nicholas Bellinger4cc987e2015-05-19 00:03:07 -0700597 call_rcu(&dev->rcu_head, pscsi_dev_call_rcu);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800598}
599
Paolo Bonzinid5829ea2012-09-05 17:09:15 +0200600static void pscsi_transport_complete(struct se_cmd *cmd, struct scatterlist *sg,
601 unsigned char *sense_buffer)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800602{
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400603 struct pscsi_dev_virt *pdv = PSCSI_DEV(cmd->se_dev);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800604 struct scsi_device *sd = pdv->pdv_sd;
605 int result;
Christoph Hellwig5787cac2012-04-24 00:25:06 -0400606 struct pscsi_plugin_task *pt = cmd->priv;
Nicholas Bellinger1d2a2cd2012-08-08 00:14:13 +0000607 unsigned char *cdb;
608 /*
609 * Special case for REPORT_LUNs handling where pscsi_plugin_task has
610 * not been allocated because TCM is handling the emulation directly.
611 */
612 if (!pt)
Paolo Bonzinid5829ea2012-09-05 17:09:15 +0200613 return;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800614
Nicholas Bellinger1d2a2cd2012-08-08 00:14:13 +0000615 cdb = &pt->pscsi_cdb[0];
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800616 result = pt->pscsi_result;
617 /*
618 * Hack to make sure that Write-Protect modepage is set if R/O mode is
619 * forced.
620 */
Nicholas Bellinger29a05de2015-03-22 20:42:19 -0700621 if (!cmd->data_length)
Paolo Bonzini306c11b2012-09-07 17:30:32 +0200622 goto after_mode_sense;
623
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800624 if (((cdb[0] == MODE_SENSE) || (cdb[0] == MODE_SENSE_10)) &&
625 (status_byte(result) << 1) == SAM_STAT_GOOD) {
Nicholas Bellinger29a05de2015-03-22 20:42:19 -0700626 bool read_only = target_lun_is_rdonly(cmd);
627
628 if (read_only) {
Christoph Hellwigde103c92012-11-06 12:24:09 -0800629 unsigned char *buf;
630
631 buf = transport_kmap_data_sg(cmd);
632 if (!buf)
633 ; /* XXX: TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE */
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800634
635 if (cdb[0] == MODE_SENSE_10) {
636 if (!(buf[3] & 0x80))
637 buf[3] |= 0x80;
638 } else {
639 if (!(buf[2] & 0x80))
640 buf[2] |= 0x80;
641 }
Andy Grover05d1c7c2011-07-20 19:13:28 +0000642
Christoph Hellwig5787cac2012-04-24 00:25:06 -0400643 transport_kunmap_data_sg(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800644 }
645 }
646after_mode_sense:
647
Paolo Bonzini306c11b2012-09-07 17:30:32 +0200648 if (sd->type != TYPE_TAPE || !cmd->data_length)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800649 goto after_mode_select;
650
651 /*
652 * Hack to correctly obtain the initiator requested blocksize for
653 * TYPE_TAPE. Since this value is dependent upon each tape media,
654 * struct scsi_device->sector_size will not contain the correct value
655 * by default, so we go ahead and set it so
656 * TRANSPORT(dev)->get_blockdev() returns the correct value to the
657 * storage engine.
658 */
659 if (((cdb[0] == MODE_SELECT) || (cdb[0] == MODE_SELECT_10)) &&
660 (status_byte(result) << 1) == SAM_STAT_GOOD) {
661 unsigned char *buf;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800662 u16 bdl;
663 u32 blocksize;
664
665 buf = sg_virt(&sg[0]);
Andy Grover6708bb22011-06-08 10:36:43 -0700666 if (!buf) {
667 pr_err("Unable to get buf for scatterlist\n");
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800668 goto after_mode_select;
669 }
670
671 if (cdb[0] == MODE_SELECT)
672 bdl = (buf[3]);
673 else
674 bdl = (buf[6] << 8) | (buf[7]);
675
676 if (!bdl)
677 goto after_mode_select;
678
679 if (cdb[0] == MODE_SELECT)
680 blocksize = (buf[9] << 16) | (buf[10] << 8) |
681 (buf[11]);
682 else
683 blocksize = (buf[13] << 16) | (buf[14] << 8) |
684 (buf[15]);
685
686 sd->sector_size = blocksize;
687 }
688after_mode_select:
689
Paolo Bonzinid5829ea2012-09-05 17:09:15 +0200690 if (sense_buffer && (status_byte(result) & CHECK_CONDITION)) {
691 memcpy(sense_buffer, pt->pscsi_sense, TRANSPORT_SENSE_BUFFER);
692 cmd->se_cmd_flags |= SCF_TRANSPORT_TASK_SENSE;
693 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800694}
695
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800696enum {
697 Opt_scsi_host_id, Opt_scsi_channel_id, Opt_scsi_target_id,
698 Opt_scsi_lun_id, Opt_err
699};
700
701static match_table_t tokens = {
702 {Opt_scsi_host_id, "scsi_host_id=%d"},
703 {Opt_scsi_channel_id, "scsi_channel_id=%d"},
704 {Opt_scsi_target_id, "scsi_target_id=%d"},
705 {Opt_scsi_lun_id, "scsi_lun_id=%d"},
706 {Opt_err, NULL}
707};
708
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400709static ssize_t pscsi_set_configfs_dev_params(struct se_device *dev,
710 const char *page, ssize_t count)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800711{
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400712 struct pscsi_dev_virt *pdv = PSCSI_DEV(dev);
713 struct pscsi_hba_virt *phv = dev->se_hba->hba_ptr;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800714 char *orig, *ptr, *opts;
715 substring_t args[MAX_OPT_ARGS];
716 int ret = 0, arg, token;
717
718 opts = kstrdup(page, GFP_KERNEL);
719 if (!opts)
720 return -ENOMEM;
721
722 orig = opts;
723
Sebastian Andrzej Siewior90c161b2011-11-23 20:53:17 +0100724 while ((ptr = strsep(&opts, ",\n")) != NULL) {
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800725 if (!*ptr)
726 continue;
727
728 token = match_token(ptr, tokens, args);
729 switch (token) {
730 case Opt_scsi_host_id:
731 if (phv->phv_mode == PHV_LLD_SCSI_HOST_NO) {
Andy Grover6708bb22011-06-08 10:36:43 -0700732 pr_err("PSCSI[%d]: Unable to accept"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800733 " scsi_host_id while phv_mode =="
734 " PHV_LLD_SCSI_HOST_NO\n",
735 phv->phv_host_id);
736 ret = -EINVAL;
737 goto out;
738 }
Joern Engelce31c1b2014-09-02 17:50:00 -0400739 ret = match_int(args, &arg);
740 if (ret)
741 goto out;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800742 pdv->pdv_host_id = arg;
Andy Grover6708bb22011-06-08 10:36:43 -0700743 pr_debug("PSCSI[%d]: Referencing SCSI Host ID:"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800744 " %d\n", phv->phv_host_id, pdv->pdv_host_id);
745 pdv->pdv_flags |= PDF_HAS_VIRT_HOST_ID;
746 break;
747 case Opt_scsi_channel_id:
Joern Engelce31c1b2014-09-02 17:50:00 -0400748 ret = match_int(args, &arg);
749 if (ret)
750 goto out;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800751 pdv->pdv_channel_id = arg;
Andy Grover6708bb22011-06-08 10:36:43 -0700752 pr_debug("PSCSI[%d]: Referencing SCSI Channel"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800753 " ID: %d\n", phv->phv_host_id,
754 pdv->pdv_channel_id);
755 pdv->pdv_flags |= PDF_HAS_CHANNEL_ID;
756 break;
757 case Opt_scsi_target_id:
Joern Engelce31c1b2014-09-02 17:50:00 -0400758 ret = match_int(args, &arg);
759 if (ret)
760 goto out;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800761 pdv->pdv_target_id = arg;
Andy Grover6708bb22011-06-08 10:36:43 -0700762 pr_debug("PSCSI[%d]: Referencing SCSI Target"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800763 " ID: %d\n", phv->phv_host_id,
764 pdv->pdv_target_id);
765 pdv->pdv_flags |= PDF_HAS_TARGET_ID;
766 break;
767 case Opt_scsi_lun_id:
Joern Engelce31c1b2014-09-02 17:50:00 -0400768 ret = match_int(args, &arg);
769 if (ret)
770 goto out;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800771 pdv->pdv_lun_id = arg;
Andy Grover6708bb22011-06-08 10:36:43 -0700772 pr_debug("PSCSI[%d]: Referencing SCSI LUN ID:"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800773 " %d\n", phv->phv_host_id, pdv->pdv_lun_id);
774 pdv->pdv_flags |= PDF_HAS_LUN_ID;
775 break;
776 default:
777 break;
778 }
779 }
780
781out:
782 kfree(orig);
783 return (!ret) ? count : ret;
784}
785
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400786static ssize_t pscsi_show_configfs_dev_params(struct se_device *dev, char *b)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800787{
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400788 struct pscsi_hba_virt *phv = dev->se_hba->hba_ptr;
789 struct pscsi_dev_virt *pdv = PSCSI_DEV(dev);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800790 struct scsi_device *sd = pdv->pdv_sd;
791 unsigned char host_id[16];
792 ssize_t bl;
793 int i;
794
Stefan Hajnoczie6a8a412012-02-23 18:15:26 +0000795 if (phv->phv_mode == PHV_VIRTUAL_HOST_ID)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800796 snprintf(host_id, 16, "%d", pdv->pdv_host_id);
797 else
798 snprintf(host_id, 16, "PHBA Mode");
799
800 bl = sprintf(b, "SCSI Device Bus Location:"
801 " Channel ID: %d Target ID: %d LUN: %d Host ID: %s\n",
802 pdv->pdv_channel_id, pdv->pdv_target_id, pdv->pdv_lun_id,
803 host_id);
804
805 if (sd) {
806 bl += sprintf(b + bl, " ");
807 bl += sprintf(b + bl, "Vendor: ");
808 for (i = 0; i < 8; i++) {
809 if (ISPRINT(sd->vendor[i])) /* printable character? */
810 bl += sprintf(b + bl, "%c", sd->vendor[i]);
811 else
812 bl += sprintf(b + bl, " ");
813 }
814 bl += sprintf(b + bl, " Model: ");
815 for (i = 0; i < 16; i++) {
816 if (ISPRINT(sd->model[i])) /* printable character ? */
817 bl += sprintf(b + bl, "%c", sd->model[i]);
818 else
819 bl += sprintf(b + bl, " ");
820 }
821 bl += sprintf(b + bl, " Rev: ");
822 for (i = 0; i < 4; i++) {
823 if (ISPRINT(sd->rev[i])) /* printable character ? */
824 bl += sprintf(b + bl, "%c", sd->rev[i]);
825 else
826 bl += sprintf(b + bl, " ");
827 }
828 bl += sprintf(b + bl, "\n");
829 }
830 return bl;
831}
832
Christoph Hellwig4246a0b2015-07-20 15:29:37 +0200833static void pscsi_bi_endio(struct bio *bio)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800834{
835 bio_put(bio);
836}
837
Asias He2dbe10a2013-02-27 13:29:30 +0800838static inline struct bio *pscsi_get_bio(int nr_vecs)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800839{
840 struct bio *bio;
841 /*
842 * Use bio_malloc() following the comment in for bio -> struct request
843 * in block/blk-core.c:blk_make_request()
844 */
Asias He2dbe10a2013-02-27 13:29:30 +0800845 bio = bio_kmalloc(GFP_KERNEL, nr_vecs);
Andy Grover6708bb22011-06-08 10:36:43 -0700846 if (!bio) {
847 pr_err("PSCSI: bio_kmalloc() failed\n");
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800848 return NULL;
849 }
850 bio->bi_end_io = pscsi_bi_endio;
851
852 return bio;
853}
854
Christoph Hellwigde103c92012-11-06 12:24:09 -0800855static sense_reason_t
856pscsi_map_sg(struct se_cmd *cmd, struct scatterlist *sgl, u32 sgl_nents,
Christoph Hellwigdd9cf042016-07-19 11:31:52 +0200857 struct request *req)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800858{
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400859 struct pscsi_dev_virt *pdv = PSCSI_DEV(cmd->se_dev);
Christoph Hellwigdd9cf042016-07-19 11:31:52 +0200860 struct bio *bio = NULL;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800861 struct page *page;
862 struct scatterlist *sg;
Christoph Hellwig7a83aa42012-04-23 11:35:31 -0400863 u32 data_len = cmd->data_length, i, len, bytes, off;
Christoph Hellwig5787cac2012-04-24 00:25:06 -0400864 int nr_pages = (cmd->data_length + sgl[0].offset +
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800865 PAGE_SIZE - 1) >> PAGE_SHIFT;
Nicholas Bellinger03e98c92011-11-04 02:36:16 -0700866 int nr_vecs = 0, rc;
Christoph Hellwigdd9cf042016-07-19 11:31:52 +0200867 int rw = (cmd->data_direction == DMA_TO_DEVICE);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800868
Christoph Hellwigdd9cf042016-07-19 11:31:52 +0200869 BUG_ON(!cmd->data_length);
Christoph Hellwig02b1a742011-09-25 14:56:32 -0400870
Andy Grover6708bb22011-06-08 10:36:43 -0700871 pr_debug("PSCSI: nr_pages: %d\n", nr_pages);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800872
Christoph Hellwig5787cac2012-04-24 00:25:06 -0400873 for_each_sg(sgl, sg, sgl_nents, i) {
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800874 page = sg_page(sg);
875 off = sg->offset;
876 len = sg->length;
877
Andy Grover6708bb22011-06-08 10:36:43 -0700878 pr_debug("PSCSI: i: %d page: %p len: %d off: %d\n", i,
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800879 page, len, off);
880
Asias He8f27d482013-03-19 12:55:16 +0800881 /*
882 * We only have one page of data in each sg element,
883 * we can not cross a page boundary.
884 */
885 if (off + len > PAGE_SIZE)
886 goto fail;
887
888 if (len > 0 && data_len > 0) {
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800889 bytes = min_t(unsigned int, len, PAGE_SIZE - off);
890 bytes = min(bytes, data_len);
891
Andy Grover6708bb22011-06-08 10:36:43 -0700892 if (!bio) {
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800893 nr_vecs = min_t(int, BIO_MAX_PAGES, nr_pages);
894 nr_pages -= nr_vecs;
895 /*
896 * Calls bio_kmalloc() and sets bio->bi_end_io()
897 */
Andy Grovera1d8b492011-05-02 17:12:10 -0700898 bio = pscsi_get_bio(nr_vecs);
Andy Grover6708bb22011-06-08 10:36:43 -0700899 if (!bio)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800900 goto fail;
901
902 if (rw)
Mike Christiee742fc32016-06-05 14:32:08 -0500903 bio_set_op_attrs(bio, REQ_OP_WRITE, 0);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800904
Andy Grover6708bb22011-06-08 10:36:43 -0700905 pr_debug("PSCSI: Allocated bio: %p,"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800906 " dir: %s nr_vecs: %d\n", bio,
907 (rw) ? "rw" : "r", nr_vecs);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800908 }
909
Andy Grover6708bb22011-06-08 10:36:43 -0700910 pr_debug("PSCSI: Calling bio_add_pc_page() i: %d"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800911 " bio: %p page: %p len: %d off: %d\n", i, bio,
912 page, len, off);
913
914 rc = bio_add_pc_page(pdv->pdv_sd->request_queue,
915 bio, page, bytes, off);
916 if (rc != bytes)
917 goto fail;
918
Andy Grover6708bb22011-06-08 10:36:43 -0700919 pr_debug("PSCSI: bio->bi_vcnt: %d nr_vecs: %d\n",
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800920 bio->bi_vcnt, nr_vecs);
921
922 if (bio->bi_vcnt > nr_vecs) {
Andy Grover6708bb22011-06-08 10:36:43 -0700923 pr_debug("PSCSI: Reached bio->bi_vcnt max:"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800924 " %d i: %d bio: %p, allocating another"
925 " bio\n", bio->bi_vcnt, i, bio);
Christoph Hellwigdd9cf042016-07-19 11:31:52 +0200926
927 rc = blk_rq_append_bio(req, bio);
928 if (rc) {
929 pr_err("pSCSI: failed to append bio\n");
930 goto fail;
931 }
932
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800933 /*
934 * Clear the pointer so that another bio will
Christoph Hellwigdd9cf042016-07-19 11:31:52 +0200935 * be allocated with pscsi_get_bio() above.
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800936 */
937 bio = NULL;
938 }
939
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800940 data_len -= bytes;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800941 }
942 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800943
Christoph Hellwigdd9cf042016-07-19 11:31:52 +0200944 if (bio) {
945 rc = blk_rq_append_bio(req, bio);
946 if (rc) {
947 pr_err("pSCSI: failed to append bio\n");
948 goto fail;
949 }
950 }
951
Christoph Hellwigde103c92012-11-06 12:24:09 -0800952 return 0;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800953fail:
Christoph Hellwigde103c92012-11-06 12:24:09 -0800954 return TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800955}
956
Christoph Hellwigde103c92012-11-06 12:24:09 -0800957static sense_reason_t
958pscsi_parse_cdb(struct se_cmd *cmd)
Christoph Hellwigd6e01752012-05-20 11:59:14 -0400959{
Christoph Hellwigde103c92012-11-06 12:24:09 -0800960 if (cmd->se_cmd_flags & SCF_BIDI)
961 return TCM_UNSUPPORTED_SCSI_OPCODE;
Christoph Hellwigd6e01752012-05-20 11:59:14 -0400962
Andy Grover7bfea53b2015-05-19 14:44:40 -0700963 return passthrough_parse_cdb(cmd, pscsi_execute_cmd);
Christoph Hellwigd6e01752012-05-20 11:59:14 -0400964}
965
Christoph Hellwigde103c92012-11-06 12:24:09 -0800966static sense_reason_t
967pscsi_execute_cmd(struct se_cmd *cmd)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800968{
Christoph Hellwig0c2ad7d2012-06-17 18:40:52 -0400969 struct scatterlist *sgl = cmd->t_data_sg;
970 u32 sgl_nents = cmd->t_data_nents;
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400971 struct pscsi_dev_virt *pdv = PSCSI_DEV(cmd->se_dev);
Christoph Hellwig5787cac2012-04-24 00:25:06 -0400972 struct pscsi_plugin_task *pt;
Christoph Hellwig02b1a742011-09-25 14:56:32 -0400973 struct request *req;
Christoph Hellwigde103c92012-11-06 12:24:09 -0800974 sense_reason_t ret;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800975
Christoph Hellwig5787cac2012-04-24 00:25:06 -0400976 /*
977 * Dynamically alloc cdb space, since it may be larger than
978 * TCM_MAX_COMMAND_SIZE
979 */
980 pt = kzalloc(sizeof(*pt) + scsi_command_size(cmd->t_task_cdb), GFP_KERNEL);
981 if (!pt) {
Christoph Hellwigde103c92012-11-06 12:24:09 -0800982 return TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE;
Christoph Hellwig5787cac2012-04-24 00:25:06 -0400983 }
984 cmd->priv = pt;
985
Christoph Hellwiged3102c2012-04-23 11:35:29 -0400986 memcpy(pt->pscsi_cdb, cmd->t_task_cdb,
987 scsi_command_size(cmd->t_task_cdb));
Christoph Hellwig485fd0d2011-10-12 11:09:12 -0400988
Christoph Hellwigdd9cf042016-07-19 11:31:52 +0200989 req = blk_get_request(pdv->pdv_sd->request_queue,
990 (cmd->data_direction == DMA_TO_DEVICE),
991 GFP_KERNEL);
992 if (IS_ERR(req)) {
993 pr_err("PSCSI: blk_get_request() failed\n");
994 ret = TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE;
995 goto fail;
996 }
Jens Axboef27b0872014-06-06 07:57:37 -0600997
Christoph Hellwigdd9cf042016-07-19 11:31:52 +0200998 blk_rq_set_block_pc(req);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800999
Christoph Hellwigdd9cf042016-07-19 11:31:52 +02001000 if (sgl) {
1001 ret = pscsi_map_sg(cmd, sgl, sgl_nents, req);
Christoph Hellwigde103c92012-11-06 12:24:09 -08001002 if (ret)
Christoph Hellwigdd9cf042016-07-19 11:31:52 +02001003 goto fail_put_request;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001004 }
1005
Christoph Hellwig02b1a742011-09-25 14:56:32 -04001006 req->end_io = pscsi_req_done;
Christoph Hellwig5787cac2012-04-24 00:25:06 -04001007 req->end_io_data = cmd;
Christoph Hellwig02b1a742011-09-25 14:56:32 -04001008 req->cmd_len = scsi_command_size(pt->pscsi_cdb);
1009 req->cmd = &pt->pscsi_cdb[0];
1010 req->sense = &pt->pscsi_sense[0];
1011 req->sense_len = 0;
1012 if (pdv->pdv_sd->type == TYPE_DISK)
1013 req->timeout = PS_TIMEOUT_DISK;
1014 else
1015 req->timeout = PS_TIMEOUT_OTHER;
1016 req->retries = PS_RETRY;
1017
1018 blk_execute_rq_nowait(pdv->pdv_sd->request_queue, NULL, req,
Christoph Hellwig68d81f42014-11-24 07:07:25 -08001019 (cmd->sam_task_attr == TCM_HEAD_TAG),
Christoph Hellwig02b1a742011-09-25 14:56:32 -04001020 pscsi_req_done);
1021
Nicholas Bellinger03e98c92011-11-04 02:36:16 -07001022 return 0;
Christoph Hellwig02b1a742011-09-25 14:56:32 -04001023
Christoph Hellwigdd9cf042016-07-19 11:31:52 +02001024fail_put_request:
1025 blk_put_request(req);
Christoph Hellwig5787cac2012-04-24 00:25:06 -04001026fail:
1027 kfree(pt);
Christoph Hellwigde103c92012-11-06 12:24:09 -08001028 return ret;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001029}
1030
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001031/* pscsi_get_device_type():
1032 *
1033 *
1034 */
1035static u32 pscsi_get_device_type(struct se_device *dev)
1036{
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -04001037 struct pscsi_dev_virt *pdv = PSCSI_DEV(dev);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001038 struct scsi_device *sd = pdv->pdv_sd;
1039
Nicholas Bellinger215a8fe2015-02-27 03:54:13 -08001040 return (sd) ? sd->type : TYPE_NO_LUN;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001041}
1042
1043static sector_t pscsi_get_blocks(struct se_device *dev)
1044{
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -04001045 struct pscsi_dev_virt *pdv = PSCSI_DEV(dev);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001046
1047 if (pdv->pdv_bd && pdv->pdv_bd->bd_part)
1048 return pdv->pdv_bd->bd_part->nr_sects;
1049
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001050 return 0;
1051}
1052
Christoph Hellwig5787cac2012-04-24 00:25:06 -04001053static void pscsi_req_done(struct request *req, int uptodate)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001054{
Christoph Hellwig5787cac2012-04-24 00:25:06 -04001055 struct se_cmd *cmd = req->end_io_data;
1056 struct pscsi_plugin_task *pt = cmd->priv;
1057
1058 pt->pscsi_result = req->errors;
1059 pt->pscsi_resid = req->resid_len;
1060
1061 cmd->scsi_status = status_byte(pt->pscsi_result) << 1;
1062 if (cmd->scsi_status) {
1063 pr_debug("PSCSI Status Byte exception at cmd: %p CDB:"
1064 " 0x%02x Result: 0x%08x\n", cmd, pt->pscsi_cdb[0],
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001065 pt->pscsi_result);
1066 }
1067
1068 switch (host_byte(pt->pscsi_result)) {
1069 case DID_OK:
Christoph Hellwig5787cac2012-04-24 00:25:06 -04001070 target_complete_cmd(cmd, cmd->scsi_status);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001071 break;
1072 default:
Christoph Hellwig5787cac2012-04-24 00:25:06 -04001073 pr_debug("PSCSI Host Byte exception at cmd: %p CDB:"
1074 " 0x%02x Result: 0x%08x\n", cmd, pt->pscsi_cdb[0],
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001075 pt->pscsi_result);
Christoph Hellwig5787cac2012-04-24 00:25:06 -04001076 target_complete_cmd(cmd, SAM_STAT_CHECK_CONDITION);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001077 break;
1078 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001079
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001080 __blk_put_request(req->q, req);
Christoph Hellwig5787cac2012-04-24 00:25:06 -04001081 kfree(pt);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001082}
1083
Christoph Hellwig0a06d432015-05-10 18:14:56 +02001084static const struct target_backend_ops pscsi_ops = {
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001085 .name = "pscsi",
1086 .owner = THIS_MODULE,
Andy Grovera3541702015-05-19 14:44:41 -07001087 .transport_flags = TRANSPORT_FLAG_PASSTHROUGH,
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001088 .attach_hba = pscsi_attach_hba,
1089 .detach_hba = pscsi_detach_hba,
1090 .pmode_enable_hba = pscsi_pmode_enable_hba,
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -04001091 .alloc_device = pscsi_alloc_device,
1092 .configure_device = pscsi_configure_device,
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001093 .free_device = pscsi_free_device,
1094 .transport_complete = pscsi_transport_complete,
Christoph Hellwigd6e01752012-05-20 11:59:14 -04001095 .parse_cdb = pscsi_parse_cdb,
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001096 .set_configfs_dev_params = pscsi_set_configfs_dev_params,
1097 .show_configfs_dev_params = pscsi_show_configfs_dev_params,
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001098 .get_device_type = pscsi_get_device_type,
1099 .get_blocks = pscsi_get_blocks,
Christoph Hellwig5873c4d2015-05-10 18:14:57 +02001100 .tb_dev_attrib_attrs = passthrough_attrib_attrs,
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001101};
1102
1103static int __init pscsi_module_init(void)
1104{
Christoph Hellwig0a06d432015-05-10 18:14:56 +02001105 return transport_backend_register(&pscsi_ops);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001106}
1107
Asias He63b91d52013-02-27 12:50:56 +08001108static void __exit pscsi_module_exit(void)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001109{
Christoph Hellwig0a06d432015-05-10 18:14:56 +02001110 target_backend_unregister(&pscsi_ops);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001111}
1112
1113MODULE_DESCRIPTION("TCM PSCSI subsystem plugin");
1114MODULE_AUTHOR("nab@Linux-iSCSI.org");
1115MODULE_LICENSE("GPL");
1116
1117module_init(pscsi_module_init);
1118module_exit(pscsi_module_exit);