blob: 2f468cf86dcf6228b2d8f1dda0ca0fd200457275 [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
Christoph Hellwig26095872017-04-20 16:03:08 +0200118struct blkif_req {
119 int error;
120};
121
122static inline struct blkif_req *blkif_req(struct request *rq)
123{
124 return blk_mq_rq_to_pdu(rq);
125}
126
Arnd Bergmann2a48fc02010-06-02 14:28:52 +0200127static DEFINE_MUTEX(blkfront_mutex);
Alexey Dobriyan83d5cde2009-09-21 17:01:13 -0700128static const struct block_device_operations xlvbd_block_fops;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700129
Roger Pau Monne402b27f2013-04-18 16:06:54 +0200130/*
131 * Maximum number of segments in indirect requests, the actual value used by
132 * the frontend driver is the minimum of this value and the value provided
133 * by the backend driver.
134 */
135
136static unsigned int xen_blkif_max_segments = 32;
Jan Beulich14e710f2016-02-10 04:21:15 -0700137module_param_named(max_indirect_segments, xen_blkif_max_segments, uint,
138 S_IRUGO);
139MODULE_PARM_DESC(max_indirect_segments,
140 "Maximum amount of segments in indirect requests (default is 32)");
Roger Pau Monne402b27f2013-04-18 16:06:54 +0200141
Bob Liu28d949b2015-11-14 11:12:14 +0800142static unsigned int xen_blkif_max_queues = 4;
143module_param_named(max_queues, xen_blkif_max_queues, uint, S_IRUGO);
144MODULE_PARM_DESC(max_queues, "Maximum number of hardware queues/rings used per virtual disk");
145
Bob Liu86839c52015-06-03 13:40:03 +0800146/*
147 * Maximum order of pages to be used for the shared ring between front and
148 * backend, 4KB page granularity is used.
149 */
150static unsigned int xen_blkif_max_ring_order;
151module_param_named(max_ring_page_order, xen_blkif_max_ring_order, int, S_IRUGO);
152MODULE_PARM_DESC(max_ring_page_order, "Maximum order of pages to be used for the shared ring");
153
Julien Grallc004a6f2015-07-22 16:44:54 +0100154#define BLK_RING_SIZE(info) \
155 __CONST_RING_SIZE(blkif, XEN_PAGE_SIZE * (info)->nr_ring_pages)
156
157#define BLK_MAX_RING_SIZE \
Julien Grall9cce2912015-10-13 17:50:11 +0100158 __CONST_RING_SIZE(blkif, XEN_PAGE_SIZE * XENBUS_MAX_RING_GRANTS)
Julien Grallc004a6f2015-07-22 16:44:54 +0100159
Bob Liu86839c52015-06-03 13:40:03 +0800160/*
Konrad Rzeszutek Wilk6f03a7f2015-11-16 15:14:41 -0500161 * ring-ref%u i=(-1UL) would take 11 characters + 'ring-ref' is 8, so 19
162 * characters are enough. Define to 20 to keep consistent with backend.
Bob Liu86839c52015-06-03 13:40:03 +0800163 */
164#define RINGREF_NAME_LEN (20)
Bob Liu28d949b2015-11-14 11:12:14 +0800165/*
166 * queue-%u would take 7 + 10(UINT_MAX) = 17 characters.
167 */
168#define QUEUE_NAME_LEN (17)
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700169
170/*
Bob Liu81f35162015-11-14 11:12:11 +0800171 * Per-ring info.
172 * Every blkfront device can associate with one or more blkfront_ring_info,
173 * depending on how many hardware queues/rings to be used.
174 */
175struct blkfront_ring_info {
Bob Liu11659562015-11-14 11:12:13 +0800176 /* Lock to protect data in every ring buffer. */
177 spinlock_t ring_lock;
Bob Liu81f35162015-11-14 11:12:11 +0800178 struct blkif_front_ring ring;
179 unsigned int ring_ref[XENBUS_MAX_RING_GRANTS];
180 unsigned int evtchn, irq;
181 struct work_struct work;
182 struct gnttab_free_callback callback;
183 struct blk_shadow shadow[BLK_MAX_RING_SIZE];
184 struct list_head indirect_pages;
Bob Liu73716df2015-11-16 16:51:39 -0500185 struct list_head grants;
186 unsigned int persistent_gnts_c;
Bob Liu81f35162015-11-14 11:12:11 +0800187 unsigned long shadow_free;
188 struct blkfront_info *dev_info;
189};
190
191/*
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700192 * We have one of these per vbd, whether ide, scsi or 'other'. They
193 * hang in private_data off the gendisk structure. We may end up
194 * putting all kinds of interesting stuff here :-)
195 */
196struct blkfront_info
197{
Daniel Stoddenb70f5fa2010-04-30 22:01:19 +0000198 struct mutex mutex;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700199 struct xenbus_device *xbdev;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700200 struct gendisk *gd;
Bob Liu172335a2016-07-01 17:43:39 -0400201 u16 sector_size;
202 unsigned int physical_sector_size;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700203 int vdevice;
204 blkif_vdev_t handle;
205 enum blkif_state connected;
Bob Liu3df0e502015-11-14 11:12:12 +0800206 /* Number of pages per ring buffer. */
Bob Liu86839c52015-06-03 13:40:03 +0800207 unsigned int nr_ring_pages;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700208 struct request_queue *rq;
Jan Beulichb32728f2017-01-23 08:12:19 -0700209 unsigned int feature_flush:1;
210 unsigned int feature_fua:1;
Konrad Rzeszutek Wilk5ea42982011-10-12 16:23:30 -0400211 unsigned int feature_discard:1;
212 unsigned int feature_secdiscard:1;
Jan Beulichb32728f2017-01-23 08:12:19 -0700213 unsigned int feature_persistent:1;
Li Dongyanged30bf32011-09-01 18:39:09 +0800214 unsigned int discard_granularity;
215 unsigned int discard_alignment;
Julien Grallc004a6f2015-07-22 16:44:54 +0100216 /* Number of 4KB segments handled */
Roger Pau Monne402b27f2013-04-18 16:06:54 +0200217 unsigned int max_indirect_segments;
Christian Limpach1d78d702008-04-02 10:54:04 -0700218 int is_ready;
Bob Liu907c3eb2015-07-13 17:55:24 +0800219 struct blk_mq_tag_set tag_set;
Bob Liu3df0e502015-11-14 11:12:12 +0800220 struct blkfront_ring_info *rinfo;
221 unsigned int nr_rings;
Bob Liu7b427a52016-06-27 16:33:24 +0800222 /* Save uncomplete reqs and bios for migration. */
223 struct list_head requests;
224 struct bio_list bio_list;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700225};
226
Jan Beulich0e345822010-08-07 18:28:55 +0200227static unsigned int nr_minors;
228static unsigned long *minors;
229static DEFINE_SPINLOCK(minor_lock);
230
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700231#define GRANT_INVALID_REF 0
232
233#define PARTS_PER_DISK 16
Chris Lalancette9246b5f2008-09-17 14:30:32 -0700234#define PARTS_PER_EXT_DISK 256
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700235
236#define BLKIF_MAJOR(dev) ((dev)>>8)
237#define BLKIF_MINOR(dev) ((dev) & 0xff)
238
Chris Lalancette9246b5f2008-09-17 14:30:32 -0700239#define EXT_SHIFT 28
240#define EXTENDED (1<<EXT_SHIFT)
241#define VDEV_IS_EXTENDED(dev) ((dev)&(EXTENDED))
242#define BLKIF_MINOR_EXT(dev) ((dev)&(~EXTENDED))
Stefano Stabellinic80a4202010-12-02 17:55:00 +0000243#define EMULATED_HD_DISK_MINOR_OFFSET (0)
244#define EMULATED_HD_DISK_NAME_OFFSET (EMULATED_HD_DISK_MINOR_OFFSET / 256)
Stefan Bader196cfe22011-07-14 15:30:22 +0200245#define EMULATED_SD_DISK_MINOR_OFFSET (0)
246#define EMULATED_SD_DISK_NAME_OFFSET (EMULATED_SD_DISK_MINOR_OFFSET / 256)
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700247
Chris Lalancette9246b5f2008-09-17 14:30:32 -0700248#define DEV_NAME "xvd" /* name in /dev */
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700249
Julien Grallc004a6f2015-07-22 16:44:54 +0100250/*
251 * Grants are always the same size as a Xen page (i.e 4KB).
252 * A physical segment is always the same size as a Linux page.
253 * Number of grants per physical segment
254 */
255#define GRANTS_PER_PSEG (PAGE_SIZE / XEN_PAGE_SIZE)
256
257#define GRANTS_PER_INDIRECT_FRAME \
258 (XEN_PAGE_SIZE / sizeof(struct blkif_request_segment))
259
260#define PSEGS_PER_INDIRECT_FRAME \
261 (GRANTS_INDIRECT_FRAME / GRANTS_PSEGS)
262
263#define INDIRECT_GREFS(_grants) \
264 DIV_ROUND_UP(_grants, GRANTS_PER_INDIRECT_FRAME)
265
266#define GREFS(_psegs) ((_psegs) * GRANTS_PER_PSEG)
Roger Pau Monne402b27f2013-04-18 16:06:54 +0200267
Bob Liu81f35162015-11-14 11:12:11 +0800268static int blkfront_setup_indirect(struct blkfront_ring_info *rinfo);
Bob Liu3df0e502015-11-14 11:12:12 +0800269static void blkfront_gather_backend_features(struct blkfront_info *info);
Roger Pau Monne402b27f2013-04-18 16:06:54 +0200270
Bob Liu81f35162015-11-14 11:12:11 +0800271static int get_id_from_freelist(struct blkfront_ring_info *rinfo)
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700272{
Bob Liu81f35162015-11-14 11:12:11 +0800273 unsigned long free = rinfo->shadow_free;
274
275 BUG_ON(free >= BLK_RING_SIZE(rinfo->dev_info));
276 rinfo->shadow_free = rinfo->shadow[free].req.u.rw.id;
277 rinfo->shadow[free].req.u.rw.id = 0x0fffffee; /* debug */
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700278 return free;
279}
280
Bob Liu81f35162015-11-14 11:12:11 +0800281static int add_id_to_freelist(struct blkfront_ring_info *rinfo,
Konrad Rzeszutek Wilk6f03a7f2015-11-16 15:14:41 -0500282 unsigned long id)
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700283{
Bob Liu81f35162015-11-14 11:12:11 +0800284 if (rinfo->shadow[id].req.u.rw.id != id)
Konrad Rzeszutek Wilk6878c322012-05-25 17:34:51 -0400285 return -EINVAL;
Bob Liu81f35162015-11-14 11:12:11 +0800286 if (rinfo->shadow[id].request == NULL)
Konrad Rzeszutek Wilk6878c322012-05-25 17:34:51 -0400287 return -EINVAL;
Bob Liu81f35162015-11-14 11:12:11 +0800288 rinfo->shadow[id].req.u.rw.id = rinfo->shadow_free;
289 rinfo->shadow[id].request = NULL;
290 rinfo->shadow_free = id;
Konrad Rzeszutek Wilk6878c322012-05-25 17:34:51 -0400291 return 0;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700292}
293
Bob Liu81f35162015-11-14 11:12:11 +0800294static int fill_grant_buffer(struct blkfront_ring_info *rinfo, int num)
Roger Pau Monne9c1e0502013-03-18 17:49:35 +0100295{
Bob Liu81f35162015-11-14 11:12:11 +0800296 struct blkfront_info *info = rinfo->dev_info;
Roger Pau Monne9c1e0502013-03-18 17:49:35 +0100297 struct page *granted_page;
298 struct grant *gnt_list_entry, *n;
299 int i = 0;
300
Konrad Rzeszutek Wilk6f03a7f2015-11-16 15:14:41 -0500301 while (i < num) {
Roger Pau Monne9c1e0502013-03-18 17:49:35 +0100302 gnt_list_entry = kzalloc(sizeof(struct grant), GFP_NOIO);
303 if (!gnt_list_entry)
304 goto out_of_memory;
305
Roger Pau Monnebfe11d62013-10-29 18:31:14 +0100306 if (info->feature_persistent) {
307 granted_page = alloc_page(GFP_NOIO);
308 if (!granted_page) {
309 kfree(gnt_list_entry);
310 goto out_of_memory;
311 }
Julien Gralla7a6df22015-06-30 11:58:51 +0100312 gnt_list_entry->page = granted_page;
Roger Pau Monne9c1e0502013-03-18 17:49:35 +0100313 }
314
Roger Pau Monne9c1e0502013-03-18 17:49:35 +0100315 gnt_list_entry->gref = GRANT_INVALID_REF;
Bob Liu73716df2015-11-16 16:51:39 -0500316 list_add(&gnt_list_entry->node, &rinfo->grants);
Roger Pau Monne9c1e0502013-03-18 17:49:35 +0100317 i++;
318 }
319
320 return 0;
321
322out_of_memory:
323 list_for_each_entry_safe(gnt_list_entry, n,
Bob Liu73716df2015-11-16 16:51:39 -0500324 &rinfo->grants, node) {
Roger Pau Monne9c1e0502013-03-18 17:49:35 +0100325 list_del(&gnt_list_entry->node);
Roger Pau Monnebfe11d62013-10-29 18:31:14 +0100326 if (info->feature_persistent)
Julien Gralla7a6df22015-06-30 11:58:51 +0100327 __free_page(gnt_list_entry->page);
Roger Pau Monne9c1e0502013-03-18 17:49:35 +0100328 kfree(gnt_list_entry);
329 i--;
330 }
331 BUG_ON(i != 0);
332 return -ENOMEM;
333}
334
Bob Liu73716df2015-11-16 16:51:39 -0500335static struct grant *get_free_grant(struct blkfront_ring_info *rinfo)
Roger Pau Monne9c1e0502013-03-18 17:49:35 +0100336{
337 struct grant *gnt_list_entry;
Roger Pau Monne9c1e0502013-03-18 17:49:35 +0100338
Bob Liu73716df2015-11-16 16:51:39 -0500339 BUG_ON(list_empty(&rinfo->grants));
340 gnt_list_entry = list_first_entry(&rinfo->grants, struct grant,
Julien Grall4f503fb2015-07-01 14:10:38 +0100341 node);
Roger Pau Monne9c1e0502013-03-18 17:49:35 +0100342 list_del(&gnt_list_entry->node);
343
Julien Grall4f503fb2015-07-01 14:10:38 +0100344 if (gnt_list_entry->gref != GRANT_INVALID_REF)
Bob Liu73716df2015-11-16 16:51:39 -0500345 rinfo->persistent_gnts_c--;
Julien Grall4f503fb2015-07-01 14:10:38 +0100346
347 return gnt_list_entry;
348}
349
350static inline void grant_foreign_access(const struct grant *gnt_list_entry,
351 const struct blkfront_info *info)
352{
353 gnttab_page_grant_foreign_access_ref_one(gnt_list_entry->gref,
354 info->xbdev->otherend_id,
355 gnt_list_entry->page,
356 0);
357}
358
359static struct grant *get_grant(grant_ref_t *gref_head,
360 unsigned long gfn,
Bob Liu73716df2015-11-16 16:51:39 -0500361 struct blkfront_ring_info *rinfo)
Julien Grall4f503fb2015-07-01 14:10:38 +0100362{
Bob Liu73716df2015-11-16 16:51:39 -0500363 struct grant *gnt_list_entry = get_free_grant(rinfo);
364 struct blkfront_info *info = rinfo->dev_info;
Julien Grall4f503fb2015-07-01 14:10:38 +0100365
366 if (gnt_list_entry->gref != GRANT_INVALID_REF)
Roger Pau Monne9c1e0502013-03-18 17:49:35 +0100367 return gnt_list_entry;
Julien Grall4f503fb2015-07-01 14:10:38 +0100368
369 /* Assign a gref to this page */
370 gnt_list_entry->gref = gnttab_claim_grant_reference(gref_head);
371 BUG_ON(gnt_list_entry->gref == -ENOSPC);
372 if (info->feature_persistent)
373 grant_foreign_access(gnt_list_entry, info);
374 else {
375 /* Grant access to the GFN passed by the caller */
376 gnttab_grant_foreign_access_ref(gnt_list_entry->gref,
377 info->xbdev->otherend_id,
378 gfn, 0);
Roger Pau Monne9c1e0502013-03-18 17:49:35 +0100379 }
380
Julien Grall4f503fb2015-07-01 14:10:38 +0100381 return gnt_list_entry;
382}
383
384static struct grant *get_indirect_grant(grant_ref_t *gref_head,
Bob Liu73716df2015-11-16 16:51:39 -0500385 struct blkfront_ring_info *rinfo)
Julien Grall4f503fb2015-07-01 14:10:38 +0100386{
Bob Liu73716df2015-11-16 16:51:39 -0500387 struct grant *gnt_list_entry = get_free_grant(rinfo);
388 struct blkfront_info *info = rinfo->dev_info;
Julien Grall4f503fb2015-07-01 14:10:38 +0100389
390 if (gnt_list_entry->gref != GRANT_INVALID_REF)
391 return gnt_list_entry;
392
Roger Pau Monne9c1e0502013-03-18 17:49:35 +0100393 /* Assign a gref to this page */
394 gnt_list_entry->gref = gnttab_claim_grant_reference(gref_head);
395 BUG_ON(gnt_list_entry->gref == -ENOSPC);
Roger Pau Monnebfe11d62013-10-29 18:31:14 +0100396 if (!info->feature_persistent) {
Julien Grall4f503fb2015-07-01 14:10:38 +0100397 struct page *indirect_page;
398
399 /* Fetch a pre-allocated page to use for indirect grefs */
Bob Liu73716df2015-11-16 16:51:39 -0500400 BUG_ON(list_empty(&rinfo->indirect_pages));
401 indirect_page = list_first_entry(&rinfo->indirect_pages,
Julien Grall4f503fb2015-07-01 14:10:38 +0100402 struct page, lru);
403 list_del(&indirect_page->lru);
404 gnt_list_entry->page = indirect_page;
Roger Pau Monnebfe11d62013-10-29 18:31:14 +0100405 }
Julien Grall4f503fb2015-07-01 14:10:38 +0100406 grant_foreign_access(gnt_list_entry, info);
407
Roger Pau Monne9c1e0502013-03-18 17:49:35 +0100408 return gnt_list_entry;
409}
410
Konrad Rzeszutek Wilk6878c322012-05-25 17:34:51 -0400411static const char *op_name(int op)
412{
413 static const char *const names[] = {
414 [BLKIF_OP_READ] = "read",
415 [BLKIF_OP_WRITE] = "write",
416 [BLKIF_OP_WRITE_BARRIER] = "barrier",
417 [BLKIF_OP_FLUSH_DISKCACHE] = "flush",
418 [BLKIF_OP_DISCARD] = "discard" };
419
420 if (op < 0 || op >= ARRAY_SIZE(names))
421 return "unknown";
422
423 if (!names[op])
424 return "reserved";
425
426 return names[op];
427}
Jan Beulich0e345822010-08-07 18:28:55 +0200428static int xlbd_reserve_minors(unsigned int minor, unsigned int nr)
429{
430 unsigned int end = minor + nr;
431 int rc;
432
433 if (end > nr_minors) {
434 unsigned long *bitmap, *old;
435
Thomas Meyerf0941482011-11-29 22:08:00 +0100436 bitmap = kcalloc(BITS_TO_LONGS(end), sizeof(*bitmap),
Jan Beulich0e345822010-08-07 18:28:55 +0200437 GFP_KERNEL);
438 if (bitmap == NULL)
439 return -ENOMEM;
440
441 spin_lock(&minor_lock);
442 if (end > nr_minors) {
443 old = minors;
444 memcpy(bitmap, minors,
445 BITS_TO_LONGS(nr_minors) * sizeof(*bitmap));
446 minors = bitmap;
447 nr_minors = BITS_TO_LONGS(end) * BITS_PER_LONG;
448 } else
449 old = bitmap;
450 spin_unlock(&minor_lock);
451 kfree(old);
452 }
453
454 spin_lock(&minor_lock);
455 if (find_next_bit(minors, end, minor) >= end) {
Akinobu Mita34ae2e42012-01-21 00:15:26 +0900456 bitmap_set(minors, minor, nr);
Jan Beulich0e345822010-08-07 18:28:55 +0200457 rc = 0;
458 } else
459 rc = -EBUSY;
460 spin_unlock(&minor_lock);
461
462 return rc;
463}
464
465static void xlbd_release_minors(unsigned int minor, unsigned int nr)
466{
467 unsigned int end = minor + nr;
468
469 BUG_ON(end > nr_minors);
470 spin_lock(&minor_lock);
Akinobu Mita34ae2e42012-01-21 00:15:26 +0900471 bitmap_clear(minors, minor, nr);
Jan Beulich0e345822010-08-07 18:28:55 +0200472 spin_unlock(&minor_lock);
473}
474
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700475static void blkif_restart_queue_callback(void *arg)
476{
Bob Liu81f35162015-11-14 11:12:11 +0800477 struct blkfront_ring_info *rinfo = (struct blkfront_ring_info *)arg;
478 schedule_work(&rinfo->work);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700479}
480
Harvey Harrisonafe42d72008-04-29 00:59:47 -0700481static int blkif_getgeo(struct block_device *bd, struct hd_geometry *hg)
Ian Campbell597592d2008-02-21 13:03:45 -0800482{
483 /* We don't have real geometry info, but let's at least return
484 values consistent with the size of the device */
485 sector_t nsect = get_capacity(bd->bd_disk);
486 sector_t cylinders = nsect;
487
488 hg->heads = 0xff;
489 hg->sectors = 0x3f;
490 sector_div(cylinders, hg->heads * hg->sectors);
491 hg->cylinders = cylinders;
492 if ((sector_t)(hg->cylinders + 1) * hg->heads * hg->sectors < nsect)
493 hg->cylinders = 0xffff;
494 return 0;
495}
496
Al Viroa63c8482008-03-02 10:23:47 -0500497static int blkif_ioctl(struct block_device *bdev, fmode_t mode,
Adrian Bunk62aa0052008-08-04 11:59:05 +0200498 unsigned command, unsigned long argument)
Christian Limpach440a01a2008-06-17 10:47:08 +0200499{
Al Viroa63c8482008-03-02 10:23:47 -0500500 struct blkfront_info *info = bdev->bd_disk->private_data;
Christian Limpach440a01a2008-06-17 10:47:08 +0200501 int i;
502
503 dev_dbg(&info->xbdev->dev, "command: 0x%x, argument: 0x%lx\n",
504 command, (long)argument);
505
506 switch (command) {
507 case CDROMMULTISESSION:
508 dev_dbg(&info->xbdev->dev, "FIXME: support multisession CDs later\n");
509 for (i = 0; i < sizeof(struct cdrom_multisession); i++)
510 if (put_user(0, (char __user *)(argument + i)))
511 return -EFAULT;
512 return 0;
513
514 case CDROM_GET_CAPABILITY: {
515 struct gendisk *gd = info->gd;
516 if (gd->flags & GENHD_FL_CD)
517 return 0;
518 return -EINVAL;
519 }
520
521 default:
522 /*printk(KERN_ALERT "ioctl %08x not supported by Xen blkdev\n",
523 command);*/
524 return -EINVAL; /* same return as native Linux */
525 }
526
527 return 0;
528}
529
Julien Grall2e073962015-08-13 19:23:10 +0100530static unsigned long blkif_ring_get_request(struct blkfront_ring_info *rinfo,
531 struct request *req,
532 struct blkif_request **ring_req)
533{
534 unsigned long id;
535
536 *ring_req = RING_GET_REQUEST(&rinfo->ring, rinfo->ring.req_prod_pvt);
537 rinfo->ring.req_prod_pvt++;
538
539 id = get_id_from_freelist(rinfo);
540 rinfo->shadow[id].request = req;
Julien Grall6cc568332015-08-13 13:13:35 +0100541 rinfo->shadow[id].status = REQ_WAITING;
542 rinfo->shadow[id].associated_id = NO_ASSOCIATED_ID;
Julien Grall2e073962015-08-13 19:23:10 +0100543
544 (*ring_req)->u.rw.id = id;
545
546 return id;
547}
548
Bob Liu81f35162015-11-14 11:12:11 +0800549static int blkif_queue_discard_req(struct request *req, struct blkfront_ring_info *rinfo)
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700550{
Bob Liu81f35162015-11-14 11:12:11 +0800551 struct blkfront_info *info = rinfo->dev_info;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700552 struct blkif_request *ring_req;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700553 unsigned long id;
Julien Grall33204662015-06-29 17:35:24 +0100554
555 /* Fill out a communications ring structure. */
Julien Grall2e073962015-08-13 19:23:10 +0100556 id = blkif_ring_get_request(rinfo, req, &ring_req);
Julien Grall33204662015-06-29 17:35:24 +0100557
558 ring_req->operation = BLKIF_OP_DISCARD;
559 ring_req->u.discard.nr_sectors = blk_rq_sectors(req);
560 ring_req->u.discard.id = id;
561 ring_req->u.discard.sector_number = (blkif_sector_t)blk_rq_pos(req);
Christoph Hellwig288dab82016-06-09 16:00:36 +0200562 if (req_op(req) == REQ_OP_SECURE_ERASE && info->feature_secdiscard)
Julien Grall33204662015-06-29 17:35:24 +0100563 ring_req->u.discard.flag = BLKIF_DISCARD_SECURE;
564 else
565 ring_req->u.discard.flag = 0;
566
Julien Grall33204662015-06-29 17:35:24 +0100567 /* Keep a private copy so we can reissue requests when recovering. */
Bob Liu81f35162015-11-14 11:12:11 +0800568 rinfo->shadow[id].req = *ring_req;
Julien Grall33204662015-06-29 17:35:24 +0100569
570 return 0;
571}
572
Julien Grallc004a6f2015-07-22 16:44:54 +0100573struct setup_rw_req {
574 unsigned int grant_idx;
575 struct blkif_request_segment *segments;
Bob Liu81f35162015-11-14 11:12:11 +0800576 struct blkfront_ring_info *rinfo;
Julien Grallc004a6f2015-07-22 16:44:54 +0100577 struct blkif_request *ring_req;
578 grant_ref_t gref_head;
579 unsigned int id;
580 /* Only used when persistent grant is used and it's a read request */
581 bool need_copy;
582 unsigned int bvec_off;
583 char *bvec_data;
Julien Grall6cc568332015-08-13 13:13:35 +0100584
585 bool require_extra_req;
586 struct blkif_request *extra_ring_req;
Julien Grallc004a6f2015-07-22 16:44:54 +0100587};
588
589static void blkif_setup_rw_req_grant(unsigned long gfn, unsigned int offset,
590 unsigned int len, void *data)
591{
592 struct setup_rw_req *setup = data;
593 int n, ref;
594 struct grant *gnt_list_entry;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700595 unsigned int fsect, lsect;
Julien Grallc004a6f2015-07-22 16:44:54 +0100596 /* Convenient aliases */
597 unsigned int grant_idx = setup->grant_idx;
598 struct blkif_request *ring_req = setup->ring_req;
Bob Liu81f35162015-11-14 11:12:11 +0800599 struct blkfront_ring_info *rinfo = setup->rinfo;
Julien Grall6cc568332015-08-13 13:13:35 +0100600 /*
601 * We always use the shadow of the first request to store the list
602 * of grant associated to the block I/O request. This made the
603 * completion more easy to handle even if the block I/O request is
604 * split.
605 */
Bob Liu81f35162015-11-14 11:12:11 +0800606 struct blk_shadow *shadow = &rinfo->shadow[setup->id];
Julien Grallc004a6f2015-07-22 16:44:54 +0100607
Julien Grall6cc568332015-08-13 13:13:35 +0100608 if (unlikely(setup->require_extra_req &&
609 grant_idx >= BLKIF_MAX_SEGMENTS_PER_REQUEST)) {
610 /*
611 * We are using the second request, setup grant_idx
612 * to be the index of the segment array.
613 */
614 grant_idx -= BLKIF_MAX_SEGMENTS_PER_REQUEST;
615 ring_req = setup->extra_ring_req;
616 }
617
Julien Grallc004a6f2015-07-22 16:44:54 +0100618 if ((ring_req->operation == BLKIF_OP_INDIRECT) &&
619 (grant_idx % GRANTS_PER_INDIRECT_FRAME == 0)) {
620 if (setup->segments)
621 kunmap_atomic(setup->segments);
622
623 n = grant_idx / GRANTS_PER_INDIRECT_FRAME;
Bob Liu73716df2015-11-16 16:51:39 -0500624 gnt_list_entry = get_indirect_grant(&setup->gref_head, rinfo);
Julien Grallc004a6f2015-07-22 16:44:54 +0100625 shadow->indirect_grants[n] = gnt_list_entry;
626 setup->segments = kmap_atomic(gnt_list_entry->page);
627 ring_req->u.indirect.indirect_grefs[n] = gnt_list_entry->gref;
628 }
629
Bob Liu73716df2015-11-16 16:51:39 -0500630 gnt_list_entry = get_grant(&setup->gref_head, gfn, rinfo);
Julien Grallc004a6f2015-07-22 16:44:54 +0100631 ref = gnt_list_entry->gref;
Julien Grall6cc568332015-08-13 13:13:35 +0100632 /*
633 * All the grants are stored in the shadow of the first
634 * request. Therefore we have to use the global index.
635 */
636 shadow->grants_used[setup->grant_idx] = gnt_list_entry;
Julien Grallc004a6f2015-07-22 16:44:54 +0100637
638 if (setup->need_copy) {
639 void *shared_data;
640
641 shared_data = kmap_atomic(gnt_list_entry->page);
642 /*
643 * this does not wipe data stored outside the
644 * range sg->offset..sg->offset+sg->length.
645 * Therefore, blkback *could* see data from
646 * previous requests. This is OK as long as
647 * persistent grants are shared with just one
648 * domain. It may need refactoring if this
649 * changes
650 */
651 memcpy(shared_data + offset,
652 setup->bvec_data + setup->bvec_off,
653 len);
654
655 kunmap_atomic(shared_data);
656 setup->bvec_off += len;
657 }
658
659 fsect = offset >> 9;
660 lsect = fsect + (len >> 9) - 1;
661 if (ring_req->operation != BLKIF_OP_INDIRECT) {
662 ring_req->u.rw.seg[grant_idx] =
663 (struct blkif_request_segment) {
664 .gref = ref,
665 .first_sect = fsect,
666 .last_sect = lsect };
667 } else {
668 setup->segments[grant_idx % GRANTS_PER_INDIRECT_FRAME] =
669 (struct blkif_request_segment) {
670 .gref = ref,
671 .first_sect = fsect,
672 .last_sect = lsect };
673 }
674
675 (setup->grant_idx)++;
676}
677
Julien Grall6cc568332015-08-13 13:13:35 +0100678static void blkif_setup_extra_req(struct blkif_request *first,
679 struct blkif_request *second)
680{
681 uint16_t nr_segments = first->u.rw.nr_segments;
682
683 /*
684 * The second request is only present when the first request uses
685 * all its segments. It's always the continuity of the first one.
686 */
687 first->u.rw.nr_segments = BLKIF_MAX_SEGMENTS_PER_REQUEST;
688
689 second->u.rw.nr_segments = nr_segments - BLKIF_MAX_SEGMENTS_PER_REQUEST;
690 second->u.rw.sector_number = first->u.rw.sector_number +
691 (BLKIF_MAX_SEGMENTS_PER_REQUEST * XEN_PAGE_SIZE) / 512;
692
693 second->u.rw.handle = first->u.rw.handle;
694 second->operation = first->operation;
695}
696
Bob Liu81f35162015-11-14 11:12:11 +0800697static int blkif_queue_rw_req(struct request *req, struct blkfront_ring_info *rinfo)
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700698{
Bob Liu81f35162015-11-14 11:12:11 +0800699 struct blkfront_info *info = rinfo->dev_info;
Julien Grall6cc568332015-08-13 13:13:35 +0100700 struct blkif_request *ring_req, *extra_ring_req = NULL;
701 unsigned long id, extra_id = NO_ASSOCIATED_ID;
702 bool require_extra_req = false;
Julien Grallc004a6f2015-07-22 16:44:54 +0100703 int i;
704 struct setup_rw_req setup = {
705 .grant_idx = 0,
706 .segments = NULL,
Bob Liu81f35162015-11-14 11:12:11 +0800707 .rinfo = rinfo,
Julien Grallc004a6f2015-07-22 16:44:54 +0100708 .need_copy = rq_data_dir(req) && info->feature_persistent,
709 };
Roger Pau Monne0a8704a2012-10-24 18:58:45 +0200710
711 /*
712 * Used to store if we are able to queue the request by just using
713 * existing persistent grants, or if we have to get new grants,
714 * as there are not sufficiently many free.
715 */
Jens Axboe9e973e62009-02-24 08:10:09 +0100716 struct scatterlist *sg;
Julien Grallc004a6f2015-07-22 16:44:54 +0100717 int num_sg, max_grefs, num_grant;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700718
Julien Grallc004a6f2015-07-22 16:44:54 +0100719 max_grefs = req->nr_phys_segments * GRANTS_PER_PSEG;
Roger Pau Monnec47206e2013-08-12 12:53:43 +0200720 if (max_grefs > BLKIF_MAX_SEGMENTS_PER_REQUEST)
721 /*
722 * If we are using indirect segments we need to account
723 * for the indirect grefs used in the request.
724 */
Julien Grallc004a6f2015-07-22 16:44:54 +0100725 max_grefs += INDIRECT_GREFS(max_grefs);
Roger Pau Monne402b27f2013-04-18 16:06:54 +0200726
Bob Liu3df0e502015-11-14 11:12:12 +0800727 /*
728 * We have to reserve 'max_grefs' grants because persistent
729 * grants are shared by all rings.
730 */
731 if (max_grefs > 0)
732 if (gnttab_alloc_grant_references(max_grefs, &setup.gref_head) < 0) {
Roger Pau Monne0a8704a2012-10-24 18:58:45 +0200733 gnttab_request_free_callback(
Bob Liu81f35162015-11-14 11:12:11 +0800734 &rinfo->callback,
Roger Pau Monne0a8704a2012-10-24 18:58:45 +0200735 blkif_restart_queue_callback,
Bob Liu81f35162015-11-14 11:12:11 +0800736 rinfo,
Roger Pau Monne402b27f2013-04-18 16:06:54 +0200737 max_grefs);
Roger Pau Monne0a8704a2012-10-24 18:58:45 +0200738 return 1;
739 }
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700740
741 /* Fill out a communications ring structure. */
Julien Grall2e073962015-08-13 19:23:10 +0100742 id = blkif_ring_get_request(rinfo, req, &ring_req);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700743
Bob Liu81f35162015-11-14 11:12:11 +0800744 num_sg = blk_rq_map_sg(req->q, req, rinfo->shadow[id].sg);
Julien Grallc004a6f2015-07-22 16:44:54 +0100745 num_grant = 0;
746 /* Calculate the number of grant used */
Bob Liu81f35162015-11-14 11:12:11 +0800747 for_each_sg(rinfo->shadow[id].sg, sg, num_sg, i)
Julien Grallc004a6f2015-07-22 16:44:54 +0100748 num_grant += gnttab_count_grant(sg->offset, sg->length);
749
Julien Grall6cc568332015-08-13 13:13:35 +0100750 require_extra_req = info->max_indirect_segments == 0 &&
751 num_grant > BLKIF_MAX_SEGMENTS_PER_REQUEST;
752 BUG_ON(!HAS_EXTRA_REQ && require_extra_req);
753
Bob Liu81f35162015-11-14 11:12:11 +0800754 rinfo->shadow[id].num_sg = num_sg;
Julien Grall6cc568332015-08-13 13:13:35 +0100755 if (num_grant > BLKIF_MAX_SEGMENTS_PER_REQUEST &&
756 likely(!require_extra_req)) {
Julien Grall33204662015-06-29 17:35:24 +0100757 /*
758 * The indirect operation can only be a BLKIF_OP_READ or
759 * BLKIF_OP_WRITE
760 */
Mike Christie3a5e02c2016-06-05 14:32:23 -0500761 BUG_ON(req_op(req) == REQ_OP_FLUSH || req->cmd_flags & REQ_FUA);
Julien Grall33204662015-06-29 17:35:24 +0100762 ring_req->operation = BLKIF_OP_INDIRECT;
763 ring_req->u.indirect.indirect_op = rq_data_dir(req) ?
764 BLKIF_OP_WRITE : BLKIF_OP_READ;
765 ring_req->u.indirect.sector_number = (blkif_sector_t)blk_rq_pos(req);
766 ring_req->u.indirect.handle = info->handle;
Julien Grallc004a6f2015-07-22 16:44:54 +0100767 ring_req->u.indirect.nr_segments = num_grant;
Li Dongyanged30bf32011-09-01 18:39:09 +0800768 } else {
Julien Grall33204662015-06-29 17:35:24 +0100769 ring_req->u.rw.sector_number = (blkif_sector_t)blk_rq_pos(req);
770 ring_req->u.rw.handle = info->handle;
771 ring_req->operation = rq_data_dir(req) ?
772 BLKIF_OP_WRITE : BLKIF_OP_READ;
Mike Christie3a5e02c2016-06-05 14:32:23 -0500773 if (req_op(req) == REQ_OP_FLUSH || req->cmd_flags & REQ_FUA) {
Roger Pau Monne402b27f2013-04-18 16:06:54 +0200774 /*
Julien Grall33204662015-06-29 17:35:24 +0100775 * Ideally we can do an unordered flush-to-disk.
776 * In case the backend onlysupports barriers, use that.
777 * A barrier request a superset of FUA, so we can
778 * implement it the same way. (It's also a FLUSH+FUA,
779 * since it is guaranteed ordered WRT previous writes.)
Roger Pau Monne402b27f2013-04-18 16:06:54 +0200780 */
Mike Christiea4180902016-06-05 14:32:24 -0500781 if (info->feature_flush && info->feature_fua)
Julien Grall33204662015-06-29 17:35:24 +0100782 ring_req->operation =
783 BLKIF_OP_WRITE_BARRIER;
Mike Christiea4180902016-06-05 14:32:24 -0500784 else if (info->feature_flush)
Julien Grall33204662015-06-29 17:35:24 +0100785 ring_req->operation =
786 BLKIF_OP_FLUSH_DISKCACHE;
Mike Christiea4180902016-06-05 14:32:24 -0500787 else
Julien Grall33204662015-06-29 17:35:24 +0100788 ring_req->operation = 0;
Li Dongyanged30bf32011-09-01 18:39:09 +0800789 }
Julien Grallc004a6f2015-07-22 16:44:54 +0100790 ring_req->u.rw.nr_segments = num_grant;
Julien Grall6cc568332015-08-13 13:13:35 +0100791 if (unlikely(require_extra_req)) {
792 extra_id = blkif_ring_get_request(rinfo, req,
793 &extra_ring_req);
794 /*
795 * Only the first request contains the scatter-gather
796 * list.
797 */
798 rinfo->shadow[extra_id].num_sg = 0;
799
800 blkif_setup_extra_req(ring_req, extra_ring_req);
801
802 /* Link the 2 requests together */
803 rinfo->shadow[extra_id].associated_id = id;
804 rinfo->shadow[id].associated_id = extra_id;
805 }
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700806 }
807
Julien Grallc004a6f2015-07-22 16:44:54 +0100808 setup.ring_req = ring_req;
809 setup.id = id;
Julien Grall6cc568332015-08-13 13:13:35 +0100810
811 setup.require_extra_req = require_extra_req;
812 if (unlikely(require_extra_req))
813 setup.extra_ring_req = extra_ring_req;
814
Bob Liu81f35162015-11-14 11:12:11 +0800815 for_each_sg(rinfo->shadow[id].sg, sg, num_sg, i) {
Julien Grallc004a6f2015-07-22 16:44:54 +0100816 BUG_ON(sg->offset + sg->length > PAGE_SIZE);
Julien Grall33204662015-06-29 17:35:24 +0100817
Julien Grallc004a6f2015-07-22 16:44:54 +0100818 if (setup.need_copy) {
819 setup.bvec_off = sg->offset;
820 setup.bvec_data = kmap_atomic(sg_page(sg));
Julien Grall33204662015-06-29 17:35:24 +0100821 }
822
Julien Grallc004a6f2015-07-22 16:44:54 +0100823 gnttab_foreach_grant_in_range(sg_page(sg),
824 sg->offset,
825 sg->length,
826 blkif_setup_rw_req_grant,
827 &setup);
Julien Grall33204662015-06-29 17:35:24 +0100828
Julien Grallc004a6f2015-07-22 16:44:54 +0100829 if (setup.need_copy)
830 kunmap_atomic(setup.bvec_data);
Julien Grall33204662015-06-29 17:35:24 +0100831 }
Julien Grallc004a6f2015-07-22 16:44:54 +0100832 if (setup.segments)
833 kunmap_atomic(setup.segments);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700834
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700835 /* Keep a private copy so we can reissue requests when recovering. */
Bob Liu81f35162015-11-14 11:12:11 +0800836 rinfo->shadow[id].req = *ring_req;
Julien Grall6cc568332015-08-13 13:13:35 +0100837 if (unlikely(require_extra_req))
838 rinfo->shadow[extra_id].req = *extra_ring_req;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700839
Bob Liu3df0e502015-11-14 11:12:12 +0800840 if (max_grefs > 0)
Julien Grallc004a6f2015-07-22 16:44:54 +0100841 gnttab_free_grant_references(setup.gref_head);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700842
843 return 0;
844}
845
Julien Grall33204662015-06-29 17:35:24 +0100846/*
847 * Generate a Xen blkfront IO request from a blk layer request. Reads
848 * and writes are handled as expected.
849 *
850 * @req: a request struct
851 */
Bob Liu81f35162015-11-14 11:12:11 +0800852static int blkif_queue_request(struct request *req, struct blkfront_ring_info *rinfo)
Julien Grall33204662015-06-29 17:35:24 +0100853{
Bob Liu81f35162015-11-14 11:12:11 +0800854 if (unlikely(rinfo->dev_info->connected != BLKIF_STATE_CONNECTED))
Julien Grall33204662015-06-29 17:35:24 +0100855 return 1;
856
Mike Christiec2df40d2016-06-05 14:32:17 -0500857 if (unlikely(req_op(req) == REQ_OP_DISCARD ||
Christoph Hellwig288dab82016-06-09 16:00:36 +0200858 req_op(req) == REQ_OP_SECURE_ERASE))
Bob Liu81f35162015-11-14 11:12:11 +0800859 return blkif_queue_discard_req(req, rinfo);
Julien Grall33204662015-06-29 17:35:24 +0100860 else
Bob Liu81f35162015-11-14 11:12:11 +0800861 return blkif_queue_rw_req(req, rinfo);
Julien Grall33204662015-06-29 17:35:24 +0100862}
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700863
Bob Liu81f35162015-11-14 11:12:11 +0800864static inline void flush_requests(struct blkfront_ring_info *rinfo)
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700865{
866 int notify;
867
Bob Liu81f35162015-11-14 11:12:11 +0800868 RING_PUSH_REQUESTS_AND_CHECK_NOTIFY(&rinfo->ring, notify);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700869
870 if (notify)
Bob Liu81f35162015-11-14 11:12:11 +0800871 notify_remote_via_irq(rinfo->irq);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700872}
873
Vitaly Kuznetsovad42d392014-12-01 14:01:13 +0100874static inline bool blkif_request_flush_invalid(struct request *req,
875 struct blkfront_info *info)
Arianna Avanzini0f1ca652014-08-22 13:20:02 +0200876{
Christoph Hellwigaebf5262017-01-31 16:57:31 +0100877 return (blk_rq_is_passthrough(req) ||
Mike Christie3a5e02c2016-06-05 14:32:23 -0500878 ((req_op(req) == REQ_OP_FLUSH) &&
Mike Christiea4180902016-06-05 14:32:24 -0500879 !info->feature_flush) ||
Vitaly Kuznetsovad42d392014-12-01 14:01:13 +0100880 ((req->cmd_flags & REQ_FUA) &&
Mike Christiea4180902016-06-05 14:32:24 -0500881 !info->feature_fua));
Arianna Avanzini0f1ca652014-08-22 13:20:02 +0200882}
883
Christoph Hellwigfc17b652017-06-03 09:38:05 +0200884static blk_status_t blkif_queue_rq(struct blk_mq_hw_ctx *hctx,
Konrad Rzeszutek Wilk6f03a7f2015-11-16 15:14:41 -0500885 const struct blk_mq_queue_data *qd)
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700886{
Bob Liu11659562015-11-14 11:12:13 +0800887 unsigned long flags;
Bob Liu2a6f71a2016-05-31 16:59:17 +0800888 int qid = hctx->queue_num;
889 struct blkfront_info *info = hctx->queue->queuedata;
890 struct blkfront_ring_info *rinfo = NULL;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700891
Bob Liu2a6f71a2016-05-31 16:59:17 +0800892 BUG_ON(info->nr_rings <= qid);
893 rinfo = &info->rinfo[qid];
Bob Liu907c3eb2015-07-13 17:55:24 +0800894 blk_mq_start_request(qd->rq);
Bob Liu11659562015-11-14 11:12:13 +0800895 spin_lock_irqsave(&rinfo->ring_lock, flags);
Bob Liu81f35162015-11-14 11:12:11 +0800896 if (RING_FULL(&rinfo->ring))
Bob Liu907c3eb2015-07-13 17:55:24 +0800897 goto out_busy;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700898
Bob Liu81f35162015-11-14 11:12:11 +0800899 if (blkif_request_flush_invalid(qd->rq, rinfo->dev_info))
Bob Liu907c3eb2015-07-13 17:55:24 +0800900 goto out_err;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700901
Bob Liu81f35162015-11-14 11:12:11 +0800902 if (blkif_queue_request(qd->rq, rinfo))
Bob Liu907c3eb2015-07-13 17:55:24 +0800903 goto out_busy;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700904
Bob Liu81f35162015-11-14 11:12:11 +0800905 flush_requests(rinfo);
Bob Liu11659562015-11-14 11:12:13 +0800906 spin_unlock_irqrestore(&rinfo->ring_lock, flags);
Christoph Hellwigfc17b652017-06-03 09:38:05 +0200907 return BLK_STS_OK;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700908
Bob Liu907c3eb2015-07-13 17:55:24 +0800909out_err:
Bob Liu11659562015-11-14 11:12:13 +0800910 spin_unlock_irqrestore(&rinfo->ring_lock, flags);
Christoph Hellwigfc17b652017-06-03 09:38:05 +0200911 return BLK_STS_IOERR;
Tejun Heo296b2f62009-05-08 11:54:15 +0900912
Bob Liu907c3eb2015-07-13 17:55:24 +0800913out_busy:
Bob Liu11659562015-11-14 11:12:13 +0800914 spin_unlock_irqrestore(&rinfo->ring_lock, flags);
Bob Liu907c3eb2015-07-13 17:55:24 +0800915 blk_mq_stop_hw_queue(hctx);
Christoph Hellwigfc17b652017-06-03 09:38:05 +0200916 return BLK_STS_RESOURCE;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700917}
918
Christoph Hellwig26095872017-04-20 16:03:08 +0200919static void blkif_complete_rq(struct request *rq)
920{
921 blk_mq_end_request(rq, blkif_req(rq)->error);
922}
923
Eric Biggersf363b082017-03-30 13:39:16 -0700924static const struct blk_mq_ops blkfront_mq_ops = {
Bob Liu907c3eb2015-07-13 17:55:24 +0800925 .queue_rq = blkif_queue_rq,
Christoph Hellwig26095872017-04-20 16:03:08 +0200926 .complete = blkif_complete_rq,
Bob Liu907c3eb2015-07-13 17:55:24 +0800927};
928
Bob Liu172335a2016-07-01 17:43:39 -0400929static void blkif_set_queue_limits(struct blkfront_info *info)
930{
931 struct request_queue *rq = info->rq;
932 struct gendisk *gd = info->gd;
933 unsigned int segments = info->max_indirect_segments ? :
934 BLKIF_MAX_SEGMENTS_PER_REQUEST;
935
936 queue_flag_set_unlocked(QUEUE_FLAG_VIRT, rq);
937
938 if (info->feature_discard) {
939 queue_flag_set_unlocked(QUEUE_FLAG_DISCARD, rq);
940 blk_queue_max_discard_sectors(rq, get_capacity(gd));
941 rq->limits.discard_granularity = info->discard_granularity;
942 rq->limits.discard_alignment = info->discard_alignment;
943 if (info->feature_secdiscard)
944 queue_flag_set_unlocked(QUEUE_FLAG_SECERASE, rq);
945 }
946
947 /* Hard sector size and max sectors impersonate the equiv. hardware. */
948 blk_queue_logical_block_size(rq, info->sector_size);
949 blk_queue_physical_block_size(rq, info->physical_sector_size);
950 blk_queue_max_hw_sectors(rq, (segments * XEN_PAGE_SIZE) / 512);
951
952 /* Each segment in a request is up to an aligned page in size. */
953 blk_queue_segment_boundary(rq, PAGE_SIZE - 1);
954 blk_queue_max_segment_size(rq, PAGE_SIZE);
955
956 /* Ensure a merged request will fit in a single I/O ring slot. */
957 blk_queue_max_segments(rq, segments / GRANTS_PER_PSEG);
958
959 /* Make sure buffer addresses are sector-aligned. */
960 blk_queue_dma_alignment(rq, 511);
961
962 /* Make sure we don't use bounce buffers. */
963 blk_queue_bounce_limit(rq, BLK_BOUNCE_ANY);
964}
965
Roger Pau Monne402b27f2013-04-18 16:06:54 +0200966static int xlvbd_init_blk_queue(struct gendisk *gd, u16 sector_size,
Bob Liu172335a2016-07-01 17:43:39 -0400967 unsigned int physical_sector_size)
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700968{
Jens Axboe165125e2007-07-24 09:28:11 +0200969 struct request_queue *rq;
Li Dongyanged30bf32011-09-01 18:39:09 +0800970 struct blkfront_info *info = gd->private_data;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700971
Bob Liu907c3eb2015-07-13 17:55:24 +0800972 memset(&info->tag_set, 0, sizeof(info->tag_set));
973 info->tag_set.ops = &blkfront_mq_ops;
Bob Liu28d949b2015-11-14 11:12:14 +0800974 info->tag_set.nr_hw_queues = info->nr_rings;
Julien Grall6cc568332015-08-13 13:13:35 +0100975 if (HAS_EXTRA_REQ && info->max_indirect_segments == 0) {
976 /*
977 * When indirect descriptior is not supported, the I/O request
978 * will be split between multiple request in the ring.
979 * To avoid problems when sending the request, divide by
980 * 2 the depth of the queue.
981 */
982 info->tag_set.queue_depth = BLK_RING_SIZE(info) / 2;
983 } else
984 info->tag_set.queue_depth = BLK_RING_SIZE(info);
Bob Liu907c3eb2015-07-13 17:55:24 +0800985 info->tag_set.numa_node = NUMA_NO_NODE;
986 info->tag_set.flags = BLK_MQ_F_SHOULD_MERGE | BLK_MQ_F_SG_MERGE;
Christoph Hellwig26095872017-04-20 16:03:08 +0200987 info->tag_set.cmd_size = sizeof(struct blkif_req);
Bob Liu907c3eb2015-07-13 17:55:24 +0800988 info->tag_set.driver_data = info;
989
990 if (blk_mq_alloc_tag_set(&info->tag_set))
Konrad Rzeszutek Wilkbde21f72015-11-25 13:07:39 -0500991 return -EINVAL;
Bob Liu907c3eb2015-07-13 17:55:24 +0800992 rq = blk_mq_init_queue(&info->tag_set);
993 if (IS_ERR(rq)) {
994 blk_mq_free_tag_set(&info->tag_set);
Konrad Rzeszutek Wilkbde21f72015-11-25 13:07:39 -0500995 return PTR_ERR(rq);
Bob Liu907c3eb2015-07-13 17:55:24 +0800996 }
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700997
Bob Liu2a6f71a2016-05-31 16:59:17 +0800998 rq->queuedata = info;
Bob Liu172335a2016-07-01 17:43:39 -0400999 info->rq = gd->queue = rq;
1000 info->gd = gd;
1001 info->sector_size = sector_size;
1002 info->physical_sector_size = physical_sector_size;
1003 blkif_set_queue_limits(info);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001004
1005 return 0;
1006}
1007
Mike Christiea4180902016-06-05 14:32:24 -05001008static const char *flush_info(struct blkfront_info *info)
Vitaly Kuznetsovfdf9b962014-12-09 15:25:10 +01001009{
Mike Christiea4180902016-06-05 14:32:24 -05001010 if (info->feature_flush && info->feature_fua)
Vitaly Kuznetsovfdf9b962014-12-09 15:25:10 +01001011 return "barrier: enabled;";
Mike Christiea4180902016-06-05 14:32:24 -05001012 else if (info->feature_flush)
Vitaly Kuznetsovfdf9b962014-12-09 15:25:10 +01001013 return "flush diskcache: enabled;";
Mike Christiea4180902016-06-05 14:32:24 -05001014 else
Vitaly Kuznetsovfdf9b962014-12-09 15:25:10 +01001015 return "barrier or flush: disabled;";
Vitaly Kuznetsovfdf9b962014-12-09 15:25:10 +01001016}
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001017
Tejun Heo4913efe2010-09-03 11:56:16 +02001018static void xlvbd_flush(struct blkfront_info *info)
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001019{
Mike Christiea4180902016-06-05 14:32:24 -05001020 blk_queue_write_cache(info->rq, info->feature_flush ? true : false,
1021 info->feature_fua ? true : false);
Vitaly Kuznetsovfdf9b962014-12-09 15:25:10 +01001022 pr_info("blkfront: %s: %s %s %s %s %s\n",
Mike Christiea4180902016-06-05 14:32:24 -05001023 info->gd->disk_name, flush_info(info),
Vitaly Kuznetsovfdf9b962014-12-09 15:25:10 +01001024 "persistent grants:", info->feature_persistent ?
1025 "enabled;" : "disabled;", "indirect descriptors:",
1026 info->max_indirect_segments ? "enabled;" : "disabled;");
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001027}
1028
Stefano Stabellinic80a4202010-12-02 17:55:00 +00001029static int xen_translate_vdev(int vdevice, int *minor, unsigned int *offset)
1030{
1031 int major;
1032 major = BLKIF_MAJOR(vdevice);
1033 *minor = BLKIF_MINOR(vdevice);
1034 switch (major) {
1035 case XEN_IDE0_MAJOR:
1036 *offset = (*minor / 64) + EMULATED_HD_DISK_NAME_OFFSET;
1037 *minor = ((*minor / 64) * PARTS_PER_DISK) +
1038 EMULATED_HD_DISK_MINOR_OFFSET;
1039 break;
1040 case XEN_IDE1_MAJOR:
1041 *offset = (*minor / 64) + 2 + EMULATED_HD_DISK_NAME_OFFSET;
1042 *minor = (((*minor / 64) + 2) * PARTS_PER_DISK) +
1043 EMULATED_HD_DISK_MINOR_OFFSET;
1044 break;
1045 case XEN_SCSI_DISK0_MAJOR:
1046 *offset = (*minor / PARTS_PER_DISK) + EMULATED_SD_DISK_NAME_OFFSET;
1047 *minor = *minor + EMULATED_SD_DISK_MINOR_OFFSET;
1048 break;
1049 case XEN_SCSI_DISK1_MAJOR:
1050 case XEN_SCSI_DISK2_MAJOR:
1051 case XEN_SCSI_DISK3_MAJOR:
1052 case XEN_SCSI_DISK4_MAJOR:
1053 case XEN_SCSI_DISK5_MAJOR:
1054 case XEN_SCSI_DISK6_MAJOR:
1055 case XEN_SCSI_DISK7_MAJOR:
1056 *offset = (*minor / PARTS_PER_DISK) +
1057 ((major - XEN_SCSI_DISK1_MAJOR + 1) * 16) +
1058 EMULATED_SD_DISK_NAME_OFFSET;
1059 *minor = *minor +
1060 ((major - XEN_SCSI_DISK1_MAJOR + 1) * 16 * PARTS_PER_DISK) +
1061 EMULATED_SD_DISK_MINOR_OFFSET;
1062 break;
1063 case XEN_SCSI_DISK8_MAJOR:
1064 case XEN_SCSI_DISK9_MAJOR:
1065 case XEN_SCSI_DISK10_MAJOR:
1066 case XEN_SCSI_DISK11_MAJOR:
1067 case XEN_SCSI_DISK12_MAJOR:
1068 case XEN_SCSI_DISK13_MAJOR:
1069 case XEN_SCSI_DISK14_MAJOR:
1070 case XEN_SCSI_DISK15_MAJOR:
1071 *offset = (*minor / PARTS_PER_DISK) +
1072 ((major - XEN_SCSI_DISK8_MAJOR + 8) * 16) +
1073 EMULATED_SD_DISK_NAME_OFFSET;
1074 *minor = *minor +
1075 ((major - XEN_SCSI_DISK8_MAJOR + 8) * 16 * PARTS_PER_DISK) +
1076 EMULATED_SD_DISK_MINOR_OFFSET;
1077 break;
1078 case XENVBD_MAJOR:
1079 *offset = *minor / PARTS_PER_DISK;
1080 break;
1081 default:
1082 printk(KERN_WARNING "blkfront: your disk configuration is "
1083 "incorrect, please use an xvd device instead\n");
1084 return -ENODEV;
1085 }
1086 return 0;
1087}
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001088
Jan Beuliche77c78c2012-04-05 16:37:22 +01001089static char *encode_disk_name(char *ptr, unsigned int n)
1090{
1091 if (n >= 26)
1092 ptr = encode_disk_name(ptr, n / 26 - 1);
1093 *ptr = 'a' + n % 26;
1094 return ptr + 1;
1095}
1096
Chris Lalancette9246b5f2008-09-17 14:30:32 -07001097static int xlvbd_alloc_gendisk(blkif_sector_t capacity,
1098 struct blkfront_info *info,
Stefan Bader7c4d7d72013-05-13 16:28:15 +02001099 u16 vdisk_info, u16 sector_size,
1100 unsigned int physical_sector_size)
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001101{
1102 struct gendisk *gd;
1103 int nr_minors = 1;
Stefano Stabellinic80a4202010-12-02 17:55:00 +00001104 int err;
Chris Lalancette9246b5f2008-09-17 14:30:32 -07001105 unsigned int offset;
1106 int minor;
1107 int nr_parts;
Jan Beuliche77c78c2012-04-05 16:37:22 +01001108 char *ptr;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001109
1110 BUG_ON(info->gd != NULL);
1111 BUG_ON(info->rq != NULL);
1112
Chris Lalancette9246b5f2008-09-17 14:30:32 -07001113 if ((info->vdevice>>EXT_SHIFT) > 1) {
1114 /* this is above the extended range; something is wrong */
1115 printk(KERN_WARNING "blkfront: vdevice 0x%x is above the extended range; ignoring\n", info->vdevice);
1116 return -ENODEV;
1117 }
1118
1119 if (!VDEV_IS_EXTENDED(info->vdevice)) {
Stefano Stabellinic80a4202010-12-02 17:55:00 +00001120 err = xen_translate_vdev(info->vdevice, &minor, &offset);
1121 if (err)
1122 return err;
1123 nr_parts = PARTS_PER_DISK;
Chris Lalancette9246b5f2008-09-17 14:30:32 -07001124 } else {
1125 minor = BLKIF_MINOR_EXT(info->vdevice);
1126 nr_parts = PARTS_PER_EXT_DISK;
Stefano Stabellinic80a4202010-12-02 17:55:00 +00001127 offset = minor / nr_parts;
Stefan Bader89153b52011-07-14 15:30:37 +02001128 if (xen_hvm_domain() && offset < EMULATED_HD_DISK_NAME_OFFSET + 4)
Stefano Stabellinic80a4202010-12-02 17:55:00 +00001129 printk(KERN_WARNING "blkfront: vdevice 0x%x might conflict with "
1130 "emulated IDE disks,\n\t choose an xvd device name"
1131 "from xvde on\n", info->vdevice);
Chris Lalancette9246b5f2008-09-17 14:30:32 -07001132 }
Jan Beuliche77c78c2012-04-05 16:37:22 +01001133 if (minor >> MINORBITS) {
1134 pr_warn("blkfront: %#x's minor (%#x) out of range; ignoring\n",
1135 info->vdevice, minor);
1136 return -ENODEV;
1137 }
Chris Lalancette9246b5f2008-09-17 14:30:32 -07001138
1139 if ((minor % nr_parts) == 0)
1140 nr_minors = nr_parts;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001141
Jan Beulich0e345822010-08-07 18:28:55 +02001142 err = xlbd_reserve_minors(minor, nr_minors);
1143 if (err)
1144 goto out;
1145 err = -ENODEV;
1146
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001147 gd = alloc_disk(nr_minors);
1148 if (gd == NULL)
Jan Beulich0e345822010-08-07 18:28:55 +02001149 goto release;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001150
Jan Beuliche77c78c2012-04-05 16:37:22 +01001151 strcpy(gd->disk_name, DEV_NAME);
1152 ptr = encode_disk_name(gd->disk_name + sizeof(DEV_NAME) - 1, offset);
1153 BUG_ON(ptr >= gd->disk_name + DISK_NAME_LEN);
1154 if (nr_minors > 1)
1155 *ptr = 0;
1156 else
1157 snprintf(ptr, gd->disk_name + DISK_NAME_LEN - ptr,
1158 "%d", minor & (nr_parts - 1));
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001159
1160 gd->major = XENVBD_MAJOR;
1161 gd->first_minor = minor;
1162 gd->fops = &xlvbd_block_fops;
1163 gd->private_data = info;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001164 set_capacity(gd, capacity);
1165
Bob Liu172335a2016-07-01 17:43:39 -04001166 if (xlvbd_init_blk_queue(gd, sector_size, physical_sector_size)) {
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001167 del_gendisk(gd);
Jan Beulich0e345822010-08-07 18:28:55 +02001168 goto release;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001169 }
1170
Tejun Heo4913efe2010-09-03 11:56:16 +02001171 xlvbd_flush(info);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001172
1173 if (vdisk_info & VDISK_READONLY)
1174 set_disk_ro(gd, 1);
1175
1176 if (vdisk_info & VDISK_REMOVABLE)
1177 gd->flags |= GENHD_FL_REMOVABLE;
1178
1179 if (vdisk_info & VDISK_CDROM)
1180 gd->flags |= GENHD_FL_CD;
1181
1182 return 0;
1183
Jan Beulich0e345822010-08-07 18:28:55 +02001184 release:
1185 xlbd_release_minors(minor, nr_minors);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001186 out:
1187 return err;
1188}
1189
Daniel Stoddena66b5ae2010-08-07 18:33:17 +02001190static void xlvbd_release_gendisk(struct blkfront_info *info)
1191{
Bob Liu3df0e502015-11-14 11:12:12 +08001192 unsigned int minor, nr_minors, i;
Daniel Stoddena66b5ae2010-08-07 18:33:17 +02001193
1194 if (info->rq == NULL)
1195 return;
1196
Daniel Stoddena66b5ae2010-08-07 18:33:17 +02001197 /* No more blkif_request(). */
Bob Liu907c3eb2015-07-13 17:55:24 +08001198 blk_mq_stop_hw_queues(info->rq);
Daniel Stoddena66b5ae2010-08-07 18:33:17 +02001199
Bob Liu3df0e502015-11-14 11:12:12 +08001200 for (i = 0; i < info->nr_rings; i++) {
1201 struct blkfront_ring_info *rinfo = &info->rinfo[i];
Daniel Stoddena66b5ae2010-08-07 18:33:17 +02001202
Bob Liu3df0e502015-11-14 11:12:12 +08001203 /* No more gnttab callback work. */
1204 gnttab_cancel_free_callback(&rinfo->callback);
1205
1206 /* Flush gnttab callback work. Must be done with no locks held. */
1207 flush_work(&rinfo->work);
1208 }
Daniel Stoddena66b5ae2010-08-07 18:33:17 +02001209
1210 del_gendisk(info->gd);
1211
1212 minor = info->gd->first_minor;
1213 nr_minors = info->gd->minors;
1214 xlbd_release_minors(minor, nr_minors);
1215
1216 blk_cleanup_queue(info->rq);
Bob Liu907c3eb2015-07-13 17:55:24 +08001217 blk_mq_free_tag_set(&info->tag_set);
Daniel Stoddena66b5ae2010-08-07 18:33:17 +02001218 info->rq = NULL;
1219
1220 put_disk(info->gd);
1221 info->gd = NULL;
1222}
1223
Bob Liu11659562015-11-14 11:12:13 +08001224/* Already hold rinfo->ring_lock. */
1225static inline void kick_pending_request_queues_locked(struct blkfront_ring_info *rinfo)
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001226{
Bob Liu81f35162015-11-14 11:12:11 +08001227 if (!RING_FULL(&rinfo->ring))
1228 blk_mq_start_stopped_hw_queues(rinfo->dev_info->rq, true);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001229}
1230
Bob Liu11659562015-11-14 11:12:13 +08001231static void kick_pending_request_queues(struct blkfront_ring_info *rinfo)
1232{
1233 unsigned long flags;
1234
1235 spin_lock_irqsave(&rinfo->ring_lock, flags);
1236 kick_pending_request_queues_locked(rinfo);
1237 spin_unlock_irqrestore(&rinfo->ring_lock, flags);
1238}
1239
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001240static void blkif_restart_queue(struct work_struct *work)
1241{
Bob Liu81f35162015-11-14 11:12:11 +08001242 struct blkfront_ring_info *rinfo = container_of(work, struct blkfront_ring_info, work);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001243
Bob Liu81f35162015-11-14 11:12:11 +08001244 if (rinfo->dev_info->connected == BLKIF_STATE_CONNECTED)
1245 kick_pending_request_queues(rinfo);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001246}
1247
Bob Liu3df0e502015-11-14 11:12:12 +08001248static void blkif_free_ring(struct blkfront_ring_info *rinfo)
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001249{
Bob Liu73716df2015-11-16 16:51:39 -05001250 struct grant *persistent_gnt, *n;
Bob Liu3df0e502015-11-14 11:12:12 +08001251 struct blkfront_info *info = rinfo->dev_info;
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001252 int i, j, segs;
Roger Pau Monne0a8704a2012-10-24 18:58:45 +02001253
Roger Pau Monnebfe11d62013-10-29 18:31:14 +01001254 /*
1255 * Remove indirect pages, this only happens when using indirect
1256 * descriptors but not persistent grants
1257 */
Bob Liu81f35162015-11-14 11:12:11 +08001258 if (!list_empty(&rinfo->indirect_pages)) {
Roger Pau Monnebfe11d62013-10-29 18:31:14 +01001259 struct page *indirect_page, *n;
1260
1261 BUG_ON(info->feature_persistent);
Bob Liu81f35162015-11-14 11:12:11 +08001262 list_for_each_entry_safe(indirect_page, n, &rinfo->indirect_pages, lru) {
Roger Pau Monnebfe11d62013-10-29 18:31:14 +01001263 list_del(&indirect_page->lru);
1264 __free_page(indirect_page);
1265 }
1266 }
1267
Bob Liu73716df2015-11-16 16:51:39 -05001268 /* Remove all persistent grants. */
1269 if (!list_empty(&rinfo->grants)) {
1270 list_for_each_entry_safe(persistent_gnt, n,
1271 &rinfo->grants, node) {
1272 list_del(&persistent_gnt->node);
1273 if (persistent_gnt->gref != GRANT_INVALID_REF) {
1274 gnttab_end_foreign_access(persistent_gnt->gref,
1275 0, 0UL);
1276 rinfo->persistent_gnts_c--;
1277 }
1278 if (info->feature_persistent)
1279 __free_page(persistent_gnt->page);
1280 kfree(persistent_gnt);
1281 }
1282 }
1283 BUG_ON(rinfo->persistent_gnts_c != 0);
1284
Bob Liu86839c52015-06-03 13:40:03 +08001285 for (i = 0; i < BLK_RING_SIZE(info); i++) {
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001286 /*
1287 * Clear persistent grants present in requests already
1288 * on the shared ring
1289 */
Bob Liu81f35162015-11-14 11:12:11 +08001290 if (!rinfo->shadow[i].request)
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001291 goto free_shadow;
1292
Bob Liu81f35162015-11-14 11:12:11 +08001293 segs = rinfo->shadow[i].req.operation == BLKIF_OP_INDIRECT ?
1294 rinfo->shadow[i].req.u.indirect.nr_segments :
1295 rinfo->shadow[i].req.u.rw.nr_segments;
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001296 for (j = 0; j < segs; j++) {
Bob Liu81f35162015-11-14 11:12:11 +08001297 persistent_gnt = rinfo->shadow[i].grants_used[j];
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001298 gnttab_end_foreign_access(persistent_gnt->gref, 0, 0UL);
Roger Pau Monnebfe11d62013-10-29 18:31:14 +01001299 if (info->feature_persistent)
Julien Gralla7a6df22015-06-30 11:58:51 +01001300 __free_page(persistent_gnt->page);
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001301 kfree(persistent_gnt);
1302 }
1303
Bob Liu81f35162015-11-14 11:12:11 +08001304 if (rinfo->shadow[i].req.operation != BLKIF_OP_INDIRECT)
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001305 /*
1306 * If this is not an indirect operation don't try to
1307 * free indirect segments
1308 */
1309 goto free_shadow;
1310
1311 for (j = 0; j < INDIRECT_GREFS(segs); j++) {
Bob Liu81f35162015-11-14 11:12:11 +08001312 persistent_gnt = rinfo->shadow[i].indirect_grants[j];
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001313 gnttab_end_foreign_access(persistent_gnt->gref, 0, 0UL);
Julien Gralla7a6df22015-06-30 11:58:51 +01001314 __free_page(persistent_gnt->page);
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001315 kfree(persistent_gnt);
1316 }
1317
1318free_shadow:
Bob Liu81f35162015-11-14 11:12:11 +08001319 kfree(rinfo->shadow[i].grants_used);
1320 rinfo->shadow[i].grants_used = NULL;
1321 kfree(rinfo->shadow[i].indirect_grants);
1322 rinfo->shadow[i].indirect_grants = NULL;
1323 kfree(rinfo->shadow[i].sg);
1324 rinfo->shadow[i].sg = NULL;
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001325 }
1326
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001327 /* No more gnttab callback work. */
Bob Liu81f35162015-11-14 11:12:11 +08001328 gnttab_cancel_free_callback(&rinfo->callback);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001329
1330 /* Flush gnttab callback work. Must be done with no locks held. */
Bob Liu81f35162015-11-14 11:12:11 +08001331 flush_work(&rinfo->work);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001332
1333 /* Free resources associated with old device channel. */
Bob Liu86839c52015-06-03 13:40:03 +08001334 for (i = 0; i < info->nr_ring_pages; i++) {
Bob Liu81f35162015-11-14 11:12:11 +08001335 if (rinfo->ring_ref[i] != GRANT_INVALID_REF) {
1336 gnttab_end_foreign_access(rinfo->ring_ref[i], 0, 0);
1337 rinfo->ring_ref[i] = GRANT_INVALID_REF;
Bob Liu86839c52015-06-03 13:40:03 +08001338 }
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001339 }
Bob Liu6c647b02016-07-01 15:45:57 -04001340 free_pages((unsigned long)rinfo->ring.sring, get_order(info->nr_ring_pages * XEN_PAGE_SIZE));
Bob Liu81f35162015-11-14 11:12:11 +08001341 rinfo->ring.sring = NULL;
Bob Liu86839c52015-06-03 13:40:03 +08001342
Bob Liu81f35162015-11-14 11:12:11 +08001343 if (rinfo->irq)
1344 unbind_from_irqhandler(rinfo->irq, rinfo);
1345 rinfo->evtchn = rinfo->irq = 0;
Bob Liu3df0e502015-11-14 11:12:12 +08001346}
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001347
Bob Liu3df0e502015-11-14 11:12:12 +08001348static void blkif_free(struct blkfront_info *info, int suspend)
1349{
Bob Liu3df0e502015-11-14 11:12:12 +08001350 unsigned int i;
1351
1352 /* Prevent new requests being issued until we fix things up. */
Bob Liu3df0e502015-11-14 11:12:12 +08001353 info->connected = suspend ?
1354 BLKIF_STATE_SUSPENDED : BLKIF_STATE_DISCONNECTED;
1355 /* No more blkif_request(). */
1356 if (info->rq)
1357 blk_mq_stop_hw_queues(info->rq);
1358
Bob Liu3df0e502015-11-14 11:12:12 +08001359 for (i = 0; i < info->nr_rings; i++)
1360 blkif_free_ring(&info->rinfo[i]);
1361
1362 kfree(info->rinfo);
1363 info->rinfo = NULL;
1364 info->nr_rings = 0;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001365}
1366
Julien Grallc004a6f2015-07-22 16:44:54 +01001367struct copy_from_grant {
1368 const struct blk_shadow *s;
1369 unsigned int grant_idx;
1370 unsigned int bvec_offset;
1371 char *bvec_data;
1372};
1373
1374static void blkif_copy_from_grant(unsigned long gfn, unsigned int offset,
1375 unsigned int len, void *data)
1376{
1377 struct copy_from_grant *info = data;
1378 char *shared_data;
1379 /* Convenient aliases */
1380 const struct blk_shadow *s = info->s;
1381
1382 shared_data = kmap_atomic(s->grants_used[info->grant_idx]->page);
1383
1384 memcpy(info->bvec_data + info->bvec_offset,
1385 shared_data + offset, len);
1386
1387 info->bvec_offset += len;
1388 info->grant_idx++;
1389
1390 kunmap_atomic(shared_data);
1391}
1392
Julien Grall6cc568332015-08-13 13:13:35 +01001393static enum blk_req_status blkif_rsp_to_req_status(int rsp)
1394{
1395 switch (rsp)
1396 {
1397 case BLKIF_RSP_OKAY:
1398 return REQ_DONE;
1399 case BLKIF_RSP_EOPNOTSUPP:
1400 return REQ_EOPNOTSUPP;
1401 case BLKIF_RSP_ERROR:
1402 /* Fallthrough. */
1403 default:
1404 return REQ_ERROR;
1405 }
1406}
1407
1408/*
1409 * Get the final status of the block request based on two ring response
1410 */
1411static int blkif_get_final_status(enum blk_req_status s1,
1412 enum blk_req_status s2)
1413{
1414 BUG_ON(s1 == REQ_WAITING);
1415 BUG_ON(s2 == REQ_WAITING);
1416
1417 if (s1 == REQ_ERROR || s2 == REQ_ERROR)
1418 return BLKIF_RSP_ERROR;
1419 else if (s1 == REQ_EOPNOTSUPP || s2 == REQ_EOPNOTSUPP)
1420 return BLKIF_RSP_EOPNOTSUPP;
1421 return BLKIF_RSP_OKAY;
1422}
1423
1424static bool blkif_completion(unsigned long *id,
1425 struct blkfront_ring_info *rinfo,
Roger Pau Monne0a8704a2012-10-24 18:58:45 +02001426 struct blkif_response *bret)
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001427{
Roger Pau Monned62f6912012-12-07 19:00:31 +01001428 int i = 0;
Roger Pau Monneb7649152013-05-02 10:58:50 +02001429 struct scatterlist *sg;
Julien Grallc004a6f2015-07-22 16:44:54 +01001430 int num_sg, num_grant;
Bob Liu81f35162015-11-14 11:12:11 +08001431 struct blkfront_info *info = rinfo->dev_info;
Julien Grall6cc568332015-08-13 13:13:35 +01001432 struct blk_shadow *s = &rinfo->shadow[*id];
Julien Grallc004a6f2015-07-22 16:44:54 +01001433 struct copy_from_grant data = {
Julien Grallc004a6f2015-07-22 16:44:54 +01001434 .grant_idx = 0,
1435 };
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001436
Julien Grallc004a6f2015-07-22 16:44:54 +01001437 num_grant = s->req.operation == BLKIF_OP_INDIRECT ?
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001438 s->req.u.indirect.nr_segments : s->req.u.rw.nr_segments;
Julien Grall6cc568332015-08-13 13:13:35 +01001439
1440 /* The I/O request may be split in two. */
1441 if (unlikely(s->associated_id != NO_ASSOCIATED_ID)) {
1442 struct blk_shadow *s2 = &rinfo->shadow[s->associated_id];
1443
1444 /* Keep the status of the current response in shadow. */
1445 s->status = blkif_rsp_to_req_status(bret->status);
1446
1447 /* Wait the second response if not yet here. */
1448 if (s2->status == REQ_WAITING)
1449 return 0;
1450
1451 bret->status = blkif_get_final_status(s->status,
1452 s2->status);
1453
1454 /*
1455 * All the grants is stored in the first shadow in order
1456 * to make the completion code simpler.
1457 */
1458 num_grant += s2->req.u.rw.nr_segments;
1459
1460 /*
1461 * The two responses may not come in order. Only the
1462 * first request will store the scatter-gather list.
1463 */
1464 if (s2->num_sg != 0) {
1465 /* Update "id" with the ID of the first response. */
1466 *id = s->associated_id;
1467 s = s2;
1468 }
1469
1470 /*
1471 * We don't need anymore the second request, so recycling
1472 * it now.
1473 */
1474 if (add_id_to_freelist(rinfo, s->associated_id))
1475 WARN(1, "%s: can't recycle the second part (id = %ld) of the request\n",
1476 info->gd->disk_name, s->associated_id);
1477 }
1478
1479 data.s = s;
Julien Grallc004a6f2015-07-22 16:44:54 +01001480 num_sg = s->num_sg;
Roger Pau Monne0a8704a2012-10-24 18:58:45 +02001481
Roger Pau Monnebfe11d62013-10-29 18:31:14 +01001482 if (bret->operation == BLKIF_OP_READ && info->feature_persistent) {
Julien Grallc004a6f2015-07-22 16:44:54 +01001483 for_each_sg(s->sg, sg, num_sg, i) {
Roger Pau Monneb7649152013-05-02 10:58:50 +02001484 BUG_ON(sg->offset + sg->length > PAGE_SIZE);
Julien Grallc004a6f2015-07-22 16:44:54 +01001485
1486 data.bvec_offset = sg->offset;
1487 data.bvec_data = kmap_atomic(sg_page(sg));
1488
1489 gnttab_foreach_grant_in_range(sg_page(sg),
1490 sg->offset,
1491 sg->length,
1492 blkif_copy_from_grant,
1493 &data);
1494
1495 kunmap_atomic(data.bvec_data);
Roger Pau Monne0a8704a2012-10-24 18:58:45 +02001496 }
1497 }
1498 /* Add the persistent grant into the list of free grants */
Julien Grallc004a6f2015-07-22 16:44:54 +01001499 for (i = 0; i < num_grant; i++) {
Roger Pau Monnefbe363c2013-08-12 12:53:44 +02001500 if (gnttab_query_foreign_access(s->grants_used[i]->gref)) {
1501 /*
1502 * If the grant is still mapped by the backend (the
1503 * backend has chosen to make this grant persistent)
1504 * we add it at the head of the list, so it will be
1505 * reused first.
1506 */
Roger Pau Monnebfe11d62013-10-29 18:31:14 +01001507 if (!info->feature_persistent)
1508 pr_alert_ratelimited("backed has not unmapped grant: %u\n",
1509 s->grants_used[i]->gref);
Bob Liu73716df2015-11-16 16:51:39 -05001510 list_add(&s->grants_used[i]->node, &rinfo->grants);
1511 rinfo->persistent_gnts_c++;
Roger Pau Monnefbe363c2013-08-12 12:53:44 +02001512 } else {
1513 /*
1514 * If the grant is not mapped by the backend we end the
1515 * foreign access and add it to the tail of the list,
1516 * so it will not be picked again unless we run out of
1517 * persistent grants.
1518 */
1519 gnttab_end_foreign_access(s->grants_used[i]->gref, 0, 0UL);
1520 s->grants_used[i]->gref = GRANT_INVALID_REF;
Bob Liu73716df2015-11-16 16:51:39 -05001521 list_add_tail(&s->grants_used[i]->node, &rinfo->grants);
Roger Pau Monnefbe363c2013-08-12 12:53:44 +02001522 }
Roger Pau Monne0a8704a2012-10-24 18:58:45 +02001523 }
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001524 if (s->req.operation == BLKIF_OP_INDIRECT) {
Julien Grallc004a6f2015-07-22 16:44:54 +01001525 for (i = 0; i < INDIRECT_GREFS(num_grant); i++) {
Roger Pau Monnefbe363c2013-08-12 12:53:44 +02001526 if (gnttab_query_foreign_access(s->indirect_grants[i]->gref)) {
Roger Pau Monnebfe11d62013-10-29 18:31:14 +01001527 if (!info->feature_persistent)
1528 pr_alert_ratelimited("backed has not unmapped grant: %u\n",
1529 s->indirect_grants[i]->gref);
Bob Liu73716df2015-11-16 16:51:39 -05001530 list_add(&s->indirect_grants[i]->node, &rinfo->grants);
1531 rinfo->persistent_gnts_c++;
Roger Pau Monnefbe363c2013-08-12 12:53:44 +02001532 } else {
Roger Pau Monnebfe11d62013-10-29 18:31:14 +01001533 struct page *indirect_page;
1534
Roger Pau Monnefbe363c2013-08-12 12:53:44 +02001535 gnttab_end_foreign_access(s->indirect_grants[i]->gref, 0, 0UL);
Roger Pau Monnebfe11d62013-10-29 18:31:14 +01001536 /*
1537 * Add the used indirect page back to the list of
1538 * available pages for indirect grefs.
1539 */
Bob Liu7b076752015-07-22 14:40:09 +08001540 if (!info->feature_persistent) {
Julien Gralla7a6df22015-06-30 11:58:51 +01001541 indirect_page = s->indirect_grants[i]->page;
Bob Liu81f35162015-11-14 11:12:11 +08001542 list_add(&indirect_page->lru, &rinfo->indirect_pages);
Bob Liu7b076752015-07-22 14:40:09 +08001543 }
Roger Pau Monnefbe363c2013-08-12 12:53:44 +02001544 s->indirect_grants[i]->gref = GRANT_INVALID_REF;
Bob Liu73716df2015-11-16 16:51:39 -05001545 list_add_tail(&s->indirect_grants[i]->node, &rinfo->grants);
Roger Pau Monnefbe363c2013-08-12 12:53:44 +02001546 }
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001547 }
1548 }
Julien Grall6cc568332015-08-13 13:13:35 +01001549
1550 return 1;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001551}
1552
1553static irqreturn_t blkif_interrupt(int irq, void *dev_id)
1554{
1555 struct request *req;
1556 struct blkif_response *bret;
1557 RING_IDX i, rp;
1558 unsigned long flags;
Bob Liu81f35162015-11-14 11:12:11 +08001559 struct blkfront_ring_info *rinfo = (struct blkfront_ring_info *)dev_id;
1560 struct blkfront_info *info = rinfo->dev_info;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001561
Bob Liu11659562015-11-14 11:12:13 +08001562 if (unlikely(info->connected != BLKIF_STATE_CONNECTED))
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001563 return IRQ_HANDLED;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001564
Bob Liu11659562015-11-14 11:12:13 +08001565 spin_lock_irqsave(&rinfo->ring_lock, flags);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001566 again:
Bob Liu81f35162015-11-14 11:12:11 +08001567 rp = rinfo->ring.sring->rsp_prod;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001568 rmb(); /* Ensure we see queued responses up to 'rp'. */
1569
Bob Liu81f35162015-11-14 11:12:11 +08001570 for (i = rinfo->ring.rsp_cons; i != rp; i++) {
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001571 unsigned long id;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001572
Bob Liu81f35162015-11-14 11:12:11 +08001573 bret = RING_GET_RESPONSE(&rinfo->ring, i);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001574 id = bret->id;
Konrad Rzeszutek Wilk6878c322012-05-25 17:34:51 -04001575 /*
1576 * The backend has messed up and given us an id that we would
1577 * never have given to it (we stamp it up to BLK_RING_SIZE -
1578 * look in get_id_from_freelist.
1579 */
Bob Liu86839c52015-06-03 13:40:03 +08001580 if (id >= BLK_RING_SIZE(info)) {
Konrad Rzeszutek Wilk6878c322012-05-25 17:34:51 -04001581 WARN(1, "%s: response to %s has incorrect id (%ld)\n",
1582 info->gd->disk_name, op_name(bret->operation), id);
1583 /* We can't safely get the 'struct request' as
1584 * the id is busted. */
1585 continue;
1586 }
Bob Liu81f35162015-11-14 11:12:11 +08001587 req = rinfo->shadow[id].request;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001588
Julien Grall6cc568332015-08-13 13:13:35 +01001589 if (bret->operation != BLKIF_OP_DISCARD) {
1590 /*
1591 * We may need to wait for an extra response if the
1592 * I/O request is split in 2
1593 */
1594 if (!blkif_completion(&id, rinfo, bret))
1595 continue;
1596 }
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001597
Bob Liu81f35162015-11-14 11:12:11 +08001598 if (add_id_to_freelist(rinfo, id)) {
Konrad Rzeszutek Wilk6878c322012-05-25 17:34:51 -04001599 WARN(1, "%s: response to %s (id %ld) couldn't be recycled!\n",
1600 info->gd->disk_name, op_name(bret->operation), id);
1601 continue;
1602 }
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001603
Christoph Hellwig2a842ac2017-06-03 09:38:04 +02001604 if (bret->status == BLKIF_RSP_OKAY)
1605 blkif_req(req)->error = BLK_STS_OK;
1606 else
1607 blkif_req(req)->error = BLK_STS_IOERR;
1608
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001609 switch (bret->operation) {
Li Dongyanged30bf32011-09-01 18:39:09 +08001610 case BLKIF_OP_DISCARD:
1611 if (unlikely(bret->status == BLKIF_RSP_EOPNOTSUPP)) {
1612 struct request_queue *rq = info->rq;
Konrad Rzeszutek Wilk6878c322012-05-25 17:34:51 -04001613 printk(KERN_WARNING "blkfront: %s: %s op failed\n",
1614 info->gd->disk_name, op_name(bret->operation));
Christoph Hellwig2a842ac2017-06-03 09:38:04 +02001615 blkif_req(req)->error = BLK_STS_NOTSUPP;
Li Dongyanged30bf32011-09-01 18:39:09 +08001616 info->feature_discard = 0;
Konrad Rzeszutek Wilk5ea42982011-10-12 16:23:30 -04001617 info->feature_secdiscard = 0;
Li Dongyanged30bf32011-09-01 18:39:09 +08001618 queue_flag_clear(QUEUE_FLAG_DISCARD, rq);
Christoph Hellwig288dab82016-06-09 16:00:36 +02001619 queue_flag_clear(QUEUE_FLAG_SECERASE, rq);
Li Dongyanged30bf32011-09-01 18:39:09 +08001620 }
Li Dongyanged30bf32011-09-01 18:39:09 +08001621 break;
Konrad Rzeszutek Wilkedf6ef52011-05-03 12:01:11 -04001622 case BLKIF_OP_FLUSH_DISKCACHE:
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001623 case BLKIF_OP_WRITE_BARRIER:
1624 if (unlikely(bret->status == BLKIF_RSP_EOPNOTSUPP)) {
Konrad Rzeszutek Wilk6878c322012-05-25 17:34:51 -04001625 printk(KERN_WARNING "blkfront: %s: %s op failed\n",
1626 info->gd->disk_name, op_name(bret->operation));
Christoph Hellwig26095872017-04-20 16:03:08 +02001627 blkif_req(req)->error = -EOPNOTSUPP;
Jeremy Fitzhardingedcb8bae2010-11-02 11:55:58 -04001628 }
1629 if (unlikely(bret->status == BLKIF_RSP_ERROR &&
Bob Liu81f35162015-11-14 11:12:11 +08001630 rinfo->shadow[id].req.u.rw.nr_segments == 0)) {
Konrad Rzeszutek Wilk6878c322012-05-25 17:34:51 -04001631 printk(KERN_WARNING "blkfront: %s: empty %s op failed\n",
1632 info->gd->disk_name, op_name(bret->operation));
Christoph Hellwig2a842ac2017-06-03 09:38:04 +02001633 blkif_req(req)->error = BLK_STS_NOTSUPP;
Jeremy Fitzhardingedcb8bae2010-11-02 11:55:58 -04001634 }
Christoph Hellwig26095872017-04-20 16:03:08 +02001635 if (unlikely(blkif_req(req)->error)) {
Christoph Hellwig2a842ac2017-06-03 09:38:04 +02001636 if (blkif_req(req)->error == BLK_STS_NOTSUPP)
1637 blkif_req(req)->error = BLK_STS_OK;
Mike Christiea4180902016-06-05 14:32:24 -05001638 info->feature_fua = 0;
Tejun Heo4913efe2010-09-03 11:56:16 +02001639 info->feature_flush = 0;
1640 xlvbd_flush(info);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001641 }
1642 /* fall through */
1643 case BLKIF_OP_READ:
1644 case BLKIF_OP_WRITE:
1645 if (unlikely(bret->status != BLKIF_RSP_OKAY))
1646 dev_dbg(&info->xbdev->dev, "Bad return from blkdev data "
1647 "request: %x\n", bret->status);
1648
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001649 break;
1650 default:
1651 BUG();
1652 }
Christoph Hellwig26095872017-04-20 16:03:08 +02001653
Christoph Hellwig08e00292017-04-20 16:03:09 +02001654 blk_mq_complete_request(req);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001655 }
1656
Bob Liu81f35162015-11-14 11:12:11 +08001657 rinfo->ring.rsp_cons = i;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001658
Bob Liu81f35162015-11-14 11:12:11 +08001659 if (i != rinfo->ring.req_prod_pvt) {
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001660 int more_to_do;
Bob Liu81f35162015-11-14 11:12:11 +08001661 RING_FINAL_CHECK_FOR_RESPONSES(&rinfo->ring, more_to_do);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001662 if (more_to_do)
1663 goto again;
1664 } else
Bob Liu81f35162015-11-14 11:12:11 +08001665 rinfo->ring.sring->rsp_event = i + 1;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001666
Bob Liu11659562015-11-14 11:12:13 +08001667 kick_pending_request_queues_locked(rinfo);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001668
Bob Liu11659562015-11-14 11:12:13 +08001669 spin_unlock_irqrestore(&rinfo->ring_lock, flags);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001670
1671 return IRQ_HANDLED;
1672}
1673
1674
1675static int setup_blkring(struct xenbus_device *dev,
Bob Liu81f35162015-11-14 11:12:11 +08001676 struct blkfront_ring_info *rinfo)
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001677{
1678 struct blkif_sring *sring;
Bob Liu86839c52015-06-03 13:40:03 +08001679 int err, i;
Bob Liu81f35162015-11-14 11:12:11 +08001680 struct blkfront_info *info = rinfo->dev_info;
Julien Grallc004a6f2015-07-22 16:44:54 +01001681 unsigned long ring_size = info->nr_ring_pages * XEN_PAGE_SIZE;
Julien Grall9cce2912015-10-13 17:50:11 +01001682 grant_ref_t gref[XENBUS_MAX_RING_GRANTS];
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001683
Bob Liu86839c52015-06-03 13:40:03 +08001684 for (i = 0; i < info->nr_ring_pages; i++)
Bob Liu81f35162015-11-14 11:12:11 +08001685 rinfo->ring_ref[i] = GRANT_INVALID_REF;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001686
Bob Liu86839c52015-06-03 13:40:03 +08001687 sring = (struct blkif_sring *)__get_free_pages(GFP_NOIO | __GFP_HIGH,
1688 get_order(ring_size));
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001689 if (!sring) {
1690 xenbus_dev_fatal(dev, -ENOMEM, "allocating shared ring");
1691 return -ENOMEM;
1692 }
1693 SHARED_RING_INIT(sring);
Bob Liu81f35162015-11-14 11:12:11 +08001694 FRONT_RING_INIT(&rinfo->ring, sring, ring_size);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001695
Bob Liu81f35162015-11-14 11:12:11 +08001696 err = xenbus_grant_ring(dev, rinfo->ring.sring, info->nr_ring_pages, gref);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001697 if (err < 0) {
Bob Liu86839c52015-06-03 13:40:03 +08001698 free_pages((unsigned long)sring, get_order(ring_size));
Bob Liu81f35162015-11-14 11:12:11 +08001699 rinfo->ring.sring = NULL;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001700 goto fail;
1701 }
Bob Liu86839c52015-06-03 13:40:03 +08001702 for (i = 0; i < info->nr_ring_pages; i++)
Bob Liu81f35162015-11-14 11:12:11 +08001703 rinfo->ring_ref[i] = gref[i];
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001704
Bob Liu81f35162015-11-14 11:12:11 +08001705 err = xenbus_alloc_evtchn(dev, &rinfo->evtchn);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001706 if (err)
1707 goto fail;
1708
Bob Liu81f35162015-11-14 11:12:11 +08001709 err = bind_evtchn_to_irqhandler(rinfo->evtchn, blkif_interrupt, 0,
1710 "blkif", rinfo);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001711 if (err <= 0) {
1712 xenbus_dev_fatal(dev, err,
1713 "bind_evtchn_to_irqhandler failed");
1714 goto fail;
1715 }
Bob Liu81f35162015-11-14 11:12:11 +08001716 rinfo->irq = err;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001717
1718 return 0;
1719fail:
1720 blkif_free(info, 0);
1721 return err;
1722}
1723
Bob Liu28d949b2015-11-14 11:12:14 +08001724/*
1725 * Write out per-ring/queue nodes including ring-ref and event-channel, and each
1726 * ring buffer may have multi pages depending on ->nr_ring_pages.
1727 */
1728static int write_per_ring_nodes(struct xenbus_transaction xbt,
1729 struct blkfront_ring_info *rinfo, const char *dir)
1730{
1731 int err;
1732 unsigned int i;
1733 const char *message = NULL;
1734 struct blkfront_info *info = rinfo->dev_info;
1735
1736 if (info->nr_ring_pages == 1) {
1737 err = xenbus_printf(xbt, dir, "ring-ref", "%u", rinfo->ring_ref[0]);
1738 if (err) {
1739 message = "writing ring-ref";
1740 goto abort_transaction;
1741 }
1742 } else {
1743 for (i = 0; i < info->nr_ring_pages; i++) {
1744 char ring_ref_name[RINGREF_NAME_LEN];
1745
1746 snprintf(ring_ref_name, RINGREF_NAME_LEN, "ring-ref%u", i);
1747 err = xenbus_printf(xbt, dir, ring_ref_name,
1748 "%u", rinfo->ring_ref[i]);
1749 if (err) {
1750 message = "writing ring-ref";
1751 goto abort_transaction;
1752 }
1753 }
1754 }
1755
1756 err = xenbus_printf(xbt, dir, "event-channel", "%u", rinfo->evtchn);
1757 if (err) {
1758 message = "writing event-channel";
1759 goto abort_transaction;
1760 }
1761
1762 return 0;
1763
1764abort_transaction:
1765 xenbus_transaction_end(xbt, 1);
1766 if (message)
1767 xenbus_dev_fatal(info->xbdev, err, "%s", message);
1768
1769 return err;
1770}
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001771
1772/* Common code used when first setting up, and when resuming. */
Ian Campbell203fd612009-12-04 15:33:54 +00001773static int talk_to_blkback(struct xenbus_device *dev,
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001774 struct blkfront_info *info)
1775{
1776 const char *message = NULL;
1777 struct xenbus_transaction xbt;
Bob Liu28d949b2015-11-14 11:12:14 +08001778 int err;
Juergen Grossf27dc1a2016-10-31 14:58:40 +01001779 unsigned int i, max_page_order;
1780 unsigned int ring_page_order;
Bob Liu86839c52015-06-03 13:40:03 +08001781
Juergen Grossf27dc1a2016-10-31 14:58:40 +01001782 max_page_order = xenbus_read_unsigned(info->xbdev->otherend,
1783 "max-ring-page-order", 0);
1784 ring_page_order = min(xen_blkif_max_ring_order, max_page_order);
1785 info->nr_ring_pages = 1 << ring_page_order;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001786
Bob Liu3df0e502015-11-14 11:12:12 +08001787 for (i = 0; i < info->nr_rings; i++) {
Bob Liu28d949b2015-11-14 11:12:14 +08001788 struct blkfront_ring_info *rinfo = &info->rinfo[i];
1789
Bob Liu3df0e502015-11-14 11:12:12 +08001790 /* Create shared ring, alloc event channel. */
1791 err = setup_blkring(dev, rinfo);
1792 if (err)
1793 goto destroy_blkring;
1794 }
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001795
1796again:
1797 err = xenbus_transaction_start(&xbt);
1798 if (err) {
1799 xenbus_dev_fatal(dev, err, "starting transaction");
1800 goto destroy_blkring;
1801 }
1802
Bob Liu28d949b2015-11-14 11:12:14 +08001803 if (info->nr_ring_pages > 1) {
1804 err = xenbus_printf(xbt, dev->nodename, "ring-page-order", "%u",
1805 ring_page_order);
Bob Liu3df0e502015-11-14 11:12:12 +08001806 if (err) {
Bob Liu28d949b2015-11-14 11:12:14 +08001807 message = "writing ring-page-order";
Bob Liu3df0e502015-11-14 11:12:12 +08001808 goto abort_transaction;
1809 }
Bob Liu28d949b2015-11-14 11:12:14 +08001810 }
1811
1812 /* We already got the number of queues/rings in _probe */
1813 if (info->nr_rings == 1) {
1814 err = write_per_ring_nodes(xbt, &info->rinfo[0], dev->nodename);
1815 if (err)
1816 goto destroy_blkring;
Bob Liu3df0e502015-11-14 11:12:12 +08001817 } else {
Bob Liu28d949b2015-11-14 11:12:14 +08001818 char *path;
1819 size_t pathsize;
1820
1821 err = xenbus_printf(xbt, dev->nodename, "multi-queue-num-queues", "%u",
1822 info->nr_rings);
1823 if (err) {
1824 message = "writing multi-queue-num-queues";
1825 goto abort_transaction;
1826 }
1827
1828 pathsize = strlen(dev->nodename) + QUEUE_NAME_LEN;
1829 path = kmalloc(pathsize, GFP_KERNEL);
1830 if (!path) {
1831 err = -ENOMEM;
1832 message = "ENOMEM while writing ring references";
1833 goto abort_transaction;
1834 }
1835
1836 for (i = 0; i < info->nr_rings; i++) {
1837 memset(path, 0, pathsize);
1838 snprintf(path, pathsize, "%s/queue-%u", dev->nodename, i);
1839 err = write_per_ring_nodes(xbt, &info->rinfo[i], path);
1840 if (err) {
1841 kfree(path);
1842 goto destroy_blkring;
1843 }
1844 }
1845 kfree(path);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001846 }
Markus Armbruster3e334232008-04-02 10:54:02 -07001847 err = xenbus_printf(xbt, dev->nodename, "protocol", "%s",
1848 XEN_IO_PROTO_ABI_NATIVE);
1849 if (err) {
1850 message = "writing protocol";
1851 goto abort_transaction;
1852 }
Roger Pau Monne0a8704a2012-10-24 18:58:45 +02001853 err = xenbus_printf(xbt, dev->nodename,
Roger Pau Monnecb5bd4d2012-11-02 16:43:04 +01001854 "feature-persistent", "%u", 1);
Roger Pau Monne0a8704a2012-10-24 18:58:45 +02001855 if (err)
1856 dev_warn(&dev->dev,
1857 "writing persistent grants feature to xenbus");
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001858
1859 err = xenbus_transaction_end(xbt, 0);
1860 if (err) {
1861 if (err == -EAGAIN)
1862 goto again;
1863 xenbus_dev_fatal(dev, err, "completing transaction");
1864 goto destroy_blkring;
1865 }
1866
Bob Liu3df0e502015-11-14 11:12:12 +08001867 for (i = 0; i < info->nr_rings; i++) {
1868 unsigned int j;
Bob Liu28d949b2015-11-14 11:12:14 +08001869 struct blkfront_ring_info *rinfo = &info->rinfo[i];
Bob Liu3df0e502015-11-14 11:12:12 +08001870
1871 for (j = 0; j < BLK_RING_SIZE(info); j++)
1872 rinfo->shadow[j].req.u.rw.id = j + 1;
1873 rinfo->shadow[BLK_RING_SIZE(info)-1].req.u.rw.id = 0x0fffffff;
1874 }
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001875 xenbus_switch_state(dev, XenbusStateInitialised);
1876
1877 return 0;
1878
1879 abort_transaction:
1880 xenbus_transaction_end(xbt, 1);
1881 if (message)
1882 xenbus_dev_fatal(dev, err, "%s", message);
1883 destroy_blkring:
1884 blkif_free(info, 0);
Bob Liu3df0e502015-11-14 11:12:12 +08001885
Konrad Rzeszutek Wilkc31ecf62015-12-18 16:28:53 -05001886 kfree(info);
1887 dev_set_drvdata(&dev->dev, NULL);
1888
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001889 return err;
1890}
1891
Bob Liu3db70a82015-11-25 17:52:55 -05001892static int negotiate_mq(struct blkfront_info *info)
1893{
Juergen Grossf27dc1a2016-10-31 14:58:40 +01001894 unsigned int backend_max_queues;
Bob Liu3db70a82015-11-25 17:52:55 -05001895 unsigned int i;
1896
1897 BUG_ON(info->nr_rings);
1898
1899 /* Check if backend supports multiple queues. */
Juergen Grossf27dc1a2016-10-31 14:58:40 +01001900 backend_max_queues = xenbus_read_unsigned(info->xbdev->otherend,
1901 "multi-queue-max-queues", 1);
Bob Liu3db70a82015-11-25 17:52:55 -05001902 info->nr_rings = min(backend_max_queues, xen_blkif_max_queues);
1903 /* We need at least one ring. */
1904 if (!info->nr_rings)
1905 info->nr_rings = 1;
1906
1907 info->rinfo = kzalloc(sizeof(struct blkfront_ring_info) * info->nr_rings, GFP_KERNEL);
1908 if (!info->rinfo) {
1909 xenbus_dev_fatal(info->xbdev, -ENOMEM, "allocating ring_info structure");
1910 return -ENOMEM;
1911 }
1912
1913 for (i = 0; i < info->nr_rings; i++) {
1914 struct blkfront_ring_info *rinfo;
1915
1916 rinfo = &info->rinfo[i];
1917 INIT_LIST_HEAD(&rinfo->indirect_pages);
1918 INIT_LIST_HEAD(&rinfo->grants);
1919 rinfo->dev_info = info;
1920 INIT_WORK(&rinfo->work, blkif_restart_queue);
1921 spin_lock_init(&rinfo->ring_lock);
1922 }
1923 return 0;
1924}
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001925/**
1926 * Entry point to this code when a new device is created. Allocate the basic
1927 * structures and the ring buffer for communication with the backend, and
1928 * inform the backend of the appropriate details for those. Switch to
1929 * Initialised state.
1930 */
1931static int blkfront_probe(struct xenbus_device *dev,
1932 const struct xenbus_device_id *id)
1933{
Bob Liu86839c52015-06-03 13:40:03 +08001934 int err, vdevice;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001935 struct blkfront_info *info;
1936
1937 /* FIXME: Use dynamic device id if this is not set. */
1938 err = xenbus_scanf(XBT_NIL, dev->nodename,
1939 "virtual-device", "%i", &vdevice);
1940 if (err != 1) {
Chris Lalancette9246b5f2008-09-17 14:30:32 -07001941 /* go looking in the extended area instead */
1942 err = xenbus_scanf(XBT_NIL, dev->nodename, "virtual-device-ext",
1943 "%i", &vdevice);
1944 if (err != 1) {
1945 xenbus_dev_fatal(dev, err, "reading virtual-device");
1946 return err;
1947 }
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001948 }
1949
Stefano Stabellinib98a4092010-07-29 14:53:16 +01001950 if (xen_hvm_domain()) {
1951 char *type;
1952 int len;
1953 /* no unplug has been done: do not hook devices != xen vbds */
Konrad Rzeszutek Wilk51c71a32013-11-26 15:05:40 -05001954 if (xen_has_pv_and_legacy_disk_devices()) {
Stefano Stabellinib98a4092010-07-29 14:53:16 +01001955 int major;
Stefano Stabellinic1c54132010-05-14 12:44:30 +01001956
Stefano Stabellinib98a4092010-07-29 14:53:16 +01001957 if (!VDEV_IS_EXTENDED(vdevice))
1958 major = BLKIF_MAJOR(vdevice);
1959 else
1960 major = XENVBD_MAJOR;
Stefano Stabellinic1c54132010-05-14 12:44:30 +01001961
Stefano Stabellinib98a4092010-07-29 14:53:16 +01001962 if (major != XENVBD_MAJOR) {
1963 printk(KERN_INFO
1964 "%s: HVM does not support vbd %d as xen block device\n",
Rasmus Villemoes02f1f212015-02-12 15:01:31 -08001965 __func__, vdevice);
Stefano Stabellinib98a4092010-07-29 14:53:16 +01001966 return -ENODEV;
1967 }
1968 }
1969 /* do not create a PV cdrom device if we are an HVM guest */
1970 type = xenbus_read(XBT_NIL, dev->nodename, "device-type", &len);
1971 if (IS_ERR(type))
1972 return -ENODEV;
1973 if (strncmp(type, "cdrom", 5) == 0) {
1974 kfree(type);
Stefano Stabellinic1c54132010-05-14 12:44:30 +01001975 return -ENODEV;
1976 }
Stefano Stabellinib98a4092010-07-29 14:53:16 +01001977 kfree(type);
Stefano Stabellinic1c54132010-05-14 12:44:30 +01001978 }
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001979 info = kzalloc(sizeof(*info), GFP_KERNEL);
1980 if (!info) {
1981 xenbus_dev_fatal(dev, -ENOMEM, "allocating info structure");
1982 return -ENOMEM;
1983 }
1984
Bob Liu28d949b2015-11-14 11:12:14 +08001985 info->xbdev = dev;
Bob Liu3db70a82015-11-25 17:52:55 -05001986 err = negotiate_mq(info);
1987 if (err) {
Bob Liu3df0e502015-11-14 11:12:12 +08001988 kfree(info);
Bob Liu3db70a82015-11-25 17:52:55 -05001989 return err;
Bob Liu3df0e502015-11-14 11:12:12 +08001990 }
Bob Liu81f35162015-11-14 11:12:11 +08001991
Daniel Stoddenb70f5fa2010-04-30 22:01:19 +00001992 mutex_init(&info->mutex);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001993 info->vdevice = vdevice;
1994 info->connected = BLKIF_STATE_DISCONNECTED;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001995
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001996 /* Front end dir is a number, which is used as the id. */
1997 info->handle = simple_strtoul(strrchr(dev->nodename, '/')+1, NULL, 0);
Greg Kroah-Hartmana1b4b122009-04-30 14:43:31 -07001998 dev_set_drvdata(&dev->dev, info);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001999
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002000 return 0;
2001}
2002
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02002003static void split_bio_end(struct bio *bio)
Roger Pau Monne402b27f2013-04-18 16:06:54 +02002004{
2005 struct split_bio *split_bio = bio->bi_private;
2006
Roger Pau Monne402b27f2013-04-18 16:06:54 +02002007 if (atomic_dec_and_test(&split_bio->pending)) {
2008 split_bio->bio->bi_phys_segments = 0;
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02002009 split_bio->bio->bi_error = bio->bi_error;
2010 bio_endio(split_bio->bio);
Roger Pau Monne402b27f2013-04-18 16:06:54 +02002011 kfree(split_bio);
2012 }
2013 bio_put(bio);
2014}
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002015
2016static int blkif_recover(struct blkfront_info *info)
2017{
Bob Liu3df0e502015-11-14 11:12:12 +08002018 unsigned int i, r_index;
Roger Pau Monne402b27f2013-04-18 16:06:54 +02002019 struct request *req, *n;
Roger Pau Monne402b27f2013-04-18 16:06:54 +02002020 int rc;
2021 struct bio *bio, *cloned_bio;
Roger Pau Monne402b27f2013-04-18 16:06:54 +02002022 unsigned int segs, offset;
2023 int pending, size;
2024 struct split_bio *split_bio;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002025
Bob Liu3df0e502015-11-14 11:12:12 +08002026 blkfront_gather_backend_features(info);
Bob Liu172335a2016-07-01 17:43:39 -04002027 /* Reset limits changed by blk_mq_update_nr_hw_queues(). */
2028 blkif_set_queue_limits(info);
Roger Pau Monne402b27f2013-04-18 16:06:54 +02002029 segs = info->max_indirect_segments ? : BLKIF_MAX_SEGMENTS_PER_REQUEST;
Bob Liu6c647b02016-07-01 15:45:57 -04002030 blk_queue_max_segments(info->rq, segs / GRANTS_PER_PSEG);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002031
Bob Liu3df0e502015-11-14 11:12:12 +08002032 for (r_index = 0; r_index < info->nr_rings; r_index++) {
Bob Liu7b427a52016-06-27 16:33:24 +08002033 struct blkfront_ring_info *rinfo = &info->rinfo[r_index];
Bob Liu3df0e502015-11-14 11:12:12 +08002034
2035 rc = blkfront_setup_indirect(rinfo);
Bob Liu7b427a52016-06-27 16:33:24 +08002036 if (rc)
Bob Liu3df0e502015-11-14 11:12:12 +08002037 return rc;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002038 }
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002039 xenbus_switch_state(info->xbdev, XenbusStateConnected);
2040
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002041 /* Now safe for us to use the shared ring */
2042 info->connected = BLKIF_STATE_CONNECTED;
2043
Bob Liu3df0e502015-11-14 11:12:12 +08002044 for (r_index = 0; r_index < info->nr_rings; r_index++) {
2045 struct blkfront_ring_info *rinfo;
2046
2047 rinfo = &info->rinfo[r_index];
2048 /* Kick any other new requests queued since we resumed */
2049 kick_pending_request_queues(rinfo);
2050 }
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002051
Bob Liu7b427a52016-06-27 16:33:24 +08002052 list_for_each_entry_safe(req, n, &info->requests, queuelist) {
Roger Pau Monne402b27f2013-04-18 16:06:54 +02002053 /* Requeue pending requests (flush or discard) */
2054 list_del_init(&req->queuelist);
2055 BUG_ON(req->nr_phys_segments > segs);
Bart Van Assche2b053ac2016-10-28 17:21:41 -07002056 blk_mq_requeue_request(req, false);
Roger Pau Monne402b27f2013-04-18 16:06:54 +02002057 }
Bart Van Assche52d7f1b2016-10-28 17:20:32 -07002058 blk_mq_start_stopped_hw_queues(info->rq, true);
Bob Liu907c3eb2015-07-13 17:55:24 +08002059 blk_mq_kick_requeue_list(info->rq);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002060
Bob Liu7b427a52016-06-27 16:33:24 +08002061 while ((bio = bio_list_pop(&info->bio_list)) != NULL) {
Roger Pau Monne402b27f2013-04-18 16:06:54 +02002062 /* Traverse the list of pending bios and re-queue them */
2063 if (bio_segments(bio) > segs) {
2064 /*
2065 * This bio has more segments than what we can
2066 * handle, we have to split it.
2067 */
2068 pending = (bio_segments(bio) + segs - 1) / segs;
2069 split_bio = kzalloc(sizeof(*split_bio), GFP_NOIO);
2070 BUG_ON(split_bio == NULL);
2071 atomic_set(&split_bio->pending, pending);
2072 split_bio->bio = bio;
2073 for (i = 0; i < pending; i++) {
Julien Grallc004a6f2015-07-22 16:44:54 +01002074 offset = (i * segs * XEN_PAGE_SIZE) >> 9;
2075 size = min((unsigned int)(segs * XEN_PAGE_SIZE) >> 9,
Kent Overstreet4f024f32013-10-11 15:44:27 -07002076 (unsigned int)bio_sectors(bio) - offset);
Roger Pau Monne402b27f2013-04-18 16:06:54 +02002077 cloned_bio = bio_clone(bio, GFP_NOIO);
2078 BUG_ON(cloned_bio == NULL);
Kent Overstreet6678d832013-08-07 11:14:32 -07002079 bio_trim(cloned_bio, offset, size);
Roger Pau Monne402b27f2013-04-18 16:06:54 +02002080 cloned_bio->bi_private = split_bio;
2081 cloned_bio->bi_end_io = split_bio_end;
Mike Christie4e49ea42016-06-05 14:31:41 -05002082 submit_bio(cloned_bio);
Roger Pau Monne402b27f2013-04-18 16:06:54 +02002083 }
2084 /*
2085 * Now we have to wait for all those smaller bios to
2086 * end, so we can also end the "parent" bio.
2087 */
2088 continue;
2089 }
2090 /* We don't need to split this bio */
Mike Christie4e49ea42016-06-05 14:31:41 -05002091 submit_bio(bio);
Roger Pau Monne402b27f2013-04-18 16:06:54 +02002092 }
2093
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002094 return 0;
2095}
2096
2097/**
2098 * We are reconnecting to the backend, due to a suspend/resume, or a backend
2099 * driver restart. We tear down our blkif structure and recreate it, but
2100 * leave the device-layer structures intact so that this is transparent to the
2101 * rest of the kernel.
2102 */
2103static int blkfront_resume(struct xenbus_device *dev)
2104{
Greg Kroah-Hartmana1b4b122009-04-30 14:43:31 -07002105 struct blkfront_info *info = dev_get_drvdata(&dev->dev);
Bob Liu3db70a82015-11-25 17:52:55 -05002106 int err = 0;
Bob Liu7b427a52016-06-27 16:33:24 +08002107 unsigned int i, j;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002108
2109 dev_dbg(&dev->dev, "blkfront_resume: %s\n", dev->nodename);
2110
Bob Liu7b427a52016-06-27 16:33:24 +08002111 bio_list_init(&info->bio_list);
2112 INIT_LIST_HEAD(&info->requests);
2113 for (i = 0; i < info->nr_rings; i++) {
2114 struct blkfront_ring_info *rinfo = &info->rinfo[i];
2115 struct bio_list merge_bio;
2116 struct blk_shadow *shadow = rinfo->shadow;
2117
2118 for (j = 0; j < BLK_RING_SIZE(info); j++) {
2119 /* Not in use? */
2120 if (!shadow[j].request)
2121 continue;
2122
2123 /*
2124 * Get the bios in the request so we can re-queue them.
2125 */
Linus Torvaldsd05d7f42016-07-26 15:03:07 -07002126 if (req_op(shadow[i].request) == REQ_OP_FLUSH ||
2127 req_op(shadow[i].request) == REQ_OP_DISCARD ||
Linus Torvalds3fc9d692016-07-26 15:37:51 -07002128 req_op(shadow[i].request) == REQ_OP_SECURE_ERASE ||
2129 shadow[j].request->cmd_flags & REQ_FUA) {
Bob Liu7b427a52016-06-27 16:33:24 +08002130 /*
2131 * Flush operations don't contain bios, so
2132 * we need to requeue the whole request
Linus Torvalds3fc9d692016-07-26 15:37:51 -07002133 *
2134 * XXX: but this doesn't make any sense for a
2135 * write with the FUA flag set..
Bob Liu7b427a52016-06-27 16:33:24 +08002136 */
2137 list_add(&shadow[j].request->queuelist, &info->requests);
2138 continue;
2139 }
2140 merge_bio.head = shadow[j].request->bio;
2141 merge_bio.tail = shadow[j].request->biotail;
2142 bio_list_merge(&info->bio_list, &merge_bio);
2143 shadow[j].request->bio = NULL;
Christoph Hellwig2a842ac2017-06-03 09:38:04 +02002144 blk_mq_end_request(shadow[j].request, BLK_STS_OK);
Bob Liu7b427a52016-06-27 16:33:24 +08002145 }
2146 }
2147
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002148 blkif_free(info, info->connected == BLKIF_STATE_CONNECTED);
2149
Bob Liu3db70a82015-11-25 17:52:55 -05002150 err = negotiate_mq(info);
2151 if (err)
2152 return err;
2153
Ian Campbell203fd612009-12-04 15:33:54 +00002154 err = talk_to_blkback(dev, info);
Bob Liu2a6f71a2016-05-31 16:59:17 +08002155 if (!err)
2156 blk_mq_update_nr_hw_queues(&info->tag_set, info->nr_rings);
Roger Pau Monne402b27f2013-04-18 16:06:54 +02002157
2158 /*
2159 * We have to wait for the backend to switch to
2160 * connected state, since we want to read which
2161 * features it supports.
2162 */
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002163
2164 return err;
2165}
2166
Konrad Rzeszutek Wilk6f03a7f2015-11-16 15:14:41 -05002167static void blkfront_closing(struct blkfront_info *info)
Daniel Stoddenb70f5fa2010-04-30 22:01:19 +00002168{
2169 struct xenbus_device *xbdev = info->xbdev;
2170 struct block_device *bdev = NULL;
2171
2172 mutex_lock(&info->mutex);
2173
2174 if (xbdev->state == XenbusStateClosing) {
2175 mutex_unlock(&info->mutex);
2176 return;
2177 }
2178
2179 if (info->gd)
2180 bdev = bdget_disk(info->gd, 0);
2181
2182 mutex_unlock(&info->mutex);
2183
2184 if (!bdev) {
2185 xenbus_frontend_closed(xbdev);
2186 return;
2187 }
2188
2189 mutex_lock(&bdev->bd_mutex);
2190
Daniel Stodden7b32d102010-04-30 22:01:23 +00002191 if (bdev->bd_openers) {
Daniel Stoddenb70f5fa2010-04-30 22:01:19 +00002192 xenbus_dev_error(xbdev, -EBUSY,
2193 "Device in use; refusing to close");
2194 xenbus_switch_state(xbdev, XenbusStateClosing);
2195 } else {
2196 xlvbd_release_gendisk(info);
2197 xenbus_frontend_closed(xbdev);
2198 }
2199
2200 mutex_unlock(&bdev->bd_mutex);
2201 bdput(bdev);
2202}
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002203
Li Dongyanged30bf32011-09-01 18:39:09 +08002204static void blkfront_setup_discard(struct blkfront_info *info)
2205{
2206 int err;
Li Dongyanged30bf32011-09-01 18:39:09 +08002207 unsigned int discard_granularity;
2208 unsigned int discard_alignment;
2209
Olaf Hering1c8cad62014-05-21 16:32:40 +02002210 info->feature_discard = 1;
2211 err = xenbus_gather(XBT_NIL, info->xbdev->otherend,
2212 "discard-granularity", "%u", &discard_granularity,
2213 "discard-alignment", "%u", &discard_alignment,
2214 NULL);
2215 if (!err) {
2216 info->discard_granularity = discard_granularity;
2217 info->discard_alignment = discard_alignment;
2218 }
Juergen Grossf27dc1a2016-10-31 14:58:40 +01002219 info->feature_secdiscard =
2220 !!xenbus_read_unsigned(info->xbdev->otherend, "discard-secure",
2221 0);
Li Dongyanged30bf32011-09-01 18:39:09 +08002222}
2223
Bob Liu81f35162015-11-14 11:12:11 +08002224static int blkfront_setup_indirect(struct blkfront_ring_info *rinfo)
Roger Pau Monne402b27f2013-04-18 16:06:54 +02002225{
Julien Grallc004a6f2015-07-22 16:44:54 +01002226 unsigned int psegs, grants;
Roger Pau Monne402b27f2013-04-18 16:06:54 +02002227 int err, i;
Bob Liu81f35162015-11-14 11:12:11 +08002228 struct blkfront_info *info = rinfo->dev_info;
Roger Pau Monne402b27f2013-04-18 16:06:54 +02002229
Julien Grall6cc568332015-08-13 13:13:35 +01002230 if (info->max_indirect_segments == 0) {
2231 if (!HAS_EXTRA_REQ)
2232 grants = BLKIF_MAX_SEGMENTS_PER_REQUEST;
2233 else {
2234 /*
2235 * When an extra req is required, the maximum
2236 * grants supported is related to the size of the
2237 * Linux block segment.
2238 */
2239 grants = GRANTS_PER_PSEG;
2240 }
2241 }
Bob Liud50babb2015-07-22 14:40:08 +08002242 else
Julien Grallc004a6f2015-07-22 16:44:54 +01002243 grants = info->max_indirect_segments;
Jan Beulich3b4f1882017-01-23 08:11:37 -07002244 psegs = DIV_ROUND_UP(grants, GRANTS_PER_PSEG);
Roger Pau Monne402b27f2013-04-18 16:06:54 +02002245
Bob Liu81f35162015-11-14 11:12:11 +08002246 err = fill_grant_buffer(rinfo,
Julien Grallc004a6f2015-07-22 16:44:54 +01002247 (grants + INDIRECT_GREFS(grants)) * BLK_RING_SIZE(info));
Roger Pau Monne402b27f2013-04-18 16:06:54 +02002248 if (err)
2249 goto out_of_memory;
2250
Roger Pau Monnebfe11d62013-10-29 18:31:14 +01002251 if (!info->feature_persistent && info->max_indirect_segments) {
2252 /*
2253 * We are using indirect descriptors but not persistent
2254 * grants, we need to allocate a set of pages that can be
2255 * used for mapping indirect grefs
2256 */
Julien Grallc004a6f2015-07-22 16:44:54 +01002257 int num = INDIRECT_GREFS(grants) * BLK_RING_SIZE(info);
Roger Pau Monnebfe11d62013-10-29 18:31:14 +01002258
Bob Liu81f35162015-11-14 11:12:11 +08002259 BUG_ON(!list_empty(&rinfo->indirect_pages));
Roger Pau Monnebfe11d62013-10-29 18:31:14 +01002260 for (i = 0; i < num; i++) {
2261 struct page *indirect_page = alloc_page(GFP_NOIO);
2262 if (!indirect_page)
2263 goto out_of_memory;
Bob Liu81f35162015-11-14 11:12:11 +08002264 list_add(&indirect_page->lru, &rinfo->indirect_pages);
Roger Pau Monnebfe11d62013-10-29 18:31:14 +01002265 }
2266 }
2267
Bob Liu86839c52015-06-03 13:40:03 +08002268 for (i = 0; i < BLK_RING_SIZE(info); i++) {
Bob Liu81f35162015-11-14 11:12:11 +08002269 rinfo->shadow[i].grants_used = kzalloc(
2270 sizeof(rinfo->shadow[i].grants_used[0]) * grants,
Roger Pau Monne402b27f2013-04-18 16:06:54 +02002271 GFP_NOIO);
Bob Liu81f35162015-11-14 11:12:11 +08002272 rinfo->shadow[i].sg = kzalloc(sizeof(rinfo->shadow[i].sg[0]) * psegs, GFP_NOIO);
Roger Pau Monne402b27f2013-04-18 16:06:54 +02002273 if (info->max_indirect_segments)
Bob Liu81f35162015-11-14 11:12:11 +08002274 rinfo->shadow[i].indirect_grants = kzalloc(
2275 sizeof(rinfo->shadow[i].indirect_grants[0]) *
Julien Grallc004a6f2015-07-22 16:44:54 +01002276 INDIRECT_GREFS(grants),
Roger Pau Monne402b27f2013-04-18 16:06:54 +02002277 GFP_NOIO);
Bob Liu81f35162015-11-14 11:12:11 +08002278 if ((rinfo->shadow[i].grants_used == NULL) ||
2279 (rinfo->shadow[i].sg == NULL) ||
Roger Pau Monne402b27f2013-04-18 16:06:54 +02002280 (info->max_indirect_segments &&
Bob Liu81f35162015-11-14 11:12:11 +08002281 (rinfo->shadow[i].indirect_grants == NULL)))
Roger Pau Monne402b27f2013-04-18 16:06:54 +02002282 goto out_of_memory;
Bob Liu81f35162015-11-14 11:12:11 +08002283 sg_init_table(rinfo->shadow[i].sg, psegs);
Roger Pau Monne402b27f2013-04-18 16:06:54 +02002284 }
2285
2286
2287 return 0;
2288
2289out_of_memory:
Bob Liu86839c52015-06-03 13:40:03 +08002290 for (i = 0; i < BLK_RING_SIZE(info); i++) {
Bob Liu81f35162015-11-14 11:12:11 +08002291 kfree(rinfo->shadow[i].grants_used);
2292 rinfo->shadow[i].grants_used = NULL;
2293 kfree(rinfo->shadow[i].sg);
2294 rinfo->shadow[i].sg = NULL;
2295 kfree(rinfo->shadow[i].indirect_grants);
2296 rinfo->shadow[i].indirect_grants = NULL;
Roger Pau Monne402b27f2013-04-18 16:06:54 +02002297 }
Bob Liu81f35162015-11-14 11:12:11 +08002298 if (!list_empty(&rinfo->indirect_pages)) {
Roger Pau Monnebfe11d62013-10-29 18:31:14 +01002299 struct page *indirect_page, *n;
Bob Liu81f35162015-11-14 11:12:11 +08002300 list_for_each_entry_safe(indirect_page, n, &rinfo->indirect_pages, lru) {
Roger Pau Monnebfe11d62013-10-29 18:31:14 +01002301 list_del(&indirect_page->lru);
2302 __free_page(indirect_page);
2303 }
2304 }
Roger Pau Monne402b27f2013-04-18 16:06:54 +02002305 return -ENOMEM;
2306}
2307
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002308/*
Bob Liud50babb2015-07-22 14:40:08 +08002309 * Gather all backend feature-*
2310 */
Bob Liu3df0e502015-11-14 11:12:12 +08002311static void blkfront_gather_backend_features(struct blkfront_info *info)
Bob Liud50babb2015-07-22 14:40:08 +08002312{
Bob Liud50babb2015-07-22 14:40:08 +08002313 unsigned int indirect_segments;
2314
2315 info->feature_flush = 0;
Mike Christiea4180902016-06-05 14:32:24 -05002316 info->feature_fua = 0;
Bob Liud50babb2015-07-22 14:40:08 +08002317
Bob Liud50babb2015-07-22 14:40:08 +08002318 /*
2319 * If there's no "feature-barrier" defined, then it means
2320 * we're dealing with a very old backend which writes
2321 * synchronously; nothing to do.
2322 *
2323 * If there are barriers, then we use flush.
2324 */
Juergen Grossf27dc1a2016-10-31 14:58:40 +01002325 if (xenbus_read_unsigned(info->xbdev->otherend, "feature-barrier", 0)) {
Mike Christiea4180902016-06-05 14:32:24 -05002326 info->feature_flush = 1;
2327 info->feature_fua = 1;
2328 }
2329
Bob Liud50babb2015-07-22 14:40:08 +08002330 /*
2331 * And if there is "feature-flush-cache" use that above
2332 * barriers.
2333 */
Juergen Grossf27dc1a2016-10-31 14:58:40 +01002334 if (xenbus_read_unsigned(info->xbdev->otherend, "feature-flush-cache",
2335 0)) {
Mike Christiea4180902016-06-05 14:32:24 -05002336 info->feature_flush = 1;
2337 info->feature_fua = 0;
2338 }
Bob Liud50babb2015-07-22 14:40:08 +08002339
Juergen Grossf27dc1a2016-10-31 14:58:40 +01002340 if (xenbus_read_unsigned(info->xbdev->otherend, "feature-discard", 0))
Bob Liud50babb2015-07-22 14:40:08 +08002341 blkfront_setup_discard(info);
2342
Juergen Grossf27dc1a2016-10-31 14:58:40 +01002343 info->feature_persistent =
Jan Beulichb32728f2017-01-23 08:12:19 -07002344 !!xenbus_read_unsigned(info->xbdev->otherend,
2345 "feature-persistent", 0);
Bob Liud50babb2015-07-22 14:40:08 +08002346
Juergen Grossf27dc1a2016-10-31 14:58:40 +01002347 indirect_segments = xenbus_read_unsigned(info->xbdev->otherend,
2348 "feature-max-indirect-segments", 0);
Jan Beulich3b4f1882017-01-23 08:11:37 -07002349 if (indirect_segments > xen_blkif_max_segments)
2350 indirect_segments = xen_blkif_max_segments;
2351 if (indirect_segments <= BLKIF_MAX_SEGMENTS_PER_REQUEST)
2352 indirect_segments = 0;
2353 info->max_indirect_segments = indirect_segments;
Bob Liud50babb2015-07-22 14:40:08 +08002354}
2355
2356/*
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002357 * Invoked when the backend is finally 'ready' (and has told produced
2358 * the details about the physical device - #sectors, size, etc).
2359 */
2360static void blkfront_connect(struct blkfront_info *info)
2361{
2362 unsigned long long sectors;
2363 unsigned long sector_size;
Stefan Bader7c4d7d72013-05-13 16:28:15 +02002364 unsigned int physical_sector_size;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002365 unsigned int binfo;
Marc Olson89515d02017-04-11 12:24:09 -07002366 char *envp[] = { "RESIZE=1", NULL };
Bob Liu3df0e502015-11-14 11:12:12 +08002367 int err, i;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002368
K. Y. Srinivasan1fa73be2010-03-11 13:42:26 -08002369 switch (info->connected) {
2370 case BLKIF_STATE_CONNECTED:
2371 /*
2372 * Potentially, the back-end may be signalling
2373 * a capacity change; update the capacity.
2374 */
2375 err = xenbus_scanf(XBT_NIL, info->xbdev->otherend,
2376 "sectors", "%Lu", &sectors);
2377 if (XENBUS_EXIST_ERR(err))
2378 return;
2379 printk(KERN_INFO "Setting capacity to %Lu\n",
2380 sectors);
2381 set_capacity(info->gd, sectors);
K. Y. Srinivasan2def1412010-03-18 15:00:54 -07002382 revalidate_disk(info->gd);
Marc Olson89515d02017-04-11 12:24:09 -07002383 kobject_uevent_env(&disk_to_dev(info->gd)->kobj,
2384 KOBJ_CHANGE, envp);
K. Y. Srinivasan1fa73be2010-03-11 13:42:26 -08002385
Roger Pau Monne402b27f2013-04-18 16:06:54 +02002386 return;
K. Y. Srinivasan1fa73be2010-03-11 13:42:26 -08002387 case BLKIF_STATE_SUSPENDED:
Roger Pau Monne402b27f2013-04-18 16:06:54 +02002388 /*
2389 * If we are recovering from suspension, we need to wait
2390 * for the backend to announce it's features before
2391 * reconnecting, at least we need to know if the backend
2392 * supports indirect descriptors, and how many.
2393 */
2394 blkif_recover(info);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002395 return;
2396
Jeremy Fitzhardingeb4dddb42010-03-11 15:10:40 -08002397 default:
2398 break;
K. Y. Srinivasan1fa73be2010-03-11 13:42:26 -08002399 }
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002400
2401 dev_dbg(&info->xbdev->dev, "%s:%s.\n",
2402 __func__, info->xbdev->otherend);
2403
2404 err = xenbus_gather(XBT_NIL, info->xbdev->otherend,
2405 "sectors", "%llu", &sectors,
2406 "info", "%u", &binfo,
2407 "sector-size", "%lu", &sector_size,
2408 NULL);
2409 if (err) {
2410 xenbus_dev_fatal(info->xbdev, err,
2411 "reading backend fields at %s",
2412 info->xbdev->otherend);
2413 return;
2414 }
2415
Stefan Bader7c4d7d72013-05-13 16:28:15 +02002416 /*
2417 * physcial-sector-size is a newer field, so old backends may not
2418 * provide this. Assume physical sector size to be the same as
2419 * sector_size in that case.
2420 */
Juergen Grossf27dc1a2016-10-31 14:58:40 +01002421 physical_sector_size = xenbus_read_unsigned(info->xbdev->otherend,
2422 "physical-sector-size",
2423 sector_size);
Bob Liu3df0e502015-11-14 11:12:12 +08002424 blkfront_gather_backend_features(info);
2425 for (i = 0; i < info->nr_rings; i++) {
2426 err = blkfront_setup_indirect(&info->rinfo[i]);
2427 if (err) {
2428 xenbus_dev_fatal(info->xbdev, err, "setup_indirect at %s",
2429 info->xbdev->otherend);
2430 blkif_free(info, 0);
2431 break;
2432 }
Roger Pau Monne402b27f2013-04-18 16:06:54 +02002433 }
2434
Stefan Bader7c4d7d72013-05-13 16:28:15 +02002435 err = xlvbd_alloc_gendisk(sectors, info, binfo, sector_size,
2436 physical_sector_size);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002437 if (err) {
2438 xenbus_dev_fatal(info->xbdev, err, "xlvbd_add at %s",
2439 info->xbdev->otherend);
Bob Liu4e876c22016-07-27 17:42:04 +08002440 goto fail;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002441 }
2442
2443 xenbus_switch_state(info->xbdev, XenbusStateConnected);
2444
2445 /* Kick pending requests. */
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002446 info->connected = BLKIF_STATE_CONNECTED;
Bob Liu3df0e502015-11-14 11:12:12 +08002447 for (i = 0; i < info->nr_rings; i++)
2448 kick_pending_request_queues(&info->rinfo[i]);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002449
Dan Williams0d52c7562016-06-15 19:44:20 -07002450 device_add_disk(&info->xbdev->dev, info->gd);
Christian Limpach1d78d702008-04-02 10:54:04 -07002451
2452 info->is_ready = 1;
Bob Liu4e876c22016-07-27 17:42:04 +08002453 return;
2454
2455fail:
2456 blkif_free(info, 0);
2457 return;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002458}
2459
2460/**
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002461 * Callback received when the backend's state changes.
2462 */
Ian Campbell203fd612009-12-04 15:33:54 +00002463static void blkback_changed(struct xenbus_device *dev,
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002464 enum xenbus_state backend_state)
2465{
Greg Kroah-Hartmana1b4b122009-04-30 14:43:31 -07002466 struct blkfront_info *info = dev_get_drvdata(&dev->dev);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002467
Ian Campbell203fd612009-12-04 15:33:54 +00002468 dev_dbg(&dev->dev, "blkfront:blkback_changed to state %d.\n", backend_state);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002469
2470 switch (backend_state) {
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002471 case XenbusStateInitWait:
Bob Liua9b54bb2015-06-19 00:23:00 -04002472 if (dev->state != XenbusStateInitialising)
2473 break;
Konrad Rzeszutek Wilkc31ecf62015-12-18 16:28:53 -05002474 if (talk_to_blkback(dev, info))
Bob Liu8ab01442015-06-03 13:40:02 +08002475 break;
Bob Liu8ab01442015-06-03 13:40:02 +08002476 case XenbusStateInitialising:
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002477 case XenbusStateInitialised:
Noboru Iwamatsub78c9512009-10-13 17:22:29 -04002478 case XenbusStateReconfiguring:
2479 case XenbusStateReconfigured:
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002480 case XenbusStateUnknown:
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002481 break;
2482
2483 case XenbusStateConnected:
Bob Liuefd15352016-06-07 10:43:15 -04002484 /*
2485 * talk_to_blkback sets state to XenbusStateInitialised
2486 * and blkfront_connect sets it to XenbusStateConnected
2487 * (if connection went OK).
2488 *
2489 * If the backend (or toolstack) decides to poke at backend
2490 * state (and re-trigger the watch by setting the state repeatedly
2491 * to XenbusStateConnected (4)) we need to deal with this.
2492 * This is allowed as this is used to communicate to the guest
2493 * that the size of disk has changed!
2494 */
2495 if ((dev->state != XenbusStateInitialised) &&
2496 (dev->state != XenbusStateConnected)) {
Konrad Rzeszutek Wilkc31ecf62015-12-18 16:28:53 -05002497 if (talk_to_blkback(dev, info))
2498 break;
2499 }
Bob Liuefd15352016-06-07 10:43:15 -04002500
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002501 blkfront_connect(info);
2502 break;
2503
David Vrabel36613712014-02-04 18:53:56 +00002504 case XenbusStateClosed:
2505 if (dev->state == XenbusStateClosed)
2506 break;
2507 /* Missed the backend's Closing state -- fallthrough */
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002508 case XenbusStateClosing:
Cathy Averya54c8f02015-10-02 09:35:01 -04002509 if (info)
2510 blkfront_closing(info);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002511 break;
2512 }
2513}
2514
Daniel Stoddenfa1bd352010-04-30 22:01:22 +00002515static int blkfront_remove(struct xenbus_device *xbdev)
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002516{
Daniel Stoddenfa1bd352010-04-30 22:01:22 +00002517 struct blkfront_info *info = dev_get_drvdata(&xbdev->dev);
2518 struct block_device *bdev = NULL;
2519 struct gendisk *disk;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002520
Daniel Stoddenfa1bd352010-04-30 22:01:22 +00002521 dev_dbg(&xbdev->dev, "%s removed", xbdev->nodename);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002522
2523 blkif_free(info, 0);
2524
Daniel Stoddenfa1bd352010-04-30 22:01:22 +00002525 mutex_lock(&info->mutex);
2526
2527 disk = info->gd;
2528 if (disk)
2529 bdev = bdget_disk(disk, 0);
2530
2531 info->xbdev = NULL;
2532 mutex_unlock(&info->mutex);
2533
2534 if (!bdev) {
Jan Beulich0e345822010-08-07 18:28:55 +02002535 kfree(info);
Daniel Stoddenfa1bd352010-04-30 22:01:22 +00002536 return 0;
2537 }
2538
2539 /*
2540 * The xbdev was removed before we reached the Closed
2541 * state. See if it's safe to remove the disk. If the bdev
2542 * isn't closed yet, we let release take care of it.
2543 */
2544
2545 mutex_lock(&bdev->bd_mutex);
2546 info = disk->private_data;
2547
Daniel Stoddend54142c2010-08-07 18:51:21 +02002548 dev_warn(disk_to_dev(disk),
2549 "%s was hot-unplugged, %d stale handles\n",
2550 xbdev->nodename, bdev->bd_openers);
2551
Daniel Stodden7b32d102010-04-30 22:01:23 +00002552 if (info && !bdev->bd_openers) {
Daniel Stoddenfa1bd352010-04-30 22:01:22 +00002553 xlvbd_release_gendisk(info);
2554 disk->private_data = NULL;
2555 kfree(info);
2556 }
2557
2558 mutex_unlock(&bdev->bd_mutex);
2559 bdput(bdev);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002560
2561 return 0;
2562}
2563
Christian Limpach1d78d702008-04-02 10:54:04 -07002564static int blkfront_is_ready(struct xenbus_device *dev)
2565{
Greg Kroah-Hartmana1b4b122009-04-30 14:43:31 -07002566 struct blkfront_info *info = dev_get_drvdata(&dev->dev);
Christian Limpach1d78d702008-04-02 10:54:04 -07002567
Jan Beulich5d7ed202010-08-07 18:31:12 +02002568 return info->is_ready && info->xbdev;
Christian Limpach1d78d702008-04-02 10:54:04 -07002569}
2570
Al Viroa63c8482008-03-02 10:23:47 -05002571static int blkif_open(struct block_device *bdev, fmode_t mode)
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002572{
Daniel Stodden13961742010-08-07 18:36:53 +02002573 struct gendisk *disk = bdev->bd_disk;
2574 struct blkfront_info *info;
2575 int err = 0;
Arnd Bergmann6e9624b2010-08-07 18:25:34 +02002576
Arnd Bergmann2a48fc02010-06-02 14:28:52 +02002577 mutex_lock(&blkfront_mutex);
Arnd Bergmann6e9624b2010-08-07 18:25:34 +02002578
Daniel Stodden13961742010-08-07 18:36:53 +02002579 info = disk->private_data;
2580 if (!info) {
2581 /* xbdev gone */
2582 err = -ERESTARTSYS;
2583 goto out;
2584 }
2585
2586 mutex_lock(&info->mutex);
2587
2588 if (!info->gd)
2589 /* xbdev is closed */
2590 err = -ERESTARTSYS;
2591
2592 mutex_unlock(&info->mutex);
2593
Daniel Stodden13961742010-08-07 18:36:53 +02002594out:
Arnd Bergmann2a48fc02010-06-02 14:28:52 +02002595 mutex_unlock(&blkfront_mutex);
Daniel Stodden13961742010-08-07 18:36:53 +02002596 return err;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002597}
2598
Al Virodb2a1442013-05-05 21:52:57 -04002599static void blkif_release(struct gendisk *disk, fmode_t mode)
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002600{
Al Viroa63c8482008-03-02 10:23:47 -05002601 struct blkfront_info *info = disk->private_data;
Daniel Stodden7fd152f2010-08-07 18:45:12 +02002602 struct block_device *bdev;
2603 struct xenbus_device *xbdev;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002604
Arnd Bergmann2a48fc02010-06-02 14:28:52 +02002605 mutex_lock(&blkfront_mutex);
Daniel Stodden7fd152f2010-08-07 18:45:12 +02002606
2607 bdev = bdget_disk(disk, 0);
Daniel Stodden7fd152f2010-08-07 18:45:12 +02002608
Felipe Pena2f089cb2013-11-09 13:36:09 -02002609 if (!bdev) {
2610 WARN(1, "Block device %s yanked out from us!\n", disk->disk_name);
2611 goto out_mutex;
2612 }
Daniel Stoddenacfca3c2010-08-07 18:47:26 +02002613 if (bdev->bd_openers)
2614 goto out;
2615
Daniel Stodden7fd152f2010-08-07 18:45:12 +02002616 /*
2617 * Check if we have been instructed to close. We will have
2618 * deferred this request, because the bdev was still open.
2619 */
2620
2621 mutex_lock(&info->mutex);
2622 xbdev = info->xbdev;
2623
2624 if (xbdev && xbdev->state == XenbusStateClosing) {
2625 /* pending switch to state closed */
Daniel Stoddend54142c2010-08-07 18:51:21 +02002626 dev_info(disk_to_dev(bdev->bd_disk), "releasing disk\n");
Daniel Stodden7fd152f2010-08-07 18:45:12 +02002627 xlvbd_release_gendisk(info);
2628 xenbus_frontend_closed(info->xbdev);
2629 }
2630
2631 mutex_unlock(&info->mutex);
2632
2633 if (!xbdev) {
2634 /* sudden device removal */
Daniel Stoddend54142c2010-08-07 18:51:21 +02002635 dev_info(disk_to_dev(bdev->bd_disk), "releasing disk\n");
Daniel Stodden7fd152f2010-08-07 18:45:12 +02002636 xlvbd_release_gendisk(info);
2637 disk->private_data = NULL;
2638 kfree(info);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002639 }
Daniel Stodden7fd152f2010-08-07 18:45:12 +02002640
Jens Axboea4cc14e2010-08-08 21:50:05 -04002641out:
Andrew Jonesdad5cf62012-02-16 13:16:25 +01002642 bdput(bdev);
Felipe Pena2f089cb2013-11-09 13:36:09 -02002643out_mutex:
Arnd Bergmann2a48fc02010-06-02 14:28:52 +02002644 mutex_unlock(&blkfront_mutex);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002645}
2646
Alexey Dobriyan83d5cde2009-09-21 17:01:13 -07002647static const struct block_device_operations xlvbd_block_fops =
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002648{
2649 .owner = THIS_MODULE,
Al Viroa63c8482008-03-02 10:23:47 -05002650 .open = blkif_open,
2651 .release = blkif_release,
Ian Campbell597592d2008-02-21 13:03:45 -08002652 .getgeo = blkif_getgeo,
Arnd Bergmann8a6cfeb2010-07-08 10:18:46 +02002653 .ioctl = blkif_ioctl,
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002654};
2655
2656
Márton Némethec9c42e2010-01-10 13:39:52 +01002657static const struct xenbus_device_id blkfront_ids[] = {
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002658 { "vbd" },
2659 { "" }
2660};
2661
David Vrabel95afae42014-09-08 17:30:41 +01002662static struct xenbus_driver blkfront_driver = {
2663 .ids = blkfront_ids,
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002664 .probe = blkfront_probe,
2665 .remove = blkfront_remove,
2666 .resume = blkfront_resume,
Ian Campbell203fd612009-12-04 15:33:54 +00002667 .otherend_changed = blkback_changed,
Christian Limpach1d78d702008-04-02 10:54:04 -07002668 .is_ready = blkfront_is_ready,
David Vrabel95afae42014-09-08 17:30:41 +01002669};
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002670
2671static int __init xlblk_init(void)
2672{
Laszlo Ersek469738e2011-10-07 21:34:38 +02002673 int ret;
Bob Liu28d949b2015-11-14 11:12:14 +08002674 int nr_cpus = num_online_cpus();
Laszlo Ersek469738e2011-10-07 21:34:38 +02002675
Jeremy Fitzhardinge6e833582008-08-19 13:16:17 -07002676 if (!xen_domain())
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002677 return -ENODEV;
2678
Jan Beulich3b4f1882017-01-23 08:11:37 -07002679 if (xen_blkif_max_segments < BLKIF_MAX_SEGMENTS_PER_REQUEST)
2680 xen_blkif_max_segments = BLKIF_MAX_SEGMENTS_PER_REQUEST;
2681
Julien Grall9cce2912015-10-13 17:50:11 +01002682 if (xen_blkif_max_ring_order > XENBUS_MAX_RING_GRANT_ORDER) {
Bob Liu86839c52015-06-03 13:40:03 +08002683 pr_info("Invalid max_ring_order (%d), will use default max: %d.\n",
Julien Grall9cce2912015-10-13 17:50:11 +01002684 xen_blkif_max_ring_order, XENBUS_MAX_RING_GRANT_ORDER);
Peng Fan45fc8262015-11-25 18:26:01 +08002685 xen_blkif_max_ring_order = XENBUS_MAX_RING_GRANT_ORDER;
Bob Liu86839c52015-06-03 13:40:03 +08002686 }
2687
Bob Liu28d949b2015-11-14 11:12:14 +08002688 if (xen_blkif_max_queues > nr_cpus) {
2689 pr_info("Invalid max_queues (%d), will use default max: %d.\n",
2690 xen_blkif_max_queues, nr_cpus);
2691 xen_blkif_max_queues = nr_cpus;
2692 }
2693
Konrad Rzeszutek Wilk51c71a32013-11-26 15:05:40 -05002694 if (!xen_has_pv_disk_devices())
Igor Mammedovb9136d22012-03-21 15:08:38 +01002695 return -ENODEV;
2696
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002697 if (register_blkdev(XENVBD_MAJOR, DEV_NAME)) {
2698 printk(KERN_WARNING "xen_blk: can't get major %d with name %s\n",
2699 XENVBD_MAJOR, DEV_NAME);
2700 return -ENODEV;
2701 }
2702
Jan Beulich73db1442011-12-22 09:08:13 +00002703 ret = xenbus_register_frontend(&blkfront_driver);
Laszlo Ersek469738e2011-10-07 21:34:38 +02002704 if (ret) {
2705 unregister_blkdev(XENVBD_MAJOR, DEV_NAME);
2706 return ret;
2707 }
2708
2709 return 0;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002710}
2711module_init(xlblk_init);
2712
2713
Jan Beulich5a60d0c2008-06-17 10:47:08 +02002714static void __exit xlblk_exit(void)
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002715{
Jan Beulich86050672012-04-05 16:04:52 +01002716 xenbus_unregister_driver(&blkfront_driver);
2717 unregister_blkdev(XENVBD_MAJOR, DEV_NAME);
2718 kfree(minors);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002719}
2720module_exit(xlblk_exit);
2721
2722MODULE_DESCRIPTION("Xen virtual block device frontend");
2723MODULE_LICENSE("GPL");
2724MODULE_ALIAS_BLOCKDEV_MAJOR(XENVBD_MAJOR);
Mark McLoughlind2f0c522008-04-02 10:54:05 -07002725MODULE_ALIAS("xen:vbd");
Mark McLoughlin4f93f09b2008-04-02 10:54:06 -07002726MODULE_ALIAS("xenblk");