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