blob: 3aeb25bd505789f14d3dbedc79d48dba28be8781 [file] [log] [blame]
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001/*
2 * blkfront.c
3 *
4 * XenLinux virtual block device driver.
5 *
6 * Copyright (c) 2003-2004, Keir Fraser & Steve Hand
7 * Modifications by Mark A. Williamson are (c) Intel Research Cambridge
8 * Copyright (c) 2004, Christian Limpach
9 * Copyright (c) 2004, Andrew Warfield
10 * Copyright (c) 2005, Christopher Clark
11 * Copyright (c) 2005, XenSource Ltd
12 *
13 * This program is free software; you can redistribute it and/or
14 * modify it under the terms of the GNU General Public License version 2
15 * as published by the Free Software Foundation; or, when distributed
16 * separately from the Linux kernel or incorporated into other
17 * software packages, subject to the following license:
18 *
19 * Permission is hereby granted, free of charge, to any person obtaining a copy
20 * of this source file (the "Software"), to deal in the Software without
21 * restriction, including without limitation the rights to use, copy, modify,
22 * merge, publish, distribute, sublicense, and/or sell copies of the Software,
23 * and to permit persons to whom the Software is furnished to do so, subject to
24 * the following conditions:
25 *
26 * The above copyright notice and this permission notice shall be included in
27 * all copies or substantial portions of the Software.
28 *
29 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
30 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
31 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
32 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
33 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
34 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
35 * IN THE SOFTWARE.
36 */
37
38#include <linux/interrupt.h>
39#include <linux/blkdev.h>
Bob Liu907c3eb2015-07-13 17:55:24 +080040#include <linux/blk-mq.h>
Ian Campbell597592d2008-02-21 13:03:45 -080041#include <linux/hdreg.h>
Christian Limpach440a01a2008-06-17 10:47:08 +020042#include <linux/cdrom.h>
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -070043#include <linux/module.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090044#include <linux/slab.h>
Arnd Bergmann2a48fc02010-06-02 14:28:52 +020045#include <linux/mutex.h>
Jens Axboe9e973e62009-02-24 08:10:09 +010046#include <linux/scatterlist.h>
Akinobu Mita34ae2e42012-01-21 00:15:26 +090047#include <linux/bitmap.h>
Roger Pau Monne155b7ed2013-03-18 17:49:34 +010048#include <linux/list.h>
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -070049
Jeremy Fitzhardinge1ccbf532009-10-06 15:11:14 -070050#include <xen/xen.h>
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -070051#include <xen/xenbus.h>
52#include <xen/grant_table.h>
53#include <xen/events.h>
54#include <xen/page.h>
Stefano Stabellinic1c54132010-05-14 12:44:30 +010055#include <xen/platform_pci.h>
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -070056
57#include <xen/interface/grant_table.h>
58#include <xen/interface/io/blkif.h>
Markus Armbruster3e334232008-04-02 10:54:02 -070059#include <xen/interface/io/protocols.h>
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -070060
61#include <asm/xen/hypervisor.h>
62
Julien Grall6cc568332015-08-13 13:13:35 +010063/*
64 * The minimal size of segment supported by the block framework is PAGE_SIZE.
65 * When Linux is using a different page size than Xen, it may not be possible
66 * to put all the data in a single segment.
67 * This can happen when the backend doesn't support indirect descriptor and
68 * therefore the maximum amount of data that a request can carry is
69 * BLKIF_MAX_SEGMENTS_PER_REQUEST * XEN_PAGE_SIZE = 44KB
70 *
71 * Note that we only support one extra request. So the Linux page size
72 * should be <= ( 2 * BLKIF_MAX_SEGMENTS_PER_REQUEST * XEN_PAGE_SIZE) =
73 * 88KB.
74 */
75#define HAS_EXTRA_REQ (BLKIF_MAX_SEGMENTS_PER_REQUEST < XEN_PFN_PER_PAGE)
76
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -070077enum blkif_state {
78 BLKIF_STATE_DISCONNECTED,
79 BLKIF_STATE_CONNECTED,
80 BLKIF_STATE_SUSPENDED,
81};
82
Roger Pau Monne0a8704a2012-10-24 18:58:45 +020083struct grant {
84 grant_ref_t gref;
Julien Gralla7a6df22015-06-30 11:58:51 +010085 struct page *page;
Roger Pau Monne155b7ed2013-03-18 17:49:34 +010086 struct list_head node;
Roger Pau Monne0a8704a2012-10-24 18:58:45 +020087};
88
Julien Grall6cc568332015-08-13 13:13:35 +010089enum blk_req_status {
90 REQ_WAITING,
91 REQ_DONE,
92 REQ_ERROR,
93 REQ_EOPNOTSUPP,
94};
95
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -070096struct blk_shadow {
97 struct blkif_request req;
Jeremy Fitzhardingea945b982010-11-01 17:03:14 -040098 struct request *request;
Roger Pau Monne402b27f2013-04-18 16:06:54 +020099 struct grant **grants_used;
100 struct grant **indirect_grants;
Roger Pau Monneb7649152013-05-02 10:58:50 +0200101 struct scatterlist *sg;
Julien Grallc004a6f2015-07-22 16:44:54 +0100102 unsigned int num_sg;
Julien Grall6cc568332015-08-13 13:13:35 +0100103 enum blk_req_status status;
104
105 #define NO_ASSOCIATED_ID ~0UL
106 /*
107 * Id of the sibling if we ever need 2 requests when handling a
108 * block I/O request
109 */
110 unsigned long associated_id;
Roger Pau Monne402b27f2013-04-18 16:06:54 +0200111};
112
113struct split_bio {
114 struct bio *bio;
115 atomic_t pending;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700116};
117
Arnd Bergmann2a48fc02010-06-02 14:28:52 +0200118static DEFINE_MUTEX(blkfront_mutex);
Alexey Dobriyan83d5cde2009-09-21 17:01:13 -0700119static const struct block_device_operations xlvbd_block_fops;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700120
Roger Pau Monne402b27f2013-04-18 16:06:54 +0200121/*
122 * Maximum number of segments in indirect requests, the actual value used by
123 * the frontend driver is the minimum of this value and the value provided
124 * by the backend driver.
125 */
126
127static unsigned int xen_blkif_max_segments = 32;
Jan Beulich14e710f2016-02-10 04:21:15 -0700128module_param_named(max_indirect_segments, xen_blkif_max_segments, uint,
129 S_IRUGO);
130MODULE_PARM_DESC(max_indirect_segments,
131 "Maximum amount of segments in indirect requests (default is 32)");
Roger Pau Monne402b27f2013-04-18 16:06:54 +0200132
Bob Liu28d949b2015-11-14 11:12:14 +0800133static unsigned int xen_blkif_max_queues = 4;
134module_param_named(max_queues, xen_blkif_max_queues, uint, S_IRUGO);
135MODULE_PARM_DESC(max_queues, "Maximum number of hardware queues/rings used per virtual disk");
136
Bob Liu86839c52015-06-03 13:40:03 +0800137/*
138 * Maximum order of pages to be used for the shared ring between front and
139 * backend, 4KB page granularity is used.
140 */
141static unsigned int xen_blkif_max_ring_order;
142module_param_named(max_ring_page_order, xen_blkif_max_ring_order, int, S_IRUGO);
143MODULE_PARM_DESC(max_ring_page_order, "Maximum order of pages to be used for the shared ring");
144
Julien Grallc004a6f2015-07-22 16:44:54 +0100145#define BLK_RING_SIZE(info) \
146 __CONST_RING_SIZE(blkif, XEN_PAGE_SIZE * (info)->nr_ring_pages)
147
148#define BLK_MAX_RING_SIZE \
Julien Grall9cce2912015-10-13 17:50:11 +0100149 __CONST_RING_SIZE(blkif, XEN_PAGE_SIZE * XENBUS_MAX_RING_GRANTS)
Julien Grallc004a6f2015-07-22 16:44:54 +0100150
Bob Liu86839c52015-06-03 13:40:03 +0800151/*
Konrad Rzeszutek Wilk6f03a7f2015-11-16 15:14:41 -0500152 * ring-ref%u i=(-1UL) would take 11 characters + 'ring-ref' is 8, so 19
153 * characters are enough. Define to 20 to keep consistent with backend.
Bob Liu86839c52015-06-03 13:40:03 +0800154 */
155#define RINGREF_NAME_LEN (20)
Bob Liu28d949b2015-11-14 11:12:14 +0800156/*
157 * queue-%u would take 7 + 10(UINT_MAX) = 17 characters.
158 */
159#define QUEUE_NAME_LEN (17)
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700160
161/*
Bob Liu81f35162015-11-14 11:12:11 +0800162 * Per-ring info.
163 * Every blkfront device can associate with one or more blkfront_ring_info,
164 * depending on how many hardware queues/rings to be used.
165 */
166struct blkfront_ring_info {
Bob Liu11659562015-11-14 11:12:13 +0800167 /* Lock to protect data in every ring buffer. */
168 spinlock_t ring_lock;
Bob Liu81f35162015-11-14 11:12:11 +0800169 struct blkif_front_ring ring;
170 unsigned int ring_ref[XENBUS_MAX_RING_GRANTS];
171 unsigned int evtchn, irq;
172 struct work_struct work;
173 struct gnttab_free_callback callback;
174 struct blk_shadow shadow[BLK_MAX_RING_SIZE];
175 struct list_head indirect_pages;
Bob Liu73716df2015-11-16 16:51:39 -0500176 struct list_head grants;
177 unsigned int persistent_gnts_c;
Bob Liu81f35162015-11-14 11:12:11 +0800178 unsigned long shadow_free;
179 struct blkfront_info *dev_info;
180};
181
182/*
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700183 * We have one of these per vbd, whether ide, scsi or 'other'. They
184 * hang in private_data off the gendisk structure. We may end up
185 * putting all kinds of interesting stuff here :-)
186 */
187struct blkfront_info
188{
Daniel Stoddenb70f5fa2010-04-30 22:01:19 +0000189 struct mutex mutex;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700190 struct xenbus_device *xbdev;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700191 struct gendisk *gd;
192 int vdevice;
193 blkif_vdev_t handle;
194 enum blkif_state connected;
Bob Liu3df0e502015-11-14 11:12:12 +0800195 /* Number of pages per ring buffer. */
Bob Liu86839c52015-06-03 13:40:03 +0800196 unsigned int nr_ring_pages;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700197 struct request_queue *rq;
Tejun Heo4913efe2010-09-03 11:56:16 +0200198 unsigned int feature_flush;
Konrad Rzeszutek Wilk5ea42982011-10-12 16:23:30 -0400199 unsigned int feature_discard:1;
200 unsigned int feature_secdiscard:1;
Li Dongyanged30bf32011-09-01 18:39:09 +0800201 unsigned int discard_granularity;
202 unsigned int discard_alignment;
Roger Pau Monne0a8704a2012-10-24 18:58:45 +0200203 unsigned int feature_persistent:1;
Julien Grallc004a6f2015-07-22 16:44:54 +0100204 /* Number of 4KB segments handled */
Roger Pau Monne402b27f2013-04-18 16:06:54 +0200205 unsigned int max_indirect_segments;
Christian Limpach1d78d702008-04-02 10:54:04 -0700206 int is_ready;
Bob Liu907c3eb2015-07-13 17:55:24 +0800207 struct blk_mq_tag_set tag_set;
Bob Liu3df0e502015-11-14 11:12:12 +0800208 struct blkfront_ring_info *rinfo;
209 unsigned int nr_rings;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700210};
211
Jan Beulich0e345822010-08-07 18:28:55 +0200212static unsigned int nr_minors;
213static unsigned long *minors;
214static DEFINE_SPINLOCK(minor_lock);
215
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700216#define GRANT_INVALID_REF 0
217
218#define PARTS_PER_DISK 16
Chris Lalancette9246b5f2008-09-17 14:30:32 -0700219#define PARTS_PER_EXT_DISK 256
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700220
221#define BLKIF_MAJOR(dev) ((dev)>>8)
222#define BLKIF_MINOR(dev) ((dev) & 0xff)
223
Chris Lalancette9246b5f2008-09-17 14:30:32 -0700224#define EXT_SHIFT 28
225#define EXTENDED (1<<EXT_SHIFT)
226#define VDEV_IS_EXTENDED(dev) ((dev)&(EXTENDED))
227#define BLKIF_MINOR_EXT(dev) ((dev)&(~EXTENDED))
Stefano Stabellinic80a4202010-12-02 17:55:00 +0000228#define EMULATED_HD_DISK_MINOR_OFFSET (0)
229#define EMULATED_HD_DISK_NAME_OFFSET (EMULATED_HD_DISK_MINOR_OFFSET / 256)
Stefan Bader196cfe22011-07-14 15:30:22 +0200230#define EMULATED_SD_DISK_MINOR_OFFSET (0)
231#define EMULATED_SD_DISK_NAME_OFFSET (EMULATED_SD_DISK_MINOR_OFFSET / 256)
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700232
Chris Lalancette9246b5f2008-09-17 14:30:32 -0700233#define DEV_NAME "xvd" /* name in /dev */
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700234
Julien Grallc004a6f2015-07-22 16:44:54 +0100235/*
236 * Grants are always the same size as a Xen page (i.e 4KB).
237 * A physical segment is always the same size as a Linux page.
238 * Number of grants per physical segment
239 */
240#define GRANTS_PER_PSEG (PAGE_SIZE / XEN_PAGE_SIZE)
241
242#define GRANTS_PER_INDIRECT_FRAME \
243 (XEN_PAGE_SIZE / sizeof(struct blkif_request_segment))
244
245#define PSEGS_PER_INDIRECT_FRAME \
246 (GRANTS_INDIRECT_FRAME / GRANTS_PSEGS)
247
248#define INDIRECT_GREFS(_grants) \
249 DIV_ROUND_UP(_grants, GRANTS_PER_INDIRECT_FRAME)
250
251#define GREFS(_psegs) ((_psegs) * GRANTS_PER_PSEG)
Roger Pau Monne402b27f2013-04-18 16:06:54 +0200252
Bob Liu81f35162015-11-14 11:12:11 +0800253static int blkfront_setup_indirect(struct blkfront_ring_info *rinfo);
Bob Liu3df0e502015-11-14 11:12:12 +0800254static void blkfront_gather_backend_features(struct blkfront_info *info);
Roger Pau Monne402b27f2013-04-18 16:06:54 +0200255
Bob Liu81f35162015-11-14 11:12:11 +0800256static int get_id_from_freelist(struct blkfront_ring_info *rinfo)
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700257{
Bob Liu81f35162015-11-14 11:12:11 +0800258 unsigned long free = rinfo->shadow_free;
259
260 BUG_ON(free >= BLK_RING_SIZE(rinfo->dev_info));
261 rinfo->shadow_free = rinfo->shadow[free].req.u.rw.id;
262 rinfo->shadow[free].req.u.rw.id = 0x0fffffee; /* debug */
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700263 return free;
264}
265
Bob Liu81f35162015-11-14 11:12:11 +0800266static int add_id_to_freelist(struct blkfront_ring_info *rinfo,
Konrad Rzeszutek Wilk6f03a7f2015-11-16 15:14:41 -0500267 unsigned long id)
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700268{
Bob Liu81f35162015-11-14 11:12:11 +0800269 if (rinfo->shadow[id].req.u.rw.id != id)
Konrad Rzeszutek Wilk6878c322012-05-25 17:34:51 -0400270 return -EINVAL;
Bob Liu81f35162015-11-14 11:12:11 +0800271 if (rinfo->shadow[id].request == NULL)
Konrad Rzeszutek Wilk6878c322012-05-25 17:34:51 -0400272 return -EINVAL;
Bob Liu81f35162015-11-14 11:12:11 +0800273 rinfo->shadow[id].req.u.rw.id = rinfo->shadow_free;
274 rinfo->shadow[id].request = NULL;
275 rinfo->shadow_free = id;
Konrad Rzeszutek Wilk6878c322012-05-25 17:34:51 -0400276 return 0;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700277}
278
Bob Liu81f35162015-11-14 11:12:11 +0800279static int fill_grant_buffer(struct blkfront_ring_info *rinfo, int num)
Roger Pau Monne9c1e0502013-03-18 17:49:35 +0100280{
Bob Liu81f35162015-11-14 11:12:11 +0800281 struct blkfront_info *info = rinfo->dev_info;
Roger Pau Monne9c1e0502013-03-18 17:49:35 +0100282 struct page *granted_page;
283 struct grant *gnt_list_entry, *n;
284 int i = 0;
285
Konrad Rzeszutek Wilk6f03a7f2015-11-16 15:14:41 -0500286 while (i < num) {
Roger Pau Monne9c1e0502013-03-18 17:49:35 +0100287 gnt_list_entry = kzalloc(sizeof(struct grant), GFP_NOIO);
288 if (!gnt_list_entry)
289 goto out_of_memory;
290
Roger Pau Monnebfe11d62013-10-29 18:31:14 +0100291 if (info->feature_persistent) {
292 granted_page = alloc_page(GFP_NOIO);
293 if (!granted_page) {
294 kfree(gnt_list_entry);
295 goto out_of_memory;
296 }
Julien Gralla7a6df22015-06-30 11:58:51 +0100297 gnt_list_entry->page = granted_page;
Roger Pau Monne9c1e0502013-03-18 17:49:35 +0100298 }
299
Roger Pau Monne9c1e0502013-03-18 17:49:35 +0100300 gnt_list_entry->gref = GRANT_INVALID_REF;
Bob Liu73716df2015-11-16 16:51:39 -0500301 list_add(&gnt_list_entry->node, &rinfo->grants);
Roger Pau Monne9c1e0502013-03-18 17:49:35 +0100302 i++;
303 }
304
305 return 0;
306
307out_of_memory:
308 list_for_each_entry_safe(gnt_list_entry, n,
Bob Liu73716df2015-11-16 16:51:39 -0500309 &rinfo->grants, node) {
Roger Pau Monne9c1e0502013-03-18 17:49:35 +0100310 list_del(&gnt_list_entry->node);
Roger Pau Monnebfe11d62013-10-29 18:31:14 +0100311 if (info->feature_persistent)
Julien Gralla7a6df22015-06-30 11:58:51 +0100312 __free_page(gnt_list_entry->page);
Roger Pau Monne9c1e0502013-03-18 17:49:35 +0100313 kfree(gnt_list_entry);
314 i--;
315 }
316 BUG_ON(i != 0);
317 return -ENOMEM;
318}
319
Bob Liu73716df2015-11-16 16:51:39 -0500320static struct grant *get_free_grant(struct blkfront_ring_info *rinfo)
Roger Pau Monne9c1e0502013-03-18 17:49:35 +0100321{
322 struct grant *gnt_list_entry;
Roger Pau Monne9c1e0502013-03-18 17:49:35 +0100323
Bob Liu73716df2015-11-16 16:51:39 -0500324 BUG_ON(list_empty(&rinfo->grants));
325 gnt_list_entry = list_first_entry(&rinfo->grants, struct grant,
Julien Grall4f503fb2015-07-01 14:10:38 +0100326 node);
Roger Pau Monne9c1e0502013-03-18 17:49:35 +0100327 list_del(&gnt_list_entry->node);
328
Julien Grall4f503fb2015-07-01 14:10:38 +0100329 if (gnt_list_entry->gref != GRANT_INVALID_REF)
Bob Liu73716df2015-11-16 16:51:39 -0500330 rinfo->persistent_gnts_c--;
Julien Grall4f503fb2015-07-01 14:10:38 +0100331
332 return gnt_list_entry;
333}
334
335static inline void grant_foreign_access(const struct grant *gnt_list_entry,
336 const struct blkfront_info *info)
337{
338 gnttab_page_grant_foreign_access_ref_one(gnt_list_entry->gref,
339 info->xbdev->otherend_id,
340 gnt_list_entry->page,
341 0);
342}
343
344static struct grant *get_grant(grant_ref_t *gref_head,
345 unsigned long gfn,
Bob Liu73716df2015-11-16 16:51:39 -0500346 struct blkfront_ring_info *rinfo)
Julien Grall4f503fb2015-07-01 14:10:38 +0100347{
Bob Liu73716df2015-11-16 16:51:39 -0500348 struct grant *gnt_list_entry = get_free_grant(rinfo);
349 struct blkfront_info *info = rinfo->dev_info;
Julien Grall4f503fb2015-07-01 14:10:38 +0100350
351 if (gnt_list_entry->gref != GRANT_INVALID_REF)
Roger Pau Monne9c1e0502013-03-18 17:49:35 +0100352 return gnt_list_entry;
Julien Grall4f503fb2015-07-01 14:10:38 +0100353
354 /* Assign a gref to this page */
355 gnt_list_entry->gref = gnttab_claim_grant_reference(gref_head);
356 BUG_ON(gnt_list_entry->gref == -ENOSPC);
357 if (info->feature_persistent)
358 grant_foreign_access(gnt_list_entry, info);
359 else {
360 /* Grant access to the GFN passed by the caller */
361 gnttab_grant_foreign_access_ref(gnt_list_entry->gref,
362 info->xbdev->otherend_id,
363 gfn, 0);
Roger Pau Monne9c1e0502013-03-18 17:49:35 +0100364 }
365
Julien Grall4f503fb2015-07-01 14:10:38 +0100366 return gnt_list_entry;
367}
368
369static struct grant *get_indirect_grant(grant_ref_t *gref_head,
Bob Liu73716df2015-11-16 16:51:39 -0500370 struct blkfront_ring_info *rinfo)
Julien Grall4f503fb2015-07-01 14:10:38 +0100371{
Bob Liu73716df2015-11-16 16:51:39 -0500372 struct grant *gnt_list_entry = get_free_grant(rinfo);
373 struct blkfront_info *info = rinfo->dev_info;
Julien Grall4f503fb2015-07-01 14:10:38 +0100374
375 if (gnt_list_entry->gref != GRANT_INVALID_REF)
376 return gnt_list_entry;
377
Roger Pau Monne9c1e0502013-03-18 17:49:35 +0100378 /* Assign a gref to this page */
379 gnt_list_entry->gref = gnttab_claim_grant_reference(gref_head);
380 BUG_ON(gnt_list_entry->gref == -ENOSPC);
Roger Pau Monnebfe11d62013-10-29 18:31:14 +0100381 if (!info->feature_persistent) {
Julien Grall4f503fb2015-07-01 14:10:38 +0100382 struct page *indirect_page;
383
384 /* Fetch a pre-allocated page to use for indirect grefs */
Bob Liu73716df2015-11-16 16:51:39 -0500385 BUG_ON(list_empty(&rinfo->indirect_pages));
386 indirect_page = list_first_entry(&rinfo->indirect_pages,
Julien Grall4f503fb2015-07-01 14:10:38 +0100387 struct page, lru);
388 list_del(&indirect_page->lru);
389 gnt_list_entry->page = indirect_page;
Roger Pau Monnebfe11d62013-10-29 18:31:14 +0100390 }
Julien Grall4f503fb2015-07-01 14:10:38 +0100391 grant_foreign_access(gnt_list_entry, info);
392
Roger Pau Monne9c1e0502013-03-18 17:49:35 +0100393 return gnt_list_entry;
394}
395
Konrad Rzeszutek Wilk6878c322012-05-25 17:34:51 -0400396static const char *op_name(int op)
397{
398 static const char *const names[] = {
399 [BLKIF_OP_READ] = "read",
400 [BLKIF_OP_WRITE] = "write",
401 [BLKIF_OP_WRITE_BARRIER] = "barrier",
402 [BLKIF_OP_FLUSH_DISKCACHE] = "flush",
403 [BLKIF_OP_DISCARD] = "discard" };
404
405 if (op < 0 || op >= ARRAY_SIZE(names))
406 return "unknown";
407
408 if (!names[op])
409 return "reserved";
410
411 return names[op];
412}
Jan Beulich0e345822010-08-07 18:28:55 +0200413static int xlbd_reserve_minors(unsigned int minor, unsigned int nr)
414{
415 unsigned int end = minor + nr;
416 int rc;
417
418 if (end > nr_minors) {
419 unsigned long *bitmap, *old;
420
Thomas Meyerf0941482011-11-29 22:08:00 +0100421 bitmap = kcalloc(BITS_TO_LONGS(end), sizeof(*bitmap),
Jan Beulich0e345822010-08-07 18:28:55 +0200422 GFP_KERNEL);
423 if (bitmap == NULL)
424 return -ENOMEM;
425
426 spin_lock(&minor_lock);
427 if (end > nr_minors) {
428 old = minors;
429 memcpy(bitmap, minors,
430 BITS_TO_LONGS(nr_minors) * sizeof(*bitmap));
431 minors = bitmap;
432 nr_minors = BITS_TO_LONGS(end) * BITS_PER_LONG;
433 } else
434 old = bitmap;
435 spin_unlock(&minor_lock);
436 kfree(old);
437 }
438
439 spin_lock(&minor_lock);
440 if (find_next_bit(minors, end, minor) >= end) {
Akinobu Mita34ae2e42012-01-21 00:15:26 +0900441 bitmap_set(minors, minor, nr);
Jan Beulich0e345822010-08-07 18:28:55 +0200442 rc = 0;
443 } else
444 rc = -EBUSY;
445 spin_unlock(&minor_lock);
446
447 return rc;
448}
449
450static void xlbd_release_minors(unsigned int minor, unsigned int nr)
451{
452 unsigned int end = minor + nr;
453
454 BUG_ON(end > nr_minors);
455 spin_lock(&minor_lock);
Akinobu Mita34ae2e42012-01-21 00:15:26 +0900456 bitmap_clear(minors, minor, nr);
Jan Beulich0e345822010-08-07 18:28:55 +0200457 spin_unlock(&minor_lock);
458}
459
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700460static void blkif_restart_queue_callback(void *arg)
461{
Bob Liu81f35162015-11-14 11:12:11 +0800462 struct blkfront_ring_info *rinfo = (struct blkfront_ring_info *)arg;
463 schedule_work(&rinfo->work);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700464}
465
Harvey Harrisonafe42d72008-04-29 00:59:47 -0700466static int blkif_getgeo(struct block_device *bd, struct hd_geometry *hg)
Ian Campbell597592d2008-02-21 13:03:45 -0800467{
468 /* We don't have real geometry info, but let's at least return
469 values consistent with the size of the device */
470 sector_t nsect = get_capacity(bd->bd_disk);
471 sector_t cylinders = nsect;
472
473 hg->heads = 0xff;
474 hg->sectors = 0x3f;
475 sector_div(cylinders, hg->heads * hg->sectors);
476 hg->cylinders = cylinders;
477 if ((sector_t)(hg->cylinders + 1) * hg->heads * hg->sectors < nsect)
478 hg->cylinders = 0xffff;
479 return 0;
480}
481
Al Viroa63c8482008-03-02 10:23:47 -0500482static int blkif_ioctl(struct block_device *bdev, fmode_t mode,
Adrian Bunk62aa0052008-08-04 11:59:05 +0200483 unsigned command, unsigned long argument)
Christian Limpach440a01a2008-06-17 10:47:08 +0200484{
Al Viroa63c8482008-03-02 10:23:47 -0500485 struct blkfront_info *info = bdev->bd_disk->private_data;
Christian Limpach440a01a2008-06-17 10:47:08 +0200486 int i;
487
488 dev_dbg(&info->xbdev->dev, "command: 0x%x, argument: 0x%lx\n",
489 command, (long)argument);
490
491 switch (command) {
492 case CDROMMULTISESSION:
493 dev_dbg(&info->xbdev->dev, "FIXME: support multisession CDs later\n");
494 for (i = 0; i < sizeof(struct cdrom_multisession); i++)
495 if (put_user(0, (char __user *)(argument + i)))
496 return -EFAULT;
497 return 0;
498
499 case CDROM_GET_CAPABILITY: {
500 struct gendisk *gd = info->gd;
501 if (gd->flags & GENHD_FL_CD)
502 return 0;
503 return -EINVAL;
504 }
505
506 default:
507 /*printk(KERN_ALERT "ioctl %08x not supported by Xen blkdev\n",
508 command);*/
509 return -EINVAL; /* same return as native Linux */
510 }
511
512 return 0;
513}
514
Julien Grall2e073962015-08-13 19:23:10 +0100515static unsigned long blkif_ring_get_request(struct blkfront_ring_info *rinfo,
516 struct request *req,
517 struct blkif_request **ring_req)
518{
519 unsigned long id;
520
521 *ring_req = RING_GET_REQUEST(&rinfo->ring, rinfo->ring.req_prod_pvt);
522 rinfo->ring.req_prod_pvt++;
523
524 id = get_id_from_freelist(rinfo);
525 rinfo->shadow[id].request = req;
Julien Grall6cc568332015-08-13 13:13:35 +0100526 rinfo->shadow[id].status = REQ_WAITING;
527 rinfo->shadow[id].associated_id = NO_ASSOCIATED_ID;
Julien Grall2e073962015-08-13 19:23:10 +0100528
529 (*ring_req)->u.rw.id = id;
530
531 return id;
532}
533
Bob Liu81f35162015-11-14 11:12:11 +0800534static int blkif_queue_discard_req(struct request *req, struct blkfront_ring_info *rinfo)
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700535{
Bob Liu81f35162015-11-14 11:12:11 +0800536 struct blkfront_info *info = rinfo->dev_info;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700537 struct blkif_request *ring_req;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700538 unsigned long id;
Julien Grall33204662015-06-29 17:35:24 +0100539
540 /* Fill out a communications ring structure. */
Julien Grall2e073962015-08-13 19:23:10 +0100541 id = blkif_ring_get_request(rinfo, req, &ring_req);
Julien Grall33204662015-06-29 17:35:24 +0100542
543 ring_req->operation = BLKIF_OP_DISCARD;
544 ring_req->u.discard.nr_sectors = blk_rq_sectors(req);
545 ring_req->u.discard.id = id;
546 ring_req->u.discard.sector_number = (blkif_sector_t)blk_rq_pos(req);
547 if ((req->cmd_flags & REQ_SECURE) && info->feature_secdiscard)
548 ring_req->u.discard.flag = BLKIF_DISCARD_SECURE;
549 else
550 ring_req->u.discard.flag = 0;
551
Julien Grall33204662015-06-29 17:35:24 +0100552 /* Keep a private copy so we can reissue requests when recovering. */
Bob Liu81f35162015-11-14 11:12:11 +0800553 rinfo->shadow[id].req = *ring_req;
Julien Grall33204662015-06-29 17:35:24 +0100554
555 return 0;
556}
557
Julien Grallc004a6f2015-07-22 16:44:54 +0100558struct setup_rw_req {
559 unsigned int grant_idx;
560 struct blkif_request_segment *segments;
Bob Liu81f35162015-11-14 11:12:11 +0800561 struct blkfront_ring_info *rinfo;
Julien Grallc004a6f2015-07-22 16:44:54 +0100562 struct blkif_request *ring_req;
563 grant_ref_t gref_head;
564 unsigned int id;
565 /* Only used when persistent grant is used and it's a read request */
566 bool need_copy;
567 unsigned int bvec_off;
568 char *bvec_data;
Julien Grall6cc568332015-08-13 13:13:35 +0100569
570 bool require_extra_req;
571 struct blkif_request *extra_ring_req;
Julien Grallc004a6f2015-07-22 16:44:54 +0100572};
573
574static void blkif_setup_rw_req_grant(unsigned long gfn, unsigned int offset,
575 unsigned int len, void *data)
576{
577 struct setup_rw_req *setup = data;
578 int n, ref;
579 struct grant *gnt_list_entry;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700580 unsigned int fsect, lsect;
Julien Grallc004a6f2015-07-22 16:44:54 +0100581 /* Convenient aliases */
582 unsigned int grant_idx = setup->grant_idx;
583 struct blkif_request *ring_req = setup->ring_req;
Bob Liu81f35162015-11-14 11:12:11 +0800584 struct blkfront_ring_info *rinfo = setup->rinfo;
Julien Grall6cc568332015-08-13 13:13:35 +0100585 /*
586 * We always use the shadow of the first request to store the list
587 * of grant associated to the block I/O request. This made the
588 * completion more easy to handle even if the block I/O request is
589 * split.
590 */
Bob Liu81f35162015-11-14 11:12:11 +0800591 struct blk_shadow *shadow = &rinfo->shadow[setup->id];
Julien Grallc004a6f2015-07-22 16:44:54 +0100592
Julien Grall6cc568332015-08-13 13:13:35 +0100593 if (unlikely(setup->require_extra_req &&
594 grant_idx >= BLKIF_MAX_SEGMENTS_PER_REQUEST)) {
595 /*
596 * We are using the second request, setup grant_idx
597 * to be the index of the segment array.
598 */
599 grant_idx -= BLKIF_MAX_SEGMENTS_PER_REQUEST;
600 ring_req = setup->extra_ring_req;
601 }
602
Julien Grallc004a6f2015-07-22 16:44:54 +0100603 if ((ring_req->operation == BLKIF_OP_INDIRECT) &&
604 (grant_idx % GRANTS_PER_INDIRECT_FRAME == 0)) {
605 if (setup->segments)
606 kunmap_atomic(setup->segments);
607
608 n = grant_idx / GRANTS_PER_INDIRECT_FRAME;
Bob Liu73716df2015-11-16 16:51:39 -0500609 gnt_list_entry = get_indirect_grant(&setup->gref_head, rinfo);
Julien Grallc004a6f2015-07-22 16:44:54 +0100610 shadow->indirect_grants[n] = gnt_list_entry;
611 setup->segments = kmap_atomic(gnt_list_entry->page);
612 ring_req->u.indirect.indirect_grefs[n] = gnt_list_entry->gref;
613 }
614
Bob Liu73716df2015-11-16 16:51:39 -0500615 gnt_list_entry = get_grant(&setup->gref_head, gfn, rinfo);
Julien Grallc004a6f2015-07-22 16:44:54 +0100616 ref = gnt_list_entry->gref;
Julien Grall6cc568332015-08-13 13:13:35 +0100617 /*
618 * All the grants are stored in the shadow of the first
619 * request. Therefore we have to use the global index.
620 */
621 shadow->grants_used[setup->grant_idx] = gnt_list_entry;
Julien Grallc004a6f2015-07-22 16:44:54 +0100622
623 if (setup->need_copy) {
624 void *shared_data;
625
626 shared_data = kmap_atomic(gnt_list_entry->page);
627 /*
628 * this does not wipe data stored outside the
629 * range sg->offset..sg->offset+sg->length.
630 * Therefore, blkback *could* see data from
631 * previous requests. This is OK as long as
632 * persistent grants are shared with just one
633 * domain. It may need refactoring if this
634 * changes
635 */
636 memcpy(shared_data + offset,
637 setup->bvec_data + setup->bvec_off,
638 len);
639
640 kunmap_atomic(shared_data);
641 setup->bvec_off += len;
642 }
643
644 fsect = offset >> 9;
645 lsect = fsect + (len >> 9) - 1;
646 if (ring_req->operation != BLKIF_OP_INDIRECT) {
647 ring_req->u.rw.seg[grant_idx] =
648 (struct blkif_request_segment) {
649 .gref = ref,
650 .first_sect = fsect,
651 .last_sect = lsect };
652 } else {
653 setup->segments[grant_idx % GRANTS_PER_INDIRECT_FRAME] =
654 (struct blkif_request_segment) {
655 .gref = ref,
656 .first_sect = fsect,
657 .last_sect = lsect };
658 }
659
660 (setup->grant_idx)++;
661}
662
Julien Grall6cc568332015-08-13 13:13:35 +0100663static void blkif_setup_extra_req(struct blkif_request *first,
664 struct blkif_request *second)
665{
666 uint16_t nr_segments = first->u.rw.nr_segments;
667
668 /*
669 * The second request is only present when the first request uses
670 * all its segments. It's always the continuity of the first one.
671 */
672 first->u.rw.nr_segments = BLKIF_MAX_SEGMENTS_PER_REQUEST;
673
674 second->u.rw.nr_segments = nr_segments - BLKIF_MAX_SEGMENTS_PER_REQUEST;
675 second->u.rw.sector_number = first->u.rw.sector_number +
676 (BLKIF_MAX_SEGMENTS_PER_REQUEST * XEN_PAGE_SIZE) / 512;
677
678 second->u.rw.handle = first->u.rw.handle;
679 second->operation = first->operation;
680}
681
Bob Liu81f35162015-11-14 11:12:11 +0800682static int blkif_queue_rw_req(struct request *req, struct blkfront_ring_info *rinfo)
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700683{
Bob Liu81f35162015-11-14 11:12:11 +0800684 struct blkfront_info *info = rinfo->dev_info;
Julien Grall6cc568332015-08-13 13:13:35 +0100685 struct blkif_request *ring_req, *extra_ring_req = NULL;
686 unsigned long id, extra_id = NO_ASSOCIATED_ID;
687 bool require_extra_req = false;
Julien Grallc004a6f2015-07-22 16:44:54 +0100688 int i;
689 struct setup_rw_req setup = {
690 .grant_idx = 0,
691 .segments = NULL,
Bob Liu81f35162015-11-14 11:12:11 +0800692 .rinfo = rinfo,
Julien Grallc004a6f2015-07-22 16:44:54 +0100693 .need_copy = rq_data_dir(req) && info->feature_persistent,
694 };
Roger Pau Monne0a8704a2012-10-24 18:58:45 +0200695
696 /*
697 * Used to store if we are able to queue the request by just using
698 * existing persistent grants, or if we have to get new grants,
699 * as there are not sufficiently many free.
700 */
Jens Axboe9e973e62009-02-24 08:10:09 +0100701 struct scatterlist *sg;
Julien Grallc004a6f2015-07-22 16:44:54 +0100702 int num_sg, max_grefs, num_grant;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700703
Julien Grallc004a6f2015-07-22 16:44:54 +0100704 max_grefs = req->nr_phys_segments * GRANTS_PER_PSEG;
Roger Pau Monnec47206e2013-08-12 12:53:43 +0200705 if (max_grefs > BLKIF_MAX_SEGMENTS_PER_REQUEST)
706 /*
707 * If we are using indirect segments we need to account
708 * for the indirect grefs used in the request.
709 */
Julien Grallc004a6f2015-07-22 16:44:54 +0100710 max_grefs += INDIRECT_GREFS(max_grefs);
Roger Pau Monne402b27f2013-04-18 16:06:54 +0200711
Bob Liu3df0e502015-11-14 11:12:12 +0800712 /*
713 * We have to reserve 'max_grefs' grants because persistent
714 * grants are shared by all rings.
715 */
716 if (max_grefs > 0)
717 if (gnttab_alloc_grant_references(max_grefs, &setup.gref_head) < 0) {
Roger Pau Monne0a8704a2012-10-24 18:58:45 +0200718 gnttab_request_free_callback(
Bob Liu81f35162015-11-14 11:12:11 +0800719 &rinfo->callback,
Roger Pau Monne0a8704a2012-10-24 18:58:45 +0200720 blkif_restart_queue_callback,
Bob Liu81f35162015-11-14 11:12:11 +0800721 rinfo,
Roger Pau Monne402b27f2013-04-18 16:06:54 +0200722 max_grefs);
Roger Pau Monne0a8704a2012-10-24 18:58:45 +0200723 return 1;
724 }
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700725
726 /* Fill out a communications ring structure. */
Julien Grall2e073962015-08-13 19:23:10 +0100727 id = blkif_ring_get_request(rinfo, req, &ring_req);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700728
Bob Liu81f35162015-11-14 11:12:11 +0800729 num_sg = blk_rq_map_sg(req->q, req, rinfo->shadow[id].sg);
Julien Grallc004a6f2015-07-22 16:44:54 +0100730 num_grant = 0;
731 /* Calculate the number of grant used */
Bob Liu81f35162015-11-14 11:12:11 +0800732 for_each_sg(rinfo->shadow[id].sg, sg, num_sg, i)
Julien Grallc004a6f2015-07-22 16:44:54 +0100733 num_grant += gnttab_count_grant(sg->offset, sg->length);
734
Julien Grall6cc568332015-08-13 13:13:35 +0100735 require_extra_req = info->max_indirect_segments == 0 &&
736 num_grant > BLKIF_MAX_SEGMENTS_PER_REQUEST;
737 BUG_ON(!HAS_EXTRA_REQ && require_extra_req);
738
Bob Liu81f35162015-11-14 11:12:11 +0800739 rinfo->shadow[id].num_sg = num_sg;
Julien Grall6cc568332015-08-13 13:13:35 +0100740 if (num_grant > BLKIF_MAX_SEGMENTS_PER_REQUEST &&
741 likely(!require_extra_req)) {
Julien Grall33204662015-06-29 17:35:24 +0100742 /*
743 * The indirect operation can only be a BLKIF_OP_READ or
744 * BLKIF_OP_WRITE
745 */
Mike Christie3a5e02c2016-06-05 14:32:23 -0500746 BUG_ON(req_op(req) == REQ_OP_FLUSH || req->cmd_flags & REQ_FUA);
Julien Grall33204662015-06-29 17:35:24 +0100747 ring_req->operation = BLKIF_OP_INDIRECT;
748 ring_req->u.indirect.indirect_op = rq_data_dir(req) ?
749 BLKIF_OP_WRITE : BLKIF_OP_READ;
750 ring_req->u.indirect.sector_number = (blkif_sector_t)blk_rq_pos(req);
751 ring_req->u.indirect.handle = info->handle;
Julien Grallc004a6f2015-07-22 16:44:54 +0100752 ring_req->u.indirect.nr_segments = num_grant;
Li Dongyanged30bf32011-09-01 18:39:09 +0800753 } else {
Julien Grall33204662015-06-29 17:35:24 +0100754 ring_req->u.rw.sector_number = (blkif_sector_t)blk_rq_pos(req);
755 ring_req->u.rw.handle = info->handle;
756 ring_req->operation = rq_data_dir(req) ?
757 BLKIF_OP_WRITE : BLKIF_OP_READ;
Mike Christie3a5e02c2016-06-05 14:32:23 -0500758 if (req_op(req) == REQ_OP_FLUSH || req->cmd_flags & REQ_FUA) {
Roger Pau Monne402b27f2013-04-18 16:06:54 +0200759 /*
Julien Grall33204662015-06-29 17:35:24 +0100760 * Ideally we can do an unordered flush-to-disk.
761 * In case the backend onlysupports barriers, use that.
762 * A barrier request a superset of FUA, so we can
763 * implement it the same way. (It's also a FLUSH+FUA,
764 * since it is guaranteed ordered WRT previous writes.)
Roger Pau Monne402b27f2013-04-18 16:06:54 +0200765 */
Julien Grall33204662015-06-29 17:35:24 +0100766 switch (info->feature_flush &
767 ((REQ_FLUSH|REQ_FUA))) {
768 case REQ_FLUSH|REQ_FUA:
769 ring_req->operation =
770 BLKIF_OP_WRITE_BARRIER;
771 break;
772 case REQ_FLUSH:
773 ring_req->operation =
774 BLKIF_OP_FLUSH_DISKCACHE;
775 break;
776 default:
777 ring_req->operation = 0;
Roger Pau Monne402b27f2013-04-18 16:06:54 +0200778 }
Li Dongyanged30bf32011-09-01 18:39:09 +0800779 }
Julien Grallc004a6f2015-07-22 16:44:54 +0100780 ring_req->u.rw.nr_segments = num_grant;
Julien Grall6cc568332015-08-13 13:13:35 +0100781 if (unlikely(require_extra_req)) {
782 extra_id = blkif_ring_get_request(rinfo, req,
783 &extra_ring_req);
784 /*
785 * Only the first request contains the scatter-gather
786 * list.
787 */
788 rinfo->shadow[extra_id].num_sg = 0;
789
790 blkif_setup_extra_req(ring_req, extra_ring_req);
791
792 /* Link the 2 requests together */
793 rinfo->shadow[extra_id].associated_id = id;
794 rinfo->shadow[id].associated_id = extra_id;
795 }
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700796 }
797
Julien Grallc004a6f2015-07-22 16:44:54 +0100798 setup.ring_req = ring_req;
799 setup.id = id;
Julien Grall6cc568332015-08-13 13:13:35 +0100800
801 setup.require_extra_req = require_extra_req;
802 if (unlikely(require_extra_req))
803 setup.extra_ring_req = extra_ring_req;
804
Bob Liu81f35162015-11-14 11:12:11 +0800805 for_each_sg(rinfo->shadow[id].sg, sg, num_sg, i) {
Julien Grallc004a6f2015-07-22 16:44:54 +0100806 BUG_ON(sg->offset + sg->length > PAGE_SIZE);
Julien Grall33204662015-06-29 17:35:24 +0100807
Julien Grallc004a6f2015-07-22 16:44:54 +0100808 if (setup.need_copy) {
809 setup.bvec_off = sg->offset;
810 setup.bvec_data = kmap_atomic(sg_page(sg));
Julien Grall33204662015-06-29 17:35:24 +0100811 }
812
Julien Grallc004a6f2015-07-22 16:44:54 +0100813 gnttab_foreach_grant_in_range(sg_page(sg),
814 sg->offset,
815 sg->length,
816 blkif_setup_rw_req_grant,
817 &setup);
Julien Grall33204662015-06-29 17:35:24 +0100818
Julien Grallc004a6f2015-07-22 16:44:54 +0100819 if (setup.need_copy)
820 kunmap_atomic(setup.bvec_data);
Julien Grall33204662015-06-29 17:35:24 +0100821 }
Julien Grallc004a6f2015-07-22 16:44:54 +0100822 if (setup.segments)
823 kunmap_atomic(setup.segments);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700824
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700825 /* Keep a private copy so we can reissue requests when recovering. */
Bob Liu81f35162015-11-14 11:12:11 +0800826 rinfo->shadow[id].req = *ring_req;
Julien Grall6cc568332015-08-13 13:13:35 +0100827 if (unlikely(require_extra_req))
828 rinfo->shadow[extra_id].req = *extra_ring_req;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700829
Bob Liu3df0e502015-11-14 11:12:12 +0800830 if (max_grefs > 0)
Julien Grallc004a6f2015-07-22 16:44:54 +0100831 gnttab_free_grant_references(setup.gref_head);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700832
833 return 0;
834}
835
Julien Grall33204662015-06-29 17:35:24 +0100836/*
837 * Generate a Xen blkfront IO request from a blk layer request. Reads
838 * and writes are handled as expected.
839 *
840 * @req: a request struct
841 */
Bob Liu81f35162015-11-14 11:12:11 +0800842static int blkif_queue_request(struct request *req, struct blkfront_ring_info *rinfo)
Julien Grall33204662015-06-29 17:35:24 +0100843{
Bob Liu81f35162015-11-14 11:12:11 +0800844 if (unlikely(rinfo->dev_info->connected != BLKIF_STATE_CONNECTED))
Julien Grall33204662015-06-29 17:35:24 +0100845 return 1;
846
Mike Christiec2df40d2016-06-05 14:32:17 -0500847 if (unlikely(req_op(req) == REQ_OP_DISCARD ||
848 req->cmd_flags & REQ_SECURE))
Bob Liu81f35162015-11-14 11:12:11 +0800849 return blkif_queue_discard_req(req, rinfo);
Julien Grall33204662015-06-29 17:35:24 +0100850 else
Bob Liu81f35162015-11-14 11:12:11 +0800851 return blkif_queue_rw_req(req, rinfo);
Julien Grall33204662015-06-29 17:35:24 +0100852}
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700853
Bob Liu81f35162015-11-14 11:12:11 +0800854static inline void flush_requests(struct blkfront_ring_info *rinfo)
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700855{
856 int notify;
857
Bob Liu81f35162015-11-14 11:12:11 +0800858 RING_PUSH_REQUESTS_AND_CHECK_NOTIFY(&rinfo->ring, notify);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700859
860 if (notify)
Bob Liu81f35162015-11-14 11:12:11 +0800861 notify_remote_via_irq(rinfo->irq);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700862}
863
Vitaly Kuznetsovad42d392014-12-01 14:01:13 +0100864static inline bool blkif_request_flush_invalid(struct request *req,
865 struct blkfront_info *info)
Arianna Avanzini0f1ca652014-08-22 13:20:02 +0200866{
867 return ((req->cmd_type != REQ_TYPE_FS) ||
Mike Christie3a5e02c2016-06-05 14:32:23 -0500868 ((req_op(req) == REQ_OP_FLUSH) &&
Vitaly Kuznetsovad42d392014-12-01 14:01:13 +0100869 !(info->feature_flush & REQ_FLUSH)) ||
870 ((req->cmd_flags & REQ_FUA) &&
871 !(info->feature_flush & REQ_FUA)));
Arianna Avanzini0f1ca652014-08-22 13:20:02 +0200872}
873
Bob Liu907c3eb2015-07-13 17:55:24 +0800874static int blkif_queue_rq(struct blk_mq_hw_ctx *hctx,
Konrad Rzeszutek Wilk6f03a7f2015-11-16 15:14:41 -0500875 const struct blk_mq_queue_data *qd)
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700876{
Bob Liu11659562015-11-14 11:12:13 +0800877 unsigned long flags;
Bob Liu81f35162015-11-14 11:12:11 +0800878 struct blkfront_ring_info *rinfo = (struct blkfront_ring_info *)hctx->driver_data;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700879
Bob Liu907c3eb2015-07-13 17:55:24 +0800880 blk_mq_start_request(qd->rq);
Bob Liu11659562015-11-14 11:12:13 +0800881 spin_lock_irqsave(&rinfo->ring_lock, flags);
Bob Liu81f35162015-11-14 11:12:11 +0800882 if (RING_FULL(&rinfo->ring))
Bob Liu907c3eb2015-07-13 17:55:24 +0800883 goto out_busy;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700884
Bob Liu81f35162015-11-14 11:12:11 +0800885 if (blkif_request_flush_invalid(qd->rq, rinfo->dev_info))
Bob Liu907c3eb2015-07-13 17:55:24 +0800886 goto out_err;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700887
Bob Liu81f35162015-11-14 11:12:11 +0800888 if (blkif_queue_request(qd->rq, rinfo))
Bob Liu907c3eb2015-07-13 17:55:24 +0800889 goto out_busy;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700890
Bob Liu81f35162015-11-14 11:12:11 +0800891 flush_requests(rinfo);
Bob Liu11659562015-11-14 11:12:13 +0800892 spin_unlock_irqrestore(&rinfo->ring_lock, flags);
Bob Liu907c3eb2015-07-13 17:55:24 +0800893 return BLK_MQ_RQ_QUEUE_OK;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700894
Bob Liu907c3eb2015-07-13 17:55:24 +0800895out_err:
Bob Liu11659562015-11-14 11:12:13 +0800896 spin_unlock_irqrestore(&rinfo->ring_lock, flags);
Bob Liu907c3eb2015-07-13 17:55:24 +0800897 return BLK_MQ_RQ_QUEUE_ERROR;
Tejun Heo296b2f62009-05-08 11:54:15 +0900898
Bob Liu907c3eb2015-07-13 17:55:24 +0800899out_busy:
Bob Liu11659562015-11-14 11:12:13 +0800900 spin_unlock_irqrestore(&rinfo->ring_lock, flags);
Bob Liu907c3eb2015-07-13 17:55:24 +0800901 blk_mq_stop_hw_queue(hctx);
902 return BLK_MQ_RQ_QUEUE_BUSY;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700903}
904
Bob Liu81f35162015-11-14 11:12:11 +0800905static int blk_mq_init_hctx(struct blk_mq_hw_ctx *hctx, void *data,
906 unsigned int index)
907{
908 struct blkfront_info *info = (struct blkfront_info *)data;
909
Bob Liu3df0e502015-11-14 11:12:12 +0800910 BUG_ON(info->nr_rings <= index);
911 hctx->driver_data = &info->rinfo[index];
Bob Liu81f35162015-11-14 11:12:11 +0800912 return 0;
913}
914
Bob Liu907c3eb2015-07-13 17:55:24 +0800915static struct blk_mq_ops blkfront_mq_ops = {
916 .queue_rq = blkif_queue_rq,
917 .map_queue = blk_mq_map_queue,
Bob Liu81f35162015-11-14 11:12:11 +0800918 .init_hctx = blk_mq_init_hctx,
Bob Liu907c3eb2015-07-13 17:55:24 +0800919};
920
Roger Pau Monne402b27f2013-04-18 16:06:54 +0200921static int xlvbd_init_blk_queue(struct gendisk *gd, u16 sector_size,
Stefan Bader7c4d7d72013-05-13 16:28:15 +0200922 unsigned int physical_sector_size,
Roger Pau Monne402b27f2013-04-18 16:06:54 +0200923 unsigned int segments)
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700924{
Jens Axboe165125e2007-07-24 09:28:11 +0200925 struct request_queue *rq;
Li Dongyanged30bf32011-09-01 18:39:09 +0800926 struct blkfront_info *info = gd->private_data;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700927
Bob Liu907c3eb2015-07-13 17:55:24 +0800928 memset(&info->tag_set, 0, sizeof(info->tag_set));
929 info->tag_set.ops = &blkfront_mq_ops;
Bob Liu28d949b2015-11-14 11:12:14 +0800930 info->tag_set.nr_hw_queues = info->nr_rings;
Julien Grall6cc568332015-08-13 13:13:35 +0100931 if (HAS_EXTRA_REQ && info->max_indirect_segments == 0) {
932 /*
933 * When indirect descriptior is not supported, the I/O request
934 * will be split between multiple request in the ring.
935 * To avoid problems when sending the request, divide by
936 * 2 the depth of the queue.
937 */
938 info->tag_set.queue_depth = BLK_RING_SIZE(info) / 2;
939 } else
940 info->tag_set.queue_depth = BLK_RING_SIZE(info);
Bob Liu907c3eb2015-07-13 17:55:24 +0800941 info->tag_set.numa_node = NUMA_NO_NODE;
942 info->tag_set.flags = BLK_MQ_F_SHOULD_MERGE | BLK_MQ_F_SG_MERGE;
943 info->tag_set.cmd_size = 0;
944 info->tag_set.driver_data = info;
945
946 if (blk_mq_alloc_tag_set(&info->tag_set))
Konrad Rzeszutek Wilkbde21f72015-11-25 13:07:39 -0500947 return -EINVAL;
Bob Liu907c3eb2015-07-13 17:55:24 +0800948 rq = blk_mq_init_queue(&info->tag_set);
949 if (IS_ERR(rq)) {
950 blk_mq_free_tag_set(&info->tag_set);
Konrad Rzeszutek Wilkbde21f72015-11-25 13:07:39 -0500951 return PTR_ERR(rq);
Bob Liu907c3eb2015-07-13 17:55:24 +0800952 }
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700953
Fernando Luis Vázquez Cao66d352e2008-10-27 18:45:54 +0900954 queue_flag_set_unlocked(QUEUE_FLAG_VIRT, rq);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700955
Li Dongyanged30bf32011-09-01 18:39:09 +0800956 if (info->feature_discard) {
957 queue_flag_set_unlocked(QUEUE_FLAG_DISCARD, rq);
958 blk_queue_max_discard_sectors(rq, get_capacity(gd));
959 rq->limits.discard_granularity = info->discard_granularity;
960 rq->limits.discard_alignment = info->discard_alignment;
Konrad Rzeszutek Wilk5ea42982011-10-12 16:23:30 -0400961 if (info->feature_secdiscard)
962 queue_flag_set_unlocked(QUEUE_FLAG_SECDISCARD, rq);
Li Dongyanged30bf32011-09-01 18:39:09 +0800963 }
964
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700965 /* Hard sector size and max sectors impersonate the equiv. hardware. */
Martin K. Petersene1defc42009-05-22 17:17:49 -0400966 blk_queue_logical_block_size(rq, sector_size);
Stefan Bader7c4d7d72013-05-13 16:28:15 +0200967 blk_queue_physical_block_size(rq, physical_sector_size);
Julien Grallc004a6f2015-07-22 16:44:54 +0100968 blk_queue_max_hw_sectors(rq, (segments * XEN_PAGE_SIZE) / 512);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700969
970 /* Each segment in a request is up to an aligned page in size. */
971 blk_queue_segment_boundary(rq, PAGE_SIZE - 1);
972 blk_queue_max_segment_size(rq, PAGE_SIZE);
973
974 /* Ensure a merged request will fit in a single I/O ring slot. */
Julien Grallc004a6f2015-07-22 16:44:54 +0100975 blk_queue_max_segments(rq, segments / GRANTS_PER_PSEG);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700976
977 /* Make sure buffer addresses are sector-aligned. */
978 blk_queue_dma_alignment(rq, 511);
979
Ian Campbell1c91fe12008-06-17 10:47:08 +0200980 /* Make sure we don't use bounce buffers. */
981 blk_queue_bounce_limit(rq, BLK_BOUNCE_ANY);
982
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700983 gd->queue = rq;
984
985 return 0;
986}
987
Vitaly Kuznetsovfdf9b962014-12-09 15:25:10 +0100988static const char *flush_info(unsigned int feature_flush)
989{
990 switch (feature_flush & ((REQ_FLUSH | REQ_FUA))) {
991 case REQ_FLUSH|REQ_FUA:
992 return "barrier: enabled;";
993 case REQ_FLUSH:
994 return "flush diskcache: enabled;";
995 default:
996 return "barrier or flush: disabled;";
997 }
998}
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700999
Tejun Heo4913efe2010-09-03 11:56:16 +02001000static void xlvbd_flush(struct blkfront_info *info)
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001001{
Jens Axboebfd230a2016-03-30 10:15:21 -06001002 blk_queue_write_cache(info->rq, info->feature_flush & REQ_FLUSH,
1003 info->feature_flush & REQ_FUA);
Vitaly Kuznetsovfdf9b962014-12-09 15:25:10 +01001004 pr_info("blkfront: %s: %s %s %s %s %s\n",
1005 info->gd->disk_name, flush_info(info->feature_flush),
1006 "persistent grants:", info->feature_persistent ?
1007 "enabled;" : "disabled;", "indirect descriptors:",
1008 info->max_indirect_segments ? "enabled;" : "disabled;");
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001009}
1010
Stefano Stabellinic80a4202010-12-02 17:55:00 +00001011static int xen_translate_vdev(int vdevice, int *minor, unsigned int *offset)
1012{
1013 int major;
1014 major = BLKIF_MAJOR(vdevice);
1015 *minor = BLKIF_MINOR(vdevice);
1016 switch (major) {
1017 case XEN_IDE0_MAJOR:
1018 *offset = (*minor / 64) + EMULATED_HD_DISK_NAME_OFFSET;
1019 *minor = ((*minor / 64) * PARTS_PER_DISK) +
1020 EMULATED_HD_DISK_MINOR_OFFSET;
1021 break;
1022 case XEN_IDE1_MAJOR:
1023 *offset = (*minor / 64) + 2 + EMULATED_HD_DISK_NAME_OFFSET;
1024 *minor = (((*minor / 64) + 2) * PARTS_PER_DISK) +
1025 EMULATED_HD_DISK_MINOR_OFFSET;
1026 break;
1027 case XEN_SCSI_DISK0_MAJOR:
1028 *offset = (*minor / PARTS_PER_DISK) + EMULATED_SD_DISK_NAME_OFFSET;
1029 *minor = *minor + EMULATED_SD_DISK_MINOR_OFFSET;
1030 break;
1031 case XEN_SCSI_DISK1_MAJOR:
1032 case XEN_SCSI_DISK2_MAJOR:
1033 case XEN_SCSI_DISK3_MAJOR:
1034 case XEN_SCSI_DISK4_MAJOR:
1035 case XEN_SCSI_DISK5_MAJOR:
1036 case XEN_SCSI_DISK6_MAJOR:
1037 case XEN_SCSI_DISK7_MAJOR:
1038 *offset = (*minor / PARTS_PER_DISK) +
1039 ((major - XEN_SCSI_DISK1_MAJOR + 1) * 16) +
1040 EMULATED_SD_DISK_NAME_OFFSET;
1041 *minor = *minor +
1042 ((major - XEN_SCSI_DISK1_MAJOR + 1) * 16 * PARTS_PER_DISK) +
1043 EMULATED_SD_DISK_MINOR_OFFSET;
1044 break;
1045 case XEN_SCSI_DISK8_MAJOR:
1046 case XEN_SCSI_DISK9_MAJOR:
1047 case XEN_SCSI_DISK10_MAJOR:
1048 case XEN_SCSI_DISK11_MAJOR:
1049 case XEN_SCSI_DISK12_MAJOR:
1050 case XEN_SCSI_DISK13_MAJOR:
1051 case XEN_SCSI_DISK14_MAJOR:
1052 case XEN_SCSI_DISK15_MAJOR:
1053 *offset = (*minor / PARTS_PER_DISK) +
1054 ((major - XEN_SCSI_DISK8_MAJOR + 8) * 16) +
1055 EMULATED_SD_DISK_NAME_OFFSET;
1056 *minor = *minor +
1057 ((major - XEN_SCSI_DISK8_MAJOR + 8) * 16 * PARTS_PER_DISK) +
1058 EMULATED_SD_DISK_MINOR_OFFSET;
1059 break;
1060 case XENVBD_MAJOR:
1061 *offset = *minor / PARTS_PER_DISK;
1062 break;
1063 default:
1064 printk(KERN_WARNING "blkfront: your disk configuration is "
1065 "incorrect, please use an xvd device instead\n");
1066 return -ENODEV;
1067 }
1068 return 0;
1069}
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001070
Jan Beuliche77c78c2012-04-05 16:37:22 +01001071static char *encode_disk_name(char *ptr, unsigned int n)
1072{
1073 if (n >= 26)
1074 ptr = encode_disk_name(ptr, n / 26 - 1);
1075 *ptr = 'a' + n % 26;
1076 return ptr + 1;
1077}
1078
Chris Lalancette9246b5f2008-09-17 14:30:32 -07001079static int xlvbd_alloc_gendisk(blkif_sector_t capacity,
1080 struct blkfront_info *info,
Stefan Bader7c4d7d72013-05-13 16:28:15 +02001081 u16 vdisk_info, u16 sector_size,
1082 unsigned int physical_sector_size)
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001083{
1084 struct gendisk *gd;
1085 int nr_minors = 1;
Stefano Stabellinic80a4202010-12-02 17:55:00 +00001086 int err;
Chris Lalancette9246b5f2008-09-17 14:30:32 -07001087 unsigned int offset;
1088 int minor;
1089 int nr_parts;
Jan Beuliche77c78c2012-04-05 16:37:22 +01001090 char *ptr;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001091
1092 BUG_ON(info->gd != NULL);
1093 BUG_ON(info->rq != NULL);
1094
Chris Lalancette9246b5f2008-09-17 14:30:32 -07001095 if ((info->vdevice>>EXT_SHIFT) > 1) {
1096 /* this is above the extended range; something is wrong */
1097 printk(KERN_WARNING "blkfront: vdevice 0x%x is above the extended range; ignoring\n", info->vdevice);
1098 return -ENODEV;
1099 }
1100
1101 if (!VDEV_IS_EXTENDED(info->vdevice)) {
Stefano Stabellinic80a4202010-12-02 17:55:00 +00001102 err = xen_translate_vdev(info->vdevice, &minor, &offset);
1103 if (err)
1104 return err;
1105 nr_parts = PARTS_PER_DISK;
Chris Lalancette9246b5f2008-09-17 14:30:32 -07001106 } else {
1107 minor = BLKIF_MINOR_EXT(info->vdevice);
1108 nr_parts = PARTS_PER_EXT_DISK;
Stefano Stabellinic80a4202010-12-02 17:55:00 +00001109 offset = minor / nr_parts;
Stefan Bader89153b52011-07-14 15:30:37 +02001110 if (xen_hvm_domain() && offset < EMULATED_HD_DISK_NAME_OFFSET + 4)
Stefano Stabellinic80a4202010-12-02 17:55:00 +00001111 printk(KERN_WARNING "blkfront: vdevice 0x%x might conflict with "
1112 "emulated IDE disks,\n\t choose an xvd device name"
1113 "from xvde on\n", info->vdevice);
Chris Lalancette9246b5f2008-09-17 14:30:32 -07001114 }
Jan Beuliche77c78c2012-04-05 16:37:22 +01001115 if (minor >> MINORBITS) {
1116 pr_warn("blkfront: %#x's minor (%#x) out of range; ignoring\n",
1117 info->vdevice, minor);
1118 return -ENODEV;
1119 }
Chris Lalancette9246b5f2008-09-17 14:30:32 -07001120
1121 if ((minor % nr_parts) == 0)
1122 nr_minors = nr_parts;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001123
Jan Beulich0e345822010-08-07 18:28:55 +02001124 err = xlbd_reserve_minors(minor, nr_minors);
1125 if (err)
1126 goto out;
1127 err = -ENODEV;
1128
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001129 gd = alloc_disk(nr_minors);
1130 if (gd == NULL)
Jan Beulich0e345822010-08-07 18:28:55 +02001131 goto release;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001132
Jan Beuliche77c78c2012-04-05 16:37:22 +01001133 strcpy(gd->disk_name, DEV_NAME);
1134 ptr = encode_disk_name(gd->disk_name + sizeof(DEV_NAME) - 1, offset);
1135 BUG_ON(ptr >= gd->disk_name + DISK_NAME_LEN);
1136 if (nr_minors > 1)
1137 *ptr = 0;
1138 else
1139 snprintf(ptr, gd->disk_name + DISK_NAME_LEN - ptr,
1140 "%d", minor & (nr_parts - 1));
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001141
1142 gd->major = XENVBD_MAJOR;
1143 gd->first_minor = minor;
1144 gd->fops = &xlvbd_block_fops;
1145 gd->private_data = info;
1146 gd->driverfs_dev = &(info->xbdev->dev);
1147 set_capacity(gd, capacity);
1148
Stefan Bader7c4d7d72013-05-13 16:28:15 +02001149 if (xlvbd_init_blk_queue(gd, sector_size, physical_sector_size,
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001150 info->max_indirect_segments ? :
1151 BLKIF_MAX_SEGMENTS_PER_REQUEST)) {
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001152 del_gendisk(gd);
Jan Beulich0e345822010-08-07 18:28:55 +02001153 goto release;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001154 }
1155
1156 info->rq = gd->queue;
1157 info->gd = gd;
1158
Tejun Heo4913efe2010-09-03 11:56:16 +02001159 xlvbd_flush(info);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001160
1161 if (vdisk_info & VDISK_READONLY)
1162 set_disk_ro(gd, 1);
1163
1164 if (vdisk_info & VDISK_REMOVABLE)
1165 gd->flags |= GENHD_FL_REMOVABLE;
1166
1167 if (vdisk_info & VDISK_CDROM)
1168 gd->flags |= GENHD_FL_CD;
1169
1170 return 0;
1171
Jan Beulich0e345822010-08-07 18:28:55 +02001172 release:
1173 xlbd_release_minors(minor, nr_minors);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001174 out:
1175 return err;
1176}
1177
Daniel Stoddena66b5ae2010-08-07 18:33:17 +02001178static void xlvbd_release_gendisk(struct blkfront_info *info)
1179{
Bob Liu3df0e502015-11-14 11:12:12 +08001180 unsigned int minor, nr_minors, i;
Daniel Stoddena66b5ae2010-08-07 18:33:17 +02001181
1182 if (info->rq == NULL)
1183 return;
1184
Daniel Stoddena66b5ae2010-08-07 18:33:17 +02001185 /* No more blkif_request(). */
Bob Liu907c3eb2015-07-13 17:55:24 +08001186 blk_mq_stop_hw_queues(info->rq);
Daniel Stoddena66b5ae2010-08-07 18:33:17 +02001187
Bob Liu3df0e502015-11-14 11:12:12 +08001188 for (i = 0; i < info->nr_rings; i++) {
1189 struct blkfront_ring_info *rinfo = &info->rinfo[i];
Daniel Stoddena66b5ae2010-08-07 18:33:17 +02001190
Bob Liu3df0e502015-11-14 11:12:12 +08001191 /* No more gnttab callback work. */
1192 gnttab_cancel_free_callback(&rinfo->callback);
1193
1194 /* Flush gnttab callback work. Must be done with no locks held. */
1195 flush_work(&rinfo->work);
1196 }
Daniel Stoddena66b5ae2010-08-07 18:33:17 +02001197
1198 del_gendisk(info->gd);
1199
1200 minor = info->gd->first_minor;
1201 nr_minors = info->gd->minors;
1202 xlbd_release_minors(minor, nr_minors);
1203
1204 blk_cleanup_queue(info->rq);
Bob Liu907c3eb2015-07-13 17:55:24 +08001205 blk_mq_free_tag_set(&info->tag_set);
Daniel Stoddena66b5ae2010-08-07 18:33:17 +02001206 info->rq = NULL;
1207
1208 put_disk(info->gd);
1209 info->gd = NULL;
1210}
1211
Bob Liu11659562015-11-14 11:12:13 +08001212/* Already hold rinfo->ring_lock. */
1213static inline void kick_pending_request_queues_locked(struct blkfront_ring_info *rinfo)
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001214{
Bob Liu81f35162015-11-14 11:12:11 +08001215 if (!RING_FULL(&rinfo->ring))
1216 blk_mq_start_stopped_hw_queues(rinfo->dev_info->rq, true);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001217}
1218
Bob Liu11659562015-11-14 11:12:13 +08001219static void kick_pending_request_queues(struct blkfront_ring_info *rinfo)
1220{
1221 unsigned long flags;
1222
1223 spin_lock_irqsave(&rinfo->ring_lock, flags);
1224 kick_pending_request_queues_locked(rinfo);
1225 spin_unlock_irqrestore(&rinfo->ring_lock, flags);
1226}
1227
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001228static void blkif_restart_queue(struct work_struct *work)
1229{
Bob Liu81f35162015-11-14 11:12:11 +08001230 struct blkfront_ring_info *rinfo = container_of(work, struct blkfront_ring_info, work);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001231
Bob Liu81f35162015-11-14 11:12:11 +08001232 if (rinfo->dev_info->connected == BLKIF_STATE_CONNECTED)
1233 kick_pending_request_queues(rinfo);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001234}
1235
Bob Liu3df0e502015-11-14 11:12:12 +08001236static void blkif_free_ring(struct blkfront_ring_info *rinfo)
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001237{
Bob Liu73716df2015-11-16 16:51:39 -05001238 struct grant *persistent_gnt, *n;
Bob Liu3df0e502015-11-14 11:12:12 +08001239 struct blkfront_info *info = rinfo->dev_info;
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001240 int i, j, segs;
Roger Pau Monne0a8704a2012-10-24 18:58:45 +02001241
Roger Pau Monnebfe11d62013-10-29 18:31:14 +01001242 /*
1243 * Remove indirect pages, this only happens when using indirect
1244 * descriptors but not persistent grants
1245 */
Bob Liu81f35162015-11-14 11:12:11 +08001246 if (!list_empty(&rinfo->indirect_pages)) {
Roger Pau Monnebfe11d62013-10-29 18:31:14 +01001247 struct page *indirect_page, *n;
1248
1249 BUG_ON(info->feature_persistent);
Bob Liu81f35162015-11-14 11:12:11 +08001250 list_for_each_entry_safe(indirect_page, n, &rinfo->indirect_pages, lru) {
Roger Pau Monnebfe11d62013-10-29 18:31:14 +01001251 list_del(&indirect_page->lru);
1252 __free_page(indirect_page);
1253 }
1254 }
1255
Bob Liu73716df2015-11-16 16:51:39 -05001256 /* Remove all persistent grants. */
1257 if (!list_empty(&rinfo->grants)) {
1258 list_for_each_entry_safe(persistent_gnt, n,
1259 &rinfo->grants, node) {
1260 list_del(&persistent_gnt->node);
1261 if (persistent_gnt->gref != GRANT_INVALID_REF) {
1262 gnttab_end_foreign_access(persistent_gnt->gref,
1263 0, 0UL);
1264 rinfo->persistent_gnts_c--;
1265 }
1266 if (info->feature_persistent)
1267 __free_page(persistent_gnt->page);
1268 kfree(persistent_gnt);
1269 }
1270 }
1271 BUG_ON(rinfo->persistent_gnts_c != 0);
1272
Bob Liu86839c52015-06-03 13:40:03 +08001273 for (i = 0; i < BLK_RING_SIZE(info); i++) {
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001274 /*
1275 * Clear persistent grants present in requests already
1276 * on the shared ring
1277 */
Bob Liu81f35162015-11-14 11:12:11 +08001278 if (!rinfo->shadow[i].request)
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001279 goto free_shadow;
1280
Bob Liu81f35162015-11-14 11:12:11 +08001281 segs = rinfo->shadow[i].req.operation == BLKIF_OP_INDIRECT ?
1282 rinfo->shadow[i].req.u.indirect.nr_segments :
1283 rinfo->shadow[i].req.u.rw.nr_segments;
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001284 for (j = 0; j < segs; j++) {
Bob Liu81f35162015-11-14 11:12:11 +08001285 persistent_gnt = rinfo->shadow[i].grants_used[j];
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001286 gnttab_end_foreign_access(persistent_gnt->gref, 0, 0UL);
Roger Pau Monnebfe11d62013-10-29 18:31:14 +01001287 if (info->feature_persistent)
Julien Gralla7a6df22015-06-30 11:58:51 +01001288 __free_page(persistent_gnt->page);
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001289 kfree(persistent_gnt);
1290 }
1291
Bob Liu81f35162015-11-14 11:12:11 +08001292 if (rinfo->shadow[i].req.operation != BLKIF_OP_INDIRECT)
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001293 /*
1294 * If this is not an indirect operation don't try to
1295 * free indirect segments
1296 */
1297 goto free_shadow;
1298
1299 for (j = 0; j < INDIRECT_GREFS(segs); j++) {
Bob Liu81f35162015-11-14 11:12:11 +08001300 persistent_gnt = rinfo->shadow[i].indirect_grants[j];
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001301 gnttab_end_foreign_access(persistent_gnt->gref, 0, 0UL);
Julien Gralla7a6df22015-06-30 11:58:51 +01001302 __free_page(persistent_gnt->page);
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001303 kfree(persistent_gnt);
1304 }
1305
1306free_shadow:
Bob Liu81f35162015-11-14 11:12:11 +08001307 kfree(rinfo->shadow[i].grants_used);
1308 rinfo->shadow[i].grants_used = NULL;
1309 kfree(rinfo->shadow[i].indirect_grants);
1310 rinfo->shadow[i].indirect_grants = NULL;
1311 kfree(rinfo->shadow[i].sg);
1312 rinfo->shadow[i].sg = NULL;
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001313 }
1314
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001315 /* No more gnttab callback work. */
Bob Liu81f35162015-11-14 11:12:11 +08001316 gnttab_cancel_free_callback(&rinfo->callback);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001317
1318 /* Flush gnttab callback work. Must be done with no locks held. */
Bob Liu81f35162015-11-14 11:12:11 +08001319 flush_work(&rinfo->work);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001320
1321 /* Free resources associated with old device channel. */
Bob Liu86839c52015-06-03 13:40:03 +08001322 for (i = 0; i < info->nr_ring_pages; i++) {
Bob Liu81f35162015-11-14 11:12:11 +08001323 if (rinfo->ring_ref[i] != GRANT_INVALID_REF) {
1324 gnttab_end_foreign_access(rinfo->ring_ref[i], 0, 0);
1325 rinfo->ring_ref[i] = GRANT_INVALID_REF;
Bob Liu86839c52015-06-03 13:40:03 +08001326 }
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001327 }
Bob Liu81f35162015-11-14 11:12:11 +08001328 free_pages((unsigned long)rinfo->ring.sring, get_order(info->nr_ring_pages * PAGE_SIZE));
1329 rinfo->ring.sring = NULL;
Bob Liu86839c52015-06-03 13:40:03 +08001330
Bob Liu81f35162015-11-14 11:12:11 +08001331 if (rinfo->irq)
1332 unbind_from_irqhandler(rinfo->irq, rinfo);
1333 rinfo->evtchn = rinfo->irq = 0;
Bob Liu3df0e502015-11-14 11:12:12 +08001334}
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001335
Bob Liu3df0e502015-11-14 11:12:12 +08001336static void blkif_free(struct blkfront_info *info, int suspend)
1337{
Bob Liu3df0e502015-11-14 11:12:12 +08001338 unsigned int i;
1339
1340 /* Prevent new requests being issued until we fix things up. */
Bob Liu3df0e502015-11-14 11:12:12 +08001341 info->connected = suspend ?
1342 BLKIF_STATE_SUSPENDED : BLKIF_STATE_DISCONNECTED;
1343 /* No more blkif_request(). */
1344 if (info->rq)
1345 blk_mq_stop_hw_queues(info->rq);
1346
Bob Liu3df0e502015-11-14 11:12:12 +08001347 for (i = 0; i < info->nr_rings; i++)
1348 blkif_free_ring(&info->rinfo[i]);
1349
1350 kfree(info->rinfo);
1351 info->rinfo = NULL;
1352 info->nr_rings = 0;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001353}
1354
Julien Grallc004a6f2015-07-22 16:44:54 +01001355struct copy_from_grant {
1356 const struct blk_shadow *s;
1357 unsigned int grant_idx;
1358 unsigned int bvec_offset;
1359 char *bvec_data;
1360};
1361
1362static void blkif_copy_from_grant(unsigned long gfn, unsigned int offset,
1363 unsigned int len, void *data)
1364{
1365 struct copy_from_grant *info = data;
1366 char *shared_data;
1367 /* Convenient aliases */
1368 const struct blk_shadow *s = info->s;
1369
1370 shared_data = kmap_atomic(s->grants_used[info->grant_idx]->page);
1371
1372 memcpy(info->bvec_data + info->bvec_offset,
1373 shared_data + offset, len);
1374
1375 info->bvec_offset += len;
1376 info->grant_idx++;
1377
1378 kunmap_atomic(shared_data);
1379}
1380
Julien Grall6cc568332015-08-13 13:13:35 +01001381static enum blk_req_status blkif_rsp_to_req_status(int rsp)
1382{
1383 switch (rsp)
1384 {
1385 case BLKIF_RSP_OKAY:
1386 return REQ_DONE;
1387 case BLKIF_RSP_EOPNOTSUPP:
1388 return REQ_EOPNOTSUPP;
1389 case BLKIF_RSP_ERROR:
1390 /* Fallthrough. */
1391 default:
1392 return REQ_ERROR;
1393 }
1394}
1395
1396/*
1397 * Get the final status of the block request based on two ring response
1398 */
1399static int blkif_get_final_status(enum blk_req_status s1,
1400 enum blk_req_status s2)
1401{
1402 BUG_ON(s1 == REQ_WAITING);
1403 BUG_ON(s2 == REQ_WAITING);
1404
1405 if (s1 == REQ_ERROR || s2 == REQ_ERROR)
1406 return BLKIF_RSP_ERROR;
1407 else if (s1 == REQ_EOPNOTSUPP || s2 == REQ_EOPNOTSUPP)
1408 return BLKIF_RSP_EOPNOTSUPP;
1409 return BLKIF_RSP_OKAY;
1410}
1411
1412static bool blkif_completion(unsigned long *id,
1413 struct blkfront_ring_info *rinfo,
Roger Pau Monne0a8704a2012-10-24 18:58:45 +02001414 struct blkif_response *bret)
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001415{
Roger Pau Monned62f6912012-12-07 19:00:31 +01001416 int i = 0;
Roger Pau Monneb7649152013-05-02 10:58:50 +02001417 struct scatterlist *sg;
Julien Grallc004a6f2015-07-22 16:44:54 +01001418 int num_sg, num_grant;
Bob Liu81f35162015-11-14 11:12:11 +08001419 struct blkfront_info *info = rinfo->dev_info;
Julien Grall6cc568332015-08-13 13:13:35 +01001420 struct blk_shadow *s = &rinfo->shadow[*id];
Julien Grallc004a6f2015-07-22 16:44:54 +01001421 struct copy_from_grant data = {
Julien Grallc004a6f2015-07-22 16:44:54 +01001422 .grant_idx = 0,
1423 };
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001424
Julien Grallc004a6f2015-07-22 16:44:54 +01001425 num_grant = s->req.operation == BLKIF_OP_INDIRECT ?
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001426 s->req.u.indirect.nr_segments : s->req.u.rw.nr_segments;
Julien Grall6cc568332015-08-13 13:13:35 +01001427
1428 /* The I/O request may be split in two. */
1429 if (unlikely(s->associated_id != NO_ASSOCIATED_ID)) {
1430 struct blk_shadow *s2 = &rinfo->shadow[s->associated_id];
1431
1432 /* Keep the status of the current response in shadow. */
1433 s->status = blkif_rsp_to_req_status(bret->status);
1434
1435 /* Wait the second response if not yet here. */
1436 if (s2->status == REQ_WAITING)
1437 return 0;
1438
1439 bret->status = blkif_get_final_status(s->status,
1440 s2->status);
1441
1442 /*
1443 * All the grants is stored in the first shadow in order
1444 * to make the completion code simpler.
1445 */
1446 num_grant += s2->req.u.rw.nr_segments;
1447
1448 /*
1449 * The two responses may not come in order. Only the
1450 * first request will store the scatter-gather list.
1451 */
1452 if (s2->num_sg != 0) {
1453 /* Update "id" with the ID of the first response. */
1454 *id = s->associated_id;
1455 s = s2;
1456 }
1457
1458 /*
1459 * We don't need anymore the second request, so recycling
1460 * it now.
1461 */
1462 if (add_id_to_freelist(rinfo, s->associated_id))
1463 WARN(1, "%s: can't recycle the second part (id = %ld) of the request\n",
1464 info->gd->disk_name, s->associated_id);
1465 }
1466
1467 data.s = s;
Julien Grallc004a6f2015-07-22 16:44:54 +01001468 num_sg = s->num_sg;
Roger Pau Monne0a8704a2012-10-24 18:58:45 +02001469
Roger Pau Monnebfe11d62013-10-29 18:31:14 +01001470 if (bret->operation == BLKIF_OP_READ && info->feature_persistent) {
Julien Grallc004a6f2015-07-22 16:44:54 +01001471 for_each_sg(s->sg, sg, num_sg, i) {
Roger Pau Monneb7649152013-05-02 10:58:50 +02001472 BUG_ON(sg->offset + sg->length > PAGE_SIZE);
Julien Grallc004a6f2015-07-22 16:44:54 +01001473
1474 data.bvec_offset = sg->offset;
1475 data.bvec_data = kmap_atomic(sg_page(sg));
1476
1477 gnttab_foreach_grant_in_range(sg_page(sg),
1478 sg->offset,
1479 sg->length,
1480 blkif_copy_from_grant,
1481 &data);
1482
1483 kunmap_atomic(data.bvec_data);
Roger Pau Monne0a8704a2012-10-24 18:58:45 +02001484 }
1485 }
1486 /* Add the persistent grant into the list of free grants */
Julien Grallc004a6f2015-07-22 16:44:54 +01001487 for (i = 0; i < num_grant; i++) {
Roger Pau Monnefbe363c2013-08-12 12:53:44 +02001488 if (gnttab_query_foreign_access(s->grants_used[i]->gref)) {
1489 /*
1490 * If the grant is still mapped by the backend (the
1491 * backend has chosen to make this grant persistent)
1492 * we add it at the head of the list, so it will be
1493 * reused first.
1494 */
Roger Pau Monnebfe11d62013-10-29 18:31:14 +01001495 if (!info->feature_persistent)
1496 pr_alert_ratelimited("backed has not unmapped grant: %u\n",
1497 s->grants_used[i]->gref);
Bob Liu73716df2015-11-16 16:51:39 -05001498 list_add(&s->grants_used[i]->node, &rinfo->grants);
1499 rinfo->persistent_gnts_c++;
Roger Pau Monnefbe363c2013-08-12 12:53:44 +02001500 } else {
1501 /*
1502 * If the grant is not mapped by the backend we end the
1503 * foreign access and add it to the tail of the list,
1504 * so it will not be picked again unless we run out of
1505 * persistent grants.
1506 */
1507 gnttab_end_foreign_access(s->grants_used[i]->gref, 0, 0UL);
1508 s->grants_used[i]->gref = GRANT_INVALID_REF;
Bob Liu73716df2015-11-16 16:51:39 -05001509 list_add_tail(&s->grants_used[i]->node, &rinfo->grants);
Roger Pau Monnefbe363c2013-08-12 12:53:44 +02001510 }
Roger Pau Monne0a8704a2012-10-24 18:58:45 +02001511 }
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001512 if (s->req.operation == BLKIF_OP_INDIRECT) {
Julien Grallc004a6f2015-07-22 16:44:54 +01001513 for (i = 0; i < INDIRECT_GREFS(num_grant); i++) {
Roger Pau Monnefbe363c2013-08-12 12:53:44 +02001514 if (gnttab_query_foreign_access(s->indirect_grants[i]->gref)) {
Roger Pau Monnebfe11d62013-10-29 18:31:14 +01001515 if (!info->feature_persistent)
1516 pr_alert_ratelimited("backed has not unmapped grant: %u\n",
1517 s->indirect_grants[i]->gref);
Bob Liu73716df2015-11-16 16:51:39 -05001518 list_add(&s->indirect_grants[i]->node, &rinfo->grants);
1519 rinfo->persistent_gnts_c++;
Roger Pau Monnefbe363c2013-08-12 12:53:44 +02001520 } else {
Roger Pau Monnebfe11d62013-10-29 18:31:14 +01001521 struct page *indirect_page;
1522
Roger Pau Monnefbe363c2013-08-12 12:53:44 +02001523 gnttab_end_foreign_access(s->indirect_grants[i]->gref, 0, 0UL);
Roger Pau Monnebfe11d62013-10-29 18:31:14 +01001524 /*
1525 * Add the used indirect page back to the list of
1526 * available pages for indirect grefs.
1527 */
Bob Liu7b076752015-07-22 14:40:09 +08001528 if (!info->feature_persistent) {
Julien Gralla7a6df22015-06-30 11:58:51 +01001529 indirect_page = s->indirect_grants[i]->page;
Bob Liu81f35162015-11-14 11:12:11 +08001530 list_add(&indirect_page->lru, &rinfo->indirect_pages);
Bob Liu7b076752015-07-22 14:40:09 +08001531 }
Roger Pau Monnefbe363c2013-08-12 12:53:44 +02001532 s->indirect_grants[i]->gref = GRANT_INVALID_REF;
Bob Liu73716df2015-11-16 16:51:39 -05001533 list_add_tail(&s->indirect_grants[i]->node, &rinfo->grants);
Roger Pau Monnefbe363c2013-08-12 12:53:44 +02001534 }
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001535 }
1536 }
Julien Grall6cc568332015-08-13 13:13:35 +01001537
1538 return 1;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001539}
1540
1541static irqreturn_t blkif_interrupt(int irq, void *dev_id)
1542{
1543 struct request *req;
1544 struct blkif_response *bret;
1545 RING_IDX i, rp;
1546 unsigned long flags;
Bob Liu81f35162015-11-14 11:12:11 +08001547 struct blkfront_ring_info *rinfo = (struct blkfront_ring_info *)dev_id;
1548 struct blkfront_info *info = rinfo->dev_info;
Christoph Hellwigf4829a92015-09-27 21:01:50 +02001549 int error;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001550
Bob Liu11659562015-11-14 11:12:13 +08001551 if (unlikely(info->connected != BLKIF_STATE_CONNECTED))
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001552 return IRQ_HANDLED;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001553
Bob Liu11659562015-11-14 11:12:13 +08001554 spin_lock_irqsave(&rinfo->ring_lock, flags);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001555 again:
Bob Liu81f35162015-11-14 11:12:11 +08001556 rp = rinfo->ring.sring->rsp_prod;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001557 rmb(); /* Ensure we see queued responses up to 'rp'. */
1558
Bob Liu81f35162015-11-14 11:12:11 +08001559 for (i = rinfo->ring.rsp_cons; i != rp; i++) {
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001560 unsigned long id;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001561
Bob Liu81f35162015-11-14 11:12:11 +08001562 bret = RING_GET_RESPONSE(&rinfo->ring, i);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001563 id = bret->id;
Konrad Rzeszutek Wilk6878c322012-05-25 17:34:51 -04001564 /*
1565 * The backend has messed up and given us an id that we would
1566 * never have given to it (we stamp it up to BLK_RING_SIZE -
1567 * look in get_id_from_freelist.
1568 */
Bob Liu86839c52015-06-03 13:40:03 +08001569 if (id >= BLK_RING_SIZE(info)) {
Konrad Rzeszutek Wilk6878c322012-05-25 17:34:51 -04001570 WARN(1, "%s: response to %s has incorrect id (%ld)\n",
1571 info->gd->disk_name, op_name(bret->operation), id);
1572 /* We can't safely get the 'struct request' as
1573 * the id is busted. */
1574 continue;
1575 }
Bob Liu81f35162015-11-14 11:12:11 +08001576 req = rinfo->shadow[id].request;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001577
Julien Grall6cc568332015-08-13 13:13:35 +01001578 if (bret->operation != BLKIF_OP_DISCARD) {
1579 /*
1580 * We may need to wait for an extra response if the
1581 * I/O request is split in 2
1582 */
1583 if (!blkif_completion(&id, rinfo, bret))
1584 continue;
1585 }
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001586
Bob Liu81f35162015-11-14 11:12:11 +08001587 if (add_id_to_freelist(rinfo, id)) {
Konrad Rzeszutek Wilk6878c322012-05-25 17:34:51 -04001588 WARN(1, "%s: response to %s (id %ld) couldn't be recycled!\n",
1589 info->gd->disk_name, op_name(bret->operation), id);
1590 continue;
1591 }
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001592
Christoph Hellwigf4829a92015-09-27 21:01:50 +02001593 error = (bret->status == BLKIF_RSP_OKAY) ? 0 : -EIO;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001594 switch (bret->operation) {
Li Dongyanged30bf32011-09-01 18:39:09 +08001595 case BLKIF_OP_DISCARD:
1596 if (unlikely(bret->status == BLKIF_RSP_EOPNOTSUPP)) {
1597 struct request_queue *rq = info->rq;
Konrad Rzeszutek Wilk6878c322012-05-25 17:34:51 -04001598 printk(KERN_WARNING "blkfront: %s: %s op failed\n",
1599 info->gd->disk_name, op_name(bret->operation));
Christoph Hellwigf4829a92015-09-27 21:01:50 +02001600 error = -EOPNOTSUPP;
Li Dongyanged30bf32011-09-01 18:39:09 +08001601 info->feature_discard = 0;
Konrad Rzeszutek Wilk5ea42982011-10-12 16:23:30 -04001602 info->feature_secdiscard = 0;
Li Dongyanged30bf32011-09-01 18:39:09 +08001603 queue_flag_clear(QUEUE_FLAG_DISCARD, rq);
Konrad Rzeszutek Wilk5ea42982011-10-12 16:23:30 -04001604 queue_flag_clear(QUEUE_FLAG_SECDISCARD, rq);
Li Dongyanged30bf32011-09-01 18:39:09 +08001605 }
Christoph Hellwigf4829a92015-09-27 21:01:50 +02001606 blk_mq_complete_request(req, error);
Li Dongyanged30bf32011-09-01 18:39:09 +08001607 break;
Konrad Rzeszutek Wilkedf6ef52011-05-03 12:01:11 -04001608 case BLKIF_OP_FLUSH_DISKCACHE:
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001609 case BLKIF_OP_WRITE_BARRIER:
1610 if (unlikely(bret->status == BLKIF_RSP_EOPNOTSUPP)) {
Konrad Rzeszutek Wilk6878c322012-05-25 17:34:51 -04001611 printk(KERN_WARNING "blkfront: %s: %s op failed\n",
1612 info->gd->disk_name, op_name(bret->operation));
Christoph Hellwigf4829a92015-09-27 21:01:50 +02001613 error = -EOPNOTSUPP;
Jeremy Fitzhardingedcb8bae2010-11-02 11:55:58 -04001614 }
1615 if (unlikely(bret->status == BLKIF_RSP_ERROR &&
Bob Liu81f35162015-11-14 11:12:11 +08001616 rinfo->shadow[id].req.u.rw.nr_segments == 0)) {
Konrad Rzeszutek Wilk6878c322012-05-25 17:34:51 -04001617 printk(KERN_WARNING "blkfront: %s: empty %s op failed\n",
1618 info->gd->disk_name, op_name(bret->operation));
Christoph Hellwigf4829a92015-09-27 21:01:50 +02001619 error = -EOPNOTSUPP;
Jeremy Fitzhardingedcb8bae2010-11-02 11:55:58 -04001620 }
Christoph Hellwigf4829a92015-09-27 21:01:50 +02001621 if (unlikely(error)) {
1622 if (error == -EOPNOTSUPP)
1623 error = 0;
Tejun Heo4913efe2010-09-03 11:56:16 +02001624 info->feature_flush = 0;
1625 xlvbd_flush(info);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001626 }
1627 /* fall through */
1628 case BLKIF_OP_READ:
1629 case BLKIF_OP_WRITE:
1630 if (unlikely(bret->status != BLKIF_RSP_OKAY))
1631 dev_dbg(&info->xbdev->dev, "Bad return from blkdev data "
1632 "request: %x\n", bret->status);
1633
Christoph Hellwigf4829a92015-09-27 21:01:50 +02001634 blk_mq_complete_request(req, error);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001635 break;
1636 default:
1637 BUG();
1638 }
1639 }
1640
Bob Liu81f35162015-11-14 11:12:11 +08001641 rinfo->ring.rsp_cons = i;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001642
Bob Liu81f35162015-11-14 11:12:11 +08001643 if (i != rinfo->ring.req_prod_pvt) {
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001644 int more_to_do;
Bob Liu81f35162015-11-14 11:12:11 +08001645 RING_FINAL_CHECK_FOR_RESPONSES(&rinfo->ring, more_to_do);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001646 if (more_to_do)
1647 goto again;
1648 } else
Bob Liu81f35162015-11-14 11:12:11 +08001649 rinfo->ring.sring->rsp_event = i + 1;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001650
Bob Liu11659562015-11-14 11:12:13 +08001651 kick_pending_request_queues_locked(rinfo);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001652
Bob Liu11659562015-11-14 11:12:13 +08001653 spin_unlock_irqrestore(&rinfo->ring_lock, flags);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001654
1655 return IRQ_HANDLED;
1656}
1657
1658
1659static int setup_blkring(struct xenbus_device *dev,
Bob Liu81f35162015-11-14 11:12:11 +08001660 struct blkfront_ring_info *rinfo)
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001661{
1662 struct blkif_sring *sring;
Bob Liu86839c52015-06-03 13:40:03 +08001663 int err, i;
Bob Liu81f35162015-11-14 11:12:11 +08001664 struct blkfront_info *info = rinfo->dev_info;
Julien Grallc004a6f2015-07-22 16:44:54 +01001665 unsigned long ring_size = info->nr_ring_pages * XEN_PAGE_SIZE;
Julien Grall9cce2912015-10-13 17:50:11 +01001666 grant_ref_t gref[XENBUS_MAX_RING_GRANTS];
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001667
Bob Liu86839c52015-06-03 13:40:03 +08001668 for (i = 0; i < info->nr_ring_pages; i++)
Bob Liu81f35162015-11-14 11:12:11 +08001669 rinfo->ring_ref[i] = GRANT_INVALID_REF;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001670
Bob Liu86839c52015-06-03 13:40:03 +08001671 sring = (struct blkif_sring *)__get_free_pages(GFP_NOIO | __GFP_HIGH,
1672 get_order(ring_size));
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001673 if (!sring) {
1674 xenbus_dev_fatal(dev, -ENOMEM, "allocating shared ring");
1675 return -ENOMEM;
1676 }
1677 SHARED_RING_INIT(sring);
Bob Liu81f35162015-11-14 11:12:11 +08001678 FRONT_RING_INIT(&rinfo->ring, sring, ring_size);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001679
Bob Liu81f35162015-11-14 11:12:11 +08001680 err = xenbus_grant_ring(dev, rinfo->ring.sring, info->nr_ring_pages, gref);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001681 if (err < 0) {
Bob Liu86839c52015-06-03 13:40:03 +08001682 free_pages((unsigned long)sring, get_order(ring_size));
Bob Liu81f35162015-11-14 11:12:11 +08001683 rinfo->ring.sring = NULL;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001684 goto fail;
1685 }
Bob Liu86839c52015-06-03 13:40:03 +08001686 for (i = 0; i < info->nr_ring_pages; i++)
Bob Liu81f35162015-11-14 11:12:11 +08001687 rinfo->ring_ref[i] = gref[i];
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001688
Bob Liu81f35162015-11-14 11:12:11 +08001689 err = xenbus_alloc_evtchn(dev, &rinfo->evtchn);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001690 if (err)
1691 goto fail;
1692
Bob Liu81f35162015-11-14 11:12:11 +08001693 err = bind_evtchn_to_irqhandler(rinfo->evtchn, blkif_interrupt, 0,
1694 "blkif", rinfo);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001695 if (err <= 0) {
1696 xenbus_dev_fatal(dev, err,
1697 "bind_evtchn_to_irqhandler failed");
1698 goto fail;
1699 }
Bob Liu81f35162015-11-14 11:12:11 +08001700 rinfo->irq = err;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001701
1702 return 0;
1703fail:
1704 blkif_free(info, 0);
1705 return err;
1706}
1707
Bob Liu28d949b2015-11-14 11:12:14 +08001708/*
1709 * Write out per-ring/queue nodes including ring-ref and event-channel, and each
1710 * ring buffer may have multi pages depending on ->nr_ring_pages.
1711 */
1712static int write_per_ring_nodes(struct xenbus_transaction xbt,
1713 struct blkfront_ring_info *rinfo, const char *dir)
1714{
1715 int err;
1716 unsigned int i;
1717 const char *message = NULL;
1718 struct blkfront_info *info = rinfo->dev_info;
1719
1720 if (info->nr_ring_pages == 1) {
1721 err = xenbus_printf(xbt, dir, "ring-ref", "%u", rinfo->ring_ref[0]);
1722 if (err) {
1723 message = "writing ring-ref";
1724 goto abort_transaction;
1725 }
1726 } else {
1727 for (i = 0; i < info->nr_ring_pages; i++) {
1728 char ring_ref_name[RINGREF_NAME_LEN];
1729
1730 snprintf(ring_ref_name, RINGREF_NAME_LEN, "ring-ref%u", i);
1731 err = xenbus_printf(xbt, dir, ring_ref_name,
1732 "%u", rinfo->ring_ref[i]);
1733 if (err) {
1734 message = "writing ring-ref";
1735 goto abort_transaction;
1736 }
1737 }
1738 }
1739
1740 err = xenbus_printf(xbt, dir, "event-channel", "%u", rinfo->evtchn);
1741 if (err) {
1742 message = "writing event-channel";
1743 goto abort_transaction;
1744 }
1745
1746 return 0;
1747
1748abort_transaction:
1749 xenbus_transaction_end(xbt, 1);
1750 if (message)
1751 xenbus_dev_fatal(info->xbdev, err, "%s", message);
1752
1753 return err;
1754}
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001755
1756/* Common code used when first setting up, and when resuming. */
Ian Campbell203fd612009-12-04 15:33:54 +00001757static int talk_to_blkback(struct xenbus_device *dev,
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001758 struct blkfront_info *info)
1759{
1760 const char *message = NULL;
1761 struct xenbus_transaction xbt;
Bob Liu28d949b2015-11-14 11:12:14 +08001762 int err;
1763 unsigned int i, max_page_order = 0;
Bob Liu86839c52015-06-03 13:40:03 +08001764 unsigned int ring_page_order = 0;
1765
1766 err = xenbus_scanf(XBT_NIL, info->xbdev->otherend,
1767 "max-ring-page-order", "%u", &max_page_order);
1768 if (err != 1)
1769 info->nr_ring_pages = 1;
1770 else {
1771 ring_page_order = min(xen_blkif_max_ring_order, max_page_order);
1772 info->nr_ring_pages = 1 << ring_page_order;
1773 }
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001774
Bob Liu3df0e502015-11-14 11:12:12 +08001775 for (i = 0; i < info->nr_rings; i++) {
Bob Liu28d949b2015-11-14 11:12:14 +08001776 struct blkfront_ring_info *rinfo = &info->rinfo[i];
1777
Bob Liu3df0e502015-11-14 11:12:12 +08001778 /* Create shared ring, alloc event channel. */
1779 err = setup_blkring(dev, rinfo);
1780 if (err)
1781 goto destroy_blkring;
1782 }
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001783
1784again:
1785 err = xenbus_transaction_start(&xbt);
1786 if (err) {
1787 xenbus_dev_fatal(dev, err, "starting transaction");
1788 goto destroy_blkring;
1789 }
1790
Bob Liu28d949b2015-11-14 11:12:14 +08001791 if (info->nr_ring_pages > 1) {
1792 err = xenbus_printf(xbt, dev->nodename, "ring-page-order", "%u",
1793 ring_page_order);
Bob Liu3df0e502015-11-14 11:12:12 +08001794 if (err) {
Bob Liu28d949b2015-11-14 11:12:14 +08001795 message = "writing ring-page-order";
Bob Liu3df0e502015-11-14 11:12:12 +08001796 goto abort_transaction;
1797 }
Bob Liu28d949b2015-11-14 11:12:14 +08001798 }
1799
1800 /* We already got the number of queues/rings in _probe */
1801 if (info->nr_rings == 1) {
1802 err = write_per_ring_nodes(xbt, &info->rinfo[0], dev->nodename);
1803 if (err)
1804 goto destroy_blkring;
Bob Liu3df0e502015-11-14 11:12:12 +08001805 } else {
Bob Liu28d949b2015-11-14 11:12:14 +08001806 char *path;
1807 size_t pathsize;
1808
1809 err = xenbus_printf(xbt, dev->nodename, "multi-queue-num-queues", "%u",
1810 info->nr_rings);
1811 if (err) {
1812 message = "writing multi-queue-num-queues";
1813 goto abort_transaction;
1814 }
1815
1816 pathsize = strlen(dev->nodename) + QUEUE_NAME_LEN;
1817 path = kmalloc(pathsize, GFP_KERNEL);
1818 if (!path) {
1819 err = -ENOMEM;
1820 message = "ENOMEM while writing ring references";
1821 goto abort_transaction;
1822 }
1823
1824 for (i = 0; i < info->nr_rings; i++) {
1825 memset(path, 0, pathsize);
1826 snprintf(path, pathsize, "%s/queue-%u", dev->nodename, i);
1827 err = write_per_ring_nodes(xbt, &info->rinfo[i], path);
1828 if (err) {
1829 kfree(path);
1830 goto destroy_blkring;
1831 }
1832 }
1833 kfree(path);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001834 }
Markus Armbruster3e334232008-04-02 10:54:02 -07001835 err = xenbus_printf(xbt, dev->nodename, "protocol", "%s",
1836 XEN_IO_PROTO_ABI_NATIVE);
1837 if (err) {
1838 message = "writing protocol";
1839 goto abort_transaction;
1840 }
Roger Pau Monne0a8704a2012-10-24 18:58:45 +02001841 err = xenbus_printf(xbt, dev->nodename,
Roger Pau Monnecb5bd4d2012-11-02 16:43:04 +01001842 "feature-persistent", "%u", 1);
Roger Pau Monne0a8704a2012-10-24 18:58:45 +02001843 if (err)
1844 dev_warn(&dev->dev,
1845 "writing persistent grants feature to xenbus");
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001846
1847 err = xenbus_transaction_end(xbt, 0);
1848 if (err) {
1849 if (err == -EAGAIN)
1850 goto again;
1851 xenbus_dev_fatal(dev, err, "completing transaction");
1852 goto destroy_blkring;
1853 }
1854
Bob Liu3df0e502015-11-14 11:12:12 +08001855 for (i = 0; i < info->nr_rings; i++) {
1856 unsigned int j;
Bob Liu28d949b2015-11-14 11:12:14 +08001857 struct blkfront_ring_info *rinfo = &info->rinfo[i];
Bob Liu3df0e502015-11-14 11:12:12 +08001858
1859 for (j = 0; j < BLK_RING_SIZE(info); j++)
1860 rinfo->shadow[j].req.u.rw.id = j + 1;
1861 rinfo->shadow[BLK_RING_SIZE(info)-1].req.u.rw.id = 0x0fffffff;
1862 }
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001863 xenbus_switch_state(dev, XenbusStateInitialised);
1864
1865 return 0;
1866
1867 abort_transaction:
1868 xenbus_transaction_end(xbt, 1);
1869 if (message)
1870 xenbus_dev_fatal(dev, err, "%s", message);
1871 destroy_blkring:
1872 blkif_free(info, 0);
Bob Liu3df0e502015-11-14 11:12:12 +08001873
Konrad Rzeszutek Wilkc31ecf62015-12-18 16:28:53 -05001874 kfree(info);
1875 dev_set_drvdata(&dev->dev, NULL);
1876
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001877 return err;
1878}
1879
Bob Liu3db70a82015-11-25 17:52:55 -05001880static int negotiate_mq(struct blkfront_info *info)
1881{
1882 unsigned int backend_max_queues = 0;
1883 int err;
1884 unsigned int i;
1885
1886 BUG_ON(info->nr_rings);
1887
1888 /* Check if backend supports multiple queues. */
1889 err = xenbus_scanf(XBT_NIL, info->xbdev->otherend,
1890 "multi-queue-max-queues", "%u", &backend_max_queues);
1891 if (err < 0)
1892 backend_max_queues = 1;
1893
1894 info->nr_rings = min(backend_max_queues, xen_blkif_max_queues);
1895 /* We need at least one ring. */
1896 if (!info->nr_rings)
1897 info->nr_rings = 1;
1898
1899 info->rinfo = kzalloc(sizeof(struct blkfront_ring_info) * info->nr_rings, GFP_KERNEL);
1900 if (!info->rinfo) {
1901 xenbus_dev_fatal(info->xbdev, -ENOMEM, "allocating ring_info structure");
1902 return -ENOMEM;
1903 }
1904
1905 for (i = 0; i < info->nr_rings; i++) {
1906 struct blkfront_ring_info *rinfo;
1907
1908 rinfo = &info->rinfo[i];
1909 INIT_LIST_HEAD(&rinfo->indirect_pages);
1910 INIT_LIST_HEAD(&rinfo->grants);
1911 rinfo->dev_info = info;
1912 INIT_WORK(&rinfo->work, blkif_restart_queue);
1913 spin_lock_init(&rinfo->ring_lock);
1914 }
1915 return 0;
1916}
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001917/**
1918 * Entry point to this code when a new device is created. Allocate the basic
1919 * structures and the ring buffer for communication with the backend, and
1920 * inform the backend of the appropriate details for those. Switch to
1921 * Initialised state.
1922 */
1923static int blkfront_probe(struct xenbus_device *dev,
1924 const struct xenbus_device_id *id)
1925{
Bob Liu86839c52015-06-03 13:40:03 +08001926 int err, vdevice;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001927 struct blkfront_info *info;
1928
1929 /* FIXME: Use dynamic device id if this is not set. */
1930 err = xenbus_scanf(XBT_NIL, dev->nodename,
1931 "virtual-device", "%i", &vdevice);
1932 if (err != 1) {
Chris Lalancette9246b5f2008-09-17 14:30:32 -07001933 /* go looking in the extended area instead */
1934 err = xenbus_scanf(XBT_NIL, dev->nodename, "virtual-device-ext",
1935 "%i", &vdevice);
1936 if (err != 1) {
1937 xenbus_dev_fatal(dev, err, "reading virtual-device");
1938 return err;
1939 }
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001940 }
1941
Stefano Stabellinib98a4092010-07-29 14:53:16 +01001942 if (xen_hvm_domain()) {
1943 char *type;
1944 int len;
1945 /* no unplug has been done: do not hook devices != xen vbds */
Konrad Rzeszutek Wilk51c71a32013-11-26 15:05:40 -05001946 if (xen_has_pv_and_legacy_disk_devices()) {
Stefano Stabellinib98a4092010-07-29 14:53:16 +01001947 int major;
Stefano Stabellinic1c54132010-05-14 12:44:30 +01001948
Stefano Stabellinib98a4092010-07-29 14:53:16 +01001949 if (!VDEV_IS_EXTENDED(vdevice))
1950 major = BLKIF_MAJOR(vdevice);
1951 else
1952 major = XENVBD_MAJOR;
Stefano Stabellinic1c54132010-05-14 12:44:30 +01001953
Stefano Stabellinib98a4092010-07-29 14:53:16 +01001954 if (major != XENVBD_MAJOR) {
1955 printk(KERN_INFO
1956 "%s: HVM does not support vbd %d as xen block device\n",
Rasmus Villemoes02f1f212015-02-12 15:01:31 -08001957 __func__, vdevice);
Stefano Stabellinib98a4092010-07-29 14:53:16 +01001958 return -ENODEV;
1959 }
1960 }
1961 /* do not create a PV cdrom device if we are an HVM guest */
1962 type = xenbus_read(XBT_NIL, dev->nodename, "device-type", &len);
1963 if (IS_ERR(type))
1964 return -ENODEV;
1965 if (strncmp(type, "cdrom", 5) == 0) {
1966 kfree(type);
Stefano Stabellinic1c54132010-05-14 12:44:30 +01001967 return -ENODEV;
1968 }
Stefano Stabellinib98a4092010-07-29 14:53:16 +01001969 kfree(type);
Stefano Stabellinic1c54132010-05-14 12:44:30 +01001970 }
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001971 info = kzalloc(sizeof(*info), GFP_KERNEL);
1972 if (!info) {
1973 xenbus_dev_fatal(dev, -ENOMEM, "allocating info structure");
1974 return -ENOMEM;
1975 }
1976
Bob Liu28d949b2015-11-14 11:12:14 +08001977 info->xbdev = dev;
Bob Liu3db70a82015-11-25 17:52:55 -05001978 err = negotiate_mq(info);
1979 if (err) {
Bob Liu3df0e502015-11-14 11:12:12 +08001980 kfree(info);
Bob Liu3db70a82015-11-25 17:52:55 -05001981 return err;
Bob Liu3df0e502015-11-14 11:12:12 +08001982 }
Bob Liu81f35162015-11-14 11:12:11 +08001983
Daniel Stoddenb70f5fa2010-04-30 22:01:19 +00001984 mutex_init(&info->mutex);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001985 info->vdevice = vdevice;
1986 info->connected = BLKIF_STATE_DISCONNECTED;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001987
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001988 /* Front end dir is a number, which is used as the id. */
1989 info->handle = simple_strtoul(strrchr(dev->nodename, '/')+1, NULL, 0);
Greg Kroah-Hartmana1b4b122009-04-30 14:43:31 -07001990 dev_set_drvdata(&dev->dev, info);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001991
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001992 return 0;
1993}
1994
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02001995static void split_bio_end(struct bio *bio)
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001996{
1997 struct split_bio *split_bio = bio->bi_private;
1998
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001999 if (atomic_dec_and_test(&split_bio->pending)) {
2000 split_bio->bio->bi_phys_segments = 0;
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02002001 split_bio->bio->bi_error = bio->bi_error;
2002 bio_endio(split_bio->bio);
Roger Pau Monne402b27f2013-04-18 16:06:54 +02002003 kfree(split_bio);
2004 }
2005 bio_put(bio);
2006}
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002007
2008static int blkif_recover(struct blkfront_info *info)
2009{
Bob Liu3df0e502015-11-14 11:12:12 +08002010 unsigned int i, r_index;
Roger Pau Monne402b27f2013-04-18 16:06:54 +02002011 struct request *req, *n;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002012 struct blk_shadow *copy;
Roger Pau Monne402b27f2013-04-18 16:06:54 +02002013 int rc;
2014 struct bio *bio, *cloned_bio;
2015 struct bio_list bio_list, merge_bio;
2016 unsigned int segs, offset;
2017 int pending, size;
2018 struct split_bio *split_bio;
2019 struct list_head requests;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002020
Bob Liu3df0e502015-11-14 11:12:12 +08002021 blkfront_gather_backend_features(info);
Roger Pau Monne402b27f2013-04-18 16:06:54 +02002022 segs = info->max_indirect_segments ? : BLKIF_MAX_SEGMENTS_PER_REQUEST;
2023 blk_queue_max_segments(info->rq, segs);
2024 bio_list_init(&bio_list);
2025 INIT_LIST_HEAD(&requests);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002026
Bob Liu3df0e502015-11-14 11:12:12 +08002027 for (r_index = 0; r_index < info->nr_rings; r_index++) {
2028 struct blkfront_ring_info *rinfo;
2029
2030 rinfo = &info->rinfo[r_index];
2031 /* Stage 1: Make a safe copy of the shadow state. */
2032 copy = kmemdup(rinfo->shadow, sizeof(rinfo->shadow),
2033 GFP_NOIO | __GFP_REPEAT | __GFP_HIGH);
2034 if (!copy)
2035 return -ENOMEM;
2036
2037 /* Stage 2: Set up free list. */
2038 memset(&rinfo->shadow, 0, sizeof(rinfo->shadow));
2039 for (i = 0; i < BLK_RING_SIZE(info); i++)
2040 rinfo->shadow[i].req.u.rw.id = i+1;
2041 rinfo->shadow_free = rinfo->ring.req_prod_pvt;
2042 rinfo->shadow[BLK_RING_SIZE(info)-1].req.u.rw.id = 0x0fffffff;
2043
2044 rc = blkfront_setup_indirect(rinfo);
2045 if (rc) {
2046 kfree(copy);
2047 return rc;
Konrad Rzeszutek Wilk5ea42982011-10-12 16:23:30 -04002048 }
Bob Liu3df0e502015-11-14 11:12:12 +08002049
2050 for (i = 0; i < BLK_RING_SIZE(info); i++) {
2051 /* Not in use? */
2052 if (!copy[i].request)
2053 continue;
2054
2055 /*
2056 * Get the bios in the request so we can re-queue them.
2057 */
Mike Christie3a5e02c2016-06-05 14:32:23 -05002058 if (req_op(copy[i].request) == REQ_OP_FLUSH ||
Mike Christiec2df40d2016-06-05 14:32:17 -05002059 req_op(copy[i].request) == REQ_OP_DISCARD ||
2060 copy[i].request->cmd_flags & (REQ_FUA | REQ_SECURE)) {
Bob Liu3df0e502015-11-14 11:12:12 +08002061 /*
2062 * Flush operations don't contain bios, so
2063 * we need to requeue the whole request
2064 */
2065 list_add(&copy[i].request->queuelist, &requests);
2066 continue;
2067 }
2068 merge_bio.head = copy[i].request->bio;
2069 merge_bio.tail = copy[i].request->biotail;
2070 bio_list_merge(&bio_list, &merge_bio);
2071 copy[i].request->bio = NULL;
2072 blk_end_request_all(copy[i].request, 0);
2073 }
2074
2075 kfree(copy);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002076 }
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002077 xenbus_switch_state(info->xbdev, XenbusStateConnected);
2078
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002079 /* Now safe for us to use the shared ring */
2080 info->connected = BLKIF_STATE_CONNECTED;
2081
Bob Liu3df0e502015-11-14 11:12:12 +08002082 for (r_index = 0; r_index < info->nr_rings; r_index++) {
2083 struct blkfront_ring_info *rinfo;
2084
2085 rinfo = &info->rinfo[r_index];
2086 /* Kick any other new requests queued since we resumed */
2087 kick_pending_request_queues(rinfo);
2088 }
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002089
Roger Pau Monne402b27f2013-04-18 16:06:54 +02002090 list_for_each_entry_safe(req, n, &requests, queuelist) {
2091 /* Requeue pending requests (flush or discard) */
2092 list_del_init(&req->queuelist);
2093 BUG_ON(req->nr_phys_segments > segs);
Bob Liu907c3eb2015-07-13 17:55:24 +08002094 blk_mq_requeue_request(req);
Roger Pau Monne402b27f2013-04-18 16:06:54 +02002095 }
Bob Liu907c3eb2015-07-13 17:55:24 +08002096 blk_mq_kick_requeue_list(info->rq);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002097
Roger Pau Monne402b27f2013-04-18 16:06:54 +02002098 while ((bio = bio_list_pop(&bio_list)) != NULL) {
2099 /* Traverse the list of pending bios and re-queue them */
2100 if (bio_segments(bio) > segs) {
2101 /*
2102 * This bio has more segments than what we can
2103 * handle, we have to split it.
2104 */
2105 pending = (bio_segments(bio) + segs - 1) / segs;
2106 split_bio = kzalloc(sizeof(*split_bio), GFP_NOIO);
2107 BUG_ON(split_bio == NULL);
2108 atomic_set(&split_bio->pending, pending);
2109 split_bio->bio = bio;
2110 for (i = 0; i < pending; i++) {
Julien Grallc004a6f2015-07-22 16:44:54 +01002111 offset = (i * segs * XEN_PAGE_SIZE) >> 9;
2112 size = min((unsigned int)(segs * XEN_PAGE_SIZE) >> 9,
Kent Overstreet4f024f32013-10-11 15:44:27 -07002113 (unsigned int)bio_sectors(bio) - offset);
Roger Pau Monne402b27f2013-04-18 16:06:54 +02002114 cloned_bio = bio_clone(bio, GFP_NOIO);
2115 BUG_ON(cloned_bio == NULL);
Kent Overstreet6678d832013-08-07 11:14:32 -07002116 bio_trim(cloned_bio, offset, size);
Roger Pau Monne402b27f2013-04-18 16:06:54 +02002117 cloned_bio->bi_private = split_bio;
2118 cloned_bio->bi_end_io = split_bio_end;
Mike Christie4e49ea42016-06-05 14:31:41 -05002119 submit_bio(cloned_bio);
Roger Pau Monne402b27f2013-04-18 16:06:54 +02002120 }
2121 /*
2122 * Now we have to wait for all those smaller bios to
2123 * end, so we can also end the "parent" bio.
2124 */
2125 continue;
2126 }
2127 /* We don't need to split this bio */
Mike Christie4e49ea42016-06-05 14:31:41 -05002128 submit_bio(bio);
Roger Pau Monne402b27f2013-04-18 16:06:54 +02002129 }
2130
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002131 return 0;
2132}
2133
2134/**
2135 * We are reconnecting to the backend, due to a suspend/resume, or a backend
2136 * driver restart. We tear down our blkif structure and recreate it, but
2137 * leave the device-layer structures intact so that this is transparent to the
2138 * rest of the kernel.
2139 */
2140static int blkfront_resume(struct xenbus_device *dev)
2141{
Greg Kroah-Hartmana1b4b122009-04-30 14:43:31 -07002142 struct blkfront_info *info = dev_get_drvdata(&dev->dev);
Bob Liu3db70a82015-11-25 17:52:55 -05002143 int err = 0;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002144
2145 dev_dbg(&dev->dev, "blkfront_resume: %s\n", dev->nodename);
2146
2147 blkif_free(info, info->connected == BLKIF_STATE_CONNECTED);
2148
Bob Liu3db70a82015-11-25 17:52:55 -05002149 err = negotiate_mq(info);
2150 if (err)
2151 return err;
2152
Ian Campbell203fd612009-12-04 15:33:54 +00002153 err = talk_to_blkback(dev, info);
Roger Pau Monne402b27f2013-04-18 16:06:54 +02002154
2155 /*
2156 * We have to wait for the backend to switch to
2157 * connected state, since we want to read which
2158 * features it supports.
2159 */
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002160
2161 return err;
2162}
2163
Konrad Rzeszutek Wilk6f03a7f2015-11-16 15:14:41 -05002164static void blkfront_closing(struct blkfront_info *info)
Daniel Stoddenb70f5fa2010-04-30 22:01:19 +00002165{
2166 struct xenbus_device *xbdev = info->xbdev;
2167 struct block_device *bdev = NULL;
2168
2169 mutex_lock(&info->mutex);
2170
2171 if (xbdev->state == XenbusStateClosing) {
2172 mutex_unlock(&info->mutex);
2173 return;
2174 }
2175
2176 if (info->gd)
2177 bdev = bdget_disk(info->gd, 0);
2178
2179 mutex_unlock(&info->mutex);
2180
2181 if (!bdev) {
2182 xenbus_frontend_closed(xbdev);
2183 return;
2184 }
2185
2186 mutex_lock(&bdev->bd_mutex);
2187
Daniel Stodden7b32d102010-04-30 22:01:23 +00002188 if (bdev->bd_openers) {
Daniel Stoddenb70f5fa2010-04-30 22:01:19 +00002189 xenbus_dev_error(xbdev, -EBUSY,
2190 "Device in use; refusing to close");
2191 xenbus_switch_state(xbdev, XenbusStateClosing);
2192 } else {
2193 xlvbd_release_gendisk(info);
2194 xenbus_frontend_closed(xbdev);
2195 }
2196
2197 mutex_unlock(&bdev->bd_mutex);
2198 bdput(bdev);
2199}
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002200
Li Dongyanged30bf32011-09-01 18:39:09 +08002201static void blkfront_setup_discard(struct blkfront_info *info)
2202{
2203 int err;
Li Dongyanged30bf32011-09-01 18:39:09 +08002204 unsigned int discard_granularity;
2205 unsigned int discard_alignment;
Konrad Rzeszutek Wilk5ea42982011-10-12 16:23:30 -04002206 unsigned int discard_secure;
Li Dongyanged30bf32011-09-01 18:39:09 +08002207
Olaf Hering1c8cad62014-05-21 16:32:40 +02002208 info->feature_discard = 1;
2209 err = xenbus_gather(XBT_NIL, info->xbdev->otherend,
2210 "discard-granularity", "%u", &discard_granularity,
2211 "discard-alignment", "%u", &discard_alignment,
2212 NULL);
2213 if (!err) {
2214 info->discard_granularity = discard_granularity;
2215 info->discard_alignment = discard_alignment;
2216 }
2217 err = xenbus_gather(XBT_NIL, info->xbdev->otherend,
2218 "discard-secure", "%d", &discard_secure,
2219 NULL);
2220 if (!err)
2221 info->feature_secdiscard = !!discard_secure;
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;
2244 psegs = 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{
2313 int err;
2314 int barrier, flush, discard, persistent;
2315 unsigned int indirect_segments;
2316
2317 info->feature_flush = 0;
2318
2319 err = xenbus_gather(XBT_NIL, info->xbdev->otherend,
2320 "feature-barrier", "%d", &barrier,
2321 NULL);
2322
2323 /*
2324 * If there's no "feature-barrier" defined, then it means
2325 * we're dealing with a very old backend which writes
2326 * synchronously; nothing to do.
2327 *
2328 * If there are barriers, then we use flush.
2329 */
2330 if (!err && barrier)
2331 info->feature_flush = REQ_FLUSH | REQ_FUA;
2332 /*
2333 * And if there is "feature-flush-cache" use that above
2334 * barriers.
2335 */
2336 err = xenbus_gather(XBT_NIL, info->xbdev->otherend,
2337 "feature-flush-cache", "%d", &flush,
2338 NULL);
2339
2340 if (!err && flush)
2341 info->feature_flush = REQ_FLUSH;
2342
2343 err = xenbus_gather(XBT_NIL, info->xbdev->otherend,
2344 "feature-discard", "%d", &discard,
2345 NULL);
2346
2347 if (!err && discard)
2348 blkfront_setup_discard(info);
2349
2350 err = xenbus_gather(XBT_NIL, info->xbdev->otherend,
2351 "feature-persistent", "%u", &persistent,
2352 NULL);
2353 if (err)
2354 info->feature_persistent = 0;
2355 else
2356 info->feature_persistent = persistent;
2357
2358 err = xenbus_gather(XBT_NIL, info->xbdev->otherend,
2359 "feature-max-indirect-segments", "%u", &indirect_segments,
2360 NULL);
2361 if (err)
2362 info->max_indirect_segments = 0;
2363 else
2364 info->max_indirect_segments = min(indirect_segments,
2365 xen_blkif_max_segments);
Bob Liud50babb2015-07-22 14:40:08 +08002366}
2367
2368/*
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002369 * Invoked when the backend is finally 'ready' (and has told produced
2370 * the details about the physical device - #sectors, size, etc).
2371 */
2372static void blkfront_connect(struct blkfront_info *info)
2373{
2374 unsigned long long sectors;
2375 unsigned long sector_size;
Stefan Bader7c4d7d72013-05-13 16:28:15 +02002376 unsigned int physical_sector_size;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002377 unsigned int binfo;
Bob Liu3df0e502015-11-14 11:12:12 +08002378 int err, i;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002379
K. Y. Srinivasan1fa73be2010-03-11 13:42:26 -08002380 switch (info->connected) {
2381 case BLKIF_STATE_CONNECTED:
2382 /*
2383 * Potentially, the back-end may be signalling
2384 * a capacity change; update the capacity.
2385 */
2386 err = xenbus_scanf(XBT_NIL, info->xbdev->otherend,
2387 "sectors", "%Lu", &sectors);
2388 if (XENBUS_EXIST_ERR(err))
2389 return;
2390 printk(KERN_INFO "Setting capacity to %Lu\n",
2391 sectors);
2392 set_capacity(info->gd, sectors);
K. Y. Srinivasan2def1412010-03-18 15:00:54 -07002393 revalidate_disk(info->gd);
K. Y. Srinivasan1fa73be2010-03-11 13:42:26 -08002394
Roger Pau Monne402b27f2013-04-18 16:06:54 +02002395 return;
K. Y. Srinivasan1fa73be2010-03-11 13:42:26 -08002396 case BLKIF_STATE_SUSPENDED:
Roger Pau Monne402b27f2013-04-18 16:06:54 +02002397 /*
2398 * If we are recovering from suspension, we need to wait
2399 * for the backend to announce it's features before
2400 * reconnecting, at least we need to know if the backend
2401 * supports indirect descriptors, and how many.
2402 */
2403 blkif_recover(info);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002404 return;
2405
Jeremy Fitzhardingeb4dddb42010-03-11 15:10:40 -08002406 default:
2407 break;
K. Y. Srinivasan1fa73be2010-03-11 13:42:26 -08002408 }
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002409
2410 dev_dbg(&info->xbdev->dev, "%s:%s.\n",
2411 __func__, info->xbdev->otherend);
2412
2413 err = xenbus_gather(XBT_NIL, info->xbdev->otherend,
2414 "sectors", "%llu", &sectors,
2415 "info", "%u", &binfo,
2416 "sector-size", "%lu", &sector_size,
2417 NULL);
2418 if (err) {
2419 xenbus_dev_fatal(info->xbdev, err,
2420 "reading backend fields at %s",
2421 info->xbdev->otherend);
2422 return;
2423 }
2424
Stefan Bader7c4d7d72013-05-13 16:28:15 +02002425 /*
2426 * physcial-sector-size is a newer field, so old backends may not
2427 * provide this. Assume physical sector size to be the same as
2428 * sector_size in that case.
2429 */
2430 err = xenbus_scanf(XBT_NIL, info->xbdev->otherend,
2431 "physical-sector-size", "%u", &physical_sector_size);
2432 if (err != 1)
2433 physical_sector_size = sector_size;
2434
Bob Liu3df0e502015-11-14 11:12:12 +08002435 blkfront_gather_backend_features(info);
2436 for (i = 0; i < info->nr_rings; i++) {
2437 err = blkfront_setup_indirect(&info->rinfo[i]);
2438 if (err) {
2439 xenbus_dev_fatal(info->xbdev, err, "setup_indirect at %s",
2440 info->xbdev->otherend);
2441 blkif_free(info, 0);
2442 break;
2443 }
Roger Pau Monne402b27f2013-04-18 16:06:54 +02002444 }
2445
Stefan Bader7c4d7d72013-05-13 16:28:15 +02002446 err = xlvbd_alloc_gendisk(sectors, info, binfo, sector_size,
2447 physical_sector_size);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002448 if (err) {
2449 xenbus_dev_fatal(info->xbdev, err, "xlvbd_add at %s",
2450 info->xbdev->otherend);
2451 return;
2452 }
2453
2454 xenbus_switch_state(info->xbdev, XenbusStateConnected);
2455
2456 /* Kick pending requests. */
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002457 info->connected = BLKIF_STATE_CONNECTED;
Bob Liu3df0e502015-11-14 11:12:12 +08002458 for (i = 0; i < info->nr_rings; i++)
2459 kick_pending_request_queues(&info->rinfo[i]);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002460
2461 add_disk(info->gd);
Christian Limpach1d78d702008-04-02 10:54:04 -07002462
2463 info->is_ready = 1;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002464}
2465
2466/**
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002467 * Callback received when the backend's state changes.
2468 */
Ian Campbell203fd612009-12-04 15:33:54 +00002469static void blkback_changed(struct xenbus_device *dev,
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002470 enum xenbus_state backend_state)
2471{
Greg Kroah-Hartmana1b4b122009-04-30 14:43:31 -07002472 struct blkfront_info *info = dev_get_drvdata(&dev->dev);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002473
Ian Campbell203fd612009-12-04 15:33:54 +00002474 dev_dbg(&dev->dev, "blkfront:blkback_changed to state %d.\n", backend_state);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002475
2476 switch (backend_state) {
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002477 case XenbusStateInitWait:
Bob Liua9b54bb2015-06-19 00:23:00 -04002478 if (dev->state != XenbusStateInitialising)
2479 break;
Konrad Rzeszutek Wilkc31ecf62015-12-18 16:28:53 -05002480 if (talk_to_blkback(dev, info))
Bob Liu8ab01442015-06-03 13:40:02 +08002481 break;
Bob Liu8ab01442015-06-03 13:40:02 +08002482 case XenbusStateInitialising:
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002483 case XenbusStateInitialised:
Noboru Iwamatsub78c9512009-10-13 17:22:29 -04002484 case XenbusStateReconfiguring:
2485 case XenbusStateReconfigured:
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002486 case XenbusStateUnknown:
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002487 break;
2488
2489 case XenbusStateConnected:
Konrad Rzeszutek Wilkc31ecf62015-12-18 16:28:53 -05002490 if (dev->state != XenbusStateInitialised) {
2491 if (talk_to_blkback(dev, info))
2492 break;
2493 }
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002494 blkfront_connect(info);
2495 break;
2496
David Vrabel36613712014-02-04 18:53:56 +00002497 case XenbusStateClosed:
2498 if (dev->state == XenbusStateClosed)
2499 break;
2500 /* Missed the backend's Closing state -- fallthrough */
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002501 case XenbusStateClosing:
Cathy Averya54c8f02015-10-02 09:35:01 -04002502 if (info)
2503 blkfront_closing(info);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002504 break;
2505 }
2506}
2507
Daniel Stoddenfa1bd352010-04-30 22:01:22 +00002508static int blkfront_remove(struct xenbus_device *xbdev)
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002509{
Daniel Stoddenfa1bd352010-04-30 22:01:22 +00002510 struct blkfront_info *info = dev_get_drvdata(&xbdev->dev);
2511 struct block_device *bdev = NULL;
2512 struct gendisk *disk;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002513
Daniel Stoddenfa1bd352010-04-30 22:01:22 +00002514 dev_dbg(&xbdev->dev, "%s removed", xbdev->nodename);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002515
2516 blkif_free(info, 0);
2517
Daniel Stoddenfa1bd352010-04-30 22:01:22 +00002518 mutex_lock(&info->mutex);
2519
2520 disk = info->gd;
2521 if (disk)
2522 bdev = bdget_disk(disk, 0);
2523
2524 info->xbdev = NULL;
2525 mutex_unlock(&info->mutex);
2526
2527 if (!bdev) {
Jan Beulich0e345822010-08-07 18:28:55 +02002528 kfree(info);
Daniel Stoddenfa1bd352010-04-30 22:01:22 +00002529 return 0;
2530 }
2531
2532 /*
2533 * The xbdev was removed before we reached the Closed
2534 * state. See if it's safe to remove the disk. If the bdev
2535 * isn't closed yet, we let release take care of it.
2536 */
2537
2538 mutex_lock(&bdev->bd_mutex);
2539 info = disk->private_data;
2540
Daniel Stoddend54142c2010-08-07 18:51:21 +02002541 dev_warn(disk_to_dev(disk),
2542 "%s was hot-unplugged, %d stale handles\n",
2543 xbdev->nodename, bdev->bd_openers);
2544
Daniel Stodden7b32d102010-04-30 22:01:23 +00002545 if (info && !bdev->bd_openers) {
Daniel Stoddenfa1bd352010-04-30 22:01:22 +00002546 xlvbd_release_gendisk(info);
2547 disk->private_data = NULL;
2548 kfree(info);
2549 }
2550
2551 mutex_unlock(&bdev->bd_mutex);
2552 bdput(bdev);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002553
2554 return 0;
2555}
2556
Christian Limpach1d78d702008-04-02 10:54:04 -07002557static int blkfront_is_ready(struct xenbus_device *dev)
2558{
Greg Kroah-Hartmana1b4b122009-04-30 14:43:31 -07002559 struct blkfront_info *info = dev_get_drvdata(&dev->dev);
Christian Limpach1d78d702008-04-02 10:54:04 -07002560
Jan Beulich5d7ed202010-08-07 18:31:12 +02002561 return info->is_ready && info->xbdev;
Christian Limpach1d78d702008-04-02 10:54:04 -07002562}
2563
Al Viroa63c8482008-03-02 10:23:47 -05002564static int blkif_open(struct block_device *bdev, fmode_t mode)
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002565{
Daniel Stodden13961742010-08-07 18:36:53 +02002566 struct gendisk *disk = bdev->bd_disk;
2567 struct blkfront_info *info;
2568 int err = 0;
Arnd Bergmann6e9624b2010-08-07 18:25:34 +02002569
Arnd Bergmann2a48fc02010-06-02 14:28:52 +02002570 mutex_lock(&blkfront_mutex);
Arnd Bergmann6e9624b2010-08-07 18:25:34 +02002571
Daniel Stodden13961742010-08-07 18:36:53 +02002572 info = disk->private_data;
2573 if (!info) {
2574 /* xbdev gone */
2575 err = -ERESTARTSYS;
2576 goto out;
2577 }
2578
2579 mutex_lock(&info->mutex);
2580
2581 if (!info->gd)
2582 /* xbdev is closed */
2583 err = -ERESTARTSYS;
2584
2585 mutex_unlock(&info->mutex);
2586
Daniel Stodden13961742010-08-07 18:36:53 +02002587out:
Arnd Bergmann2a48fc02010-06-02 14:28:52 +02002588 mutex_unlock(&blkfront_mutex);
Daniel Stodden13961742010-08-07 18:36:53 +02002589 return err;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002590}
2591
Al Virodb2a1442013-05-05 21:52:57 -04002592static void blkif_release(struct gendisk *disk, fmode_t mode)
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002593{
Al Viroa63c8482008-03-02 10:23:47 -05002594 struct blkfront_info *info = disk->private_data;
Daniel Stodden7fd152f2010-08-07 18:45:12 +02002595 struct block_device *bdev;
2596 struct xenbus_device *xbdev;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002597
Arnd Bergmann2a48fc02010-06-02 14:28:52 +02002598 mutex_lock(&blkfront_mutex);
Daniel Stodden7fd152f2010-08-07 18:45:12 +02002599
2600 bdev = bdget_disk(disk, 0);
Daniel Stodden7fd152f2010-08-07 18:45:12 +02002601
Felipe Pena2f089cb2013-11-09 13:36:09 -02002602 if (!bdev) {
2603 WARN(1, "Block device %s yanked out from us!\n", disk->disk_name);
2604 goto out_mutex;
2605 }
Daniel Stoddenacfca3c2010-08-07 18:47:26 +02002606 if (bdev->bd_openers)
2607 goto out;
2608
Daniel Stodden7fd152f2010-08-07 18:45:12 +02002609 /*
2610 * Check if we have been instructed to close. We will have
2611 * deferred this request, because the bdev was still open.
2612 */
2613
2614 mutex_lock(&info->mutex);
2615 xbdev = info->xbdev;
2616
2617 if (xbdev && xbdev->state == XenbusStateClosing) {
2618 /* pending switch to state closed */
Daniel Stoddend54142c2010-08-07 18:51:21 +02002619 dev_info(disk_to_dev(bdev->bd_disk), "releasing disk\n");
Daniel Stodden7fd152f2010-08-07 18:45:12 +02002620 xlvbd_release_gendisk(info);
2621 xenbus_frontend_closed(info->xbdev);
2622 }
2623
2624 mutex_unlock(&info->mutex);
2625
2626 if (!xbdev) {
2627 /* sudden device removal */
Daniel Stoddend54142c2010-08-07 18:51:21 +02002628 dev_info(disk_to_dev(bdev->bd_disk), "releasing disk\n");
Daniel Stodden7fd152f2010-08-07 18:45:12 +02002629 xlvbd_release_gendisk(info);
2630 disk->private_data = NULL;
2631 kfree(info);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002632 }
Daniel Stodden7fd152f2010-08-07 18:45:12 +02002633
Jens Axboea4cc14e2010-08-08 21:50:05 -04002634out:
Andrew Jonesdad5cf62012-02-16 13:16:25 +01002635 bdput(bdev);
Felipe Pena2f089cb2013-11-09 13:36:09 -02002636out_mutex:
Arnd Bergmann2a48fc02010-06-02 14:28:52 +02002637 mutex_unlock(&blkfront_mutex);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002638}
2639
Alexey Dobriyan83d5cde2009-09-21 17:01:13 -07002640static const struct block_device_operations xlvbd_block_fops =
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002641{
2642 .owner = THIS_MODULE,
Al Viroa63c8482008-03-02 10:23:47 -05002643 .open = blkif_open,
2644 .release = blkif_release,
Ian Campbell597592d2008-02-21 13:03:45 -08002645 .getgeo = blkif_getgeo,
Arnd Bergmann8a6cfeb2010-07-08 10:18:46 +02002646 .ioctl = blkif_ioctl,
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002647};
2648
2649
Márton Némethec9c42e2010-01-10 13:39:52 +01002650static const struct xenbus_device_id blkfront_ids[] = {
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002651 { "vbd" },
2652 { "" }
2653};
2654
David Vrabel95afae42014-09-08 17:30:41 +01002655static struct xenbus_driver blkfront_driver = {
2656 .ids = blkfront_ids,
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002657 .probe = blkfront_probe,
2658 .remove = blkfront_remove,
2659 .resume = blkfront_resume,
Ian Campbell203fd612009-12-04 15:33:54 +00002660 .otherend_changed = blkback_changed,
Christian Limpach1d78d702008-04-02 10:54:04 -07002661 .is_ready = blkfront_is_ready,
David Vrabel95afae42014-09-08 17:30:41 +01002662};
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002663
2664static int __init xlblk_init(void)
2665{
Laszlo Ersek469738e2011-10-07 21:34:38 +02002666 int ret;
Bob Liu28d949b2015-11-14 11:12:14 +08002667 int nr_cpus = num_online_cpus();
Laszlo Ersek469738e2011-10-07 21:34:38 +02002668
Jeremy Fitzhardinge6e833582008-08-19 13:16:17 -07002669 if (!xen_domain())
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002670 return -ENODEV;
2671
Julien Grall9cce2912015-10-13 17:50:11 +01002672 if (xen_blkif_max_ring_order > XENBUS_MAX_RING_GRANT_ORDER) {
Bob Liu86839c52015-06-03 13:40:03 +08002673 pr_info("Invalid max_ring_order (%d), will use default max: %d.\n",
Julien Grall9cce2912015-10-13 17:50:11 +01002674 xen_blkif_max_ring_order, XENBUS_MAX_RING_GRANT_ORDER);
Peng Fan45fc8262015-11-25 18:26:01 +08002675 xen_blkif_max_ring_order = XENBUS_MAX_RING_GRANT_ORDER;
Bob Liu86839c52015-06-03 13:40:03 +08002676 }
2677
Bob Liu28d949b2015-11-14 11:12:14 +08002678 if (xen_blkif_max_queues > nr_cpus) {
2679 pr_info("Invalid max_queues (%d), will use default max: %d.\n",
2680 xen_blkif_max_queues, nr_cpus);
2681 xen_blkif_max_queues = nr_cpus;
2682 }
2683
Konrad Rzeszutek Wilk51c71a32013-11-26 15:05:40 -05002684 if (!xen_has_pv_disk_devices())
Igor Mammedovb9136d22012-03-21 15:08:38 +01002685 return -ENODEV;
2686
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002687 if (register_blkdev(XENVBD_MAJOR, DEV_NAME)) {
2688 printk(KERN_WARNING "xen_blk: can't get major %d with name %s\n",
2689 XENVBD_MAJOR, DEV_NAME);
2690 return -ENODEV;
2691 }
2692
Jan Beulich73db1442011-12-22 09:08:13 +00002693 ret = xenbus_register_frontend(&blkfront_driver);
Laszlo Ersek469738e2011-10-07 21:34:38 +02002694 if (ret) {
2695 unregister_blkdev(XENVBD_MAJOR, DEV_NAME);
2696 return ret;
2697 }
2698
2699 return 0;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002700}
2701module_init(xlblk_init);
2702
2703
Jan Beulich5a60d0c2008-06-17 10:47:08 +02002704static void __exit xlblk_exit(void)
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002705{
Jan Beulich86050672012-04-05 16:04:52 +01002706 xenbus_unregister_driver(&blkfront_driver);
2707 unregister_blkdev(XENVBD_MAJOR, DEV_NAME);
2708 kfree(minors);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002709}
2710module_exit(xlblk_exit);
2711
2712MODULE_DESCRIPTION("Xen virtual block device frontend");
2713MODULE_LICENSE("GPL");
2714MODULE_ALIAS_BLOCKDEV_MAJOR(XENVBD_MAJOR);
Mark McLoughlind2f0c522008-04-02 10:54:05 -07002715MODULE_ALIAS("xen:vbd");
Mark McLoughlin4f93f09b2008-04-02 10:54:06 -07002716MODULE_ALIAS("xenblk");