SLUB's ksize() fails for size > 2048
[linux-2.6/linux-loongson.git] / drivers / block / xen-blkfront.c
blob2bdebcb3ff16dfdc73a9047e990caed589e0f70e
1 /*
2 * blkfront.c
4 * XenLinux virtual block device driver.
6 * Copyright (c) 2003-2004, Keir Fraser & Steve Hand
7 * Modifications by Mark A. Williamson are (c) Intel Research Cambridge
8 * Copyright (c) 2004, Christian Limpach
9 * Copyright (c) 2004, Andrew Warfield
10 * Copyright (c) 2005, Christopher Clark
11 * Copyright (c) 2005, XenSource Ltd
13 * This program is free software; you can redistribute it and/or
14 * modify it under the terms of the GNU General Public License version 2
15 * as published by the Free Software Foundation; or, when distributed
16 * separately from the Linux kernel or incorporated into other
17 * software packages, subject to the following license:
19 * Permission is hereby granted, free of charge, to any person obtaining a copy
20 * of this source file (the "Software"), to deal in the Software without
21 * restriction, including without limitation the rights to use, copy, modify,
22 * merge, publish, distribute, sublicense, and/or sell copies of the Software,
23 * and to permit persons to whom the Software is furnished to do so, subject to
24 * the following conditions:
26 * The above copyright notice and this permission notice shall be included in
27 * all copies or substantial portions of the Software.
29 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
30 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
31 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
32 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
33 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
34 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
35 * IN THE SOFTWARE.
38 #include <linux/interrupt.h>
39 #include <linux/blkdev.h>
40 #include <linux/module.h>
42 #include <xen/xenbus.h>
43 #include <xen/grant_table.h>
44 #include <xen/events.h>
45 #include <xen/page.h>
47 #include <xen/interface/grant_table.h>
48 #include <xen/interface/io/blkif.h>
50 #include <asm/xen/hypervisor.h>
52 enum blkif_state {
53 BLKIF_STATE_DISCONNECTED,
54 BLKIF_STATE_CONNECTED,
55 BLKIF_STATE_SUSPENDED,
58 struct blk_shadow {
59 struct blkif_request req;
60 unsigned long request;
61 unsigned long frame[BLKIF_MAX_SEGMENTS_PER_REQUEST];
64 static struct block_device_operations xlvbd_block_fops;
66 #define BLK_RING_SIZE __RING_SIZE((struct blkif_sring *)0, PAGE_SIZE)
69 * We have one of these per vbd, whether ide, scsi or 'other'. They
70 * hang in private_data off the gendisk structure. We may end up
71 * putting all kinds of interesting stuff here :-)
73 struct blkfront_info
75 struct xenbus_device *xbdev;
76 dev_t dev;
77 struct gendisk *gd;
78 int vdevice;
79 blkif_vdev_t handle;
80 enum blkif_state connected;
81 int ring_ref;
82 struct blkif_front_ring ring;
83 unsigned int evtchn, irq;
84 struct request_queue *rq;
85 struct work_struct work;
86 struct gnttab_free_callback callback;
87 struct blk_shadow shadow[BLK_RING_SIZE];
88 unsigned long shadow_free;
89 int feature_barrier;
91 /**
92 * The number of people holding this device open. We won't allow a
93 * hot-unplug unless this is 0.
95 int users;
98 static DEFINE_SPINLOCK(blkif_io_lock);
100 #define MAXIMUM_OUTSTANDING_BLOCK_REQS \
101 (BLKIF_MAX_SEGMENTS_PER_REQUEST * BLK_RING_SIZE)
102 #define GRANT_INVALID_REF 0
104 #define PARTS_PER_DISK 16
106 #define BLKIF_MAJOR(dev) ((dev)>>8)
107 #define BLKIF_MINOR(dev) ((dev) & 0xff)
109 #define DEV_NAME "xvd" /* name in /dev */
111 /* Information about our VBDs. */
112 #define MAX_VBDS 64
113 static LIST_HEAD(vbds_list);
115 static int get_id_from_freelist(struct blkfront_info *info)
117 unsigned long free = info->shadow_free;
118 BUG_ON(free > BLK_RING_SIZE);
119 info->shadow_free = info->shadow[free].req.id;
120 info->shadow[free].req.id = 0x0fffffee; /* debug */
121 return free;
124 static void add_id_to_freelist(struct blkfront_info *info,
125 unsigned long id)
127 info->shadow[id].req.id = info->shadow_free;
128 info->shadow[id].request = 0;
129 info->shadow_free = id;
132 static void blkif_restart_queue_callback(void *arg)
134 struct blkfront_info *info = (struct blkfront_info *)arg;
135 schedule_work(&info->work);
139 * blkif_queue_request
141 * request block io
143 * id: for guest use only.
144 * operation: BLKIF_OP_{READ,WRITE,PROBE}
145 * buffer: buffer to read/write into. this should be a
146 * virtual address in the guest os.
148 static int blkif_queue_request(struct request *req)
150 struct blkfront_info *info = req->rq_disk->private_data;
151 unsigned long buffer_mfn;
152 struct blkif_request *ring_req;
153 struct req_iterator iter;
154 struct bio_vec *bvec;
155 unsigned long id;
156 unsigned int fsect, lsect;
157 int ref;
158 grant_ref_t gref_head;
160 if (unlikely(info->connected != BLKIF_STATE_CONNECTED))
161 return 1;
163 if (gnttab_alloc_grant_references(
164 BLKIF_MAX_SEGMENTS_PER_REQUEST, &gref_head) < 0) {
165 gnttab_request_free_callback(
166 &info->callback,
167 blkif_restart_queue_callback,
168 info,
169 BLKIF_MAX_SEGMENTS_PER_REQUEST);
170 return 1;
173 /* Fill out a communications ring structure. */
174 ring_req = RING_GET_REQUEST(&info->ring, info->ring.req_prod_pvt);
175 id = get_id_from_freelist(info);
176 info->shadow[id].request = (unsigned long)req;
178 ring_req->id = id;
179 ring_req->sector_number = (blkif_sector_t)req->sector;
180 ring_req->handle = info->handle;
182 ring_req->operation = rq_data_dir(req) ?
183 BLKIF_OP_WRITE : BLKIF_OP_READ;
184 if (blk_barrier_rq(req))
185 ring_req->operation = BLKIF_OP_WRITE_BARRIER;
187 ring_req->nr_segments = 0;
188 rq_for_each_segment(bvec, req, iter) {
189 BUG_ON(ring_req->nr_segments == BLKIF_MAX_SEGMENTS_PER_REQUEST);
190 buffer_mfn = pfn_to_mfn(page_to_pfn(bvec->bv_page));
191 fsect = bvec->bv_offset >> 9;
192 lsect = fsect + (bvec->bv_len >> 9) - 1;
193 /* install a grant reference. */
194 ref = gnttab_claim_grant_reference(&gref_head);
195 BUG_ON(ref == -ENOSPC);
197 gnttab_grant_foreign_access_ref(
198 ref,
199 info->xbdev->otherend_id,
200 buffer_mfn,
201 rq_data_dir(req) );
203 info->shadow[id].frame[ring_req->nr_segments] =
204 mfn_to_pfn(buffer_mfn);
206 ring_req->seg[ring_req->nr_segments] =
207 (struct blkif_request_segment) {
208 .gref = ref,
209 .first_sect = fsect,
210 .last_sect = lsect };
212 ring_req->nr_segments++;
215 info->ring.req_prod_pvt++;
217 /* Keep a private copy so we can reissue requests when recovering. */
218 info->shadow[id].req = *ring_req;
220 gnttab_free_grant_references(gref_head);
222 return 0;
226 static inline void flush_requests(struct blkfront_info *info)
228 int notify;
230 RING_PUSH_REQUESTS_AND_CHECK_NOTIFY(&info->ring, notify);
232 if (notify)
233 notify_remote_via_irq(info->irq);
237 * do_blkif_request
238 * read a block; request is in a request queue
240 static void do_blkif_request(struct request_queue *rq)
242 struct blkfront_info *info = NULL;
243 struct request *req;
244 int queued;
246 pr_debug("Entered do_blkif_request\n");
248 queued = 0;
250 while ((req = elv_next_request(rq)) != NULL) {
251 info = req->rq_disk->private_data;
252 if (!blk_fs_request(req)) {
253 end_request(req, 0);
254 continue;
257 if (RING_FULL(&info->ring))
258 goto wait;
260 pr_debug("do_blk_req %p: cmd %p, sec %lx, "
261 "(%u/%li) buffer:%p [%s]\n",
262 req, req->cmd, (unsigned long)req->sector,
263 req->current_nr_sectors,
264 req->nr_sectors, req->buffer,
265 rq_data_dir(req) ? "write" : "read");
268 blkdev_dequeue_request(req);
269 if (blkif_queue_request(req)) {
270 blk_requeue_request(rq, req);
271 wait:
272 /* Avoid pointless unplugs. */
273 blk_stop_queue(rq);
274 break;
277 queued++;
280 if (queued != 0)
281 flush_requests(info);
284 static int xlvbd_init_blk_queue(struct gendisk *gd, u16 sector_size)
286 struct request_queue *rq;
288 rq = blk_init_queue(do_blkif_request, &blkif_io_lock);
289 if (rq == NULL)
290 return -1;
292 elevator_init(rq, "noop");
294 /* Hard sector size and max sectors impersonate the equiv. hardware. */
295 blk_queue_hardsect_size(rq, sector_size);
296 blk_queue_max_sectors(rq, 512);
298 /* Each segment in a request is up to an aligned page in size. */
299 blk_queue_segment_boundary(rq, PAGE_SIZE - 1);
300 blk_queue_max_segment_size(rq, PAGE_SIZE);
302 /* Ensure a merged request will fit in a single I/O ring slot. */
303 blk_queue_max_phys_segments(rq, BLKIF_MAX_SEGMENTS_PER_REQUEST);
304 blk_queue_max_hw_segments(rq, BLKIF_MAX_SEGMENTS_PER_REQUEST);
306 /* Make sure buffer addresses are sector-aligned. */
307 blk_queue_dma_alignment(rq, 511);
309 gd->queue = rq;
311 return 0;
315 static int xlvbd_barrier(struct blkfront_info *info)
317 int err;
319 err = blk_queue_ordered(info->rq,
320 info->feature_barrier ? QUEUE_ORDERED_DRAIN : QUEUE_ORDERED_NONE,
321 NULL);
323 if (err)
324 return err;
326 printk(KERN_INFO "blkfront: %s: barriers %s\n",
327 info->gd->disk_name,
328 info->feature_barrier ? "enabled" : "disabled");
329 return 0;
333 static int xlvbd_alloc_gendisk(int minor, blkif_sector_t capacity,
334 int vdevice, u16 vdisk_info, u16 sector_size,
335 struct blkfront_info *info)
337 struct gendisk *gd;
338 int nr_minors = 1;
339 int err = -ENODEV;
341 BUG_ON(info->gd != NULL);
342 BUG_ON(info->rq != NULL);
344 if ((minor % PARTS_PER_DISK) == 0)
345 nr_minors = PARTS_PER_DISK;
347 gd = alloc_disk(nr_minors);
348 if (gd == NULL)
349 goto out;
351 if (nr_minors > 1)
352 sprintf(gd->disk_name, "%s%c", DEV_NAME,
353 'a' + minor / PARTS_PER_DISK);
354 else
355 sprintf(gd->disk_name, "%s%c%d", DEV_NAME,
356 'a' + minor / PARTS_PER_DISK,
357 minor % PARTS_PER_DISK);
359 gd->major = XENVBD_MAJOR;
360 gd->first_minor = minor;
361 gd->fops = &xlvbd_block_fops;
362 gd->private_data = info;
363 gd->driverfs_dev = &(info->xbdev->dev);
364 set_capacity(gd, capacity);
366 if (xlvbd_init_blk_queue(gd, sector_size)) {
367 del_gendisk(gd);
368 goto out;
371 info->rq = gd->queue;
372 info->gd = gd;
374 if (info->feature_barrier)
375 xlvbd_barrier(info);
377 if (vdisk_info & VDISK_READONLY)
378 set_disk_ro(gd, 1);
380 if (vdisk_info & VDISK_REMOVABLE)
381 gd->flags |= GENHD_FL_REMOVABLE;
383 if (vdisk_info & VDISK_CDROM)
384 gd->flags |= GENHD_FL_CD;
386 return 0;
388 out:
389 return err;
392 static void kick_pending_request_queues(struct blkfront_info *info)
394 if (!RING_FULL(&info->ring)) {
395 /* Re-enable calldowns. */
396 blk_start_queue(info->rq);
397 /* Kick things off immediately. */
398 do_blkif_request(info->rq);
402 static void blkif_restart_queue(struct work_struct *work)
404 struct blkfront_info *info = container_of(work, struct blkfront_info, work);
406 spin_lock_irq(&blkif_io_lock);
407 if (info->connected == BLKIF_STATE_CONNECTED)
408 kick_pending_request_queues(info);
409 spin_unlock_irq(&blkif_io_lock);
412 static void blkif_free(struct blkfront_info *info, int suspend)
414 /* Prevent new requests being issued until we fix things up. */
415 spin_lock_irq(&blkif_io_lock);
416 info->connected = suspend ?
417 BLKIF_STATE_SUSPENDED : BLKIF_STATE_DISCONNECTED;
418 /* No more blkif_request(). */
419 if (info->rq)
420 blk_stop_queue(info->rq);
421 /* No more gnttab callback work. */
422 gnttab_cancel_free_callback(&info->callback);
423 spin_unlock_irq(&blkif_io_lock);
425 /* Flush gnttab callback work. Must be done with no locks held. */
426 flush_scheduled_work();
428 /* Free resources associated with old device channel. */
429 if (info->ring_ref != GRANT_INVALID_REF) {
430 gnttab_end_foreign_access(info->ring_ref, 0,
431 (unsigned long)info->ring.sring);
432 info->ring_ref = GRANT_INVALID_REF;
433 info->ring.sring = NULL;
435 if (info->irq)
436 unbind_from_irqhandler(info->irq, info);
437 info->evtchn = info->irq = 0;
441 static void blkif_completion(struct blk_shadow *s)
443 int i;
444 for (i = 0; i < s->req.nr_segments; i++)
445 gnttab_end_foreign_access(s->req.seg[i].gref, 0, 0UL);
448 static irqreturn_t blkif_interrupt(int irq, void *dev_id)
450 struct request *req;
451 struct blkif_response *bret;
452 RING_IDX i, rp;
453 unsigned long flags;
454 struct blkfront_info *info = (struct blkfront_info *)dev_id;
455 int uptodate;
457 spin_lock_irqsave(&blkif_io_lock, flags);
459 if (unlikely(info->connected != BLKIF_STATE_CONNECTED)) {
460 spin_unlock_irqrestore(&blkif_io_lock, flags);
461 return IRQ_HANDLED;
464 again:
465 rp = info->ring.sring->rsp_prod;
466 rmb(); /* Ensure we see queued responses up to 'rp'. */
468 for (i = info->ring.rsp_cons; i != rp; i++) {
469 unsigned long id;
470 int ret;
472 bret = RING_GET_RESPONSE(&info->ring, i);
473 id = bret->id;
474 req = (struct request *)info->shadow[id].request;
476 blkif_completion(&info->shadow[id]);
478 add_id_to_freelist(info, id);
480 uptodate = (bret->status == BLKIF_RSP_OKAY);
481 switch (bret->operation) {
482 case BLKIF_OP_WRITE_BARRIER:
483 if (unlikely(bret->status == BLKIF_RSP_EOPNOTSUPP)) {
484 printk(KERN_WARNING "blkfront: %s: write barrier op failed\n",
485 info->gd->disk_name);
486 uptodate = -EOPNOTSUPP;
487 info->feature_barrier = 0;
488 xlvbd_barrier(info);
490 /* fall through */
491 case BLKIF_OP_READ:
492 case BLKIF_OP_WRITE:
493 if (unlikely(bret->status != BLKIF_RSP_OKAY))
494 dev_dbg(&info->xbdev->dev, "Bad return from blkdev data "
495 "request: %x\n", bret->status);
497 ret = end_that_request_first(req, uptodate,
498 req->hard_nr_sectors);
499 BUG_ON(ret);
500 end_that_request_last(req, uptodate);
501 break;
502 default:
503 BUG();
507 info->ring.rsp_cons = i;
509 if (i != info->ring.req_prod_pvt) {
510 int more_to_do;
511 RING_FINAL_CHECK_FOR_RESPONSES(&info->ring, more_to_do);
512 if (more_to_do)
513 goto again;
514 } else
515 info->ring.sring->rsp_event = i + 1;
517 kick_pending_request_queues(info);
519 spin_unlock_irqrestore(&blkif_io_lock, flags);
521 return IRQ_HANDLED;
525 static int setup_blkring(struct xenbus_device *dev,
526 struct blkfront_info *info)
528 struct blkif_sring *sring;
529 int err;
531 info->ring_ref = GRANT_INVALID_REF;
533 sring = (struct blkif_sring *)__get_free_page(GFP_KERNEL);
534 if (!sring) {
535 xenbus_dev_fatal(dev, -ENOMEM, "allocating shared ring");
536 return -ENOMEM;
538 SHARED_RING_INIT(sring);
539 FRONT_RING_INIT(&info->ring, sring, PAGE_SIZE);
541 err = xenbus_grant_ring(dev, virt_to_mfn(info->ring.sring));
542 if (err < 0) {
543 free_page((unsigned long)sring);
544 info->ring.sring = NULL;
545 goto fail;
547 info->ring_ref = err;
549 err = xenbus_alloc_evtchn(dev, &info->evtchn);
550 if (err)
551 goto fail;
553 err = bind_evtchn_to_irqhandler(info->evtchn,
554 blkif_interrupt,
555 IRQF_SAMPLE_RANDOM, "blkif", info);
556 if (err <= 0) {
557 xenbus_dev_fatal(dev, err,
558 "bind_evtchn_to_irqhandler failed");
559 goto fail;
561 info->irq = err;
563 return 0;
564 fail:
565 blkif_free(info, 0);
566 return err;
570 /* Common code used when first setting up, and when resuming. */
571 static int talk_to_backend(struct xenbus_device *dev,
572 struct blkfront_info *info)
574 const char *message = NULL;
575 struct xenbus_transaction xbt;
576 int err;
578 /* Create shared ring, alloc event channel. */
579 err = setup_blkring(dev, info);
580 if (err)
581 goto out;
583 again:
584 err = xenbus_transaction_start(&xbt);
585 if (err) {
586 xenbus_dev_fatal(dev, err, "starting transaction");
587 goto destroy_blkring;
590 err = xenbus_printf(xbt, dev->nodename,
591 "ring-ref", "%u", info->ring_ref);
592 if (err) {
593 message = "writing ring-ref";
594 goto abort_transaction;
596 err = xenbus_printf(xbt, dev->nodename,
597 "event-channel", "%u", info->evtchn);
598 if (err) {
599 message = "writing event-channel";
600 goto abort_transaction;
603 err = xenbus_transaction_end(xbt, 0);
604 if (err) {
605 if (err == -EAGAIN)
606 goto again;
607 xenbus_dev_fatal(dev, err, "completing transaction");
608 goto destroy_blkring;
611 xenbus_switch_state(dev, XenbusStateInitialised);
613 return 0;
615 abort_transaction:
616 xenbus_transaction_end(xbt, 1);
617 if (message)
618 xenbus_dev_fatal(dev, err, "%s", message);
619 destroy_blkring:
620 blkif_free(info, 0);
621 out:
622 return err;
627 * Entry point to this code when a new device is created. Allocate the basic
628 * structures and the ring buffer for communication with the backend, and
629 * inform the backend of the appropriate details for those. Switch to
630 * Initialised state.
632 static int blkfront_probe(struct xenbus_device *dev,
633 const struct xenbus_device_id *id)
635 int err, vdevice, i;
636 struct blkfront_info *info;
638 /* FIXME: Use dynamic device id if this is not set. */
639 err = xenbus_scanf(XBT_NIL, dev->nodename,
640 "virtual-device", "%i", &vdevice);
641 if (err != 1) {
642 xenbus_dev_fatal(dev, err, "reading virtual-device");
643 return err;
646 info = kzalloc(sizeof(*info), GFP_KERNEL);
647 if (!info) {
648 xenbus_dev_fatal(dev, -ENOMEM, "allocating info structure");
649 return -ENOMEM;
652 info->xbdev = dev;
653 info->vdevice = vdevice;
654 info->connected = BLKIF_STATE_DISCONNECTED;
655 INIT_WORK(&info->work, blkif_restart_queue);
657 for (i = 0; i < BLK_RING_SIZE; i++)
658 info->shadow[i].req.id = i+1;
659 info->shadow[BLK_RING_SIZE-1].req.id = 0x0fffffff;
661 /* Front end dir is a number, which is used as the id. */
662 info->handle = simple_strtoul(strrchr(dev->nodename, '/')+1, NULL, 0);
663 dev->dev.driver_data = info;
665 err = talk_to_backend(dev, info);
666 if (err) {
667 kfree(info);
668 dev->dev.driver_data = NULL;
669 return err;
672 return 0;
676 static int blkif_recover(struct blkfront_info *info)
678 int i;
679 struct blkif_request *req;
680 struct blk_shadow *copy;
681 int j;
683 /* Stage 1: Make a safe copy of the shadow state. */
684 copy = kmalloc(sizeof(info->shadow), GFP_KERNEL);
685 if (!copy)
686 return -ENOMEM;
687 memcpy(copy, info->shadow, sizeof(info->shadow));
689 /* Stage 2: Set up free list. */
690 memset(&info->shadow, 0, sizeof(info->shadow));
691 for (i = 0; i < BLK_RING_SIZE; i++)
692 info->shadow[i].req.id = i+1;
693 info->shadow_free = info->ring.req_prod_pvt;
694 info->shadow[BLK_RING_SIZE-1].req.id = 0x0fffffff;
696 /* Stage 3: Find pending requests and requeue them. */
697 for (i = 0; i < BLK_RING_SIZE; i++) {
698 /* Not in use? */
699 if (copy[i].request == 0)
700 continue;
702 /* Grab a request slot and copy shadow state into it. */
703 req = RING_GET_REQUEST(&info->ring, info->ring.req_prod_pvt);
704 *req = copy[i].req;
706 /* We get a new request id, and must reset the shadow state. */
707 req->id = get_id_from_freelist(info);
708 memcpy(&info->shadow[req->id], &copy[i], sizeof(copy[i]));
710 /* Rewrite any grant references invalidated by susp/resume. */
711 for (j = 0; j < req->nr_segments; j++)
712 gnttab_grant_foreign_access_ref(
713 req->seg[j].gref,
714 info->xbdev->otherend_id,
715 pfn_to_mfn(info->shadow[req->id].frame[j]),
716 rq_data_dir(
717 (struct request *)
718 info->shadow[req->id].request));
719 info->shadow[req->id].req = *req;
721 info->ring.req_prod_pvt++;
724 kfree(copy);
726 xenbus_switch_state(info->xbdev, XenbusStateConnected);
728 spin_lock_irq(&blkif_io_lock);
730 /* Now safe for us to use the shared ring */
731 info->connected = BLKIF_STATE_CONNECTED;
733 /* Send off requeued requests */
734 flush_requests(info);
736 /* Kick any other new requests queued since we resumed */
737 kick_pending_request_queues(info);
739 spin_unlock_irq(&blkif_io_lock);
741 return 0;
745 * We are reconnecting to the backend, due to a suspend/resume, or a backend
746 * driver restart. We tear down our blkif structure and recreate it, but
747 * leave the device-layer structures intact so that this is transparent to the
748 * rest of the kernel.
750 static int blkfront_resume(struct xenbus_device *dev)
752 struct blkfront_info *info = dev->dev.driver_data;
753 int err;
755 dev_dbg(&dev->dev, "blkfront_resume: %s\n", dev->nodename);
757 blkif_free(info, info->connected == BLKIF_STATE_CONNECTED);
759 err = talk_to_backend(dev, info);
760 if (info->connected == BLKIF_STATE_SUSPENDED && !err)
761 err = blkif_recover(info);
763 return err;
768 * Invoked when the backend is finally 'ready' (and has told produced
769 * the details about the physical device - #sectors, size, etc).
771 static void blkfront_connect(struct blkfront_info *info)
773 unsigned long long sectors;
774 unsigned long sector_size;
775 unsigned int binfo;
776 int err;
778 if ((info->connected == BLKIF_STATE_CONNECTED) ||
779 (info->connected == BLKIF_STATE_SUSPENDED) )
780 return;
782 dev_dbg(&info->xbdev->dev, "%s:%s.\n",
783 __func__, info->xbdev->otherend);
785 err = xenbus_gather(XBT_NIL, info->xbdev->otherend,
786 "sectors", "%llu", &sectors,
787 "info", "%u", &binfo,
788 "sector-size", "%lu", &sector_size,
789 NULL);
790 if (err) {
791 xenbus_dev_fatal(info->xbdev, err,
792 "reading backend fields at %s",
793 info->xbdev->otherend);
794 return;
797 err = xenbus_gather(XBT_NIL, info->xbdev->otherend,
798 "feature-barrier", "%lu", &info->feature_barrier,
799 NULL);
800 if (err)
801 info->feature_barrier = 0;
803 err = xlvbd_alloc_gendisk(BLKIF_MINOR(info->vdevice),
804 sectors, info->vdevice,
805 binfo, sector_size, info);
806 if (err) {
807 xenbus_dev_fatal(info->xbdev, err, "xlvbd_add at %s",
808 info->xbdev->otherend);
809 return;
812 xenbus_switch_state(info->xbdev, XenbusStateConnected);
814 /* Kick pending requests. */
815 spin_lock_irq(&blkif_io_lock);
816 info->connected = BLKIF_STATE_CONNECTED;
817 kick_pending_request_queues(info);
818 spin_unlock_irq(&blkif_io_lock);
820 add_disk(info->gd);
824 * Handle the change of state of the backend to Closing. We must delete our
825 * device-layer structures now, to ensure that writes are flushed through to
826 * the backend. Once is this done, we can switch to Closed in
827 * acknowledgement.
829 static void blkfront_closing(struct xenbus_device *dev)
831 struct blkfront_info *info = dev->dev.driver_data;
832 unsigned long flags;
834 dev_dbg(&dev->dev, "blkfront_closing: %s removed\n", dev->nodename);
836 if (info->rq == NULL)
837 goto out;
839 spin_lock_irqsave(&blkif_io_lock, flags);
841 del_gendisk(info->gd);
843 /* No more blkif_request(). */
844 blk_stop_queue(info->rq);
846 /* No more gnttab callback work. */
847 gnttab_cancel_free_callback(&info->callback);
848 spin_unlock_irqrestore(&blkif_io_lock, flags);
850 /* Flush gnttab callback work. Must be done with no locks held. */
851 flush_scheduled_work();
853 blk_cleanup_queue(info->rq);
854 info->rq = NULL;
856 out:
857 xenbus_frontend_closed(dev);
861 * Callback received when the backend's state changes.
863 static void backend_changed(struct xenbus_device *dev,
864 enum xenbus_state backend_state)
866 struct blkfront_info *info = dev->dev.driver_data;
867 struct block_device *bd;
869 dev_dbg(&dev->dev, "blkfront:backend_changed.\n");
871 switch (backend_state) {
872 case XenbusStateInitialising:
873 case XenbusStateInitWait:
874 case XenbusStateInitialised:
875 case XenbusStateUnknown:
876 case XenbusStateClosed:
877 break;
879 case XenbusStateConnected:
880 blkfront_connect(info);
881 break;
883 case XenbusStateClosing:
884 bd = bdget(info->dev);
885 if (bd == NULL)
886 xenbus_dev_fatal(dev, -ENODEV, "bdget failed");
888 mutex_lock(&bd->bd_mutex);
889 if (info->users > 0)
890 xenbus_dev_error(dev, -EBUSY,
891 "Device in use; refusing to close");
892 else
893 blkfront_closing(dev);
894 mutex_unlock(&bd->bd_mutex);
895 bdput(bd);
896 break;
900 static int blkfront_remove(struct xenbus_device *dev)
902 struct blkfront_info *info = dev->dev.driver_data;
904 dev_dbg(&dev->dev, "blkfront_remove: %s removed\n", dev->nodename);
906 blkif_free(info, 0);
908 kfree(info);
910 return 0;
913 static int blkif_open(struct inode *inode, struct file *filep)
915 struct blkfront_info *info = inode->i_bdev->bd_disk->private_data;
916 info->users++;
917 return 0;
920 static int blkif_release(struct inode *inode, struct file *filep)
922 struct blkfront_info *info = inode->i_bdev->bd_disk->private_data;
923 info->users--;
924 if (info->users == 0) {
925 /* Check whether we have been instructed to close. We will
926 have ignored this request initially, as the device was
927 still mounted. */
928 struct xenbus_device *dev = info->xbdev;
929 enum xenbus_state state = xenbus_read_driver_state(dev->otherend);
931 if (state == XenbusStateClosing)
932 blkfront_closing(dev);
934 return 0;
937 static struct block_device_operations xlvbd_block_fops =
939 .owner = THIS_MODULE,
940 .open = blkif_open,
941 .release = blkif_release,
945 static struct xenbus_device_id blkfront_ids[] = {
946 { "vbd" },
947 { "" }
950 static struct xenbus_driver blkfront = {
951 .name = "vbd",
952 .owner = THIS_MODULE,
953 .ids = blkfront_ids,
954 .probe = blkfront_probe,
955 .remove = blkfront_remove,
956 .resume = blkfront_resume,
957 .otherend_changed = backend_changed,
960 static int __init xlblk_init(void)
962 if (!is_running_on_xen())
963 return -ENODEV;
965 if (register_blkdev(XENVBD_MAJOR, DEV_NAME)) {
966 printk(KERN_WARNING "xen_blk: can't get major %d with name %s\n",
967 XENVBD_MAJOR, DEV_NAME);
968 return -ENODEV;
971 return xenbus_register_frontend(&blkfront);
973 module_init(xlblk_init);
976 static void xlblk_exit(void)
978 return xenbus_unregister_driver(&blkfront);
980 module_exit(xlblk_exit);
982 MODULE_DESCRIPTION("Xen virtual block device frontend");
983 MODULE_LICENSE("GPL");
984 MODULE_ALIAS_BLOCKDEV_MAJOR(XENVBD_MAJOR);