dcssblk.c 25.0 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
/*
 * dcssblk.c -- the S/390 block driver for dcss memory
 *
 * Authors: Carsten Otte, Stefan Weinhuber, Gerald Schaefer
 */

#include <linux/module.h>
#include <linux/moduleparam.h>
#include <linux/ctype.h>
#include <linux/errno.h>
#include <linux/init.h>
#include <linux/slab.h>
#include <linux/blkdev.h>
#include <asm/extmem.h>
#include <asm/io.h>
#include <linux/completion.h>
#include <linux/interrupt.h>
18
#include <asm/s390_rdev.h>
L
Linus Torvalds 已提交
19 20 21 22 23

//#define DCSSBLK_DEBUG		/* Debug messages on/off */
#define DCSSBLK_NAME "dcssblk"
#define DCSSBLK_MINORS_PER_DISK 1
#define DCSSBLK_PARM_LEN 400
24
#define DCSS_BUS_ID_SIZE 20
L
Linus Torvalds 已提交
25 26 27 28 29 30 31 32 33 34

#ifdef DCSSBLK_DEBUG
#define PRINT_DEBUG(x...) printk(KERN_DEBUG DCSSBLK_NAME " debug: " x)
#else
#define PRINT_DEBUG(x...) do {} while (0)
#endif
#define PRINT_INFO(x...)  printk(KERN_INFO DCSSBLK_NAME " info: " x)
#define PRINT_WARN(x...)  printk(KERN_WARNING DCSSBLK_NAME " warning: " x)
#define PRINT_ERR(x...)	  printk(KERN_ERR DCSSBLK_NAME " error: " x)

A
Al Viro 已提交
35 36
static int dcssblk_open(struct block_device *bdev, fmode_t mode);
static int dcssblk_release(struct gendisk *disk, fmode_t mode);
L
Linus Torvalds 已提交
37
static int dcssblk_make_request(struct request_queue *q, struct bio *bio);
38
static int dcssblk_direct_access(struct block_device *bdev, sector_t secnum,
39
				 void **kaddr, unsigned long *pfn);
L
Linus Torvalds 已提交
40 41 42 43 44

static char dcssblk_segments[DCSSBLK_PARM_LEN] = "\0";

static int dcssblk_major;
static struct block_device_operations dcssblk_devops = {
45
	.owner   	= THIS_MODULE,
A
Al Viro 已提交
46 47
	.open    	= dcssblk_open,
	.release 	= dcssblk_release,
48
	.direct_access 	= dcssblk_direct_access,
L
Linus Torvalds 已提交
49 50
};

51 52 53
struct dcssblk_dev_info {
	struct list_head lh;
	struct device dev;
54
	char segment_name[DCSS_BUS_ID_SIZE];
55 56 57 58 59 60 61 62 63 64 65 66 67 68
	atomic_t use_count;
	struct gendisk *gd;
	unsigned long start;
	unsigned long end;
	int segment_type;
	unsigned char save_pending;
	unsigned char is_shared;
	struct request_queue *dcssblk_queue;
	int num_of_segments;
	struct list_head seg_list;
};

struct segment_info {
	struct list_head lh;
69
	char segment_name[DCSS_BUS_ID_SIZE];
70 71 72 73 74
	unsigned long start;
	unsigned long end;
	int segment_type;
};

75
static ssize_t dcssblk_add_store(struct device * dev, struct device_attribute *attr, const char * buf,
L
Linus Torvalds 已提交
76
				  size_t count);
77
static ssize_t dcssblk_remove_store(struct device * dev, struct device_attribute *attr, const char * buf,
L
Linus Torvalds 已提交
78
				  size_t count);
79
static ssize_t dcssblk_save_store(struct device * dev, struct device_attribute *attr, const char * buf,
L
Linus Torvalds 已提交
80
				  size_t count);
81 82
static ssize_t dcssblk_save_show(struct device *dev, struct device_attribute *attr, char *buf);
static ssize_t dcssblk_shared_store(struct device * dev, struct device_attribute *attr, const char * buf,
L
Linus Torvalds 已提交
83
				  size_t count);
84
static ssize_t dcssblk_shared_show(struct device *dev, struct device_attribute *attr, char *buf);
85 86 87
static ssize_t dcssblk_seglist_show(struct device *dev,
				struct device_attribute *attr,
				char *buf);
L
Linus Torvalds 已提交
88 89 90

static DEVICE_ATTR(add, S_IWUSR, NULL, dcssblk_add_store);
static DEVICE_ATTR(remove, S_IWUSR, NULL, dcssblk_remove_store);
91
static DEVICE_ATTR(save, S_IWUSR | S_IRUSR, dcssblk_save_show,
L
Linus Torvalds 已提交
92
		   dcssblk_save_store);
93
static DEVICE_ATTR(shared, S_IWUSR | S_IRUSR, dcssblk_shared_show,
L
Linus Torvalds 已提交
94
		   dcssblk_shared_store);
95
static DEVICE_ATTR(seglist, S_IRUSR, dcssblk_seglist_show, NULL);
L
Linus Torvalds 已提交
96 97 98

static struct device *dcssblk_root_dev;

99
static LIST_HEAD(dcssblk_devices);
L
Linus Torvalds 已提交
100 101 102 103 104 105 106 107
static struct rw_semaphore dcssblk_devices_sem;

/*
 * release function for segment device.
 */
static void
dcssblk_release_segment(struct device *dev)
{
108 109 110 111 112 113 114 115 116
	struct dcssblk_dev_info *dev_info;
	struct segment_info *entry, *temp;

	dev_info = container_of(dev, struct dcssblk_dev_info, dev);
	list_for_each_entry_safe(entry, temp, &dev_info->seg_list, lh) {
		list_del(&entry->lh);
		kfree(entry);
	}
	kfree(dev_info);
L
Linus Torvalds 已提交
117 118 119 120 121 122 123 124 125
	module_put(THIS_MODULE);
}

/*
 * get a minor number. needs to be called with
 * down_write(&dcssblk_devices_sem) and the
 * device needs to be enqueued before the semaphore is
 * freed.
 */
126
static int
L
Linus Torvalds 已提交
127 128 129 130 131 132 133 134 135 136 137
dcssblk_assign_free_minor(struct dcssblk_dev_info *dev_info)
{
	int minor, found;
	struct dcssblk_dev_info *entry;

	if (dev_info == NULL)
		return -EINVAL;
	for (minor = 0; minor < (1<<MINORBITS); minor++) {
		found = 0;
		// test if minor available
		list_for_each_entry(entry, &dcssblk_devices, lh)
138
			if (minor == MINOR(disk_devt(entry->gd)))
L
Linus Torvalds 已提交
139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165
				found++;
		if (!found) break; // got unused minor
	}
	if (found)
		return -EBUSY;
	dev_info->gd->first_minor = minor;
	return 0;
}

/*
 * get the struct dcssblk_dev_info from dcssblk_devices
 * for the given name.
 * down_read(&dcssblk_devices_sem) must be held.
 */
static struct dcssblk_dev_info *
dcssblk_get_device_by_name(char *name)
{
	struct dcssblk_dev_info *entry;

	list_for_each_entry(entry, &dcssblk_devices, lh) {
		if (!strcmp(name, entry->segment_name)) {
			return entry;
		}
	}
	return NULL;
}

166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 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 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
/*
 * get the struct segment_info from seg_list
 * for the given name.
 * down_read(&dcssblk_devices_sem) must be held.
 */
static struct segment_info *
dcssblk_get_segment_by_name(char *name)
{
	struct dcssblk_dev_info *dev_info;
	struct segment_info *entry;

	list_for_each_entry(dev_info, &dcssblk_devices, lh) {
		list_for_each_entry(entry, &dev_info->seg_list, lh) {
			if (!strcmp(name, entry->segment_name))
				return entry;
		}
	}
	return NULL;
}

/*
 * get the highest address of the multi-segment block.
 */
static unsigned long
dcssblk_find_highest_addr(struct dcssblk_dev_info *dev_info)
{
	unsigned long highest_addr;
	struct segment_info *entry;

	highest_addr = 0;
	list_for_each_entry(entry, &dev_info->seg_list, lh) {
		if (highest_addr < entry->end)
			highest_addr = entry->end;
	}
	return highest_addr;
}

/*
 * get the lowest address of the multi-segment block.
 */
static unsigned long
dcssblk_find_lowest_addr(struct dcssblk_dev_info *dev_info)
{
	int set_first;
	unsigned long lowest_addr;
	struct segment_info *entry;

	set_first = 0;
	lowest_addr = 0;
	list_for_each_entry(entry, &dev_info->seg_list, lh) {
		if (set_first == 0) {
			lowest_addr = entry->start;
			set_first = 1;
		} else {
			if (lowest_addr > entry->start)
				lowest_addr = entry->start;
		}
	}
	return lowest_addr;
}

/*
 * Check continuity of segments.
 */
static int
dcssblk_is_continuous(struct dcssblk_dev_info *dev_info)
{
	int i, j, rc;
	struct segment_info *sort_list, *entry, temp;

	if (dev_info->num_of_segments <= 1)
		return 0;

	sort_list = kzalloc(
			sizeof(struct segment_info) * dev_info->num_of_segments,
			GFP_KERNEL);
	if (sort_list == NULL)
		return -ENOMEM;
	i = 0;
	list_for_each_entry(entry, &dev_info->seg_list, lh) {
		memcpy(&sort_list[i], entry, sizeof(struct segment_info));
		i++;
	}

	/* sort segments */
	for (i = 0; i < dev_info->num_of_segments; i++)
		for (j = 0; j < dev_info->num_of_segments; j++)
			if (sort_list[j].start > sort_list[i].start) {
				memcpy(&temp, &sort_list[i],
					sizeof(struct segment_info));
				memcpy(&sort_list[i], &sort_list[j],
					sizeof(struct segment_info));
				memcpy(&sort_list[j], &temp,
					sizeof(struct segment_info));
			}

	/* check continuity */
	for (i = 0; i < dev_info->num_of_segments - 1; i++) {
		if ((sort_list[i].end + 1) != sort_list[i+1].start) {
			PRINT_ERR("Segment %s is not contiguous with "
				"segment %s\n",
				sort_list[i].segment_name,
				sort_list[i+1].segment_name);
			rc = -EINVAL;
			goto out;
		}
		/* EN and EW are allowed in a block device */
		if (sort_list[i].segment_type != sort_list[i+1].segment_type) {
			if (!(sort_list[i].segment_type & SEGMENT_EXCLUSIVE) ||
				(sort_list[i].segment_type == SEG_TYPE_ER) ||
				!(sort_list[i+1].segment_type &
				SEGMENT_EXCLUSIVE) ||
				(sort_list[i+1].segment_type == SEG_TYPE_ER)) {
				PRINT_ERR("Segment %s has different type from "
					"segment %s\n",
					sort_list[i].segment_name,
					sort_list[i+1].segment_name);
				rc = -EINVAL;
				goto out;
			}
		}
	}
	rc = 0;
out:
	kfree(sort_list);
	return rc;
}

/*
 * Load a segment
 */
static int
dcssblk_load_segment(char *name, struct segment_info **seg_info)
{
	int rc;

	/* already loaded? */
	down_read(&dcssblk_devices_sem);
	*seg_info = dcssblk_get_segment_by_name(name);
	up_read(&dcssblk_devices_sem);
	if (*seg_info != NULL)
		return -EEXIST;

	/* get a struct segment_info */
	*seg_info = kzalloc(sizeof(struct segment_info), GFP_KERNEL);
	if (*seg_info == NULL)
		return -ENOMEM;

	strcpy((*seg_info)->segment_name, name);

	/* load the segment */
	rc = segment_load(name, SEGMENT_SHARED,
			&(*seg_info)->start, &(*seg_info)->end);
	if (rc < 0) {
		segment_warning(rc, (*seg_info)->segment_name);
		kfree(*seg_info);
	} else {
		INIT_LIST_HEAD(&(*seg_info)->lh);
		(*seg_info)->segment_type = rc;
	}
	return rc;
}

329 330 331 332 333 334
static void dcssblk_unregister_callback(struct device *dev)
{
	device_unregister(dev);
	put_device(dev);
}

L
Linus Torvalds 已提交
335 336 337 338 339
/*
 * device attribute for switching shared/nonshared (exclusive)
 * operation (show + store)
 */
static ssize_t
340
dcssblk_shared_show(struct device *dev, struct device_attribute *attr, char *buf)
L
Linus Torvalds 已提交
341 342 343 344 345 346 347 348
{
	struct dcssblk_dev_info *dev_info;

	dev_info = container_of(dev, struct dcssblk_dev_info, dev);
	return sprintf(buf, dev_info->is_shared ? "1\n" : "0\n");
}

static ssize_t
349
dcssblk_shared_store(struct device *dev, struct device_attribute *attr, const char *inbuf, size_t count)
L
Linus Torvalds 已提交
350 351
{
	struct dcssblk_dev_info *dev_info;
352
	struct segment_info *entry, *temp;
L
Linus Torvalds 已提交
353 354
	int rc;

355
	if ((count > 1) && (inbuf[1] != '\n') && (inbuf[1] != '\0'))
L
Linus Torvalds 已提交
356 357 358 359 360 361 362 363
		return -EINVAL;
	down_write(&dcssblk_devices_sem);
	dev_info = container_of(dev, struct dcssblk_dev_info, dev);
	if (atomic_read(&dev_info->use_count)) {
		rc = -EBUSY;
		goto out;
	}
	if (inbuf[0] == '1') {
364 365 366 367 368 369 370 371
		/* reload segments in shared mode */
		list_for_each_entry(entry, &dev_info->seg_list, lh) {
			rc = segment_modify_shared(entry->segment_name,
						SEGMENT_SHARED);
			if (rc < 0) {
				BUG_ON(rc == -EINVAL);
				if (rc != -EAGAIN)
					goto removeseg;
L
Linus Torvalds 已提交
372 373
			}
		}
374 375 376 377 378 379 380
		dev_info->is_shared = 1;
		switch (dev_info->segment_type) {
		case SEG_TYPE_SR:
		case SEG_TYPE_ER:
		case SEG_TYPE_SC:
			set_disk_ro(dev_info->gd, 1);
		}
L
Linus Torvalds 已提交
381
	} else if (inbuf[0] == '0') {
382
		/* reload segments in exclusive mode */
L
Linus Torvalds 已提交
383 384
		if (dev_info->segment_type == SEG_TYPE_SC) {
			PRINT_ERR("Segment type SC (%s) cannot be loaded in "
385
				"non-shared mode\n", dev_info->segment_name);
L
Linus Torvalds 已提交
386 387 388
			rc = -EINVAL;
			goto out;
		}
389 390 391 392 393 394 395 396
		list_for_each_entry(entry, &dev_info->seg_list, lh) {
			rc = segment_modify_shared(entry->segment_name,
						   SEGMENT_EXCLUSIVE);
			if (rc < 0) {
				BUG_ON(rc == -EINVAL);
				if (rc != -EAGAIN)
					goto removeseg;
			}
L
Linus Torvalds 已提交
397
		}
398 399
		dev_info->is_shared = 0;
		set_disk_ro(dev_info->gd, 0);
L
Linus Torvalds 已提交
400 401 402 403 404 405 406 407
	} else {
		rc = -EINVAL;
		goto out;
	}
	rc = count;
	goto out;

removeseg:
408 409 410 411 412 413 414 415
	PRINT_ERR("Could not reload segment(s) of the device %s, removing "
		"segment(s) now!\n",
		dev_info->segment_name);
	temp = entry;
	list_for_each_entry(entry, &dev_info->seg_list, lh) {
		if (entry != temp)
			segment_unload(entry->segment_name);
	}
L
Linus Torvalds 已提交
416 417 418
	list_del(&dev_info->lh);

	del_gendisk(dev_info->gd);
419
	blk_cleanup_queue(dev_info->dcssblk_queue);
L
Linus Torvalds 已提交
420 421
	dev_info->gd->queue = NULL;
	put_disk(dev_info->gd);
422
	rc = device_schedule_callback(dev, dcssblk_unregister_callback);
L
Linus Torvalds 已提交
423 424 425 426 427 428 429 430 431 432 433 434 435
out:
	up_write(&dcssblk_devices_sem);
	return rc;
}

/*
 * device attribute for save operation on current copy
 * of the segment. If the segment is busy, saving will
 * become pending until it gets released, which can be
 * undone by storing a non-true value to this entry.
 * (show + store)
 */
static ssize_t
436
dcssblk_save_show(struct device *dev, struct device_attribute *attr, char *buf)
L
Linus Torvalds 已提交
437 438 439 440 441 442 443 444
{
	struct dcssblk_dev_info *dev_info;

	dev_info = container_of(dev, struct dcssblk_dev_info, dev);
	return sprintf(buf, dev_info->save_pending ? "1\n" : "0\n");
}

static ssize_t
445
dcssblk_save_store(struct device *dev, struct device_attribute *attr, const char *inbuf, size_t count)
L
Linus Torvalds 已提交
446 447
{
	struct dcssblk_dev_info *dev_info;
448
	struct segment_info *entry;
L
Linus Torvalds 已提交
449

450
	if ((count > 1) && (inbuf[1] != '\n') && (inbuf[1] != '\0'))
L
Linus Torvalds 已提交
451 452 453 454 455 456 457
		return -EINVAL;
	dev_info = container_of(dev, struct dcssblk_dev_info, dev);

	down_write(&dcssblk_devices_sem);
	if (inbuf[0] == '1') {
		if (atomic_read(&dev_info->use_count) == 0) {
			// device is idle => we save immediately
458
			PRINT_INFO("Saving segment(s) of the device %s\n",
L
Linus Torvalds 已提交
459
				   dev_info->segment_name);
460 461 462
			list_for_each_entry(entry, &dev_info->seg_list, lh) {
				segment_save(entry->segment_name);
			}
L
Linus Torvalds 已提交
463 464 465
		}  else {
			// device is busy => we save it when it becomes
			// idle in dcssblk_release
466 467
			PRINT_INFO("Device %s is currently busy, segment(s) "
				   "will be saved when it becomes idle...\n",
L
Linus Torvalds 已提交
468 469 470 471 472 473 474 475
				   dev_info->segment_name);
			dev_info->save_pending = 1;
		}
	} else if (inbuf[0] == '0') {
		if (dev_info->save_pending) {
			// device is busy & the user wants to undo his save
			// request
			dev_info->save_pending = 0;
476 477
			PRINT_INFO("Pending save for segment(s) of the device "
					"%s deactivated\n",
L
Linus Torvalds 已提交
478 479 480 481 482 483 484 485 486 487
					dev_info->segment_name);
		}
	} else {
		up_write(&dcssblk_devices_sem);
		return -EINVAL;
	}
	up_write(&dcssblk_devices_sem);
	return count;
}

488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513
/*
 * device attribute for showing all segments in a device
 */
static ssize_t
dcssblk_seglist_show(struct device *dev, struct device_attribute *attr,
		char *buf)
{
	int i;

	struct dcssblk_dev_info *dev_info;
	struct segment_info *entry;

	down_read(&dcssblk_devices_sem);
	dev_info = container_of(dev, struct dcssblk_dev_info, dev);
	i = 0;
	buf[0] = '\0';
	list_for_each_entry(entry, &dev_info->seg_list, lh) {
		strcpy(&buf[i], entry->segment_name);
		i += strlen(entry->segment_name);
		buf[i] = '\n';
		i++;
	}
	up_read(&dcssblk_devices_sem);
	return i;
}

L
Linus Torvalds 已提交
514 515 516 517
/*
 * device attribute for adding devices
 */
static ssize_t
518
dcssblk_add_store(struct device *dev, struct device_attribute *attr, const char *buf, size_t count)
L
Linus Torvalds 已提交
519
{
520
	int rc, i, j, num_of_segments;
L
Linus Torvalds 已提交
521
	struct dcssblk_dev_info *dev_info;
522
	struct segment_info *seg_info, *temp;
L
Linus Torvalds 已提交
523 524 525 526
	char *local_buf;
	unsigned long seg_byte_size;

	dev_info = NULL;
527
	seg_info = NULL;
L
Linus Torvalds 已提交
528 529 530 531
	if (dev != dcssblk_root_dev) {
		rc = -EINVAL;
		goto out_nobuf;
	}
532 533 534 535 536
	if ((count < 1) || (buf[0] == '\0') || (buf[0] == '\n')) {
		rc = -ENAMETOOLONG;
		goto out_nobuf;
	}

L
Linus Torvalds 已提交
537 538 539 540 541
	local_buf = kmalloc(count + 1, GFP_KERNEL);
	if (local_buf == NULL) {
		rc = -ENOMEM;
		goto out_nobuf;
	}
542

L
Linus Torvalds 已提交
543 544 545
	/*
	 * parse input
	 */
546
	num_of_segments = 0;
L
Linus Torvalds 已提交
547
	for (i = 0; ((buf[i] != '\0') && (buf[i] != '\n') && i < count); i++) {
548 549 550 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 582
		for (j = i; (buf[j] != ':') &&
			(buf[j] != '\0') &&
			(buf[j] != '\n') &&
			j < count; j++) {
			local_buf[j-i] = toupper(buf[j]);
		}
		local_buf[j-i] = '\0';
		if (((j - i) == 0) || ((j - i) > 8)) {
			rc = -ENAMETOOLONG;
			goto seg_list_del;
		}

		rc = dcssblk_load_segment(local_buf, &seg_info);
		if (rc < 0)
			goto seg_list_del;
		/*
		 * get a struct dcssblk_dev_info
		 */
		if (num_of_segments == 0) {
			dev_info = kzalloc(sizeof(struct dcssblk_dev_info),
					GFP_KERNEL);
			if (dev_info == NULL) {
				rc = -ENOMEM;
				goto out;
			}
			strcpy(dev_info->segment_name, local_buf);
			dev_info->segment_type = seg_info->segment_type;
			INIT_LIST_HEAD(&dev_info->seg_list);
		}
		list_add_tail(&seg_info->lh, &dev_info->seg_list);
		num_of_segments++;
		i = j;

		if ((buf[j] == '\0') || (buf[j] == '\n'))
			break;
L
Linus Torvalds 已提交
583
	}
584 585 586

	/* no trailing colon at the end of the input */
	if ((i > 0) && (buf[i-1] == ':')) {
L
Linus Torvalds 已提交
587
		rc = -ENAMETOOLONG;
588
		goto seg_list_del;
L
Linus Torvalds 已提交
589
	}
590 591 592 593 594 595 596 597
	strlcpy(local_buf, buf, i + 1);
	dev_info->num_of_segments = num_of_segments;
	rc = dcssblk_is_continuous(dev_info);
	if (rc < 0)
		goto seg_list_del;

	dev_info->start = dcssblk_find_lowest_addr(dev_info);
	dev_info->end = dcssblk_find_highest_addr(dev_info);
L
Linus Torvalds 已提交
598

599
	dev_set_name(&dev_info->dev, dev_info->segment_name);
L
Linus Torvalds 已提交
600 601 602 603 604
	dev_info->dev.release = dcssblk_release_segment;
	INIT_LIST_HEAD(&dev_info->lh);
	dev_info->gd = alloc_disk(DCSSBLK_MINORS_PER_DISK);
	if (dev_info->gd == NULL) {
		rc = -ENOMEM;
605
		goto seg_list_del;
L
Linus Torvalds 已提交
606 607 608 609 610 611 612
	}
	dev_info->gd->major = dcssblk_major;
	dev_info->gd->fops = &dcssblk_devops;
	dev_info->dcssblk_queue = blk_alloc_queue(GFP_KERNEL);
	dev_info->gd->queue = dev_info->dcssblk_queue;
	dev_info->gd->private_data = dev_info;
	dev_info->gd->driverfs_dev = &dev_info->dev;
613 614
	blk_queue_make_request(dev_info->dcssblk_queue, dcssblk_make_request);
	blk_queue_hardsect_size(dev_info->dcssblk_queue, 4096);
615

L
Linus Torvalds 已提交
616 617
	seg_byte_size = (dev_info->end - dev_info->start + 1);
	set_capacity(dev_info->gd, seg_byte_size >> 9); // size in sectors
618
	PRINT_INFO("Loaded segment(s) %s, size = %lu Byte, "
L
Linus Torvalds 已提交
619 620 621 622 623 624 625 626
		   "capacity = %lu (512 Byte) sectors\n", local_buf,
		   seg_byte_size, seg_byte_size >> 9);

	dev_info->save_pending = 0;
	dev_info->is_shared = 1;
	dev_info->dev.parent = dcssblk_root_dev;

	/*
627
	 *get minor, add to list
L
Linus Torvalds 已提交
628 629
	 */
	down_write(&dcssblk_devices_sem);
630
	if (dcssblk_get_segment_by_name(local_buf)) {
631
		rc = -EEXIST;
632
		goto release_gd;
633
	}
L
Linus Torvalds 已提交
634
	rc = dcssblk_assign_free_minor(dev_info);
635 636
	if (rc)
		goto release_gd;
L
Linus Torvalds 已提交
637
	sprintf(dev_info->gd->disk_name, "dcssblk%d",
638
		MINOR(disk_devt(dev_info->gd)));
L
Linus Torvalds 已提交
639 640 641 642
	list_add_tail(&dev_info->lh, &dcssblk_devices);

	if (!try_module_get(THIS_MODULE)) {
		rc = -ENODEV;
643
		goto dev_list_del;
L
Linus Torvalds 已提交
644 645 646 647 648 649 650
	}
	/*
	 * register the device
	 */
	rc = device_register(&dev_info->dev);
	if (rc) {
		module_put(THIS_MODULE);
651
		goto dev_list_del;
L
Linus Torvalds 已提交
652 653 654 655 656 657
	}
	get_device(&dev_info->dev);
	rc = device_create_file(&dev_info->dev, &dev_attr_shared);
	if (rc)
		goto unregister_dev;
	rc = device_create_file(&dev_info->dev, &dev_attr_save);
658 659 660
	if (rc)
		goto unregister_dev;
	rc = device_create_file(&dev_info->dev, &dev_attr_seglist);
L
Linus Torvalds 已提交
661 662 663
	if (rc)
		goto unregister_dev;

664 665
	add_disk(dev_info->gd);

L
Linus Torvalds 已提交
666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681
	switch (dev_info->segment_type) {
		case SEG_TYPE_SR:
		case SEG_TYPE_ER:
		case SEG_TYPE_SC:
			set_disk_ro(dev_info->gd,1);
			break;
		default:
			set_disk_ro(dev_info->gd,0);
			break;
	}
	up_write(&dcssblk_devices_sem);
	rc = count;
	goto out;

unregister_dev:
	list_del(&dev_info->lh);
682
	blk_cleanup_queue(dev_info->dcssblk_queue);
L
Linus Torvalds 已提交
683 684 685
	dev_info->gd->queue = NULL;
	put_disk(dev_info->gd);
	device_unregister(&dev_info->dev);
686 687 688
	list_for_each_entry(seg_info, &dev_info->seg_list, lh) {
		segment_unload(seg_info->segment_name);
	}
L
Linus Torvalds 已提交
689 690 691
	put_device(&dev_info->dev);
	up_write(&dcssblk_devices_sem);
	goto out;
692
dev_list_del:
L
Linus Torvalds 已提交
693
	list_del(&dev_info->lh);
694
release_gd:
695
	blk_cleanup_queue(dev_info->dcssblk_queue);
L
Linus Torvalds 已提交
696 697
	dev_info->gd->queue = NULL;
	put_disk(dev_info->gd);
698 699 700 701 702 703 704 705 706
	up_write(&dcssblk_devices_sem);
seg_list_del:
	if (dev_info == NULL)
		goto out;
	list_for_each_entry_safe(seg_info, temp, &dev_info->seg_list, lh) {
		list_del(&seg_info->lh);
		segment_unload(seg_info->segment_name);
		kfree(seg_info);
	}
L
Linus Torvalds 已提交
707 708 709 710 711 712 713 714 715 716 717
	kfree(dev_info);
out:
	kfree(local_buf);
out_nobuf:
	return rc;
}

/*
 * device attribute for removing devices
 */
static ssize_t
718
dcssblk_remove_store(struct device *dev, struct device_attribute *attr, const char *buf, size_t count)
L
Linus Torvalds 已提交
719 720
{
	struct dcssblk_dev_info *dev_info;
721
	struct segment_info *entry;
L
Linus Torvalds 已提交
722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747
	int rc, i;
	char *local_buf;

	if (dev != dcssblk_root_dev) {
		return -EINVAL;
	}
	local_buf = kmalloc(count + 1, GFP_KERNEL);
	if (local_buf == NULL) {
		return -ENOMEM;
	}
	/*
	 * parse input
	 */
	for (i = 0; ((*(buf+i)!='\0') && (*(buf+i)!='\n') && i < count); i++) {
		local_buf[i] = toupper(buf[i]);
	}
	local_buf[i] = '\0';
	if ((i == 0) || (i > 8)) {
		rc = -ENAMETOOLONG;
		goto out_buf;
	}

	down_write(&dcssblk_devices_sem);
	dev_info = dcssblk_get_device_by_name(local_buf);
	if (dev_info == NULL) {
		up_write(&dcssblk_devices_sem);
748
		PRINT_WARN("Device %s is not loaded!\n", local_buf);
L
Linus Torvalds 已提交
749 750 751 752 753
		rc = -ENODEV;
		goto out_buf;
	}
	if (atomic_read(&dev_info->use_count) != 0) {
		up_write(&dcssblk_devices_sem);
754
		PRINT_WARN("Device %s is in use!\n", local_buf);
L
Linus Torvalds 已提交
755 756 757 758
		rc = -EBUSY;
		goto out_buf;
	}

759
	list_del(&dev_info->lh);
L
Linus Torvalds 已提交
760
	del_gendisk(dev_info->gd);
761
	blk_cleanup_queue(dev_info->dcssblk_queue);
L
Linus Torvalds 已提交
762 763 764
	dev_info->gd->queue = NULL;
	put_disk(dev_info->gd);
	device_unregister(&dev_info->dev);
765 766 767 768 769

	/* unload all related segments */
	list_for_each_entry(entry, &dev_info->seg_list, lh)
		segment_unload(entry->segment_name);

L
Linus Torvalds 已提交
770 771 772 773 774 775 776 777 778 779
	put_device(&dev_info->dev);
	up_write(&dcssblk_devices_sem);

	rc = count;
out_buf:
	kfree(local_buf);
	return rc;
}

static int
A
Al Viro 已提交
780
dcssblk_open(struct block_device *bdev, fmode_t mode)
L
Linus Torvalds 已提交
781 782 783 784
{
	struct dcssblk_dev_info *dev_info;
	int rc;

A
Al Viro 已提交
785
	dev_info = bdev->bd_disk->private_data;
L
Linus Torvalds 已提交
786 787 788 789 790
	if (NULL == dev_info) {
		rc = -ENODEV;
		goto out;
	}
	atomic_inc(&dev_info->use_count);
A
Al Viro 已提交
791
	bdev->bd_block_size = 4096;
L
Linus Torvalds 已提交
792 793 794 795 796 797
	rc = 0;
out:
	return rc;
}

static int
A
Al Viro 已提交
798
dcssblk_release(struct gendisk *disk, fmode_t mode)
L
Linus Torvalds 已提交
799
{
A
Al Viro 已提交
800
	struct dcssblk_dev_info *dev_info = disk->private_data;
801
	struct segment_info *entry;
L
Linus Torvalds 已提交
802 803
	int rc;

A
Al Viro 已提交
804
	if (!dev_info) {
L
Linus Torvalds 已提交
805 806 807 808 809 810
		rc = -ENODEV;
		goto out;
	}
	down_write(&dcssblk_devices_sem);
	if (atomic_dec_and_test(&dev_info->use_count)
	    && (dev_info->save_pending)) {
811
		PRINT_INFO("Device %s became idle and is being saved now\n",
L
Linus Torvalds 已提交
812
			    dev_info->segment_name);
813 814 815
		list_for_each_entry(entry, &dev_info->seg_list, lh) {
			segment_save(entry->segment_name);
		}
L
Linus Torvalds 已提交
816 817 818 819 820 821 822 823 824
		dev_info->save_pending = 0;
	}
	up_write(&dcssblk_devices_sem);
	rc = 0;
out:
	return rc;
}

static int
825
dcssblk_make_request(struct request_queue *q, struct bio *bio)
L
Linus Torvalds 已提交
826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846
{
	struct dcssblk_dev_info *dev_info;
	struct bio_vec *bvec;
	unsigned long index;
	unsigned long page_addr;
	unsigned long source_addr;
	unsigned long bytes_done;
	int i;

	bytes_done = 0;
	dev_info = bio->bi_bdev->bd_disk->private_data;
	if (dev_info == NULL)
		goto fail;
	if ((bio->bi_sector & 7) != 0 || (bio->bi_size & 4095) != 0)
		/* Request is not page-aligned. */
		goto fail;
	if (((bio->bi_size >> 9) + bio->bi_sector)
			> get_capacity(bio->bi_bdev->bd_disk)) {
		/* Request beyond end of DCSS segment. */
		goto fail;
	}
847 848 849 850 851 852 853 854
	/* verify data transfer direction */
	if (dev_info->is_shared) {
		switch (dev_info->segment_type) {
		case SEG_TYPE_SR:
		case SEG_TYPE_ER:
		case SEG_TYPE_SC:
			/* cannot write to these segments */
			if (bio_data_dir(bio) == WRITE) {
855
				PRINT_WARN("rejecting write to ro device %s\n",
856
					   dev_name(&dev_info->dev));
857 858 859 860 861
				goto fail;
			}
		}
	}

L
Linus Torvalds 已提交
862 863 864 865 866
	index = (bio->bi_sector >> 3);
	bio_for_each_segment(bvec, bio, i) {
		page_addr = (unsigned long)
			page_address(bvec->bv_page) + bvec->bv_offset;
		source_addr = dev_info->start + (index<<12) + bytes_done;
R
Roel Kluin 已提交
867
		if (unlikely((page_addr & 4095) != 0) || (bvec->bv_len & 4095) != 0)
L
Linus Torvalds 已提交
868 869 870 871 872 873 874 875 876 877 878
			// More paranoia.
			goto fail;
		if (bio_data_dir(bio) == READ) {
			memcpy((void*)page_addr, (void*)source_addr,
				bvec->bv_len);
		} else {
			memcpy((void*)source_addr, (void*)page_addr,
				bvec->bv_len);
		}
		bytes_done += bvec->bv_len;
	}
879
	bio_endio(bio, 0);
L
Linus Torvalds 已提交
880 881
	return 0;
fail:
882
	bio_io_error(bio);
883 884 885 886 887
	return 0;
}

static int
dcssblk_direct_access (struct block_device *bdev, sector_t secnum,
888
			void **kaddr, unsigned long *pfn)
889 890 891 892 893 894 895 896 897 898 899 900
{
	struct dcssblk_dev_info *dev_info;
	unsigned long pgoff;

	dev_info = bdev->bd_disk->private_data;
	if (!dev_info)
		return -ENODEV;
	if (secnum % (PAGE_SIZE/512))
		return -EINVAL;
	pgoff = secnum / (PAGE_SIZE / 512);
	if ((pgoff+1)*PAGE_SIZE-1 > dev_info->end - dev_info->start)
		return -ERANGE;
901 902 903
	*kaddr = (void *) (dev_info->start+pgoff*PAGE_SIZE);
	*pfn = virt_to_phys(*kaddr) >> PAGE_SHIFT;

L
Linus Torvalds 已提交
904 905 906 907 908 909 910
	return 0;
}

static void
dcssblk_check_params(void)
{
	int rc, i, j, k;
911
	char buf[DCSSBLK_PARM_LEN + 1];
L
Linus Torvalds 已提交
912 913 914 915 916 917 918
	struct dcssblk_dev_info *dev_info;

	for (i = 0; (i < DCSSBLK_PARM_LEN) && (dcssblk_segments[i] != '\0');
	     i++) {
		for (j = i; (dcssblk_segments[j] != ',')  &&
			    (dcssblk_segments[j] != '\0') &&
			    (dcssblk_segments[j] != '(')  &&
919
			    (j < DCSSBLK_PARM_LEN); j++)
L
Linus Torvalds 已提交
920 921 922 923
		{
			buf[j-i] = dcssblk_segments[j];
		}
		buf[j-i] = '\0';
924
		rc = dcssblk_add_store(dcssblk_root_dev, NULL, buf, j-i);
L
Linus Torvalds 已提交
925
		if ((rc >= 0) && (dcssblk_segments[j] == '(')) {
926
			for (k = 0; (buf[k] != ':') && (buf[k] != '\0'); k++)
L
Linus Torvalds 已提交
927
				buf[k] = toupper(buf[k]);
928
			buf[k] = '\0';
L
Linus Torvalds 已提交
929 930 931 932 933 934
			if (!strncmp(&dcssblk_segments[j], "(local)", 7)) {
				down_read(&dcssblk_devices_sem);
				dev_info = dcssblk_get_device_by_name(buf);
				up_read(&dcssblk_devices_sem);
				if (dev_info)
					dcssblk_shared_store(&dev_info->dev,
935
							     NULL, "0\n", 2);
L
Linus Torvalds 已提交
936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955
			}
		}
		while ((dcssblk_segments[j] != ',') &&
		       (dcssblk_segments[j] != '\0'))
		{
			j++;
		}
		if (dcssblk_segments[j] == '\0')
			break;
		i = j;
	}
}

/*
 * The init/exit functions.
 */
static void __exit
dcssblk_exit(void)
{
	s390_root_dev_unregister(dcssblk_root_dev);
956
	unregister_blkdev(dcssblk_major, DCSSBLK_NAME);
L
Linus Torvalds 已提交
957 958 959 960 961 962 963 964
}

static int __init
dcssblk_init(void)
{
	int rc;

	dcssblk_root_dev = s390_root_dev_register("dcssblk");
965
	if (IS_ERR(dcssblk_root_dev))
L
Linus Torvalds 已提交
966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994
		return PTR_ERR(dcssblk_root_dev);
	rc = device_create_file(dcssblk_root_dev, &dev_attr_add);
	if (rc) {
		s390_root_dev_unregister(dcssblk_root_dev);
		return rc;
	}
	rc = device_create_file(dcssblk_root_dev, &dev_attr_remove);
	if (rc) {
		s390_root_dev_unregister(dcssblk_root_dev);
		return rc;
	}
	rc = register_blkdev(0, DCSSBLK_NAME);
	if (rc < 0) {
		s390_root_dev_unregister(dcssblk_root_dev);
		return rc;
	}
	dcssblk_major = rc;
	init_rwsem(&dcssblk_devices_sem);

	dcssblk_check_params();

	return 0;
}

module_init(dcssblk_init);
module_exit(dcssblk_exit);

module_param_string(segments, dcssblk_segments, DCSSBLK_PARM_LEN, 0444);
MODULE_PARM_DESC(segments, "Name of DCSS segment(s) to be loaded, "
995 996 997 998 999 1000 1001
		 "comma-separated list, names in each set separated "
		 "by commas are separated by colons, each set contains "
		 "names of contiguous segments and each name max. 8 chars.\n"
		 "Adding \"(local)\" to the end of each set equals echoing 0 "
		 "to /sys/devices/dcssblk/<device name>/shared after loading "
		 "the contiguous segments - \n"
		 "e.g. segments=\"mydcss1,mydcss2:mydcss3,mydcss4(local)\"");
L
Linus Torvalds 已提交
1002 1003

MODULE_LICENSE("GPL");