target_core_rd.c 11.2 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39
/*******************************************************************************
 * Filename:  target_core_rd.c
 *
 * This file contains the Storage Engine <-> Ramdisk transport
 * specific functions.
 *
 * Copyright (c) 2003, 2004, 2005 PyX Technologies, Inc.
 * Copyright (c) 2005, 2006, 2007 SBE, Inc.
 * Copyright (c) 2007-2010 Rising Tide Systems
 * Copyright (c) 2008-2010 Linux-iSCSI.org
 *
 * Nicholas A. Bellinger <nab@kernel.org>
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that 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.
 *
 ******************************************************************************/

#include <linux/string.h>
#include <linux/parser.h>
#include <linux/timer.h>
#include <linux/blkdev.h>
#include <linux/slab.h>
#include <linux/spinlock.h>
#include <scsi/scsi.h>
#include <scsi/scsi_host.h>

#include <target/target_core_base.h>
40
#include <target/target_core_backend.h>
41 42 43

#include "target_core_rd.h"

44 45 46 47
static inline struct rd_dev *RD_DEV(struct se_device *dev)
{
	return container_of(dev, struct rd_dev, dev);
}
48 49 50 51 52 53 54 55 56 57

/*	rd_attach_hba(): (Part of se_subsystem_api_t template)
 *
 *
 */
static int rd_attach_hba(struct se_hba *hba, u32 host_id)
{
	struct rd_host *rd_host;

	rd_host = kzalloc(sizeof(struct rd_host), GFP_KERNEL);
58 59
	if (!rd_host) {
		pr_err("Unable to allocate memory for struct rd_host\n");
60 61 62 63 64
		return -ENOMEM;
	}

	rd_host->rd_host_id = host_id;

65
	hba->hba_ptr = rd_host;
66

67
	pr_debug("CORE_HBA[%d] - TCM Ramdisk HBA Driver %s on"
68 69 70 71 72 73 74 75 76 77
		" Generic Target Core Stack %s\n", hba->hba_id,
		RD_HBA_VERSION, TARGET_CORE_MOD_VERSION);

	return 0;
}

static void rd_detach_hba(struct se_hba *hba)
{
	struct rd_host *rd_host = hba->hba_ptr;

78
	pr_debug("CORE_HBA[%d] - Detached Ramdisk HBA: %u from"
79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106
		" Generic Target Core\n", hba->hba_id, rd_host->rd_host_id);

	kfree(rd_host);
	hba->hba_ptr = NULL;
}

/*	rd_release_device_space():
 *
 *
 */
static void rd_release_device_space(struct rd_dev *rd_dev)
{
	u32 i, j, page_count = 0, sg_per_table;
	struct rd_dev_sg_table *sg_table;
	struct page *pg;
	struct scatterlist *sg;

	if (!rd_dev->sg_table_array || !rd_dev->sg_table_count)
		return;

	sg_table = rd_dev->sg_table_array;

	for (i = 0; i < rd_dev->sg_table_count; i++) {
		sg = sg_table[i].sg_table;
		sg_per_table = sg_table[i].rd_sg_count;

		for (j = 0; j < sg_per_table; j++) {
			pg = sg_page(&sg[j]);
107
			if (pg) {
108 109 110 111 112 113 114 115
				__free_page(pg);
				page_count++;
			}
		}

		kfree(sg);
	}

116
	pr_debug("CORE_RD[%u] - Released device space for Ramdisk"
117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140
		" Device ID: %u, pages %u in %u tables total bytes %lu\n",
		rd_dev->rd_host->rd_host_id, rd_dev->rd_dev_id, page_count,
		rd_dev->sg_table_count, (unsigned long)page_count * PAGE_SIZE);

	kfree(sg_table);
	rd_dev->sg_table_array = NULL;
	rd_dev->sg_table_count = 0;
}


/*	rd_build_device_space():
 *
 *
 */
static int rd_build_device_space(struct rd_dev *rd_dev)
{
	u32 i = 0, j, page_offset = 0, sg_per_table, sg_tables, total_sg_needed;
	u32 max_sg_per_table = (RD_MAX_ALLOCATION_SIZE /
				sizeof(struct scatterlist));
	struct rd_dev_sg_table *sg_table;
	struct page *pg;
	struct scatterlist *sg;

	if (rd_dev->rd_page_count <= 0) {
141
		pr_err("Illegal page count: %u for Ramdisk device\n",
142
			rd_dev->rd_page_count);
143
		return -EINVAL;
144 145 146 147 148 149
	}
	total_sg_needed = rd_dev->rd_page_count;

	sg_tables = (total_sg_needed / max_sg_per_table) + 1;

	sg_table = kzalloc(sg_tables * sizeof(struct rd_dev_sg_table), GFP_KERNEL);
150 151
	if (!sg_table) {
		pr_err("Unable to allocate memory for Ramdisk"
152
			" scatterlist tables\n");
153
		return -ENOMEM;
154 155 156 157 158 159 160 161 162 163 164
	}

	rd_dev->sg_table_array = sg_table;
	rd_dev->sg_table_count = sg_tables;

	while (total_sg_needed) {
		sg_per_table = (total_sg_needed > max_sg_per_table) ?
			max_sg_per_table : total_sg_needed;

		sg = kzalloc(sg_per_table * sizeof(struct scatterlist),
				GFP_KERNEL);
165 166
		if (!sg) {
			pr_err("Unable to allocate scatterlist array"
167
				" for struct rd_dev\n");
168
			return -ENOMEM;
169 170
		}

171
		sg_init_table(sg, sg_per_table);
172 173 174 175 176 177 178 179 180

		sg_table[i].sg_table = sg;
		sg_table[i].rd_sg_count = sg_per_table;
		sg_table[i].page_start_offset = page_offset;
		sg_table[i++].page_end_offset = (page_offset + sg_per_table)
						- 1;

		for (j = 0; j < sg_per_table; j++) {
			pg = alloc_pages(GFP_KERNEL, 0);
181 182
			if (!pg) {
				pr_err("Unable to allocate scatterlist"
183
					" pages for struct rd_dev_sg_table\n");
184
				return -ENOMEM;
185 186 187 188 189 190 191 192 193
			}
			sg_assign_page(&sg[j], pg);
			sg[j].length = PAGE_SIZE;
		}

		page_offset += sg_per_table;
		total_sg_needed -= sg_per_table;
	}

194
	pr_debug("CORE_RD[%u] - Built Ramdisk Device ID: %u space of"
195 196 197 198 199 200 201
		" %u pages in %u tables\n", rd_dev->rd_host->rd_host_id,
		rd_dev->rd_dev_id, rd_dev->rd_page_count,
		rd_dev->sg_table_count);

	return 0;
}

202
static struct se_device *rd_alloc_device(struct se_hba *hba, const char *name)
203 204 205 206 207
{
	struct rd_dev *rd_dev;
	struct rd_host *rd_host = hba->hba_ptr;

	rd_dev = kzalloc(sizeof(struct rd_dev), GFP_KERNEL);
208 209
	if (!rd_dev) {
		pr_err("Unable to allocate memory for struct rd_dev\n");
210 211 212 213 214
		return NULL;
	}

	rd_dev->rd_host = rd_host;

215
	return &rd_dev->dev;
216 217
}

218
static int rd_configure_device(struct se_device *dev)
219
{
220 221 222
	struct rd_dev *rd_dev = RD_DEV(dev);
	struct rd_host *rd_host = dev->se_hba->hba_ptr;
	int ret;
223

224 225 226 227
	if (!(rd_dev->rd_flags & RDF_HAS_PAGE_COUNT)) {
		pr_debug("Missing rd_pages= parameter\n");
		return -EINVAL;
	}
228

229 230
	ret = rd_build_device_space(rd_dev);
	if (ret < 0)
231 232
		goto fail;

233 234 235
	dev->dev_attrib.hw_block_size = RD_BLOCKSIZE;
	dev->dev_attrib.hw_max_sectors = UINT_MAX;
	dev->dev_attrib.hw_queue_depth = RD_MAX_DEVICE_QUEUE_DEPTH;
236 237 238

	rd_dev->rd_dev_id = rd_host->rd_host_dev_id_count++;

239
	pr_debug("CORE_RD[%u] - Added TCM MEMCPY Ramdisk Device ID: %u of"
240
		" %u pages in %u tables, %lu total bytes\n",
241
		rd_host->rd_host_id, rd_dev->rd_dev_id, rd_dev->rd_page_count,
242 243 244
		rd_dev->sg_table_count,
		(unsigned long)(rd_dev->rd_page_count * PAGE_SIZE));

245
	return 0;
246 247 248

fail:
	rd_release_device_space(rd_dev);
249
	return ret;
250 251
}

252
static void rd_free_device(struct se_device *dev)
253
{
254
	struct rd_dev *rd_dev = RD_DEV(dev);
255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271

	rd_release_device_space(rd_dev);
	kfree(rd_dev);
}

static struct rd_dev_sg_table *rd_get_sg_table(struct rd_dev *rd_dev, u32 page)
{
	u32 i;
	struct rd_dev_sg_table *sg_table;

	for (i = 0; i < rd_dev->sg_table_count; i++) {
		sg_table = &rd_dev->sg_table_array[i];
		if ((sg_table->page_start_offset <= page) &&
		    (sg_table->page_end_offset >= page))
			return sg_table;
	}

272
	pr_err("Unable to locate struct rd_dev_sg_table for page: %u\n",
273 274 275 276 277
			page);

	return NULL;
}

278 279
static sense_reason_t
rd_execute_rw(struct se_cmd *cmd)
280
{
281 282 283
	struct scatterlist *sgl = cmd->t_data_sg;
	u32 sgl_nents = cmd->t_data_nents;
	enum dma_data_direction data_direction = cmd->data_direction;
284
	struct se_device *se_dev = cmd->se_dev;
285
	struct rd_dev *dev = RD_DEV(se_dev);
286
	struct rd_dev_sg_table *table;
287 288
	struct scatterlist *rd_sg;
	struct sg_mapping_iter m;
289 290 291
	u32 rd_offset;
	u32 rd_size;
	u32 rd_page;
292
	u32 src_len;
293
	u64 tmp;
294

295
	tmp = cmd->t_task_lba * se_dev->dev_attrib.block_size;
296 297
	rd_offset = do_div(tmp, PAGE_SIZE);
	rd_page = tmp;
298
	rd_size = cmd->data_length;
299 300

	table = rd_get_sg_table(dev, rd_page);
301
	if (!table)
302
		return TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE;
303

304
	rd_sg = &table->sg_table[rd_page - table->page_start_offset];
305

306
	pr_debug("RD[%u]: %s LBA: %llu, Size: %u Page: %u, Offset: %u\n",
307
			dev->rd_dev_id,
308 309
			data_direction == DMA_FROM_DEVICE ? "Read" : "Write",
			cmd->t_task_lba, rd_size, rd_page, rd_offset);
310

311
	src_len = PAGE_SIZE - rd_offset;
312 313
	sg_miter_start(&m, sgl, sgl_nents,
			data_direction == DMA_FROM_DEVICE ?
314 315
				SG_MITER_TO_SG : SG_MITER_FROM_SG);
	while (rd_size) {
316 317
		u32 len;
		void *rd_addr;
318

319 320 321
		sg_miter_next(&m);
		len = min((u32)m.length, src_len);
		m.consumed = len;
322

323
		rd_addr = sg_virt(rd_sg) + rd_offset;
324

325
		if (data_direction == DMA_FROM_DEVICE)
326 327 328
			memcpy(m.addr, rd_addr, len);
		else
			memcpy(rd_addr, m.addr, len);
329

330 331
		rd_size -= len;
		if (!rd_size)
332 333
			continue;

334 335 336
		src_len -= len;
		if (src_len) {
			rd_offset += len;
337 338
			continue;
		}
339

340
		/* rd page completed, next one please */
341
		rd_page++;
342 343
		rd_offset = 0;
		src_len = PAGE_SIZE;
344
		if (rd_page <= table->page_end_offset) {
345
			rd_sg++;
346 347
			continue;
		}
348

349
		table = rd_get_sg_table(dev, rd_page);
350 351
		if (!table) {
			sg_miter_stop(&m);
352
			return TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE;
353
		}
354

355 356
		/* since we increment, the first sg entry is correct */
		rd_sg = table->sg_table;
357
	}
358
	sg_miter_stop(&m);
359

360
	target_complete_cmd(cmd, SAM_STAT_GOOD);
361
	return 0;
362 363 364 365 366 367 368 369 370 371 372
}

enum {
	Opt_rd_pages, Opt_err
};

static match_table_t tokens = {
	{Opt_rd_pages, "rd_pages=%d"},
	{Opt_err, NULL}
};

373 374
static ssize_t rd_set_configfs_dev_params(struct se_device *dev,
		const char *page, ssize_t count)
375
{
376
	struct rd_dev *rd_dev = RD_DEV(dev);
377 378 379 380 381 382 383 384 385 386
	char *orig, *ptr, *opts;
	substring_t args[MAX_OPT_ARGS];
	int ret = 0, arg, token;

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

	orig = opts;

387
	while ((ptr = strsep(&opts, ",\n")) != NULL) {
388 389 390 391 392 393 394 395
		if (!*ptr)
			continue;

		token = match_token(ptr, tokens, args);
		switch (token) {
		case Opt_rd_pages:
			match_int(args, &arg);
			rd_dev->rd_page_count = arg;
396
			pr_debug("RAMDISK: Referencing Page"
397 398 399 400 401 402 403 404 405 406 407 408
				" Count: %u\n", rd_dev->rd_page_count);
			rd_dev->rd_flags |= RDF_HAS_PAGE_COUNT;
			break;
		default:
			break;
		}
	}

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

409
static ssize_t rd_show_configfs_dev_params(struct se_device *dev, char *b)
410
{
411
	struct rd_dev *rd_dev = RD_DEV(dev);
412

413 414
	ssize_t bl = sprintf(b, "TCM RamDisk ID: %u  RamDisk Makeup: rd_mcp\n",
			rd_dev->rd_dev_id);
415 416 417 418 419 420 421 422
	bl += sprintf(b + bl, "        PAGES/PAGE_SIZE: %u*%lu"
			"  SG_table_count: %u\n", rd_dev->rd_page_count,
			PAGE_SIZE, rd_dev->sg_table_count);
	return bl;
}

static sector_t rd_get_blocks(struct se_device *dev)
{
423 424
	struct rd_dev *rd_dev = RD_DEV(dev);

425
	unsigned long long blocks_long = ((rd_dev->rd_page_count * PAGE_SIZE) /
426
			dev->dev_attrib.block_size) - 1;
427 428 429 430

	return blocks_long;
}

C
Christoph Hellwig 已提交
431
static struct sbc_ops rd_sbc_ops = {
432 433 434
	.execute_rw		= rd_execute_rw,
};

435 436
static sense_reason_t
rd_parse_cdb(struct se_cmd *cmd)
437
{
C
Christoph Hellwig 已提交
438
	return sbc_parse_cdb(cmd, &rd_sbc_ops);
439 440
}

441 442
static struct se_subsystem_api rd_mcp_template = {
	.name			= "rd_mcp",
443 444
	.inquiry_prod		= "RAMDISK-MCP",
	.inquiry_rev		= RD_MCP_VERSION,
445 446 447
	.transport_type		= TRANSPORT_PLUGIN_VHBA_VDEV,
	.attach_hba		= rd_attach_hba,
	.detach_hba		= rd_detach_hba,
448 449
	.alloc_device		= rd_alloc_device,
	.configure_device	= rd_configure_device,
450
	.free_device		= rd_free_device,
451
	.parse_cdb		= rd_parse_cdb,
452 453
	.set_configfs_dev_params = rd_set_configfs_dev_params,
	.show_configfs_dev_params = rd_show_configfs_dev_params,
454
	.get_device_type	= sbc_get_device_type,
455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473
	.get_blocks		= rd_get_blocks,
};

int __init rd_module_init(void)
{
	int ret;

	ret = transport_subsystem_register(&rd_mcp_template);
	if (ret < 0) {
		return ret;
	}

	return 0;
}

void rd_module_exit(void)
{
	transport_subsystem_release(&rd_mcp_template);
}