virtio_scsi.c 25.0 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
/*
 * Virtio SCSI HBA driver
 *
 * Copyright IBM Corp. 2010
 * Copyright Red Hat, Inc. 2011
 *
 * Authors:
 *  Stefan Hajnoczi   <stefanha@linux.vnet.ibm.com>
 *  Paolo Bonzini   <pbonzini@redhat.com>
 *
 * This work is licensed under the terms of the GNU GPL, version 2 or later.
 * See the COPYING file in the top-level directory.
 *
 */

16 17
#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt

18 19 20
#include <linux/module.h>
#include <linux/slab.h>
#include <linux/mempool.h>
21
#include <linux/interrupt.h>
22 23 24 25
#include <linux/virtio.h>
#include <linux/virtio_ids.h>
#include <linux/virtio_config.h>
#include <linux/virtio_scsi.h>
26
#include <linux/cpu.h>
27
#include <linux/blkdev.h>
28 29 30
#include <scsi/scsi_host.h>
#include <scsi/scsi_device.h>
#include <scsi/scsi_cmnd.h>
31
#include <scsi/scsi_tcq.h>
32
#include <scsi/scsi_devinfo.h>
33
#include <linux/seqlock.h>
34
#include <linux/blk-mq-virtio.h>
35 36

#define VIRTIO_SCSI_MEMPOOL_SZ 64
37
#define VIRTIO_SCSI_EVENT_LEN 8
38
#define VIRTIO_SCSI_VQ_BASE 2
39 40 41 42 43 44 45

/* Command queue element */
struct virtio_scsi_cmd {
	struct scsi_cmnd *sc;
	struct completion *comp;
	union {
		struct virtio_scsi_cmd_req       cmd;
46
		struct virtio_scsi_cmd_req_pi    cmd_pi;
47 48 49 50 51 52 53 54 55 56 57
		struct virtio_scsi_ctrl_tmf_req  tmf;
		struct virtio_scsi_ctrl_an_req   an;
	} req;
	union {
		struct virtio_scsi_cmd_resp      cmd;
		struct virtio_scsi_ctrl_tmf_resp tmf;
		struct virtio_scsi_ctrl_an_resp  an;
		struct virtio_scsi_event         evt;
	} resp;
} ____cacheline_aligned_in_smp;

58 59 60 61 62 63
struct virtio_scsi_event_node {
	struct virtio_scsi *vscsi;
	struct virtio_scsi_event event;
	struct work_struct work;
};

64 65 66 67 68 69 70
struct virtio_scsi_vq {
	/* Protects vq */
	spinlock_t vq_lock;

	struct virtqueue *vq;
};

71 72 73
/* Driver instance state */
struct virtio_scsi {
	struct virtio_device *vdev;
74

75 76
	/* Get some buffers ready for event vq */
	struct virtio_scsi_event_node event_list[VIRTIO_SCSI_EVENT_LEN];
77 78 79 80 81 82

	u32 num_queues;

	/* If the affinity hint is set for virtqueues */
	bool affinity_hint_set;

83
	struct hlist_node node;
84

85 86 87
	/* Protected by event_vq lock */
	bool stop_events;

88 89 90
	struct virtio_scsi_vq ctrl_vq;
	struct virtio_scsi_vq event_vq;
	struct virtio_scsi_vq req_vqs[];
91 92 93 94 95 96 97 98 99 100 101 102
};

static struct kmem_cache *virtscsi_cmd_cache;
static mempool_t *virtscsi_cmd_pool;

static inline struct Scsi_Host *virtio_scsi_host(struct virtio_device *vdev)
{
	return vdev->priv;
}

static void virtscsi_compute_resid(struct scsi_cmnd *sc, u32 resid)
{
103
	if (resid)
104 105 106 107 108 109 110 111
		scsi_set_resid(sc, resid);
}

/**
 * virtscsi_complete_cmd - finish a scsi_cmd and invoke scsi_done
 *
 * Called with vq_lock held.
 */
112
static void virtscsi_complete_cmd(struct virtio_scsi *vscsi, void *buf)
113 114 115 116 117 118 119 120 121 122
{
	struct virtio_scsi_cmd *cmd = buf;
	struct scsi_cmnd *sc = cmd->sc;
	struct virtio_scsi_cmd_resp *resp = &cmd->resp.cmd;

	dev_dbg(&sc->device->sdev_gendev,
		"cmd %p response %u status %#02x sense_len %u\n",
		sc, resp->response, resp->status, resp->sense_len);

	sc->result = resp->status;
M
Michael S. Tsirkin 已提交
123
	virtscsi_compute_resid(sc, virtio32_to_cpu(vscsi->vdev, resp->resid));
124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160
	switch (resp->response) {
	case VIRTIO_SCSI_S_OK:
		set_host_byte(sc, DID_OK);
		break;
	case VIRTIO_SCSI_S_OVERRUN:
		set_host_byte(sc, DID_ERROR);
		break;
	case VIRTIO_SCSI_S_ABORTED:
		set_host_byte(sc, DID_ABORT);
		break;
	case VIRTIO_SCSI_S_BAD_TARGET:
		set_host_byte(sc, DID_BAD_TARGET);
		break;
	case VIRTIO_SCSI_S_RESET:
		set_host_byte(sc, DID_RESET);
		break;
	case VIRTIO_SCSI_S_BUSY:
		set_host_byte(sc, DID_BUS_BUSY);
		break;
	case VIRTIO_SCSI_S_TRANSPORT_FAILURE:
		set_host_byte(sc, DID_TRANSPORT_DISRUPTED);
		break;
	case VIRTIO_SCSI_S_TARGET_FAILURE:
		set_host_byte(sc, DID_TARGET_FAILURE);
		break;
	case VIRTIO_SCSI_S_NEXUS_FAILURE:
		set_host_byte(sc, DID_NEXUS_FAILURE);
		break;
	default:
		scmd_printk(KERN_WARNING, sc, "Unknown response %d",
			    resp->response);
		/* fall through */
	case VIRTIO_SCSI_S_FAILURE:
		set_host_byte(sc, DID_ERROR);
		break;
	}

M
Michael S. Tsirkin 已提交
161 162
	WARN_ON(virtio32_to_cpu(vscsi->vdev, resp->sense_len) >
		VIRTIO_SCSI_SENSE_SIZE);
163 164
	if (sc->sense_buffer) {
		memcpy(sc->sense_buffer, resp->sense,
M
Michael S. Tsirkin 已提交
165 166 167
		       min_t(u32,
			     virtio32_to_cpu(vscsi->vdev, resp->sense_len),
			     VIRTIO_SCSI_SENSE_SIZE));
168 169 170 171 172 173 174
		if (resp->sense_len)
			set_driver_byte(sc, DRIVER_SENSE);
	}

	sc->scsi_done(sc);
}

175 176
static void virtscsi_vq_done(struct virtio_scsi *vscsi,
			     struct virtio_scsi_vq *virtscsi_vq,
177
			     void (*fn)(struct virtio_scsi *vscsi, void *buf))
178 179 180
{
	void *buf;
	unsigned int len;
181 182
	unsigned long flags;
	struct virtqueue *vq = virtscsi_vq->vq;
183

184
	spin_lock_irqsave(&virtscsi_vq->vq_lock, flags);
185 186 187
	do {
		virtqueue_disable_cb(vq);
		while ((buf = virtqueue_get_buf(vq, &len)) != NULL)
188
			fn(vscsi, buf);
189 190 191

		if (unlikely(virtqueue_is_broken(vq)))
			break;
192
	} while (!virtqueue_enable_cb(vq));
193
	spin_unlock_irqrestore(&virtscsi_vq->vq_lock, flags);
194 195 196 197
}

static void virtscsi_req_done(struct virtqueue *vq)
{
198 199
	struct Scsi_Host *sh = virtio_scsi_host(vq->vdev);
	struct virtio_scsi *vscsi = shost_priv(sh);
200 201 202 203
	int index = vq->index - VIRTIO_SCSI_VQ_BASE;
	struct virtio_scsi_vq *req_vq = &vscsi->req_vqs[index];

	virtscsi_vq_done(vscsi, req_vq, virtscsi_complete_cmd);
204 205
};

206 207 208 209 210 211 212 213 214 215
static void virtscsi_poll_requests(struct virtio_scsi *vscsi)
{
	int i, num_vqs;

	num_vqs = vscsi->num_queues;
	for (i = 0; i < num_vqs; i++)
		virtscsi_vq_done(vscsi, &vscsi->req_vqs[i],
				 virtscsi_complete_cmd);
}

216
static void virtscsi_complete_free(struct virtio_scsi *vscsi, void *buf)
217 218 219 220
{
	struct virtio_scsi_cmd *cmd = buf;

	if (cmd->comp)
221
		complete(cmd->comp);
222 223 224 225
}

static void virtscsi_ctrl_done(struct virtqueue *vq)
{
226 227 228
	struct Scsi_Host *sh = virtio_scsi_host(vq->vdev);
	struct virtio_scsi *vscsi = shost_priv(sh);

229
	virtscsi_vq_done(vscsi, &vscsi->ctrl_vq, virtscsi_complete_free);
230 231
};

232 233
static void virtscsi_handle_event(struct work_struct *work);

234 235 236
static int virtscsi_kick_event(struct virtio_scsi *vscsi,
			       struct virtio_scsi_event_node *event_node)
{
237
	int err;
238 239 240
	struct scatterlist sg;
	unsigned long flags;

241
	INIT_WORK(&event_node->work, virtscsi_handle_event);
242
	sg_init_one(&sg, &event_node->event, sizeof(struct virtio_scsi_event));
243 244 245

	spin_lock_irqsave(&vscsi->event_vq.vq_lock, flags);

246 247
	err = virtqueue_add_inbuf(vscsi->event_vq.vq, &sg, 1, event_node,
				  GFP_ATOMIC);
248
	if (!err)
249 250 251 252
		virtqueue_kick(vscsi->event_vq.vq);

	spin_unlock_irqrestore(&vscsi->event_vq.vq_lock, flags);

253
	return err;
254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271
}

static int virtscsi_kick_event_all(struct virtio_scsi *vscsi)
{
	int i;

	for (i = 0; i < VIRTIO_SCSI_EVENT_LEN; i++) {
		vscsi->event_list[i].vscsi = vscsi;
		virtscsi_kick_event(vscsi, &vscsi->event_list[i]);
	}

	return 0;
}

static void virtscsi_cancel_event_work(struct virtio_scsi *vscsi)
{
	int i;

272 273 274 275 276
	/* Stop scheduling work before calling cancel_work_sync.  */
	spin_lock_irq(&vscsi->event_vq.vq_lock);
	vscsi->stop_events = true;
	spin_unlock_irq(&vscsi->event_vq.vq_lock);

277 278 279 280 281
	for (i = 0; i < VIRTIO_SCSI_EVENT_LEN; i++)
		cancel_work_sync(&vscsi->event_list[i].work);
}

static void virtscsi_handle_transport_reset(struct virtio_scsi *vscsi,
282
					    struct virtio_scsi_event *event)
283 284 285 286 287 288
{
	struct scsi_device *sdev;
	struct Scsi_Host *shost = virtio_scsi_host(vscsi->vdev);
	unsigned int target = event->lun[1];
	unsigned int lun = (event->lun[2] << 8) | event->lun[3];

M
Michael S. Tsirkin 已提交
289
	switch (virtio32_to_cpu(vscsi->vdev, event->reason)) {
290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307
	case VIRTIO_SCSI_EVT_RESET_RESCAN:
		scsi_add_device(shost, 0, target, lun);
		break;
	case VIRTIO_SCSI_EVT_RESET_REMOVED:
		sdev = scsi_device_lookup(shost, 0, target, lun);
		if (sdev) {
			scsi_remove_device(sdev);
			scsi_device_put(sdev);
		} else {
			pr_err("SCSI device %d 0 %d %d not found\n",
				shost->host_no, target, lun);
		}
		break;
	default:
		pr_info("Unsupport virtio scsi event reason %x\n", event->reason);
	}
}

308 309 310 311 312 313 314
static void virtscsi_handle_param_change(struct virtio_scsi *vscsi,
					 struct virtio_scsi_event *event)
{
	struct scsi_device *sdev;
	struct Scsi_Host *shost = virtio_scsi_host(vscsi->vdev);
	unsigned int target = event->lun[1];
	unsigned int lun = (event->lun[2] << 8) | event->lun[3];
M
Michael S. Tsirkin 已提交
315 316
	u8 asc = virtio32_to_cpu(vscsi->vdev, event->reason) & 255;
	u8 ascq = virtio32_to_cpu(vscsi->vdev, event->reason) >> 8;
317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332

	sdev = scsi_device_lookup(shost, 0, target, lun);
	if (!sdev) {
		pr_err("SCSI device %d 0 %d %d not found\n",
			shost->host_no, target, lun);
		return;
	}

	/* Handle "Parameters changed", "Mode parameters changed", and
	   "Capacity data has changed".  */
	if (asc == 0x2a && (ascq == 0x00 || ascq == 0x01 || ascq == 0x09))
		scsi_rescan_device(&sdev->sdev_gendev);

	scsi_device_put(sdev);
}

333 334 335 336 337 338 339
static void virtscsi_handle_event(struct work_struct *work)
{
	struct virtio_scsi_event_node *event_node =
		container_of(work, struct virtio_scsi_event_node, work);
	struct virtio_scsi *vscsi = event_node->vscsi;
	struct virtio_scsi_event *event = &event_node->event;

M
Michael S. Tsirkin 已提交
340 341 342 343
	if (event->event &
	    cpu_to_virtio32(vscsi->vdev, VIRTIO_SCSI_T_EVENTS_MISSED)) {
		event->event &= ~cpu_to_virtio32(vscsi->vdev,
						   VIRTIO_SCSI_T_EVENTS_MISSED);
344 345 346
		scsi_scan_host(virtio_scsi_host(vscsi->vdev));
	}

M
Michael S. Tsirkin 已提交
347
	switch (virtio32_to_cpu(vscsi->vdev, event->event)) {
348 349 350 351 352
	case VIRTIO_SCSI_T_NO_EVENT:
		break;
	case VIRTIO_SCSI_T_TRANSPORT_RESET:
		virtscsi_handle_transport_reset(vscsi, event);
		break;
353 354 355
	case VIRTIO_SCSI_T_PARAM_CHANGE:
		virtscsi_handle_param_change(vscsi, event);
		break;
356 357 358 359 360 361
	default:
		pr_err("Unsupport virtio scsi event %x\n", event->event);
	}
	virtscsi_kick_event(vscsi, event_node);
}

362
static void virtscsi_complete_event(struct virtio_scsi *vscsi, void *buf)
363 364 365
{
	struct virtio_scsi_event_node *event_node = buf;

366 367
	if (!vscsi->stop_events)
		queue_work(system_freezable_wq, &event_node->work);
368 369
}

370 371
static void virtscsi_event_done(struct virtqueue *vq)
{
372 373 374
	struct Scsi_Host *sh = virtio_scsi_host(vq->vdev);
	struct virtio_scsi *vscsi = shost_priv(sh);

375
	virtscsi_vq_done(vscsi, &vscsi->event_vq, virtscsi_complete_event);
376 377 378
};

/**
379 380
 * virtscsi_add_cmd - add a virtio_scsi_cmd to a virtqueue
 * @vq		: the struct virtqueue we're talking about
381 382 383 384
 * @cmd		: command structure
 * @req_size	: size of the request buffer
 * @resp_size	: size of the response buffer
 */
385 386
static int virtscsi_add_cmd(struct virtqueue *vq,
			    struct virtio_scsi_cmd *cmd,
387
			    size_t req_size, size_t resp_size)
388 389
{
	struct scsi_cmnd *sc = cmd->sc;
390
	struct scatterlist *sgs[6], req, resp;
391 392 393 394 395 396 397
	struct sg_table *out, *in;
	unsigned out_num = 0, in_num = 0;

	out = in = NULL;

	if (sc && sc->sc_data_direction != DMA_NONE) {
		if (sc->sc_data_direction != DMA_FROM_DEVICE)
398
			out = &sc->sdb.table;
399
		if (sc->sc_data_direction != DMA_TO_DEVICE)
400
			in = &sc->sdb.table;
401
	}
402 403

	/* Request header.  */
404 405
	sg_init_one(&req, &cmd->req, req_size);
	sgs[out_num++] = &req;
406 407

	/* Data-out buffer.  */
408 409 410 411
	if (out) {
		/* Place WRITE protection SGLs before Data OUT payload */
		if (scsi_prot_sg_count(sc))
			sgs[out_num++] = scsi_prot_sglist(sc);
412
		sgs[out_num++] = out->sgl;
413
	}
414 415

	/* Response header.  */
416 417
	sg_init_one(&resp, &cmd->resp, resp_size);
	sgs[out_num + in_num++] = &resp;
418 419

	/* Data-in buffer */
420 421 422 423
	if (in) {
		/* Place READ protection SGLs before Data IN payload */
		if (scsi_prot_sg_count(sc))
			sgs[out_num + in_num++] = scsi_prot_sglist(sc);
424
		sgs[out_num + in_num++] = in->sgl;
425
	}
426

427
	return virtqueue_add_sgs(vq, sgs, out_num, in_num, cmd, GFP_ATOMIC);
428 429
}

430
static int virtscsi_kick_cmd(struct virtio_scsi_vq *vq,
431
			     struct virtio_scsi_cmd *cmd,
432
			     size_t req_size, size_t resp_size)
433 434
{
	unsigned long flags;
435 436
	int err;
	bool needs_kick = false;
437

438
	spin_lock_irqsave(&vq->vq_lock, flags);
439
	err = virtscsi_add_cmd(vq->vq, cmd, req_size, resp_size);
440 441
	if (!err)
		needs_kick = virtqueue_kick_prepare(vq->vq);
442

443
	spin_unlock_irqrestore(&vq->vq_lock, flags);
444

445
	if (needs_kick)
446
		virtqueue_notify(vq->vq);
447
	return err;
448 449
}

M
Michael S. Tsirkin 已提交
450 451
static void virtio_scsi_init_hdr(struct virtio_device *vdev,
				 struct virtio_scsi_cmd_req *cmd,
452 453 454 455 456 457
				 struct scsi_cmnd *sc)
{
	cmd->lun[0] = 1;
	cmd->lun[1] = sc->device->id;
	cmd->lun[2] = (sc->device->lun >> 8) | 0x40;
	cmd->lun[3] = sc->device->lun & 0xff;
M
Michael S. Tsirkin 已提交
458
	cmd->tag = cpu_to_virtio64(vdev, (unsigned long)sc);
459 460 461 462 463
	cmd->task_attr = VIRTIO_SCSI_S_SIMPLE;
	cmd->prio = 0;
	cmd->crn = 0;
}

464
#ifdef CONFIG_BLK_DEV_INTEGRITY
M
Michael S. Tsirkin 已提交
465 466
static void virtio_scsi_init_hdr_pi(struct virtio_device *vdev,
				    struct virtio_scsi_cmd_req_pi *cmd_pi,
467 468 469 470 471
				    struct scsi_cmnd *sc)
{
	struct request *rq = sc->request;
	struct blk_integrity *bi;

M
Michael S. Tsirkin 已提交
472
	virtio_scsi_init_hdr(vdev, (struct virtio_scsi_cmd_req *)cmd_pi, sc);
473 474 475 476 477 478 479

	if (!rq || !scsi_prot_sg_count(sc))
		return;

	bi = blk_get_integrity(rq->rq_disk);

	if (sc->sc_data_direction == DMA_TO_DEVICE)
M
Michael S. Tsirkin 已提交
480
		cmd_pi->pi_bytesout = cpu_to_virtio32(vdev,
481 482
						      bio_integrity_bytes(bi,
							blk_rq_sectors(rq)));
483
	else if (sc->sc_data_direction == DMA_FROM_DEVICE)
M
Michael S. Tsirkin 已提交
484
		cmd_pi->pi_bytesin = cpu_to_virtio32(vdev,
485 486
						     bio_integrity_bytes(bi,
							blk_rq_sectors(rq)));
487
}
488
#endif
489

490 491 492 493 494 495 496 497 498 499
static struct virtio_scsi_vq *virtscsi_pick_vq_mq(struct virtio_scsi *vscsi,
						  struct scsi_cmnd *sc)
{
	u32 tag = blk_mq_unique_tag(sc->request);
	u16 hwq = blk_mq_unique_tag_to_hwq(tag);

	return &vscsi->req_vqs[hwq];
}

static int virtscsi_queuecommand(struct Scsi_Host *shost,
500
				 struct scsi_cmnd *sc)
501
{
502 503
	struct virtio_scsi *vscsi = shost_priv(shost);
	struct virtio_scsi_vq *req_vq = virtscsi_pick_vq_mq(vscsi, sc);
C
Christoph Hellwig 已提交
504
	struct virtio_scsi_cmd *cmd = scsi_cmd_priv(sc);
505
	unsigned long flags;
506
	int req_size;
507
	int ret;
C
Christoph Hellwig 已提交
508

509 510 511 512 513
	BUG_ON(scsi_sg_count(sc) > shost->sg_tablesize);

	/* TODO: check feature bit and fail if unsupported?  */
	BUG_ON(sc->sc_data_direction == DMA_BIDIRECTIONAL);

514 515 516 517 518 519 520
	dev_dbg(&sc->device->sdev_gendev,
		"cmd %p CDB: %#02x\n", sc, sc->cmnd[0]);

	cmd->sc = sc;

	BUG_ON(sc->cmd_len > VIRTIO_SCSI_CDB_SIZE);

521
#ifdef CONFIG_BLK_DEV_INTEGRITY
522
	if (virtio_has_feature(vscsi->vdev, VIRTIO_SCSI_F_T10_PI)) {
M
Michael S. Tsirkin 已提交
523
		virtio_scsi_init_hdr_pi(vscsi->vdev, &cmd->req.cmd_pi, sc);
524 525
		memcpy(cmd->req.cmd_pi.cdb, sc->cmnd, sc->cmd_len);
		req_size = sizeof(cmd->req.cmd_pi);
526 527 528
	} else
#endif
	{
M
Michael S. Tsirkin 已提交
529
		virtio_scsi_init_hdr(vscsi->vdev, &cmd->req.cmd, sc);
530 531 532 533
		memcpy(cmd->req.cmd.cdb, sc->cmnd, sc->cmd_len);
		req_size = sizeof(cmd->req.cmd);
	}

534 535 536 537 538 539 540
	ret = virtscsi_kick_cmd(req_vq, cmd, req_size, sizeof(cmd->resp.cmd));
	if (ret == -EIO) {
		cmd->resp.cmd.response = VIRTIO_SCSI_S_BAD_TARGET;
		spin_lock_irqsave(&req_vq->vq_lock, flags);
		virtscsi_complete_cmd(vscsi, cmd);
		spin_unlock_irqrestore(&req_vq->vq_lock, flags);
	} else if (ret != 0) {
C
Christoph Hellwig 已提交
541
		return SCSI_MLQUEUE_HOST_BUSY;
542
	}
C
Christoph Hellwig 已提交
543
	return 0;
544 545 546 547 548
}

static int virtscsi_tmf(struct virtio_scsi *vscsi, struct virtio_scsi_cmd *cmd)
{
	DECLARE_COMPLETION_ONSTACK(comp);
549
	int ret = FAILED;
550 551

	cmd->comp = &comp;
552
	if (virtscsi_kick_cmd(&vscsi->ctrl_vq, cmd,
553
			      sizeof cmd->req.tmf, sizeof cmd->resp.tmf) < 0)
554
		goto out;
555 556

	wait_for_completion(&comp);
557 558 559
	if (cmd->resp.tmf.response == VIRTIO_SCSI_S_OK ||
	    cmd->resp.tmf.response == VIRTIO_SCSI_S_FUNCTION_SUCCEEDED)
		ret = SUCCESS;
560

561 562 563 564 565 566 567 568 569 570 571 572
	/*
	 * The spec guarantees that all requests related to the TMF have
	 * been completed, but the callback might not have run yet if
	 * we're using independent interrupts (e.g. MSI).  Poll the
	 * virtqueues once.
	 *
	 * In the abort case, sc->scsi_done will do nothing, because
	 * the block layer must have detected a timeout and as a result
	 * REQ_ATOM_COMPLETE has been set.
	 */
	virtscsi_poll_requests(vscsi);

573 574 575
out:
	mempool_free(cmd, virtscsi_cmd_pool);
	return ret;
576 577 578 579 580 581 582 583 584 585 586 587 588 589 590
}

static int virtscsi_device_reset(struct scsi_cmnd *sc)
{
	struct virtio_scsi *vscsi = shost_priv(sc->device->host);
	struct virtio_scsi_cmd *cmd;

	sdev_printk(KERN_INFO, sc->device, "device reset\n");
	cmd = mempool_alloc(virtscsi_cmd_pool, GFP_NOIO);
	if (!cmd)
		return FAILED;

	memset(cmd, 0, sizeof(*cmd));
	cmd->req.tmf = (struct virtio_scsi_ctrl_tmf_req){
		.type = VIRTIO_SCSI_T_TMF,
M
Michael S. Tsirkin 已提交
591 592
		.subtype = cpu_to_virtio32(vscsi->vdev,
					     VIRTIO_SCSI_T_TMF_LOGICAL_UNIT_RESET),
593 594 595 596 597 598 599 600
		.lun[0] = 1,
		.lun[1] = sc->device->id,
		.lun[2] = (sc->device->lun >> 8) | 0x40,
		.lun[3] = sc->device->lun & 0xff,
	};
	return virtscsi_tmf(vscsi, cmd);
}

601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622
static int virtscsi_device_alloc(struct scsi_device *sdevice)
{
	/*
	 * Passed through SCSI targets (e.g. with qemu's 'scsi-block')
	 * may have transfer limits which come from the host SCSI
	 * controller or something on the host side other than the
	 * target itself.
	 *
	 * To make this work properly, the hypervisor can adjust the
	 * target's VPD information to advertise these limits.  But
	 * for that to work, the guest has to look at the VPD pages,
	 * which we won't do by default if it is an SPC-2 device, even
	 * if it does actually support it.
	 *
	 * So, set the blist to always try to read the VPD pages.
	 */
	sdevice->sdev_bflags = BLIST_TRY_VPD_PAGES;

	return 0;
}


623 624 625 626 627
/**
 * virtscsi_change_queue_depth() - Change a virtscsi target's queue depth
 * @sdev:	Virtscsi target whose queue depth to change
 * @qdepth:	New queue depth
 */
628
static int virtscsi_change_queue_depth(struct scsi_device *sdev, int qdepth)
629 630 631 632
{
	struct Scsi_Host *shost = sdev->host;
	int max_depth = shost->cmd_per_lun;

633
	return scsi_change_queue_depth(sdev, min(max_depth, qdepth));
634 635
}

636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653
static int virtscsi_abort(struct scsi_cmnd *sc)
{
	struct virtio_scsi *vscsi = shost_priv(sc->device->host);
	struct virtio_scsi_cmd *cmd;

	scmd_printk(KERN_INFO, sc, "abort\n");
	cmd = mempool_alloc(virtscsi_cmd_pool, GFP_NOIO);
	if (!cmd)
		return FAILED;

	memset(cmd, 0, sizeof(*cmd));
	cmd->req.tmf = (struct virtio_scsi_ctrl_tmf_req){
		.type = VIRTIO_SCSI_T_TMF,
		.subtype = VIRTIO_SCSI_T_TMF_ABORT_TASK,
		.lun[0] = 1,
		.lun[1] = sc->device->id,
		.lun[2] = (sc->device->lun >> 8) | 0x40,
		.lun[3] = sc->device->lun & 0xff,
M
Michael S. Tsirkin 已提交
654
		.tag = cpu_to_virtio64(vscsi->vdev, (unsigned long)sc),
655 656 657 658
	};
	return virtscsi_tmf(vscsi, cmd);
}

659 660 661
static int virtscsi_map_queues(struct Scsi_Host *shost)
{
	struct virtio_scsi *vscsi = shost_priv(shost);
J
Jens Axboe 已提交
662
	struct blk_mq_queue_map *qmap = &shost->tag_set.map[0];
663

J
Jens Axboe 已提交
664
	return blk_mq_virtio_map_queues(qmap, vscsi->vdev, 2);
665 666
}

667 668 669 670 671 672 673 674 675 676
/*
 * The host guarantees to respond to each command, although I/O
 * latencies might be higher than on bare metal.  Reset the timer
 * unconditionally to give the host a chance to perform EH.
 */
static enum blk_eh_timer_return virtscsi_eh_timed_out(struct scsi_cmnd *scmnd)
{
	return BLK_EH_RESET_TIMER;
}

677
static struct scsi_host_template virtscsi_host_template = {
678 679 680 681
	.module = THIS_MODULE,
	.name = "Virtio SCSI HBA",
	.proc_name = "virtio_scsi",
	.this_id = -1,
C
Christoph Hellwig 已提交
682
	.cmd_size = sizeof(struct virtio_scsi_cmd),
683
	.queuecommand = virtscsi_queuecommand,
684
	.change_queue_depth = virtscsi_change_queue_depth,
685 686
	.eh_abort_handler = virtscsi_abort,
	.eh_device_reset_handler = virtscsi_device_reset,
687
	.eh_timed_out = virtscsi_eh_timed_out,
688
	.slave_alloc = virtscsi_device_alloc,
689 690

	.dma_boundary = UINT_MAX,
691
	.map_queues = virtscsi_map_queues,
692
	.track_queue_depth = 1,
693
	.force_blk_mq = 1,
694 695 696 697 698
};

#define virtscsi_config_get(vdev, fld) \
	({ \
		typeof(((struct virtio_scsi_config *)0)->fld) __val; \
699
		virtio_cread(vdev, struct virtio_scsi_config, fld, &__val); \
700 701 702 703
		__val; \
	})

#define virtscsi_config_set(vdev, fld, val) \
704
	do { \
705
		typeof(((struct virtio_scsi_config *)0)->fld) __val = (val); \
706 707
		virtio_cwrite(vdev, struct virtio_scsi_config, fld, &__val); \
	} while(0)
708

709 710 711 712 713 714 715
static void virtscsi_init_vq(struct virtio_scsi_vq *virtscsi_vq,
			     struct virtqueue *vq)
{
	spin_lock_init(&virtscsi_vq->vq_lock);
	virtscsi_vq->vq = vq;
}

716 717 718 719 720 721 722
static void virtscsi_remove_vqs(struct virtio_device *vdev)
{
	/* Stop all the virtqueues. */
	vdev->config->reset(vdev);
	vdev->config->del_vqs(vdev);
}

723
static int virtscsi_init(struct virtio_device *vdev,
724
			 struct virtio_scsi *vscsi)
725 726
{
	int err;
727 728 729 730 731
	u32 i;
	u32 num_vqs;
	vq_callback_t **callbacks;
	const char **names;
	struct virtqueue **vqs;
732
	struct irq_affinity desc = { .pre_vectors = 2 };
733 734

	num_vqs = vscsi->num_queues + VIRTIO_SCSI_VQ_BASE;
735 736 737 738
	vqs = kmalloc_array(num_vqs, sizeof(struct virtqueue *), GFP_KERNEL);
	callbacks = kmalloc_array(num_vqs, sizeof(vq_callback_t *),
				  GFP_KERNEL);
	names = kmalloc_array(num_vqs, sizeof(char *), GFP_KERNEL);
739 740 741 742 743

	if (!callbacks || !vqs || !names) {
		err = -ENOMEM;
		goto out;
	}
744

745 746 747 748 749 750 751 752
	callbacks[0] = virtscsi_ctrl_done;
	callbacks[1] = virtscsi_event_done;
	names[0] = "control";
	names[1] = "event";
	for (i = VIRTIO_SCSI_VQ_BASE; i < num_vqs; i++) {
		callbacks[i] = virtscsi_req_done;
		names[i] = "request";
	}
753 754

	/* Discover virtqueues and write information to configuration.  */
M
Michael S. Tsirkin 已提交
755
	err = virtio_find_vqs(vdev, num_vqs, vqs, callbacks, names, &desc);
756
	if (err)
757
		goto out;
758

759 760
	virtscsi_init_vq(&vscsi->ctrl_vq, vqs[0]);
	virtscsi_init_vq(&vscsi->event_vq, vqs[1]);
761 762 763 764
	for (i = VIRTIO_SCSI_VQ_BASE; i < num_vqs; i++)
		virtscsi_init_vq(&vscsi->req_vqs[i - VIRTIO_SCSI_VQ_BASE],
				 vqs[i]);

765 766
	virtscsi_config_set(vdev, cdb_size, VIRTIO_SCSI_CDB_SIZE);
	virtscsi_config_set(vdev, sense_size, VIRTIO_SCSI_SENSE_SIZE);
767

768 769 770 771 772 773 774 775
	err = 0;

out:
	kfree(names);
	kfree(callbacks);
	kfree(vqs);
	if (err)
		virtscsi_remove_vqs(vdev);
776
	return err;
777 778
}

779
static int virtscsi_probe(struct virtio_device *vdev)
780 781 782
{
	struct Scsi_Host *shost;
	struct virtio_scsi *vscsi;
783
	int err;
784
	u32 sg_elems, num_targets;
785
	u32 cmd_per_lun;
786 787
	u32 num_queues;

788 789 790 791 792 793
	if (!vdev->config->get) {
		dev_err(&vdev->dev, "%s failure: config access disabled\n",
			__func__);
		return -EINVAL;
	}

794 795
	/* We need to know how many queues before we allocate. */
	num_queues = virtscsi_config_get(vdev, num_queues) ? : 1;
796

797
	num_targets = virtscsi_config_get(vdev, max_target) + 1;
798

799
	shost = scsi_host_alloc(&virtscsi_host_template,
800
		sizeof(*vscsi) + sizeof(vscsi->req_vqs[0]) * num_queues);
801 802 803
	if (!shost)
		return -ENOMEM;

804
	sg_elems = virtscsi_config_get(vdev, seg_max) ?: 1;
805 806 807
	shost->sg_tablesize = sg_elems;
	vscsi = shost_priv(shost);
	vscsi->vdev = vdev;
808
	vscsi->num_queues = num_queues;
809 810
	vdev->priv = shost;

811
	err = virtscsi_init(vdev, vscsi);
812 813 814
	if (err)
		goto virtscsi_init_failed;

815 816
	shost->can_queue = virtqueue_get_vring_size(vscsi->req_vqs[0].vq);

817 818 819
	cmd_per_lun = virtscsi_config_get(vdev, cmd_per_lun) ?: 1;
	shost->cmd_per_lun = min_t(u32, cmd_per_lun, shost->can_queue);
	shost->max_sectors = virtscsi_config_get(vdev, max_sectors) ?: 0xFFFF;
820 821 822 823 824

	/* LUNs > 256 are reported with format 1, so they go in the range
	 * 16640-32767.
	 */
	shost->max_lun = virtscsi_config_get(vdev, max_lun) + 1 + 0x4000;
825
	shost->max_id = num_targets;
826 827
	shost->max_channel = 0;
	shost->max_cmd_len = VIRTIO_SCSI_CDB_SIZE;
828
	shost->nr_hw_queues = num_queues;
829

830
#ifdef CONFIG_BLK_DEV_INTEGRITY
831
	if (virtio_has_feature(vdev, VIRTIO_SCSI_F_T10_PI)) {
832 833
		int host_prot;

834 835 836 837 838 839 840
		host_prot = SHOST_DIF_TYPE1_PROTECTION | SHOST_DIF_TYPE2_PROTECTION |
			    SHOST_DIF_TYPE3_PROTECTION | SHOST_DIX_TYPE1_PROTECTION |
			    SHOST_DIX_TYPE2_PROTECTION | SHOST_DIX_TYPE3_PROTECTION;

		scsi_host_set_prot(shost, host_prot);
		scsi_host_set_guard(shost, SHOST_DIX_GUARD_CRC);
	}
841
#endif
842

843 844 845
	err = scsi_add_host(shost, &vdev->dev);
	if (err)
		goto scsi_add_host_failed;
846 847 848 849 850 851 852

	virtio_device_ready(vdev);

	if (virtio_has_feature(vdev, VIRTIO_SCSI_F_HOTPLUG))
		virtscsi_kick_event_all(vscsi);

	scsi_scan_host(shost);
853 854 855 856 857 858 859 860 861
	return 0;

scsi_add_host_failed:
	vdev->config->del_vqs(vdev);
virtscsi_init_failed:
	scsi_host_put(shost);
	return err;
}

862
static void virtscsi_remove(struct virtio_device *vdev)
863 864
{
	struct Scsi_Host *shost = virtio_scsi_host(vdev);
865 866 867 868
	struct virtio_scsi *vscsi = shost_priv(shost);

	if (virtio_has_feature(vdev, VIRTIO_SCSI_F_HOTPLUG))
		virtscsi_cancel_event_work(vscsi);
869 870 871 872 873 874

	scsi_remove_host(shost);
	virtscsi_remove_vqs(vdev);
	scsi_host_put(shost);
}

875
#ifdef CONFIG_PM_SLEEP
876 877 878 879 880 881 882 883 884 885
static int virtscsi_freeze(struct virtio_device *vdev)
{
	virtscsi_remove_vqs(vdev);
	return 0;
}

static int virtscsi_restore(struct virtio_device *vdev)
{
	struct Scsi_Host *sh = virtio_scsi_host(vdev);
	struct virtio_scsi *vscsi = shost_priv(sh);
886 887 888 889 890 891
	int err;

	err = virtscsi_init(vdev, vscsi);
	if (err)
		return err;

892 893
	virtio_device_ready(vdev);

894 895
	if (virtio_has_feature(vdev, VIRTIO_SCSI_F_HOTPLUG))
		virtscsi_kick_event_all(vscsi);
896

897
	return err;
898 899 900 901 902 903 904 905
}
#endif

static struct virtio_device_id id_table[] = {
	{ VIRTIO_ID_SCSI, VIRTIO_DEV_ANY_ID },
	{ 0 },
};

906
static unsigned int features[] = {
907 908
	VIRTIO_SCSI_F_HOTPLUG,
	VIRTIO_SCSI_F_CHANGE,
909
#ifdef CONFIG_BLK_DEV_INTEGRITY
910
	VIRTIO_SCSI_F_T10_PI,
911
#endif
912 913
};

914
static struct virtio_driver virtio_scsi_driver = {
915 916
	.feature_table = features,
	.feature_table_size = ARRAY_SIZE(features),
917 918 919 920
	.driver.name = KBUILD_MODNAME,
	.driver.owner = THIS_MODULE,
	.id_table = id_table,
	.probe = virtscsi_probe,
921
#ifdef CONFIG_PM_SLEEP
922 923 924
	.freeze = virtscsi_freeze,
	.restore = virtscsi_restore,
#endif
925
	.remove = virtscsi_remove,
926 927 928 929 930 931 932 933
};

static int __init init(void)
{
	int ret = -ENOMEM;

	virtscsi_cmd_cache = KMEM_CACHE(virtio_scsi_cmd, 0);
	if (!virtscsi_cmd_cache) {
934
		pr_err("kmem_cache_create() for virtscsi_cmd_cache failed\n");
935 936 937 938 939 940 941 942
		goto error;
	}


	virtscsi_cmd_pool =
		mempool_create_slab_pool(VIRTIO_SCSI_MEMPOOL_SZ,
					 virtscsi_cmd_cache);
	if (!virtscsi_cmd_pool) {
943
		pr_err("mempool_create() for virtscsi_cmd_pool failed\n");
944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975
		goto error;
	}
	ret = register_virtio_driver(&virtio_scsi_driver);
	if (ret < 0)
		goto error;

	return 0;

error:
	if (virtscsi_cmd_pool) {
		mempool_destroy(virtscsi_cmd_pool);
		virtscsi_cmd_pool = NULL;
	}
	if (virtscsi_cmd_cache) {
		kmem_cache_destroy(virtscsi_cmd_cache);
		virtscsi_cmd_cache = NULL;
	}
	return ret;
}

static void __exit fini(void)
{
	unregister_virtio_driver(&virtio_scsi_driver);
	mempool_destroy(virtscsi_cmd_pool);
	kmem_cache_destroy(virtscsi_cmd_cache);
}
module_init(init);
module_exit(fini);

MODULE_DEVICE_TABLE(virtio, id_table);
MODULE_DESCRIPTION("Virtio SCSI HBA driver");
MODULE_LICENSE("GPL");