blob: a0534fc6a42891ff15f43a05877b06a642024433 [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
15 You should have received a copy of the GNU General Public License
16 along with this program; if not, write to the Free Software
17 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18*/
19
20#include <stdarg.h>
21#include <linux/module.h>
22#include <linux/kthread.h>
23#include "common.h"
24
25#undef DPRINTK
26#define DPRINTK(fmt, args...) \
27 pr_debug("blkback/xenbus (%s:%d) " fmt ".\n", \
28 __FUNCTION__, __LINE__, ##args)
29
30struct backend_info
31{
32 struct xenbus_device *dev;
33 blkif_t *blkif;
34 struct xenbus_watch backend_watch;
35 unsigned major;
36 unsigned minor;
37 char *mode;
38};
39
40static void connect(struct backend_info *);
41static int connect_ring(struct backend_info *);
42static void backend_changed(struct xenbus_watch *, const char **,
43 unsigned int);
44
Jeremy Fitzhardinge98e036a2010-03-18 15:35:05 -070045struct xenbus_device *blkback_xenbus(struct backend_info *be)
46{
47 return be->dev;
48}
49
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -040050static int blkback_name(blkif_t *blkif, char *buf)
51{
52 char *devpath, *devname;
53 struct xenbus_device *dev = blkif->be->dev;
54
55 devpath = xenbus_read(XBT_NIL, dev->nodename, "dev", NULL);
56 if (IS_ERR(devpath))
57 return PTR_ERR(devpath);
58
59 if ((devname = strstr(devpath, "/dev/")) != NULL)
60 devname += strlen("/dev/");
61 else
62 devname = devpath;
63
64 snprintf(buf, TASK_COMM_LEN, "blkback.%d.%s", blkif->domid, devname);
65 kfree(devpath);
66
67 return 0;
68}
69
70static void update_blkif_status(blkif_t *blkif)
71{
72 int err;
73 char name[TASK_COMM_LEN];
74
75 /* Not ready to connect? */
76 if (!blkif->irq || !blkif->vbd.bdev)
77 return;
78
79 /* Already connected? */
80 if (blkif->be->dev->state == XenbusStateConnected)
81 return;
82
83 /* Attempt to connect: exit if we fail to. */
84 connect(blkif->be);
85 if (blkif->be->dev->state != XenbusStateConnected)
86 return;
87
88 err = blkback_name(blkif, name);
89 if (err) {
90 xenbus_dev_error(blkif->be->dev, err, "get blkback dev name");
91 return;
92 }
93
Chris Lalancettecbf46292010-07-21 12:41:45 -070094 err = filemap_write_and_wait(blkif->vbd.bdev->bd_inode->i_mapping);
95 if (err) {
96 xenbus_dev_error(blkif->be->dev, err, "block flush");
97 return;
98 }
99 invalidate_inode_pages2(blkif->vbd.bdev->bd_inode->i_mapping);
100
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400101 blkif->xenblkd = kthread_run(blkif_schedule, blkif, name);
102 if (IS_ERR(blkif->xenblkd)) {
103 err = PTR_ERR(blkif->xenblkd);
104 blkif->xenblkd = NULL;
105 xenbus_dev_error(blkif->be->dev, err, "start xenblkd");
106 }
107}
108
109
110/****************************************************************
111 * sysfs interface for VBD I/O requests
112 */
113
114#define VBD_SHOW(name, format, args...) \
115 static ssize_t show_##name(struct device *_dev, \
116 struct device_attribute *attr, \
117 char *buf) \
118 { \
119 struct xenbus_device *dev = to_xenbus_device(_dev); \
Jeremy Fitzhardinge5cf6e4f2010-02-11 16:07:31 -0800120 struct backend_info *be = dev_get_drvdata(&dev->dev); \
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400121 \
122 return sprintf(buf, format, ##args); \
123 } \
124 static DEVICE_ATTR(name, S_IRUGO, show_##name, NULL)
125
126VBD_SHOW(oo_req, "%d\n", be->blkif->st_oo_req);
127VBD_SHOW(rd_req, "%d\n", be->blkif->st_rd_req);
128VBD_SHOW(wr_req, "%d\n", be->blkif->st_wr_req);
129VBD_SHOW(br_req, "%d\n", be->blkif->st_br_req);
130VBD_SHOW(rd_sect, "%d\n", be->blkif->st_rd_sect);
131VBD_SHOW(wr_sect, "%d\n", be->blkif->st_wr_sect);
132
133static struct attribute *vbdstat_attrs[] = {
134 &dev_attr_oo_req.attr,
135 &dev_attr_rd_req.attr,
136 &dev_attr_wr_req.attr,
137 &dev_attr_br_req.attr,
138 &dev_attr_rd_sect.attr,
139 &dev_attr_wr_sect.attr,
140 NULL
141};
142
143static struct attribute_group vbdstat_group = {
144 .name = "statistics",
145 .attrs = vbdstat_attrs,
146};
147
148VBD_SHOW(physical_device, "%x:%x\n", be->major, be->minor);
149VBD_SHOW(mode, "%s\n", be->mode);
150
151int xenvbd_sysfs_addif(struct xenbus_device *dev)
152{
153 int error;
154
155 error = device_create_file(&dev->dev, &dev_attr_physical_device);
156 if (error)
157 goto fail1;
158
159 error = device_create_file(&dev->dev, &dev_attr_mode);
160 if (error)
161 goto fail2;
162
163 error = sysfs_create_group(&dev->dev.kobj, &vbdstat_group);
164 if (error)
165 goto fail3;
166
167 return 0;
168
169fail3: sysfs_remove_group(&dev->dev.kobj, &vbdstat_group);
170fail2: device_remove_file(&dev->dev, &dev_attr_mode);
171fail1: device_remove_file(&dev->dev, &dev_attr_physical_device);
172 return error;
173}
174
175void xenvbd_sysfs_delif(struct xenbus_device *dev)
176{
177 sysfs_remove_group(&dev->dev.kobj, &vbdstat_group);
178 device_remove_file(&dev->dev, &dev_attr_mode);
179 device_remove_file(&dev->dev, &dev_attr_physical_device);
180}
181
182static int blkback_remove(struct xenbus_device *dev)
183{
Jeremy Fitzhardinge5cf6e4f2010-02-11 16:07:31 -0800184 struct backend_info *be = dev_get_drvdata(&dev->dev);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400185
186 DPRINTK("");
187
188 if (be->major || be->minor)
189 xenvbd_sysfs_delif(dev);
190
191 if (be->backend_watch.node) {
192 unregister_xenbus_watch(&be->backend_watch);
193 kfree(be->backend_watch.node);
194 be->backend_watch.node = NULL;
195 }
196
197 if (be->blkif) {
198 blkif_disconnect(be->blkif);
199 vbd_free(&be->blkif->vbd);
200 blkif_free(be->blkif);
201 be->blkif = NULL;
202 }
203
204 kfree(be);
Jeremy Fitzhardinge5cf6e4f2010-02-11 16:07:31 -0800205 dev_set_drvdata(&dev->dev, NULL);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400206 return 0;
207}
208
209int blkback_barrier(struct xenbus_transaction xbt,
210 struct backend_info *be, int state)
211{
212 struct xenbus_device *dev = be->dev;
213 int err;
214
215 err = xenbus_printf(xbt, dev->nodename, "feature-barrier",
216 "%d", state);
217 if (err)
218 xenbus_dev_fatal(dev, err, "writing feature-barrier");
219
220 return err;
221}
222
223/**
224 * Entry point to this code when a new device is created. Allocate the basic
225 * structures, and watch the store waiting for the hotplug scripts to tell us
226 * the device's physical major and minor numbers. Switch to InitWait.
227 */
228static int blkback_probe(struct xenbus_device *dev,
229 const struct xenbus_device_id *id)
230{
231 int err;
232 struct backend_info *be = kzalloc(sizeof(struct backend_info),
233 GFP_KERNEL);
234 if (!be) {
235 xenbus_dev_fatal(dev, -ENOMEM,
236 "allocating backend structure");
237 return -ENOMEM;
238 }
239 be->dev = dev;
Jeremy Fitzhardinge5cf6e4f2010-02-11 16:07:31 -0800240 dev_set_drvdata(&dev->dev, be);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400241
242 be->blkif = blkif_alloc(dev->otherend_id);
243 if (IS_ERR(be->blkif)) {
244 err = PTR_ERR(be->blkif);
245 be->blkif = NULL;
246 xenbus_dev_fatal(dev, err, "creating block interface");
247 goto fail;
248 }
249
250 /* setup back pointer */
251 be->blkif->be = be;
252
Jeremy Fitzhardinge88122932009-02-09 12:05:51 -0800253 err = xenbus_watch_pathfmt(dev, &be->backend_watch, backend_changed,
254 "%s/%s", dev->nodename, "physical-device");
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400255 if (err)
256 goto fail;
257
258 err = xenbus_switch_state(dev, XenbusStateInitWait);
259 if (err)
260 goto fail;
261
262 return 0;
263
264fail:
265 DPRINTK("failed");
266 blkback_remove(dev);
267 return err;
268}
269
270
271/**
272 * Callback received when the hotplug scripts have placed the physical-device
273 * node. Read it and the mode node, and create a vbd. If the frontend is
274 * ready, connect.
275 */
276static void backend_changed(struct xenbus_watch *watch,
277 const char **vec, unsigned int len)
278{
279 int err;
280 unsigned major;
281 unsigned minor;
282 struct backend_info *be
283 = container_of(watch, struct backend_info, backend_watch);
284 struct xenbus_device *dev = be->dev;
285 int cdrom = 0;
286 char *device_type;
287
288 DPRINTK("");
289
290 err = xenbus_scanf(XBT_NIL, dev->nodename, "physical-device", "%x:%x",
291 &major, &minor);
292 if (XENBUS_EXIST_ERR(err)) {
293 /* Since this watch will fire once immediately after it is
294 registered, we expect this. Ignore it, and wait for the
295 hotplug scripts. */
296 return;
297 }
298 if (err != 2) {
299 xenbus_dev_fatal(dev, err, "reading physical-device");
300 return;
301 }
302
303 if ((be->major || be->minor) &&
304 ((be->major != major) || (be->minor != minor))) {
305 printk(KERN_WARNING
306 "blkback: changing physical device (from %x:%x to "
307 "%x:%x) not supported.\n", be->major, be->minor,
308 major, minor);
309 return;
310 }
311
312 be->mode = xenbus_read(XBT_NIL, dev->nodename, "mode", NULL);
313 if (IS_ERR(be->mode)) {
314 err = PTR_ERR(be->mode);
315 be->mode = NULL;
316 xenbus_dev_fatal(dev, err, "reading mode");
317 return;
318 }
319
320 device_type = xenbus_read(XBT_NIL, dev->otherend, "device-type", NULL);
321 if (!IS_ERR(device_type)) {
322 cdrom = strcmp(device_type, "cdrom") == 0;
323 kfree(device_type);
324 }
325
326 if (be->major == 0 && be->minor == 0) {
327 /* Front end dir is a number, which is used as the handle. */
328
329 char *p = strrchr(dev->otherend, '/') + 1;
330 long handle = simple_strtoul(p, NULL, 0);
331
332 be->major = major;
333 be->minor = minor;
334
335 err = vbd_create(be->blkif, handle, major, minor,
336 (NULL == strchr(be->mode, 'w')), cdrom);
337 if (err) {
338 be->major = be->minor = 0;
339 xenbus_dev_fatal(dev, err, "creating vbd structure");
340 return;
341 }
342
343 err = xenvbd_sysfs_addif(dev);
344 if (err) {
345 vbd_free(&be->blkif->vbd);
346 be->major = be->minor = 0;
347 xenbus_dev_fatal(dev, err, "creating sysfs entries");
348 return;
349 }
350
351 /* We're potentially connected now */
352 update_blkif_status(be->blkif);
353 }
354}
355
356
357/**
358 * Callback received when the frontend's state changes.
359 */
360static void frontend_changed(struct xenbus_device *dev,
361 enum xenbus_state frontend_state)
362{
Jeremy Fitzhardinge5cf6e4f2010-02-11 16:07:31 -0800363 struct backend_info *be = dev_get_drvdata(&dev->dev);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400364 int err;
365
366 DPRINTK("%s", xenbus_strstate(frontend_state));
367
368 switch (frontend_state) {
369 case XenbusStateInitialising:
370 if (dev->state == XenbusStateClosed) {
371 printk(KERN_INFO "%s: %s: prepare for reconnect\n",
372 __FUNCTION__, dev->nodename);
373 xenbus_switch_state(dev, XenbusStateInitWait);
374 }
375 break;
376
377 case XenbusStateInitialised:
378 case XenbusStateConnected:
379 /* Ensure we connect even when two watches fire in
380 close successsion and we miss the intermediate value
381 of frontend_state. */
382 if (dev->state == XenbusStateConnected)
383 break;
384
385 err = connect_ring(be);
386 if (err)
387 break;
388 update_blkif_status(be->blkif);
389 break;
390
391 case XenbusStateClosing:
392 blkif_disconnect(be->blkif);
393 xenbus_switch_state(dev, XenbusStateClosing);
394 break;
395
396 case XenbusStateClosed:
397 xenbus_switch_state(dev, XenbusStateClosed);
398 if (xenbus_dev_is_online(dev))
399 break;
400 /* fall through if not online */
401 case XenbusStateUnknown:
402 device_unregister(&dev->dev);
403 break;
404
405 default:
406 xenbus_dev_fatal(dev, -EINVAL, "saw state %d at frontend",
407 frontend_state);
408 break;
409 }
410}
411
412
413/* ** Connection ** */
414
415
416/**
417 * Write the physical details regarding the block device to the store, and
418 * switch to Connected state.
419 */
420static void connect(struct backend_info *be)
421{
422 struct xenbus_transaction xbt;
423 int err;
424 struct xenbus_device *dev = be->dev;
425
426 DPRINTK("%s", dev->otherend);
427
428 /* Supply the information about the device the frontend needs */
429again:
430 err = xenbus_transaction_start(&xbt);
431 if (err) {
432 xenbus_dev_fatal(dev, err, "starting transaction");
433 return;
434 }
435
436 err = blkback_barrier(xbt, be, 1);
437 if (err)
438 goto abort;
439
440 err = xenbus_printf(xbt, dev->nodename, "sectors", "%llu",
441 vbd_size(&be->blkif->vbd));
442 if (err) {
443 xenbus_dev_fatal(dev, err, "writing %s/sectors",
444 dev->nodename);
445 goto abort;
446 }
447
448 /* FIXME: use a typename instead */
449 err = xenbus_printf(xbt, dev->nodename, "info", "%u",
450 vbd_info(&be->blkif->vbd));
451 if (err) {
452 xenbus_dev_fatal(dev, err, "writing %s/info",
453 dev->nodename);
454 goto abort;
455 }
456 err = xenbus_printf(xbt, dev->nodename, "sector-size", "%lu",
457 vbd_secsize(&be->blkif->vbd));
458 if (err) {
459 xenbus_dev_fatal(dev, err, "writing %s/sector-size",
460 dev->nodename);
461 goto abort;
462 }
463
464 err = xenbus_transaction_end(xbt, 0);
465 if (err == -EAGAIN)
466 goto again;
467 if (err)
468 xenbus_dev_fatal(dev, err, "ending transaction");
469
470 err = xenbus_switch_state(dev, XenbusStateConnected);
471 if (err)
472 xenbus_dev_fatal(dev, err, "switching to Connected state",
473 dev->nodename);
474
475 return;
476 abort:
477 xenbus_transaction_end(xbt, 1);
478}
479
480
481static int connect_ring(struct backend_info *be)
482{
483 struct xenbus_device *dev = be->dev;
484 unsigned long ring_ref;
485 unsigned int evtchn;
486 char protocol[64] = "";
487 int err;
488
489 DPRINTK("%s", dev->otherend);
490
491 err = xenbus_gather(XBT_NIL, dev->otherend, "ring-ref", "%lu", &ring_ref,
492 "event-channel", "%u", &evtchn, NULL);
493 if (err) {
494 xenbus_dev_fatal(dev, err,
495 "reading %s/ring-ref and event-channel",
496 dev->otherend);
497 return err;
498 }
499
500 be->blkif->blk_protocol = BLKIF_PROTOCOL_NATIVE;
501 err = xenbus_gather(XBT_NIL, dev->otherend, "protocol",
502 "%63s", protocol, NULL);
503 if (err)
504 strcpy(protocol, "unspecified, assuming native");
505 else if (0 == strcmp(protocol, XEN_IO_PROTO_ABI_NATIVE))
506 be->blkif->blk_protocol = BLKIF_PROTOCOL_NATIVE;
507 else if (0 == strcmp(protocol, XEN_IO_PROTO_ABI_X86_32))
508 be->blkif->blk_protocol = BLKIF_PROTOCOL_X86_32;
509 else if (0 == strcmp(protocol, XEN_IO_PROTO_ABI_X86_64))
510 be->blkif->blk_protocol = BLKIF_PROTOCOL_X86_64;
511 else {
512 xenbus_dev_fatal(dev, err, "unknown fe protocol %s", protocol);
513 return -1;
514 }
515 printk(KERN_INFO
516 "blkback: ring-ref %ld, event-channel %d, protocol %d (%s)\n",
517 ring_ref, evtchn, be->blkif->blk_protocol, protocol);
518
519 /* Map the shared frame, irq etc. */
520 err = blkif_map(be->blkif, ring_ref, evtchn);
521 if (err) {
522 xenbus_dev_fatal(dev, err, "mapping ring-ref %lu port %u",
523 ring_ref, evtchn);
524 return err;
525 }
526
527 return 0;
528}
529
530
531/* ** Driver Registration ** */
532
533
534static const struct xenbus_device_id blkback_ids[] = {
535 { "vbd" },
536 { "" }
537};
538
539
540static struct xenbus_driver blkback = {
541 .name = "vbd",
542 .owner = THIS_MODULE,
543 .ids = blkback_ids,
544 .probe = blkback_probe,
545 .remove = blkback_remove,
546 .otherend_changed = frontend_changed
547};
548
549
Konrad Rzeszutek Wilk8770b262009-10-08 13:23:09 -0400550int blkif_xenbus_init(void)
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400551{
Konrad Rzeszutek Wilk8770b262009-10-08 13:23:09 -0400552 return xenbus_register_backend(&blkback);
Konrad Rzeszutek Wilk4d05a282011-04-14 18:25:47 -0400553}