blob: 6a1756d72dcb29bb45195824a006a18588dcc658 [file] [log] [blame]
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001/*
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>
Bob Liu907c3eb2015-07-13 17:55:24 +080040#include <linux/blk-mq.h>
Ian Campbell597592d2008-02-21 13:03:45 -080041#include <linux/hdreg.h>
Christian Limpach440a01a2008-06-17 10:47:08 +020042#include <linux/cdrom.h>
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -070043#include <linux/module.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090044#include <linux/slab.h>
Arnd Bergmann2a48fc02010-06-02 14:28:52 +020045#include <linux/mutex.h>
Jens Axboe9e973e62009-02-24 08:10:09 +010046#include <linux/scatterlist.h>
Akinobu Mita34ae2e42012-01-21 00:15:26 +090047#include <linux/bitmap.h>
Roger Pau Monne155b7ed2013-03-18 17:49:34 +010048#include <linux/list.h>
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -070049
Jeremy Fitzhardinge1ccbf532009-10-06 15:11:14 -070050#include <xen/xen.h>
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -070051#include <xen/xenbus.h>
52#include <xen/grant_table.h>
53#include <xen/events.h>
54#include <xen/page.h>
Stefano Stabellinic1c54132010-05-14 12:44:30 +010055#include <xen/platform_pci.h>
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -070056
57#include <xen/interface/grant_table.h>
58#include <xen/interface/io/blkif.h>
Markus Armbruster3e334232008-04-02 10:54:02 -070059#include <xen/interface/io/protocols.h>
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -070060
61#include <asm/xen/hypervisor.h>
62
Julien Grall6cc568332015-08-13 13:13:35 +010063/*
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
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -070077enum blkif_state {
78 BLKIF_STATE_DISCONNECTED,
79 BLKIF_STATE_CONNECTED,
80 BLKIF_STATE_SUSPENDED,
81};
82
Roger Pau Monne0a8704a2012-10-24 18:58:45 +020083struct grant {
84 grant_ref_t gref;
Julien Gralla7a6df22015-06-30 11:58:51 +010085 struct page *page;
Roger Pau Monne155b7ed2013-03-18 17:49:34 +010086 struct list_head node;
Roger Pau Monne0a8704a2012-10-24 18:58:45 +020087};
88
Julien Grall6cc568332015-08-13 13:13:35 +010089enum blk_req_status {
90 REQ_WAITING,
91 REQ_DONE,
92 REQ_ERROR,
93 REQ_EOPNOTSUPP,
94};
95
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -070096struct blk_shadow {
97 struct blkif_request req;
Jeremy Fitzhardingea945b982010-11-01 17:03:14 -040098 struct request *request;
Roger Pau Monne402b27f2013-04-18 16:06:54 +020099 struct grant **grants_used;
100 struct grant **indirect_grants;
Roger Pau Monneb7649152013-05-02 10:58:50 +0200101 struct scatterlist *sg;
Julien Grallc004a6f2015-07-22 16:44:54 +0100102 unsigned int num_sg;
Julien Grall6cc568332015-08-13 13:13:35 +0100103 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;
Roger Pau Monne402b27f2013-04-18 16:06:54 +0200111};
112
113struct split_bio {
114 struct bio *bio;
115 atomic_t pending;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700116};
117
Arnd Bergmann2a48fc02010-06-02 14:28:52 +0200118static DEFINE_MUTEX(blkfront_mutex);
Alexey Dobriyan83d5cde2009-09-21 17:01:13 -0700119static const struct block_device_operations xlvbd_block_fops;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700120
Roger Pau Monne402b27f2013-04-18 16:06:54 +0200121/*
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;
Jan Beulich14e710f2016-02-10 04:21:15 -0700128module_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)");
Roger Pau Monne402b27f2013-04-18 16:06:54 +0200132
Bob Liu28d949b2015-11-14 11:12:14 +0800133static 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
Bob Liu86839c52015-06-03 13:40:03 +0800137/*
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
Julien Grallc004a6f2015-07-22 16:44:54 +0100145#define BLK_RING_SIZE(info) \
146 __CONST_RING_SIZE(blkif, XEN_PAGE_SIZE * (info)->nr_ring_pages)
147
148#define BLK_MAX_RING_SIZE \
Julien Grall9cce2912015-10-13 17:50:11 +0100149 __CONST_RING_SIZE(blkif, XEN_PAGE_SIZE * XENBUS_MAX_RING_GRANTS)
Julien Grallc004a6f2015-07-22 16:44:54 +0100150
Bob Liu86839c52015-06-03 13:40:03 +0800151/*
Konrad Rzeszutek Wilk6f03a7f2015-11-16 15:14:41 -0500152 * 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.
Bob Liu86839c52015-06-03 13:40:03 +0800154 */
155#define RINGREF_NAME_LEN (20)
Bob Liu28d949b2015-11-14 11:12:14 +0800156/*
157 * queue-%u would take 7 + 10(UINT_MAX) = 17 characters.
158 */
159#define QUEUE_NAME_LEN (17)
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700160
161/*
Bob Liu81f35162015-11-14 11:12:11 +0800162 * 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 {
Bob Liu11659562015-11-14 11:12:13 +0800167 /* Lock to protect data in every ring buffer. */
168 spinlock_t ring_lock;
Bob Liu81f35162015-11-14 11:12:11 +0800169 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;
Bob Liu73716df2015-11-16 16:51:39 -0500176 struct list_head grants;
177 unsigned int persistent_gnts_c;
Bob Liu81f35162015-11-14 11:12:11 +0800178 unsigned long shadow_free;
179 struct blkfront_info *dev_info;
180};
181
182/*
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700183 * 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{
Daniel Stoddenb70f5fa2010-04-30 22:01:19 +0000189 struct mutex mutex;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700190 struct xenbus_device *xbdev;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700191 struct gendisk *gd;
192 int vdevice;
193 blkif_vdev_t handle;
194 enum blkif_state connected;
Bob Liu3df0e502015-11-14 11:12:12 +0800195 /* Number of pages per ring buffer. */
Bob Liu86839c52015-06-03 13:40:03 +0800196 unsigned int nr_ring_pages;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700197 struct request_queue *rq;
Tejun Heo4913efe2010-09-03 11:56:16 +0200198 unsigned int feature_flush;
Mike Christiea4180902016-06-05 14:32:24 -0500199 unsigned int feature_fua;
Konrad Rzeszutek Wilk5ea42982011-10-12 16:23:30 -0400200 unsigned int feature_discard:1;
201 unsigned int feature_secdiscard:1;
Li Dongyanged30bf32011-09-01 18:39:09 +0800202 unsigned int discard_granularity;
203 unsigned int discard_alignment;
Roger Pau Monne0a8704a2012-10-24 18:58:45 +0200204 unsigned int feature_persistent:1;
Julien Grallc004a6f2015-07-22 16:44:54 +0100205 /* Number of 4KB segments handled */
Roger Pau Monne402b27f2013-04-18 16:06:54 +0200206 unsigned int max_indirect_segments;
Christian Limpach1d78d702008-04-02 10:54:04 -0700207 int is_ready;
Bob Liu907c3eb2015-07-13 17:55:24 +0800208 struct blk_mq_tag_set tag_set;
Bob Liu3df0e502015-11-14 11:12:12 +0800209 struct blkfront_ring_info *rinfo;
210 unsigned int nr_rings;
Bob Liu7b427a52016-06-27 16:33:24 +0800211 /* Save uncomplete reqs and bios for migration. */
212 struct list_head requests;
213 struct bio_list bio_list;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700214};
215
Jan Beulich0e345822010-08-07 18:28:55 +0200216static unsigned int nr_minors;
217static unsigned long *minors;
218static DEFINE_SPINLOCK(minor_lock);
219
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700220#define GRANT_INVALID_REF 0
221
222#define PARTS_PER_DISK 16
Chris Lalancette9246b5f2008-09-17 14:30:32 -0700223#define PARTS_PER_EXT_DISK 256
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700224
225#define BLKIF_MAJOR(dev) ((dev)>>8)
226#define BLKIF_MINOR(dev) ((dev) & 0xff)
227
Chris Lalancette9246b5f2008-09-17 14:30:32 -0700228#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))
Stefano Stabellinic80a4202010-12-02 17:55:00 +0000232#define EMULATED_HD_DISK_MINOR_OFFSET (0)
233#define EMULATED_HD_DISK_NAME_OFFSET (EMULATED_HD_DISK_MINOR_OFFSET / 256)
Stefan Bader196cfe22011-07-14 15:30:22 +0200234#define EMULATED_SD_DISK_MINOR_OFFSET (0)
235#define EMULATED_SD_DISK_NAME_OFFSET (EMULATED_SD_DISK_MINOR_OFFSET / 256)
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700236
Chris Lalancette9246b5f2008-09-17 14:30:32 -0700237#define DEV_NAME "xvd" /* name in /dev */
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700238
Julien Grallc004a6f2015-07-22 16:44:54 +0100239/*
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)
Roger Pau Monne402b27f2013-04-18 16:06:54 +0200256
Bob Liu81f35162015-11-14 11:12:11 +0800257static int blkfront_setup_indirect(struct blkfront_ring_info *rinfo);
Bob Liu3df0e502015-11-14 11:12:12 +0800258static void blkfront_gather_backend_features(struct blkfront_info *info);
Roger Pau Monne402b27f2013-04-18 16:06:54 +0200259
Bob Liu81f35162015-11-14 11:12:11 +0800260static int get_id_from_freelist(struct blkfront_ring_info *rinfo)
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700261{
Bob Liu81f35162015-11-14 11:12:11 +0800262 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 */
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700267 return free;
268}
269
Bob Liu81f35162015-11-14 11:12:11 +0800270static int add_id_to_freelist(struct blkfront_ring_info *rinfo,
Konrad Rzeszutek Wilk6f03a7f2015-11-16 15:14:41 -0500271 unsigned long id)
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700272{
Bob Liu81f35162015-11-14 11:12:11 +0800273 if (rinfo->shadow[id].req.u.rw.id != id)
Konrad Rzeszutek Wilk6878c322012-05-25 17:34:51 -0400274 return -EINVAL;
Bob Liu81f35162015-11-14 11:12:11 +0800275 if (rinfo->shadow[id].request == NULL)
Konrad Rzeszutek Wilk6878c322012-05-25 17:34:51 -0400276 return -EINVAL;
Bob Liu81f35162015-11-14 11:12:11 +0800277 rinfo->shadow[id].req.u.rw.id = rinfo->shadow_free;
278 rinfo->shadow[id].request = NULL;
279 rinfo->shadow_free = id;
Konrad Rzeszutek Wilk6878c322012-05-25 17:34:51 -0400280 return 0;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700281}
282
Bob Liu81f35162015-11-14 11:12:11 +0800283static int fill_grant_buffer(struct blkfront_ring_info *rinfo, int num)
Roger Pau Monne9c1e0502013-03-18 17:49:35 +0100284{
Bob Liu81f35162015-11-14 11:12:11 +0800285 struct blkfront_info *info = rinfo->dev_info;
Roger Pau Monne9c1e0502013-03-18 17:49:35 +0100286 struct page *granted_page;
287 struct grant *gnt_list_entry, *n;
288 int i = 0;
289
Konrad Rzeszutek Wilk6f03a7f2015-11-16 15:14:41 -0500290 while (i < num) {
Roger Pau Monne9c1e0502013-03-18 17:49:35 +0100291 gnt_list_entry = kzalloc(sizeof(struct grant), GFP_NOIO);
292 if (!gnt_list_entry)
293 goto out_of_memory;
294
Roger Pau Monnebfe11d62013-10-29 18:31:14 +0100295 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 }
Julien Gralla7a6df22015-06-30 11:58:51 +0100301 gnt_list_entry->page = granted_page;
Roger Pau Monne9c1e0502013-03-18 17:49:35 +0100302 }
303
Roger Pau Monne9c1e0502013-03-18 17:49:35 +0100304 gnt_list_entry->gref = GRANT_INVALID_REF;
Bob Liu73716df2015-11-16 16:51:39 -0500305 list_add(&gnt_list_entry->node, &rinfo->grants);
Roger Pau Monne9c1e0502013-03-18 17:49:35 +0100306 i++;
307 }
308
309 return 0;
310
311out_of_memory:
312 list_for_each_entry_safe(gnt_list_entry, n,
Bob Liu73716df2015-11-16 16:51:39 -0500313 &rinfo->grants, node) {
Roger Pau Monne9c1e0502013-03-18 17:49:35 +0100314 list_del(&gnt_list_entry->node);
Roger Pau Monnebfe11d62013-10-29 18:31:14 +0100315 if (info->feature_persistent)
Julien Gralla7a6df22015-06-30 11:58:51 +0100316 __free_page(gnt_list_entry->page);
Roger Pau Monne9c1e0502013-03-18 17:49:35 +0100317 kfree(gnt_list_entry);
318 i--;
319 }
320 BUG_ON(i != 0);
321 return -ENOMEM;
322}
323
Bob Liu73716df2015-11-16 16:51:39 -0500324static struct grant *get_free_grant(struct blkfront_ring_info *rinfo)
Roger Pau Monne9c1e0502013-03-18 17:49:35 +0100325{
326 struct grant *gnt_list_entry;
Roger Pau Monne9c1e0502013-03-18 17:49:35 +0100327
Bob Liu73716df2015-11-16 16:51:39 -0500328 BUG_ON(list_empty(&rinfo->grants));
329 gnt_list_entry = list_first_entry(&rinfo->grants, struct grant,
Julien Grall4f503fb2015-07-01 14:10:38 +0100330 node);
Roger Pau Monne9c1e0502013-03-18 17:49:35 +0100331 list_del(&gnt_list_entry->node);
332
Julien Grall4f503fb2015-07-01 14:10:38 +0100333 if (gnt_list_entry->gref != GRANT_INVALID_REF)
Bob Liu73716df2015-11-16 16:51:39 -0500334 rinfo->persistent_gnts_c--;
Julien Grall4f503fb2015-07-01 14:10:38 +0100335
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,
Bob Liu73716df2015-11-16 16:51:39 -0500350 struct blkfront_ring_info *rinfo)
Julien Grall4f503fb2015-07-01 14:10:38 +0100351{
Bob Liu73716df2015-11-16 16:51:39 -0500352 struct grant *gnt_list_entry = get_free_grant(rinfo);
353 struct blkfront_info *info = rinfo->dev_info;
Julien Grall4f503fb2015-07-01 14:10:38 +0100354
355 if (gnt_list_entry->gref != GRANT_INVALID_REF)
Roger Pau Monne9c1e0502013-03-18 17:49:35 +0100356 return gnt_list_entry;
Julien Grall4f503fb2015-07-01 14:10:38 +0100357
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);
Roger Pau Monne9c1e0502013-03-18 17:49:35 +0100368 }
369
Julien Grall4f503fb2015-07-01 14:10:38 +0100370 return gnt_list_entry;
371}
372
373static struct grant *get_indirect_grant(grant_ref_t *gref_head,
Bob Liu73716df2015-11-16 16:51:39 -0500374 struct blkfront_ring_info *rinfo)
Julien Grall4f503fb2015-07-01 14:10:38 +0100375{
Bob Liu73716df2015-11-16 16:51:39 -0500376 struct grant *gnt_list_entry = get_free_grant(rinfo);
377 struct blkfront_info *info = rinfo->dev_info;
Julien Grall4f503fb2015-07-01 14:10:38 +0100378
379 if (gnt_list_entry->gref != GRANT_INVALID_REF)
380 return gnt_list_entry;
381
Roger Pau Monne9c1e0502013-03-18 17:49:35 +0100382 /* 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);
Roger Pau Monnebfe11d62013-10-29 18:31:14 +0100385 if (!info->feature_persistent) {
Julien Grall4f503fb2015-07-01 14:10:38 +0100386 struct page *indirect_page;
387
388 /* Fetch a pre-allocated page to use for indirect grefs */
Bob Liu73716df2015-11-16 16:51:39 -0500389 BUG_ON(list_empty(&rinfo->indirect_pages));
390 indirect_page = list_first_entry(&rinfo->indirect_pages,
Julien Grall4f503fb2015-07-01 14:10:38 +0100391 struct page, lru);
392 list_del(&indirect_page->lru);
393 gnt_list_entry->page = indirect_page;
Roger Pau Monnebfe11d62013-10-29 18:31:14 +0100394 }
Julien Grall4f503fb2015-07-01 14:10:38 +0100395 grant_foreign_access(gnt_list_entry, info);
396
Roger Pau Monne9c1e0502013-03-18 17:49:35 +0100397 return gnt_list_entry;
398}
399
Konrad Rzeszutek Wilk6878c322012-05-25 17:34:51 -0400400static 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}
Jan Beulich0e345822010-08-07 18:28:55 +0200417static 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
Thomas Meyerf0941482011-11-29 22:08:00 +0100425 bitmap = kcalloc(BITS_TO_LONGS(end), sizeof(*bitmap),
Jan Beulich0e345822010-08-07 18:28:55 +0200426 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) {
Akinobu Mita34ae2e42012-01-21 00:15:26 +0900445 bitmap_set(minors, minor, nr);
Jan Beulich0e345822010-08-07 18:28:55 +0200446 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);
Akinobu Mita34ae2e42012-01-21 00:15:26 +0900460 bitmap_clear(minors, minor, nr);
Jan Beulich0e345822010-08-07 18:28:55 +0200461 spin_unlock(&minor_lock);
462}
463
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700464static void blkif_restart_queue_callback(void *arg)
465{
Bob Liu81f35162015-11-14 11:12:11 +0800466 struct blkfront_ring_info *rinfo = (struct blkfront_ring_info *)arg;
467 schedule_work(&rinfo->work);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700468}
469
Harvey Harrisonafe42d72008-04-29 00:59:47 -0700470static int blkif_getgeo(struct block_device *bd, struct hd_geometry *hg)
Ian Campbell597592d2008-02-21 13:03:45 -0800471{
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
Al Viroa63c8482008-03-02 10:23:47 -0500486static int blkif_ioctl(struct block_device *bdev, fmode_t mode,
Adrian Bunk62aa0052008-08-04 11:59:05 +0200487 unsigned command, unsigned long argument)
Christian Limpach440a01a2008-06-17 10:47:08 +0200488{
Al Viroa63c8482008-03-02 10:23:47 -0500489 struct blkfront_info *info = bdev->bd_disk->private_data;
Christian Limpach440a01a2008-06-17 10:47:08 +0200490 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
Julien Grall2e073962015-08-13 19:23:10 +0100519static 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;
Julien Grall6cc568332015-08-13 13:13:35 +0100530 rinfo->shadow[id].status = REQ_WAITING;
531 rinfo->shadow[id].associated_id = NO_ASSOCIATED_ID;
Julien Grall2e073962015-08-13 19:23:10 +0100532
533 (*ring_req)->u.rw.id = id;
534
535 return id;
536}
537
Bob Liu81f35162015-11-14 11:12:11 +0800538static int blkif_queue_discard_req(struct request *req, struct blkfront_ring_info *rinfo)
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700539{
Bob Liu81f35162015-11-14 11:12:11 +0800540 struct blkfront_info *info = rinfo->dev_info;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700541 struct blkif_request *ring_req;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700542 unsigned long id;
Julien Grall33204662015-06-29 17:35:24 +0100543
544 /* Fill out a communications ring structure. */
Julien Grall2e073962015-08-13 19:23:10 +0100545 id = blkif_ring_get_request(rinfo, req, &ring_req);
Julien Grall33204662015-06-29 17:35:24 +0100546
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);
Christoph Hellwig288dab82016-06-09 16:00:36 +0200551 if (req_op(req) == REQ_OP_SECURE_ERASE && info->feature_secdiscard)
Julien Grall33204662015-06-29 17:35:24 +0100552 ring_req->u.discard.flag = BLKIF_DISCARD_SECURE;
553 else
554 ring_req->u.discard.flag = 0;
555
Julien Grall33204662015-06-29 17:35:24 +0100556 /* Keep a private copy so we can reissue requests when recovering. */
Bob Liu81f35162015-11-14 11:12:11 +0800557 rinfo->shadow[id].req = *ring_req;
Julien Grall33204662015-06-29 17:35:24 +0100558
559 return 0;
560}
561
Julien Grallc004a6f2015-07-22 16:44:54 +0100562struct setup_rw_req {
563 unsigned int grant_idx;
564 struct blkif_request_segment *segments;
Bob Liu81f35162015-11-14 11:12:11 +0800565 struct blkfront_ring_info *rinfo;
Julien Grallc004a6f2015-07-22 16:44:54 +0100566 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;
Julien Grall6cc568332015-08-13 13:13:35 +0100573
574 bool require_extra_req;
575 struct blkif_request *extra_ring_req;
Julien Grallc004a6f2015-07-22 16:44:54 +0100576};
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;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700584 unsigned int fsect, lsect;
Julien Grallc004a6f2015-07-22 16:44:54 +0100585 /* Convenient aliases */
586 unsigned int grant_idx = setup->grant_idx;
587 struct blkif_request *ring_req = setup->ring_req;
Bob Liu81f35162015-11-14 11:12:11 +0800588 struct blkfront_ring_info *rinfo = setup->rinfo;
Julien Grall6cc568332015-08-13 13:13:35 +0100589 /*
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 */
Bob Liu81f35162015-11-14 11:12:11 +0800595 struct blk_shadow *shadow = &rinfo->shadow[setup->id];
Julien Grallc004a6f2015-07-22 16:44:54 +0100596
Julien Grall6cc568332015-08-13 13:13:35 +0100597 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
Julien Grallc004a6f2015-07-22 16:44:54 +0100607 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;
Bob Liu73716df2015-11-16 16:51:39 -0500613 gnt_list_entry = get_indirect_grant(&setup->gref_head, rinfo);
Julien Grallc004a6f2015-07-22 16:44:54 +0100614 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
Bob Liu73716df2015-11-16 16:51:39 -0500619 gnt_list_entry = get_grant(&setup->gref_head, gfn, rinfo);
Julien Grallc004a6f2015-07-22 16:44:54 +0100620 ref = gnt_list_entry->gref;
Julien Grall6cc568332015-08-13 13:13:35 +0100621 /*
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;
Julien Grallc004a6f2015-07-22 16:44:54 +0100626
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
Julien Grall6cc568332015-08-13 13:13:35 +0100667static 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
Bob Liu81f35162015-11-14 11:12:11 +0800686static int blkif_queue_rw_req(struct request *req, struct blkfront_ring_info *rinfo)
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700687{
Bob Liu81f35162015-11-14 11:12:11 +0800688 struct blkfront_info *info = rinfo->dev_info;
Julien Grall6cc568332015-08-13 13:13:35 +0100689 struct blkif_request *ring_req, *extra_ring_req = NULL;
690 unsigned long id, extra_id = NO_ASSOCIATED_ID;
691 bool require_extra_req = false;
Julien Grallc004a6f2015-07-22 16:44:54 +0100692 int i;
693 struct setup_rw_req setup = {
694 .grant_idx = 0,
695 .segments = NULL,
Bob Liu81f35162015-11-14 11:12:11 +0800696 .rinfo = rinfo,
Julien Grallc004a6f2015-07-22 16:44:54 +0100697 .need_copy = rq_data_dir(req) && info->feature_persistent,
698 };
Roger Pau Monne0a8704a2012-10-24 18:58:45 +0200699
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 */
Jens Axboe9e973e62009-02-24 08:10:09 +0100705 struct scatterlist *sg;
Julien Grallc004a6f2015-07-22 16:44:54 +0100706 int num_sg, max_grefs, num_grant;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700707
Julien Grallc004a6f2015-07-22 16:44:54 +0100708 max_grefs = req->nr_phys_segments * GRANTS_PER_PSEG;
Roger Pau Monnec47206e2013-08-12 12:53:43 +0200709 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 */
Julien Grallc004a6f2015-07-22 16:44:54 +0100714 max_grefs += INDIRECT_GREFS(max_grefs);
Roger Pau Monne402b27f2013-04-18 16:06:54 +0200715
Bob Liu3df0e502015-11-14 11:12:12 +0800716 /*
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) {
Roger Pau Monne0a8704a2012-10-24 18:58:45 +0200722 gnttab_request_free_callback(
Bob Liu81f35162015-11-14 11:12:11 +0800723 &rinfo->callback,
Roger Pau Monne0a8704a2012-10-24 18:58:45 +0200724 blkif_restart_queue_callback,
Bob Liu81f35162015-11-14 11:12:11 +0800725 rinfo,
Roger Pau Monne402b27f2013-04-18 16:06:54 +0200726 max_grefs);
Roger Pau Monne0a8704a2012-10-24 18:58:45 +0200727 return 1;
728 }
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700729
730 /* Fill out a communications ring structure. */
Julien Grall2e073962015-08-13 19:23:10 +0100731 id = blkif_ring_get_request(rinfo, req, &ring_req);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700732
Bob Liu81f35162015-11-14 11:12:11 +0800733 num_sg = blk_rq_map_sg(req->q, req, rinfo->shadow[id].sg);
Julien Grallc004a6f2015-07-22 16:44:54 +0100734 num_grant = 0;
735 /* Calculate the number of grant used */
Bob Liu81f35162015-11-14 11:12:11 +0800736 for_each_sg(rinfo->shadow[id].sg, sg, num_sg, i)
Julien Grallc004a6f2015-07-22 16:44:54 +0100737 num_grant += gnttab_count_grant(sg->offset, sg->length);
738
Julien Grall6cc568332015-08-13 13:13:35 +0100739 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
Bob Liu81f35162015-11-14 11:12:11 +0800743 rinfo->shadow[id].num_sg = num_sg;
Julien Grall6cc568332015-08-13 13:13:35 +0100744 if (num_grant > BLKIF_MAX_SEGMENTS_PER_REQUEST &&
745 likely(!require_extra_req)) {
Julien Grall33204662015-06-29 17:35:24 +0100746 /*
747 * The indirect operation can only be a BLKIF_OP_READ or
748 * BLKIF_OP_WRITE
749 */
Mike Christie3a5e02c2016-06-05 14:32:23 -0500750 BUG_ON(req_op(req) == REQ_OP_FLUSH || req->cmd_flags & REQ_FUA);
Julien Grall33204662015-06-29 17:35:24 +0100751 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;
Julien Grallc004a6f2015-07-22 16:44:54 +0100756 ring_req->u.indirect.nr_segments = num_grant;
Li Dongyanged30bf32011-09-01 18:39:09 +0800757 } else {
Julien Grall33204662015-06-29 17:35:24 +0100758 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;
Mike Christie3a5e02c2016-06-05 14:32:23 -0500762 if (req_op(req) == REQ_OP_FLUSH || req->cmd_flags & REQ_FUA) {
Roger Pau Monne402b27f2013-04-18 16:06:54 +0200763 /*
Julien Grall33204662015-06-29 17:35:24 +0100764 * 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.)
Roger Pau Monne402b27f2013-04-18 16:06:54 +0200769 */
Mike Christiea4180902016-06-05 14:32:24 -0500770 if (info->feature_flush && info->feature_fua)
Julien Grall33204662015-06-29 17:35:24 +0100771 ring_req->operation =
772 BLKIF_OP_WRITE_BARRIER;
Mike Christiea4180902016-06-05 14:32:24 -0500773 else if (info->feature_flush)
Julien Grall33204662015-06-29 17:35:24 +0100774 ring_req->operation =
775 BLKIF_OP_FLUSH_DISKCACHE;
Mike Christiea4180902016-06-05 14:32:24 -0500776 else
Julien Grall33204662015-06-29 17:35:24 +0100777 ring_req->operation = 0;
Li Dongyanged30bf32011-09-01 18:39:09 +0800778 }
Julien Grallc004a6f2015-07-22 16:44:54 +0100779 ring_req->u.rw.nr_segments = num_grant;
Julien Grall6cc568332015-08-13 13:13:35 +0100780 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 }
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700795 }
796
Julien Grallc004a6f2015-07-22 16:44:54 +0100797 setup.ring_req = ring_req;
798 setup.id = id;
Julien Grall6cc568332015-08-13 13:13:35 +0100799
800 setup.require_extra_req = require_extra_req;
801 if (unlikely(require_extra_req))
802 setup.extra_ring_req = extra_ring_req;
803
Bob Liu81f35162015-11-14 11:12:11 +0800804 for_each_sg(rinfo->shadow[id].sg, sg, num_sg, i) {
Julien Grallc004a6f2015-07-22 16:44:54 +0100805 BUG_ON(sg->offset + sg->length > PAGE_SIZE);
Julien Grall33204662015-06-29 17:35:24 +0100806
Julien Grallc004a6f2015-07-22 16:44:54 +0100807 if (setup.need_copy) {
808 setup.bvec_off = sg->offset;
809 setup.bvec_data = kmap_atomic(sg_page(sg));
Julien Grall33204662015-06-29 17:35:24 +0100810 }
811
Julien Grallc004a6f2015-07-22 16:44:54 +0100812 gnttab_foreach_grant_in_range(sg_page(sg),
813 sg->offset,
814 sg->length,
815 blkif_setup_rw_req_grant,
816 &setup);
Julien Grall33204662015-06-29 17:35:24 +0100817
Julien Grallc004a6f2015-07-22 16:44:54 +0100818 if (setup.need_copy)
819 kunmap_atomic(setup.bvec_data);
Julien Grall33204662015-06-29 17:35:24 +0100820 }
Julien Grallc004a6f2015-07-22 16:44:54 +0100821 if (setup.segments)
822 kunmap_atomic(setup.segments);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700823
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700824 /* Keep a private copy so we can reissue requests when recovering. */
Bob Liu81f35162015-11-14 11:12:11 +0800825 rinfo->shadow[id].req = *ring_req;
Julien Grall6cc568332015-08-13 13:13:35 +0100826 if (unlikely(require_extra_req))
827 rinfo->shadow[extra_id].req = *extra_ring_req;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700828
Bob Liu3df0e502015-11-14 11:12:12 +0800829 if (max_grefs > 0)
Julien Grallc004a6f2015-07-22 16:44:54 +0100830 gnttab_free_grant_references(setup.gref_head);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700831
832 return 0;
833}
834
Julien Grall33204662015-06-29 17:35:24 +0100835/*
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 */
Bob Liu81f35162015-11-14 11:12:11 +0800841static int blkif_queue_request(struct request *req, struct blkfront_ring_info *rinfo)
Julien Grall33204662015-06-29 17:35:24 +0100842{
Bob Liu81f35162015-11-14 11:12:11 +0800843 if (unlikely(rinfo->dev_info->connected != BLKIF_STATE_CONNECTED))
Julien Grall33204662015-06-29 17:35:24 +0100844 return 1;
845
Mike Christiec2df40d2016-06-05 14:32:17 -0500846 if (unlikely(req_op(req) == REQ_OP_DISCARD ||
Christoph Hellwig288dab82016-06-09 16:00:36 +0200847 req_op(req) == REQ_OP_SECURE_ERASE))
Bob Liu81f35162015-11-14 11:12:11 +0800848 return blkif_queue_discard_req(req, rinfo);
Julien Grall33204662015-06-29 17:35:24 +0100849 else
Bob Liu81f35162015-11-14 11:12:11 +0800850 return blkif_queue_rw_req(req, rinfo);
Julien Grall33204662015-06-29 17:35:24 +0100851}
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700852
Bob Liu81f35162015-11-14 11:12:11 +0800853static inline void flush_requests(struct blkfront_ring_info *rinfo)
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700854{
855 int notify;
856
Bob Liu81f35162015-11-14 11:12:11 +0800857 RING_PUSH_REQUESTS_AND_CHECK_NOTIFY(&rinfo->ring, notify);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700858
859 if (notify)
Bob Liu81f35162015-11-14 11:12:11 +0800860 notify_remote_via_irq(rinfo->irq);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700861}
862
Vitaly Kuznetsovad42d392014-12-01 14:01:13 +0100863static inline bool blkif_request_flush_invalid(struct request *req,
864 struct blkfront_info *info)
Arianna Avanzini0f1ca652014-08-22 13:20:02 +0200865{
866 return ((req->cmd_type != REQ_TYPE_FS) ||
Mike Christie3a5e02c2016-06-05 14:32:23 -0500867 ((req_op(req) == REQ_OP_FLUSH) &&
Mike Christiea4180902016-06-05 14:32:24 -0500868 !info->feature_flush) ||
Vitaly Kuznetsovad42d392014-12-01 14:01:13 +0100869 ((req->cmd_flags & REQ_FUA) &&
Mike Christiea4180902016-06-05 14:32:24 -0500870 !info->feature_fua));
Arianna Avanzini0f1ca652014-08-22 13:20:02 +0200871}
872
Bob Liu907c3eb2015-07-13 17:55:24 +0800873static int blkif_queue_rq(struct blk_mq_hw_ctx *hctx,
Konrad Rzeszutek Wilk6f03a7f2015-11-16 15:14:41 -0500874 const struct blk_mq_queue_data *qd)
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700875{
Bob Liu11659562015-11-14 11:12:13 +0800876 unsigned long flags;
Bob Liu2a6f71a2016-05-31 16:59:17 +0800877 int qid = hctx->queue_num;
878 struct blkfront_info *info = hctx->queue->queuedata;
879 struct blkfront_ring_info *rinfo = NULL;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700880
Bob Liu2a6f71a2016-05-31 16:59:17 +0800881 BUG_ON(info->nr_rings <= qid);
882 rinfo = &info->rinfo[qid];
Bob Liu907c3eb2015-07-13 17:55:24 +0800883 blk_mq_start_request(qd->rq);
Bob Liu11659562015-11-14 11:12:13 +0800884 spin_lock_irqsave(&rinfo->ring_lock, flags);
Bob Liu81f35162015-11-14 11:12:11 +0800885 if (RING_FULL(&rinfo->ring))
Bob Liu907c3eb2015-07-13 17:55:24 +0800886 goto out_busy;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700887
Bob Liu81f35162015-11-14 11:12:11 +0800888 if (blkif_request_flush_invalid(qd->rq, rinfo->dev_info))
Bob Liu907c3eb2015-07-13 17:55:24 +0800889 goto out_err;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700890
Bob Liu81f35162015-11-14 11:12:11 +0800891 if (blkif_queue_request(qd->rq, rinfo))
Bob Liu907c3eb2015-07-13 17:55:24 +0800892 goto out_busy;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700893
Bob Liu81f35162015-11-14 11:12:11 +0800894 flush_requests(rinfo);
Bob Liu11659562015-11-14 11:12:13 +0800895 spin_unlock_irqrestore(&rinfo->ring_lock, flags);
Bob Liu907c3eb2015-07-13 17:55:24 +0800896 return BLK_MQ_RQ_QUEUE_OK;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700897
Bob Liu907c3eb2015-07-13 17:55:24 +0800898out_err:
Bob Liu11659562015-11-14 11:12:13 +0800899 spin_unlock_irqrestore(&rinfo->ring_lock, flags);
Bob Liu907c3eb2015-07-13 17:55:24 +0800900 return BLK_MQ_RQ_QUEUE_ERROR;
Tejun Heo296b2f62009-05-08 11:54:15 +0900901
Bob Liu907c3eb2015-07-13 17:55:24 +0800902out_busy:
Bob Liu11659562015-11-14 11:12:13 +0800903 spin_unlock_irqrestore(&rinfo->ring_lock, flags);
Bob Liu907c3eb2015-07-13 17:55:24 +0800904 blk_mq_stop_hw_queue(hctx);
905 return BLK_MQ_RQ_QUEUE_BUSY;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700906}
907
Bob Liu907c3eb2015-07-13 17:55:24 +0800908static struct blk_mq_ops blkfront_mq_ops = {
909 .queue_rq = blkif_queue_rq,
910 .map_queue = blk_mq_map_queue,
911};
912
Roger Pau Monne402b27f2013-04-18 16:06:54 +0200913static int xlvbd_init_blk_queue(struct gendisk *gd, u16 sector_size,
Stefan Bader7c4d7d72013-05-13 16:28:15 +0200914 unsigned int physical_sector_size,
Roger Pau Monne402b27f2013-04-18 16:06:54 +0200915 unsigned int segments)
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700916{
Jens Axboe165125e2007-07-24 09:28:11 +0200917 struct request_queue *rq;
Li Dongyanged30bf32011-09-01 18:39:09 +0800918 struct blkfront_info *info = gd->private_data;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700919
Bob Liu907c3eb2015-07-13 17:55:24 +0800920 memset(&info->tag_set, 0, sizeof(info->tag_set));
921 info->tag_set.ops = &blkfront_mq_ops;
Bob Liu28d949b2015-11-14 11:12:14 +0800922 info->tag_set.nr_hw_queues = info->nr_rings;
Julien Grall6cc568332015-08-13 13:13:35 +0100923 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);
Bob Liu907c3eb2015-07-13 17:55:24 +0800933 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))
Konrad Rzeszutek Wilkbde21f72015-11-25 13:07:39 -0500939 return -EINVAL;
Bob Liu907c3eb2015-07-13 17:55:24 +0800940 rq = blk_mq_init_queue(&info->tag_set);
941 if (IS_ERR(rq)) {
942 blk_mq_free_tag_set(&info->tag_set);
Konrad Rzeszutek Wilkbde21f72015-11-25 13:07:39 -0500943 return PTR_ERR(rq);
Bob Liu907c3eb2015-07-13 17:55:24 +0800944 }
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700945
Bob Liu2a6f71a2016-05-31 16:59:17 +0800946 rq->queuedata = info;
Fernando Luis Vázquez Cao66d352e2008-10-27 18:45:54 +0900947 queue_flag_set_unlocked(QUEUE_FLAG_VIRT, rq);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700948
Li Dongyanged30bf32011-09-01 18:39:09 +0800949 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;
Konrad Rzeszutek Wilk5ea42982011-10-12 16:23:30 -0400954 if (info->feature_secdiscard)
Christoph Hellwig288dab82016-06-09 16:00:36 +0200955 queue_flag_set_unlocked(QUEUE_FLAG_SECERASE, rq);
Li Dongyanged30bf32011-09-01 18:39:09 +0800956 }
957
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700958 /* Hard sector size and max sectors impersonate the equiv. hardware. */
Martin K. Petersene1defc42009-05-22 17:17:49 -0400959 blk_queue_logical_block_size(rq, sector_size);
Stefan Bader7c4d7d72013-05-13 16:28:15 +0200960 blk_queue_physical_block_size(rq, physical_sector_size);
Julien Grallc004a6f2015-07-22 16:44:54 +0100961 blk_queue_max_hw_sectors(rq, (segments * XEN_PAGE_SIZE) / 512);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700962
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. */
Julien Grallc004a6f2015-07-22 16:44:54 +0100968 blk_queue_max_segments(rq, segments / GRANTS_PER_PSEG);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700969
970 /* Make sure buffer addresses are sector-aligned. */
971 blk_queue_dma_alignment(rq, 511);
972
Ian Campbell1c91fe12008-06-17 10:47:08 +0200973 /* Make sure we don't use bounce buffers. */
974 blk_queue_bounce_limit(rq, BLK_BOUNCE_ANY);
975
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700976 gd->queue = rq;
977
978 return 0;
979}
980
Mike Christiea4180902016-06-05 14:32:24 -0500981static const char *flush_info(struct blkfront_info *info)
Vitaly Kuznetsovfdf9b962014-12-09 15:25:10 +0100982{
Mike Christiea4180902016-06-05 14:32:24 -0500983 if (info->feature_flush && info->feature_fua)
Vitaly Kuznetsovfdf9b962014-12-09 15:25:10 +0100984 return "barrier: enabled;";
Mike Christiea4180902016-06-05 14:32:24 -0500985 else if (info->feature_flush)
Vitaly Kuznetsovfdf9b962014-12-09 15:25:10 +0100986 return "flush diskcache: enabled;";
Mike Christiea4180902016-06-05 14:32:24 -0500987 else
Vitaly Kuznetsovfdf9b962014-12-09 15:25:10 +0100988 return "barrier or flush: disabled;";
Vitaly Kuznetsovfdf9b962014-12-09 15:25:10 +0100989}
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700990
Tejun Heo4913efe2010-09-03 11:56:16 +0200991static void xlvbd_flush(struct blkfront_info *info)
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700992{
Mike Christiea4180902016-06-05 14:32:24 -0500993 blk_queue_write_cache(info->rq, info->feature_flush ? true : false,
994 info->feature_fua ? true : false);
Vitaly Kuznetsovfdf9b962014-12-09 15:25:10 +0100995 pr_info("blkfront: %s: %s %s %s %s %s\n",
Mike Christiea4180902016-06-05 14:32:24 -0500996 info->gd->disk_name, flush_info(info),
Vitaly Kuznetsovfdf9b962014-12-09 15:25:10 +0100997 "persistent grants:", info->feature_persistent ?
998 "enabled;" : "disabled;", "indirect descriptors:",
999 info->max_indirect_segments ? "enabled;" : "disabled;");
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001000}
1001
Stefano Stabellinic80a4202010-12-02 17:55:00 +00001002static 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}
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001061
Jan Beuliche77c78c2012-04-05 16:37:22 +01001062static 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
Chris Lalancette9246b5f2008-09-17 14:30:32 -07001070static int xlvbd_alloc_gendisk(blkif_sector_t capacity,
1071 struct blkfront_info *info,
Stefan Bader7c4d7d72013-05-13 16:28:15 +02001072 u16 vdisk_info, u16 sector_size,
1073 unsigned int physical_sector_size)
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001074{
1075 struct gendisk *gd;
1076 int nr_minors = 1;
Stefano Stabellinic80a4202010-12-02 17:55:00 +00001077 int err;
Chris Lalancette9246b5f2008-09-17 14:30:32 -07001078 unsigned int offset;
1079 int minor;
1080 int nr_parts;
Jan Beuliche77c78c2012-04-05 16:37:22 +01001081 char *ptr;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001082
1083 BUG_ON(info->gd != NULL);
1084 BUG_ON(info->rq != NULL);
1085
Chris Lalancette9246b5f2008-09-17 14:30:32 -07001086 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)) {
Stefano Stabellinic80a4202010-12-02 17:55:00 +00001093 err = xen_translate_vdev(info->vdevice, &minor, &offset);
1094 if (err)
1095 return err;
1096 nr_parts = PARTS_PER_DISK;
Chris Lalancette9246b5f2008-09-17 14:30:32 -07001097 } else {
1098 minor = BLKIF_MINOR_EXT(info->vdevice);
1099 nr_parts = PARTS_PER_EXT_DISK;
Stefano Stabellinic80a4202010-12-02 17:55:00 +00001100 offset = minor / nr_parts;
Stefan Bader89153b52011-07-14 15:30:37 +02001101 if (xen_hvm_domain() && offset < EMULATED_HD_DISK_NAME_OFFSET + 4)
Stefano Stabellinic80a4202010-12-02 17:55:00 +00001102 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);
Chris Lalancette9246b5f2008-09-17 14:30:32 -07001105 }
Jan Beuliche77c78c2012-04-05 16:37:22 +01001106 if (minor >> MINORBITS) {
1107 pr_warn("blkfront: %#x's minor (%#x) out of range; ignoring\n",
1108 info->vdevice, minor);
1109 return -ENODEV;
1110 }
Chris Lalancette9246b5f2008-09-17 14:30:32 -07001111
1112 if ((minor % nr_parts) == 0)
1113 nr_minors = nr_parts;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001114
Jan Beulich0e345822010-08-07 18:28:55 +02001115 err = xlbd_reserve_minors(minor, nr_minors);
1116 if (err)
1117 goto out;
1118 err = -ENODEV;
1119
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001120 gd = alloc_disk(nr_minors);
1121 if (gd == NULL)
Jan Beulich0e345822010-08-07 18:28:55 +02001122 goto release;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001123
Jan Beuliche77c78c2012-04-05 16:37:22 +01001124 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));
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001132
1133 gd->major = XENVBD_MAJOR;
1134 gd->first_minor = minor;
1135 gd->fops = &xlvbd_block_fops;
1136 gd->private_data = info;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001137 set_capacity(gd, capacity);
1138
Stefan Bader7c4d7d72013-05-13 16:28:15 +02001139 if (xlvbd_init_blk_queue(gd, sector_size, physical_sector_size,
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001140 info->max_indirect_segments ? :
1141 BLKIF_MAX_SEGMENTS_PER_REQUEST)) {
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001142 del_gendisk(gd);
Jan Beulich0e345822010-08-07 18:28:55 +02001143 goto release;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001144 }
1145
1146 info->rq = gd->queue;
1147 info->gd = gd;
1148
Tejun Heo4913efe2010-09-03 11:56:16 +02001149 xlvbd_flush(info);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001150
1151 if (vdisk_info & VDISK_READONLY)
1152 set_disk_ro(gd, 1);
1153
1154 if (vdisk_info & VDISK_REMOVABLE)
1155 gd->flags |= GENHD_FL_REMOVABLE;
1156
1157 if (vdisk_info & VDISK_CDROM)
1158 gd->flags |= GENHD_FL_CD;
1159
1160 return 0;
1161
Jan Beulich0e345822010-08-07 18:28:55 +02001162 release:
1163 xlbd_release_minors(minor, nr_minors);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001164 out:
1165 return err;
1166}
1167
Daniel Stoddena66b5ae2010-08-07 18:33:17 +02001168static void xlvbd_release_gendisk(struct blkfront_info *info)
1169{
Bob Liu3df0e502015-11-14 11:12:12 +08001170 unsigned int minor, nr_minors, i;
Daniel Stoddena66b5ae2010-08-07 18:33:17 +02001171
1172 if (info->rq == NULL)
1173 return;
1174
Daniel Stoddena66b5ae2010-08-07 18:33:17 +02001175 /* No more blkif_request(). */
Bob Liu907c3eb2015-07-13 17:55:24 +08001176 blk_mq_stop_hw_queues(info->rq);
Daniel Stoddena66b5ae2010-08-07 18:33:17 +02001177
Bob Liu3df0e502015-11-14 11:12:12 +08001178 for (i = 0; i < info->nr_rings; i++) {
1179 struct blkfront_ring_info *rinfo = &info->rinfo[i];
Daniel Stoddena66b5ae2010-08-07 18:33:17 +02001180
Bob Liu3df0e502015-11-14 11:12:12 +08001181 /* No more gnttab callback work. */
1182 gnttab_cancel_free_callback(&rinfo->callback);
1183
1184 /* Flush gnttab callback work. Must be done with no locks held. */
1185 flush_work(&rinfo->work);
1186 }
Daniel Stoddena66b5ae2010-08-07 18:33:17 +02001187
1188 del_gendisk(info->gd);
1189
1190 minor = info->gd->first_minor;
1191 nr_minors = info->gd->minors;
1192 xlbd_release_minors(minor, nr_minors);
1193
1194 blk_cleanup_queue(info->rq);
Bob Liu907c3eb2015-07-13 17:55:24 +08001195 blk_mq_free_tag_set(&info->tag_set);
Daniel Stoddena66b5ae2010-08-07 18:33:17 +02001196 info->rq = NULL;
1197
1198 put_disk(info->gd);
1199 info->gd = NULL;
1200}
1201
Bob Liu11659562015-11-14 11:12:13 +08001202/* Already hold rinfo->ring_lock. */
1203static inline void kick_pending_request_queues_locked(struct blkfront_ring_info *rinfo)
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001204{
Bob Liu81f35162015-11-14 11:12:11 +08001205 if (!RING_FULL(&rinfo->ring))
1206 blk_mq_start_stopped_hw_queues(rinfo->dev_info->rq, true);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001207}
1208
Bob Liu11659562015-11-14 11:12:13 +08001209static void kick_pending_request_queues(struct blkfront_ring_info *rinfo)
1210{
1211 unsigned long flags;
1212
1213 spin_lock_irqsave(&rinfo->ring_lock, flags);
1214 kick_pending_request_queues_locked(rinfo);
1215 spin_unlock_irqrestore(&rinfo->ring_lock, flags);
1216}
1217
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001218static void blkif_restart_queue(struct work_struct *work)
1219{
Bob Liu81f35162015-11-14 11:12:11 +08001220 struct blkfront_ring_info *rinfo = container_of(work, struct blkfront_ring_info, work);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001221
Bob Liu81f35162015-11-14 11:12:11 +08001222 if (rinfo->dev_info->connected == BLKIF_STATE_CONNECTED)
1223 kick_pending_request_queues(rinfo);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001224}
1225
Bob Liu3df0e502015-11-14 11:12:12 +08001226static void blkif_free_ring(struct blkfront_ring_info *rinfo)
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001227{
Bob Liu73716df2015-11-16 16:51:39 -05001228 struct grant *persistent_gnt, *n;
Bob Liu3df0e502015-11-14 11:12:12 +08001229 struct blkfront_info *info = rinfo->dev_info;
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001230 int i, j, segs;
Roger Pau Monne0a8704a2012-10-24 18:58:45 +02001231
Roger Pau Monnebfe11d62013-10-29 18:31:14 +01001232 /*
1233 * Remove indirect pages, this only happens when using indirect
1234 * descriptors but not persistent grants
1235 */
Bob Liu81f35162015-11-14 11:12:11 +08001236 if (!list_empty(&rinfo->indirect_pages)) {
Roger Pau Monnebfe11d62013-10-29 18:31:14 +01001237 struct page *indirect_page, *n;
1238
1239 BUG_ON(info->feature_persistent);
Bob Liu81f35162015-11-14 11:12:11 +08001240 list_for_each_entry_safe(indirect_page, n, &rinfo->indirect_pages, lru) {
Roger Pau Monnebfe11d62013-10-29 18:31:14 +01001241 list_del(&indirect_page->lru);
1242 __free_page(indirect_page);
1243 }
1244 }
1245
Bob Liu73716df2015-11-16 16:51:39 -05001246 /* Remove all persistent grants. */
1247 if (!list_empty(&rinfo->grants)) {
1248 list_for_each_entry_safe(persistent_gnt, n,
1249 &rinfo->grants, node) {
1250 list_del(&persistent_gnt->node);
1251 if (persistent_gnt->gref != GRANT_INVALID_REF) {
1252 gnttab_end_foreign_access(persistent_gnt->gref,
1253 0, 0UL);
1254 rinfo->persistent_gnts_c--;
1255 }
1256 if (info->feature_persistent)
1257 __free_page(persistent_gnt->page);
1258 kfree(persistent_gnt);
1259 }
1260 }
1261 BUG_ON(rinfo->persistent_gnts_c != 0);
1262
Bob Liu86839c52015-06-03 13:40:03 +08001263 for (i = 0; i < BLK_RING_SIZE(info); i++) {
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001264 /*
1265 * Clear persistent grants present in requests already
1266 * on the shared ring
1267 */
Bob Liu81f35162015-11-14 11:12:11 +08001268 if (!rinfo->shadow[i].request)
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001269 goto free_shadow;
1270
Bob Liu81f35162015-11-14 11:12:11 +08001271 segs = rinfo->shadow[i].req.operation == BLKIF_OP_INDIRECT ?
1272 rinfo->shadow[i].req.u.indirect.nr_segments :
1273 rinfo->shadow[i].req.u.rw.nr_segments;
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001274 for (j = 0; j < segs; j++) {
Bob Liu81f35162015-11-14 11:12:11 +08001275 persistent_gnt = rinfo->shadow[i].grants_used[j];
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001276 gnttab_end_foreign_access(persistent_gnt->gref, 0, 0UL);
Roger Pau Monnebfe11d62013-10-29 18:31:14 +01001277 if (info->feature_persistent)
Julien Gralla7a6df22015-06-30 11:58:51 +01001278 __free_page(persistent_gnt->page);
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001279 kfree(persistent_gnt);
1280 }
1281
Bob Liu81f35162015-11-14 11:12:11 +08001282 if (rinfo->shadow[i].req.operation != BLKIF_OP_INDIRECT)
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001283 /*
1284 * If this is not an indirect operation don't try to
1285 * free indirect segments
1286 */
1287 goto free_shadow;
1288
1289 for (j = 0; j < INDIRECT_GREFS(segs); j++) {
Bob Liu81f35162015-11-14 11:12:11 +08001290 persistent_gnt = rinfo->shadow[i].indirect_grants[j];
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001291 gnttab_end_foreign_access(persistent_gnt->gref, 0, 0UL);
Julien Gralla7a6df22015-06-30 11:58:51 +01001292 __free_page(persistent_gnt->page);
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001293 kfree(persistent_gnt);
1294 }
1295
1296free_shadow:
Bob Liu81f35162015-11-14 11:12:11 +08001297 kfree(rinfo->shadow[i].grants_used);
1298 rinfo->shadow[i].grants_used = NULL;
1299 kfree(rinfo->shadow[i].indirect_grants);
1300 rinfo->shadow[i].indirect_grants = NULL;
1301 kfree(rinfo->shadow[i].sg);
1302 rinfo->shadow[i].sg = NULL;
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001303 }
1304
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001305 /* No more gnttab callback work. */
Bob Liu81f35162015-11-14 11:12:11 +08001306 gnttab_cancel_free_callback(&rinfo->callback);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001307
1308 /* Flush gnttab callback work. Must be done with no locks held. */
Bob Liu81f35162015-11-14 11:12:11 +08001309 flush_work(&rinfo->work);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001310
1311 /* Free resources associated with old device channel. */
Bob Liu86839c52015-06-03 13:40:03 +08001312 for (i = 0; i < info->nr_ring_pages; i++) {
Bob Liu81f35162015-11-14 11:12:11 +08001313 if (rinfo->ring_ref[i] != GRANT_INVALID_REF) {
1314 gnttab_end_foreign_access(rinfo->ring_ref[i], 0, 0);
1315 rinfo->ring_ref[i] = GRANT_INVALID_REF;
Bob Liu86839c52015-06-03 13:40:03 +08001316 }
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001317 }
Bob Liu6c647b02016-07-01 15:45:57 -04001318 free_pages((unsigned long)rinfo->ring.sring, get_order(info->nr_ring_pages * XEN_PAGE_SIZE));
Bob Liu81f35162015-11-14 11:12:11 +08001319 rinfo->ring.sring = NULL;
Bob Liu86839c52015-06-03 13:40:03 +08001320
Bob Liu81f35162015-11-14 11:12:11 +08001321 if (rinfo->irq)
1322 unbind_from_irqhandler(rinfo->irq, rinfo);
1323 rinfo->evtchn = rinfo->irq = 0;
Bob Liu3df0e502015-11-14 11:12:12 +08001324}
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001325
Bob Liu3df0e502015-11-14 11:12:12 +08001326static void blkif_free(struct blkfront_info *info, int suspend)
1327{
Bob Liu3df0e502015-11-14 11:12:12 +08001328 unsigned int i;
1329
1330 /* Prevent new requests being issued until we fix things up. */
Bob Liu3df0e502015-11-14 11:12:12 +08001331 info->connected = suspend ?
1332 BLKIF_STATE_SUSPENDED : BLKIF_STATE_DISCONNECTED;
1333 /* No more blkif_request(). */
1334 if (info->rq)
1335 blk_mq_stop_hw_queues(info->rq);
1336
Bob Liu3df0e502015-11-14 11:12:12 +08001337 for (i = 0; i < info->nr_rings; i++)
1338 blkif_free_ring(&info->rinfo[i]);
1339
1340 kfree(info->rinfo);
1341 info->rinfo = NULL;
1342 info->nr_rings = 0;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001343}
1344
Julien Grallc004a6f2015-07-22 16:44:54 +01001345struct copy_from_grant {
1346 const struct blk_shadow *s;
1347 unsigned int grant_idx;
1348 unsigned int bvec_offset;
1349 char *bvec_data;
1350};
1351
1352static void blkif_copy_from_grant(unsigned long gfn, unsigned int offset,
1353 unsigned int len, void *data)
1354{
1355 struct copy_from_grant *info = data;
1356 char *shared_data;
1357 /* Convenient aliases */
1358 const struct blk_shadow *s = info->s;
1359
1360 shared_data = kmap_atomic(s->grants_used[info->grant_idx]->page);
1361
1362 memcpy(info->bvec_data + info->bvec_offset,
1363 shared_data + offset, len);
1364
1365 info->bvec_offset += len;
1366 info->grant_idx++;
1367
1368 kunmap_atomic(shared_data);
1369}
1370
Julien Grall6cc568332015-08-13 13:13:35 +01001371static enum blk_req_status blkif_rsp_to_req_status(int rsp)
1372{
1373 switch (rsp)
1374 {
1375 case BLKIF_RSP_OKAY:
1376 return REQ_DONE;
1377 case BLKIF_RSP_EOPNOTSUPP:
1378 return REQ_EOPNOTSUPP;
1379 case BLKIF_RSP_ERROR:
1380 /* Fallthrough. */
1381 default:
1382 return REQ_ERROR;
1383 }
1384}
1385
1386/*
1387 * Get the final status of the block request based on two ring response
1388 */
1389static int blkif_get_final_status(enum blk_req_status s1,
1390 enum blk_req_status s2)
1391{
1392 BUG_ON(s1 == REQ_WAITING);
1393 BUG_ON(s2 == REQ_WAITING);
1394
1395 if (s1 == REQ_ERROR || s2 == REQ_ERROR)
1396 return BLKIF_RSP_ERROR;
1397 else if (s1 == REQ_EOPNOTSUPP || s2 == REQ_EOPNOTSUPP)
1398 return BLKIF_RSP_EOPNOTSUPP;
1399 return BLKIF_RSP_OKAY;
1400}
1401
1402static bool blkif_completion(unsigned long *id,
1403 struct blkfront_ring_info *rinfo,
Roger Pau Monne0a8704a2012-10-24 18:58:45 +02001404 struct blkif_response *bret)
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001405{
Roger Pau Monned62f6912012-12-07 19:00:31 +01001406 int i = 0;
Roger Pau Monneb7649152013-05-02 10:58:50 +02001407 struct scatterlist *sg;
Julien Grallc004a6f2015-07-22 16:44:54 +01001408 int num_sg, num_grant;
Bob Liu81f35162015-11-14 11:12:11 +08001409 struct blkfront_info *info = rinfo->dev_info;
Julien Grall6cc568332015-08-13 13:13:35 +01001410 struct blk_shadow *s = &rinfo->shadow[*id];
Julien Grallc004a6f2015-07-22 16:44:54 +01001411 struct copy_from_grant data = {
Julien Grallc004a6f2015-07-22 16:44:54 +01001412 .grant_idx = 0,
1413 };
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001414
Julien Grallc004a6f2015-07-22 16:44:54 +01001415 num_grant = s->req.operation == BLKIF_OP_INDIRECT ?
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001416 s->req.u.indirect.nr_segments : s->req.u.rw.nr_segments;
Julien Grall6cc568332015-08-13 13:13:35 +01001417
1418 /* The I/O request may be split in two. */
1419 if (unlikely(s->associated_id != NO_ASSOCIATED_ID)) {
1420 struct blk_shadow *s2 = &rinfo->shadow[s->associated_id];
1421
1422 /* Keep the status of the current response in shadow. */
1423 s->status = blkif_rsp_to_req_status(bret->status);
1424
1425 /* Wait the second response if not yet here. */
1426 if (s2->status == REQ_WAITING)
1427 return 0;
1428
1429 bret->status = blkif_get_final_status(s->status,
1430 s2->status);
1431
1432 /*
1433 * All the grants is stored in the first shadow in order
1434 * to make the completion code simpler.
1435 */
1436 num_grant += s2->req.u.rw.nr_segments;
1437
1438 /*
1439 * The two responses may not come in order. Only the
1440 * first request will store the scatter-gather list.
1441 */
1442 if (s2->num_sg != 0) {
1443 /* Update "id" with the ID of the first response. */
1444 *id = s->associated_id;
1445 s = s2;
1446 }
1447
1448 /*
1449 * We don't need anymore the second request, so recycling
1450 * it now.
1451 */
1452 if (add_id_to_freelist(rinfo, s->associated_id))
1453 WARN(1, "%s: can't recycle the second part (id = %ld) of the request\n",
1454 info->gd->disk_name, s->associated_id);
1455 }
1456
1457 data.s = s;
Julien Grallc004a6f2015-07-22 16:44:54 +01001458 num_sg = s->num_sg;
Roger Pau Monne0a8704a2012-10-24 18:58:45 +02001459
Roger Pau Monnebfe11d62013-10-29 18:31:14 +01001460 if (bret->operation == BLKIF_OP_READ && info->feature_persistent) {
Julien Grallc004a6f2015-07-22 16:44:54 +01001461 for_each_sg(s->sg, sg, num_sg, i) {
Roger Pau Monneb7649152013-05-02 10:58:50 +02001462 BUG_ON(sg->offset + sg->length > PAGE_SIZE);
Julien Grallc004a6f2015-07-22 16:44:54 +01001463
1464 data.bvec_offset = sg->offset;
1465 data.bvec_data = kmap_atomic(sg_page(sg));
1466
1467 gnttab_foreach_grant_in_range(sg_page(sg),
1468 sg->offset,
1469 sg->length,
1470 blkif_copy_from_grant,
1471 &data);
1472
1473 kunmap_atomic(data.bvec_data);
Roger Pau Monne0a8704a2012-10-24 18:58:45 +02001474 }
1475 }
1476 /* Add the persistent grant into the list of free grants */
Julien Grallc004a6f2015-07-22 16:44:54 +01001477 for (i = 0; i < num_grant; i++) {
Roger Pau Monnefbe363c2013-08-12 12:53:44 +02001478 if (gnttab_query_foreign_access(s->grants_used[i]->gref)) {
1479 /*
1480 * If the grant is still mapped by the backend (the
1481 * backend has chosen to make this grant persistent)
1482 * we add it at the head of the list, so it will be
1483 * reused first.
1484 */
Roger Pau Monnebfe11d62013-10-29 18:31:14 +01001485 if (!info->feature_persistent)
1486 pr_alert_ratelimited("backed has not unmapped grant: %u\n",
1487 s->grants_used[i]->gref);
Bob Liu73716df2015-11-16 16:51:39 -05001488 list_add(&s->grants_used[i]->node, &rinfo->grants);
1489 rinfo->persistent_gnts_c++;
Roger Pau Monnefbe363c2013-08-12 12:53:44 +02001490 } else {
1491 /*
1492 * If the grant is not mapped by the backend we end the
1493 * foreign access and add it to the tail of the list,
1494 * so it will not be picked again unless we run out of
1495 * persistent grants.
1496 */
1497 gnttab_end_foreign_access(s->grants_used[i]->gref, 0, 0UL);
1498 s->grants_used[i]->gref = GRANT_INVALID_REF;
Bob Liu73716df2015-11-16 16:51:39 -05001499 list_add_tail(&s->grants_used[i]->node, &rinfo->grants);
Roger Pau Monnefbe363c2013-08-12 12:53:44 +02001500 }
Roger Pau Monne0a8704a2012-10-24 18:58:45 +02001501 }
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001502 if (s->req.operation == BLKIF_OP_INDIRECT) {
Julien Grallc004a6f2015-07-22 16:44:54 +01001503 for (i = 0; i < INDIRECT_GREFS(num_grant); i++) {
Roger Pau Monnefbe363c2013-08-12 12:53:44 +02001504 if (gnttab_query_foreign_access(s->indirect_grants[i]->gref)) {
Roger Pau Monnebfe11d62013-10-29 18:31:14 +01001505 if (!info->feature_persistent)
1506 pr_alert_ratelimited("backed has not unmapped grant: %u\n",
1507 s->indirect_grants[i]->gref);
Bob Liu73716df2015-11-16 16:51:39 -05001508 list_add(&s->indirect_grants[i]->node, &rinfo->grants);
1509 rinfo->persistent_gnts_c++;
Roger Pau Monnefbe363c2013-08-12 12:53:44 +02001510 } else {
Roger Pau Monnebfe11d62013-10-29 18:31:14 +01001511 struct page *indirect_page;
1512
Roger Pau Monnefbe363c2013-08-12 12:53:44 +02001513 gnttab_end_foreign_access(s->indirect_grants[i]->gref, 0, 0UL);
Roger Pau Monnebfe11d62013-10-29 18:31:14 +01001514 /*
1515 * Add the used indirect page back to the list of
1516 * available pages for indirect grefs.
1517 */
Bob Liu7b076752015-07-22 14:40:09 +08001518 if (!info->feature_persistent) {
Julien Gralla7a6df22015-06-30 11:58:51 +01001519 indirect_page = s->indirect_grants[i]->page;
Bob Liu81f35162015-11-14 11:12:11 +08001520 list_add(&indirect_page->lru, &rinfo->indirect_pages);
Bob Liu7b076752015-07-22 14:40:09 +08001521 }
Roger Pau Monnefbe363c2013-08-12 12:53:44 +02001522 s->indirect_grants[i]->gref = GRANT_INVALID_REF;
Bob Liu73716df2015-11-16 16:51:39 -05001523 list_add_tail(&s->indirect_grants[i]->node, &rinfo->grants);
Roger Pau Monnefbe363c2013-08-12 12:53:44 +02001524 }
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001525 }
1526 }
Julien Grall6cc568332015-08-13 13:13:35 +01001527
1528 return 1;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001529}
1530
1531static irqreturn_t blkif_interrupt(int irq, void *dev_id)
1532{
1533 struct request *req;
1534 struct blkif_response *bret;
1535 RING_IDX i, rp;
1536 unsigned long flags;
Bob Liu81f35162015-11-14 11:12:11 +08001537 struct blkfront_ring_info *rinfo = (struct blkfront_ring_info *)dev_id;
1538 struct blkfront_info *info = rinfo->dev_info;
Christoph Hellwigf4829a92015-09-27 21:01:50 +02001539 int error;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001540
Bob Liu11659562015-11-14 11:12:13 +08001541 if (unlikely(info->connected != BLKIF_STATE_CONNECTED))
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001542 return IRQ_HANDLED;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001543
Bob Liu11659562015-11-14 11:12:13 +08001544 spin_lock_irqsave(&rinfo->ring_lock, flags);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001545 again:
Bob Liu81f35162015-11-14 11:12:11 +08001546 rp = rinfo->ring.sring->rsp_prod;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001547 rmb(); /* Ensure we see queued responses up to 'rp'. */
1548
Bob Liu81f35162015-11-14 11:12:11 +08001549 for (i = rinfo->ring.rsp_cons; i != rp; i++) {
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001550 unsigned long id;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001551
Bob Liu81f35162015-11-14 11:12:11 +08001552 bret = RING_GET_RESPONSE(&rinfo->ring, i);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001553 id = bret->id;
Konrad Rzeszutek Wilk6878c322012-05-25 17:34:51 -04001554 /*
1555 * The backend has messed up and given us an id that we would
1556 * never have given to it (we stamp it up to BLK_RING_SIZE -
1557 * look in get_id_from_freelist.
1558 */
Bob Liu86839c52015-06-03 13:40:03 +08001559 if (id >= BLK_RING_SIZE(info)) {
Konrad Rzeszutek Wilk6878c322012-05-25 17:34:51 -04001560 WARN(1, "%s: response to %s has incorrect id (%ld)\n",
1561 info->gd->disk_name, op_name(bret->operation), id);
1562 /* We can't safely get the 'struct request' as
1563 * the id is busted. */
1564 continue;
1565 }
Bob Liu81f35162015-11-14 11:12:11 +08001566 req = rinfo->shadow[id].request;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001567
Julien Grall6cc568332015-08-13 13:13:35 +01001568 if (bret->operation != BLKIF_OP_DISCARD) {
1569 /*
1570 * We may need to wait for an extra response if the
1571 * I/O request is split in 2
1572 */
1573 if (!blkif_completion(&id, rinfo, bret))
1574 continue;
1575 }
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001576
Bob Liu81f35162015-11-14 11:12:11 +08001577 if (add_id_to_freelist(rinfo, id)) {
Konrad Rzeszutek Wilk6878c322012-05-25 17:34:51 -04001578 WARN(1, "%s: response to %s (id %ld) couldn't be recycled!\n",
1579 info->gd->disk_name, op_name(bret->operation), id);
1580 continue;
1581 }
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001582
Christoph Hellwigf4829a92015-09-27 21:01:50 +02001583 error = (bret->status == BLKIF_RSP_OKAY) ? 0 : -EIO;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001584 switch (bret->operation) {
Li Dongyanged30bf32011-09-01 18:39:09 +08001585 case BLKIF_OP_DISCARD:
1586 if (unlikely(bret->status == BLKIF_RSP_EOPNOTSUPP)) {
1587 struct request_queue *rq = info->rq;
Konrad Rzeszutek Wilk6878c322012-05-25 17:34:51 -04001588 printk(KERN_WARNING "blkfront: %s: %s op failed\n",
1589 info->gd->disk_name, op_name(bret->operation));
Christoph Hellwigf4829a92015-09-27 21:01:50 +02001590 error = -EOPNOTSUPP;
Li Dongyanged30bf32011-09-01 18:39:09 +08001591 info->feature_discard = 0;
Konrad Rzeszutek Wilk5ea42982011-10-12 16:23:30 -04001592 info->feature_secdiscard = 0;
Li Dongyanged30bf32011-09-01 18:39:09 +08001593 queue_flag_clear(QUEUE_FLAG_DISCARD, rq);
Christoph Hellwig288dab82016-06-09 16:00:36 +02001594 queue_flag_clear(QUEUE_FLAG_SECERASE, rq);
Li Dongyanged30bf32011-09-01 18:39:09 +08001595 }
Christoph Hellwigf4829a92015-09-27 21:01:50 +02001596 blk_mq_complete_request(req, error);
Li Dongyanged30bf32011-09-01 18:39:09 +08001597 break;
Konrad Rzeszutek Wilkedf6ef52011-05-03 12:01:11 -04001598 case BLKIF_OP_FLUSH_DISKCACHE:
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001599 case BLKIF_OP_WRITE_BARRIER:
1600 if (unlikely(bret->status == BLKIF_RSP_EOPNOTSUPP)) {
Konrad Rzeszutek Wilk6878c322012-05-25 17:34:51 -04001601 printk(KERN_WARNING "blkfront: %s: %s op failed\n",
1602 info->gd->disk_name, op_name(bret->operation));
Christoph Hellwigf4829a92015-09-27 21:01:50 +02001603 error = -EOPNOTSUPP;
Jeremy Fitzhardingedcb8bae2010-11-02 11:55:58 -04001604 }
1605 if (unlikely(bret->status == BLKIF_RSP_ERROR &&
Bob Liu81f35162015-11-14 11:12:11 +08001606 rinfo->shadow[id].req.u.rw.nr_segments == 0)) {
Konrad Rzeszutek Wilk6878c322012-05-25 17:34:51 -04001607 printk(KERN_WARNING "blkfront: %s: empty %s op failed\n",
1608 info->gd->disk_name, op_name(bret->operation));
Christoph Hellwigf4829a92015-09-27 21:01:50 +02001609 error = -EOPNOTSUPP;
Jeremy Fitzhardingedcb8bae2010-11-02 11:55:58 -04001610 }
Christoph Hellwigf4829a92015-09-27 21:01:50 +02001611 if (unlikely(error)) {
1612 if (error == -EOPNOTSUPP)
1613 error = 0;
Mike Christiea4180902016-06-05 14:32:24 -05001614 info->feature_fua = 0;
Tejun Heo4913efe2010-09-03 11:56:16 +02001615 info->feature_flush = 0;
1616 xlvbd_flush(info);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001617 }
1618 /* fall through */
1619 case BLKIF_OP_READ:
1620 case BLKIF_OP_WRITE:
1621 if (unlikely(bret->status != BLKIF_RSP_OKAY))
1622 dev_dbg(&info->xbdev->dev, "Bad return from blkdev data "
1623 "request: %x\n", bret->status);
1624
Christoph Hellwigf4829a92015-09-27 21:01:50 +02001625 blk_mq_complete_request(req, error);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001626 break;
1627 default:
1628 BUG();
1629 }
1630 }
1631
Bob Liu81f35162015-11-14 11:12:11 +08001632 rinfo->ring.rsp_cons = i;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001633
Bob Liu81f35162015-11-14 11:12:11 +08001634 if (i != rinfo->ring.req_prod_pvt) {
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001635 int more_to_do;
Bob Liu81f35162015-11-14 11:12:11 +08001636 RING_FINAL_CHECK_FOR_RESPONSES(&rinfo->ring, more_to_do);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001637 if (more_to_do)
1638 goto again;
1639 } else
Bob Liu81f35162015-11-14 11:12:11 +08001640 rinfo->ring.sring->rsp_event = i + 1;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001641
Bob Liu11659562015-11-14 11:12:13 +08001642 kick_pending_request_queues_locked(rinfo);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001643
Bob Liu11659562015-11-14 11:12:13 +08001644 spin_unlock_irqrestore(&rinfo->ring_lock, flags);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001645
1646 return IRQ_HANDLED;
1647}
1648
1649
1650static int setup_blkring(struct xenbus_device *dev,
Bob Liu81f35162015-11-14 11:12:11 +08001651 struct blkfront_ring_info *rinfo)
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001652{
1653 struct blkif_sring *sring;
Bob Liu86839c52015-06-03 13:40:03 +08001654 int err, i;
Bob Liu81f35162015-11-14 11:12:11 +08001655 struct blkfront_info *info = rinfo->dev_info;
Julien Grallc004a6f2015-07-22 16:44:54 +01001656 unsigned long ring_size = info->nr_ring_pages * XEN_PAGE_SIZE;
Julien Grall9cce2912015-10-13 17:50:11 +01001657 grant_ref_t gref[XENBUS_MAX_RING_GRANTS];
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001658
Bob Liu86839c52015-06-03 13:40:03 +08001659 for (i = 0; i < info->nr_ring_pages; i++)
Bob Liu81f35162015-11-14 11:12:11 +08001660 rinfo->ring_ref[i] = GRANT_INVALID_REF;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001661
Bob Liu86839c52015-06-03 13:40:03 +08001662 sring = (struct blkif_sring *)__get_free_pages(GFP_NOIO | __GFP_HIGH,
1663 get_order(ring_size));
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001664 if (!sring) {
1665 xenbus_dev_fatal(dev, -ENOMEM, "allocating shared ring");
1666 return -ENOMEM;
1667 }
1668 SHARED_RING_INIT(sring);
Bob Liu81f35162015-11-14 11:12:11 +08001669 FRONT_RING_INIT(&rinfo->ring, sring, ring_size);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001670
Bob Liu81f35162015-11-14 11:12:11 +08001671 err = xenbus_grant_ring(dev, rinfo->ring.sring, info->nr_ring_pages, gref);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001672 if (err < 0) {
Bob Liu86839c52015-06-03 13:40:03 +08001673 free_pages((unsigned long)sring, get_order(ring_size));
Bob Liu81f35162015-11-14 11:12:11 +08001674 rinfo->ring.sring = NULL;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001675 goto fail;
1676 }
Bob Liu86839c52015-06-03 13:40:03 +08001677 for (i = 0; i < info->nr_ring_pages; i++)
Bob Liu81f35162015-11-14 11:12:11 +08001678 rinfo->ring_ref[i] = gref[i];
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001679
Bob Liu81f35162015-11-14 11:12:11 +08001680 err = xenbus_alloc_evtchn(dev, &rinfo->evtchn);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001681 if (err)
1682 goto fail;
1683
Bob Liu81f35162015-11-14 11:12:11 +08001684 err = bind_evtchn_to_irqhandler(rinfo->evtchn, blkif_interrupt, 0,
1685 "blkif", rinfo);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001686 if (err <= 0) {
1687 xenbus_dev_fatal(dev, err,
1688 "bind_evtchn_to_irqhandler failed");
1689 goto fail;
1690 }
Bob Liu81f35162015-11-14 11:12:11 +08001691 rinfo->irq = err;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001692
1693 return 0;
1694fail:
1695 blkif_free(info, 0);
1696 return err;
1697}
1698
Bob Liu28d949b2015-11-14 11:12:14 +08001699/*
1700 * Write out per-ring/queue nodes including ring-ref and event-channel, and each
1701 * ring buffer may have multi pages depending on ->nr_ring_pages.
1702 */
1703static int write_per_ring_nodes(struct xenbus_transaction xbt,
1704 struct blkfront_ring_info *rinfo, const char *dir)
1705{
1706 int err;
1707 unsigned int i;
1708 const char *message = NULL;
1709 struct blkfront_info *info = rinfo->dev_info;
1710
1711 if (info->nr_ring_pages == 1) {
1712 err = xenbus_printf(xbt, dir, "ring-ref", "%u", rinfo->ring_ref[0]);
1713 if (err) {
1714 message = "writing ring-ref";
1715 goto abort_transaction;
1716 }
1717 } else {
1718 for (i = 0; i < info->nr_ring_pages; i++) {
1719 char ring_ref_name[RINGREF_NAME_LEN];
1720
1721 snprintf(ring_ref_name, RINGREF_NAME_LEN, "ring-ref%u", i);
1722 err = xenbus_printf(xbt, dir, ring_ref_name,
1723 "%u", rinfo->ring_ref[i]);
1724 if (err) {
1725 message = "writing ring-ref";
1726 goto abort_transaction;
1727 }
1728 }
1729 }
1730
1731 err = xenbus_printf(xbt, dir, "event-channel", "%u", rinfo->evtchn);
1732 if (err) {
1733 message = "writing event-channel";
1734 goto abort_transaction;
1735 }
1736
1737 return 0;
1738
1739abort_transaction:
1740 xenbus_transaction_end(xbt, 1);
1741 if (message)
1742 xenbus_dev_fatal(info->xbdev, err, "%s", message);
1743
1744 return err;
1745}
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001746
1747/* Common code used when first setting up, and when resuming. */
Ian Campbell203fd612009-12-04 15:33:54 +00001748static int talk_to_blkback(struct xenbus_device *dev,
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001749 struct blkfront_info *info)
1750{
1751 const char *message = NULL;
1752 struct xenbus_transaction xbt;
Bob Liu28d949b2015-11-14 11:12:14 +08001753 int err;
1754 unsigned int i, max_page_order = 0;
Bob Liu86839c52015-06-03 13:40:03 +08001755 unsigned int ring_page_order = 0;
1756
1757 err = xenbus_scanf(XBT_NIL, info->xbdev->otherend,
1758 "max-ring-page-order", "%u", &max_page_order);
1759 if (err != 1)
1760 info->nr_ring_pages = 1;
1761 else {
1762 ring_page_order = min(xen_blkif_max_ring_order, max_page_order);
1763 info->nr_ring_pages = 1 << ring_page_order;
1764 }
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001765
Bob Liu3df0e502015-11-14 11:12:12 +08001766 for (i = 0; i < info->nr_rings; i++) {
Bob Liu28d949b2015-11-14 11:12:14 +08001767 struct blkfront_ring_info *rinfo = &info->rinfo[i];
1768
Bob Liu3df0e502015-11-14 11:12:12 +08001769 /* Create shared ring, alloc event channel. */
1770 err = setup_blkring(dev, rinfo);
1771 if (err)
1772 goto destroy_blkring;
1773 }
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001774
1775again:
1776 err = xenbus_transaction_start(&xbt);
1777 if (err) {
1778 xenbus_dev_fatal(dev, err, "starting transaction");
1779 goto destroy_blkring;
1780 }
1781
Bob Liu28d949b2015-11-14 11:12:14 +08001782 if (info->nr_ring_pages > 1) {
1783 err = xenbus_printf(xbt, dev->nodename, "ring-page-order", "%u",
1784 ring_page_order);
Bob Liu3df0e502015-11-14 11:12:12 +08001785 if (err) {
Bob Liu28d949b2015-11-14 11:12:14 +08001786 message = "writing ring-page-order";
Bob Liu3df0e502015-11-14 11:12:12 +08001787 goto abort_transaction;
1788 }
Bob Liu28d949b2015-11-14 11:12:14 +08001789 }
1790
1791 /* We already got the number of queues/rings in _probe */
1792 if (info->nr_rings == 1) {
1793 err = write_per_ring_nodes(xbt, &info->rinfo[0], dev->nodename);
1794 if (err)
1795 goto destroy_blkring;
Bob Liu3df0e502015-11-14 11:12:12 +08001796 } else {
Bob Liu28d949b2015-11-14 11:12:14 +08001797 char *path;
1798 size_t pathsize;
1799
1800 err = xenbus_printf(xbt, dev->nodename, "multi-queue-num-queues", "%u",
1801 info->nr_rings);
1802 if (err) {
1803 message = "writing multi-queue-num-queues";
1804 goto abort_transaction;
1805 }
1806
1807 pathsize = strlen(dev->nodename) + QUEUE_NAME_LEN;
1808 path = kmalloc(pathsize, GFP_KERNEL);
1809 if (!path) {
1810 err = -ENOMEM;
1811 message = "ENOMEM while writing ring references";
1812 goto abort_transaction;
1813 }
1814
1815 for (i = 0; i < info->nr_rings; i++) {
1816 memset(path, 0, pathsize);
1817 snprintf(path, pathsize, "%s/queue-%u", dev->nodename, i);
1818 err = write_per_ring_nodes(xbt, &info->rinfo[i], path);
1819 if (err) {
1820 kfree(path);
1821 goto destroy_blkring;
1822 }
1823 }
1824 kfree(path);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001825 }
Markus Armbruster3e334232008-04-02 10:54:02 -07001826 err = xenbus_printf(xbt, dev->nodename, "protocol", "%s",
1827 XEN_IO_PROTO_ABI_NATIVE);
1828 if (err) {
1829 message = "writing protocol";
1830 goto abort_transaction;
1831 }
Roger Pau Monne0a8704a2012-10-24 18:58:45 +02001832 err = xenbus_printf(xbt, dev->nodename,
Roger Pau Monnecb5bd4d2012-11-02 16:43:04 +01001833 "feature-persistent", "%u", 1);
Roger Pau Monne0a8704a2012-10-24 18:58:45 +02001834 if (err)
1835 dev_warn(&dev->dev,
1836 "writing persistent grants feature to xenbus");
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001837
1838 err = xenbus_transaction_end(xbt, 0);
1839 if (err) {
1840 if (err == -EAGAIN)
1841 goto again;
1842 xenbus_dev_fatal(dev, err, "completing transaction");
1843 goto destroy_blkring;
1844 }
1845
Bob Liu3df0e502015-11-14 11:12:12 +08001846 for (i = 0; i < info->nr_rings; i++) {
1847 unsigned int j;
Bob Liu28d949b2015-11-14 11:12:14 +08001848 struct blkfront_ring_info *rinfo = &info->rinfo[i];
Bob Liu3df0e502015-11-14 11:12:12 +08001849
1850 for (j = 0; j < BLK_RING_SIZE(info); j++)
1851 rinfo->shadow[j].req.u.rw.id = j + 1;
1852 rinfo->shadow[BLK_RING_SIZE(info)-1].req.u.rw.id = 0x0fffffff;
1853 }
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001854 xenbus_switch_state(dev, XenbusStateInitialised);
1855
1856 return 0;
1857
1858 abort_transaction:
1859 xenbus_transaction_end(xbt, 1);
1860 if (message)
1861 xenbus_dev_fatal(dev, err, "%s", message);
1862 destroy_blkring:
1863 blkif_free(info, 0);
Bob Liu3df0e502015-11-14 11:12:12 +08001864
Konrad Rzeszutek Wilkc31ecf62015-12-18 16:28:53 -05001865 kfree(info);
1866 dev_set_drvdata(&dev->dev, NULL);
1867
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001868 return err;
1869}
1870
Bob Liu3db70a82015-11-25 17:52:55 -05001871static int negotiate_mq(struct blkfront_info *info)
1872{
1873 unsigned int backend_max_queues = 0;
1874 int err;
1875 unsigned int i;
1876
1877 BUG_ON(info->nr_rings);
1878
1879 /* Check if backend supports multiple queues. */
1880 err = xenbus_scanf(XBT_NIL, info->xbdev->otherend,
1881 "multi-queue-max-queues", "%u", &backend_max_queues);
1882 if (err < 0)
1883 backend_max_queues = 1;
1884
1885 info->nr_rings = min(backend_max_queues, xen_blkif_max_queues);
1886 /* We need at least one ring. */
1887 if (!info->nr_rings)
1888 info->nr_rings = 1;
1889
1890 info->rinfo = kzalloc(sizeof(struct blkfront_ring_info) * info->nr_rings, GFP_KERNEL);
1891 if (!info->rinfo) {
1892 xenbus_dev_fatal(info->xbdev, -ENOMEM, "allocating ring_info structure");
1893 return -ENOMEM;
1894 }
1895
1896 for (i = 0; i < info->nr_rings; i++) {
1897 struct blkfront_ring_info *rinfo;
1898
1899 rinfo = &info->rinfo[i];
1900 INIT_LIST_HEAD(&rinfo->indirect_pages);
1901 INIT_LIST_HEAD(&rinfo->grants);
1902 rinfo->dev_info = info;
1903 INIT_WORK(&rinfo->work, blkif_restart_queue);
1904 spin_lock_init(&rinfo->ring_lock);
1905 }
1906 return 0;
1907}
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001908/**
1909 * Entry point to this code when a new device is created. Allocate the basic
1910 * structures and the ring buffer for communication with the backend, and
1911 * inform the backend of the appropriate details for those. Switch to
1912 * Initialised state.
1913 */
1914static int blkfront_probe(struct xenbus_device *dev,
1915 const struct xenbus_device_id *id)
1916{
Bob Liu86839c52015-06-03 13:40:03 +08001917 int err, vdevice;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001918 struct blkfront_info *info;
1919
1920 /* FIXME: Use dynamic device id if this is not set. */
1921 err = xenbus_scanf(XBT_NIL, dev->nodename,
1922 "virtual-device", "%i", &vdevice);
1923 if (err != 1) {
Chris Lalancette9246b5f2008-09-17 14:30:32 -07001924 /* go looking in the extended area instead */
1925 err = xenbus_scanf(XBT_NIL, dev->nodename, "virtual-device-ext",
1926 "%i", &vdevice);
1927 if (err != 1) {
1928 xenbus_dev_fatal(dev, err, "reading virtual-device");
1929 return err;
1930 }
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001931 }
1932
Stefano Stabellinib98a4092010-07-29 14:53:16 +01001933 if (xen_hvm_domain()) {
1934 char *type;
1935 int len;
1936 /* no unplug has been done: do not hook devices != xen vbds */
Konrad Rzeszutek Wilk51c71a32013-11-26 15:05:40 -05001937 if (xen_has_pv_and_legacy_disk_devices()) {
Stefano Stabellinib98a4092010-07-29 14:53:16 +01001938 int major;
Stefano Stabellinic1c54132010-05-14 12:44:30 +01001939
Stefano Stabellinib98a4092010-07-29 14:53:16 +01001940 if (!VDEV_IS_EXTENDED(vdevice))
1941 major = BLKIF_MAJOR(vdevice);
1942 else
1943 major = XENVBD_MAJOR;
Stefano Stabellinic1c54132010-05-14 12:44:30 +01001944
Stefano Stabellinib98a4092010-07-29 14:53:16 +01001945 if (major != XENVBD_MAJOR) {
1946 printk(KERN_INFO
1947 "%s: HVM does not support vbd %d as xen block device\n",
Rasmus Villemoes02f1f212015-02-12 15:01:31 -08001948 __func__, vdevice);
Stefano Stabellinib98a4092010-07-29 14:53:16 +01001949 return -ENODEV;
1950 }
1951 }
1952 /* do not create a PV cdrom device if we are an HVM guest */
1953 type = xenbus_read(XBT_NIL, dev->nodename, "device-type", &len);
1954 if (IS_ERR(type))
1955 return -ENODEV;
1956 if (strncmp(type, "cdrom", 5) == 0) {
1957 kfree(type);
Stefano Stabellinic1c54132010-05-14 12:44:30 +01001958 return -ENODEV;
1959 }
Stefano Stabellinib98a4092010-07-29 14:53:16 +01001960 kfree(type);
Stefano Stabellinic1c54132010-05-14 12:44:30 +01001961 }
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001962 info = kzalloc(sizeof(*info), GFP_KERNEL);
1963 if (!info) {
1964 xenbus_dev_fatal(dev, -ENOMEM, "allocating info structure");
1965 return -ENOMEM;
1966 }
1967
Bob Liu28d949b2015-11-14 11:12:14 +08001968 info->xbdev = dev;
Bob Liu3db70a82015-11-25 17:52:55 -05001969 err = negotiate_mq(info);
1970 if (err) {
Bob Liu3df0e502015-11-14 11:12:12 +08001971 kfree(info);
Bob Liu3db70a82015-11-25 17:52:55 -05001972 return err;
Bob Liu3df0e502015-11-14 11:12:12 +08001973 }
Bob Liu81f35162015-11-14 11:12:11 +08001974
Daniel Stoddenb70f5fa2010-04-30 22:01:19 +00001975 mutex_init(&info->mutex);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001976 info->vdevice = vdevice;
1977 info->connected = BLKIF_STATE_DISCONNECTED;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001978
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001979 /* Front end dir is a number, which is used as the id. */
1980 info->handle = simple_strtoul(strrchr(dev->nodename, '/')+1, NULL, 0);
Greg Kroah-Hartmana1b4b122009-04-30 14:43:31 -07001981 dev_set_drvdata(&dev->dev, info);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001982
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001983 return 0;
1984}
1985
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02001986static void split_bio_end(struct bio *bio)
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001987{
1988 struct split_bio *split_bio = bio->bi_private;
1989
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001990 if (atomic_dec_and_test(&split_bio->pending)) {
1991 split_bio->bio->bi_phys_segments = 0;
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02001992 split_bio->bio->bi_error = bio->bi_error;
1993 bio_endio(split_bio->bio);
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001994 kfree(split_bio);
1995 }
1996 bio_put(bio);
1997}
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001998
1999static int blkif_recover(struct blkfront_info *info)
2000{
Bob Liu3df0e502015-11-14 11:12:12 +08002001 unsigned int i, r_index;
Roger Pau Monne402b27f2013-04-18 16:06:54 +02002002 struct request *req, *n;
Roger Pau Monne402b27f2013-04-18 16:06:54 +02002003 int rc;
2004 struct bio *bio, *cloned_bio;
Roger Pau Monne402b27f2013-04-18 16:06:54 +02002005 unsigned int segs, offset;
2006 int pending, size;
2007 struct split_bio *split_bio;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002008
Bob Liu3df0e502015-11-14 11:12:12 +08002009 blkfront_gather_backend_features(info);
Roger Pau Monne402b27f2013-04-18 16:06:54 +02002010 segs = info->max_indirect_segments ? : BLKIF_MAX_SEGMENTS_PER_REQUEST;
Bob Liu6c647b02016-07-01 15:45:57 -04002011 blk_queue_max_segments(info->rq, segs / GRANTS_PER_PSEG);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002012
Bob Liu3df0e502015-11-14 11:12:12 +08002013 for (r_index = 0; r_index < info->nr_rings; r_index++) {
Bob Liu7b427a52016-06-27 16:33:24 +08002014 struct blkfront_ring_info *rinfo = &info->rinfo[r_index];
Bob Liu3df0e502015-11-14 11:12:12 +08002015
2016 rc = blkfront_setup_indirect(rinfo);
Bob Liu7b427a52016-06-27 16:33:24 +08002017 if (rc)
Bob Liu3df0e502015-11-14 11:12:12 +08002018 return rc;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002019 }
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002020 xenbus_switch_state(info->xbdev, XenbusStateConnected);
2021
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002022 /* Now safe for us to use the shared ring */
2023 info->connected = BLKIF_STATE_CONNECTED;
2024
Bob Liu3df0e502015-11-14 11:12:12 +08002025 for (r_index = 0; r_index < info->nr_rings; r_index++) {
2026 struct blkfront_ring_info *rinfo;
2027
2028 rinfo = &info->rinfo[r_index];
2029 /* Kick any other new requests queued since we resumed */
2030 kick_pending_request_queues(rinfo);
2031 }
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002032
Bob Liu7b427a52016-06-27 16:33:24 +08002033 list_for_each_entry_safe(req, n, &info->requests, queuelist) {
Roger Pau Monne402b27f2013-04-18 16:06:54 +02002034 /* Requeue pending requests (flush or discard) */
2035 list_del_init(&req->queuelist);
2036 BUG_ON(req->nr_phys_segments > segs);
Bob Liu907c3eb2015-07-13 17:55:24 +08002037 blk_mq_requeue_request(req);
Roger Pau Monne402b27f2013-04-18 16:06:54 +02002038 }
Bob Liu907c3eb2015-07-13 17:55:24 +08002039 blk_mq_kick_requeue_list(info->rq);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002040
Bob Liu7b427a52016-06-27 16:33:24 +08002041 while ((bio = bio_list_pop(&info->bio_list)) != NULL) {
Roger Pau Monne402b27f2013-04-18 16:06:54 +02002042 /* Traverse the list of pending bios and re-queue them */
2043 if (bio_segments(bio) > segs) {
2044 /*
2045 * This bio has more segments than what we can
2046 * handle, we have to split it.
2047 */
2048 pending = (bio_segments(bio) + segs - 1) / segs;
2049 split_bio = kzalloc(sizeof(*split_bio), GFP_NOIO);
2050 BUG_ON(split_bio == NULL);
2051 atomic_set(&split_bio->pending, pending);
2052 split_bio->bio = bio;
2053 for (i = 0; i < pending; i++) {
Julien Grallc004a6f2015-07-22 16:44:54 +01002054 offset = (i * segs * XEN_PAGE_SIZE) >> 9;
2055 size = min((unsigned int)(segs * XEN_PAGE_SIZE) >> 9,
Kent Overstreet4f024f32013-10-11 15:44:27 -07002056 (unsigned int)bio_sectors(bio) - offset);
Roger Pau Monne402b27f2013-04-18 16:06:54 +02002057 cloned_bio = bio_clone(bio, GFP_NOIO);
2058 BUG_ON(cloned_bio == NULL);
Kent Overstreet6678d832013-08-07 11:14:32 -07002059 bio_trim(cloned_bio, offset, size);
Roger Pau Monne402b27f2013-04-18 16:06:54 +02002060 cloned_bio->bi_private = split_bio;
2061 cloned_bio->bi_end_io = split_bio_end;
Mike Christie4e49ea42016-06-05 14:31:41 -05002062 submit_bio(cloned_bio);
Roger Pau Monne402b27f2013-04-18 16:06:54 +02002063 }
2064 /*
2065 * Now we have to wait for all those smaller bios to
2066 * end, so we can also end the "parent" bio.
2067 */
2068 continue;
2069 }
2070 /* We don't need to split this bio */
Mike Christie4e49ea42016-06-05 14:31:41 -05002071 submit_bio(bio);
Roger Pau Monne402b27f2013-04-18 16:06:54 +02002072 }
2073
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002074 return 0;
2075}
2076
2077/**
2078 * We are reconnecting to the backend, due to a suspend/resume, or a backend
2079 * driver restart. We tear down our blkif structure and recreate it, but
2080 * leave the device-layer structures intact so that this is transparent to the
2081 * rest of the kernel.
2082 */
2083static int blkfront_resume(struct xenbus_device *dev)
2084{
Greg Kroah-Hartmana1b4b122009-04-30 14:43:31 -07002085 struct blkfront_info *info = dev_get_drvdata(&dev->dev);
Bob Liu3db70a82015-11-25 17:52:55 -05002086 int err = 0;
Bob Liu7b427a52016-06-27 16:33:24 +08002087 unsigned int i, j;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002088
2089 dev_dbg(&dev->dev, "blkfront_resume: %s\n", dev->nodename);
2090
Bob Liu7b427a52016-06-27 16:33:24 +08002091 bio_list_init(&info->bio_list);
2092 INIT_LIST_HEAD(&info->requests);
2093 for (i = 0; i < info->nr_rings; i++) {
2094 struct blkfront_ring_info *rinfo = &info->rinfo[i];
2095 struct bio_list merge_bio;
2096 struct blk_shadow *shadow = rinfo->shadow;
2097
2098 for (j = 0; j < BLK_RING_SIZE(info); j++) {
2099 /* Not in use? */
2100 if (!shadow[j].request)
2101 continue;
2102
2103 /*
2104 * Get the bios in the request so we can re-queue them.
2105 */
Linus Torvaldsd05d7f42016-07-26 15:03:07 -07002106 if (req_op(shadow[i].request) == REQ_OP_FLUSH ||
2107 req_op(shadow[i].request) == REQ_OP_DISCARD ||
Linus Torvalds3fc9d692016-07-26 15:37:51 -07002108 req_op(shadow[i].request) == REQ_OP_SECURE_ERASE ||
2109 shadow[j].request->cmd_flags & REQ_FUA) {
Bob Liu7b427a52016-06-27 16:33:24 +08002110 /*
2111 * Flush operations don't contain bios, so
2112 * we need to requeue the whole request
Linus Torvalds3fc9d692016-07-26 15:37:51 -07002113 *
2114 * XXX: but this doesn't make any sense for a
2115 * write with the FUA flag set..
Bob Liu7b427a52016-06-27 16:33:24 +08002116 */
2117 list_add(&shadow[j].request->queuelist, &info->requests);
2118 continue;
2119 }
2120 merge_bio.head = shadow[j].request->bio;
2121 merge_bio.tail = shadow[j].request->biotail;
2122 bio_list_merge(&info->bio_list, &merge_bio);
2123 shadow[j].request->bio = NULL;
2124 blk_mq_end_request(shadow[j].request, 0);
2125 }
2126 }
2127
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002128 blkif_free(info, info->connected == BLKIF_STATE_CONNECTED);
2129
Bob Liu3db70a82015-11-25 17:52:55 -05002130 err = negotiate_mq(info);
2131 if (err)
2132 return err;
2133
Ian Campbell203fd612009-12-04 15:33:54 +00002134 err = talk_to_blkback(dev, info);
Bob Liu2a6f71a2016-05-31 16:59:17 +08002135 if (!err)
2136 blk_mq_update_nr_hw_queues(&info->tag_set, info->nr_rings);
Roger Pau Monne402b27f2013-04-18 16:06:54 +02002137
2138 /*
2139 * We have to wait for the backend to switch to
2140 * connected state, since we want to read which
2141 * features it supports.
2142 */
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002143
2144 return err;
2145}
2146
Konrad Rzeszutek Wilk6f03a7f2015-11-16 15:14:41 -05002147static void blkfront_closing(struct blkfront_info *info)
Daniel Stoddenb70f5fa2010-04-30 22:01:19 +00002148{
2149 struct xenbus_device *xbdev = info->xbdev;
2150 struct block_device *bdev = NULL;
2151
2152 mutex_lock(&info->mutex);
2153
2154 if (xbdev->state == XenbusStateClosing) {
2155 mutex_unlock(&info->mutex);
2156 return;
2157 }
2158
2159 if (info->gd)
2160 bdev = bdget_disk(info->gd, 0);
2161
2162 mutex_unlock(&info->mutex);
2163
2164 if (!bdev) {
2165 xenbus_frontend_closed(xbdev);
2166 return;
2167 }
2168
2169 mutex_lock(&bdev->bd_mutex);
2170
Daniel Stodden7b32d102010-04-30 22:01:23 +00002171 if (bdev->bd_openers) {
Daniel Stoddenb70f5fa2010-04-30 22:01:19 +00002172 xenbus_dev_error(xbdev, -EBUSY,
2173 "Device in use; refusing to close");
2174 xenbus_switch_state(xbdev, XenbusStateClosing);
2175 } else {
2176 xlvbd_release_gendisk(info);
2177 xenbus_frontend_closed(xbdev);
2178 }
2179
2180 mutex_unlock(&bdev->bd_mutex);
2181 bdput(bdev);
2182}
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002183
Li Dongyanged30bf32011-09-01 18:39:09 +08002184static void blkfront_setup_discard(struct blkfront_info *info)
2185{
2186 int err;
Li Dongyanged30bf32011-09-01 18:39:09 +08002187 unsigned int discard_granularity;
2188 unsigned int discard_alignment;
Konrad Rzeszutek Wilk5ea42982011-10-12 16:23:30 -04002189 unsigned int discard_secure;
Li Dongyanged30bf32011-09-01 18:39:09 +08002190
Olaf Hering1c8cad62014-05-21 16:32:40 +02002191 info->feature_discard = 1;
2192 err = xenbus_gather(XBT_NIL, info->xbdev->otherend,
2193 "discard-granularity", "%u", &discard_granularity,
2194 "discard-alignment", "%u", &discard_alignment,
2195 NULL);
2196 if (!err) {
2197 info->discard_granularity = discard_granularity;
2198 info->discard_alignment = discard_alignment;
2199 }
Jan Beulichff595322016-07-07 02:05:46 -06002200 err = xenbus_scanf(XBT_NIL, info->xbdev->otherend,
2201 "discard-secure", "%u", &discard_secure);
2202 if (err > 0)
Olaf Hering1c8cad62014-05-21 16:32:40 +02002203 info->feature_secdiscard = !!discard_secure;
Li Dongyanged30bf32011-09-01 18:39:09 +08002204}
2205
Bob Liu81f35162015-11-14 11:12:11 +08002206static int blkfront_setup_indirect(struct blkfront_ring_info *rinfo)
Roger Pau Monne402b27f2013-04-18 16:06:54 +02002207{
Julien Grallc004a6f2015-07-22 16:44:54 +01002208 unsigned int psegs, grants;
Roger Pau Monne402b27f2013-04-18 16:06:54 +02002209 int err, i;
Bob Liu81f35162015-11-14 11:12:11 +08002210 struct blkfront_info *info = rinfo->dev_info;
Roger Pau Monne402b27f2013-04-18 16:06:54 +02002211
Julien Grall6cc568332015-08-13 13:13:35 +01002212 if (info->max_indirect_segments == 0) {
2213 if (!HAS_EXTRA_REQ)
2214 grants = BLKIF_MAX_SEGMENTS_PER_REQUEST;
2215 else {
2216 /*
2217 * When an extra req is required, the maximum
2218 * grants supported is related to the size of the
2219 * Linux block segment.
2220 */
2221 grants = GRANTS_PER_PSEG;
2222 }
2223 }
Bob Liud50babb2015-07-22 14:40:08 +08002224 else
Julien Grallc004a6f2015-07-22 16:44:54 +01002225 grants = info->max_indirect_segments;
2226 psegs = grants / GRANTS_PER_PSEG;
Roger Pau Monne402b27f2013-04-18 16:06:54 +02002227
Bob Liu81f35162015-11-14 11:12:11 +08002228 err = fill_grant_buffer(rinfo,
Julien Grallc004a6f2015-07-22 16:44:54 +01002229 (grants + INDIRECT_GREFS(grants)) * BLK_RING_SIZE(info));
Roger Pau Monne402b27f2013-04-18 16:06:54 +02002230 if (err)
2231 goto out_of_memory;
2232
Roger Pau Monnebfe11d62013-10-29 18:31:14 +01002233 if (!info->feature_persistent && info->max_indirect_segments) {
2234 /*
2235 * We are using indirect descriptors but not persistent
2236 * grants, we need to allocate a set of pages that can be
2237 * used for mapping indirect grefs
2238 */
Julien Grallc004a6f2015-07-22 16:44:54 +01002239 int num = INDIRECT_GREFS(grants) * BLK_RING_SIZE(info);
Roger Pau Monnebfe11d62013-10-29 18:31:14 +01002240
Bob Liu81f35162015-11-14 11:12:11 +08002241 BUG_ON(!list_empty(&rinfo->indirect_pages));
Roger Pau Monnebfe11d62013-10-29 18:31:14 +01002242 for (i = 0; i < num; i++) {
2243 struct page *indirect_page = alloc_page(GFP_NOIO);
2244 if (!indirect_page)
2245 goto out_of_memory;
Bob Liu81f35162015-11-14 11:12:11 +08002246 list_add(&indirect_page->lru, &rinfo->indirect_pages);
Roger Pau Monnebfe11d62013-10-29 18:31:14 +01002247 }
2248 }
2249
Bob Liu86839c52015-06-03 13:40:03 +08002250 for (i = 0; i < BLK_RING_SIZE(info); i++) {
Bob Liu81f35162015-11-14 11:12:11 +08002251 rinfo->shadow[i].grants_used = kzalloc(
2252 sizeof(rinfo->shadow[i].grants_used[0]) * grants,
Roger Pau Monne402b27f2013-04-18 16:06:54 +02002253 GFP_NOIO);
Bob Liu81f35162015-11-14 11:12:11 +08002254 rinfo->shadow[i].sg = kzalloc(sizeof(rinfo->shadow[i].sg[0]) * psegs, GFP_NOIO);
Roger Pau Monne402b27f2013-04-18 16:06:54 +02002255 if (info->max_indirect_segments)
Bob Liu81f35162015-11-14 11:12:11 +08002256 rinfo->shadow[i].indirect_grants = kzalloc(
2257 sizeof(rinfo->shadow[i].indirect_grants[0]) *
Julien Grallc004a6f2015-07-22 16:44:54 +01002258 INDIRECT_GREFS(grants),
Roger Pau Monne402b27f2013-04-18 16:06:54 +02002259 GFP_NOIO);
Bob Liu81f35162015-11-14 11:12:11 +08002260 if ((rinfo->shadow[i].grants_used == NULL) ||
2261 (rinfo->shadow[i].sg == NULL) ||
Roger Pau Monne402b27f2013-04-18 16:06:54 +02002262 (info->max_indirect_segments &&
Bob Liu81f35162015-11-14 11:12:11 +08002263 (rinfo->shadow[i].indirect_grants == NULL)))
Roger Pau Monne402b27f2013-04-18 16:06:54 +02002264 goto out_of_memory;
Bob Liu81f35162015-11-14 11:12:11 +08002265 sg_init_table(rinfo->shadow[i].sg, psegs);
Roger Pau Monne402b27f2013-04-18 16:06:54 +02002266 }
2267
2268
2269 return 0;
2270
2271out_of_memory:
Bob Liu86839c52015-06-03 13:40:03 +08002272 for (i = 0; i < BLK_RING_SIZE(info); i++) {
Bob Liu81f35162015-11-14 11:12:11 +08002273 kfree(rinfo->shadow[i].grants_used);
2274 rinfo->shadow[i].grants_used = NULL;
2275 kfree(rinfo->shadow[i].sg);
2276 rinfo->shadow[i].sg = NULL;
2277 kfree(rinfo->shadow[i].indirect_grants);
2278 rinfo->shadow[i].indirect_grants = NULL;
Roger Pau Monne402b27f2013-04-18 16:06:54 +02002279 }
Bob Liu81f35162015-11-14 11:12:11 +08002280 if (!list_empty(&rinfo->indirect_pages)) {
Roger Pau Monnebfe11d62013-10-29 18:31:14 +01002281 struct page *indirect_page, *n;
Bob Liu81f35162015-11-14 11:12:11 +08002282 list_for_each_entry_safe(indirect_page, n, &rinfo->indirect_pages, lru) {
Roger Pau Monnebfe11d62013-10-29 18:31:14 +01002283 list_del(&indirect_page->lru);
2284 __free_page(indirect_page);
2285 }
2286 }
Roger Pau Monne402b27f2013-04-18 16:06:54 +02002287 return -ENOMEM;
2288}
2289
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002290/*
Bob Liud50babb2015-07-22 14:40:08 +08002291 * Gather all backend feature-*
2292 */
Bob Liu3df0e502015-11-14 11:12:12 +08002293static void blkfront_gather_backend_features(struct blkfront_info *info)
Bob Liud50babb2015-07-22 14:40:08 +08002294{
2295 int err;
2296 int barrier, flush, discard, persistent;
2297 unsigned int indirect_segments;
2298
2299 info->feature_flush = 0;
Mike Christiea4180902016-06-05 14:32:24 -05002300 info->feature_fua = 0;
Bob Liud50babb2015-07-22 14:40:08 +08002301
Jan Beulichff595322016-07-07 02:05:46 -06002302 err = xenbus_scanf(XBT_NIL, info->xbdev->otherend,
2303 "feature-barrier", "%d", &barrier);
Bob Liud50babb2015-07-22 14:40:08 +08002304
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 */
Linus Torvalds08fd8c172016-07-27 11:35:37 -07002312 if (err > 0 && barrier) {
Mike Christiea4180902016-06-05 14:32:24 -05002313 info->feature_flush = 1;
2314 info->feature_fua = 1;
2315 }
2316
Bob Liud50babb2015-07-22 14:40:08 +08002317 /*
2318 * And if there is "feature-flush-cache" use that above
2319 * barriers.
2320 */
Jan Beulichff595322016-07-07 02:05:46 -06002321 err = xenbus_scanf(XBT_NIL, info->xbdev->otherend,
2322 "feature-flush-cache", "%d", &flush);
Bob Liud50babb2015-07-22 14:40:08 +08002323
Linus Torvalds08fd8c172016-07-27 11:35:37 -07002324 if (err > 0 && flush) {
Mike Christiea4180902016-06-05 14:32:24 -05002325 info->feature_flush = 1;
2326 info->feature_fua = 0;
2327 }
Bob Liud50babb2015-07-22 14:40:08 +08002328
Jan Beulichff595322016-07-07 02:05:46 -06002329 err = xenbus_scanf(XBT_NIL, info->xbdev->otherend,
2330 "feature-discard", "%d", &discard);
Bob Liud50babb2015-07-22 14:40:08 +08002331
Jan Beulichff595322016-07-07 02:05:46 -06002332 if (err > 0 && discard)
Bob Liud50babb2015-07-22 14:40:08 +08002333 blkfront_setup_discard(info);
2334
Jan Beulichff595322016-07-07 02:05:46 -06002335 err = xenbus_scanf(XBT_NIL, info->xbdev->otherend,
2336 "feature-persistent", "%d", &persistent);
2337 if (err <= 0)
Bob Liud50babb2015-07-22 14:40:08 +08002338 info->feature_persistent = 0;
2339 else
2340 info->feature_persistent = persistent;
2341
Jan Beulichff595322016-07-07 02:05:46 -06002342 err = xenbus_scanf(XBT_NIL, info->xbdev->otherend,
2343 "feature-max-indirect-segments", "%u",
2344 &indirect_segments);
2345 if (err <= 0)
Bob Liud50babb2015-07-22 14:40:08 +08002346 info->max_indirect_segments = 0;
2347 else
2348 info->max_indirect_segments = min(indirect_segments,
2349 xen_blkif_max_segments);
Bob Liud50babb2015-07-22 14:40:08 +08002350}
2351
2352/*
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002353 * Invoked when the backend is finally 'ready' (and has told produced
2354 * the details about the physical device - #sectors, size, etc).
2355 */
2356static void blkfront_connect(struct blkfront_info *info)
2357{
2358 unsigned long long sectors;
2359 unsigned long sector_size;
Stefan Bader7c4d7d72013-05-13 16:28:15 +02002360 unsigned int physical_sector_size;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002361 unsigned int binfo;
Bob Liu3df0e502015-11-14 11:12:12 +08002362 int err, i;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002363
K. Y. Srinivasan1fa73be2010-03-11 13:42:26 -08002364 switch (info->connected) {
2365 case BLKIF_STATE_CONNECTED:
2366 /*
2367 * Potentially, the back-end may be signalling
2368 * a capacity change; update the capacity.
2369 */
2370 err = xenbus_scanf(XBT_NIL, info->xbdev->otherend,
2371 "sectors", "%Lu", &sectors);
2372 if (XENBUS_EXIST_ERR(err))
2373 return;
2374 printk(KERN_INFO "Setting capacity to %Lu\n",
2375 sectors);
2376 set_capacity(info->gd, sectors);
K. Y. Srinivasan2def1412010-03-18 15:00:54 -07002377 revalidate_disk(info->gd);
K. Y. Srinivasan1fa73be2010-03-11 13:42:26 -08002378
Roger Pau Monne402b27f2013-04-18 16:06:54 +02002379 return;
K. Y. Srinivasan1fa73be2010-03-11 13:42:26 -08002380 case BLKIF_STATE_SUSPENDED:
Roger Pau Monne402b27f2013-04-18 16:06:54 +02002381 /*
2382 * If we are recovering from suspension, we need to wait
2383 * for the backend to announce it's features before
2384 * reconnecting, at least we need to know if the backend
2385 * supports indirect descriptors, and how many.
2386 */
2387 blkif_recover(info);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002388 return;
2389
Jeremy Fitzhardingeb4dddb42010-03-11 15:10:40 -08002390 default:
2391 break;
K. Y. Srinivasan1fa73be2010-03-11 13:42:26 -08002392 }
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002393
2394 dev_dbg(&info->xbdev->dev, "%s:%s.\n",
2395 __func__, info->xbdev->otherend);
2396
2397 err = xenbus_gather(XBT_NIL, info->xbdev->otherend,
2398 "sectors", "%llu", &sectors,
2399 "info", "%u", &binfo,
2400 "sector-size", "%lu", &sector_size,
2401 NULL);
2402 if (err) {
2403 xenbus_dev_fatal(info->xbdev, err,
2404 "reading backend fields at %s",
2405 info->xbdev->otherend);
2406 return;
2407 }
2408
Stefan Bader7c4d7d72013-05-13 16:28:15 +02002409 /*
2410 * physcial-sector-size is a newer field, so old backends may not
2411 * provide this. Assume physical sector size to be the same as
2412 * sector_size in that case.
2413 */
2414 err = xenbus_scanf(XBT_NIL, info->xbdev->otherend,
2415 "physical-sector-size", "%u", &physical_sector_size);
2416 if (err != 1)
2417 physical_sector_size = sector_size;
2418
Bob Liu3df0e502015-11-14 11:12:12 +08002419 blkfront_gather_backend_features(info);
2420 for (i = 0; i < info->nr_rings; i++) {
2421 err = blkfront_setup_indirect(&info->rinfo[i]);
2422 if (err) {
2423 xenbus_dev_fatal(info->xbdev, err, "setup_indirect at %s",
2424 info->xbdev->otherend);
2425 blkif_free(info, 0);
2426 break;
2427 }
Roger Pau Monne402b27f2013-04-18 16:06:54 +02002428 }
2429
Stefan Bader7c4d7d72013-05-13 16:28:15 +02002430 err = xlvbd_alloc_gendisk(sectors, info, binfo, sector_size,
2431 physical_sector_size);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002432 if (err) {
2433 xenbus_dev_fatal(info->xbdev, err, "xlvbd_add at %s",
2434 info->xbdev->otherend);
2435 return;
2436 }
2437
2438 xenbus_switch_state(info->xbdev, XenbusStateConnected);
2439
2440 /* Kick pending requests. */
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002441 info->connected = BLKIF_STATE_CONNECTED;
Bob Liu3df0e502015-11-14 11:12:12 +08002442 for (i = 0; i < info->nr_rings; i++)
2443 kick_pending_request_queues(&info->rinfo[i]);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002444
Dan Williams0d52c7562016-06-15 19:44:20 -07002445 device_add_disk(&info->xbdev->dev, info->gd);
Christian Limpach1d78d702008-04-02 10:54:04 -07002446
2447 info->is_ready = 1;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002448}
2449
2450/**
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002451 * Callback received when the backend's state changes.
2452 */
Ian Campbell203fd612009-12-04 15:33:54 +00002453static void blkback_changed(struct xenbus_device *dev,
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002454 enum xenbus_state backend_state)
2455{
Greg Kroah-Hartmana1b4b122009-04-30 14:43:31 -07002456 struct blkfront_info *info = dev_get_drvdata(&dev->dev);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002457
Ian Campbell203fd612009-12-04 15:33:54 +00002458 dev_dbg(&dev->dev, "blkfront:blkback_changed to state %d.\n", backend_state);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002459
2460 switch (backend_state) {
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002461 case XenbusStateInitWait:
Bob Liua9b54bb2015-06-19 00:23:00 -04002462 if (dev->state != XenbusStateInitialising)
2463 break;
Konrad Rzeszutek Wilkc31ecf62015-12-18 16:28:53 -05002464 if (talk_to_blkback(dev, info))
Bob Liu8ab01442015-06-03 13:40:02 +08002465 break;
Bob Liu8ab01442015-06-03 13:40:02 +08002466 case XenbusStateInitialising:
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002467 case XenbusStateInitialised:
Noboru Iwamatsub78c9512009-10-13 17:22:29 -04002468 case XenbusStateReconfiguring:
2469 case XenbusStateReconfigured:
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002470 case XenbusStateUnknown:
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002471 break;
2472
2473 case XenbusStateConnected:
Bob Liuefd15352016-06-07 10:43:15 -04002474 /*
2475 * talk_to_blkback sets state to XenbusStateInitialised
2476 * and blkfront_connect sets it to XenbusStateConnected
2477 * (if connection went OK).
2478 *
2479 * If the backend (or toolstack) decides to poke at backend
2480 * state (and re-trigger the watch by setting the state repeatedly
2481 * to XenbusStateConnected (4)) we need to deal with this.
2482 * This is allowed as this is used to communicate to the guest
2483 * that the size of disk has changed!
2484 */
2485 if ((dev->state != XenbusStateInitialised) &&
2486 (dev->state != XenbusStateConnected)) {
Konrad Rzeszutek Wilkc31ecf62015-12-18 16:28:53 -05002487 if (talk_to_blkback(dev, info))
2488 break;
2489 }
Bob Liuefd15352016-06-07 10:43:15 -04002490
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002491 blkfront_connect(info);
2492 break;
2493
David Vrabel36613712014-02-04 18:53:56 +00002494 case XenbusStateClosed:
2495 if (dev->state == XenbusStateClosed)
2496 break;
2497 /* Missed the backend's Closing state -- fallthrough */
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002498 case XenbusStateClosing:
Cathy Averya54c8f02015-10-02 09:35:01 -04002499 if (info)
2500 blkfront_closing(info);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002501 break;
2502 }
2503}
2504
Daniel Stoddenfa1bd352010-04-30 22:01:22 +00002505static int blkfront_remove(struct xenbus_device *xbdev)
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002506{
Daniel Stoddenfa1bd352010-04-30 22:01:22 +00002507 struct blkfront_info *info = dev_get_drvdata(&xbdev->dev);
2508 struct block_device *bdev = NULL;
2509 struct gendisk *disk;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002510
Daniel Stoddenfa1bd352010-04-30 22:01:22 +00002511 dev_dbg(&xbdev->dev, "%s removed", xbdev->nodename);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002512
2513 blkif_free(info, 0);
2514
Daniel Stoddenfa1bd352010-04-30 22:01:22 +00002515 mutex_lock(&info->mutex);
2516
2517 disk = info->gd;
2518 if (disk)
2519 bdev = bdget_disk(disk, 0);
2520
2521 info->xbdev = NULL;
2522 mutex_unlock(&info->mutex);
2523
2524 if (!bdev) {
Jan Beulich0e345822010-08-07 18:28:55 +02002525 kfree(info);
Daniel Stoddenfa1bd352010-04-30 22:01:22 +00002526 return 0;
2527 }
2528
2529 /*
2530 * The xbdev was removed before we reached the Closed
2531 * state. See if it's safe to remove the disk. If the bdev
2532 * isn't closed yet, we let release take care of it.
2533 */
2534
2535 mutex_lock(&bdev->bd_mutex);
2536 info = disk->private_data;
2537
Daniel Stoddend54142c2010-08-07 18:51:21 +02002538 dev_warn(disk_to_dev(disk),
2539 "%s was hot-unplugged, %d stale handles\n",
2540 xbdev->nodename, bdev->bd_openers);
2541
Daniel Stodden7b32d102010-04-30 22:01:23 +00002542 if (info && !bdev->bd_openers) {
Daniel Stoddenfa1bd352010-04-30 22:01:22 +00002543 xlvbd_release_gendisk(info);
2544 disk->private_data = NULL;
2545 kfree(info);
2546 }
2547
2548 mutex_unlock(&bdev->bd_mutex);
2549 bdput(bdev);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002550
2551 return 0;
2552}
2553
Christian Limpach1d78d702008-04-02 10:54:04 -07002554static int blkfront_is_ready(struct xenbus_device *dev)
2555{
Greg Kroah-Hartmana1b4b122009-04-30 14:43:31 -07002556 struct blkfront_info *info = dev_get_drvdata(&dev->dev);
Christian Limpach1d78d702008-04-02 10:54:04 -07002557
Jan Beulich5d7ed202010-08-07 18:31:12 +02002558 return info->is_ready && info->xbdev;
Christian Limpach1d78d702008-04-02 10:54:04 -07002559}
2560
Al Viroa63c8482008-03-02 10:23:47 -05002561static int blkif_open(struct block_device *bdev, fmode_t mode)
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002562{
Daniel Stodden13961742010-08-07 18:36:53 +02002563 struct gendisk *disk = bdev->bd_disk;
2564 struct blkfront_info *info;
2565 int err = 0;
Arnd Bergmann6e9624b2010-08-07 18:25:34 +02002566
Arnd Bergmann2a48fc02010-06-02 14:28:52 +02002567 mutex_lock(&blkfront_mutex);
Arnd Bergmann6e9624b2010-08-07 18:25:34 +02002568
Daniel Stodden13961742010-08-07 18:36:53 +02002569 info = disk->private_data;
2570 if (!info) {
2571 /* xbdev gone */
2572 err = -ERESTARTSYS;
2573 goto out;
2574 }
2575
2576 mutex_lock(&info->mutex);
2577
2578 if (!info->gd)
2579 /* xbdev is closed */
2580 err = -ERESTARTSYS;
2581
2582 mutex_unlock(&info->mutex);
2583
Daniel Stodden13961742010-08-07 18:36:53 +02002584out:
Arnd Bergmann2a48fc02010-06-02 14:28:52 +02002585 mutex_unlock(&blkfront_mutex);
Daniel Stodden13961742010-08-07 18:36:53 +02002586 return err;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002587}
2588
Al Virodb2a1442013-05-05 21:52:57 -04002589static void blkif_release(struct gendisk *disk, fmode_t mode)
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002590{
Al Viroa63c8482008-03-02 10:23:47 -05002591 struct blkfront_info *info = disk->private_data;
Daniel Stodden7fd152f2010-08-07 18:45:12 +02002592 struct block_device *bdev;
2593 struct xenbus_device *xbdev;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002594
Arnd Bergmann2a48fc02010-06-02 14:28:52 +02002595 mutex_lock(&blkfront_mutex);
Daniel Stodden7fd152f2010-08-07 18:45:12 +02002596
2597 bdev = bdget_disk(disk, 0);
Daniel Stodden7fd152f2010-08-07 18:45:12 +02002598
Felipe Pena2f089cb2013-11-09 13:36:09 -02002599 if (!bdev) {
2600 WARN(1, "Block device %s yanked out from us!\n", disk->disk_name);
2601 goto out_mutex;
2602 }
Daniel Stoddenacfca3c2010-08-07 18:47:26 +02002603 if (bdev->bd_openers)
2604 goto out;
2605
Daniel Stodden7fd152f2010-08-07 18:45:12 +02002606 /*
2607 * Check if we have been instructed to close. We will have
2608 * deferred this request, because the bdev was still open.
2609 */
2610
2611 mutex_lock(&info->mutex);
2612 xbdev = info->xbdev;
2613
2614 if (xbdev && xbdev->state == XenbusStateClosing) {
2615 /* pending switch to state closed */
Daniel Stoddend54142c2010-08-07 18:51:21 +02002616 dev_info(disk_to_dev(bdev->bd_disk), "releasing disk\n");
Daniel Stodden7fd152f2010-08-07 18:45:12 +02002617 xlvbd_release_gendisk(info);
2618 xenbus_frontend_closed(info->xbdev);
2619 }
2620
2621 mutex_unlock(&info->mutex);
2622
2623 if (!xbdev) {
2624 /* sudden device removal */
Daniel Stoddend54142c2010-08-07 18:51:21 +02002625 dev_info(disk_to_dev(bdev->bd_disk), "releasing disk\n");
Daniel Stodden7fd152f2010-08-07 18:45:12 +02002626 xlvbd_release_gendisk(info);
2627 disk->private_data = NULL;
2628 kfree(info);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002629 }
Daniel Stodden7fd152f2010-08-07 18:45:12 +02002630
Jens Axboea4cc14e2010-08-08 21:50:05 -04002631out:
Andrew Jonesdad5cf62012-02-16 13:16:25 +01002632 bdput(bdev);
Felipe Pena2f089cb2013-11-09 13:36:09 -02002633out_mutex:
Arnd Bergmann2a48fc02010-06-02 14:28:52 +02002634 mutex_unlock(&blkfront_mutex);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002635}
2636
Alexey Dobriyan83d5cde2009-09-21 17:01:13 -07002637static const struct block_device_operations xlvbd_block_fops =
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002638{
2639 .owner = THIS_MODULE,
Al Viroa63c8482008-03-02 10:23:47 -05002640 .open = blkif_open,
2641 .release = blkif_release,
Ian Campbell597592d2008-02-21 13:03:45 -08002642 .getgeo = blkif_getgeo,
Arnd Bergmann8a6cfeb2010-07-08 10:18:46 +02002643 .ioctl = blkif_ioctl,
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002644};
2645
2646
Márton Némethec9c42e2010-01-10 13:39:52 +01002647static const struct xenbus_device_id blkfront_ids[] = {
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002648 { "vbd" },
2649 { "" }
2650};
2651
David Vrabel95afae42014-09-08 17:30:41 +01002652static struct xenbus_driver blkfront_driver = {
2653 .ids = blkfront_ids,
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002654 .probe = blkfront_probe,
2655 .remove = blkfront_remove,
2656 .resume = blkfront_resume,
Ian Campbell203fd612009-12-04 15:33:54 +00002657 .otherend_changed = blkback_changed,
Christian Limpach1d78d702008-04-02 10:54:04 -07002658 .is_ready = blkfront_is_ready,
David Vrabel95afae42014-09-08 17:30:41 +01002659};
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002660
2661static int __init xlblk_init(void)
2662{
Laszlo Ersek469738e2011-10-07 21:34:38 +02002663 int ret;
Bob Liu28d949b2015-11-14 11:12:14 +08002664 int nr_cpus = num_online_cpus();
Laszlo Ersek469738e2011-10-07 21:34:38 +02002665
Jeremy Fitzhardinge6e833582008-08-19 13:16:17 -07002666 if (!xen_domain())
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002667 return -ENODEV;
2668
Julien Grall9cce2912015-10-13 17:50:11 +01002669 if (xen_blkif_max_ring_order > XENBUS_MAX_RING_GRANT_ORDER) {
Bob Liu86839c52015-06-03 13:40:03 +08002670 pr_info("Invalid max_ring_order (%d), will use default max: %d.\n",
Julien Grall9cce2912015-10-13 17:50:11 +01002671 xen_blkif_max_ring_order, XENBUS_MAX_RING_GRANT_ORDER);
Peng Fan45fc8262015-11-25 18:26:01 +08002672 xen_blkif_max_ring_order = XENBUS_MAX_RING_GRANT_ORDER;
Bob Liu86839c52015-06-03 13:40:03 +08002673 }
2674
Bob Liu28d949b2015-11-14 11:12:14 +08002675 if (xen_blkif_max_queues > nr_cpus) {
2676 pr_info("Invalid max_queues (%d), will use default max: %d.\n",
2677 xen_blkif_max_queues, nr_cpus);
2678 xen_blkif_max_queues = nr_cpus;
2679 }
2680
Konrad Rzeszutek Wilk51c71a32013-11-26 15:05:40 -05002681 if (!xen_has_pv_disk_devices())
Igor Mammedovb9136d22012-03-21 15:08:38 +01002682 return -ENODEV;
2683
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002684 if (register_blkdev(XENVBD_MAJOR, DEV_NAME)) {
2685 printk(KERN_WARNING "xen_blk: can't get major %d with name %s\n",
2686 XENVBD_MAJOR, DEV_NAME);
2687 return -ENODEV;
2688 }
2689
Jan Beulich73db1442011-12-22 09:08:13 +00002690 ret = xenbus_register_frontend(&blkfront_driver);
Laszlo Ersek469738e2011-10-07 21:34:38 +02002691 if (ret) {
2692 unregister_blkdev(XENVBD_MAJOR, DEV_NAME);
2693 return ret;
2694 }
2695
2696 return 0;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002697}
2698module_init(xlblk_init);
2699
2700
Jan Beulich5a60d0c2008-06-17 10:47:08 +02002701static void __exit xlblk_exit(void)
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002702{
Jan Beulich86050672012-04-05 16:04:52 +01002703 xenbus_unregister_driver(&blkfront_driver);
2704 unregister_blkdev(XENVBD_MAJOR, DEV_NAME);
2705 kfree(minors);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002706}
2707module_exit(xlblk_exit);
2708
2709MODULE_DESCRIPTION("Xen virtual block device frontend");
2710MODULE_LICENSE("GPL");
2711MODULE_ALIAS_BLOCKDEV_MAJOR(XENVBD_MAJOR);
Mark McLoughlind2f0c522008-04-02 10:54:05 -07002712MODULE_ALIAS("xen:vbd");
Mark McLoughlin4f93f09b2008-04-02 10:54:06 -07002713MODULE_ALIAS("xenblk");