target_core_user.c 69.3 KB
Newer Older
1 2 3
/*
 * Copyright (C) 2013 Shaohua Li <shli@kernel.org>
 * Copyright (C) 2014 Red Hat, Inc.
4
 * Copyright (C) 2015 Arrikto, Inc.
5
 * Copyright (C) 2017 Chinamobile, Inc.
6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
 *
 * 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.,
 * 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA.
 */

#include <linux/spinlock.h>
#include <linux/module.h>
#include <linux/idr.h>
24
#include <linux/kernel.h>
25 26
#include <linux/timer.h>
#include <linux/parser.h>
27
#include <linux/vmalloc.h>
28
#include <linux/uio_driver.h>
29
#include <linux/radix-tree.h>
30
#include <linux/stringify.h>
31
#include <linux/bitops.h>
32
#include <linux/highmem.h>
33
#include <linux/configfs.h>
34
#include <linux/mutex.h>
M
Mike Christie 已提交
35
#include <linux/workqueue.h>
36
#include <net/genetlink.h>
37 38
#include <scsi/scsi_common.h>
#include <scsi/scsi_proto.h>
39 40 41
#include <target/target_core_base.h>
#include <target/target_core_fabric.h>
#include <target/target_core_backend.h>
42

43 44
#include <linux/target_core_user.h>

45 46 47 48 49
/**
 * DOC: Userspace I/O
 * Userspace I/O
 * -------------
 *
50 51 52 53 54 55 56 57 58 59
 * Define a shared-memory interface for LIO to pass SCSI commands and
 * data to userspace for processing. This is to allow backends that
 * are too complex for in-kernel support to be possible.
 *
 * It uses the UIO framework to do a lot of the device-creation and
 * introspection work for us.
 *
 * See the .h file for how the ring is laid out. Note that while the
 * command ring is defined, the particulars of the data area are
 * not. Offset values in the command entry point to other locations
60
 * internal to the mmap-ed area. There is separate space outside the
61 62 63 64 65 66 67 68 69 70 71 72 73 74 75
 * command ring for data buffers. This leaves maximum flexibility for
 * moving buffer allocations, or even page flipping or other
 * allocation techniques, without altering the command ring layout.
 *
 * SECURITY:
 * The user process must be assumed to be malicious. There's no way to
 * prevent it breaking the command ring protocol if it wants, but in
 * order to prevent other issues we must only ever read *data* from
 * the shared memory area, not offsets or sizes. This applies to
 * command ring entries as well as the mailbox. Extra code needed for
 * this may have a 'UAM' comment.
 */

#define TCMU_TIME_OUT (30 * MSEC_PER_SEC)

76 77
/* For cmd area, the size is fixed 8MB */
#define CMDR_SIZE (8 * 1024 * 1024)
78

79 80 81 82 83
/*
 * For data area, the block size is PAGE_SIZE and
 * the total size is 256K * PAGE_SIZE.
 */
#define DATA_BLOCK_SIZE PAGE_SIZE
84 85
#define DATA_BLOCK_SHIFT PAGE_SHIFT
#define DATA_BLOCK_BITS_DEF (256 * 1024)
86

87 88 89
#define TCMU_MBS_TO_BLOCKS(_mbs) (_mbs << (20 - DATA_BLOCK_SHIFT))
#define TCMU_BLOCKS_TO_MBS(_blocks) (_blocks >> (20 - DATA_BLOCK_SHIFT))

90 91 92 93
/*
 * Default number of global data blocks(512K * PAGE_SIZE)
 * when the unmap thread will be started.
 */
94
#define TCMU_GLOBAL_MAX_BLOCKS_DEF (512 * 1024)
95

96
static u8 tcmu_kern_cmd_reply_supported;
97
static u8 tcmu_netlink_blocked;
98

99 100 101 102 103 104 105 106
static struct device *tcmu_root_device;

struct tcmu_hba {
	u32 host_id;
};

#define TCMU_CONFIG_LEN 256

M
Mike Christie 已提交
107 108 109 110 111
static DEFINE_MUTEX(tcmu_nl_cmd_mutex);
static LIST_HEAD(tcmu_nl_cmd_list);

struct tcmu_dev;

112 113 114
struct tcmu_nl_cmd {
	/* wake up thread waiting for reply */
	struct completion complete;
M
Mike Christie 已提交
115 116
	struct list_head nl_list;
	struct tcmu_dev *udev;
117 118 119 120
	int cmd;
	int status;
};

121
struct tcmu_dev {
122
	struct list_head node;
123
	struct kref kref;
124

125 126 127 128 129 130 131
	struct se_device se_dev;

	char *name;
	struct se_hba *hba;

#define TCMU_DEV_BIT_OPEN 0
#define TCMU_DEV_BIT_BROKEN 1
132
#define TCMU_DEV_BIT_BLOCKED 2
133 134 135 136
	unsigned long flags;

	struct uio_info uio_info;

137 138
	struct inode *inode;

139
	struct tcmu_mailbox *mb_addr;
M
Mike Christie 已提交
140
	uint64_t dev_size;
141 142
	u32 cmdr_size;
	u32 cmdr_last_cleaned;
143
	/* Offset of data area from start of mb */
144
	/* Must add data_off and mb_addr to get the address */
145 146
	size_t data_off;
	size_t data_size;
147 148
	uint32_t max_blocks;
	size_t ring_size;
149

150
	struct mutex cmdr_lock;
151
	struct list_head qfull_queue;
152

153
	uint32_t dbi_max;
154
	uint32_t dbi_thresh;
155
	unsigned long *data_bitmap;
156 157
	struct radix_tree_root data_blocks;

158 159
	struct idr commands;

160
	struct timer_list cmd_timer;
161
	unsigned int cmd_time_out;
162
	struct list_head inflight_queue;
163 164 165 166

	struct timer_list qfull_timer;
	int qfull_time_out;

167
	struct list_head timedout_entry;
168

169 170
	struct tcmu_nl_cmd curr_nl_cmd;

171
	char dev_config[TCMU_CONFIG_LEN];
172 173

	int nl_reply_supported;
174 175 176 177 178 179 180 181 182
};

#define TCMU_DEV(_se_dev) container_of(_se_dev, struct tcmu_dev, se_dev)

#define CMDR_OFF sizeof(struct tcmu_mailbox)

struct tcmu_cmd {
	struct se_cmd *se_cmd;
	struct tcmu_dev *tcmu_dev;
183
	struct list_head queue_entry;
184 185 186

	uint16_t cmd_id;

187
	/* Can't use se_cmd when cleaning up expired cmds, because if
188
	   cmd has been completed then accessing se_cmd is off limits */
189 190 191
	uint32_t dbi_cnt;
	uint32_t dbi_cur;
	uint32_t *dbi;
192 193 194 195

	unsigned long deadline;

#define TCMU_CMD_BIT_EXPIRED 0
196
#define TCMU_CMD_BIT_INFLIGHT 1
197 198
	unsigned long flags;
};
199 200 201 202 203 204 205 206 207 208
/*
 * To avoid dead lock the mutex lock order should always be:
 *
 * mutex_lock(&root_udev_mutex);
 * ...
 * mutex_lock(&tcmu_dev->cmdr_lock);
 * mutex_unlock(&tcmu_dev->cmdr_lock);
 * ...
 * mutex_unlock(&root_udev_mutex);
 */
209 210 211
static DEFINE_MUTEX(root_udev_mutex);
static LIST_HEAD(root_udev);

212 213 214
static DEFINE_SPINLOCK(timed_out_udevs_lock);
static LIST_HEAD(timed_out_udevs);

215 216
static struct kmem_cache *tcmu_cmd_cache;

217
static atomic_t global_db_count = ATOMIC_INIT(0);
218
static struct delayed_work tcmu_unmap_work;
219
static int tcmu_global_max_blocks = TCMU_GLOBAL_MAX_BLOCKS_DEF;
220

221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259
static int tcmu_set_global_max_data_area(const char *str,
					 const struct kernel_param *kp)
{
	int ret, max_area_mb;

	ret = kstrtoint(str, 10, &max_area_mb);
	if (ret)
		return -EINVAL;

	if (max_area_mb <= 0) {
		pr_err("global_max_data_area must be larger than 0.\n");
		return -EINVAL;
	}

	tcmu_global_max_blocks = TCMU_MBS_TO_BLOCKS(max_area_mb);
	if (atomic_read(&global_db_count) > tcmu_global_max_blocks)
		schedule_delayed_work(&tcmu_unmap_work, 0);
	else
		cancel_delayed_work_sync(&tcmu_unmap_work);

	return 0;
}

static int tcmu_get_global_max_data_area(char *buffer,
					 const struct kernel_param *kp)
{
	return sprintf(buffer, "%d", TCMU_BLOCKS_TO_MBS(tcmu_global_max_blocks));
}

static const struct kernel_param_ops tcmu_global_max_data_area_op = {
	.set = tcmu_set_global_max_data_area,
	.get = tcmu_get_global_max_data_area,
};

module_param_cb(global_max_data_area_mb, &tcmu_global_max_data_area_op, NULL,
		S_IWUSR | S_IRUGO);
MODULE_PARM_DESC(global_max_data_area_mb,
		 "Max MBs allowed to be allocated to all the tcmu device's "
		 "data areas.");
260

261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346
static int tcmu_get_block_netlink(char *buffer,
				  const struct kernel_param *kp)
{
	return sprintf(buffer, "%s\n", tcmu_netlink_blocked ?
		       "blocked" : "unblocked");
}

static int tcmu_set_block_netlink(const char *str,
				  const struct kernel_param *kp)
{
	int ret;
	u8 val;

	ret = kstrtou8(str, 0, &val);
	if (ret < 0)
		return ret;

	if (val > 1) {
		pr_err("Invalid block netlink value %u\n", val);
		return -EINVAL;
	}

	tcmu_netlink_blocked = val;
	return 0;
}

static const struct kernel_param_ops tcmu_block_netlink_op = {
	.set = tcmu_set_block_netlink,
	.get = tcmu_get_block_netlink,
};

module_param_cb(block_netlink, &tcmu_block_netlink_op, NULL, S_IWUSR | S_IRUGO);
MODULE_PARM_DESC(block_netlink, "Block new netlink commands.");

static int tcmu_fail_netlink_cmd(struct tcmu_nl_cmd *nl_cmd)
{
	struct tcmu_dev *udev = nl_cmd->udev;

	if (!tcmu_netlink_blocked) {
		pr_err("Could not reset device's netlink interface. Netlink is not blocked.\n");
		return -EBUSY;
	}

	if (nl_cmd->cmd != TCMU_CMD_UNSPEC) {
		pr_debug("Aborting nl cmd %d on %s\n", nl_cmd->cmd, udev->name);
		nl_cmd->status = -EINTR;
		list_del(&nl_cmd->nl_list);
		complete(&nl_cmd->complete);
	}
	return 0;
}

static int tcmu_set_reset_netlink(const char *str,
				  const struct kernel_param *kp)
{
	struct tcmu_nl_cmd *nl_cmd, *tmp_cmd;
	int ret;
	u8 val;

	ret = kstrtou8(str, 0, &val);
	if (ret < 0)
		return ret;

	if (val != 1) {
		pr_err("Invalid reset netlink value %u\n", val);
		return -EINVAL;
	}

	mutex_lock(&tcmu_nl_cmd_mutex);
	list_for_each_entry_safe(nl_cmd, tmp_cmd, &tcmu_nl_cmd_list, nl_list) {
		ret = tcmu_fail_netlink_cmd(nl_cmd);
		if (ret)
			break;
	}
	mutex_unlock(&tcmu_nl_cmd_mutex);

	return ret;
}

static const struct kernel_param_ops tcmu_reset_netlink_op = {
	.set = tcmu_set_reset_netlink,
};

module_param_cb(reset_netlink, &tcmu_reset_netlink_op, NULL, S_IWUSR);
MODULE_PARM_DESC(reset_netlink, "Reset netlink commands.");

347 348 349 350 351 352 353 354 355
/* multicast group */
enum tcmu_multicast_groups {
	TCMU_MCGRP_CONFIG,
};

static const struct genl_multicast_group tcmu_mcgrps[] = {
	[TCMU_MCGRP_CONFIG] = { .name = "config", },
};

356 357 358 359 360 361 362 363 364 365
static struct nla_policy tcmu_attr_policy[TCMU_ATTR_MAX+1] = {
	[TCMU_ATTR_DEVICE]	= { .type = NLA_STRING },
	[TCMU_ATTR_MINOR]	= { .type = NLA_U32 },
	[TCMU_ATTR_CMD_STATUS]	= { .type = NLA_S32 },
	[TCMU_ATTR_DEVICE_ID]	= { .type = NLA_U32 },
	[TCMU_ATTR_SUPP_KERN_CMD_REPLY] = { .type = NLA_U8 },
};

static int tcmu_genl_cmd_done(struct genl_info *info, int completed_cmd)
{
M
Mike Christie 已提交
366
	struct tcmu_dev *udev = NULL;
367 368 369 370 371 372
	struct tcmu_nl_cmd *nl_cmd;
	int dev_id, rc, ret = 0;

	if (!info->attrs[TCMU_ATTR_CMD_STATUS] ||
	    !info->attrs[TCMU_ATTR_DEVICE_ID]) {
		printk(KERN_ERR "TCMU_ATTR_CMD_STATUS or TCMU_ATTR_DEVICE_ID not set, doing nothing\n");
373
		return -EINVAL;
374 375 376 377 378
        }

	dev_id = nla_get_u32(info->attrs[TCMU_ATTR_DEVICE_ID]);
	rc = nla_get_s32(info->attrs[TCMU_ATTR_CMD_STATUS]);

M
Mike Christie 已提交
379 380 381 382 383 384
	mutex_lock(&tcmu_nl_cmd_mutex);
	list_for_each_entry(nl_cmd, &tcmu_nl_cmd_list, nl_list) {
		if (nl_cmd->udev->se_dev.dev_index == dev_id) {
			udev = nl_cmd->udev;
			break;
		}
385 386
	}

M
Mike Christie 已提交
387
	if (!udev) {
388
		pr_err("tcmu nl cmd %u/%d completion could not find device with dev id %u.\n",
M
Mike Christie 已提交
389 390 391 392 393
		       completed_cmd, rc, dev_id);
		ret = -ENODEV;
		goto unlock;
	}
	list_del(&nl_cmd->nl_list);
394

395 396 397
	pr_debug("%s genl cmd done got id %d curr %d done %d rc %d stat %d\n",
		 udev->name, dev_id, nl_cmd->cmd, completed_cmd, rc,
		 nl_cmd->status);
398 399

	if (nl_cmd->cmd != completed_cmd) {
M
Mike Christie 已提交
400 401
		pr_err("Mismatched commands on %s (Expecting reply for %d. Current %d).\n",
		       udev->name, completed_cmd, nl_cmd->cmd);
402
		ret = -EINVAL;
M
Mike Christie 已提交
403
		goto unlock;
404 405
	}

M
Mike Christie 已提交
406 407 408 409
	nl_cmd->status = rc;
	complete(&nl_cmd->complete);
unlock:
	mutex_unlock(&tcmu_nl_cmd_mutex);
410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443
	return ret;
}

static int tcmu_genl_rm_dev_done(struct sk_buff *skb, struct genl_info *info)
{
	return tcmu_genl_cmd_done(info, TCMU_CMD_REMOVED_DEVICE);
}

static int tcmu_genl_add_dev_done(struct sk_buff *skb, struct genl_info *info)
{
	return tcmu_genl_cmd_done(info, TCMU_CMD_ADDED_DEVICE);
}

static int tcmu_genl_reconfig_dev_done(struct sk_buff *skb,
				       struct genl_info *info)
{
	return tcmu_genl_cmd_done(info, TCMU_CMD_RECONFIG_DEVICE);
}

static int tcmu_genl_set_features(struct sk_buff *skb, struct genl_info *info)
{
	if (info->attrs[TCMU_ATTR_SUPP_KERN_CMD_REPLY]) {
		tcmu_kern_cmd_reply_supported  =
			nla_get_u8(info->attrs[TCMU_ATTR_SUPP_KERN_CMD_REPLY]);
		printk(KERN_INFO "tcmu daemon: command reply support %u.\n",
		       tcmu_kern_cmd_reply_supported);
	}

	return 0;
}

static const struct genl_ops tcmu_genl_ops[] = {
	{
		.cmd	= TCMU_CMD_SET_FEATURES,
444
		.validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP,
445 446 447 448 449
		.flags	= GENL_ADMIN_PERM,
		.doit	= tcmu_genl_set_features,
	},
	{
		.cmd	= TCMU_CMD_ADDED_DEVICE_DONE,
450
		.validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP,
451 452 453 454 455
		.flags	= GENL_ADMIN_PERM,
		.doit	= tcmu_genl_add_dev_done,
	},
	{
		.cmd	= TCMU_CMD_REMOVED_DEVICE_DONE,
456
		.validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP,
457 458 459 460 461
		.flags	= GENL_ADMIN_PERM,
		.doit	= tcmu_genl_rm_dev_done,
	},
	{
		.cmd	= TCMU_CMD_RECONFIG_DEVICE_DONE,
462
		.validate = GENL_DONT_VALIDATE_STRICT | GENL_DONT_VALIDATE_DUMP,
463 464 465 466 467
		.flags	= GENL_ADMIN_PERM,
		.doit	= tcmu_genl_reconfig_dev_done,
	},
};

468
/* Our generic netlink family */
469
static struct genl_family tcmu_genl_family __ro_after_init = {
470
	.module = THIS_MODULE,
471 472
	.hdrsize = 0,
	.name = "TCM-USER",
473
	.version = 2,
474
	.maxattr = TCMU_ATTR_MAX,
475
	.policy = tcmu_attr_policy,
476 477
	.mcgrps = tcmu_mcgrps,
	.n_mcgrps = ARRAY_SIZE(tcmu_mcgrps),
478
	.netnsok = true,
479 480
	.ops = tcmu_genl_ops,
	.n_ops = ARRAY_SIZE(tcmu_genl_ops),
481 482
};

483 484 485 486 487
#define tcmu_cmd_set_dbi_cur(cmd, index) ((cmd)->dbi_cur = (index))
#define tcmu_cmd_reset_dbi_cur(cmd) tcmu_cmd_set_dbi_cur(cmd, 0)
#define tcmu_cmd_set_dbi(cmd, index) ((cmd)->dbi[(cmd)->dbi_cur++] = (index))
#define tcmu_cmd_get_dbi(cmd) ((cmd)->dbi[(cmd)->dbi_cur++])

488
static void tcmu_cmd_free_data(struct tcmu_cmd *tcmu_cmd, uint32_t len)
489 490 491 492
{
	struct tcmu_dev *udev = tcmu_cmd->tcmu_dev;
	uint32_t i;

493
	for (i = 0; i < len; i++)
494 495 496
		clear_bit(tcmu_cmd->dbi[i], udev->data_bitmap);
}

497 498
static inline bool tcmu_get_empty_block(struct tcmu_dev *udev,
					struct tcmu_cmd *tcmu_cmd)
499
{
500 501
	struct page *page;
	int ret, dbi;
502

503 504 505
	dbi = find_first_zero_bit(udev->data_bitmap, udev->dbi_thresh);
	if (dbi == udev->dbi_thresh)
		return false;
506

507 508 509
	page = radix_tree_lookup(&udev->data_blocks, dbi);
	if (!page) {
		if (atomic_add_return(1, &global_db_count) >
510
				      tcmu_global_max_blocks)
511
			schedule_delayed_work(&tcmu_unmap_work, 0);
512

513 514 515
		/* try to get new page from the mm */
		page = alloc_page(GFP_KERNEL);
		if (!page)
516
			goto err_alloc;
517 518

		ret = radix_tree_insert(&udev->data_blocks, dbi, page);
519 520
		if (ret)
			goto err_insert;
521 522
	}

523 524 525 526 527 528 529
	if (dbi > udev->dbi_max)
		udev->dbi_max = dbi;

	set_bit(dbi, udev->data_bitmap);
	tcmu_cmd_set_dbi(tcmu_cmd, dbi);

	return true;
530 531 532 533 534
err_insert:
	__free_page(page);
err_alloc:
	atomic_dec(&global_db_count);
	return false;
535 536
}

537 538 539 540 541 542 543
static bool tcmu_get_empty_blocks(struct tcmu_dev *udev,
				  struct tcmu_cmd *tcmu_cmd)
{
	int i;

	for (i = tcmu_cmd->dbi_cur; i < tcmu_cmd->dbi_cnt; i++) {
		if (!tcmu_get_empty_block(udev, tcmu_cmd))
544
			return false;
545 546 547 548 549 550
	}
	return true;
}

static inline struct page *
tcmu_get_block_page(struct tcmu_dev *udev, uint32_t dbi)
551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581
{
	return radix_tree_lookup(&udev->data_blocks, dbi);
}

static inline void tcmu_free_cmd(struct tcmu_cmd *tcmu_cmd)
{
	kfree(tcmu_cmd->dbi);
	kmem_cache_free(tcmu_cmd_cache, tcmu_cmd);
}

static inline size_t tcmu_cmd_get_data_length(struct tcmu_cmd *tcmu_cmd)
{
	struct se_cmd *se_cmd = tcmu_cmd->se_cmd;
	size_t data_length = round_up(se_cmd->data_length, DATA_BLOCK_SIZE);

	if (se_cmd->se_cmd_flags & SCF_BIDI) {
		BUG_ON(!(se_cmd->t_bidi_data_sg && se_cmd->t_bidi_data_nents));
		data_length += round_up(se_cmd->t_bidi_data_sg->length,
				DATA_BLOCK_SIZE);
	}

	return data_length;
}

static inline uint32_t tcmu_cmd_get_block_cnt(struct tcmu_cmd *tcmu_cmd)
{
	size_t data_length = tcmu_cmd_get_data_length(tcmu_cmd);

	return data_length / DATA_BLOCK_SIZE;
}

582 583 584 585 586 587 588 589 590 591
static struct tcmu_cmd *tcmu_alloc_cmd(struct se_cmd *se_cmd)
{
	struct se_device *se_dev = se_cmd->se_dev;
	struct tcmu_dev *udev = TCMU_DEV(se_dev);
	struct tcmu_cmd *tcmu_cmd;

	tcmu_cmd = kmem_cache_zalloc(tcmu_cmd_cache, GFP_KERNEL);
	if (!tcmu_cmd)
		return NULL;

592
	INIT_LIST_HEAD(&tcmu_cmd->queue_entry);
593 594 595
	tcmu_cmd->se_cmd = se_cmd;
	tcmu_cmd->tcmu_dev = udev;

596 597 598 599 600 601 602 603 604
	tcmu_cmd_reset_dbi_cur(tcmu_cmd);
	tcmu_cmd->dbi_cnt = tcmu_cmd_get_block_cnt(tcmu_cmd);
	tcmu_cmd->dbi = kcalloc(tcmu_cmd->dbi_cnt, sizeof(uint32_t),
				GFP_KERNEL);
	if (!tcmu_cmd->dbi) {
		kmem_cache_free(tcmu_cmd_cache, tcmu_cmd);
		return NULL;
	}

605 606 607 608 609
	return tcmu_cmd;
}

static inline void tcmu_flush_dcache_range(void *vaddr, size_t size)
{
G
Geliang Tang 已提交
610
	unsigned long offset = offset_in_page(vaddr);
611
	void *start = vaddr - offset;
612 613 614 615

	size = round_up(size+offset, PAGE_SIZE);

	while (size) {
616 617
		flush_dcache_page(virt_to_page(start));
		start += PAGE_SIZE;
618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646
		size -= PAGE_SIZE;
	}
}

/*
 * Some ring helper functions. We don't assume size is a power of 2 so
 * we can't use circ_buf.h.
 */
static inline size_t spc_used(size_t head, size_t tail, size_t size)
{
	int diff = head - tail;

	if (diff >= 0)
		return diff;
	else
		return size + diff;
}

static inline size_t spc_free(size_t head, size_t tail, size_t size)
{
	/* Keep 1 byte unused or we can't tell full from empty */
	return (size - spc_used(head, tail, size) - 1);
}

static inline size_t head_to_end(size_t head, size_t size)
{
	return size - head;
}

X
Xiubo Li 已提交
647
static inline void new_iov(struct iovec **iov, int *iov_cnt)
648 649 650 651 652 653 654 655 656 657 658
{
	struct iovec *iovec;

	if (*iov_cnt != 0)
		(*iov)++;
	(*iov_cnt)++;

	iovec = *iov;
	memset(iovec, 0, sizeof(struct iovec));
}

659 660
#define UPDATE_HEAD(head, used, size) smp_store_release(&head, ((head % size) + used) % size)

661
/* offset is relative to mb_addr */
662 663
static inline size_t get_block_offset_user(struct tcmu_dev *dev,
		int dbi, int remaining)
664
{
665
	return dev->data_off + dbi * DATA_BLOCK_SIZE +
666 667 668
		DATA_BLOCK_SIZE - remaining;
}

669
static inline size_t iov_tail(struct iovec *iov)
670 671 672 673
{
	return (size_t)iov->iov_base + iov->iov_len;
}

674
static void scatter_data_area(struct tcmu_dev *udev,
675 676 677
	struct tcmu_cmd *tcmu_cmd, struct scatterlist *data_sg,
	unsigned int data_nents, struct iovec **iov,
	int *iov_cnt, bool copy_data)
678
{
679
	int i, dbi;
680
	int block_remaining = 0;
681 682
	void *from, *to = NULL;
	size_t copy_bytes, to_offset, offset;
683
	struct scatterlist *sg;
684
	struct page *page;
685 686

	for_each_sg(data_sg, sg, data_nents, i) {
687
		int sg_remaining = sg->length;
688
		from = kmap_atomic(sg_page(sg)) + sg->offset;
689 690
		while (sg_remaining > 0) {
			if (block_remaining == 0) {
691 692 693
				if (to)
					kunmap_atomic(to);

694
				block_remaining = DATA_BLOCK_SIZE;
695 696 697
				dbi = tcmu_cmd_get_dbi(tcmu_cmd);
				page = tcmu_get_block_page(udev, dbi);
				to = kmap_atomic(page);
698
			}
699

X
Xiubo Li 已提交
700 701 702
			/*
			 * Covert to virtual offset of the ring data area.
			 */
703
			to_offset = get_block_offset_user(udev, dbi,
704
					block_remaining);
705

X
Xiubo Li 已提交
706 707 708 709 710 711 712
			/*
			 * The following code will gather and map the blocks
			 * to the same iovec when the blocks are all next to
			 * each other.
			 */
			copy_bytes = min_t(size_t, sg_remaining,
					block_remaining);
713
			if (*iov_cnt != 0 &&
714
			    to_offset == iov_tail(*iov)) {
X
Xiubo Li 已提交
715 716 717 718 719
				/*
				 * Will append to the current iovec, because
				 * the current block page is next to the
				 * previous one.
				 */
720 721
				(*iov)->iov_len += copy_bytes;
			} else {
X
Xiubo Li 已提交
722 723 724 725 726 727
				/*
				 * Will allocate a new iovec because we are
				 * first time here or the current block page
				 * is not next to the previous one.
				 */
				new_iov(iov, iov_cnt);
728
				(*iov)->iov_base = (void __user *)to_offset;
729 730
				(*iov)->iov_len = copy_bytes;
			}
X
Xiubo Li 已提交
731

732
			if (copy_data) {
733 734 735 736
				offset = DATA_BLOCK_SIZE - block_remaining;
				memcpy(to + offset,
				       from + sg->length - sg_remaining,
				       copy_bytes);
737 738
				tcmu_flush_dcache_range(to, copy_bytes);
			}
X
Xiubo Li 已提交
739

740 741
			sg_remaining -= copy_bytes;
			block_remaining -= copy_bytes;
742
		}
743
		kunmap_atomic(from - sg->offset);
744
	}
X
Xiubo Li 已提交
745

746 747
	if (to)
		kunmap_atomic(to);
748 749
}

750
static void gather_data_area(struct tcmu_dev *udev, struct tcmu_cmd *cmd,
751
			     bool bidi, uint32_t read_len)
752
{
753
	struct se_cmd *se_cmd = cmd->se_cmd;
754
	int i, dbi;
755
	int block_remaining = 0;
756
	void *from = NULL, *to;
757
	size_t copy_bytes, offset;
758
	struct scatterlist *sg, *data_sg;
759
	struct page *page;
760
	unsigned int data_nents;
761
	uint32_t count = 0;
762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777

	if (!bidi) {
		data_sg = se_cmd->t_data_sg;
		data_nents = se_cmd->t_data_nents;
	} else {

		/*
		 * For bidi case, the first count blocks are for Data-Out
		 * buffer blocks, and before gathering the Data-In buffer
		 * the Data-Out buffer blocks should be discarded.
		 */
		count = DIV_ROUND_UP(se_cmd->data_length, DATA_BLOCK_SIZE);

		data_sg = se_cmd->t_bidi_data_sg;
		data_nents = se_cmd->t_bidi_data_nents;
	}
778

779 780
	tcmu_cmd_set_dbi_cur(cmd, count);

781
	for_each_sg(data_sg, sg, data_nents, i) {
782
		int sg_remaining = sg->length;
783
		to = kmap_atomic(sg_page(sg)) + sg->offset;
784
		while (sg_remaining > 0 && read_len > 0) {
785
			if (block_remaining == 0) {
786 787 788
				if (from)
					kunmap_atomic(from);

789
				block_remaining = DATA_BLOCK_SIZE;
790
				dbi = tcmu_cmd_get_dbi(cmd);
791 792
				page = tcmu_get_block_page(udev, dbi);
				from = kmap_atomic(page);
793 794 795
			}
			copy_bytes = min_t(size_t, sg_remaining,
					block_remaining);
796 797
			if (read_len < copy_bytes)
				copy_bytes = read_len;
798
			offset = DATA_BLOCK_SIZE - block_remaining;
799
			tcmu_flush_dcache_range(from, copy_bytes);
800
			memcpy(to + sg->length - sg_remaining, from + offset,
801
					copy_bytes);
802

803 804
			sg_remaining -= copy_bytes;
			block_remaining -= copy_bytes;
805
			read_len -= copy_bytes;
806
		}
807
		kunmap_atomic(to - sg->offset);
808 809
		if (read_len == 0)
			break;
810
	}
811 812
	if (from)
		kunmap_atomic(from);
813 814
}

815
static inline size_t spc_bitmap_free(unsigned long *bitmap, uint32_t thresh)
816
{
M
Mike Christie 已提交
817
	return thresh - bitmap_weight(bitmap, thresh);
818 819
}

820
/*
821
 * We can't queue a command until we have space available on the cmd ring *and*
822
 * space available on the data area.
823 824 825
 *
 * Called with ring lock held.
 */
826 827
static bool is_ring_space_avail(struct tcmu_dev *udev, struct tcmu_cmd *cmd,
		size_t cmd_size, size_t data_needed)
828 829
{
	struct tcmu_mailbox *mb = udev->mb_addr;
830 831
	uint32_t blocks_needed = (data_needed + DATA_BLOCK_SIZE - 1)
				/ DATA_BLOCK_SIZE;
832
	size_t space, cmd_needed;
833 834 835 836 837 838
	u32 cmd_head;

	tcmu_flush_dcache_range(mb, sizeof(*mb));

	cmd_head = mb->cmd_head % udev->cmdr_size; /* UAM */

839 840 841 842 843 844 845 846 847
	/*
	 * If cmd end-of-ring space is too small then we need space for a NOP plus
	 * original cmd - cmds are internally contiguous.
	 */
	if (head_to_end(cmd_head, udev->cmdr_size) >= cmd_size)
		cmd_needed = cmd_size;
	else
		cmd_needed = cmd_size + head_to_end(cmd_head, udev->cmdr_size);

848 849 850 851 852 853 854
	space = spc_free(cmd_head, udev->cmdr_last_cleaned, udev->cmdr_size);
	if (space < cmd_needed) {
		pr_debug("no cmd space: %u %u %u\n", cmd_head,
		       udev->cmdr_last_cleaned, udev->cmdr_size);
		return false;
	}

855 856
	/* try to check and get the data blocks as needed */
	space = spc_bitmap_free(udev->data_bitmap, udev->dbi_thresh);
M
Mike Christie 已提交
857
	if ((space * DATA_BLOCK_SIZE) < data_needed) {
858 859
		unsigned long blocks_left =
				(udev->max_blocks - udev->dbi_thresh) + space;
860 861 862 863 864 865 866 867

		if (blocks_left < blocks_needed) {
			pr_debug("no data space: only %lu available, but ask for %zu\n",
					blocks_left * DATA_BLOCK_SIZE,
					data_needed);
			return false;
		}

868
		udev->dbi_thresh += blocks_needed;
869 870
		if (udev->dbi_thresh > udev->max_blocks)
			udev->dbi_thresh = udev->max_blocks;
871 872
	}

873
	return tcmu_get_empty_blocks(udev, cmd);
874 875
}

876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896
static inline size_t tcmu_cmd_get_base_cmd_size(size_t iov_cnt)
{
	return max(offsetof(struct tcmu_cmd_entry, req.iov[iov_cnt]),
			sizeof(struct tcmu_cmd_entry));
}

static inline size_t tcmu_cmd_get_cmd_size(struct tcmu_cmd *tcmu_cmd,
					   size_t base_command_size)
{
	struct se_cmd *se_cmd = tcmu_cmd->se_cmd;
	size_t command_size;

	command_size = base_command_size +
		round_up(scsi_command_size(se_cmd->t_task_cdb),
				TCMU_OP_ALIGN_SIZE);

	WARN_ON(command_size & (TCMU_OP_ALIGN_SIZE-1));

	return command_size;
}

897 898
static int tcmu_setup_cmd_timer(struct tcmu_cmd *tcmu_cmd, unsigned int tmo,
				struct timer_list *timer)
M
Mike Christie 已提交
899 900 901 902 903
{
	struct tcmu_dev *udev = tcmu_cmd->tcmu_dev;
	int cmd_id;

	if (tcmu_cmd->cmd_id)
904
		goto setup_timer;
M
Mike Christie 已提交
905 906 907 908 909 910 911 912

	cmd_id = idr_alloc(&udev->commands, tcmu_cmd, 1, USHRT_MAX, GFP_NOWAIT);
	if (cmd_id < 0) {
		pr_err("tcmu: Could not allocate cmd id.\n");
		return cmd_id;
	}
	tcmu_cmd->cmd_id = cmd_id;

913 914
	pr_debug("allocated cmd %u for dev %s tmo %lu\n", tcmu_cmd->cmd_id,
		 udev->name, tmo / MSEC_PER_SEC);
M
Mike Christie 已提交
915

916 917 918 919
setup_timer:
	if (!tmo)
		return 0;

M
Mike Christie 已提交
920
	tcmu_cmd->deadline = round_jiffies_up(jiffies + msecs_to_jiffies(tmo));
921 922 923
	if (!timer_pending(timer))
		mod_timer(timer, tcmu_cmd->deadline);

M
Mike Christie 已提交
924 925 926
	return 0;
}

927
static int add_to_qfull_queue(struct tcmu_cmd *tcmu_cmd)
928 929
{
	struct tcmu_dev *udev = tcmu_cmd->tcmu_dev;
930
	unsigned int tmo;
931 932
	int ret;

933 934 935 936 937 938 939 940 941 942 943 944 945 946
	/*
	 * For backwards compat if qfull_time_out is not set use
	 * cmd_time_out and if that's not set use the default time out.
	 */
	if (!udev->qfull_time_out)
		return -ETIMEDOUT;
	else if (udev->qfull_time_out > 0)
		tmo = udev->qfull_time_out;
	else if (udev->cmd_time_out)
		tmo = udev->cmd_time_out;
	else
		tmo = TCMU_TIME_OUT;

	ret = tcmu_setup_cmd_timer(tcmu_cmd, tmo, &udev->qfull_timer);
947 948 949
	if (ret)
		return ret;

950
	list_add_tail(&tcmu_cmd->queue_entry, &udev->qfull_queue);
951 952 953 954 955
	pr_debug("adding cmd %u on dev %s to ring space wait queue\n",
		 tcmu_cmd->cmd_id, udev->name);
	return 0;
}

956 957 958 959 960 961 962 963
/**
 * queue_cmd_ring - queue cmd to ring or internally
 * @tcmu_cmd: cmd to queue
 * @scsi_err: TCM error code if failure (-1) returned.
 *
 * Returns:
 * -1 we cannot queue internally or to the ring.
 *  0 success
964
 *  1 internally queued to wait for ring memory to free.
965
 */
966
static int queue_cmd_ring(struct tcmu_cmd *tcmu_cmd, sense_reason_t *scsi_err)
967 968 969 970 971 972 973
{
	struct tcmu_dev *udev = tcmu_cmd->tcmu_dev;
	struct se_cmd *se_cmd = tcmu_cmd->se_cmd;
	size_t base_command_size, command_size;
	struct tcmu_mailbox *mb;
	struct tcmu_cmd_entry *entry;
	struct iovec *iov;
974
	int iov_cnt, ret;
975 976
	uint32_t cmd_head;
	uint64_t cdb_off;
977
	bool copy_to_data_area;
978
	size_t data_length = tcmu_cmd_get_data_length(tcmu_cmd);
979

980 981
	*scsi_err = TCM_NO_SENSE;

982 983 984 985 986
	if (test_bit(TCMU_DEV_BIT_BLOCKED, &udev->flags)) {
		*scsi_err = TCM_LUN_BUSY;
		return -1;
	}

987 988 989 990
	if (test_bit(TCMU_DEV_BIT_BROKEN, &udev->flags)) {
		*scsi_err = TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE;
		return -1;
	}
991 992 993 994 995

	/*
	 * Must be a certain minimum size for response sense info, but
	 * also may be larger if the iov array is large.
	 *
996 997 998 999 1000 1001 1002 1003 1004 1005
	 * We prepare as many iovs as possbile for potential uses here,
	 * because it's expensive to tell how many regions are freed in
	 * the bitmap & global data pool, as the size calculated here
	 * will only be used to do the checks.
	 *
	 * The size will be recalculated later as actually needed to save
	 * cmd area memories.
	 */
	base_command_size = tcmu_cmd_get_base_cmd_size(tcmu_cmd->dbi_cnt);
	command_size = tcmu_cmd_get_cmd_size(tcmu_cmd, base_command_size);
1006

1007
	if (!list_empty(&udev->qfull_queue))
1008
		goto queue;
1009 1010 1011

	mb = udev->mb_addr;
	cmd_head = mb->cmd_head % udev->cmdr_size; /* UAM */
1012 1013 1014
	if ((command_size > (udev->cmdr_size / 2)) ||
	    data_length > udev->data_size) {
		pr_warn("TCMU: Request of size %zu/%zu is too big for %u/%zu "
1015
			"cmd ring/data area\n", command_size, data_length,
1016
			udev->cmdr_size, udev->data_size);
1017 1018
		*scsi_err = TCM_INVALID_CDB_FIELD;
		return -1;
1019
	}
1020

1021
	if (!is_ring_space_avail(udev, tcmu_cmd, command_size, data_length)) {
1022 1023 1024 1025 1026 1027
		/*
		 * Don't leave commands partially setup because the unmap
		 * thread might need the blocks to make forward progress.
		 */
		tcmu_cmd_free_data(tcmu_cmd, tcmu_cmd->dbi_cur);
		tcmu_cmd_reset_dbi_cur(tcmu_cmd);
1028
		goto queue;
1029 1030
	}

1031 1032 1033 1034
	/* Insert a PAD if end-of-ring space is too small */
	if (head_to_end(cmd_head, udev->cmdr_size) < command_size) {
		size_t pad_size = head_to_end(cmd_head, udev->cmdr_size);

1035
		entry = (void *) mb + CMDR_OFF + cmd_head;
A
Andy Grover 已提交
1036 1037 1038 1039 1040
		tcmu_hdr_set_op(&entry->hdr.len_op, TCMU_OP_PAD);
		tcmu_hdr_set_len(&entry->hdr.len_op, pad_size);
		entry->hdr.cmd_id = 0; /* not used for PAD */
		entry->hdr.kflags = 0;
		entry->hdr.uflags = 0;
1041
		tcmu_flush_dcache_range(entry, sizeof(*entry));
1042 1043

		UPDATE_HEAD(mb->cmd_head, pad_size, udev->cmdr_size);
1044
		tcmu_flush_dcache_range(mb, sizeof(*mb));
1045 1046 1047 1048 1049 1050

		cmd_head = mb->cmd_head % udev->cmdr_size; /* UAM */
		WARN_ON(cmd_head != 0);
	}

	entry = (void *) mb + CMDR_OFF + cmd_head;
1051
	memset(entry, 0, command_size);
A
Andy Grover 已提交
1052
	tcmu_hdr_set_op(&entry->hdr.len_op, TCMU_OP_CMD);
1053

1054
	/* Handle allocating space from the data area */
1055
	tcmu_cmd_reset_dbi_cur(tcmu_cmd);
1056
	iov = &entry->req.iov[0];
1057
	iov_cnt = 0;
1058 1059
	copy_to_data_area = (se_cmd->data_direction == DMA_TO_DEVICE
		|| se_cmd->se_cmd_flags & SCF_BIDI);
1060 1061 1062
	scatter_data_area(udev, tcmu_cmd, se_cmd->t_data_sg,
			  se_cmd->t_data_nents, &iov, &iov_cnt,
			  copy_to_data_area);
1063 1064
	entry->req.iov_cnt = iov_cnt;

1065
	/* Handle BIDI commands */
1066
	iov_cnt = 0;
1067 1068
	if (se_cmd->se_cmd_flags & SCF_BIDI) {
		iov++;
1069 1070 1071
		scatter_data_area(udev, tcmu_cmd, se_cmd->t_bidi_data_sg,
				  se_cmd->t_bidi_data_nents, &iov, &iov_cnt,
				  false);
1072
	}
1073
	entry->req.iov_bidi_cnt = iov_cnt;
1074

1075 1076
	ret = tcmu_setup_cmd_timer(tcmu_cmd, udev->cmd_time_out,
				   &udev->cmd_timer);
M
Mike Christie 已提交
1077 1078
	if (ret) {
		tcmu_cmd_free_data(tcmu_cmd, tcmu_cmd->dbi_cnt);
1079 1080 1081

		*scsi_err = TCM_OUT_OF_RESOURCES;
		return -1;
M
Mike Christie 已提交
1082 1083 1084
	}
	entry->hdr.cmd_id = tcmu_cmd->cmd_id;

1085 1086 1087 1088 1089 1090 1091 1092 1093 1094
	/*
	 * Recalaulate the command's base size and size according
	 * to the actual needs
	 */
	base_command_size = tcmu_cmd_get_base_cmd_size(entry->req.iov_cnt +
						       entry->req.iov_bidi_cnt);
	command_size = tcmu_cmd_get_cmd_size(tcmu_cmd, base_command_size);

	tcmu_hdr_set_len(&entry->hdr.len_op, command_size);

1095 1096 1097 1098 1099 1100 1101 1102 1103
	/* All offsets relative to mb_addr, not start of entry! */
	cdb_off = CMDR_OFF + cmd_head + base_command_size;
	memcpy((void *) mb + cdb_off, se_cmd->t_task_cdb, scsi_command_size(se_cmd->t_task_cdb));
	entry->req.cdb_off = cdb_off;
	tcmu_flush_dcache_range(entry, sizeof(*entry));

	UPDATE_HEAD(mb->cmd_head, command_size, udev->cmdr_size);
	tcmu_flush_dcache_range(mb, sizeof(*mb));

1104 1105 1106
	list_add_tail(&tcmu_cmd->queue_entry, &udev->inflight_queue);
	set_bit(TCMU_CMD_BIT_INFLIGHT, &tcmu_cmd->flags);

1107 1108 1109
	/* TODO: only if FLUSH and FUA? */
	uio_event_notify(&udev->uio_info);

1110
	return 0;
1111 1112

queue:
1113
	if (add_to_qfull_queue(tcmu_cmd)) {
1114 1115 1116 1117 1118
		*scsi_err = TCM_OUT_OF_RESOURCES;
		return -1;
	}

	return 1;
1119 1120
}

1121 1122
static sense_reason_t
tcmu_queue_cmd(struct se_cmd *se_cmd)
1123
{
1124 1125
	struct se_device *se_dev = se_cmd->se_dev;
	struct tcmu_dev *udev = TCMU_DEV(se_dev);
1126
	struct tcmu_cmd *tcmu_cmd;
1127
	sense_reason_t scsi_ret;
1128
	int ret;
1129 1130 1131

	tcmu_cmd = tcmu_alloc_cmd(se_cmd);
	if (!tcmu_cmd)
1132
		return TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE;
1133

1134 1135 1136 1137
	mutex_lock(&udev->cmdr_lock);
	ret = queue_cmd_ring(tcmu_cmd, &scsi_ret);
	mutex_unlock(&udev->cmdr_lock);
	if (ret < 0)
1138
		tcmu_free_cmd(tcmu_cmd);
1139
	return scsi_ret;
1140 1141 1142 1143 1144 1145
}

static void tcmu_handle_completion(struct tcmu_cmd *cmd, struct tcmu_cmd_entry *entry)
{
	struct se_cmd *se_cmd = cmd->se_cmd;
	struct tcmu_dev *udev = cmd->tcmu_dev;
1146 1147
	bool read_len_valid = false;
	uint32_t read_len = se_cmd->data_length;
1148

1149 1150 1151 1152 1153 1154
	/*
	 * cmd has been completed already from timeout, just reclaim
	 * data area space and free cmd
	 */
	if (test_bit(TCMU_CMD_BIT_EXPIRED, &cmd->flags))
		goto out;
1155

1156 1157
	list_del_init(&cmd->queue_entry);

1158
	tcmu_cmd_reset_dbi_cur(cmd);
1159

A
Andy Grover 已提交
1160 1161 1162
	if (entry->hdr.uflags & TCMU_UFLAG_UNKNOWN_OP) {
		pr_warn("TCMU: Userspace set UNKNOWN_OP flag on se_cmd %p\n",
			cmd->se_cmd);
1163
		entry->rsp.scsi_status = SAM_STAT_CHECK_CONDITION;
1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174
		goto done;
	}

	if (se_cmd->data_direction == DMA_FROM_DEVICE &&
	    (entry->hdr.uflags & TCMU_UFLAG_READ_LEN) && entry->rsp.read_len) {
		read_len_valid = true;
		if (entry->rsp.read_len < read_len)
			read_len = entry->rsp.read_len;
	}

	if (entry->rsp.scsi_status == SAM_STAT_CHECK_CONDITION) {
1175
		transport_copy_sense_to_cmd(se_cmd, entry->rsp.sense_buffer);
1176 1177 1178 1179 1180 1181
		if (!read_len_valid )
			goto done;
		else
			se_cmd->se_cmd_flags |= SCF_TREAT_READ_AS_NORMAL;
	}
	if (se_cmd->se_cmd_flags & SCF_BIDI) {
1182
		/* Get Data-In buffer before clean up */
1183
		gather_data_area(udev, cmd, true, read_len);
1184
	} else if (se_cmd->data_direction == DMA_FROM_DEVICE) {
1185
		gather_data_area(udev, cmd, false, read_len);
1186
	} else if (se_cmd->data_direction == DMA_TO_DEVICE) {
1187
		/* TODO: */
1188 1189 1190
	} else if (se_cmd->data_direction != DMA_NONE) {
		pr_warn("TCMU: data direction was %d!\n",
			se_cmd->data_direction);
1191 1192
	}

1193 1194 1195 1196 1197 1198 1199
done:
	if (read_len_valid) {
		pr_debug("read_len = %d\n", read_len);
		target_complete_cmd_with_length(cmd->se_cmd,
					entry->rsp.scsi_status, read_len);
	} else
		target_complete_cmd(cmd->se_cmd, entry->rsp.scsi_status);
1200

1201 1202
out:
	cmd->se_cmd = NULL;
1203
	tcmu_cmd_free_data(cmd, cmd->dbi_cnt);
1204
	tcmu_free_cmd(cmd);
1205 1206
}

1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225
static void tcmu_set_next_deadline(struct list_head *queue,
				   struct timer_list *timer)
{
	struct tcmu_cmd *tcmu_cmd, *tmp_cmd;
	unsigned long deadline = 0;

	list_for_each_entry_safe(tcmu_cmd, tmp_cmd, queue, queue_entry) {
		if (!time_after(jiffies, tcmu_cmd->deadline)) {
			deadline = tcmu_cmd->deadline;
			break;
		}
	}

	if (deadline)
		mod_timer(timer, deadline);
	else
		del_timer(timer);
}

1226 1227 1228
static unsigned int tcmu_handle_completions(struct tcmu_dev *udev)
{
	struct tcmu_mailbox *mb;
1229
	struct tcmu_cmd *cmd;
1230 1231 1232 1233 1234 1235 1236 1237 1238 1239
	int handled = 0;

	if (test_bit(TCMU_DEV_BIT_BROKEN, &udev->flags)) {
		pr_err("ring broken, not handling completions\n");
		return 0;
	}

	mb = udev->mb_addr;
	tcmu_flush_dcache_range(mb, sizeof(*mb));

1240
	while (udev->cmdr_last_cleaned != READ_ONCE(mb->cmd_tail)) {
1241 1242 1243 1244 1245

		struct tcmu_cmd_entry *entry = (void *) mb + CMDR_OFF + udev->cmdr_last_cleaned;

		tcmu_flush_dcache_range(entry, sizeof(*entry));

A
Andy Grover 已提交
1246 1247 1248 1249
		if (tcmu_hdr_get_op(entry->hdr.len_op) == TCMU_OP_PAD) {
			UPDATE_HEAD(udev->cmdr_last_cleaned,
				    tcmu_hdr_get_len(entry->hdr.len_op),
				    udev->cmdr_size);
1250 1251
			continue;
		}
A
Andy Grover 已提交
1252
		WARN_ON(tcmu_hdr_get_op(entry->hdr.len_op) != TCMU_OP_CMD);
1253

1254
		cmd = idr_remove(&udev->commands, entry->hdr.cmd_id);
1255
		if (!cmd) {
1256 1257
			pr_err("cmd_id %u not found, ring is broken\n",
			       entry->hdr.cmd_id);
1258 1259 1260 1261 1262 1263
			set_bit(TCMU_DEV_BIT_BROKEN, &udev->flags);
			break;
		}

		tcmu_handle_completion(cmd, entry);

A
Andy Grover 已提交
1264 1265 1266
		UPDATE_HEAD(udev->cmdr_last_cleaned,
			    tcmu_hdr_get_len(entry->hdr.len_op),
			    udev->cmdr_size);
1267 1268 1269 1270

		handled++;
	}

1271 1272 1273 1274
	if (mb->cmd_tail == mb->cmd_head) {
		/* no more pending commands */
		del_timer(&udev->cmd_timer);

1275
		if (list_empty(&udev->qfull_queue)) {
1276 1277 1278 1279 1280
			/*
			 * no more pending or waiting commands so try to
			 * reclaim blocks if needed.
			 */
			if (atomic_read(&global_db_count) >
1281
			    tcmu_global_max_blocks)
1282 1283
				schedule_delayed_work(&tcmu_unmap_work, 0);
		}
1284 1285
	} else if (udev->cmd_time_out) {
		tcmu_set_next_deadline(&udev->inflight_queue, &udev->cmd_timer);
1286
	}
1287 1288 1289 1290 1291 1292 1293

	return handled;
}

static int tcmu_check_expired_cmd(int id, void *p, void *data)
{
	struct tcmu_cmd *cmd = p;
1294 1295 1296 1297
	struct tcmu_dev *udev = cmd->tcmu_dev;
	u8 scsi_status;
	struct se_cmd *se_cmd;
	bool is_running;
1298 1299 1300 1301

	if (test_bit(TCMU_CMD_BIT_EXPIRED, &cmd->flags))
		return 0;

1302
	if (!time_after(jiffies, cmd->deadline))
1303 1304
		return 0;

1305
	is_running = test_bit(TCMU_CMD_BIT_INFLIGHT, &cmd->flags);
M
Mike Christie 已提交
1306
	se_cmd = cmd->se_cmd;
1307

1308
	if (is_running) {
1309 1310 1311 1312 1313 1314 1315
		/*
		 * If cmd_time_out is disabled but qfull is set deadline
		 * will only reflect the qfull timeout. Ignore it.
		 */
		if (!udev->cmd_time_out)
			return 0;

1316 1317 1318 1319 1320
		set_bit(TCMU_CMD_BIT_EXPIRED, &cmd->flags);
		/*
		 * target_complete_cmd will translate this to LUN COMM FAILURE
		 */
		scsi_status = SAM_STAT_CHECK_CONDITION;
X
Xiubo Li 已提交
1321
		list_del_init(&cmd->queue_entry);
1322
	} else {
X
Xiubo Li 已提交
1323
		list_del_init(&cmd->queue_entry);
1324 1325 1326 1327
		idr_remove(&udev->commands, id);
		tcmu_free_cmd(cmd);
		scsi_status = SAM_STAT_TASK_SET_FULL;
	}
1328 1329 1330 1331

	pr_debug("Timing out cmd %u on dev %s that is %s.\n",
		 id, udev->name, is_running ? "inflight" : "queued");

1332
	target_complete_cmd(se_cmd, scsi_status);
1333 1334 1335
	return 0;
}

1336
static void tcmu_device_timedout(struct tcmu_dev *udev)
1337
{
1338 1339 1340 1341
	spin_lock(&timed_out_udevs_lock);
	if (list_empty(&udev->timedout_entry))
		list_add_tail(&udev->timedout_entry, &timed_out_udevs);
	spin_unlock(&timed_out_udevs_lock);
1342

1343
	schedule_delayed_work(&tcmu_unmap_work, 0);
1344 1345
}

1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361
static void tcmu_cmd_timedout(struct timer_list *t)
{
	struct tcmu_dev *udev = from_timer(udev, t, cmd_timer);

	pr_debug("%s cmd timeout has expired\n", udev->name);
	tcmu_device_timedout(udev);
}

static void tcmu_qfull_timedout(struct timer_list *t)
{
	struct tcmu_dev *udev = from_timer(udev, t, qfull_timer);

	pr_debug("%s qfull timeout has expired\n", udev->name);
	tcmu_device_timedout(udev);
}

1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388
static int tcmu_attach_hba(struct se_hba *hba, u32 host_id)
{
	struct tcmu_hba *tcmu_hba;

	tcmu_hba = kzalloc(sizeof(struct tcmu_hba), GFP_KERNEL);
	if (!tcmu_hba)
		return -ENOMEM;

	tcmu_hba->host_id = host_id;
	hba->hba_ptr = tcmu_hba;

	return 0;
}

static void tcmu_detach_hba(struct se_hba *hba)
{
	kfree(hba->hba_ptr);
	hba->hba_ptr = NULL;
}

static struct se_device *tcmu_alloc_device(struct se_hba *hba, const char *name)
{
	struct tcmu_dev *udev;

	udev = kzalloc(sizeof(struct tcmu_dev), GFP_KERNEL);
	if (!udev)
		return NULL;
1389
	kref_init(&udev->kref);
1390 1391 1392 1393 1394 1395 1396 1397

	udev->name = kstrdup(name, GFP_KERNEL);
	if (!udev->name) {
		kfree(udev);
		return NULL;
	}

	udev->hba = hba;
1398
	udev->cmd_time_out = TCMU_TIME_OUT;
1399
	udev->qfull_time_out = -1;
1400

1401
	udev->max_blocks = DATA_BLOCK_BITS_DEF;
1402
	mutex_init(&udev->cmdr_lock);
1403

M
Mike Christie 已提交
1404
	INIT_LIST_HEAD(&udev->node);
1405
	INIT_LIST_HEAD(&udev->timedout_entry);
1406 1407
	INIT_LIST_HEAD(&udev->qfull_queue);
	INIT_LIST_HEAD(&udev->inflight_queue);
1408 1409
	idr_init(&udev->commands);

1410 1411
	timer_setup(&udev->qfull_timer, tcmu_qfull_timedout, 0);
	timer_setup(&udev->cmd_timer, tcmu_cmd_timedout, 0);
1412

1413 1414
	INIT_RADIX_TREE(&udev->data_blocks, GFP_KERNEL);

1415 1416 1417
	return &udev->se_dev;
}

1418
static bool run_qfull_queue(struct tcmu_dev *udev, bool fail)
1419 1420 1421 1422 1423 1424 1425
{
	struct tcmu_cmd *tcmu_cmd, *tmp_cmd;
	LIST_HEAD(cmds);
	bool drained = true;
	sense_reason_t scsi_ret;
	int ret;

1426
	if (list_empty(&udev->qfull_queue))
1427 1428
		return true;

1429
	pr_debug("running %s's cmdr queue forcefail %d\n", udev->name, fail);
1430

1431
	list_splice_init(&udev->qfull_queue, &cmds);
1432

1433 1434
	list_for_each_entry_safe(tcmu_cmd, tmp_cmd, &cmds, queue_entry) {
		list_del_init(&tcmu_cmd->queue_entry);
1435 1436 1437 1438

	        pr_debug("removing cmd %u on dev %s from queue\n",
		         tcmu_cmd->cmd_id, udev->name);

1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452
		if (fail) {
			idr_remove(&udev->commands, tcmu_cmd->cmd_id);
			/*
			 * We were not able to even start the command, so
			 * fail with busy to allow a retry in case runner
			 * was only temporarily down. If the device is being
			 * removed then LIO core will do the right thing and
			 * fail the retry.
			 */
			target_complete_cmd(tcmu_cmd->se_cmd, SAM_STAT_BUSY);
			tcmu_free_cmd(tcmu_cmd);
			continue;
		}

1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471
		ret = queue_cmd_ring(tcmu_cmd, &scsi_ret);
		if (ret < 0) {
		        pr_debug("cmd %u on dev %s failed with %u\n",
			         tcmu_cmd->cmd_id, udev->name, scsi_ret);

			idr_remove(&udev->commands, tcmu_cmd->cmd_id);
			/*
			 * Ignore scsi_ret for now. target_complete_cmd
			 * drops it.
			 */
			target_complete_cmd(tcmu_cmd->se_cmd,
					    SAM_STAT_CHECK_CONDITION);
			tcmu_free_cmd(tcmu_cmd);
		} else if (ret > 0) {
			pr_debug("ran out of space during cmdr queue run\n");
			/*
			 * cmd was requeued, so just put all cmds back in
			 * the queue
			 */
1472
			list_splice_tail(&cmds, &udev->qfull_queue);
1473
			drained = false;
1474
			break;
1475 1476
		}
	}
1477 1478

	tcmu_set_next_deadline(&udev->qfull_queue, &udev->qfull_timer);
1479 1480 1481
	return drained;
}

1482 1483
static int tcmu_irqcontrol(struct uio_info *info, s32 irq_on)
{
1484
	struct tcmu_dev *udev = container_of(info, struct tcmu_dev, uio_info);
1485

1486 1487
	mutex_lock(&udev->cmdr_lock);
	tcmu_handle_completions(udev);
1488
	run_qfull_queue(udev, false);
1489
	mutex_unlock(&udev->cmdr_lock);
1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510

	return 0;
}

/*
 * mmap code from uio.c. Copied here because we want to hook mmap()
 * and this stuff must come along.
 */
static int tcmu_find_mem_index(struct vm_area_struct *vma)
{
	struct tcmu_dev *udev = vma->vm_private_data;
	struct uio_info *info = &udev->uio_info;

	if (vma->vm_pgoff < MAX_UIO_MAPS) {
		if (info->mem[vma->vm_pgoff].size == 0)
			return -1;
		return (int)vma->vm_pgoff;
	}
	return -1;
}

1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522
static struct page *tcmu_try_get_block_page(struct tcmu_dev *udev, uint32_t dbi)
{
	struct page *page;

	mutex_lock(&udev->cmdr_lock);
	page = tcmu_get_block_page(udev, dbi);
	if (likely(page)) {
		mutex_unlock(&udev->cmdr_lock);
		return page;
	}

	/*
1523 1524
	 * Userspace messed up and passed in a address not in the
	 * data iov passed to it.
1525
	 */
1526 1527 1528
	pr_err("Invalid addr to data block mapping  (dbi %u) on device %s\n",
	       dbi, udev->name);
	page = NULL;
1529 1530 1531 1532 1533
	mutex_unlock(&udev->cmdr_lock);

	return page;
}

1534
static vm_fault_t tcmu_vma_fault(struct vm_fault *vmf)
1535
{
1536
	struct tcmu_dev *udev = vmf->vma->vm_private_data;
1537 1538 1539 1540 1541
	struct uio_info *info = &udev->uio_info;
	struct page *page;
	unsigned long offset;
	void *addr;

1542
	int mi = tcmu_find_mem_index(vmf->vma);
1543 1544 1545 1546 1547 1548 1549 1550 1551
	if (mi < 0)
		return VM_FAULT_SIGBUS;

	/*
	 * We need to subtract mi because userspace uses offset = N*PAGE_SIZE
	 * to use mem[N].
	 */
	offset = (vmf->pgoff - mi) << PAGE_SHIFT;

1552 1553 1554
	if (offset < udev->data_off) {
		/* For the vmalloc()ed cmd area pages */
		addr = (void *)(unsigned long)info->mem[mi].addr + offset;
1555
		page = vmalloc_to_page(addr);
1556 1557 1558
	} else {
		uint32_t dbi;

1559
		/* For the dynamically growing data area pages */
1560
		dbi = (offset - udev->data_off) / DATA_BLOCK_SIZE;
1561 1562
		page = tcmu_try_get_block_page(udev, dbi);
		if (!page)
1563
			return VM_FAULT_SIGBUS;
1564 1565
	}

1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584
	get_page(page);
	vmf->page = page;
	return 0;
}

static const struct vm_operations_struct tcmu_vm_ops = {
	.fault = tcmu_vma_fault,
};

static int tcmu_mmap(struct uio_info *info, struct vm_area_struct *vma)
{
	struct tcmu_dev *udev = container_of(info, struct tcmu_dev, uio_info);

	vma->vm_flags |= VM_DONTEXPAND | VM_DONTDUMP;
	vma->vm_ops = &tcmu_vm_ops;

	vma->vm_private_data = udev;

	/* Ensure the mmap is exactly the right size */
1585
	if (vma_pages(vma) != (udev->ring_size >> PAGE_SHIFT))
1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598
		return -EINVAL;

	return 0;
}

static int tcmu_open(struct uio_info *info, struct inode *inode)
{
	struct tcmu_dev *udev = container_of(info, struct tcmu_dev, uio_info);

	/* O_EXCL not supported for char devs, so fake it? */
	if (test_and_set_bit(TCMU_DEV_BIT_OPEN, &udev->flags))
		return -EBUSY;

1599
	udev->inode = inode;
1600
	kref_get(&udev->kref);
1601

1602 1603 1604 1605 1606
	pr_debug("open\n");

	return 0;
}

1607 1608 1609 1610 1611 1612 1613 1614 1615 1616
static void tcmu_dev_call_rcu(struct rcu_head *p)
{
	struct se_device *dev = container_of(p, struct se_device, rcu_head);
	struct tcmu_dev *udev = TCMU_DEV(dev);

	kfree(udev->uio_info.name);
	kfree(udev->name);
	kfree(udev);
}

1617 1618 1619 1620 1621 1622 1623 1624 1625
static int tcmu_check_and_free_pending_cmd(struct tcmu_cmd *cmd)
{
	if (test_bit(TCMU_CMD_BIT_EXPIRED, &cmd->flags)) {
		kmem_cache_free(tcmu_cmd_cache, cmd);
		return 0;
	}
	return -EINVAL;
}

1626 1627
static void tcmu_blocks_release(struct radix_tree_root *blocks,
				int start, int end)
1628 1629 1630 1631
{
	int i;
	struct page *page;

1632 1633
	for (i = start; i < end; i++) {
		page = radix_tree_delete(blocks, i);
1634 1635 1636 1637 1638 1639 1640
		if (page) {
			__free_page(page);
			atomic_dec(&global_db_count);
		}
	}
}

1641 1642 1643 1644
static void tcmu_dev_kref_release(struct kref *kref)
{
	struct tcmu_dev *udev = container_of(kref, struct tcmu_dev, kref);
	struct se_device *dev = &udev->se_dev;
1645 1646 1647 1648 1649 1650 1651
	struct tcmu_cmd *cmd;
	bool all_expired = true;
	int i;

	vfree(udev->mb_addr);
	udev->mb_addr = NULL;

1652 1653 1654 1655 1656
	spin_lock_bh(&timed_out_udevs_lock);
	if (!list_empty(&udev->timedout_entry))
		list_del(&udev->timedout_entry);
	spin_unlock_bh(&timed_out_udevs_lock);

1657
	/* Upper layer should drain all requests before calling this */
M
Mike Christie 已提交
1658
	mutex_lock(&udev->cmdr_lock);
1659 1660 1661 1662 1663 1664 1665
	idr_for_each_entry(&udev->commands, cmd, i) {
		if (tcmu_check_and_free_pending_cmd(cmd) != 0)
			all_expired = false;
	}
	idr_destroy(&udev->commands);
	WARN_ON(!all_expired);

1666
	tcmu_blocks_release(&udev->data_blocks, 0, udev->dbi_max + 1);
1667
	bitmap_free(udev->data_bitmap);
1668
	mutex_unlock(&udev->cmdr_lock);
1669 1670 1671 1672

	call_rcu(&dev->rcu_head, tcmu_dev_call_rcu);
}

1673 1674 1675 1676 1677 1678 1679
static int tcmu_release(struct uio_info *info, struct inode *inode)
{
	struct tcmu_dev *udev = container_of(info, struct tcmu_dev, uio_info);

	clear_bit(TCMU_DEV_BIT_OPEN, &udev->flags);

	pr_debug("close\n");
1680
	/* release ref from open */
1681
	kref_put(&udev->kref, tcmu_dev_kref_release);
1682 1683 1684
	return 0;
}

1685
static int tcmu_init_genl_cmd_reply(struct tcmu_dev *udev, int cmd)
1686 1687 1688 1689
{
	struct tcmu_nl_cmd *nl_cmd = &udev->curr_nl_cmd;

	if (!tcmu_kern_cmd_reply_supported)
1690
		return 0;
1691 1692

	if (udev->nl_reply_supported <= 0)
1693
		return 0;
1694

M
Mike Christie 已提交
1695
	mutex_lock(&tcmu_nl_cmd_mutex);
1696

1697 1698 1699 1700 1701 1702
	if (tcmu_netlink_blocked) {
		mutex_unlock(&tcmu_nl_cmd_mutex);
		pr_warn("Failing nl cmd %d on %s. Interface is blocked.\n", cmd,
			udev->name);
		return -EAGAIN;
	}
1703 1704

	if (nl_cmd->cmd != TCMU_CMD_UNSPEC) {
M
Mike Christie 已提交
1705
		mutex_unlock(&tcmu_nl_cmd_mutex);
1706 1707 1708
		pr_warn("netlink cmd %d already executing on %s\n",
			 nl_cmd->cmd, udev->name);
		return -EBUSY;
1709 1710 1711 1712
	}

	memset(nl_cmd, 0, sizeof(*nl_cmd));
	nl_cmd->cmd = cmd;
M
Mike Christie 已提交
1713
	nl_cmd->udev = udev;
1714
	init_completion(&nl_cmd->complete);
M
Mike Christie 已提交
1715 1716 1717
	INIT_LIST_HEAD(&nl_cmd->nl_list);

	list_add_tail(&nl_cmd->nl_list, &tcmu_nl_cmd_list);
1718

M
Mike Christie 已提交
1719
	mutex_unlock(&tcmu_nl_cmd_mutex);
1720
	return 0;
1721 1722 1723 1724 1725 1726 1727 1728 1729 1730
}

static int tcmu_wait_genl_cmd_reply(struct tcmu_dev *udev)
{
	struct tcmu_nl_cmd *nl_cmd = &udev->curr_nl_cmd;
	int ret;

	if (!tcmu_kern_cmd_reply_supported)
		return 0;

1731 1732 1733
	if (udev->nl_reply_supported <= 0)
		return 0;

1734 1735 1736
	pr_debug("sleeping for nl reply\n");
	wait_for_completion(&nl_cmd->complete);

M
Mike Christie 已提交
1737
	mutex_lock(&tcmu_nl_cmd_mutex);
1738 1739
	nl_cmd->cmd = TCMU_CMD_UNSPEC;
	ret = nl_cmd->status;
M
Mike Christie 已提交
1740
	mutex_unlock(&tcmu_nl_cmd_mutex);
1741

1742
	return ret;
1743 1744
}

1745 1746 1747
static int tcmu_netlink_event_init(struct tcmu_dev *udev,
				   enum tcmu_genl_cmd cmd,
				   struct sk_buff **buf, void **hdr)
1748 1749 1750
{
	struct sk_buff *skb;
	void *msg_header;
1751
	int ret = -ENOMEM;
1752 1753 1754

	skb = genlmsg_new(NLMSG_GOODSIZE, GFP_KERNEL);
	if (!skb)
1755
		return ret;
1756 1757

	msg_header = genlmsg_put(skb, 0, 0, &tcmu_genl_family, 0, cmd);
1758 1759
	if (!msg_header)
		goto free_skb;
1760

1761
	ret = nla_put_string(skb, TCMU_ATTR_DEVICE, udev->uio_info.name);
1762 1763
	if (ret < 0)
		goto free_skb;
1764

1765 1766 1767 1768 1769
	ret = nla_put_u32(skb, TCMU_ATTR_MINOR, udev->uio_info.uio_dev->minor);
	if (ret < 0)
		goto free_skb;

	ret = nla_put_u32(skb, TCMU_ATTR_DEVICE_ID, udev->se_dev.dev_index);
1770 1771
	if (ret < 0)
		goto free_skb;
1772

1773 1774 1775
	*buf = skb;
	*hdr = msg_header;
	return ret;
1776

1777 1778 1779 1780 1781 1782 1783
free_skb:
	nlmsg_free(skb);
	return ret;
}

static int tcmu_netlink_event_send(struct tcmu_dev *udev,
				   enum tcmu_genl_cmd cmd,
M
Mike Christie 已提交
1784
				   struct sk_buff *skb, void *msg_header)
1785
{
M
Mike Christie 已提交
1786
	int ret;
1787

1788
	genlmsg_end(skb, msg_header);
1789

1790 1791 1792 1793 1794
	ret = tcmu_init_genl_cmd_reply(udev, cmd);
	if (ret) {
		nlmsg_free(skb);
		return ret;
	}
1795

1796
	ret = genlmsg_multicast_allns(&tcmu_genl_family, skb, 0,
1797
				      TCMU_MCGRP_CONFIG, GFP_KERNEL);
1798 1799 1800 1801 1802 1803

	/* Wait during an add as the listener may not be up yet */
	if (ret == 0 ||
	   (ret == -ESRCH && cmd == TCMU_CMD_ADDED_DEVICE))
		return tcmu_wait_genl_cmd_reply(udev);

1804
	return ret;
1805 1806
}

1807 1808 1809 1810 1811 1812 1813 1814 1815 1816
static int tcmu_send_dev_add_event(struct tcmu_dev *udev)
{
	struct sk_buff *skb = NULL;
	void *msg_header = NULL;
	int ret = 0;

	ret = tcmu_netlink_event_init(udev, TCMU_CMD_ADDED_DEVICE, &skb,
				      &msg_header);
	if (ret < 0)
		return ret;
M
Mike Christie 已提交
1817 1818
	return tcmu_netlink_event_send(udev, TCMU_CMD_ADDED_DEVICE, skb,
				       msg_header);
1819 1820
}

1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831
static int tcmu_send_dev_remove_event(struct tcmu_dev *udev)
{
	struct sk_buff *skb = NULL;
	void *msg_header = NULL;
	int ret = 0;

	ret = tcmu_netlink_event_init(udev, TCMU_CMD_REMOVED_DEVICE,
				      &skb, &msg_header);
	if (ret < 0)
		return ret;
	return tcmu_netlink_event_send(udev, TCMU_CMD_REMOVED_DEVICE,
M
Mike Christie 已提交
1832
				       skb, msg_header);
1833 1834
}

B
Bryant G. Ly 已提交
1835
static int tcmu_update_uio_info(struct tcmu_dev *udev)
1836 1837 1838
{
	struct tcmu_hba *hba = udev->hba->hba_ptr;
	struct uio_info *info;
B
Bryant G. Ly 已提交
1839
	size_t size, used;
1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853
	char *str;

	info = &udev->uio_info;
	size = snprintf(NULL, 0, "tcm-user/%u/%s/%s", hba->host_id, udev->name,
			udev->dev_config);
	size += 1; /* for \0 */
	str = kmalloc(size, GFP_KERNEL);
	if (!str)
		return -ENOMEM;

	used = snprintf(str, size, "tcm-user/%u/%s", hba->host_id, udev->name);
	if (udev->dev_config[0])
		snprintf(str + used, size - used, "/%s", udev->dev_config);

B
Bryant G. Ly 已提交
1854 1855
	/* If the old string exists, free it */
	kfree(info->name);
1856 1857
	info->name = str;

B
Bryant G. Ly 已提交
1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873
	return 0;
}

static int tcmu_configure_device(struct se_device *dev)
{
	struct tcmu_dev *udev = TCMU_DEV(dev);
	struct uio_info *info;
	struct tcmu_mailbox *mb;
	int ret = 0;

	ret = tcmu_update_uio_info(udev);
	if (ret)
		return ret;

	info = &udev->uio_info;

1874
	mutex_lock(&udev->cmdr_lock);
1875
	udev->data_bitmap = bitmap_zalloc(udev->max_blocks, GFP_KERNEL);
1876
	mutex_unlock(&udev->cmdr_lock);
1877 1878
	if (!udev->data_bitmap) {
		ret = -ENOMEM;
1879
		goto err_bitmap_alloc;
1880
	}
1881

1882
	udev->mb_addr = vzalloc(CMDR_SIZE);
1883 1884 1885 1886 1887 1888 1889 1890
	if (!udev->mb_addr) {
		ret = -ENOMEM;
		goto err_vzalloc;
	}

	/* mailbox fits in first part of CMDR space */
	udev->cmdr_size = CMDR_SIZE - CMDR_OFF;
	udev->data_off = CMDR_SIZE;
1891
	udev->data_size = udev->max_blocks * DATA_BLOCK_SIZE;
1892
	udev->dbi_thresh = 0; /* Default in Idle state */
1893

1894
	/* Initialise the mailbox of the ring buffer */
1895
	mb = udev->mb_addr;
A
Andy Grover 已提交
1896
	mb->version = TCMU_MAILBOX_VERSION;
1897
	mb->flags = TCMU_MAILBOX_FLAG_CAP_OOOC | TCMU_MAILBOX_FLAG_CAP_READ_LEN;
1898 1899 1900 1901 1902
	mb->cmdr_off = CMDR_OFF;
	mb->cmdr_size = udev->cmdr_size;

	WARN_ON(!PAGE_ALIGNED(udev->data_off));
	WARN_ON(udev->data_size % PAGE_SIZE);
1903
	WARN_ON(udev->data_size % DATA_BLOCK_SIZE);
1904

1905
	info->version = __stringify(TCMU_MAILBOX_VERSION);
1906 1907

	info->mem[0].name = "tcm-user command & data buffer";
1908
	info->mem[0].addr = (phys_addr_t)(uintptr_t)udev->mb_addr;
1909
	info->mem[0].size = udev->ring_size = udev->data_size + CMDR_SIZE;
1910
	info->mem[0].memtype = UIO_MEM_NONE;
1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922

	info->irqcontrol = tcmu_irqcontrol;
	info->irq = UIO_IRQ_CUSTOM;

	info->mmap = tcmu_mmap;
	info->open = tcmu_open;
	info->release = tcmu_release;

	ret = uio_register_device(tcmu_root_device, info);
	if (ret)
		goto err_register;

1923 1924 1925
	/* User can set hw_block_size before enable the device */
	if (dev->dev_attrib.hw_block_size == 0)
		dev->dev_attrib.hw_block_size = 512;
1926
	/* Other attributes can be configured in userspace */
1927 1928
	if (!dev->dev_attrib.hw_max_sectors)
		dev->dev_attrib.hw_max_sectors = 128;
B
Bryant G. Ly 已提交
1929 1930
	if (!dev->dev_attrib.emulate_write_cache)
		dev->dev_attrib.emulate_write_cache = 0;
1931 1932
	dev->dev_attrib.hw_queue_depth = 128;

1933 1934 1935 1936 1937 1938
	/* If user didn't explicitly disable netlink reply support, use
	 * module scope setting.
	 */
	if (udev->nl_reply_supported >= 0)
		udev->nl_reply_supported = tcmu_kern_cmd_reply_supported;

1939 1940 1941 1942 1943 1944
	/*
	 * Get a ref incase userspace does a close on the uio device before
	 * LIO has initiated tcmu_free_device.
	 */
	kref_get(&udev->kref);

1945
	ret = tcmu_send_dev_add_event(udev);
1946 1947 1948
	if (ret)
		goto err_netlink;

1949 1950 1951 1952
	mutex_lock(&root_udev_mutex);
	list_add(&udev->node, &root_udev);
	mutex_unlock(&root_udev_mutex);

1953 1954 1955
	return 0;

err_netlink:
1956
	kref_put(&udev->kref, tcmu_dev_kref_release);
1957 1958 1959
	uio_unregister_device(&udev->uio_info);
err_register:
	vfree(udev->mb_addr);
1960
	udev->mb_addr = NULL;
1961
err_vzalloc:
1962
	bitmap_free(udev->data_bitmap);
1963 1964
	udev->data_bitmap = NULL;
err_bitmap_alloc:
1965
	kfree(info->name);
1966
	info->name = NULL;
1967 1968 1969 1970 1971

	return ret;
}

static void tcmu_free_device(struct se_device *dev)
1972 1973 1974 1975 1976 1977 1978 1979
{
	struct tcmu_dev *udev = TCMU_DEV(dev);

	/* release ref from init */
	kref_put(&udev->kref, tcmu_dev_kref_release);
}

static void tcmu_destroy_device(struct se_device *dev)
1980 1981 1982
{
	struct tcmu_dev *udev = TCMU_DEV(dev);

1983 1984
	del_timer_sync(&udev->cmd_timer);
	del_timer_sync(&udev->qfull_timer);
1985

1986 1987 1988 1989
	mutex_lock(&root_udev_mutex);
	list_del(&udev->node);
	mutex_unlock(&root_udev_mutex);

1990
	tcmu_send_dev_remove_event(udev);
1991

1992
	uio_unregister_device(&udev->uio_info);
1993 1994 1995

	/* release ref from configure */
	kref_put(&udev->kref, tcmu_dev_kref_release);
1996 1997
}

1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014
static void tcmu_unblock_dev(struct tcmu_dev *udev)
{
	mutex_lock(&udev->cmdr_lock);
	clear_bit(TCMU_DEV_BIT_BLOCKED, &udev->flags);
	mutex_unlock(&udev->cmdr_lock);
}

static void tcmu_block_dev(struct tcmu_dev *udev)
{
	mutex_lock(&udev->cmdr_lock);

	if (test_and_set_bit(TCMU_DEV_BIT_BLOCKED, &udev->flags))
		goto unlock;

	/* complete IO that has executed successfully */
	tcmu_handle_completions(udev);
	/* fail IO waiting to be queued */
2015
	run_qfull_queue(udev, true);
2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029

unlock:
	mutex_unlock(&udev->cmdr_lock);
}

static void tcmu_reset_ring(struct tcmu_dev *udev, u8 err_level)
{
	struct tcmu_mailbox *mb;
	struct tcmu_cmd *cmd;
	int i;

	mutex_lock(&udev->cmdr_lock);

	idr_for_each_entry(&udev->commands, cmd, i) {
2030
		if (!test_bit(TCMU_CMD_BIT_INFLIGHT, &cmd->flags))
2031 2032 2033 2034 2035 2036 2037 2038
			continue;

		pr_debug("removing cmd %u on dev %s from ring (is expired %d)\n",
			  cmd->cmd_id, udev->name,
			  test_bit(TCMU_CMD_BIT_EXPIRED, &cmd->flags));

		idr_remove(&udev->commands, i);
		if (!test_bit(TCMU_CMD_BIT_EXPIRED, &cmd->flags)) {
2039
			list_del_init(&cmd->queue_entry);
2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070
			if (err_level == 1) {
				/*
				 * Userspace was not able to start the
				 * command or it is retryable.
				 */
				target_complete_cmd(cmd->se_cmd, SAM_STAT_BUSY);
			} else {
				/* hard failure */
				target_complete_cmd(cmd->se_cmd,
						    SAM_STAT_CHECK_CONDITION);
			}
		}
		tcmu_cmd_free_data(cmd, cmd->dbi_cnt);
		tcmu_free_cmd(cmd);
	}

	mb = udev->mb_addr;
	tcmu_flush_dcache_range(mb, sizeof(*mb));
	pr_debug("mb last %u head %u tail %u\n", udev->cmdr_last_cleaned,
		 mb->cmd_tail, mb->cmd_head);

	udev->cmdr_last_cleaned = 0;
	mb->cmd_tail = 0;
	mb->cmd_head = 0;
	tcmu_flush_dcache_range(mb, sizeof(*mb));

	del_timer(&udev->cmd_timer);

	mutex_unlock(&udev->cmdr_lock);
}

2071
enum {
2072
	Opt_dev_config, Opt_dev_size, Opt_hw_block_size, Opt_hw_max_sectors,
2073
	Opt_nl_reply_supported, Opt_max_data_area_mb, Opt_err,
2074 2075 2076 2077
};

static match_table_t tokens = {
	{Opt_dev_config, "dev_config=%s"},
M
Mike Christie 已提交
2078
	{Opt_dev_size, "dev_size=%s"},
2079 2080
	{Opt_hw_block_size, "hw_block_size=%d"},
	{Opt_hw_max_sectors, "hw_max_sectors=%d"},
2081
	{Opt_nl_reply_supported, "nl_reply_supported=%d"},
2082
	{Opt_max_data_area_mb, "max_data_area_mb=%d"},
2083 2084 2085
	{Opt_err, NULL}
};

2086 2087
static int tcmu_set_dev_attrib(substring_t *arg, u32 *dev_attrib)
{
2088
	int val, ret;
2089

2090
	ret = match_int(arg, &val);
2091
	if (ret < 0) {
2092 2093
		pr_err("match_int() failed for dev attrib. Error %d.\n",
		       ret);
2094 2095
		return ret;
	}
2096 2097 2098 2099

	if (val <= 0) {
		pr_err("Invalid dev attrib value %d. Must be greater than zero.\n",
		       val);
2100 2101
		return -EINVAL;
	}
2102
	*dev_attrib = val;
2103 2104 2105
	return 0;
}

2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140
static int tcmu_set_max_blocks_param(struct tcmu_dev *udev, substring_t *arg)
{
	int val, ret;

	ret = match_int(arg, &val);
	if (ret < 0) {
		pr_err("match_int() failed for max_data_area_mb=. Error %d.\n",
		       ret);
		return ret;
	}

	if (val <= 0) {
		pr_err("Invalid max_data_area %d.\n", val);
		return -EINVAL;
	}

	mutex_lock(&udev->cmdr_lock);
	if (udev->data_bitmap) {
		pr_err("Cannot set max_data_area_mb after it has been enabled.\n");
		ret = -EINVAL;
		goto unlock;
	}

	udev->max_blocks = TCMU_MBS_TO_BLOCKS(val);
	if (udev->max_blocks > tcmu_global_max_blocks) {
		pr_err("%d is too large. Adjusting max_data_area_mb to global limit of %u\n",
		       val, TCMU_BLOCKS_TO_MBS(tcmu_global_max_blocks));
		udev->max_blocks = tcmu_global_max_blocks;
	}

unlock:
	mutex_unlock(&udev->cmdr_lock);
	return ret;
}

2141 2142 2143 2144
static ssize_t tcmu_set_configfs_dev_params(struct se_device *dev,
		const char *page, ssize_t count)
{
	struct tcmu_dev *udev = TCMU_DEV(dev);
M
Mike Christie 已提交
2145
	char *orig, *ptr, *opts;
2146
	substring_t args[MAX_OPT_ARGS];
2147
	int ret = 0, token;
2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169

	opts = kstrdup(page, GFP_KERNEL);
	if (!opts)
		return -ENOMEM;

	orig = opts;

	while ((ptr = strsep(&opts, ",\n")) != NULL) {
		if (!*ptr)
			continue;

		token = match_token(ptr, tokens, args);
		switch (token) {
		case Opt_dev_config:
			if (match_strlcpy(udev->dev_config, &args[0],
					  TCMU_CONFIG_LEN) == 0) {
				ret = -EINVAL;
				break;
			}
			pr_debug("TCMU: Referencing Path: %s\n", udev->dev_config);
			break;
		case Opt_dev_size:
M
Mike Christie 已提交
2170
			ret = match_u64(&args[0], &udev->dev_size);
2171
			if (ret < 0)
M
Mike Christie 已提交
2172 2173
				pr_err("match_u64() failed for dev_size=. Error %d.\n",
				       ret);
2174
			break;
2175
		case Opt_hw_block_size:
2176 2177 2178 2179 2180 2181
			ret = tcmu_set_dev_attrib(&args[0],
					&(dev->dev_attrib.hw_block_size));
			break;
		case Opt_hw_max_sectors:
			ret = tcmu_set_dev_attrib(&args[0],
					&(dev->dev_attrib.hw_max_sectors));
2182
			break;
2183
		case Opt_nl_reply_supported:
2184
			ret = match_int(&args[0], &udev->nl_reply_supported);
2185
			if (ret < 0)
2186 2187
				pr_err("match_int() failed for nl_reply_supported=. Error %d.\n",
				       ret);
2188
			break;
2189
		case Opt_max_data_area_mb:
2190
			ret = tcmu_set_max_blocks_param(udev, &args[0]);
2191
			break;
2192 2193 2194
		default:
			break;
		}
2195 2196 2197

		if (ret)
			break;
2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210
	}

	kfree(orig);
	return (!ret) ? count : ret;
}

static ssize_t tcmu_show_configfs_dev_params(struct se_device *dev, char *b)
{
	struct tcmu_dev *udev = TCMU_DEV(dev);
	ssize_t bl = 0;

	bl = sprintf(b + bl, "Config: %s ",
		     udev->dev_config[0] ? udev->dev_config : "NULL");
M
Mike Christie 已提交
2211
	bl += sprintf(b + bl, "Size: %llu ", udev->dev_size);
2212 2213
	bl += sprintf(b + bl, "MaxDataAreaMB: %u\n",
		      TCMU_BLOCKS_TO_MBS(udev->max_blocks));
2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226

	return bl;
}

static sector_t tcmu_get_blocks(struct se_device *dev)
{
	struct tcmu_dev *udev = TCMU_DEV(dev);

	return div_u64(udev->dev_size - dev->dev_attrib.block_size,
		       dev->dev_attrib.block_size);
}

static sense_reason_t
2227
tcmu_parse_cdb(struct se_cmd *cmd)
2228
{
2229
	return passthrough_parse_cdb(cmd, tcmu_queue_cmd);
2230 2231
}

2232 2233 2234 2235
static ssize_t tcmu_cmd_time_out_show(struct config_item *item, char *page)
{
	struct se_dev_attrib *da = container_of(to_config_group(item),
					struct se_dev_attrib, da_group);
2236
	struct tcmu_dev *udev = TCMU_DEV(da->da_dev);
2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264

	return snprintf(page, PAGE_SIZE, "%lu\n", udev->cmd_time_out / MSEC_PER_SEC);
}

static ssize_t tcmu_cmd_time_out_store(struct config_item *item, const char *page,
				       size_t count)
{
	struct se_dev_attrib *da = container_of(to_config_group(item),
					struct se_dev_attrib, da_group);
	struct tcmu_dev *udev = container_of(da->da_dev,
					struct tcmu_dev, se_dev);
	u32 val;
	int ret;

	if (da->da_dev->export_count) {
		pr_err("Unable to set tcmu cmd_time_out while exports exist\n");
		return -EINVAL;
	}

	ret = kstrtou32(page, 0, &val);
	if (ret < 0)
		return ret;

	udev->cmd_time_out = val * MSEC_PER_SEC;
	return count;
}
CONFIGFS_ATTR(tcmu_, cmd_time_out);

2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290
static ssize_t tcmu_qfull_time_out_show(struct config_item *item, char *page)
{
	struct se_dev_attrib *da = container_of(to_config_group(item),
						struct se_dev_attrib, da_group);
	struct tcmu_dev *udev = TCMU_DEV(da->da_dev);

	return snprintf(page, PAGE_SIZE, "%ld\n", udev->qfull_time_out <= 0 ?
			udev->qfull_time_out :
			udev->qfull_time_out / MSEC_PER_SEC);
}

static ssize_t tcmu_qfull_time_out_store(struct config_item *item,
					 const char *page, size_t count)
{
	struct se_dev_attrib *da = container_of(to_config_group(item),
					struct se_dev_attrib, da_group);
	struct tcmu_dev *udev = TCMU_DEV(da->da_dev);
	s32 val;
	int ret;

	ret = kstrtos32(page, 0, &val);
	if (ret < 0)
		return ret;

	if (val >= 0) {
		udev->qfull_time_out = val * MSEC_PER_SEC;
2291 2292
	} else if (val == -1) {
		udev->qfull_time_out = val;
2293 2294 2295 2296 2297 2298 2299 2300
	} else {
		printk(KERN_ERR "Invalid qfull timeout value %d\n", val);
		return -EINVAL;
	}
	return count;
}
CONFIGFS_ATTR(tcmu_, qfull_time_out);

2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311
static ssize_t tcmu_max_data_area_mb_show(struct config_item *item, char *page)
{
	struct se_dev_attrib *da = container_of(to_config_group(item),
						struct se_dev_attrib, da_group);
	struct tcmu_dev *udev = TCMU_DEV(da->da_dev);

	return snprintf(page, PAGE_SIZE, "%u\n",
			TCMU_BLOCKS_TO_MBS(udev->max_blocks));
}
CONFIGFS_ATTR_RO(tcmu_, max_data_area_mb);

2312
static ssize_t tcmu_dev_config_show(struct config_item *item, char *page)
2313 2314 2315 2316 2317 2318 2319 2320
{
	struct se_dev_attrib *da = container_of(to_config_group(item),
						struct se_dev_attrib, da_group);
	struct tcmu_dev *udev = TCMU_DEV(da->da_dev);

	return snprintf(page, PAGE_SIZE, "%s\n", udev->dev_config);
}

2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337
static int tcmu_send_dev_config_event(struct tcmu_dev *udev,
				      const char *reconfig_data)
{
	struct sk_buff *skb = NULL;
	void *msg_header = NULL;
	int ret = 0;

	ret = tcmu_netlink_event_init(udev, TCMU_CMD_RECONFIG_DEVICE,
				      &skb, &msg_header);
	if (ret < 0)
		return ret;
	ret = nla_put_string(skb, TCMU_ATTR_DEV_CFG, reconfig_data);
	if (ret < 0) {
		nlmsg_free(skb);
		return ret;
	}
	return tcmu_netlink_event_send(udev, TCMU_CMD_RECONFIG_DEVICE,
M
Mike Christie 已提交
2338
				       skb, msg_header);
2339 2340 2341
}


2342 2343
static ssize_t tcmu_dev_config_store(struct config_item *item, const char *page,
				     size_t count)
2344 2345 2346 2347
{
	struct se_dev_attrib *da = container_of(to_config_group(item),
						struct se_dev_attrib, da_group);
	struct tcmu_dev *udev = TCMU_DEV(da->da_dev);
2348
	int ret, len;
2349

2350 2351
	len = strlen(page);
	if (!len || len > TCMU_CONFIG_LEN - 1)
2352 2353 2354
		return -EINVAL;

	/* Check if device has been configured before */
2355
	if (target_dev_configured(&udev->se_dev)) {
2356
		ret = tcmu_send_dev_config_event(udev, page);
2357 2358 2359 2360
		if (ret) {
			pr_err("Unable to reconfigure device\n");
			return ret;
		}
B
Bryant G. Ly 已提交
2361 2362 2363 2364 2365 2366
		strlcpy(udev->dev_config, page, TCMU_CONFIG_LEN);

		ret = tcmu_update_uio_info(udev);
		if (ret)
			return ret;
		return count;
2367
	}
2368
	strlcpy(udev->dev_config, page, TCMU_CONFIG_LEN);
2369 2370 2371

	return count;
}
2372
CONFIGFS_ATTR(tcmu_, dev_config);
2373

2374 2375 2376 2377 2378 2379
static ssize_t tcmu_dev_size_show(struct config_item *item, char *page)
{
	struct se_dev_attrib *da = container_of(to_config_group(item),
						struct se_dev_attrib, da_group);
	struct tcmu_dev *udev = TCMU_DEV(da->da_dev);

M
Mike Christie 已提交
2380
	return snprintf(page, PAGE_SIZE, "%llu\n", udev->dev_size);
2381 2382
}

2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399
static int tcmu_send_dev_size_event(struct tcmu_dev *udev, u64 size)
{
	struct sk_buff *skb = NULL;
	void *msg_header = NULL;
	int ret = 0;

	ret = tcmu_netlink_event_init(udev, TCMU_CMD_RECONFIG_DEVICE,
				      &skb, &msg_header);
	if (ret < 0)
		return ret;
	ret = nla_put_u64_64bit(skb, TCMU_ATTR_DEV_SIZE,
				size, TCMU_ATTR_PAD);
	if (ret < 0) {
		nlmsg_free(skb);
		return ret;
	}
	return tcmu_netlink_event_send(udev, TCMU_CMD_RECONFIG_DEVICE,
M
Mike Christie 已提交
2400
				       skb, msg_header);
2401 2402
}

2403 2404 2405 2406 2407 2408
static ssize_t tcmu_dev_size_store(struct config_item *item, const char *page,
				   size_t count)
{
	struct se_dev_attrib *da = container_of(to_config_group(item),
						struct se_dev_attrib, da_group);
	struct tcmu_dev *udev = TCMU_DEV(da->da_dev);
2409
	u64 val;
2410 2411
	int ret;

2412
	ret = kstrtou64(page, 0, &val);
2413 2414 2415 2416
	if (ret < 0)
		return ret;

	/* Check if device has been configured before */
2417
	if (target_dev_configured(&udev->se_dev)) {
2418
		ret = tcmu_send_dev_size_event(udev, val);
2419 2420 2421 2422 2423
		if (ret) {
			pr_err("Unable to reconfigure device\n");
			return ret;
		}
	}
2424
	udev->dev_size = val;
2425 2426 2427 2428
	return count;
}
CONFIGFS_ATTR(tcmu_, dev_size);

2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456
static ssize_t tcmu_nl_reply_supported_show(struct config_item *item,
		char *page)
{
	struct se_dev_attrib *da = container_of(to_config_group(item),
						struct se_dev_attrib, da_group);
	struct tcmu_dev *udev = TCMU_DEV(da->da_dev);

	return snprintf(page, PAGE_SIZE, "%d\n", udev->nl_reply_supported);
}

static ssize_t tcmu_nl_reply_supported_store(struct config_item *item,
		const char *page, size_t count)
{
	struct se_dev_attrib *da = container_of(to_config_group(item),
						struct se_dev_attrib, da_group);
	struct tcmu_dev *udev = TCMU_DEV(da->da_dev);
	s8 val;
	int ret;

	ret = kstrtos8(page, 0, &val);
	if (ret < 0)
		return ret;

	udev->nl_reply_supported = val;
	return count;
}
CONFIGFS_ATTR(tcmu_, nl_reply_supported);

B
Bryant G. Ly 已提交
2457 2458 2459 2460 2461 2462 2463 2464 2465
static ssize_t tcmu_emulate_write_cache_show(struct config_item *item,
					     char *page)
{
	struct se_dev_attrib *da = container_of(to_config_group(item),
					struct se_dev_attrib, da_group);

	return snprintf(page, PAGE_SIZE, "%i\n", da->emulate_write_cache);
}

2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481
static int tcmu_send_emulate_write_cache(struct tcmu_dev *udev, u8 val)
{
	struct sk_buff *skb = NULL;
	void *msg_header = NULL;
	int ret = 0;

	ret = tcmu_netlink_event_init(udev, TCMU_CMD_RECONFIG_DEVICE,
				      &skb, &msg_header);
	if (ret < 0)
		return ret;
	ret = nla_put_u8(skb, TCMU_ATTR_WRITECACHE, val);
	if (ret < 0) {
		nlmsg_free(skb);
		return ret;
	}
	return tcmu_netlink_event_send(udev, TCMU_CMD_RECONFIG_DEVICE,
M
Mike Christie 已提交
2482
				       skb, msg_header);
2483 2484
}

B
Bryant G. Ly 已提交
2485 2486 2487 2488 2489
static ssize_t tcmu_emulate_write_cache_store(struct config_item *item,
					      const char *page, size_t count)
{
	struct se_dev_attrib *da = container_of(to_config_group(item),
					struct se_dev_attrib, da_group);
2490
	struct tcmu_dev *udev = TCMU_DEV(da->da_dev);
2491
	u8 val;
B
Bryant G. Ly 已提交
2492 2493
	int ret;

2494
	ret = kstrtou8(page, 0, &val);
B
Bryant G. Ly 已提交
2495 2496 2497
	if (ret < 0)
		return ret;

2498
	/* Check if device has been configured before */
2499
	if (target_dev_configured(&udev->se_dev)) {
2500
		ret = tcmu_send_emulate_write_cache(udev, val);
2501 2502 2503 2504 2505
		if (ret) {
			pr_err("Unable to reconfigure device\n");
			return ret;
		}
	}
2506 2507

	da->emulate_write_cache = val;
B
Bryant G. Ly 已提交
2508 2509 2510 2511
	return count;
}
CONFIGFS_ATTR(tcmu_, emulate_write_cache);

2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534
static ssize_t tcmu_block_dev_show(struct config_item *item, char *page)
{
	struct se_device *se_dev = container_of(to_config_group(item),
						struct se_device,
						dev_action_group);
	struct tcmu_dev *udev = TCMU_DEV(se_dev);

	if (test_bit(TCMU_DEV_BIT_BLOCKED, &udev->flags))
		return snprintf(page, PAGE_SIZE, "%s\n", "blocked");
	else
		return snprintf(page, PAGE_SIZE, "%s\n", "unblocked");
}

static ssize_t tcmu_block_dev_store(struct config_item *item, const char *page,
				    size_t count)
{
	struct se_device *se_dev = container_of(to_config_group(item),
						struct se_device,
						dev_action_group);
	struct tcmu_dev *udev = TCMU_DEV(se_dev);
	u8 val;
	int ret;

2535 2536 2537 2538 2539
	if (!target_dev_configured(&udev->se_dev)) {
		pr_err("Device is not configured.\n");
		return -EINVAL;
	}

2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566
	ret = kstrtou8(page, 0, &val);
	if (ret < 0)
		return ret;

	if (val > 1) {
		pr_err("Invalid block value %d\n", val);
		return -EINVAL;
	}

	if (!val)
		tcmu_unblock_dev(udev);
	else
		tcmu_block_dev(udev);
	return count;
}
CONFIGFS_ATTR(tcmu_, block_dev);

static ssize_t tcmu_reset_ring_store(struct config_item *item, const char *page,
				     size_t count)
{
	struct se_device *se_dev = container_of(to_config_group(item),
						struct se_device,
						dev_action_group);
	struct tcmu_dev *udev = TCMU_DEV(se_dev);
	u8 val;
	int ret;

2567 2568 2569 2570 2571
	if (!target_dev_configured(&udev->se_dev)) {
		pr_err("Device is not configured.\n");
		return -EINVAL;
	}

2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585
	ret = kstrtou8(page, 0, &val);
	if (ret < 0)
		return ret;

	if (val != 1 && val != 2) {
		pr_err("Invalid reset ring value %d\n", val);
		return -EINVAL;
	}

	tcmu_reset_ring(udev, val);
	return count;
}
CONFIGFS_ATTR_WO(tcmu_, reset_ring);

2586
static struct configfs_attribute *tcmu_attrib_attrs[] = {
2587
	&tcmu_attr_cmd_time_out,
2588
	&tcmu_attr_qfull_time_out,
2589
	&tcmu_attr_max_data_area_mb,
2590
	&tcmu_attr_dev_config,
2591 2592
	&tcmu_attr_dev_size,
	&tcmu_attr_emulate_write_cache,
2593
	&tcmu_attr_nl_reply_supported,
2594 2595 2596
	NULL,
};

2597 2598
static struct configfs_attribute **tcmu_attrs;

2599 2600 2601 2602 2603 2604
static struct configfs_attribute *tcmu_action_attrs[] = {
	&tcmu_attr_block_dev,
	&tcmu_attr_reset_ring,
	NULL,
};

2605
static struct target_backend_ops tcmu_ops = {
2606 2607
	.name			= "user",
	.owner			= THIS_MODULE,
2608
	.transport_flags	= TRANSPORT_FLAG_PASSTHROUGH,
2609 2610 2611 2612
	.attach_hba		= tcmu_attach_hba,
	.detach_hba		= tcmu_detach_hba,
	.alloc_device		= tcmu_alloc_device,
	.configure_device	= tcmu_configure_device,
2613
	.destroy_device		= tcmu_destroy_device,
2614 2615 2616 2617 2618 2619
	.free_device		= tcmu_free_device,
	.parse_cdb		= tcmu_parse_cdb,
	.set_configfs_dev_params = tcmu_set_configfs_dev_params,
	.show_configfs_dev_params = tcmu_show_configfs_dev_params,
	.get_device_type	= sbc_get_device_type,
	.get_blocks		= tcmu_get_blocks,
2620
	.tb_dev_action_attrs	= tcmu_action_attrs,
2621 2622
};

M
Mike Christie 已提交
2623
static void find_free_blocks(void)
2624 2625 2626
{
	struct tcmu_dev *udev;
	loff_t off;
2627 2628
	u32 start, end, block, total_freed = 0;

2629
	if (atomic_read(&global_db_count) <= tcmu_global_max_blocks)
2630
		return;
2631

M
Mike Christie 已提交
2632 2633 2634
	mutex_lock(&root_udev_mutex);
	list_for_each_entry(udev, &root_udev, node) {
		mutex_lock(&udev->cmdr_lock);
2635

2636 2637 2638 2639 2640
		if (!target_dev_configured(&udev->se_dev)) {
			mutex_unlock(&udev->cmdr_lock);
			continue;
		}

M
Mike Christie 已提交
2641 2642
		/* Try to complete the finished commands first */
		tcmu_handle_completions(udev);
2643

2644 2645
		/* Skip the udevs in idle */
		if (!udev->dbi_thresh) {
M
Mike Christie 已提交
2646 2647 2648
			mutex_unlock(&udev->cmdr_lock);
			continue;
		}
2649

M
Mike Christie 已提交
2650 2651 2652 2653
		end = udev->dbi_max + 1;
		block = find_last_bit(udev->data_bitmap, end);
		if (block == udev->dbi_max) {
			/*
2654 2655
			 * The last bit is dbi_max, so it is not possible
			 * reclaim any blocks.
M
Mike Christie 已提交
2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666
			 */
			mutex_unlock(&udev->cmdr_lock);
			continue;
		} else if (block == end) {
			/* The current udev will goto idle state */
			udev->dbi_thresh = start = 0;
			udev->dbi_max = 0;
		} else {
			udev->dbi_thresh = start = block + 1;
			udev->dbi_max = block;
		}
2667

M
Mike Christie 已提交
2668 2669 2670
		/* Here will truncate the data area from off */
		off = udev->data_off + start * DATA_BLOCK_SIZE;
		unmap_mapping_range(udev->inode->i_mapping, off, 0, 1);
2671

M
Mike Christie 已提交
2672 2673 2674
		/* Release the block pages */
		tcmu_blocks_release(&udev->data_blocks, start, end);
		mutex_unlock(&udev->cmdr_lock);
2675

2676 2677 2678
		total_freed += end - start;
		pr_debug("Freed %u blocks (total %u) from %s.\n", end - start,
			 total_freed, udev->name);
M
Mike Christie 已提交
2679 2680
	}
	mutex_unlock(&root_udev_mutex);
2681

2682
	if (atomic_read(&global_db_count) > tcmu_global_max_blocks)
2683
		schedule_delayed_work(&tcmu_unmap_work, msecs_to_jiffies(5000));
M
Mike Christie 已提交
2684 2685
}

2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697
static void check_timedout_devices(void)
{
	struct tcmu_dev *udev, *tmp_dev;
	LIST_HEAD(devs);

	spin_lock_bh(&timed_out_udevs_lock);
	list_splice_init(&timed_out_udevs, &devs);

	list_for_each_entry_safe(udev, tmp_dev, &devs, timedout_entry) {
		list_del_init(&udev->timedout_entry);
		spin_unlock_bh(&timed_out_udevs_lock);

M
Mike Christie 已提交
2698
		mutex_lock(&udev->cmdr_lock);
2699
		idr_for_each(&udev->commands, tcmu_check_expired_cmd, NULL);
2700 2701 2702 2703

		tcmu_set_next_deadline(&udev->inflight_queue, &udev->cmd_timer);
		tcmu_set_next_deadline(&udev->qfull_queue, &udev->qfull_timer);

M
Mike Christie 已提交
2704
		mutex_unlock(&udev->cmdr_lock);
2705 2706 2707 2708 2709 2710 2711

		spin_lock_bh(&timed_out_udevs_lock);
	}

	spin_unlock_bh(&timed_out_udevs_lock);
}

M
Mike Christie 已提交
2712
static void tcmu_unmap_work_fn(struct work_struct *work)
M
Mike Christie 已提交
2713
{
2714
	check_timedout_devices();
M
Mike Christie 已提交
2715
	find_free_blocks();
2716 2717
}

2718 2719
static int __init tcmu_module_init(void)
{
2720
	int ret, i, k, len = 0;
2721 2722 2723

	BUILD_BUG_ON((sizeof(struct tcmu_cmd_entry) % TCMU_OP_ALIGN_SIZE) != 0);

2724
	INIT_DELAYED_WORK(&tcmu_unmap_work, tcmu_unmap_work_fn);
M
Mike Christie 已提交
2725

2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743
	tcmu_cmd_cache = kmem_cache_create("tcmu_cmd_cache",
				sizeof(struct tcmu_cmd),
				__alignof__(struct tcmu_cmd),
				0, NULL);
	if (!tcmu_cmd_cache)
		return -ENOMEM;

	tcmu_root_device = root_device_register("tcm_user");
	if (IS_ERR(tcmu_root_device)) {
		ret = PTR_ERR(tcmu_root_device);
		goto out_free_cache;
	}

	ret = genl_register_family(&tcmu_genl_family);
	if (ret < 0) {
		goto out_unreg_device;
	}

2744 2745 2746
	for (i = 0; passthrough_attrib_attrs[i] != NULL; i++) {
		len += sizeof(struct configfs_attribute *);
	}
2747 2748 2749 2750
	for (i = 0; tcmu_attrib_attrs[i] != NULL; i++) {
		len += sizeof(struct configfs_attribute *);
	}
	len += sizeof(struct configfs_attribute *);
2751 2752 2753 2754 2755 2756 2757 2758 2759 2760

	tcmu_attrs = kzalloc(len, GFP_KERNEL);
	if (!tcmu_attrs) {
		ret = -ENOMEM;
		goto out_unreg_genl;
	}

	for (i = 0; passthrough_attrib_attrs[i] != NULL; i++) {
		tcmu_attrs[i] = passthrough_attrib_attrs[i];
	}
2761 2762 2763 2764
	for (k = 0; tcmu_attrib_attrs[k] != NULL; k++) {
		tcmu_attrs[i] = tcmu_attrib_attrs[k];
		i++;
	}
2765 2766
	tcmu_ops.tb_dev_attrib_attrs = tcmu_attrs;

2767
	ret = transport_backend_register(&tcmu_ops);
2768
	if (ret)
2769
		goto out_attrs;
2770 2771 2772

	return 0;

2773 2774
out_attrs:
	kfree(tcmu_attrs);
2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786
out_unreg_genl:
	genl_unregister_family(&tcmu_genl_family);
out_unreg_device:
	root_device_unregister(tcmu_root_device);
out_free_cache:
	kmem_cache_destroy(tcmu_cmd_cache);

	return ret;
}

static void __exit tcmu_module_exit(void)
{
2787
	cancel_delayed_work_sync(&tcmu_unmap_work);
2788
	target_backend_unregister(&tcmu_ops);
2789
	kfree(tcmu_attrs);
2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801
	genl_unregister_family(&tcmu_genl_family);
	root_device_unregister(tcmu_root_device);
	kmem_cache_destroy(tcmu_cmd_cache);
}

MODULE_DESCRIPTION("TCM USER subsystem plugin");
MODULE_AUTHOR("Shaohua Li <shli@kernel.org>");
MODULE_AUTHOR("Andy Grover <agrover@redhat.com>");
MODULE_LICENSE("GPL");

module_init(tcmu_module_init);
module_exit(tcmu_module_exit);