2019-05-27 14:55:06 +08:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2011-04-15 06:25:47 +08:00
|
|
|
/* Xenbus code for blkif backend
|
|
|
|
Copyright (C) 2005 Rusty Russell <rusty@rustcorp.com.au>
|
|
|
|
Copyright (C) 2005 XenSource Ltd
|
|
|
|
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
2015-04-01 23:04:22 +08:00
|
|
|
#define pr_fmt(fmt) "xen-blkback: " fmt
|
|
|
|
|
2011-04-15 06:25:47 +08:00
|
|
|
#include <stdarg.h>
|
|
|
|
#include <linux/module.h>
|
|
|
|
#include <linux/kthread.h>
|
2011-04-20 22:57:29 +08:00
|
|
|
#include <xen/events.h>
|
|
|
|
#include <xen/grant_table.h>
|
2011-04-15 06:25:47 +08:00
|
|
|
#include "common.h"
|
|
|
|
|
2016-02-04 05:40:05 +08:00
|
|
|
/* On the XenBus the max length of 'ring-ref%u'. */
|
2015-06-03 13:40:03 +08:00
|
|
|
#define RINGREF_NAME_LEN (20)
|
2015-03-27 21:15:54 +08:00
|
|
|
|
2011-04-15 05:33:30 +08:00
|
|
|
struct backend_info {
|
2011-05-12 03:57:09 +08:00
|
|
|
struct xenbus_device *dev;
|
2011-05-13 06:02:28 +08:00
|
|
|
struct xen_blkif *blkif;
|
2011-05-12 03:57:09 +08:00
|
|
|
struct xenbus_watch backend_watch;
|
|
|
|
unsigned major;
|
|
|
|
unsigned minor;
|
|
|
|
char *mode;
|
2011-04-15 06:25:47 +08:00
|
|
|
};
|
|
|
|
|
2011-04-20 23:50:43 +08:00
|
|
|
static struct kmem_cache *xen_blkif_cachep;
|
2011-04-15 06:25:47 +08:00
|
|
|
static void connect(struct backend_info *);
|
|
|
|
static int connect_ring(struct backend_info *);
|
2017-02-09 21:39:57 +08:00
|
|
|
static void backend_changed(struct xenbus_watch *, const char *,
|
|
|
|
const char *);
|
2014-05-21 04:28:50 +08:00
|
|
|
static void xen_blkif_free(struct xen_blkif *blkif);
|
|
|
|
static void xen_vbd_free(struct xen_vbd *vbd);
|
2011-04-15 06:25:47 +08:00
|
|
|
|
2011-04-20 23:50:43 +08:00
|
|
|
struct xenbus_device *xen_blkbk_xenbus(struct backend_info *be)
|
2010-03-19 06:35:05 +08:00
|
|
|
{
|
|
|
|
return be->dev;
|
|
|
|
}
|
|
|
|
|
2014-05-21 04:28:50 +08:00
|
|
|
/*
|
|
|
|
* 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);
|
|
|
|
}
|
|
|
|
|
2011-05-13 04:47:48 +08:00
|
|
|
static int blkback_name(struct xen_blkif *blkif, char *buf)
|
2011-04-15 06:25:47 +08:00
|
|
|
{
|
|
|
|
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);
|
|
|
|
|
2011-04-15 05:33:30 +08:00
|
|
|
devname = strstr(devpath, "/dev/");
|
|
|
|
if (devname != NULL)
|
2011-04-15 06:25:47 +08:00
|
|
|
devname += strlen("/dev/");
|
|
|
|
else
|
|
|
|
devname = devpath;
|
|
|
|
|
2016-02-04 05:40:05 +08:00
|
|
|
snprintf(buf, TASK_COMM_LEN, "%d.%s", blkif->domid, devname);
|
2011-04-15 06:25:47 +08:00
|
|
|
kfree(devpath);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2011-05-13 04:47:48 +08:00
|
|
|
static void xen_update_blkif_status(struct xen_blkif *blkif)
|
2011-04-15 06:25:47 +08:00
|
|
|
{
|
|
|
|
int err;
|
2016-02-04 05:40:05 +08:00
|
|
|
char name[TASK_COMM_LEN];
|
2015-12-12 01:08:48 +08:00
|
|
|
struct xen_blkif_ring *ring;
|
|
|
|
int i;
|
2011-04-15 06:25:47 +08:00
|
|
|
|
|
|
|
/* Not ready to connect? */
|
2015-12-12 01:08:48 +08:00
|
|
|
if (!blkif->rings || !blkif->rings[0].irq || !blkif->vbd.bdev)
|
2011-04-15 06:25:47 +08:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2010-07-22 03:41:45 +08:00
|
|
|
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);
|
|
|
|
|
2015-12-12 01:08:48 +08:00
|
|
|
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);
|
2011-04-15 06:25:47 +08:00
|
|
|
}
|
2015-12-12 01:08:48 +08:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int xen_blkif_alloc_rings(struct xen_blkif *blkif)
|
|
|
|
{
|
|
|
|
unsigned int r;
|
|
|
|
|
treewide: kzalloc() -> kcalloc()
The kzalloc() function has a 2-factor argument form, kcalloc(). This
patch replaces cases of:
kzalloc(a * b, gfp)
with:
kcalloc(a * b, gfp)
as well as handling cases of:
kzalloc(a * b * c, gfp)
with:
kzalloc(array3_size(a, b, c), gfp)
as it's slightly less ugly than:
kzalloc_array(array_size(a, b), c, gfp)
This does, however, attempt to ignore constant size factors like:
kzalloc(4 * 1024, gfp)
though any constants defined via macros get caught up in the conversion.
Any factors with a sizeof() of "unsigned char", "char", and "u8" were
dropped, since they're redundant.
The Coccinelle script used for this was:
// Fix redundant parens around sizeof().
@@
type TYPE;
expression THING, E;
@@
(
kzalloc(
- (sizeof(TYPE)) * E
+ sizeof(TYPE) * E
, ...)
|
kzalloc(
- (sizeof(THING)) * E
+ sizeof(THING) * E
, ...)
)
// Drop single-byte sizes and redundant parens.
@@
expression COUNT;
typedef u8;
typedef __u8;
@@
(
kzalloc(
- sizeof(u8) * (COUNT)
+ COUNT
, ...)
|
kzalloc(
- sizeof(__u8) * (COUNT)
+ COUNT
, ...)
|
kzalloc(
- sizeof(char) * (COUNT)
+ COUNT
, ...)
|
kzalloc(
- sizeof(unsigned char) * (COUNT)
+ COUNT
, ...)
|
kzalloc(
- sizeof(u8) * COUNT
+ COUNT
, ...)
|
kzalloc(
- sizeof(__u8) * COUNT
+ COUNT
, ...)
|
kzalloc(
- sizeof(char) * COUNT
+ COUNT
, ...)
|
kzalloc(
- sizeof(unsigned char) * COUNT
+ COUNT
, ...)
)
// 2-factor product with sizeof(type/expression) and identifier or constant.
@@
type TYPE;
expression THING;
identifier COUNT_ID;
constant COUNT_CONST;
@@
(
- kzalloc
+ kcalloc
(
- sizeof(TYPE) * (COUNT_ID)
+ COUNT_ID, sizeof(TYPE)
, ...)
|
- kzalloc
+ kcalloc
(
- sizeof(TYPE) * COUNT_ID
+ COUNT_ID, sizeof(TYPE)
, ...)
|
- kzalloc
+ kcalloc
(
- sizeof(TYPE) * (COUNT_CONST)
+ COUNT_CONST, sizeof(TYPE)
, ...)
|
- kzalloc
+ kcalloc
(
- sizeof(TYPE) * COUNT_CONST
+ COUNT_CONST, sizeof(TYPE)
, ...)
|
- kzalloc
+ kcalloc
(
- sizeof(THING) * (COUNT_ID)
+ COUNT_ID, sizeof(THING)
, ...)
|
- kzalloc
+ kcalloc
(
- sizeof(THING) * COUNT_ID
+ COUNT_ID, sizeof(THING)
, ...)
|
- kzalloc
+ kcalloc
(
- sizeof(THING) * (COUNT_CONST)
+ COUNT_CONST, sizeof(THING)
, ...)
|
- kzalloc
+ kcalloc
(
- sizeof(THING) * COUNT_CONST
+ COUNT_CONST, sizeof(THING)
, ...)
)
// 2-factor product, only identifiers.
@@
identifier SIZE, COUNT;
@@
- kzalloc
+ kcalloc
(
- SIZE * COUNT
+ COUNT, SIZE
, ...)
// 3-factor product with 1 sizeof(type) or sizeof(expression), with
// redundant parens removed.
@@
expression THING;
identifier STRIDE, COUNT;
type TYPE;
@@
(
kzalloc(
- sizeof(TYPE) * (COUNT) * (STRIDE)
+ array3_size(COUNT, STRIDE, sizeof(TYPE))
, ...)
|
kzalloc(
- sizeof(TYPE) * (COUNT) * STRIDE
+ array3_size(COUNT, STRIDE, sizeof(TYPE))
, ...)
|
kzalloc(
- sizeof(TYPE) * COUNT * (STRIDE)
+ array3_size(COUNT, STRIDE, sizeof(TYPE))
, ...)
|
kzalloc(
- sizeof(TYPE) * COUNT * STRIDE
+ array3_size(COUNT, STRIDE, sizeof(TYPE))
, ...)
|
kzalloc(
- sizeof(THING) * (COUNT) * (STRIDE)
+ array3_size(COUNT, STRIDE, sizeof(THING))
, ...)
|
kzalloc(
- sizeof(THING) * (COUNT) * STRIDE
+ array3_size(COUNT, STRIDE, sizeof(THING))
, ...)
|
kzalloc(
- sizeof(THING) * COUNT * (STRIDE)
+ array3_size(COUNT, STRIDE, sizeof(THING))
, ...)
|
kzalloc(
- sizeof(THING) * COUNT * STRIDE
+ array3_size(COUNT, STRIDE, sizeof(THING))
, ...)
)
// 3-factor product with 2 sizeof(variable), with redundant parens removed.
@@
expression THING1, THING2;
identifier COUNT;
type TYPE1, TYPE2;
@@
(
kzalloc(
- sizeof(TYPE1) * sizeof(TYPE2) * COUNT
+ array3_size(COUNT, sizeof(TYPE1), sizeof(TYPE2))
, ...)
|
kzalloc(
- sizeof(TYPE1) * sizeof(THING2) * (COUNT)
+ array3_size(COUNT, sizeof(TYPE1), sizeof(TYPE2))
, ...)
|
kzalloc(
- sizeof(THING1) * sizeof(THING2) * COUNT
+ array3_size(COUNT, sizeof(THING1), sizeof(THING2))
, ...)
|
kzalloc(
- sizeof(THING1) * sizeof(THING2) * (COUNT)
+ array3_size(COUNT, sizeof(THING1), sizeof(THING2))
, ...)
|
kzalloc(
- sizeof(TYPE1) * sizeof(THING2) * COUNT
+ array3_size(COUNT, sizeof(TYPE1), sizeof(THING2))
, ...)
|
kzalloc(
- sizeof(TYPE1) * sizeof(THING2) * (COUNT)
+ array3_size(COUNT, sizeof(TYPE1), sizeof(THING2))
, ...)
)
// 3-factor product, only identifiers, with redundant parens removed.
@@
identifier STRIDE, SIZE, COUNT;
@@
(
kzalloc(
- (COUNT) * STRIDE * SIZE
+ array3_size(COUNT, STRIDE, SIZE)
, ...)
|
kzalloc(
- COUNT * (STRIDE) * SIZE
+ array3_size(COUNT, STRIDE, SIZE)
, ...)
|
kzalloc(
- COUNT * STRIDE * (SIZE)
+ array3_size(COUNT, STRIDE, SIZE)
, ...)
|
kzalloc(
- (COUNT) * (STRIDE) * SIZE
+ array3_size(COUNT, STRIDE, SIZE)
, ...)
|
kzalloc(
- COUNT * (STRIDE) * (SIZE)
+ array3_size(COUNT, STRIDE, SIZE)
, ...)
|
kzalloc(
- (COUNT) * STRIDE * (SIZE)
+ array3_size(COUNT, STRIDE, SIZE)
, ...)
|
kzalloc(
- (COUNT) * (STRIDE) * (SIZE)
+ array3_size(COUNT, STRIDE, SIZE)
, ...)
|
kzalloc(
- COUNT * STRIDE * SIZE
+ array3_size(COUNT, STRIDE, SIZE)
, ...)
)
// Any remaining multi-factor products, first at least 3-factor products,
// when they're not all constants...
@@
expression E1, E2, E3;
constant C1, C2, C3;
@@
(
kzalloc(C1 * C2 * C3, ...)
|
kzalloc(
- (E1) * E2 * E3
+ array3_size(E1, E2, E3)
, ...)
|
kzalloc(
- (E1) * (E2) * E3
+ array3_size(E1, E2, E3)
, ...)
|
kzalloc(
- (E1) * (E2) * (E3)
+ array3_size(E1, E2, E3)
, ...)
|
kzalloc(
- E1 * E2 * E3
+ array3_size(E1, E2, E3)
, ...)
)
// And then all remaining 2 factors products when they're not all constants,
// keeping sizeof() as the second factor argument.
@@
expression THING, E1, E2;
type TYPE;
constant C1, C2, C3;
@@
(
kzalloc(sizeof(THING) * C2, ...)
|
kzalloc(sizeof(TYPE) * C2, ...)
|
kzalloc(C1 * C2 * C3, ...)
|
kzalloc(C1 * C2, ...)
|
- kzalloc
+ kcalloc
(
- sizeof(TYPE) * (E2)
+ E2, sizeof(TYPE)
, ...)
|
- kzalloc
+ kcalloc
(
- sizeof(TYPE) * E2
+ E2, sizeof(TYPE)
, ...)
|
- kzalloc
+ kcalloc
(
- sizeof(THING) * (E2)
+ E2, sizeof(THING)
, ...)
|
- kzalloc
+ kcalloc
(
- sizeof(THING) * E2
+ E2, sizeof(THING)
, ...)
|
- kzalloc
+ kcalloc
(
- (E1) * E2
+ E1, E2
, ...)
|
- kzalloc
+ kcalloc
(
- (E1) * (E2)
+ E1, E2
, ...)
|
- kzalloc
+ kcalloc
(
- E1 * E2
+ E1, E2
, ...)
)
Signed-off-by: Kees Cook <keescook@chromium.org>
2018-06-13 05:03:40 +08:00
|
|
|
blkif->rings = kcalloc(blkif->nr_rings, sizeof(struct xen_blkif_ring),
|
|
|
|
GFP_KERNEL);
|
2015-12-12 01:08:48 +08:00
|
|
|
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);
|
2015-11-14 11:12:19 +08:00
|
|
|
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);
|
2015-12-12 01:08:48 +08:00
|
|
|
|
|
|
|
spin_lock_init(&ring->pending_free_lock);
|
|
|
|
init_waitqueue_head(&ring->pending_free_wq);
|
|
|
|
init_waitqueue_head(&ring->shutdown_wq);
|
|
|
|
ring->blkif = blkif;
|
2015-12-09 07:44:02 +08:00
|
|
|
ring->st_print = jiffies;
|
2017-05-18 23:28:47 +08:00
|
|
|
ring->active = true;
|
2015-12-12 01:08:48 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
2011-04-15 06:25:47 +08:00
|
|
|
}
|
|
|
|
|
2011-05-13 04:47:48 +08:00
|
|
|
static struct xen_blkif *xen_blkif_alloc(domid_t domid)
|
2011-04-20 22:57:29 +08:00
|
|
|
{
|
2011-05-13 04:47:48 +08:00
|
|
|
struct xen_blkif *blkif;
|
2011-04-20 22:57:29 +08:00
|
|
|
|
2013-04-18 22:06:54 +08:00
|
|
|
BUILD_BUG_ON(MAX_INDIRECT_PAGES > BLKIF_MAX_INDIRECT_PAGES_PER_REQUEST);
|
2011-04-20 22:57:29 +08:00
|
|
|
|
2012-08-27 12:28:57 +08:00
|
|
|
blkif = kmem_cache_zalloc(xen_blkif_cachep, GFP_KERNEL);
|
2011-04-20 22:57:29 +08:00
|
|
|
if (!blkif)
|
|
|
|
return ERR_PTR(-ENOMEM);
|
|
|
|
|
|
|
|
blkif->domid = domid;
|
|
|
|
atomic_set(&blkif->refcnt, 1);
|
2011-10-10 12:42:22 +08:00
|
|
|
init_completion(&blkif->drain_complete);
|
2024-06-11 20:08:33 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Because freeing back to the cache may be deferred, it is not
|
|
|
|
* safe to unload the module (and hence destroy the cache) until
|
|
|
|
* this has completed. To prevent premature unloading, take an
|
|
|
|
* extra module reference here and release only when the object
|
|
|
|
* has been freed back to the cache.
|
|
|
|
*/
|
|
|
|
__module_get(THIS_MODULE);
|
2015-11-14 11:12:15 +08:00
|
|
|
INIT_WORK(&blkif->free_work, xen_blkif_deferred_free);
|
2011-04-20 22:57:29 +08:00
|
|
|
|
|
|
|
return blkif;
|
|
|
|
}
|
|
|
|
|
2015-11-14 11:12:15 +08:00
|
|
|
static int xen_blkif_map(struct xen_blkif_ring *ring, grant_ref_t *gref,
|
2015-06-03 13:40:03 +08:00
|
|
|
unsigned int nr_grefs, unsigned int evtchn)
|
2011-04-20 22:57:29 +08:00
|
|
|
{
|
|
|
|
int err;
|
2015-11-14 11:12:15 +08:00
|
|
|
struct xen_blkif *blkif = ring->blkif;
|
2011-04-20 22:57:29 +08:00
|
|
|
|
|
|
|
/* Already connected through? */
|
2015-11-14 11:12:15 +08:00
|
|
|
if (ring->irq)
|
2011-04-20 22:57:29 +08:00
|
|
|
return 0;
|
|
|
|
|
2015-06-03 13:40:03 +08:00
|
|
|
err = xenbus_map_ring_valloc(blkif->be->dev, gref, nr_grefs,
|
2015-11-14 11:12:15 +08:00
|
|
|
&ring->blk_ring);
|
2011-09-29 23:53:30 +08:00
|
|
|
if (err < 0)
|
2011-04-20 22:57:29 +08:00
|
|
|
return err;
|
|
|
|
|
|
|
|
switch (blkif->blk_protocol) {
|
|
|
|
case BLKIF_PROTOCOL_NATIVE:
|
|
|
|
{
|
|
|
|
struct blkif_sring *sring;
|
2015-11-14 11:12:15 +08:00
|
|
|
sring = (struct blkif_sring *)ring->blk_ring;
|
|
|
|
BACK_RING_INIT(&ring->blk_rings.native, sring,
|
2015-05-05 23:25:56 +08:00
|
|
|
XEN_PAGE_SIZE * nr_grefs);
|
2011-04-20 22:57:29 +08:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case BLKIF_PROTOCOL_X86_32:
|
|
|
|
{
|
|
|
|
struct blkif_x86_32_sring *sring_x86_32;
|
2015-11-14 11:12:15 +08:00
|
|
|
sring_x86_32 = (struct blkif_x86_32_sring *)ring->blk_ring;
|
|
|
|
BACK_RING_INIT(&ring->blk_rings.x86_32, sring_x86_32,
|
2015-05-05 23:25:56 +08:00
|
|
|
XEN_PAGE_SIZE * nr_grefs);
|
2011-04-20 22:57:29 +08:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case BLKIF_PROTOCOL_X86_64:
|
|
|
|
{
|
|
|
|
struct blkif_x86_64_sring *sring_x86_64;
|
2015-11-14 11:12:15 +08:00
|
|
|
sring_x86_64 = (struct blkif_x86_64_sring *)ring->blk_ring;
|
|
|
|
BACK_RING_INIT(&ring->blk_rings.x86_64, sring_x86_64,
|
2015-05-05 23:25:56 +08:00
|
|
|
XEN_PAGE_SIZE * nr_grefs);
|
2011-04-20 22:57:29 +08:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
BUG();
|
|
|
|
}
|
|
|
|
|
2024-06-11 20:26:44 +08:00
|
|
|
err = bind_interdomain_evtchn_to_irqhandler_lateeoi(blkif->domid,
|
|
|
|
evtchn, xen_blkif_be_int, 0, "blkif-backend", ring);
|
2011-04-20 22:57:29 +08:00
|
|
|
if (err < 0) {
|
2015-11-14 11:12:15 +08:00
|
|
|
xenbus_unmap_ring_vfree(blkif->be->dev, ring->blk_ring);
|
|
|
|
ring->blk_rings.common.sring = NULL;
|
2011-04-20 22:57:29 +08:00
|
|
|
return err;
|
|
|
|
}
|
2015-11-14 11:12:15 +08:00
|
|
|
ring->irq = err;
|
2011-04-20 22:57:29 +08:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-05-21 04:28:50 +08:00
|
|
|
static int xen_blkif_disconnect(struct xen_blkif *blkif)
|
2011-04-20 22:57:29 +08:00
|
|
|
{
|
2015-09-04 18:08:07 +08:00
|
|
|
struct pending_req *req, *n;
|
2015-12-12 01:08:48 +08:00
|
|
|
unsigned int j, r;
|
xen-blkback: stop blkback thread of every queue in xen_blkif_disconnect
In xen_blkif_disconnect, before checking inflight I/O, following code
stops the blkback thread,
if (ring->xenblkd) {
kthread_stop(ring->xenblkd);
wake_up(&ring->shutdown_wq);
}
If there is inflight I/O in any non-last queue, blkback returns -EBUSY
directly, and above code would not be called to stop thread of remaining
queue and processs them. When removing vbd device with lots of disk I/O
load, some queues with inflight I/O still have blkback thread running even
though the corresponding vbd device or guest is gone.
And this could cause some problems, for example, if the backend device type
is file, some loop devices and blkback thread always lingers there forever
after guest is destroyed, and this causes failure of umounting repositories
unless rebooting the dom0.
This patch allows thread of every queue has the chance to get stopped.
Otherwise, only thread of queue previous to(including) first busy one get
stopped, blkthread of remaining queue will still run. So stop all threads
properly and return -EBUSY if any queue has inflight I/O.
Signed-off-by: Annie Li <annie.li@oracle.com>
Reviewed-by: Herbert van den Bergh <herbert.van.den.bergh@oracle.com>
Reviewed-by: Bhavesh Davda <bhavesh.davda@oracle.com>
Reviewed-by: Adnan Misherfi <adnan.misherfi@oracle.com>
Acked-by: Roger Pau Monné <roger.pau@citrix.com>
Signed-off-by: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
2017-08-25 05:25:59 +08:00
|
|
|
bool busy = false;
|
2015-09-04 18:08:07 +08:00
|
|
|
|
2015-12-12 01:08:48 +08:00
|
|
|
for (r = 0; r < blkif->nr_rings; r++) {
|
|
|
|
struct xen_blkif_ring *ring = &blkif->rings[r];
|
|
|
|
unsigned int i = 0;
|
2011-04-20 22:57:29 +08:00
|
|
|
|
2017-05-18 23:28:47 +08:00
|
|
|
if (!ring->active)
|
|
|
|
continue;
|
|
|
|
|
2015-12-12 01:08:48 +08:00
|
|
|
if (ring->xenblkd) {
|
|
|
|
kthread_stop(ring->xenblkd);
|
2024-06-11 20:26:44 +08:00
|
|
|
ring->xenblkd = NULL;
|
2015-12-12 01:08:48 +08:00
|
|
|
wake_up(&ring->shutdown_wq);
|
|
|
|
}
|
2011-04-20 22:57:29 +08:00
|
|
|
|
2015-12-12 01:08:48 +08:00
|
|
|
/* 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.
|
|
|
|
*/
|
xen-blkback: stop blkback thread of every queue in xen_blkif_disconnect
In xen_blkif_disconnect, before checking inflight I/O, following code
stops the blkback thread,
if (ring->xenblkd) {
kthread_stop(ring->xenblkd);
wake_up(&ring->shutdown_wq);
}
If there is inflight I/O in any non-last queue, blkback returns -EBUSY
directly, and above code would not be called to stop thread of remaining
queue and processs them. When removing vbd device with lots of disk I/O
load, some queues with inflight I/O still have blkback thread running even
though the corresponding vbd device or guest is gone.
And this could cause some problems, for example, if the backend device type
is file, some loop devices and blkback thread always lingers there forever
after guest is destroyed, and this causes failure of umounting repositories
unless rebooting the dom0.
This patch allows thread of every queue has the chance to get stopped.
Otherwise, only thread of queue previous to(including) first busy one get
stopped, blkthread of remaining queue will still run. So stop all threads
properly and return -EBUSY if any queue has inflight I/O.
Signed-off-by: Annie Li <annie.li@oracle.com>
Reviewed-by: Herbert van den Bergh <herbert.van.den.bergh@oracle.com>
Reviewed-by: Bhavesh Davda <bhavesh.davda@oracle.com>
Reviewed-by: Adnan Misherfi <adnan.misherfi@oracle.com>
Acked-by: Roger Pau Monné <roger.pau@citrix.com>
Signed-off-by: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
2017-08-25 05:25:59 +08:00
|
|
|
if (atomic_read(&ring->inflight) > 0) {
|
|
|
|
busy = true;
|
|
|
|
continue;
|
|
|
|
}
|
2011-04-20 22:57:29 +08:00
|
|
|
|
2015-12-12 01:08:48 +08:00
|
|
|
if (ring->irq) {
|
|
|
|
unbind_from_irqhandler(ring->irq, ring);
|
|
|
|
ring->irq = 0;
|
|
|
|
}
|
2014-05-21 04:28:50 +08:00
|
|
|
|
2015-12-12 01:08:48 +08:00
|
|
|
if (ring->blk_rings.common.sring) {
|
|
|
|
xenbus_unmap_ring_vfree(blkif->be->dev, ring->blk_ring);
|
|
|
|
ring->blk_rings.common.sring = NULL;
|
|
|
|
}
|
2014-09-08 21:21:33 +08:00
|
|
|
|
2015-12-12 01:08:48 +08:00
|
|
|
/* Remove all persistent grants and the cache of ballooned pages. */
|
|
|
|
xen_blkbk_free_caches(ring);
|
2015-09-04 18:08:07 +08:00
|
|
|
|
2015-12-12 01:08:48 +08:00
|
|
|
/* 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);
|
2015-09-04 18:08:07 +08:00
|
|
|
|
2015-12-12 01:08:48 +08:00
|
|
|
for (j = 0; j < MAX_INDIRECT_SEGMENTS; j++)
|
|
|
|
kfree(req->segments[j]);
|
2015-09-04 18:08:07 +08:00
|
|
|
|
2015-12-12 01:08:48 +08:00
|
|
|
for (j = 0; j < MAX_INDIRECT_PAGES; j++)
|
|
|
|
kfree(req->indirect_pages[j]);
|
2015-09-04 18:08:07 +08:00
|
|
|
|
2015-12-12 01:08:48 +08:00
|
|
|
kfree(req);
|
|
|
|
i++;
|
|
|
|
}
|
|
|
|
|
2015-11-14 11:12:19 +08:00
|
|
|
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);
|
2015-12-12 01:08:48 +08:00
|
|
|
WARN_ON(i != (XEN_BLKIF_REQS_PER_PAGE * blkif->nr_ring_pages));
|
2017-05-18 23:28:47 +08:00
|
|
|
ring->active = false;
|
2015-12-12 01:08:48 +08:00
|
|
|
}
|
xen-blkback: stop blkback thread of every queue in xen_blkif_disconnect
In xen_blkif_disconnect, before checking inflight I/O, following code
stops the blkback thread,
if (ring->xenblkd) {
kthread_stop(ring->xenblkd);
wake_up(&ring->shutdown_wq);
}
If there is inflight I/O in any non-last queue, blkback returns -EBUSY
directly, and above code would not be called to stop thread of remaining
queue and processs them. When removing vbd device with lots of disk I/O
load, some queues with inflight I/O still have blkback thread running even
though the corresponding vbd device or guest is gone.
And this could cause some problems, for example, if the backend device type
is file, some loop devices and blkback thread always lingers there forever
after guest is destroyed, and this causes failure of umounting repositories
unless rebooting the dom0.
This patch allows thread of every queue has the chance to get stopped.
Otherwise, only thread of queue previous to(including) first busy one get
stopped, blkthread of remaining queue will still run. So stop all threads
properly and return -EBUSY if any queue has inflight I/O.
Signed-off-by: Annie Li <annie.li@oracle.com>
Reviewed-by: Herbert van den Bergh <herbert.van.den.bergh@oracle.com>
Reviewed-by: Bhavesh Davda <bhavesh.davda@oracle.com>
Reviewed-by: Adnan Misherfi <adnan.misherfi@oracle.com>
Acked-by: Roger Pau Monné <roger.pau@citrix.com>
Signed-off-by: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
2017-08-25 05:25:59 +08:00
|
|
|
if (busy)
|
|
|
|
return -EBUSY;
|
|
|
|
|
2015-09-04 18:08:07 +08:00
|
|
|
blkif->nr_ring_pages = 0;
|
2015-12-10 09:16:48 +08:00
|
|
|
/*
|
|
|
|
* blkif->rings was allocated in connect_ring, so we should free it in
|
|
|
|
* here.
|
|
|
|
*/
|
|
|
|
kfree(blkif->rings);
|
|
|
|
blkif->rings = NULL;
|
|
|
|
blkif->nr_rings = 0;
|
2015-09-04 18:08:07 +08:00
|
|
|
|
2014-05-21 04:28:50 +08:00
|
|
|
return 0;
|
2011-04-20 22:57:29 +08:00
|
|
|
}
|
|
|
|
|
2012-08-13 22:53:17 +08:00
|
|
|
static void xen_blkif_free(struct xen_blkif *blkif)
|
2011-04-20 22:57:29 +08:00
|
|
|
{
|
2017-05-18 23:28:48 +08:00
|
|
|
WARN_ON(xen_blkif_disconnect(blkif));
|
2014-05-21 04:28:50 +08:00
|
|
|
xen_vbd_free(&blkif->vbd);
|
2017-05-18 23:28:48 +08:00
|
|
|
kfree(blkif->be->mode);
|
|
|
|
kfree(blkif->be);
|
2013-04-18 02:18:59 +08:00
|
|
|
|
2014-02-04 18:26:13 +08:00
|
|
|
/* Make sure everything is drained before shutting down */
|
2011-04-20 23:50:43 +08:00
|
|
|
kmem_cache_free(xen_blkif_cachep, blkif);
|
2024-06-11 20:08:33 +08:00
|
|
|
module_put(THIS_MODULE);
|
2011-04-20 22:57:29 +08:00
|
|
|
}
|
|
|
|
|
2011-04-20 23:50:43 +08:00
|
|
|
int __init xen_blkif_interface_init(void)
|
2011-04-20 22:57:29 +08:00
|
|
|
{
|
2011-04-20 23:50:43 +08:00
|
|
|
xen_blkif_cachep = kmem_cache_create("blkif_cache",
|
2011-05-13 04:47:48 +08:00
|
|
|
sizeof(struct xen_blkif),
|
2011-04-20 23:50:43 +08:00
|
|
|
0, 0, NULL);
|
|
|
|
if (!xen_blkif_cachep)
|
2011-04-20 22:57:29 +08:00
|
|
|
return -ENOMEM;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
2011-04-15 06:25:47 +08:00
|
|
|
|
2011-04-15 05:05:23 +08:00
|
|
|
/*
|
2011-04-15 06:25:47 +08:00
|
|
|
* sysfs interface for VBD I/O requests
|
|
|
|
*/
|
|
|
|
|
2015-12-09 07:44:02 +08:00
|
|
|
#define VBD_SHOW_ALLRING(name, format) \
|
2011-04-15 06:25:47 +08:00
|
|
|
static ssize_t show_##name(struct device *_dev, \
|
|
|
|
struct device_attribute *attr, \
|
|
|
|
char *buf) \
|
|
|
|
{ \
|
|
|
|
struct xenbus_device *dev = to_xenbus_device(_dev); \
|
2010-02-12 08:07:31 +08:00
|
|
|
struct backend_info *be = dev_get_drvdata(&dev->dev); \
|
2015-12-09 07:44:02 +08:00
|
|
|
struct xen_blkif *blkif = be->blkif; \
|
|
|
|
unsigned int i; \
|
|
|
|
unsigned long long result = 0; \
|
2011-04-15 06:25:47 +08:00
|
|
|
\
|
2015-12-09 07:44:02 +08:00
|
|
|
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); \
|
2011-04-15 06:25:47 +08:00
|
|
|
} \
|
2018-05-25 03:38:59 +08:00
|
|
|
static DEVICE_ATTR(name, 0444, show_##name, NULL)
|
2011-04-15 06:25:47 +08:00
|
|
|
|
2015-12-09 07:44:02 +08:00
|
|
|
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");
|
2011-04-15 06:25:47 +08:00
|
|
|
|
2011-05-13 04:53:56 +08:00
|
|
|
static struct attribute *xen_vbdstat_attrs[] = {
|
2011-04-15 06:25:47 +08:00
|
|
|
&dev_attr_oo_req.attr,
|
|
|
|
&dev_attr_rd_req.attr,
|
|
|
|
&dev_attr_wr_req.attr,
|
2011-05-05 05:07:27 +08:00
|
|
|
&dev_attr_f_req.attr,
|
2011-09-01 18:39:10 +08:00
|
|
|
&dev_attr_ds_req.attr,
|
2011-04-15 06:25:47 +08:00
|
|
|
&dev_attr_rd_sect.attr,
|
|
|
|
&dev_attr_wr_sect.attr,
|
|
|
|
NULL
|
|
|
|
};
|
|
|
|
|
2016-07-07 15:38:58 +08:00
|
|
|
static const struct attribute_group xen_vbdstat_group = {
|
2011-04-15 06:25:47 +08:00
|
|
|
.name = "statistics",
|
2011-05-13 04:53:56 +08:00
|
|
|
.attrs = xen_vbdstat_attrs,
|
2011-04-15 06:25:47 +08:00
|
|
|
};
|
|
|
|
|
2015-12-09 07:44:02 +08:00
|
|
|
#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); \
|
|
|
|
} \
|
2018-05-25 03:38:59 +08:00
|
|
|
static DEVICE_ATTR(name, 0444, show_##name, NULL)
|
2015-12-09 07:44:02 +08:00
|
|
|
|
2011-04-15 06:25:47 +08:00
|
|
|
VBD_SHOW(physical_device, "%x:%x\n", be->major, be->minor);
|
|
|
|
VBD_SHOW(mode, "%s\n", be->mode);
|
|
|
|
|
2012-08-13 22:53:17 +08:00
|
|
|
static int xenvbd_sysfs_addif(struct xenbus_device *dev)
|
2011-04-15 06:25:47 +08:00
|
|
|
{
|
|
|
|
int error;
|
|
|
|
|
|
|
|
error = device_create_file(&dev->dev, &dev_attr_physical_device);
|
2011-04-15 05:33:30 +08:00
|
|
|
if (error)
|
2011-04-15 06:25:47 +08:00
|
|
|
goto fail1;
|
|
|
|
|
|
|
|
error = device_create_file(&dev->dev, &dev_attr_mode);
|
|
|
|
if (error)
|
|
|
|
goto fail2;
|
|
|
|
|
2011-05-13 04:53:56 +08:00
|
|
|
error = sysfs_create_group(&dev->dev.kobj, &xen_vbdstat_group);
|
2011-04-15 06:25:47 +08:00
|
|
|
if (error)
|
|
|
|
goto fail3;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
2011-05-13 04:53:56 +08:00
|
|
|
fail3: sysfs_remove_group(&dev->dev.kobj, &xen_vbdstat_group);
|
2011-04-15 06:25:47 +08:00
|
|
|
fail2: device_remove_file(&dev->dev, &dev_attr_mode);
|
|
|
|
fail1: device_remove_file(&dev->dev, &dev_attr_physical_device);
|
|
|
|
return error;
|
|
|
|
}
|
|
|
|
|
2012-08-13 22:53:17 +08:00
|
|
|
static void xenvbd_sysfs_delif(struct xenbus_device *dev)
|
2011-04-15 06:25:47 +08:00
|
|
|
{
|
2011-05-13 04:53:56 +08:00
|
|
|
sysfs_remove_group(&dev->dev.kobj, &xen_vbdstat_group);
|
2011-04-15 06:25:47 +08:00
|
|
|
device_remove_file(&dev->dev, &dev_attr_mode);
|
|
|
|
device_remove_file(&dev->dev, &dev_attr_physical_device);
|
|
|
|
}
|
|
|
|
|
2011-04-20 23:21:43 +08:00
|
|
|
|
2011-05-13 04:53:56 +08:00
|
|
|
static void xen_vbd_free(struct xen_vbd *vbd)
|
2011-04-20 23:21:43 +08:00
|
|
|
{
|
|
|
|
if (vbd->bdev)
|
|
|
|
blkdev_put(vbd->bdev, vbd->readonly ? FMODE_READ : FMODE_WRITE);
|
|
|
|
vbd->bdev = NULL;
|
|
|
|
}
|
|
|
|
|
2011-05-13 04:53:56 +08:00
|
|
|
static int xen_vbd_create(struct xen_blkif *blkif, blkif_vdev_t handle,
|
|
|
|
unsigned major, unsigned minor, int readonly,
|
|
|
|
int cdrom)
|
2011-04-20 23:21:43 +08:00
|
|
|
{
|
2011-05-13 04:53:56 +08:00
|
|
|
struct xen_vbd *vbd;
|
2011-04-20 23:21:43 +08:00
|
|
|
struct block_device *bdev;
|
2011-05-05 05:07:27 +08:00
|
|
|
struct request_queue *q;
|
2011-04-20 23:21:43 +08:00
|
|
|
|
|
|
|
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)) {
|
2015-04-01 23:04:22 +08:00
|
|
|
pr_warn("xen_vbd_create: device %08x could not be opened\n",
|
2011-04-20 23:21:43 +08:00
|
|
|
vbd->pdevice);
|
|
|
|
return -ENOENT;
|
|
|
|
}
|
|
|
|
|
|
|
|
vbd->bdev = bdev;
|
|
|
|
if (vbd->bdev->bd_disk == NULL) {
|
2015-04-01 23:04:22 +08:00
|
|
|
pr_warn("xen_vbd_create: device %08x doesn't exist\n",
|
2011-04-20 23:21:43 +08:00
|
|
|
vbd->pdevice);
|
2011-05-13 04:53:56 +08:00
|
|
|
xen_vbd_free(vbd);
|
2011-04-20 23:21:43 +08:00
|
|
|
return -ENOENT;
|
|
|
|
}
|
2011-05-25 18:24:25 +08:00
|
|
|
vbd->size = vbd_sz(vbd);
|
2011-04-20 23:21:43 +08:00
|
|
|
|
|
|
|
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;
|
|
|
|
|
2011-05-05 05:07:27 +08:00
|
|
|
q = bdev_get_queue(bdev);
|
2016-04-14 03:33:19 +08:00
|
|
|
if (q && test_bit(QUEUE_FLAG_WC, &q->queue_flags))
|
2011-05-05 05:07:27 +08:00
|
|
|
vbd->flush_support = true;
|
|
|
|
|
2016-06-09 22:00:36 +08:00
|
|
|
if (q && blk_queue_secure_erase(q))
|
2011-10-13 04:23:30 +08:00
|
|
|
vbd->discard_secure = true;
|
|
|
|
|
2015-04-01 23:04:22 +08:00
|
|
|
pr_debug("Successful creation of handle=%04x (dom=%u)\n",
|
2011-04-20 23:21:43 +08:00
|
|
|
handle, blkif->domid);
|
|
|
|
return 0;
|
|
|
|
}
|
2011-04-20 23:50:43 +08:00
|
|
|
static int xen_blkbk_remove(struct xenbus_device *dev)
|
2011-04-15 06:25:47 +08:00
|
|
|
{
|
2010-02-12 08:07:31 +08:00
|
|
|
struct backend_info *be = dev_get_drvdata(&dev->dev);
|
2011-04-15 06:25:47 +08:00
|
|
|
|
2015-04-01 23:04:22 +08:00
|
|
|
pr_debug("%s %p %d\n", __func__, dev, dev->otherend_id);
|
2011-04-15 06:25:47 +08:00
|
|
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2014-05-21 04:28:50 +08:00
|
|
|
dev_set_drvdata(&dev->dev, NULL);
|
|
|
|
|
2017-05-11 23:27:35 +08:00
|
|
|
if (be->blkif) {
|
2011-04-20 23:50:43 +08:00
|
|
|
xen_blkif_disconnect(be->blkif);
|
2011-04-15 06:25:47 +08:00
|
|
|
|
2017-05-11 23:27:35 +08:00
|
|
|
/* Put the reference we set in xen_blkif_alloc(). */
|
|
|
|
xen_blkif_put(be->blkif);
|
|
|
|
}
|
|
|
|
|
2011-04-15 06:25:47 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2011-05-05 05:07:27 +08:00
|
|
|
int xen_blkbk_flush_diskcache(struct xenbus_transaction xbt,
|
|
|
|
struct backend_info *be, int state)
|
2011-04-15 06:25:47 +08:00
|
|
|
{
|
|
|
|
struct xenbus_device *dev = be->dev;
|
|
|
|
int err;
|
|
|
|
|
2011-05-05 05:07:27 +08:00
|
|
|
err = xenbus_printf(xbt, dev->nodename, "feature-flush-cache",
|
2011-04-15 06:25:47 +08:00
|
|
|
"%d", state);
|
|
|
|
if (err)
|
2012-03-15 01:04:00 +08:00
|
|
|
dev_warn(&dev->dev, "writing feature-flush-cache (%d)", err);
|
2011-04-15 06:25:47 +08:00
|
|
|
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
2012-03-15 01:04:00 +08:00
|
|
|
static void xen_blkbk_discard(struct xenbus_transaction xbt, struct backend_info *be)
|
2011-09-01 18:39:10 +08:00
|
|
|
{
|
|
|
|
struct xenbus_device *dev = be->dev;
|
|
|
|
struct xen_blkif *blkif = be->blkif;
|
|
|
|
int err;
|
2016-10-31 21:58:40 +08:00
|
|
|
int state = 0;
|
2012-03-14 06:43:23 +08:00
|
|
|
struct block_device *bdev = be->blkif->vbd.bdev;
|
|
|
|
struct request_queue *q = bdev_get_queue(bdev);
|
|
|
|
|
2016-10-31 21:58:40 +08:00
|
|
|
if (!xenbus_read_unsigned(dev->nodename, "discard-enable", 1))
|
2014-05-21 22:32:42 +08:00
|
|
|
return;
|
|
|
|
|
2012-03-14 06:43:23 +08:00
|
|
|
if (blk_queue_discard(q)) {
|
|
|
|
err = xenbus_printf(xbt, dev->nodename,
|
|
|
|
"discard-granularity", "%u",
|
|
|
|
q->limits.discard_granularity);
|
|
|
|
if (err) {
|
2012-03-15 01:04:00 +08:00
|
|
|
dev_warn(&dev->dev, "writing discard-granularity (%d)", err);
|
|
|
|
return;
|
2012-03-14 06:43:23 +08:00
|
|
|
}
|
|
|
|
err = xenbus_printf(xbt, dev->nodename,
|
|
|
|
"discard-alignment", "%u",
|
|
|
|
q->limits.discard_alignment);
|
|
|
|
if (err) {
|
2012-03-15 01:04:00 +08:00
|
|
|
dev_warn(&dev->dev, "writing discard-alignment (%d)", err);
|
|
|
|
return;
|
2011-09-01 18:39:10 +08:00
|
|
|
}
|
2012-03-14 06:43:23 +08:00
|
|
|
state = 1;
|
|
|
|
/* Optional. */
|
|
|
|
err = xenbus_printf(xbt, dev->nodename,
|
|
|
|
"discard-secure", "%d",
|
|
|
|
blkif->vbd.discard_secure);
|
|
|
|
if (err) {
|
2012-04-17 09:55:04 +08:00
|
|
|
dev_warn(&dev->dev, "writing discard-secure (%d)", err);
|
2012-03-15 01:04:00 +08:00
|
|
|
return;
|
2011-09-01 18:39:10 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
err = xenbus_printf(xbt, dev->nodename, "feature-discard",
|
|
|
|
"%d", state);
|
|
|
|
if (err)
|
2012-03-15 01:04:00 +08:00
|
|
|
dev_warn(&dev->dev, "writing feature-discard (%d)", err);
|
2011-09-01 18:39:10 +08:00
|
|
|
}
|
2011-10-10 12:42:22 +08:00
|
|
|
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)
|
2012-03-15 01:04:00 +08:00
|
|
|
dev_warn(&dev->dev, "writing feature-barrier (%d)", err);
|
2011-10-10 12:42:22 +08:00
|
|
|
|
|
|
|
return err;
|
|
|
|
}
|
2011-09-01 18:39:10 +08:00
|
|
|
|
2011-05-12 03:57:09 +08:00
|
|
|
/*
|
2011-04-15 06:25:47 +08:00
|
|
|
* 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.
|
|
|
|
*/
|
2011-04-20 23:50:43 +08:00
|
|
|
static int xen_blkbk_probe(struct xenbus_device *dev,
|
|
|
|
const struct xenbus_device_id *id)
|
2011-04-15 06:25:47 +08:00
|
|
|
{
|
|
|
|
int err;
|
|
|
|
struct backend_info *be = kzalloc(sizeof(struct backend_info),
|
|
|
|
GFP_KERNEL);
|
2015-04-01 23:04:22 +08:00
|
|
|
|
|
|
|
/* match the pr_debug in xen_blkbk_remove */
|
|
|
|
pr_debug("%s %p %d\n", __func__, dev, dev->otherend_id);
|
|
|
|
|
2011-04-15 06:25:47 +08:00
|
|
|
if (!be) {
|
|
|
|
xenbus_dev_fatal(dev, -ENOMEM,
|
|
|
|
"allocating backend structure");
|
|
|
|
return -ENOMEM;
|
|
|
|
}
|
|
|
|
be->dev = dev;
|
2010-02-12 08:07:31 +08:00
|
|
|
dev_set_drvdata(&dev->dev, be);
|
2011-04-15 06:25:47 +08:00
|
|
|
|
2011-04-20 23:50:43 +08:00
|
|
|
be->blkif = xen_blkif_alloc(dev->otherend_id);
|
2011-04-15 06:25:47 +08:00
|
|
|
if (IS_ERR(be->blkif)) {
|
|
|
|
err = PTR_ERR(be->blkif);
|
|
|
|
be->blkif = NULL;
|
|
|
|
xenbus_dev_fatal(dev, err, "creating block interface");
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
|
2016-02-10 19:18:10 +08:00
|
|
|
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);
|
|
|
|
|
2015-11-14 11:12:17 +08:00
|
|
|
/* 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");
|
|
|
|
|
2011-04-15 06:25:47 +08:00
|
|
|
/* setup back pointer */
|
|
|
|
be->blkif->be = be;
|
|
|
|
|
2024-06-11 20:26:44 +08:00
|
|
|
err = xenbus_watch_pathfmt(dev, &be->backend_watch, NULL,
|
|
|
|
backend_changed,
|
2009-02-10 04:05:51 +08:00
|
|
|
"%s/%s", dev->nodename, "physical-device");
|
2011-04-15 06:25:47 +08:00
|
|
|
if (err)
|
|
|
|
goto fail;
|
|
|
|
|
2015-06-03 13:40:03 +08:00
|
|
|
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__);
|
|
|
|
|
2011-04-15 06:25:47 +08:00
|
|
|
err = xenbus_switch_state(dev, XenbusStateInitWait);
|
|
|
|
if (err)
|
|
|
|
goto fail;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
fail:
|
2015-04-01 23:04:22 +08:00
|
|
|
pr_warn("%s failed\n", __func__);
|
2011-04-20 23:50:43 +08:00
|
|
|
xen_blkbk_remove(dev);
|
2011-04-15 06:25:47 +08:00
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-05-12 03:57:09 +08:00
|
|
|
/*
|
2011-04-15 06:25:47 +08:00
|
|
|
* 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,
|
2017-02-09 21:39:57 +08:00
|
|
|
const char *path, const char *token)
|
2011-04-15 06:25:47 +08:00
|
|
|
{
|
|
|
|
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;
|
2012-12-20 18:31:11 +08:00
|
|
|
unsigned long handle;
|
2011-04-15 06:25:47 +08:00
|
|
|
char *device_type;
|
|
|
|
|
2015-04-01 23:04:22 +08:00
|
|
|
pr_debug("%s %p %d\n", __func__, dev, dev->otherend_id);
|
2011-04-15 06:25:47 +08:00
|
|
|
|
|
|
|
err = xenbus_scanf(XBT_NIL, dev->nodename, "physical-device", "%x:%x",
|
|
|
|
&major, &minor);
|
|
|
|
if (XENBUS_EXIST_ERR(err)) {
|
2011-05-12 03:57:09 +08:00
|
|
|
/*
|
|
|
|
* Since this watch will fire once immediately after it is
|
|
|
|
* registered, we expect this. Ignore it, and wait for the
|
|
|
|
* hotplug scripts.
|
|
|
|
*/
|
2011-04-15 06:25:47 +08:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (err != 2) {
|
|
|
|
xenbus_dev_fatal(dev, err, "reading physical-device");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2012-12-20 18:31:11 +08:00
|
|
|
if (be->major | be->minor) {
|
|
|
|
if (be->major != major || be->minor != minor)
|
2015-04-01 23:04:22 +08:00
|
|
|
pr_warn("changing physical device (from %x:%x to %x:%x) not supported.\n",
|
2012-12-20 18:31:11 +08:00
|
|
|
be->major, be->minor, major, minor);
|
2011-04-15 06:25:47 +08:00
|
|
|
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);
|
|
|
|
}
|
|
|
|
|
2012-12-20 18:31:11 +08:00
|
|
|
/* Front end dir is a number, which is used as the handle. */
|
2013-09-12 05:20:07 +08:00
|
|
|
err = kstrtoul(strrchr(dev->otherend, '/') + 1, 0, &handle);
|
2016-07-07 15:38:13 +08:00
|
|
|
if (err) {
|
|
|
|
kfree(be->mode);
|
|
|
|
be->mode = NULL;
|
2012-12-20 18:31:11 +08:00
|
|
|
return;
|
2016-07-07 15:38:13 +08:00
|
|
|
}
|
2011-04-15 06:25:47 +08:00
|
|
|
|
2012-12-20 18:31:11 +08:00
|
|
|
be->major = major;
|
|
|
|
be->minor = minor;
|
2011-04-15 06:25:47 +08:00
|
|
|
|
2012-12-20 18:31:11 +08:00
|
|
|
err = xen_vbd_create(be->blkif, handle, major, minor,
|
|
|
|
!strchr(be->mode, 'w'), cdrom);
|
2011-04-15 06:25:47 +08:00
|
|
|
|
2012-12-20 18:31:11 +08:00
|
|
|
if (err)
|
|
|
|
xenbus_dev_fatal(dev, err, "creating vbd structure");
|
|
|
|
else {
|
2011-04-15 06:25:47 +08:00
|
|
|
err = xenvbd_sysfs_addif(dev);
|
|
|
|
if (err) {
|
2011-05-13 04:53:56 +08:00
|
|
|
xen_vbd_free(&be->blkif->vbd);
|
2011-04-15 06:25:47 +08:00
|
|
|
xenbus_dev_fatal(dev, err, "creating sysfs entries");
|
|
|
|
}
|
2012-12-20 18:31:11 +08:00
|
|
|
}
|
2011-04-15 06:25:47 +08:00
|
|
|
|
2012-12-20 18:31:11 +08:00
|
|
|
if (err) {
|
|
|
|
kfree(be->mode);
|
|
|
|
be->mode = NULL;
|
|
|
|
be->major = 0;
|
|
|
|
be->minor = 0;
|
|
|
|
} else {
|
2011-04-15 06:25:47 +08:00
|
|
|
/* We're potentially connected now */
|
2011-04-20 23:50:43 +08:00
|
|
|
xen_update_blkif_status(be->blkif);
|
2011-04-15 06:25:47 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-05-12 03:57:09 +08:00
|
|
|
/*
|
2011-04-15 06:25:47 +08:00
|
|
|
* Callback received when the frontend's state changes.
|
|
|
|
*/
|
|
|
|
static void frontend_changed(struct xenbus_device *dev,
|
|
|
|
enum xenbus_state frontend_state)
|
|
|
|
{
|
2010-02-12 08:07:31 +08:00
|
|
|
struct backend_info *be = dev_get_drvdata(&dev->dev);
|
2011-04-15 06:25:47 +08:00
|
|
|
int err;
|
|
|
|
|
2015-04-01 23:04:22 +08:00
|
|
|
pr_debug("%s %p %s\n", __func__, dev, xenbus_strstate(frontend_state));
|
2011-04-15 06:25:47 +08:00
|
|
|
|
|
|
|
switch (frontend_state) {
|
|
|
|
case XenbusStateInitialising:
|
|
|
|
if (dev->state == XenbusStateClosed) {
|
2015-04-01 23:04:22 +08:00
|
|
|
pr_info("%s: prepare for reconnect\n", dev->nodename);
|
2011-04-15 06:25:47 +08:00
|
|
|
xenbus_switch_state(dev, XenbusStateInitWait);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case XenbusStateInitialised:
|
|
|
|
case XenbusStateConnected:
|
2011-05-12 03:57:09 +08:00
|
|
|
/*
|
|
|
|
* Ensure we connect even when two watches fire in
|
2011-11-29 12:31:00 +08:00
|
|
|
* close succession and we miss the intermediate value
|
2011-05-12 03:57:09 +08:00
|
|
|
* of frontend_state.
|
|
|
|
*/
|
2011-04-15 06:25:47 +08:00
|
|
|
if (dev->state == XenbusStateConnected)
|
|
|
|
break;
|
|
|
|
|
2011-05-12 03:57:09 +08:00
|
|
|
/*
|
|
|
|
* Enforce precondition before potential leak point.
|
2011-08-15 12:57:07 +08:00
|
|
|
* xen_blkif_disconnect() is idempotent.
|
2010-11-25 14:08:20 +08:00
|
|
|
*/
|
2014-05-21 04:28:50 +08:00
|
|
|
err = xen_blkif_disconnect(be->blkif);
|
|
|
|
if (err) {
|
|
|
|
xenbus_dev_fatal(dev, err, "pending I/O");
|
|
|
|
break;
|
|
|
|
}
|
2010-11-25 14:08:20 +08:00
|
|
|
|
2011-04-15 06:25:47 +08:00
|
|
|
err = connect_ring(be);
|
2015-11-26 02:20:14 +08:00
|
|
|
if (err) {
|
|
|
|
/*
|
|
|
|
* Clean up so that memory resources can be used by
|
|
|
|
* other devices. connect_ring reported already error.
|
|
|
|
*/
|
|
|
|
xen_blkif_disconnect(be->blkif);
|
2011-04-15 06:25:47 +08:00
|
|
|
break;
|
2015-11-26 02:20:14 +08:00
|
|
|
}
|
2011-04-20 23:50:43 +08:00
|
|
|
xen_update_blkif_status(be->blkif);
|
2011-04-15 06:25:47 +08:00
|
|
|
break;
|
|
|
|
|
|
|
|
case XenbusStateClosing:
|
|
|
|
xenbus_switch_state(dev, XenbusStateClosing);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case XenbusStateClosed:
|
xen-blkback: Don't disconnect backend until state switched to XenbusStateClosed.
When do block-attach/block-detach test with below steps, umount hangs
in the guest. Furthermore shutdown ends up being stuck when umounting file-systems.
1. start guest.
2. attach new block device by xm block-attach in Dom0.
3. mount new disk in guest.
4. execute xm block-detach to detach the block device in dom0 until timeout
5. Any request to the disk will hung.
Root cause:
This issue is caused when setting backend device's state to
'XenbusStateClosing', which sends to the frontend the XenbusStateClosing
notification. When frontend receives the notification it tries to release
the disk in blkfront_closing(), but at that moment the disk is still in use
by guest, so frontend refuses to close. Specifically it sets the disk state to
XenbusStateClosing and sends the notification to backend - when backend receives the
event, it disconnects the vbd from real device, and sets the vbd device state to
XenbusStateClosing. The backend disconnects the real device/file, and any IO
requests to the disk in guest will end up in ether, leaving disk DEAD and set to
XenbusStateClosing. When the guest wants to disconnect the disk, umount will
hang on blkif_release()->xlvbd_release_gendisk() as it is unable to send any IO
to the disk, which prevents clean system shutdown.
Solution:
Don't disconnect backend until frontend state switched to XenbusStateClosed.
Signed-off-by: Joe Jin <joe.jin@oracle.com>
Cc: Daniel Stodden <daniel.stodden@citrix.com>
Cc: Jens Axboe <jaxboe@fusionio.com>
Cc: Annie Li <annie.li@oracle.com>
Cc: Ian Campbell <Ian.Campbell@eu.citrix.com>
[v1: Modified description a bit]
Signed-off-by: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
2011-08-15 12:51:31 +08:00
|
|
|
xen_blkif_disconnect(be->blkif);
|
2011-04-15 06:25:47 +08:00
|
|
|
xenbus_switch_state(dev, XenbusStateClosed);
|
|
|
|
if (xenbus_dev_is_online(dev))
|
|
|
|
break;
|
2017-08-18 07:23:10 +08:00
|
|
|
/* fall through */
|
|
|
|
/* if not online */
|
2011-04-15 06:25:47 +08:00
|
|
|
case XenbusStateUnknown:
|
2011-08-15 12:57:07 +08:00
|
|
|
/* implies xen_blkif_disconnect() via xen_blkbk_remove() */
|
2011-04-15 06:25:47 +08:00
|
|
|
device_unregister(&dev->dev);
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
xenbus_dev_fatal(dev, -EINVAL, "saw state %d at frontend",
|
|
|
|
frontend_state);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* ** Connection ** */
|
|
|
|
|
|
|
|
|
2011-05-12 03:57:09 +08:00
|
|
|
/*
|
2011-04-15 06:25:47 +08:00
|
|
|
* 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;
|
|
|
|
|
2015-04-01 23:04:22 +08:00
|
|
|
pr_debug("%s %s\n", __func__, dev->otherend);
|
2011-04-15 06:25:47 +08:00
|
|
|
|
|
|
|
/* 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;
|
|
|
|
}
|
|
|
|
|
2012-03-15 01:04:00 +08:00
|
|
|
/* If we can't advertise it is OK. */
|
|
|
|
xen_blkbk_flush_diskcache(xbt, be, be->blkif->vbd.flush_support);
|
2011-04-15 06:25:47 +08:00
|
|
|
|
2012-03-15 01:04:00 +08:00
|
|
|
xen_blkbk_discard(xbt, be);
|
2011-09-01 18:39:10 +08:00
|
|
|
|
2012-03-15 01:04:00 +08:00
|
|
|
xen_blkbk_barrier(xbt, be, be->blkif->vbd.flush_support);
|
2011-10-10 12:42:22 +08:00
|
|
|
|
xen/blkback: Persistent grant maps for xen blk drivers
This patch implements persistent grants for the xen-blk{front,back}
mechanism. The effect of this change is to reduce the number of unmap
operations performed, since they cause a (costly) TLB shootdown. This
allows the I/O performance to scale better when a large number of VMs
are performing I/O.
Previously, the blkfront driver was supplied a bvec[] from the request
queue. This was granted to dom0; dom0 performed the I/O and wrote
directly into the grant-mapped memory and unmapped it; blkfront then
removed foreign access for that grant. The cost of unmapping scales
badly with the number of CPUs in Dom0. An experiment showed that when
Dom0 has 24 VCPUs, and guests are performing parallel I/O to a
ramdisk, the IPIs from performing unmap's is a bottleneck at 5 guests
(at which point 650,000 IOPS are being performed in total). If more
than 5 guests are used, the performance declines. By 10 guests, only
400,000 IOPS are being performed.
This patch improves performance by only unmapping when the connection
between blkfront and back is broken.
On startup blkfront notifies blkback that it is using persistent
grants, and blkback will do the same. If blkback is not capable of
persistent mapping, blkfront will still use the same grants, since it
is compatible with the previous protocol, and simplifies the code
complexity in blkfront.
To perform a read, in persistent mode, blkfront uses a separate pool
of pages that it maps to dom0. When a request comes in, blkfront
transmutes the request so that blkback will write into one of these
free pages. Blkback keeps note of which grefs it has already
mapped. When a new ring request comes to blkback, it looks to see if
it has already mapped that page. If so, it will not map it again. If
the page hasn't been previously mapped, it is mapped now, and a record
is kept of this mapping. Blkback proceeds as usual. When blkfront is
notified that blkback has completed a request, it memcpy's from the
shared memory, into the bvec supplied. A record that the {gref, page}
tuple is mapped, and not inflight is kept.
Writes are similar, except that the memcpy is peformed from the
supplied bvecs, into the shared pages, before the request is put onto
the ring.
Blkback stores a mapping of grefs=>{page mapped to by gref} in
a red-black tree. As the grefs are not known apriori, and provide no
guarantees on their ordering, we have to perform a search
through this tree to find the page, for every gref we receive. This
operation takes O(log n) time in the worst case. In blkfront grants
are stored using a single linked list.
The maximum number of grants that blkback will persistenly map is
currently set to RING_SIZE * BLKIF_MAX_SEGMENTS_PER_REQUEST, to
prevent a malicios guest from attempting a DoS, by supplying fresh
grefs, causing the Dom0 kernel to map excessively. If a guest
is using persistent grants and exceeds the maximum number of grants to
map persistenly the newly passed grefs will be mapped and unmaped.
Using this approach, we can have requests that mix persistent and
non-persistent grants, and we need to handle them correctly.
This allows us to set the maximum number of persistent grants to a
lower value than RING_SIZE * BLKIF_MAX_SEGMENTS_PER_REQUEST, although
setting it will lead to unpredictable performance.
In writing this patch, the question arrises as to if the additional
cost of performing memcpys in the guest (to/from the pool of granted
pages) outweigh the gains of not performing TLB shootdowns. The answer
to that question is `no'. There appears to be very little, if any
additional cost to the guest of using persistent grants. There is
perhaps a small saving, from the reduced number of hypercalls
performed in granting, and ending foreign access.
Signed-off-by: Oliver Chick <oliver.chick@citrix.com>
Signed-off-by: Roger Pau Monne <roger.pau@citrix.com>
Signed-off-by: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
[v1: Fixed up the misuse of bool as int]
2012-10-25 00:58:45 +08:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2011-04-15 06:25:47 +08:00
|
|
|
err = xenbus_printf(xbt, dev->nodename, "sectors", "%llu",
|
2011-04-20 23:21:43 +08:00
|
|
|
(unsigned long long)vbd_sz(&be->blkif->vbd));
|
2011-04-15 06:25:47 +08:00
|
|
|
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",
|
2011-04-20 23:21:43 +08:00
|
|
|
be->blkif->vbd.type |
|
|
|
|
(be->blkif->vbd.readonly ? VDISK_READONLY : 0));
|
2011-04-15 06:25:47 +08:00
|
|
|
if (err) {
|
|
|
|
xenbus_dev_fatal(dev, err, "writing %s/info",
|
|
|
|
dev->nodename);
|
|
|
|
goto abort;
|
|
|
|
}
|
|
|
|
err = xenbus_printf(xbt, dev->nodename, "sector-size", "%lu",
|
2011-04-20 23:21:43 +08:00
|
|
|
(unsigned long)
|
|
|
|
bdev_logical_block_size(be->blkif->vbd.bdev));
|
2011-04-15 06:25:47 +08:00
|
|
|
if (err) {
|
|
|
|
xenbus_dev_fatal(dev, err, "writing %s/sector-size",
|
|
|
|
dev->nodename);
|
|
|
|
goto abort;
|
|
|
|
}
|
2013-05-13 22:28:15 +08:00
|
|
|
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);
|
2011-04-15 06:25:47 +08:00
|
|
|
|
|
|
|
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)
|
2011-06-13 00:21:13 +08:00
|
|
|
xenbus_dev_fatal(dev, err, "%s: switching to Connected state",
|
2011-04-15 06:25:47 +08:00
|
|
|
dev->nodename);
|
|
|
|
|
|
|
|
return;
|
|
|
|
abort:
|
|
|
|
xenbus_transaction_end(xbt, 1);
|
|
|
|
}
|
|
|
|
|
2015-12-12 01:08:48 +08:00
|
|
|
/*
|
|
|
|
* 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)
|
2011-04-15 06:25:47 +08:00
|
|
|
{
|
2015-10-14 00:50:11 +08:00
|
|
|
unsigned int ring_ref[XENBUS_MAX_RING_GRANTS];
|
2015-06-03 13:40:01 +08:00
|
|
|
struct pending_req *req, *n;
|
|
|
|
int err, i, j;
|
2015-12-12 01:08:48 +08:00
|
|
|
struct xen_blkif *blkif = ring->blkif;
|
|
|
|
struct xenbus_device *dev = blkif->be->dev;
|
2019-02-24 23:17:27 +08:00
|
|
|
unsigned int nr_grefs, evtchn;
|
2011-04-15 06:25:47 +08:00
|
|
|
|
2015-12-12 01:08:48 +08:00
|
|
|
err = xenbus_scanf(XBT_NIL, dir, "event-channel", "%u",
|
2015-06-03 13:40:03 +08:00
|
|
|
&evtchn);
|
|
|
|
if (err != 1) {
|
|
|
|
err = -EINVAL;
|
2015-12-12 01:08:48 +08:00
|
|
|
xenbus_dev_fatal(dev, err, "reading %s/event-channel", dir);
|
2011-04-15 06:25:47 +08:00
|
|
|
return err;
|
|
|
|
}
|
2015-06-03 13:40:03 +08:00
|
|
|
|
2019-02-24 23:17:27 +08:00
|
|
|
nr_grefs = blkif->nr_ring_pages;
|
|
|
|
|
|
|
|
if (unlikely(!nr_grefs)) {
|
|
|
|
WARN_ON(true);
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (i = 0; i < nr_grefs; i++) {
|
|
|
|
char ring_ref_name[RINGREF_NAME_LEN];
|
|
|
|
|
2024-06-11 20:26:44 +08:00
|
|
|
if (blkif->multi_ref)
|
|
|
|
snprintf(ring_ref_name, RINGREF_NAME_LEN, "ring-ref%u", i);
|
|
|
|
else {
|
|
|
|
WARN_ON(i != 0);
|
|
|
|
snprintf(ring_ref_name, RINGREF_NAME_LEN, "ring-ref");
|
|
|
|
}
|
|
|
|
|
2019-02-24 23:17:27 +08:00
|
|
|
err = xenbus_scanf(XBT_NIL, dir, ring_ref_name,
|
|
|
|
"%u", &ring_ref[i]);
|
|
|
|
|
2015-06-03 13:40:03 +08:00
|
|
|
if (err != 1) {
|
|
|
|
err = -EINVAL;
|
2019-02-24 23:17:27 +08:00
|
|
|
xenbus_dev_fatal(dev, err, "reading %s/%s",
|
|
|
|
dir, ring_ref_name);
|
2015-06-03 13:40:03 +08:00
|
|
|
return err;
|
|
|
|
}
|
2019-02-24 23:17:27 +08:00
|
|
|
}
|
|
|
|
|
2019-08-12 01:23:22 +08:00
|
|
|
err = -ENOMEM;
|
2015-06-03 13:40:03 +08:00
|
|
|
for (i = 0; i < nr_grefs * XEN_BLKIF_REQS_PER_PAGE; i++) {
|
2015-06-03 13:40:01 +08:00
|
|
|
req = kzalloc(sizeof(*req), GFP_KERNEL);
|
|
|
|
if (!req)
|
|
|
|
goto fail;
|
2015-11-14 11:12:15 +08:00
|
|
|
list_add_tail(&req->free_list, &ring->pending_free);
|
2015-06-03 13:40:01 +08:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-04-15 06:25:47 +08:00
|
|
|
/* Map the shared frame, irq etc. */
|
2015-11-14 11:12:15 +08:00
|
|
|
err = xen_blkif_map(ring, ring_ref, nr_grefs, evtchn);
|
2011-04-15 06:25:47 +08:00
|
|
|
if (err) {
|
2015-06-03 13:40:03 +08:00
|
|
|
xenbus_dev_fatal(dev, err, "mapping ring-ref port %u", evtchn);
|
2019-08-12 01:23:22 +08:00
|
|
|
goto fail;
|
2011-04-15 06:25:47 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
2015-06-03 13:40:01 +08:00
|
|
|
|
|
|
|
fail:
|
2015-11-14 11:12:15 +08:00
|
|
|
list_for_each_entry_safe(req, n, &ring->pending_free, free_list) {
|
2015-06-03 13:40:01 +08:00
|
|
|
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);
|
|
|
|
}
|
2019-08-12 01:23:22 +08:00
|
|
|
return err;
|
2015-12-12 01:08:48 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static int connect_ring(struct backend_info *be)
|
|
|
|
{
|
|
|
|
struct xenbus_device *dev = be->dev;
|
2019-01-15 00:41:43 +08:00
|
|
|
struct xen_blkif *blkif = be->blkif;
|
2015-12-12 01:08:48 +08:00
|
|
|
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" */
|
2015-11-14 11:12:17 +08:00
|
|
|
unsigned int requested_num_queues = 0;
|
2019-02-24 23:17:27 +08:00
|
|
|
unsigned int ring_page_order;
|
2015-12-12 01:08:48 +08:00
|
|
|
|
|
|
|
pr_debug("%s %s\n", __func__, dev->otherend);
|
|
|
|
|
2019-01-15 00:41:43 +08:00
|
|
|
blkif->blk_protocol = BLKIF_PROTOCOL_DEFAULT;
|
2016-07-07 16:05:21 +08:00
|
|
|
err = xenbus_scanf(XBT_NIL, dev->otherend, "protocol",
|
|
|
|
"%63s", protocol);
|
|
|
|
if (err <= 0)
|
2015-12-12 01:08:48 +08:00
|
|
|
strcpy(protocol, "unspecified, assuming default");
|
|
|
|
else if (0 == strcmp(protocol, XEN_IO_PROTO_ABI_NATIVE))
|
2019-01-15 00:41:43 +08:00
|
|
|
blkif->blk_protocol = BLKIF_PROTOCOL_NATIVE;
|
2015-12-12 01:08:48 +08:00
|
|
|
else if (0 == strcmp(protocol, XEN_IO_PROTO_ABI_X86_32))
|
2019-01-15 00:41:43 +08:00
|
|
|
blkif->blk_protocol = BLKIF_PROTOCOL_X86_32;
|
2015-12-12 01:08:48 +08:00
|
|
|
else if (0 == strcmp(protocol, XEN_IO_PROTO_ABI_X86_64))
|
2019-01-15 00:41:43 +08:00
|
|
|
blkif->blk_protocol = BLKIF_PROTOCOL_X86_64;
|
2015-12-12 01:08:48 +08:00
|
|
|
else {
|
|
|
|
xenbus_dev_fatal(dev, err, "unknown fe protocol %s", protocol);
|
2015-11-26 02:07:39 +08:00
|
|
|
return -ENOSYS;
|
2015-12-12 01:08:48 +08:00
|
|
|
}
|
2016-10-31 21:58:40 +08:00
|
|
|
pers_grants = xenbus_read_unsigned(dev->otherend, "feature-persistent",
|
|
|
|
0);
|
2019-01-15 00:41:43 +08:00
|
|
|
blkif->vbd.feature_gnt_persistent = pers_grants;
|
|
|
|
blkif->vbd.overflow_max_grants = 0;
|
2015-12-12 01:08:48 +08:00
|
|
|
|
2015-11-14 11:12:17 +08:00
|
|
|
/*
|
|
|
|
* Read the number of hardware queues from frontend.
|
|
|
|
*/
|
2016-10-31 21:58:40 +08:00
|
|
|
requested_num_queues = xenbus_read_unsigned(dev->otherend,
|
|
|
|
"multi-queue-num-queues",
|
|
|
|
1);
|
|
|
|
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;
|
2015-11-14 11:12:17 +08:00
|
|
|
}
|
2019-01-15 00:41:43 +08:00
|
|
|
blkif->nr_rings = requested_num_queues;
|
|
|
|
if (xen_blkif_alloc_rings(blkif))
|
2015-11-14 11:12:17 +08:00
|
|
|
return -ENOMEM;
|
|
|
|
|
2015-12-12 01:08:48 +08:00
|
|
|
pr_info("%s: using %d queues, protocol %d (%s) %s\n", dev->nodename,
|
2019-01-15 00:41:43 +08:00
|
|
|
blkif->nr_rings, blkif->blk_protocol, protocol,
|
2015-12-12 01:08:48 +08:00
|
|
|
pers_grants ? "persistent grants" : "");
|
|
|
|
|
2024-06-11 20:26:44 +08:00
|
|
|
err = xenbus_scanf(XBT_NIL, dev->otherend, "ring-page-order", "%u",
|
|
|
|
&ring_page_order);
|
|
|
|
if (err != 1) {
|
|
|
|
blkif->nr_ring_pages = 1;
|
|
|
|
blkif->multi_ref = false;
|
|
|
|
} else if (ring_page_order <= xen_blkif_max_ring_order) {
|
|
|
|
blkif->nr_ring_pages = 1 << ring_page_order;
|
|
|
|
blkif->multi_ref = true;
|
|
|
|
} else {
|
2019-02-24 23:17:27 +08:00
|
|
|
err = -EINVAL;
|
|
|
|
xenbus_dev_fatal(dev, err,
|
|
|
|
"requested ring page order %d exceed max:%d",
|
|
|
|
ring_page_order,
|
|
|
|
xen_blkif_max_ring_order);
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
2019-01-15 00:41:43 +08:00
|
|
|
if (blkif->nr_rings == 1)
|
|
|
|
return read_per_ring_refs(&blkif->rings[0], dev->otherend);
|
2015-12-12 01:08:48 +08:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2019-01-15 00:41:43 +08:00
|
|
|
for (i = 0; i < blkif->nr_rings; i++) {
|
2015-12-12 01:08:48 +08:00
|
|
|
memset(xspath, 0, xspathsize);
|
|
|
|
snprintf(xspath, xspathsize, "%s/queue-%u", dev->otherend, i);
|
2019-01-15 00:41:43 +08:00
|
|
|
err = read_per_ring_refs(&blkif->rings[i], xspath);
|
2015-12-12 01:08:48 +08:00
|
|
|
if (err) {
|
|
|
|
kfree(xspath);
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
kfree(xspath);
|
|
|
|
}
|
|
|
|
return 0;
|
2011-04-15 06:25:47 +08:00
|
|
|
}
|
|
|
|
|
2011-04-20 23:50:43 +08:00
|
|
|
static const struct xenbus_device_id xen_blkbk_ids[] = {
|
2011-04-15 06:25:47 +08:00
|
|
|
{ "vbd" },
|
|
|
|
{ "" }
|
|
|
|
};
|
|
|
|
|
2014-09-09 00:30:41 +08:00
|
|
|
static struct xenbus_driver xen_blkbk_driver = {
|
|
|
|
.ids = xen_blkbk_ids,
|
2011-04-20 23:50:43 +08:00
|
|
|
.probe = xen_blkbk_probe,
|
|
|
|
.remove = xen_blkbk_remove,
|
2011-04-15 06:25:47 +08:00
|
|
|
.otherend_changed = frontend_changed
|
2014-09-09 00:30:41 +08:00
|
|
|
};
|
2011-04-15 06:25:47 +08:00
|
|
|
|
2011-04-20 23:50:43 +08:00
|
|
|
int xen_blkif_xenbus_init(void)
|
2011-04-15 06:25:47 +08:00
|
|
|
{
|
2011-12-22 17:08:13 +08:00
|
|
|
return xenbus_register_backend(&xen_blkbk_driver);
|
2011-04-15 06:25:47 +08:00
|
|
|
}
|