writeback.h: needs linux/device.h
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / drivers / block / xen-blkfront.c
CommitLineData
9f27ee59
JF
1/*
2 * blkfront.c
3 *
4 * XenLinux virtual block device driver.
5 *
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
12 *
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:
18 *
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:
25 *
26 * The above copyright notice and this permission notice shall be included in
27 * all copies or substantial portions of the Software.
28 *
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.
36 */
37
38#include <linux/interrupt.h>
39#include <linux/blkdev.h>
597592d9 40#include <linux/hdreg.h>
440a01a7 41#include <linux/cdrom.h>
9f27ee59 42#include <linux/module.h>
5a0e3ad6 43#include <linux/slab.h>
6e9624b8 44#include <linux/smp_lock.h>
9e973e64 45#include <linux/scatterlist.h>
9f27ee59 46
1ccbf534 47#include <xen/xen.h>
9f27ee59
JF
48#include <xen/xenbus.h>
49#include <xen/grant_table.h>
50#include <xen/events.h>
51#include <xen/page.h>
52
53#include <xen/interface/grant_table.h>
54#include <xen/interface/io/blkif.h>
3e334239 55#include <xen/interface/io/protocols.h>
9f27ee59
JF
56
57#include <asm/xen/hypervisor.h>
58
59enum blkif_state {
60 BLKIF_STATE_DISCONNECTED,
61 BLKIF_STATE_CONNECTED,
62 BLKIF_STATE_SUSPENDED,
63};
64
65struct blk_shadow {
66 struct blkif_request req;
67 unsigned long request;
68 unsigned long frame[BLKIF_MAX_SEGMENTS_PER_REQUEST];
69};
70
83d5cde4 71static const struct block_device_operations xlvbd_block_fops;
9f27ee59
JF
72
73#define BLK_RING_SIZE __RING_SIZE((struct blkif_sring *)0, PAGE_SIZE)
74
75/*
76 * We have one of these per vbd, whether ide, scsi or 'other'. They
77 * hang in private_data off the gendisk structure. We may end up
78 * putting all kinds of interesting stuff here :-)
79 */
80struct blkfront_info
81{
82 struct xenbus_device *xbdev;
9f27ee59
JF
83 struct gendisk *gd;
84 int vdevice;
85 blkif_vdev_t handle;
86 enum blkif_state connected;
87 int ring_ref;
88 struct blkif_front_ring ring;
9e973e64 89 struct scatterlist sg[BLKIF_MAX_SEGMENTS_PER_REQUEST];
9f27ee59
JF
90 unsigned int evtchn, irq;
91 struct request_queue *rq;
92 struct work_struct work;
93 struct gnttab_free_callback callback;
94 struct blk_shadow shadow[BLK_RING_SIZE];
95 unsigned long shadow_free;
96 int feature_barrier;
1d78d705 97 int is_ready;
9f27ee59
JF
98
99 /**
100 * The number of people holding this device open. We won't allow a
101 * hot-unplug unless this is 0.
102 */
103 int users;
104};
105
106static DEFINE_SPINLOCK(blkif_io_lock);
107
108#define MAXIMUM_OUTSTANDING_BLOCK_REQS \
109 (BLKIF_MAX_SEGMENTS_PER_REQUEST * BLK_RING_SIZE)
110#define GRANT_INVALID_REF 0
111
112#define PARTS_PER_DISK 16
9246b5f0 113#define PARTS_PER_EXT_DISK 256
9f27ee59
JF
114
115#define BLKIF_MAJOR(dev) ((dev)>>8)
116#define BLKIF_MINOR(dev) ((dev) & 0xff)
117
9246b5f0
CL
118#define EXT_SHIFT 28
119#define EXTENDED (1<<EXT_SHIFT)
120#define VDEV_IS_EXTENDED(dev) ((dev)&(EXTENDED))
121#define BLKIF_MINOR_EXT(dev) ((dev)&(~EXTENDED))
9f27ee59 122
9246b5f0 123#define DEV_NAME "xvd" /* name in /dev */
9f27ee59
JF
124
125static int get_id_from_freelist(struct blkfront_info *info)
126{
127 unsigned long free = info->shadow_free;
b9ed7252 128 BUG_ON(free >= BLK_RING_SIZE);
9f27ee59
JF
129 info->shadow_free = info->shadow[free].req.id;
130 info->shadow[free].req.id = 0x0fffffee; /* debug */
131 return free;
132}
133
134static void add_id_to_freelist(struct blkfront_info *info,
135 unsigned long id)
136{
137 info->shadow[id].req.id = info->shadow_free;
138 info->shadow[id].request = 0;
139 info->shadow_free = id;
140}
141
142static void blkif_restart_queue_callback(void *arg)
143{
144 struct blkfront_info *info = (struct blkfront_info *)arg;
145 schedule_work(&info->work);
146}
147
afe42d7d 148static int blkif_getgeo(struct block_device *bd, struct hd_geometry *hg)
597592d9
IC
149{
150 /* We don't have real geometry info, but let's at least return
151 values consistent with the size of the device */
152 sector_t nsect = get_capacity(bd->bd_disk);
153 sector_t cylinders = nsect;
154
155 hg->heads = 0xff;
156 hg->sectors = 0x3f;
157 sector_div(cylinders, hg->heads * hg->sectors);
158 hg->cylinders = cylinders;
159 if ((sector_t)(hg->cylinders + 1) * hg->heads * hg->sectors < nsect)
160 hg->cylinders = 0xffff;
161 return 0;
162}
163
a63c848b 164static int blkif_ioctl(struct block_device *bdev, fmode_t mode,
62aa0054 165 unsigned command, unsigned long argument)
440a01a7 166{
a63c848b 167 struct blkfront_info *info = bdev->bd_disk->private_data;
440a01a7
CL
168 int i;
169
170 dev_dbg(&info->xbdev->dev, "command: 0x%x, argument: 0x%lx\n",
171 command, (long)argument);
172
173 switch (command) {
174 case CDROMMULTISESSION:
175 dev_dbg(&info->xbdev->dev, "FIXME: support multisession CDs later\n");
176 for (i = 0; i < sizeof(struct cdrom_multisession); i++)
177 if (put_user(0, (char __user *)(argument + i)))
178 return -EFAULT;
179 return 0;
180
181 case CDROM_GET_CAPABILITY: {
182 struct gendisk *gd = info->gd;
183 if (gd->flags & GENHD_FL_CD)
184 return 0;
185 return -EINVAL;
186 }
187
188 default:
189 /*printk(KERN_ALERT "ioctl %08x not supported by Xen blkdev\n",
190 command);*/
191 return -EINVAL; /* same return as native Linux */
192 }
193
194 return 0;
195}
196
9f27ee59
JF
197/*
198 * blkif_queue_request
199 *
200 * request block io
201 *
202 * id: for guest use only.
203 * operation: BLKIF_OP_{READ,WRITE,PROBE}
204 * buffer: buffer to read/write into. this should be a
205 * virtual address in the guest os.
206 */
207static int blkif_queue_request(struct request *req)
208{
209 struct blkfront_info *info = req->rq_disk->private_data;
210 unsigned long buffer_mfn;
211 struct blkif_request *ring_req;
9f27ee59
JF
212 unsigned long id;
213 unsigned int fsect, lsect;
9e973e64 214 int i, ref;
9f27ee59 215 grant_ref_t gref_head;
9e973e64 216 struct scatterlist *sg;
9f27ee59
JF
217
218 if (unlikely(info->connected != BLKIF_STATE_CONNECTED))
219 return 1;
220
221 if (gnttab_alloc_grant_references(
222 BLKIF_MAX_SEGMENTS_PER_REQUEST, &gref_head) < 0) {
223 gnttab_request_free_callback(
224 &info->callback,
225 blkif_restart_queue_callback,
226 info,
227 BLKIF_MAX_SEGMENTS_PER_REQUEST);
228 return 1;
229 }
230
231 /* Fill out a communications ring structure. */
232 ring_req = RING_GET_REQUEST(&info->ring, info->ring.req_prod_pvt);
233 id = get_id_from_freelist(info);
234 info->shadow[id].request = (unsigned long)req;
235
236 ring_req->id = id;
83096ebf 237 ring_req->sector_number = (blkif_sector_t)blk_rq_pos(req);
9f27ee59
JF
238 ring_req->handle = info->handle;
239
240 ring_req->operation = rq_data_dir(req) ?
241 BLKIF_OP_WRITE : BLKIF_OP_READ;
33659ebb 242 if (req->cmd_flags & REQ_HARDBARRIER)
9f27ee59
JF
243 ring_req->operation = BLKIF_OP_WRITE_BARRIER;
244
9e973e64
JA
245 ring_req->nr_segments = blk_rq_map_sg(req->q, req, info->sg);
246 BUG_ON(ring_req->nr_segments > BLKIF_MAX_SEGMENTS_PER_REQUEST);
247
248 for_each_sg(info->sg, sg, ring_req->nr_segments, i) {
249 buffer_mfn = pfn_to_mfn(page_to_pfn(sg_page(sg)));
250 fsect = sg->offset >> 9;
251 lsect = fsect + (sg->length >> 9) - 1;
6c92e699
JA
252 /* install a grant reference. */
253 ref = gnttab_claim_grant_reference(&gref_head);
254 BUG_ON(ref == -ENOSPC);
255
256 gnttab_grant_foreign_access_ref(
9f27ee59
JF
257 ref,
258 info->xbdev->otherend_id,
259 buffer_mfn,
260 rq_data_dir(req) );
261
9e973e64
JA
262 info->shadow[id].frame[i] = mfn_to_pfn(buffer_mfn);
263 ring_req->seg[i] =
9f27ee59
JF
264 (struct blkif_request_segment) {
265 .gref = ref,
266 .first_sect = fsect,
267 .last_sect = lsect };
9f27ee59
JF
268 }
269
270 info->ring.req_prod_pvt++;
271
272 /* Keep a private copy so we can reissue requests when recovering. */
273 info->shadow[id].req = *ring_req;
274
275 gnttab_free_grant_references(gref_head);
276
277 return 0;
278}
279
280
281static inline void flush_requests(struct blkfront_info *info)
282{
283 int notify;
284
285 RING_PUSH_REQUESTS_AND_CHECK_NOTIFY(&info->ring, notify);
286
287 if (notify)
288 notify_remote_via_irq(info->irq);
289}
290
291/*
292 * do_blkif_request
293 * read a block; request is in a request queue
294 */
165125e1 295static void do_blkif_request(struct request_queue *rq)
9f27ee59
JF
296{
297 struct blkfront_info *info = NULL;
298 struct request *req;
299 int queued;
300
301 pr_debug("Entered do_blkif_request\n");
302
303 queued = 0;
304
9934c8c0 305 while ((req = blk_peek_request(rq)) != NULL) {
9f27ee59 306 info = req->rq_disk->private_data;
9f27ee59
JF
307
308 if (RING_FULL(&info->ring))
309 goto wait;
310
9934c8c0 311 blk_start_request(req);
296b2f6a 312
33659ebb 313 if (req->cmd_type != REQ_TYPE_FS) {
296b2f6a
TH
314 __blk_end_request_all(req, -EIO);
315 continue;
316 }
317
9f27ee59 318 pr_debug("do_blk_req %p: cmd %p, sec %lx, "
83096ebf
TH
319 "(%u/%u) buffer:%p [%s]\n",
320 req, req->cmd, (unsigned long)blk_rq_pos(req),
321 blk_rq_cur_sectors(req), blk_rq_sectors(req),
322 req->buffer, rq_data_dir(req) ? "write" : "read");
9f27ee59 323
9f27ee59
JF
324 if (blkif_queue_request(req)) {
325 blk_requeue_request(rq, req);
326wait:
327 /* Avoid pointless unplugs. */
328 blk_stop_queue(rq);
329 break;
330 }
331
332 queued++;
333 }
334
335 if (queued != 0)
336 flush_requests(info);
337}
338
339static int xlvbd_init_blk_queue(struct gendisk *gd, u16 sector_size)
340{
165125e1 341 struct request_queue *rq;
9f27ee59
JF
342
343 rq = blk_init_queue(do_blkif_request, &blkif_io_lock);
344 if (rq == NULL)
345 return -1;
346
66d352e1 347 queue_flag_set_unlocked(QUEUE_FLAG_VIRT, rq);
9f27ee59
JF
348
349 /* Hard sector size and max sectors impersonate the equiv. hardware. */
e1defc4f 350 blk_queue_logical_block_size(rq, sector_size);
086fa5ff 351 blk_queue_max_hw_sectors(rq, 512);
9f27ee59
JF
352
353 /* Each segment in a request is up to an aligned page in size. */
354 blk_queue_segment_boundary(rq, PAGE_SIZE - 1);
355 blk_queue_max_segment_size(rq, PAGE_SIZE);
356
357 /* Ensure a merged request will fit in a single I/O ring slot. */
8a78362c 358 blk_queue_max_segments(rq, BLKIF_MAX_SEGMENTS_PER_REQUEST);
9f27ee59
JF
359
360 /* Make sure buffer addresses are sector-aligned. */
361 blk_queue_dma_alignment(rq, 511);
362
1c91fe1a
IC
363 /* Make sure we don't use bounce buffers. */
364 blk_queue_bounce_limit(rq, BLK_BOUNCE_ANY);
365
9f27ee59
JF
366 gd->queue = rq;
367
368 return 0;
369}
370
371
372static int xlvbd_barrier(struct blkfront_info *info)
373{
374 int err;
375
376 err = blk_queue_ordered(info->rq,
00fff265 377 info->feature_barrier ? QUEUE_ORDERED_DRAIN : QUEUE_ORDERED_NONE);
9f27ee59
JF
378
379 if (err)
380 return err;
381
382 printk(KERN_INFO "blkfront: %s: barriers %s\n",
383 info->gd->disk_name,
384 info->feature_barrier ? "enabled" : "disabled");
385 return 0;
386}
387
388
9246b5f0
CL
389static int xlvbd_alloc_gendisk(blkif_sector_t capacity,
390 struct blkfront_info *info,
391 u16 vdisk_info, u16 sector_size)
9f27ee59
JF
392{
393 struct gendisk *gd;
394 int nr_minors = 1;
395 int err = -ENODEV;
9246b5f0
CL
396 unsigned int offset;
397 int minor;
398 int nr_parts;
9f27ee59
JF
399
400 BUG_ON(info->gd != NULL);
401 BUG_ON(info->rq != NULL);
402
9246b5f0
CL
403 if ((info->vdevice>>EXT_SHIFT) > 1) {
404 /* this is above the extended range; something is wrong */
405 printk(KERN_WARNING "blkfront: vdevice 0x%x is above the extended range; ignoring\n", info->vdevice);
406 return -ENODEV;
407 }
408
409 if (!VDEV_IS_EXTENDED(info->vdevice)) {
410 minor = BLKIF_MINOR(info->vdevice);
411 nr_parts = PARTS_PER_DISK;
412 } else {
413 minor = BLKIF_MINOR_EXT(info->vdevice);
414 nr_parts = PARTS_PER_EXT_DISK;
415 }
416
417 if ((minor % nr_parts) == 0)
418 nr_minors = nr_parts;
9f27ee59
JF
419
420 gd = alloc_disk(nr_minors);
421 if (gd == NULL)
422 goto out;
423
9246b5f0
CL
424 offset = minor / nr_parts;
425
426 if (nr_minors > 1) {
427 if (offset < 26)
428 sprintf(gd->disk_name, "%s%c", DEV_NAME, 'a' + offset);
429 else
430 sprintf(gd->disk_name, "%s%c%c", DEV_NAME,
431 'a' + ((offset / 26)-1), 'a' + (offset % 26));
432 } else {
433 if (offset < 26)
434 sprintf(gd->disk_name, "%s%c%d", DEV_NAME,
435 'a' + offset,
436 minor & (nr_parts - 1));
437 else
438 sprintf(gd->disk_name, "%s%c%c%d", DEV_NAME,
439 'a' + ((offset / 26) - 1),
440 'a' + (offset % 26),
441 minor & (nr_parts - 1));
442 }
9f27ee59
JF
443
444 gd->major = XENVBD_MAJOR;
445 gd->first_minor = minor;
446 gd->fops = &xlvbd_block_fops;
447 gd->private_data = info;
448 gd->driverfs_dev = &(info->xbdev->dev);
449 set_capacity(gd, capacity);
450
451 if (xlvbd_init_blk_queue(gd, sector_size)) {
452 del_gendisk(gd);
453 goto out;
454 }
455
456 info->rq = gd->queue;
457 info->gd = gd;
458
459 if (info->feature_barrier)
460 xlvbd_barrier(info);
461
462 if (vdisk_info & VDISK_READONLY)
463 set_disk_ro(gd, 1);
464
465 if (vdisk_info & VDISK_REMOVABLE)
466 gd->flags |= GENHD_FL_REMOVABLE;
467
468 if (vdisk_info & VDISK_CDROM)
469 gd->flags |= GENHD_FL_CD;
470
471 return 0;
472
473 out:
474 return err;
475}
476
477static void kick_pending_request_queues(struct blkfront_info *info)
478{
479 if (!RING_FULL(&info->ring)) {
480 /* Re-enable calldowns. */
481 blk_start_queue(info->rq);
482 /* Kick things off immediately. */
483 do_blkif_request(info->rq);
484 }
485}
486
487static void blkif_restart_queue(struct work_struct *work)
488{
489 struct blkfront_info *info = container_of(work, struct blkfront_info, work);
490
491 spin_lock_irq(&blkif_io_lock);
492 if (info->connected == BLKIF_STATE_CONNECTED)
493 kick_pending_request_queues(info);
494 spin_unlock_irq(&blkif_io_lock);
495}
496
497static void blkif_free(struct blkfront_info *info, int suspend)
498{
499 /* Prevent new requests being issued until we fix things up. */
500 spin_lock_irq(&blkif_io_lock);
501 info->connected = suspend ?
502 BLKIF_STATE_SUSPENDED : BLKIF_STATE_DISCONNECTED;
503 /* No more blkif_request(). */
504 if (info->rq)
505 blk_stop_queue(info->rq);
506 /* No more gnttab callback work. */
507 gnttab_cancel_free_callback(&info->callback);
508 spin_unlock_irq(&blkif_io_lock);
509
510 /* Flush gnttab callback work. Must be done with no locks held. */
511 flush_scheduled_work();
512
513 /* Free resources associated with old device channel. */
514 if (info->ring_ref != GRANT_INVALID_REF) {
515 gnttab_end_foreign_access(info->ring_ref, 0,
516 (unsigned long)info->ring.sring);
517 info->ring_ref = GRANT_INVALID_REF;
518 info->ring.sring = NULL;
519 }
520 if (info->irq)
521 unbind_from_irqhandler(info->irq, info);
522 info->evtchn = info->irq = 0;
523
524}
525
526static void blkif_completion(struct blk_shadow *s)
527{
528 int i;
529 for (i = 0; i < s->req.nr_segments; i++)
530 gnttab_end_foreign_access(s->req.seg[i].gref, 0, 0UL);
531}
532
533static irqreturn_t blkif_interrupt(int irq, void *dev_id)
534{
535 struct request *req;
536 struct blkif_response *bret;
537 RING_IDX i, rp;
538 unsigned long flags;
539 struct blkfront_info *info = (struct blkfront_info *)dev_id;
f530f036 540 int error;
9f27ee59
JF
541
542 spin_lock_irqsave(&blkif_io_lock, flags);
543
544 if (unlikely(info->connected != BLKIF_STATE_CONNECTED)) {
545 spin_unlock_irqrestore(&blkif_io_lock, flags);
546 return IRQ_HANDLED;
547 }
548
549 again:
550 rp = info->ring.sring->rsp_prod;
551 rmb(); /* Ensure we see queued responses up to 'rp'. */
552
553 for (i = info->ring.rsp_cons; i != rp; i++) {
554 unsigned long id;
9f27ee59
JF
555
556 bret = RING_GET_RESPONSE(&info->ring, i);
557 id = bret->id;
558 req = (struct request *)info->shadow[id].request;
559
560 blkif_completion(&info->shadow[id]);
561
562 add_id_to_freelist(info, id);
563
f530f036 564 error = (bret->status == BLKIF_RSP_OKAY) ? 0 : -EIO;
9f27ee59
JF
565 switch (bret->operation) {
566 case BLKIF_OP_WRITE_BARRIER:
567 if (unlikely(bret->status == BLKIF_RSP_EOPNOTSUPP)) {
568 printk(KERN_WARNING "blkfront: %s: write barrier op failed\n",
569 info->gd->disk_name);
f530f036 570 error = -EOPNOTSUPP;
9f27ee59
JF
571 info->feature_barrier = 0;
572 xlvbd_barrier(info);
573 }
574 /* fall through */
575 case BLKIF_OP_READ:
576 case BLKIF_OP_WRITE:
577 if (unlikely(bret->status != BLKIF_RSP_OKAY))
578 dev_dbg(&info->xbdev->dev, "Bad return from blkdev data "
579 "request: %x\n", bret->status);
580
40cbbb78 581 __blk_end_request_all(req, error);
9f27ee59
JF
582 break;
583 default:
584 BUG();
585 }
586 }
587
588 info->ring.rsp_cons = i;
589
590 if (i != info->ring.req_prod_pvt) {
591 int more_to_do;
592 RING_FINAL_CHECK_FOR_RESPONSES(&info->ring, more_to_do);
593 if (more_to_do)
594 goto again;
595 } else
596 info->ring.sring->rsp_event = i + 1;
597
598 kick_pending_request_queues(info);
599
600 spin_unlock_irqrestore(&blkif_io_lock, flags);
601
602 return IRQ_HANDLED;
603}
604
605
606static int setup_blkring(struct xenbus_device *dev,
607 struct blkfront_info *info)
608{
609 struct blkif_sring *sring;
610 int err;
611
612 info->ring_ref = GRANT_INVALID_REF;
613
a144ff09 614 sring = (struct blkif_sring *)__get_free_page(GFP_NOIO | __GFP_HIGH);
9f27ee59
JF
615 if (!sring) {
616 xenbus_dev_fatal(dev, -ENOMEM, "allocating shared ring");
617 return -ENOMEM;
618 }
619 SHARED_RING_INIT(sring);
620 FRONT_RING_INIT(&info->ring, sring, PAGE_SIZE);
9e973e64
JA
621
622 sg_init_table(info->sg, BLKIF_MAX_SEGMENTS_PER_REQUEST);
9f27ee59
JF
623
624 err = xenbus_grant_ring(dev, virt_to_mfn(info->ring.sring));
625 if (err < 0) {
626 free_page((unsigned long)sring);
627 info->ring.sring = NULL;
628 goto fail;
629 }
630 info->ring_ref = err;
631
632 err = xenbus_alloc_evtchn(dev, &info->evtchn);
633 if (err)
634 goto fail;
635
636 err = bind_evtchn_to_irqhandler(info->evtchn,
637 blkif_interrupt,
638 IRQF_SAMPLE_RANDOM, "blkif", info);
639 if (err <= 0) {
640 xenbus_dev_fatal(dev, err,
641 "bind_evtchn_to_irqhandler failed");
642 goto fail;
643 }
644 info->irq = err;
645
646 return 0;
647fail:
648 blkif_free(info, 0);
649 return err;
650}
651
652
653/* Common code used when first setting up, and when resuming. */
654static int talk_to_backend(struct xenbus_device *dev,
655 struct blkfront_info *info)
656{
657 const char *message = NULL;
658 struct xenbus_transaction xbt;
659 int err;
660
661 /* Create shared ring, alloc event channel. */
662 err = setup_blkring(dev, info);
663 if (err)
664 goto out;
665
666again:
667 err = xenbus_transaction_start(&xbt);
668 if (err) {
669 xenbus_dev_fatal(dev, err, "starting transaction");
670 goto destroy_blkring;
671 }
672
673 err = xenbus_printf(xbt, dev->nodename,
674 "ring-ref", "%u", info->ring_ref);
675 if (err) {
676 message = "writing ring-ref";
677 goto abort_transaction;
678 }
679 err = xenbus_printf(xbt, dev->nodename,
680 "event-channel", "%u", info->evtchn);
681 if (err) {
682 message = "writing event-channel";
683 goto abort_transaction;
684 }
3e334239
MA
685 err = xenbus_printf(xbt, dev->nodename, "protocol", "%s",
686 XEN_IO_PROTO_ABI_NATIVE);
687 if (err) {
688 message = "writing protocol";
689 goto abort_transaction;
690 }
9f27ee59
JF
691
692 err = xenbus_transaction_end(xbt, 0);
693 if (err) {
694 if (err == -EAGAIN)
695 goto again;
696 xenbus_dev_fatal(dev, err, "completing transaction");
697 goto destroy_blkring;
698 }
699
700 xenbus_switch_state(dev, XenbusStateInitialised);
701
702 return 0;
703
704 abort_transaction:
705 xenbus_transaction_end(xbt, 1);
706 if (message)
707 xenbus_dev_fatal(dev, err, "%s", message);
708 destroy_blkring:
709 blkif_free(info, 0);
710 out:
711 return err;
712}
713
714
715/**
716 * Entry point to this code when a new device is created. Allocate the basic
717 * structures and the ring buffer for communication with the backend, and
718 * inform the backend of the appropriate details for those. Switch to
719 * Initialised state.
720 */
721static int blkfront_probe(struct xenbus_device *dev,
722 const struct xenbus_device_id *id)
723{
724 int err, vdevice, i;
725 struct blkfront_info *info;
726
727 /* FIXME: Use dynamic device id if this is not set. */
728 err = xenbus_scanf(XBT_NIL, dev->nodename,
729 "virtual-device", "%i", &vdevice);
730 if (err != 1) {
9246b5f0
CL
731 /* go looking in the extended area instead */
732 err = xenbus_scanf(XBT_NIL, dev->nodename, "virtual-device-ext",
733 "%i", &vdevice);
734 if (err != 1) {
735 xenbus_dev_fatal(dev, err, "reading virtual-device");
736 return err;
737 }
9f27ee59
JF
738 }
739
740 info = kzalloc(sizeof(*info), GFP_KERNEL);
741 if (!info) {
742 xenbus_dev_fatal(dev, -ENOMEM, "allocating info structure");
743 return -ENOMEM;
744 }
745
746 info->xbdev = dev;
747 info->vdevice = vdevice;
748 info->connected = BLKIF_STATE_DISCONNECTED;
749 INIT_WORK(&info->work, blkif_restart_queue);
750
751 for (i = 0; i < BLK_RING_SIZE; i++)
752 info->shadow[i].req.id = i+1;
753 info->shadow[BLK_RING_SIZE-1].req.id = 0x0fffffff;
754
755 /* Front end dir is a number, which is used as the id. */
756 info->handle = simple_strtoul(strrchr(dev->nodename, '/')+1, NULL, 0);
a1b4b12b 757 dev_set_drvdata(&dev->dev, info);
9f27ee59
JF
758
759 err = talk_to_backend(dev, info);
760 if (err) {
761 kfree(info);
a1b4b12b 762 dev_set_drvdata(&dev->dev, NULL);
9f27ee59
JF
763 return err;
764 }
765
766 return 0;
767}
768
769
770static int blkif_recover(struct blkfront_info *info)
771{
772 int i;
773 struct blkif_request *req;
774 struct blk_shadow *copy;
775 int j;
776
777 /* Stage 1: Make a safe copy of the shadow state. */
a144ff09
IC
778 copy = kmalloc(sizeof(info->shadow),
779 GFP_NOIO | __GFP_REPEAT | __GFP_HIGH);
9f27ee59
JF
780 if (!copy)
781 return -ENOMEM;
782 memcpy(copy, info->shadow, sizeof(info->shadow));
783
784 /* Stage 2: Set up free list. */
785 memset(&info->shadow, 0, sizeof(info->shadow));
786 for (i = 0; i < BLK_RING_SIZE; i++)
787 info->shadow[i].req.id = i+1;
788 info->shadow_free = info->ring.req_prod_pvt;
789 info->shadow[BLK_RING_SIZE-1].req.id = 0x0fffffff;
790
791 /* Stage 3: Find pending requests and requeue them. */
792 for (i = 0; i < BLK_RING_SIZE; i++) {
793 /* Not in use? */
794 if (copy[i].request == 0)
795 continue;
796
797 /* Grab a request slot and copy shadow state into it. */
798 req = RING_GET_REQUEST(&info->ring, info->ring.req_prod_pvt);
799 *req = copy[i].req;
800
801 /* We get a new request id, and must reset the shadow state. */
802 req->id = get_id_from_freelist(info);
803 memcpy(&info->shadow[req->id], &copy[i], sizeof(copy[i]));
804
805 /* Rewrite any grant references invalidated by susp/resume. */
806 for (j = 0; j < req->nr_segments; j++)
807 gnttab_grant_foreign_access_ref(
808 req->seg[j].gref,
809 info->xbdev->otherend_id,
810 pfn_to_mfn(info->shadow[req->id].frame[j]),
811 rq_data_dir(
812 (struct request *)
813 info->shadow[req->id].request));
814 info->shadow[req->id].req = *req;
815
816 info->ring.req_prod_pvt++;
817 }
818
819 kfree(copy);
820
821 xenbus_switch_state(info->xbdev, XenbusStateConnected);
822
823 spin_lock_irq(&blkif_io_lock);
824
825 /* Now safe for us to use the shared ring */
826 info->connected = BLKIF_STATE_CONNECTED;
827
828 /* Send off requeued requests */
829 flush_requests(info);
830
831 /* Kick any other new requests queued since we resumed */
832 kick_pending_request_queues(info);
833
834 spin_unlock_irq(&blkif_io_lock);
835
836 return 0;
837}
838
839/**
840 * We are reconnecting to the backend, due to a suspend/resume, or a backend
841 * driver restart. We tear down our blkif structure and recreate it, but
842 * leave the device-layer structures intact so that this is transparent to the
843 * rest of the kernel.
844 */
845static int blkfront_resume(struct xenbus_device *dev)
846{
a1b4b12b 847 struct blkfront_info *info = dev_get_drvdata(&dev->dev);
9f27ee59
JF
848 int err;
849
850 dev_dbg(&dev->dev, "blkfront_resume: %s\n", dev->nodename);
851
852 blkif_free(info, info->connected == BLKIF_STATE_CONNECTED);
853
854 err = talk_to_backend(dev, info);
855 if (info->connected == BLKIF_STATE_SUSPENDED && !err)
856 err = blkif_recover(info);
857
858 return err;
859}
860
861
862/*
863 * Invoked when the backend is finally 'ready' (and has told produced
864 * the details about the physical device - #sectors, size, etc).
865 */
866static void blkfront_connect(struct blkfront_info *info)
867{
868 unsigned long long sectors;
869 unsigned long sector_size;
870 unsigned int binfo;
871 int err;
872
873 if ((info->connected == BLKIF_STATE_CONNECTED) ||
874 (info->connected == BLKIF_STATE_SUSPENDED) )
875 return;
876
877 dev_dbg(&info->xbdev->dev, "%s:%s.\n",
878 __func__, info->xbdev->otherend);
879
880 err = xenbus_gather(XBT_NIL, info->xbdev->otherend,
881 "sectors", "%llu", &sectors,
882 "info", "%u", &binfo,
883 "sector-size", "%lu", &sector_size,
884 NULL);
885 if (err) {
886 xenbus_dev_fatal(info->xbdev, err,
887 "reading backend fields at %s",
888 info->xbdev->otherend);
889 return;
890 }
891
892 err = xenbus_gather(XBT_NIL, info->xbdev->otherend,
893 "feature-barrier", "%lu", &info->feature_barrier,
894 NULL);
895 if (err)
896 info->feature_barrier = 0;
897
9246b5f0 898 err = xlvbd_alloc_gendisk(sectors, info, binfo, sector_size);
9f27ee59
JF
899 if (err) {
900 xenbus_dev_fatal(info->xbdev, err, "xlvbd_add at %s",
901 info->xbdev->otherend);
902 return;
903 }
904
905 xenbus_switch_state(info->xbdev, XenbusStateConnected);
906
907 /* Kick pending requests. */
908 spin_lock_irq(&blkif_io_lock);
909 info->connected = BLKIF_STATE_CONNECTED;
910 kick_pending_request_queues(info);
911 spin_unlock_irq(&blkif_io_lock);
912
913 add_disk(info->gd);
1d78d705
CL
914
915 info->is_ready = 1;
9f27ee59
JF
916}
917
918/**
919 * Handle the change of state of the backend to Closing. We must delete our
920 * device-layer structures now, to ensure that writes are flushed through to
921 * the backend. Once is this done, we can switch to Closed in
922 * acknowledgement.
923 */
924static void blkfront_closing(struct xenbus_device *dev)
925{
a1b4b12b 926 struct blkfront_info *info = dev_get_drvdata(&dev->dev);
9f27ee59
JF
927 unsigned long flags;
928
929 dev_dbg(&dev->dev, "blkfront_closing: %s removed\n", dev->nodename);
930
931 if (info->rq == NULL)
932 goto out;
933
934 spin_lock_irqsave(&blkif_io_lock, flags);
935
9f27ee59
JF
936 /* No more blkif_request(). */
937 blk_stop_queue(info->rq);
938
939 /* No more gnttab callback work. */
940 gnttab_cancel_free_callback(&info->callback);
941 spin_unlock_irqrestore(&blkif_io_lock, flags);
942
943 /* Flush gnttab callback work. Must be done with no locks held. */
944 flush_scheduled_work();
945
946 blk_cleanup_queue(info->rq);
947 info->rq = NULL;
948
31a14400
IC
949 del_gendisk(info->gd);
950
9f27ee59
JF
951 out:
952 xenbus_frontend_closed(dev);
953}
954
955/**
956 * Callback received when the backend's state changes.
957 */
958static void backend_changed(struct xenbus_device *dev,
959 enum xenbus_state backend_state)
960{
a1b4b12b 961 struct blkfront_info *info = dev_get_drvdata(&dev->dev);
9f27ee59
JF
962 struct block_device *bd;
963
964 dev_dbg(&dev->dev, "blkfront:backend_changed.\n");
965
966 switch (backend_state) {
967 case XenbusStateInitialising:
968 case XenbusStateInitWait:
969 case XenbusStateInitialised:
970 case XenbusStateUnknown:
971 case XenbusStateClosed:
972 break;
973
974 case XenbusStateConnected:
975 blkfront_connect(info);
976 break;
977
978 case XenbusStateClosing:
28afea5b
IC
979 if (info->gd == NULL) {
980 xenbus_frontend_closed(dev);
981 break;
982 }
53f0e8af 983 bd = bdget_disk(info->gd, 0);
9f27ee59
JF
984 if (bd == NULL)
985 xenbus_dev_fatal(dev, -ENODEV, "bdget failed");
986
987 mutex_lock(&bd->bd_mutex);
988 if (info->users > 0)
989 xenbus_dev_error(dev, -EBUSY,
990 "Device in use; refusing to close");
991 else
992 blkfront_closing(dev);
993 mutex_unlock(&bd->bd_mutex);
994 bdput(bd);
995 break;
996 }
997}
998
999static int blkfront_remove(struct xenbus_device *dev)
1000{
a1b4b12b 1001 struct blkfront_info *info = dev_get_drvdata(&dev->dev);
9f27ee59
JF
1002
1003 dev_dbg(&dev->dev, "blkfront_remove: %s removed\n", dev->nodename);
1004
1005 blkif_free(info, 0);
1006
1007 kfree(info);
1008
1009 return 0;
1010}
1011
1d78d705
CL
1012static int blkfront_is_ready(struct xenbus_device *dev)
1013{
a1b4b12b 1014 struct blkfront_info *info = dev_get_drvdata(&dev->dev);
1d78d705
CL
1015
1016 return info->is_ready;
1017}
1018
a63c848b 1019static int blkif_open(struct block_device *bdev, fmode_t mode)
9f27ee59 1020{
a63c848b 1021 struct blkfront_info *info = bdev->bd_disk->private_data;
6e9624b8
AB
1022
1023 lock_kernel();
9f27ee59 1024 info->users++;
6e9624b8
AB
1025 unlock_kernel();
1026
9f27ee59
JF
1027 return 0;
1028}
1029
a63c848b 1030static int blkif_release(struct gendisk *disk, fmode_t mode)
9f27ee59 1031{
a63c848b 1032 struct blkfront_info *info = disk->private_data;
6e9624b8 1033 lock_kernel();
9f27ee59
JF
1034 info->users--;
1035 if (info->users == 0) {
1036 /* Check whether we have been instructed to close. We will
1037 have ignored this request initially, as the device was
1038 still mounted. */
1039 struct xenbus_device *dev = info->xbdev;
1040 enum xenbus_state state = xenbus_read_driver_state(dev->otherend);
1041
04c06350 1042 if (state == XenbusStateClosing && info->is_ready)
9f27ee59
JF
1043 blkfront_closing(dev);
1044 }
6e9624b8 1045 unlock_kernel();
9f27ee59
JF
1046 return 0;
1047}
1048
83d5cde4 1049static const struct block_device_operations xlvbd_block_fops =
9f27ee59
JF
1050{
1051 .owner = THIS_MODULE,
a63c848b
AV
1052 .open = blkif_open,
1053 .release = blkif_release,
597592d9 1054 .getgeo = blkif_getgeo,
8a6cfeb6 1055 .ioctl = blkif_ioctl,
9f27ee59
JF
1056};
1057
1058
ec9c42ec 1059static const struct xenbus_device_id blkfront_ids[] = {
9f27ee59
JF
1060 { "vbd" },
1061 { "" }
1062};
1063
1064static struct xenbus_driver blkfront = {
1065 .name = "vbd",
1066 .owner = THIS_MODULE,
1067 .ids = blkfront_ids,
1068 .probe = blkfront_probe,
1069 .remove = blkfront_remove,
1070 .resume = blkfront_resume,
1071 .otherend_changed = backend_changed,
1d78d705 1072 .is_ready = blkfront_is_ready,
9f27ee59
JF
1073};
1074
1075static int __init xlblk_init(void)
1076{
6e833587 1077 if (!xen_domain())
9f27ee59
JF
1078 return -ENODEV;
1079
1080 if (register_blkdev(XENVBD_MAJOR, DEV_NAME)) {
1081 printk(KERN_WARNING "xen_blk: can't get major %d with name %s\n",
1082 XENVBD_MAJOR, DEV_NAME);
1083 return -ENODEV;
1084 }
1085
1086 return xenbus_register_frontend(&blkfront);
1087}
1088module_init(xlblk_init);
1089
1090
5a60d0cd 1091static void __exit xlblk_exit(void)
9f27ee59
JF
1092{
1093 return xenbus_unregister_driver(&blkfront);
1094}
1095module_exit(xlblk_exit);
1096
1097MODULE_DESCRIPTION("Xen virtual block device frontend");
1098MODULE_LICENSE("GPL");
1099MODULE_ALIAS_BLOCKDEV_MAJOR(XENVBD_MAJOR);
d2f0c52b 1100MODULE_ALIAS("xen:vbd");
4f93f09b 1101MODULE_ALIAS("xenblk");