]> git.proxmox.com Git - mirror_ubuntu-zesty-kernel.git/blame - drivers/block/xen-blkfront.c
block: add a bi_error field to struct bio
[mirror_ubuntu-zesty-kernel.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>
2a48fc0a 44#include <linux/mutex.h>
9e973e64 45#include <linux/scatterlist.h>
34ae2e47 46#include <linux/bitmap.h>
155b7edb 47#include <linux/list.h>
9f27ee59 48
1ccbf534 49#include <xen/xen.h>
9f27ee59
JF
50#include <xen/xenbus.h>
51#include <xen/grant_table.h>
52#include <xen/events.h>
53#include <xen/page.h>
c1c5413a 54#include <xen/platform_pci.h>
9f27ee59
JF
55
56#include <xen/interface/grant_table.h>
57#include <xen/interface/io/blkif.h>
3e334239 58#include <xen/interface/io/protocols.h>
9f27ee59
JF
59
60#include <asm/xen/hypervisor.h>
61
62enum blkif_state {
63 BLKIF_STATE_DISCONNECTED,
64 BLKIF_STATE_CONNECTED,
65 BLKIF_STATE_SUSPENDED,
66};
67
0a8704a5
RPM
68struct grant {
69 grant_ref_t gref;
70 unsigned long pfn;
155b7edb 71 struct list_head node;
0a8704a5
RPM
72};
73
9f27ee59
JF
74struct blk_shadow {
75 struct blkif_request req;
a945b980 76 struct request *request;
402b27f9
RPM
77 struct grant **grants_used;
78 struct grant **indirect_grants;
b7649158 79 struct scatterlist *sg;
402b27f9
RPM
80};
81
82struct split_bio {
83 struct bio *bio;
84 atomic_t pending;
9f27ee59
JF
85};
86
2a48fc0a 87static DEFINE_MUTEX(blkfront_mutex);
83d5cde4 88static const struct block_device_operations xlvbd_block_fops;
9f27ee59 89
402b27f9
RPM
90/*
91 * Maximum number of segments in indirect requests, the actual value used by
92 * the frontend driver is the minimum of this value and the value provided
93 * by the backend driver.
94 */
95
96static unsigned int xen_blkif_max_segments = 32;
2d5dc3ba
KRW
97module_param_named(max, xen_blkif_max_segments, int, S_IRUGO);
98MODULE_PARM_DESC(max, "Maximum amount of segments in indirect requests (default is 32)");
402b27f9 99
86839c56
BL
100/*
101 * Maximum order of pages to be used for the shared ring between front and
102 * backend, 4KB page granularity is used.
103 */
104static unsigned int xen_blkif_max_ring_order;
105module_param_named(max_ring_page_order, xen_blkif_max_ring_order, int, S_IRUGO);
106MODULE_PARM_DESC(max_ring_page_order, "Maximum order of pages to be used for the shared ring");
107
108#define BLK_RING_SIZE(info) __CONST_RING_SIZE(blkif, PAGE_SIZE * (info)->nr_ring_pages)
109#define BLK_MAX_RING_SIZE __CONST_RING_SIZE(blkif, PAGE_SIZE * XENBUS_MAX_RING_PAGES)
110/*
111 * ring-ref%i i=(-1UL) would take 11 characters + 'ring-ref' is 8, so 19
112 * characters are enough. Define to 20 to keep consist with backend.
113 */
114#define RINGREF_NAME_LEN (20)
9f27ee59
JF
115
116/*
117 * We have one of these per vbd, whether ide, scsi or 'other'. They
118 * hang in private_data off the gendisk structure. We may end up
119 * putting all kinds of interesting stuff here :-)
120 */
121struct blkfront_info
122{
3467811e 123 spinlock_t io_lock;
b70f5fa0 124 struct mutex mutex;
9f27ee59 125 struct xenbus_device *xbdev;
9f27ee59
JF
126 struct gendisk *gd;
127 int vdevice;
128 blkif_vdev_t handle;
129 enum blkif_state connected;
86839c56
BL
130 int ring_ref[XENBUS_MAX_RING_PAGES];
131 unsigned int nr_ring_pages;
9f27ee59
JF
132 struct blkif_front_ring ring;
133 unsigned int evtchn, irq;
134 struct request_queue *rq;
135 struct work_struct work;
136 struct gnttab_free_callback callback;
86839c56 137 struct blk_shadow shadow[BLK_MAX_RING_SIZE];
bfe11d6d
RPM
138 struct list_head grants;
139 struct list_head indirect_pages;
0a8704a5 140 unsigned int persistent_gnts_c;
9f27ee59 141 unsigned long shadow_free;
4913efe4 142 unsigned int feature_flush;
5ea42986
KRW
143 unsigned int feature_discard:1;
144 unsigned int feature_secdiscard:1;
ed30bf31
LD
145 unsigned int discard_granularity;
146 unsigned int discard_alignment;
0a8704a5 147 unsigned int feature_persistent:1;
402b27f9 148 unsigned int max_indirect_segments;
1d78d705 149 int is_ready;
9f27ee59
JF
150};
151
0e345826
JB
152static unsigned int nr_minors;
153static unsigned long *minors;
154static DEFINE_SPINLOCK(minor_lock);
155
9f27ee59
JF
156#define GRANT_INVALID_REF 0
157
158#define PARTS_PER_DISK 16
9246b5f0 159#define PARTS_PER_EXT_DISK 256
9f27ee59
JF
160
161#define BLKIF_MAJOR(dev) ((dev)>>8)
162#define BLKIF_MINOR(dev) ((dev) & 0xff)
163
9246b5f0
CL
164#define EXT_SHIFT 28
165#define EXTENDED (1<<EXT_SHIFT)
166#define VDEV_IS_EXTENDED(dev) ((dev)&(EXTENDED))
167#define BLKIF_MINOR_EXT(dev) ((dev)&(~EXTENDED))
c80a4209
SS
168#define EMULATED_HD_DISK_MINOR_OFFSET (0)
169#define EMULATED_HD_DISK_NAME_OFFSET (EMULATED_HD_DISK_MINOR_OFFSET / 256)
196cfe2a
SB
170#define EMULATED_SD_DISK_MINOR_OFFSET (0)
171#define EMULATED_SD_DISK_NAME_OFFSET (EMULATED_SD_DISK_MINOR_OFFSET / 256)
9f27ee59 172
9246b5f0 173#define DEV_NAME "xvd" /* name in /dev */
9f27ee59 174
402b27f9 175#define SEGS_PER_INDIRECT_FRAME \
80bfa2f6 176 (PAGE_SIZE/sizeof(struct blkif_request_segment))
402b27f9
RPM
177#define INDIRECT_GREFS(_segs) \
178 ((_segs + SEGS_PER_INDIRECT_FRAME - 1)/SEGS_PER_INDIRECT_FRAME)
179
180static int blkfront_setup_indirect(struct blkfront_info *info);
181
9f27ee59
JF
182static int get_id_from_freelist(struct blkfront_info *info)
183{
184 unsigned long free = info->shadow_free;
86839c56 185 BUG_ON(free >= BLK_RING_SIZE(info));
97e36834
KRW
186 info->shadow_free = info->shadow[free].req.u.rw.id;
187 info->shadow[free].req.u.rw.id = 0x0fffffee; /* debug */
9f27ee59
JF
188 return free;
189}
190
6878c32e 191static int add_id_to_freelist(struct blkfront_info *info,
9f27ee59
JF
192 unsigned long id)
193{
6878c32e
KRW
194 if (info->shadow[id].req.u.rw.id != id)
195 return -EINVAL;
196 if (info->shadow[id].request == NULL)
197 return -EINVAL;
97e36834 198 info->shadow[id].req.u.rw.id = info->shadow_free;
a945b980 199 info->shadow[id].request = NULL;
9f27ee59 200 info->shadow_free = id;
6878c32e 201 return 0;
9f27ee59
JF
202}
203
9c1e050c
RPM
204static int fill_grant_buffer(struct blkfront_info *info, int num)
205{
206 struct page *granted_page;
207 struct grant *gnt_list_entry, *n;
208 int i = 0;
209
210 while(i < num) {
211 gnt_list_entry = kzalloc(sizeof(struct grant), GFP_NOIO);
212 if (!gnt_list_entry)
213 goto out_of_memory;
214
bfe11d6d
RPM
215 if (info->feature_persistent) {
216 granted_page = alloc_page(GFP_NOIO);
217 if (!granted_page) {
218 kfree(gnt_list_entry);
219 goto out_of_memory;
220 }
221 gnt_list_entry->pfn = page_to_pfn(granted_page);
9c1e050c
RPM
222 }
223
9c1e050c 224 gnt_list_entry->gref = GRANT_INVALID_REF;
bfe11d6d 225 list_add(&gnt_list_entry->node, &info->grants);
9c1e050c
RPM
226 i++;
227 }
228
229 return 0;
230
231out_of_memory:
232 list_for_each_entry_safe(gnt_list_entry, n,
bfe11d6d 233 &info->grants, node) {
9c1e050c 234 list_del(&gnt_list_entry->node);
bfe11d6d
RPM
235 if (info->feature_persistent)
236 __free_page(pfn_to_page(gnt_list_entry->pfn));
9c1e050c
RPM
237 kfree(gnt_list_entry);
238 i--;
239 }
240 BUG_ON(i != 0);
241 return -ENOMEM;
242}
243
244static struct grant *get_grant(grant_ref_t *gref_head,
bfe11d6d 245 unsigned long pfn,
9c1e050c
RPM
246 struct blkfront_info *info)
247{
248 struct grant *gnt_list_entry;
249 unsigned long buffer_mfn;
250
bfe11d6d
RPM
251 BUG_ON(list_empty(&info->grants));
252 gnt_list_entry = list_first_entry(&info->grants, struct grant,
9c1e050c
RPM
253 node);
254 list_del(&gnt_list_entry->node);
255
256 if (gnt_list_entry->gref != GRANT_INVALID_REF) {
257 info->persistent_gnts_c--;
258 return gnt_list_entry;
259 }
260
261 /* Assign a gref to this page */
262 gnt_list_entry->gref = gnttab_claim_grant_reference(gref_head);
263 BUG_ON(gnt_list_entry->gref == -ENOSPC);
bfe11d6d
RPM
264 if (!info->feature_persistent) {
265 BUG_ON(!pfn);
266 gnt_list_entry->pfn = pfn;
267 }
9c1e050c
RPM
268 buffer_mfn = pfn_to_mfn(gnt_list_entry->pfn);
269 gnttab_grant_foreign_access_ref(gnt_list_entry->gref,
270 info->xbdev->otherend_id,
271 buffer_mfn, 0);
272 return gnt_list_entry;
273}
274
6878c32e
KRW
275static const char *op_name(int op)
276{
277 static const char *const names[] = {
278 [BLKIF_OP_READ] = "read",
279 [BLKIF_OP_WRITE] = "write",
280 [BLKIF_OP_WRITE_BARRIER] = "barrier",
281 [BLKIF_OP_FLUSH_DISKCACHE] = "flush",
282 [BLKIF_OP_DISCARD] = "discard" };
283
284 if (op < 0 || op >= ARRAY_SIZE(names))
285 return "unknown";
286
287 if (!names[op])
288 return "reserved";
289
290 return names[op];
291}
0e345826
JB
292static int xlbd_reserve_minors(unsigned int minor, unsigned int nr)
293{
294 unsigned int end = minor + nr;
295 int rc;
296
297 if (end > nr_minors) {
298 unsigned long *bitmap, *old;
299
f094148a 300 bitmap = kcalloc(BITS_TO_LONGS(end), sizeof(*bitmap),
0e345826
JB
301 GFP_KERNEL);
302 if (bitmap == NULL)
303 return -ENOMEM;
304
305 spin_lock(&minor_lock);
306 if (end > nr_minors) {
307 old = minors;
308 memcpy(bitmap, minors,
309 BITS_TO_LONGS(nr_minors) * sizeof(*bitmap));
310 minors = bitmap;
311 nr_minors = BITS_TO_LONGS(end) * BITS_PER_LONG;
312 } else
313 old = bitmap;
314 spin_unlock(&minor_lock);
315 kfree(old);
316 }
317
318 spin_lock(&minor_lock);
319 if (find_next_bit(minors, end, minor) >= end) {
34ae2e47 320 bitmap_set(minors, minor, nr);
0e345826
JB
321 rc = 0;
322 } else
323 rc = -EBUSY;
324 spin_unlock(&minor_lock);
325
326 return rc;
327}
328
329static void xlbd_release_minors(unsigned int minor, unsigned int nr)
330{
331 unsigned int end = minor + nr;
332
333 BUG_ON(end > nr_minors);
334 spin_lock(&minor_lock);
34ae2e47 335 bitmap_clear(minors, minor, nr);
0e345826
JB
336 spin_unlock(&minor_lock);
337}
338
9f27ee59
JF
339static void blkif_restart_queue_callback(void *arg)
340{
341 struct blkfront_info *info = (struct blkfront_info *)arg;
342 schedule_work(&info->work);
343}
344
afe42d7d 345static int blkif_getgeo(struct block_device *bd, struct hd_geometry *hg)
597592d9
IC
346{
347 /* We don't have real geometry info, but let's at least return
348 values consistent with the size of the device */
349 sector_t nsect = get_capacity(bd->bd_disk);
350 sector_t cylinders = nsect;
351
352 hg->heads = 0xff;
353 hg->sectors = 0x3f;
354 sector_div(cylinders, hg->heads * hg->sectors);
355 hg->cylinders = cylinders;
356 if ((sector_t)(hg->cylinders + 1) * hg->heads * hg->sectors < nsect)
357 hg->cylinders = 0xffff;
358 return 0;
359}
360
a63c848b 361static int blkif_ioctl(struct block_device *bdev, fmode_t mode,
62aa0054 362 unsigned command, unsigned long argument)
440a01a7 363{
a63c848b 364 struct blkfront_info *info = bdev->bd_disk->private_data;
440a01a7
CL
365 int i;
366
367 dev_dbg(&info->xbdev->dev, "command: 0x%x, argument: 0x%lx\n",
368 command, (long)argument);
369
370 switch (command) {
371 case CDROMMULTISESSION:
372 dev_dbg(&info->xbdev->dev, "FIXME: support multisession CDs later\n");
373 for (i = 0; i < sizeof(struct cdrom_multisession); i++)
374 if (put_user(0, (char __user *)(argument + i)))
375 return -EFAULT;
376 return 0;
377
378 case CDROM_GET_CAPABILITY: {
379 struct gendisk *gd = info->gd;
380 if (gd->flags & GENHD_FL_CD)
381 return 0;
382 return -EINVAL;
383 }
384
385 default:
386 /*printk(KERN_ALERT "ioctl %08x not supported by Xen blkdev\n",
387 command);*/
388 return -EINVAL; /* same return as native Linux */
389 }
390
391 return 0;
392}
393
9f27ee59 394/*
c64e38ea 395 * Generate a Xen blkfront IO request from a blk layer request. Reads
edf6ef59 396 * and writes are handled as expected.
9f27ee59 397 *
c64e38ea 398 * @req: a request struct
9f27ee59
JF
399 */
400static int blkif_queue_request(struct request *req)
401{
402 struct blkfront_info *info = req->rq_disk->private_data;
9f27ee59 403 struct blkif_request *ring_req;
9f27ee59
JF
404 unsigned long id;
405 unsigned int fsect, lsect;
402b27f9 406 int i, ref, n;
80bfa2f6 407 struct blkif_request_segment *segments = NULL;
0a8704a5
RPM
408
409 /*
410 * Used to store if we are able to queue the request by just using
411 * existing persistent grants, or if we have to get new grants,
412 * as there are not sufficiently many free.
413 */
414 bool new_persistent_gnts;
9f27ee59 415 grant_ref_t gref_head;
0a8704a5 416 struct grant *gnt_list_entry = NULL;
9e973e64 417 struct scatterlist *sg;
402b27f9 418 int nseg, max_grefs;
9f27ee59
JF
419
420 if (unlikely(info->connected != BLKIF_STATE_CONNECTED))
421 return 1;
422
c47206e2
RPM
423 max_grefs = req->nr_phys_segments;
424 if (max_grefs > BLKIF_MAX_SEGMENTS_PER_REQUEST)
425 /*
426 * If we are using indirect segments we need to account
427 * for the indirect grefs used in the request.
428 */
429 max_grefs += INDIRECT_GREFS(req->nr_phys_segments);
402b27f9
RPM
430
431 /* Check if we have enough grants to allocate a requests */
432 if (info->persistent_gnts_c < max_grefs) {
0a8704a5
RPM
433 new_persistent_gnts = 1;
434 if (gnttab_alloc_grant_references(
402b27f9 435 max_grefs - info->persistent_gnts_c,
0a8704a5
RPM
436 &gref_head) < 0) {
437 gnttab_request_free_callback(
438 &info->callback,
439 blkif_restart_queue_callback,
440 info,
402b27f9 441 max_grefs);
0a8704a5
RPM
442 return 1;
443 }
444 } else
445 new_persistent_gnts = 0;
9f27ee59
JF
446
447 /* Fill out a communications ring structure. */
448 ring_req = RING_GET_REQUEST(&info->ring, info->ring.req_prod_pvt);
449 id = get_id_from_freelist(info);
a945b980 450 info->shadow[id].request = req;
9f27ee59 451
5ea42986 452 if (unlikely(req->cmd_flags & (REQ_DISCARD | REQ_SECURE))) {
ed30bf31 453 ring_req->operation = BLKIF_OP_DISCARD;
ed30bf31 454 ring_req->u.discard.nr_sectors = blk_rq_sectors(req);
402b27f9
RPM
455 ring_req->u.discard.id = id;
456 ring_req->u.discard.sector_number = (blkif_sector_t)blk_rq_pos(req);
5ea42986
KRW
457 if ((req->cmd_flags & REQ_SECURE) && info->feature_secdiscard)
458 ring_req->u.discard.flag = BLKIF_DISCARD_SECURE;
459 else
460 ring_req->u.discard.flag = 0;
ed30bf31 461 } else {
402b27f9
RPM
462 BUG_ON(info->max_indirect_segments == 0 &&
463 req->nr_phys_segments > BLKIF_MAX_SEGMENTS_PER_REQUEST);
464 BUG_ON(info->max_indirect_segments &&
465 req->nr_phys_segments > info->max_indirect_segments);
b7649158 466 nseg = blk_rq_map_sg(req->q, req, info->shadow[id].sg);
402b27f9
RPM
467 ring_req->u.rw.id = id;
468 if (nseg > BLKIF_MAX_SEGMENTS_PER_REQUEST) {
469 /*
470 * The indirect operation can only be a BLKIF_OP_READ or
471 * BLKIF_OP_WRITE
472 */
473 BUG_ON(req->cmd_flags & (REQ_FLUSH | REQ_FUA));
474 ring_req->operation = BLKIF_OP_INDIRECT;
475 ring_req->u.indirect.indirect_op = rq_data_dir(req) ?
476 BLKIF_OP_WRITE : BLKIF_OP_READ;
477 ring_req->u.indirect.sector_number = (blkif_sector_t)blk_rq_pos(req);
478 ring_req->u.indirect.handle = info->handle;
479 ring_req->u.indirect.nr_segments = nseg;
480 } else {
481 ring_req->u.rw.sector_number = (blkif_sector_t)blk_rq_pos(req);
482 ring_req->u.rw.handle = info->handle;
483 ring_req->operation = rq_data_dir(req) ?
484 BLKIF_OP_WRITE : BLKIF_OP_READ;
485 if (req->cmd_flags & (REQ_FLUSH | REQ_FUA)) {
486 /*
487 * Ideally we can do an unordered flush-to-disk. In case the
488 * backend onlysupports barriers, use that. A barrier request
489 * a superset of FUA, so we can implement it the same
490 * way. (It's also a FLUSH+FUA, since it is
491 * guaranteed ordered WRT previous writes.)
492 */
fdf9b965
VK
493 switch (info->feature_flush &
494 ((REQ_FLUSH|REQ_FUA))) {
495 case REQ_FLUSH|REQ_FUA:
496 ring_req->operation =
497 BLKIF_OP_WRITE_BARRIER;
498 break;
499 case REQ_FLUSH:
500 ring_req->operation =
501 BLKIF_OP_FLUSH_DISKCACHE;
502 break;
503 default:
504 ring_req->operation = 0;
505 }
402b27f9
RPM
506 }
507 ring_req->u.rw.nr_segments = nseg;
508 }
b7649158 509 for_each_sg(info->shadow[id].sg, sg, nseg, i) {
ed30bf31
LD
510 fsect = sg->offset >> 9;
511 lsect = fsect + (sg->length >> 9) - 1;
6c92e699 512
402b27f9
RPM
513 if ((ring_req->operation == BLKIF_OP_INDIRECT) &&
514 (i % SEGS_PER_INDIRECT_FRAME == 0)) {
427bfe07 515 unsigned long uninitialized_var(pfn);
bfe11d6d 516
402b27f9
RPM
517 if (segments)
518 kunmap_atomic(segments);
519
520 n = i / SEGS_PER_INDIRECT_FRAME;
bfe11d6d
RPM
521 if (!info->feature_persistent) {
522 struct page *indirect_page;
523
524 /* Fetch a pre-allocated page to use for indirect grefs */
525 BUG_ON(list_empty(&info->indirect_pages));
526 indirect_page = list_first_entry(&info->indirect_pages,
527 struct page, lru);
528 list_del(&indirect_page->lru);
529 pfn = page_to_pfn(indirect_page);
530 }
531 gnt_list_entry = get_grant(&gref_head, pfn, info);
402b27f9
RPM
532 info->shadow[id].indirect_grants[n] = gnt_list_entry;
533 segments = kmap_atomic(pfn_to_page(gnt_list_entry->pfn));
534 ring_req->u.indirect.indirect_grefs[n] = gnt_list_entry->gref;
535 }
536
bfe11d6d 537 gnt_list_entry = get_grant(&gref_head, page_to_pfn(sg_page(sg)), info);
9c1e050c 538 ref = gnt_list_entry->gref;
0a8704a5
RPM
539
540 info->shadow[id].grants_used[i] = gnt_list_entry;
541
bfe11d6d 542 if (rq_data_dir(req) && info->feature_persistent) {
0a8704a5
RPM
543 char *bvec_data;
544 void *shared_data;
545
546 BUG_ON(sg->offset + sg->length > PAGE_SIZE);
547
402b27f9 548 shared_data = kmap_atomic(pfn_to_page(gnt_list_entry->pfn));
0a8704a5
RPM
549 bvec_data = kmap_atomic(sg_page(sg));
550
551 /*
552 * this does not wipe data stored outside the
553 * range sg->offset..sg->offset+sg->length.
554 * Therefore, blkback *could* see data from
555 * previous requests. This is OK as long as
556 * persistent grants are shared with just one
557 * domain. It may need refactoring if this
558 * changes
559 */
560 memcpy(shared_data + sg->offset,
561 bvec_data + sg->offset,
562 sg->length);
563
564 kunmap_atomic(bvec_data);
565 kunmap_atomic(shared_data);
566 }
402b27f9
RPM
567 if (ring_req->operation != BLKIF_OP_INDIRECT) {
568 ring_req->u.rw.seg[i] =
569 (struct blkif_request_segment) {
570 .gref = ref,
571 .first_sect = fsect,
572 .last_sect = lsect };
573 } else {
574 n = i % SEGS_PER_INDIRECT_FRAME;
575 segments[n] =
80bfa2f6 576 (struct blkif_request_segment) {
402b27f9
RPM
577 .gref = ref,
578 .first_sect = fsect,
579 .last_sect = lsect };
580 }
ed30bf31 581 }
402b27f9
RPM
582 if (segments)
583 kunmap_atomic(segments);
9f27ee59
JF
584 }
585
586 info->ring.req_prod_pvt++;
587
588 /* Keep a private copy so we can reissue requests when recovering. */
589 info->shadow[id].req = *ring_req;
590
0a8704a5
RPM
591 if (new_persistent_gnts)
592 gnttab_free_grant_references(gref_head);
9f27ee59
JF
593
594 return 0;
595}
596
597
598static inline void flush_requests(struct blkfront_info *info)
599{
600 int notify;
601
602 RING_PUSH_REQUESTS_AND_CHECK_NOTIFY(&info->ring, notify);
603
604 if (notify)
605 notify_remote_via_irq(info->irq);
606}
607
ad42d391
VK
608static inline bool blkif_request_flush_invalid(struct request *req,
609 struct blkfront_info *info)
0f1ca65e
AA
610{
611 return ((req->cmd_type != REQ_TYPE_FS) ||
ad42d391
VK
612 ((req->cmd_flags & REQ_FLUSH) &&
613 !(info->feature_flush & REQ_FLUSH)) ||
614 ((req->cmd_flags & REQ_FUA) &&
615 !(info->feature_flush & REQ_FUA)));
0f1ca65e
AA
616}
617
9f27ee59
JF
618/*
619 * do_blkif_request
620 * read a block; request is in a request queue
621 */
165125e1 622static void do_blkif_request(struct request_queue *rq)
9f27ee59
JF
623{
624 struct blkfront_info *info = NULL;
625 struct request *req;
626 int queued;
627
628 pr_debug("Entered do_blkif_request\n");
629
630 queued = 0;
631
9934c8c0 632 while ((req = blk_peek_request(rq)) != NULL) {
9f27ee59 633 info = req->rq_disk->private_data;
9f27ee59
JF
634
635 if (RING_FULL(&info->ring))
636 goto wait;
637
9934c8c0 638 blk_start_request(req);
296b2f6a 639
ad42d391
VK
640 if (blkif_request_flush_invalid(req, info)) {
641 __blk_end_request_all(req, -EOPNOTSUPP);
296b2f6a
TH
642 continue;
643 }
644
9f27ee59 645 pr_debug("do_blk_req %p: cmd %p, sec %lx, "
b4f42e28 646 "(%u/%u) [%s]\n",
83096ebf
TH
647 req, req->cmd, (unsigned long)blk_rq_pos(req),
648 blk_rq_cur_sectors(req), blk_rq_sectors(req),
b4f42e28 649 rq_data_dir(req) ? "write" : "read");
9f27ee59 650
9f27ee59
JF
651 if (blkif_queue_request(req)) {
652 blk_requeue_request(rq, req);
653wait:
654 /* Avoid pointless unplugs. */
655 blk_stop_queue(rq);
656 break;
657 }
658
659 queued++;
660 }
661
662 if (queued != 0)
663 flush_requests(info);
664}
665
402b27f9 666static int xlvbd_init_blk_queue(struct gendisk *gd, u16 sector_size,
7c4d7d71 667 unsigned int physical_sector_size,
402b27f9 668 unsigned int segments)
9f27ee59 669{
165125e1 670 struct request_queue *rq;
ed30bf31 671 struct blkfront_info *info = gd->private_data;
9f27ee59 672
3467811e 673 rq = blk_init_queue(do_blkif_request, &info->io_lock);
9f27ee59
JF
674 if (rq == NULL)
675 return -1;
676
66d352e1 677 queue_flag_set_unlocked(QUEUE_FLAG_VIRT, rq);
9f27ee59 678
ed30bf31
LD
679 if (info->feature_discard) {
680 queue_flag_set_unlocked(QUEUE_FLAG_DISCARD, rq);
681 blk_queue_max_discard_sectors(rq, get_capacity(gd));
682 rq->limits.discard_granularity = info->discard_granularity;
683 rq->limits.discard_alignment = info->discard_alignment;
5ea42986
KRW
684 if (info->feature_secdiscard)
685 queue_flag_set_unlocked(QUEUE_FLAG_SECDISCARD, rq);
ed30bf31
LD
686 }
687
9f27ee59 688 /* Hard sector size and max sectors impersonate the equiv. hardware. */
e1defc4f 689 blk_queue_logical_block_size(rq, sector_size);
7c4d7d71 690 blk_queue_physical_block_size(rq, physical_sector_size);
294caaf2 691 blk_queue_max_hw_sectors(rq, (segments * PAGE_SIZE) / 512);
9f27ee59
JF
692
693 /* Each segment in a request is up to an aligned page in size. */
694 blk_queue_segment_boundary(rq, PAGE_SIZE - 1);
695 blk_queue_max_segment_size(rq, PAGE_SIZE);
696
697 /* Ensure a merged request will fit in a single I/O ring slot. */
402b27f9 698 blk_queue_max_segments(rq, segments);
9f27ee59
JF
699
700 /* Make sure buffer addresses are sector-aligned. */
701 blk_queue_dma_alignment(rq, 511);
702
1c91fe1a
IC
703 /* Make sure we don't use bounce buffers. */
704 blk_queue_bounce_limit(rq, BLK_BOUNCE_ANY);
705
9f27ee59
JF
706 gd->queue = rq;
707
708 return 0;
709}
710
fdf9b965
VK
711static const char *flush_info(unsigned int feature_flush)
712{
713 switch (feature_flush & ((REQ_FLUSH | REQ_FUA))) {
714 case REQ_FLUSH|REQ_FUA:
715 return "barrier: enabled;";
716 case REQ_FLUSH:
717 return "flush diskcache: enabled;";
718 default:
719 return "barrier or flush: disabled;";
720 }
721}
9f27ee59 722
4913efe4 723static void xlvbd_flush(struct blkfront_info *info)
9f27ee59 724{
4913efe4 725 blk_queue_flush(info->rq, info->feature_flush);
fdf9b965
VK
726 pr_info("blkfront: %s: %s %s %s %s %s\n",
727 info->gd->disk_name, flush_info(info->feature_flush),
728 "persistent grants:", info->feature_persistent ?
729 "enabled;" : "disabled;", "indirect descriptors:",
730 info->max_indirect_segments ? "enabled;" : "disabled;");
9f27ee59
JF
731}
732
c80a4209
SS
733static int xen_translate_vdev(int vdevice, int *minor, unsigned int *offset)
734{
735 int major;
736 major = BLKIF_MAJOR(vdevice);
737 *minor = BLKIF_MINOR(vdevice);
738 switch (major) {
739 case XEN_IDE0_MAJOR:
740 *offset = (*minor / 64) + EMULATED_HD_DISK_NAME_OFFSET;
741 *minor = ((*minor / 64) * PARTS_PER_DISK) +
742 EMULATED_HD_DISK_MINOR_OFFSET;
743 break;
744 case XEN_IDE1_MAJOR:
745 *offset = (*minor / 64) + 2 + EMULATED_HD_DISK_NAME_OFFSET;
746 *minor = (((*minor / 64) + 2) * PARTS_PER_DISK) +
747 EMULATED_HD_DISK_MINOR_OFFSET;
748 break;
749 case XEN_SCSI_DISK0_MAJOR:
750 *offset = (*minor / PARTS_PER_DISK) + EMULATED_SD_DISK_NAME_OFFSET;
751 *minor = *minor + EMULATED_SD_DISK_MINOR_OFFSET;
752 break;
753 case XEN_SCSI_DISK1_MAJOR:
754 case XEN_SCSI_DISK2_MAJOR:
755 case XEN_SCSI_DISK3_MAJOR:
756 case XEN_SCSI_DISK4_MAJOR:
757 case XEN_SCSI_DISK5_MAJOR:
758 case XEN_SCSI_DISK6_MAJOR:
759 case XEN_SCSI_DISK7_MAJOR:
760 *offset = (*minor / PARTS_PER_DISK) +
761 ((major - XEN_SCSI_DISK1_MAJOR + 1) * 16) +
762 EMULATED_SD_DISK_NAME_OFFSET;
763 *minor = *minor +
764 ((major - XEN_SCSI_DISK1_MAJOR + 1) * 16 * PARTS_PER_DISK) +
765 EMULATED_SD_DISK_MINOR_OFFSET;
766 break;
767 case XEN_SCSI_DISK8_MAJOR:
768 case XEN_SCSI_DISK9_MAJOR:
769 case XEN_SCSI_DISK10_MAJOR:
770 case XEN_SCSI_DISK11_MAJOR:
771 case XEN_SCSI_DISK12_MAJOR:
772 case XEN_SCSI_DISK13_MAJOR:
773 case XEN_SCSI_DISK14_MAJOR:
774 case XEN_SCSI_DISK15_MAJOR:
775 *offset = (*minor / PARTS_PER_DISK) +
776 ((major - XEN_SCSI_DISK8_MAJOR + 8) * 16) +
777 EMULATED_SD_DISK_NAME_OFFSET;
778 *minor = *minor +
779 ((major - XEN_SCSI_DISK8_MAJOR + 8) * 16 * PARTS_PER_DISK) +
780 EMULATED_SD_DISK_MINOR_OFFSET;
781 break;
782 case XENVBD_MAJOR:
783 *offset = *minor / PARTS_PER_DISK;
784 break;
785 default:
786 printk(KERN_WARNING "blkfront: your disk configuration is "
787 "incorrect, please use an xvd device instead\n");
788 return -ENODEV;
789 }
790 return 0;
791}
9f27ee59 792
e77c78c0
JB
793static char *encode_disk_name(char *ptr, unsigned int n)
794{
795 if (n >= 26)
796 ptr = encode_disk_name(ptr, n / 26 - 1);
797 *ptr = 'a' + n % 26;
798 return ptr + 1;
799}
800
9246b5f0
CL
801static int xlvbd_alloc_gendisk(blkif_sector_t capacity,
802 struct blkfront_info *info,
7c4d7d71
SB
803 u16 vdisk_info, u16 sector_size,
804 unsigned int physical_sector_size)
9f27ee59
JF
805{
806 struct gendisk *gd;
807 int nr_minors = 1;
c80a4209 808 int err;
9246b5f0
CL
809 unsigned int offset;
810 int minor;
811 int nr_parts;
e77c78c0 812 char *ptr;
9f27ee59
JF
813
814 BUG_ON(info->gd != NULL);
815 BUG_ON(info->rq != NULL);
816
9246b5f0
CL
817 if ((info->vdevice>>EXT_SHIFT) > 1) {
818 /* this is above the extended range; something is wrong */
819 printk(KERN_WARNING "blkfront: vdevice 0x%x is above the extended range; ignoring\n", info->vdevice);
820 return -ENODEV;
821 }
822
823 if (!VDEV_IS_EXTENDED(info->vdevice)) {
c80a4209
SS
824 err = xen_translate_vdev(info->vdevice, &minor, &offset);
825 if (err)
826 return err;
827 nr_parts = PARTS_PER_DISK;
9246b5f0
CL
828 } else {
829 minor = BLKIF_MINOR_EXT(info->vdevice);
830 nr_parts = PARTS_PER_EXT_DISK;
c80a4209 831 offset = minor / nr_parts;
89153b5c 832 if (xen_hvm_domain() && offset < EMULATED_HD_DISK_NAME_OFFSET + 4)
c80a4209
SS
833 printk(KERN_WARNING "blkfront: vdevice 0x%x might conflict with "
834 "emulated IDE disks,\n\t choose an xvd device name"
835 "from xvde on\n", info->vdevice);
9246b5f0 836 }
e77c78c0
JB
837 if (minor >> MINORBITS) {
838 pr_warn("blkfront: %#x's minor (%#x) out of range; ignoring\n",
839 info->vdevice, minor);
840 return -ENODEV;
841 }
9246b5f0
CL
842
843 if ((minor % nr_parts) == 0)
844 nr_minors = nr_parts;
9f27ee59 845
0e345826
JB
846 err = xlbd_reserve_minors(minor, nr_minors);
847 if (err)
848 goto out;
849 err = -ENODEV;
850
9f27ee59
JF
851 gd = alloc_disk(nr_minors);
852 if (gd == NULL)
0e345826 853 goto release;
9f27ee59 854
e77c78c0
JB
855 strcpy(gd->disk_name, DEV_NAME);
856 ptr = encode_disk_name(gd->disk_name + sizeof(DEV_NAME) - 1, offset);
857 BUG_ON(ptr >= gd->disk_name + DISK_NAME_LEN);
858 if (nr_minors > 1)
859 *ptr = 0;
860 else
861 snprintf(ptr, gd->disk_name + DISK_NAME_LEN - ptr,
862 "%d", minor & (nr_parts - 1));
9f27ee59
JF
863
864 gd->major = XENVBD_MAJOR;
865 gd->first_minor = minor;
866 gd->fops = &xlvbd_block_fops;
867 gd->private_data = info;
868 gd->driverfs_dev = &(info->xbdev->dev);
869 set_capacity(gd, capacity);
870
7c4d7d71 871 if (xlvbd_init_blk_queue(gd, sector_size, physical_sector_size,
402b27f9
RPM
872 info->max_indirect_segments ? :
873 BLKIF_MAX_SEGMENTS_PER_REQUEST)) {
9f27ee59 874 del_gendisk(gd);
0e345826 875 goto release;
9f27ee59
JF
876 }
877
878 info->rq = gd->queue;
879 info->gd = gd;
880
4913efe4 881 xlvbd_flush(info);
9f27ee59
JF
882
883 if (vdisk_info & VDISK_READONLY)
884 set_disk_ro(gd, 1);
885
886 if (vdisk_info & VDISK_REMOVABLE)
887 gd->flags |= GENHD_FL_REMOVABLE;
888
889 if (vdisk_info & VDISK_CDROM)
890 gd->flags |= GENHD_FL_CD;
891
892 return 0;
893
0e345826
JB
894 release:
895 xlbd_release_minors(minor, nr_minors);
9f27ee59
JF
896 out:
897 return err;
898}
899
a66b5aeb
DS
900static void xlvbd_release_gendisk(struct blkfront_info *info)
901{
902 unsigned int minor, nr_minors;
903 unsigned long flags;
904
905 if (info->rq == NULL)
906 return;
907
3467811e 908 spin_lock_irqsave(&info->io_lock, flags);
a66b5aeb
DS
909
910 /* No more blkif_request(). */
911 blk_stop_queue(info->rq);
912
913 /* No more gnttab callback work. */
914 gnttab_cancel_free_callback(&info->callback);
3467811e 915 spin_unlock_irqrestore(&info->io_lock, flags);
a66b5aeb
DS
916
917 /* Flush gnttab callback work. Must be done with no locks held. */
43829731 918 flush_work(&info->work);
a66b5aeb
DS
919
920 del_gendisk(info->gd);
921
922 minor = info->gd->first_minor;
923 nr_minors = info->gd->minors;
924 xlbd_release_minors(minor, nr_minors);
925
926 blk_cleanup_queue(info->rq);
927 info->rq = NULL;
928
929 put_disk(info->gd);
930 info->gd = NULL;
931}
932
9f27ee59
JF
933static void kick_pending_request_queues(struct blkfront_info *info)
934{
935 if (!RING_FULL(&info->ring)) {
936 /* Re-enable calldowns. */
937 blk_start_queue(info->rq);
938 /* Kick things off immediately. */
939 do_blkif_request(info->rq);
940 }
941}
942
943static void blkif_restart_queue(struct work_struct *work)
944{
945 struct blkfront_info *info = container_of(work, struct blkfront_info, work);
946
3467811e 947 spin_lock_irq(&info->io_lock);
9f27ee59
JF
948 if (info->connected == BLKIF_STATE_CONNECTED)
949 kick_pending_request_queues(info);
3467811e 950 spin_unlock_irq(&info->io_lock);
9f27ee59
JF
951}
952
953static void blkif_free(struct blkfront_info *info, int suspend)
954{
155b7edb
RPM
955 struct grant *persistent_gnt;
956 struct grant *n;
402b27f9 957 int i, j, segs;
0a8704a5 958
9f27ee59 959 /* Prevent new requests being issued until we fix things up. */
3467811e 960 spin_lock_irq(&info->io_lock);
9f27ee59
JF
961 info->connected = suspend ?
962 BLKIF_STATE_SUSPENDED : BLKIF_STATE_DISCONNECTED;
963 /* No more blkif_request(). */
964 if (info->rq)
965 blk_stop_queue(info->rq);
0a8704a5
RPM
966
967 /* Remove all persistent grants */
bfe11d6d 968 if (!list_empty(&info->grants)) {
155b7edb 969 list_for_each_entry_safe(persistent_gnt, n,
bfe11d6d 970 &info->grants, node) {
155b7edb 971 list_del(&persistent_gnt->node);
9c1e050c
RPM
972 if (persistent_gnt->gref != GRANT_INVALID_REF) {
973 gnttab_end_foreign_access(persistent_gnt->gref,
974 0, 0UL);
975 info->persistent_gnts_c--;
976 }
bfe11d6d
RPM
977 if (info->feature_persistent)
978 __free_page(pfn_to_page(persistent_gnt->pfn));
155b7edb 979 kfree(persistent_gnt);
0a8704a5 980 }
0a8704a5 981 }
9c1e050c 982 BUG_ON(info->persistent_gnts_c != 0);
0a8704a5 983
bfe11d6d
RPM
984 /*
985 * Remove indirect pages, this only happens when using indirect
986 * descriptors but not persistent grants
987 */
988 if (!list_empty(&info->indirect_pages)) {
989 struct page *indirect_page, *n;
990
991 BUG_ON(info->feature_persistent);
992 list_for_each_entry_safe(indirect_page, n, &info->indirect_pages, lru) {
993 list_del(&indirect_page->lru);
994 __free_page(indirect_page);
995 }
996 }
997
86839c56 998 for (i = 0; i < BLK_RING_SIZE(info); i++) {
402b27f9
RPM
999 /*
1000 * Clear persistent grants present in requests already
1001 * on the shared ring
1002 */
1003 if (!info->shadow[i].request)
1004 goto free_shadow;
1005
1006 segs = info->shadow[i].req.operation == BLKIF_OP_INDIRECT ?
1007 info->shadow[i].req.u.indirect.nr_segments :
1008 info->shadow[i].req.u.rw.nr_segments;
1009 for (j = 0; j < segs; j++) {
1010 persistent_gnt = info->shadow[i].grants_used[j];
1011 gnttab_end_foreign_access(persistent_gnt->gref, 0, 0UL);
bfe11d6d
RPM
1012 if (info->feature_persistent)
1013 __free_page(pfn_to_page(persistent_gnt->pfn));
402b27f9
RPM
1014 kfree(persistent_gnt);
1015 }
1016
1017 if (info->shadow[i].req.operation != BLKIF_OP_INDIRECT)
1018 /*
1019 * If this is not an indirect operation don't try to
1020 * free indirect segments
1021 */
1022 goto free_shadow;
1023
1024 for (j = 0; j < INDIRECT_GREFS(segs); j++) {
1025 persistent_gnt = info->shadow[i].indirect_grants[j];
1026 gnttab_end_foreign_access(persistent_gnt->gref, 0, 0UL);
1027 __free_page(pfn_to_page(persistent_gnt->pfn));
1028 kfree(persistent_gnt);
1029 }
1030
1031free_shadow:
1032 kfree(info->shadow[i].grants_used);
1033 info->shadow[i].grants_used = NULL;
1034 kfree(info->shadow[i].indirect_grants);
1035 info->shadow[i].indirect_grants = NULL;
b7649158
RPM
1036 kfree(info->shadow[i].sg);
1037 info->shadow[i].sg = NULL;
402b27f9
RPM
1038 }
1039
9f27ee59
JF
1040 /* No more gnttab callback work. */
1041 gnttab_cancel_free_callback(&info->callback);
3467811e 1042 spin_unlock_irq(&info->io_lock);
9f27ee59
JF
1043
1044 /* Flush gnttab callback work. Must be done with no locks held. */
43829731 1045 flush_work(&info->work);
9f27ee59
JF
1046
1047 /* Free resources associated with old device channel. */
86839c56
BL
1048 for (i = 0; i < info->nr_ring_pages; i++) {
1049 if (info->ring_ref[i] != GRANT_INVALID_REF) {
1050 gnttab_end_foreign_access(info->ring_ref[i], 0, 0);
1051 info->ring_ref[i] = GRANT_INVALID_REF;
1052 }
9f27ee59 1053 }
86839c56
BL
1054 free_pages((unsigned long)info->ring.sring, get_order(info->nr_ring_pages * PAGE_SIZE));
1055 info->ring.sring = NULL;
1056
9f27ee59
JF
1057 if (info->irq)
1058 unbind_from_irqhandler(info->irq, info);
1059 info->evtchn = info->irq = 0;
1060
1061}
1062
0a8704a5
RPM
1063static void blkif_completion(struct blk_shadow *s, struct blkfront_info *info,
1064 struct blkif_response *bret)
9f27ee59 1065{
d62f6918 1066 int i = 0;
b7649158 1067 struct scatterlist *sg;
0a8704a5
RPM
1068 char *bvec_data;
1069 void *shared_data;
402b27f9
RPM
1070 int nseg;
1071
1072 nseg = s->req.operation == BLKIF_OP_INDIRECT ?
1073 s->req.u.indirect.nr_segments : s->req.u.rw.nr_segments;
0a8704a5 1074
bfe11d6d 1075 if (bret->operation == BLKIF_OP_READ && info->feature_persistent) {
b7649158
RPM
1076 for_each_sg(s->sg, sg, nseg, i) {
1077 BUG_ON(sg->offset + sg->length > PAGE_SIZE);
0a8704a5
RPM
1078 shared_data = kmap_atomic(
1079 pfn_to_page(s->grants_used[i]->pfn));
b7649158
RPM
1080 bvec_data = kmap_atomic(sg_page(sg));
1081 memcpy(bvec_data + sg->offset,
1082 shared_data + sg->offset,
1083 sg->length);
1084 kunmap_atomic(bvec_data);
0a8704a5 1085 kunmap_atomic(shared_data);
0a8704a5
RPM
1086 }
1087 }
1088 /* Add the persistent grant into the list of free grants */
402b27f9 1089 for (i = 0; i < nseg; i++) {
fbe363c4
RPM
1090 if (gnttab_query_foreign_access(s->grants_used[i]->gref)) {
1091 /*
1092 * If the grant is still mapped by the backend (the
1093 * backend has chosen to make this grant persistent)
1094 * we add it at the head of the list, so it will be
1095 * reused first.
1096 */
bfe11d6d
RPM
1097 if (!info->feature_persistent)
1098 pr_alert_ratelimited("backed has not unmapped grant: %u\n",
1099 s->grants_used[i]->gref);
1100 list_add(&s->grants_used[i]->node, &info->grants);
fbe363c4
RPM
1101 info->persistent_gnts_c++;
1102 } else {
1103 /*
1104 * If the grant is not mapped by the backend we end the
1105 * foreign access and add it to the tail of the list,
1106 * so it will not be picked again unless we run out of
1107 * persistent grants.
1108 */
1109 gnttab_end_foreign_access(s->grants_used[i]->gref, 0, 0UL);
1110 s->grants_used[i]->gref = GRANT_INVALID_REF;
bfe11d6d 1111 list_add_tail(&s->grants_used[i]->node, &info->grants);
fbe363c4 1112 }
0a8704a5 1113 }
402b27f9
RPM
1114 if (s->req.operation == BLKIF_OP_INDIRECT) {
1115 for (i = 0; i < INDIRECT_GREFS(nseg); i++) {
fbe363c4 1116 if (gnttab_query_foreign_access(s->indirect_grants[i]->gref)) {
bfe11d6d
RPM
1117 if (!info->feature_persistent)
1118 pr_alert_ratelimited("backed has not unmapped grant: %u\n",
1119 s->indirect_grants[i]->gref);
1120 list_add(&s->indirect_grants[i]->node, &info->grants);
fbe363c4
RPM
1121 info->persistent_gnts_c++;
1122 } else {
bfe11d6d
RPM
1123 struct page *indirect_page;
1124
fbe363c4 1125 gnttab_end_foreign_access(s->indirect_grants[i]->gref, 0, 0UL);
bfe11d6d
RPM
1126 /*
1127 * Add the used indirect page back to the list of
1128 * available pages for indirect grefs.
1129 */
1130 indirect_page = pfn_to_page(s->indirect_grants[i]->pfn);
1131 list_add(&indirect_page->lru, &info->indirect_pages);
fbe363c4 1132 s->indirect_grants[i]->gref = GRANT_INVALID_REF;
bfe11d6d 1133 list_add_tail(&s->indirect_grants[i]->node, &info->grants);
fbe363c4 1134 }
402b27f9
RPM
1135 }
1136 }
9f27ee59
JF
1137}
1138
1139static irqreturn_t blkif_interrupt(int irq, void *dev_id)
1140{
1141 struct request *req;
1142 struct blkif_response *bret;
1143 RING_IDX i, rp;
1144 unsigned long flags;
1145 struct blkfront_info *info = (struct blkfront_info *)dev_id;
f530f036 1146 int error;
9f27ee59 1147
3467811e 1148 spin_lock_irqsave(&info->io_lock, flags);
9f27ee59
JF
1149
1150 if (unlikely(info->connected != BLKIF_STATE_CONNECTED)) {
3467811e 1151 spin_unlock_irqrestore(&info->io_lock, flags);
9f27ee59
JF
1152 return IRQ_HANDLED;
1153 }
1154
1155 again:
1156 rp = info->ring.sring->rsp_prod;
1157 rmb(); /* Ensure we see queued responses up to 'rp'. */
1158
1159 for (i = info->ring.rsp_cons; i != rp; i++) {
1160 unsigned long id;
9f27ee59
JF
1161
1162 bret = RING_GET_RESPONSE(&info->ring, i);
1163 id = bret->id;
6878c32e
KRW
1164 /*
1165 * The backend has messed up and given us an id that we would
1166 * never have given to it (we stamp it up to BLK_RING_SIZE -
1167 * look in get_id_from_freelist.
1168 */
86839c56 1169 if (id >= BLK_RING_SIZE(info)) {
6878c32e
KRW
1170 WARN(1, "%s: response to %s has incorrect id (%ld)\n",
1171 info->gd->disk_name, op_name(bret->operation), id);
1172 /* We can't safely get the 'struct request' as
1173 * the id is busted. */
1174 continue;
1175 }
a945b980 1176 req = info->shadow[id].request;
9f27ee59 1177
5ea42986 1178 if (bret->operation != BLKIF_OP_DISCARD)
0a8704a5 1179 blkif_completion(&info->shadow[id], info, bret);
9f27ee59 1180
6878c32e
KRW
1181 if (add_id_to_freelist(info, id)) {
1182 WARN(1, "%s: response to %s (id %ld) couldn't be recycled!\n",
1183 info->gd->disk_name, op_name(bret->operation), id);
1184 continue;
1185 }
9f27ee59 1186
f530f036 1187 error = (bret->status == BLKIF_RSP_OKAY) ? 0 : -EIO;
9f27ee59 1188 switch (bret->operation) {
ed30bf31
LD
1189 case BLKIF_OP_DISCARD:
1190 if (unlikely(bret->status == BLKIF_RSP_EOPNOTSUPP)) {
1191 struct request_queue *rq = info->rq;
6878c32e
KRW
1192 printk(KERN_WARNING "blkfront: %s: %s op failed\n",
1193 info->gd->disk_name, op_name(bret->operation));
ed30bf31
LD
1194 error = -EOPNOTSUPP;
1195 info->feature_discard = 0;
5ea42986 1196 info->feature_secdiscard = 0;
ed30bf31 1197 queue_flag_clear(QUEUE_FLAG_DISCARD, rq);
5ea42986 1198 queue_flag_clear(QUEUE_FLAG_SECDISCARD, rq);
ed30bf31
LD
1199 }
1200 __blk_end_request_all(req, error);
1201 break;
edf6ef59 1202 case BLKIF_OP_FLUSH_DISKCACHE:
9f27ee59
JF
1203 case BLKIF_OP_WRITE_BARRIER:
1204 if (unlikely(bret->status == BLKIF_RSP_EOPNOTSUPP)) {
6878c32e
KRW
1205 printk(KERN_WARNING "blkfront: %s: %s op failed\n",
1206 info->gd->disk_name, op_name(bret->operation));
f530f036 1207 error = -EOPNOTSUPP;
dcb8baec
JF
1208 }
1209 if (unlikely(bret->status == BLKIF_RSP_ERROR &&
97e36834 1210 info->shadow[id].req.u.rw.nr_segments == 0)) {
6878c32e
KRW
1211 printk(KERN_WARNING "blkfront: %s: empty %s op failed\n",
1212 info->gd->disk_name, op_name(bret->operation));
dcb8baec
JF
1213 error = -EOPNOTSUPP;
1214 }
1215 if (unlikely(error)) {
1216 if (error == -EOPNOTSUPP)
1217 error = 0;
4913efe4
TH
1218 info->feature_flush = 0;
1219 xlvbd_flush(info);
9f27ee59
JF
1220 }
1221 /* fall through */
1222 case BLKIF_OP_READ:
1223 case BLKIF_OP_WRITE:
1224 if (unlikely(bret->status != BLKIF_RSP_OKAY))
1225 dev_dbg(&info->xbdev->dev, "Bad return from blkdev data "
1226 "request: %x\n", bret->status);
1227
40cbbb78 1228 __blk_end_request_all(req, error);
9f27ee59
JF
1229 break;
1230 default:
1231 BUG();
1232 }
1233 }
1234
1235 info->ring.rsp_cons = i;
1236
1237 if (i != info->ring.req_prod_pvt) {
1238 int more_to_do;
1239 RING_FINAL_CHECK_FOR_RESPONSES(&info->ring, more_to_do);
1240 if (more_to_do)
1241 goto again;
1242 } else
1243 info->ring.sring->rsp_event = i + 1;
1244
1245 kick_pending_request_queues(info);
1246
3467811e 1247 spin_unlock_irqrestore(&info->io_lock, flags);
9f27ee59
JF
1248
1249 return IRQ_HANDLED;
1250}
1251
1252
1253static int setup_blkring(struct xenbus_device *dev,
1254 struct blkfront_info *info)
1255{
1256 struct blkif_sring *sring;
86839c56
BL
1257 int err, i;
1258 unsigned long ring_size = info->nr_ring_pages * PAGE_SIZE;
1259 grant_ref_t gref[XENBUS_MAX_RING_PAGES];
9f27ee59 1260
86839c56
BL
1261 for (i = 0; i < info->nr_ring_pages; i++)
1262 info->ring_ref[i] = GRANT_INVALID_REF;
9f27ee59 1263
86839c56
BL
1264 sring = (struct blkif_sring *)__get_free_pages(GFP_NOIO | __GFP_HIGH,
1265 get_order(ring_size));
9f27ee59
JF
1266 if (!sring) {
1267 xenbus_dev_fatal(dev, -ENOMEM, "allocating shared ring");
1268 return -ENOMEM;
1269 }
1270 SHARED_RING_INIT(sring);
86839c56 1271 FRONT_RING_INIT(&info->ring, sring, ring_size);
9e973e64 1272
86839c56 1273 err = xenbus_grant_ring(dev, info->ring.sring, info->nr_ring_pages, gref);
9f27ee59 1274 if (err < 0) {
86839c56 1275 free_pages((unsigned long)sring, get_order(ring_size));
9f27ee59
JF
1276 info->ring.sring = NULL;
1277 goto fail;
1278 }
86839c56
BL
1279 for (i = 0; i < info->nr_ring_pages; i++)
1280 info->ring_ref[i] = gref[i];
9f27ee59
JF
1281
1282 err = xenbus_alloc_evtchn(dev, &info->evtchn);
1283 if (err)
1284 goto fail;
1285
89c30f16
TT
1286 err = bind_evtchn_to_irqhandler(info->evtchn, blkif_interrupt, 0,
1287 "blkif", info);
9f27ee59
JF
1288 if (err <= 0) {
1289 xenbus_dev_fatal(dev, err,
1290 "bind_evtchn_to_irqhandler failed");
1291 goto fail;
1292 }
1293 info->irq = err;
1294
1295 return 0;
1296fail:
1297 blkif_free(info, 0);
1298 return err;
1299}
1300
1301
1302/* Common code used when first setting up, and when resuming. */
203fd61f 1303static int talk_to_blkback(struct xenbus_device *dev,
9f27ee59
JF
1304 struct blkfront_info *info)
1305{
1306 const char *message = NULL;
1307 struct xenbus_transaction xbt;
86839c56
BL
1308 int err, i;
1309 unsigned int max_page_order = 0;
1310 unsigned int ring_page_order = 0;
1311
1312 err = xenbus_scanf(XBT_NIL, info->xbdev->otherend,
1313 "max-ring-page-order", "%u", &max_page_order);
1314 if (err != 1)
1315 info->nr_ring_pages = 1;
1316 else {
1317 ring_page_order = min(xen_blkif_max_ring_order, max_page_order);
1318 info->nr_ring_pages = 1 << ring_page_order;
1319 }
9f27ee59
JF
1320
1321 /* Create shared ring, alloc event channel. */
1322 err = setup_blkring(dev, info);
1323 if (err)
1324 goto out;
1325
1326again:
1327 err = xenbus_transaction_start(&xbt);
1328 if (err) {
1329 xenbus_dev_fatal(dev, err, "starting transaction");
1330 goto destroy_blkring;
1331 }
1332
86839c56
BL
1333 if (info->nr_ring_pages == 1) {
1334 err = xenbus_printf(xbt, dev->nodename,
1335 "ring-ref", "%u", info->ring_ref[0]);
1336 if (err) {
1337 message = "writing ring-ref";
1338 goto abort_transaction;
1339 }
1340 } else {
1341 err = xenbus_printf(xbt, dev->nodename,
1342 "ring-page-order", "%u", ring_page_order);
1343 if (err) {
1344 message = "writing ring-page-order";
1345 goto abort_transaction;
1346 }
1347
1348 for (i = 0; i < info->nr_ring_pages; i++) {
1349 char ring_ref_name[RINGREF_NAME_LEN];
1350
1351 snprintf(ring_ref_name, RINGREF_NAME_LEN, "ring-ref%u", i);
1352 err = xenbus_printf(xbt, dev->nodename, ring_ref_name,
1353 "%u", info->ring_ref[i]);
1354 if (err) {
1355 message = "writing ring-ref";
1356 goto abort_transaction;
1357 }
1358 }
9f27ee59
JF
1359 }
1360 err = xenbus_printf(xbt, dev->nodename,
1361 "event-channel", "%u", info->evtchn);
1362 if (err) {
1363 message = "writing event-channel";
1364 goto abort_transaction;
1365 }
3e334239
MA
1366 err = xenbus_printf(xbt, dev->nodename, "protocol", "%s",
1367 XEN_IO_PROTO_ABI_NATIVE);
1368 if (err) {
1369 message = "writing protocol";
1370 goto abort_transaction;
1371 }
0a8704a5 1372 err = xenbus_printf(xbt, dev->nodename,
cb5bd4d1 1373 "feature-persistent", "%u", 1);
0a8704a5
RPM
1374 if (err)
1375 dev_warn(&dev->dev,
1376 "writing persistent grants feature to xenbus");
9f27ee59
JF
1377
1378 err = xenbus_transaction_end(xbt, 0);
1379 if (err) {
1380 if (err == -EAGAIN)
1381 goto again;
1382 xenbus_dev_fatal(dev, err, "completing transaction");
1383 goto destroy_blkring;
1384 }
1385
86839c56
BL
1386 for (i = 0; i < BLK_RING_SIZE(info); i++)
1387 info->shadow[i].req.u.rw.id = i+1;
1388 info->shadow[BLK_RING_SIZE(info)-1].req.u.rw.id = 0x0fffffff;
9f27ee59
JF
1389 xenbus_switch_state(dev, XenbusStateInitialised);
1390
1391 return 0;
1392
1393 abort_transaction:
1394 xenbus_transaction_end(xbt, 1);
1395 if (message)
1396 xenbus_dev_fatal(dev, err, "%s", message);
1397 destroy_blkring:
1398 blkif_free(info, 0);
1399 out:
1400 return err;
1401}
1402
9f27ee59
JF
1403/**
1404 * Entry point to this code when a new device is created. Allocate the basic
1405 * structures and the ring buffer for communication with the backend, and
1406 * inform the backend of the appropriate details for those. Switch to
1407 * Initialised state.
1408 */
1409static int blkfront_probe(struct xenbus_device *dev,
1410 const struct xenbus_device_id *id)
1411{
86839c56 1412 int err, vdevice;
9f27ee59
JF
1413 struct blkfront_info *info;
1414
1415 /* FIXME: Use dynamic device id if this is not set. */
1416 err = xenbus_scanf(XBT_NIL, dev->nodename,
1417 "virtual-device", "%i", &vdevice);
1418 if (err != 1) {
9246b5f0
CL
1419 /* go looking in the extended area instead */
1420 err = xenbus_scanf(XBT_NIL, dev->nodename, "virtual-device-ext",
1421 "%i", &vdevice);
1422 if (err != 1) {
1423 xenbus_dev_fatal(dev, err, "reading virtual-device");
1424 return err;
1425 }
9f27ee59
JF
1426 }
1427
b98a409b
SS
1428 if (xen_hvm_domain()) {
1429 char *type;
1430 int len;
1431 /* no unplug has been done: do not hook devices != xen vbds */
51c71a3b 1432 if (xen_has_pv_and_legacy_disk_devices()) {
b98a409b
SS
1433 int major;
1434
1435 if (!VDEV_IS_EXTENDED(vdevice))
1436 major = BLKIF_MAJOR(vdevice);
1437 else
1438 major = XENVBD_MAJOR;
1439
1440 if (major != XENVBD_MAJOR) {
1441 printk(KERN_INFO
1442 "%s: HVM does not support vbd %d as xen block device\n",
02f1f217 1443 __func__, vdevice);
b98a409b
SS
1444 return -ENODEV;
1445 }
1446 }
1447 /* do not create a PV cdrom device if we are an HVM guest */
1448 type = xenbus_read(XBT_NIL, dev->nodename, "device-type", &len);
1449 if (IS_ERR(type))
1450 return -ENODEV;
1451 if (strncmp(type, "cdrom", 5) == 0) {
1452 kfree(type);
c1c5413a
SS
1453 return -ENODEV;
1454 }
b98a409b 1455 kfree(type);
c1c5413a 1456 }
9f27ee59
JF
1457 info = kzalloc(sizeof(*info), GFP_KERNEL);
1458 if (!info) {
1459 xenbus_dev_fatal(dev, -ENOMEM, "allocating info structure");
1460 return -ENOMEM;
1461 }
1462
b70f5fa0 1463 mutex_init(&info->mutex);
3467811e 1464 spin_lock_init(&info->io_lock);
9f27ee59
JF
1465 info->xbdev = dev;
1466 info->vdevice = vdevice;
bfe11d6d
RPM
1467 INIT_LIST_HEAD(&info->grants);
1468 INIT_LIST_HEAD(&info->indirect_pages);
0a8704a5 1469 info->persistent_gnts_c = 0;
9f27ee59
JF
1470 info->connected = BLKIF_STATE_DISCONNECTED;
1471 INIT_WORK(&info->work, blkif_restart_queue);
1472
9f27ee59
JF
1473 /* Front end dir is a number, which is used as the id. */
1474 info->handle = simple_strtoul(strrchr(dev->nodename, '/')+1, NULL, 0);
a1b4b12b 1475 dev_set_drvdata(&dev->dev, info);
9f27ee59 1476
9f27ee59
JF
1477 return 0;
1478}
1479
4246a0b6 1480static void split_bio_end(struct bio *bio)
402b27f9
RPM
1481{
1482 struct split_bio *split_bio = bio->bi_private;
1483
402b27f9
RPM
1484 if (atomic_dec_and_test(&split_bio->pending)) {
1485 split_bio->bio->bi_phys_segments = 0;
4246a0b6
CH
1486 split_bio->bio->bi_error = bio->bi_error;
1487 bio_endio(split_bio->bio);
402b27f9
RPM
1488 kfree(split_bio);
1489 }
1490 bio_put(bio);
1491}
9f27ee59
JF
1492
1493static int blkif_recover(struct blkfront_info *info)
1494{
1495 int i;
402b27f9 1496 struct request *req, *n;
9f27ee59 1497 struct blk_shadow *copy;
402b27f9
RPM
1498 int rc;
1499 struct bio *bio, *cloned_bio;
1500 struct bio_list bio_list, merge_bio;
1501 unsigned int segs, offset;
1502 int pending, size;
1503 struct split_bio *split_bio;
1504 struct list_head requests;
9f27ee59
JF
1505
1506 /* Stage 1: Make a safe copy of the shadow state. */
29d0b218 1507 copy = kmemdup(info->shadow, sizeof(info->shadow),
a144ff09 1508 GFP_NOIO | __GFP_REPEAT | __GFP_HIGH);
9f27ee59
JF
1509 if (!copy)
1510 return -ENOMEM;
9f27ee59
JF
1511
1512 /* Stage 2: Set up free list. */
1513 memset(&info->shadow, 0, sizeof(info->shadow));
86839c56 1514 for (i = 0; i < BLK_RING_SIZE(info); i++)
97e36834 1515 info->shadow[i].req.u.rw.id = i+1;
9f27ee59 1516 info->shadow_free = info->ring.req_prod_pvt;
86839c56 1517 info->shadow[BLK_RING_SIZE(info)-1].req.u.rw.id = 0x0fffffff;
9f27ee59 1518
402b27f9
RPM
1519 rc = blkfront_setup_indirect(info);
1520 if (rc) {
1521 kfree(copy);
1522 return rc;
1523 }
1524
1525 segs = info->max_indirect_segments ? : BLKIF_MAX_SEGMENTS_PER_REQUEST;
1526 blk_queue_max_segments(info->rq, segs);
1527 bio_list_init(&bio_list);
1528 INIT_LIST_HEAD(&requests);
86839c56 1529 for (i = 0; i < BLK_RING_SIZE(info); i++) {
9f27ee59 1530 /* Not in use? */
a945b980 1531 if (!copy[i].request)
9f27ee59
JF
1532 continue;
1533
402b27f9
RPM
1534 /*
1535 * Get the bios in the request so we can re-queue them.
1536 */
1537 if (copy[i].request->cmd_flags &
1538 (REQ_FLUSH | REQ_FUA | REQ_DISCARD | REQ_SECURE)) {
1539 /*
1540 * Flush operations don't contain bios, so
1541 * we need to requeue the whole request
1542 */
1543 list_add(&copy[i].request->queuelist, &requests);
1544 continue;
5ea42986 1545 }
402b27f9
RPM
1546 merge_bio.head = copy[i].request->bio;
1547 merge_bio.tail = copy[i].request->biotail;
1548 bio_list_merge(&bio_list, &merge_bio);
1549 copy[i].request->bio = NULL;
3bb8c98e 1550 blk_end_request_all(copy[i].request, 0);
9f27ee59
JF
1551 }
1552
1553 kfree(copy);
1554
402b27f9
RPM
1555 /*
1556 * Empty the queue, this is important because we might have
1557 * requests in the queue with more segments than what we
1558 * can handle now.
1559 */
1560 spin_lock_irq(&info->io_lock);
1561 while ((req = blk_fetch_request(info->rq)) != NULL) {
1562 if (req->cmd_flags &
1563 (REQ_FLUSH | REQ_FUA | REQ_DISCARD | REQ_SECURE)) {
1564 list_add(&req->queuelist, &requests);
1565 continue;
1566 }
1567 merge_bio.head = req->bio;
1568 merge_bio.tail = req->biotail;
1569 bio_list_merge(&bio_list, &merge_bio);
1570 req->bio = NULL;
1571 if (req->cmd_flags & (REQ_FLUSH | REQ_FUA))
1572 pr_alert("diskcache flush request found!\n");
3bb8c98e 1573 __blk_end_request_all(req, 0);
402b27f9
RPM
1574 }
1575 spin_unlock_irq(&info->io_lock);
1576
9f27ee59
JF
1577 xenbus_switch_state(info->xbdev, XenbusStateConnected);
1578
3467811e 1579 spin_lock_irq(&info->io_lock);
9f27ee59
JF
1580
1581 /* Now safe for us to use the shared ring */
1582 info->connected = BLKIF_STATE_CONNECTED;
1583
9f27ee59
JF
1584 /* Kick any other new requests queued since we resumed */
1585 kick_pending_request_queues(info);
1586
402b27f9
RPM
1587 list_for_each_entry_safe(req, n, &requests, queuelist) {
1588 /* Requeue pending requests (flush or discard) */
1589 list_del_init(&req->queuelist);
1590 BUG_ON(req->nr_phys_segments > segs);
1591 blk_requeue_request(info->rq, req);
1592 }
3467811e 1593 spin_unlock_irq(&info->io_lock);
9f27ee59 1594
402b27f9
RPM
1595 while ((bio = bio_list_pop(&bio_list)) != NULL) {
1596 /* Traverse the list of pending bios and re-queue them */
1597 if (bio_segments(bio) > segs) {
1598 /*
1599 * This bio has more segments than what we can
1600 * handle, we have to split it.
1601 */
1602 pending = (bio_segments(bio) + segs - 1) / segs;
1603 split_bio = kzalloc(sizeof(*split_bio), GFP_NOIO);
1604 BUG_ON(split_bio == NULL);
1605 atomic_set(&split_bio->pending, pending);
1606 split_bio->bio = bio;
1607 for (i = 0; i < pending; i++) {
1608 offset = (i * segs * PAGE_SIZE) >> 9;
1609 size = min((unsigned int)(segs * PAGE_SIZE) >> 9,
4f024f37 1610 (unsigned int)bio_sectors(bio) - offset);
402b27f9
RPM
1611 cloned_bio = bio_clone(bio, GFP_NOIO);
1612 BUG_ON(cloned_bio == NULL);
6678d83f 1613 bio_trim(cloned_bio, offset, size);
402b27f9
RPM
1614 cloned_bio->bi_private = split_bio;
1615 cloned_bio->bi_end_io = split_bio_end;
1616 submit_bio(cloned_bio->bi_rw, cloned_bio);
1617 }
1618 /*
1619 * Now we have to wait for all those smaller bios to
1620 * end, so we can also end the "parent" bio.
1621 */
1622 continue;
1623 }
1624 /* We don't need to split this bio */
1625 submit_bio(bio->bi_rw, bio);
1626 }
1627
9f27ee59
JF
1628 return 0;
1629}
1630
1631/**
1632 * We are reconnecting to the backend, due to a suspend/resume, or a backend
1633 * driver restart. We tear down our blkif structure and recreate it, but
1634 * leave the device-layer structures intact so that this is transparent to the
1635 * rest of the kernel.
1636 */
1637static int blkfront_resume(struct xenbus_device *dev)
1638{
a1b4b12b 1639 struct blkfront_info *info = dev_get_drvdata(&dev->dev);
9f27ee59
JF
1640 int err;
1641
1642 dev_dbg(&dev->dev, "blkfront_resume: %s\n", dev->nodename);
1643
1644 blkif_free(info, info->connected == BLKIF_STATE_CONNECTED);
1645
203fd61f 1646 err = talk_to_blkback(dev, info);
402b27f9
RPM
1647
1648 /*
1649 * We have to wait for the backend to switch to
1650 * connected state, since we want to read which
1651 * features it supports.
1652 */
9f27ee59
JF
1653
1654 return err;
1655}
1656
b70f5fa0
DS
1657static void
1658blkfront_closing(struct blkfront_info *info)
1659{
1660 struct xenbus_device *xbdev = info->xbdev;
1661 struct block_device *bdev = NULL;
1662
1663 mutex_lock(&info->mutex);
1664
1665 if (xbdev->state == XenbusStateClosing) {
1666 mutex_unlock(&info->mutex);
1667 return;
1668 }
1669
1670 if (info->gd)
1671 bdev = bdget_disk(info->gd, 0);
1672
1673 mutex_unlock(&info->mutex);
1674
1675 if (!bdev) {
1676 xenbus_frontend_closed(xbdev);
1677 return;
1678 }
1679
1680 mutex_lock(&bdev->bd_mutex);
1681
7b32d104 1682 if (bdev->bd_openers) {
b70f5fa0
DS
1683 xenbus_dev_error(xbdev, -EBUSY,
1684 "Device in use; refusing to close");
1685 xenbus_switch_state(xbdev, XenbusStateClosing);
1686 } else {
1687 xlvbd_release_gendisk(info);
1688 xenbus_frontend_closed(xbdev);
1689 }
1690
1691 mutex_unlock(&bdev->bd_mutex);
1692 bdput(bdev);
1693}
9f27ee59 1694
ed30bf31
LD
1695static void blkfront_setup_discard(struct blkfront_info *info)
1696{
1697 int err;
ed30bf31
LD
1698 unsigned int discard_granularity;
1699 unsigned int discard_alignment;
5ea42986 1700 unsigned int discard_secure;
ed30bf31 1701
1c8cad6c
OH
1702 info->feature_discard = 1;
1703 err = xenbus_gather(XBT_NIL, info->xbdev->otherend,
1704 "discard-granularity", "%u", &discard_granularity,
1705 "discard-alignment", "%u", &discard_alignment,
1706 NULL);
1707 if (!err) {
1708 info->discard_granularity = discard_granularity;
1709 info->discard_alignment = discard_alignment;
1710 }
1711 err = xenbus_gather(XBT_NIL, info->xbdev->otherend,
1712 "discard-secure", "%d", &discard_secure,
1713 NULL);
1714 if (!err)
1715 info->feature_secdiscard = !!discard_secure;
ed30bf31
LD
1716}
1717
402b27f9
RPM
1718static int blkfront_setup_indirect(struct blkfront_info *info)
1719{
1720 unsigned int indirect_segments, segs;
1721 int err, i;
1722
1723 err = xenbus_gather(XBT_NIL, info->xbdev->otherend,
1724 "feature-max-indirect-segments", "%u", &indirect_segments,
1725 NULL);
1726 if (err) {
1727 info->max_indirect_segments = 0;
1728 segs = BLKIF_MAX_SEGMENTS_PER_REQUEST;
1729 } else {
1730 info->max_indirect_segments = min(indirect_segments,
1731 xen_blkif_max_segments);
1732 segs = info->max_indirect_segments;
1733 }
402b27f9 1734
86839c56 1735 err = fill_grant_buffer(info, (segs + INDIRECT_GREFS(segs)) * BLK_RING_SIZE(info));
402b27f9
RPM
1736 if (err)
1737 goto out_of_memory;
1738
bfe11d6d
RPM
1739 if (!info->feature_persistent && info->max_indirect_segments) {
1740 /*
1741 * We are using indirect descriptors but not persistent
1742 * grants, we need to allocate a set of pages that can be
1743 * used for mapping indirect grefs
1744 */
86839c56 1745 int num = INDIRECT_GREFS(segs) * BLK_RING_SIZE(info);
bfe11d6d
RPM
1746
1747 BUG_ON(!list_empty(&info->indirect_pages));
1748 for (i = 0; i < num; i++) {
1749 struct page *indirect_page = alloc_page(GFP_NOIO);
1750 if (!indirect_page)
1751 goto out_of_memory;
1752 list_add(&indirect_page->lru, &info->indirect_pages);
1753 }
1754 }
1755
86839c56 1756 for (i = 0; i < BLK_RING_SIZE(info); i++) {
402b27f9
RPM
1757 info->shadow[i].grants_used = kzalloc(
1758 sizeof(info->shadow[i].grants_used[0]) * segs,
1759 GFP_NOIO);
b7649158 1760 info->shadow[i].sg = kzalloc(sizeof(info->shadow[i].sg[0]) * segs, GFP_NOIO);
402b27f9
RPM
1761 if (info->max_indirect_segments)
1762 info->shadow[i].indirect_grants = kzalloc(
1763 sizeof(info->shadow[i].indirect_grants[0]) *
1764 INDIRECT_GREFS(segs),
1765 GFP_NOIO);
1766 if ((info->shadow[i].grants_used == NULL) ||
b7649158 1767 (info->shadow[i].sg == NULL) ||
402b27f9
RPM
1768 (info->max_indirect_segments &&
1769 (info->shadow[i].indirect_grants == NULL)))
1770 goto out_of_memory;
b7649158 1771 sg_init_table(info->shadow[i].sg, segs);
402b27f9
RPM
1772 }
1773
1774
1775 return 0;
1776
1777out_of_memory:
86839c56 1778 for (i = 0; i < BLK_RING_SIZE(info); i++) {
402b27f9
RPM
1779 kfree(info->shadow[i].grants_used);
1780 info->shadow[i].grants_used = NULL;
b7649158
RPM
1781 kfree(info->shadow[i].sg);
1782 info->shadow[i].sg = NULL;
402b27f9
RPM
1783 kfree(info->shadow[i].indirect_grants);
1784 info->shadow[i].indirect_grants = NULL;
1785 }
bfe11d6d
RPM
1786 if (!list_empty(&info->indirect_pages)) {
1787 struct page *indirect_page, *n;
1788 list_for_each_entry_safe(indirect_page, n, &info->indirect_pages, lru) {
1789 list_del(&indirect_page->lru);
1790 __free_page(indirect_page);
1791 }
1792 }
402b27f9
RPM
1793 return -ENOMEM;
1794}
1795
9f27ee59
JF
1796/*
1797 * Invoked when the backend is finally 'ready' (and has told produced
1798 * the details about the physical device - #sectors, size, etc).
1799 */
1800static void blkfront_connect(struct blkfront_info *info)
1801{
1802 unsigned long long sectors;
1803 unsigned long sector_size;
7c4d7d71 1804 unsigned int physical_sector_size;
9f27ee59
JF
1805 unsigned int binfo;
1806 int err;
0a8704a5 1807 int barrier, flush, discard, persistent;
9f27ee59 1808
1fa73be6
S
1809 switch (info->connected) {
1810 case BLKIF_STATE_CONNECTED:
1811 /*
1812 * Potentially, the back-end may be signalling
1813 * a capacity change; update the capacity.
1814 */
1815 err = xenbus_scanf(XBT_NIL, info->xbdev->otherend,
1816 "sectors", "%Lu", &sectors);
1817 if (XENBUS_EXIST_ERR(err))
1818 return;
1819 printk(KERN_INFO "Setting capacity to %Lu\n",
1820 sectors);
1821 set_capacity(info->gd, sectors);
2def141e 1822 revalidate_disk(info->gd);
1fa73be6 1823
402b27f9 1824 return;
1fa73be6 1825 case BLKIF_STATE_SUSPENDED:
402b27f9
RPM
1826 /*
1827 * If we are recovering from suspension, we need to wait
1828 * for the backend to announce it's features before
1829 * reconnecting, at least we need to know if the backend
1830 * supports indirect descriptors, and how many.
1831 */
1832 blkif_recover(info);
9f27ee59
JF
1833 return;
1834
b4dddb49
JF
1835 default:
1836 break;
1fa73be6 1837 }
9f27ee59
JF
1838
1839 dev_dbg(&info->xbdev->dev, "%s:%s.\n",
1840 __func__, info->xbdev->otherend);
1841
1842 err = xenbus_gather(XBT_NIL, info->xbdev->otherend,
1843 "sectors", "%llu", &sectors,
1844 "info", "%u", &binfo,
1845 "sector-size", "%lu", &sector_size,
1846 NULL);
1847 if (err) {
1848 xenbus_dev_fatal(info->xbdev, err,
1849 "reading backend fields at %s",
1850 info->xbdev->otherend);
1851 return;
1852 }
1853
7c4d7d71
SB
1854 /*
1855 * physcial-sector-size is a newer field, so old backends may not
1856 * provide this. Assume physical sector size to be the same as
1857 * sector_size in that case.
1858 */
1859 err = xenbus_scanf(XBT_NIL, info->xbdev->otherend,
1860 "physical-sector-size", "%u", &physical_sector_size);
1861 if (err != 1)
1862 physical_sector_size = sector_size;
1863
edf6ef59 1864 info->feature_flush = 0;
edf6ef59 1865
9f27ee59 1866 err = xenbus_gather(XBT_NIL, info->xbdev->otherend,
4352b47a 1867 "feature-barrier", "%d", &barrier,
9f27ee59 1868 NULL);
7901d141
JF
1869
1870 /*
1871 * If there's no "feature-barrier" defined, then it means
1872 * we're dealing with a very old backend which writes
4913efe4 1873 * synchronously; nothing to do.
7901d141 1874 *
6958f145 1875 * If there are barriers, then we use flush.
7901d141 1876 */
fdf9b965 1877 if (!err && barrier)
be2f8373 1878 info->feature_flush = REQ_FLUSH | REQ_FUA;
edf6ef59
KRW
1879 /*
1880 * And if there is "feature-flush-cache" use that above
1881 * barriers.
1882 */
1883 err = xenbus_gather(XBT_NIL, info->xbdev->otherend,
1884 "feature-flush-cache", "%d", &flush,
1885 NULL);
9f27ee59 1886
fdf9b965 1887 if (!err && flush)
edf6ef59 1888 info->feature_flush = REQ_FLUSH;
ed30bf31
LD
1889
1890 err = xenbus_gather(XBT_NIL, info->xbdev->otherend,
1891 "feature-discard", "%d", &discard,
1892 NULL);
1893
1894 if (!err && discard)
1895 blkfront_setup_discard(info);
1896
0a8704a5
RPM
1897 err = xenbus_gather(XBT_NIL, info->xbdev->otherend,
1898 "feature-persistent", "%u", &persistent,
1899 NULL);
1900 if (err)
1901 info->feature_persistent = 0;
1902 else
1903 info->feature_persistent = persistent;
1904
402b27f9
RPM
1905 err = blkfront_setup_indirect(info);
1906 if (err) {
1907 xenbus_dev_fatal(info->xbdev, err, "setup_indirect at %s",
1908 info->xbdev->otherend);
1909 return;
1910 }
1911
7c4d7d71
SB
1912 err = xlvbd_alloc_gendisk(sectors, info, binfo, sector_size,
1913 physical_sector_size);
9f27ee59
JF
1914 if (err) {
1915 xenbus_dev_fatal(info->xbdev, err, "xlvbd_add at %s",
1916 info->xbdev->otherend);
1917 return;
1918 }
1919
1920 xenbus_switch_state(info->xbdev, XenbusStateConnected);
1921
1922 /* Kick pending requests. */
3467811e 1923 spin_lock_irq(&info->io_lock);
9f27ee59
JF
1924 info->connected = BLKIF_STATE_CONNECTED;
1925 kick_pending_request_queues(info);
3467811e 1926 spin_unlock_irq(&info->io_lock);
9f27ee59
JF
1927
1928 add_disk(info->gd);
1d78d705
CL
1929
1930 info->is_ready = 1;
9f27ee59
JF
1931}
1932
9f27ee59
JF
1933/**
1934 * Callback received when the backend's state changes.
1935 */
203fd61f 1936static void blkback_changed(struct xenbus_device *dev,
9f27ee59
JF
1937 enum xenbus_state backend_state)
1938{
a1b4b12b 1939 struct blkfront_info *info = dev_get_drvdata(&dev->dev);
9f27ee59 1940
203fd61f 1941 dev_dbg(&dev->dev, "blkfront:blkback_changed to state %d.\n", backend_state);
9f27ee59
JF
1942
1943 switch (backend_state) {
9f27ee59 1944 case XenbusStateInitWait:
a9b54bb9
BL
1945 if (dev->state != XenbusStateInitialising)
1946 break;
8ab0144a
BL
1947 if (talk_to_blkback(dev, info)) {
1948 kfree(info);
1949 dev_set_drvdata(&dev->dev, NULL);
1950 break;
1951 }
1952 case XenbusStateInitialising:
9f27ee59 1953 case XenbusStateInitialised:
b78c9512
NI
1954 case XenbusStateReconfiguring:
1955 case XenbusStateReconfigured:
9f27ee59 1956 case XenbusStateUnknown:
9f27ee59
JF
1957 break;
1958
1959 case XenbusStateConnected:
1960 blkfront_connect(info);
1961 break;
1962
36613717
DV
1963 case XenbusStateClosed:
1964 if (dev->state == XenbusStateClosed)
1965 break;
1966 /* Missed the backend's Closing state -- fallthrough */
9f27ee59 1967 case XenbusStateClosing:
b70f5fa0 1968 blkfront_closing(info);
9f27ee59
JF
1969 break;
1970 }
1971}
1972
fa1bd359 1973static int blkfront_remove(struct xenbus_device *xbdev)
9f27ee59 1974{
fa1bd359
DS
1975 struct blkfront_info *info = dev_get_drvdata(&xbdev->dev);
1976 struct block_device *bdev = NULL;
1977 struct gendisk *disk;
9f27ee59 1978
fa1bd359 1979 dev_dbg(&xbdev->dev, "%s removed", xbdev->nodename);
9f27ee59
JF
1980
1981 blkif_free(info, 0);
1982
fa1bd359
DS
1983 mutex_lock(&info->mutex);
1984
1985 disk = info->gd;
1986 if (disk)
1987 bdev = bdget_disk(disk, 0);
1988
1989 info->xbdev = NULL;
1990 mutex_unlock(&info->mutex);
1991
1992 if (!bdev) {
1993 kfree(info);
1994 return 0;
1995 }
1996
1997 /*
1998 * The xbdev was removed before we reached the Closed
1999 * state. See if it's safe to remove the disk. If the bdev
2000 * isn't closed yet, we let release take care of it.
2001 */
2002
2003 mutex_lock(&bdev->bd_mutex);
2004 info = disk->private_data;
2005
d54142c7
DS
2006 dev_warn(disk_to_dev(disk),
2007 "%s was hot-unplugged, %d stale handles\n",
2008 xbdev->nodename, bdev->bd_openers);
2009
7b32d104 2010 if (info && !bdev->bd_openers) {
fa1bd359
DS
2011 xlvbd_release_gendisk(info);
2012 disk->private_data = NULL;
0e345826 2013 kfree(info);
fa1bd359
DS
2014 }
2015
2016 mutex_unlock(&bdev->bd_mutex);
2017 bdput(bdev);
9f27ee59
JF
2018
2019 return 0;
2020}
2021
1d78d705
CL
2022static int blkfront_is_ready(struct xenbus_device *dev)
2023{
a1b4b12b 2024 struct blkfront_info *info = dev_get_drvdata(&dev->dev);
1d78d705 2025
5d7ed20e 2026 return info->is_ready && info->xbdev;
1d78d705
CL
2027}
2028
a63c848b 2029static int blkif_open(struct block_device *bdev, fmode_t mode)
9f27ee59 2030{
13961743
DS
2031 struct gendisk *disk = bdev->bd_disk;
2032 struct blkfront_info *info;
2033 int err = 0;
6e9624b8 2034
2a48fc0a 2035 mutex_lock(&blkfront_mutex);
6e9624b8 2036
13961743
DS
2037 info = disk->private_data;
2038 if (!info) {
2039 /* xbdev gone */
2040 err = -ERESTARTSYS;
2041 goto out;
2042 }
2043
2044 mutex_lock(&info->mutex);
2045
2046 if (!info->gd)
2047 /* xbdev is closed */
2048 err = -ERESTARTSYS;
2049
2050 mutex_unlock(&info->mutex);
2051
13961743 2052out:
2a48fc0a 2053 mutex_unlock(&blkfront_mutex);
13961743 2054 return err;
9f27ee59
JF
2055}
2056
db2a144b 2057static void blkif_release(struct gendisk *disk, fmode_t mode)
9f27ee59 2058{
a63c848b 2059 struct blkfront_info *info = disk->private_data;
7fd152f4
DS
2060 struct block_device *bdev;
2061 struct xenbus_device *xbdev;
2062
2a48fc0a 2063 mutex_lock(&blkfront_mutex);
7fd152f4
DS
2064
2065 bdev = bdget_disk(disk, 0);
7fd152f4 2066
2f089cb8
FP
2067 if (!bdev) {
2068 WARN(1, "Block device %s yanked out from us!\n", disk->disk_name);
2069 goto out_mutex;
2070 }
acfca3c6
DS
2071 if (bdev->bd_openers)
2072 goto out;
2073
7fd152f4
DS
2074 /*
2075 * Check if we have been instructed to close. We will have
2076 * deferred this request, because the bdev was still open.
2077 */
2078
2079 mutex_lock(&info->mutex);
2080 xbdev = info->xbdev;
2081
2082 if (xbdev && xbdev->state == XenbusStateClosing) {
2083 /* pending switch to state closed */
d54142c7 2084 dev_info(disk_to_dev(bdev->bd_disk), "releasing disk\n");
7fd152f4
DS
2085 xlvbd_release_gendisk(info);
2086 xenbus_frontend_closed(info->xbdev);
2087 }
2088
2089 mutex_unlock(&info->mutex);
2090
2091 if (!xbdev) {
2092 /* sudden device removal */
d54142c7 2093 dev_info(disk_to_dev(bdev->bd_disk), "releasing disk\n");
7fd152f4
DS
2094 xlvbd_release_gendisk(info);
2095 disk->private_data = NULL;
2096 kfree(info);
9f27ee59 2097 }
7fd152f4 2098
a4cc14ec 2099out:
dad5cf65 2100 bdput(bdev);
2f089cb8 2101out_mutex:
2a48fc0a 2102 mutex_unlock(&blkfront_mutex);
9f27ee59
JF
2103}
2104
83d5cde4 2105static const struct block_device_operations xlvbd_block_fops =
9f27ee59
JF
2106{
2107 .owner = THIS_MODULE,
a63c848b
AV
2108 .open = blkif_open,
2109 .release = blkif_release,
597592d9 2110 .getgeo = blkif_getgeo,
8a6cfeb6 2111 .ioctl = blkif_ioctl,
9f27ee59
JF
2112};
2113
2114
ec9c42ec 2115static const struct xenbus_device_id blkfront_ids[] = {
9f27ee59
JF
2116 { "vbd" },
2117 { "" }
2118};
2119
95afae48
DV
2120static struct xenbus_driver blkfront_driver = {
2121 .ids = blkfront_ids,
9f27ee59
JF
2122 .probe = blkfront_probe,
2123 .remove = blkfront_remove,
2124 .resume = blkfront_resume,
203fd61f 2125 .otherend_changed = blkback_changed,
1d78d705 2126 .is_ready = blkfront_is_ready,
95afae48 2127};
9f27ee59
JF
2128
2129static int __init xlblk_init(void)
2130{
469738e6
LE
2131 int ret;
2132
6e833587 2133 if (!xen_domain())
9f27ee59
JF
2134 return -ENODEV;
2135
86839c56
BL
2136 if (xen_blkif_max_ring_order > XENBUS_MAX_RING_PAGE_ORDER) {
2137 pr_info("Invalid max_ring_order (%d), will use default max: %d.\n",
2138 xen_blkif_max_ring_order, XENBUS_MAX_RING_PAGE_ORDER);
2139 xen_blkif_max_ring_order = 0;
2140 }
2141
51c71a3b 2142 if (!xen_has_pv_disk_devices())
b9136d20
IM
2143 return -ENODEV;
2144
9f27ee59
JF
2145 if (register_blkdev(XENVBD_MAJOR, DEV_NAME)) {
2146 printk(KERN_WARNING "xen_blk: can't get major %d with name %s\n",
2147 XENVBD_MAJOR, DEV_NAME);
2148 return -ENODEV;
2149 }
2150
73db144b 2151 ret = xenbus_register_frontend(&blkfront_driver);
469738e6
LE
2152 if (ret) {
2153 unregister_blkdev(XENVBD_MAJOR, DEV_NAME);
2154 return ret;
2155 }
2156
2157 return 0;
9f27ee59
JF
2158}
2159module_init(xlblk_init);
2160
2161
5a60d0cd 2162static void __exit xlblk_exit(void)
9f27ee59 2163{
8605067f
JB
2164 xenbus_unregister_driver(&blkfront_driver);
2165 unregister_blkdev(XENVBD_MAJOR, DEV_NAME);
2166 kfree(minors);
9f27ee59
JF
2167}
2168module_exit(xlblk_exit);
2169
2170MODULE_DESCRIPTION("Xen virtual block device frontend");
2171MODULE_LICENSE("GPL");
2172MODULE_ALIAS_BLOCKDEV_MAJOR(XENVBD_MAJOR);
d2f0c52b 2173MODULE_ALIAS("xen:vbd");
4f93f09b 2174MODULE_ALIAS("xenblk");