blob: f53cff42f8dab8891143ff2d6a3626273857eec6 [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
Tao Chen77387b82015-04-01 15:04:22 +000017#define pr_fmt(fmt) "xen-blkback: " fmt
18
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -040019#include <stdarg.h>
20#include <linux/module.h>
21#include <linux/kthread.h>
Konrad Rzeszutek Wilkee9ff852011-04-20 10:57:29 -040022#include <xen/events.h>
23#include <xen/grant_table.h>
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -040024#include "common.h"
25
Tao Chen13755902015-03-27 13:15:54 +000026/* Enlarge the array size in order to fully show blkback name. */
27#define BLKBACK_NAME_LEN (20)
Bob Liu86839c52015-06-03 13:40:03 +080028#define RINGREF_NAME_LEN (20)
Tao Chen13755902015-03-27 13:15:54 +000029
Konrad Rzeszutek Wilkd6091b22011-04-14 17:33:30 -040030struct backend_info {
Konrad Rzeszutek Wilk01f37f22011-05-11 15:57:09 -040031 struct xenbus_device *dev;
Konrad Rzeszutek Wilk51854322011-05-12 18:02:28 -040032 struct xen_blkif *blkif;
Konrad Rzeszutek Wilk01f37f22011-05-11 15:57:09 -040033 struct xenbus_watch backend_watch;
34 unsigned major;
35 unsigned minor;
36 char *mode;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -040037};
38
Konrad Rzeszutek Wilk8b6bf742011-04-20 11:50:43 -040039static struct kmem_cache *xen_blkif_cachep;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -040040static void connect(struct backend_info *);
41static int connect_ring(struct backend_info *);
42static void backend_changed(struct xenbus_watch *, const char **,
43 unsigned int);
Valentin Priescu814d04e2014-05-20 22:28:50 +020044static void xen_blkif_free(struct xen_blkif *blkif);
45static void xen_vbd_free(struct xen_vbd *vbd);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -040046
Konrad Rzeszutek Wilk8b6bf742011-04-20 11:50:43 -040047struct xenbus_device *xen_blkbk_xenbus(struct backend_info *be)
Jeremy Fitzhardinge98e036a2010-03-18 15:35:05 -070048{
49 return be->dev;
50}
51
Valentin Priescu814d04e2014-05-20 22:28:50 +020052/*
53 * The last request could free the device from softirq context and
54 * xen_blkif_free() can sleep.
55 */
56static void xen_blkif_deferred_free(struct work_struct *work)
57{
58 struct xen_blkif *blkif;
59
60 blkif = container_of(work, struct xen_blkif, free_work);
61 xen_blkif_free(blkif);
62}
63
Konrad Rzeszutek Wilk30fd1502011-05-12 16:47:48 -040064static int blkback_name(struct xen_blkif *blkif, char *buf)
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -040065{
66 char *devpath, *devname;
67 struct xenbus_device *dev = blkif->be->dev;
68
69 devpath = xenbus_read(XBT_NIL, dev->nodename, "dev", NULL);
70 if (IS_ERR(devpath))
71 return PTR_ERR(devpath);
72
Konrad Rzeszutek Wilkd6091b22011-04-14 17:33:30 -040073 devname = strstr(devpath, "/dev/");
74 if (devname != NULL)
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -040075 devname += strlen("/dev/");
76 else
77 devname = devpath;
78
Tao Chen13755902015-03-27 13:15:54 +000079 snprintf(buf, BLKBACK_NAME_LEN, "blkback.%d.%s", blkif->domid, devname);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -040080 kfree(devpath);
81
82 return 0;
83}
84
Konrad Rzeszutek Wilk30fd1502011-05-12 16:47:48 -040085static void xen_update_blkif_status(struct xen_blkif *blkif)
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -040086{
87 int err;
Tao Chen13755902015-03-27 13:15:54 +000088 char name[BLKBACK_NAME_LEN];
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -040089
90 /* Not ready to connect? */
91 if (!blkif->irq || !blkif->vbd.bdev)
92 return;
93
94 /* Already connected? */
95 if (blkif->be->dev->state == XenbusStateConnected)
96 return;
97
98 /* Attempt to connect: exit if we fail to. */
99 connect(blkif->be);
100 if (blkif->be->dev->state != XenbusStateConnected)
101 return;
102
103 err = blkback_name(blkif, name);
104 if (err) {
105 xenbus_dev_error(blkif->be->dev, err, "get blkback dev name");
106 return;
107 }
108
Chris Lalancettecbf46292010-07-21 12:41:45 -0700109 err = filemap_write_and_wait(blkif->vbd.bdev->bd_inode->i_mapping);
110 if (err) {
111 xenbus_dev_error(blkif->be->dev, err, "block flush");
112 return;
113 }
114 invalidate_inode_pages2(blkif->vbd.bdev->bd_inode->i_mapping);
115
Kees Cookf1701682013-07-03 15:04:58 -0700116 blkif->xenblkd = kthread_run(xen_blkif_schedule, blkif, "%s", name);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400117 if (IS_ERR(blkif->xenblkd)) {
118 err = PTR_ERR(blkif->xenblkd);
119 blkif->xenblkd = NULL;
120 xenbus_dev_error(blkif->be->dev, err, "start xenblkd");
Roger Pau Monne3f3aad52013-04-17 20:18:57 +0200121 return;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400122 }
123}
124
Konrad Rzeszutek Wilk30fd1502011-05-12 16:47:48 -0400125static struct xen_blkif *xen_blkif_alloc(domid_t domid)
Konrad Rzeszutek Wilkee9ff852011-04-20 10:57:29 -0400126{
Konrad Rzeszutek Wilk30fd1502011-05-12 16:47:48 -0400127 struct xen_blkif *blkif;
Konrad Rzeszutek Wilkee9ff852011-04-20 10:57:29 -0400128
Roger Pau Monne402b27f2013-04-18 16:06:54 +0200129 BUILD_BUG_ON(MAX_INDIRECT_PAGES > BLKIF_MAX_INDIRECT_PAGES_PER_REQUEST);
Konrad Rzeszutek Wilkee9ff852011-04-20 10:57:29 -0400130
Wei Yongjun654dbef2012-08-27 12:28:57 +0800131 blkif = kmem_cache_zalloc(xen_blkif_cachep, GFP_KERNEL);
Konrad Rzeszutek Wilkee9ff852011-04-20 10:57:29 -0400132 if (!blkif)
133 return ERR_PTR(-ENOMEM);
134
Konrad Rzeszutek Wilkee9ff852011-04-20 10:57:29 -0400135 blkif->domid = domid;
136 spin_lock_init(&blkif->blk_ring_lock);
137 atomic_set(&blkif->refcnt, 1);
138 init_waitqueue_head(&blkif->wq);
Konrad Rzeszutek Wilk29bde092011-10-10 00:42:22 -0400139 init_completion(&blkif->drain_complete);
140 atomic_set(&blkif->drain, 0);
Konrad Rzeszutek Wilkee9ff852011-04-20 10:57:29 -0400141 blkif->st_print = jiffies;
Roger Pau Monne0a8704a2012-10-24 18:58:45 +0200142 blkif->persistent_gnts.rb_node = NULL;
Roger Pau Monnec6cc1422013-04-17 20:18:56 +0200143 spin_lock_init(&blkif->free_pages_lock);
144 INIT_LIST_HEAD(&blkif->free_pages);
Roger Pau Monneef753412014-02-04 11:26:13 +0100145 INIT_LIST_HEAD(&blkif->persistent_purge_list);
Roger Pau Monnec6cc1422013-04-17 20:18:56 +0200146 blkif->free_pages_num = 0;
Roger Pau Monne3f3aad52013-04-17 20:18:57 +0200147 atomic_set(&blkif->persistent_gnt_in_use, 0);
Roger Pau Monnec05f3e32014-02-04 11:26:14 +0100148 atomic_set(&blkif->inflight, 0);
Roger Pau Monneabb97b82014-02-11 20:34:03 -0700149 INIT_WORK(&blkif->persistent_purge_work, xen_blkbk_unmap_purged_grants);
Konrad Rzeszutek Wilkee9ff852011-04-20 10:57:29 -0400150
Roger Pau Monnebf0720c2013-04-17 20:18:59 +0200151 INIT_LIST_HEAD(&blkif->pending_free);
Valentin Priescu814d04e2014-05-20 22:28:50 +0200152 INIT_WORK(&blkif->free_work, xen_blkif_deferred_free);
Roger Pau Monnebf0720c2013-04-17 20:18:59 +0200153 spin_lock_init(&blkif->pending_free_lock);
154 init_waitqueue_head(&blkif->pending_free_wq);
Konrad Rzeszutek Wilk8e3f8752013-01-23 16:54:32 -0500155 init_waitqueue_head(&blkif->shutdown_wq);
Konrad Rzeszutek Wilkee9ff852011-04-20 10:57:29 -0400156
157 return blkif;
158}
159
Bob Liu86839c52015-06-03 13:40:03 +0800160static int xen_blkif_map(struct xen_blkif *blkif, grant_ref_t *gref,
161 unsigned int nr_grefs, unsigned int evtchn)
Konrad Rzeszutek Wilkee9ff852011-04-20 10:57:29 -0400162{
163 int err;
164
165 /* Already connected through? */
166 if (blkif->irq)
167 return 0;
168
Bob Liu86839c52015-06-03 13:40:03 +0800169 err = xenbus_map_ring_valloc(blkif->be->dev, gref, nr_grefs,
Wei Liuccc9d902015-04-03 14:44:59 +0800170 &blkif->blk_ring);
David Vrabel2d073842011-09-29 16:53:30 +0100171 if (err < 0)
Konrad Rzeszutek Wilkee9ff852011-04-20 10:57:29 -0400172 return err;
Konrad Rzeszutek Wilkee9ff852011-04-20 10:57:29 -0400173
174 switch (blkif->blk_protocol) {
175 case BLKIF_PROTOCOL_NATIVE:
176 {
177 struct blkif_sring *sring;
David Vrabel2d073842011-09-29 16:53:30 +0100178 sring = (struct blkif_sring *)blkif->blk_ring;
Julien Grall67de5df2015-05-05 16:25:56 +0100179 BACK_RING_INIT(&blkif->blk_rings.native, sring,
180 XEN_PAGE_SIZE * nr_grefs);
Konrad Rzeszutek Wilkee9ff852011-04-20 10:57:29 -0400181 break;
182 }
183 case BLKIF_PROTOCOL_X86_32:
184 {
185 struct blkif_x86_32_sring *sring_x86_32;
David Vrabel2d073842011-09-29 16:53:30 +0100186 sring_x86_32 = (struct blkif_x86_32_sring *)blkif->blk_ring;
Julien Grall67de5df2015-05-05 16:25:56 +0100187 BACK_RING_INIT(&blkif->blk_rings.x86_32, sring_x86_32,
188 XEN_PAGE_SIZE * nr_grefs);
Konrad Rzeszutek Wilkee9ff852011-04-20 10:57:29 -0400189 break;
190 }
191 case BLKIF_PROTOCOL_X86_64:
192 {
193 struct blkif_x86_64_sring *sring_x86_64;
David Vrabel2d073842011-09-29 16:53:30 +0100194 sring_x86_64 = (struct blkif_x86_64_sring *)blkif->blk_ring;
Julien Grall67de5df2015-05-05 16:25:56 +0100195 BACK_RING_INIT(&blkif->blk_rings.x86_64, sring_x86_64,
196 XEN_PAGE_SIZE * nr_grefs);
Konrad Rzeszutek Wilkee9ff852011-04-20 10:57:29 -0400197 break;
198 }
199 default:
200 BUG();
201 }
202
Konrad Rzeszutek Wilk8b6bf742011-04-20 11:50:43 -0400203 err = bind_interdomain_evtchn_to_irqhandler(blkif->domid, evtchn,
204 xen_blkif_be_int, 0,
205 "blkif-backend", blkif);
Konrad Rzeszutek Wilkee9ff852011-04-20 10:57:29 -0400206 if (err < 0) {
David Vrabel2d073842011-09-29 16:53:30 +0100207 xenbus_unmap_ring_vfree(blkif->be->dev, blkif->blk_ring);
Konrad Rzeszutek Wilkee9ff852011-04-20 10:57:29 -0400208 blkif->blk_rings.common.sring = NULL;
209 return err;
210 }
211 blkif->irq = err;
212
213 return 0;
214}
215
Valentin Priescu814d04e2014-05-20 22:28:50 +0200216static int xen_blkif_disconnect(struct xen_blkif *blkif)
Konrad Rzeszutek Wilkee9ff852011-04-20 10:57:29 -0400217{
Roger Pau Monnef929d422015-09-04 12:08:07 +0200218 struct pending_req *req, *n;
219 int i = 0, j;
220
Konrad Rzeszutek Wilkee9ff852011-04-20 10:57:29 -0400221 if (blkif->xenblkd) {
222 kthread_stop(blkif->xenblkd);
Konrad Rzeszutek Wilk8e3f8752013-01-23 16:54:32 -0500223 wake_up(&blkif->shutdown_wq);
Konrad Rzeszutek Wilkee9ff852011-04-20 10:57:29 -0400224 blkif->xenblkd = NULL;
225 }
226
Valentin Priescu814d04e2014-05-20 22:28:50 +0200227 /* The above kthread_stop() guarantees that at this point we
228 * don't have any discard_io or other_io requests. So, checking
229 * for inflight IO is enough.
230 */
231 if (atomic_read(&blkif->inflight) > 0)
232 return -EBUSY;
Konrad Rzeszutek Wilkee9ff852011-04-20 10:57:29 -0400233
234 if (blkif->irq) {
235 unbind_from_irqhandler(blkif->irq, blkif);
236 blkif->irq = 0;
237 }
238
239 if (blkif->blk_rings.common.sring) {
David Vrabel2d073842011-09-29 16:53:30 +0100240 xenbus_unmap_ring_vfree(blkif->be->dev, blkif->blk_ring);
Konrad Rzeszutek Wilkee9ff852011-04-20 10:57:29 -0400241 blkif->blk_rings.common.sring = NULL;
242 }
Valentin Priescu814d04e2014-05-20 22:28:50 +0200243
Vitaly Kuznetsov12ea7292014-09-08 15:21:33 +0200244 /* Remove all persistent grants and the cache of ballooned pages. */
245 xen_blkbk_free_caches(blkif);
246
Roger Pau Monnebf0720c2013-04-17 20:18:59 +0200247 /* Check that there is no request in use */
Roger Pau Monnebb642e82013-05-02 10:21:17 +0200248 list_for_each_entry_safe(req, n, &blkif->pending_free, free_list) {
249 list_del(&req->free_list);
Roger Pau Monnebf0720c2013-04-17 20:18:59 +0200250
Roger Pau Monnebb642e82013-05-02 10:21:17 +0200251 for (j = 0; j < MAX_INDIRECT_SEGMENTS; j++)
252 kfree(req->segments[j]);
253
254 for (j = 0; j < MAX_INDIRECT_PAGES; j++)
255 kfree(req->indirect_pages[j]);
256
257 kfree(req);
258 i++;
259 }
260
Bob Liu86839c52015-06-03 13:40:03 +0800261 WARN_ON(i != (XEN_BLKIF_REQS_PER_PAGE * blkif->nr_ring_pages));
Roger Pau Monnef929d422015-09-04 12:08:07 +0200262 blkif->nr_ring_pages = 0;
263
264 return 0;
265}
266
267static void xen_blkif_free(struct xen_blkif *blkif)
268{
269
270 xen_blkif_disconnect(blkif);
271 xen_vbd_free(&blkif->vbd);
272
273 /* Make sure everything is drained before shutting down */
274 BUG_ON(blkif->persistent_gnt_c != 0);
275 BUG_ON(atomic_read(&blkif->persistent_gnt_in_use) != 0);
276 BUG_ON(blkif->free_pages_num != 0);
277 BUG_ON(!list_empty(&blkif->persistent_purge_list));
278 BUG_ON(!list_empty(&blkif->free_pages));
279 BUG_ON(!RB_EMPTY_ROOT(&blkif->persistent_gnts));
Roger Pau Monnebb642e82013-05-02 10:21:17 +0200280
Konrad Rzeszutek Wilk8b6bf742011-04-20 11:50:43 -0400281 kmem_cache_free(xen_blkif_cachep, blkif);
Konrad Rzeszutek Wilkee9ff852011-04-20 10:57:29 -0400282}
283
Konrad Rzeszutek Wilk8b6bf742011-04-20 11:50:43 -0400284int __init xen_blkif_interface_init(void)
Konrad Rzeszutek Wilkee9ff852011-04-20 10:57:29 -0400285{
Konrad Rzeszutek Wilk8b6bf742011-04-20 11:50:43 -0400286 xen_blkif_cachep = kmem_cache_create("blkif_cache",
Konrad Rzeszutek Wilk30fd1502011-05-12 16:47:48 -0400287 sizeof(struct xen_blkif),
Konrad Rzeszutek Wilk8b6bf742011-04-20 11:50:43 -0400288 0, 0, NULL);
289 if (!xen_blkif_cachep)
Konrad Rzeszutek Wilkee9ff852011-04-20 10:57:29 -0400290 return -ENOMEM;
291
292 return 0;
293}
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400294
Konrad Rzeszutek Wilka1397fa2011-04-14 17:05:23 -0400295/*
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400296 * sysfs interface for VBD I/O requests
297 */
298
299#define VBD_SHOW(name, format, args...) \
300 static ssize_t show_##name(struct device *_dev, \
301 struct device_attribute *attr, \
302 char *buf) \
303 { \
304 struct xenbus_device *dev = to_xenbus_device(_dev); \
Jeremy Fitzhardinge5cf6e4f2010-02-11 16:07:31 -0800305 struct backend_info *be = dev_get_drvdata(&dev->dev); \
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400306 \
307 return sprintf(buf, format, ##args); \
308 } \
309 static DEVICE_ATTR(name, S_IRUGO, show_##name, NULL)
310
Zoltan Kiss986cacb2013-03-11 16:15:50 +0000311VBD_SHOW(oo_req, "%llu\n", be->blkif->st_oo_req);
312VBD_SHOW(rd_req, "%llu\n", be->blkif->st_rd_req);
313VBD_SHOW(wr_req, "%llu\n", be->blkif->st_wr_req);
314VBD_SHOW(f_req, "%llu\n", be->blkif->st_f_req);
315VBD_SHOW(ds_req, "%llu\n", be->blkif->st_ds_req);
316VBD_SHOW(rd_sect, "%llu\n", be->blkif->st_rd_sect);
317VBD_SHOW(wr_sect, "%llu\n", be->blkif->st_wr_sect);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400318
Konrad Rzeszutek Wilk3d814732011-05-12 16:53:56 -0400319static struct attribute *xen_vbdstat_attrs[] = {
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400320 &dev_attr_oo_req.attr,
321 &dev_attr_rd_req.attr,
322 &dev_attr_wr_req.attr,
Konrad Rzeszutek Wilk24f567f2011-05-04 17:07:27 -0400323 &dev_attr_f_req.attr,
Li Dongyangb3cb0d62011-09-01 18:39:10 +0800324 &dev_attr_ds_req.attr,
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400325 &dev_attr_rd_sect.attr,
326 &dev_attr_wr_sect.attr,
327 NULL
328};
329
Konrad Rzeszutek Wilk3d814732011-05-12 16:53:56 -0400330static struct attribute_group xen_vbdstat_group = {
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400331 .name = "statistics",
Konrad Rzeszutek Wilk3d814732011-05-12 16:53:56 -0400332 .attrs = xen_vbdstat_attrs,
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400333};
334
335VBD_SHOW(physical_device, "%x:%x\n", be->major, be->minor);
336VBD_SHOW(mode, "%s\n", be->mode);
337
Konrad Rzeszutek Wilk29117582012-08-13 10:53:17 -0400338static int xenvbd_sysfs_addif(struct xenbus_device *dev)
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400339{
340 int error;
341
342 error = device_create_file(&dev->dev, &dev_attr_physical_device);
Konrad Rzeszutek Wilkd6091b22011-04-14 17:33:30 -0400343 if (error)
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400344 goto fail1;
345
346 error = device_create_file(&dev->dev, &dev_attr_mode);
347 if (error)
348 goto fail2;
349
Konrad Rzeszutek Wilk3d814732011-05-12 16:53:56 -0400350 error = sysfs_create_group(&dev->dev.kobj, &xen_vbdstat_group);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400351 if (error)
352 goto fail3;
353
354 return 0;
355
Konrad Rzeszutek Wilk3d814732011-05-12 16:53:56 -0400356fail3: sysfs_remove_group(&dev->dev.kobj, &xen_vbdstat_group);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400357fail2: device_remove_file(&dev->dev, &dev_attr_mode);
358fail1: device_remove_file(&dev->dev, &dev_attr_physical_device);
359 return error;
360}
361
Konrad Rzeszutek Wilk29117582012-08-13 10:53:17 -0400362static void xenvbd_sysfs_delif(struct xenbus_device *dev)
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400363{
Konrad Rzeszutek Wilk3d814732011-05-12 16:53:56 -0400364 sysfs_remove_group(&dev->dev.kobj, &xen_vbdstat_group);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400365 device_remove_file(&dev->dev, &dev_attr_mode);
366 device_remove_file(&dev->dev, &dev_attr_physical_device);
367}
368
Konrad Rzeszutek Wilk42c78412011-04-20 11:21:43 -0400369
Konrad Rzeszutek Wilk3d814732011-05-12 16:53:56 -0400370static void xen_vbd_free(struct xen_vbd *vbd)
Konrad Rzeszutek Wilk42c78412011-04-20 11:21:43 -0400371{
372 if (vbd->bdev)
373 blkdev_put(vbd->bdev, vbd->readonly ? FMODE_READ : FMODE_WRITE);
374 vbd->bdev = NULL;
375}
376
Konrad Rzeszutek Wilk3d814732011-05-12 16:53:56 -0400377static int xen_vbd_create(struct xen_blkif *blkif, blkif_vdev_t handle,
378 unsigned major, unsigned minor, int readonly,
379 int cdrom)
Konrad Rzeszutek Wilk42c78412011-04-20 11:21:43 -0400380{
Konrad Rzeszutek Wilk3d814732011-05-12 16:53:56 -0400381 struct xen_vbd *vbd;
Konrad Rzeszutek Wilk42c78412011-04-20 11:21:43 -0400382 struct block_device *bdev;
Konrad Rzeszutek Wilk24f567f2011-05-04 17:07:27 -0400383 struct request_queue *q;
Konrad Rzeszutek Wilk42c78412011-04-20 11:21:43 -0400384
385 vbd = &blkif->vbd;
386 vbd->handle = handle;
387 vbd->readonly = readonly;
388 vbd->type = 0;
389
390 vbd->pdevice = MKDEV(major, minor);
391
392 bdev = blkdev_get_by_dev(vbd->pdevice, vbd->readonly ?
393 FMODE_READ : FMODE_WRITE, NULL);
394
395 if (IS_ERR(bdev)) {
Tao Chen77387b82015-04-01 15:04:22 +0000396 pr_warn("xen_vbd_create: device %08x could not be opened\n",
Konrad Rzeszutek Wilk42c78412011-04-20 11:21:43 -0400397 vbd->pdevice);
398 return -ENOENT;
399 }
400
401 vbd->bdev = bdev;
Konrad Rzeszutek Wilk42c78412011-04-20 11:21:43 -0400402 if (vbd->bdev->bd_disk == NULL) {
Tao Chen77387b82015-04-01 15:04:22 +0000403 pr_warn("xen_vbd_create: device %08x doesn't exist\n",
Konrad Rzeszutek Wilk42c78412011-04-20 11:21:43 -0400404 vbd->pdevice);
Konrad Rzeszutek Wilk3d814732011-05-12 16:53:56 -0400405 xen_vbd_free(vbd);
Konrad Rzeszutek Wilk42c78412011-04-20 11:21:43 -0400406 return -ENOENT;
407 }
Laszlo Ersek64649202011-05-25 12:24:25 +0200408 vbd->size = vbd_sz(vbd);
Konrad Rzeszutek Wilk42c78412011-04-20 11:21:43 -0400409
410 if (vbd->bdev->bd_disk->flags & GENHD_FL_CD || cdrom)
411 vbd->type |= VDISK_CDROM;
412 if (vbd->bdev->bd_disk->flags & GENHD_FL_REMOVABLE)
413 vbd->type |= VDISK_REMOVABLE;
414
Konrad Rzeszutek Wilk24f567f2011-05-04 17:07:27 -0400415 q = bdev_get_queue(bdev);
416 if (q && q->flush_flags)
417 vbd->flush_support = true;
418
Konrad Rzeszutek Wilk5ea42982011-10-12 16:23:30 -0400419 if (q && blk_queue_secdiscard(q))
420 vbd->discard_secure = true;
421
Tao Chen77387b82015-04-01 15:04:22 +0000422 pr_debug("Successful creation of handle=%04x (dom=%u)\n",
Konrad Rzeszutek Wilk42c78412011-04-20 11:21:43 -0400423 handle, blkif->domid);
424 return 0;
425}
Konrad Rzeszutek Wilk8b6bf742011-04-20 11:50:43 -0400426static int xen_blkbk_remove(struct xenbus_device *dev)
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400427{
Jeremy Fitzhardinge5cf6e4f2010-02-11 16:07:31 -0800428 struct backend_info *be = dev_get_drvdata(&dev->dev);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400429
Tao Chen77387b82015-04-01 15:04:22 +0000430 pr_debug("%s %p %d\n", __func__, dev, dev->otherend_id);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400431
432 if (be->major || be->minor)
433 xenvbd_sysfs_delif(dev);
434
435 if (be->backend_watch.node) {
436 unregister_xenbus_watch(&be->backend_watch);
437 kfree(be->backend_watch.node);
438 be->backend_watch.node = NULL;
439 }
440
Valentin Priescu814d04e2014-05-20 22:28:50 +0200441 dev_set_drvdata(&dev->dev, NULL);
442
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400443 if (be->blkif) {
Konrad Rzeszutek Wilk8b6bf742011-04-20 11:50:43 -0400444 xen_blkif_disconnect(be->blkif);
Valentin Priescu814d04e2014-05-20 22:28:50 +0200445 xen_blkif_put(be->blkif);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400446 }
447
Jan Beulich9d092602012-12-20 10:31:11 +0000448 kfree(be->mode);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400449 kfree(be);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400450 return 0;
451}
452
Konrad Rzeszutek Wilk24f567f2011-05-04 17:07:27 -0400453int xen_blkbk_flush_diskcache(struct xenbus_transaction xbt,
454 struct backend_info *be, int state)
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400455{
456 struct xenbus_device *dev = be->dev;
457 int err;
458
Konrad Rzeszutek Wilk24f567f2011-05-04 17:07:27 -0400459 err = xenbus_printf(xbt, dev->nodename, "feature-flush-cache",
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400460 "%d", state);
461 if (err)
Konrad Rzeszutek Wilk3389bb82012-03-14 13:04:00 -0400462 dev_warn(&dev->dev, "writing feature-flush-cache (%d)", err);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400463
464 return err;
465}
466
Konrad Rzeszutek Wilk3389bb82012-03-14 13:04:00 -0400467static void xen_blkbk_discard(struct xenbus_transaction xbt, struct backend_info *be)
Li Dongyangb3cb0d62011-09-01 18:39:10 +0800468{
469 struct xenbus_device *dev = be->dev;
470 struct xen_blkif *blkif = be->blkif;
Li Dongyangb3cb0d62011-09-01 18:39:10 +0800471 int err;
Olaf Heringc926b702014-05-21 16:32:42 +0200472 int state = 0, discard_enable;
Konrad Rzeszutek Wilk4dae7672012-03-13 18:43:23 -0400473 struct block_device *bdev = be->blkif->vbd.bdev;
474 struct request_queue *q = bdev_get_queue(bdev);
Li Dongyangb3cb0d62011-09-01 18:39:10 +0800475
Olaf Heringc926b702014-05-21 16:32:42 +0200476 err = xenbus_scanf(XBT_NIL, dev->nodename, "discard-enable", "%d",
477 &discard_enable);
478 if (err == 1 && !discard_enable)
479 return;
480
Konrad Rzeszutek Wilk4dae7672012-03-13 18:43:23 -0400481 if (blk_queue_discard(q)) {
482 err = xenbus_printf(xbt, dev->nodename,
483 "discard-granularity", "%u",
484 q->limits.discard_granularity);
485 if (err) {
Konrad Rzeszutek Wilk3389bb82012-03-14 13:04:00 -0400486 dev_warn(&dev->dev, "writing discard-granularity (%d)", err);
487 return;
Li Dongyangb3cb0d62011-09-01 18:39:10 +0800488 }
Konrad Rzeszutek Wilk4dae7672012-03-13 18:43:23 -0400489 err = xenbus_printf(xbt, dev->nodename,
490 "discard-alignment", "%u",
491 q->limits.discard_alignment);
492 if (err) {
Konrad Rzeszutek Wilk3389bb82012-03-14 13:04:00 -0400493 dev_warn(&dev->dev, "writing discard-alignment (%d)", err);
494 return;
Konrad Rzeszutek Wilk4dae7672012-03-13 18:43:23 -0400495 }
496 state = 1;
497 /* Optional. */
498 err = xenbus_printf(xbt, dev->nodename,
499 "discard-secure", "%d",
500 blkif->vbd.discard_secure);
501 if (err) {
Konrad Rzeszutek Wilka71e23d2012-04-16 21:55:04 -0400502 dev_warn(&dev->dev, "writing discard-secure (%d)", err);
Konrad Rzeszutek Wilk3389bb82012-03-14 13:04:00 -0400503 return;
Li Dongyangb3cb0d62011-09-01 18:39:10 +0800504 }
Li Dongyangb3cb0d62011-09-01 18:39:10 +0800505 }
Li Dongyangb3cb0d62011-09-01 18:39:10 +0800506 err = xenbus_printf(xbt, dev->nodename, "feature-discard",
507 "%d", state);
508 if (err)
Konrad Rzeszutek Wilk3389bb82012-03-14 13:04:00 -0400509 dev_warn(&dev->dev, "writing feature-discard (%d)", err);
Li Dongyangb3cb0d62011-09-01 18:39:10 +0800510}
Konrad Rzeszutek Wilk29bde092011-10-10 00:42:22 -0400511int xen_blkbk_barrier(struct xenbus_transaction xbt,
512 struct backend_info *be, int state)
513{
514 struct xenbus_device *dev = be->dev;
515 int err;
516
517 err = xenbus_printf(xbt, dev->nodename, "feature-barrier",
518 "%d", state);
519 if (err)
Konrad Rzeszutek Wilk3389bb82012-03-14 13:04:00 -0400520 dev_warn(&dev->dev, "writing feature-barrier (%d)", err);
Konrad Rzeszutek Wilk29bde092011-10-10 00:42:22 -0400521
522 return err;
523}
Li Dongyangb3cb0d62011-09-01 18:39:10 +0800524
Konrad Rzeszutek Wilk01f37f22011-05-11 15:57:09 -0400525/*
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400526 * Entry point to this code when a new device is created. Allocate the basic
527 * structures, and watch the store waiting for the hotplug scripts to tell us
528 * the device's physical major and minor numbers. Switch to InitWait.
529 */
Konrad Rzeszutek Wilk8b6bf742011-04-20 11:50:43 -0400530static int xen_blkbk_probe(struct xenbus_device *dev,
531 const struct xenbus_device_id *id)
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400532{
533 int err;
534 struct backend_info *be = kzalloc(sizeof(struct backend_info),
535 GFP_KERNEL);
Tao Chen77387b82015-04-01 15:04:22 +0000536
537 /* match the pr_debug in xen_blkbk_remove */
538 pr_debug("%s %p %d\n", __func__, dev, dev->otherend_id);
539
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400540 if (!be) {
541 xenbus_dev_fatal(dev, -ENOMEM,
542 "allocating backend structure");
543 return -ENOMEM;
544 }
545 be->dev = dev;
Jeremy Fitzhardinge5cf6e4f2010-02-11 16:07:31 -0800546 dev_set_drvdata(&dev->dev, be);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400547
Konrad Rzeszutek Wilk8b6bf742011-04-20 11:50:43 -0400548 be->blkif = xen_blkif_alloc(dev->otherend_id);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400549 if (IS_ERR(be->blkif)) {
550 err = PTR_ERR(be->blkif);
551 be->blkif = NULL;
552 xenbus_dev_fatal(dev, err, "creating block interface");
553 goto fail;
554 }
555
556 /* setup back pointer */
557 be->blkif->be = be;
558
Jeremy Fitzhardinge88122932009-02-09 12:05:51 -0800559 err = xenbus_watch_pathfmt(dev, &be->backend_watch, backend_changed,
560 "%s/%s", dev->nodename, "physical-device");
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400561 if (err)
562 goto fail;
563
Bob Liu86839c52015-06-03 13:40:03 +0800564 err = xenbus_printf(XBT_NIL, dev->nodename, "max-ring-page-order", "%u",
565 xen_blkif_max_ring_order);
566 if (err)
567 pr_warn("%s write out 'max-ring-page-order' failed\n", __func__);
568
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400569 err = xenbus_switch_state(dev, XenbusStateInitWait);
570 if (err)
571 goto fail;
572
573 return 0;
574
575fail:
Tao Chen77387b82015-04-01 15:04:22 +0000576 pr_warn("%s failed\n", __func__);
Konrad Rzeszutek Wilk8b6bf742011-04-20 11:50:43 -0400577 xen_blkbk_remove(dev);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400578 return err;
579}
580
581
Konrad Rzeszutek Wilk01f37f22011-05-11 15:57:09 -0400582/*
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400583 * Callback received when the hotplug scripts have placed the physical-device
584 * node. Read it and the mode node, and create a vbd. If the frontend is
585 * ready, connect.
586 */
587static void backend_changed(struct xenbus_watch *watch,
588 const char **vec, unsigned int len)
589{
590 int err;
591 unsigned major;
592 unsigned minor;
593 struct backend_info *be
594 = container_of(watch, struct backend_info, backend_watch);
595 struct xenbus_device *dev = be->dev;
596 int cdrom = 0;
Jan Beulich9d092602012-12-20 10:31:11 +0000597 unsigned long handle;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400598 char *device_type;
599
Tao Chen77387b82015-04-01 15:04:22 +0000600 pr_debug("%s %p %d\n", __func__, dev, dev->otherend_id);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400601
602 err = xenbus_scanf(XBT_NIL, dev->nodename, "physical-device", "%x:%x",
603 &major, &minor);
604 if (XENBUS_EXIST_ERR(err)) {
Konrad Rzeszutek Wilk01f37f22011-05-11 15:57:09 -0400605 /*
606 * Since this watch will fire once immediately after it is
607 * registered, we expect this. Ignore it, and wait for the
608 * hotplug scripts.
609 */
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400610 return;
611 }
612 if (err != 2) {
613 xenbus_dev_fatal(dev, err, "reading physical-device");
614 return;
615 }
616
Jan Beulich9d092602012-12-20 10:31:11 +0000617 if (be->major | be->minor) {
618 if (be->major != major || be->minor != minor)
Tao Chen77387b82015-04-01 15:04:22 +0000619 pr_warn("changing physical device (from %x:%x to %x:%x) not supported.\n",
Jan Beulich9d092602012-12-20 10:31:11 +0000620 be->major, be->minor, major, minor);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400621 return;
622 }
623
624 be->mode = xenbus_read(XBT_NIL, dev->nodename, "mode", NULL);
625 if (IS_ERR(be->mode)) {
626 err = PTR_ERR(be->mode);
627 be->mode = NULL;
628 xenbus_dev_fatal(dev, err, "reading mode");
629 return;
630 }
631
632 device_type = xenbus_read(XBT_NIL, dev->otherend, "device-type", NULL);
633 if (!IS_ERR(device_type)) {
634 cdrom = strcmp(device_type, "cdrom") == 0;
635 kfree(device_type);
636 }
637
Jan Beulich9d092602012-12-20 10:31:11 +0000638 /* Front end dir is a number, which is used as the handle. */
Jingoo Hanbb8e0e82013-09-11 14:20:07 -0700639 err = kstrtoul(strrchr(dev->otherend, '/') + 1, 0, &handle);
Jan Beulich9d092602012-12-20 10:31:11 +0000640 if (err)
641 return;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400642
Jan Beulich9d092602012-12-20 10:31:11 +0000643 be->major = major;
644 be->minor = minor;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400645
Jan Beulich9d092602012-12-20 10:31:11 +0000646 err = xen_vbd_create(be->blkif, handle, major, minor,
647 !strchr(be->mode, 'w'), cdrom);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400648
Jan Beulich9d092602012-12-20 10:31:11 +0000649 if (err)
650 xenbus_dev_fatal(dev, err, "creating vbd structure");
651 else {
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400652 err = xenvbd_sysfs_addif(dev);
653 if (err) {
Konrad Rzeszutek Wilk3d814732011-05-12 16:53:56 -0400654 xen_vbd_free(&be->blkif->vbd);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400655 xenbus_dev_fatal(dev, err, "creating sysfs entries");
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400656 }
Jan Beulich9d092602012-12-20 10:31:11 +0000657 }
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400658
Jan Beulich9d092602012-12-20 10:31:11 +0000659 if (err) {
660 kfree(be->mode);
661 be->mode = NULL;
662 be->major = 0;
663 be->minor = 0;
664 } else {
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400665 /* We're potentially connected now */
Konrad Rzeszutek Wilk8b6bf742011-04-20 11:50:43 -0400666 xen_update_blkif_status(be->blkif);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400667 }
668}
669
670
Konrad Rzeszutek Wilk01f37f22011-05-11 15:57:09 -0400671/*
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400672 * Callback received when the frontend's state changes.
673 */
674static void frontend_changed(struct xenbus_device *dev,
675 enum xenbus_state frontend_state)
676{
Jeremy Fitzhardinge5cf6e4f2010-02-11 16:07:31 -0800677 struct backend_info *be = dev_get_drvdata(&dev->dev);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400678 int err;
679
Tao Chen77387b82015-04-01 15:04:22 +0000680 pr_debug("%s %p %s\n", __func__, dev, xenbus_strstate(frontend_state));
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400681
682 switch (frontend_state) {
683 case XenbusStateInitialising:
684 if (dev->state == XenbusStateClosed) {
Tao Chen77387b82015-04-01 15:04:22 +0000685 pr_info("%s: prepare for reconnect\n", dev->nodename);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400686 xenbus_switch_state(dev, XenbusStateInitWait);
687 }
688 break;
689
690 case XenbusStateInitialised:
691 case XenbusStateConnected:
Konrad Rzeszutek Wilk01f37f22011-05-11 15:57:09 -0400692 /*
693 * Ensure we connect even when two watches fire in
Justin P. Mattock42b2aa82011-11-28 20:31:00 -0800694 * close succession and we miss the intermediate value
Konrad Rzeszutek Wilk01f37f22011-05-11 15:57:09 -0400695 * of frontend_state.
696 */
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400697 if (dev->state == XenbusStateConnected)
698 break;
699
Konrad Rzeszutek Wilk01f37f22011-05-11 15:57:09 -0400700 /*
701 * Enforce precondition before potential leak point.
Joe Jin1bc05b02011-08-15 12:57:07 +0800702 * xen_blkif_disconnect() is idempotent.
Keir Fraser313d7b02010-11-24 22:08:20 -0800703 */
Valentin Priescu814d04e2014-05-20 22:28:50 +0200704 err = xen_blkif_disconnect(be->blkif);
705 if (err) {
706 xenbus_dev_fatal(dev, err, "pending I/O");
707 break;
708 }
Keir Fraser313d7b02010-11-24 22:08:20 -0800709
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400710 err = connect_ring(be);
711 if (err)
712 break;
Konrad Rzeszutek Wilk8b6bf742011-04-20 11:50:43 -0400713 xen_update_blkif_status(be->blkif);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400714 break;
715
716 case XenbusStateClosing:
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400717 xenbus_switch_state(dev, XenbusStateClosing);
718 break;
719
720 case XenbusStateClosed:
Joe Jin6f5986b2011-08-15 12:51:31 +0800721 xen_blkif_disconnect(be->blkif);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400722 xenbus_switch_state(dev, XenbusStateClosed);
723 if (xenbus_dev_is_online(dev))
724 break;
725 /* fall through if not online */
726 case XenbusStateUnknown:
Joe Jin1bc05b02011-08-15 12:57:07 +0800727 /* implies xen_blkif_disconnect() via xen_blkbk_remove() */
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400728 device_unregister(&dev->dev);
729 break;
730
731 default:
732 xenbus_dev_fatal(dev, -EINVAL, "saw state %d at frontend",
733 frontend_state);
734 break;
735 }
736}
737
738
739/* ** Connection ** */
740
741
Konrad Rzeszutek Wilk01f37f22011-05-11 15:57:09 -0400742/*
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400743 * Write the physical details regarding the block device to the store, and
744 * switch to Connected state.
745 */
746static void connect(struct backend_info *be)
747{
748 struct xenbus_transaction xbt;
749 int err;
750 struct xenbus_device *dev = be->dev;
751
Tao Chen77387b82015-04-01 15:04:22 +0000752 pr_debug("%s %s\n", __func__, dev->otherend);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400753
754 /* Supply the information about the device the frontend needs */
755again:
756 err = xenbus_transaction_start(&xbt);
757 if (err) {
758 xenbus_dev_fatal(dev, err, "starting transaction");
759 return;
760 }
761
Konrad Rzeszutek Wilk29bde092011-10-10 00:42:22 -0400762 /* If we can't advertise it is OK. */
Konrad Rzeszutek Wilk3389bb82012-03-14 13:04:00 -0400763 xen_blkbk_flush_diskcache(xbt, be, be->blkif->vbd.flush_support);
764
765 xen_blkbk_discard(xbt, be);
766
767 xen_blkbk_barrier(xbt, be, be->blkif->vbd.flush_support);
Konrad Rzeszutek Wilk29bde092011-10-10 00:42:22 -0400768
Roger Pau Monne0a8704a2012-10-24 18:58:45 +0200769 err = xenbus_printf(xbt, dev->nodename, "feature-persistent", "%u", 1);
770 if (err) {
771 xenbus_dev_fatal(dev, err, "writing %s/feature-persistent",
772 dev->nodename);
773 goto abort;
774 }
Roger Pau Monne402b27f2013-04-18 16:06:54 +0200775 err = xenbus_printf(xbt, dev->nodename, "feature-max-indirect-segments", "%u",
776 MAX_INDIRECT_SEGMENTS);
777 if (err)
778 dev_warn(&dev->dev, "writing %s/feature-max-indirect-segments (%d)",
779 dev->nodename, err);
Roger Pau Monne0a8704a2012-10-24 18:58:45 +0200780
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400781 err = xenbus_printf(xbt, dev->nodename, "sectors", "%llu",
Konrad Rzeszutek Wilk42c78412011-04-20 11:21:43 -0400782 (unsigned long long)vbd_sz(&be->blkif->vbd));
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400783 if (err) {
784 xenbus_dev_fatal(dev, err, "writing %s/sectors",
785 dev->nodename);
786 goto abort;
787 }
788
789 /* FIXME: use a typename instead */
790 err = xenbus_printf(xbt, dev->nodename, "info", "%u",
Konrad Rzeszutek Wilk42c78412011-04-20 11:21:43 -0400791 be->blkif->vbd.type |
792 (be->blkif->vbd.readonly ? VDISK_READONLY : 0));
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400793 if (err) {
794 xenbus_dev_fatal(dev, err, "writing %s/info",
795 dev->nodename);
796 goto abort;
797 }
798 err = xenbus_printf(xbt, dev->nodename, "sector-size", "%lu",
Konrad Rzeszutek Wilk42c78412011-04-20 11:21:43 -0400799 (unsigned long)
800 bdev_logical_block_size(be->blkif->vbd.bdev));
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400801 if (err) {
802 xenbus_dev_fatal(dev, err, "writing %s/sector-size",
803 dev->nodename);
804 goto abort;
805 }
Stefan Bader7c4d7d72013-05-13 16:28:15 +0200806 err = xenbus_printf(xbt, dev->nodename, "physical-sector-size", "%u",
807 bdev_physical_block_size(be->blkif->vbd.bdev));
808 if (err)
809 xenbus_dev_error(dev, err, "writing %s/physical-sector-size",
810 dev->nodename);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400811
812 err = xenbus_transaction_end(xbt, 0);
813 if (err == -EAGAIN)
814 goto again;
815 if (err)
816 xenbus_dev_fatal(dev, err, "ending transaction");
817
818 err = xenbus_switch_state(dev, XenbusStateConnected);
819 if (err)
Joe Perches08b8bfc2011-06-12 09:21:13 -0700820 xenbus_dev_fatal(dev, err, "%s: switching to Connected state",
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400821 dev->nodename);
822
823 return;
824 abort:
825 xenbus_transaction_end(xbt, 1);
826}
827
828
829static int connect_ring(struct backend_info *be)
830{
831 struct xenbus_device *dev = be->dev;
Julien Grall9cce2912015-10-13 17:50:11 +0100832 unsigned int ring_ref[XENBUS_MAX_RING_GRANTS];
Bob Liu86839c52015-06-03 13:40:03 +0800833 unsigned int evtchn, nr_grefs, ring_page_order;
Roger Pau Monne0a8704a2012-10-24 18:58:45 +0200834 unsigned int pers_grants;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400835 char protocol[64] = "";
Bob Liu69b91ed2015-06-03 13:40:01 +0800836 struct pending_req *req, *n;
837 int err, i, j;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400838
Tao Chen77387b82015-04-01 15:04:22 +0000839 pr_debug("%s %s\n", __func__, dev->otherend);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400840
Bob Liu86839c52015-06-03 13:40:03 +0800841 err = xenbus_scanf(XBT_NIL, dev->otherend, "event-channel", "%u",
842 &evtchn);
843 if (err != 1) {
844 err = -EINVAL;
845 xenbus_dev_fatal(dev, err, "reading %s/event-channel",
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400846 dev->otherend);
847 return err;
848 }
Bob Liu86839c52015-06-03 13:40:03 +0800849 pr_info("event-channel %u\n", evtchn);
850
851 err = xenbus_scanf(XBT_NIL, dev->otherend, "ring-page-order", "%u",
852 &ring_page_order);
853 if (err != 1) {
854 err = xenbus_scanf(XBT_NIL, dev->otherend, "ring-ref",
855 "%u", &ring_ref[0]);
856 if (err != 1) {
857 err = -EINVAL;
858 xenbus_dev_fatal(dev, err, "reading %s/ring-ref",
859 dev->otherend);
860 return err;
861 }
862 nr_grefs = 1;
863 pr_info("%s:using single page: ring-ref %d\n", dev->otherend,
864 ring_ref[0]);
865 } else {
866 unsigned int i;
867
868 if (ring_page_order > xen_blkif_max_ring_order) {
869 err = -EINVAL;
870 xenbus_dev_fatal(dev, err, "%s/request %d ring page order exceed max:%d",
871 dev->otherend, ring_page_order,
872 xen_blkif_max_ring_order);
873 return err;
874 }
875
876 nr_grefs = 1 << ring_page_order;
877 for (i = 0; i < nr_grefs; i++) {
878 char ring_ref_name[RINGREF_NAME_LEN];
879
880 snprintf(ring_ref_name, RINGREF_NAME_LEN, "ring-ref%u", i);
881 err = xenbus_scanf(XBT_NIL, dev->otherend, ring_ref_name,
882 "%u", &ring_ref[i]);
883 if (err != 1) {
884 err = -EINVAL;
885 xenbus_dev_fatal(dev, err, "reading %s/%s",
886 dev->otherend, ring_ref_name);
887 return err;
888 }
889 pr_info("ring-ref%u: %u\n", i, ring_ref[i]);
890 }
891 }
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400892
David Vrabelb042a3c2015-02-05 17:09:56 +0000893 be->blkif->blk_protocol = BLKIF_PROTOCOL_DEFAULT;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400894 err = xenbus_gather(XBT_NIL, dev->otherend, "protocol",
895 "%63s", protocol, NULL);
896 if (err)
David Vrabelb042a3c2015-02-05 17:09:56 +0000897 strcpy(protocol, "unspecified, assuming default");
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400898 else if (0 == strcmp(protocol, XEN_IO_PROTO_ABI_NATIVE))
899 be->blkif->blk_protocol = BLKIF_PROTOCOL_NATIVE;
900 else if (0 == strcmp(protocol, XEN_IO_PROTO_ABI_X86_32))
901 be->blkif->blk_protocol = BLKIF_PROTOCOL_X86_32;
902 else if (0 == strcmp(protocol, XEN_IO_PROTO_ABI_X86_64))
903 be->blkif->blk_protocol = BLKIF_PROTOCOL_X86_64;
904 else {
905 xenbus_dev_fatal(dev, err, "unknown fe protocol %s", protocol);
906 return -1;
907 }
Roger Pau Monne0a8704a2012-10-24 18:58:45 +0200908 err = xenbus_gather(XBT_NIL, dev->otherend,
Roger Pau Monnecb5bd4d2012-11-02 16:43:04 +0100909 "feature-persistent", "%u",
Roger Pau Monne0a8704a2012-10-24 18:58:45 +0200910 &pers_grants, NULL);
911 if (err)
912 pers_grants = 0;
913
914 be->blkif->vbd.feature_gnt_persistent = pers_grants;
915 be->blkif->vbd.overflow_max_grants = 0;
Bob Liu86839c52015-06-03 13:40:03 +0800916 be->blkif->nr_ring_pages = nr_grefs;
Roger Pau Monne0a8704a2012-10-24 18:58:45 +0200917
Bob Liu86839c52015-06-03 13:40:03 +0800918 pr_info("ring-pages:%d, event-channel %d, protocol %d (%s) %s\n",
919 nr_grefs, evtchn, be->blkif->blk_protocol, protocol,
Roger Pau Monne0a8704a2012-10-24 18:58:45 +0200920 pers_grants ? "persistent grants" : "");
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400921
Bob Liu86839c52015-06-03 13:40:03 +0800922 for (i = 0; i < nr_grefs * XEN_BLKIF_REQS_PER_PAGE; i++) {
Bob Liu69b91ed2015-06-03 13:40:01 +0800923 req = kzalloc(sizeof(*req), GFP_KERNEL);
924 if (!req)
925 goto fail;
926 list_add_tail(&req->free_list, &be->blkif->pending_free);
927 for (j = 0; j < MAX_INDIRECT_SEGMENTS; j++) {
928 req->segments[j] = kzalloc(sizeof(*req->segments[0]), GFP_KERNEL);
929 if (!req->segments[j])
930 goto fail;
931 }
932 for (j = 0; j < MAX_INDIRECT_PAGES; j++) {
933 req->indirect_pages[j] = kzalloc(sizeof(*req->indirect_pages[0]),
934 GFP_KERNEL);
935 if (!req->indirect_pages[j])
936 goto fail;
937 }
938 }
939
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400940 /* Map the shared frame, irq etc. */
Bob Liu86839c52015-06-03 13:40:03 +0800941 err = xen_blkif_map(be->blkif, ring_ref, nr_grefs, evtchn);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400942 if (err) {
Bob Liu86839c52015-06-03 13:40:03 +0800943 xenbus_dev_fatal(dev, err, "mapping ring-ref port %u", evtchn);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400944 return err;
945 }
946
947 return 0;
Bob Liu69b91ed2015-06-03 13:40:01 +0800948
949fail:
950 list_for_each_entry_safe(req, n, &be->blkif->pending_free, free_list) {
951 list_del(&req->free_list);
952 for (j = 0; j < MAX_INDIRECT_SEGMENTS; j++) {
953 if (!req->segments[j])
954 break;
955 kfree(req->segments[j]);
956 }
957 for (j = 0; j < MAX_INDIRECT_PAGES; j++) {
958 if (!req->indirect_pages[j])
959 break;
960 kfree(req->indirect_pages[j]);
961 }
962 kfree(req);
963 }
964 return -ENOMEM;
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400965}
966
Konrad Rzeszutek Wilk8b6bf742011-04-20 11:50:43 -0400967static const struct xenbus_device_id xen_blkbk_ids[] = {
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400968 { "vbd" },
969 { "" }
970};
971
David Vrabel95afae42014-09-08 17:30:41 +0100972static struct xenbus_driver xen_blkbk_driver = {
973 .ids = xen_blkbk_ids,
Konrad Rzeszutek Wilk8b6bf742011-04-20 11:50:43 -0400974 .probe = xen_blkbk_probe,
975 .remove = xen_blkbk_remove,
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400976 .otherend_changed = frontend_changed
David Vrabel95afae42014-09-08 17:30:41 +0100977};
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400978
Konrad Rzeszutek Wilk8b6bf742011-04-20 11:50:43 -0400979int xen_blkif_xenbus_init(void)
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400980{
Jan Beulich73db1442011-12-22 09:08:13 +0000981 return xenbus_register_backend(&xen_blkbk_driver);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400982}