blob: c2014a0aa206b2ec1b1ee328e84bde4407026616 [file] [log] [blame]
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -04001/* Xenbus code for blkif backend
2 Copyright (C) 2005 Rusty Russell <rusty@rustcorp.com.au>
3 Copyright (C) 2005 XenSource Ltd
4
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 2 of the License, or
8 (at your option) any later version.
9
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
14
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -040015*/
16
17#include <stdarg.h>
18#include <linux/module.h>
19#include <linux/kthread.h>
Konrad Rzeszutek Wilkee9ff852011-04-20 10:57:29 -040020#include <xen/events.h>
21#include <xen/grant_table.h>
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -040022#include "common.h"
23
Konrad Rzeszutek Wilkd6091b22011-04-14 17:33:30 -040024struct backend_info {
Konrad Rzeszutek Wilk01f37f22011-05-11 15:57:09 -040025 struct xenbus_device *dev;
Konrad Rzeszutek Wilk51854322011-05-12 18:02:28 -040026 struct xen_blkif *blkif;
Konrad Rzeszutek Wilk01f37f22011-05-11 15:57:09 -040027 struct xenbus_watch backend_watch;
28 unsigned major;
29 unsigned minor;
30 char *mode;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -040031};
32
Konrad Rzeszutek Wilk8b6bf742011-04-20 11:50:43 -040033static struct kmem_cache *xen_blkif_cachep;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -040034static void connect(struct backend_info *);
35static int connect_ring(struct backend_info *);
36static void backend_changed(struct xenbus_watch *, const char **,
37 unsigned int);
38
Konrad Rzeszutek Wilk8b6bf742011-04-20 11:50:43 -040039struct xenbus_device *xen_blkbk_xenbus(struct backend_info *be)
Jeremy Fitzhardinge98e036a2010-03-18 15:35:05 -070040{
41 return be->dev;
42}
43
Konrad Rzeszutek Wilk30fd1502011-05-12 16:47:48 -040044static int blkback_name(struct xen_blkif *blkif, char *buf)
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -040045{
46 char *devpath, *devname;
47 struct xenbus_device *dev = blkif->be->dev;
48
49 devpath = xenbus_read(XBT_NIL, dev->nodename, "dev", NULL);
50 if (IS_ERR(devpath))
51 return PTR_ERR(devpath);
52
Konrad Rzeszutek Wilkd6091b22011-04-14 17:33:30 -040053 devname = strstr(devpath, "/dev/");
54 if (devname != NULL)
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -040055 devname += strlen("/dev/");
56 else
57 devname = devpath;
58
59 snprintf(buf, TASK_COMM_LEN, "blkback.%d.%s", blkif->domid, devname);
60 kfree(devpath);
61
62 return 0;
63}
64
Konrad Rzeszutek Wilk30fd1502011-05-12 16:47:48 -040065static void xen_update_blkif_status(struct xen_blkif *blkif)
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -040066{
67 int err;
68 char name[TASK_COMM_LEN];
69
70 /* Not ready to connect? */
71 if (!blkif->irq || !blkif->vbd.bdev)
72 return;
73
74 /* Already connected? */
75 if (blkif->be->dev->state == XenbusStateConnected)
76 return;
77
78 /* Attempt to connect: exit if we fail to. */
79 connect(blkif->be);
80 if (blkif->be->dev->state != XenbusStateConnected)
81 return;
82
83 err = blkback_name(blkif, name);
84 if (err) {
85 xenbus_dev_error(blkif->be->dev, err, "get blkback dev name");
86 return;
87 }
88
Chris Lalancettecbf46292010-07-21 12:41:45 -070089 err = filemap_write_and_wait(blkif->vbd.bdev->bd_inode->i_mapping);
90 if (err) {
91 xenbus_dev_error(blkif->be->dev, err, "block flush");
92 return;
93 }
94 invalidate_inode_pages2(blkif->vbd.bdev->bd_inode->i_mapping);
95
Kees Cookf1701682013-07-03 15:04:58 -070096 blkif->xenblkd = kthread_run(xen_blkif_schedule, blkif, "%s", name);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -040097 if (IS_ERR(blkif->xenblkd)) {
98 err = PTR_ERR(blkif->xenblkd);
99 blkif->xenblkd = NULL;
100 xenbus_dev_error(blkif->be->dev, err, "start xenblkd");
Roger Pau Monne3f3aad52013-04-17 20:18:57 +0200101 return;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400102 }
103}
104
Konrad Rzeszutek Wilk30fd1502011-05-12 16:47:48 -0400105static struct xen_blkif *xen_blkif_alloc(domid_t domid)
Konrad Rzeszutek Wilkee9ff852011-04-20 10:57:29 -0400106{
Konrad Rzeszutek Wilk30fd1502011-05-12 16:47:48 -0400107 struct xen_blkif *blkif;
Roger Pau Monnebb642e82013-05-02 10:21:17 +0200108 struct pending_req *req, *n;
109 int i, j;
Konrad Rzeszutek Wilkee9ff852011-04-20 10:57:29 -0400110
Roger Pau Monne402b27f2013-04-18 16:06:54 +0200111 BUILD_BUG_ON(MAX_INDIRECT_PAGES > BLKIF_MAX_INDIRECT_PAGES_PER_REQUEST);
Konrad Rzeszutek Wilkee9ff852011-04-20 10:57:29 -0400112
Wei Yongjun654dbef2012-08-27 12:28:57 +0800113 blkif = kmem_cache_zalloc(xen_blkif_cachep, GFP_KERNEL);
Konrad Rzeszutek Wilkee9ff852011-04-20 10:57:29 -0400114 if (!blkif)
115 return ERR_PTR(-ENOMEM);
116
Konrad Rzeszutek Wilkee9ff852011-04-20 10:57:29 -0400117 blkif->domid = domid;
118 spin_lock_init(&blkif->blk_ring_lock);
119 atomic_set(&blkif->refcnt, 1);
120 init_waitqueue_head(&blkif->wq);
Konrad Rzeszutek Wilk29bde092011-10-10 00:42:22 -0400121 init_completion(&blkif->drain_complete);
122 atomic_set(&blkif->drain, 0);
Konrad Rzeszutek Wilkee9ff852011-04-20 10:57:29 -0400123 blkif->st_print = jiffies;
124 init_waitqueue_head(&blkif->waiting_to_free);
Roger Pau Monne0a8704a2012-10-24 18:58:45 +0200125 blkif->persistent_gnts.rb_node = NULL;
Roger Pau Monnec6cc1422013-04-17 20:18:56 +0200126 spin_lock_init(&blkif->free_pages_lock);
127 INIT_LIST_HEAD(&blkif->free_pages);
128 blkif->free_pages_num = 0;
Roger Pau Monne3f3aad52013-04-17 20:18:57 +0200129 atomic_set(&blkif->persistent_gnt_in_use, 0);
Konrad Rzeszutek Wilkee9ff852011-04-20 10:57:29 -0400130
Roger Pau Monnebf0720c2013-04-17 20:18:59 +0200131 INIT_LIST_HEAD(&blkif->pending_free);
Roger Pau Monnebb642e82013-05-02 10:21:17 +0200132
133 for (i = 0; i < XEN_BLKIF_REQS; i++) {
134 req = kzalloc(sizeof(*req), GFP_KERNEL);
135 if (!req)
136 goto fail;
137 list_add_tail(&req->free_list,
138 &blkif->pending_free);
139 for (j = 0; j < MAX_INDIRECT_SEGMENTS; j++) {
140 req->segments[j] = kzalloc(sizeof(*req->segments[0]),
141 GFP_KERNEL);
142 if (!req->segments[j])
143 goto fail;
144 }
145 for (j = 0; j < MAX_INDIRECT_PAGES; j++) {
146 req->indirect_pages[j] = kzalloc(sizeof(*req->indirect_pages[0]),
147 GFP_KERNEL);
148 if (!req->indirect_pages[j])
149 goto fail;
150 }
151 }
Roger Pau Monnebf0720c2013-04-17 20:18:59 +0200152 spin_lock_init(&blkif->pending_free_lock);
153 init_waitqueue_head(&blkif->pending_free_wq);
Konrad Rzeszutek Wilk8e3f8752013-01-23 16:54:32 -0500154 init_waitqueue_head(&blkif->shutdown_wq);
Konrad Rzeszutek Wilkee9ff852011-04-20 10:57:29 -0400155
156 return blkif;
Roger Pau Monnebb642e82013-05-02 10:21:17 +0200157
158fail:
159 list_for_each_entry_safe(req, n, &blkif->pending_free, free_list) {
160 list_del(&req->free_list);
161 for (j = 0; j < MAX_INDIRECT_SEGMENTS; j++) {
162 if (!req->segments[j])
163 break;
164 kfree(req->segments[j]);
165 }
166 for (j = 0; j < MAX_INDIRECT_PAGES; j++) {
167 if (!req->indirect_pages[j])
168 break;
169 kfree(req->indirect_pages[j]);
170 }
171 kfree(req);
172 }
173
174 kmem_cache_free(xen_blkif_cachep, blkif);
175
176 return ERR_PTR(-ENOMEM);
Konrad Rzeszutek Wilkee9ff852011-04-20 10:57:29 -0400177}
178
Konrad Rzeszutek Wilk30fd1502011-05-12 16:47:48 -0400179static int xen_blkif_map(struct xen_blkif *blkif, unsigned long shared_page,
Konrad Rzeszutek Wilk8b6bf742011-04-20 11:50:43 -0400180 unsigned int evtchn)
Konrad Rzeszutek Wilkee9ff852011-04-20 10:57:29 -0400181{
182 int err;
183
184 /* Already connected through? */
185 if (blkif->irq)
186 return 0;
187
David Vrabel2d073842011-09-29 16:53:30 +0100188 err = xenbus_map_ring_valloc(blkif->be->dev, shared_page, &blkif->blk_ring);
189 if (err < 0)
Konrad Rzeszutek Wilkee9ff852011-04-20 10:57:29 -0400190 return err;
Konrad Rzeszutek Wilkee9ff852011-04-20 10:57:29 -0400191
192 switch (blkif->blk_protocol) {
193 case BLKIF_PROTOCOL_NATIVE:
194 {
195 struct blkif_sring *sring;
David Vrabel2d073842011-09-29 16:53:30 +0100196 sring = (struct blkif_sring *)blkif->blk_ring;
Konrad Rzeszutek Wilkee9ff852011-04-20 10:57:29 -0400197 BACK_RING_INIT(&blkif->blk_rings.native, sring, PAGE_SIZE);
198 break;
199 }
200 case BLKIF_PROTOCOL_X86_32:
201 {
202 struct blkif_x86_32_sring *sring_x86_32;
David Vrabel2d073842011-09-29 16:53:30 +0100203 sring_x86_32 = (struct blkif_x86_32_sring *)blkif->blk_ring;
Konrad Rzeszutek Wilkee9ff852011-04-20 10:57:29 -0400204 BACK_RING_INIT(&blkif->blk_rings.x86_32, sring_x86_32, PAGE_SIZE);
205 break;
206 }
207 case BLKIF_PROTOCOL_X86_64:
208 {
209 struct blkif_x86_64_sring *sring_x86_64;
David Vrabel2d073842011-09-29 16:53:30 +0100210 sring_x86_64 = (struct blkif_x86_64_sring *)blkif->blk_ring;
Konrad Rzeszutek Wilkee9ff852011-04-20 10:57:29 -0400211 BACK_RING_INIT(&blkif->blk_rings.x86_64, sring_x86_64, PAGE_SIZE);
212 break;
213 }
214 default:
215 BUG();
216 }
217
Konrad Rzeszutek Wilk8b6bf742011-04-20 11:50:43 -0400218 err = bind_interdomain_evtchn_to_irqhandler(blkif->domid, evtchn,
219 xen_blkif_be_int, 0,
220 "blkif-backend", blkif);
Konrad Rzeszutek Wilkee9ff852011-04-20 10:57:29 -0400221 if (err < 0) {
David Vrabel2d073842011-09-29 16:53:30 +0100222 xenbus_unmap_ring_vfree(blkif->be->dev, blkif->blk_ring);
Konrad Rzeszutek Wilkee9ff852011-04-20 10:57:29 -0400223 blkif->blk_rings.common.sring = NULL;
224 return err;
225 }
226 blkif->irq = err;
227
228 return 0;
229}
230
Konrad Rzeszutek Wilk30fd1502011-05-12 16:47:48 -0400231static void xen_blkif_disconnect(struct xen_blkif *blkif)
Konrad Rzeszutek Wilkee9ff852011-04-20 10:57:29 -0400232{
233 if (blkif->xenblkd) {
234 kthread_stop(blkif->xenblkd);
Konrad Rzeszutek Wilk8e3f8752013-01-23 16:54:32 -0500235 wake_up(&blkif->shutdown_wq);
Konrad Rzeszutek Wilkee9ff852011-04-20 10:57:29 -0400236 blkif->xenblkd = NULL;
237 }
238
239 atomic_dec(&blkif->refcnt);
240 wait_event(blkif->waiting_to_free, atomic_read(&blkif->refcnt) == 0);
241 atomic_inc(&blkif->refcnt);
242
243 if (blkif->irq) {
244 unbind_from_irqhandler(blkif->irq, blkif);
245 blkif->irq = 0;
246 }
247
248 if (blkif->blk_rings.common.sring) {
David Vrabel2d073842011-09-29 16:53:30 +0100249 xenbus_unmap_ring_vfree(blkif->be->dev, blkif->blk_ring);
Konrad Rzeszutek Wilkee9ff852011-04-20 10:57:29 -0400250 blkif->blk_rings.common.sring = NULL;
251 }
252}
253
Konrad Rzeszutek Wilk29117582012-08-13 10:53:17 -0400254static void xen_blkif_free(struct xen_blkif *blkif)
Konrad Rzeszutek Wilkee9ff852011-04-20 10:57:29 -0400255{
Roger Pau Monnebb642e82013-05-02 10:21:17 +0200256 struct pending_req *req, *n;
257 int i = 0, j;
Roger Pau Monnebf0720c2013-04-17 20:18:59 +0200258
Konrad Rzeszutek Wilkee9ff852011-04-20 10:57:29 -0400259 if (!atomic_dec_and_test(&blkif->refcnt))
260 BUG();
Roger Pau Monnebf0720c2013-04-17 20:18:59 +0200261
262 /* Check that there is no request in use */
Roger Pau Monnebb642e82013-05-02 10:21:17 +0200263 list_for_each_entry_safe(req, n, &blkif->pending_free, free_list) {
264 list_del(&req->free_list);
Roger Pau Monnebf0720c2013-04-17 20:18:59 +0200265
Roger Pau Monnebb642e82013-05-02 10:21:17 +0200266 for (j = 0; j < MAX_INDIRECT_SEGMENTS; j++)
267 kfree(req->segments[j]);
268
269 for (j = 0; j < MAX_INDIRECT_PAGES; j++)
270 kfree(req->indirect_pages[j]);
271
272 kfree(req);
273 i++;
274 }
275
276 WARN_ON(i != XEN_BLKIF_REQS);
277
Konrad Rzeszutek Wilk8b6bf742011-04-20 11:50:43 -0400278 kmem_cache_free(xen_blkif_cachep, blkif);
Konrad Rzeszutek Wilkee9ff852011-04-20 10:57:29 -0400279}
280
Konrad Rzeszutek Wilk8b6bf742011-04-20 11:50:43 -0400281int __init xen_blkif_interface_init(void)
Konrad Rzeszutek Wilkee9ff852011-04-20 10:57:29 -0400282{
Konrad Rzeszutek Wilk8b6bf742011-04-20 11:50:43 -0400283 xen_blkif_cachep = kmem_cache_create("blkif_cache",
Konrad Rzeszutek Wilk30fd1502011-05-12 16:47:48 -0400284 sizeof(struct xen_blkif),
Konrad Rzeszutek Wilk8b6bf742011-04-20 11:50:43 -0400285 0, 0, NULL);
286 if (!xen_blkif_cachep)
Konrad Rzeszutek Wilkee9ff852011-04-20 10:57:29 -0400287 return -ENOMEM;
288
289 return 0;
290}
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400291
Konrad Rzeszutek Wilka1397fa2011-04-14 17:05:23 -0400292/*
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400293 * sysfs interface for VBD I/O requests
294 */
295
296#define VBD_SHOW(name, format, args...) \
297 static ssize_t show_##name(struct device *_dev, \
298 struct device_attribute *attr, \
299 char *buf) \
300 { \
301 struct xenbus_device *dev = to_xenbus_device(_dev); \
Jeremy Fitzhardinge5cf6e4f2010-02-11 16:07:31 -0800302 struct backend_info *be = dev_get_drvdata(&dev->dev); \
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400303 \
304 return sprintf(buf, format, ##args); \
305 } \
306 static DEVICE_ATTR(name, S_IRUGO, show_##name, NULL)
307
Zoltan Kiss986cacb2013-03-11 16:15:50 +0000308VBD_SHOW(oo_req, "%llu\n", be->blkif->st_oo_req);
309VBD_SHOW(rd_req, "%llu\n", be->blkif->st_rd_req);
310VBD_SHOW(wr_req, "%llu\n", be->blkif->st_wr_req);
311VBD_SHOW(f_req, "%llu\n", be->blkif->st_f_req);
312VBD_SHOW(ds_req, "%llu\n", be->blkif->st_ds_req);
313VBD_SHOW(rd_sect, "%llu\n", be->blkif->st_rd_sect);
314VBD_SHOW(wr_sect, "%llu\n", be->blkif->st_wr_sect);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400315
Konrad Rzeszutek Wilk3d814732011-05-12 16:53:56 -0400316static struct attribute *xen_vbdstat_attrs[] = {
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400317 &dev_attr_oo_req.attr,
318 &dev_attr_rd_req.attr,
319 &dev_attr_wr_req.attr,
Konrad Rzeszutek Wilk24f567f2011-05-04 17:07:27 -0400320 &dev_attr_f_req.attr,
Li Dongyangb3cb0d62011-09-01 18:39:10 +0800321 &dev_attr_ds_req.attr,
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400322 &dev_attr_rd_sect.attr,
323 &dev_attr_wr_sect.attr,
324 NULL
325};
326
Konrad Rzeszutek Wilk3d814732011-05-12 16:53:56 -0400327static struct attribute_group xen_vbdstat_group = {
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400328 .name = "statistics",
Konrad Rzeszutek Wilk3d814732011-05-12 16:53:56 -0400329 .attrs = xen_vbdstat_attrs,
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400330};
331
332VBD_SHOW(physical_device, "%x:%x\n", be->major, be->minor);
333VBD_SHOW(mode, "%s\n", be->mode);
334
Konrad Rzeszutek Wilk29117582012-08-13 10:53:17 -0400335static int xenvbd_sysfs_addif(struct xenbus_device *dev)
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400336{
337 int error;
338
339 error = device_create_file(&dev->dev, &dev_attr_physical_device);
Konrad Rzeszutek Wilkd6091b22011-04-14 17:33:30 -0400340 if (error)
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400341 goto fail1;
342
343 error = device_create_file(&dev->dev, &dev_attr_mode);
344 if (error)
345 goto fail2;
346
Konrad Rzeszutek Wilk3d814732011-05-12 16:53:56 -0400347 error = sysfs_create_group(&dev->dev.kobj, &xen_vbdstat_group);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400348 if (error)
349 goto fail3;
350
351 return 0;
352
Konrad Rzeszutek Wilk3d814732011-05-12 16:53:56 -0400353fail3: sysfs_remove_group(&dev->dev.kobj, &xen_vbdstat_group);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400354fail2: device_remove_file(&dev->dev, &dev_attr_mode);
355fail1: device_remove_file(&dev->dev, &dev_attr_physical_device);
356 return error;
357}
358
Konrad Rzeszutek Wilk29117582012-08-13 10:53:17 -0400359static void xenvbd_sysfs_delif(struct xenbus_device *dev)
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400360{
Konrad Rzeszutek Wilk3d814732011-05-12 16:53:56 -0400361 sysfs_remove_group(&dev->dev.kobj, &xen_vbdstat_group);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400362 device_remove_file(&dev->dev, &dev_attr_mode);
363 device_remove_file(&dev->dev, &dev_attr_physical_device);
364}
365
Konrad Rzeszutek Wilk42c78412011-04-20 11:21:43 -0400366
Konrad Rzeszutek Wilk3d814732011-05-12 16:53:56 -0400367static void xen_vbd_free(struct xen_vbd *vbd)
Konrad Rzeszutek Wilk42c78412011-04-20 11:21:43 -0400368{
369 if (vbd->bdev)
370 blkdev_put(vbd->bdev, vbd->readonly ? FMODE_READ : FMODE_WRITE);
371 vbd->bdev = NULL;
372}
373
Konrad Rzeszutek Wilk3d814732011-05-12 16:53:56 -0400374static int xen_vbd_create(struct xen_blkif *blkif, blkif_vdev_t handle,
375 unsigned major, unsigned minor, int readonly,
376 int cdrom)
Konrad Rzeszutek Wilk42c78412011-04-20 11:21:43 -0400377{
Konrad Rzeszutek Wilk3d814732011-05-12 16:53:56 -0400378 struct xen_vbd *vbd;
Konrad Rzeszutek Wilk42c78412011-04-20 11:21:43 -0400379 struct block_device *bdev;
Konrad Rzeszutek Wilk24f567f2011-05-04 17:07:27 -0400380 struct request_queue *q;
Konrad Rzeszutek Wilk42c78412011-04-20 11:21:43 -0400381
382 vbd = &blkif->vbd;
383 vbd->handle = handle;
384 vbd->readonly = readonly;
385 vbd->type = 0;
386
387 vbd->pdevice = MKDEV(major, minor);
388
389 bdev = blkdev_get_by_dev(vbd->pdevice, vbd->readonly ?
390 FMODE_READ : FMODE_WRITE, NULL);
391
392 if (IS_ERR(bdev)) {
Konrad Rzeszutek Wilk3d814732011-05-12 16:53:56 -0400393 DPRINTK("xen_vbd_create: device %08x could not be opened.\n",
Konrad Rzeszutek Wilk42c78412011-04-20 11:21:43 -0400394 vbd->pdevice);
395 return -ENOENT;
396 }
397
398 vbd->bdev = bdev;
Konrad Rzeszutek Wilk42c78412011-04-20 11:21:43 -0400399 if (vbd->bdev->bd_disk == NULL) {
Konrad Rzeszutek Wilk3d814732011-05-12 16:53:56 -0400400 DPRINTK("xen_vbd_create: device %08x doesn't exist.\n",
Konrad Rzeszutek Wilk42c78412011-04-20 11:21:43 -0400401 vbd->pdevice);
Konrad Rzeszutek Wilk3d814732011-05-12 16:53:56 -0400402 xen_vbd_free(vbd);
Konrad Rzeszutek Wilk42c78412011-04-20 11:21:43 -0400403 return -ENOENT;
404 }
Laszlo Ersek64649202011-05-25 12:24:25 +0200405 vbd->size = vbd_sz(vbd);
Konrad Rzeszutek Wilk42c78412011-04-20 11:21:43 -0400406
407 if (vbd->bdev->bd_disk->flags & GENHD_FL_CD || cdrom)
408 vbd->type |= VDISK_CDROM;
409 if (vbd->bdev->bd_disk->flags & GENHD_FL_REMOVABLE)
410 vbd->type |= VDISK_REMOVABLE;
411
Konrad Rzeszutek Wilk24f567f2011-05-04 17:07:27 -0400412 q = bdev_get_queue(bdev);
413 if (q && q->flush_flags)
414 vbd->flush_support = true;
415
Konrad Rzeszutek Wilk5ea42982011-10-12 16:23:30 -0400416 if (q && blk_queue_secdiscard(q))
417 vbd->discard_secure = true;
418
Konrad Rzeszutek Wilk42c78412011-04-20 11:21:43 -0400419 DPRINTK("Successful creation of handle=%04x (dom=%u)\n",
420 handle, blkif->domid);
421 return 0;
422}
Konrad Rzeszutek Wilk8b6bf742011-04-20 11:50:43 -0400423static int xen_blkbk_remove(struct xenbus_device *dev)
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400424{
Jeremy Fitzhardinge5cf6e4f2010-02-11 16:07:31 -0800425 struct backend_info *be = dev_get_drvdata(&dev->dev);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400426
427 DPRINTK("");
428
429 if (be->major || be->minor)
430 xenvbd_sysfs_delif(dev);
431
432 if (be->backend_watch.node) {
433 unregister_xenbus_watch(&be->backend_watch);
434 kfree(be->backend_watch.node);
435 be->backend_watch.node = NULL;
436 }
437
438 if (be->blkif) {
Konrad Rzeszutek Wilk8b6bf742011-04-20 11:50:43 -0400439 xen_blkif_disconnect(be->blkif);
Konrad Rzeszutek Wilk3d814732011-05-12 16:53:56 -0400440 xen_vbd_free(&be->blkif->vbd);
Konrad Rzeszutek Wilk8b6bf742011-04-20 11:50:43 -0400441 xen_blkif_free(be->blkif);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400442 be->blkif = NULL;
443 }
444
Jan Beulich9d092602012-12-20 10:31:11 +0000445 kfree(be->mode);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400446 kfree(be);
Jeremy Fitzhardinge5cf6e4f2010-02-11 16:07:31 -0800447 dev_set_drvdata(&dev->dev, NULL);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400448 return 0;
449}
450
Konrad Rzeszutek Wilk24f567f2011-05-04 17:07:27 -0400451int xen_blkbk_flush_diskcache(struct xenbus_transaction xbt,
452 struct backend_info *be, int state)
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400453{
454 struct xenbus_device *dev = be->dev;
455 int err;
456
Konrad Rzeszutek Wilk24f567f2011-05-04 17:07:27 -0400457 err = xenbus_printf(xbt, dev->nodename, "feature-flush-cache",
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400458 "%d", state);
459 if (err)
Konrad Rzeszutek Wilk3389bb82012-03-14 13:04:00 -0400460 dev_warn(&dev->dev, "writing feature-flush-cache (%d)", err);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400461
462 return err;
463}
464
Konrad Rzeszutek Wilk3389bb82012-03-14 13:04:00 -0400465static void xen_blkbk_discard(struct xenbus_transaction xbt, struct backend_info *be)
Li Dongyangb3cb0d62011-09-01 18:39:10 +0800466{
467 struct xenbus_device *dev = be->dev;
468 struct xen_blkif *blkif = be->blkif;
Li Dongyangb3cb0d62011-09-01 18:39:10 +0800469 int err;
470 int state = 0;
Konrad Rzeszutek Wilk4dae7672012-03-13 18:43:23 -0400471 struct block_device *bdev = be->blkif->vbd.bdev;
472 struct request_queue *q = bdev_get_queue(bdev);
Li Dongyangb3cb0d62011-09-01 18:39:10 +0800473
Konrad Rzeszutek Wilk4dae7672012-03-13 18:43:23 -0400474 if (blk_queue_discard(q)) {
475 err = xenbus_printf(xbt, dev->nodename,
476 "discard-granularity", "%u",
477 q->limits.discard_granularity);
478 if (err) {
Konrad Rzeszutek Wilk3389bb82012-03-14 13:04:00 -0400479 dev_warn(&dev->dev, "writing discard-granularity (%d)", err);
480 return;
Li Dongyangb3cb0d62011-09-01 18:39:10 +0800481 }
Konrad Rzeszutek Wilk4dae7672012-03-13 18:43:23 -0400482 err = xenbus_printf(xbt, dev->nodename,
483 "discard-alignment", "%u",
484 q->limits.discard_alignment);
485 if (err) {
Konrad Rzeszutek Wilk3389bb82012-03-14 13:04:00 -0400486 dev_warn(&dev->dev, "writing discard-alignment (%d)", err);
487 return;
Konrad Rzeszutek Wilk4dae7672012-03-13 18:43:23 -0400488 }
489 state = 1;
490 /* Optional. */
491 err = xenbus_printf(xbt, dev->nodename,
492 "discard-secure", "%d",
493 blkif->vbd.discard_secure);
494 if (err) {
Konrad Rzeszutek Wilka71e23d2012-04-16 21:55:04 -0400495 dev_warn(&dev->dev, "writing discard-secure (%d)", err);
Konrad Rzeszutek Wilk3389bb82012-03-14 13:04:00 -0400496 return;
Li Dongyangb3cb0d62011-09-01 18:39:10 +0800497 }
Li Dongyangb3cb0d62011-09-01 18:39:10 +0800498 }
Li Dongyangb3cb0d62011-09-01 18:39:10 +0800499 err = xenbus_printf(xbt, dev->nodename, "feature-discard",
500 "%d", state);
501 if (err)
Konrad Rzeszutek Wilk3389bb82012-03-14 13:04:00 -0400502 dev_warn(&dev->dev, "writing feature-discard (%d)", err);
Li Dongyangb3cb0d62011-09-01 18:39:10 +0800503}
Konrad Rzeszutek Wilk29bde092011-10-10 00:42:22 -0400504int xen_blkbk_barrier(struct xenbus_transaction xbt,
505 struct backend_info *be, int state)
506{
507 struct xenbus_device *dev = be->dev;
508 int err;
509
510 err = xenbus_printf(xbt, dev->nodename, "feature-barrier",
511 "%d", state);
512 if (err)
Konrad Rzeszutek Wilk3389bb82012-03-14 13:04:00 -0400513 dev_warn(&dev->dev, "writing feature-barrier (%d)", err);
Konrad Rzeszutek Wilk29bde092011-10-10 00:42:22 -0400514
515 return err;
516}
Li Dongyangb3cb0d62011-09-01 18:39:10 +0800517
Konrad Rzeszutek Wilk01f37f22011-05-11 15:57:09 -0400518/*
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400519 * Entry point to this code when a new device is created. Allocate the basic
520 * structures, and watch the store waiting for the hotplug scripts to tell us
521 * the device's physical major and minor numbers. Switch to InitWait.
522 */
Konrad Rzeszutek Wilk8b6bf742011-04-20 11:50:43 -0400523static int xen_blkbk_probe(struct xenbus_device *dev,
524 const struct xenbus_device_id *id)
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400525{
526 int err;
527 struct backend_info *be = kzalloc(sizeof(struct backend_info),
528 GFP_KERNEL);
529 if (!be) {
530 xenbus_dev_fatal(dev, -ENOMEM,
531 "allocating backend structure");
532 return -ENOMEM;
533 }
534 be->dev = dev;
Jeremy Fitzhardinge5cf6e4f2010-02-11 16:07:31 -0800535 dev_set_drvdata(&dev->dev, be);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400536
Konrad Rzeszutek Wilk8b6bf742011-04-20 11:50:43 -0400537 be->blkif = xen_blkif_alloc(dev->otherend_id);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400538 if (IS_ERR(be->blkif)) {
539 err = PTR_ERR(be->blkif);
540 be->blkif = NULL;
541 xenbus_dev_fatal(dev, err, "creating block interface");
542 goto fail;
543 }
544
545 /* setup back pointer */
546 be->blkif->be = be;
547
Jeremy Fitzhardinge88122932009-02-09 12:05:51 -0800548 err = xenbus_watch_pathfmt(dev, &be->backend_watch, backend_changed,
549 "%s/%s", dev->nodename, "physical-device");
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400550 if (err)
551 goto fail;
552
553 err = xenbus_switch_state(dev, XenbusStateInitWait);
554 if (err)
555 goto fail;
556
557 return 0;
558
559fail:
560 DPRINTK("failed");
Konrad Rzeszutek Wilk8b6bf742011-04-20 11:50:43 -0400561 xen_blkbk_remove(dev);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400562 return err;
563}
564
565
Konrad Rzeszutek Wilk01f37f22011-05-11 15:57:09 -0400566/*
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400567 * Callback received when the hotplug scripts have placed the physical-device
568 * node. Read it and the mode node, and create a vbd. If the frontend is
569 * ready, connect.
570 */
571static void backend_changed(struct xenbus_watch *watch,
572 const char **vec, unsigned int len)
573{
574 int err;
575 unsigned major;
576 unsigned minor;
577 struct backend_info *be
578 = container_of(watch, struct backend_info, backend_watch);
579 struct xenbus_device *dev = be->dev;
580 int cdrom = 0;
Jan Beulich9d092602012-12-20 10:31:11 +0000581 unsigned long handle;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400582 char *device_type;
583
584 DPRINTK("");
585
586 err = xenbus_scanf(XBT_NIL, dev->nodename, "physical-device", "%x:%x",
587 &major, &minor);
588 if (XENBUS_EXIST_ERR(err)) {
Konrad Rzeszutek Wilk01f37f22011-05-11 15:57:09 -0400589 /*
590 * Since this watch will fire once immediately after it is
591 * registered, we expect this. Ignore it, and wait for the
592 * hotplug scripts.
593 */
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400594 return;
595 }
596 if (err != 2) {
597 xenbus_dev_fatal(dev, err, "reading physical-device");
598 return;
599 }
600
Jan Beulich9d092602012-12-20 10:31:11 +0000601 if (be->major | be->minor) {
602 if (be->major != major || be->minor != minor)
603 pr_warn(DRV_PFX "changing physical device (from %x:%x to %x:%x) not supported.\n",
604 be->major, be->minor, major, minor);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400605 return;
606 }
607
608 be->mode = xenbus_read(XBT_NIL, dev->nodename, "mode", NULL);
609 if (IS_ERR(be->mode)) {
610 err = PTR_ERR(be->mode);
611 be->mode = NULL;
612 xenbus_dev_fatal(dev, err, "reading mode");
613 return;
614 }
615
616 device_type = xenbus_read(XBT_NIL, dev->otherend, "device-type", NULL);
617 if (!IS_ERR(device_type)) {
618 cdrom = strcmp(device_type, "cdrom") == 0;
619 kfree(device_type);
620 }
621
Jan Beulich9d092602012-12-20 10:31:11 +0000622 /* Front end dir is a number, which is used as the handle. */
Jingoo Hanbb8e0e82013-09-11 14:20:07 -0700623 err = kstrtoul(strrchr(dev->otherend, '/') + 1, 0, &handle);
Jan Beulich9d092602012-12-20 10:31:11 +0000624 if (err)
625 return;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400626
Jan Beulich9d092602012-12-20 10:31:11 +0000627 be->major = major;
628 be->minor = minor;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400629
Jan Beulich9d092602012-12-20 10:31:11 +0000630 err = xen_vbd_create(be->blkif, handle, major, minor,
631 !strchr(be->mode, 'w'), cdrom);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400632
Jan Beulich9d092602012-12-20 10:31:11 +0000633 if (err)
634 xenbus_dev_fatal(dev, err, "creating vbd structure");
635 else {
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400636 err = xenvbd_sysfs_addif(dev);
637 if (err) {
Konrad Rzeszutek Wilk3d814732011-05-12 16:53:56 -0400638 xen_vbd_free(&be->blkif->vbd);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400639 xenbus_dev_fatal(dev, err, "creating sysfs entries");
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400640 }
Jan Beulich9d092602012-12-20 10:31:11 +0000641 }
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400642
Jan Beulich9d092602012-12-20 10:31:11 +0000643 if (err) {
644 kfree(be->mode);
645 be->mode = NULL;
646 be->major = 0;
647 be->minor = 0;
648 } else {
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400649 /* We're potentially connected now */
Konrad Rzeszutek Wilk8b6bf742011-04-20 11:50:43 -0400650 xen_update_blkif_status(be->blkif);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400651 }
652}
653
654
Konrad Rzeszutek Wilk01f37f22011-05-11 15:57:09 -0400655/*
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400656 * Callback received when the frontend's state changes.
657 */
658static void frontend_changed(struct xenbus_device *dev,
659 enum xenbus_state frontend_state)
660{
Jeremy Fitzhardinge5cf6e4f2010-02-11 16:07:31 -0800661 struct backend_info *be = dev_get_drvdata(&dev->dev);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400662 int err;
663
664 DPRINTK("%s", xenbus_strstate(frontend_state));
665
666 switch (frontend_state) {
667 case XenbusStateInitialising:
668 if (dev->state == XenbusStateClosed) {
Konrad Rzeszutek Wilk22b20f22011-05-12 16:43:12 -0400669 pr_info(DRV_PFX "%s: prepare for reconnect\n",
Konrad Rzeszutek Wilkebe81902011-05-12 16:42:31 -0400670 dev->nodename);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400671 xenbus_switch_state(dev, XenbusStateInitWait);
672 }
673 break;
674
675 case XenbusStateInitialised:
676 case XenbusStateConnected:
Konrad Rzeszutek Wilk01f37f22011-05-11 15:57:09 -0400677 /*
678 * Ensure we connect even when two watches fire in
Justin P. Mattock42b2aa82011-11-28 20:31:00 -0800679 * close succession and we miss the intermediate value
Konrad Rzeszutek Wilk01f37f22011-05-11 15:57:09 -0400680 * of frontend_state.
681 */
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400682 if (dev->state == XenbusStateConnected)
683 break;
684
Konrad Rzeszutek Wilk01f37f22011-05-11 15:57:09 -0400685 /*
686 * Enforce precondition before potential leak point.
Joe Jin1bc05b02011-08-15 12:57:07 +0800687 * xen_blkif_disconnect() is idempotent.
Keir Fraser313d7b02010-11-24 22:08:20 -0800688 */
Konrad Rzeszutek Wilk8b6bf742011-04-20 11:50:43 -0400689 xen_blkif_disconnect(be->blkif);
Keir Fraser313d7b02010-11-24 22:08:20 -0800690
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400691 err = connect_ring(be);
692 if (err)
693 break;
Konrad Rzeszutek Wilk8b6bf742011-04-20 11:50:43 -0400694 xen_update_blkif_status(be->blkif);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400695 break;
696
697 case XenbusStateClosing:
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400698 xenbus_switch_state(dev, XenbusStateClosing);
699 break;
700
701 case XenbusStateClosed:
Joe Jin6f5986b2011-08-15 12:51:31 +0800702 xen_blkif_disconnect(be->blkif);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400703 xenbus_switch_state(dev, XenbusStateClosed);
704 if (xenbus_dev_is_online(dev))
705 break;
706 /* fall through if not online */
707 case XenbusStateUnknown:
Joe Jin1bc05b02011-08-15 12:57:07 +0800708 /* implies xen_blkif_disconnect() via xen_blkbk_remove() */
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400709 device_unregister(&dev->dev);
710 break;
711
712 default:
713 xenbus_dev_fatal(dev, -EINVAL, "saw state %d at frontend",
714 frontend_state);
715 break;
716 }
717}
718
719
720/* ** Connection ** */
721
722
Konrad Rzeszutek Wilk01f37f22011-05-11 15:57:09 -0400723/*
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400724 * Write the physical details regarding the block device to the store, and
725 * switch to Connected state.
726 */
727static void connect(struct backend_info *be)
728{
729 struct xenbus_transaction xbt;
730 int err;
731 struct xenbus_device *dev = be->dev;
732
733 DPRINTK("%s", dev->otherend);
734
735 /* Supply the information about the device the frontend needs */
736again:
737 err = xenbus_transaction_start(&xbt);
738 if (err) {
739 xenbus_dev_fatal(dev, err, "starting transaction");
740 return;
741 }
742
Konrad Rzeszutek Wilk29bde092011-10-10 00:42:22 -0400743 /* If we can't advertise it is OK. */
Konrad Rzeszutek Wilk3389bb82012-03-14 13:04:00 -0400744 xen_blkbk_flush_diskcache(xbt, be, be->blkif->vbd.flush_support);
745
746 xen_blkbk_discard(xbt, be);
747
748 xen_blkbk_barrier(xbt, be, be->blkif->vbd.flush_support);
Konrad Rzeszutek Wilk29bde092011-10-10 00:42:22 -0400749
Roger Pau Monne0a8704a2012-10-24 18:58:45 +0200750 err = xenbus_printf(xbt, dev->nodename, "feature-persistent", "%u", 1);
751 if (err) {
752 xenbus_dev_fatal(dev, err, "writing %s/feature-persistent",
753 dev->nodename);
754 goto abort;
755 }
Roger Pau Monne402b27f2013-04-18 16:06:54 +0200756 err = xenbus_printf(xbt, dev->nodename, "feature-max-indirect-segments", "%u",
757 MAX_INDIRECT_SEGMENTS);
758 if (err)
759 dev_warn(&dev->dev, "writing %s/feature-max-indirect-segments (%d)",
760 dev->nodename, err);
Roger Pau Monne0a8704a2012-10-24 18:58:45 +0200761
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400762 err = xenbus_printf(xbt, dev->nodename, "sectors", "%llu",
Konrad Rzeszutek Wilk42c78412011-04-20 11:21:43 -0400763 (unsigned long long)vbd_sz(&be->blkif->vbd));
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400764 if (err) {
765 xenbus_dev_fatal(dev, err, "writing %s/sectors",
766 dev->nodename);
767 goto abort;
768 }
769
770 /* FIXME: use a typename instead */
771 err = xenbus_printf(xbt, dev->nodename, "info", "%u",
Konrad Rzeszutek Wilk42c78412011-04-20 11:21:43 -0400772 be->blkif->vbd.type |
773 (be->blkif->vbd.readonly ? VDISK_READONLY : 0));
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400774 if (err) {
775 xenbus_dev_fatal(dev, err, "writing %s/info",
776 dev->nodename);
777 goto abort;
778 }
779 err = xenbus_printf(xbt, dev->nodename, "sector-size", "%lu",
Konrad Rzeszutek Wilk42c78412011-04-20 11:21:43 -0400780 (unsigned long)
781 bdev_logical_block_size(be->blkif->vbd.bdev));
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400782 if (err) {
783 xenbus_dev_fatal(dev, err, "writing %s/sector-size",
784 dev->nodename);
785 goto abort;
786 }
Stefan Bader7c4d7d72013-05-13 16:28:15 +0200787 err = xenbus_printf(xbt, dev->nodename, "physical-sector-size", "%u",
788 bdev_physical_block_size(be->blkif->vbd.bdev));
789 if (err)
790 xenbus_dev_error(dev, err, "writing %s/physical-sector-size",
791 dev->nodename);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400792
793 err = xenbus_transaction_end(xbt, 0);
794 if (err == -EAGAIN)
795 goto again;
796 if (err)
797 xenbus_dev_fatal(dev, err, "ending transaction");
798
799 err = xenbus_switch_state(dev, XenbusStateConnected);
800 if (err)
Joe Perches08b8bfc2011-06-12 09:21:13 -0700801 xenbus_dev_fatal(dev, err, "%s: switching to Connected state",
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400802 dev->nodename);
803
804 return;
805 abort:
806 xenbus_transaction_end(xbt, 1);
807}
808
809
810static int connect_ring(struct backend_info *be)
811{
812 struct xenbus_device *dev = be->dev;
813 unsigned long ring_ref;
814 unsigned int evtchn;
Roger Pau Monne0a8704a2012-10-24 18:58:45 +0200815 unsigned int pers_grants;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400816 char protocol[64] = "";
817 int err;
818
819 DPRINTK("%s", dev->otherend);
820
Konrad Rzeszutek Wilkd6091b22011-04-14 17:33:30 -0400821 err = xenbus_gather(XBT_NIL, dev->otherend, "ring-ref", "%lu",
822 &ring_ref, "event-channel", "%u", &evtchn, NULL);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400823 if (err) {
824 xenbus_dev_fatal(dev, err,
825 "reading %s/ring-ref and event-channel",
826 dev->otherend);
827 return err;
828 }
829
830 be->blkif->blk_protocol = BLKIF_PROTOCOL_NATIVE;
831 err = xenbus_gather(XBT_NIL, dev->otherend, "protocol",
832 "%63s", protocol, NULL);
833 if (err)
834 strcpy(protocol, "unspecified, assuming native");
835 else if (0 == strcmp(protocol, XEN_IO_PROTO_ABI_NATIVE))
836 be->blkif->blk_protocol = BLKIF_PROTOCOL_NATIVE;
837 else if (0 == strcmp(protocol, XEN_IO_PROTO_ABI_X86_32))
838 be->blkif->blk_protocol = BLKIF_PROTOCOL_X86_32;
839 else if (0 == strcmp(protocol, XEN_IO_PROTO_ABI_X86_64))
840 be->blkif->blk_protocol = BLKIF_PROTOCOL_X86_64;
841 else {
842 xenbus_dev_fatal(dev, err, "unknown fe protocol %s", protocol);
843 return -1;
844 }
Roger Pau Monne0a8704a2012-10-24 18:58:45 +0200845 err = xenbus_gather(XBT_NIL, dev->otherend,
Roger Pau Monnecb5bd4d2012-11-02 16:43:04 +0100846 "feature-persistent", "%u",
Roger Pau Monne0a8704a2012-10-24 18:58:45 +0200847 &pers_grants, NULL);
848 if (err)
849 pers_grants = 0;
850
851 be->blkif->vbd.feature_gnt_persistent = pers_grants;
852 be->blkif->vbd.overflow_max_grants = 0;
853
854 pr_info(DRV_PFX "ring-ref %ld, event-channel %d, protocol %d (%s) %s\n",
855 ring_ref, evtchn, be->blkif->blk_protocol, protocol,
856 pers_grants ? "persistent grants" : "");
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400857
858 /* Map the shared frame, irq etc. */
Konrad Rzeszutek Wilk8b6bf742011-04-20 11:50:43 -0400859 err = xen_blkif_map(be->blkif, ring_ref, evtchn);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400860 if (err) {
861 xenbus_dev_fatal(dev, err, "mapping ring-ref %lu port %u",
862 ring_ref, evtchn);
863 return err;
864 }
865
866 return 0;
867}
868
869
870/* ** Driver Registration ** */
871
872
Konrad Rzeszutek Wilk8b6bf742011-04-20 11:50:43 -0400873static const struct xenbus_device_id xen_blkbk_ids[] = {
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400874 { "vbd" },
875 { "" }
876};
877
878
Jan Beulich73db1442011-12-22 09:08:13 +0000879static DEFINE_XENBUS_DRIVER(xen_blkbk, ,
Konrad Rzeszutek Wilk8b6bf742011-04-20 11:50:43 -0400880 .probe = xen_blkbk_probe,
881 .remove = xen_blkbk_remove,
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400882 .otherend_changed = frontend_changed
Jan Beulich73db1442011-12-22 09:08:13 +0000883);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400884
885
Konrad Rzeszutek Wilk8b6bf742011-04-20 11:50:43 -0400886int xen_blkif_xenbus_init(void)
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400887{
Jan Beulich73db1442011-12-22 09:08:13 +0000888 return xenbus_register_backend(&xen_blkbk_driver);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400889}