]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - drivers/block/xen-blkfront.c
Merge branch 'for-4.8/core' of git://git.kernel.dk/linux-block
[mirror_ubuntu-bionic-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>
907c3eb1 40#include <linux/blk-mq.h>
597592d9 41#include <linux/hdreg.h>
440a01a7 42#include <linux/cdrom.h>
9f27ee59 43#include <linux/module.h>
5a0e3ad6 44#include <linux/slab.h>
2a48fc0a 45#include <linux/mutex.h>
9e973e64 46#include <linux/scatterlist.h>
34ae2e47 47#include <linux/bitmap.h>
155b7edb 48#include <linux/list.h>
9f27ee59 49
1ccbf534 50#include <xen/xen.h>
9f27ee59
JF
51#include <xen/xenbus.h>
52#include <xen/grant_table.h>
53#include <xen/events.h>
54#include <xen/page.h>
c1c5413a 55#include <xen/platform_pci.h>
9f27ee59
JF
56
57#include <xen/interface/grant_table.h>
58#include <xen/interface/io/blkif.h>
3e334239 59#include <xen/interface/io/protocols.h>
9f27ee59
JF
60
61#include <asm/xen/hypervisor.h>
62
6cc56833
JG
63/*
64 * The minimal size of segment supported by the block framework is PAGE_SIZE.
65 * When Linux is using a different page size than Xen, it may not be possible
66 * to put all the data in a single segment.
67 * This can happen when the backend doesn't support indirect descriptor and
68 * therefore the maximum amount of data that a request can carry is
69 * BLKIF_MAX_SEGMENTS_PER_REQUEST * XEN_PAGE_SIZE = 44KB
70 *
71 * Note that we only support one extra request. So the Linux page size
72 * should be <= ( 2 * BLKIF_MAX_SEGMENTS_PER_REQUEST * XEN_PAGE_SIZE) =
73 * 88KB.
74 */
75#define HAS_EXTRA_REQ (BLKIF_MAX_SEGMENTS_PER_REQUEST < XEN_PFN_PER_PAGE)
76
9f27ee59
JF
77enum blkif_state {
78 BLKIF_STATE_DISCONNECTED,
79 BLKIF_STATE_CONNECTED,
80 BLKIF_STATE_SUSPENDED,
81};
82
0a8704a5
RPM
83struct grant {
84 grant_ref_t gref;
a7a6df22 85 struct page *page;
155b7edb 86 struct list_head node;
0a8704a5
RPM
87};
88
6cc56833
JG
89enum blk_req_status {
90 REQ_WAITING,
91 REQ_DONE,
92 REQ_ERROR,
93 REQ_EOPNOTSUPP,
94};
95
9f27ee59
JF
96struct blk_shadow {
97 struct blkif_request req;
a945b980 98 struct request *request;
402b27f9
RPM
99 struct grant **grants_used;
100 struct grant **indirect_grants;
b7649158 101 struct scatterlist *sg;
c004a6fe 102 unsigned int num_sg;
6cc56833
JG
103 enum blk_req_status status;
104
105 #define NO_ASSOCIATED_ID ~0UL
106 /*
107 * Id of the sibling if we ever need 2 requests when handling a
108 * block I/O request
109 */
110 unsigned long associated_id;
402b27f9
RPM
111};
112
113struct split_bio {
114 struct bio *bio;
115 atomic_t pending;
9f27ee59
JF
116};
117
2a48fc0a 118static DEFINE_MUTEX(blkfront_mutex);
83d5cde4 119static const struct block_device_operations xlvbd_block_fops;
9f27ee59 120
402b27f9
RPM
121/*
122 * Maximum number of segments in indirect requests, the actual value used by
123 * the frontend driver is the minimum of this value and the value provided
124 * by the backend driver.
125 */
126
127static unsigned int xen_blkif_max_segments = 32;
14e710fe
JB
128module_param_named(max_indirect_segments, xen_blkif_max_segments, uint,
129 S_IRUGO);
130MODULE_PARM_DESC(max_indirect_segments,
131 "Maximum amount of segments in indirect requests (default is 32)");
402b27f9 132
28d949bc
BL
133static unsigned int xen_blkif_max_queues = 4;
134module_param_named(max_queues, xen_blkif_max_queues, uint, S_IRUGO);
135MODULE_PARM_DESC(max_queues, "Maximum number of hardware queues/rings used per virtual disk");
136
86839c56
BL
137/*
138 * Maximum order of pages to be used for the shared ring between front and
139 * backend, 4KB page granularity is used.
140 */
141static unsigned int xen_blkif_max_ring_order;
142module_param_named(max_ring_page_order, xen_blkif_max_ring_order, int, S_IRUGO);
143MODULE_PARM_DESC(max_ring_page_order, "Maximum order of pages to be used for the shared ring");
144
c004a6fe
JG
145#define BLK_RING_SIZE(info) \
146 __CONST_RING_SIZE(blkif, XEN_PAGE_SIZE * (info)->nr_ring_pages)
147
148#define BLK_MAX_RING_SIZE \
9cce2914 149 __CONST_RING_SIZE(blkif, XEN_PAGE_SIZE * XENBUS_MAX_RING_GRANTS)
c004a6fe 150
86839c56 151/*
6f03a7ff
KRW
152 * ring-ref%u i=(-1UL) would take 11 characters + 'ring-ref' is 8, so 19
153 * characters are enough. Define to 20 to keep consistent with backend.
86839c56
BL
154 */
155#define RINGREF_NAME_LEN (20)
28d949bc
BL
156/*
157 * queue-%u would take 7 + 10(UINT_MAX) = 17 characters.
158 */
159#define QUEUE_NAME_LEN (17)
9f27ee59 160
81f35161
BL
161/*
162 * Per-ring info.
163 * Every blkfront device can associate with one or more blkfront_ring_info,
164 * depending on how many hardware queues/rings to be used.
165 */
166struct blkfront_ring_info {
11659569
BL
167 /* Lock to protect data in every ring buffer. */
168 spinlock_t ring_lock;
81f35161
BL
169 struct blkif_front_ring ring;
170 unsigned int ring_ref[XENBUS_MAX_RING_GRANTS];
171 unsigned int evtchn, irq;
172 struct work_struct work;
173 struct gnttab_free_callback callback;
174 struct blk_shadow shadow[BLK_MAX_RING_SIZE];
175 struct list_head indirect_pages;
73716df7
BL
176 struct list_head grants;
177 unsigned int persistent_gnts_c;
81f35161
BL
178 unsigned long shadow_free;
179 struct blkfront_info *dev_info;
180};
181
9f27ee59
JF
182/*
183 * We have one of these per vbd, whether ide, scsi or 'other'. They
184 * hang in private_data off the gendisk structure. We may end up
185 * putting all kinds of interesting stuff here :-)
186 */
187struct blkfront_info
188{
b70f5fa0 189 struct mutex mutex;
9f27ee59 190 struct xenbus_device *xbdev;
9f27ee59
JF
191 struct gendisk *gd;
192 int vdevice;
193 blkif_vdev_t handle;
194 enum blkif_state connected;
3df0e505 195 /* Number of pages per ring buffer. */
86839c56 196 unsigned int nr_ring_pages;
9f27ee59 197 struct request_queue *rq;
4913efe4 198 unsigned int feature_flush;
a418090a 199 unsigned int feature_fua;
5ea42986
KRW
200 unsigned int feature_discard:1;
201 unsigned int feature_secdiscard:1;
ed30bf31
LD
202 unsigned int discard_granularity;
203 unsigned int discard_alignment;
0a8704a5 204 unsigned int feature_persistent:1;
c004a6fe 205 /* Number of 4KB segments handled */
402b27f9 206 unsigned int max_indirect_segments;
1d78d705 207 int is_ready;
907c3eb1 208 struct blk_mq_tag_set tag_set;
3df0e505
BL
209 struct blkfront_ring_info *rinfo;
210 unsigned int nr_rings;
7b427a59
BL
211 /* Save uncomplete reqs and bios for migration. */
212 struct list_head requests;
213 struct bio_list bio_list;
9f27ee59
JF
214};
215
0e345826
JB
216static unsigned int nr_minors;
217static unsigned long *minors;
218static DEFINE_SPINLOCK(minor_lock);
219
9f27ee59
JF
220#define GRANT_INVALID_REF 0
221
222#define PARTS_PER_DISK 16
9246b5f0 223#define PARTS_PER_EXT_DISK 256
9f27ee59
JF
224
225#define BLKIF_MAJOR(dev) ((dev)>>8)
226#define BLKIF_MINOR(dev) ((dev) & 0xff)
227
9246b5f0
CL
228#define EXT_SHIFT 28
229#define EXTENDED (1<<EXT_SHIFT)
230#define VDEV_IS_EXTENDED(dev) ((dev)&(EXTENDED))
231#define BLKIF_MINOR_EXT(dev) ((dev)&(~EXTENDED))
c80a4209
SS
232#define EMULATED_HD_DISK_MINOR_OFFSET (0)
233#define EMULATED_HD_DISK_NAME_OFFSET (EMULATED_HD_DISK_MINOR_OFFSET / 256)
196cfe2a
SB
234#define EMULATED_SD_DISK_MINOR_OFFSET (0)
235#define EMULATED_SD_DISK_NAME_OFFSET (EMULATED_SD_DISK_MINOR_OFFSET / 256)
9f27ee59 236
9246b5f0 237#define DEV_NAME "xvd" /* name in /dev */
9f27ee59 238
c004a6fe
JG
239/*
240 * Grants are always the same size as a Xen page (i.e 4KB).
241 * A physical segment is always the same size as a Linux page.
242 * Number of grants per physical segment
243 */
244#define GRANTS_PER_PSEG (PAGE_SIZE / XEN_PAGE_SIZE)
245
246#define GRANTS_PER_INDIRECT_FRAME \
247 (XEN_PAGE_SIZE / sizeof(struct blkif_request_segment))
248
249#define PSEGS_PER_INDIRECT_FRAME \
250 (GRANTS_INDIRECT_FRAME / GRANTS_PSEGS)
251
252#define INDIRECT_GREFS(_grants) \
253 DIV_ROUND_UP(_grants, GRANTS_PER_INDIRECT_FRAME)
254
255#define GREFS(_psegs) ((_psegs) * GRANTS_PER_PSEG)
402b27f9 256
81f35161 257static int blkfront_setup_indirect(struct blkfront_ring_info *rinfo);
3df0e505 258static void blkfront_gather_backend_features(struct blkfront_info *info);
402b27f9 259
81f35161 260static int get_id_from_freelist(struct blkfront_ring_info *rinfo)
9f27ee59 261{
81f35161
BL
262 unsigned long free = rinfo->shadow_free;
263
264 BUG_ON(free >= BLK_RING_SIZE(rinfo->dev_info));
265 rinfo->shadow_free = rinfo->shadow[free].req.u.rw.id;
266 rinfo->shadow[free].req.u.rw.id = 0x0fffffee; /* debug */
9f27ee59
JF
267 return free;
268}
269
81f35161 270static int add_id_to_freelist(struct blkfront_ring_info *rinfo,
6f03a7ff 271 unsigned long id)
9f27ee59 272{
81f35161 273 if (rinfo->shadow[id].req.u.rw.id != id)
6878c32e 274 return -EINVAL;
81f35161 275 if (rinfo->shadow[id].request == NULL)
6878c32e 276 return -EINVAL;
81f35161
BL
277 rinfo->shadow[id].req.u.rw.id = rinfo->shadow_free;
278 rinfo->shadow[id].request = NULL;
279 rinfo->shadow_free = id;
6878c32e 280 return 0;
9f27ee59
JF
281}
282
81f35161 283static int fill_grant_buffer(struct blkfront_ring_info *rinfo, int num)
9c1e050c 284{
81f35161 285 struct blkfront_info *info = rinfo->dev_info;
9c1e050c
RPM
286 struct page *granted_page;
287 struct grant *gnt_list_entry, *n;
288 int i = 0;
289
6f03a7ff 290 while (i < num) {
9c1e050c
RPM
291 gnt_list_entry = kzalloc(sizeof(struct grant), GFP_NOIO);
292 if (!gnt_list_entry)
293 goto out_of_memory;
294
bfe11d6d
RPM
295 if (info->feature_persistent) {
296 granted_page = alloc_page(GFP_NOIO);
297 if (!granted_page) {
298 kfree(gnt_list_entry);
299 goto out_of_memory;
300 }
a7a6df22 301 gnt_list_entry->page = granted_page;
9c1e050c
RPM
302 }
303
9c1e050c 304 gnt_list_entry->gref = GRANT_INVALID_REF;
73716df7 305 list_add(&gnt_list_entry->node, &rinfo->grants);
9c1e050c
RPM
306 i++;
307 }
308
309 return 0;
310
311out_of_memory:
312 list_for_each_entry_safe(gnt_list_entry, n,
73716df7 313 &rinfo->grants, node) {
9c1e050c 314 list_del(&gnt_list_entry->node);
bfe11d6d 315 if (info->feature_persistent)
a7a6df22 316 __free_page(gnt_list_entry->page);
9c1e050c
RPM
317 kfree(gnt_list_entry);
318 i--;
319 }
320 BUG_ON(i != 0);
321 return -ENOMEM;
322}
323
73716df7 324static struct grant *get_free_grant(struct blkfront_ring_info *rinfo)
9c1e050c
RPM
325{
326 struct grant *gnt_list_entry;
9c1e050c 327
73716df7
BL
328 BUG_ON(list_empty(&rinfo->grants));
329 gnt_list_entry = list_first_entry(&rinfo->grants, struct grant,
4f503fbd 330 node);
9c1e050c
RPM
331 list_del(&gnt_list_entry->node);
332
4f503fbd 333 if (gnt_list_entry->gref != GRANT_INVALID_REF)
73716df7 334 rinfo->persistent_gnts_c--;
4f503fbd
JG
335
336 return gnt_list_entry;
337}
338
339static inline void grant_foreign_access(const struct grant *gnt_list_entry,
340 const struct blkfront_info *info)
341{
342 gnttab_page_grant_foreign_access_ref_one(gnt_list_entry->gref,
343 info->xbdev->otherend_id,
344 gnt_list_entry->page,
345 0);
346}
347
348static struct grant *get_grant(grant_ref_t *gref_head,
349 unsigned long gfn,
73716df7 350 struct blkfront_ring_info *rinfo)
4f503fbd 351{
73716df7
BL
352 struct grant *gnt_list_entry = get_free_grant(rinfo);
353 struct blkfront_info *info = rinfo->dev_info;
4f503fbd
JG
354
355 if (gnt_list_entry->gref != GRANT_INVALID_REF)
9c1e050c 356 return gnt_list_entry;
4f503fbd
JG
357
358 /* Assign a gref to this page */
359 gnt_list_entry->gref = gnttab_claim_grant_reference(gref_head);
360 BUG_ON(gnt_list_entry->gref == -ENOSPC);
361 if (info->feature_persistent)
362 grant_foreign_access(gnt_list_entry, info);
363 else {
364 /* Grant access to the GFN passed by the caller */
365 gnttab_grant_foreign_access_ref(gnt_list_entry->gref,
366 info->xbdev->otherend_id,
367 gfn, 0);
9c1e050c
RPM
368 }
369
4f503fbd
JG
370 return gnt_list_entry;
371}
372
373static struct grant *get_indirect_grant(grant_ref_t *gref_head,
73716df7 374 struct blkfront_ring_info *rinfo)
4f503fbd 375{
73716df7
BL
376 struct grant *gnt_list_entry = get_free_grant(rinfo);
377 struct blkfront_info *info = rinfo->dev_info;
4f503fbd
JG
378
379 if (gnt_list_entry->gref != GRANT_INVALID_REF)
380 return gnt_list_entry;
381
9c1e050c
RPM
382 /* Assign a gref to this page */
383 gnt_list_entry->gref = gnttab_claim_grant_reference(gref_head);
384 BUG_ON(gnt_list_entry->gref == -ENOSPC);
bfe11d6d 385 if (!info->feature_persistent) {
4f503fbd
JG
386 struct page *indirect_page;
387
388 /* Fetch a pre-allocated page to use for indirect grefs */
73716df7
BL
389 BUG_ON(list_empty(&rinfo->indirect_pages));
390 indirect_page = list_first_entry(&rinfo->indirect_pages,
4f503fbd
JG
391 struct page, lru);
392 list_del(&indirect_page->lru);
393 gnt_list_entry->page = indirect_page;
bfe11d6d 394 }
4f503fbd
JG
395 grant_foreign_access(gnt_list_entry, info);
396
9c1e050c
RPM
397 return gnt_list_entry;
398}
399
6878c32e
KRW
400static const char *op_name(int op)
401{
402 static const char *const names[] = {
403 [BLKIF_OP_READ] = "read",
404 [BLKIF_OP_WRITE] = "write",
405 [BLKIF_OP_WRITE_BARRIER] = "barrier",
406 [BLKIF_OP_FLUSH_DISKCACHE] = "flush",
407 [BLKIF_OP_DISCARD] = "discard" };
408
409 if (op < 0 || op >= ARRAY_SIZE(names))
410 return "unknown";
411
412 if (!names[op])
413 return "reserved";
414
415 return names[op];
416}
0e345826
JB
417static int xlbd_reserve_minors(unsigned int minor, unsigned int nr)
418{
419 unsigned int end = minor + nr;
420 int rc;
421
422 if (end > nr_minors) {
423 unsigned long *bitmap, *old;
424
f094148a 425 bitmap = kcalloc(BITS_TO_LONGS(end), sizeof(*bitmap),
0e345826
JB
426 GFP_KERNEL);
427 if (bitmap == NULL)
428 return -ENOMEM;
429
430 spin_lock(&minor_lock);
431 if (end > nr_minors) {
432 old = minors;
433 memcpy(bitmap, minors,
434 BITS_TO_LONGS(nr_minors) * sizeof(*bitmap));
435 minors = bitmap;
436 nr_minors = BITS_TO_LONGS(end) * BITS_PER_LONG;
437 } else
438 old = bitmap;
439 spin_unlock(&minor_lock);
440 kfree(old);
441 }
442
443 spin_lock(&minor_lock);
444 if (find_next_bit(minors, end, minor) >= end) {
34ae2e47 445 bitmap_set(minors, minor, nr);
0e345826
JB
446 rc = 0;
447 } else
448 rc = -EBUSY;
449 spin_unlock(&minor_lock);
450
451 return rc;
452}
453
454static void xlbd_release_minors(unsigned int minor, unsigned int nr)
455{
456 unsigned int end = minor + nr;
457
458 BUG_ON(end > nr_minors);
459 spin_lock(&minor_lock);
34ae2e47 460 bitmap_clear(minors, minor, nr);
0e345826
JB
461 spin_unlock(&minor_lock);
462}
463
9f27ee59
JF
464static void blkif_restart_queue_callback(void *arg)
465{
81f35161
BL
466 struct blkfront_ring_info *rinfo = (struct blkfront_ring_info *)arg;
467 schedule_work(&rinfo->work);
9f27ee59
JF
468}
469
afe42d7d 470static int blkif_getgeo(struct block_device *bd, struct hd_geometry *hg)
597592d9
IC
471{
472 /* We don't have real geometry info, but let's at least return
473 values consistent with the size of the device */
474 sector_t nsect = get_capacity(bd->bd_disk);
475 sector_t cylinders = nsect;
476
477 hg->heads = 0xff;
478 hg->sectors = 0x3f;
479 sector_div(cylinders, hg->heads * hg->sectors);
480 hg->cylinders = cylinders;
481 if ((sector_t)(hg->cylinders + 1) * hg->heads * hg->sectors < nsect)
482 hg->cylinders = 0xffff;
483 return 0;
484}
485
a63c848b 486static int blkif_ioctl(struct block_device *bdev, fmode_t mode,
62aa0054 487 unsigned command, unsigned long argument)
440a01a7 488{
a63c848b 489 struct blkfront_info *info = bdev->bd_disk->private_data;
440a01a7
CL
490 int i;
491
492 dev_dbg(&info->xbdev->dev, "command: 0x%x, argument: 0x%lx\n",
493 command, (long)argument);
494
495 switch (command) {
496 case CDROMMULTISESSION:
497 dev_dbg(&info->xbdev->dev, "FIXME: support multisession CDs later\n");
498 for (i = 0; i < sizeof(struct cdrom_multisession); i++)
499 if (put_user(0, (char __user *)(argument + i)))
500 return -EFAULT;
501 return 0;
502
503 case CDROM_GET_CAPABILITY: {
504 struct gendisk *gd = info->gd;
505 if (gd->flags & GENHD_FL_CD)
506 return 0;
507 return -EINVAL;
508 }
509
510 default:
511 /*printk(KERN_ALERT "ioctl %08x not supported by Xen blkdev\n",
512 command);*/
513 return -EINVAL; /* same return as native Linux */
514 }
515
516 return 0;
517}
518
2e073969
JG
519static unsigned long blkif_ring_get_request(struct blkfront_ring_info *rinfo,
520 struct request *req,
521 struct blkif_request **ring_req)
522{
523 unsigned long id;
524
525 *ring_req = RING_GET_REQUEST(&rinfo->ring, rinfo->ring.req_prod_pvt);
526 rinfo->ring.req_prod_pvt++;
527
528 id = get_id_from_freelist(rinfo);
529 rinfo->shadow[id].request = req;
6cc56833
JG
530 rinfo->shadow[id].status = REQ_WAITING;
531 rinfo->shadow[id].associated_id = NO_ASSOCIATED_ID;
2e073969
JG
532
533 (*ring_req)->u.rw.id = id;
534
535 return id;
536}
537
81f35161 538static int blkif_queue_discard_req(struct request *req, struct blkfront_ring_info *rinfo)
9f27ee59 539{
81f35161 540 struct blkfront_info *info = rinfo->dev_info;
9f27ee59 541 struct blkif_request *ring_req;
9f27ee59 542 unsigned long id;
33204663
JG
543
544 /* Fill out a communications ring structure. */
2e073969 545 id = blkif_ring_get_request(rinfo, req, &ring_req);
33204663
JG
546
547 ring_req->operation = BLKIF_OP_DISCARD;
548 ring_req->u.discard.nr_sectors = blk_rq_sectors(req);
549 ring_req->u.discard.id = id;
550 ring_req->u.discard.sector_number = (blkif_sector_t)blk_rq_pos(req);
551 if ((req->cmd_flags & REQ_SECURE) && info->feature_secdiscard)
552 ring_req->u.discard.flag = BLKIF_DISCARD_SECURE;
553 else
554 ring_req->u.discard.flag = 0;
555
33204663 556 /* Keep a private copy so we can reissue requests when recovering. */
81f35161 557 rinfo->shadow[id].req = *ring_req;
33204663
JG
558
559 return 0;
560}
561
c004a6fe
JG
562struct setup_rw_req {
563 unsigned int grant_idx;
564 struct blkif_request_segment *segments;
81f35161 565 struct blkfront_ring_info *rinfo;
c004a6fe
JG
566 struct blkif_request *ring_req;
567 grant_ref_t gref_head;
568 unsigned int id;
569 /* Only used when persistent grant is used and it's a read request */
570 bool need_copy;
571 unsigned int bvec_off;
572 char *bvec_data;
6cc56833
JG
573
574 bool require_extra_req;
575 struct blkif_request *extra_ring_req;
c004a6fe
JG
576};
577
578static void blkif_setup_rw_req_grant(unsigned long gfn, unsigned int offset,
579 unsigned int len, void *data)
580{
581 struct setup_rw_req *setup = data;
582 int n, ref;
583 struct grant *gnt_list_entry;
9f27ee59 584 unsigned int fsect, lsect;
c004a6fe
JG
585 /* Convenient aliases */
586 unsigned int grant_idx = setup->grant_idx;
587 struct blkif_request *ring_req = setup->ring_req;
81f35161 588 struct blkfront_ring_info *rinfo = setup->rinfo;
6cc56833
JG
589 /*
590 * We always use the shadow of the first request to store the list
591 * of grant associated to the block I/O request. This made the
592 * completion more easy to handle even if the block I/O request is
593 * split.
594 */
81f35161 595 struct blk_shadow *shadow = &rinfo->shadow[setup->id];
c004a6fe 596
6cc56833
JG
597 if (unlikely(setup->require_extra_req &&
598 grant_idx >= BLKIF_MAX_SEGMENTS_PER_REQUEST)) {
599 /*
600 * We are using the second request, setup grant_idx
601 * to be the index of the segment array.
602 */
603 grant_idx -= BLKIF_MAX_SEGMENTS_PER_REQUEST;
604 ring_req = setup->extra_ring_req;
605 }
606
c004a6fe
JG
607 if ((ring_req->operation == BLKIF_OP_INDIRECT) &&
608 (grant_idx % GRANTS_PER_INDIRECT_FRAME == 0)) {
609 if (setup->segments)
610 kunmap_atomic(setup->segments);
611
612 n = grant_idx / GRANTS_PER_INDIRECT_FRAME;
73716df7 613 gnt_list_entry = get_indirect_grant(&setup->gref_head, rinfo);
c004a6fe
JG
614 shadow->indirect_grants[n] = gnt_list_entry;
615 setup->segments = kmap_atomic(gnt_list_entry->page);
616 ring_req->u.indirect.indirect_grefs[n] = gnt_list_entry->gref;
617 }
618
73716df7 619 gnt_list_entry = get_grant(&setup->gref_head, gfn, rinfo);
c004a6fe 620 ref = gnt_list_entry->gref;
6cc56833
JG
621 /*
622 * All the grants are stored in the shadow of the first
623 * request. Therefore we have to use the global index.
624 */
625 shadow->grants_used[setup->grant_idx] = gnt_list_entry;
c004a6fe
JG
626
627 if (setup->need_copy) {
628 void *shared_data;
629
630 shared_data = kmap_atomic(gnt_list_entry->page);
631 /*
632 * this does not wipe data stored outside the
633 * range sg->offset..sg->offset+sg->length.
634 * Therefore, blkback *could* see data from
635 * previous requests. This is OK as long as
636 * persistent grants are shared with just one
637 * domain. It may need refactoring if this
638 * changes
639 */
640 memcpy(shared_data + offset,
641 setup->bvec_data + setup->bvec_off,
642 len);
643
644 kunmap_atomic(shared_data);
645 setup->bvec_off += len;
646 }
647
648 fsect = offset >> 9;
649 lsect = fsect + (len >> 9) - 1;
650 if (ring_req->operation != BLKIF_OP_INDIRECT) {
651 ring_req->u.rw.seg[grant_idx] =
652 (struct blkif_request_segment) {
653 .gref = ref,
654 .first_sect = fsect,
655 .last_sect = lsect };
656 } else {
657 setup->segments[grant_idx % GRANTS_PER_INDIRECT_FRAME] =
658 (struct blkif_request_segment) {
659 .gref = ref,
660 .first_sect = fsect,
661 .last_sect = lsect };
662 }
663
664 (setup->grant_idx)++;
665}
666
6cc56833
JG
667static void blkif_setup_extra_req(struct blkif_request *first,
668 struct blkif_request *second)
669{
670 uint16_t nr_segments = first->u.rw.nr_segments;
671
672 /*
673 * The second request is only present when the first request uses
674 * all its segments. It's always the continuity of the first one.
675 */
676 first->u.rw.nr_segments = BLKIF_MAX_SEGMENTS_PER_REQUEST;
677
678 second->u.rw.nr_segments = nr_segments - BLKIF_MAX_SEGMENTS_PER_REQUEST;
679 second->u.rw.sector_number = first->u.rw.sector_number +
680 (BLKIF_MAX_SEGMENTS_PER_REQUEST * XEN_PAGE_SIZE) / 512;
681
682 second->u.rw.handle = first->u.rw.handle;
683 second->operation = first->operation;
684}
685
81f35161 686static int blkif_queue_rw_req(struct request *req, struct blkfront_ring_info *rinfo)
9f27ee59 687{
81f35161 688 struct blkfront_info *info = rinfo->dev_info;
6cc56833
JG
689 struct blkif_request *ring_req, *extra_ring_req = NULL;
690 unsigned long id, extra_id = NO_ASSOCIATED_ID;
691 bool require_extra_req = false;
c004a6fe
JG
692 int i;
693 struct setup_rw_req setup = {
694 .grant_idx = 0,
695 .segments = NULL,
81f35161 696 .rinfo = rinfo,
c004a6fe
JG
697 .need_copy = rq_data_dir(req) && info->feature_persistent,
698 };
0a8704a5
RPM
699
700 /*
701 * Used to store if we are able to queue the request by just using
702 * existing persistent grants, or if we have to get new grants,
703 * as there are not sufficiently many free.
704 */
9e973e64 705 struct scatterlist *sg;
c004a6fe 706 int num_sg, max_grefs, num_grant;
9f27ee59 707
c004a6fe 708 max_grefs = req->nr_phys_segments * GRANTS_PER_PSEG;
c47206e2
RPM
709 if (max_grefs > BLKIF_MAX_SEGMENTS_PER_REQUEST)
710 /*
711 * If we are using indirect segments we need to account
712 * for the indirect grefs used in the request.
713 */
c004a6fe 714 max_grefs += INDIRECT_GREFS(max_grefs);
402b27f9 715
3df0e505
BL
716 /*
717 * We have to reserve 'max_grefs' grants because persistent
718 * grants are shared by all rings.
719 */
720 if (max_grefs > 0)
721 if (gnttab_alloc_grant_references(max_grefs, &setup.gref_head) < 0) {
0a8704a5 722 gnttab_request_free_callback(
81f35161 723 &rinfo->callback,
0a8704a5 724 blkif_restart_queue_callback,
81f35161 725 rinfo,
402b27f9 726 max_grefs);
0a8704a5
RPM
727 return 1;
728 }
9f27ee59
JF
729
730 /* Fill out a communications ring structure. */
2e073969 731 id = blkif_ring_get_request(rinfo, req, &ring_req);
9f27ee59 732
81f35161 733 num_sg = blk_rq_map_sg(req->q, req, rinfo->shadow[id].sg);
c004a6fe
JG
734 num_grant = 0;
735 /* Calculate the number of grant used */
81f35161 736 for_each_sg(rinfo->shadow[id].sg, sg, num_sg, i)
c004a6fe
JG
737 num_grant += gnttab_count_grant(sg->offset, sg->length);
738
6cc56833
JG
739 require_extra_req = info->max_indirect_segments == 0 &&
740 num_grant > BLKIF_MAX_SEGMENTS_PER_REQUEST;
741 BUG_ON(!HAS_EXTRA_REQ && require_extra_req);
742
81f35161 743 rinfo->shadow[id].num_sg = num_sg;
6cc56833
JG
744 if (num_grant > BLKIF_MAX_SEGMENTS_PER_REQUEST &&
745 likely(!require_extra_req)) {
33204663
JG
746 /*
747 * The indirect operation can only be a BLKIF_OP_READ or
748 * BLKIF_OP_WRITE
749 */
3a5e02ce 750 BUG_ON(req_op(req) == REQ_OP_FLUSH || req->cmd_flags & REQ_FUA);
33204663
JG
751 ring_req->operation = BLKIF_OP_INDIRECT;
752 ring_req->u.indirect.indirect_op = rq_data_dir(req) ?
753 BLKIF_OP_WRITE : BLKIF_OP_READ;
754 ring_req->u.indirect.sector_number = (blkif_sector_t)blk_rq_pos(req);
755 ring_req->u.indirect.handle = info->handle;
c004a6fe 756 ring_req->u.indirect.nr_segments = num_grant;
ed30bf31 757 } else {
33204663
JG
758 ring_req->u.rw.sector_number = (blkif_sector_t)blk_rq_pos(req);
759 ring_req->u.rw.handle = info->handle;
760 ring_req->operation = rq_data_dir(req) ?
761 BLKIF_OP_WRITE : BLKIF_OP_READ;
3a5e02ce 762 if (req_op(req) == REQ_OP_FLUSH || req->cmd_flags & REQ_FUA) {
402b27f9 763 /*
33204663
JG
764 * Ideally we can do an unordered flush-to-disk.
765 * In case the backend onlysupports barriers, use that.
766 * A barrier request a superset of FUA, so we can
767 * implement it the same way. (It's also a FLUSH+FUA,
768 * since it is guaranteed ordered WRT previous writes.)
402b27f9 769 */
a418090a 770 if (info->feature_flush && info->feature_fua)
33204663
JG
771 ring_req->operation =
772 BLKIF_OP_WRITE_BARRIER;
a418090a 773 else if (info->feature_flush)
33204663
JG
774 ring_req->operation =
775 BLKIF_OP_FLUSH_DISKCACHE;
a418090a 776 else
33204663 777 ring_req->operation = 0;
402b27f9 778 }
c004a6fe 779 ring_req->u.rw.nr_segments = num_grant;
6cc56833
JG
780 if (unlikely(require_extra_req)) {
781 extra_id = blkif_ring_get_request(rinfo, req,
782 &extra_ring_req);
783 /*
784 * Only the first request contains the scatter-gather
785 * list.
786 */
787 rinfo->shadow[extra_id].num_sg = 0;
788
789 blkif_setup_extra_req(ring_req, extra_ring_req);
790
791 /* Link the 2 requests together */
792 rinfo->shadow[extra_id].associated_id = id;
793 rinfo->shadow[id].associated_id = extra_id;
794 }
33204663 795 }
0a8704a5 796
c004a6fe
JG
797 setup.ring_req = ring_req;
798 setup.id = id;
6cc56833
JG
799
800 setup.require_extra_req = require_extra_req;
801 if (unlikely(require_extra_req))
802 setup.extra_ring_req = extra_ring_req;
803
81f35161 804 for_each_sg(rinfo->shadow[id].sg, sg, num_sg, i) {
c004a6fe 805 BUG_ON(sg->offset + sg->length > PAGE_SIZE);
0a8704a5 806
c004a6fe
JG
807 if (setup.need_copy) {
808 setup.bvec_off = sg->offset;
809 setup.bvec_data = kmap_atomic(sg_page(sg));
810 }
0a8704a5 811
c004a6fe
JG
812 gnttab_foreach_grant_in_range(sg_page(sg),
813 sg->offset,
814 sg->length,
815 blkif_setup_rw_req_grant,
816 &setup);
0a8704a5 817
c004a6fe
JG
818 if (setup.need_copy)
819 kunmap_atomic(setup.bvec_data);
9f27ee59 820 }
c004a6fe
JG
821 if (setup.segments)
822 kunmap_atomic(setup.segments);
9f27ee59 823
9f27ee59 824 /* Keep a private copy so we can reissue requests when recovering. */
81f35161 825 rinfo->shadow[id].req = *ring_req;
6cc56833
JG
826 if (unlikely(require_extra_req))
827 rinfo->shadow[extra_id].req = *extra_ring_req;
9f27ee59 828
3df0e505 829 if (max_grefs > 0)
c004a6fe 830 gnttab_free_grant_references(setup.gref_head);
9f27ee59
JF
831
832 return 0;
833}
834
33204663
JG
835/*
836 * Generate a Xen blkfront IO request from a blk layer request. Reads
837 * and writes are handled as expected.
838 *
839 * @req: a request struct
840 */
81f35161 841static int blkif_queue_request(struct request *req, struct blkfront_ring_info *rinfo)
33204663 842{
81f35161 843 if (unlikely(rinfo->dev_info->connected != BLKIF_STATE_CONNECTED))
33204663
JG
844 return 1;
845
c2df40df
MC
846 if (unlikely(req_op(req) == REQ_OP_DISCARD ||
847 req->cmd_flags & REQ_SECURE))
81f35161 848 return blkif_queue_discard_req(req, rinfo);
33204663 849 else
81f35161 850 return blkif_queue_rw_req(req, rinfo);
33204663 851}
9f27ee59 852
81f35161 853static inline void flush_requests(struct blkfront_ring_info *rinfo)
9f27ee59
JF
854{
855 int notify;
856
81f35161 857 RING_PUSH_REQUESTS_AND_CHECK_NOTIFY(&rinfo->ring, notify);
9f27ee59
JF
858
859 if (notify)
81f35161 860 notify_remote_via_irq(rinfo->irq);
9f27ee59
JF
861}
862
ad42d391
VK
863static inline bool blkif_request_flush_invalid(struct request *req,
864 struct blkfront_info *info)
0f1ca65e
AA
865{
866 return ((req->cmd_type != REQ_TYPE_FS) ||
3a5e02ce 867 ((req_op(req) == REQ_OP_FLUSH) &&
a418090a 868 !info->feature_flush) ||
ad42d391 869 ((req->cmd_flags & REQ_FUA) &&
a418090a 870 !info->feature_fua));
0f1ca65e
AA
871}
872
907c3eb1 873static int blkif_queue_rq(struct blk_mq_hw_ctx *hctx,
6f03a7ff 874 const struct blk_mq_queue_data *qd)
9f27ee59 875{
11659569 876 unsigned long flags;
2a6f71ad
BL
877 int qid = hctx->queue_num;
878 struct blkfront_info *info = hctx->queue->queuedata;
879 struct blkfront_ring_info *rinfo = NULL;
9f27ee59 880
2a6f71ad
BL
881 BUG_ON(info->nr_rings <= qid);
882 rinfo = &info->rinfo[qid];
907c3eb1 883 blk_mq_start_request(qd->rq);
11659569 884 spin_lock_irqsave(&rinfo->ring_lock, flags);
81f35161 885 if (RING_FULL(&rinfo->ring))
907c3eb1 886 goto out_busy;
9f27ee59 887
81f35161 888 if (blkif_request_flush_invalid(qd->rq, rinfo->dev_info))
907c3eb1 889 goto out_err;
296b2f6a 890
81f35161 891 if (blkif_queue_request(qd->rq, rinfo))
907c3eb1 892 goto out_busy;
296b2f6a 893
81f35161 894 flush_requests(rinfo);
11659569 895 spin_unlock_irqrestore(&rinfo->ring_lock, flags);
907c3eb1 896 return BLK_MQ_RQ_QUEUE_OK;
9f27ee59 897
907c3eb1 898out_err:
11659569 899 spin_unlock_irqrestore(&rinfo->ring_lock, flags);
907c3eb1 900 return BLK_MQ_RQ_QUEUE_ERROR;
9f27ee59 901
907c3eb1 902out_busy:
11659569 903 spin_unlock_irqrestore(&rinfo->ring_lock, flags);
907c3eb1
BL
904 blk_mq_stop_hw_queue(hctx);
905 return BLK_MQ_RQ_QUEUE_BUSY;
9f27ee59
JF
906}
907
907c3eb1
BL
908static struct blk_mq_ops blkfront_mq_ops = {
909 .queue_rq = blkif_queue_rq,
910 .map_queue = blk_mq_map_queue,
911};
912
402b27f9 913static int xlvbd_init_blk_queue(struct gendisk *gd, u16 sector_size,
7c4d7d71 914 unsigned int physical_sector_size,
402b27f9 915 unsigned int segments)
9f27ee59 916{
165125e1 917 struct request_queue *rq;
ed30bf31 918 struct blkfront_info *info = gd->private_data;
9f27ee59 919
907c3eb1
BL
920 memset(&info->tag_set, 0, sizeof(info->tag_set));
921 info->tag_set.ops = &blkfront_mq_ops;
28d949bc 922 info->tag_set.nr_hw_queues = info->nr_rings;
6cc56833
JG
923 if (HAS_EXTRA_REQ && info->max_indirect_segments == 0) {
924 /*
925 * When indirect descriptior is not supported, the I/O request
926 * will be split between multiple request in the ring.
927 * To avoid problems when sending the request, divide by
928 * 2 the depth of the queue.
929 */
930 info->tag_set.queue_depth = BLK_RING_SIZE(info) / 2;
931 } else
932 info->tag_set.queue_depth = BLK_RING_SIZE(info);
907c3eb1
BL
933 info->tag_set.numa_node = NUMA_NO_NODE;
934 info->tag_set.flags = BLK_MQ_F_SHOULD_MERGE | BLK_MQ_F_SG_MERGE;
935 info->tag_set.cmd_size = 0;
936 info->tag_set.driver_data = info;
937
938 if (blk_mq_alloc_tag_set(&info->tag_set))
bde21f73 939 return -EINVAL;
907c3eb1
BL
940 rq = blk_mq_init_queue(&info->tag_set);
941 if (IS_ERR(rq)) {
942 blk_mq_free_tag_set(&info->tag_set);
bde21f73 943 return PTR_ERR(rq);
907c3eb1 944 }
9f27ee59 945
2a6f71ad 946 rq->queuedata = info;
66d352e1 947 queue_flag_set_unlocked(QUEUE_FLAG_VIRT, rq);
9f27ee59 948
ed30bf31
LD
949 if (info->feature_discard) {
950 queue_flag_set_unlocked(QUEUE_FLAG_DISCARD, rq);
951 blk_queue_max_discard_sectors(rq, get_capacity(gd));
952 rq->limits.discard_granularity = info->discard_granularity;
953 rq->limits.discard_alignment = info->discard_alignment;
5ea42986
KRW
954 if (info->feature_secdiscard)
955 queue_flag_set_unlocked(QUEUE_FLAG_SECDISCARD, rq);
ed30bf31
LD
956 }
957
9f27ee59 958 /* Hard sector size and max sectors impersonate the equiv. hardware. */
e1defc4f 959 blk_queue_logical_block_size(rq, sector_size);
7c4d7d71 960 blk_queue_physical_block_size(rq, physical_sector_size);
c004a6fe 961 blk_queue_max_hw_sectors(rq, (segments * XEN_PAGE_SIZE) / 512);
9f27ee59
JF
962
963 /* Each segment in a request is up to an aligned page in size. */
964 blk_queue_segment_boundary(rq, PAGE_SIZE - 1);
965 blk_queue_max_segment_size(rq, PAGE_SIZE);
966
967 /* Ensure a merged request will fit in a single I/O ring slot. */
c004a6fe 968 blk_queue_max_segments(rq, segments / GRANTS_PER_PSEG);
9f27ee59
JF
969
970 /* Make sure buffer addresses are sector-aligned. */
971 blk_queue_dma_alignment(rq, 511);
972
1c91fe1a
IC
973 /* Make sure we don't use bounce buffers. */
974 blk_queue_bounce_limit(rq, BLK_BOUNCE_ANY);
975
9f27ee59
JF
976 gd->queue = rq;
977
978 return 0;
979}
980
a418090a 981static const char *flush_info(struct blkfront_info *info)
fdf9b965 982{
a418090a 983 if (info->feature_flush && info->feature_fua)
fdf9b965 984 return "barrier: enabled;";
a418090a 985 else if (info->feature_flush)
fdf9b965 986 return "flush diskcache: enabled;";
a418090a 987 else
fdf9b965 988 return "barrier or flush: disabled;";
fdf9b965 989}
9f27ee59 990
4913efe4 991static void xlvbd_flush(struct blkfront_info *info)
9f27ee59 992{
a418090a
MC
993 blk_queue_write_cache(info->rq, info->feature_flush ? true : false,
994 info->feature_fua ? true : false);
fdf9b965 995 pr_info("blkfront: %s: %s %s %s %s %s\n",
a418090a 996 info->gd->disk_name, flush_info(info),
fdf9b965
VK
997 "persistent grants:", info->feature_persistent ?
998 "enabled;" : "disabled;", "indirect descriptors:",
999 info->max_indirect_segments ? "enabled;" : "disabled;");
9f27ee59
JF
1000}
1001
c80a4209
SS
1002static int xen_translate_vdev(int vdevice, int *minor, unsigned int *offset)
1003{
1004 int major;
1005 major = BLKIF_MAJOR(vdevice);
1006 *minor = BLKIF_MINOR(vdevice);
1007 switch (major) {
1008 case XEN_IDE0_MAJOR:
1009 *offset = (*minor / 64) + EMULATED_HD_DISK_NAME_OFFSET;
1010 *minor = ((*minor / 64) * PARTS_PER_DISK) +
1011 EMULATED_HD_DISK_MINOR_OFFSET;
1012 break;
1013 case XEN_IDE1_MAJOR:
1014 *offset = (*minor / 64) + 2 + EMULATED_HD_DISK_NAME_OFFSET;
1015 *minor = (((*minor / 64) + 2) * PARTS_PER_DISK) +
1016 EMULATED_HD_DISK_MINOR_OFFSET;
1017 break;
1018 case XEN_SCSI_DISK0_MAJOR:
1019 *offset = (*minor / PARTS_PER_DISK) + EMULATED_SD_DISK_NAME_OFFSET;
1020 *minor = *minor + EMULATED_SD_DISK_MINOR_OFFSET;
1021 break;
1022 case XEN_SCSI_DISK1_MAJOR:
1023 case XEN_SCSI_DISK2_MAJOR:
1024 case XEN_SCSI_DISK3_MAJOR:
1025 case XEN_SCSI_DISK4_MAJOR:
1026 case XEN_SCSI_DISK5_MAJOR:
1027 case XEN_SCSI_DISK6_MAJOR:
1028 case XEN_SCSI_DISK7_MAJOR:
1029 *offset = (*minor / PARTS_PER_DISK) +
1030 ((major - XEN_SCSI_DISK1_MAJOR + 1) * 16) +
1031 EMULATED_SD_DISK_NAME_OFFSET;
1032 *minor = *minor +
1033 ((major - XEN_SCSI_DISK1_MAJOR + 1) * 16 * PARTS_PER_DISK) +
1034 EMULATED_SD_DISK_MINOR_OFFSET;
1035 break;
1036 case XEN_SCSI_DISK8_MAJOR:
1037 case XEN_SCSI_DISK9_MAJOR:
1038 case XEN_SCSI_DISK10_MAJOR:
1039 case XEN_SCSI_DISK11_MAJOR:
1040 case XEN_SCSI_DISK12_MAJOR:
1041 case XEN_SCSI_DISK13_MAJOR:
1042 case XEN_SCSI_DISK14_MAJOR:
1043 case XEN_SCSI_DISK15_MAJOR:
1044 *offset = (*minor / PARTS_PER_DISK) +
1045 ((major - XEN_SCSI_DISK8_MAJOR + 8) * 16) +
1046 EMULATED_SD_DISK_NAME_OFFSET;
1047 *minor = *minor +
1048 ((major - XEN_SCSI_DISK8_MAJOR + 8) * 16 * PARTS_PER_DISK) +
1049 EMULATED_SD_DISK_MINOR_OFFSET;
1050 break;
1051 case XENVBD_MAJOR:
1052 *offset = *minor / PARTS_PER_DISK;
1053 break;
1054 default:
1055 printk(KERN_WARNING "blkfront: your disk configuration is "
1056 "incorrect, please use an xvd device instead\n");
1057 return -ENODEV;
1058 }
1059 return 0;
1060}
9f27ee59 1061
e77c78c0
JB
1062static char *encode_disk_name(char *ptr, unsigned int n)
1063{
1064 if (n >= 26)
1065 ptr = encode_disk_name(ptr, n / 26 - 1);
1066 *ptr = 'a' + n % 26;
1067 return ptr + 1;
1068}
1069
9246b5f0
CL
1070static int xlvbd_alloc_gendisk(blkif_sector_t capacity,
1071 struct blkfront_info *info,
7c4d7d71
SB
1072 u16 vdisk_info, u16 sector_size,
1073 unsigned int physical_sector_size)
9f27ee59
JF
1074{
1075 struct gendisk *gd;
1076 int nr_minors = 1;
c80a4209 1077 int err;
9246b5f0
CL
1078 unsigned int offset;
1079 int minor;
1080 int nr_parts;
e77c78c0 1081 char *ptr;
9f27ee59
JF
1082
1083 BUG_ON(info->gd != NULL);
1084 BUG_ON(info->rq != NULL);
1085
9246b5f0
CL
1086 if ((info->vdevice>>EXT_SHIFT) > 1) {
1087 /* this is above the extended range; something is wrong */
1088 printk(KERN_WARNING "blkfront: vdevice 0x%x is above the extended range; ignoring\n", info->vdevice);
1089 return -ENODEV;
1090 }
1091
1092 if (!VDEV_IS_EXTENDED(info->vdevice)) {
c80a4209
SS
1093 err = xen_translate_vdev(info->vdevice, &minor, &offset);
1094 if (err)
1095 return err;
1096 nr_parts = PARTS_PER_DISK;
9246b5f0
CL
1097 } else {
1098 minor = BLKIF_MINOR_EXT(info->vdevice);
1099 nr_parts = PARTS_PER_EXT_DISK;
c80a4209 1100 offset = minor / nr_parts;
89153b5c 1101 if (xen_hvm_domain() && offset < EMULATED_HD_DISK_NAME_OFFSET + 4)
c80a4209
SS
1102 printk(KERN_WARNING "blkfront: vdevice 0x%x might conflict with "
1103 "emulated IDE disks,\n\t choose an xvd device name"
1104 "from xvde on\n", info->vdevice);
9246b5f0 1105 }
e77c78c0
JB
1106 if (minor >> MINORBITS) {
1107 pr_warn("blkfront: %#x's minor (%#x) out of range; ignoring\n",
1108 info->vdevice, minor);
1109 return -ENODEV;
1110 }
9246b5f0
CL
1111
1112 if ((minor % nr_parts) == 0)
1113 nr_minors = nr_parts;
9f27ee59 1114
0e345826
JB
1115 err = xlbd_reserve_minors(minor, nr_minors);
1116 if (err)
1117 goto out;
1118 err = -ENODEV;
1119
9f27ee59
JF
1120 gd = alloc_disk(nr_minors);
1121 if (gd == NULL)
0e345826 1122 goto release;
9f27ee59 1123
e77c78c0
JB
1124 strcpy(gd->disk_name, DEV_NAME);
1125 ptr = encode_disk_name(gd->disk_name + sizeof(DEV_NAME) - 1, offset);
1126 BUG_ON(ptr >= gd->disk_name + DISK_NAME_LEN);
1127 if (nr_minors > 1)
1128 *ptr = 0;
1129 else
1130 snprintf(ptr, gd->disk_name + DISK_NAME_LEN - ptr,
1131 "%d", minor & (nr_parts - 1));
9f27ee59
JF
1132
1133 gd->major = XENVBD_MAJOR;
1134 gd->first_minor = minor;
1135 gd->fops = &xlvbd_block_fops;
1136 gd->private_data = info;
1137 gd->driverfs_dev = &(info->xbdev->dev);
1138 set_capacity(gd, capacity);
1139
7c4d7d71 1140 if (xlvbd_init_blk_queue(gd, sector_size, physical_sector_size,
402b27f9
RPM
1141 info->max_indirect_segments ? :
1142 BLKIF_MAX_SEGMENTS_PER_REQUEST)) {
9f27ee59 1143 del_gendisk(gd);
0e345826 1144 goto release;
9f27ee59
JF
1145 }
1146
1147 info->rq = gd->queue;
1148 info->gd = gd;
1149
4913efe4 1150 xlvbd_flush(info);
9f27ee59
JF
1151
1152 if (vdisk_info & VDISK_READONLY)
1153 set_disk_ro(gd, 1);
1154
1155 if (vdisk_info & VDISK_REMOVABLE)
1156 gd->flags |= GENHD_FL_REMOVABLE;
1157
1158 if (vdisk_info & VDISK_CDROM)
1159 gd->flags |= GENHD_FL_CD;
1160
1161 return 0;
1162
0e345826
JB
1163 release:
1164 xlbd_release_minors(minor, nr_minors);
9f27ee59
JF
1165 out:
1166 return err;
1167}
1168
a66b5aeb
DS
1169static void xlvbd_release_gendisk(struct blkfront_info *info)
1170{
3df0e505 1171 unsigned int minor, nr_minors, i;
a66b5aeb
DS
1172
1173 if (info->rq == NULL)
1174 return;
1175
a66b5aeb 1176 /* No more blkif_request(). */
907c3eb1 1177 blk_mq_stop_hw_queues(info->rq);
a66b5aeb 1178
3df0e505
BL
1179 for (i = 0; i < info->nr_rings; i++) {
1180 struct blkfront_ring_info *rinfo = &info->rinfo[i];
a66b5aeb 1181
3df0e505
BL
1182 /* No more gnttab callback work. */
1183 gnttab_cancel_free_callback(&rinfo->callback);
1184
1185 /* Flush gnttab callback work. Must be done with no locks held. */
1186 flush_work(&rinfo->work);
1187 }
a66b5aeb
DS
1188
1189 del_gendisk(info->gd);
1190
1191 minor = info->gd->first_minor;
1192 nr_minors = info->gd->minors;
1193 xlbd_release_minors(minor, nr_minors);
1194
1195 blk_cleanup_queue(info->rq);
907c3eb1 1196 blk_mq_free_tag_set(&info->tag_set);
a66b5aeb
DS
1197 info->rq = NULL;
1198
1199 put_disk(info->gd);
1200 info->gd = NULL;
1201}
1202
11659569
BL
1203/* Already hold rinfo->ring_lock. */
1204static inline void kick_pending_request_queues_locked(struct blkfront_ring_info *rinfo)
9f27ee59 1205{
81f35161
BL
1206 if (!RING_FULL(&rinfo->ring))
1207 blk_mq_start_stopped_hw_queues(rinfo->dev_info->rq, true);
9f27ee59
JF
1208}
1209
11659569
BL
1210static void kick_pending_request_queues(struct blkfront_ring_info *rinfo)
1211{
1212 unsigned long flags;
1213
1214 spin_lock_irqsave(&rinfo->ring_lock, flags);
1215 kick_pending_request_queues_locked(rinfo);
1216 spin_unlock_irqrestore(&rinfo->ring_lock, flags);
1217}
1218
9f27ee59
JF
1219static void blkif_restart_queue(struct work_struct *work)
1220{
81f35161 1221 struct blkfront_ring_info *rinfo = container_of(work, struct blkfront_ring_info, work);
9f27ee59 1222
81f35161
BL
1223 if (rinfo->dev_info->connected == BLKIF_STATE_CONNECTED)
1224 kick_pending_request_queues(rinfo);
9f27ee59
JF
1225}
1226
3df0e505 1227static void blkif_free_ring(struct blkfront_ring_info *rinfo)
9f27ee59 1228{
73716df7 1229 struct grant *persistent_gnt, *n;
3df0e505 1230 struct blkfront_info *info = rinfo->dev_info;
402b27f9 1231 int i, j, segs;
0a8704a5 1232
bfe11d6d
RPM
1233 /*
1234 * Remove indirect pages, this only happens when using indirect
1235 * descriptors but not persistent grants
1236 */
81f35161 1237 if (!list_empty(&rinfo->indirect_pages)) {
bfe11d6d
RPM
1238 struct page *indirect_page, *n;
1239
1240 BUG_ON(info->feature_persistent);
81f35161 1241 list_for_each_entry_safe(indirect_page, n, &rinfo->indirect_pages, lru) {
bfe11d6d
RPM
1242 list_del(&indirect_page->lru);
1243 __free_page(indirect_page);
1244 }
1245 }
1246
73716df7
BL
1247 /* Remove all persistent grants. */
1248 if (!list_empty(&rinfo->grants)) {
1249 list_for_each_entry_safe(persistent_gnt, n,
1250 &rinfo->grants, node) {
1251 list_del(&persistent_gnt->node);
1252 if (persistent_gnt->gref != GRANT_INVALID_REF) {
1253 gnttab_end_foreign_access(persistent_gnt->gref,
1254 0, 0UL);
1255 rinfo->persistent_gnts_c--;
1256 }
1257 if (info->feature_persistent)
1258 __free_page(persistent_gnt->page);
1259 kfree(persistent_gnt);
1260 }
1261 }
1262 BUG_ON(rinfo->persistent_gnts_c != 0);
1263
86839c56 1264 for (i = 0; i < BLK_RING_SIZE(info); i++) {
402b27f9
RPM
1265 /*
1266 * Clear persistent grants present in requests already
1267 * on the shared ring
1268 */
81f35161 1269 if (!rinfo->shadow[i].request)
402b27f9
RPM
1270 goto free_shadow;
1271
81f35161
BL
1272 segs = rinfo->shadow[i].req.operation == BLKIF_OP_INDIRECT ?
1273 rinfo->shadow[i].req.u.indirect.nr_segments :
1274 rinfo->shadow[i].req.u.rw.nr_segments;
402b27f9 1275 for (j = 0; j < segs; j++) {
81f35161 1276 persistent_gnt = rinfo->shadow[i].grants_used[j];
402b27f9 1277 gnttab_end_foreign_access(persistent_gnt->gref, 0, 0UL);
bfe11d6d 1278 if (info->feature_persistent)
a7a6df22 1279 __free_page(persistent_gnt->page);
402b27f9
RPM
1280 kfree(persistent_gnt);
1281 }
1282
81f35161 1283 if (rinfo->shadow[i].req.operation != BLKIF_OP_INDIRECT)
402b27f9
RPM
1284 /*
1285 * If this is not an indirect operation don't try to
1286 * free indirect segments
1287 */
1288 goto free_shadow;
1289
1290 for (j = 0; j < INDIRECT_GREFS(segs); j++) {
81f35161 1291 persistent_gnt = rinfo->shadow[i].indirect_grants[j];
402b27f9 1292 gnttab_end_foreign_access(persistent_gnt->gref, 0, 0UL);
a7a6df22 1293 __free_page(persistent_gnt->page);
402b27f9
RPM
1294 kfree(persistent_gnt);
1295 }
1296
1297free_shadow:
81f35161
BL
1298 kfree(rinfo->shadow[i].grants_used);
1299 rinfo->shadow[i].grants_used = NULL;
1300 kfree(rinfo->shadow[i].indirect_grants);
1301 rinfo->shadow[i].indirect_grants = NULL;
1302 kfree(rinfo->shadow[i].sg);
1303 rinfo->shadow[i].sg = NULL;
402b27f9
RPM
1304 }
1305
9f27ee59 1306 /* No more gnttab callback work. */
81f35161 1307 gnttab_cancel_free_callback(&rinfo->callback);
9f27ee59
JF
1308
1309 /* Flush gnttab callback work. Must be done with no locks held. */
81f35161 1310 flush_work(&rinfo->work);
9f27ee59
JF
1311
1312 /* Free resources associated with old device channel. */
86839c56 1313 for (i = 0; i < info->nr_ring_pages; i++) {
81f35161
BL
1314 if (rinfo->ring_ref[i] != GRANT_INVALID_REF) {
1315 gnttab_end_foreign_access(rinfo->ring_ref[i], 0, 0);
1316 rinfo->ring_ref[i] = GRANT_INVALID_REF;
86839c56 1317 }
9f27ee59 1318 }
81f35161
BL
1319 free_pages((unsigned long)rinfo->ring.sring, get_order(info->nr_ring_pages * PAGE_SIZE));
1320 rinfo->ring.sring = NULL;
86839c56 1321
81f35161
BL
1322 if (rinfo->irq)
1323 unbind_from_irqhandler(rinfo->irq, rinfo);
1324 rinfo->evtchn = rinfo->irq = 0;
3df0e505 1325}
9f27ee59 1326
3df0e505
BL
1327static void blkif_free(struct blkfront_info *info, int suspend)
1328{
3df0e505
BL
1329 unsigned int i;
1330
1331 /* Prevent new requests being issued until we fix things up. */
3df0e505
BL
1332 info->connected = suspend ?
1333 BLKIF_STATE_SUSPENDED : BLKIF_STATE_DISCONNECTED;
1334 /* No more blkif_request(). */
1335 if (info->rq)
1336 blk_mq_stop_hw_queues(info->rq);
1337
3df0e505
BL
1338 for (i = 0; i < info->nr_rings; i++)
1339 blkif_free_ring(&info->rinfo[i]);
1340
1341 kfree(info->rinfo);
1342 info->rinfo = NULL;
1343 info->nr_rings = 0;
9f27ee59
JF
1344}
1345
c004a6fe
JG
1346struct copy_from_grant {
1347 const struct blk_shadow *s;
1348 unsigned int grant_idx;
1349 unsigned int bvec_offset;
1350 char *bvec_data;
1351};
1352
1353static void blkif_copy_from_grant(unsigned long gfn, unsigned int offset,
1354 unsigned int len, void *data)
1355{
1356 struct copy_from_grant *info = data;
1357 char *shared_data;
1358 /* Convenient aliases */
1359 const struct blk_shadow *s = info->s;
1360
1361 shared_data = kmap_atomic(s->grants_used[info->grant_idx]->page);
1362
1363 memcpy(info->bvec_data + info->bvec_offset,
1364 shared_data + offset, len);
1365
1366 info->bvec_offset += len;
1367 info->grant_idx++;
1368
1369 kunmap_atomic(shared_data);
1370}
1371
6cc56833
JG
1372static enum blk_req_status blkif_rsp_to_req_status(int rsp)
1373{
1374 switch (rsp)
1375 {
1376 case BLKIF_RSP_OKAY:
1377 return REQ_DONE;
1378 case BLKIF_RSP_EOPNOTSUPP:
1379 return REQ_EOPNOTSUPP;
1380 case BLKIF_RSP_ERROR:
1381 /* Fallthrough. */
1382 default:
1383 return REQ_ERROR;
1384 }
1385}
1386
1387/*
1388 * Get the final status of the block request based on two ring response
1389 */
1390static int blkif_get_final_status(enum blk_req_status s1,
1391 enum blk_req_status s2)
1392{
1393 BUG_ON(s1 == REQ_WAITING);
1394 BUG_ON(s2 == REQ_WAITING);
1395
1396 if (s1 == REQ_ERROR || s2 == REQ_ERROR)
1397 return BLKIF_RSP_ERROR;
1398 else if (s1 == REQ_EOPNOTSUPP || s2 == REQ_EOPNOTSUPP)
1399 return BLKIF_RSP_EOPNOTSUPP;
1400 return BLKIF_RSP_OKAY;
1401}
1402
1403static bool blkif_completion(unsigned long *id,
1404 struct blkfront_ring_info *rinfo,
0a8704a5 1405 struct blkif_response *bret)
9f27ee59 1406{
d62f6918 1407 int i = 0;
b7649158 1408 struct scatterlist *sg;
c004a6fe 1409 int num_sg, num_grant;
81f35161 1410 struct blkfront_info *info = rinfo->dev_info;
6cc56833 1411 struct blk_shadow *s = &rinfo->shadow[*id];
c004a6fe 1412 struct copy_from_grant data = {
c004a6fe
JG
1413 .grant_idx = 0,
1414 };
402b27f9 1415
c004a6fe 1416 num_grant = s->req.operation == BLKIF_OP_INDIRECT ?
402b27f9 1417 s->req.u.indirect.nr_segments : s->req.u.rw.nr_segments;
6cc56833
JG
1418
1419 /* The I/O request may be split in two. */
1420 if (unlikely(s->associated_id != NO_ASSOCIATED_ID)) {
1421 struct blk_shadow *s2 = &rinfo->shadow[s->associated_id];
1422
1423 /* Keep the status of the current response in shadow. */
1424 s->status = blkif_rsp_to_req_status(bret->status);
1425
1426 /* Wait the second response if not yet here. */
1427 if (s2->status == REQ_WAITING)
1428 return 0;
1429
1430 bret->status = blkif_get_final_status(s->status,
1431 s2->status);
1432
1433 /*
1434 * All the grants is stored in the first shadow in order
1435 * to make the completion code simpler.
1436 */
1437 num_grant += s2->req.u.rw.nr_segments;
1438
1439 /*
1440 * The two responses may not come in order. Only the
1441 * first request will store the scatter-gather list.
1442 */
1443 if (s2->num_sg != 0) {
1444 /* Update "id" with the ID of the first response. */
1445 *id = s->associated_id;
1446 s = s2;
1447 }
1448
1449 /*
1450 * We don't need anymore the second request, so recycling
1451 * it now.
1452 */
1453 if (add_id_to_freelist(rinfo, s->associated_id))
1454 WARN(1, "%s: can't recycle the second part (id = %ld) of the request\n",
1455 info->gd->disk_name, s->associated_id);
1456 }
1457
1458 data.s = s;
c004a6fe 1459 num_sg = s->num_sg;
0a8704a5 1460
bfe11d6d 1461 if (bret->operation == BLKIF_OP_READ && info->feature_persistent) {
c004a6fe 1462 for_each_sg(s->sg, sg, num_sg, i) {
b7649158 1463 BUG_ON(sg->offset + sg->length > PAGE_SIZE);
c004a6fe
JG
1464
1465 data.bvec_offset = sg->offset;
1466 data.bvec_data = kmap_atomic(sg_page(sg));
1467
1468 gnttab_foreach_grant_in_range(sg_page(sg),
1469 sg->offset,
1470 sg->length,
1471 blkif_copy_from_grant,
1472 &data);
1473
1474 kunmap_atomic(data.bvec_data);
0a8704a5
RPM
1475 }
1476 }
1477 /* Add the persistent grant into the list of free grants */
c004a6fe 1478 for (i = 0; i < num_grant; i++) {
fbe363c4
RPM
1479 if (gnttab_query_foreign_access(s->grants_used[i]->gref)) {
1480 /*
1481 * If the grant is still mapped by the backend (the
1482 * backend has chosen to make this grant persistent)
1483 * we add it at the head of the list, so it will be
1484 * reused first.
1485 */
bfe11d6d
RPM
1486 if (!info->feature_persistent)
1487 pr_alert_ratelimited("backed has not unmapped grant: %u\n",
1488 s->grants_used[i]->gref);
73716df7
BL
1489 list_add(&s->grants_used[i]->node, &rinfo->grants);
1490 rinfo->persistent_gnts_c++;
fbe363c4
RPM
1491 } else {
1492 /*
1493 * If the grant is not mapped by the backend we end the
1494 * foreign access and add it to the tail of the list,
1495 * so it will not be picked again unless we run out of
1496 * persistent grants.
1497 */
1498 gnttab_end_foreign_access(s->grants_used[i]->gref, 0, 0UL);
1499 s->grants_used[i]->gref = GRANT_INVALID_REF;
73716df7 1500 list_add_tail(&s->grants_used[i]->node, &rinfo->grants);
fbe363c4 1501 }
0a8704a5 1502 }
402b27f9 1503 if (s->req.operation == BLKIF_OP_INDIRECT) {
c004a6fe 1504 for (i = 0; i < INDIRECT_GREFS(num_grant); i++) {
fbe363c4 1505 if (gnttab_query_foreign_access(s->indirect_grants[i]->gref)) {
bfe11d6d
RPM
1506 if (!info->feature_persistent)
1507 pr_alert_ratelimited("backed has not unmapped grant: %u\n",
1508 s->indirect_grants[i]->gref);
73716df7
BL
1509 list_add(&s->indirect_grants[i]->node, &rinfo->grants);
1510 rinfo->persistent_gnts_c++;
fbe363c4 1511 } else {
bfe11d6d
RPM
1512 struct page *indirect_page;
1513
fbe363c4 1514 gnttab_end_foreign_access(s->indirect_grants[i]->gref, 0, 0UL);
bfe11d6d
RPM
1515 /*
1516 * Add the used indirect page back to the list of
1517 * available pages for indirect grefs.
1518 */
7b076750 1519 if (!info->feature_persistent) {
a7a6df22 1520 indirect_page = s->indirect_grants[i]->page;
81f35161 1521 list_add(&indirect_page->lru, &rinfo->indirect_pages);
7b076750 1522 }
fbe363c4 1523 s->indirect_grants[i]->gref = GRANT_INVALID_REF;
73716df7 1524 list_add_tail(&s->indirect_grants[i]->node, &rinfo->grants);
fbe363c4 1525 }
402b27f9
RPM
1526 }
1527 }
6cc56833
JG
1528
1529 return 1;
9f27ee59
JF
1530}
1531
1532static irqreturn_t blkif_interrupt(int irq, void *dev_id)
1533{
1534 struct request *req;
1535 struct blkif_response *bret;
1536 RING_IDX i, rp;
1537 unsigned long flags;
81f35161
BL
1538 struct blkfront_ring_info *rinfo = (struct blkfront_ring_info *)dev_id;
1539 struct blkfront_info *info = rinfo->dev_info;
f4829a9b 1540 int error;
9f27ee59 1541
11659569 1542 if (unlikely(info->connected != BLKIF_STATE_CONNECTED))
9f27ee59 1543 return IRQ_HANDLED;
9f27ee59 1544
11659569 1545 spin_lock_irqsave(&rinfo->ring_lock, flags);
9f27ee59 1546 again:
81f35161 1547 rp = rinfo->ring.sring->rsp_prod;
9f27ee59
JF
1548 rmb(); /* Ensure we see queued responses up to 'rp'. */
1549
81f35161 1550 for (i = rinfo->ring.rsp_cons; i != rp; i++) {
9f27ee59 1551 unsigned long id;
9f27ee59 1552
81f35161 1553 bret = RING_GET_RESPONSE(&rinfo->ring, i);
9f27ee59 1554 id = bret->id;
6878c32e
KRW
1555 /*
1556 * The backend has messed up and given us an id that we would
1557 * never have given to it (we stamp it up to BLK_RING_SIZE -
1558 * look in get_id_from_freelist.
1559 */
86839c56 1560 if (id >= BLK_RING_SIZE(info)) {
6878c32e
KRW
1561 WARN(1, "%s: response to %s has incorrect id (%ld)\n",
1562 info->gd->disk_name, op_name(bret->operation), id);
1563 /* We can't safely get the 'struct request' as
1564 * the id is busted. */
1565 continue;
1566 }
81f35161 1567 req = rinfo->shadow[id].request;
9f27ee59 1568
6cc56833
JG
1569 if (bret->operation != BLKIF_OP_DISCARD) {
1570 /*
1571 * We may need to wait for an extra response if the
1572 * I/O request is split in 2
1573 */
1574 if (!blkif_completion(&id, rinfo, bret))
1575 continue;
1576 }
9f27ee59 1577
81f35161 1578 if (add_id_to_freelist(rinfo, id)) {
6878c32e
KRW
1579 WARN(1, "%s: response to %s (id %ld) couldn't be recycled!\n",
1580 info->gd->disk_name, op_name(bret->operation), id);
1581 continue;
1582 }
9f27ee59 1583
f4829a9b 1584 error = (bret->status == BLKIF_RSP_OKAY) ? 0 : -EIO;
9f27ee59 1585 switch (bret->operation) {
ed30bf31
LD
1586 case BLKIF_OP_DISCARD:
1587 if (unlikely(bret->status == BLKIF_RSP_EOPNOTSUPP)) {
1588 struct request_queue *rq = info->rq;
6878c32e
KRW
1589 printk(KERN_WARNING "blkfront: %s: %s op failed\n",
1590 info->gd->disk_name, op_name(bret->operation));
f4829a9b 1591 error = -EOPNOTSUPP;
ed30bf31 1592 info->feature_discard = 0;
5ea42986 1593 info->feature_secdiscard = 0;
ed30bf31 1594 queue_flag_clear(QUEUE_FLAG_DISCARD, rq);
5ea42986 1595 queue_flag_clear(QUEUE_FLAG_SECDISCARD, rq);
ed30bf31 1596 }
f4829a9b 1597 blk_mq_complete_request(req, error);
ed30bf31 1598 break;
edf6ef59 1599 case BLKIF_OP_FLUSH_DISKCACHE:
9f27ee59
JF
1600 case BLKIF_OP_WRITE_BARRIER:
1601 if (unlikely(bret->status == BLKIF_RSP_EOPNOTSUPP)) {
6878c32e
KRW
1602 printk(KERN_WARNING "blkfront: %s: %s op failed\n",
1603 info->gd->disk_name, op_name(bret->operation));
f4829a9b 1604 error = -EOPNOTSUPP;
dcb8baec
JF
1605 }
1606 if (unlikely(bret->status == BLKIF_RSP_ERROR &&
81f35161 1607 rinfo->shadow[id].req.u.rw.nr_segments == 0)) {
6878c32e
KRW
1608 printk(KERN_WARNING "blkfront: %s: empty %s op failed\n",
1609 info->gd->disk_name, op_name(bret->operation));
f4829a9b 1610 error = -EOPNOTSUPP;
dcb8baec 1611 }
f4829a9b
CH
1612 if (unlikely(error)) {
1613 if (error == -EOPNOTSUPP)
1614 error = 0;
a418090a 1615 info->feature_fua = 0;
4913efe4
TH
1616 info->feature_flush = 0;
1617 xlvbd_flush(info);
9f27ee59
JF
1618 }
1619 /* fall through */
1620 case BLKIF_OP_READ:
1621 case BLKIF_OP_WRITE:
1622 if (unlikely(bret->status != BLKIF_RSP_OKAY))
1623 dev_dbg(&info->xbdev->dev, "Bad return from blkdev data "
1624 "request: %x\n", bret->status);
1625
f4829a9b 1626 blk_mq_complete_request(req, error);
9f27ee59
JF
1627 break;
1628 default:
1629 BUG();
1630 }
1631 }
1632
81f35161 1633 rinfo->ring.rsp_cons = i;
9f27ee59 1634
81f35161 1635 if (i != rinfo->ring.req_prod_pvt) {
9f27ee59 1636 int more_to_do;
81f35161 1637 RING_FINAL_CHECK_FOR_RESPONSES(&rinfo->ring, more_to_do);
9f27ee59
JF
1638 if (more_to_do)
1639 goto again;
1640 } else
81f35161 1641 rinfo->ring.sring->rsp_event = i + 1;
9f27ee59 1642
11659569 1643 kick_pending_request_queues_locked(rinfo);
9f27ee59 1644
11659569 1645 spin_unlock_irqrestore(&rinfo->ring_lock, flags);
9f27ee59
JF
1646
1647 return IRQ_HANDLED;
1648}
1649
1650
1651static int setup_blkring(struct xenbus_device *dev,
81f35161 1652 struct blkfront_ring_info *rinfo)
9f27ee59
JF
1653{
1654 struct blkif_sring *sring;
86839c56 1655 int err, i;
81f35161 1656 struct blkfront_info *info = rinfo->dev_info;
c004a6fe 1657 unsigned long ring_size = info->nr_ring_pages * XEN_PAGE_SIZE;
9cce2914 1658 grant_ref_t gref[XENBUS_MAX_RING_GRANTS];
9f27ee59 1659
86839c56 1660 for (i = 0; i < info->nr_ring_pages; i++)
81f35161 1661 rinfo->ring_ref[i] = GRANT_INVALID_REF;
9f27ee59 1662
86839c56
BL
1663 sring = (struct blkif_sring *)__get_free_pages(GFP_NOIO | __GFP_HIGH,
1664 get_order(ring_size));
9f27ee59
JF
1665 if (!sring) {
1666 xenbus_dev_fatal(dev, -ENOMEM, "allocating shared ring");
1667 return -ENOMEM;
1668 }
1669 SHARED_RING_INIT(sring);
81f35161 1670 FRONT_RING_INIT(&rinfo->ring, sring, ring_size);
9e973e64 1671
81f35161 1672 err = xenbus_grant_ring(dev, rinfo->ring.sring, info->nr_ring_pages, gref);
9f27ee59 1673 if (err < 0) {
86839c56 1674 free_pages((unsigned long)sring, get_order(ring_size));
81f35161 1675 rinfo->ring.sring = NULL;
9f27ee59
JF
1676 goto fail;
1677 }
86839c56 1678 for (i = 0; i < info->nr_ring_pages; i++)
81f35161 1679 rinfo->ring_ref[i] = gref[i];
9f27ee59 1680
81f35161 1681 err = xenbus_alloc_evtchn(dev, &rinfo->evtchn);
9f27ee59
JF
1682 if (err)
1683 goto fail;
1684
81f35161
BL
1685 err = bind_evtchn_to_irqhandler(rinfo->evtchn, blkif_interrupt, 0,
1686 "blkif", rinfo);
9f27ee59
JF
1687 if (err <= 0) {
1688 xenbus_dev_fatal(dev, err,
1689 "bind_evtchn_to_irqhandler failed");
1690 goto fail;
1691 }
81f35161 1692 rinfo->irq = err;
9f27ee59
JF
1693
1694 return 0;
1695fail:
1696 blkif_free(info, 0);
1697 return err;
1698}
1699
28d949bc
BL
1700/*
1701 * Write out per-ring/queue nodes including ring-ref and event-channel, and each
1702 * ring buffer may have multi pages depending on ->nr_ring_pages.
1703 */
1704static int write_per_ring_nodes(struct xenbus_transaction xbt,
1705 struct blkfront_ring_info *rinfo, const char *dir)
1706{
1707 int err;
1708 unsigned int i;
1709 const char *message = NULL;
1710 struct blkfront_info *info = rinfo->dev_info;
1711
1712 if (info->nr_ring_pages == 1) {
1713 err = xenbus_printf(xbt, dir, "ring-ref", "%u", rinfo->ring_ref[0]);
1714 if (err) {
1715 message = "writing ring-ref";
1716 goto abort_transaction;
1717 }
1718 } else {
1719 for (i = 0; i < info->nr_ring_pages; i++) {
1720 char ring_ref_name[RINGREF_NAME_LEN];
1721
1722 snprintf(ring_ref_name, RINGREF_NAME_LEN, "ring-ref%u", i);
1723 err = xenbus_printf(xbt, dir, ring_ref_name,
1724 "%u", rinfo->ring_ref[i]);
1725 if (err) {
1726 message = "writing ring-ref";
1727 goto abort_transaction;
1728 }
1729 }
1730 }
1731
1732 err = xenbus_printf(xbt, dir, "event-channel", "%u", rinfo->evtchn);
1733 if (err) {
1734 message = "writing event-channel";
1735 goto abort_transaction;
1736 }
1737
1738 return 0;
1739
1740abort_transaction:
1741 xenbus_transaction_end(xbt, 1);
1742 if (message)
1743 xenbus_dev_fatal(info->xbdev, err, "%s", message);
1744
1745 return err;
1746}
9f27ee59
JF
1747
1748/* Common code used when first setting up, and when resuming. */
203fd61f 1749static int talk_to_blkback(struct xenbus_device *dev,
9f27ee59
JF
1750 struct blkfront_info *info)
1751{
1752 const char *message = NULL;
1753 struct xenbus_transaction xbt;
28d949bc
BL
1754 int err;
1755 unsigned int i, max_page_order = 0;
86839c56
BL
1756 unsigned int ring_page_order = 0;
1757
1758 err = xenbus_scanf(XBT_NIL, info->xbdev->otherend,
1759 "max-ring-page-order", "%u", &max_page_order);
1760 if (err != 1)
1761 info->nr_ring_pages = 1;
1762 else {
1763 ring_page_order = min(xen_blkif_max_ring_order, max_page_order);
1764 info->nr_ring_pages = 1 << ring_page_order;
1765 }
9f27ee59 1766
3df0e505 1767 for (i = 0; i < info->nr_rings; i++) {
28d949bc
BL
1768 struct blkfront_ring_info *rinfo = &info->rinfo[i];
1769
3df0e505
BL
1770 /* Create shared ring, alloc event channel. */
1771 err = setup_blkring(dev, rinfo);
1772 if (err)
1773 goto destroy_blkring;
1774 }
9f27ee59
JF
1775
1776again:
1777 err = xenbus_transaction_start(&xbt);
1778 if (err) {
1779 xenbus_dev_fatal(dev, err, "starting transaction");
1780 goto destroy_blkring;
1781 }
1782
28d949bc
BL
1783 if (info->nr_ring_pages > 1) {
1784 err = xenbus_printf(xbt, dev->nodename, "ring-page-order", "%u",
1785 ring_page_order);
1786 if (err) {
1787 message = "writing ring-page-order";
1788 goto abort_transaction;
1789 }
1790 }
3df0e505 1791
28d949bc
BL
1792 /* We already got the number of queues/rings in _probe */
1793 if (info->nr_rings == 1) {
1794 err = write_per_ring_nodes(xbt, &info->rinfo[0], dev->nodename);
1795 if (err)
1796 goto destroy_blkring;
1797 } else {
1798 char *path;
1799 size_t pathsize;
3df0e505 1800
28d949bc
BL
1801 err = xenbus_printf(xbt, dev->nodename, "multi-queue-num-queues", "%u",
1802 info->nr_rings);
3df0e505 1803 if (err) {
28d949bc 1804 message = "writing multi-queue-num-queues";
3df0e505
BL
1805 goto abort_transaction;
1806 }
28d949bc
BL
1807
1808 pathsize = strlen(dev->nodename) + QUEUE_NAME_LEN;
1809 path = kmalloc(pathsize, GFP_KERNEL);
1810 if (!path) {
1811 err = -ENOMEM;
1812 message = "ENOMEM while writing ring references";
1813 goto abort_transaction;
1814 }
1815
1816 for (i = 0; i < info->nr_rings; i++) {
1817 memset(path, 0, pathsize);
1818 snprintf(path, pathsize, "%s/queue-%u", dev->nodename, i);
1819 err = write_per_ring_nodes(xbt, &info->rinfo[i], path);
1820 if (err) {
1821 kfree(path);
1822 goto destroy_blkring;
1823 }
1824 }
1825 kfree(path);
9f27ee59 1826 }
3e334239
MA
1827 err = xenbus_printf(xbt, dev->nodename, "protocol", "%s",
1828 XEN_IO_PROTO_ABI_NATIVE);
1829 if (err) {
1830 message = "writing protocol";
1831 goto abort_transaction;
1832 }
0a8704a5 1833 err = xenbus_printf(xbt, dev->nodename,
cb5bd4d1 1834 "feature-persistent", "%u", 1);
0a8704a5
RPM
1835 if (err)
1836 dev_warn(&dev->dev,
1837 "writing persistent grants feature to xenbus");
9f27ee59
JF
1838
1839 err = xenbus_transaction_end(xbt, 0);
1840 if (err) {
1841 if (err == -EAGAIN)
1842 goto again;
1843 xenbus_dev_fatal(dev, err, "completing transaction");
1844 goto destroy_blkring;
1845 }
1846
3df0e505
BL
1847 for (i = 0; i < info->nr_rings; i++) {
1848 unsigned int j;
28d949bc 1849 struct blkfront_ring_info *rinfo = &info->rinfo[i];
3df0e505
BL
1850
1851 for (j = 0; j < BLK_RING_SIZE(info); j++)
1852 rinfo->shadow[j].req.u.rw.id = j + 1;
1853 rinfo->shadow[BLK_RING_SIZE(info)-1].req.u.rw.id = 0x0fffffff;
1854 }
9f27ee59
JF
1855 xenbus_switch_state(dev, XenbusStateInitialised);
1856
1857 return 0;
1858
1859 abort_transaction:
1860 xenbus_transaction_end(xbt, 1);
1861 if (message)
1862 xenbus_dev_fatal(dev, err, "%s", message);
1863 destroy_blkring:
1864 blkif_free(info, 0);
3df0e505 1865
c31ecf6c
KRW
1866 kfree(info);
1867 dev_set_drvdata(&dev->dev, NULL);
1868
9f27ee59
JF
1869 return err;
1870}
1871
3db70a85
BL
1872static int negotiate_mq(struct blkfront_info *info)
1873{
1874 unsigned int backend_max_queues = 0;
1875 int err;
1876 unsigned int i;
1877
1878 BUG_ON(info->nr_rings);
1879
1880 /* Check if backend supports multiple queues. */
1881 err = xenbus_scanf(XBT_NIL, info->xbdev->otherend,
1882 "multi-queue-max-queues", "%u", &backend_max_queues);
1883 if (err < 0)
1884 backend_max_queues = 1;
1885
1886 info->nr_rings = min(backend_max_queues, xen_blkif_max_queues);
1887 /* We need at least one ring. */
1888 if (!info->nr_rings)
1889 info->nr_rings = 1;
1890
1891 info->rinfo = kzalloc(sizeof(struct blkfront_ring_info) * info->nr_rings, GFP_KERNEL);
1892 if (!info->rinfo) {
1893 xenbus_dev_fatal(info->xbdev, -ENOMEM, "allocating ring_info structure");
1894 return -ENOMEM;
1895 }
1896
1897 for (i = 0; i < info->nr_rings; i++) {
1898 struct blkfront_ring_info *rinfo;
1899
1900 rinfo = &info->rinfo[i];
1901 INIT_LIST_HEAD(&rinfo->indirect_pages);
1902 INIT_LIST_HEAD(&rinfo->grants);
1903 rinfo->dev_info = info;
1904 INIT_WORK(&rinfo->work, blkif_restart_queue);
1905 spin_lock_init(&rinfo->ring_lock);
1906 }
1907 return 0;
1908}
9f27ee59
JF
1909/**
1910 * Entry point to this code when a new device is created. Allocate the basic
1911 * structures and the ring buffer for communication with the backend, and
1912 * inform the backend of the appropriate details for those. Switch to
1913 * Initialised state.
1914 */
1915static int blkfront_probe(struct xenbus_device *dev,
1916 const struct xenbus_device_id *id)
1917{
86839c56 1918 int err, vdevice;
9f27ee59
JF
1919 struct blkfront_info *info;
1920
1921 /* FIXME: Use dynamic device id if this is not set. */
1922 err = xenbus_scanf(XBT_NIL, dev->nodename,
1923 "virtual-device", "%i", &vdevice);
1924 if (err != 1) {
9246b5f0
CL
1925 /* go looking in the extended area instead */
1926 err = xenbus_scanf(XBT_NIL, dev->nodename, "virtual-device-ext",
1927 "%i", &vdevice);
1928 if (err != 1) {
1929 xenbus_dev_fatal(dev, err, "reading virtual-device");
1930 return err;
1931 }
9f27ee59
JF
1932 }
1933
b98a409b
SS
1934 if (xen_hvm_domain()) {
1935 char *type;
1936 int len;
1937 /* no unplug has been done: do not hook devices != xen vbds */
51c71a3b 1938 if (xen_has_pv_and_legacy_disk_devices()) {
b98a409b
SS
1939 int major;
1940
1941 if (!VDEV_IS_EXTENDED(vdevice))
1942 major = BLKIF_MAJOR(vdevice);
1943 else
1944 major = XENVBD_MAJOR;
1945
1946 if (major != XENVBD_MAJOR) {
1947 printk(KERN_INFO
1948 "%s: HVM does not support vbd %d as xen block device\n",
02f1f217 1949 __func__, vdevice);
b98a409b
SS
1950 return -ENODEV;
1951 }
1952 }
1953 /* do not create a PV cdrom device if we are an HVM guest */
1954 type = xenbus_read(XBT_NIL, dev->nodename, "device-type", &len);
1955 if (IS_ERR(type))
1956 return -ENODEV;
1957 if (strncmp(type, "cdrom", 5) == 0) {
1958 kfree(type);
c1c5413a
SS
1959 return -ENODEV;
1960 }
b98a409b 1961 kfree(type);
c1c5413a 1962 }
9f27ee59
JF
1963 info = kzalloc(sizeof(*info), GFP_KERNEL);
1964 if (!info) {
1965 xenbus_dev_fatal(dev, -ENOMEM, "allocating info structure");
1966 return -ENOMEM;
1967 }
1968
28d949bc 1969 info->xbdev = dev;
3db70a85
BL
1970 err = negotiate_mq(info);
1971 if (err) {
3df0e505 1972 kfree(info);
3db70a85 1973 return err;
3df0e505 1974 }
81f35161 1975
b70f5fa0 1976 mutex_init(&info->mutex);
9f27ee59
JF
1977 info->vdevice = vdevice;
1978 info->connected = BLKIF_STATE_DISCONNECTED;
9f27ee59 1979
9f27ee59
JF
1980 /* Front end dir is a number, which is used as the id. */
1981 info->handle = simple_strtoul(strrchr(dev->nodename, '/')+1, NULL, 0);
a1b4b12b 1982 dev_set_drvdata(&dev->dev, info);
9f27ee59 1983
9f27ee59
JF
1984 return 0;
1985}
1986
4246a0b6 1987static void split_bio_end(struct bio *bio)
402b27f9
RPM
1988{
1989 struct split_bio *split_bio = bio->bi_private;
1990
402b27f9
RPM
1991 if (atomic_dec_and_test(&split_bio->pending)) {
1992 split_bio->bio->bi_phys_segments = 0;
4246a0b6
CH
1993 split_bio->bio->bi_error = bio->bi_error;
1994 bio_endio(split_bio->bio);
402b27f9
RPM
1995 kfree(split_bio);
1996 }
1997 bio_put(bio);
1998}
9f27ee59
JF
1999
2000static int blkif_recover(struct blkfront_info *info)
2001{
3df0e505 2002 unsigned int i, r_index;
402b27f9 2003 struct request *req, *n;
402b27f9
RPM
2004 int rc;
2005 struct bio *bio, *cloned_bio;
402b27f9
RPM
2006 unsigned int segs, offset;
2007 int pending, size;
2008 struct split_bio *split_bio;
402b27f9 2009
3df0e505 2010 blkfront_gather_backend_features(info);
402b27f9
RPM
2011 segs = info->max_indirect_segments ? : BLKIF_MAX_SEGMENTS_PER_REQUEST;
2012 blk_queue_max_segments(info->rq, segs);
9f27ee59 2013
3df0e505 2014 for (r_index = 0; r_index < info->nr_rings; r_index++) {
7b427a59 2015 struct blkfront_ring_info *rinfo = &info->rinfo[r_index];
3df0e505
BL
2016
2017 rc = blkfront_setup_indirect(rinfo);
7b427a59 2018 if (rc)
3df0e505 2019 return rc;
3df0e505 2020 }
9f27ee59
JF
2021 xenbus_switch_state(info->xbdev, XenbusStateConnected);
2022
9f27ee59
JF
2023 /* Now safe for us to use the shared ring */
2024 info->connected = BLKIF_STATE_CONNECTED;
2025
3df0e505
BL
2026 for (r_index = 0; r_index < info->nr_rings; r_index++) {
2027 struct blkfront_ring_info *rinfo;
2028
2029 rinfo = &info->rinfo[r_index];
2030 /* Kick any other new requests queued since we resumed */
2031 kick_pending_request_queues(rinfo);
2032 }
9f27ee59 2033
7b427a59 2034 list_for_each_entry_safe(req, n, &info->requests, queuelist) {
402b27f9
RPM
2035 /* Requeue pending requests (flush or discard) */
2036 list_del_init(&req->queuelist);
2037 BUG_ON(req->nr_phys_segments > segs);
907c3eb1 2038 blk_mq_requeue_request(req);
402b27f9 2039 }
907c3eb1 2040 blk_mq_kick_requeue_list(info->rq);
9f27ee59 2041
7b427a59 2042 while ((bio = bio_list_pop(&info->bio_list)) != NULL) {
402b27f9
RPM
2043 /* Traverse the list of pending bios and re-queue them */
2044 if (bio_segments(bio) > segs) {
2045 /*
2046 * This bio has more segments than what we can
2047 * handle, we have to split it.
2048 */
2049 pending = (bio_segments(bio) + segs - 1) / segs;
2050 split_bio = kzalloc(sizeof(*split_bio), GFP_NOIO);
2051 BUG_ON(split_bio == NULL);
2052 atomic_set(&split_bio->pending, pending);
2053 split_bio->bio = bio;
2054 for (i = 0; i < pending; i++) {
c004a6fe
JG
2055 offset = (i * segs * XEN_PAGE_SIZE) >> 9;
2056 size = min((unsigned int)(segs * XEN_PAGE_SIZE) >> 9,
4f024f37 2057 (unsigned int)bio_sectors(bio) - offset);
402b27f9
RPM
2058 cloned_bio = bio_clone(bio, GFP_NOIO);
2059 BUG_ON(cloned_bio == NULL);
6678d83f 2060 bio_trim(cloned_bio, offset, size);
402b27f9
RPM
2061 cloned_bio->bi_private = split_bio;
2062 cloned_bio->bi_end_io = split_bio_end;
4e49ea4a 2063 submit_bio(cloned_bio);
402b27f9
RPM
2064 }
2065 /*
2066 * Now we have to wait for all those smaller bios to
2067 * end, so we can also end the "parent" bio.
2068 */
2069 continue;
2070 }
2071 /* We don't need to split this bio */
4e49ea4a 2072 submit_bio(bio);
402b27f9
RPM
2073 }
2074
9f27ee59
JF
2075 return 0;
2076}
2077
2078/**
2079 * We are reconnecting to the backend, due to a suspend/resume, or a backend
2080 * driver restart. We tear down our blkif structure and recreate it, but
2081 * leave the device-layer structures intact so that this is transparent to the
2082 * rest of the kernel.
2083 */
2084static int blkfront_resume(struct xenbus_device *dev)
2085{
a1b4b12b 2086 struct blkfront_info *info = dev_get_drvdata(&dev->dev);
3db70a85 2087 int err = 0;
7b427a59 2088 unsigned int i, j;
9f27ee59
JF
2089
2090 dev_dbg(&dev->dev, "blkfront_resume: %s\n", dev->nodename);
2091
7b427a59
BL
2092 bio_list_init(&info->bio_list);
2093 INIT_LIST_HEAD(&info->requests);
2094 for (i = 0; i < info->nr_rings; i++) {
2095 struct blkfront_ring_info *rinfo = &info->rinfo[i];
2096 struct bio_list merge_bio;
2097 struct blk_shadow *shadow = rinfo->shadow;
2098
2099 for (j = 0; j < BLK_RING_SIZE(info); j++) {
2100 /* Not in use? */
2101 if (!shadow[j].request)
2102 continue;
2103
2104 /*
2105 * Get the bios in the request so we can re-queue them.
2106 */
d05d7f40
LT
2107 if (req_op(shadow[i].request) == REQ_OP_FLUSH ||
2108 req_op(shadow[i].request) == REQ_OP_DISCARD ||
2109 shadow[j].request->cmd_flags & (REQ_FUA | REQ_SECURE)) {
2110
7b427a59
BL
2111 /*
2112 * Flush operations don't contain bios, so
2113 * we need to requeue the whole request
2114 */
2115 list_add(&shadow[j].request->queuelist, &info->requests);
2116 continue;
2117 }
2118 merge_bio.head = shadow[j].request->bio;
2119 merge_bio.tail = shadow[j].request->biotail;
2120 bio_list_merge(&info->bio_list, &merge_bio);
2121 shadow[j].request->bio = NULL;
2122 blk_mq_end_request(shadow[j].request, 0);
2123 }
2124 }
2125
9f27ee59
JF
2126 blkif_free(info, info->connected == BLKIF_STATE_CONNECTED);
2127
3db70a85
BL
2128 err = negotiate_mq(info);
2129 if (err)
2130 return err;
2131
203fd61f 2132 err = talk_to_blkback(dev, info);
2a6f71ad
BL
2133 if (!err)
2134 blk_mq_update_nr_hw_queues(&info->tag_set, info->nr_rings);
402b27f9
RPM
2135
2136 /*
2137 * We have to wait for the backend to switch to
2138 * connected state, since we want to read which
2139 * features it supports.
2140 */
9f27ee59
JF
2141
2142 return err;
2143}
2144
6f03a7ff 2145static void blkfront_closing(struct blkfront_info *info)
b70f5fa0
DS
2146{
2147 struct xenbus_device *xbdev = info->xbdev;
2148 struct block_device *bdev = NULL;
2149
2150 mutex_lock(&info->mutex);
2151
2152 if (xbdev->state == XenbusStateClosing) {
2153 mutex_unlock(&info->mutex);
2154 return;
2155 }
2156
2157 if (info->gd)
2158 bdev = bdget_disk(info->gd, 0);
2159
2160 mutex_unlock(&info->mutex);
2161
2162 if (!bdev) {
2163 xenbus_frontend_closed(xbdev);
2164 return;
2165 }
2166
2167 mutex_lock(&bdev->bd_mutex);
2168
7b32d104 2169 if (bdev->bd_openers) {
b70f5fa0
DS
2170 xenbus_dev_error(xbdev, -EBUSY,
2171 "Device in use; refusing to close");
2172 xenbus_switch_state(xbdev, XenbusStateClosing);
2173 } else {
2174 xlvbd_release_gendisk(info);
2175 xenbus_frontend_closed(xbdev);
2176 }
2177
2178 mutex_unlock(&bdev->bd_mutex);
2179 bdput(bdev);
2180}
9f27ee59 2181
ed30bf31
LD
2182static void blkfront_setup_discard(struct blkfront_info *info)
2183{
2184 int err;
ed30bf31
LD
2185 unsigned int discard_granularity;
2186 unsigned int discard_alignment;
5ea42986 2187 unsigned int discard_secure;
ed30bf31 2188
1c8cad6c
OH
2189 info->feature_discard = 1;
2190 err = xenbus_gather(XBT_NIL, info->xbdev->otherend,
2191 "discard-granularity", "%u", &discard_granularity,
2192 "discard-alignment", "%u", &discard_alignment,
2193 NULL);
2194 if (!err) {
2195 info->discard_granularity = discard_granularity;
2196 info->discard_alignment = discard_alignment;
2197 }
2198 err = xenbus_gather(XBT_NIL, info->xbdev->otherend,
2199 "discard-secure", "%d", &discard_secure,
2200 NULL);
2201 if (!err)
2202 info->feature_secdiscard = !!discard_secure;
ed30bf31
LD
2203}
2204
81f35161 2205static int blkfront_setup_indirect(struct blkfront_ring_info *rinfo)
402b27f9 2206{
c004a6fe 2207 unsigned int psegs, grants;
402b27f9 2208 int err, i;
81f35161 2209 struct blkfront_info *info = rinfo->dev_info;
402b27f9 2210
6cc56833
JG
2211 if (info->max_indirect_segments == 0) {
2212 if (!HAS_EXTRA_REQ)
2213 grants = BLKIF_MAX_SEGMENTS_PER_REQUEST;
2214 else {
2215 /*
2216 * When an extra req is required, the maximum
2217 * grants supported is related to the size of the
2218 * Linux block segment.
2219 */
2220 grants = GRANTS_PER_PSEG;
2221 }
2222 }
d50babbe 2223 else
c004a6fe
JG
2224 grants = info->max_indirect_segments;
2225 psegs = grants / GRANTS_PER_PSEG;
402b27f9 2226
81f35161 2227 err = fill_grant_buffer(rinfo,
c004a6fe 2228 (grants + INDIRECT_GREFS(grants)) * BLK_RING_SIZE(info));
402b27f9
RPM
2229 if (err)
2230 goto out_of_memory;
2231
bfe11d6d
RPM
2232 if (!info->feature_persistent && info->max_indirect_segments) {
2233 /*
2234 * We are using indirect descriptors but not persistent
2235 * grants, we need to allocate a set of pages that can be
2236 * used for mapping indirect grefs
2237 */
c004a6fe 2238 int num = INDIRECT_GREFS(grants) * BLK_RING_SIZE(info);
bfe11d6d 2239
81f35161 2240 BUG_ON(!list_empty(&rinfo->indirect_pages));
bfe11d6d
RPM
2241 for (i = 0; i < num; i++) {
2242 struct page *indirect_page = alloc_page(GFP_NOIO);
2243 if (!indirect_page)
2244 goto out_of_memory;
81f35161 2245 list_add(&indirect_page->lru, &rinfo->indirect_pages);
bfe11d6d
RPM
2246 }
2247 }
2248
86839c56 2249 for (i = 0; i < BLK_RING_SIZE(info); i++) {
81f35161
BL
2250 rinfo->shadow[i].grants_used = kzalloc(
2251 sizeof(rinfo->shadow[i].grants_used[0]) * grants,
402b27f9 2252 GFP_NOIO);
81f35161 2253 rinfo->shadow[i].sg = kzalloc(sizeof(rinfo->shadow[i].sg[0]) * psegs, GFP_NOIO);
402b27f9 2254 if (info->max_indirect_segments)
81f35161
BL
2255 rinfo->shadow[i].indirect_grants = kzalloc(
2256 sizeof(rinfo->shadow[i].indirect_grants[0]) *
c004a6fe 2257 INDIRECT_GREFS(grants),
402b27f9 2258 GFP_NOIO);
81f35161
BL
2259 if ((rinfo->shadow[i].grants_used == NULL) ||
2260 (rinfo->shadow[i].sg == NULL) ||
402b27f9 2261 (info->max_indirect_segments &&
81f35161 2262 (rinfo->shadow[i].indirect_grants == NULL)))
402b27f9 2263 goto out_of_memory;
81f35161 2264 sg_init_table(rinfo->shadow[i].sg, psegs);
402b27f9
RPM
2265 }
2266
2267
2268 return 0;
2269
2270out_of_memory:
86839c56 2271 for (i = 0; i < BLK_RING_SIZE(info); i++) {
81f35161
BL
2272 kfree(rinfo->shadow[i].grants_used);
2273 rinfo->shadow[i].grants_used = NULL;
2274 kfree(rinfo->shadow[i].sg);
2275 rinfo->shadow[i].sg = NULL;
2276 kfree(rinfo->shadow[i].indirect_grants);
2277 rinfo->shadow[i].indirect_grants = NULL;
402b27f9 2278 }
81f35161 2279 if (!list_empty(&rinfo->indirect_pages)) {
bfe11d6d 2280 struct page *indirect_page, *n;
81f35161 2281 list_for_each_entry_safe(indirect_page, n, &rinfo->indirect_pages, lru) {
bfe11d6d
RPM
2282 list_del(&indirect_page->lru);
2283 __free_page(indirect_page);
2284 }
2285 }
402b27f9
RPM
2286 return -ENOMEM;
2287}
2288
d50babbe
BL
2289/*
2290 * Gather all backend feature-*
2291 */
3df0e505 2292static void blkfront_gather_backend_features(struct blkfront_info *info)
d50babbe
BL
2293{
2294 int err;
2295 int barrier, flush, discard, persistent;
2296 unsigned int indirect_segments;
2297
2298 info->feature_flush = 0;
a418090a 2299 info->feature_fua = 0;
d50babbe
BL
2300
2301 err = xenbus_gather(XBT_NIL, info->xbdev->otherend,
2302 "feature-barrier", "%d", &barrier,
2303 NULL);
2304
2305 /*
2306 * If there's no "feature-barrier" defined, then it means
2307 * we're dealing with a very old backend which writes
2308 * synchronously; nothing to do.
2309 *
2310 * If there are barriers, then we use flush.
2311 */
a418090a
MC
2312 if (!err && barrier) {
2313 info->feature_flush = 1;
2314 info->feature_fua = 1;
2315 }
2316
d50babbe
BL
2317 /*
2318 * And if there is "feature-flush-cache" use that above
2319 * barriers.
2320 */
2321 err = xenbus_gather(XBT_NIL, info->xbdev->otherend,
2322 "feature-flush-cache", "%d", &flush,
2323 NULL);
2324
a418090a
MC
2325 if (!err && flush) {
2326 info->feature_flush = 1;
2327 info->feature_fua = 0;
2328 }
d50babbe
BL
2329
2330 err = xenbus_gather(XBT_NIL, info->xbdev->otherend,
2331 "feature-discard", "%d", &discard,
2332 NULL);
2333
2334 if (!err && discard)
2335 blkfront_setup_discard(info);
2336
2337 err = xenbus_gather(XBT_NIL, info->xbdev->otherend,
2338 "feature-persistent", "%u", &persistent,
2339 NULL);
2340 if (err)
2341 info->feature_persistent = 0;
2342 else
2343 info->feature_persistent = persistent;
2344
2345 err = xenbus_gather(XBT_NIL, info->xbdev->otherend,
2346 "feature-max-indirect-segments", "%u", &indirect_segments,
2347 NULL);
2348 if (err)
2349 info->max_indirect_segments = 0;
2350 else
2351 info->max_indirect_segments = min(indirect_segments,
2352 xen_blkif_max_segments);
d50babbe
BL
2353}
2354
9f27ee59
JF
2355/*
2356 * Invoked when the backend is finally 'ready' (and has told produced
2357 * the details about the physical device - #sectors, size, etc).
2358 */
2359static void blkfront_connect(struct blkfront_info *info)
2360{
2361 unsigned long long sectors;
2362 unsigned long sector_size;
7c4d7d71 2363 unsigned int physical_sector_size;
9f27ee59 2364 unsigned int binfo;
3df0e505 2365 int err, i;
9f27ee59 2366
1fa73be6
S
2367 switch (info->connected) {
2368 case BLKIF_STATE_CONNECTED:
2369 /*
2370 * Potentially, the back-end may be signalling
2371 * a capacity change; update the capacity.
2372 */
2373 err = xenbus_scanf(XBT_NIL, info->xbdev->otherend,
2374 "sectors", "%Lu", &sectors);
2375 if (XENBUS_EXIST_ERR(err))
2376 return;
2377 printk(KERN_INFO "Setting capacity to %Lu\n",
2378 sectors);
2379 set_capacity(info->gd, sectors);
2def141e 2380 revalidate_disk(info->gd);
1fa73be6 2381
402b27f9 2382 return;
1fa73be6 2383 case BLKIF_STATE_SUSPENDED:
402b27f9
RPM
2384 /*
2385 * If we are recovering from suspension, we need to wait
2386 * for the backend to announce it's features before
2387 * reconnecting, at least we need to know if the backend
2388 * supports indirect descriptors, and how many.
2389 */
2390 blkif_recover(info);
9f27ee59
JF
2391 return;
2392
b4dddb49
JF
2393 default:
2394 break;
1fa73be6 2395 }
9f27ee59
JF
2396
2397 dev_dbg(&info->xbdev->dev, "%s:%s.\n",
2398 __func__, info->xbdev->otherend);
2399
2400 err = xenbus_gather(XBT_NIL, info->xbdev->otherend,
2401 "sectors", "%llu", &sectors,
2402 "info", "%u", &binfo,
2403 "sector-size", "%lu", &sector_size,
2404 NULL);
2405 if (err) {
2406 xenbus_dev_fatal(info->xbdev, err,
2407 "reading backend fields at %s",
2408 info->xbdev->otherend);
2409 return;
2410 }
2411
7c4d7d71
SB
2412 /*
2413 * physcial-sector-size is a newer field, so old backends may not
2414 * provide this. Assume physical sector size to be the same as
2415 * sector_size in that case.
2416 */
2417 err = xenbus_scanf(XBT_NIL, info->xbdev->otherend,
2418 "physical-sector-size", "%u", &physical_sector_size);
2419 if (err != 1)
2420 physical_sector_size = sector_size;
2421
3df0e505
BL
2422 blkfront_gather_backend_features(info);
2423 for (i = 0; i < info->nr_rings; i++) {
2424 err = blkfront_setup_indirect(&info->rinfo[i]);
2425 if (err) {
2426 xenbus_dev_fatal(info->xbdev, err, "setup_indirect at %s",
2427 info->xbdev->otherend);
2428 blkif_free(info, 0);
2429 break;
2430 }
402b27f9
RPM
2431 }
2432
7c4d7d71
SB
2433 err = xlvbd_alloc_gendisk(sectors, info, binfo, sector_size,
2434 physical_sector_size);
9f27ee59
JF
2435 if (err) {
2436 xenbus_dev_fatal(info->xbdev, err, "xlvbd_add at %s",
2437 info->xbdev->otherend);
2438 return;
2439 }
2440
2441 xenbus_switch_state(info->xbdev, XenbusStateConnected);
2442
2443 /* Kick pending requests. */
9f27ee59 2444 info->connected = BLKIF_STATE_CONNECTED;
3df0e505
BL
2445 for (i = 0; i < info->nr_rings; i++)
2446 kick_pending_request_queues(&info->rinfo[i]);
9f27ee59
JF
2447
2448 add_disk(info->gd);
1d78d705
CL
2449
2450 info->is_ready = 1;
9f27ee59
JF
2451}
2452
9f27ee59
JF
2453/**
2454 * Callback received when the backend's state changes.
2455 */
203fd61f 2456static void blkback_changed(struct xenbus_device *dev,
9f27ee59
JF
2457 enum xenbus_state backend_state)
2458{
a1b4b12b 2459 struct blkfront_info *info = dev_get_drvdata(&dev->dev);
9f27ee59 2460
203fd61f 2461 dev_dbg(&dev->dev, "blkfront:blkback_changed to state %d.\n", backend_state);
9f27ee59
JF
2462
2463 switch (backend_state) {
9f27ee59 2464 case XenbusStateInitWait:
a9b54bb9
BL
2465 if (dev->state != XenbusStateInitialising)
2466 break;
c31ecf6c 2467 if (talk_to_blkback(dev, info))
8ab0144a 2468 break;
8ab0144a 2469 case XenbusStateInitialising:
9f27ee59 2470 case XenbusStateInitialised:
b78c9512
NI
2471 case XenbusStateReconfiguring:
2472 case XenbusStateReconfigured:
9f27ee59 2473 case XenbusStateUnknown:
9f27ee59
JF
2474 break;
2475
2476 case XenbusStateConnected:
efd15352
BL
2477 /*
2478 * talk_to_blkback sets state to XenbusStateInitialised
2479 * and blkfront_connect sets it to XenbusStateConnected
2480 * (if connection went OK).
2481 *
2482 * If the backend (or toolstack) decides to poke at backend
2483 * state (and re-trigger the watch by setting the state repeatedly
2484 * to XenbusStateConnected (4)) we need to deal with this.
2485 * This is allowed as this is used to communicate to the guest
2486 * that the size of disk has changed!
2487 */
2488 if ((dev->state != XenbusStateInitialised) &&
2489 (dev->state != XenbusStateConnected)) {
c31ecf6c
KRW
2490 if (talk_to_blkback(dev, info))
2491 break;
2492 }
efd15352 2493
9f27ee59
JF
2494 blkfront_connect(info);
2495 break;
2496
36613717
DV
2497 case XenbusStateClosed:
2498 if (dev->state == XenbusStateClosed)
2499 break;
2500 /* Missed the backend's Closing state -- fallthrough */
9f27ee59 2501 case XenbusStateClosing:
a54c8f0f
CA
2502 if (info)
2503 blkfront_closing(info);
9f27ee59
JF
2504 break;
2505 }
2506}
2507
fa1bd359 2508static int blkfront_remove(struct xenbus_device *xbdev)
9f27ee59 2509{
fa1bd359
DS
2510 struct blkfront_info *info = dev_get_drvdata(&xbdev->dev);
2511 struct block_device *bdev = NULL;
2512 struct gendisk *disk;
9f27ee59 2513
fa1bd359 2514 dev_dbg(&xbdev->dev, "%s removed", xbdev->nodename);
9f27ee59
JF
2515
2516 blkif_free(info, 0);
2517
fa1bd359
DS
2518 mutex_lock(&info->mutex);
2519
2520 disk = info->gd;
2521 if (disk)
2522 bdev = bdget_disk(disk, 0);
2523
2524 info->xbdev = NULL;
2525 mutex_unlock(&info->mutex);
2526
2527 if (!bdev) {
2528 kfree(info);
2529 return 0;
2530 }
2531
2532 /*
2533 * The xbdev was removed before we reached the Closed
2534 * state. See if it's safe to remove the disk. If the bdev
2535 * isn't closed yet, we let release take care of it.
2536 */
2537
2538 mutex_lock(&bdev->bd_mutex);
2539 info = disk->private_data;
2540
d54142c7
DS
2541 dev_warn(disk_to_dev(disk),
2542 "%s was hot-unplugged, %d stale handles\n",
2543 xbdev->nodename, bdev->bd_openers);
2544
7b32d104 2545 if (info && !bdev->bd_openers) {
fa1bd359
DS
2546 xlvbd_release_gendisk(info);
2547 disk->private_data = NULL;
0e345826 2548 kfree(info);
fa1bd359
DS
2549 }
2550
2551 mutex_unlock(&bdev->bd_mutex);
2552 bdput(bdev);
9f27ee59
JF
2553
2554 return 0;
2555}
2556
1d78d705
CL
2557static int blkfront_is_ready(struct xenbus_device *dev)
2558{
a1b4b12b 2559 struct blkfront_info *info = dev_get_drvdata(&dev->dev);
1d78d705 2560
5d7ed20e 2561 return info->is_ready && info->xbdev;
1d78d705
CL
2562}
2563
a63c848b 2564static int blkif_open(struct block_device *bdev, fmode_t mode)
9f27ee59 2565{
13961743
DS
2566 struct gendisk *disk = bdev->bd_disk;
2567 struct blkfront_info *info;
2568 int err = 0;
6e9624b8 2569
2a48fc0a 2570 mutex_lock(&blkfront_mutex);
6e9624b8 2571
13961743
DS
2572 info = disk->private_data;
2573 if (!info) {
2574 /* xbdev gone */
2575 err = -ERESTARTSYS;
2576 goto out;
2577 }
2578
2579 mutex_lock(&info->mutex);
2580
2581 if (!info->gd)
2582 /* xbdev is closed */
2583 err = -ERESTARTSYS;
2584
2585 mutex_unlock(&info->mutex);
2586
13961743 2587out:
2a48fc0a 2588 mutex_unlock(&blkfront_mutex);
13961743 2589 return err;
9f27ee59
JF
2590}
2591
db2a144b 2592static void blkif_release(struct gendisk *disk, fmode_t mode)
9f27ee59 2593{
a63c848b 2594 struct blkfront_info *info = disk->private_data;
7fd152f4
DS
2595 struct block_device *bdev;
2596 struct xenbus_device *xbdev;
2597
2a48fc0a 2598 mutex_lock(&blkfront_mutex);
7fd152f4
DS
2599
2600 bdev = bdget_disk(disk, 0);
7fd152f4 2601
2f089cb8
FP
2602 if (!bdev) {
2603 WARN(1, "Block device %s yanked out from us!\n", disk->disk_name);
2604 goto out_mutex;
2605 }
acfca3c6
DS
2606 if (bdev->bd_openers)
2607 goto out;
2608
7fd152f4
DS
2609 /*
2610 * Check if we have been instructed to close. We will have
2611 * deferred this request, because the bdev was still open.
2612 */
2613
2614 mutex_lock(&info->mutex);
2615 xbdev = info->xbdev;
2616
2617 if (xbdev && xbdev->state == XenbusStateClosing) {
2618 /* pending switch to state closed */
d54142c7 2619 dev_info(disk_to_dev(bdev->bd_disk), "releasing disk\n");
7fd152f4
DS
2620 xlvbd_release_gendisk(info);
2621 xenbus_frontend_closed(info->xbdev);
2622 }
2623
2624 mutex_unlock(&info->mutex);
2625
2626 if (!xbdev) {
2627 /* sudden device removal */
d54142c7 2628 dev_info(disk_to_dev(bdev->bd_disk), "releasing disk\n");
7fd152f4
DS
2629 xlvbd_release_gendisk(info);
2630 disk->private_data = NULL;
2631 kfree(info);
9f27ee59 2632 }
7fd152f4 2633
a4cc14ec 2634out:
dad5cf65 2635 bdput(bdev);
2f089cb8 2636out_mutex:
2a48fc0a 2637 mutex_unlock(&blkfront_mutex);
9f27ee59
JF
2638}
2639
83d5cde4 2640static const struct block_device_operations xlvbd_block_fops =
9f27ee59
JF
2641{
2642 .owner = THIS_MODULE,
a63c848b
AV
2643 .open = blkif_open,
2644 .release = blkif_release,
597592d9 2645 .getgeo = blkif_getgeo,
8a6cfeb6 2646 .ioctl = blkif_ioctl,
9f27ee59
JF
2647};
2648
2649
ec9c42ec 2650static const struct xenbus_device_id blkfront_ids[] = {
9f27ee59
JF
2651 { "vbd" },
2652 { "" }
2653};
2654
95afae48
DV
2655static struct xenbus_driver blkfront_driver = {
2656 .ids = blkfront_ids,
9f27ee59
JF
2657 .probe = blkfront_probe,
2658 .remove = blkfront_remove,
2659 .resume = blkfront_resume,
203fd61f 2660 .otherend_changed = blkback_changed,
1d78d705 2661 .is_ready = blkfront_is_ready,
95afae48 2662};
9f27ee59
JF
2663
2664static int __init xlblk_init(void)
2665{
469738e6 2666 int ret;
28d949bc 2667 int nr_cpus = num_online_cpus();
469738e6 2668
6e833587 2669 if (!xen_domain())
9f27ee59
JF
2670 return -ENODEV;
2671
9cce2914 2672 if (xen_blkif_max_ring_order > XENBUS_MAX_RING_GRANT_ORDER) {
86839c56 2673 pr_info("Invalid max_ring_order (%d), will use default max: %d.\n",
9cce2914 2674 xen_blkif_max_ring_order, XENBUS_MAX_RING_GRANT_ORDER);
45fc8264 2675 xen_blkif_max_ring_order = XENBUS_MAX_RING_GRANT_ORDER;
86839c56
BL
2676 }
2677
28d949bc
BL
2678 if (xen_blkif_max_queues > nr_cpus) {
2679 pr_info("Invalid max_queues (%d), will use default max: %d.\n",
2680 xen_blkif_max_queues, nr_cpus);
2681 xen_blkif_max_queues = nr_cpus;
2682 }
2683
51c71a3b 2684 if (!xen_has_pv_disk_devices())
b9136d20
IM
2685 return -ENODEV;
2686
9f27ee59
JF
2687 if (register_blkdev(XENVBD_MAJOR, DEV_NAME)) {
2688 printk(KERN_WARNING "xen_blk: can't get major %d with name %s\n",
2689 XENVBD_MAJOR, DEV_NAME);
2690 return -ENODEV;
2691 }
2692
73db144b 2693 ret = xenbus_register_frontend(&blkfront_driver);
469738e6
LE
2694 if (ret) {
2695 unregister_blkdev(XENVBD_MAJOR, DEV_NAME);
2696 return ret;
2697 }
2698
2699 return 0;
9f27ee59
JF
2700}
2701module_init(xlblk_init);
2702
2703
5a60d0cd 2704static void __exit xlblk_exit(void)
9f27ee59 2705{
8605067f
JB
2706 xenbus_unregister_driver(&blkfront_driver);
2707 unregister_blkdev(XENVBD_MAJOR, DEV_NAME);
2708 kfree(minors);
9f27ee59
JF
2709}
2710module_exit(xlblk_exit);
2711
2712MODULE_DESCRIPTION("Xen virtual block device frontend");
2713MODULE_LICENSE("GPL");
2714MODULE_ALIAS_BLOCKDEV_MAJOR(XENVBD_MAJOR);
d2f0c52b 2715MODULE_ALIAS("xen:vbd");
4f93f09b 2716MODULE_ALIAS("xenblk");