xenbus.c 23.2 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 27 28
/* Enlarge the array size in order to fully show blkback name. */
#define BLKBACK_NAME_LEN (20)

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, BLKBACK_NAME_LEN, "blkback.%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[BLKBACK_NAME_LEN];
K
Konrad Rzeszutek Wilk 已提交
88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107

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

108 109 110 111 112 113 114
	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);

115
	blkif->xenblkd = kthread_run(xen_blkif_schedule, blkif, "%s", name);
K
Konrad Rzeszutek Wilk 已提交
116 117 118 119
	if (IS_ERR(blkif->xenblkd)) {
		err = PTR_ERR(blkif->xenblkd);
		blkif->xenblkd = NULL;
		xenbus_dev_error(blkif->be->dev, err, "start xenblkd");
120
		return;
K
Konrad Rzeszutek Wilk 已提交
121 122 123
	}
}

124
static struct xen_blkif *xen_blkif_alloc(domid_t domid)
125
{
126
	struct xen_blkif *blkif;
127

128
	BUILD_BUG_ON(MAX_INDIRECT_PAGES > BLKIF_MAX_INDIRECT_PAGES_PER_REQUEST);
129

130
	blkif = kmem_cache_zalloc(xen_blkif_cachep, GFP_KERNEL);
131 132 133 134 135 136 137
	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);
138 139
	init_completion(&blkif->drain_complete);
	atomic_set(&blkif->drain, 0);
140
	blkif->st_print = jiffies;
141
	blkif->persistent_gnts.rb_node = NULL;
142 143
	spin_lock_init(&blkif->free_pages_lock);
	INIT_LIST_HEAD(&blkif->free_pages);
R
Roger Pau Monne 已提交
144
	INIT_LIST_HEAD(&blkif->persistent_purge_list);
145
	blkif->free_pages_num = 0;
146
	atomic_set(&blkif->persistent_gnt_in_use, 0);
R
Roger Pau Monne 已提交
147
	atomic_set(&blkif->inflight, 0);
148
	INIT_WORK(&blkif->persistent_purge_work, xen_blkbk_unmap_purged_grants);
149

150
	INIT_LIST_HEAD(&blkif->pending_free);
151
	INIT_WORK(&blkif->free_work, xen_blkif_deferred_free);
152 153
	spin_lock_init(&blkif->pending_free_lock);
	init_waitqueue_head(&blkif->pending_free_wq);
154
	init_waitqueue_head(&blkif->shutdown_wq);
155 156 157 158

	return blkif;
}

159
static int xen_blkif_map(struct xen_blkif *blkif, grant_ref_t gref,
160
			 unsigned int evtchn)
161 162 163 164 165 166 167
{
	int err;

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

168 169
	err = xenbus_map_ring_valloc(blkif->be->dev, &gref, 1,
				     &blkif->blk_ring);
170
	if (err < 0)
171 172 173 174 175 176
		return err;

	switch (blkif->blk_protocol) {
	case BLKIF_PROTOCOL_NATIVE:
	{
		struct blkif_sring *sring;
177
		sring = (struct blkif_sring *)blkif->blk_ring;
178 179 180 181 182 183
		BACK_RING_INIT(&blkif->blk_rings.native, sring, PAGE_SIZE);
		break;
	}
	case BLKIF_PROTOCOL_X86_32:
	{
		struct blkif_x86_32_sring *sring_x86_32;
184
		sring_x86_32 = (struct blkif_x86_32_sring *)blkif->blk_ring;
185 186 187 188 189 190
		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;
191
		sring_x86_64 = (struct blkif_x86_64_sring *)blkif->blk_ring;
192 193 194 195 196 197 198
		BACK_RING_INIT(&blkif->blk_rings.x86_64, sring_x86_64, PAGE_SIZE);
		break;
	}
	default:
		BUG();
	}

199 200 201
	err = bind_interdomain_evtchn_to_irqhandler(blkif->domid, evtchn,
						    xen_blkif_be_int, 0,
						    "blkif-backend", blkif);
202
	if (err < 0) {
203
		xenbus_unmap_ring_vfree(blkif->be->dev, blkif->blk_ring);
204 205 206 207 208 209 210 211
		blkif->blk_rings.common.sring = NULL;
		return err;
	}
	blkif->irq = err;

	return 0;
}

212
static int xen_blkif_disconnect(struct xen_blkif *blkif)
213 214 215
{
	if (blkif->xenblkd) {
		kthread_stop(blkif->xenblkd);
216
		wake_up(&blkif->shutdown_wq);
217 218 219
		blkif->xenblkd = NULL;
	}

220 221 222 223 224 225
	/* 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(&blkif->inflight) > 0)
		return -EBUSY;
226 227 228 229 230 231 232

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

	if (blkif->blk_rings.common.sring) {
233
		xenbus_unmap_ring_vfree(blkif->be->dev, blkif->blk_ring);
234 235
		blkif->blk_rings.common.sring = NULL;
	}
236

237 238 239
	/* Remove all persistent grants and the cache of ballooned pages. */
	xen_blkbk_free_caches(blkif);

240
	return 0;
241 242
}

243
static void xen_blkif_free(struct xen_blkif *blkif)
244
{
245 246
	struct pending_req *req, *n;
	int i = 0, j;
247

248 249
	xen_blkif_disconnect(blkif);
	xen_vbd_free(&blkif->vbd);
250

R
Roger Pau Monne 已提交
251 252 253 254 255 256 257 258
	/* Make sure everything is drained before shutting down */
	BUG_ON(blkif->persistent_gnt_c != 0);
	BUG_ON(atomic_read(&blkif->persistent_gnt_in_use) != 0);
	BUG_ON(blkif->free_pages_num != 0);
	BUG_ON(!list_empty(&blkif->persistent_purge_list));
	BUG_ON(!list_empty(&blkif->free_pages));
	BUG_ON(!RB_EMPTY_ROOT(&blkif->persistent_gnts));

259
	/* Check that there is no request in use */
260 261 262 263 264 265 266 267 268 269
	list_for_each_entry_safe(req, n, &blkif->pending_free, free_list) {
		list_del(&req->free_list);

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

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

		kfree(req);
270
		i++;
271 272
	}

273
	WARN_ON(i != XEN_BLKIF_REQS_PER_PAGE);
274

275
	kmem_cache_free(xen_blkif_cachep, blkif);
276 277
}

278
int __init xen_blkif_interface_init(void)
279
{
280
	xen_blkif_cachep = kmem_cache_create("blkif_cache",
281
					     sizeof(struct xen_blkif),
282 283
					     0, 0, NULL);
	if (!xen_blkif_cachep)
284 285 286 287
		return -ENOMEM;

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

289
/*
K
Konrad Rzeszutek Wilk 已提交
290 291 292 293 294 295 296 297 298
 *  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);	\
299
		struct backend_info *be = dev_get_drvdata(&dev->dev);	\
K
Konrad Rzeszutek Wilk 已提交
300 301 302 303 304
									\
		return sprintf(buf, format, ##args);			\
	}								\
	static DEVICE_ATTR(name, S_IRUGO, show_##name, NULL)

305 306 307 308 309 310 311
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 已提交
312

313
static struct attribute *xen_vbdstat_attrs[] = {
K
Konrad Rzeszutek Wilk 已提交
314 315 316
	&dev_attr_oo_req.attr,
	&dev_attr_rd_req.attr,
	&dev_attr_wr_req.attr,
317
	&dev_attr_f_req.attr,
318
	&dev_attr_ds_req.attr,
K
Konrad Rzeszutek Wilk 已提交
319 320 321 322 323
	&dev_attr_rd_sect.attr,
	&dev_attr_wr_sect.attr,
	NULL
};

324
static struct attribute_group xen_vbdstat_group = {
K
Konrad Rzeszutek Wilk 已提交
325
	.name = "statistics",
326
	.attrs = xen_vbdstat_attrs,
K
Konrad Rzeszutek Wilk 已提交
327 328 329 330 331
};

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

332
static int xenvbd_sysfs_addif(struct xenbus_device *dev)
K
Konrad Rzeszutek Wilk 已提交
333 334 335 336
{
	int error;

	error = device_create_file(&dev->dev, &dev_attr_physical_device);
337
	if (error)
K
Konrad Rzeszutek Wilk 已提交
338 339 340 341 342 343
		goto fail1;

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

344
	error = sysfs_create_group(&dev->dev.kobj, &xen_vbdstat_group);
K
Konrad Rzeszutek Wilk 已提交
345 346 347 348 349
	if (error)
		goto fail3;

	return 0;

350
fail3:	sysfs_remove_group(&dev->dev.kobj, &xen_vbdstat_group);
K
Konrad Rzeszutek Wilk 已提交
351 352 353 354 355
fail2:	device_remove_file(&dev->dev, &dev_attr_mode);
fail1:	device_remove_file(&dev->dev, &dev_attr_physical_device);
	return error;
}

356
static void xenvbd_sysfs_delif(struct xenbus_device *dev)
K
Konrad Rzeszutek Wilk 已提交
357
{
358
	sysfs_remove_group(&dev->dev.kobj, &xen_vbdstat_group);
K
Konrad Rzeszutek Wilk 已提交
359 360 361 362
	device_remove_file(&dev->dev, &dev_attr_mode);
	device_remove_file(&dev->dev, &dev_attr_physical_device);
}

363

364
static void xen_vbd_free(struct xen_vbd *vbd)
365 366 367 368 369 370
{
	if (vbd->bdev)
		blkdev_put(vbd->bdev, vbd->readonly ? FMODE_READ : FMODE_WRITE);
	vbd->bdev = NULL;
}

371 372 373
static int xen_vbd_create(struct xen_blkif *blkif, blkif_vdev_t handle,
			  unsigned major, unsigned minor, int readonly,
			  int cdrom)
374
{
375
	struct xen_vbd *vbd;
376
	struct block_device *bdev;
377
	struct request_queue *q;
378 379 380 381 382 383 384 385 386 387 388 389

	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)) {
390
		pr_warn("xen_vbd_create: device %08x could not be opened\n",
391 392 393 394 395 396
			vbd->pdevice);
		return -ENOENT;
	}

	vbd->bdev = bdev;
	if (vbd->bdev->bd_disk == NULL) {
397
		pr_warn("xen_vbd_create: device %08x doesn't exist\n",
398
			vbd->pdevice);
399
		xen_vbd_free(vbd);
400 401
		return -ENOENT;
	}
402
	vbd->size = vbd_sz(vbd);
403 404 405 406 407 408

	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;

409 410 411 412
	q = bdev_get_queue(bdev);
	if (q && q->flush_flags)
		vbd->flush_support = true;

413 414 415
	if (q && blk_queue_secdiscard(q))
		vbd->discard_secure = true;

416
	pr_debug("Successful creation of handle=%04x (dom=%u)\n",
417 418 419
		handle, blkif->domid);
	return 0;
}
420
static int xen_blkbk_remove(struct xenbus_device *dev)
K
Konrad Rzeszutek Wilk 已提交
421
{
422
	struct backend_info *be = dev_get_drvdata(&dev->dev);
K
Konrad Rzeszutek Wilk 已提交
423

424
	pr_debug("%s %p %d\n", __func__, dev, dev->otherend_id);
K
Konrad Rzeszutek Wilk 已提交
425 426 427 428 429 430 431 432 433 434

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

435 436
	dev_set_drvdata(&dev->dev, NULL);

K
Konrad Rzeszutek Wilk 已提交
437
	if (be->blkif) {
438
		xen_blkif_disconnect(be->blkif);
439
		xen_blkif_put(be->blkif);
K
Konrad Rzeszutek Wilk 已提交
440 441
	}

442
	kfree(be->mode);
K
Konrad Rzeszutek Wilk 已提交
443 444 445 446
	kfree(be);
	return 0;
}

447 448
int xen_blkbk_flush_diskcache(struct xenbus_transaction xbt,
			      struct backend_info *be, int state)
K
Konrad Rzeszutek Wilk 已提交
449 450 451 452
{
	struct xenbus_device *dev = be->dev;
	int err;

453
	err = xenbus_printf(xbt, dev->nodename, "feature-flush-cache",
K
Konrad Rzeszutek Wilk 已提交
454 455
			    "%d", state);
	if (err)
456
		dev_warn(&dev->dev, "writing feature-flush-cache (%d)", err);
K
Konrad Rzeszutek Wilk 已提交
457 458 459 460

	return err;
}

461
static void xen_blkbk_discard(struct xenbus_transaction xbt, struct backend_info *be)
462 463 464 465
{
	struct xenbus_device *dev = be->dev;
	struct xen_blkif *blkif = be->blkif;
	int err;
466
	int state = 0, discard_enable;
467 468 469
	struct block_device *bdev = be->blkif->vbd.bdev;
	struct request_queue *q = bdev_get_queue(bdev);

470 471 472 473 474
	err = xenbus_scanf(XBT_NIL, dev->nodename, "discard-enable", "%d",
			   &discard_enable);
	if (err == 1 && !discard_enable)
		return;

475 476 477 478 479
	if (blk_queue_discard(q)) {
		err = xenbus_printf(xbt, dev->nodename,
			"discard-granularity", "%u",
			q->limits.discard_granularity);
		if (err) {
480 481
			dev_warn(&dev->dev, "writing discard-granularity (%d)", err);
			return;
482 483 484 485 486
		}
		err = xenbus_printf(xbt, dev->nodename,
			"discard-alignment", "%u",
			q->limits.discard_alignment);
		if (err) {
487 488
			dev_warn(&dev->dev, "writing discard-alignment (%d)", err);
			return;
489
		}
490 491 492 493 494 495
		state = 1;
		/* Optional. */
		err = xenbus_printf(xbt, dev->nodename,
				    "discard-secure", "%d",
				    blkif->vbd.discard_secure);
		if (err) {
496
			dev_warn(&dev->dev, "writing discard-secure (%d)", err);
497
			return;
498 499 500 501 502
		}
	}
	err = xenbus_printf(xbt, dev->nodename, "feature-discard",
			    "%d", state);
	if (err)
503
		dev_warn(&dev->dev, "writing feature-discard (%d)", err);
504
}
505 506 507 508 509 510 511 512 513
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)
514
		dev_warn(&dev->dev, "writing feature-barrier (%d)", err);
515 516 517

	return err;
}
518

519
/*
K
Konrad Rzeszutek Wilk 已提交
520 521 522 523
 * 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.
 */
524 525
static int xen_blkbk_probe(struct xenbus_device *dev,
			   const struct xenbus_device_id *id)
K
Konrad Rzeszutek Wilk 已提交
526 527 528 529
{
	int err;
	struct backend_info *be = kzalloc(sizeof(struct backend_info),
					  GFP_KERNEL);
530 531 532 533

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

K
Konrad Rzeszutek Wilk 已提交
534 535 536 537 538 539
	if (!be) {
		xenbus_dev_fatal(dev, -ENOMEM,
				 "allocating backend structure");
		return -ENOMEM;
	}
	be->dev = dev;
540
	dev_set_drvdata(&dev->dev, be);
K
Konrad Rzeszutek Wilk 已提交
541

542
	be->blkif = xen_blkif_alloc(dev->otherend_id);
K
Konrad Rzeszutek Wilk 已提交
543 544 545 546 547 548 549 550 551 552
	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 已提交
553 554
	err = xenbus_watch_pathfmt(dev, &be->backend_watch, backend_changed,
				   "%s/%s", dev->nodename, "physical-device");
K
Konrad Rzeszutek Wilk 已提交
555 556 557 558 559 560 561 562 563 564
	if (err)
		goto fail;

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

	return 0;

fail:
565
	pr_warn("%s failed\n", __func__);
566
	xen_blkbk_remove(dev);
K
Konrad Rzeszutek Wilk 已提交
567 568 569 570
	return err;
}


571
/*
K
Konrad Rzeszutek Wilk 已提交
572 573 574 575 576 577 578 579 580 581 582 583 584 585
 * 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;
586
	unsigned long handle;
K
Konrad Rzeszutek Wilk 已提交
587 588
	char *device_type;

589
	pr_debug("%s %p %d\n", __func__, dev, dev->otherend_id);
K
Konrad Rzeszutek Wilk 已提交
590 591 592 593

	err = xenbus_scanf(XBT_NIL, dev->nodename, "physical-device", "%x:%x",
			   &major, &minor);
	if (XENBUS_EXIST_ERR(err)) {
594 595 596 597 598
		/*
		 * 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 已提交
599 600 601 602 603 604 605
		return;
	}
	if (err != 2) {
		xenbus_dev_fatal(dev, err, "reading physical-device");
		return;
	}

606 607
	if (be->major | be->minor) {
		if (be->major != major || be->minor != minor)
608
			pr_warn("changing physical device (from %x:%x to %x:%x) not supported.\n",
609
				be->major, be->minor, major, minor);
K
Konrad Rzeszutek Wilk 已提交
610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626
		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);
	}

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

632 633
	be->major = major;
	be->minor = minor;
K
Konrad Rzeszutek Wilk 已提交
634

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

638 639 640
	if (err)
		xenbus_dev_fatal(dev, err, "creating vbd structure");
	else {
K
Konrad Rzeszutek Wilk 已提交
641 642
		err = xenvbd_sysfs_addif(dev);
		if (err) {
643
			xen_vbd_free(&be->blkif->vbd);
K
Konrad Rzeszutek Wilk 已提交
644 645
			xenbus_dev_fatal(dev, err, "creating sysfs entries");
		}
646
	}
K
Konrad Rzeszutek Wilk 已提交
647

648 649 650 651 652 653
	if (err) {
		kfree(be->mode);
		be->mode = NULL;
		be->major = 0;
		be->minor = 0;
	} else {
K
Konrad Rzeszutek Wilk 已提交
654
		/* We're potentially connected now */
655
		xen_update_blkif_status(be->blkif);
K
Konrad Rzeszutek Wilk 已提交
656 657 658 659
	}
}


660
/*
K
Konrad Rzeszutek Wilk 已提交
661 662 663 664 665
 * Callback received when the frontend's state changes.
 */
static void frontend_changed(struct xenbus_device *dev,
			     enum xenbus_state frontend_state)
{
666
	struct backend_info *be = dev_get_drvdata(&dev->dev);
K
Konrad Rzeszutek Wilk 已提交
667 668
	int err;

669
	pr_debug("%s %p %s\n", __func__, dev, xenbus_strstate(frontend_state));
K
Konrad Rzeszutek Wilk 已提交
670 671 672 673

	switch (frontend_state) {
	case XenbusStateInitialising:
		if (dev->state == XenbusStateClosed) {
674
			pr_info("%s: prepare for reconnect\n", dev->nodename);
K
Konrad Rzeszutek Wilk 已提交
675 676 677 678 679 680
			xenbus_switch_state(dev, XenbusStateInitWait);
		}
		break;

	case XenbusStateInitialised:
	case XenbusStateConnected:
681 682
		/*
		 * Ensure we connect even when two watches fire in
683
		 * close succession and we miss the intermediate value
684 685
		 * of frontend_state.
		 */
K
Konrad Rzeszutek Wilk 已提交
686 687 688
		if (dev->state == XenbusStateConnected)
			break;

689 690
		/*
		 * Enforce precondition before potential leak point.
691
		 * xen_blkif_disconnect() is idempotent.
K
Keir Fraser 已提交
692
		 */
693 694 695 696 697
		err = xen_blkif_disconnect(be->blkif);
		if (err) {
			xenbus_dev_fatal(dev, err, "pending I/O");
			break;
		}
K
Keir Fraser 已提交
698

K
Konrad Rzeszutek Wilk 已提交
699 700 701
		err = connect_ring(be);
		if (err)
			break;
702
		xen_update_blkif_status(be->blkif);
K
Konrad Rzeszutek Wilk 已提交
703 704 705 706 707 708 709
		break;

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

	case XenbusStateClosed:
710
		xen_blkif_disconnect(be->blkif);
K
Konrad Rzeszutek Wilk 已提交
711 712 713 714 715
		xenbus_switch_state(dev, XenbusStateClosed);
		if (xenbus_dev_is_online(dev))
			break;
		/* fall through if not online */
	case XenbusStateUnknown:
716
		/* implies xen_blkif_disconnect() via xen_blkbk_remove() */
K
Konrad Rzeszutek Wilk 已提交
717 718 719 720 721 722 723 724 725 726 727 728 729 730
		device_unregister(&dev->dev);
		break;

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


/* ** Connection ** */


731
/*
K
Konrad Rzeszutek Wilk 已提交
732 733 734 735 736 737 738 739 740
 * 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;

741
	pr_debug("%s %s\n", __func__, dev->otherend);
K
Konrad Rzeszutek Wilk 已提交
742 743 744 745 746 747 748 749 750

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

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

754
	xen_blkbk_discard(xbt, be);
755

756
	xen_blkbk_barrier(xbt, be, be->blkif->vbd.flush_support);
757

758 759 760 761 762 763
	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;
	}
764 765 766 767 768
	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);
769

K
Konrad Rzeszutek Wilk 已提交
770
	err = xenbus_printf(xbt, dev->nodename, "sectors", "%llu",
771
			    (unsigned long long)vbd_sz(&be->blkif->vbd));
K
Konrad Rzeszutek Wilk 已提交
772 773 774 775 776 777 778 779
	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",
780 781
			    be->blkif->vbd.type |
			    (be->blkif->vbd.readonly ? VDISK_READONLY : 0));
K
Konrad Rzeszutek Wilk 已提交
782 783 784 785 786 787
	if (err) {
		xenbus_dev_fatal(dev, err, "writing %s/info",
				 dev->nodename);
		goto abort;
	}
	err = xenbus_printf(xbt, dev->nodename, "sector-size", "%lu",
788 789
			    (unsigned long)
			    bdev_logical_block_size(be->blkif->vbd.bdev));
K
Konrad Rzeszutek Wilk 已提交
790 791 792 793 794
	if (err) {
		xenbus_dev_fatal(dev, err, "writing %s/sector-size",
				 dev->nodename);
		goto abort;
	}
795 796 797 798 799
	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 已提交
800 801 802 803 804 805 806 807 808

	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)
809
		xenbus_dev_fatal(dev, err, "%s: switching to Connected state",
K
Konrad Rzeszutek Wilk 已提交
810 811 812 813 814 815 816 817 818 819 820 821 822
				 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;
823
	unsigned int pers_grants;
K
Konrad Rzeszutek Wilk 已提交
824
	char protocol[64] = "";
825 826
	struct pending_req *req, *n;
	int err, i, j;
K
Konrad Rzeszutek Wilk 已提交
827

828
	pr_debug("%s %s\n", __func__, dev->otherend);
K
Konrad Rzeszutek Wilk 已提交
829

830 831
	err = xenbus_gather(XBT_NIL, dev->otherend, "ring-ref", "%lu",
			    &ring_ref, "event-channel", "%u", &evtchn, NULL);
K
Konrad Rzeszutek Wilk 已提交
832 833 834 835 836 837 838
	if (err) {
		xenbus_dev_fatal(dev, err,
				 "reading %s/ring-ref and event-channel",
				 dev->otherend);
		return err;
	}

839
	be->blkif->blk_protocol = BLKIF_PROTOCOL_DEFAULT;
K
Konrad Rzeszutek Wilk 已提交
840 841 842
	err = xenbus_gather(XBT_NIL, dev->otherend, "protocol",
			    "%63s", protocol, NULL);
	if (err)
843
		strcpy(protocol, "unspecified, assuming default");
K
Konrad Rzeszutek Wilk 已提交
844 845 846 847 848 849 850 851 852 853
	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;
	}
854
	err = xenbus_gather(XBT_NIL, dev->otherend,
855
			    "feature-persistent", "%u",
856 857 858 859 860 861 862
			    &pers_grants, NULL);
	if (err)
		pers_grants = 0;

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

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

867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884
	for (i = 0; i < XEN_BLKIF_REQS_PER_PAGE; i++) {
		req = kzalloc(sizeof(*req), GFP_KERNEL);
		if (!req)
			goto fail;
		list_add_tail(&req->free_list, &be->blkif->pending_free);
		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 已提交
885
	/* Map the shared frame, irq etc. */
886
	err = xen_blkif_map(be->blkif, ring_ref, evtchn);
K
Konrad Rzeszutek Wilk 已提交
887 888 889 890 891 892 893
	if (err) {
		xenbus_dev_fatal(dev, err, "mapping ring-ref %lu port %u",
				 ring_ref, evtchn);
		return err;
	}

	return 0;
894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910

fail:
	list_for_each_entry_safe(req, n, &be->blkif->pending_free, free_list) {
		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;
K
Konrad Rzeszutek Wilk 已提交
911 912
}

913
static const struct xenbus_device_id xen_blkbk_ids[] = {
K
Konrad Rzeszutek Wilk 已提交
914 915 916 917
	{ "vbd" },
	{ "" }
};

918 919
static struct xenbus_driver xen_blkbk_driver = {
	.ids  = xen_blkbk_ids,
920 921
	.probe = xen_blkbk_probe,
	.remove = xen_blkbk_remove,
K
Konrad Rzeszutek Wilk 已提交
922
	.otherend_changed = frontend_changed
923
};
K
Konrad Rzeszutek Wilk 已提交
924

925
int xen_blkif_xenbus_init(void)
K
Konrad Rzeszutek Wilk 已提交
926
{
927
	return xenbus_register_backend(&xen_blkbk_driver);
K
Konrad Rzeszutek Wilk 已提交
928
}