xenbus.c 27.9 KB
Newer Older
K
Konrad Rzeszutek Wilk 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
/*  Xenbus code for blkif backend
    Copyright (C) 2005 Rusty Russell <rusty@rustcorp.com.au>
    Copyright (C) 2005 XenSource Ltd

    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.

*/

17 18
#define pr_fmt(fmt) "xen-blkback: " fmt

K
Konrad Rzeszutek Wilk 已提交
19 20 21
#include <stdarg.h>
#include <linux/module.h>
#include <linux/kthread.h>
22 23
#include <xen/events.h>
#include <xen/grant_table.h>
K
Konrad Rzeszutek Wilk 已提交
24 25
#include "common.h"

26
/* On the XenBus the max length of 'ring-ref%u'. */
B
Bob Liu 已提交
27
#define RINGREF_NAME_LEN (20)
28

29
struct backend_info {
30
	struct xenbus_device	*dev;
31
	struct xen_blkif	*blkif;
32 33 34 35
	struct xenbus_watch	backend_watch;
	unsigned		major;
	unsigned		minor;
	char			*mode;
K
Konrad Rzeszutek Wilk 已提交
36 37
};

38
static struct kmem_cache *xen_blkif_cachep;
K
Konrad Rzeszutek Wilk 已提交
39 40 41 42
static void connect(struct backend_info *);
static int connect_ring(struct backend_info *);
static void backend_changed(struct xenbus_watch *, const char **,
			    unsigned int);
43 44
static void xen_blkif_free(struct xen_blkif *blkif);
static void xen_vbd_free(struct xen_vbd *vbd);
K
Konrad Rzeszutek Wilk 已提交
45

46
struct xenbus_device *xen_blkbk_xenbus(struct backend_info *be)
47 48 49 50
{
	return be->dev;
}

51 52 53 54 55 56 57 58 59 60 61 62
/*
 * The last request could free the device from softirq context and
 * xen_blkif_free() can sleep.
 */
static void xen_blkif_deferred_free(struct work_struct *work)
{
	struct xen_blkif *blkif;

	blkif = container_of(work, struct xen_blkif, free_work);
	xen_blkif_free(blkif);
}

63
static int blkback_name(struct xen_blkif *blkif, char *buf)
K
Konrad Rzeszutek Wilk 已提交
64 65 66 67 68 69 70 71
{
	char *devpath, *devname;
	struct xenbus_device *dev = blkif->be->dev;

	devpath = xenbus_read(XBT_NIL, dev->nodename, "dev", NULL);
	if (IS_ERR(devpath))
		return PTR_ERR(devpath);

72 73
	devname = strstr(devpath, "/dev/");
	if (devname != NULL)
K
Konrad Rzeszutek Wilk 已提交
74 75 76 77
		devname += strlen("/dev/");
	else
		devname  = devpath;

78
	snprintf(buf, TASK_COMM_LEN, "%d.%s", blkif->domid, devname);
K
Konrad Rzeszutek Wilk 已提交
79 80 81 82 83
	kfree(devpath);

	return 0;
}

84
static void xen_update_blkif_status(struct xen_blkif *blkif)
K
Konrad Rzeszutek Wilk 已提交
85 86
{
	int err;
87
	char name[TASK_COMM_LEN];
88 89
	struct xen_blkif_ring *ring;
	int i;
K
Konrad Rzeszutek Wilk 已提交
90 91

	/* Not ready to connect? */
92
	if (!blkif->rings || !blkif->rings[0].irq || !blkif->vbd.bdev)
K
Konrad Rzeszutek Wilk 已提交
93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109
		return;

	/* Already connected? */
	if (blkif->be->dev->state == XenbusStateConnected)
		return;

	/* Attempt to connect: exit if we fail to. */
	connect(blkif->be);
	if (blkif->be->dev->state != XenbusStateConnected)
		return;

	err = blkback_name(blkif, name);
	if (err) {
		xenbus_dev_error(blkif->be->dev, err, "get blkback dev name");
		return;
	}

110 111 112 113 114 115 116
	err = filemap_write_and_wait(blkif->vbd.bdev->bd_inode->i_mapping);
	if (err) {
		xenbus_dev_error(blkif->be->dev, err, "block flush");
		return;
	}
	invalidate_inode_pages2(blkif->vbd.bdev->bd_inode->i_mapping);

117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133
	for (i = 0; i < blkif->nr_rings; i++) {
		ring = &blkif->rings[i];
		ring->xenblkd = kthread_run(xen_blkif_schedule, ring, "%s-%d", name, i);
		if (IS_ERR(ring->xenblkd)) {
			err = PTR_ERR(ring->xenblkd);
			ring->xenblkd = NULL;
			xenbus_dev_fatal(blkif->be->dev, err,
					"start %s-%d xenblkd", name, i);
			goto out;
		}
	}
	return;

out:
	while (--i >= 0) {
		ring = &blkif->rings[i];
		kthread_stop(ring->xenblkd);
K
Konrad Rzeszutek Wilk 已提交
134
	}
135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151
	return;
}

static int xen_blkif_alloc_rings(struct xen_blkif *blkif)
{
	unsigned int r;

	blkif->rings = kzalloc(blkif->nr_rings * sizeof(struct xen_blkif_ring), GFP_KERNEL);
	if (!blkif->rings)
		return -ENOMEM;

	for (r = 0; r < blkif->nr_rings; r++) {
		struct xen_blkif_ring *ring = &blkif->rings[r];

		spin_lock_init(&ring->blk_ring_lock);
		init_waitqueue_head(&ring->wq);
		INIT_LIST_HEAD(&ring->pending_free);
152 153 154 155
		INIT_LIST_HEAD(&ring->persistent_purge_list);
		INIT_WORK(&ring->persistent_purge_work, xen_blkbk_unmap_purged_grants);
		spin_lock_init(&ring->free_pages_lock);
		INIT_LIST_HEAD(&ring->free_pages);
156 157 158 159 160

		spin_lock_init(&ring->pending_free_lock);
		init_waitqueue_head(&ring->pending_free_wq);
		init_waitqueue_head(&ring->shutdown_wq);
		ring->blkif = blkif;
161
		ring->st_print = jiffies;
162 163 164 165
		xen_blkif_get(blkif);
	}

	return 0;
K
Konrad Rzeszutek Wilk 已提交
166 167
}

168
static struct xen_blkif *xen_blkif_alloc(domid_t domid)
169
{
170
	struct xen_blkif *blkif;
171

172
	BUILD_BUG_ON(MAX_INDIRECT_PAGES > BLKIF_MAX_INDIRECT_PAGES_PER_REQUEST);
173

174
	blkif = kmem_cache_zalloc(xen_blkif_cachep, GFP_KERNEL);
175 176 177 178 179
	if (!blkif)
		return ERR_PTR(-ENOMEM);

	blkif->domid = domid;
	atomic_set(&blkif->refcnt, 1);
180
	init_completion(&blkif->drain_complete);
181
	INIT_WORK(&blkif->free_work, xen_blkif_deferred_free);
182 183 184 185

	return blkif;
}

186
static int xen_blkif_map(struct xen_blkif_ring *ring, grant_ref_t *gref,
B
Bob Liu 已提交
187
			 unsigned int nr_grefs, unsigned int evtchn)
188 189
{
	int err;
190
	struct xen_blkif *blkif = ring->blkif;
191 192

	/* Already connected through? */
193
	if (ring->irq)
194 195
		return 0;

B
Bob Liu 已提交
196
	err = xenbus_map_ring_valloc(blkif->be->dev, gref, nr_grefs,
197
				     &ring->blk_ring);
198
	if (err < 0)
199 200 201 202 203 204
		return err;

	switch (blkif->blk_protocol) {
	case BLKIF_PROTOCOL_NATIVE:
	{
		struct blkif_sring *sring;
205 206
		sring = (struct blkif_sring *)ring->blk_ring;
		BACK_RING_INIT(&ring->blk_rings.native, sring,
207
			       XEN_PAGE_SIZE * nr_grefs);
208 209 210 211 212
		break;
	}
	case BLKIF_PROTOCOL_X86_32:
	{
		struct blkif_x86_32_sring *sring_x86_32;
213 214
		sring_x86_32 = (struct blkif_x86_32_sring *)ring->blk_ring;
		BACK_RING_INIT(&ring->blk_rings.x86_32, sring_x86_32,
215
			       XEN_PAGE_SIZE * nr_grefs);
216 217 218 219 220
		break;
	}
	case BLKIF_PROTOCOL_X86_64:
	{
		struct blkif_x86_64_sring *sring_x86_64;
221 222
		sring_x86_64 = (struct blkif_x86_64_sring *)ring->blk_ring;
		BACK_RING_INIT(&ring->blk_rings.x86_64, sring_x86_64,
223
			       XEN_PAGE_SIZE * nr_grefs);
224 225 226 227 228 229
		break;
	}
	default:
		BUG();
	}

230 231
	err = bind_interdomain_evtchn_to_irqhandler(blkif->domid, evtchn,
						    xen_blkif_be_int, 0,
232
						    "blkif-backend", ring);
233
	if (err < 0) {
234 235
		xenbus_unmap_ring_vfree(blkif->be->dev, ring->blk_ring);
		ring->blk_rings.common.sring = NULL;
236 237
		return err;
	}
238
	ring->irq = err;
239 240 241 242

	return 0;
}

243
static int xen_blkif_disconnect(struct xen_blkif *blkif)
244
{
245
	struct pending_req *req, *n;
246
	unsigned int j, r;
247

248 249 250
	for (r = 0; r < blkif->nr_rings; r++) {
		struct xen_blkif_ring *ring = &blkif->rings[r];
		unsigned int i = 0;
251

252 253 254 255 256
		if (ring->xenblkd) {
			kthread_stop(ring->xenblkd);
			wake_up(&ring->shutdown_wq);
			ring->xenblkd = NULL;
		}
257

258 259 260 261 262 263
		/* The above kthread_stop() guarantees that at this point we
		 * don't have any discard_io or other_io requests. So, checking
		 * for inflight IO is enough.
		 */
		if (atomic_read(&ring->inflight) > 0)
			return -EBUSY;
264

265 266 267 268
		if (ring->irq) {
			unbind_from_irqhandler(ring->irq, ring);
			ring->irq = 0;
		}
269

270 271 272 273
		if (ring->blk_rings.common.sring) {
			xenbus_unmap_ring_vfree(blkif->be->dev, ring->blk_ring);
			ring->blk_rings.common.sring = NULL;
		}
274

275 276
		/* Remove all persistent grants and the cache of ballooned pages. */
		xen_blkbk_free_caches(ring);
277

278 279 280
		/* Check that there is no request in use */
		list_for_each_entry_safe(req, n, &ring->pending_free, free_list) {
			list_del(&req->free_list);
281

282 283
			for (j = 0; j < MAX_INDIRECT_SEGMENTS; j++)
				kfree(req->segments[j]);
284

285 286
			for (j = 0; j < MAX_INDIRECT_PAGES; j++)
				kfree(req->indirect_pages[j]);
287

288 289 290 291
			kfree(req);
			i++;
		}

292 293 294 295 296 297
		BUG_ON(atomic_read(&ring->persistent_gnt_in_use) != 0);
		BUG_ON(!list_empty(&ring->persistent_purge_list));
		BUG_ON(!RB_EMPTY_ROOT(&ring->persistent_gnts));
		BUG_ON(!list_empty(&ring->free_pages));
		BUG_ON(ring->free_pages_num != 0);
		BUG_ON(ring->persistent_gnt_c != 0);
298
		WARN_ON(i != (XEN_BLKIF_REQS_PER_PAGE * blkif->nr_ring_pages));
B
Bob Liu 已提交
299
		xen_blkif_put(blkif);
300
	}
301
	blkif->nr_ring_pages = 0;
B
Bob Liu 已提交
302 303 304 305 306 307 308
	/*
	 * blkif->rings was allocated in connect_ring, so we should free it in
	 * here.
	 */
	kfree(blkif->rings);
	blkif->rings = NULL;
	blkif->nr_rings = 0;
309

310
	return 0;
311 312
}

313
static void xen_blkif_free(struct xen_blkif *blkif)
314
{
315

316 317
	xen_blkif_disconnect(blkif);
	xen_vbd_free(&blkif->vbd);
318

R
Roger Pau Monne 已提交
319
	/* Make sure everything is drained before shutting down */
320
	kmem_cache_free(xen_blkif_cachep, blkif);
321 322
}

323
int __init xen_blkif_interface_init(void)
324
{
325
	xen_blkif_cachep = kmem_cache_create("blkif_cache",
326
					     sizeof(struct xen_blkif),
327 328
					     0, 0, NULL);
	if (!xen_blkif_cachep)
329 330 331 332
		return -ENOMEM;

	return 0;
}
K
Konrad Rzeszutek Wilk 已提交
333

334
/*
K
Konrad Rzeszutek Wilk 已提交
335 336 337
 *  sysfs interface for VBD I/O requests
 */

338
#define VBD_SHOW_ALLRING(name, format)					\
K
Konrad Rzeszutek Wilk 已提交
339 340 341 342 343
	static ssize_t show_##name(struct device *_dev,			\
				   struct device_attribute *attr,	\
				   char *buf)				\
	{								\
		struct xenbus_device *dev = to_xenbus_device(_dev);	\
344
		struct backend_info *be = dev_get_drvdata(&dev->dev);	\
345 346 347
		struct xen_blkif *blkif = be->blkif;			\
		unsigned int i;						\
		unsigned long long result = 0;				\
K
Konrad Rzeszutek Wilk 已提交
348
									\
349 350 351 352 353 354 355 356 357 358 359
		if (!blkif->rings)				\
			goto out;					\
									\
		for (i = 0; i < blkif->nr_rings; i++) {		\
			struct xen_blkif_ring *ring = &blkif->rings[i];	\
									\
			result += ring->st_##name;			\
		}							\
									\
out:									\
		return sprintf(buf, format, result);			\
K
Konrad Rzeszutek Wilk 已提交
360 361 362
	}								\
	static DEVICE_ATTR(name, S_IRUGO, show_##name, NULL)

363 364 365 366 367 368 369
VBD_SHOW_ALLRING(oo_req,  "%llu\n");
VBD_SHOW_ALLRING(rd_req,  "%llu\n");
VBD_SHOW_ALLRING(wr_req,  "%llu\n");
VBD_SHOW_ALLRING(f_req,  "%llu\n");
VBD_SHOW_ALLRING(ds_req,  "%llu\n");
VBD_SHOW_ALLRING(rd_sect, "%llu\n");
VBD_SHOW_ALLRING(wr_sect, "%llu\n");
K
Konrad Rzeszutek Wilk 已提交
370

371
static struct attribute *xen_vbdstat_attrs[] = {
K
Konrad Rzeszutek Wilk 已提交
372 373 374
	&dev_attr_oo_req.attr,
	&dev_attr_rd_req.attr,
	&dev_attr_wr_req.attr,
375
	&dev_attr_f_req.attr,
376
	&dev_attr_ds_req.attr,
K
Konrad Rzeszutek Wilk 已提交
377 378 379 380 381
	&dev_attr_rd_sect.attr,
	&dev_attr_wr_sect.attr,
	NULL
};

382
static struct attribute_group xen_vbdstat_group = {
K
Konrad Rzeszutek Wilk 已提交
383
	.name = "statistics",
384
	.attrs = xen_vbdstat_attrs,
K
Konrad Rzeszutek Wilk 已提交
385 386
};

387 388 389 390 391 392 393 394 395 396 397 398
#define VBD_SHOW(name, format, args...)					\
	static ssize_t show_##name(struct device *_dev,			\
				   struct device_attribute *attr,	\
				   char *buf)				\
	{								\
		struct xenbus_device *dev = to_xenbus_device(_dev);	\
		struct backend_info *be = dev_get_drvdata(&dev->dev);	\
									\
		return sprintf(buf, format, ##args);			\
	}								\
	static DEVICE_ATTR(name, S_IRUGO, show_##name, NULL)

K
Konrad Rzeszutek Wilk 已提交
399 400 401
VBD_SHOW(physical_device, "%x:%x\n", be->major, be->minor);
VBD_SHOW(mode, "%s\n", be->mode);

402
static int xenvbd_sysfs_addif(struct xenbus_device *dev)
K
Konrad Rzeszutek Wilk 已提交
403 404 405 406
{
	int error;

	error = device_create_file(&dev->dev, &dev_attr_physical_device);
407
	if (error)
K
Konrad Rzeszutek Wilk 已提交
408 409 410 411 412 413
		goto fail1;

	error = device_create_file(&dev->dev, &dev_attr_mode);
	if (error)
		goto fail2;

414
	error = sysfs_create_group(&dev->dev.kobj, &xen_vbdstat_group);
K
Konrad Rzeszutek Wilk 已提交
415 416 417 418 419
	if (error)
		goto fail3;

	return 0;

420
fail3:	sysfs_remove_group(&dev->dev.kobj, &xen_vbdstat_group);
K
Konrad Rzeszutek Wilk 已提交
421 422 423 424 425
fail2:	device_remove_file(&dev->dev, &dev_attr_mode);
fail1:	device_remove_file(&dev->dev, &dev_attr_physical_device);
	return error;
}

426
static void xenvbd_sysfs_delif(struct xenbus_device *dev)
K
Konrad Rzeszutek Wilk 已提交
427
{
428
	sysfs_remove_group(&dev->dev.kobj, &xen_vbdstat_group);
K
Konrad Rzeszutek Wilk 已提交
429 430 431 432
	device_remove_file(&dev->dev, &dev_attr_mode);
	device_remove_file(&dev->dev, &dev_attr_physical_device);
}

433

434
static void xen_vbd_free(struct xen_vbd *vbd)
435 436 437 438 439 440
{
	if (vbd->bdev)
		blkdev_put(vbd->bdev, vbd->readonly ? FMODE_READ : FMODE_WRITE);
	vbd->bdev = NULL;
}

441 442 443
static int xen_vbd_create(struct xen_blkif *blkif, blkif_vdev_t handle,
			  unsigned major, unsigned minor, int readonly,
			  int cdrom)
444
{
445
	struct xen_vbd *vbd;
446
	struct block_device *bdev;
447
	struct request_queue *q;
448 449 450 451 452 453 454 455 456 457 458 459

	vbd = &blkif->vbd;
	vbd->handle   = handle;
	vbd->readonly = readonly;
	vbd->type     = 0;

	vbd->pdevice  = MKDEV(major, minor);

	bdev = blkdev_get_by_dev(vbd->pdevice, vbd->readonly ?
				 FMODE_READ : FMODE_WRITE, NULL);

	if (IS_ERR(bdev)) {
460
		pr_warn("xen_vbd_create: device %08x could not be opened\n",
461 462 463 464 465 466
			vbd->pdevice);
		return -ENOENT;
	}

	vbd->bdev = bdev;
	if (vbd->bdev->bd_disk == NULL) {
467
		pr_warn("xen_vbd_create: device %08x doesn't exist\n",
468
			vbd->pdevice);
469
		xen_vbd_free(vbd);
470 471
		return -ENOENT;
	}
472
	vbd->size = vbd_sz(vbd);
473 474 475 476 477 478

	if (vbd->bdev->bd_disk->flags & GENHD_FL_CD || cdrom)
		vbd->type |= VDISK_CDROM;
	if (vbd->bdev->bd_disk->flags & GENHD_FL_REMOVABLE)
		vbd->type |= VDISK_REMOVABLE;

479
	q = bdev_get_queue(bdev);
J
Jens Axboe 已提交
480
	if (q && test_bit(QUEUE_FLAG_WC, &q->queue_flags))
481 482
		vbd->flush_support = true;

483 484 485
	if (q && blk_queue_secdiscard(q))
		vbd->discard_secure = true;

486
	pr_debug("Successful creation of handle=%04x (dom=%u)\n",
487 488 489
		handle, blkif->domid);
	return 0;
}
490
static int xen_blkbk_remove(struct xenbus_device *dev)
K
Konrad Rzeszutek Wilk 已提交
491
{
492
	struct backend_info *be = dev_get_drvdata(&dev->dev);
K
Konrad Rzeszutek Wilk 已提交
493

494
	pr_debug("%s %p %d\n", __func__, dev, dev->otherend_id);
K
Konrad Rzeszutek Wilk 已提交
495 496 497 498 499 500 501 502 503 504

	if (be->major || be->minor)
		xenvbd_sysfs_delif(dev);

	if (be->backend_watch.node) {
		unregister_xenbus_watch(&be->backend_watch);
		kfree(be->backend_watch.node);
		be->backend_watch.node = NULL;
	}

505 506
	dev_set_drvdata(&dev->dev, NULL);

B
Bob Liu 已提交
507
	if (be->blkif)
508
		xen_blkif_disconnect(be->blkif);
K
Konrad Rzeszutek Wilk 已提交
509

B
Bob Liu 已提交
510 511
	/* Put the reference we set in xen_blkif_alloc(). */
	xen_blkif_put(be->blkif);
512
	kfree(be->mode);
K
Konrad Rzeszutek Wilk 已提交
513 514 515 516
	kfree(be);
	return 0;
}

517 518
int xen_blkbk_flush_diskcache(struct xenbus_transaction xbt,
			      struct backend_info *be, int state)
K
Konrad Rzeszutek Wilk 已提交
519 520 521 522
{
	struct xenbus_device *dev = be->dev;
	int err;

523
	err = xenbus_printf(xbt, dev->nodename, "feature-flush-cache",
K
Konrad Rzeszutek Wilk 已提交
524 525
			    "%d", state);
	if (err)
526
		dev_warn(&dev->dev, "writing feature-flush-cache (%d)", err);
K
Konrad Rzeszutek Wilk 已提交
527 528 529 530

	return err;
}

531
static void xen_blkbk_discard(struct xenbus_transaction xbt, struct backend_info *be)
532 533 534 535
{
	struct xenbus_device *dev = be->dev;
	struct xen_blkif *blkif = be->blkif;
	int err;
536
	int state = 0, discard_enable;
537 538 539
	struct block_device *bdev = be->blkif->vbd.bdev;
	struct request_queue *q = bdev_get_queue(bdev);

540 541 542 543 544
	err = xenbus_scanf(XBT_NIL, dev->nodename, "discard-enable", "%d",
			   &discard_enable);
	if (err == 1 && !discard_enable)
		return;

545 546 547 548 549
	if (blk_queue_discard(q)) {
		err = xenbus_printf(xbt, dev->nodename,
			"discard-granularity", "%u",
			q->limits.discard_granularity);
		if (err) {
550 551
			dev_warn(&dev->dev, "writing discard-granularity (%d)", err);
			return;
552 553 554 555 556
		}
		err = xenbus_printf(xbt, dev->nodename,
			"discard-alignment", "%u",
			q->limits.discard_alignment);
		if (err) {
557 558
			dev_warn(&dev->dev, "writing discard-alignment (%d)", err);
			return;
559
		}
560 561 562 563 564 565
		state = 1;
		/* Optional. */
		err = xenbus_printf(xbt, dev->nodename,
				    "discard-secure", "%d",
				    blkif->vbd.discard_secure);
		if (err) {
566
			dev_warn(&dev->dev, "writing discard-secure (%d)", err);
567
			return;
568 569 570 571 572
		}
	}
	err = xenbus_printf(xbt, dev->nodename, "feature-discard",
			    "%d", state);
	if (err)
573
		dev_warn(&dev->dev, "writing feature-discard (%d)", err);
574
}
575 576 577 578 579 580 581 582 583
int xen_blkbk_barrier(struct xenbus_transaction xbt,
		      struct backend_info *be, int state)
{
	struct xenbus_device *dev = be->dev;
	int err;

	err = xenbus_printf(xbt, dev->nodename, "feature-barrier",
			    "%d", state);
	if (err)
584
		dev_warn(&dev->dev, "writing feature-barrier (%d)", err);
585 586 587

	return err;
}
588

589
/*
K
Konrad Rzeszutek Wilk 已提交
590 591 592 593
 * Entry point to this code when a new device is created.  Allocate the basic
 * structures, and watch the store waiting for the hotplug scripts to tell us
 * the device's physical major and minor numbers.  Switch to InitWait.
 */
594 595
static int xen_blkbk_probe(struct xenbus_device *dev,
			   const struct xenbus_device_id *id)
K
Konrad Rzeszutek Wilk 已提交
596 597 598 599
{
	int err;
	struct backend_info *be = kzalloc(sizeof(struct backend_info),
					  GFP_KERNEL);
600 601 602 603

	/* match the pr_debug in xen_blkbk_remove */
	pr_debug("%s %p %d\n", __func__, dev, dev->otherend_id);

K
Konrad Rzeszutek Wilk 已提交
604 605 606 607 608 609
	if (!be) {
		xenbus_dev_fatal(dev, -ENOMEM,
				 "allocating backend structure");
		return -ENOMEM;
	}
	be->dev = dev;
610
	dev_set_drvdata(&dev->dev, be);
K
Konrad Rzeszutek Wilk 已提交
611

612
	be->blkif = xen_blkif_alloc(dev->otherend_id);
K
Konrad Rzeszutek Wilk 已提交
613 614 615 616 617 618 619
	if (IS_ERR(be->blkif)) {
		err = PTR_ERR(be->blkif);
		be->blkif = NULL;
		xenbus_dev_fatal(dev, err, "creating block interface");
		goto fail;
	}

620 621 622 623 624 625 626 627
	err = xenbus_printf(XBT_NIL, dev->nodename,
			    "feature-max-indirect-segments", "%u",
			    MAX_INDIRECT_SEGMENTS);
	if (err)
		dev_warn(&dev->dev,
			 "writing %s/feature-max-indirect-segments (%d)",
			 dev->nodename, err);

628 629 630 631 632 633
	/* Multi-queue: advertise how many queues are supported by us.*/
	err = xenbus_printf(XBT_NIL, dev->nodename,
			    "multi-queue-max-queues", "%u", xenblk_max_queues);
	if (err)
		pr_warn("Error writing multi-queue-max-queues\n");

K
Konrad Rzeszutek Wilk 已提交
634 635 636
	/* setup back pointer */
	be->blkif->be = be;

J
Jeremy Fitzhardinge 已提交
637 638
	err = xenbus_watch_pathfmt(dev, &be->backend_watch, backend_changed,
				   "%s/%s", dev->nodename, "physical-device");
K
Konrad Rzeszutek Wilk 已提交
639 640 641
	if (err)
		goto fail;

B
Bob Liu 已提交
642 643 644 645 646
	err = xenbus_printf(XBT_NIL, dev->nodename, "max-ring-page-order", "%u",
			    xen_blkif_max_ring_order);
	if (err)
		pr_warn("%s write out 'max-ring-page-order' failed\n", __func__);

K
Konrad Rzeszutek Wilk 已提交
647 648 649 650 651 652 653
	err = xenbus_switch_state(dev, XenbusStateInitWait);
	if (err)
		goto fail;

	return 0;

fail:
654
	pr_warn("%s failed\n", __func__);
655
	xen_blkbk_remove(dev);
K
Konrad Rzeszutek Wilk 已提交
656 657 658 659
	return err;
}


660
/*
K
Konrad Rzeszutek Wilk 已提交
661 662 663 664 665 666 667 668 669 670 671 672 673 674
 * Callback received when the hotplug scripts have placed the physical-device
 * node.  Read it and the mode node, and create a vbd.  If the frontend is
 * ready, connect.
 */
static void backend_changed(struct xenbus_watch *watch,
			    const char **vec, unsigned int len)
{
	int err;
	unsigned major;
	unsigned minor;
	struct backend_info *be
		= container_of(watch, struct backend_info, backend_watch);
	struct xenbus_device *dev = be->dev;
	int cdrom = 0;
675
	unsigned long handle;
K
Konrad Rzeszutek Wilk 已提交
676 677
	char *device_type;

678
	pr_debug("%s %p %d\n", __func__, dev, dev->otherend_id);
K
Konrad Rzeszutek Wilk 已提交
679 680 681 682

	err = xenbus_scanf(XBT_NIL, dev->nodename, "physical-device", "%x:%x",
			   &major, &minor);
	if (XENBUS_EXIST_ERR(err)) {
683 684 685 686 687
		/*
		 * Since this watch will fire once immediately after it is
		 * registered, we expect this.  Ignore it, and wait for the
		 * hotplug scripts.
		 */
K
Konrad Rzeszutek Wilk 已提交
688 689 690 691 692 693 694
		return;
	}
	if (err != 2) {
		xenbus_dev_fatal(dev, err, "reading physical-device");
		return;
	}

695 696
	if (be->major | be->minor) {
		if (be->major != major || be->minor != minor)
697
			pr_warn("changing physical device (from %x:%x to %x:%x) not supported.\n",
698
				be->major, be->minor, major, minor);
K
Konrad Rzeszutek Wilk 已提交
699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715
		return;
	}

	be->mode = xenbus_read(XBT_NIL, dev->nodename, "mode", NULL);
	if (IS_ERR(be->mode)) {
		err = PTR_ERR(be->mode);
		be->mode = NULL;
		xenbus_dev_fatal(dev, err, "reading mode");
		return;
	}

	device_type = xenbus_read(XBT_NIL, dev->otherend, "device-type", NULL);
	if (!IS_ERR(device_type)) {
		cdrom = strcmp(device_type, "cdrom") == 0;
		kfree(device_type);
	}

716
	/* Front end dir is a number, which is used as the handle. */
717
	err = kstrtoul(strrchr(dev->otherend, '/') + 1, 0, &handle);
718 719
	if (err)
		return;
K
Konrad Rzeszutek Wilk 已提交
720

721 722
	be->major = major;
	be->minor = minor;
K
Konrad Rzeszutek Wilk 已提交
723

724 725
	err = xen_vbd_create(be->blkif, handle, major, minor,
			     !strchr(be->mode, 'w'), cdrom);
K
Konrad Rzeszutek Wilk 已提交
726

727 728 729
	if (err)
		xenbus_dev_fatal(dev, err, "creating vbd structure");
	else {
K
Konrad Rzeszutek Wilk 已提交
730 731
		err = xenvbd_sysfs_addif(dev);
		if (err) {
732
			xen_vbd_free(&be->blkif->vbd);
K
Konrad Rzeszutek Wilk 已提交
733 734
			xenbus_dev_fatal(dev, err, "creating sysfs entries");
		}
735
	}
K
Konrad Rzeszutek Wilk 已提交
736

737 738 739 740 741 742
	if (err) {
		kfree(be->mode);
		be->mode = NULL;
		be->major = 0;
		be->minor = 0;
	} else {
K
Konrad Rzeszutek Wilk 已提交
743
		/* We're potentially connected now */
744
		xen_update_blkif_status(be->blkif);
K
Konrad Rzeszutek Wilk 已提交
745 746 747 748
	}
}


749
/*
K
Konrad Rzeszutek Wilk 已提交
750 751 752 753 754
 * Callback received when the frontend's state changes.
 */
static void frontend_changed(struct xenbus_device *dev,
			     enum xenbus_state frontend_state)
{
755
	struct backend_info *be = dev_get_drvdata(&dev->dev);
K
Konrad Rzeszutek Wilk 已提交
756 757
	int err;

758
	pr_debug("%s %p %s\n", __func__, dev, xenbus_strstate(frontend_state));
K
Konrad Rzeszutek Wilk 已提交
759 760 761 762

	switch (frontend_state) {
	case XenbusStateInitialising:
		if (dev->state == XenbusStateClosed) {
763
			pr_info("%s: prepare for reconnect\n", dev->nodename);
K
Konrad Rzeszutek Wilk 已提交
764 765 766 767 768 769
			xenbus_switch_state(dev, XenbusStateInitWait);
		}
		break;

	case XenbusStateInitialised:
	case XenbusStateConnected:
770 771
		/*
		 * Ensure we connect even when two watches fire in
772
		 * close succession and we miss the intermediate value
773 774
		 * of frontend_state.
		 */
K
Konrad Rzeszutek Wilk 已提交
775 776 777
		if (dev->state == XenbusStateConnected)
			break;

778 779
		/*
		 * Enforce precondition before potential leak point.
780
		 * xen_blkif_disconnect() is idempotent.
K
Keir Fraser 已提交
781
		 */
782 783 784 785 786
		err = xen_blkif_disconnect(be->blkif);
		if (err) {
			xenbus_dev_fatal(dev, err, "pending I/O");
			break;
		}
K
Keir Fraser 已提交
787

K
Konrad Rzeszutek Wilk 已提交
788
		err = connect_ring(be);
789 790 791 792 793 794
		if (err) {
			/*
			 * Clean up so that memory resources can be used by
			 * other devices. connect_ring reported already error.
			 */
			xen_blkif_disconnect(be->blkif);
K
Konrad Rzeszutek Wilk 已提交
795
			break;
796
		}
797
		xen_update_blkif_status(be->blkif);
K
Konrad Rzeszutek Wilk 已提交
798 799 800 801 802 803 804
		break;

	case XenbusStateClosing:
		xenbus_switch_state(dev, XenbusStateClosing);
		break;

	case XenbusStateClosed:
805
		xen_blkif_disconnect(be->blkif);
K
Konrad Rzeszutek Wilk 已提交
806 807 808 809 810
		xenbus_switch_state(dev, XenbusStateClosed);
		if (xenbus_dev_is_online(dev))
			break;
		/* fall through if not online */
	case XenbusStateUnknown:
811
		/* implies xen_blkif_disconnect() via xen_blkbk_remove() */
K
Konrad Rzeszutek Wilk 已提交
812 813 814 815 816 817 818 819 820 821 822 823 824 825
		device_unregister(&dev->dev);
		break;

	default:
		xenbus_dev_fatal(dev, -EINVAL, "saw state %d at frontend",
				 frontend_state);
		break;
	}
}


/* ** Connection ** */


826
/*
K
Konrad Rzeszutek Wilk 已提交
827 828 829 830 831 832 833 834 835
 * Write the physical details regarding the block device to the store, and
 * switch to Connected state.
 */
static void connect(struct backend_info *be)
{
	struct xenbus_transaction xbt;
	int err;
	struct xenbus_device *dev = be->dev;

836
	pr_debug("%s %s\n", __func__, dev->otherend);
K
Konrad Rzeszutek Wilk 已提交
837 838 839 840 841 842 843 844 845

	/* Supply the information about the device the frontend needs */
again:
	err = xenbus_transaction_start(&xbt);
	if (err) {
		xenbus_dev_fatal(dev, err, "starting transaction");
		return;
	}

846 847
	/* If we can't advertise it is OK. */
	xen_blkbk_flush_diskcache(xbt, be, be->blkif->vbd.flush_support);
K
Konrad Rzeszutek Wilk 已提交
848

849
	xen_blkbk_discard(xbt, be);
850

851
	xen_blkbk_barrier(xbt, be, be->blkif->vbd.flush_support);
852

853 854 855 856 857 858 859
	err = xenbus_printf(xbt, dev->nodename, "feature-persistent", "%u", 1);
	if (err) {
		xenbus_dev_fatal(dev, err, "writing %s/feature-persistent",
				 dev->nodename);
		goto abort;
	}

K
Konrad Rzeszutek Wilk 已提交
860
	err = xenbus_printf(xbt, dev->nodename, "sectors", "%llu",
861
			    (unsigned long long)vbd_sz(&be->blkif->vbd));
K
Konrad Rzeszutek Wilk 已提交
862 863 864 865 866 867 868 869
	if (err) {
		xenbus_dev_fatal(dev, err, "writing %s/sectors",
				 dev->nodename);
		goto abort;
	}

	/* FIXME: use a typename instead */
	err = xenbus_printf(xbt, dev->nodename, "info", "%u",
870 871
			    be->blkif->vbd.type |
			    (be->blkif->vbd.readonly ? VDISK_READONLY : 0));
K
Konrad Rzeszutek Wilk 已提交
872 873 874 875 876 877
	if (err) {
		xenbus_dev_fatal(dev, err, "writing %s/info",
				 dev->nodename);
		goto abort;
	}
	err = xenbus_printf(xbt, dev->nodename, "sector-size", "%lu",
878 879
			    (unsigned long)
			    bdev_logical_block_size(be->blkif->vbd.bdev));
K
Konrad Rzeszutek Wilk 已提交
880 881 882 883 884
	if (err) {
		xenbus_dev_fatal(dev, err, "writing %s/sector-size",
				 dev->nodename);
		goto abort;
	}
885 886 887 888 889
	err = xenbus_printf(xbt, dev->nodename, "physical-sector-size", "%u",
			    bdev_physical_block_size(be->blkif->vbd.bdev));
	if (err)
		xenbus_dev_error(dev, err, "writing %s/physical-sector-size",
				 dev->nodename);
K
Konrad Rzeszutek Wilk 已提交
890 891 892 893 894 895 896 897 898

	err = xenbus_transaction_end(xbt, 0);
	if (err == -EAGAIN)
		goto again;
	if (err)
		xenbus_dev_fatal(dev, err, "ending transaction");

	err = xenbus_switch_state(dev, XenbusStateConnected);
	if (err)
899
		xenbus_dev_fatal(dev, err, "%s: switching to Connected state",
K
Konrad Rzeszutek Wilk 已提交
900 901 902 903 904 905 906
				 dev->nodename);

	return;
 abort:
	xenbus_transaction_end(xbt, 1);
}

907 908 909 910
/*
 * Each ring may have multi pages, depends on "ring-page-order".
 */
static int read_per_ring_refs(struct xen_blkif_ring *ring, const char *dir)
K
Konrad Rzeszutek Wilk 已提交
911
{
912
	unsigned int ring_ref[XENBUS_MAX_RING_GRANTS];
913 914
	struct pending_req *req, *n;
	int err, i, j;
915 916 917
	struct xen_blkif *blkif = ring->blkif;
	struct xenbus_device *dev = blkif->be->dev;
	unsigned int ring_page_order, nr_grefs, evtchn;
K
Konrad Rzeszutek Wilk 已提交
918

919
	err = xenbus_scanf(XBT_NIL, dir, "event-channel", "%u",
B
Bob Liu 已提交
920 921 922
			  &evtchn);
	if (err != 1) {
		err = -EINVAL;
923
		xenbus_dev_fatal(dev, err, "reading %s/event-channel", dir);
K
Konrad Rzeszutek Wilk 已提交
924 925
		return err;
	}
B
Bob Liu 已提交
926 927 928 929

	err = xenbus_scanf(XBT_NIL, dev->otherend, "ring-page-order", "%u",
			  &ring_page_order);
	if (err != 1) {
930
		err = xenbus_scanf(XBT_NIL, dir, "ring-ref", "%u", &ring_ref[0]);
B
Bob Liu 已提交
931 932
		if (err != 1) {
			err = -EINVAL;
933
			xenbus_dev_fatal(dev, err, "reading %s/ring-ref", dir);
B
Bob Liu 已提交
934 935 936 937 938 939 940 941 942
			return err;
		}
		nr_grefs = 1;
	} else {
		unsigned int i;

		if (ring_page_order > xen_blkif_max_ring_order) {
			err = -EINVAL;
			xenbus_dev_fatal(dev, err, "%s/request %d ring page order exceed max:%d",
943
					 dir, ring_page_order,
B
Bob Liu 已提交
944 945 946 947 948 949 950 951 952
					 xen_blkif_max_ring_order);
			return err;
		}

		nr_grefs = 1 << ring_page_order;
		for (i = 0; i < nr_grefs; i++) {
			char ring_ref_name[RINGREF_NAME_LEN];

			snprintf(ring_ref_name, RINGREF_NAME_LEN, "ring-ref%u", i);
953
			err = xenbus_scanf(XBT_NIL, dir, ring_ref_name,
B
Bob Liu 已提交
954 955 956 957
					   "%u", &ring_ref[i]);
			if (err != 1) {
				err = -EINVAL;
				xenbus_dev_fatal(dev, err, "reading %s/%s",
958
						 dir, ring_ref_name);
B
Bob Liu 已提交
959 960 961 962
				return err;
			}
		}
	}
963
	blkif->nr_ring_pages = nr_grefs;
K
Konrad Rzeszutek Wilk 已提交
964

B
Bob Liu 已提交
965
	for (i = 0; i < nr_grefs * XEN_BLKIF_REQS_PER_PAGE; i++) {
966 967 968
		req = kzalloc(sizeof(*req), GFP_KERNEL);
		if (!req)
			goto fail;
969
		list_add_tail(&req->free_list, &ring->pending_free);
970 971 972 973 974 975 976 977 978 979 980 981 982
		for (j = 0; j < MAX_INDIRECT_SEGMENTS; j++) {
			req->segments[j] = kzalloc(sizeof(*req->segments[0]), GFP_KERNEL);
			if (!req->segments[j])
				goto fail;
		}
		for (j = 0; j < MAX_INDIRECT_PAGES; j++) {
			req->indirect_pages[j] = kzalloc(sizeof(*req->indirect_pages[0]),
							 GFP_KERNEL);
			if (!req->indirect_pages[j])
				goto fail;
		}
	}

K
Konrad Rzeszutek Wilk 已提交
983
	/* Map the shared frame, irq etc. */
984
	err = xen_blkif_map(ring, ring_ref, nr_grefs, evtchn);
K
Konrad Rzeszutek Wilk 已提交
985
	if (err) {
B
Bob Liu 已提交
986
		xenbus_dev_fatal(dev, err, "mapping ring-ref port %u", evtchn);
K
Konrad Rzeszutek Wilk 已提交
987 988 989 990
		return err;
	}

	return 0;
991 992

fail:
993
	list_for_each_entry_safe(req, n, &ring->pending_free, free_list) {
994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007
		list_del(&req->free_list);
		for (j = 0; j < MAX_INDIRECT_SEGMENTS; j++) {
			if (!req->segments[j])
				break;
			kfree(req->segments[j]);
		}
		for (j = 0; j < MAX_INDIRECT_PAGES; j++) {
			if (!req->indirect_pages[j])
				break;
			kfree(req->indirect_pages[j]);
		}
		kfree(req);
	}
	return -ENOMEM;
1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019

}

static int connect_ring(struct backend_info *be)
{
	struct xenbus_device *dev = be->dev;
	unsigned int pers_grants;
	char protocol[64] = "";
	int err, i;
	char *xspath;
	size_t xspathsize;
	const size_t xenstore_path_ext_size = 11; /* sufficient for "/queue-NNN" */
1020
	unsigned int requested_num_queues = 0;
1021 1022 1023 1024

	pr_debug("%s %s\n", __func__, dev->otherend);

	be->blkif->blk_protocol = BLKIF_PROTOCOL_DEFAULT;
1025 1026 1027
	err = xenbus_scanf(XBT_NIL, dev->otherend, "protocol",
			   "%63s", protocol);
	if (err <= 0)
1028 1029 1030 1031 1032 1033 1034 1035 1036
		strcpy(protocol, "unspecified, assuming default");
	else if (0 == strcmp(protocol, XEN_IO_PROTO_ABI_NATIVE))
		be->blkif->blk_protocol = BLKIF_PROTOCOL_NATIVE;
	else if (0 == strcmp(protocol, XEN_IO_PROTO_ABI_X86_32))
		be->blkif->blk_protocol = BLKIF_PROTOCOL_X86_32;
	else if (0 == strcmp(protocol, XEN_IO_PROTO_ABI_X86_64))
		be->blkif->blk_protocol = BLKIF_PROTOCOL_X86_64;
	else {
		xenbus_dev_fatal(dev, err, "unknown fe protocol %s", protocol);
1037
		return -ENOSYS;
1038
	}
1039 1040 1041
	err = xenbus_scanf(XBT_NIL, dev->otherend,
			   "feature-persistent", "%u", &pers_grants);
	if (err <= 0)
1042 1043 1044 1045 1046
		pers_grants = 0;

	be->blkif->vbd.feature_gnt_persistent = pers_grants;
	be->blkif->vbd.overflow_max_grants = 0;

1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067
	/*
	 * Read the number of hardware queues from frontend.
	 */
	err = xenbus_scanf(XBT_NIL, dev->otherend, "multi-queue-num-queues",
			   "%u", &requested_num_queues);
	if (err < 0) {
		requested_num_queues = 1;
	} else {
		if (requested_num_queues > xenblk_max_queues
		    || requested_num_queues == 0) {
			/* Buggy or malicious guest. */
			xenbus_dev_fatal(dev, err,
					"guest requested %u queues, exceeding the maximum of %u.",
					requested_num_queues, xenblk_max_queues);
			return -ENOSYS;
		}
	}
	be->blkif->nr_rings = requested_num_queues;
	if (xen_blkif_alloc_rings(be->blkif))
		return -ENOMEM;

1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093
	pr_info("%s: using %d queues, protocol %d (%s) %s\n", dev->nodename,
		 be->blkif->nr_rings, be->blkif->blk_protocol, protocol,
		 pers_grants ? "persistent grants" : "");

	if (be->blkif->nr_rings == 1)
		return read_per_ring_refs(&be->blkif->rings[0], dev->otherend);
	else {
		xspathsize = strlen(dev->otherend) + xenstore_path_ext_size;
		xspath = kmalloc(xspathsize, GFP_KERNEL);
		if (!xspath) {
			xenbus_dev_fatal(dev, -ENOMEM, "reading ring references");
			return -ENOMEM;
		}

		for (i = 0; i < be->blkif->nr_rings; i++) {
			memset(xspath, 0, xspathsize);
			snprintf(xspath, xspathsize, "%s/queue-%u", dev->otherend, i);
			err = read_per_ring_refs(&be->blkif->rings[i], xspath);
			if (err) {
				kfree(xspath);
				return err;
			}
		}
		kfree(xspath);
	}
	return 0;
K
Konrad Rzeszutek Wilk 已提交
1094 1095
}

1096
static const struct xenbus_device_id xen_blkbk_ids[] = {
K
Konrad Rzeszutek Wilk 已提交
1097 1098 1099 1100
	{ "vbd" },
	{ "" }
};

1101 1102
static struct xenbus_driver xen_blkbk_driver = {
	.ids  = xen_blkbk_ids,
1103 1104
	.probe = xen_blkbk_probe,
	.remove = xen_blkbk_remove,
K
Konrad Rzeszutek Wilk 已提交
1105
	.otherend_changed = frontend_changed
1106
};
K
Konrad Rzeszutek Wilk 已提交
1107

1108
int xen_blkif_xenbus_init(void)
K
Konrad Rzeszutek Wilk 已提交
1109
{
1110
	return xenbus_register_backend(&xen_blkbk_driver);
K
Konrad Rzeszutek Wilk 已提交
1111
}