storvsc_drv.c 49.1 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
/*
 * Copyright (c) 2009, Microsoft Corporation.
 *
 * This program is free software; you can redistribute it and/or modify it
 * under the terms and conditions of the GNU General Public License,
 * version 2, as published by the Free Software Foundation.
 *
 * This program is distributed in the hope it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
 * more details.
 *
 * You should have received a copy of the GNU General Public License along with
 * this program; if not, write to the Free Software Foundation, Inc., 59 Temple
 * Place - Suite 330, Boston, MA 02111-1307 USA.
 *
 * Authors:
 *   Haiyang Zhang <haiyangz@microsoft.com>
 *   Hank Janssen  <hjanssen@microsoft.com>
20
 *   K. Y. Srinivasan <kys@microsoft.com>
21
 */
22 23

#include <linux/kernel.h>
24
#include <linux/wait.h>
25 26 27 28 29
#include <linux/sched.h>
#include <linux/completion.h>
#include <linux/string.h>
#include <linux/mm.h>
#include <linux/delay.h>
30
#include <linux/init.h>
31
#include <linux/slab.h>
32 33
#include <linux/module.h>
#include <linux/device.h>
34
#include <linux/hyperv.h>
35
#include <linux/blkdev.h>
36 37 38 39 40 41 42 43
#include <scsi/scsi.h>
#include <scsi/scsi_cmnd.h>
#include <scsi/scsi_host.h>
#include <scsi/scsi_device.h>
#include <scsi/scsi_tcq.h>
#include <scsi/scsi_eh.h>
#include <scsi/scsi_devinfo.h>
#include <scsi/scsi_dbg.h>
44
#include <scsi/scsi_transport_fc.h>
45
#include <scsi/scsi_transport.h>
46

47
/*
48 49 50 51
 * All wire protocol details (storage protocol between the guest and the host)
 * are consolidated here.
 *
 * Begin protocol definitions.
52 53 54 55 56 57 58 59
 */

/*
 * Version history:
 * V1 Beta: 0.1
 * V1 RC < 2008/1/31: 1.0
 * V1 RC > 2008/1/31:  2.0
 * Win7: 4.2
60
 * Win8: 5.1
61 62
 * Win8.1: 6.0
 * Win10: 6.2
63 64
 */

65 66
#define VMSTOR_PROTO_VERSION(MAJOR_, MINOR_)	((((MAJOR_) & 0xff) << 8) | \
						(((MINOR_) & 0xff)))
67

68
#define VMSTOR_PROTO_VERSION_WIN6	VMSTOR_PROTO_VERSION(2, 0)
69 70
#define VMSTOR_PROTO_VERSION_WIN7	VMSTOR_PROTO_VERSION(4, 2)
#define VMSTOR_PROTO_VERSION_WIN8	VMSTOR_PROTO_VERSION(5, 1)
71 72
#define VMSTOR_PROTO_VERSION_WIN8_1	VMSTOR_PROTO_VERSION(6, 0)
#define VMSTOR_PROTO_VERSION_WIN10	VMSTOR_PROTO_VERSION(6, 2)
73 74 75 76 77 78 79 80 81 82 83 84 85

/*  Packet structure describing virtual storage requests. */
enum vstor_packet_operation {
	VSTOR_OPERATION_COMPLETE_IO		= 1,
	VSTOR_OPERATION_REMOVE_DEVICE		= 2,
	VSTOR_OPERATION_EXECUTE_SRB		= 3,
	VSTOR_OPERATION_RESET_LUN		= 4,
	VSTOR_OPERATION_RESET_ADAPTER		= 5,
	VSTOR_OPERATION_RESET_BUS		= 6,
	VSTOR_OPERATION_BEGIN_INITIALIZATION	= 7,
	VSTOR_OPERATION_END_INITIALIZATION	= 8,
	VSTOR_OPERATION_QUERY_PROTOCOL_VERSION	= 9,
	VSTOR_OPERATION_QUERY_PROPERTIES	= 10,
86
	VSTOR_OPERATION_ENUMERATE_BUS		= 11,
87 88 89 90 91 92 93 94 95 96
	VSTOR_OPERATION_FCHBA_DATA              = 12,
	VSTOR_OPERATION_CREATE_SUB_CHANNELS     = 13,
	VSTOR_OPERATION_MAXIMUM                 = 13
};

/*
 * WWN packet for Fibre Channel HBA
 */

struct hv_fc_wwn_packet {
97 98
	u8	primary_active;
	u8	reserved1[3];
99 100 101 102
	u8	primary_port_wwn[8];
	u8	primary_node_wwn[8];
	u8	secondary_port_wwn[8];
	u8	secondary_node_wwn[8];
103 104
};

105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138


/*
 * SRB Flag Bits
 */

#define SRB_FLAGS_QUEUE_ACTION_ENABLE		0x00000002
#define SRB_FLAGS_DISABLE_DISCONNECT		0x00000004
#define SRB_FLAGS_DISABLE_SYNCH_TRANSFER	0x00000008
#define SRB_FLAGS_BYPASS_FROZEN_QUEUE		0x00000010
#define SRB_FLAGS_DISABLE_AUTOSENSE		0x00000020
#define SRB_FLAGS_DATA_IN			0x00000040
#define SRB_FLAGS_DATA_OUT			0x00000080
#define SRB_FLAGS_NO_DATA_TRANSFER		0x00000000
#define SRB_FLAGS_UNSPECIFIED_DIRECTION	(SRB_FLAGS_DATA_IN | SRB_FLAGS_DATA_OUT)
#define SRB_FLAGS_NO_QUEUE_FREEZE		0x00000100
#define SRB_FLAGS_ADAPTER_CACHE_ENABLE		0x00000200
#define SRB_FLAGS_FREE_SENSE_BUFFER		0x00000400

/*
 * This flag indicates the request is part of the workflow for processing a D3.
 */
#define SRB_FLAGS_D3_PROCESSING			0x00000800
#define SRB_FLAGS_IS_ACTIVE			0x00010000
#define SRB_FLAGS_ALLOCATED_FROM_ZONE		0x00020000
#define SRB_FLAGS_SGLIST_FROM_POOL		0x00040000
#define SRB_FLAGS_BYPASS_LOCKED_QUEUE		0x00080000
#define SRB_FLAGS_NO_KEEP_AWAKE			0x00100000
#define SRB_FLAGS_PORT_DRIVER_ALLOCSENSE	0x00200000
#define SRB_FLAGS_PORT_DRIVER_SENSEHASPORT	0x00400000
#define SRB_FLAGS_DONT_START_NEXT_PACKET	0x00800000
#define SRB_FLAGS_PORT_DRIVER_RESERVED		0x0F000000
#define SRB_FLAGS_CLASS_DRIVER_RESERVED		0xF0000000

139 140
#define SP_UNTAGGED			((unsigned char) ~0)
#define SRB_SIMPLE_TAG_REQUEST		0x20
141

142 143 144 145 146
/*
 * Platform neutral description of a scsi request -
 * this remains the same across the write regardless of 32/64 bit
 * note: it's patterned off the SCSI_PASS_THROUGH structure
 */
147
#define STORVSC_MAX_CMD_LEN			0x10
148 149 150 151 152

#define POST_WIN7_STORVSC_SENSE_BUFFER_SIZE	0x14
#define PRE_WIN8_STORVSC_SENSE_BUFFER_SIZE	0x12

#define STORVSC_SENSE_BUFFER_SIZE		0x14
153
#define STORVSC_MAX_BUF_LEN_WITH_PADDING	0x14
154

155 156
/*
 * Sense buffer size changed in win8; have a run-time
157 158 159
 * variable to track the size we should use.  This value will
 * likely change during protocol negotiation but it is valid
 * to start by assuming pre-Win8.
160
 */
161
static int sense_buffer_size = PRE_WIN8_STORVSC_SENSE_BUFFER_SIZE;
162 163

/*
164 165 166 167
 * The storage protocol version is determined during the
 * initial exchange with the host.  It will indicate which
 * storage functionality is available in the host.
*/
168
static int vmstor_proto_version;
169

170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189
#define STORVSC_LOGGING_NONE	0
#define STORVSC_LOGGING_ERROR	1
#define STORVSC_LOGGING_WARN	2

static int logging_level = STORVSC_LOGGING_ERROR;
module_param(logging_level, int, S_IRUGO|S_IWUSR);
MODULE_PARM_DESC(logging_level,
	"Logging level, 0 - None, 1 - Error (default), 2 - Warning.");

static inline bool do_logging(int level)
{
	return logging_level >= level;
}

#define storvsc_log(dev, level, fmt, ...)			\
do {								\
	if (do_logging(level))					\
		dev_warn(&(dev)->device, fmt, ##__VA_ARGS__);	\
} while (0)

190 191 192 193 194 195 196 197 198 199 200 201
struct vmscsi_win8_extension {
	/*
	 * The following were added in Windows 8
	 */
	u16 reserve;
	u8  queue_tag;
	u8  queue_action;
	u32 srb_flags;
	u32 time_out_value;
	u32 queue_sort_ey;
} __packed;

202
struct vmscsi_request {
203 204 205
	u16 length;
	u8 srb_status;
	u8 scsi_status;
206

207 208 209 210
	u8  port_number;
	u8  path_id;
	u8  target_id;
	u8  lun;
211

212 213 214 215
	u8  cdb_length;
	u8  sense_info_length;
	u8  data_in;
	u8  reserved;
216

217
	u32 data_transfer_length;
218 219

	union {
220 221 222
		u8 cdb[STORVSC_MAX_CMD_LEN];
		u8 sense_data[STORVSC_SENSE_BUFFER_SIZE];
		u8 reserved_array[STORVSC_MAX_BUF_LEN_WITH_PADDING];
223
	};
224 225 226 227 228
	/*
	 * The following was added in win8.
	 */
	struct vmscsi_win8_extension win8_extension;

229 230 231
} __attribute((packed));


232 233 234 235 236 237 238 239 240 241 242
/*
 * The size of the vmscsi_request has changed in win8. The
 * additional size is because of new elements added to the
 * structure. These elements are valid only when we are talking
 * to a win8 host.
 * Track the correction to size we need to apply. This value
 * will likely change during protocol negotiation but it is
 * valid to start by assuming pre-Win8.
 */
static int vmscsi_size_delta = sizeof(struct vmscsi_win8_extension);

243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281
/*
 * The list of storage protocols in order of preference.
 */
struct vmstor_protocol {
	int protocol_version;
	int sense_buffer_size;
	int vmscsi_size_delta;
};


static const struct vmstor_protocol vmstor_protocols[] = {
	{
		VMSTOR_PROTO_VERSION_WIN10,
		POST_WIN7_STORVSC_SENSE_BUFFER_SIZE,
		0
	},
	{
		VMSTOR_PROTO_VERSION_WIN8_1,
		POST_WIN7_STORVSC_SENSE_BUFFER_SIZE,
		0
	},
	{
		VMSTOR_PROTO_VERSION_WIN8,
		POST_WIN7_STORVSC_SENSE_BUFFER_SIZE,
		0
	},
	{
		VMSTOR_PROTO_VERSION_WIN7,
		PRE_WIN8_STORVSC_SENSE_BUFFER_SIZE,
		sizeof(struct vmscsi_win8_extension),
	},
	{
		VMSTOR_PROTO_VERSION_WIN6,
		PRE_WIN8_STORVSC_SENSE_BUFFER_SIZE,
		sizeof(struct vmscsi_win8_extension),
	}
};


282
/*
283
 * This structure is sent during the initialization phase to get the different
284 285
 * properties of the channel.
 */
286 287 288

#define STORAGE_CHANNEL_SUPPORTS_MULTI_CHANNEL		0x1

289
struct vmstorage_channel_properties {
290 291 292
	u32 reserved;
	u16 max_channel_cnt;
	u16 reserved1;
293

294
	u32 flags;
295
	u32   max_transfer_bytes;
296

297
	u64  reserved2;
298 299 300 301 302
} __packed;

/*  This structure is sent during the storage protocol negotiations. */
struct vmstorage_protocol_version {
	/* Major (MSW) and minor (LSW) version numbers. */
303
	u16 major_minor;
304 305 306 307 308 309

	/*
	 * Revision number is auto-incremented whenever this file is changed
	 * (See FILL_VMSTOR_REVISION macro above).  Mismatch does not
	 * definitely indicate incompatibility--but it does indicate mismatched
	 * builds.
310
	 * This is only used on the windows side. Just set it to 0.
311
	 */
312
	u16 revision;
313 314 315 316 317 318 319 320 321 322 323
} __packed;

/* Channel Property Flags */
#define STORAGE_CHANNEL_REMOVABLE_FLAG		0x1
#define STORAGE_CHANNEL_EMULATED_IDE_FLAG	0x2

struct vstor_packet {
	/* Requested operation type */
	enum vstor_packet_operation operation;

	/*  Flags - see below for values */
324
	u32 flags;
325 326

	/* Status of the request returned from the server side. */
327
	u32 status;
328 329 330 331 332 333 334 335 336 337 338 339 340 341

	/* Data payload area */
	union {
		/*
		 * Structure used to forward SCSI commands from the
		 * client to the server.
		 */
		struct vmscsi_request vm_srb;

		/* Structure used to query channel properties. */
		struct vmstorage_channel_properties storage_channel_properties;

		/* Used during version negotiations. */
		struct vmstorage_protocol_version version;
342 343 344 345 346 347 348 349 350

		/* Fibre channel address packet */
		struct hv_fc_wwn_packet wwn_packet;

		/* Number of sub-channels to create */
		u16 sub_channel_count;

		/* This will be the maximum of the union members */
		u8  buffer[0x34];
351 352 353 354
	};
} __packed;

/*
355 356
 * Packet Flags:
 *
357 358 359
 * This flag indicates that the server should send back a completion for this
 * packet.
 */
360

361 362 363 364
#define REQUEST_COMPLETION_FLAG	0x1

/* Matches Windows-end */
enum storvsc_request_type {
365
	WRITE_TYPE = 0,
366 367 368 369
	READ_TYPE,
	UNKNOWN_TYPE,
};

370 371 372 373 374
/*
 * SRB status codes and masks; a subset of the codes used here.
 */

#define SRB_STATUS_AUTOSENSE_VALID	0x80
375
#define SRB_STATUS_QUEUE_FROZEN		0x40
376 377
#define SRB_STATUS_INVALID_LUN	0x20
#define SRB_STATUS_SUCCESS	0x01
378
#define SRB_STATUS_ABORTED	0x02
379
#define SRB_STATUS_ERROR	0x04
380
#define SRB_STATUS_DATA_OVERRUN	0x12
381

382 383
#define SRB_STATUS(status) \
	(status & ~(SRB_STATUS_AUTOSENSE_VALID | SRB_STATUS_QUEUE_FROZEN))
384 385 386 387
/*
 * This is the end of Protocol specific defines.
 */

388
static int storvsc_ringbuffer_size = (256 * PAGE_SIZE);
389 390 391
static u32 max_outstanding_req_per_channel;

static int storvsc_vcpus_per_sub_channel = 4;
392 393 394 395

module_param(storvsc_ringbuffer_size, int, S_IRUGO);
MODULE_PARM_DESC(storvsc_ringbuffer_size, "Ring buffer size (bytes)");

396
module_param(storvsc_vcpus_per_sub_channel, int, S_IRUGO);
397
MODULE_PARM_DESC(storvsc_vcpus_per_sub_channel, "Ratio of VCPUs to subchannels");
398 399 400 401 402
/*
 * Timeout in seconds for all devices managed by this driver.
 */
static int storvsc_timeout = 180;

403 404 405
#if IS_ENABLED(CONFIG_SCSI_FC_ATTRS)
static struct scsi_transport_template *fc_transport_template;
#endif
406

407 408
static void storvsc_on_channel_callback(void *context);

409 410 411
#define STORVSC_MAX_LUNS_PER_TARGET			255
#define STORVSC_MAX_TARGETS				2
#define STORVSC_MAX_CHANNELS				8
412

413 414 415
#define STORVSC_FC_MAX_LUNS_PER_TARGET			255
#define STORVSC_FC_MAX_TARGETS				128
#define STORVSC_FC_MAX_CHANNELS				8
416

417 418 419
#define STORVSC_IDE_MAX_LUNS_PER_TARGET			64
#define STORVSC_IDE_MAX_TARGETS				1
#define STORVSC_IDE_MAX_CHANNELS			1
420

421 422 423
struct storvsc_cmd_request {
	struct scsi_cmnd *cmd;

424 425 426 427 428
	struct hv_device *device;

	/* Synchronize the request/response if needed */
	struct completion wait_event;

429 430 431 432
	struct vmbus_channel_packet_multipage_buffer mpb;
	struct vmbus_packet_mpb_array *payload;
	u32 payload_sz;

433 434 435 436 437 438 439 440 441 442
	struct vstor_packet vstor_packet;
};


/* A storvsc device is a device object that contains a vmbus channel */
struct storvsc_device {
	struct hv_device *device;

	bool	 destroy;
	bool	 drain_notify;
443
	bool	 open_sub_channel;
444
	atomic_t num_outstanding_req;
445
	struct Scsi_Host *host;
446 447 448 449 450 451 452 453 454 455 456 457

	wait_queue_head_t waiting_to_drain;

	/*
	 * Each unique Port/Path/Target represents 1 channel ie scsi
	 * controller. In reality, the pathid, targetid is always 0
	 * and the port is set by us
	 */
	unsigned int port_number;
	unsigned char path_id;
	unsigned char target_id;

458 459 460 461
	/*
	 * Max I/O, the device can support.
	 */
	u32   max_transfer_bytes;
462 463 464 465 466 467 468 469 470
	/*
	 * Number of sub-channels we will open.
	 */
	u16 num_sc;
	struct vmbus_channel **stor_chns;
	/*
	 * Mask of CPUs bound to subchannels.
	 */
	struct cpumask alloced_cpus;
471
	/* Used for vsc/vsp channel reset process */
472 473
	struct storvsc_cmd_request init_request;
	struct storvsc_cmd_request reset_request;
474 475 476 477 478
	/*
	 * Currently active port and node names for FC devices.
	 */
	u64 node_name;
	u64 port_name;
479 480 481
#if IS_ENABLED(CONFIG_SCSI_FC_ATTRS)
	struct fc_rport *rport;
#endif
482 483
};

484 485
struct hv_host_device {
	struct hv_device *dev;
486 487 488 489 490
	unsigned int port;
	unsigned char path;
	unsigned char target;
};

491 492 493
struct storvsc_scan_work {
	struct work_struct work;
	struct Scsi_Host *host;
494 495
	u8 lun;
	u8 tgt_id;
496 497
};

498 499 500 501 502 503 504
static void storvsc_device_scan(struct work_struct *work)
{
	struct storvsc_scan_work *wrk;
	struct scsi_device *sdev;

	wrk = container_of(work, struct storvsc_scan_work, work);

505
	sdev = scsi_device_lookup(wrk->host, 0, wrk->tgt_id, wrk->lun);
506 507 508 509 510 511 512 513 514
	if (!sdev)
		goto done;
	scsi_rescan_device(&sdev->sdev_gendev);
	scsi_device_put(sdev);

done:
	kfree(wrk);
}

515
static void storvsc_host_scan(struct work_struct *work)
516 517
{
	struct storvsc_scan_work *wrk;
518
	struct Scsi_Host *host;
519
	struct scsi_device *sdev;
520 521

	wrk = container_of(work, struct storvsc_scan_work, work);
522 523
	host = wrk->host;

524 525 526 527 528 529 530 531 532 533 534 535
	/*
	 * Before scanning the host, first check to see if any of the
	 * currrently known devices have been hot removed. We issue a
	 * "unit ready" command against all currently known devices.
	 * This I/O will result in an error for devices that have been
	 * removed. As part of handling the I/O error, we remove the device.
	 *
	 * When a LUN is added or removed, the host sends us a signal to
	 * scan the host. Thus we are forced to discover the LUNs that
	 * may have been removed this way.
	 */
	mutex_lock(&host->scan_mutex);
536
	shost_for_each_device(sdev, host)
537 538 539 540 541
		scsi_test_unit_ready(sdev, 1, 1, NULL);
	mutex_unlock(&host->scan_mutex);
	/*
	 * Now scan the host to discover LUNs that may have been added.
	 */
542 543
	scsi_scan_host(host);

544 545 546
	kfree(wrk);
}

547 548 549 550 551 552 553 554 555
static void storvsc_remove_lun(struct work_struct *work)
{
	struct storvsc_scan_work *wrk;
	struct scsi_device *sdev;

	wrk = container_of(work, struct storvsc_scan_work, work);
	if (!scsi_host_get(wrk->host))
		goto done;

556
	sdev = scsi_device_lookup(wrk->host, 0, wrk->tgt_id, wrk->lun);
557 558 559 560 561 562 563 564 565 566 567

	if (sdev) {
		scsi_remove_device(sdev);
		scsi_device_put(sdev);
	}
	scsi_host_put(wrk->host);

done:
	kfree(wrk);
}

568

569 570 571 572 573 574 575 576 577 578 579 580 581 582 583
/*
 * We can get incoming messages from the host that are not in response to
 * messages that we have sent out. An example of this would be messages
 * received by the guest to notify dynamic addition/removal of LUNs. To
 * deal with potential race conditions where the driver may be in the
 * midst of being unloaded when we might receive an unsolicited message
 * from the host, we have implemented a mechanism to gurantee sequential
 * consistency:
 *
 * 1) Once the device is marked as being destroyed, we will fail all
 *    outgoing messages.
 * 2) We permit incoming messages when the device is being destroyed,
 *    only to properly account for messages already sent out.
 */

584 585 586 587 588
static inline struct storvsc_device *get_out_stor_device(
					struct hv_device *device)
{
	struct storvsc_device *stor_device;

589
	stor_device = hv_get_drvdata(device);
590 591 592 593 594 595 596 597 598 599 600 601 602 603 604

	if (stor_device && stor_device->destroy)
		stor_device = NULL;

	return stor_device;
}


static inline void storvsc_wait_to_drain(struct storvsc_device *dev)
{
	dev->drain_notify = true;
	wait_event(dev->waiting_to_drain,
		   atomic_read(&dev->num_outstanding_req) == 0);
	dev->drain_notify = false;
}
605

606 607 608 609 610
static inline struct storvsc_device *get_in_stor_device(
					struct hv_device *device)
{
	struct storvsc_device *stor_device;

611
	stor_device = hv_get_drvdata(device);
612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629

	if (!stor_device)
		goto get_in_err;

	/*
	 * If the device is being destroyed; allow incoming
	 * traffic only to cleanup outstanding requests.
	 */

	if (stor_device->destroy  &&
		(atomic_read(&stor_device->num_outstanding_req) == 0))
		stor_device = NULL;

get_in_err:
	return stor_device;

}

630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650
static void handle_sc_creation(struct vmbus_channel *new_sc)
{
	struct hv_device *device = new_sc->primary_channel->device_obj;
	struct storvsc_device *stor_device;
	struct vmstorage_channel_properties props;

	stor_device = get_out_stor_device(device);
	if (!stor_device)
		return;

	if (stor_device->open_sub_channel == false)
		return;

	memset(&props, 0, sizeof(struct vmstorage_channel_properties));

	vmbus_open(new_sc,
		   storvsc_ringbuffer_size,
		   storvsc_ringbuffer_size,
		   (void *)&props,
		   sizeof(struct vmstorage_channel_properties),
		   storvsc_on_channel_callback, new_sc);
651 652 653 654 655

	if (new_sc->state == CHANNEL_OPENED_STATE) {
		stor_device->stor_chns[new_sc->target_cpu] = new_sc;
		cpumask_set_cpu(new_sc->target_cpu, &stor_device->alloced_cpus);
	}
656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671
}

static void  handle_multichannel_storage(struct hv_device *device, int max_chns)
{
	struct storvsc_device *stor_device;
	int num_cpus = num_online_cpus();
	int num_sc;
	struct storvsc_cmd_request *request;
	struct vstor_packet *vstor_packet;
	int ret, t;

	num_sc = ((max_chns > num_cpus) ? num_cpus : max_chns);
	stor_device = get_out_stor_device(device);
	if (!stor_device)
		return;

672
	stor_device->num_sc = num_sc;
673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725
	request = &stor_device->init_request;
	vstor_packet = &request->vstor_packet;

	stor_device->open_sub_channel = true;
	/*
	 * Establish a handler for dealing with subchannels.
	 */
	vmbus_set_sc_create_callback(device->channel, handle_sc_creation);

	/*
	 * Check to see if sub-channels have already been created. This
	 * can happen when this driver is re-loaded after unloading.
	 */

	if (vmbus_are_subchannels_present(device->channel))
		return;

	stor_device->open_sub_channel = false;
	/*
	 * Request the host to create sub-channels.
	 */
	memset(request, 0, sizeof(struct storvsc_cmd_request));
	init_completion(&request->wait_event);
	vstor_packet->operation = VSTOR_OPERATION_CREATE_SUB_CHANNELS;
	vstor_packet->flags = REQUEST_COMPLETION_FLAG;
	vstor_packet->sub_channel_count = num_sc;

	ret = vmbus_sendpacket(device->channel, vstor_packet,
			       (sizeof(struct vstor_packet) -
			       vmscsi_size_delta),
			       (unsigned long)request,
			       VM_PKT_DATA_INBAND,
			       VMBUS_DATA_PACKET_FLAG_COMPLETION_REQUESTED);

	if (ret != 0)
		return;

	t = wait_for_completion_timeout(&request->wait_event, 10*HZ);
	if (t == 0)
		return;

	if (vstor_packet->operation != VSTOR_OPERATION_COMPLETE_IO ||
	    vstor_packet->status != 0)
		return;

	/*
	 * Now that we created the sub-channels, invoke the check; this
	 * may trigger the callback.
	 */
	stor_device->open_sub_channel = true;
	vmbus_are_subchannels_present(device->channel);
}

726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744
static void cache_wwn(struct storvsc_device *stor_device,
		      struct vstor_packet *vstor_packet)
{
	/*
	 * Cache the currently active port and node ww names.
	 */
	if (vstor_packet->wwn_packet.primary_active) {
		stor_device->node_name =
			wwn_to_u64(vstor_packet->wwn_packet.primary_node_wwn);
		stor_device->port_name =
			wwn_to_u64(vstor_packet->wwn_packet.primary_port_wwn);
	} else {
		stor_device->node_name =
			wwn_to_u64(vstor_packet->wwn_packet.secondary_node_wwn);
		stor_device->port_name =
			wwn_to_u64(vstor_packet->wwn_packet.secondary_port_wwn);
	}
}

745 746 747 748

static int storvsc_execute_vstor_op(struct hv_device *device,
				    struct storvsc_cmd_request *request,
				    bool status_check)
749 750
{
	struct vstor_packet *vstor_packet;
751
	int ret, t;
752 753 754 755 756 757 758

	vstor_packet = &request->vstor_packet;

	init_completion(&request->wait_event);
	vstor_packet->flags = REQUEST_COMPLETION_FLAG;

	ret = vmbus_sendpacket(device->channel, vstor_packet,
759 760
			       (sizeof(struct vstor_packet) -
			       vmscsi_size_delta),
761 762 763 764
			       (unsigned long)request,
			       VM_PKT_DATA_INBAND,
			       VMBUS_DATA_PACKET_FLAG_COMPLETION_REQUESTED);
	if (ret != 0)
765
		return ret;
766 767

	t = wait_for_completion_timeout(&request->wait_event, 5*HZ);
768 769
	if (t == 0)
		return -ETIMEDOUT;
770

771 772 773
	if (!status_check)
		return ret;

774
	if (vstor_packet->operation != VSTOR_OPERATION_COMPLETE_IO ||
775 776
	    vstor_packet->status != 0)
		return -EINVAL;
777

778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808
	return ret;
}

static int storvsc_channel_init(struct hv_device *device, bool is_fc)
{
	struct storvsc_device *stor_device;
	struct storvsc_cmd_request *request;
	struct vstor_packet *vstor_packet;
	int ret, i;
	int max_chns;
	bool process_sub_channels = false;

	stor_device = get_out_stor_device(device);
	if (!stor_device)
		return -ENODEV;

	request = &stor_device->init_request;
	vstor_packet = &request->vstor_packet;

	/*
	 * Now, initiate the vsc/vsp initialization protocol on the open
	 * channel
	 */
	memset(request, 0, sizeof(struct storvsc_cmd_request));
	vstor_packet->operation = VSTOR_OPERATION_BEGIN_INITIALIZATION;
	ret = storvsc_execute_vstor_op(device, request, true);
	if (ret)
		return ret;
	/*
	 * Query host supported protocol version.
	 */
809

810 811 812 813 814
	for (i = 0; i < ARRAY_SIZE(vmstor_protocols); i++) {
		/* reuse the packet for version range supported */
		memset(vstor_packet, 0, sizeof(struct vstor_packet));
		vstor_packet->operation =
			VSTOR_OPERATION_QUERY_PROTOCOL_VERSION;
815

816 817
		vstor_packet->version.major_minor =
			vmstor_protocols[i].protocol_version;
818

819 820 821 822
		/*
		 * The revision number is only used in Windows; set it to 0.
		 */
		vstor_packet->version.revision = 0;
823
		ret = storvsc_execute_vstor_op(device, request, false);
824
		if (ret != 0)
825
			return ret;
826

827 828
		if (vstor_packet->operation != VSTOR_OPERATION_COMPLETE_IO)
			return -EINVAL;
829 830 831 832 833 834 835 836 837 838 839 840 841

		if (vstor_packet->status == 0) {
			vmstor_proto_version =
				vmstor_protocols[i].protocol_version;

			sense_buffer_size =
				vmstor_protocols[i].sense_buffer_size;

			vmscsi_size_delta =
				vmstor_protocols[i].vmscsi_size_delta;

			break;
		}
842 843
	}

844 845
	if (vstor_packet->status != 0)
		return -EINVAL;
846 847 848 849


	memset(vstor_packet, 0, sizeof(struct vstor_packet));
	vstor_packet->operation = VSTOR_OPERATION_QUERY_PROPERTIES;
850
	ret = storvsc_execute_vstor_op(device, request, true);
851
	if (ret != 0)
852
		return ret;
853

854 855 856 857 858 859
	/*
	 * Check to see if multi-channel support is there.
	 * Hosts that implement protocol version of 5.1 and above
	 * support multi-channel.
	 */
	max_chns = vstor_packet->storage_channel_properties.max_channel_cnt;
860 861 862 863 864 865 866 867 868 869

	/*
	 * Allocate state to manage the sub-channels.
	 * We allocate an array based on the numbers of possible CPUs
	 * (Hyper-V does not support cpu online/offline).
	 * This Array will be sparseley populated with unique
	 * channels - primary + sub-channels.
	 * We will however populate all the slots to evenly distribute
	 * the load.
	 */
870
	stor_device->stor_chns = kcalloc(num_possible_cpus(), sizeof(void *),
871 872 873 874 875 876 877 878
					 GFP_KERNEL);
	if (stor_device->stor_chns == NULL)
		return -ENOMEM;

	stor_device->stor_chns[device->channel->target_cpu] = device->channel;
	cpumask_set_cpu(device->channel->target_cpu,
			&stor_device->alloced_cpus);

879
	if (vmstor_proto_version >= VMSTOR_PROTO_VERSION_WIN8) {
880 881 882 883
		if (vstor_packet->storage_channel_properties.flags &
		    STORAGE_CHANNEL_SUPPORTS_MULTI_CHANNEL)
			process_sub_channels = true;
	}
884 885
	stor_device->max_transfer_bytes =
		vstor_packet->storage_channel_properties.max_transfer_bytes;
886

887 888 889
	if (!is_fc)
		goto done;

890 891 892
	/*
	 * For FC devices retrieve FC HBA data.
	 */
893 894
	memset(vstor_packet, 0, sizeof(struct vstor_packet));
	vstor_packet->operation = VSTOR_OPERATION_FCHBA_DATA;
895
	ret = storvsc_execute_vstor_op(device, request, true);
896 897 898 899 900 901 902 903 904 905
	if (ret != 0)
		return ret;

	/*
	 * Cache the currently active port and node ww names.
	 */
	cache_wwn(stor_device, vstor_packet);

done:

906 907
	memset(vstor_packet, 0, sizeof(struct vstor_packet));
	vstor_packet->operation = VSTOR_OPERATION_END_INITIALIZATION;
908
	ret = storvsc_execute_vstor_op(device, request, true);
909
	if (ret != 0)
910
		return ret;
911

912 913 914
	if (process_sub_channels)
		handle_multichannel_storage(device, max_chns);

915 916 917
	return ret;
}

918 919 920 921 922 923 924 925 926
static void storvsc_handle_error(struct vmscsi_request *vm_srb,
				struct scsi_cmnd *scmnd,
				struct Scsi_Host *host,
				u8 asc, u8 ascq)
{
	struct storvsc_scan_work *wrk;
	void (*process_err_fn)(struct work_struct *work);
	bool do_work = false;

927
	switch (SRB_STATUS(vm_srb->srb_status)) {
928
	case SRB_STATUS_ERROR:
929 930 931 932 933 934 935
		/*
		 * Let upper layer deal with error when
		 * sense message is present.
		 */

		if (vm_srb->srb_status & SRB_STATUS_AUTOSENSE_VALID)
			break;
936 937 938 939 940 941 942 943 944 945 946
		/*
		 * If there is an error; offline the device since all
		 * error recovery strategies would have already been
		 * deployed on the host side. However, if the command
		 * were a pass-through command deal with it appropriately.
		 */
		switch (scmnd->cmnd[0]) {
		case ATA_16:
		case ATA_12:
			set_host_byte(scmnd, DID_PASSTHROUGH);
			break;
947 948 949 950 951 952 953
		/*
		 * On Some Windows hosts TEST_UNIT_READY command can return
		 * SRB_STATUS_ERROR, let the upper level code deal with it
		 * based on the sense information.
		 */
		case TEST_UNIT_READY:
			break;
954 955 956 957 958 959 960 961
		default:
			set_host_byte(scmnd, DID_TARGET_FAILURE);
		}
		break;
	case SRB_STATUS_INVALID_LUN:
		do_work = true;
		process_err_fn = storvsc_remove_lun;
		break;
962 963 964
	case SRB_STATUS_ABORTED:
		if (vm_srb->srb_status & SRB_STATUS_AUTOSENSE_VALID &&
		    (asc == 0x2a) && (ascq == 0x9)) {
965 966 967 968 969 970 971 972
			do_work = true;
			process_err_fn = storvsc_device_scan;
			/*
			 * Retry the I/O that trigerred this.
			 */
			set_host_byte(scmnd, DID_REQUEUE);
		}
		break;
973
	}
974

975 976 977 978 979 980 981 982 983 984 985 986 987 988
	if (!do_work)
		return;

	/*
	 * We need to schedule work to process this error; schedule it.
	 */
	wrk = kmalloc(sizeof(struct storvsc_scan_work), GFP_ATOMIC);
	if (!wrk) {
		set_host_byte(scmnd, DID_TARGET_FAILURE);
		return;
	}

	wrk->host = host;
	wrk->lun = vm_srb->lun;
989
	wrk->tgt_id = vm_srb->target_id;
990 991 992 993
	INIT_WORK(&wrk->work, process_err_fn);
	schedule_work(&wrk->work);
}

994

995 996
static void storvsc_command_completion(struct storvsc_cmd_request *cmd_request,
				       struct storvsc_device *stor_dev)
997
{
998 999 1000
	struct scsi_cmnd *scmnd = cmd_request->cmd;
	struct scsi_sense_hdr sense_hdr;
	struct vmscsi_request *vm_srb;
1001
	u32 data_transfer_length;
1002
	struct Scsi_Host *host;
1003 1004
	u32 payload_sz = cmd_request->payload_sz;
	void *payload = cmd_request->payload;
1005 1006

	host = stor_dev->host;
1007

1008
	vm_srb = &cmd_request->vstor_packet.vm_srb;
1009
	data_transfer_length = vm_srb->data_transfer_length;
1010

1011 1012
	scmnd->result = vm_srb->scsi_status;

1013 1014
	if (scmnd->result) {
		if (scsi_normalize_sense(scmnd->sense_buffer,
1015
				SCSI_SENSE_BUFFERSIZE, &sense_hdr) &&
1016 1017
		    !(sense_hdr.sense_key == NOT_READY &&
				 sense_hdr.asc == 0x03A) &&
1018
		    do_logging(STORVSC_LOGGING_ERROR))
1019 1020
			scsi_print_sense_hdr(scmnd->device, "storvsc",
					     &sense_hdr);
1021 1022
	}

1023
	if (vm_srb->srb_status != SRB_STATUS_SUCCESS) {
1024 1025
		storvsc_handle_error(vm_srb, scmnd, host, sense_hdr.asc,
					 sense_hdr.ascq);
1026 1027 1028 1029 1030 1031 1032 1033
		/*
		 * The Windows driver set data_transfer_length on
		 * SRB_STATUS_DATA_OVERRUN. On other errors, this value
		 * is untouched.  In these cases we set it to 0.
		 */
		if (vm_srb->srb_status != SRB_STATUS_DATA_OVERRUN)
			data_transfer_length = 0;
	}
1034

1035
	scsi_set_resid(scmnd,
1036
		cmd_request->payload->range.len - data_transfer_length);
1037

1038
	scmnd->scsi_done(scmnd);
1039 1040 1041 1042

	if (payload_sz >
		sizeof(struct vmbus_channel_packet_multipage_buffer))
		kfree(payload);
1043 1044
}

1045
static void storvsc_on_io_completion(struct storvsc_device *stor_device,
1046
				  struct vstor_packet *vstor_packet,
1047
				  struct storvsc_cmd_request *request)
1048 1049
{
	struct vstor_packet *stor_pkt;
1050
	struct hv_device *device = stor_device->device;
1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061

	stor_pkt = &request->vstor_packet;

	/*
	 * The current SCSI handling on the host side does
	 * not correctly handle:
	 * INQUIRY command with page code parameter set to 0x80
	 * MODE_SENSE command with cmd[2] == 0x1c
	 *
	 * Setup srb and scsi status so this won't be fatal.
	 * We do this so we can distinguish truly fatal failues
1062 1063 1064 1065
	 * (srb status == 0x4) and off-line the device in that case.
	 */

	if ((stor_pkt->vm_srb.cdb[0] == INQUIRY) ||
1066
	   (stor_pkt->vm_srb.cdb[0] == MODE_SENSE)) {
1067
		vstor_packet->vm_srb.scsi_status = 0;
1068
		vstor_packet->vm_srb.srb_status = SRB_STATUS_SUCCESS;
1069 1070
	}

1071 1072 1073 1074 1075 1076 1077

	/* Copy over the status...etc */
	stor_pkt->vm_srb.scsi_status = vstor_packet->vm_srb.scsi_status;
	stor_pkt->vm_srb.srb_status = vstor_packet->vm_srb.srb_status;
	stor_pkt->vm_srb.sense_info_length =
	vstor_packet->vm_srb.sense_info_length;

1078 1079 1080 1081 1082 1083 1084
	if (vstor_packet->vm_srb.scsi_status != 0 ||
	    vstor_packet->vm_srb.srb_status != SRB_STATUS_SUCCESS)
		storvsc_log(device, STORVSC_LOGGING_WARN,
			"cmd 0x%x scsi status 0x%x srb status 0x%x\n",
			stor_pkt->vm_srb.cdb[0],
			vstor_packet->vm_srb.scsi_status,
			vstor_packet->vm_srb.srb_status);
1085 1086 1087

	if ((vstor_packet->vm_srb.scsi_status & 0xFF) == 0x02) {
		/* CHECK_CONDITION */
1088 1089
		if (vstor_packet->vm_srb.srb_status &
			SRB_STATUS_AUTOSENSE_VALID) {
1090 1091
			/* autosense data available */

1092 1093 1094 1095
			storvsc_log(device, STORVSC_LOGGING_WARN,
				"stor pkt %p autosense data valid - len %d\n",
				request, vstor_packet->vm_srb.sense_info_length);

1096
			memcpy(request->cmd->sense_buffer,
1097 1098 1099 1100 1101 1102 1103 1104 1105
			       vstor_packet->vm_srb.sense_data,
			       vstor_packet->vm_srb.sense_info_length);

		}
	}

	stor_pkt->vm_srb.data_transfer_length =
	vstor_packet->vm_srb.data_transfer_length;

1106
	storvsc_command_completion(request, stor_device);
1107 1108 1109 1110 1111 1112 1113 1114

	if (atomic_dec_and_test(&stor_device->num_outstanding_req) &&
		stor_device->drain_notify)
		wake_up(&stor_device->waiting_to_drain);


}

1115
static void storvsc_on_receive(struct storvsc_device *stor_device,
1116
			     struct vstor_packet *vstor_packet,
1117
			     struct storvsc_cmd_request *request)
1118
{
1119 1120
	struct storvsc_scan_work *work;

1121 1122
	switch (vstor_packet->operation) {
	case VSTOR_OPERATION_COMPLETE_IO:
1123
		storvsc_on_io_completion(stor_device, vstor_packet, request);
1124
		break;
1125

1126
	case VSTOR_OPERATION_REMOVE_DEVICE:
1127 1128 1129 1130 1131
	case VSTOR_OPERATION_ENUMERATE_BUS:
		work = kmalloc(sizeof(struct storvsc_scan_work), GFP_ATOMIC);
		if (!work)
			return;

1132
		INIT_WORK(&work->work, storvsc_host_scan);
1133 1134 1135
		work->host = stor_device->host;
		schedule_work(&work->work);
		break;
1136

1137 1138 1139 1140 1141 1142 1143
	case VSTOR_OPERATION_FCHBA_DATA:
		cache_wwn(stor_device, vstor_packet);
#if IS_ENABLED(CONFIG_SCSI_FC_ATTRS)
		fc_host_node_name(stor_device->host) = stor_device->node_name;
		fc_host_port_name(stor_device->host) = stor_device->port_name;
#endif
		break;
1144 1145 1146 1147 1148 1149 1150
	default:
		break;
	}
}

static void storvsc_on_channel_callback(void *context)
{
1151
	struct vmbus_channel *channel = (struct vmbus_channel *)context;
1152
	const struct vmpacket_descriptor *desc;
1153
	struct hv_device *device;
1154 1155
	struct storvsc_device *stor_device;

1156 1157 1158 1159
	if (channel->primary_channel != NULL)
		device = channel->primary_channel->device_obj;
	else
		device = channel->device_obj;
1160 1161 1162 1163 1164

	stor_device = get_in_stor_device(device);
	if (!stor_device)
		return;

1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176
	foreach_vmbus_pkt(desc, channel) {
		void *packet = hv_pkt_data(desc);
		struct storvsc_cmd_request *request;

		request = (struct storvsc_cmd_request *)
			((unsigned long)desc->trans_id);

		if (request == &stor_device->init_request ||
		    request == &stor_device->reset_request) {
			memcpy(&request->vstor_packet, packet,
			       (sizeof(struct vstor_packet) - vmscsi_size_delta));
			complete(&request->wait_event);
1177
		} else {
1178
			storvsc_on_receive(stor_device, packet, request);
1179
		}
1180
	}
1181 1182
}

1183 1184
static int storvsc_connect_to_vsp(struct hv_device *device, u32 ring_size,
				  bool is_fc)
1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195
{
	struct vmstorage_channel_properties props;
	int ret;

	memset(&props, 0, sizeof(struct vmstorage_channel_properties));

	ret = vmbus_open(device->channel,
			 ring_size,
			 ring_size,
			 (void *)&props,
			 sizeof(struct vmstorage_channel_properties),
1196
			 storvsc_on_channel_callback, device->channel);
1197 1198 1199 1200

	if (ret != 0)
		return ret;

1201
	ret = storvsc_channel_init(device, is_fc);
1202 1203 1204 1205

	return ret;
}

1206
static int storvsc_dev_remove(struct hv_device *device)
1207 1208 1209
{
	struct storvsc_device *stor_device;

1210
	stor_device = hv_get_drvdata(device);
1211 1212

	stor_device->destroy = true;
1213 1214 1215

	/* Make sure flag is set before waiting */
	wmb();
1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231

	/*
	 * At this point, all outbound traffic should be disable. We
	 * only allow inbound traffic (responses) to proceed so that
	 * outstanding requests can be completed.
	 */

	storvsc_wait_to_drain(stor_device);

	/*
	 * Since we have already drained, we don't need to busy wait
	 * as was done in final_release_stor_device()
	 * Note that we cannot set the ext pointer to NULL until
	 * we have drained - to drain the outgoing packets, we need to
	 * allow incoming packets.
	 */
1232
	hv_set_drvdata(device, NULL);
1233 1234 1235 1236

	/* Close the channel */
	vmbus_close(device->channel);

1237
	kfree(stor_device->stor_chns);
1238 1239 1240 1241
	kfree(stor_device);
	return 0;
}

1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285
static struct vmbus_channel *get_og_chn(struct storvsc_device *stor_device,
					u16 q_num)
{
	u16 slot = 0;
	u16 hash_qnum;
	struct cpumask alloced_mask;
	int num_channels, tgt_cpu;

	if (stor_device->num_sc == 0)
		return stor_device->device->channel;

	/*
	 * Our channel array is sparsley populated and we
	 * initiated I/O on a processor/hw-q that does not
	 * currently have a designated channel. Fix this.
	 * The strategy is simple:
	 * I. Ensure NUMA locality
	 * II. Distribute evenly (best effort)
	 * III. Mapping is persistent.
	 */

	cpumask_and(&alloced_mask, &stor_device->alloced_cpus,
		    cpumask_of_node(cpu_to_node(q_num)));

	num_channels = cpumask_weight(&alloced_mask);
	if (num_channels == 0)
		return stor_device->device->channel;

	hash_qnum = q_num;
	while (hash_qnum >= num_channels)
		hash_qnum -= num_channels;

	for_each_cpu(tgt_cpu, &alloced_mask) {
		if (slot == hash_qnum)
			break;
		slot++;
	}

	stor_device->stor_chns[q_num] = stor_device->stor_chns[tgt_cpu];

	return stor_device->stor_chns[q_num];
}


1286
static int storvsc_do_io(struct hv_device *device,
1287
			 struct storvsc_cmd_request *request, u16 q_num)
1288 1289 1290
{
	struct storvsc_device *stor_device;
	struct vstor_packet *vstor_packet;
1291
	struct vmbus_channel *outgoing_channel;
1292
	int ret = 0;
1293 1294
	struct cpumask alloced_mask;
	int tgt_cpu;
1295 1296 1297 1298 1299 1300 1301 1302 1303

	vstor_packet = &request->vstor_packet;
	stor_device = get_out_stor_device(device);

	if (!stor_device)
		return -ENODEV;


	request->device  = device;
1304 1305 1306 1307
	/*
	 * Select an an appropriate channel to send the request out.
	 */

1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327
	if (stor_device->stor_chns[q_num] != NULL) {
		outgoing_channel = stor_device->stor_chns[q_num];
		if (outgoing_channel->target_cpu == smp_processor_id()) {
			/*
			 * Ideally, we want to pick a different channel if
			 * available on the same NUMA node.
			 */
			cpumask_and(&alloced_mask, &stor_device->alloced_cpus,
				    cpumask_of_node(cpu_to_node(q_num)));
			for_each_cpu(tgt_cpu, &alloced_mask) {
				if (tgt_cpu != outgoing_channel->target_cpu) {
					outgoing_channel =
					stor_device->stor_chns[tgt_cpu];
					break;
				}
			}
		}
	} else {
		outgoing_channel = get_og_chn(stor_device, q_num);
	}
1328 1329 1330 1331


	vstor_packet->flags |= REQUEST_COMPLETION_FLAG;

1332 1333
	vstor_packet->vm_srb.length = (sizeof(struct vmscsi_request) -
					vmscsi_size_delta);
1334 1335


1336
	vstor_packet->vm_srb.sense_info_length = sense_buffer_size;
1337 1338 1339


	vstor_packet->vm_srb.data_transfer_length =
1340
	request->payload->range.len;
1341 1342 1343

	vstor_packet->operation = VSTOR_OPERATION_EXECUTE_SRB;

1344 1345 1346 1347
	if (request->payload->range.len) {

		ret = vmbus_sendpacket_mpb_desc(outgoing_channel,
				request->payload, request->payload_sz,
1348
				vstor_packet,
1349 1350
				(sizeof(struct vstor_packet) -
				vmscsi_size_delta),
1351 1352
				(unsigned long)request);
	} else {
1353
		ret = vmbus_sendpacket(outgoing_channel, vstor_packet,
1354 1355
			       (sizeof(struct vstor_packet) -
				vmscsi_size_delta),
1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368
			       (unsigned long)request,
			       VM_PKT_DATA_INBAND,
			       VMBUS_DATA_PACKET_FLAG_COMPLETION_REQUESTED);
	}

	if (ret != 0)
		return ret;

	atomic_inc(&stor_device->num_outstanding_req);

	return ret;
}

1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384
static int storvsc_device_alloc(struct scsi_device *sdevice)
{
	/*
	 * Set blist flag to permit the reading of the VPD pages even when
	 * the target may claim SPC-2 compliance. MSFT targets currently
	 * claim SPC-2 compliance while they implement post SPC-2 features.
	 * With this flag we can correctly handle WRITE_SAME_16 issues.
	 *
	 * Hypervisor reports SCSI_UNKNOWN type for DVD ROM device but
	 * still supports REPORT LUN.
	 */
	sdevice->sdev_bflags = BLIST_REPORTLUN2 | BLIST_TRY_VPD_PAGES;

	return 0;
}

1385 1386 1387 1388 1389
static int storvsc_device_configure(struct scsi_device *sdevice)
{

	blk_queue_bounce_limit(sdevice->request_queue, BLK_BOUNCE_ANY);

1390 1391
	blk_queue_rq_timeout(sdevice->request_queue, (storvsc_timeout * HZ));

1392 1393 1394
	/* Ensure there are no gaps in presented sgls */
	blk_queue_virt_boundary(sdevice->request_queue, PAGE_SIZE - 1);

1395 1396
	sdevice->no_write_same = 1;

1397 1398
	/*
	 * If the host is WIN8 or WIN8 R2, claim conformance to SPC-3
1399 1400
	 * if the device is a MSFT virtual device.  If the host is
	 * WIN10 or newer, allow write_same.
1401 1402
	 */
	if (!strncmp(sdevice->vendor, "Msft", 4)) {
1403 1404 1405
		switch (vmstor_proto_version) {
		case VMSTOR_PROTO_VERSION_WIN8:
		case VMSTOR_PROTO_VERSION_WIN8_1:
1406 1407 1408
			sdevice->scsi_level = SCSI_SPC_3;
			break;
		}
1409 1410 1411

		if (vmstor_proto_version >= VMSTOR_PROTO_VERSION_WIN10)
			sdevice->no_write_same = 0;
1412 1413
	}

1414 1415 1416
	return 0;
}

1417 1418 1419
static int storvsc_get_chs(struct scsi_device *sdev, struct block_device * bdev,
			   sector_t capacity, int *info)
{
1420 1421 1422
	sector_t nsect = capacity;
	sector_t cylinders = nsect;
	int heads, sectors_pt;
1423

1424 1425 1426 1427 1428 1429 1430 1431
	/*
	 * We are making up these values; let us keep it simple.
	 */
	heads = 0xff;
	sectors_pt = 0x3f;      /* Sectors per track */
	sector_div(cylinders, heads * sectors_pt);
	if ((sector_t)(cylinders + 1) * heads * sectors_pt < nsect)
		cylinders = 0xffff;
1432 1433

	info[0] = heads;
1434 1435
	info[1] = sectors_pt;
	info[2] = (int)cylinders;
1436 1437 1438

	return 0;
}
1439

1440
static int storvsc_host_reset_handler(struct scsi_cmnd *scmnd)
1441
{
1442 1443 1444
	struct hv_host_device *host_dev = shost_priv(scmnd->device->host);
	struct hv_device *device = host_dev->dev;

1445
	struct storvsc_device *stor_device;
1446
	struct storvsc_cmd_request *request;
1447 1448 1449 1450
	struct vstor_packet *vstor_packet;
	int ret, t;


1451
	stor_device = get_out_stor_device(device);
1452
	if (!stor_device)
1453
		return FAILED;
1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464

	request = &stor_device->reset_request;
	vstor_packet = &request->vstor_packet;

	init_completion(&request->wait_event);

	vstor_packet->operation = VSTOR_OPERATION_RESET_BUS;
	vstor_packet->flags = REQUEST_COMPLETION_FLAG;
	vstor_packet->vm_srb.path_id = stor_device->path_id;

	ret = vmbus_sendpacket(device->channel, vstor_packet,
1465 1466
			       (sizeof(struct vstor_packet) -
				vmscsi_size_delta),
1467 1468 1469 1470
			       (unsigned long)&stor_device->reset_request,
			       VM_PKT_DATA_INBAND,
			       VMBUS_DATA_PACKET_FLAG_COMPLETION_REQUESTED);
	if (ret != 0)
1471
		return FAILED;
1472

1473
	t = wait_for_completion_timeout(&request->wait_event, 5*HZ);
1474 1475
	if (t == 0)
		return TIMEOUT_ERROR;
1476 1477 1478 1479 1480


	/*
	 * At this point, all outstanding requests in the adapter
	 * should have been flushed out and return to us
1481 1482 1483 1484
	 * There is a potential race here where the host may be in
	 * the process of responding when we return from here.
	 * Just wait for all in-transit packets to be accounted for
	 * before we return from here.
1485
	 */
1486
	storvsc_wait_to_drain(stor_device);
1487

1488
	return SUCCESS;
1489 1490
}

1491 1492 1493 1494 1495 1496 1497
/*
 * The host guarantees to respond to each command, although I/O latencies might
 * be unbounded on Azure.  Reset the timer unconditionally to give the host a
 * chance to perform EH.
 */
static enum blk_eh_timer_return storvsc_eh_timed_out(struct scsi_cmnd *scmnd)
{
1498 1499 1500 1501
#if IS_ENABLED(CONFIG_SCSI_FC_ATTRS)
	if (scmnd->device->host->transportt == fc_transport_template)
		return fc_eh_timed_out(scmnd);
#endif
1502 1503 1504
	return BLK_EH_RESET_TIMER;
}

1505
static bool storvsc_scsi_cmd_ok(struct scsi_cmnd *scmnd)
1506 1507 1508 1509 1510
{
	bool allowed = true;
	u8 scsi_op = scmnd->cmnd[0];

	switch (scsi_op) {
1511 1512
	/* the host does not handle WRITE_SAME, log accident usage */
	case WRITE_SAME:
1513 1514 1515 1516
	/*
	 * smartd sends this command and the host does not handle
	 * this. So, don't send it.
	 */
1517
	case SET_WINDOW:
1518
		scmnd->result = ILLEGAL_REQUEST << 16;
1519 1520 1521 1522
		allowed = false;
		break;
	default:
		break;
1523 1524 1525
	}
	return allowed;
}
1526

1527
static int storvsc_queuecommand(struct Scsi_Host *host, struct scsi_cmnd *scmnd)
1528 1529
{
	int ret;
1530
	struct hv_host_device *host_dev = shost_priv(host);
1531
	struct hv_device *dev = host_dev->dev;
1532
	struct storvsc_cmd_request *cmd_request = scsi_cmd_priv(scmnd);
1533 1534 1535 1536
	int i;
	struct scatterlist *sgl;
	unsigned int sg_count = 0;
	struct vmscsi_request *vm_srb;
1537
	struct scatterlist *cur_sgl;
1538 1539 1540
	struct vmbus_packet_mpb_array  *payload;
	u32 payload_sz;
	u32 length;
1541

1542
	if (vmstor_proto_version <= VMSTOR_PROTO_VERSION_WIN8) {
1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554
		/*
		 * On legacy hosts filter unimplemented commands.
		 * Future hosts are expected to correctly handle
		 * unsupported commands. Furthermore, it is
		 * possible that some of the currently
		 * unsupported commands maybe supported in
		 * future versions of the host.
		 */
		if (!storvsc_scsi_cmd_ok(scmnd)) {
			scmnd->scsi_done(scmnd);
			return 0;
		}
1555
	}
1556 1557 1558 1559

	/* Setup the cmd request */
	cmd_request->cmd = scmnd;

1560
	vm_srb = &cmd_request->vstor_packet.vm_srb;
1561
	vm_srb->win8_extension.time_out_value = 60;
1562

1563
	vm_srb->win8_extension.srb_flags |=
1564
		SRB_FLAGS_DISABLE_SYNCH_TRANSFER;
1565

1566 1567 1568 1569 1570 1571 1572
	if (scmnd->device->tagged_supported) {
		vm_srb->win8_extension.srb_flags |=
		(SRB_FLAGS_QUEUE_ACTION_ENABLE | SRB_FLAGS_NO_QUEUE_FREEZE);
		vm_srb->win8_extension.queue_tag = SP_UNTAGGED;
		vm_srb->win8_extension.queue_action = SRB_SIMPLE_TAG_REQUEST;
	}

1573 1574 1575 1576
	/* Build the SRB */
	switch (scmnd->sc_data_direction) {
	case DMA_TO_DEVICE:
		vm_srb->data_in = WRITE_TYPE;
1577
		vm_srb->win8_extension.srb_flags |= SRB_FLAGS_DATA_OUT;
1578 1579 1580
		break;
	case DMA_FROM_DEVICE:
		vm_srb->data_in = READ_TYPE;
1581
		vm_srb->win8_extension.srb_flags |= SRB_FLAGS_DATA_IN;
1582
		break;
1583
	case DMA_NONE:
1584
		vm_srb->data_in = UNKNOWN_TYPE;
1585
		vm_srb->win8_extension.srb_flags |= SRB_FLAGS_NO_DATA_TRANSFER;
1586
		break;
1587 1588 1589 1590 1591 1592 1593 1594
	default:
		/*
		 * This is DMA_BIDIRECTIONAL or something else we are never
		 * supposed to see here.
		 */
		WARN(1, "Unexpected data direction: %d\n",
		     scmnd->sc_data_direction);
		return -EINVAL;
1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606
	}


	vm_srb->port_number = host_dev->port;
	vm_srb->path_id = scmnd->device->channel;
	vm_srb->target_id = scmnd->device->id;
	vm_srb->lun = scmnd->device->lun;

	vm_srb->cdb_length = scmnd->cmd_len;

	memcpy(vm_srb->cdb, scmnd->cmnd, vm_srb->cdb_length);

1607 1608
	sgl = (struct scatterlist *)scsi_sglist(scmnd);
	sg_count = scsi_sg_count(scmnd);
1609

1610 1611 1612 1613 1614 1615 1616
	length = scsi_bufflen(scmnd);
	payload = (struct vmbus_packet_mpb_array *)&cmd_request->mpb;
	payload_sz = sizeof(cmd_request->mpb);

	if (sg_count) {
		if (sg_count > MAX_PAGE_BUFFER_COUNT) {

1617
			payload_sz = (sg_count * sizeof(u64) +
1618
				      sizeof(struct vmbus_packet_mpb_array));
1619
			payload = kzalloc(payload_sz, GFP_ATOMIC);
1620 1621
			if (!payload)
				return SCSI_MLQUEUE_DEVICE_BUSY;
1622 1623 1624 1625 1626
		}

		payload->range.len = length;
		payload->range.offset = sgl[0].offset;

1627 1628
		cur_sgl = sgl;
		for (i = 0; i < sg_count; i++) {
1629
			payload->range.pfn_array[i] =
1630 1631 1632
				page_to_pfn(sg_page((cur_sgl)));
			cur_sgl = sg_next(cur_sgl);
		}
1633 1634
	}

1635 1636 1637
	cmd_request->payload = payload;
	cmd_request->payload_sz = payload_sz;

1638
	/* Invokes the vsc to start an IO */
1639 1640
	ret = storvsc_do_io(dev, cmd_request, get_cpu());
	put_cpu();
1641

1642
	if (ret == -EAGAIN) {
1643 1644
		if (payload_sz > sizeof(cmd_request->mpb))
			kfree(payload);
1645
		/* no more space */
1646
		return SCSI_MLQUEUE_DEVICE_BUSY;
1647 1648
	}

1649
	return 0;
1650 1651
}

1652
static struct scsi_host_template scsi_driver = {
1653 1654
	.module	=		THIS_MODULE,
	.name =			"storvsc_host_t",
1655
	.cmd_size =             sizeof(struct storvsc_cmd_request),
1656 1657 1658
	.bios_param =		storvsc_get_chs,
	.queuecommand =		storvsc_queuecommand,
	.eh_host_reset_handler =	storvsc_host_reset_handler,
1659
	.proc_name =		"storvsc_host",
1660
	.eh_timed_out =		storvsc_eh_timed_out,
1661
	.slave_alloc =		storvsc_device_alloc,
1662
	.slave_configure =	storvsc_device_configure,
1663
	.cmd_per_lun =		255,
1664
	.this_id =		-1,
1665
	.use_clustering =	ENABLE_CLUSTERING,
1666
	/* Make sure we dont get a sg segment crosses a page boundary */
1667
	.dma_boundary =		PAGE_SIZE-1,
1668
	.no_write_same =	1,
1669
	.track_queue_depth =	1,
1670 1671
};

1672 1673 1674
enum {
	SCSI_GUID,
	IDE_GUID,
1675
	SFC_GUID,
1676 1677
};

1678
static const struct hv_vmbus_device_id id_table[] = {
1679
	/* SCSI guid */
1680 1681 1682
	{ HV_SCSI_GUID,
	  .driver_data = SCSI_GUID
	},
1683
	/* IDE guid */
1684 1685 1686
	{ HV_IDE_GUID,
	  .driver_data = IDE_GUID
	},
1687 1688 1689 1690 1691
	/* Fibre Channel GUID */
	{
	  HV_SYNTHFC_GUID,
	  .driver_data = SFC_GUID
	},
1692
	{ },
1693
};
1694

1695
MODULE_DEVICE_TABLE(vmbus, id_table);
1696

1697 1698
static int storvsc_probe(struct hv_device *device,
			const struct hv_vmbus_device_id *dev_id)
1699
{
1700
	int ret;
1701
	int num_cpus = num_online_cpus();
1702
	struct Scsi_Host *host;
1703
	struct hv_host_device *host_dev;
1704
	bool dev_is_ide = ((dev_id->driver_data == IDE_GUID) ? true : false);
1705
	bool is_fc = ((dev_id->driver_data == SFC_GUID) ? true : false);
1706
	int target = 0;
1707
	struct storvsc_device *stor_device;
1708 1709 1710
	int max_luns_per_target;
	int max_targets;
	int max_channels;
1711
	int max_sub_channels = 0;
1712

1713 1714 1715 1716 1717
	/*
	 * Based on the windows host we are running on,
	 * set state to properly communicate with the host.
	 */

1718
	if (vmbus_proto_version < VERSION_WIN8) {
1719 1720 1721
		max_luns_per_target = STORVSC_IDE_MAX_LUNS_PER_TARGET;
		max_targets = STORVSC_IDE_MAX_TARGETS;
		max_channels = STORVSC_IDE_MAX_CHANNELS;
1722
	} else {
1723 1724 1725
		max_luns_per_target = STORVSC_MAX_LUNS_PER_TARGET;
		max_targets = STORVSC_MAX_TARGETS;
		max_channels = STORVSC_MAX_CHANNELS;
1726 1727 1728 1729 1730 1731
		/*
		 * On Windows8 and above, we support sub-channels for storage.
		 * The number of sub-channels offerred is based on the number of
		 * VCPUs in the guest.
		 */
		max_sub_channels = (num_cpus / storvsc_vcpus_per_sub_channel);
1732 1733
	}

1734 1735 1736
	scsi_driver.can_queue = (max_outstanding_req_per_channel *
				 (max_sub_channels + 1));

1737
	host = scsi_host_alloc(&scsi_driver,
1738
			       sizeof(struct hv_host_device));
1739
	if (!host)
1740 1741
		return -ENOMEM;

1742
	host_dev = shost_priv(host);
1743
	memset(host_dev, 0, sizeof(struct hv_host_device));
1744

1745
	host_dev->port = host->host_no;
1746
	host_dev->dev = device;
1747

1748

1749
	stor_device = kzalloc(sizeof(struct storvsc_device), GFP_KERNEL);
1750
	if (!stor_device) {
1751
		ret = -ENOMEM;
1752
		goto err_out0;
1753
	}
1754

1755
	stor_device->destroy = false;
1756
	stor_device->open_sub_channel = false;
1757 1758
	init_waitqueue_head(&stor_device->waiting_to_drain);
	stor_device->device = device;
1759 1760
	stor_device->host = host;
	hv_set_drvdata(device, stor_device);
1761

1762
	stor_device->port_number = host->host_no;
1763
	ret = storvsc_connect_to_vsp(device, storvsc_ringbuffer_size, is_fc);
1764
	if (ret)
1765
		goto err_out1;
1766

1767 1768
	host_dev->path = stor_device->path_id;
	host_dev->target = stor_device->target_id;
1769

1770 1771 1772 1773 1774
	switch (dev_id->driver_data) {
	case SFC_GUID:
		host->max_lun = STORVSC_FC_MAX_LUNS_PER_TARGET;
		host->max_id = STORVSC_FC_MAX_TARGETS;
		host->max_channel = STORVSC_FC_MAX_CHANNELS - 1;
1775 1776 1777
#if IS_ENABLED(CONFIG_SCSI_FC_ATTRS)
		host->transportt = fc_transport_template;
#endif
1778 1779 1780
		break;

	case SCSI_GUID:
1781 1782 1783
		host->max_lun = max_luns_per_target;
		host->max_id = max_targets;
		host->max_channel = max_channels - 1;
1784 1785 1786 1787 1788 1789 1790 1791
		break;

	default:
		host->max_lun = STORVSC_IDE_MAX_LUNS_PER_TARGET;
		host->max_id = STORVSC_IDE_MAX_TARGETS;
		host->max_channel = STORVSC_IDE_MAX_CHANNELS - 1;
		break;
	}
1792 1793
	/* max cmd length */
	host->max_cmd_len = STORVSC_MAX_CMD_LEN;
1794

1795 1796 1797 1798 1799
	/*
	 * set the table size based on the info we got
	 * from the host.
	 */
	host->sg_tablesize = (stor_device->max_transfer_bytes >> PAGE_SHIFT);
1800 1801 1802 1803 1804
	/*
	 * Set the number of HW queues we are supporting.
	 */
	if (stor_device->num_sc != 0)
		host->nr_hw_queues = stor_device->num_sc + 1;
1805

1806
	/* Register the HBA and start the scsi bus scan */
1807
	ret = scsi_add_host(host, &device->device);
1808
	if (ret != 0)
1809
		goto err_out2;
1810

1811 1812
	if (!dev_is_ide) {
		scsi_scan_host(host);
1813 1814 1815 1816
	} else {
		target = (device->dev_instance.b[5] << 8 |
			 device->dev_instance.b[4]);
		ret = scsi_add_device(host, 0, target, 0);
1817 1818
		if (ret)
			goto err_out3;
1819
	}
1820 1821
#if IS_ENABLED(CONFIG_SCSI_FC_ATTRS)
	if (host->transportt == fc_transport_template) {
1822 1823 1824 1825
		struct fc_rport_identifiers ids = {
			.roles = FC_PORT_ROLE_FCP_DUMMY_INITIATOR,
		};

1826 1827
		fc_host_node_name(host) = stor_device->node_name;
		fc_host_port_name(host) = stor_device->port_name;
1828 1829 1830
		stor_device->rport = fc_remote_port_add(host, 0, &ids);
		if (!stor_device->rport)
			goto err_out3;
1831 1832
	}
#endif
1833
	return 0;
1834

1835 1836 1837
err_out3:
	scsi_remove_host(host);

1838
err_out2:
1839 1840 1841 1842
	/*
	 * Once we have connected with the host, we would need to
	 * to invoke storvsc_dev_remove() to rollback this state and
	 * this call also frees up the stor_device; hence the jump around
1843
	 * err_out1 label.
1844
	 */
1845
	storvsc_dev_remove(device);
1846
	goto err_out0;
1847 1848

err_out1:
1849
	kfree(stor_device->stor_chns);
1850
	kfree(stor_device);
1851 1852

err_out0:
1853
	scsi_host_put(host);
1854
	return ret;
1855 1856
}

1857 1858 1859 1860 1861
static int storvsc_remove(struct hv_device *dev)
{
	struct storvsc_device *stor_device = hv_get_drvdata(dev);
	struct Scsi_Host *host = stor_device->host;

1862
#if IS_ENABLED(CONFIG_SCSI_FC_ATTRS)
1863 1864
	if (host->transportt == fc_transport_template) {
		fc_remote_port_delete(stor_device->rport);
1865
		fc_remove_host(host);
1866
	}
1867
#endif
1868 1869 1870 1871 1872 1873 1874
	scsi_remove_host(host);
	storvsc_dev_remove(dev);
	scsi_host_put(host);

	return 0;
}

1875
static struct hv_driver storvsc_drv = {
1876
	.name = KBUILD_MODNAME,
1877
	.id_table = id_table,
1878 1879
	.probe = storvsc_probe,
	.remove = storvsc_remove,
1880
};
1881

1882 1883 1884 1885 1886 1887 1888
#if IS_ENABLED(CONFIG_SCSI_FC_ATTRS)
static struct fc_function_template fc_transport_functions = {
	.show_host_node_name = 1,
	.show_host_port_name = 1,
};
#endif

1889
static int __init storvsc_drv_init(void)
1890
{
1891
	int ret;
1892 1893 1894 1895 1896 1897 1898 1899

	/*
	 * Divide the ring buffer data size (which is 1 page less
	 * than the ring buffer size since that page is reserved for
	 * the ring buffer indices) by the max request size (which is
	 * vmbus_channel_packet_multipage_buffer + struct vstor_packet + u64)
	 */
	max_outstanding_req_per_channel =
1900 1901
		((storvsc_ringbuffer_size - PAGE_SIZE) /
		ALIGN(MAX_MULTIPAGE_BUFFER_PACKET +
1902 1903
		sizeof(struct vstor_packet) + sizeof(u64) -
		vmscsi_size_delta,
1904
		sizeof(u64)));
1905

1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919
#if IS_ENABLED(CONFIG_SCSI_FC_ATTRS)
	fc_transport_template = fc_attach_transport(&fc_transport_functions);
	if (!fc_transport_template)
		return -ENODEV;
#endif

	ret = vmbus_driver_register(&storvsc_drv);

#if IS_ENABLED(CONFIG_SCSI_FC_ATTRS)
	if (ret)
		fc_release_transport(fc_transport_template);
#endif

	return ret;
1920 1921
}

1922
static void __exit storvsc_drv_exit(void)
1923
{
1924
	vmbus_driver_unregister(&storvsc_drv);
1925 1926 1927
#if IS_ENABLED(CONFIG_SCSI_FC_ATTRS)
	fc_release_transport(fc_transport_template);
#endif
1928 1929
}

1930
MODULE_LICENSE("GPL");
1931
MODULE_DESCRIPTION("Microsoft Hyper-V virtual storage driver");
1932
module_init(storvsc_drv_init);
1933
module_exit(storvsc_drv_exit);