xenbus.c 20.5 KB
Newer Older
K
Konrad Rzeszutek Wilk 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
/*  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.

*/

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

24
struct backend_info {
25
	struct xenbus_device	*dev;
26
	struct xen_blkif	*blkif;
27 28 29 30
	struct xenbus_watch	backend_watch;
	unsigned		major;
	unsigned		minor;
	char			*mode;
K
Konrad Rzeszutek Wilk 已提交
31 32
};

33
static struct kmem_cache *xen_blkif_cachep;
K
Konrad Rzeszutek Wilk 已提交
34 35 36 37 38
static void connect(struct backend_info *);
static int connect_ring(struct backend_info *);
static void backend_changed(struct xenbus_watch *, const char **,
			    unsigned int);

39
struct xenbus_device *xen_blkbk_xenbus(struct backend_info *be)
40 41 42 43
{
	return be->dev;
}

44
static int blkback_name(struct xen_blkif *blkif, char *buf)
K
Konrad Rzeszutek Wilk 已提交
45 46 47 48 49 50 51 52
{
	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);

53 54
	devname = strstr(devpath, "/dev/");
	if (devname != NULL)
K
Konrad Rzeszutek Wilk 已提交
55 56 57 58 59 60 61 62 63 64
		devname += strlen("/dev/");
	else
		devname  = devpath;

	snprintf(buf, TASK_COMM_LEN, "blkback.%d.%s", blkif->domid, devname);
	kfree(devpath);

	return 0;
}

65
static void xen_update_blkif_status(struct xen_blkif *blkif)
K
Konrad Rzeszutek Wilk 已提交
66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88
{
	int err;
	char name[TASK_COMM_LEN];

	/* Not ready to connect? */
	if (!blkif->irq || !blkif->vbd.bdev)
		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;
	}

89 90 91 92 93 94 95
	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);

96
	blkif->xenblkd = kthread_run(xen_blkif_schedule, blkif, name);
K
Konrad Rzeszutek Wilk 已提交
97 98 99 100
	if (IS_ERR(blkif->xenblkd)) {
		err = PTR_ERR(blkif->xenblkd);
		blkif->xenblkd = NULL;
		xenbus_dev_error(blkif->be->dev, err, "start xenblkd");
101
		return;
K
Konrad Rzeszutek Wilk 已提交
102 103 104
	}
}

105
static struct xen_blkif *xen_blkif_alloc(domid_t domid)
106
{
107
	struct xen_blkif *blkif;
108
	int i;
109

110 111
	BUILD_BUG_ON(MAX_INDIRECT_PAGES > BLKIF_MAX_INDIRECT_PAGES_PER_REQUEST);

112
	blkif = kmem_cache_zalloc(xen_blkif_cachep, GFP_KERNEL);
113 114 115 116 117 118 119
	if (!blkif)
		return ERR_PTR(-ENOMEM);

	blkif->domid = domid;
	spin_lock_init(&blkif->blk_ring_lock);
	atomic_set(&blkif->refcnt, 1);
	init_waitqueue_head(&blkif->wq);
120 121
	init_completion(&blkif->drain_complete);
	atomic_set(&blkif->drain, 0);
122 123
	blkif->st_print = jiffies;
	init_waitqueue_head(&blkif->waiting_to_free);
124
	blkif->persistent_gnts.rb_node = NULL;
125 126 127
	spin_lock_init(&blkif->free_pages_lock);
	INIT_LIST_HEAD(&blkif->free_pages);
	blkif->free_pages_num = 0;
128
	atomic_set(&blkif->persistent_gnt_in_use, 0);
129

130 131 132 133 134 135 136 137 138 139 140 141 142 143 144
	blkif->pending_reqs = kcalloc(XEN_BLKIF_REQS,
	                              sizeof(blkif->pending_reqs[0]),
	                              GFP_KERNEL);
	if (!blkif->pending_reqs) {
		kmem_cache_free(xen_blkif_cachep, blkif);
		return ERR_PTR(-ENOMEM);
	}
	INIT_LIST_HEAD(&blkif->pending_free);
	spin_lock_init(&blkif->pending_free_lock);
	init_waitqueue_head(&blkif->pending_free_wq);

	for (i = 0; i < XEN_BLKIF_REQS; i++)
		list_add_tail(&blkif->pending_reqs[i].free_list,
			      &blkif->pending_free);

145 146 147
	return blkif;
}

148
static int xen_blkif_map(struct xen_blkif *blkif, unsigned long shared_page,
149
			 unsigned int evtchn)
150 151 152 153 154 155 156
{
	int err;

	/* Already connected through? */
	if (blkif->irq)
		return 0;

157 158
	err = xenbus_map_ring_valloc(blkif->be->dev, shared_page, &blkif->blk_ring);
	if (err < 0)
159 160 161 162 163 164
		return err;

	switch (blkif->blk_protocol) {
	case BLKIF_PROTOCOL_NATIVE:
	{
		struct blkif_sring *sring;
165
		sring = (struct blkif_sring *)blkif->blk_ring;
166 167 168 169 170 171
		BACK_RING_INIT(&blkif->blk_rings.native, sring, PAGE_SIZE);
		break;
	}
	case BLKIF_PROTOCOL_X86_32:
	{
		struct blkif_x86_32_sring *sring_x86_32;
172
		sring_x86_32 = (struct blkif_x86_32_sring *)blkif->blk_ring;
173 174 175 176 177 178
		BACK_RING_INIT(&blkif->blk_rings.x86_32, sring_x86_32, PAGE_SIZE);
		break;
	}
	case BLKIF_PROTOCOL_X86_64:
	{
		struct blkif_x86_64_sring *sring_x86_64;
179
		sring_x86_64 = (struct blkif_x86_64_sring *)blkif->blk_ring;
180 181 182 183 184 185 186
		BACK_RING_INIT(&blkif->blk_rings.x86_64, sring_x86_64, PAGE_SIZE);
		break;
	}
	default:
		BUG();
	}

187 188 189
	err = bind_interdomain_evtchn_to_irqhandler(blkif->domid, evtchn,
						    xen_blkif_be_int, 0,
						    "blkif-backend", blkif);
190
	if (err < 0) {
191
		xenbus_unmap_ring_vfree(blkif->be->dev, blkif->blk_ring);
192 193 194 195 196 197 198 199
		blkif->blk_rings.common.sring = NULL;
		return err;
	}
	blkif->irq = err;

	return 0;
}

200
static void xen_blkif_disconnect(struct xen_blkif *blkif)
201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216
{
	if (blkif->xenblkd) {
		kthread_stop(blkif->xenblkd);
		blkif->xenblkd = NULL;
	}

	atomic_dec(&blkif->refcnt);
	wait_event(blkif->waiting_to_free, atomic_read(&blkif->refcnt) == 0);
	atomic_inc(&blkif->refcnt);

	if (blkif->irq) {
		unbind_from_irqhandler(blkif->irq, blkif);
		blkif->irq = 0;
	}

	if (blkif->blk_rings.common.sring) {
217
		xenbus_unmap_ring_vfree(blkif->be->dev, blkif->blk_ring);
218 219 220 221
		blkif->blk_rings.common.sring = NULL;
	}
}

222
static void xen_blkif_free(struct xen_blkif *blkif)
223
{
224 225 226
	struct pending_req *req;
	int i = 0;

227 228
	if (!atomic_dec_and_test(&blkif->refcnt))
		BUG();
229 230 231 232 233 234 235

	/* Check that there is no request in use */
	list_for_each_entry(req, &blkif->pending_free, free_list)
		i++;
	BUG_ON(i != XEN_BLKIF_REQS);

	kfree(blkif->pending_reqs);
236
	kmem_cache_free(xen_blkif_cachep, blkif);
237 238
}

239
int __init xen_blkif_interface_init(void)
240
{
241
	xen_blkif_cachep = kmem_cache_create("blkif_cache",
242
					     sizeof(struct xen_blkif),
243 244
					     0, 0, NULL);
	if (!xen_blkif_cachep)
245 246 247 248
		return -ENOMEM;

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

250
/*
K
Konrad Rzeszutek Wilk 已提交
251 252 253 254 255 256 257 258 259
 *  sysfs interface for VBD I/O requests
 */

#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);	\
260
		struct backend_info *be = dev_get_drvdata(&dev->dev);	\
K
Konrad Rzeszutek Wilk 已提交
261 262 263 264 265
									\
		return sprintf(buf, format, ##args);			\
	}								\
	static DEVICE_ATTR(name, S_IRUGO, show_##name, NULL)

266 267 268 269 270 271 272
VBD_SHOW(oo_req,  "%llu\n", be->blkif->st_oo_req);
VBD_SHOW(rd_req,  "%llu\n", be->blkif->st_rd_req);
VBD_SHOW(wr_req,  "%llu\n", be->blkif->st_wr_req);
VBD_SHOW(f_req,  "%llu\n", be->blkif->st_f_req);
VBD_SHOW(ds_req,  "%llu\n", be->blkif->st_ds_req);
VBD_SHOW(rd_sect, "%llu\n", be->blkif->st_rd_sect);
VBD_SHOW(wr_sect, "%llu\n", be->blkif->st_wr_sect);
K
Konrad Rzeszutek Wilk 已提交
273

274
static struct attribute *xen_vbdstat_attrs[] = {
K
Konrad Rzeszutek Wilk 已提交
275 276 277
	&dev_attr_oo_req.attr,
	&dev_attr_rd_req.attr,
	&dev_attr_wr_req.attr,
278
	&dev_attr_f_req.attr,
279
	&dev_attr_ds_req.attr,
K
Konrad Rzeszutek Wilk 已提交
280 281 282 283 284
	&dev_attr_rd_sect.attr,
	&dev_attr_wr_sect.attr,
	NULL
};

285
static struct attribute_group xen_vbdstat_group = {
K
Konrad Rzeszutek Wilk 已提交
286
	.name = "statistics",
287
	.attrs = xen_vbdstat_attrs,
K
Konrad Rzeszutek Wilk 已提交
288 289 290 291 292
};

VBD_SHOW(physical_device, "%x:%x\n", be->major, be->minor);
VBD_SHOW(mode, "%s\n", be->mode);

293
static int xenvbd_sysfs_addif(struct xenbus_device *dev)
K
Konrad Rzeszutek Wilk 已提交
294 295 296 297
{
	int error;

	error = device_create_file(&dev->dev, &dev_attr_physical_device);
298
	if (error)
K
Konrad Rzeszutek Wilk 已提交
299 300 301 302 303 304
		goto fail1;

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

305
	error = sysfs_create_group(&dev->dev.kobj, &xen_vbdstat_group);
K
Konrad Rzeszutek Wilk 已提交
306 307 308 309 310
	if (error)
		goto fail3;

	return 0;

311
fail3:	sysfs_remove_group(&dev->dev.kobj, &xen_vbdstat_group);
K
Konrad Rzeszutek Wilk 已提交
312 313 314 315 316
fail2:	device_remove_file(&dev->dev, &dev_attr_mode);
fail1:	device_remove_file(&dev->dev, &dev_attr_physical_device);
	return error;
}

317
static void xenvbd_sysfs_delif(struct xenbus_device *dev)
K
Konrad Rzeszutek Wilk 已提交
318
{
319
	sysfs_remove_group(&dev->dev.kobj, &xen_vbdstat_group);
K
Konrad Rzeszutek Wilk 已提交
320 321 322 323
	device_remove_file(&dev->dev, &dev_attr_mode);
	device_remove_file(&dev->dev, &dev_attr_physical_device);
}

324

325
static void xen_vbd_free(struct xen_vbd *vbd)
326 327 328 329 330 331
{
	if (vbd->bdev)
		blkdev_put(vbd->bdev, vbd->readonly ? FMODE_READ : FMODE_WRITE);
	vbd->bdev = NULL;
}

332 333 334
static int xen_vbd_create(struct xen_blkif *blkif, blkif_vdev_t handle,
			  unsigned major, unsigned minor, int readonly,
			  int cdrom)
335
{
336
	struct xen_vbd *vbd;
337
	struct block_device *bdev;
338
	struct request_queue *q;
339 340 341 342 343 344 345 346 347 348 349 350

	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)) {
351
		DPRINTK("xen_vbd_create: device %08x could not be opened.\n",
352 353 354 355 356 357
			vbd->pdevice);
		return -ENOENT;
	}

	vbd->bdev = bdev;
	if (vbd->bdev->bd_disk == NULL) {
358
		DPRINTK("xen_vbd_create: device %08x doesn't exist.\n",
359
			vbd->pdevice);
360
		xen_vbd_free(vbd);
361 362
		return -ENOENT;
	}
363
	vbd->size = vbd_sz(vbd);
364 365 366 367 368 369

	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;

370 371 372 373
	q = bdev_get_queue(bdev);
	if (q && q->flush_flags)
		vbd->flush_support = true;

374 375 376
	if (q && blk_queue_secdiscard(q))
		vbd->discard_secure = true;

377 378 379 380
	DPRINTK("Successful creation of handle=%04x (dom=%u)\n",
		handle, blkif->domid);
	return 0;
}
381
static int xen_blkbk_remove(struct xenbus_device *dev)
K
Konrad Rzeszutek Wilk 已提交
382
{
383
	struct backend_info *be = dev_get_drvdata(&dev->dev);
K
Konrad Rzeszutek Wilk 已提交
384 385 386 387 388 389 390 391 392 393 394 395 396

	DPRINTK("");

	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;
	}

	if (be->blkif) {
397
		xen_blkif_disconnect(be->blkif);
398
		xen_vbd_free(&be->blkif->vbd);
399
		xen_blkif_free(be->blkif);
K
Konrad Rzeszutek Wilk 已提交
400 401 402
		be->blkif = NULL;
	}

403
	kfree(be->mode);
K
Konrad Rzeszutek Wilk 已提交
404
	kfree(be);
405
	dev_set_drvdata(&dev->dev, NULL);
K
Konrad Rzeszutek Wilk 已提交
406 407 408
	return 0;
}

409 410
int xen_blkbk_flush_diskcache(struct xenbus_transaction xbt,
			      struct backend_info *be, int state)
K
Konrad Rzeszutek Wilk 已提交
411 412 413 414
{
	struct xenbus_device *dev = be->dev;
	int err;

415
	err = xenbus_printf(xbt, dev->nodename, "feature-flush-cache",
K
Konrad Rzeszutek Wilk 已提交
416 417
			    "%d", state);
	if (err)
418
		dev_warn(&dev->dev, "writing feature-flush-cache (%d)", err);
K
Konrad Rzeszutek Wilk 已提交
419 420 421 422

	return err;
}

423
static void xen_blkbk_discard(struct xenbus_transaction xbt, struct backend_info *be)
424 425 426 427 428
{
	struct xenbus_device *dev = be->dev;
	struct xen_blkif *blkif = be->blkif;
	int err;
	int state = 0;
429 430 431 432 433 434 435 436
	struct block_device *bdev = be->blkif->vbd.bdev;
	struct request_queue *q = bdev_get_queue(bdev);

	if (blk_queue_discard(q)) {
		err = xenbus_printf(xbt, dev->nodename,
			"discard-granularity", "%u",
			q->limits.discard_granularity);
		if (err) {
437 438
			dev_warn(&dev->dev, "writing discard-granularity (%d)", err);
			return;
439 440 441 442 443
		}
		err = xenbus_printf(xbt, dev->nodename,
			"discard-alignment", "%u",
			q->limits.discard_alignment);
		if (err) {
444 445
			dev_warn(&dev->dev, "writing discard-alignment (%d)", err);
			return;
446
		}
447 448 449 450 451 452
		state = 1;
		/* Optional. */
		err = xenbus_printf(xbt, dev->nodename,
				    "discard-secure", "%d",
				    blkif->vbd.discard_secure);
		if (err) {
453
			dev_warn(&dev->dev, "writing discard-secure (%d)", err);
454
			return;
455 456 457 458 459
		}
	}
	err = xenbus_printf(xbt, dev->nodename, "feature-discard",
			    "%d", state);
	if (err)
460
		dev_warn(&dev->dev, "writing feature-discard (%d)", err);
461
}
462 463 464 465 466 467 468 469 470
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)
471
		dev_warn(&dev->dev, "writing feature-barrier (%d)", err);
472 473 474

	return err;
}
475

476
/*
K
Konrad Rzeszutek Wilk 已提交
477 478 479 480
 * 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.
 */
481 482
static int xen_blkbk_probe(struct xenbus_device *dev,
			   const struct xenbus_device_id *id)
K
Konrad Rzeszutek Wilk 已提交
483 484 485 486 487 488 489 490 491 492
{
	int err;
	struct backend_info *be = kzalloc(sizeof(struct backend_info),
					  GFP_KERNEL);
	if (!be) {
		xenbus_dev_fatal(dev, -ENOMEM,
				 "allocating backend structure");
		return -ENOMEM;
	}
	be->dev = dev;
493
	dev_set_drvdata(&dev->dev, be);
K
Konrad Rzeszutek Wilk 已提交
494

495
	be->blkif = xen_blkif_alloc(dev->otherend_id);
K
Konrad Rzeszutek Wilk 已提交
496 497 498 499 500 501 502 503 504 505
	if (IS_ERR(be->blkif)) {
		err = PTR_ERR(be->blkif);
		be->blkif = NULL;
		xenbus_dev_fatal(dev, err, "creating block interface");
		goto fail;
	}

	/* setup back pointer */
	be->blkif->be = be;

J
Jeremy Fitzhardinge 已提交
506 507
	err = xenbus_watch_pathfmt(dev, &be->backend_watch, backend_changed,
				   "%s/%s", dev->nodename, "physical-device");
K
Konrad Rzeszutek Wilk 已提交
508 509 510 511 512 513 514 515 516 517 518
	if (err)
		goto fail;

	err = xenbus_switch_state(dev, XenbusStateInitWait);
	if (err)
		goto fail;

	return 0;

fail:
	DPRINTK("failed");
519
	xen_blkbk_remove(dev);
K
Konrad Rzeszutek Wilk 已提交
520 521 522 523
	return err;
}


524
/*
K
Konrad Rzeszutek Wilk 已提交
525 526 527 528 529 530 531 532 533 534 535 536 537 538
 * 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;
539
	unsigned long handle;
K
Konrad Rzeszutek Wilk 已提交
540 541 542 543 544 545 546
	char *device_type;

	DPRINTK("");

	err = xenbus_scanf(XBT_NIL, dev->nodename, "physical-device", "%x:%x",
			   &major, &minor);
	if (XENBUS_EXIST_ERR(err)) {
547 548 549 550 551
		/*
		 * 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 已提交
552 553 554 555 556 557 558
		return;
	}
	if (err != 2) {
		xenbus_dev_fatal(dev, err, "reading physical-device");
		return;
	}

559 560 561 562
	if (be->major | be->minor) {
		if (be->major != major || be->minor != minor)
			pr_warn(DRV_PFX "changing physical device (from %x:%x to %x:%x) not supported.\n",
				be->major, be->minor, major, minor);
K
Konrad Rzeszutek Wilk 已提交
563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579
		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);
	}

580 581 582 583
	/* Front end dir is a number, which is used as the handle. */
	err = strict_strtoul(strrchr(dev->otherend, '/') + 1, 0, &handle);
	if (err)
		return;
K
Konrad Rzeszutek Wilk 已提交
584

585 586
	be->major = major;
	be->minor = minor;
K
Konrad Rzeszutek Wilk 已提交
587

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

591 592 593
	if (err)
		xenbus_dev_fatal(dev, err, "creating vbd structure");
	else {
K
Konrad Rzeszutek Wilk 已提交
594 595
		err = xenvbd_sysfs_addif(dev);
		if (err) {
596
			xen_vbd_free(&be->blkif->vbd);
K
Konrad Rzeszutek Wilk 已提交
597 598
			xenbus_dev_fatal(dev, err, "creating sysfs entries");
		}
599
	}
K
Konrad Rzeszutek Wilk 已提交
600

601 602 603 604 605 606
	if (err) {
		kfree(be->mode);
		be->mode = NULL;
		be->major = 0;
		be->minor = 0;
	} else {
K
Konrad Rzeszutek Wilk 已提交
607
		/* We're potentially connected now */
608
		xen_update_blkif_status(be->blkif);
K
Konrad Rzeszutek Wilk 已提交
609 610 611 612
	}
}


613
/*
K
Konrad Rzeszutek Wilk 已提交
614 615 616 617 618
 * Callback received when the frontend's state changes.
 */
static void frontend_changed(struct xenbus_device *dev,
			     enum xenbus_state frontend_state)
{
619
	struct backend_info *be = dev_get_drvdata(&dev->dev);
K
Konrad Rzeszutek Wilk 已提交
620 621 622 623 624 625 626
	int err;

	DPRINTK("%s", xenbus_strstate(frontend_state));

	switch (frontend_state) {
	case XenbusStateInitialising:
		if (dev->state == XenbusStateClosed) {
627
			pr_info(DRV_PFX "%s: prepare for reconnect\n",
628
				dev->nodename);
K
Konrad Rzeszutek Wilk 已提交
629 630 631 632 633 634
			xenbus_switch_state(dev, XenbusStateInitWait);
		}
		break;

	case XenbusStateInitialised:
	case XenbusStateConnected:
635 636
		/*
		 * Ensure we connect even when two watches fire in
637
		 * close succession and we miss the intermediate value
638 639
		 * of frontend_state.
		 */
K
Konrad Rzeszutek Wilk 已提交
640 641 642
		if (dev->state == XenbusStateConnected)
			break;

643 644
		/*
		 * Enforce precondition before potential leak point.
645
		 * xen_blkif_disconnect() is idempotent.
K
Keir Fraser 已提交
646
		 */
647
		xen_blkif_disconnect(be->blkif);
K
Keir Fraser 已提交
648

K
Konrad Rzeszutek Wilk 已提交
649 650 651
		err = connect_ring(be);
		if (err)
			break;
652
		xen_update_blkif_status(be->blkif);
K
Konrad Rzeszutek Wilk 已提交
653 654 655 656 657 658 659
		break;

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

	case XenbusStateClosed:
660
		xen_blkif_disconnect(be->blkif);
K
Konrad Rzeszutek Wilk 已提交
661 662 663 664 665
		xenbus_switch_state(dev, XenbusStateClosed);
		if (xenbus_dev_is_online(dev))
			break;
		/* fall through if not online */
	case XenbusStateUnknown:
666
		/* implies xen_blkif_disconnect() via xen_blkbk_remove() */
K
Konrad Rzeszutek Wilk 已提交
667 668 669 670 671 672 673 674 675 676 677 678 679 680
		device_unregister(&dev->dev);
		break;

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


/* ** Connection ** */


681
/*
K
Konrad Rzeszutek Wilk 已提交
682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700
 * 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;

	DPRINTK("%s", dev->otherend);

	/* 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;
	}

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

704
	xen_blkbk_discard(xbt, be);
705

706
	xen_blkbk_barrier(xbt, be, be->blkif->vbd.flush_support);
707

708 709 710 711 712 713
	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;
	}
714 715 716 717 718
	err = xenbus_printf(xbt, 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);
719

K
Konrad Rzeszutek Wilk 已提交
720
	err = xenbus_printf(xbt, dev->nodename, "sectors", "%llu",
721
			    (unsigned long long)vbd_sz(&be->blkif->vbd));
K
Konrad Rzeszutek Wilk 已提交
722 723 724 725 726 727 728 729
	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",
730 731
			    be->blkif->vbd.type |
			    (be->blkif->vbd.readonly ? VDISK_READONLY : 0));
K
Konrad Rzeszutek Wilk 已提交
732 733 734 735 736 737
	if (err) {
		xenbus_dev_fatal(dev, err, "writing %s/info",
				 dev->nodename);
		goto abort;
	}
	err = xenbus_printf(xbt, dev->nodename, "sector-size", "%lu",
738 739
			    (unsigned long)
			    bdev_logical_block_size(be->blkif->vbd.bdev));
K
Konrad Rzeszutek Wilk 已提交
740 741 742 743 744 745 746 747 748 749 750 751 752 753
	if (err) {
		xenbus_dev_fatal(dev, err, "writing %s/sector-size",
				 dev->nodename);
		goto abort;
	}

	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)
754
		xenbus_dev_fatal(dev, err, "%s: switching to Connected state",
K
Konrad Rzeszutek Wilk 已提交
755 756 757 758 759 760 761 762 763 764 765 766 767
				 dev->nodename);

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


static int connect_ring(struct backend_info *be)
{
	struct xenbus_device *dev = be->dev;
	unsigned long ring_ref;
	unsigned int evtchn;
768
	unsigned int pers_grants;
K
Konrad Rzeszutek Wilk 已提交
769 770 771 772 773
	char protocol[64] = "";
	int err;

	DPRINTK("%s", dev->otherend);

774 775
	err = xenbus_gather(XBT_NIL, dev->otherend, "ring-ref", "%lu",
			    &ring_ref, "event-channel", "%u", &evtchn, NULL);
K
Konrad Rzeszutek Wilk 已提交
776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797
	if (err) {
		xenbus_dev_fatal(dev, err,
				 "reading %s/ring-ref and event-channel",
				 dev->otherend);
		return err;
	}

	be->blkif->blk_protocol = BLKIF_PROTOCOL_NATIVE;
	err = xenbus_gather(XBT_NIL, dev->otherend, "protocol",
			    "%63s", protocol, NULL);
	if (err)
		strcpy(protocol, "unspecified, assuming native");
	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);
		return -1;
	}
798
	err = xenbus_gather(XBT_NIL, dev->otherend,
799
			    "feature-persistent", "%u",
800 801 802 803 804 805 806 807 808 809
			    &pers_grants, NULL);
	if (err)
		pers_grants = 0;

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

	pr_info(DRV_PFX "ring-ref %ld, event-channel %d, protocol %d (%s) %s\n",
		ring_ref, evtchn, be->blkif->blk_protocol, protocol,
		pers_grants ? "persistent grants" : "");
K
Konrad Rzeszutek Wilk 已提交
810 811

	/* Map the shared frame, irq etc. */
812
	err = xen_blkif_map(be->blkif, ring_ref, evtchn);
K
Konrad Rzeszutek Wilk 已提交
813 814 815 816 817 818 819 820 821 822 823 824 825
	if (err) {
		xenbus_dev_fatal(dev, err, "mapping ring-ref %lu port %u",
				 ring_ref, evtchn);
		return err;
	}

	return 0;
}


/* ** Driver Registration ** */


826
static const struct xenbus_device_id xen_blkbk_ids[] = {
K
Konrad Rzeszutek Wilk 已提交
827 828 829 830 831
	{ "vbd" },
	{ "" }
};


832
static DEFINE_XENBUS_DRIVER(xen_blkbk, ,
833 834
	.probe = xen_blkbk_probe,
	.remove = xen_blkbk_remove,
K
Konrad Rzeszutek Wilk 已提交
835
	.otherend_changed = frontend_changed
836
);
K
Konrad Rzeszutek Wilk 已提交
837 838


839
int xen_blkif_xenbus_init(void)
K
Konrad Rzeszutek Wilk 已提交
840
{
841
	return xenbus_register_backend(&xen_blkbk_driver);
K
Konrad Rzeszutek Wilk 已提交
842
}