blob: 9df516a56bb2f80ee38f2fefecf5aac599e4fa11 [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>
Juergen Grossa46b5362018-08-13 16:01:11 +020049#include <linux/workqueue.h>
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -070050
Jeremy Fitzhardinge1ccbf532009-10-06 15:11:14 -070051#include <xen/xen.h>
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -070052#include <xen/xenbus.h>
53#include <xen/grant_table.h>
54#include <xen/events.h>
55#include <xen/page.h>
Stefano Stabellinic1c54132010-05-14 12:44:30 +010056#include <xen/platform_pci.h>
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -070057
58#include <xen/interface/grant_table.h>
59#include <xen/interface/io/blkif.h>
Markus Armbruster3e334232008-04-02 10:54:02 -070060#include <xen/interface/io/protocols.h>
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -070061
62#include <asm/xen/hypervisor.h>
63
Julien Grall6cc568332015-08-13 13:13:35 +010064/*
65 * The minimal size of segment supported by the block framework is PAGE_SIZE.
66 * When Linux is using a different page size than Xen, it may not be possible
67 * to put all the data in a single segment.
68 * This can happen when the backend doesn't support indirect descriptor and
69 * therefore the maximum amount of data that a request can carry is
70 * BLKIF_MAX_SEGMENTS_PER_REQUEST * XEN_PAGE_SIZE = 44KB
71 *
72 * Note that we only support one extra request. So the Linux page size
73 * should be <= ( 2 * BLKIF_MAX_SEGMENTS_PER_REQUEST * XEN_PAGE_SIZE) =
74 * 88KB.
75 */
76#define HAS_EXTRA_REQ (BLKIF_MAX_SEGMENTS_PER_REQUEST < XEN_PFN_PER_PAGE)
77
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -070078enum blkif_state {
79 BLKIF_STATE_DISCONNECTED,
80 BLKIF_STATE_CONNECTED,
81 BLKIF_STATE_SUSPENDED,
82};
83
Roger Pau Monne0a8704a2012-10-24 18:58:45 +020084struct grant {
85 grant_ref_t gref;
Julien Gralla7a6df22015-06-30 11:58:51 +010086 struct page *page;
Roger Pau Monne155b7ed2013-03-18 17:49:34 +010087 struct list_head node;
Roger Pau Monne0a8704a2012-10-24 18:58:45 +020088};
89
Julien Grall6cc568332015-08-13 13:13:35 +010090enum blk_req_status {
91 REQ_WAITING,
92 REQ_DONE,
93 REQ_ERROR,
94 REQ_EOPNOTSUPP,
95};
96
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -070097struct blk_shadow {
98 struct blkif_request req;
Jeremy Fitzhardingea945b982010-11-01 17:03:14 -040099 struct request *request;
Roger Pau Monne402b27f2013-04-18 16:06:54 +0200100 struct grant **grants_used;
101 struct grant **indirect_grants;
Roger Pau Monneb7649152013-05-02 10:58:50 +0200102 struct scatterlist *sg;
Julien Grallc004a6f2015-07-22 16:44:54 +0100103 unsigned int num_sg;
Julien Grall6cc568332015-08-13 13:13:35 +0100104 enum blk_req_status status;
105
106 #define NO_ASSOCIATED_ID ~0UL
107 /*
108 * Id of the sibling if we ever need 2 requests when handling a
109 * block I/O request
110 */
111 unsigned long associated_id;
Roger Pau Monne402b27f2013-04-18 16:06:54 +0200112};
113
Christoph Hellwig26095872017-04-20 16:03:08 +0200114struct blkif_req {
Bart Van Assche31c4ccc2017-07-21 19:11:10 +0200115 blk_status_t error;
Christoph Hellwig26095872017-04-20 16:03:08 +0200116};
117
118static inline struct blkif_req *blkif_req(struct request *rq)
119{
120 return blk_mq_rq_to_pdu(rq);
121}
122
Arnd Bergmann2a48fc02010-06-02 14:28:52 +0200123static DEFINE_MUTEX(blkfront_mutex);
Alexey Dobriyan83d5cde2009-09-21 17:01:13 -0700124static const struct block_device_operations xlvbd_block_fops;
Juergen Grossa46b5362018-08-13 16:01:11 +0200125static struct delayed_work blkfront_work;
126static LIST_HEAD(info_list);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700127
Roger Pau Monne402b27f2013-04-18 16:06:54 +0200128/*
129 * Maximum number of segments in indirect requests, the actual value used by
130 * the frontend driver is the minimum of this value and the value provided
131 * by the backend driver.
132 */
133
134static unsigned int xen_blkif_max_segments = 32;
Joe Perches5657a812018-05-24 13:38:59 -0600135module_param_named(max_indirect_segments, xen_blkif_max_segments, uint, 0444);
Jan Beulich14e710f2016-02-10 04:21:15 -0700136MODULE_PARM_DESC(max_indirect_segments,
137 "Maximum amount of segments in indirect requests (default is 32)");
Roger Pau Monne402b27f2013-04-18 16:06:54 +0200138
Bob Liu28d949b2015-11-14 11:12:14 +0800139static unsigned int xen_blkif_max_queues = 4;
Joe Perches5657a812018-05-24 13:38:59 -0600140module_param_named(max_queues, xen_blkif_max_queues, uint, 0444);
Bob Liu28d949b2015-11-14 11:12:14 +0800141MODULE_PARM_DESC(max_queues, "Maximum number of hardware queues/rings used per virtual disk");
142
Bob Liu86839c52015-06-03 13:40:03 +0800143/*
144 * Maximum order of pages to be used for the shared ring between front and
145 * backend, 4KB page granularity is used.
146 */
147static unsigned int xen_blkif_max_ring_order;
Joe Perches5657a812018-05-24 13:38:59 -0600148module_param_named(max_ring_page_order, xen_blkif_max_ring_order, int, 0444);
Bob Liu86839c52015-06-03 13:40:03 +0800149MODULE_PARM_DESC(max_ring_page_order, "Maximum order of pages to be used for the shared ring");
150
Julien Grallc004a6f2015-07-22 16:44:54 +0100151#define BLK_RING_SIZE(info) \
152 __CONST_RING_SIZE(blkif, XEN_PAGE_SIZE * (info)->nr_ring_pages)
153
Bob Liu86839c52015-06-03 13:40:03 +0800154/*
Konrad Rzeszutek Wilk6f03a7f2015-11-16 15:14:41 -0500155 * ring-ref%u i=(-1UL) would take 11 characters + 'ring-ref' is 8, so 19
156 * characters are enough. Define to 20 to keep consistent with backend.
Bob Liu86839c52015-06-03 13:40:03 +0800157 */
158#define RINGREF_NAME_LEN (20)
Bob Liu28d949b2015-11-14 11:12:14 +0800159/*
160 * queue-%u would take 7 + 10(UINT_MAX) = 17 characters.
161 */
162#define QUEUE_NAME_LEN (17)
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700163
164/*
Bob Liu81f35162015-11-14 11:12:11 +0800165 * Per-ring info.
166 * Every blkfront device can associate with one or more blkfront_ring_info,
167 * depending on how many hardware queues/rings to be used.
168 */
169struct blkfront_ring_info {
Bob Liu11659562015-11-14 11:12:13 +0800170 /* Lock to protect data in every ring buffer. */
171 spinlock_t ring_lock;
Bob Liu81f35162015-11-14 11:12:11 +0800172 struct blkif_front_ring ring;
173 unsigned int ring_ref[XENBUS_MAX_RING_GRANTS];
174 unsigned int evtchn, irq;
175 struct work_struct work;
176 struct gnttab_free_callback callback;
Bob Liu81f35162015-11-14 11:12:11 +0800177 struct list_head indirect_pages;
Bob Liu73716df2015-11-16 16:51:39 -0500178 struct list_head grants;
179 unsigned int persistent_gnts_c;
Bob Liu81f35162015-11-14 11:12:11 +0800180 unsigned long shadow_free;
181 struct blkfront_info *dev_info;
Juergen Gross0265d6e2020-01-17 15:39:55 +0100182 struct blk_shadow shadow[];
Bob Liu81f35162015-11-14 11:12:11 +0800183};
184
185/*
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700186 * We have one of these per vbd, whether ide, scsi or 'other'. They
187 * hang in private_data off the gendisk structure. We may end up
188 * putting all kinds of interesting stuff here :-)
189 */
190struct blkfront_info
191{
Daniel Stoddenb70f5fa2010-04-30 22:01:19 +0000192 struct mutex mutex;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700193 struct xenbus_device *xbdev;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700194 struct gendisk *gd;
Bob Liu172335a2016-07-01 17:43:39 -0400195 u16 sector_size;
196 unsigned int physical_sector_size;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700197 int vdevice;
198 blkif_vdev_t handle;
199 enum blkif_state connected;
Bob Liu3df0e502015-11-14 11:12:12 +0800200 /* Number of pages per ring buffer. */
Bob Liu86839c52015-06-03 13:40:03 +0800201 unsigned int nr_ring_pages;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700202 struct request_queue *rq;
Jan Beulichb32728f2017-01-23 08:12:19 -0700203 unsigned int feature_flush:1;
204 unsigned int feature_fua:1;
Konrad Rzeszutek Wilk5ea42982011-10-12 16:23:30 -0400205 unsigned int feature_discard:1;
206 unsigned int feature_secdiscard:1;
Jan Beulichb32728f2017-01-23 08:12:19 -0700207 unsigned int feature_persistent:1;
Li Dongyanged30bf32011-09-01 18:39:09 +0800208 unsigned int discard_granularity;
209 unsigned int discard_alignment;
Julien Grallc004a6f2015-07-22 16:44:54 +0100210 /* Number of 4KB segments handled */
Roger Pau Monne402b27f2013-04-18 16:06:54 +0200211 unsigned int max_indirect_segments;
Christian Limpach1d78d702008-04-02 10:54:04 -0700212 int is_ready;
Bob Liu907c3eb2015-07-13 17:55:24 +0800213 struct blk_mq_tag_set tag_set;
Bob Liu3df0e502015-11-14 11:12:12 +0800214 struct blkfront_ring_info *rinfo;
215 unsigned int nr_rings;
Juergen Gross4ab50af2020-03-05 16:51:29 +0100216 unsigned int rinfo_size;
Bob Liu7b427a52016-06-27 16:33:24 +0800217 /* Save uncomplete reqs and bios for migration. */
218 struct list_head requests;
219 struct bio_list bio_list;
Juergen Grossa46b5362018-08-13 16:01:11 +0200220 struct list_head info_list;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700221};
222
Jan Beulich0e345822010-08-07 18:28:55 +0200223static unsigned int nr_minors;
224static unsigned long *minors;
225static DEFINE_SPINLOCK(minor_lock);
226
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700227#define GRANT_INVALID_REF 0
228
229#define PARTS_PER_DISK 16
Chris Lalancette9246b5f2008-09-17 14:30:32 -0700230#define PARTS_PER_EXT_DISK 256
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700231
232#define BLKIF_MAJOR(dev) ((dev)>>8)
233#define BLKIF_MINOR(dev) ((dev) & 0xff)
234
Chris Lalancette9246b5f2008-09-17 14:30:32 -0700235#define EXT_SHIFT 28
236#define EXTENDED (1<<EXT_SHIFT)
237#define VDEV_IS_EXTENDED(dev) ((dev)&(EXTENDED))
238#define BLKIF_MINOR_EXT(dev) ((dev)&(~EXTENDED))
Stefano Stabellinic80a4202010-12-02 17:55:00 +0000239#define EMULATED_HD_DISK_MINOR_OFFSET (0)
240#define EMULATED_HD_DISK_NAME_OFFSET (EMULATED_HD_DISK_MINOR_OFFSET / 256)
Stefan Bader196cfe22011-07-14 15:30:22 +0200241#define EMULATED_SD_DISK_MINOR_OFFSET (0)
242#define EMULATED_SD_DISK_NAME_OFFSET (EMULATED_SD_DISK_MINOR_OFFSET / 256)
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700243
Chris Lalancette9246b5f2008-09-17 14:30:32 -0700244#define DEV_NAME "xvd" /* name in /dev */
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700245
Julien Grallc004a6f2015-07-22 16:44:54 +0100246/*
247 * Grants are always the same size as a Xen page (i.e 4KB).
248 * A physical segment is always the same size as a Linux page.
249 * Number of grants per physical segment
250 */
251#define GRANTS_PER_PSEG (PAGE_SIZE / XEN_PAGE_SIZE)
252
253#define GRANTS_PER_INDIRECT_FRAME \
254 (XEN_PAGE_SIZE / sizeof(struct blkif_request_segment))
255
Julien Grallc004a6f2015-07-22 16:44:54 +0100256#define INDIRECT_GREFS(_grants) \
257 DIV_ROUND_UP(_grants, GRANTS_PER_INDIRECT_FRAME)
258
Bob Liu81f35162015-11-14 11:12:11 +0800259static int blkfront_setup_indirect(struct blkfront_ring_info *rinfo);
Bob Liu3df0e502015-11-14 11:12:12 +0800260static void blkfront_gather_backend_features(struct blkfront_info *info);
Bhavesh Davda7ed8ce12017-12-22 14:17:13 -0800261static int negotiate_mq(struct blkfront_info *info);
Roger Pau Monne402b27f2013-04-18 16:06:54 +0200262
Juergen Gross4ab50af2020-03-05 16:51:29 +0100263#define for_each_rinfo(info, ptr, idx) \
264 for ((ptr) = (info)->rinfo, (idx) = 0; \
265 (idx) < (info)->nr_rings; \
266 (idx)++, (ptr) = (void *)(ptr) + (info)->rinfo_size)
267
268static inline struct blkfront_ring_info *
269get_rinfo(const struct blkfront_info *info, unsigned int i)
270{
271 BUG_ON(i >= info->nr_rings);
272 return (void *)info->rinfo + i * info->rinfo_size;
273}
274
Bob Liu81f35162015-11-14 11:12:11 +0800275static int get_id_from_freelist(struct blkfront_ring_info *rinfo)
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700276{
Bob Liu81f35162015-11-14 11:12:11 +0800277 unsigned long free = rinfo->shadow_free;
278
279 BUG_ON(free >= BLK_RING_SIZE(rinfo->dev_info));
280 rinfo->shadow_free = rinfo->shadow[free].req.u.rw.id;
281 rinfo->shadow[free].req.u.rw.id = 0x0fffffee; /* debug */
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700282 return free;
283}
284
Bob Liu81f35162015-11-14 11:12:11 +0800285static int add_id_to_freelist(struct blkfront_ring_info *rinfo,
Konrad Rzeszutek Wilk6f03a7f2015-11-16 15:14:41 -0500286 unsigned long id)
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700287{
Bob Liu81f35162015-11-14 11:12:11 +0800288 if (rinfo->shadow[id].req.u.rw.id != id)
Konrad Rzeszutek Wilk6878c322012-05-25 17:34:51 -0400289 return -EINVAL;
Bob Liu81f35162015-11-14 11:12:11 +0800290 if (rinfo->shadow[id].request == NULL)
Konrad Rzeszutek Wilk6878c322012-05-25 17:34:51 -0400291 return -EINVAL;
Bob Liu81f35162015-11-14 11:12:11 +0800292 rinfo->shadow[id].req.u.rw.id = rinfo->shadow_free;
293 rinfo->shadow[id].request = NULL;
294 rinfo->shadow_free = id;
Konrad Rzeszutek Wilk6878c322012-05-25 17:34:51 -0400295 return 0;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700296}
297
Bob Liu81f35162015-11-14 11:12:11 +0800298static int fill_grant_buffer(struct blkfront_ring_info *rinfo, int num)
Roger Pau Monne9c1e0502013-03-18 17:49:35 +0100299{
Bob Liu81f35162015-11-14 11:12:11 +0800300 struct blkfront_info *info = rinfo->dev_info;
Roger Pau Monne9c1e0502013-03-18 17:49:35 +0100301 struct page *granted_page;
302 struct grant *gnt_list_entry, *n;
303 int i = 0;
304
Konrad Rzeszutek Wilk6f03a7f2015-11-16 15:14:41 -0500305 while (i < num) {
Roger Pau Monne9c1e0502013-03-18 17:49:35 +0100306 gnt_list_entry = kzalloc(sizeof(struct grant), GFP_NOIO);
307 if (!gnt_list_entry)
308 goto out_of_memory;
309
Roger Pau Monnebfe11d62013-10-29 18:31:14 +0100310 if (info->feature_persistent) {
311 granted_page = alloc_page(GFP_NOIO);
312 if (!granted_page) {
313 kfree(gnt_list_entry);
314 goto out_of_memory;
315 }
Julien Gralla7a6df22015-06-30 11:58:51 +0100316 gnt_list_entry->page = granted_page;
Roger Pau Monne9c1e0502013-03-18 17:49:35 +0100317 }
318
Roger Pau Monne9c1e0502013-03-18 17:49:35 +0100319 gnt_list_entry->gref = GRANT_INVALID_REF;
Bob Liu73716df2015-11-16 16:51:39 -0500320 list_add(&gnt_list_entry->node, &rinfo->grants);
Roger Pau Monne9c1e0502013-03-18 17:49:35 +0100321 i++;
322 }
323
324 return 0;
325
326out_of_memory:
327 list_for_each_entry_safe(gnt_list_entry, n,
Bob Liu73716df2015-11-16 16:51:39 -0500328 &rinfo->grants, node) {
Roger Pau Monne9c1e0502013-03-18 17:49:35 +0100329 list_del(&gnt_list_entry->node);
Roger Pau Monnebfe11d62013-10-29 18:31:14 +0100330 if (info->feature_persistent)
Julien Gralla7a6df22015-06-30 11:58:51 +0100331 __free_page(gnt_list_entry->page);
Roger Pau Monne9c1e0502013-03-18 17:49:35 +0100332 kfree(gnt_list_entry);
333 i--;
334 }
335 BUG_ON(i != 0);
336 return -ENOMEM;
337}
338
Bob Liu73716df2015-11-16 16:51:39 -0500339static struct grant *get_free_grant(struct blkfront_ring_info *rinfo)
Roger Pau Monne9c1e0502013-03-18 17:49:35 +0100340{
341 struct grant *gnt_list_entry;
Roger Pau Monne9c1e0502013-03-18 17:49:35 +0100342
Bob Liu73716df2015-11-16 16:51:39 -0500343 BUG_ON(list_empty(&rinfo->grants));
344 gnt_list_entry = list_first_entry(&rinfo->grants, struct grant,
Julien Grall4f503fb2015-07-01 14:10:38 +0100345 node);
Roger Pau Monne9c1e0502013-03-18 17:49:35 +0100346 list_del(&gnt_list_entry->node);
347
Julien Grall4f503fb2015-07-01 14:10:38 +0100348 if (gnt_list_entry->gref != GRANT_INVALID_REF)
Bob Liu73716df2015-11-16 16:51:39 -0500349 rinfo->persistent_gnts_c--;
Julien Grall4f503fb2015-07-01 14:10:38 +0100350
351 return gnt_list_entry;
352}
353
354static inline void grant_foreign_access(const struct grant *gnt_list_entry,
355 const struct blkfront_info *info)
356{
357 gnttab_page_grant_foreign_access_ref_one(gnt_list_entry->gref,
358 info->xbdev->otherend_id,
359 gnt_list_entry->page,
360 0);
361}
362
363static struct grant *get_grant(grant_ref_t *gref_head,
364 unsigned long gfn,
Bob Liu73716df2015-11-16 16:51:39 -0500365 struct blkfront_ring_info *rinfo)
Julien Grall4f503fb2015-07-01 14:10:38 +0100366{
Bob Liu73716df2015-11-16 16:51:39 -0500367 struct grant *gnt_list_entry = get_free_grant(rinfo);
368 struct blkfront_info *info = rinfo->dev_info;
Julien Grall4f503fb2015-07-01 14:10:38 +0100369
370 if (gnt_list_entry->gref != GRANT_INVALID_REF)
Roger Pau Monne9c1e0502013-03-18 17:49:35 +0100371 return gnt_list_entry;
Julien Grall4f503fb2015-07-01 14:10:38 +0100372
373 /* Assign a gref to this page */
374 gnt_list_entry->gref = gnttab_claim_grant_reference(gref_head);
375 BUG_ON(gnt_list_entry->gref == -ENOSPC);
376 if (info->feature_persistent)
377 grant_foreign_access(gnt_list_entry, info);
378 else {
379 /* Grant access to the GFN passed by the caller */
380 gnttab_grant_foreign_access_ref(gnt_list_entry->gref,
381 info->xbdev->otherend_id,
382 gfn, 0);
Roger Pau Monne9c1e0502013-03-18 17:49:35 +0100383 }
384
Julien Grall4f503fb2015-07-01 14:10:38 +0100385 return gnt_list_entry;
386}
387
388static struct grant *get_indirect_grant(grant_ref_t *gref_head,
Bob Liu73716df2015-11-16 16:51:39 -0500389 struct blkfront_ring_info *rinfo)
Julien Grall4f503fb2015-07-01 14:10:38 +0100390{
Bob Liu73716df2015-11-16 16:51:39 -0500391 struct grant *gnt_list_entry = get_free_grant(rinfo);
392 struct blkfront_info *info = rinfo->dev_info;
Julien Grall4f503fb2015-07-01 14:10:38 +0100393
394 if (gnt_list_entry->gref != GRANT_INVALID_REF)
395 return gnt_list_entry;
396
Roger Pau Monne9c1e0502013-03-18 17:49:35 +0100397 /* Assign a gref to this page */
398 gnt_list_entry->gref = gnttab_claim_grant_reference(gref_head);
399 BUG_ON(gnt_list_entry->gref == -ENOSPC);
Roger Pau Monnebfe11d62013-10-29 18:31:14 +0100400 if (!info->feature_persistent) {
Julien Grall4f503fb2015-07-01 14:10:38 +0100401 struct page *indirect_page;
402
403 /* Fetch a pre-allocated page to use for indirect grefs */
Bob Liu73716df2015-11-16 16:51:39 -0500404 BUG_ON(list_empty(&rinfo->indirect_pages));
405 indirect_page = list_first_entry(&rinfo->indirect_pages,
Julien Grall4f503fb2015-07-01 14:10:38 +0100406 struct page, lru);
407 list_del(&indirect_page->lru);
408 gnt_list_entry->page = indirect_page;
Roger Pau Monnebfe11d62013-10-29 18:31:14 +0100409 }
Julien Grall4f503fb2015-07-01 14:10:38 +0100410 grant_foreign_access(gnt_list_entry, info);
411
Roger Pau Monne9c1e0502013-03-18 17:49:35 +0100412 return gnt_list_entry;
413}
414
Konrad Rzeszutek Wilk6878c322012-05-25 17:34:51 -0400415static const char *op_name(int op)
416{
417 static const char *const names[] = {
418 [BLKIF_OP_READ] = "read",
419 [BLKIF_OP_WRITE] = "write",
420 [BLKIF_OP_WRITE_BARRIER] = "barrier",
421 [BLKIF_OP_FLUSH_DISKCACHE] = "flush",
422 [BLKIF_OP_DISCARD] = "discard" };
423
424 if (op < 0 || op >= ARRAY_SIZE(names))
425 return "unknown";
426
427 if (!names[op])
428 return "reserved";
429
430 return names[op];
431}
Jan Beulich0e345822010-08-07 18:28:55 +0200432static int xlbd_reserve_minors(unsigned int minor, unsigned int nr)
433{
434 unsigned int end = minor + nr;
435 int rc;
436
437 if (end > nr_minors) {
438 unsigned long *bitmap, *old;
439
Thomas Meyerf0941482011-11-29 22:08:00 +0100440 bitmap = kcalloc(BITS_TO_LONGS(end), sizeof(*bitmap),
Jan Beulich0e345822010-08-07 18:28:55 +0200441 GFP_KERNEL);
442 if (bitmap == NULL)
443 return -ENOMEM;
444
445 spin_lock(&minor_lock);
446 if (end > nr_minors) {
447 old = minors;
448 memcpy(bitmap, minors,
449 BITS_TO_LONGS(nr_minors) * sizeof(*bitmap));
450 minors = bitmap;
451 nr_minors = BITS_TO_LONGS(end) * BITS_PER_LONG;
452 } else
453 old = bitmap;
454 spin_unlock(&minor_lock);
455 kfree(old);
456 }
457
458 spin_lock(&minor_lock);
459 if (find_next_bit(minors, end, minor) >= end) {
Akinobu Mita34ae2e42012-01-21 00:15:26 +0900460 bitmap_set(minors, minor, nr);
Jan Beulich0e345822010-08-07 18:28:55 +0200461 rc = 0;
462 } else
463 rc = -EBUSY;
464 spin_unlock(&minor_lock);
465
466 return rc;
467}
468
469static void xlbd_release_minors(unsigned int minor, unsigned int nr)
470{
471 unsigned int end = minor + nr;
472
473 BUG_ON(end > nr_minors);
474 spin_lock(&minor_lock);
Akinobu Mita34ae2e42012-01-21 00:15:26 +0900475 bitmap_clear(minors, minor, nr);
Jan Beulich0e345822010-08-07 18:28:55 +0200476 spin_unlock(&minor_lock);
477}
478
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700479static void blkif_restart_queue_callback(void *arg)
480{
Bob Liu81f35162015-11-14 11:12:11 +0800481 struct blkfront_ring_info *rinfo = (struct blkfront_ring_info *)arg;
482 schedule_work(&rinfo->work);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700483}
484
Harvey Harrisonafe42d72008-04-29 00:59:47 -0700485static int blkif_getgeo(struct block_device *bd, struct hd_geometry *hg)
Ian Campbell597592d2008-02-21 13:03:45 -0800486{
487 /* We don't have real geometry info, but let's at least return
488 values consistent with the size of the device */
489 sector_t nsect = get_capacity(bd->bd_disk);
490 sector_t cylinders = nsect;
491
492 hg->heads = 0xff;
493 hg->sectors = 0x3f;
494 sector_div(cylinders, hg->heads * hg->sectors);
495 hg->cylinders = cylinders;
496 if ((sector_t)(hg->cylinders + 1) * hg->heads * hg->sectors < nsect)
497 hg->cylinders = 0xffff;
498 return 0;
499}
500
Al Viroa63c8482008-03-02 10:23:47 -0500501static int blkif_ioctl(struct block_device *bdev, fmode_t mode,
Adrian Bunk62aa0052008-08-04 11:59:05 +0200502 unsigned command, unsigned long argument)
Christian Limpach440a01a2008-06-17 10:47:08 +0200503{
Al Viroa63c8482008-03-02 10:23:47 -0500504 struct blkfront_info *info = bdev->bd_disk->private_data;
Christian Limpach440a01a2008-06-17 10:47:08 +0200505 int i;
506
507 dev_dbg(&info->xbdev->dev, "command: 0x%x, argument: 0x%lx\n",
508 command, (long)argument);
509
510 switch (command) {
511 case CDROMMULTISESSION:
512 dev_dbg(&info->xbdev->dev, "FIXME: support multisession CDs later\n");
513 for (i = 0; i < sizeof(struct cdrom_multisession); i++)
514 if (put_user(0, (char __user *)(argument + i)))
515 return -EFAULT;
516 return 0;
517
518 case CDROM_GET_CAPABILITY: {
519 struct gendisk *gd = info->gd;
520 if (gd->flags & GENHD_FL_CD)
521 return 0;
522 return -EINVAL;
523 }
524
525 default:
526 /*printk(KERN_ALERT "ioctl %08x not supported by Xen blkdev\n",
527 command);*/
528 return -EINVAL; /* same return as native Linux */
529 }
530
531 return 0;
532}
533
Julien Grall2e073962015-08-13 19:23:10 +0100534static unsigned long blkif_ring_get_request(struct blkfront_ring_info *rinfo,
535 struct request *req,
536 struct blkif_request **ring_req)
537{
538 unsigned long id;
539
540 *ring_req = RING_GET_REQUEST(&rinfo->ring, rinfo->ring.req_prod_pvt);
541 rinfo->ring.req_prod_pvt++;
542
543 id = get_id_from_freelist(rinfo);
544 rinfo->shadow[id].request = req;
Julien Grall6cc568332015-08-13 13:13:35 +0100545 rinfo->shadow[id].status = REQ_WAITING;
546 rinfo->shadow[id].associated_id = NO_ASSOCIATED_ID;
Julien Grall2e073962015-08-13 19:23:10 +0100547
548 (*ring_req)->u.rw.id = id;
549
550 return id;
551}
552
Bob Liu81f35162015-11-14 11:12:11 +0800553static int blkif_queue_discard_req(struct request *req, struct blkfront_ring_info *rinfo)
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700554{
Bob Liu81f35162015-11-14 11:12:11 +0800555 struct blkfront_info *info = rinfo->dev_info;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700556 struct blkif_request *ring_req;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700557 unsigned long id;
Julien Grall33204662015-06-29 17:35:24 +0100558
559 /* Fill out a communications ring structure. */
Julien Grall2e073962015-08-13 19:23:10 +0100560 id = blkif_ring_get_request(rinfo, req, &ring_req);
Julien Grall33204662015-06-29 17:35:24 +0100561
562 ring_req->operation = BLKIF_OP_DISCARD;
563 ring_req->u.discard.nr_sectors = blk_rq_sectors(req);
564 ring_req->u.discard.id = id;
565 ring_req->u.discard.sector_number = (blkif_sector_t)blk_rq_pos(req);
Christoph Hellwig288dab82016-06-09 16:00:36 +0200566 if (req_op(req) == REQ_OP_SECURE_ERASE && info->feature_secdiscard)
Julien Grall33204662015-06-29 17:35:24 +0100567 ring_req->u.discard.flag = BLKIF_DISCARD_SECURE;
568 else
569 ring_req->u.discard.flag = 0;
570
Julien Grall33204662015-06-29 17:35:24 +0100571 /* Keep a private copy so we can reissue requests when recovering. */
Bob Liu81f35162015-11-14 11:12:11 +0800572 rinfo->shadow[id].req = *ring_req;
Julien Grall33204662015-06-29 17:35:24 +0100573
574 return 0;
575}
576
Julien Grallc004a6f2015-07-22 16:44:54 +0100577struct setup_rw_req {
578 unsigned int grant_idx;
579 struct blkif_request_segment *segments;
Bob Liu81f35162015-11-14 11:12:11 +0800580 struct blkfront_ring_info *rinfo;
Julien Grallc004a6f2015-07-22 16:44:54 +0100581 struct blkif_request *ring_req;
582 grant_ref_t gref_head;
583 unsigned int id;
584 /* Only used when persistent grant is used and it's a read request */
585 bool need_copy;
586 unsigned int bvec_off;
587 char *bvec_data;
Julien Grall6cc568332015-08-13 13:13:35 +0100588
589 bool require_extra_req;
590 struct blkif_request *extra_ring_req;
Julien Grallc004a6f2015-07-22 16:44:54 +0100591};
592
593static void blkif_setup_rw_req_grant(unsigned long gfn, unsigned int offset,
594 unsigned int len, void *data)
595{
596 struct setup_rw_req *setup = data;
597 int n, ref;
598 struct grant *gnt_list_entry;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700599 unsigned int fsect, lsect;
Julien Grallc004a6f2015-07-22 16:44:54 +0100600 /* Convenient aliases */
601 unsigned int grant_idx = setup->grant_idx;
602 struct blkif_request *ring_req = setup->ring_req;
Bob Liu81f35162015-11-14 11:12:11 +0800603 struct blkfront_ring_info *rinfo = setup->rinfo;
Julien Grall6cc568332015-08-13 13:13:35 +0100604 /*
605 * We always use the shadow of the first request to store the list
606 * of grant associated to the block I/O request. This made the
607 * completion more easy to handle even if the block I/O request is
608 * split.
609 */
Bob Liu81f35162015-11-14 11:12:11 +0800610 struct blk_shadow *shadow = &rinfo->shadow[setup->id];
Julien Grallc004a6f2015-07-22 16:44:54 +0100611
Julien Grall6cc568332015-08-13 13:13:35 +0100612 if (unlikely(setup->require_extra_req &&
613 grant_idx >= BLKIF_MAX_SEGMENTS_PER_REQUEST)) {
614 /*
615 * We are using the second request, setup grant_idx
616 * to be the index of the segment array.
617 */
618 grant_idx -= BLKIF_MAX_SEGMENTS_PER_REQUEST;
619 ring_req = setup->extra_ring_req;
620 }
621
Julien Grallc004a6f2015-07-22 16:44:54 +0100622 if ((ring_req->operation == BLKIF_OP_INDIRECT) &&
623 (grant_idx % GRANTS_PER_INDIRECT_FRAME == 0)) {
624 if (setup->segments)
625 kunmap_atomic(setup->segments);
626
627 n = grant_idx / GRANTS_PER_INDIRECT_FRAME;
Bob Liu73716df2015-11-16 16:51:39 -0500628 gnt_list_entry = get_indirect_grant(&setup->gref_head, rinfo);
Julien Grallc004a6f2015-07-22 16:44:54 +0100629 shadow->indirect_grants[n] = gnt_list_entry;
630 setup->segments = kmap_atomic(gnt_list_entry->page);
631 ring_req->u.indirect.indirect_grefs[n] = gnt_list_entry->gref;
632 }
633
Bob Liu73716df2015-11-16 16:51:39 -0500634 gnt_list_entry = get_grant(&setup->gref_head, gfn, rinfo);
Julien Grallc004a6f2015-07-22 16:44:54 +0100635 ref = gnt_list_entry->gref;
Julien Grall6cc568332015-08-13 13:13:35 +0100636 /*
637 * All the grants are stored in the shadow of the first
638 * request. Therefore we have to use the global index.
639 */
640 shadow->grants_used[setup->grant_idx] = gnt_list_entry;
Julien Grallc004a6f2015-07-22 16:44:54 +0100641
642 if (setup->need_copy) {
643 void *shared_data;
644
645 shared_data = kmap_atomic(gnt_list_entry->page);
646 /*
647 * this does not wipe data stored outside the
648 * range sg->offset..sg->offset+sg->length.
649 * Therefore, blkback *could* see data from
650 * previous requests. This is OK as long as
651 * persistent grants are shared with just one
652 * domain. It may need refactoring if this
653 * changes
654 */
655 memcpy(shared_data + offset,
656 setup->bvec_data + setup->bvec_off,
657 len);
658
659 kunmap_atomic(shared_data);
660 setup->bvec_off += len;
661 }
662
663 fsect = offset >> 9;
664 lsect = fsect + (len >> 9) - 1;
665 if (ring_req->operation != BLKIF_OP_INDIRECT) {
666 ring_req->u.rw.seg[grant_idx] =
667 (struct blkif_request_segment) {
668 .gref = ref,
669 .first_sect = fsect,
670 .last_sect = lsect };
671 } else {
672 setup->segments[grant_idx % GRANTS_PER_INDIRECT_FRAME] =
673 (struct blkif_request_segment) {
674 .gref = ref,
675 .first_sect = fsect,
676 .last_sect = lsect };
677 }
678
679 (setup->grant_idx)++;
680}
681
Julien Grall6cc568332015-08-13 13:13:35 +0100682static void blkif_setup_extra_req(struct blkif_request *first,
683 struct blkif_request *second)
684{
685 uint16_t nr_segments = first->u.rw.nr_segments;
686
687 /*
688 * The second request is only present when the first request uses
689 * all its segments. It's always the continuity of the first one.
690 */
691 first->u.rw.nr_segments = BLKIF_MAX_SEGMENTS_PER_REQUEST;
692
693 second->u.rw.nr_segments = nr_segments - BLKIF_MAX_SEGMENTS_PER_REQUEST;
694 second->u.rw.sector_number = first->u.rw.sector_number +
695 (BLKIF_MAX_SEGMENTS_PER_REQUEST * XEN_PAGE_SIZE) / 512;
696
697 second->u.rw.handle = first->u.rw.handle;
698 second->operation = first->operation;
699}
700
Bob Liu81f35162015-11-14 11:12:11 +0800701static int blkif_queue_rw_req(struct request *req, struct blkfront_ring_info *rinfo)
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700702{
Bob Liu81f35162015-11-14 11:12:11 +0800703 struct blkfront_info *info = rinfo->dev_info;
Julien Grall6cc568332015-08-13 13:13:35 +0100704 struct blkif_request *ring_req, *extra_ring_req = NULL;
705 unsigned long id, extra_id = NO_ASSOCIATED_ID;
706 bool require_extra_req = false;
Julien Grallc004a6f2015-07-22 16:44:54 +0100707 int i;
708 struct setup_rw_req setup = {
709 .grant_idx = 0,
710 .segments = NULL,
Bob Liu81f35162015-11-14 11:12:11 +0800711 .rinfo = rinfo,
Julien Grallc004a6f2015-07-22 16:44:54 +0100712 .need_copy = rq_data_dir(req) && info->feature_persistent,
713 };
Roger Pau Monne0a8704a2012-10-24 18:58:45 +0200714
715 /*
716 * Used to store if we are able to queue the request by just using
717 * existing persistent grants, or if we have to get new grants,
718 * as there are not sufficiently many free.
719 */
Dongli Zhangbd912ef32017-06-28 20:57:28 +0800720 bool new_persistent_gnts = false;
Jens Axboe9e973e62009-02-24 08:10:09 +0100721 struct scatterlist *sg;
Julien Grallc004a6f2015-07-22 16:44:54 +0100722 int num_sg, max_grefs, num_grant;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700723
Julien Grallc004a6f2015-07-22 16:44:54 +0100724 max_grefs = req->nr_phys_segments * GRANTS_PER_PSEG;
Roger Pau Monnec47206e2013-08-12 12:53:43 +0200725 if (max_grefs > BLKIF_MAX_SEGMENTS_PER_REQUEST)
726 /*
727 * If we are using indirect segments we need to account
728 * for the indirect grefs used in the request.
729 */
Julien Grallc004a6f2015-07-22 16:44:54 +0100730 max_grefs += INDIRECT_GREFS(max_grefs);
Roger Pau Monne402b27f2013-04-18 16:06:54 +0200731
Dongli Zhangbd912ef32017-06-28 20:57:28 +0800732 /* Check if we have enough persistent grants to allocate a requests */
733 if (rinfo->persistent_gnts_c < max_grefs) {
734 new_persistent_gnts = true;
735
736 if (gnttab_alloc_grant_references(
737 max_grefs - rinfo->persistent_gnts_c,
738 &setup.gref_head) < 0) {
Roger Pau Monne0a8704a2012-10-24 18:58:45 +0200739 gnttab_request_free_callback(
Bob Liu81f35162015-11-14 11:12:11 +0800740 &rinfo->callback,
Roger Pau Monne0a8704a2012-10-24 18:58:45 +0200741 blkif_restart_queue_callback,
Bob Liu81f35162015-11-14 11:12:11 +0800742 rinfo,
Dongli Zhangbd912ef32017-06-28 20:57:28 +0800743 max_grefs - rinfo->persistent_gnts_c);
Roger Pau Monne0a8704a2012-10-24 18:58:45 +0200744 return 1;
745 }
Dongli Zhangbd912ef32017-06-28 20:57:28 +0800746 }
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700747
748 /* Fill out a communications ring structure. */
Julien Grall2e073962015-08-13 19:23:10 +0100749 id = blkif_ring_get_request(rinfo, req, &ring_req);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700750
Bob Liu81f35162015-11-14 11:12:11 +0800751 num_sg = blk_rq_map_sg(req->q, req, rinfo->shadow[id].sg);
Julien Grallc004a6f2015-07-22 16:44:54 +0100752 num_grant = 0;
753 /* Calculate the number of grant used */
Bob Liu81f35162015-11-14 11:12:11 +0800754 for_each_sg(rinfo->shadow[id].sg, sg, num_sg, i)
Julien Grallc004a6f2015-07-22 16:44:54 +0100755 num_grant += gnttab_count_grant(sg->offset, sg->length);
756
Julien Grall6cc568332015-08-13 13:13:35 +0100757 require_extra_req = info->max_indirect_segments == 0 &&
758 num_grant > BLKIF_MAX_SEGMENTS_PER_REQUEST;
759 BUG_ON(!HAS_EXTRA_REQ && require_extra_req);
760
Bob Liu81f35162015-11-14 11:12:11 +0800761 rinfo->shadow[id].num_sg = num_sg;
Julien Grall6cc568332015-08-13 13:13:35 +0100762 if (num_grant > BLKIF_MAX_SEGMENTS_PER_REQUEST &&
763 likely(!require_extra_req)) {
Julien Grall33204662015-06-29 17:35:24 +0100764 /*
765 * The indirect operation can only be a BLKIF_OP_READ or
766 * BLKIF_OP_WRITE
767 */
Mike Christie3a5e02c2016-06-05 14:32:23 -0500768 BUG_ON(req_op(req) == REQ_OP_FLUSH || req->cmd_flags & REQ_FUA);
Julien Grall33204662015-06-29 17:35:24 +0100769 ring_req->operation = BLKIF_OP_INDIRECT;
770 ring_req->u.indirect.indirect_op = rq_data_dir(req) ?
771 BLKIF_OP_WRITE : BLKIF_OP_READ;
772 ring_req->u.indirect.sector_number = (blkif_sector_t)blk_rq_pos(req);
773 ring_req->u.indirect.handle = info->handle;
Julien Grallc004a6f2015-07-22 16:44:54 +0100774 ring_req->u.indirect.nr_segments = num_grant;
Li Dongyanged30bf32011-09-01 18:39:09 +0800775 } else {
Julien Grall33204662015-06-29 17:35:24 +0100776 ring_req->u.rw.sector_number = (blkif_sector_t)blk_rq_pos(req);
777 ring_req->u.rw.handle = info->handle;
778 ring_req->operation = rq_data_dir(req) ?
779 BLKIF_OP_WRITE : BLKIF_OP_READ;
Mike Christie3a5e02c2016-06-05 14:32:23 -0500780 if (req_op(req) == REQ_OP_FLUSH || req->cmd_flags & REQ_FUA) {
Roger Pau Monne402b27f2013-04-18 16:06:54 +0200781 /*
Julien Grall33204662015-06-29 17:35:24 +0100782 * Ideally we can do an unordered flush-to-disk.
783 * In case the backend onlysupports barriers, use that.
784 * A barrier request a superset of FUA, so we can
785 * implement it the same way. (It's also a FLUSH+FUA,
786 * since it is guaranteed ordered WRT previous writes.)
Roger Pau Monne402b27f2013-04-18 16:06:54 +0200787 */
Mike Christiea4180902016-06-05 14:32:24 -0500788 if (info->feature_flush && info->feature_fua)
Julien Grall33204662015-06-29 17:35:24 +0100789 ring_req->operation =
790 BLKIF_OP_WRITE_BARRIER;
Mike Christiea4180902016-06-05 14:32:24 -0500791 else if (info->feature_flush)
Julien Grall33204662015-06-29 17:35:24 +0100792 ring_req->operation =
793 BLKIF_OP_FLUSH_DISKCACHE;
Mike Christiea4180902016-06-05 14:32:24 -0500794 else
Julien Grall33204662015-06-29 17:35:24 +0100795 ring_req->operation = 0;
Li Dongyanged30bf32011-09-01 18:39:09 +0800796 }
Julien Grallc004a6f2015-07-22 16:44:54 +0100797 ring_req->u.rw.nr_segments = num_grant;
Julien Grall6cc568332015-08-13 13:13:35 +0100798 if (unlikely(require_extra_req)) {
799 extra_id = blkif_ring_get_request(rinfo, req,
800 &extra_ring_req);
801 /*
802 * Only the first request contains the scatter-gather
803 * list.
804 */
805 rinfo->shadow[extra_id].num_sg = 0;
806
807 blkif_setup_extra_req(ring_req, extra_ring_req);
808
809 /* Link the 2 requests together */
810 rinfo->shadow[extra_id].associated_id = id;
811 rinfo->shadow[id].associated_id = extra_id;
812 }
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700813 }
814
Julien Grallc004a6f2015-07-22 16:44:54 +0100815 setup.ring_req = ring_req;
816 setup.id = id;
Julien Grall6cc568332015-08-13 13:13:35 +0100817
818 setup.require_extra_req = require_extra_req;
819 if (unlikely(require_extra_req))
820 setup.extra_ring_req = extra_ring_req;
821
Bob Liu81f35162015-11-14 11:12:11 +0800822 for_each_sg(rinfo->shadow[id].sg, sg, num_sg, i) {
Julien Grallc004a6f2015-07-22 16:44:54 +0100823 BUG_ON(sg->offset + sg->length > PAGE_SIZE);
Julien Grall33204662015-06-29 17:35:24 +0100824
Julien Grallc004a6f2015-07-22 16:44:54 +0100825 if (setup.need_copy) {
826 setup.bvec_off = sg->offset;
827 setup.bvec_data = kmap_atomic(sg_page(sg));
Julien Grall33204662015-06-29 17:35:24 +0100828 }
829
Julien Grallc004a6f2015-07-22 16:44:54 +0100830 gnttab_foreach_grant_in_range(sg_page(sg),
831 sg->offset,
832 sg->length,
833 blkif_setup_rw_req_grant,
834 &setup);
Julien Grall33204662015-06-29 17:35:24 +0100835
Julien Grallc004a6f2015-07-22 16:44:54 +0100836 if (setup.need_copy)
837 kunmap_atomic(setup.bvec_data);
Julien Grall33204662015-06-29 17:35:24 +0100838 }
Julien Grallc004a6f2015-07-22 16:44:54 +0100839 if (setup.segments)
840 kunmap_atomic(setup.segments);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700841
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700842 /* Keep a private copy so we can reissue requests when recovering. */
Bob Liu81f35162015-11-14 11:12:11 +0800843 rinfo->shadow[id].req = *ring_req;
Julien Grall6cc568332015-08-13 13:13:35 +0100844 if (unlikely(require_extra_req))
845 rinfo->shadow[extra_id].req = *extra_ring_req;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700846
Dongli Zhangbd912ef32017-06-28 20:57:28 +0800847 if (new_persistent_gnts)
Julien Grallc004a6f2015-07-22 16:44:54 +0100848 gnttab_free_grant_references(setup.gref_head);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700849
850 return 0;
851}
852
Julien Grall33204662015-06-29 17:35:24 +0100853/*
854 * Generate a Xen blkfront IO request from a blk layer request. Reads
855 * and writes are handled as expected.
856 *
857 * @req: a request struct
858 */
Bob Liu81f35162015-11-14 11:12:11 +0800859static int blkif_queue_request(struct request *req, struct blkfront_ring_info *rinfo)
Julien Grall33204662015-06-29 17:35:24 +0100860{
Bob Liu81f35162015-11-14 11:12:11 +0800861 if (unlikely(rinfo->dev_info->connected != BLKIF_STATE_CONNECTED))
Julien Grall33204662015-06-29 17:35:24 +0100862 return 1;
863
Mike Christiec2df40d2016-06-05 14:32:17 -0500864 if (unlikely(req_op(req) == REQ_OP_DISCARD ||
Christoph Hellwig288dab82016-06-09 16:00:36 +0200865 req_op(req) == REQ_OP_SECURE_ERASE))
Bob Liu81f35162015-11-14 11:12:11 +0800866 return blkif_queue_discard_req(req, rinfo);
Julien Grall33204662015-06-29 17:35:24 +0100867 else
Bob Liu81f35162015-11-14 11:12:11 +0800868 return blkif_queue_rw_req(req, rinfo);
Julien Grall33204662015-06-29 17:35:24 +0100869}
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700870
Bob Liu81f35162015-11-14 11:12:11 +0800871static inline void flush_requests(struct blkfront_ring_info *rinfo)
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700872{
873 int notify;
874
Bob Liu81f35162015-11-14 11:12:11 +0800875 RING_PUSH_REQUESTS_AND_CHECK_NOTIFY(&rinfo->ring, notify);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700876
877 if (notify)
Bob Liu81f35162015-11-14 11:12:11 +0800878 notify_remote_via_irq(rinfo->irq);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700879}
880
Vitaly Kuznetsovad42d392014-12-01 14:01:13 +0100881static inline bool blkif_request_flush_invalid(struct request *req,
882 struct blkfront_info *info)
Arianna Avanzini0f1ca652014-08-22 13:20:02 +0200883{
Christoph Hellwigaebf5262017-01-31 16:57:31 +0100884 return (blk_rq_is_passthrough(req) ||
Mike Christie3a5e02c2016-06-05 14:32:23 -0500885 ((req_op(req) == REQ_OP_FLUSH) &&
Mike Christiea4180902016-06-05 14:32:24 -0500886 !info->feature_flush) ||
Vitaly Kuznetsovad42d392014-12-01 14:01:13 +0100887 ((req->cmd_flags & REQ_FUA) &&
Mike Christiea4180902016-06-05 14:32:24 -0500888 !info->feature_fua));
Arianna Avanzini0f1ca652014-08-22 13:20:02 +0200889}
890
Christoph Hellwigfc17b652017-06-03 09:38:05 +0200891static blk_status_t blkif_queue_rq(struct blk_mq_hw_ctx *hctx,
Konrad Rzeszutek Wilk6f03a7f2015-11-16 15:14:41 -0500892 const struct blk_mq_queue_data *qd)
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700893{
Bob Liu11659562015-11-14 11:12:13 +0800894 unsigned long flags;
Bob Liu2a6f71a2016-05-31 16:59:17 +0800895 int qid = hctx->queue_num;
896 struct blkfront_info *info = hctx->queue->queuedata;
897 struct blkfront_ring_info *rinfo = NULL;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700898
Juergen Gross4ab50af2020-03-05 16:51:29 +0100899 rinfo = get_rinfo(info, qid);
Bob Liu907c3eb2015-07-13 17:55:24 +0800900 blk_mq_start_request(qd->rq);
Bob Liu11659562015-11-14 11:12:13 +0800901 spin_lock_irqsave(&rinfo->ring_lock, flags);
Bob Liu81f35162015-11-14 11:12:11 +0800902 if (RING_FULL(&rinfo->ring))
Bob Liu907c3eb2015-07-13 17:55:24 +0800903 goto out_busy;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700904
Bob Liu81f35162015-11-14 11:12:11 +0800905 if (blkif_request_flush_invalid(qd->rq, rinfo->dev_info))
Bob Liu907c3eb2015-07-13 17:55:24 +0800906 goto out_err;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700907
Bob Liu81f35162015-11-14 11:12:11 +0800908 if (blkif_queue_request(qd->rq, rinfo))
Bob Liu907c3eb2015-07-13 17:55:24 +0800909 goto out_busy;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700910
Bob Liu81f35162015-11-14 11:12:11 +0800911 flush_requests(rinfo);
Bob Liu11659562015-11-14 11:12:13 +0800912 spin_unlock_irqrestore(&rinfo->ring_lock, flags);
Christoph Hellwigfc17b652017-06-03 09:38:05 +0200913 return BLK_STS_OK;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700914
Bob Liu907c3eb2015-07-13 17:55:24 +0800915out_err:
Bob Liu11659562015-11-14 11:12:13 +0800916 spin_unlock_irqrestore(&rinfo->ring_lock, flags);
Christoph Hellwigfc17b652017-06-03 09:38:05 +0200917 return BLK_STS_IOERR;
Tejun Heo296b2f62009-05-08 11:54:15 +0900918
Bob Liu907c3eb2015-07-13 17:55:24 +0800919out_busy:
Bob Liu907c3eb2015-07-13 17:55:24 +0800920 blk_mq_stop_hw_queue(hctx);
Junxiao Bi4b422cb2017-07-20 09:26:21 +0800921 spin_unlock_irqrestore(&rinfo->ring_lock, flags);
Ming Lei86ff7c22018-01-30 22:04:57 -0500922 return BLK_STS_DEV_RESOURCE;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700923}
924
Christoph Hellwig26095872017-04-20 16:03:08 +0200925static void blkif_complete_rq(struct request *rq)
926{
927 blk_mq_end_request(rq, blkif_req(rq)->error);
928}
929
Eric Biggersf363b082017-03-30 13:39:16 -0700930static const struct blk_mq_ops blkfront_mq_ops = {
Bob Liu907c3eb2015-07-13 17:55:24 +0800931 .queue_rq = blkif_queue_rq,
Christoph Hellwig26095872017-04-20 16:03:08 +0200932 .complete = blkif_complete_rq,
Bob Liu907c3eb2015-07-13 17:55:24 +0800933};
934
Bob Liu172335a2016-07-01 17:43:39 -0400935static void blkif_set_queue_limits(struct blkfront_info *info)
936{
937 struct request_queue *rq = info->rq;
938 struct gendisk *gd = info->gd;
939 unsigned int segments = info->max_indirect_segments ? :
940 BLKIF_MAX_SEGMENTS_PER_REQUEST;
941
Bart Van Assche8b904b52018-03-07 17:10:10 -0800942 blk_queue_flag_set(QUEUE_FLAG_VIRT, rq);
Bob Liu172335a2016-07-01 17:43:39 -0400943
944 if (info->feature_discard) {
Bart Van Assche8b904b52018-03-07 17:10:10 -0800945 blk_queue_flag_set(QUEUE_FLAG_DISCARD, rq);
Bob Liu172335a2016-07-01 17:43:39 -0400946 blk_queue_max_discard_sectors(rq, get_capacity(gd));
947 rq->limits.discard_granularity = info->discard_granularity;
948 rq->limits.discard_alignment = info->discard_alignment;
949 if (info->feature_secdiscard)
Bart Van Assche8b904b52018-03-07 17:10:10 -0800950 blk_queue_flag_set(QUEUE_FLAG_SECERASE, rq);
Bob Liu172335a2016-07-01 17:43:39 -0400951 }
952
953 /* Hard sector size and max sectors impersonate the equiv. hardware. */
954 blk_queue_logical_block_size(rq, info->sector_size);
955 blk_queue_physical_block_size(rq, info->physical_sector_size);
956 blk_queue_max_hw_sectors(rq, (segments * XEN_PAGE_SIZE) / 512);
957
958 /* Each segment in a request is up to an aligned page in size. */
959 blk_queue_segment_boundary(rq, PAGE_SIZE - 1);
960 blk_queue_max_segment_size(rq, PAGE_SIZE);
961
962 /* Ensure a merged request will fit in a single I/O ring slot. */
963 blk_queue_max_segments(rq, segments / GRANTS_PER_PSEG);
964
965 /* Make sure buffer addresses are sector-aligned. */
966 blk_queue_dma_alignment(rq, 511);
Bob Liu172335a2016-07-01 17:43:39 -0400967}
968
Roger Pau Monne402b27f2013-04-18 16:06:54 +0200969static int xlvbd_init_blk_queue(struct gendisk *gd, u16 sector_size,
Bob Liu172335a2016-07-01 17:43:39 -0400970 unsigned int physical_sector_size)
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700971{
Jens Axboe165125e2007-07-24 09:28:11 +0200972 struct request_queue *rq;
Li Dongyanged30bf32011-09-01 18:39:09 +0800973 struct blkfront_info *info = gd->private_data;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700974
Bob Liu907c3eb2015-07-13 17:55:24 +0800975 memset(&info->tag_set, 0, sizeof(info->tag_set));
976 info->tag_set.ops = &blkfront_mq_ops;
Bob Liu28d949b2015-11-14 11:12:14 +0800977 info->tag_set.nr_hw_queues = info->nr_rings;
Julien Grall6cc568332015-08-13 13:13:35 +0100978 if (HAS_EXTRA_REQ && info->max_indirect_segments == 0) {
979 /*
980 * When indirect descriptior is not supported, the I/O request
981 * will be split between multiple request in the ring.
982 * To avoid problems when sending the request, divide by
983 * 2 the depth of the queue.
984 */
985 info->tag_set.queue_depth = BLK_RING_SIZE(info) / 2;
986 } else
987 info->tag_set.queue_depth = BLK_RING_SIZE(info);
Bob Liu907c3eb2015-07-13 17:55:24 +0800988 info->tag_set.numa_node = NUMA_NO_NODE;
Ming Lei56d18f62019-02-15 19:13:24 +0800989 info->tag_set.flags = BLK_MQ_F_SHOULD_MERGE;
Christoph Hellwig26095872017-04-20 16:03:08 +0200990 info->tag_set.cmd_size = sizeof(struct blkif_req);
Bob Liu907c3eb2015-07-13 17:55:24 +0800991 info->tag_set.driver_data = info;
992
993 if (blk_mq_alloc_tag_set(&info->tag_set))
Konrad Rzeszutek Wilkbde21f72015-11-25 13:07:39 -0500994 return -EINVAL;
Bob Liu907c3eb2015-07-13 17:55:24 +0800995 rq = blk_mq_init_queue(&info->tag_set);
996 if (IS_ERR(rq)) {
997 blk_mq_free_tag_set(&info->tag_set);
Konrad Rzeszutek Wilkbde21f72015-11-25 13:07:39 -0500998 return PTR_ERR(rq);
Bob Liu907c3eb2015-07-13 17:55:24 +0800999 }
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001000
Bob Liu2a6f71a2016-05-31 16:59:17 +08001001 rq->queuedata = info;
Bob Liu172335a2016-07-01 17:43:39 -04001002 info->rq = gd->queue = rq;
1003 info->gd = gd;
1004 info->sector_size = sector_size;
1005 info->physical_sector_size = physical_sector_size;
1006 blkif_set_queue_limits(info);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001007
1008 return 0;
1009}
1010
Mike Christiea4180902016-06-05 14:32:24 -05001011static const char *flush_info(struct blkfront_info *info)
Vitaly Kuznetsovfdf9b962014-12-09 15:25:10 +01001012{
Mike Christiea4180902016-06-05 14:32:24 -05001013 if (info->feature_flush && info->feature_fua)
Vitaly Kuznetsovfdf9b962014-12-09 15:25:10 +01001014 return "barrier: enabled;";
Mike Christiea4180902016-06-05 14:32:24 -05001015 else if (info->feature_flush)
Vitaly Kuznetsovfdf9b962014-12-09 15:25:10 +01001016 return "flush diskcache: enabled;";
Mike Christiea4180902016-06-05 14:32:24 -05001017 else
Vitaly Kuznetsovfdf9b962014-12-09 15:25:10 +01001018 return "barrier or flush: disabled;";
Vitaly Kuznetsovfdf9b962014-12-09 15:25:10 +01001019}
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001020
Tejun Heo4913efe2010-09-03 11:56:16 +02001021static void xlvbd_flush(struct blkfront_info *info)
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001022{
Mike Christiea4180902016-06-05 14:32:24 -05001023 blk_queue_write_cache(info->rq, info->feature_flush ? true : false,
1024 info->feature_fua ? true : false);
Vitaly Kuznetsovfdf9b962014-12-09 15:25:10 +01001025 pr_info("blkfront: %s: %s %s %s %s %s\n",
Mike Christiea4180902016-06-05 14:32:24 -05001026 info->gd->disk_name, flush_info(info),
Vitaly Kuznetsovfdf9b962014-12-09 15:25:10 +01001027 "persistent grants:", info->feature_persistent ?
1028 "enabled;" : "disabled;", "indirect descriptors:",
1029 info->max_indirect_segments ? "enabled;" : "disabled;");
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001030}
1031
Stefano Stabellinic80a4202010-12-02 17:55:00 +00001032static int xen_translate_vdev(int vdevice, int *minor, unsigned int *offset)
1033{
1034 int major;
1035 major = BLKIF_MAJOR(vdevice);
1036 *minor = BLKIF_MINOR(vdevice);
1037 switch (major) {
1038 case XEN_IDE0_MAJOR:
1039 *offset = (*minor / 64) + EMULATED_HD_DISK_NAME_OFFSET;
1040 *minor = ((*minor / 64) * PARTS_PER_DISK) +
1041 EMULATED_HD_DISK_MINOR_OFFSET;
1042 break;
1043 case XEN_IDE1_MAJOR:
1044 *offset = (*minor / 64) + 2 + EMULATED_HD_DISK_NAME_OFFSET;
1045 *minor = (((*minor / 64) + 2) * PARTS_PER_DISK) +
1046 EMULATED_HD_DISK_MINOR_OFFSET;
1047 break;
1048 case XEN_SCSI_DISK0_MAJOR:
1049 *offset = (*minor / PARTS_PER_DISK) + EMULATED_SD_DISK_NAME_OFFSET;
1050 *minor = *minor + EMULATED_SD_DISK_MINOR_OFFSET;
1051 break;
1052 case XEN_SCSI_DISK1_MAJOR:
1053 case XEN_SCSI_DISK2_MAJOR:
1054 case XEN_SCSI_DISK3_MAJOR:
1055 case XEN_SCSI_DISK4_MAJOR:
1056 case XEN_SCSI_DISK5_MAJOR:
1057 case XEN_SCSI_DISK6_MAJOR:
1058 case XEN_SCSI_DISK7_MAJOR:
1059 *offset = (*minor / PARTS_PER_DISK) +
1060 ((major - XEN_SCSI_DISK1_MAJOR + 1) * 16) +
1061 EMULATED_SD_DISK_NAME_OFFSET;
1062 *minor = *minor +
1063 ((major - XEN_SCSI_DISK1_MAJOR + 1) * 16 * PARTS_PER_DISK) +
1064 EMULATED_SD_DISK_MINOR_OFFSET;
1065 break;
1066 case XEN_SCSI_DISK8_MAJOR:
1067 case XEN_SCSI_DISK9_MAJOR:
1068 case XEN_SCSI_DISK10_MAJOR:
1069 case XEN_SCSI_DISK11_MAJOR:
1070 case XEN_SCSI_DISK12_MAJOR:
1071 case XEN_SCSI_DISK13_MAJOR:
1072 case XEN_SCSI_DISK14_MAJOR:
1073 case XEN_SCSI_DISK15_MAJOR:
1074 *offset = (*minor / PARTS_PER_DISK) +
1075 ((major - XEN_SCSI_DISK8_MAJOR + 8) * 16) +
1076 EMULATED_SD_DISK_NAME_OFFSET;
1077 *minor = *minor +
1078 ((major - XEN_SCSI_DISK8_MAJOR + 8) * 16 * PARTS_PER_DISK) +
1079 EMULATED_SD_DISK_MINOR_OFFSET;
1080 break;
1081 case XENVBD_MAJOR:
1082 *offset = *minor / PARTS_PER_DISK;
1083 break;
1084 default:
1085 printk(KERN_WARNING "blkfront: your disk configuration is "
1086 "incorrect, please use an xvd device instead\n");
1087 return -ENODEV;
1088 }
1089 return 0;
1090}
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001091
Jan Beuliche77c78c2012-04-05 16:37:22 +01001092static char *encode_disk_name(char *ptr, unsigned int n)
1093{
1094 if (n >= 26)
1095 ptr = encode_disk_name(ptr, n / 26 - 1);
1096 *ptr = 'a' + n % 26;
1097 return ptr + 1;
1098}
1099
Chris Lalancette9246b5f2008-09-17 14:30:32 -07001100static int xlvbd_alloc_gendisk(blkif_sector_t capacity,
1101 struct blkfront_info *info,
Stefan Bader7c4d7d72013-05-13 16:28:15 +02001102 u16 vdisk_info, u16 sector_size,
1103 unsigned int physical_sector_size)
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001104{
1105 struct gendisk *gd;
1106 int nr_minors = 1;
Stefano Stabellinic80a4202010-12-02 17:55:00 +00001107 int err;
Chris Lalancette9246b5f2008-09-17 14:30:32 -07001108 unsigned int offset;
1109 int minor;
1110 int nr_parts;
Jan Beuliche77c78c2012-04-05 16:37:22 +01001111 char *ptr;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001112
1113 BUG_ON(info->gd != NULL);
1114 BUG_ON(info->rq != NULL);
1115
Chris Lalancette9246b5f2008-09-17 14:30:32 -07001116 if ((info->vdevice>>EXT_SHIFT) > 1) {
1117 /* this is above the extended range; something is wrong */
1118 printk(KERN_WARNING "blkfront: vdevice 0x%x is above the extended range; ignoring\n", info->vdevice);
1119 return -ENODEV;
1120 }
1121
1122 if (!VDEV_IS_EXTENDED(info->vdevice)) {
Stefano Stabellinic80a4202010-12-02 17:55:00 +00001123 err = xen_translate_vdev(info->vdevice, &minor, &offset);
1124 if (err)
Nathan Chancellor589b7282019-12-09 13:14:44 -07001125 return err;
1126 nr_parts = PARTS_PER_DISK;
Chris Lalancette9246b5f2008-09-17 14:30:32 -07001127 } else {
1128 minor = BLKIF_MINOR_EXT(info->vdevice);
1129 nr_parts = PARTS_PER_EXT_DISK;
Stefano Stabellinic80a4202010-12-02 17:55:00 +00001130 offset = minor / nr_parts;
Stefan Bader89153b52011-07-14 15:30:37 +02001131 if (xen_hvm_domain() && offset < EMULATED_HD_DISK_NAME_OFFSET + 4)
Stefano Stabellinic80a4202010-12-02 17:55:00 +00001132 printk(KERN_WARNING "blkfront: vdevice 0x%x might conflict with "
1133 "emulated IDE disks,\n\t choose an xvd device name"
1134 "from xvde on\n", info->vdevice);
Chris Lalancette9246b5f2008-09-17 14:30:32 -07001135 }
Jan Beuliche77c78c2012-04-05 16:37:22 +01001136 if (minor >> MINORBITS) {
1137 pr_warn("blkfront: %#x's minor (%#x) out of range; ignoring\n",
1138 info->vdevice, minor);
1139 return -ENODEV;
1140 }
Chris Lalancette9246b5f2008-09-17 14:30:32 -07001141
1142 if ((minor % nr_parts) == 0)
1143 nr_minors = nr_parts;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001144
Jan Beulich0e345822010-08-07 18:28:55 +02001145 err = xlbd_reserve_minors(minor, nr_minors);
1146 if (err)
1147 goto out;
1148 err = -ENODEV;
1149
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001150 gd = alloc_disk(nr_minors);
1151 if (gd == NULL)
Jan Beulich0e345822010-08-07 18:28:55 +02001152 goto release;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001153
Jan Beuliche77c78c2012-04-05 16:37:22 +01001154 strcpy(gd->disk_name, DEV_NAME);
1155 ptr = encode_disk_name(gd->disk_name + sizeof(DEV_NAME) - 1, offset);
1156 BUG_ON(ptr >= gd->disk_name + DISK_NAME_LEN);
1157 if (nr_minors > 1)
1158 *ptr = 0;
1159 else
1160 snprintf(ptr, gd->disk_name + DISK_NAME_LEN - ptr,
1161 "%d", minor & (nr_parts - 1));
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001162
1163 gd->major = XENVBD_MAJOR;
1164 gd->first_minor = minor;
1165 gd->fops = &xlvbd_block_fops;
1166 gd->private_data = info;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001167 set_capacity(gd, capacity);
1168
Bob Liu172335a2016-07-01 17:43:39 -04001169 if (xlvbd_init_blk_queue(gd, sector_size, physical_sector_size)) {
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001170 del_gendisk(gd);
Jan Beulich0e345822010-08-07 18:28:55 +02001171 goto release;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001172 }
1173
Tejun Heo4913efe2010-09-03 11:56:16 +02001174 xlvbd_flush(info);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001175
1176 if (vdisk_info & VDISK_READONLY)
1177 set_disk_ro(gd, 1);
1178
1179 if (vdisk_info & VDISK_REMOVABLE)
1180 gd->flags |= GENHD_FL_REMOVABLE;
1181
1182 if (vdisk_info & VDISK_CDROM)
1183 gd->flags |= GENHD_FL_CD;
1184
1185 return 0;
1186
Jan Beulich0e345822010-08-07 18:28:55 +02001187 release:
1188 xlbd_release_minors(minor, nr_minors);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001189 out:
1190 return err;
1191}
1192
Daniel Stoddena66b5ae2010-08-07 18:33:17 +02001193static void xlvbd_release_gendisk(struct blkfront_info *info)
1194{
Bob Liu3df0e502015-11-14 11:12:12 +08001195 unsigned int minor, nr_minors, i;
Juergen Gross4ab50af2020-03-05 16:51:29 +01001196 struct blkfront_ring_info *rinfo;
Daniel Stoddena66b5ae2010-08-07 18:33:17 +02001197
1198 if (info->rq == NULL)
1199 return;
1200
Daniel Stoddena66b5ae2010-08-07 18:33:17 +02001201 /* No more blkif_request(). */
Bob Liu907c3eb2015-07-13 17:55:24 +08001202 blk_mq_stop_hw_queues(info->rq);
Daniel Stoddena66b5ae2010-08-07 18:33:17 +02001203
Juergen Gross4ab50af2020-03-05 16:51:29 +01001204 for_each_rinfo(info, rinfo, i) {
Bob Liu3df0e502015-11-14 11:12:12 +08001205 /* No more gnttab callback work. */
1206 gnttab_cancel_free_callback(&rinfo->callback);
1207
1208 /* Flush gnttab callback work. Must be done with no locks held. */
1209 flush_work(&rinfo->work);
1210 }
Daniel Stoddena66b5ae2010-08-07 18:33:17 +02001211
1212 del_gendisk(info->gd);
1213
1214 minor = info->gd->first_minor;
1215 nr_minors = info->gd->minors;
1216 xlbd_release_minors(minor, nr_minors);
1217
1218 blk_cleanup_queue(info->rq);
Bob Liu907c3eb2015-07-13 17:55:24 +08001219 blk_mq_free_tag_set(&info->tag_set);
Daniel Stoddena66b5ae2010-08-07 18:33:17 +02001220 info->rq = NULL;
1221
1222 put_disk(info->gd);
1223 info->gd = NULL;
1224}
1225
Bob Liu11659562015-11-14 11:12:13 +08001226/* Already hold rinfo->ring_lock. */
1227static inline void kick_pending_request_queues_locked(struct blkfront_ring_info *rinfo)
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001228{
Bob Liu81f35162015-11-14 11:12:11 +08001229 if (!RING_FULL(&rinfo->ring))
1230 blk_mq_start_stopped_hw_queues(rinfo->dev_info->rq, true);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001231}
1232
Bob Liu11659562015-11-14 11:12:13 +08001233static void kick_pending_request_queues(struct blkfront_ring_info *rinfo)
1234{
1235 unsigned long flags;
1236
1237 spin_lock_irqsave(&rinfo->ring_lock, flags);
1238 kick_pending_request_queues_locked(rinfo);
1239 spin_unlock_irqrestore(&rinfo->ring_lock, flags);
1240}
1241
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001242static void blkif_restart_queue(struct work_struct *work)
1243{
Bob Liu81f35162015-11-14 11:12:11 +08001244 struct blkfront_ring_info *rinfo = container_of(work, struct blkfront_ring_info, work);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001245
Bob Liu81f35162015-11-14 11:12:11 +08001246 if (rinfo->dev_info->connected == BLKIF_STATE_CONNECTED)
1247 kick_pending_request_queues(rinfo);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001248}
1249
Bob Liu3df0e502015-11-14 11:12:12 +08001250static void blkif_free_ring(struct blkfront_ring_info *rinfo)
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001251{
Bob Liu73716df2015-11-16 16:51:39 -05001252 struct grant *persistent_gnt, *n;
Bob Liu3df0e502015-11-14 11:12:12 +08001253 struct blkfront_info *info = rinfo->dev_info;
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001254 int i, j, segs;
Roger Pau Monne0a8704a2012-10-24 18:58:45 +02001255
Roger Pau Monnebfe11d62013-10-29 18:31:14 +01001256 /*
1257 * Remove indirect pages, this only happens when using indirect
1258 * descriptors but not persistent grants
1259 */
Bob Liu81f35162015-11-14 11:12:11 +08001260 if (!list_empty(&rinfo->indirect_pages)) {
Roger Pau Monnebfe11d62013-10-29 18:31:14 +01001261 struct page *indirect_page, *n;
1262
1263 BUG_ON(info->feature_persistent);
Bob Liu81f35162015-11-14 11:12:11 +08001264 list_for_each_entry_safe(indirect_page, n, &rinfo->indirect_pages, lru) {
Roger Pau Monnebfe11d62013-10-29 18:31:14 +01001265 list_del(&indirect_page->lru);
1266 __free_page(indirect_page);
1267 }
1268 }
1269
Bob Liu73716df2015-11-16 16:51:39 -05001270 /* Remove all persistent grants. */
1271 if (!list_empty(&rinfo->grants)) {
1272 list_for_each_entry_safe(persistent_gnt, n,
1273 &rinfo->grants, node) {
1274 list_del(&persistent_gnt->node);
1275 if (persistent_gnt->gref != GRANT_INVALID_REF) {
1276 gnttab_end_foreign_access(persistent_gnt->gref,
1277 0, 0UL);
1278 rinfo->persistent_gnts_c--;
1279 }
1280 if (info->feature_persistent)
1281 __free_page(persistent_gnt->page);
1282 kfree(persistent_gnt);
1283 }
1284 }
1285 BUG_ON(rinfo->persistent_gnts_c != 0);
1286
Bob Liu86839c52015-06-03 13:40:03 +08001287 for (i = 0; i < BLK_RING_SIZE(info); i++) {
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001288 /*
1289 * Clear persistent grants present in requests already
1290 * on the shared ring
1291 */
Bob Liu81f35162015-11-14 11:12:11 +08001292 if (!rinfo->shadow[i].request)
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001293 goto free_shadow;
1294
Bob Liu81f35162015-11-14 11:12:11 +08001295 segs = rinfo->shadow[i].req.operation == BLKIF_OP_INDIRECT ?
1296 rinfo->shadow[i].req.u.indirect.nr_segments :
1297 rinfo->shadow[i].req.u.rw.nr_segments;
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001298 for (j = 0; j < segs; j++) {
Bob Liu81f35162015-11-14 11:12:11 +08001299 persistent_gnt = rinfo->shadow[i].grants_used[j];
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001300 gnttab_end_foreign_access(persistent_gnt->gref, 0, 0UL);
Roger Pau Monnebfe11d62013-10-29 18:31:14 +01001301 if (info->feature_persistent)
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
Bob Liu81f35162015-11-14 11:12:11 +08001306 if (rinfo->shadow[i].req.operation != BLKIF_OP_INDIRECT)
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001307 /*
1308 * If this is not an indirect operation don't try to
1309 * free indirect segments
1310 */
1311 goto free_shadow;
1312
1313 for (j = 0; j < INDIRECT_GREFS(segs); j++) {
Bob Liu81f35162015-11-14 11:12:11 +08001314 persistent_gnt = rinfo->shadow[i].indirect_grants[j];
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001315 gnttab_end_foreign_access(persistent_gnt->gref, 0, 0UL);
Julien Gralla7a6df22015-06-30 11:58:51 +01001316 __free_page(persistent_gnt->page);
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001317 kfree(persistent_gnt);
1318 }
1319
1320free_shadow:
Roger Pau Monne1d5c76e2019-05-03 17:04:01 +02001321 kvfree(rinfo->shadow[i].grants_used);
Bob Liu81f35162015-11-14 11:12:11 +08001322 rinfo->shadow[i].grants_used = NULL;
Roger Pau Monne1d5c76e2019-05-03 17:04:01 +02001323 kvfree(rinfo->shadow[i].indirect_grants);
Bob Liu81f35162015-11-14 11:12:11 +08001324 rinfo->shadow[i].indirect_grants = NULL;
Roger Pau Monne1d5c76e2019-05-03 17:04:01 +02001325 kvfree(rinfo->shadow[i].sg);
Bob Liu81f35162015-11-14 11:12:11 +08001326 rinfo->shadow[i].sg = NULL;
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001327 }
1328
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001329 /* No more gnttab callback work. */
Bob Liu81f35162015-11-14 11:12:11 +08001330 gnttab_cancel_free_callback(&rinfo->callback);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001331
1332 /* Flush gnttab callback work. Must be done with no locks held. */
Bob Liu81f35162015-11-14 11:12:11 +08001333 flush_work(&rinfo->work);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001334
1335 /* Free resources associated with old device channel. */
Bob Liu86839c52015-06-03 13:40:03 +08001336 for (i = 0; i < info->nr_ring_pages; i++) {
Bob Liu81f35162015-11-14 11:12:11 +08001337 if (rinfo->ring_ref[i] != GRANT_INVALID_REF) {
1338 gnttab_end_foreign_access(rinfo->ring_ref[i], 0, 0);
1339 rinfo->ring_ref[i] = GRANT_INVALID_REF;
Bob Liu86839c52015-06-03 13:40:03 +08001340 }
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001341 }
Bob Liu6c647b02016-07-01 15:45:57 -04001342 free_pages((unsigned long)rinfo->ring.sring, get_order(info->nr_ring_pages * XEN_PAGE_SIZE));
Bob Liu81f35162015-11-14 11:12:11 +08001343 rinfo->ring.sring = NULL;
Bob Liu86839c52015-06-03 13:40:03 +08001344
Bob Liu81f35162015-11-14 11:12:11 +08001345 if (rinfo->irq)
1346 unbind_from_irqhandler(rinfo->irq, rinfo);
1347 rinfo->evtchn = rinfo->irq = 0;
Bob Liu3df0e502015-11-14 11:12:12 +08001348}
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001349
Bob Liu3df0e502015-11-14 11:12:12 +08001350static void blkif_free(struct blkfront_info *info, int suspend)
1351{
Bob Liu3df0e502015-11-14 11:12:12 +08001352 unsigned int i;
Juergen Gross4ab50af2020-03-05 16:51:29 +01001353 struct blkfront_ring_info *rinfo;
Bob Liu3df0e502015-11-14 11:12:12 +08001354
1355 /* Prevent new requests being issued until we fix things up. */
Bob Liu3df0e502015-11-14 11:12:12 +08001356 info->connected = suspend ?
1357 BLKIF_STATE_SUSPENDED : BLKIF_STATE_DISCONNECTED;
1358 /* No more blkif_request(). */
1359 if (info->rq)
1360 blk_mq_stop_hw_queues(info->rq);
1361
Juergen Gross4ab50af2020-03-05 16:51:29 +01001362 for_each_rinfo(info, rinfo, i)
1363 blkif_free_ring(rinfo);
Bob Liu3df0e502015-11-14 11:12:12 +08001364
Roger Pau Monne1d5c76e2019-05-03 17:04:01 +02001365 kvfree(info->rinfo);
Bob Liu3df0e502015-11-14 11:12:12 +08001366 info->rinfo = NULL;
1367 info->nr_rings = 0;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001368}
1369
Julien Grallc004a6f2015-07-22 16:44:54 +01001370struct copy_from_grant {
1371 const struct blk_shadow *s;
1372 unsigned int grant_idx;
1373 unsigned int bvec_offset;
1374 char *bvec_data;
1375};
1376
1377static void blkif_copy_from_grant(unsigned long gfn, unsigned int offset,
1378 unsigned int len, void *data)
1379{
1380 struct copy_from_grant *info = data;
1381 char *shared_data;
1382 /* Convenient aliases */
1383 const struct blk_shadow *s = info->s;
1384
1385 shared_data = kmap_atomic(s->grants_used[info->grant_idx]->page);
1386
1387 memcpy(info->bvec_data + info->bvec_offset,
1388 shared_data + offset, len);
1389
1390 info->bvec_offset += len;
1391 info->grant_idx++;
1392
1393 kunmap_atomic(shared_data);
1394}
1395
Julien Grall6cc568332015-08-13 13:13:35 +01001396static enum blk_req_status blkif_rsp_to_req_status(int rsp)
1397{
1398 switch (rsp)
1399 {
1400 case BLKIF_RSP_OKAY:
1401 return REQ_DONE;
1402 case BLKIF_RSP_EOPNOTSUPP:
1403 return REQ_EOPNOTSUPP;
1404 case BLKIF_RSP_ERROR:
1405 /* Fallthrough. */
1406 default:
1407 return REQ_ERROR;
1408 }
1409}
1410
1411/*
1412 * Get the final status of the block request based on two ring response
1413 */
1414static int blkif_get_final_status(enum blk_req_status s1,
1415 enum blk_req_status s2)
1416{
1417 BUG_ON(s1 == REQ_WAITING);
1418 BUG_ON(s2 == REQ_WAITING);
1419
1420 if (s1 == REQ_ERROR || s2 == REQ_ERROR)
1421 return BLKIF_RSP_ERROR;
1422 else if (s1 == REQ_EOPNOTSUPP || s2 == REQ_EOPNOTSUPP)
1423 return BLKIF_RSP_EOPNOTSUPP;
1424 return BLKIF_RSP_OKAY;
1425}
1426
1427static bool blkif_completion(unsigned long *id,
1428 struct blkfront_ring_info *rinfo,
Roger Pau Monne0a8704a2012-10-24 18:58:45 +02001429 struct blkif_response *bret)
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001430{
Roger Pau Monned62f6912012-12-07 19:00:31 +01001431 int i = 0;
Roger Pau Monneb7649152013-05-02 10:58:50 +02001432 struct scatterlist *sg;
Julien Grallc004a6f2015-07-22 16:44:54 +01001433 int num_sg, num_grant;
Bob Liu81f35162015-11-14 11:12:11 +08001434 struct blkfront_info *info = rinfo->dev_info;
Julien Grall6cc568332015-08-13 13:13:35 +01001435 struct blk_shadow *s = &rinfo->shadow[*id];
Julien Grallc004a6f2015-07-22 16:44:54 +01001436 struct copy_from_grant data = {
Julien Grallc004a6f2015-07-22 16:44:54 +01001437 .grant_idx = 0,
1438 };
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001439
Julien Grallc004a6f2015-07-22 16:44:54 +01001440 num_grant = s->req.operation == BLKIF_OP_INDIRECT ?
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001441 s->req.u.indirect.nr_segments : s->req.u.rw.nr_segments;
Julien Grall6cc568332015-08-13 13:13:35 +01001442
1443 /* The I/O request may be split in two. */
1444 if (unlikely(s->associated_id != NO_ASSOCIATED_ID)) {
1445 struct blk_shadow *s2 = &rinfo->shadow[s->associated_id];
1446
1447 /* Keep the status of the current response in shadow. */
1448 s->status = blkif_rsp_to_req_status(bret->status);
1449
1450 /* Wait the second response if not yet here. */
1451 if (s2->status == REQ_WAITING)
Gustavo A. R. Silvaf87c30c2018-08-06 08:14:55 -06001452 return false;
Julien Grall6cc568332015-08-13 13:13:35 +01001453
1454 bret->status = blkif_get_final_status(s->status,
1455 s2->status);
1456
1457 /*
1458 * All the grants is stored in the first shadow in order
1459 * to make the completion code simpler.
1460 */
1461 num_grant += s2->req.u.rw.nr_segments;
1462
1463 /*
1464 * The two responses may not come in order. Only the
1465 * first request will store the scatter-gather list.
1466 */
1467 if (s2->num_sg != 0) {
1468 /* Update "id" with the ID of the first response. */
1469 *id = s->associated_id;
1470 s = s2;
1471 }
1472
1473 /*
1474 * We don't need anymore the second request, so recycling
1475 * it now.
1476 */
1477 if (add_id_to_freelist(rinfo, s->associated_id))
1478 WARN(1, "%s: can't recycle the second part (id = %ld) of the request\n",
1479 info->gd->disk_name, s->associated_id);
1480 }
1481
1482 data.s = s;
Julien Grallc004a6f2015-07-22 16:44:54 +01001483 num_sg = s->num_sg;
Roger Pau Monne0a8704a2012-10-24 18:58:45 +02001484
Roger Pau Monnebfe11d62013-10-29 18:31:14 +01001485 if (bret->operation == BLKIF_OP_READ && info->feature_persistent) {
Julien Grallc004a6f2015-07-22 16:44:54 +01001486 for_each_sg(s->sg, sg, num_sg, i) {
Roger Pau Monneb7649152013-05-02 10:58:50 +02001487 BUG_ON(sg->offset + sg->length > PAGE_SIZE);
Julien Grallc004a6f2015-07-22 16:44:54 +01001488
1489 data.bvec_offset = sg->offset;
1490 data.bvec_data = kmap_atomic(sg_page(sg));
1491
1492 gnttab_foreach_grant_in_range(sg_page(sg),
1493 sg->offset,
1494 sg->length,
1495 blkif_copy_from_grant,
1496 &data);
1497
1498 kunmap_atomic(data.bvec_data);
Roger Pau Monne0a8704a2012-10-24 18:58:45 +02001499 }
1500 }
1501 /* Add the persistent grant into the list of free grants */
Julien Grallc004a6f2015-07-22 16:44:54 +01001502 for (i = 0; i < num_grant; i++) {
Roger Pau Monnefbe363c2013-08-12 12:53:44 +02001503 if (gnttab_query_foreign_access(s->grants_used[i]->gref)) {
1504 /*
1505 * If the grant is still mapped by the backend (the
1506 * backend has chosen to make this grant persistent)
1507 * we add it at the head of the list, so it will be
1508 * reused first.
1509 */
Roger Pau Monnebfe11d62013-10-29 18:31:14 +01001510 if (!info->feature_persistent)
1511 pr_alert_ratelimited("backed has not unmapped grant: %u\n",
1512 s->grants_used[i]->gref);
Bob Liu73716df2015-11-16 16:51:39 -05001513 list_add(&s->grants_used[i]->node, &rinfo->grants);
1514 rinfo->persistent_gnts_c++;
Roger Pau Monnefbe363c2013-08-12 12:53:44 +02001515 } else {
1516 /*
1517 * If the grant is not mapped by the backend we end the
1518 * foreign access and add it to the tail of the list,
1519 * so it will not be picked again unless we run out of
1520 * persistent grants.
1521 */
1522 gnttab_end_foreign_access(s->grants_used[i]->gref, 0, 0UL);
1523 s->grants_used[i]->gref = GRANT_INVALID_REF;
Bob Liu73716df2015-11-16 16:51:39 -05001524 list_add_tail(&s->grants_used[i]->node, &rinfo->grants);
Roger Pau Monnefbe363c2013-08-12 12:53:44 +02001525 }
Roger Pau Monne0a8704a2012-10-24 18:58:45 +02001526 }
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001527 if (s->req.operation == BLKIF_OP_INDIRECT) {
Julien Grallc004a6f2015-07-22 16:44:54 +01001528 for (i = 0; i < INDIRECT_GREFS(num_grant); i++) {
Roger Pau Monnefbe363c2013-08-12 12:53:44 +02001529 if (gnttab_query_foreign_access(s->indirect_grants[i]->gref)) {
Roger Pau Monnebfe11d62013-10-29 18:31:14 +01001530 if (!info->feature_persistent)
1531 pr_alert_ratelimited("backed has not unmapped grant: %u\n",
1532 s->indirect_grants[i]->gref);
Bob Liu73716df2015-11-16 16:51:39 -05001533 list_add(&s->indirect_grants[i]->node, &rinfo->grants);
1534 rinfo->persistent_gnts_c++;
Roger Pau Monnefbe363c2013-08-12 12:53:44 +02001535 } else {
Roger Pau Monnebfe11d62013-10-29 18:31:14 +01001536 struct page *indirect_page;
1537
Roger Pau Monnefbe363c2013-08-12 12:53:44 +02001538 gnttab_end_foreign_access(s->indirect_grants[i]->gref, 0, 0UL);
Roger Pau Monnebfe11d62013-10-29 18:31:14 +01001539 /*
1540 * Add the used indirect page back to the list of
1541 * available pages for indirect grefs.
1542 */
Bob Liu7b076752015-07-22 14:40:09 +08001543 if (!info->feature_persistent) {
Julien Gralla7a6df22015-06-30 11:58:51 +01001544 indirect_page = s->indirect_grants[i]->page;
Bob Liu81f35162015-11-14 11:12:11 +08001545 list_add(&indirect_page->lru, &rinfo->indirect_pages);
Bob Liu7b076752015-07-22 14:40:09 +08001546 }
Roger Pau Monnefbe363c2013-08-12 12:53:44 +02001547 s->indirect_grants[i]->gref = GRANT_INVALID_REF;
Bob Liu73716df2015-11-16 16:51:39 -05001548 list_add_tail(&s->indirect_grants[i]->node, &rinfo->grants);
Roger Pau Monnefbe363c2013-08-12 12:53:44 +02001549 }
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001550 }
1551 }
Julien Grall6cc568332015-08-13 13:13:35 +01001552
Gustavo A. R. Silvaf87c30c2018-08-06 08:14:55 -06001553 return true;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001554}
1555
1556static irqreturn_t blkif_interrupt(int irq, void *dev_id)
1557{
1558 struct request *req;
1559 struct blkif_response *bret;
1560 RING_IDX i, rp;
1561 unsigned long flags;
Bob Liu81f35162015-11-14 11:12:11 +08001562 struct blkfront_ring_info *rinfo = (struct blkfront_ring_info *)dev_id;
1563 struct blkfront_info *info = rinfo->dev_info;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001564
Bob Liu11659562015-11-14 11:12:13 +08001565 if (unlikely(info->connected != BLKIF_STATE_CONNECTED))
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001566 return IRQ_HANDLED;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001567
Bob Liu11659562015-11-14 11:12:13 +08001568 spin_lock_irqsave(&rinfo->ring_lock, flags);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001569 again:
Bob Liu81f35162015-11-14 11:12:11 +08001570 rp = rinfo->ring.sring->rsp_prod;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001571 rmb(); /* Ensure we see queued responses up to 'rp'. */
1572
Bob Liu81f35162015-11-14 11:12:11 +08001573 for (i = rinfo->ring.rsp_cons; i != rp; i++) {
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001574 unsigned long id;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001575
Bob Liu81f35162015-11-14 11:12:11 +08001576 bret = RING_GET_RESPONSE(&rinfo->ring, i);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001577 id = bret->id;
Konrad Rzeszutek Wilk6878c322012-05-25 17:34:51 -04001578 /*
1579 * The backend has messed up and given us an id that we would
1580 * never have given to it (we stamp it up to BLK_RING_SIZE -
1581 * look in get_id_from_freelist.
1582 */
Bob Liu86839c52015-06-03 13:40:03 +08001583 if (id >= BLK_RING_SIZE(info)) {
Konrad Rzeszutek Wilk6878c322012-05-25 17:34:51 -04001584 WARN(1, "%s: response to %s has incorrect id (%ld)\n",
1585 info->gd->disk_name, op_name(bret->operation), id);
1586 /* We can't safely get the 'struct request' as
1587 * the id is busted. */
1588 continue;
1589 }
Bob Liu81f35162015-11-14 11:12:11 +08001590 req = rinfo->shadow[id].request;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001591
Julien Grall6cc568332015-08-13 13:13:35 +01001592 if (bret->operation != BLKIF_OP_DISCARD) {
1593 /*
1594 * We may need to wait for an extra response if the
1595 * I/O request is split in 2
1596 */
1597 if (!blkif_completion(&id, rinfo, bret))
1598 continue;
1599 }
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001600
Bob Liu81f35162015-11-14 11:12:11 +08001601 if (add_id_to_freelist(rinfo, id)) {
Konrad Rzeszutek Wilk6878c322012-05-25 17:34:51 -04001602 WARN(1, "%s: response to %s (id %ld) couldn't be recycled!\n",
1603 info->gd->disk_name, op_name(bret->operation), id);
1604 continue;
1605 }
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001606
Christoph Hellwig2a842ac2017-06-03 09:38:04 +02001607 if (bret->status == BLKIF_RSP_OKAY)
1608 blkif_req(req)->error = BLK_STS_OK;
1609 else
1610 blkif_req(req)->error = BLK_STS_IOERR;
1611
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001612 switch (bret->operation) {
Li Dongyanged30bf32011-09-01 18:39:09 +08001613 case BLKIF_OP_DISCARD:
1614 if (unlikely(bret->status == BLKIF_RSP_EOPNOTSUPP)) {
1615 struct request_queue *rq = info->rq;
Konrad Rzeszutek Wilk6878c322012-05-25 17:34:51 -04001616 printk(KERN_WARNING "blkfront: %s: %s op failed\n",
1617 info->gd->disk_name, op_name(bret->operation));
Christoph Hellwig2a842ac2017-06-03 09:38:04 +02001618 blkif_req(req)->error = BLK_STS_NOTSUPP;
Li Dongyanged30bf32011-09-01 18:39:09 +08001619 info->feature_discard = 0;
Konrad Rzeszutek Wilk5ea42982011-10-12 16:23:30 -04001620 info->feature_secdiscard = 0;
Bart Van Assche8b904b52018-03-07 17:10:10 -08001621 blk_queue_flag_clear(QUEUE_FLAG_DISCARD, rq);
1622 blk_queue_flag_clear(QUEUE_FLAG_SECERASE, rq);
Li Dongyanged30bf32011-09-01 18:39:09 +08001623 }
Li Dongyanged30bf32011-09-01 18:39:09 +08001624 break;
Konrad Rzeszutek Wilkedf6ef52011-05-03 12:01:11 -04001625 case BLKIF_OP_FLUSH_DISKCACHE:
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001626 case BLKIF_OP_WRITE_BARRIER:
1627 if (unlikely(bret->status == BLKIF_RSP_EOPNOTSUPP)) {
Konrad Rzeszutek Wilk6878c322012-05-25 17:34:51 -04001628 printk(KERN_WARNING "blkfront: %s: %s op failed\n",
1629 info->gd->disk_name, op_name(bret->operation));
Bart Van Assche31c4ccc2017-07-21 19:11:10 +02001630 blkif_req(req)->error = BLK_STS_NOTSUPP;
Jeremy Fitzhardingedcb8bae2010-11-02 11:55:58 -04001631 }
1632 if (unlikely(bret->status == BLKIF_RSP_ERROR &&
Bob Liu81f35162015-11-14 11:12:11 +08001633 rinfo->shadow[id].req.u.rw.nr_segments == 0)) {
Konrad Rzeszutek Wilk6878c322012-05-25 17:34:51 -04001634 printk(KERN_WARNING "blkfront: %s: empty %s op failed\n",
1635 info->gd->disk_name, op_name(bret->operation));
Christoph Hellwig2a842ac2017-06-03 09:38:04 +02001636 blkif_req(req)->error = BLK_STS_NOTSUPP;
Jeremy Fitzhardingedcb8bae2010-11-02 11:55:58 -04001637 }
Christoph Hellwig26095872017-04-20 16:03:08 +02001638 if (unlikely(blkif_req(req)->error)) {
Christoph Hellwig2a842ac2017-06-03 09:38:04 +02001639 if (blkif_req(req)->error == BLK_STS_NOTSUPP)
1640 blkif_req(req)->error = BLK_STS_OK;
Mike Christiea4180902016-06-05 14:32:24 -05001641 info->feature_fua = 0;
Tejun Heo4913efe2010-09-03 11:56:16 +02001642 info->feature_flush = 0;
1643 xlvbd_flush(info);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001644 }
1645 /* fall through */
1646 case BLKIF_OP_READ:
1647 case BLKIF_OP_WRITE:
1648 if (unlikely(bret->status != BLKIF_RSP_OKAY))
1649 dev_dbg(&info->xbdev->dev, "Bad return from blkdev data "
1650 "request: %x\n", bret->status);
1651
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001652 break;
1653 default:
1654 BUG();
1655 }
Christoph Hellwig26095872017-04-20 16:03:08 +02001656
Christoph Hellwig08e00292017-04-20 16:03:09 +02001657 blk_mq_complete_request(req);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001658 }
1659
Bob Liu81f35162015-11-14 11:12:11 +08001660 rinfo->ring.rsp_cons = i;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001661
Bob Liu81f35162015-11-14 11:12:11 +08001662 if (i != rinfo->ring.req_prod_pvt) {
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001663 int more_to_do;
Bob Liu81f35162015-11-14 11:12:11 +08001664 RING_FINAL_CHECK_FOR_RESPONSES(&rinfo->ring, more_to_do);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001665 if (more_to_do)
1666 goto again;
1667 } else
Bob Liu81f35162015-11-14 11:12:11 +08001668 rinfo->ring.sring->rsp_event = i + 1;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001669
Bob Liu11659562015-11-14 11:12:13 +08001670 kick_pending_request_queues_locked(rinfo);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001671
Bob Liu11659562015-11-14 11:12:13 +08001672 spin_unlock_irqrestore(&rinfo->ring_lock, flags);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001673
1674 return IRQ_HANDLED;
1675}
1676
1677
1678static int setup_blkring(struct xenbus_device *dev,
Bob Liu81f35162015-11-14 11:12:11 +08001679 struct blkfront_ring_info *rinfo)
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001680{
1681 struct blkif_sring *sring;
Bob Liu86839c52015-06-03 13:40:03 +08001682 int err, i;
Bob Liu81f35162015-11-14 11:12:11 +08001683 struct blkfront_info *info = rinfo->dev_info;
Julien Grallc004a6f2015-07-22 16:44:54 +01001684 unsigned long ring_size = info->nr_ring_pages * XEN_PAGE_SIZE;
Julien Grall9cce2912015-10-13 17:50:11 +01001685 grant_ref_t gref[XENBUS_MAX_RING_GRANTS];
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001686
Bob Liu86839c52015-06-03 13:40:03 +08001687 for (i = 0; i < info->nr_ring_pages; i++)
Bob Liu81f35162015-11-14 11:12:11 +08001688 rinfo->ring_ref[i] = GRANT_INVALID_REF;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001689
Bob Liu86839c52015-06-03 13:40:03 +08001690 sring = (struct blkif_sring *)__get_free_pages(GFP_NOIO | __GFP_HIGH,
1691 get_order(ring_size));
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001692 if (!sring) {
1693 xenbus_dev_fatal(dev, -ENOMEM, "allocating shared ring");
1694 return -ENOMEM;
1695 }
1696 SHARED_RING_INIT(sring);
Bob Liu81f35162015-11-14 11:12:11 +08001697 FRONT_RING_INIT(&rinfo->ring, sring, ring_size);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001698
Bob Liu81f35162015-11-14 11:12:11 +08001699 err = xenbus_grant_ring(dev, rinfo->ring.sring, info->nr_ring_pages, gref);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001700 if (err < 0) {
Bob Liu86839c52015-06-03 13:40:03 +08001701 free_pages((unsigned long)sring, get_order(ring_size));
Bob Liu81f35162015-11-14 11:12:11 +08001702 rinfo->ring.sring = NULL;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001703 goto fail;
1704 }
Bob Liu86839c52015-06-03 13:40:03 +08001705 for (i = 0; i < info->nr_ring_pages; i++)
Bob Liu81f35162015-11-14 11:12:11 +08001706 rinfo->ring_ref[i] = gref[i];
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001707
Bob Liu81f35162015-11-14 11:12:11 +08001708 err = xenbus_alloc_evtchn(dev, &rinfo->evtchn);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001709 if (err)
1710 goto fail;
1711
Bob Liu81f35162015-11-14 11:12:11 +08001712 err = bind_evtchn_to_irqhandler(rinfo->evtchn, blkif_interrupt, 0,
1713 "blkif", rinfo);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001714 if (err <= 0) {
1715 xenbus_dev_fatal(dev, err,
1716 "bind_evtchn_to_irqhandler failed");
1717 goto fail;
1718 }
Bob Liu81f35162015-11-14 11:12:11 +08001719 rinfo->irq = err;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001720
1721 return 0;
1722fail:
1723 blkif_free(info, 0);
1724 return err;
1725}
1726
Bob Liu28d949b2015-11-14 11:12:14 +08001727/*
1728 * Write out per-ring/queue nodes including ring-ref and event-channel, and each
1729 * ring buffer may have multi pages depending on ->nr_ring_pages.
1730 */
1731static int write_per_ring_nodes(struct xenbus_transaction xbt,
1732 struct blkfront_ring_info *rinfo, const char *dir)
1733{
1734 int err;
1735 unsigned int i;
1736 const char *message = NULL;
1737 struct blkfront_info *info = rinfo->dev_info;
1738
1739 if (info->nr_ring_pages == 1) {
1740 err = xenbus_printf(xbt, dir, "ring-ref", "%u", rinfo->ring_ref[0]);
1741 if (err) {
1742 message = "writing ring-ref";
1743 goto abort_transaction;
1744 }
1745 } else {
1746 for (i = 0; i < info->nr_ring_pages; i++) {
1747 char ring_ref_name[RINGREF_NAME_LEN];
1748
1749 snprintf(ring_ref_name, RINGREF_NAME_LEN, "ring-ref%u", i);
1750 err = xenbus_printf(xbt, dir, ring_ref_name,
1751 "%u", rinfo->ring_ref[i]);
1752 if (err) {
1753 message = "writing ring-ref";
1754 goto abort_transaction;
1755 }
1756 }
1757 }
1758
1759 err = xenbus_printf(xbt, dir, "event-channel", "%u", rinfo->evtchn);
1760 if (err) {
1761 message = "writing event-channel";
1762 goto abort_transaction;
1763 }
1764
1765 return 0;
1766
1767abort_transaction:
1768 xenbus_transaction_end(xbt, 1);
1769 if (message)
1770 xenbus_dev_fatal(info->xbdev, err, "%s", message);
1771
1772 return err;
1773}
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001774
Juergen Grossa46b5362018-08-13 16:01:11 +02001775static void free_info(struct blkfront_info *info)
1776{
1777 list_del(&info->info_list);
1778 kfree(info);
1779}
1780
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001781/* Common code used when first setting up, and when resuming. */
Ian Campbell203fd612009-12-04 15:33:54 +00001782static int talk_to_blkback(struct xenbus_device *dev,
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001783 struct blkfront_info *info)
1784{
1785 const char *message = NULL;
1786 struct xenbus_transaction xbt;
Bob Liu28d949b2015-11-14 11:12:14 +08001787 int err;
Juergen Grossf27dc1a2016-10-31 14:58:40 +01001788 unsigned int i, max_page_order;
1789 unsigned int ring_page_order;
Juergen Gross4ab50af2020-03-05 16:51:29 +01001790 struct blkfront_ring_info *rinfo;
Bob Liu86839c52015-06-03 13:40:03 +08001791
Bhavesh Davda7ed8ce12017-12-22 14:17:13 -08001792 if (!info)
1793 return -ENODEV;
1794
Juergen Grossf27dc1a2016-10-31 14:58:40 +01001795 max_page_order = xenbus_read_unsigned(info->xbdev->otherend,
1796 "max-ring-page-order", 0);
1797 ring_page_order = min(xen_blkif_max_ring_order, max_page_order);
1798 info->nr_ring_pages = 1 << ring_page_order;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001799
Bhavesh Davda7ed8ce12017-12-22 14:17:13 -08001800 err = negotiate_mq(info);
1801 if (err)
1802 goto destroy_blkring;
1803
Juergen Gross4ab50af2020-03-05 16:51:29 +01001804 for_each_rinfo(info, rinfo, i) {
Bob Liu3df0e502015-11-14 11:12:12 +08001805 /* Create shared ring, alloc event channel. */
1806 err = setup_blkring(dev, rinfo);
1807 if (err)
1808 goto destroy_blkring;
1809 }
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001810
1811again:
1812 err = xenbus_transaction_start(&xbt);
1813 if (err) {
1814 xenbus_dev_fatal(dev, err, "starting transaction");
1815 goto destroy_blkring;
1816 }
1817
Bob Liu28d949b2015-11-14 11:12:14 +08001818 if (info->nr_ring_pages > 1) {
1819 err = xenbus_printf(xbt, dev->nodename, "ring-page-order", "%u",
1820 ring_page_order);
Bob Liu3df0e502015-11-14 11:12:12 +08001821 if (err) {
Bob Liu28d949b2015-11-14 11:12:14 +08001822 message = "writing ring-page-order";
Bob Liu3df0e502015-11-14 11:12:12 +08001823 goto abort_transaction;
1824 }
Bob Liu28d949b2015-11-14 11:12:14 +08001825 }
1826
1827 /* We already got the number of queues/rings in _probe */
1828 if (info->nr_rings == 1) {
Juergen Gross4ab50af2020-03-05 16:51:29 +01001829 err = write_per_ring_nodes(xbt, info->rinfo, dev->nodename);
Bob Liu28d949b2015-11-14 11:12:14 +08001830 if (err)
1831 goto destroy_blkring;
Bob Liu3df0e502015-11-14 11:12:12 +08001832 } else {
Bob Liu28d949b2015-11-14 11:12:14 +08001833 char *path;
1834 size_t pathsize;
1835
1836 err = xenbus_printf(xbt, dev->nodename, "multi-queue-num-queues", "%u",
1837 info->nr_rings);
1838 if (err) {
1839 message = "writing multi-queue-num-queues";
1840 goto abort_transaction;
1841 }
1842
1843 pathsize = strlen(dev->nodename) + QUEUE_NAME_LEN;
1844 path = kmalloc(pathsize, GFP_KERNEL);
1845 if (!path) {
1846 err = -ENOMEM;
1847 message = "ENOMEM while writing ring references";
1848 goto abort_transaction;
1849 }
1850
Juergen Gross4ab50af2020-03-05 16:51:29 +01001851 for_each_rinfo(info, rinfo, i) {
Bob Liu28d949b2015-11-14 11:12:14 +08001852 memset(path, 0, pathsize);
1853 snprintf(path, pathsize, "%s/queue-%u", dev->nodename, i);
Juergen Gross4ab50af2020-03-05 16:51:29 +01001854 err = write_per_ring_nodes(xbt, rinfo, path);
Bob Liu28d949b2015-11-14 11:12:14 +08001855 if (err) {
1856 kfree(path);
1857 goto destroy_blkring;
1858 }
1859 }
1860 kfree(path);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001861 }
Markus Armbruster3e334232008-04-02 10:54:02 -07001862 err = xenbus_printf(xbt, dev->nodename, "protocol", "%s",
1863 XEN_IO_PROTO_ABI_NATIVE);
1864 if (err) {
1865 message = "writing protocol";
1866 goto abort_transaction;
1867 }
Roger Pau Monne0a8704a2012-10-24 18:58:45 +02001868 err = xenbus_printf(xbt, dev->nodename,
Roger Pau Monnecb5bd4d2012-11-02 16:43:04 +01001869 "feature-persistent", "%u", 1);
Roger Pau Monne0a8704a2012-10-24 18:58:45 +02001870 if (err)
1871 dev_warn(&dev->dev,
1872 "writing persistent grants feature to xenbus");
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001873
1874 err = xenbus_transaction_end(xbt, 0);
1875 if (err) {
1876 if (err == -EAGAIN)
1877 goto again;
1878 xenbus_dev_fatal(dev, err, "completing transaction");
1879 goto destroy_blkring;
1880 }
1881
Juergen Gross4ab50af2020-03-05 16:51:29 +01001882 for_each_rinfo(info, rinfo, i) {
Bob Liu3df0e502015-11-14 11:12:12 +08001883 unsigned int j;
Bob Liu3df0e502015-11-14 11:12:12 +08001884
1885 for (j = 0; j < BLK_RING_SIZE(info); j++)
1886 rinfo->shadow[j].req.u.rw.id = j + 1;
1887 rinfo->shadow[BLK_RING_SIZE(info)-1].req.u.rw.id = 0x0fffffff;
1888 }
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001889 xenbus_switch_state(dev, XenbusStateInitialised);
1890
1891 return 0;
1892
1893 abort_transaction:
1894 xenbus_transaction_end(xbt, 1);
1895 if (message)
1896 xenbus_dev_fatal(dev, err, "%s", message);
1897 destroy_blkring:
1898 blkif_free(info, 0);
Bob Liu3df0e502015-11-14 11:12:12 +08001899
Juergen Grossa46b5362018-08-13 16:01:11 +02001900 mutex_lock(&blkfront_mutex);
1901 free_info(info);
1902 mutex_unlock(&blkfront_mutex);
1903
Konrad Rzeszutek Wilkc31ecf62015-12-18 16:28:53 -05001904 dev_set_drvdata(&dev->dev, NULL);
1905
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001906 return err;
1907}
1908
Bob Liu3db70a82015-11-25 17:52:55 -05001909static int negotiate_mq(struct blkfront_info *info)
1910{
Juergen Grossf27dc1a2016-10-31 14:58:40 +01001911 unsigned int backend_max_queues;
Bob Liu3db70a82015-11-25 17:52:55 -05001912 unsigned int i;
Juergen Gross4ab50af2020-03-05 16:51:29 +01001913 struct blkfront_ring_info *rinfo;
Bob Liu3db70a82015-11-25 17:52:55 -05001914
1915 BUG_ON(info->nr_rings);
1916
1917 /* Check if backend supports multiple queues. */
Juergen Grossf27dc1a2016-10-31 14:58:40 +01001918 backend_max_queues = xenbus_read_unsigned(info->xbdev->otherend,
1919 "multi-queue-max-queues", 1);
Bob Liu3db70a82015-11-25 17:52:55 -05001920 info->nr_rings = min(backend_max_queues, xen_blkif_max_queues);
1921 /* We need at least one ring. */
1922 if (!info->nr_rings)
1923 info->nr_rings = 1;
1924
Juergen Gross4ab50af2020-03-05 16:51:29 +01001925 info->rinfo_size = struct_size(info->rinfo, shadow,
1926 BLK_RING_SIZE(info));
1927 info->rinfo = kvcalloc(info->nr_rings, info->rinfo_size, GFP_KERNEL);
Bob Liu3db70a82015-11-25 17:52:55 -05001928 if (!info->rinfo) {
1929 xenbus_dev_fatal(info->xbdev, -ENOMEM, "allocating ring_info structure");
Manjunath Patil6cc4a082018-10-30 09:49:21 -07001930 info->nr_rings = 0;
Bob Liu3db70a82015-11-25 17:52:55 -05001931 return -ENOMEM;
1932 }
1933
Juergen Gross4ab50af2020-03-05 16:51:29 +01001934 for_each_rinfo(info, rinfo, i) {
Bob Liu3db70a82015-11-25 17:52:55 -05001935 INIT_LIST_HEAD(&rinfo->indirect_pages);
1936 INIT_LIST_HEAD(&rinfo->grants);
1937 rinfo->dev_info = info;
1938 INIT_WORK(&rinfo->work, blkif_restart_queue);
1939 spin_lock_init(&rinfo->ring_lock);
1940 }
1941 return 0;
1942}
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001943/**
1944 * Entry point to this code when a new device is created. Allocate the basic
1945 * structures and the ring buffer for communication with the backend, and
1946 * inform the backend of the appropriate details for those. Switch to
1947 * Initialised state.
1948 */
1949static int blkfront_probe(struct xenbus_device *dev,
1950 const struct xenbus_device_id *id)
1951{
Bob Liu86839c52015-06-03 13:40:03 +08001952 int err, vdevice;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001953 struct blkfront_info *info;
1954
1955 /* FIXME: Use dynamic device id if this is not set. */
1956 err = xenbus_scanf(XBT_NIL, dev->nodename,
1957 "virtual-device", "%i", &vdevice);
1958 if (err != 1) {
Chris Lalancette9246b5f2008-09-17 14:30:32 -07001959 /* go looking in the extended area instead */
1960 err = xenbus_scanf(XBT_NIL, dev->nodename, "virtual-device-ext",
1961 "%i", &vdevice);
1962 if (err != 1) {
1963 xenbus_dev_fatal(dev, err, "reading virtual-device");
1964 return err;
1965 }
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001966 }
1967
Stefano Stabellinib98a4092010-07-29 14:53:16 +01001968 if (xen_hvm_domain()) {
1969 char *type;
1970 int len;
1971 /* no unplug has been done: do not hook devices != xen vbds */
Konrad Rzeszutek Wilk51c71a32013-11-26 15:05:40 -05001972 if (xen_has_pv_and_legacy_disk_devices()) {
Stefano Stabellinib98a4092010-07-29 14:53:16 +01001973 int major;
Stefano Stabellinic1c54132010-05-14 12:44:30 +01001974
Stefano Stabellinib98a4092010-07-29 14:53:16 +01001975 if (!VDEV_IS_EXTENDED(vdevice))
1976 major = BLKIF_MAJOR(vdevice);
1977 else
1978 major = XENVBD_MAJOR;
Stefano Stabellinic1c54132010-05-14 12:44:30 +01001979
Stefano Stabellinib98a4092010-07-29 14:53:16 +01001980 if (major != XENVBD_MAJOR) {
1981 printk(KERN_INFO
1982 "%s: HVM does not support vbd %d as xen block device\n",
Rasmus Villemoes02f1f212015-02-12 15:01:31 -08001983 __func__, vdevice);
Stefano Stabellinib98a4092010-07-29 14:53:16 +01001984 return -ENODEV;
1985 }
1986 }
1987 /* do not create a PV cdrom device if we are an HVM guest */
1988 type = xenbus_read(XBT_NIL, dev->nodename, "device-type", &len);
1989 if (IS_ERR(type))
1990 return -ENODEV;
1991 if (strncmp(type, "cdrom", 5) == 0) {
1992 kfree(type);
Stefano Stabellinic1c54132010-05-14 12:44:30 +01001993 return -ENODEV;
1994 }
Stefano Stabellinib98a4092010-07-29 14:53:16 +01001995 kfree(type);
Stefano Stabellinic1c54132010-05-14 12:44:30 +01001996 }
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001997 info = kzalloc(sizeof(*info), GFP_KERNEL);
1998 if (!info) {
1999 xenbus_dev_fatal(dev, -ENOMEM, "allocating info structure");
2000 return -ENOMEM;
2001 }
2002
Bob Liu28d949b2015-11-14 11:12:14 +08002003 info->xbdev = dev;
Bob Liu81f35162015-11-14 11:12:11 +08002004
Daniel Stoddenb70f5fa2010-04-30 22:01:19 +00002005 mutex_init(&info->mutex);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002006 info->vdevice = vdevice;
2007 info->connected = BLKIF_STATE_DISCONNECTED;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002008
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002009 /* Front end dir is a number, which is used as the id. */
2010 info->handle = simple_strtoul(strrchr(dev->nodename, '/')+1, NULL, 0);
Greg Kroah-Hartmana1b4b122009-04-30 14:43:31 -07002011 dev_set_drvdata(&dev->dev, info);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002012
Juergen Grossa46b5362018-08-13 16:01:11 +02002013 mutex_lock(&blkfront_mutex);
2014 list_add(&info->info_list, &info_list);
2015 mutex_unlock(&blkfront_mutex);
2016
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002017 return 0;
2018}
2019
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002020static int blkif_recover(struct blkfront_info *info)
2021{
NeilBrown4559fa52017-06-18 14:38:59 +10002022 unsigned int r_index;
Roger Pau Monne402b27f2013-04-18 16:06:54 +02002023 struct request *req, *n;
Roger Pau Monne402b27f2013-04-18 16:06:54 +02002024 int rc;
NeilBrown4559fa52017-06-18 14:38:59 +10002025 struct bio *bio;
2026 unsigned int segs;
Juergen Gross4ab50af2020-03-05 16:51:29 +01002027 struct blkfront_ring_info *rinfo;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002028
Bob Liu3df0e502015-11-14 11:12:12 +08002029 blkfront_gather_backend_features(info);
Bob Liu172335a2016-07-01 17:43:39 -04002030 /* Reset limits changed by blk_mq_update_nr_hw_queues(). */
2031 blkif_set_queue_limits(info);
Roger Pau Monne402b27f2013-04-18 16:06:54 +02002032 segs = info->max_indirect_segments ? : BLKIF_MAX_SEGMENTS_PER_REQUEST;
Bob Liu6c647b02016-07-01 15:45:57 -04002033 blk_queue_max_segments(info->rq, segs / GRANTS_PER_PSEG);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002034
Juergen Gross4ab50af2020-03-05 16:51:29 +01002035 for_each_rinfo(info, rinfo, r_index) {
Bob Liu3df0e502015-11-14 11:12:12 +08002036 rc = blkfront_setup_indirect(rinfo);
Bob Liu7b427a52016-06-27 16:33:24 +08002037 if (rc)
Bob Liu3df0e502015-11-14 11:12:12 +08002038 return rc;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002039 }
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002040 xenbus_switch_state(info->xbdev, XenbusStateConnected);
2041
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002042 /* Now safe for us to use the shared ring */
2043 info->connected = BLKIF_STATE_CONNECTED;
2044
Juergen Gross4ab50af2020-03-05 16:51:29 +01002045 for_each_rinfo(info, rinfo, r_index) {
Bob Liu3df0e502015-11-14 11:12:12 +08002046 /* Kick any other new requests queued since we resumed */
2047 kick_pending_request_queues(rinfo);
2048 }
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002049
Bob Liu7b427a52016-06-27 16:33:24 +08002050 list_for_each_entry_safe(req, n, &info->requests, queuelist) {
Roger Pau Monne402b27f2013-04-18 16:06:54 +02002051 /* Requeue pending requests (flush or discard) */
2052 list_del_init(&req->queuelist);
2053 BUG_ON(req->nr_phys_segments > segs);
Bart Van Assche2b053ac2016-10-28 17:21:41 -07002054 blk_mq_requeue_request(req, false);
Roger Pau Monne402b27f2013-04-18 16:06:54 +02002055 }
Bart Van Assche52d7f1b2016-10-28 17:20:32 -07002056 blk_mq_start_stopped_hw_queues(info->rq, true);
Bob Liu907c3eb2015-07-13 17:55:24 +08002057 blk_mq_kick_requeue_list(info->rq);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002058
Bob Liu7b427a52016-06-27 16:33:24 +08002059 while ((bio = bio_list_pop(&info->bio_list)) != NULL) {
Roger Pau Monne402b27f2013-04-18 16:06:54 +02002060 /* Traverse the list of pending bios and re-queue them */
Mike Christie4e49ea42016-06-05 14:31:41 -05002061 submit_bio(bio);
Roger Pau Monne402b27f2013-04-18 16:06:54 +02002062 }
2063
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002064 return 0;
2065}
2066
2067/**
2068 * We are reconnecting to the backend, due to a suspend/resume, or a backend
2069 * driver restart. We tear down our blkif structure and recreate it, but
2070 * leave the device-layer structures intact so that this is transparent to the
2071 * rest of the kernel.
2072 */
2073static int blkfront_resume(struct xenbus_device *dev)
2074{
Greg Kroah-Hartmana1b4b122009-04-30 14:43:31 -07002075 struct blkfront_info *info = dev_get_drvdata(&dev->dev);
Bob Liu3db70a82015-11-25 17:52:55 -05002076 int err = 0;
Bob Liu7b427a52016-06-27 16:33:24 +08002077 unsigned int i, j;
Juergen Gross4ab50af2020-03-05 16:51:29 +01002078 struct blkfront_ring_info *rinfo;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002079
2080 dev_dbg(&dev->dev, "blkfront_resume: %s\n", dev->nodename);
2081
Bob Liu7b427a52016-06-27 16:33:24 +08002082 bio_list_init(&info->bio_list);
2083 INIT_LIST_HEAD(&info->requests);
Juergen Gross4ab50af2020-03-05 16:51:29 +01002084 for_each_rinfo(info, rinfo, i) {
Bob Liu7b427a52016-06-27 16:33:24 +08002085 struct bio_list merge_bio;
2086 struct blk_shadow *shadow = rinfo->shadow;
2087
2088 for (j = 0; j < BLK_RING_SIZE(info); j++) {
2089 /* Not in use? */
2090 if (!shadow[j].request)
2091 continue;
2092
2093 /*
2094 * Get the bios in the request so we can re-queue them.
2095 */
Munehisa Kamatab15bd8c2017-08-09 15:31:40 -07002096 if (req_op(shadow[j].request) == REQ_OP_FLUSH ||
2097 req_op(shadow[j].request) == REQ_OP_DISCARD ||
2098 req_op(shadow[j].request) == REQ_OP_SECURE_ERASE ||
Linus Torvalds3fc9d692016-07-26 15:37:51 -07002099 shadow[j].request->cmd_flags & REQ_FUA) {
Bob Liu7b427a52016-06-27 16:33:24 +08002100 /*
2101 * Flush operations don't contain bios, so
2102 * we need to requeue the whole request
Linus Torvalds3fc9d692016-07-26 15:37:51 -07002103 *
2104 * XXX: but this doesn't make any sense for a
2105 * write with the FUA flag set..
Bob Liu7b427a52016-06-27 16:33:24 +08002106 */
2107 list_add(&shadow[j].request->queuelist, &info->requests);
2108 continue;
2109 }
2110 merge_bio.head = shadow[j].request->bio;
2111 merge_bio.tail = shadow[j].request->biotail;
2112 bio_list_merge(&info->bio_list, &merge_bio);
2113 shadow[j].request->bio = NULL;
Christoph Hellwig2a842ac2017-06-03 09:38:04 +02002114 blk_mq_end_request(shadow[j].request, BLK_STS_OK);
Bob Liu7b427a52016-06-27 16:33:24 +08002115 }
2116 }
2117
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002118 blkif_free(info, info->connected == BLKIF_STATE_CONNECTED);
2119
Ian Campbell203fd612009-12-04 15:33:54 +00002120 err = talk_to_blkback(dev, info);
Bob Liu2a6f71a2016-05-31 16:59:17 +08002121 if (!err)
2122 blk_mq_update_nr_hw_queues(&info->tag_set, info->nr_rings);
Roger Pau Monne402b27f2013-04-18 16:06:54 +02002123
2124 /*
2125 * We have to wait for the backend to switch to
2126 * connected state, since we want to read which
2127 * features it supports.
2128 */
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002129
2130 return err;
2131}
2132
Konrad Rzeszutek Wilk6f03a7f2015-11-16 15:14:41 -05002133static void blkfront_closing(struct blkfront_info *info)
Daniel Stoddenb70f5fa2010-04-30 22:01:19 +00002134{
2135 struct xenbus_device *xbdev = info->xbdev;
2136 struct block_device *bdev = NULL;
2137
2138 mutex_lock(&info->mutex);
2139
2140 if (xbdev->state == XenbusStateClosing) {
2141 mutex_unlock(&info->mutex);
2142 return;
2143 }
2144
2145 if (info->gd)
2146 bdev = bdget_disk(info->gd, 0);
2147
2148 mutex_unlock(&info->mutex);
2149
2150 if (!bdev) {
2151 xenbus_frontend_closed(xbdev);
2152 return;
2153 }
2154
2155 mutex_lock(&bdev->bd_mutex);
2156
Daniel Stodden7b32d102010-04-30 22:01:23 +00002157 if (bdev->bd_openers) {
Daniel Stoddenb70f5fa2010-04-30 22:01:19 +00002158 xenbus_dev_error(xbdev, -EBUSY,
2159 "Device in use; refusing to close");
2160 xenbus_switch_state(xbdev, XenbusStateClosing);
2161 } else {
2162 xlvbd_release_gendisk(info);
2163 xenbus_frontend_closed(xbdev);
2164 }
2165
2166 mutex_unlock(&bdev->bd_mutex);
2167 bdput(bdev);
2168}
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002169
Li Dongyanged30bf32011-09-01 18:39:09 +08002170static void blkfront_setup_discard(struct blkfront_info *info)
2171{
2172 int err;
Li Dongyanged30bf32011-09-01 18:39:09 +08002173 unsigned int discard_granularity;
2174 unsigned int discard_alignment;
2175
Olaf Hering1c8cad62014-05-21 16:32:40 +02002176 info->feature_discard = 1;
2177 err = xenbus_gather(XBT_NIL, info->xbdev->otherend,
2178 "discard-granularity", "%u", &discard_granularity,
2179 "discard-alignment", "%u", &discard_alignment,
2180 NULL);
2181 if (!err) {
2182 info->discard_granularity = discard_granularity;
2183 info->discard_alignment = discard_alignment;
2184 }
Juergen Grossf27dc1a2016-10-31 14:58:40 +01002185 info->feature_secdiscard =
2186 !!xenbus_read_unsigned(info->xbdev->otherend, "discard-secure",
2187 0);
Li Dongyanged30bf32011-09-01 18:39:09 +08002188}
2189
Bob Liu81f35162015-11-14 11:12:11 +08002190static int blkfront_setup_indirect(struct blkfront_ring_info *rinfo)
Roger Pau Monne402b27f2013-04-18 16:06:54 +02002191{
Julien Grallc004a6f2015-07-22 16:44:54 +01002192 unsigned int psegs, grants;
Roger Pau Monne402b27f2013-04-18 16:06:54 +02002193 int err, i;
Bob Liu81f35162015-11-14 11:12:11 +08002194 struct blkfront_info *info = rinfo->dev_info;
Roger Pau Monne402b27f2013-04-18 16:06:54 +02002195
Julien Grall6cc568332015-08-13 13:13:35 +01002196 if (info->max_indirect_segments == 0) {
2197 if (!HAS_EXTRA_REQ)
2198 grants = BLKIF_MAX_SEGMENTS_PER_REQUEST;
2199 else {
2200 /*
2201 * When an extra req is required, the maximum
2202 * grants supported is related to the size of the
2203 * Linux block segment.
2204 */
2205 grants = GRANTS_PER_PSEG;
2206 }
2207 }
Bob Liud50babb2015-07-22 14:40:08 +08002208 else
Julien Grallc004a6f2015-07-22 16:44:54 +01002209 grants = info->max_indirect_segments;
Jan Beulich3b4f1882017-01-23 08:11:37 -07002210 psegs = DIV_ROUND_UP(grants, GRANTS_PER_PSEG);
Roger Pau Monne402b27f2013-04-18 16:06:54 +02002211
Bob Liu81f35162015-11-14 11:12:11 +08002212 err = fill_grant_buffer(rinfo,
Julien Grallc004a6f2015-07-22 16:44:54 +01002213 (grants + INDIRECT_GREFS(grants)) * BLK_RING_SIZE(info));
Roger Pau Monne402b27f2013-04-18 16:06:54 +02002214 if (err)
2215 goto out_of_memory;
2216
Roger Pau Monnebfe11d62013-10-29 18:31:14 +01002217 if (!info->feature_persistent && info->max_indirect_segments) {
2218 /*
2219 * We are using indirect descriptors but not persistent
2220 * grants, we need to allocate a set of pages that can be
2221 * used for mapping indirect grefs
2222 */
Julien Grallc004a6f2015-07-22 16:44:54 +01002223 int num = INDIRECT_GREFS(grants) * BLK_RING_SIZE(info);
Roger Pau Monnebfe11d62013-10-29 18:31:14 +01002224
Bob Liu81f35162015-11-14 11:12:11 +08002225 BUG_ON(!list_empty(&rinfo->indirect_pages));
Roger Pau Monnebfe11d62013-10-29 18:31:14 +01002226 for (i = 0; i < num; i++) {
2227 struct page *indirect_page = alloc_page(GFP_NOIO);
2228 if (!indirect_page)
2229 goto out_of_memory;
Bob Liu81f35162015-11-14 11:12:11 +08002230 list_add(&indirect_page->lru, &rinfo->indirect_pages);
Roger Pau Monnebfe11d62013-10-29 18:31:14 +01002231 }
2232 }
2233
Bob Liu86839c52015-06-03 13:40:03 +08002234 for (i = 0; i < BLK_RING_SIZE(info); i++) {
Kees Cook6396bb22018-06-12 14:03:40 -07002235 rinfo->shadow[i].grants_used =
Roger Pau Monne1d5c76e2019-05-03 17:04:01 +02002236 kvcalloc(grants,
2237 sizeof(rinfo->shadow[i].grants_used[0]),
2238 GFP_NOIO);
2239 rinfo->shadow[i].sg = kvcalloc(psegs,
2240 sizeof(rinfo->shadow[i].sg[0]),
2241 GFP_NOIO);
Kees Cook6396bb22018-06-12 14:03:40 -07002242 if (info->max_indirect_segments)
2243 rinfo->shadow[i].indirect_grants =
Roger Pau Monne1d5c76e2019-05-03 17:04:01 +02002244 kvcalloc(INDIRECT_GREFS(grants),
2245 sizeof(rinfo->shadow[i].indirect_grants[0]),
2246 GFP_NOIO);
Bob Liu81f35162015-11-14 11:12:11 +08002247 if ((rinfo->shadow[i].grants_used == NULL) ||
2248 (rinfo->shadow[i].sg == NULL) ||
Roger Pau Monne402b27f2013-04-18 16:06:54 +02002249 (info->max_indirect_segments &&
Bob Liu81f35162015-11-14 11:12:11 +08002250 (rinfo->shadow[i].indirect_grants == NULL)))
Roger Pau Monne402b27f2013-04-18 16:06:54 +02002251 goto out_of_memory;
Bob Liu81f35162015-11-14 11:12:11 +08002252 sg_init_table(rinfo->shadow[i].sg, psegs);
Roger Pau Monne402b27f2013-04-18 16:06:54 +02002253 }
2254
2255
2256 return 0;
2257
2258out_of_memory:
Bob Liu86839c52015-06-03 13:40:03 +08002259 for (i = 0; i < BLK_RING_SIZE(info); i++) {
Roger Pau Monne1d5c76e2019-05-03 17:04:01 +02002260 kvfree(rinfo->shadow[i].grants_used);
Bob Liu81f35162015-11-14 11:12:11 +08002261 rinfo->shadow[i].grants_used = NULL;
Roger Pau Monne1d5c76e2019-05-03 17:04:01 +02002262 kvfree(rinfo->shadow[i].sg);
Bob Liu81f35162015-11-14 11:12:11 +08002263 rinfo->shadow[i].sg = NULL;
Roger Pau Monne1d5c76e2019-05-03 17:04:01 +02002264 kvfree(rinfo->shadow[i].indirect_grants);
Bob Liu81f35162015-11-14 11:12:11 +08002265 rinfo->shadow[i].indirect_grants = NULL;
Roger Pau Monne402b27f2013-04-18 16:06:54 +02002266 }
Bob Liu81f35162015-11-14 11:12:11 +08002267 if (!list_empty(&rinfo->indirect_pages)) {
Roger Pau Monnebfe11d62013-10-29 18:31:14 +01002268 struct page *indirect_page, *n;
Bob Liu81f35162015-11-14 11:12:11 +08002269 list_for_each_entry_safe(indirect_page, n, &rinfo->indirect_pages, lru) {
Roger Pau Monnebfe11d62013-10-29 18:31:14 +01002270 list_del(&indirect_page->lru);
2271 __free_page(indirect_page);
2272 }
2273 }
Roger Pau Monne402b27f2013-04-18 16:06:54 +02002274 return -ENOMEM;
2275}
2276
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002277/*
Bob Liud50babb2015-07-22 14:40:08 +08002278 * Gather all backend feature-*
2279 */
Bob Liu3df0e502015-11-14 11:12:12 +08002280static void blkfront_gather_backend_features(struct blkfront_info *info)
Bob Liud50babb2015-07-22 14:40:08 +08002281{
Bob Liud50babb2015-07-22 14:40:08 +08002282 unsigned int indirect_segments;
2283
2284 info->feature_flush = 0;
Mike Christiea4180902016-06-05 14:32:24 -05002285 info->feature_fua = 0;
Bob Liud50babb2015-07-22 14:40:08 +08002286
Bob Liud50babb2015-07-22 14:40:08 +08002287 /*
2288 * If there's no "feature-barrier" defined, then it means
2289 * we're dealing with a very old backend which writes
2290 * synchronously; nothing to do.
2291 *
2292 * If there are barriers, then we use flush.
2293 */
Juergen Grossf27dc1a2016-10-31 14:58:40 +01002294 if (xenbus_read_unsigned(info->xbdev->otherend, "feature-barrier", 0)) {
Mike Christiea4180902016-06-05 14:32:24 -05002295 info->feature_flush = 1;
2296 info->feature_fua = 1;
2297 }
2298
Bob Liud50babb2015-07-22 14:40:08 +08002299 /*
2300 * And if there is "feature-flush-cache" use that above
2301 * barriers.
2302 */
Juergen Grossf27dc1a2016-10-31 14:58:40 +01002303 if (xenbus_read_unsigned(info->xbdev->otherend, "feature-flush-cache",
2304 0)) {
Mike Christiea4180902016-06-05 14:32:24 -05002305 info->feature_flush = 1;
2306 info->feature_fua = 0;
2307 }
Bob Liud50babb2015-07-22 14:40:08 +08002308
Juergen Grossf27dc1a2016-10-31 14:58:40 +01002309 if (xenbus_read_unsigned(info->xbdev->otherend, "feature-discard", 0))
Bob Liud50babb2015-07-22 14:40:08 +08002310 blkfront_setup_discard(info);
2311
Juergen Grossf27dc1a2016-10-31 14:58:40 +01002312 info->feature_persistent =
Jan Beulichb32728f2017-01-23 08:12:19 -07002313 !!xenbus_read_unsigned(info->xbdev->otherend,
2314 "feature-persistent", 0);
Bob Liud50babb2015-07-22 14:40:08 +08002315
Juergen Grossf27dc1a2016-10-31 14:58:40 +01002316 indirect_segments = xenbus_read_unsigned(info->xbdev->otherend,
2317 "feature-max-indirect-segments", 0);
Jan Beulich3b4f1882017-01-23 08:11:37 -07002318 if (indirect_segments > xen_blkif_max_segments)
2319 indirect_segments = xen_blkif_max_segments;
2320 if (indirect_segments <= BLKIF_MAX_SEGMENTS_PER_REQUEST)
2321 indirect_segments = 0;
2322 info->max_indirect_segments = indirect_segments;
Juergen Grossa46b5362018-08-13 16:01:11 +02002323
2324 if (info->feature_persistent) {
2325 mutex_lock(&blkfront_mutex);
2326 schedule_delayed_work(&blkfront_work, HZ * 10);
2327 mutex_unlock(&blkfront_mutex);
2328 }
Bob Liud50babb2015-07-22 14:40:08 +08002329}
2330
2331/*
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002332 * Invoked when the backend is finally 'ready' (and has told produced
2333 * the details about the physical device - #sectors, size, etc).
2334 */
2335static void blkfront_connect(struct blkfront_info *info)
2336{
2337 unsigned long long sectors;
2338 unsigned long sector_size;
Stefan Bader7c4d7d72013-05-13 16:28:15 +02002339 unsigned int physical_sector_size;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002340 unsigned int binfo;
Marc Olson89515d02017-04-11 12:24:09 -07002341 char *envp[] = { "RESIZE=1", NULL };
Bob Liu3df0e502015-11-14 11:12:12 +08002342 int err, i;
Juergen Gross4ab50af2020-03-05 16:51:29 +01002343 struct blkfront_ring_info *rinfo;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002344
K. Y. Srinivasan1fa73be2010-03-11 13:42:26 -08002345 switch (info->connected) {
2346 case BLKIF_STATE_CONNECTED:
2347 /*
2348 * Potentially, the back-end may be signalling
2349 * a capacity change; update the capacity.
2350 */
2351 err = xenbus_scanf(XBT_NIL, info->xbdev->otherend,
2352 "sectors", "%Lu", &sectors);
2353 if (XENBUS_EXIST_ERR(err))
2354 return;
2355 printk(KERN_INFO "Setting capacity to %Lu\n",
2356 sectors);
2357 set_capacity(info->gd, sectors);
K. Y. Srinivasan2def1412010-03-18 15:00:54 -07002358 revalidate_disk(info->gd);
Marc Olson89515d02017-04-11 12:24:09 -07002359 kobject_uevent_env(&disk_to_dev(info->gd)->kobj,
2360 KOBJ_CHANGE, envp);
K. Y. Srinivasan1fa73be2010-03-11 13:42:26 -08002361
Roger Pau Monne402b27f2013-04-18 16:06:54 +02002362 return;
K. Y. Srinivasan1fa73be2010-03-11 13:42:26 -08002363 case BLKIF_STATE_SUSPENDED:
Roger Pau Monne402b27f2013-04-18 16:06:54 +02002364 /*
2365 * If we are recovering from suspension, we need to wait
2366 * for the backend to announce it's features before
2367 * reconnecting, at least we need to know if the backend
2368 * supports indirect descriptors, and how many.
2369 */
2370 blkif_recover(info);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002371 return;
2372
Jeremy Fitzhardingeb4dddb42010-03-11 15:10:40 -08002373 default:
2374 break;
K. Y. Srinivasan1fa73be2010-03-11 13:42:26 -08002375 }
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002376
2377 dev_dbg(&info->xbdev->dev, "%s:%s.\n",
2378 __func__, info->xbdev->otherend);
2379
2380 err = xenbus_gather(XBT_NIL, info->xbdev->otherend,
2381 "sectors", "%llu", &sectors,
2382 "info", "%u", &binfo,
2383 "sector-size", "%lu", &sector_size,
2384 NULL);
2385 if (err) {
2386 xenbus_dev_fatal(info->xbdev, err,
2387 "reading backend fields at %s",
2388 info->xbdev->otherend);
2389 return;
2390 }
2391
Stefan Bader7c4d7d72013-05-13 16:28:15 +02002392 /*
2393 * physcial-sector-size is a newer field, so old backends may not
2394 * provide this. Assume physical sector size to be the same as
2395 * sector_size in that case.
2396 */
Juergen Grossf27dc1a2016-10-31 14:58:40 +01002397 physical_sector_size = xenbus_read_unsigned(info->xbdev->otherend,
2398 "physical-sector-size",
2399 sector_size);
Bob Liu3df0e502015-11-14 11:12:12 +08002400 blkfront_gather_backend_features(info);
Juergen Gross4ab50af2020-03-05 16:51:29 +01002401 for_each_rinfo(info, rinfo, i) {
2402 err = blkfront_setup_indirect(rinfo);
Bob Liu3df0e502015-11-14 11:12:12 +08002403 if (err) {
2404 xenbus_dev_fatal(info->xbdev, err, "setup_indirect at %s",
2405 info->xbdev->otherend);
2406 blkif_free(info, 0);
2407 break;
2408 }
Roger Pau Monne402b27f2013-04-18 16:06:54 +02002409 }
2410
Stefan Bader7c4d7d72013-05-13 16:28:15 +02002411 err = xlvbd_alloc_gendisk(sectors, info, binfo, sector_size,
2412 physical_sector_size);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002413 if (err) {
2414 xenbus_dev_fatal(info->xbdev, err, "xlvbd_add at %s",
2415 info->xbdev->otherend);
Bob Liu4e876c22016-07-27 17:42:04 +08002416 goto fail;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002417 }
2418
2419 xenbus_switch_state(info->xbdev, XenbusStateConnected);
2420
2421 /* Kick pending requests. */
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002422 info->connected = BLKIF_STATE_CONNECTED;
Juergen Gross4ab50af2020-03-05 16:51:29 +01002423 for_each_rinfo(info, rinfo, i)
2424 kick_pending_request_queues(rinfo);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002425
Hannes Reineckefef912b2018-09-28 08:17:19 +02002426 device_add_disk(&info->xbdev->dev, info->gd, NULL);
Christian Limpach1d78d702008-04-02 10:54:04 -07002427
2428 info->is_ready = 1;
Bob Liu4e876c22016-07-27 17:42:04 +08002429 return;
2430
2431fail:
2432 blkif_free(info, 0);
2433 return;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002434}
2435
2436/**
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002437 * Callback received when the backend's state changes.
2438 */
Ian Campbell203fd612009-12-04 15:33:54 +00002439static void blkback_changed(struct xenbus_device *dev,
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002440 enum xenbus_state backend_state)
2441{
Greg Kroah-Hartmana1b4b122009-04-30 14:43:31 -07002442 struct blkfront_info *info = dev_get_drvdata(&dev->dev);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002443
Ian Campbell203fd612009-12-04 15:33:54 +00002444 dev_dbg(&dev->dev, "blkfront:blkback_changed to state %d.\n", backend_state);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002445
2446 switch (backend_state) {
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002447 case XenbusStateInitWait:
Bob Liua9b54bb2015-06-19 00:23:00 -04002448 if (dev->state != XenbusStateInitialising)
2449 break;
Konrad Rzeszutek Wilkc31ecf62015-12-18 16:28:53 -05002450 if (talk_to_blkback(dev, info))
Bob Liu8ab01442015-06-03 13:40:02 +08002451 break;
Bob Liu8ab01442015-06-03 13:40:02 +08002452 case XenbusStateInitialising:
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002453 case XenbusStateInitialised:
Noboru Iwamatsub78c9512009-10-13 17:22:29 -04002454 case XenbusStateReconfiguring:
2455 case XenbusStateReconfigured:
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002456 case XenbusStateUnknown:
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002457 break;
2458
2459 case XenbusStateConnected:
Bob Liuefd15352016-06-07 10:43:15 -04002460 /*
2461 * talk_to_blkback sets state to XenbusStateInitialised
2462 * and blkfront_connect sets it to XenbusStateConnected
2463 * (if connection went OK).
2464 *
2465 * If the backend (or toolstack) decides to poke at backend
2466 * state (and re-trigger the watch by setting the state repeatedly
2467 * to XenbusStateConnected (4)) we need to deal with this.
2468 * This is allowed as this is used to communicate to the guest
2469 * that the size of disk has changed!
2470 */
2471 if ((dev->state != XenbusStateInitialised) &&
2472 (dev->state != XenbusStateConnected)) {
Konrad Rzeszutek Wilkc31ecf62015-12-18 16:28:53 -05002473 if (talk_to_blkback(dev, info))
2474 break;
2475 }
Bob Liuefd15352016-06-07 10:43:15 -04002476
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002477 blkfront_connect(info);
2478 break;
2479
David Vrabel36613712014-02-04 18:53:56 +00002480 case XenbusStateClosed:
2481 if (dev->state == XenbusStateClosed)
2482 break;
Bart Van Asscheccc22252017-08-17 16:23:11 -07002483 /* fall through */
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002484 case XenbusStateClosing:
Cathy Averya54c8f02015-10-02 09:35:01 -04002485 if (info)
2486 blkfront_closing(info);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002487 break;
2488 }
2489}
2490
Daniel Stoddenfa1bd352010-04-30 22:01:22 +00002491static int blkfront_remove(struct xenbus_device *xbdev)
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002492{
Daniel Stoddenfa1bd352010-04-30 22:01:22 +00002493 struct blkfront_info *info = dev_get_drvdata(&xbdev->dev);
2494 struct block_device *bdev = NULL;
2495 struct gendisk *disk;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002496
Daniel Stoddenfa1bd352010-04-30 22:01:22 +00002497 dev_dbg(&xbdev->dev, "%s removed", xbdev->nodename);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002498
Vasilis Liaskovitisf92898e2018-10-15 15:25:08 +02002499 if (!info)
2500 return 0;
2501
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002502 blkif_free(info, 0);
2503
Daniel Stoddenfa1bd352010-04-30 22:01:22 +00002504 mutex_lock(&info->mutex);
2505
2506 disk = info->gd;
2507 if (disk)
2508 bdev = bdget_disk(disk, 0);
2509
2510 info->xbdev = NULL;
2511 mutex_unlock(&info->mutex);
2512
2513 if (!bdev) {
Juergen Grossa46b5362018-08-13 16:01:11 +02002514 mutex_lock(&blkfront_mutex);
2515 free_info(info);
2516 mutex_unlock(&blkfront_mutex);
Daniel Stoddenfa1bd352010-04-30 22:01:22 +00002517 return 0;
2518 }
2519
2520 /*
2521 * The xbdev was removed before we reached the Closed
2522 * state. See if it's safe to remove the disk. If the bdev
2523 * isn't closed yet, we let release take care of it.
2524 */
2525
2526 mutex_lock(&bdev->bd_mutex);
2527 info = disk->private_data;
2528
Daniel Stoddend54142c2010-08-07 18:51:21 +02002529 dev_warn(disk_to_dev(disk),
2530 "%s was hot-unplugged, %d stale handles\n",
2531 xbdev->nodename, bdev->bd_openers);
2532
Daniel Stodden7b32d102010-04-30 22:01:23 +00002533 if (info && !bdev->bd_openers) {
Daniel Stoddenfa1bd352010-04-30 22:01:22 +00002534 xlvbd_release_gendisk(info);
2535 disk->private_data = NULL;
Juergen Grossa46b5362018-08-13 16:01:11 +02002536 mutex_lock(&blkfront_mutex);
2537 free_info(info);
2538 mutex_unlock(&blkfront_mutex);
Daniel Stoddenfa1bd352010-04-30 22:01:22 +00002539 }
2540
2541 mutex_unlock(&bdev->bd_mutex);
2542 bdput(bdev);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002543
2544 return 0;
2545}
2546
Christian Limpach1d78d702008-04-02 10:54:04 -07002547static int blkfront_is_ready(struct xenbus_device *dev)
2548{
Greg Kroah-Hartmana1b4b122009-04-30 14:43:31 -07002549 struct blkfront_info *info = dev_get_drvdata(&dev->dev);
Christian Limpach1d78d702008-04-02 10:54:04 -07002550
Jan Beulich5d7ed202010-08-07 18:31:12 +02002551 return info->is_ready && info->xbdev;
Christian Limpach1d78d702008-04-02 10:54:04 -07002552}
2553
Al Viroa63c8482008-03-02 10:23:47 -05002554static int blkif_open(struct block_device *bdev, fmode_t mode)
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002555{
Daniel Stodden13961742010-08-07 18:36:53 +02002556 struct gendisk *disk = bdev->bd_disk;
2557 struct blkfront_info *info;
2558 int err = 0;
Arnd Bergmann6e9624b2010-08-07 18:25:34 +02002559
Arnd Bergmann2a48fc02010-06-02 14:28:52 +02002560 mutex_lock(&blkfront_mutex);
Arnd Bergmann6e9624b2010-08-07 18:25:34 +02002561
Daniel Stodden13961742010-08-07 18:36:53 +02002562 info = disk->private_data;
2563 if (!info) {
2564 /* xbdev gone */
2565 err = -ERESTARTSYS;
2566 goto out;
2567 }
2568
2569 mutex_lock(&info->mutex);
2570
2571 if (!info->gd)
2572 /* xbdev is closed */
2573 err = -ERESTARTSYS;
2574
2575 mutex_unlock(&info->mutex);
2576
Daniel Stodden13961742010-08-07 18:36:53 +02002577out:
Arnd Bergmann2a48fc02010-06-02 14:28:52 +02002578 mutex_unlock(&blkfront_mutex);
Daniel Stodden13961742010-08-07 18:36:53 +02002579 return err;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002580}
2581
Al Virodb2a1442013-05-05 21:52:57 -04002582static void blkif_release(struct gendisk *disk, fmode_t mode)
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002583{
Al Viroa63c8482008-03-02 10:23:47 -05002584 struct blkfront_info *info = disk->private_data;
Daniel Stodden7fd152f2010-08-07 18:45:12 +02002585 struct block_device *bdev;
2586 struct xenbus_device *xbdev;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002587
Arnd Bergmann2a48fc02010-06-02 14:28:52 +02002588 mutex_lock(&blkfront_mutex);
Daniel Stodden7fd152f2010-08-07 18:45:12 +02002589
2590 bdev = bdget_disk(disk, 0);
Daniel Stodden7fd152f2010-08-07 18:45:12 +02002591
Felipe Pena2f089cb2013-11-09 13:36:09 -02002592 if (!bdev) {
2593 WARN(1, "Block device %s yanked out from us!\n", disk->disk_name);
2594 goto out_mutex;
2595 }
Daniel Stoddenacfca3c2010-08-07 18:47:26 +02002596 if (bdev->bd_openers)
2597 goto out;
2598
Daniel Stodden7fd152f2010-08-07 18:45:12 +02002599 /*
2600 * Check if we have been instructed to close. We will have
2601 * deferred this request, because the bdev was still open.
2602 */
2603
2604 mutex_lock(&info->mutex);
2605 xbdev = info->xbdev;
2606
2607 if (xbdev && xbdev->state == XenbusStateClosing) {
2608 /* pending switch to state closed */
Daniel Stoddend54142c2010-08-07 18:51:21 +02002609 dev_info(disk_to_dev(bdev->bd_disk), "releasing disk\n");
Daniel Stodden7fd152f2010-08-07 18:45:12 +02002610 xlvbd_release_gendisk(info);
2611 xenbus_frontend_closed(info->xbdev);
2612 }
2613
2614 mutex_unlock(&info->mutex);
2615
2616 if (!xbdev) {
2617 /* sudden device removal */
Daniel Stoddend54142c2010-08-07 18:51:21 +02002618 dev_info(disk_to_dev(bdev->bd_disk), "releasing disk\n");
Daniel Stodden7fd152f2010-08-07 18:45:12 +02002619 xlvbd_release_gendisk(info);
2620 disk->private_data = NULL;
Juergen Grossa46b5362018-08-13 16:01:11 +02002621 free_info(info);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002622 }
Daniel Stodden7fd152f2010-08-07 18:45:12 +02002623
Jens Axboea4cc14e2010-08-08 21:50:05 -04002624out:
Andrew Jonesdad5cf62012-02-16 13:16:25 +01002625 bdput(bdev);
Felipe Pena2f089cb2013-11-09 13:36:09 -02002626out_mutex:
Arnd Bergmann2a48fc02010-06-02 14:28:52 +02002627 mutex_unlock(&blkfront_mutex);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002628}
2629
Alexey Dobriyan83d5cde2009-09-21 17:01:13 -07002630static const struct block_device_operations xlvbd_block_fops =
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002631{
2632 .owner = THIS_MODULE,
Al Viroa63c8482008-03-02 10:23:47 -05002633 .open = blkif_open,
2634 .release = blkif_release,
Ian Campbell597592d2008-02-21 13:03:45 -08002635 .getgeo = blkif_getgeo,
Arnd Bergmann8a6cfeb2010-07-08 10:18:46 +02002636 .ioctl = blkif_ioctl,
Arnd Bergmann9452b1a2019-11-28 15:48:10 +01002637 .compat_ioctl = blkdev_compat_ptr_ioctl,
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002638};
2639
2640
Márton Némethec9c42e2010-01-10 13:39:52 +01002641static const struct xenbus_device_id blkfront_ids[] = {
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002642 { "vbd" },
2643 { "" }
2644};
2645
David Vrabel95afae42014-09-08 17:30:41 +01002646static struct xenbus_driver blkfront_driver = {
2647 .ids = blkfront_ids,
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002648 .probe = blkfront_probe,
2649 .remove = blkfront_remove,
2650 .resume = blkfront_resume,
Ian Campbell203fd612009-12-04 15:33:54 +00002651 .otherend_changed = blkback_changed,
Christian Limpach1d78d702008-04-02 10:54:04 -07002652 .is_ready = blkfront_is_ready,
David Vrabel95afae42014-09-08 17:30:41 +01002653};
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002654
Juergen Grossa46b5362018-08-13 16:01:11 +02002655static void purge_persistent_grants(struct blkfront_info *info)
2656{
2657 unsigned int i;
2658 unsigned long flags;
Juergen Gross4ab50af2020-03-05 16:51:29 +01002659 struct blkfront_ring_info *rinfo;
Juergen Grossa46b5362018-08-13 16:01:11 +02002660
Juergen Gross4ab50af2020-03-05 16:51:29 +01002661 for_each_rinfo(info, rinfo, i) {
Juergen Grossa46b5362018-08-13 16:01:11 +02002662 struct grant *gnt_list_entry, *tmp;
2663
2664 spin_lock_irqsave(&rinfo->ring_lock, flags);
2665
2666 if (rinfo->persistent_gnts_c == 0) {
2667 spin_unlock_irqrestore(&rinfo->ring_lock, flags);
2668 continue;
2669 }
2670
2671 list_for_each_entry_safe(gnt_list_entry, tmp, &rinfo->grants,
2672 node) {
2673 if (gnt_list_entry->gref == GRANT_INVALID_REF ||
2674 gnttab_query_foreign_access(gnt_list_entry->gref))
2675 continue;
2676
2677 list_del(&gnt_list_entry->node);
2678 gnttab_end_foreign_access(gnt_list_entry->gref, 0, 0UL);
2679 rinfo->persistent_gnts_c--;
Juergen Gross6c767862018-09-28 09:28:27 +02002680 gnt_list_entry->gref = GRANT_INVALID_REF;
2681 list_add_tail(&gnt_list_entry->node, &rinfo->grants);
Juergen Grossa46b5362018-08-13 16:01:11 +02002682 }
2683
2684 spin_unlock_irqrestore(&rinfo->ring_lock, flags);
2685 }
2686}
2687
2688static void blkfront_delay_work(struct work_struct *work)
2689{
2690 struct blkfront_info *info;
2691 bool need_schedule_work = false;
2692
2693 mutex_lock(&blkfront_mutex);
2694
2695 list_for_each_entry(info, &info_list, info_list) {
2696 if (info->feature_persistent) {
2697 need_schedule_work = true;
2698 mutex_lock(&info->mutex);
2699 purge_persistent_grants(info);
2700 mutex_unlock(&info->mutex);
2701 }
2702 }
2703
2704 if (need_schedule_work)
2705 schedule_delayed_work(&blkfront_work, HZ * 10);
2706
2707 mutex_unlock(&blkfront_mutex);
2708}
2709
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002710static int __init xlblk_init(void)
2711{
Laszlo Ersek469738e2011-10-07 21:34:38 +02002712 int ret;
Bob Liu28d949b2015-11-14 11:12:14 +08002713 int nr_cpus = num_online_cpus();
Laszlo Ersek469738e2011-10-07 21:34:38 +02002714
Jeremy Fitzhardinge6e833582008-08-19 13:16:17 -07002715 if (!xen_domain())
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002716 return -ENODEV;
2717
Juergen Gross4bcddba2018-08-13 16:01:12 +02002718 if (!xen_has_pv_disk_devices())
2719 return -ENODEV;
2720
2721 if (register_blkdev(XENVBD_MAJOR, DEV_NAME)) {
2722 pr_warn("xen_blk: can't get major %d with name %s\n",
2723 XENVBD_MAJOR, DEV_NAME);
2724 return -ENODEV;
2725 }
2726
Jan Beulich3b4f1882017-01-23 08:11:37 -07002727 if (xen_blkif_max_segments < BLKIF_MAX_SEGMENTS_PER_REQUEST)
2728 xen_blkif_max_segments = BLKIF_MAX_SEGMENTS_PER_REQUEST;
2729
Julien Grall9cce2912015-10-13 17:50:11 +01002730 if (xen_blkif_max_ring_order > XENBUS_MAX_RING_GRANT_ORDER) {
Bob Liu86839c52015-06-03 13:40:03 +08002731 pr_info("Invalid max_ring_order (%d), will use default max: %d.\n",
Julien Grall9cce2912015-10-13 17:50:11 +01002732 xen_blkif_max_ring_order, XENBUS_MAX_RING_GRANT_ORDER);
Peng Fan45fc8262015-11-25 18:26:01 +08002733 xen_blkif_max_ring_order = XENBUS_MAX_RING_GRANT_ORDER;
Bob Liu86839c52015-06-03 13:40:03 +08002734 }
2735
Bob Liu28d949b2015-11-14 11:12:14 +08002736 if (xen_blkif_max_queues > nr_cpus) {
2737 pr_info("Invalid max_queues (%d), will use default max: %d.\n",
2738 xen_blkif_max_queues, nr_cpus);
2739 xen_blkif_max_queues = nr_cpus;
2740 }
2741
Juergen Grossa46b5362018-08-13 16:01:11 +02002742 INIT_DELAYED_WORK(&blkfront_work, blkfront_delay_work);
2743
Jan Beulich73db1442011-12-22 09:08:13 +00002744 ret = xenbus_register_frontend(&blkfront_driver);
Laszlo Ersek469738e2011-10-07 21:34:38 +02002745 if (ret) {
2746 unregister_blkdev(XENVBD_MAJOR, DEV_NAME);
2747 return ret;
2748 }
2749
2750 return 0;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002751}
2752module_init(xlblk_init);
2753
2754
Jan Beulich5a60d0c2008-06-17 10:47:08 +02002755static void __exit xlblk_exit(void)
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002756{
Juergen Grossa46b5362018-08-13 16:01:11 +02002757 cancel_delayed_work_sync(&blkfront_work);
2758
Jan Beulich86050672012-04-05 16:04:52 +01002759 xenbus_unregister_driver(&blkfront_driver);
2760 unregister_blkdev(XENVBD_MAJOR, DEV_NAME);
2761 kfree(minors);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002762}
2763module_exit(xlblk_exit);
2764
2765MODULE_DESCRIPTION("Xen virtual block device frontend");
2766MODULE_LICENSE("GPL");
2767MODULE_ALIAS_BLOCKDEV_MAJOR(XENVBD_MAJOR);
Mark McLoughlind2f0c522008-04-02 10:54:05 -07002768MODULE_ALIAS("xen:vbd");
Mark McLoughlin4f93f09b2008-04-02 10:54:06 -07002769MODULE_ALIAS("xenblk");