blob: ccd0dd0c6b83c5d4e04784baf353924c3d39de15 [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>
Christoph Hellwigb81e0c22021-09-20 14:33:25 +020045#include <linux/major.h>
Arnd Bergmann2a48fc02010-06-02 14:28:52 +020046#include <linux/mutex.h>
Jens Axboe9e973e62009-02-24 08:10:09 +010047#include <linux/scatterlist.h>
Akinobu Mita34ae2e42012-01-21 00:15:26 +090048#include <linux/bitmap.h>
Roger Pau Monne155b7ed2013-03-18 17:49:34 +010049#include <linux/list.h>
Juergen Grossa46b5362018-08-13 16:01:11 +020050#include <linux/workqueue.h>
Juergen Gross3a169c02020-04-03 11:00:34 +020051#include <linux/sched/mm.h>
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -070052
Jeremy Fitzhardinge1ccbf532009-10-06 15:11:14 -070053#include <xen/xen.h>
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -070054#include <xen/xenbus.h>
55#include <xen/grant_table.h>
56#include <xen/events.h>
57#include <xen/page.h>
Stefano Stabellinic1c54132010-05-14 12:44:30 +010058#include <xen/platform_pci.h>
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -070059
60#include <xen/interface/grant_table.h>
61#include <xen/interface/io/blkif.h>
Markus Armbruster3e334232008-04-02 10:54:02 -070062#include <xen/interface/io/protocols.h>
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -070063
64#include <asm/xen/hypervisor.h>
65
Julien Grall6cc568332015-08-13 13:13:35 +010066/*
67 * The minimal size of segment supported by the block framework is PAGE_SIZE.
68 * When Linux is using a different page size than Xen, it may not be possible
69 * to put all the data in a single segment.
70 * This can happen when the backend doesn't support indirect descriptor and
71 * therefore the maximum amount of data that a request can carry is
72 * BLKIF_MAX_SEGMENTS_PER_REQUEST * XEN_PAGE_SIZE = 44KB
73 *
74 * Note that we only support one extra request. So the Linux page size
75 * should be <= ( 2 * BLKIF_MAX_SEGMENTS_PER_REQUEST * XEN_PAGE_SIZE) =
76 * 88KB.
77 */
78#define HAS_EXTRA_REQ (BLKIF_MAX_SEGMENTS_PER_REQUEST < XEN_PFN_PER_PAGE)
79
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -070080enum blkif_state {
81 BLKIF_STATE_DISCONNECTED,
82 BLKIF_STATE_CONNECTED,
83 BLKIF_STATE_SUSPENDED,
Juergen Grossb94e4b12021-07-30 12:38:54 +020084 BLKIF_STATE_ERROR,
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -070085};
86
Roger Pau Monne0a8704a2012-10-24 18:58:45 +020087struct grant {
88 grant_ref_t gref;
Julien Gralla7a6df22015-06-30 11:58:51 +010089 struct page *page;
Roger Pau Monne155b7ed2013-03-18 17:49:34 +010090 struct list_head node;
Roger Pau Monne0a8704a2012-10-24 18:58:45 +020091};
92
Julien Grall6cc568332015-08-13 13:13:35 +010093enum blk_req_status {
Juergen Grossb94e4b12021-07-30 12:38:54 +020094 REQ_PROCESSING,
Julien Grall6cc568332015-08-13 13:13:35 +010095 REQ_WAITING,
96 REQ_DONE,
97 REQ_ERROR,
98 REQ_EOPNOTSUPP,
99};
100
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700101struct blk_shadow {
102 struct blkif_request req;
Jeremy Fitzhardingea945b982010-11-01 17:03:14 -0400103 struct request *request;
Roger Pau Monne402b27f2013-04-18 16:06:54 +0200104 struct grant **grants_used;
105 struct grant **indirect_grants;
Roger Pau Monneb7649152013-05-02 10:58:50 +0200106 struct scatterlist *sg;
Julien Grallc004a6f2015-07-22 16:44:54 +0100107 unsigned int num_sg;
Julien Grall6cc568332015-08-13 13:13:35 +0100108 enum blk_req_status status;
109
110 #define NO_ASSOCIATED_ID ~0UL
111 /*
112 * Id of the sibling if we ever need 2 requests when handling a
113 * block I/O request
114 */
115 unsigned long associated_id;
Roger Pau Monne402b27f2013-04-18 16:06:54 +0200116};
117
Christoph Hellwig26095872017-04-20 16:03:08 +0200118struct blkif_req {
Bart Van Assche31c4ccc2017-07-21 19:11:10 +0200119 blk_status_t error;
Christoph Hellwig26095872017-04-20 16:03:08 +0200120};
121
122static inline struct blkif_req *blkif_req(struct request *rq)
123{
124 return blk_mq_rq_to_pdu(rq);
125}
126
Arnd Bergmann2a48fc02010-06-02 14:28:52 +0200127static DEFINE_MUTEX(blkfront_mutex);
Alexey Dobriyan83d5cde2009-09-21 17:01:13 -0700128static const struct block_device_operations xlvbd_block_fops;
Juergen Grossa46b5362018-08-13 16:01:11 +0200129static struct delayed_work blkfront_work;
130static LIST_HEAD(info_list);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700131
Roger Pau Monne402b27f2013-04-18 16:06:54 +0200132/*
133 * Maximum number of segments in indirect requests, the actual value used by
134 * the frontend driver is the minimum of this value and the value provided
135 * by the backend driver.
136 */
137
138static unsigned int xen_blkif_max_segments = 32;
Joe Perches5657a812018-05-24 13:38:59 -0600139module_param_named(max_indirect_segments, xen_blkif_max_segments, uint, 0444);
Jan Beulich14e710f2016-02-10 04:21:15 -0700140MODULE_PARM_DESC(max_indirect_segments,
141 "Maximum amount of segments in indirect requests (default is 32)");
Roger Pau Monne402b27f2013-04-18 16:06:54 +0200142
Bob Liu28d949b2015-11-14 11:12:14 +0800143static unsigned int xen_blkif_max_queues = 4;
Joe Perches5657a812018-05-24 13:38:59 -0600144module_param_named(max_queues, xen_blkif_max_queues, uint, 0444);
Bob Liu28d949b2015-11-14 11:12:14 +0800145MODULE_PARM_DESC(max_queues, "Maximum number of hardware queues/rings used per virtual disk");
146
Bob Liu86839c52015-06-03 13:40:03 +0800147/*
148 * Maximum order of pages to be used for the shared ring between front and
149 * backend, 4KB page granularity is used.
150 */
151static unsigned int xen_blkif_max_ring_order;
Joe Perches5657a812018-05-24 13:38:59 -0600152module_param_named(max_ring_page_order, xen_blkif_max_ring_order, int, 0444);
Bob Liu86839c52015-06-03 13:40:03 +0800153MODULE_PARM_DESC(max_ring_page_order, "Maximum order of pages to be used for the shared ring");
154
Julien Grallc004a6f2015-07-22 16:44:54 +0100155#define BLK_RING_SIZE(info) \
156 __CONST_RING_SIZE(blkif, XEN_PAGE_SIZE * (info)->nr_ring_pages)
157
Bob Liu86839c52015-06-03 13:40:03 +0800158/*
Konrad Rzeszutek Wilk6f03a7f2015-11-16 15:14:41 -0500159 * ring-ref%u i=(-1UL) would take 11 characters + 'ring-ref' is 8, so 19
160 * characters are enough. Define to 20 to keep consistent with backend.
Bob Liu86839c52015-06-03 13:40:03 +0800161 */
162#define RINGREF_NAME_LEN (20)
Bob Liu28d949b2015-11-14 11:12:14 +0800163/*
164 * queue-%u would take 7 + 10(UINT_MAX) = 17 characters.
165 */
166#define QUEUE_NAME_LEN (17)
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700167
168/*
Bob Liu81f35162015-11-14 11:12:11 +0800169 * Per-ring info.
170 * Every blkfront device can associate with one or more blkfront_ring_info,
171 * depending on how many hardware queues/rings to be used.
172 */
173struct blkfront_ring_info {
Bob Liu11659562015-11-14 11:12:13 +0800174 /* Lock to protect data in every ring buffer. */
175 spinlock_t ring_lock;
Bob Liu81f35162015-11-14 11:12:11 +0800176 struct blkif_front_ring ring;
177 unsigned int ring_ref[XENBUS_MAX_RING_GRANTS];
178 unsigned int evtchn, irq;
179 struct work_struct work;
180 struct gnttab_free_callback callback;
Bob Liu81f35162015-11-14 11:12:11 +0800181 struct list_head indirect_pages;
Bob Liu73716df2015-11-16 16:51:39 -0500182 struct list_head grants;
183 unsigned int persistent_gnts_c;
Bob Liu81f35162015-11-14 11:12:11 +0800184 unsigned long shadow_free;
185 struct blkfront_info *dev_info;
Juergen Gross0265d6e2020-01-17 15:39:55 +0100186 struct blk_shadow shadow[];
Bob Liu81f35162015-11-14 11:12:11 +0800187};
188
189/*
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700190 * We have one of these per vbd, whether ide, scsi or 'other'. They
191 * hang in private_data off the gendisk structure. We may end up
192 * putting all kinds of interesting stuff here :-)
193 */
194struct blkfront_info
195{
Daniel Stoddenb70f5fa2010-04-30 22:01:19 +0000196 struct mutex mutex;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700197 struct xenbus_device *xbdev;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700198 struct gendisk *gd;
Bob Liu172335a2016-07-01 17:43:39 -0400199 u16 sector_size;
200 unsigned int physical_sector_size;
Christoph Hellwig1a827ce12021-11-22 14:06:14 +0100201 unsigned long vdisk_info;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700202 int vdevice;
203 blkif_vdev_t handle;
204 enum blkif_state connected;
Bob Liu3df0e502015-11-14 11:12:12 +0800205 /* Number of pages per ring buffer. */
Bob Liu86839c52015-06-03 13:40:03 +0800206 unsigned int nr_ring_pages;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700207 struct request_queue *rq;
Jan Beulichb32728f2017-01-23 08:12:19 -0700208 unsigned int feature_flush:1;
209 unsigned int feature_fua:1;
Konrad Rzeszutek Wilk5ea42982011-10-12 16:23:30 -0400210 unsigned int feature_discard:1;
211 unsigned int feature_secdiscard:1;
Jan Beulichb32728f2017-01-23 08:12:19 -0700212 unsigned int feature_persistent:1;
Li Dongyanged30bf32011-09-01 18:39:09 +0800213 unsigned int discard_granularity;
214 unsigned int discard_alignment;
Julien Grallc004a6f2015-07-22 16:44:54 +0100215 /* Number of 4KB segments handled */
Roger Pau Monne402b27f2013-04-18 16:06:54 +0200216 unsigned int max_indirect_segments;
Christian Limpach1d78d702008-04-02 10:54:04 -0700217 int is_ready;
Bob Liu907c3eb2015-07-13 17:55:24 +0800218 struct blk_mq_tag_set tag_set;
Bob Liu3df0e502015-11-14 11:12:12 +0800219 struct blkfront_ring_info *rinfo;
220 unsigned int nr_rings;
Juergen Gross4ab50af2020-03-05 16:51:29 +0100221 unsigned int rinfo_size;
Bob Liu7b427a52016-06-27 16:33:24 +0800222 /* Save uncomplete reqs and bios for migration. */
223 struct list_head requests;
224 struct bio_list bio_list;
Juergen Grossa46b5362018-08-13 16:01:11 +0200225 struct list_head info_list;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700226};
227
Jan Beulich0e345822010-08-07 18:28:55 +0200228static unsigned int nr_minors;
229static unsigned long *minors;
230static DEFINE_SPINLOCK(minor_lock);
231
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700232#define GRANT_INVALID_REF 0
233
234#define PARTS_PER_DISK 16
Chris Lalancette9246b5f2008-09-17 14:30:32 -0700235#define PARTS_PER_EXT_DISK 256
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700236
237#define BLKIF_MAJOR(dev) ((dev)>>8)
238#define BLKIF_MINOR(dev) ((dev) & 0xff)
239
Chris Lalancette9246b5f2008-09-17 14:30:32 -0700240#define EXT_SHIFT 28
241#define EXTENDED (1<<EXT_SHIFT)
242#define VDEV_IS_EXTENDED(dev) ((dev)&(EXTENDED))
243#define BLKIF_MINOR_EXT(dev) ((dev)&(~EXTENDED))
Stefano Stabellinic80a4202010-12-02 17:55:00 +0000244#define EMULATED_HD_DISK_MINOR_OFFSET (0)
245#define EMULATED_HD_DISK_NAME_OFFSET (EMULATED_HD_DISK_MINOR_OFFSET / 256)
Stefan Bader196cfe22011-07-14 15:30:22 +0200246#define EMULATED_SD_DISK_MINOR_OFFSET (0)
247#define EMULATED_SD_DISK_NAME_OFFSET (EMULATED_SD_DISK_MINOR_OFFSET / 256)
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700248
Chris Lalancette9246b5f2008-09-17 14:30:32 -0700249#define DEV_NAME "xvd" /* name in /dev */
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700250
Julien Grallc004a6f2015-07-22 16:44:54 +0100251/*
252 * Grants are always the same size as a Xen page (i.e 4KB).
253 * A physical segment is always the same size as a Linux page.
254 * Number of grants per physical segment
255 */
256#define GRANTS_PER_PSEG (PAGE_SIZE / XEN_PAGE_SIZE)
257
258#define GRANTS_PER_INDIRECT_FRAME \
259 (XEN_PAGE_SIZE / sizeof(struct blkif_request_segment))
260
Julien Grallc004a6f2015-07-22 16:44:54 +0100261#define INDIRECT_GREFS(_grants) \
262 DIV_ROUND_UP(_grants, GRANTS_PER_INDIRECT_FRAME)
263
Bob Liu81f35162015-11-14 11:12:11 +0800264static int blkfront_setup_indirect(struct blkfront_ring_info *rinfo);
Bob Liu3df0e502015-11-14 11:12:12 +0800265static void blkfront_gather_backend_features(struct blkfront_info *info);
Bhavesh Davda7ed8ce12017-12-22 14:17:13 -0800266static int negotiate_mq(struct blkfront_info *info);
Roger Pau Monne402b27f2013-04-18 16:06:54 +0200267
Juergen Gross4ab50af2020-03-05 16:51:29 +0100268#define for_each_rinfo(info, ptr, idx) \
269 for ((ptr) = (info)->rinfo, (idx) = 0; \
270 (idx) < (info)->nr_rings; \
271 (idx)++, (ptr) = (void *)(ptr) + (info)->rinfo_size)
272
273static inline struct blkfront_ring_info *
274get_rinfo(const struct blkfront_info *info, unsigned int i)
275{
276 BUG_ON(i >= info->nr_rings);
277 return (void *)info->rinfo + i * info->rinfo_size;
278}
279
Bob Liu81f35162015-11-14 11:12:11 +0800280static int get_id_from_freelist(struct blkfront_ring_info *rinfo)
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700281{
Bob Liu81f35162015-11-14 11:12:11 +0800282 unsigned long free = rinfo->shadow_free;
283
284 BUG_ON(free >= BLK_RING_SIZE(rinfo->dev_info));
285 rinfo->shadow_free = rinfo->shadow[free].req.u.rw.id;
286 rinfo->shadow[free].req.u.rw.id = 0x0fffffee; /* debug */
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700287 return free;
288}
289
Bob Liu81f35162015-11-14 11:12:11 +0800290static int add_id_to_freelist(struct blkfront_ring_info *rinfo,
Konrad Rzeszutek Wilk6f03a7f2015-11-16 15:14:41 -0500291 unsigned long id)
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700292{
Bob Liu81f35162015-11-14 11:12:11 +0800293 if (rinfo->shadow[id].req.u.rw.id != id)
Konrad Rzeszutek Wilk6878c322012-05-25 17:34:51 -0400294 return -EINVAL;
Bob Liu81f35162015-11-14 11:12:11 +0800295 if (rinfo->shadow[id].request == NULL)
Konrad Rzeszutek Wilk6878c322012-05-25 17:34:51 -0400296 return -EINVAL;
Bob Liu81f35162015-11-14 11:12:11 +0800297 rinfo->shadow[id].req.u.rw.id = rinfo->shadow_free;
298 rinfo->shadow[id].request = NULL;
299 rinfo->shadow_free = id;
Konrad Rzeszutek Wilk6878c322012-05-25 17:34:51 -0400300 return 0;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700301}
302
Bob Liu81f35162015-11-14 11:12:11 +0800303static int fill_grant_buffer(struct blkfront_ring_info *rinfo, int num)
Roger Pau Monne9c1e0502013-03-18 17:49:35 +0100304{
Bob Liu81f35162015-11-14 11:12:11 +0800305 struct blkfront_info *info = rinfo->dev_info;
Roger Pau Monne9c1e0502013-03-18 17:49:35 +0100306 struct page *granted_page;
307 struct grant *gnt_list_entry, *n;
308 int i = 0;
309
Konrad Rzeszutek Wilk6f03a7f2015-11-16 15:14:41 -0500310 while (i < num) {
Roger Pau Monne9c1e0502013-03-18 17:49:35 +0100311 gnt_list_entry = kzalloc(sizeof(struct grant), GFP_NOIO);
312 if (!gnt_list_entry)
313 goto out_of_memory;
314
Roger Pau Monnebfe11d62013-10-29 18:31:14 +0100315 if (info->feature_persistent) {
316 granted_page = alloc_page(GFP_NOIO);
317 if (!granted_page) {
318 kfree(gnt_list_entry);
319 goto out_of_memory;
320 }
Julien Gralla7a6df22015-06-30 11:58:51 +0100321 gnt_list_entry->page = granted_page;
Roger Pau Monne9c1e0502013-03-18 17:49:35 +0100322 }
323
Roger Pau Monne9c1e0502013-03-18 17:49:35 +0100324 gnt_list_entry->gref = GRANT_INVALID_REF;
Bob Liu73716df2015-11-16 16:51:39 -0500325 list_add(&gnt_list_entry->node, &rinfo->grants);
Roger Pau Monne9c1e0502013-03-18 17:49:35 +0100326 i++;
327 }
328
329 return 0;
330
331out_of_memory:
332 list_for_each_entry_safe(gnt_list_entry, n,
Bob Liu73716df2015-11-16 16:51:39 -0500333 &rinfo->grants, node) {
Roger Pau Monne9c1e0502013-03-18 17:49:35 +0100334 list_del(&gnt_list_entry->node);
Roger Pau Monnebfe11d62013-10-29 18:31:14 +0100335 if (info->feature_persistent)
Julien Gralla7a6df22015-06-30 11:58:51 +0100336 __free_page(gnt_list_entry->page);
Roger Pau Monne9c1e0502013-03-18 17:49:35 +0100337 kfree(gnt_list_entry);
338 i--;
339 }
340 BUG_ON(i != 0);
341 return -ENOMEM;
342}
343
Bob Liu73716df2015-11-16 16:51:39 -0500344static struct grant *get_free_grant(struct blkfront_ring_info *rinfo)
Roger Pau Monne9c1e0502013-03-18 17:49:35 +0100345{
346 struct grant *gnt_list_entry;
Roger Pau Monne9c1e0502013-03-18 17:49:35 +0100347
Bob Liu73716df2015-11-16 16:51:39 -0500348 BUG_ON(list_empty(&rinfo->grants));
349 gnt_list_entry = list_first_entry(&rinfo->grants, struct grant,
Julien Grall4f503fb2015-07-01 14:10:38 +0100350 node);
Roger Pau Monne9c1e0502013-03-18 17:49:35 +0100351 list_del(&gnt_list_entry->node);
352
Julien Grall4f503fb2015-07-01 14:10:38 +0100353 if (gnt_list_entry->gref != GRANT_INVALID_REF)
Bob Liu73716df2015-11-16 16:51:39 -0500354 rinfo->persistent_gnts_c--;
Julien Grall4f503fb2015-07-01 14:10:38 +0100355
356 return gnt_list_entry;
357}
358
359static inline void grant_foreign_access(const struct grant *gnt_list_entry,
360 const struct blkfront_info *info)
361{
362 gnttab_page_grant_foreign_access_ref_one(gnt_list_entry->gref,
363 info->xbdev->otherend_id,
364 gnt_list_entry->page,
365 0);
366}
367
368static struct grant *get_grant(grant_ref_t *gref_head,
369 unsigned long gfn,
Bob Liu73716df2015-11-16 16:51:39 -0500370 struct blkfront_ring_info *rinfo)
Julien Grall4f503fb2015-07-01 14:10:38 +0100371{
Bob Liu73716df2015-11-16 16:51:39 -0500372 struct grant *gnt_list_entry = get_free_grant(rinfo);
373 struct blkfront_info *info = rinfo->dev_info;
Julien Grall4f503fb2015-07-01 14:10:38 +0100374
375 if (gnt_list_entry->gref != GRANT_INVALID_REF)
Roger Pau Monne9c1e0502013-03-18 17:49:35 +0100376 return gnt_list_entry;
Julien Grall4f503fb2015-07-01 14:10:38 +0100377
378 /* Assign a gref to this page */
379 gnt_list_entry->gref = gnttab_claim_grant_reference(gref_head);
380 BUG_ON(gnt_list_entry->gref == -ENOSPC);
381 if (info->feature_persistent)
382 grant_foreign_access(gnt_list_entry, info);
383 else {
384 /* Grant access to the GFN passed by the caller */
385 gnttab_grant_foreign_access_ref(gnt_list_entry->gref,
386 info->xbdev->otherend_id,
387 gfn, 0);
Roger Pau Monne9c1e0502013-03-18 17:49:35 +0100388 }
389
Julien Grall4f503fb2015-07-01 14:10:38 +0100390 return gnt_list_entry;
391}
392
393static struct grant *get_indirect_grant(grant_ref_t *gref_head,
Bob Liu73716df2015-11-16 16:51:39 -0500394 struct blkfront_ring_info *rinfo)
Julien Grall4f503fb2015-07-01 14:10:38 +0100395{
Bob Liu73716df2015-11-16 16:51:39 -0500396 struct grant *gnt_list_entry = get_free_grant(rinfo);
397 struct blkfront_info *info = rinfo->dev_info;
Julien Grall4f503fb2015-07-01 14:10:38 +0100398
399 if (gnt_list_entry->gref != GRANT_INVALID_REF)
400 return gnt_list_entry;
401
Roger Pau Monne9c1e0502013-03-18 17:49:35 +0100402 /* Assign a gref to this page */
403 gnt_list_entry->gref = gnttab_claim_grant_reference(gref_head);
404 BUG_ON(gnt_list_entry->gref == -ENOSPC);
Roger Pau Monnebfe11d62013-10-29 18:31:14 +0100405 if (!info->feature_persistent) {
Julien Grall4f503fb2015-07-01 14:10:38 +0100406 struct page *indirect_page;
407
408 /* Fetch a pre-allocated page to use for indirect grefs */
Bob Liu73716df2015-11-16 16:51:39 -0500409 BUG_ON(list_empty(&rinfo->indirect_pages));
410 indirect_page = list_first_entry(&rinfo->indirect_pages,
Julien Grall4f503fb2015-07-01 14:10:38 +0100411 struct page, lru);
412 list_del(&indirect_page->lru);
413 gnt_list_entry->page = indirect_page;
Roger Pau Monnebfe11d62013-10-29 18:31:14 +0100414 }
Julien Grall4f503fb2015-07-01 14:10:38 +0100415 grant_foreign_access(gnt_list_entry, info);
416
Roger Pau Monne9c1e0502013-03-18 17:49:35 +0100417 return gnt_list_entry;
418}
419
Konrad Rzeszutek Wilk6878c322012-05-25 17:34:51 -0400420static const char *op_name(int op)
421{
422 static const char *const names[] = {
423 [BLKIF_OP_READ] = "read",
424 [BLKIF_OP_WRITE] = "write",
425 [BLKIF_OP_WRITE_BARRIER] = "barrier",
426 [BLKIF_OP_FLUSH_DISKCACHE] = "flush",
427 [BLKIF_OP_DISCARD] = "discard" };
428
429 if (op < 0 || op >= ARRAY_SIZE(names))
430 return "unknown";
431
432 if (!names[op])
433 return "reserved";
434
435 return names[op];
436}
Jan Beulich0e345822010-08-07 18:28:55 +0200437static int xlbd_reserve_minors(unsigned int minor, unsigned int nr)
438{
439 unsigned int end = minor + nr;
440 int rc;
441
442 if (end > nr_minors) {
443 unsigned long *bitmap, *old;
444
Thomas Meyerf0941482011-11-29 22:08:00 +0100445 bitmap = kcalloc(BITS_TO_LONGS(end), sizeof(*bitmap),
Jan Beulich0e345822010-08-07 18:28:55 +0200446 GFP_KERNEL);
447 if (bitmap == NULL)
448 return -ENOMEM;
449
450 spin_lock(&minor_lock);
451 if (end > nr_minors) {
452 old = minors;
453 memcpy(bitmap, minors,
454 BITS_TO_LONGS(nr_minors) * sizeof(*bitmap));
455 minors = bitmap;
456 nr_minors = BITS_TO_LONGS(end) * BITS_PER_LONG;
457 } else
458 old = bitmap;
459 spin_unlock(&minor_lock);
460 kfree(old);
461 }
462
463 spin_lock(&minor_lock);
464 if (find_next_bit(minors, end, minor) >= end) {
Akinobu Mita34ae2e42012-01-21 00:15:26 +0900465 bitmap_set(minors, minor, nr);
Jan Beulich0e345822010-08-07 18:28:55 +0200466 rc = 0;
467 } else
468 rc = -EBUSY;
469 spin_unlock(&minor_lock);
470
471 return rc;
472}
473
474static void xlbd_release_minors(unsigned int minor, unsigned int nr)
475{
476 unsigned int end = minor + nr;
477
478 BUG_ON(end > nr_minors);
479 spin_lock(&minor_lock);
Akinobu Mita34ae2e42012-01-21 00:15:26 +0900480 bitmap_clear(minors, minor, nr);
Jan Beulich0e345822010-08-07 18:28:55 +0200481 spin_unlock(&minor_lock);
482}
483
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700484static void blkif_restart_queue_callback(void *arg)
485{
Bob Liu81f35162015-11-14 11:12:11 +0800486 struct blkfront_ring_info *rinfo = (struct blkfront_ring_info *)arg;
487 schedule_work(&rinfo->work);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700488}
489
Harvey Harrisonafe42d72008-04-29 00:59:47 -0700490static int blkif_getgeo(struct block_device *bd, struct hd_geometry *hg)
Ian Campbell597592d2008-02-21 13:03:45 -0800491{
492 /* We don't have real geometry info, but let's at least return
493 values consistent with the size of the device */
494 sector_t nsect = get_capacity(bd->bd_disk);
495 sector_t cylinders = nsect;
496
497 hg->heads = 0xff;
498 hg->sectors = 0x3f;
499 sector_div(cylinders, hg->heads * hg->sectors);
500 hg->cylinders = cylinders;
501 if ((sector_t)(hg->cylinders + 1) * hg->heads * hg->sectors < nsect)
502 hg->cylinders = 0xffff;
503 return 0;
504}
505
Al Viroa63c8482008-03-02 10:23:47 -0500506static int blkif_ioctl(struct block_device *bdev, fmode_t mode,
Adrian Bunk62aa0052008-08-04 11:59:05 +0200507 unsigned command, unsigned long argument)
Christian Limpach440a01a2008-06-17 10:47:08 +0200508{
Christoph Hellwig1a827ce12021-11-22 14:06:14 +0100509 struct blkfront_info *info = bdev->bd_disk->private_data;
Christian Limpach440a01a2008-06-17 10:47:08 +0200510 int i;
511
Christian Limpach440a01a2008-06-17 10:47:08 +0200512 switch (command) {
513 case CDROMMULTISESSION:
Christian Limpach440a01a2008-06-17 10:47:08 +0200514 for (i = 0; i < sizeof(struct cdrom_multisession); i++)
515 if (put_user(0, (char __user *)(argument + i)))
516 return -EFAULT;
517 return 0;
Christoph Hellwig05d69d92021-07-15 16:17:11 +0200518 case CDROM_GET_CAPABILITY:
Christoph Hellwig1a827ce12021-11-22 14:06:14 +0100519 if (!(info->vdisk_info & VDISK_CDROM))
520 return -EINVAL;
521 return 0;
Christian Limpach440a01a2008-06-17 10:47:08 +0200522 default:
Christoph Hellwig05d69d92021-07-15 16:17:11 +0200523 return -EINVAL;
Christian Limpach440a01a2008-06-17 10:47:08 +0200524 }
Christian Limpach440a01a2008-06-17 10:47:08 +0200525}
526
Julien Grall2e073962015-08-13 19:23:10 +0100527static unsigned long blkif_ring_get_request(struct blkfront_ring_info *rinfo,
528 struct request *req,
529 struct blkif_request **ring_req)
530{
531 unsigned long id;
532
533 *ring_req = RING_GET_REQUEST(&rinfo->ring, rinfo->ring.req_prod_pvt);
534 rinfo->ring.req_prod_pvt++;
535
536 id = get_id_from_freelist(rinfo);
537 rinfo->shadow[id].request = req;
Juergen Grossb94e4b12021-07-30 12:38:54 +0200538 rinfo->shadow[id].status = REQ_PROCESSING;
Julien Grall6cc568332015-08-13 13:13:35 +0100539 rinfo->shadow[id].associated_id = NO_ASSOCIATED_ID;
Julien Grall2e073962015-08-13 19:23:10 +0100540
Juergen Gross8f5a6952021-07-30 12:38:53 +0200541 rinfo->shadow[id].req.u.rw.id = id;
Julien Grall2e073962015-08-13 19:23:10 +0100542
543 return id;
544}
545
Bob Liu81f35162015-11-14 11:12:11 +0800546static int blkif_queue_discard_req(struct request *req, struct blkfront_ring_info *rinfo)
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700547{
Bob Liu81f35162015-11-14 11:12:11 +0800548 struct blkfront_info *info = rinfo->dev_info;
Juergen Gross8f5a6952021-07-30 12:38:53 +0200549 struct blkif_request *ring_req, *final_ring_req;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700550 unsigned long id;
Julien Grall33204662015-06-29 17:35:24 +0100551
552 /* Fill out a communications ring structure. */
Juergen Gross8f5a6952021-07-30 12:38:53 +0200553 id = blkif_ring_get_request(rinfo, req, &final_ring_req);
554 ring_req = &rinfo->shadow[id].req;
Julien Grall33204662015-06-29 17:35:24 +0100555
556 ring_req->operation = BLKIF_OP_DISCARD;
557 ring_req->u.discard.nr_sectors = blk_rq_sectors(req);
558 ring_req->u.discard.id = id;
559 ring_req->u.discard.sector_number = (blkif_sector_t)blk_rq_pos(req);
Christoph Hellwig288dab82016-06-09 16:00:36 +0200560 if (req_op(req) == REQ_OP_SECURE_ERASE && info->feature_secdiscard)
Julien Grall33204662015-06-29 17:35:24 +0100561 ring_req->u.discard.flag = BLKIF_DISCARD_SECURE;
562 else
563 ring_req->u.discard.flag = 0;
564
Juergen Gross8f5a6952021-07-30 12:38:53 +0200565 /* Copy the request to the ring page. */
566 *final_ring_req = *ring_req;
Juergen Grossb94e4b12021-07-30 12:38:54 +0200567 rinfo->shadow[id].status = REQ_WAITING;
Julien Grall33204662015-06-29 17:35:24 +0100568
569 return 0;
570}
571
Julien Grallc004a6f2015-07-22 16:44:54 +0100572struct setup_rw_req {
573 unsigned int grant_idx;
574 struct blkif_request_segment *segments;
Bob Liu81f35162015-11-14 11:12:11 +0800575 struct blkfront_ring_info *rinfo;
Julien Grallc004a6f2015-07-22 16:44:54 +0100576 struct blkif_request *ring_req;
577 grant_ref_t gref_head;
578 unsigned int id;
579 /* Only used when persistent grant is used and it's a read request */
580 bool need_copy;
581 unsigned int bvec_off;
582 char *bvec_data;
Julien Grall6cc568332015-08-13 13:13:35 +0100583
584 bool require_extra_req;
585 struct blkif_request *extra_ring_req;
Julien Grallc004a6f2015-07-22 16:44:54 +0100586};
587
588static void blkif_setup_rw_req_grant(unsigned long gfn, unsigned int offset,
589 unsigned int len, void *data)
590{
591 struct setup_rw_req *setup = data;
592 int n, ref;
593 struct grant *gnt_list_entry;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700594 unsigned int fsect, lsect;
Julien Grallc004a6f2015-07-22 16:44:54 +0100595 /* Convenient aliases */
596 unsigned int grant_idx = setup->grant_idx;
597 struct blkif_request *ring_req = setup->ring_req;
Bob Liu81f35162015-11-14 11:12:11 +0800598 struct blkfront_ring_info *rinfo = setup->rinfo;
Julien Grall6cc568332015-08-13 13:13:35 +0100599 /*
600 * We always use the shadow of the first request to store the list
601 * of grant associated to the block I/O request. This made the
602 * completion more easy to handle even if the block I/O request is
603 * split.
604 */
Bob Liu81f35162015-11-14 11:12:11 +0800605 struct blk_shadow *shadow = &rinfo->shadow[setup->id];
Julien Grallc004a6f2015-07-22 16:44:54 +0100606
Julien Grall6cc568332015-08-13 13:13:35 +0100607 if (unlikely(setup->require_extra_req &&
608 grant_idx >= BLKIF_MAX_SEGMENTS_PER_REQUEST)) {
609 /*
610 * We are using the second request, setup grant_idx
611 * to be the index of the segment array.
612 */
613 grant_idx -= BLKIF_MAX_SEGMENTS_PER_REQUEST;
614 ring_req = setup->extra_ring_req;
615 }
616
Julien Grallc004a6f2015-07-22 16:44:54 +0100617 if ((ring_req->operation == BLKIF_OP_INDIRECT) &&
618 (grant_idx % GRANTS_PER_INDIRECT_FRAME == 0)) {
619 if (setup->segments)
620 kunmap_atomic(setup->segments);
621
622 n = grant_idx / GRANTS_PER_INDIRECT_FRAME;
Bob Liu73716df2015-11-16 16:51:39 -0500623 gnt_list_entry = get_indirect_grant(&setup->gref_head, rinfo);
Julien Grallc004a6f2015-07-22 16:44:54 +0100624 shadow->indirect_grants[n] = gnt_list_entry;
625 setup->segments = kmap_atomic(gnt_list_entry->page);
626 ring_req->u.indirect.indirect_grefs[n] = gnt_list_entry->gref;
627 }
628
Bob Liu73716df2015-11-16 16:51:39 -0500629 gnt_list_entry = get_grant(&setup->gref_head, gfn, rinfo);
Julien Grallc004a6f2015-07-22 16:44:54 +0100630 ref = gnt_list_entry->gref;
Julien Grall6cc568332015-08-13 13:13:35 +0100631 /*
632 * All the grants are stored in the shadow of the first
633 * request. Therefore we have to use the global index.
634 */
635 shadow->grants_used[setup->grant_idx] = gnt_list_entry;
Julien Grallc004a6f2015-07-22 16:44:54 +0100636
637 if (setup->need_copy) {
638 void *shared_data;
639
640 shared_data = kmap_atomic(gnt_list_entry->page);
641 /*
642 * this does not wipe data stored outside the
643 * range sg->offset..sg->offset+sg->length.
644 * Therefore, blkback *could* see data from
645 * previous requests. This is OK as long as
646 * persistent grants are shared with just one
647 * domain. It may need refactoring if this
648 * changes
649 */
650 memcpy(shared_data + offset,
651 setup->bvec_data + setup->bvec_off,
652 len);
653
654 kunmap_atomic(shared_data);
655 setup->bvec_off += len;
656 }
657
658 fsect = offset >> 9;
659 lsect = fsect + (len >> 9) - 1;
660 if (ring_req->operation != BLKIF_OP_INDIRECT) {
661 ring_req->u.rw.seg[grant_idx] =
662 (struct blkif_request_segment) {
663 .gref = ref,
664 .first_sect = fsect,
665 .last_sect = lsect };
666 } else {
667 setup->segments[grant_idx % GRANTS_PER_INDIRECT_FRAME] =
668 (struct blkif_request_segment) {
669 .gref = ref,
670 .first_sect = fsect,
671 .last_sect = lsect };
672 }
673
674 (setup->grant_idx)++;
675}
676
Julien Grall6cc568332015-08-13 13:13:35 +0100677static void blkif_setup_extra_req(struct blkif_request *first,
678 struct blkif_request *second)
679{
680 uint16_t nr_segments = first->u.rw.nr_segments;
681
682 /*
683 * The second request is only present when the first request uses
684 * all its segments. It's always the continuity of the first one.
685 */
686 first->u.rw.nr_segments = BLKIF_MAX_SEGMENTS_PER_REQUEST;
687
688 second->u.rw.nr_segments = nr_segments - BLKIF_MAX_SEGMENTS_PER_REQUEST;
689 second->u.rw.sector_number = first->u.rw.sector_number +
690 (BLKIF_MAX_SEGMENTS_PER_REQUEST * XEN_PAGE_SIZE) / 512;
691
692 second->u.rw.handle = first->u.rw.handle;
693 second->operation = first->operation;
694}
695
Bob Liu81f35162015-11-14 11:12:11 +0800696static int blkif_queue_rw_req(struct request *req, struct blkfront_ring_info *rinfo)
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700697{
Bob Liu81f35162015-11-14 11:12:11 +0800698 struct blkfront_info *info = rinfo->dev_info;
Julien Grall6cc568332015-08-13 13:13:35 +0100699 struct blkif_request *ring_req, *extra_ring_req = NULL;
Juergen Gross8f5a6952021-07-30 12:38:53 +0200700 struct blkif_request *final_ring_req, *final_extra_ring_req = NULL;
Julien Grall6cc568332015-08-13 13:13:35 +0100701 unsigned long id, extra_id = NO_ASSOCIATED_ID;
702 bool require_extra_req = false;
Julien Grallc004a6f2015-07-22 16:44:54 +0100703 int i;
704 struct setup_rw_req setup = {
705 .grant_idx = 0,
706 .segments = NULL,
Bob Liu81f35162015-11-14 11:12:11 +0800707 .rinfo = rinfo,
Julien Grallc004a6f2015-07-22 16:44:54 +0100708 .need_copy = rq_data_dir(req) && info->feature_persistent,
709 };
Roger Pau Monne0a8704a2012-10-24 18:58:45 +0200710
711 /*
712 * Used to store if we are able to queue the request by just using
713 * existing persistent grants, or if we have to get new grants,
714 * as there are not sufficiently many free.
715 */
Dongli Zhangbd912ef32017-06-28 20:57:28 +0800716 bool new_persistent_gnts = false;
Jens Axboe9e973e62009-02-24 08:10:09 +0100717 struct scatterlist *sg;
Julien Grallc004a6f2015-07-22 16:44:54 +0100718 int num_sg, max_grefs, num_grant;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700719
Julien Grallc004a6f2015-07-22 16:44:54 +0100720 max_grefs = req->nr_phys_segments * GRANTS_PER_PSEG;
Roger Pau Monnec47206e2013-08-12 12:53:43 +0200721 if (max_grefs > BLKIF_MAX_SEGMENTS_PER_REQUEST)
722 /*
723 * If we are using indirect segments we need to account
724 * for the indirect grefs used in the request.
725 */
Julien Grallc004a6f2015-07-22 16:44:54 +0100726 max_grefs += INDIRECT_GREFS(max_grefs);
Roger Pau Monne402b27f2013-04-18 16:06:54 +0200727
Dongli Zhangbd912ef32017-06-28 20:57:28 +0800728 /* Check if we have enough persistent grants to allocate a requests */
729 if (rinfo->persistent_gnts_c < max_grefs) {
730 new_persistent_gnts = true;
731
732 if (gnttab_alloc_grant_references(
733 max_grefs - rinfo->persistent_gnts_c,
734 &setup.gref_head) < 0) {
Roger Pau Monne0a8704a2012-10-24 18:58:45 +0200735 gnttab_request_free_callback(
Bob Liu81f35162015-11-14 11:12:11 +0800736 &rinfo->callback,
Roger Pau Monne0a8704a2012-10-24 18:58:45 +0200737 blkif_restart_queue_callback,
Bob Liu81f35162015-11-14 11:12:11 +0800738 rinfo,
Dongli Zhangbd912ef32017-06-28 20:57:28 +0800739 max_grefs - rinfo->persistent_gnts_c);
Roger Pau Monne0a8704a2012-10-24 18:58:45 +0200740 return 1;
741 }
Dongli Zhangbd912ef32017-06-28 20:57:28 +0800742 }
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700743
744 /* Fill out a communications ring structure. */
Juergen Gross8f5a6952021-07-30 12:38:53 +0200745 id = blkif_ring_get_request(rinfo, req, &final_ring_req);
746 ring_req = &rinfo->shadow[id].req;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700747
Bob Liu81f35162015-11-14 11:12:11 +0800748 num_sg = blk_rq_map_sg(req->q, req, rinfo->shadow[id].sg);
Julien Grallc004a6f2015-07-22 16:44:54 +0100749 num_grant = 0;
750 /* Calculate the number of grant used */
Bob Liu81f35162015-11-14 11:12:11 +0800751 for_each_sg(rinfo->shadow[id].sg, sg, num_sg, i)
Julien Grallc004a6f2015-07-22 16:44:54 +0100752 num_grant += gnttab_count_grant(sg->offset, sg->length);
753
Julien Grall6cc568332015-08-13 13:13:35 +0100754 require_extra_req = info->max_indirect_segments == 0 &&
755 num_grant > BLKIF_MAX_SEGMENTS_PER_REQUEST;
756 BUG_ON(!HAS_EXTRA_REQ && require_extra_req);
757
Bob Liu81f35162015-11-14 11:12:11 +0800758 rinfo->shadow[id].num_sg = num_sg;
Julien Grall6cc568332015-08-13 13:13:35 +0100759 if (num_grant > BLKIF_MAX_SEGMENTS_PER_REQUEST &&
760 likely(!require_extra_req)) {
Julien Grall33204662015-06-29 17:35:24 +0100761 /*
762 * The indirect operation can only be a BLKIF_OP_READ or
763 * BLKIF_OP_WRITE
764 */
Mike Christie3a5e02c2016-06-05 14:32:23 -0500765 BUG_ON(req_op(req) == REQ_OP_FLUSH || req->cmd_flags & REQ_FUA);
Julien Grall33204662015-06-29 17:35:24 +0100766 ring_req->operation = BLKIF_OP_INDIRECT;
767 ring_req->u.indirect.indirect_op = rq_data_dir(req) ?
768 BLKIF_OP_WRITE : BLKIF_OP_READ;
769 ring_req->u.indirect.sector_number = (blkif_sector_t)blk_rq_pos(req);
770 ring_req->u.indirect.handle = info->handle;
Julien Grallc004a6f2015-07-22 16:44:54 +0100771 ring_req->u.indirect.nr_segments = num_grant;
Li Dongyanged30bf32011-09-01 18:39:09 +0800772 } else {
Julien Grall33204662015-06-29 17:35:24 +0100773 ring_req->u.rw.sector_number = (blkif_sector_t)blk_rq_pos(req);
774 ring_req->u.rw.handle = info->handle;
775 ring_req->operation = rq_data_dir(req) ?
776 BLKIF_OP_WRITE : BLKIF_OP_READ;
Mike Christie3a5e02c2016-06-05 14:32:23 -0500777 if (req_op(req) == REQ_OP_FLUSH || req->cmd_flags & REQ_FUA) {
Roger Pau Monne402b27f2013-04-18 16:06:54 +0200778 /*
Julien Grall33204662015-06-29 17:35:24 +0100779 * Ideally we can do an unordered flush-to-disk.
780 * In case the backend onlysupports barriers, use that.
781 * A barrier request a superset of FUA, so we can
782 * implement it the same way. (It's also a FLUSH+FUA,
783 * since it is guaranteed ordered WRT previous writes.)
Roger Pau Monne402b27f2013-04-18 16:06:54 +0200784 */
Mike Christiea4180902016-06-05 14:32:24 -0500785 if (info->feature_flush && info->feature_fua)
Julien Grall33204662015-06-29 17:35:24 +0100786 ring_req->operation =
787 BLKIF_OP_WRITE_BARRIER;
Mike Christiea4180902016-06-05 14:32:24 -0500788 else if (info->feature_flush)
Julien Grall33204662015-06-29 17:35:24 +0100789 ring_req->operation =
790 BLKIF_OP_FLUSH_DISKCACHE;
Mike Christiea4180902016-06-05 14:32:24 -0500791 else
Julien Grall33204662015-06-29 17:35:24 +0100792 ring_req->operation = 0;
Li Dongyanged30bf32011-09-01 18:39:09 +0800793 }
Julien Grallc004a6f2015-07-22 16:44:54 +0100794 ring_req->u.rw.nr_segments = num_grant;
Julien Grall6cc568332015-08-13 13:13:35 +0100795 if (unlikely(require_extra_req)) {
796 extra_id = blkif_ring_get_request(rinfo, req,
Juergen Gross8f5a6952021-07-30 12:38:53 +0200797 &final_extra_ring_req);
798 extra_ring_req = &rinfo->shadow[extra_id].req;
799
Julien Grall6cc568332015-08-13 13:13:35 +0100800 /*
801 * Only the first request contains the scatter-gather
802 * list.
803 */
804 rinfo->shadow[extra_id].num_sg = 0;
805
806 blkif_setup_extra_req(ring_req, extra_ring_req);
807
808 /* Link the 2 requests together */
809 rinfo->shadow[extra_id].associated_id = id;
810 rinfo->shadow[id].associated_id = extra_id;
811 }
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700812 }
813
Julien Grallc004a6f2015-07-22 16:44:54 +0100814 setup.ring_req = ring_req;
815 setup.id = id;
Julien Grall6cc568332015-08-13 13:13:35 +0100816
817 setup.require_extra_req = require_extra_req;
818 if (unlikely(require_extra_req))
819 setup.extra_ring_req = extra_ring_req;
820
Bob Liu81f35162015-11-14 11:12:11 +0800821 for_each_sg(rinfo->shadow[id].sg, sg, num_sg, i) {
Julien Grallc004a6f2015-07-22 16:44:54 +0100822 BUG_ON(sg->offset + sg->length > PAGE_SIZE);
Julien Grall33204662015-06-29 17:35:24 +0100823
Julien Grallc004a6f2015-07-22 16:44:54 +0100824 if (setup.need_copy) {
825 setup.bvec_off = sg->offset;
826 setup.bvec_data = kmap_atomic(sg_page(sg));
Julien Grall33204662015-06-29 17:35:24 +0100827 }
828
Julien Grallc004a6f2015-07-22 16:44:54 +0100829 gnttab_foreach_grant_in_range(sg_page(sg),
830 sg->offset,
831 sg->length,
832 blkif_setup_rw_req_grant,
833 &setup);
Julien Grall33204662015-06-29 17:35:24 +0100834
Julien Grallc004a6f2015-07-22 16:44:54 +0100835 if (setup.need_copy)
836 kunmap_atomic(setup.bvec_data);
Julien Grall33204662015-06-29 17:35:24 +0100837 }
Julien Grallc004a6f2015-07-22 16:44:54 +0100838 if (setup.segments)
839 kunmap_atomic(setup.segments);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700840
Juergen Gross8f5a6952021-07-30 12:38:53 +0200841 /* Copy request(s) to the ring page. */
842 *final_ring_req = *ring_req;
Juergen Grossb94e4b12021-07-30 12:38:54 +0200843 rinfo->shadow[id].status = REQ_WAITING;
844 if (unlikely(require_extra_req)) {
Juergen Gross8f5a6952021-07-30 12:38:53 +0200845 *final_extra_ring_req = *extra_ring_req;
Juergen Grossb94e4b12021-07-30 12:38:54 +0200846 rinfo->shadow[extra_id].status = REQ_WAITING;
847 }
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700848
Dongli Zhangbd912ef32017-06-28 20:57:28 +0800849 if (new_persistent_gnts)
Julien Grallc004a6f2015-07-22 16:44:54 +0100850 gnttab_free_grant_references(setup.gref_head);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700851
852 return 0;
853}
854
Julien Grall33204662015-06-29 17:35:24 +0100855/*
856 * Generate a Xen blkfront IO request from a blk layer request. Reads
857 * and writes are handled as expected.
858 *
859 * @req: a request struct
860 */
Bob Liu81f35162015-11-14 11:12:11 +0800861static int blkif_queue_request(struct request *req, struct blkfront_ring_info *rinfo)
Julien Grall33204662015-06-29 17:35:24 +0100862{
Bob Liu81f35162015-11-14 11:12:11 +0800863 if (unlikely(rinfo->dev_info->connected != BLKIF_STATE_CONNECTED))
Julien Grall33204662015-06-29 17:35:24 +0100864 return 1;
865
Mike Christiec2df40d2016-06-05 14:32:17 -0500866 if (unlikely(req_op(req) == REQ_OP_DISCARD ||
Christoph Hellwig288dab82016-06-09 16:00:36 +0200867 req_op(req) == REQ_OP_SECURE_ERASE))
Bob Liu81f35162015-11-14 11:12:11 +0800868 return blkif_queue_discard_req(req, rinfo);
Julien Grall33204662015-06-29 17:35:24 +0100869 else
Bob Liu81f35162015-11-14 11:12:11 +0800870 return blkif_queue_rw_req(req, rinfo);
Julien Grall33204662015-06-29 17:35:24 +0100871}
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700872
Bob Liu81f35162015-11-14 11:12:11 +0800873static inline void flush_requests(struct blkfront_ring_info *rinfo)
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700874{
875 int notify;
876
Bob Liu81f35162015-11-14 11:12:11 +0800877 RING_PUSH_REQUESTS_AND_CHECK_NOTIFY(&rinfo->ring, notify);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700878
879 if (notify)
Bob Liu81f35162015-11-14 11:12:11 +0800880 notify_remote_via_irq(rinfo->irq);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700881}
882
Vitaly Kuznetsovad42d392014-12-01 14:01:13 +0100883static inline bool blkif_request_flush_invalid(struct request *req,
884 struct blkfront_info *info)
Arianna Avanzini0f1ca652014-08-22 13:20:02 +0200885{
Christoph Hellwigaebf5262017-01-31 16:57:31 +0100886 return (blk_rq_is_passthrough(req) ||
Mike Christie3a5e02c2016-06-05 14:32:23 -0500887 ((req_op(req) == REQ_OP_FLUSH) &&
Mike Christiea4180902016-06-05 14:32:24 -0500888 !info->feature_flush) ||
Vitaly Kuznetsovad42d392014-12-01 14:01:13 +0100889 ((req->cmd_flags & REQ_FUA) &&
Mike Christiea4180902016-06-05 14:32:24 -0500890 !info->feature_fua));
Arianna Avanzini0f1ca652014-08-22 13:20:02 +0200891}
892
Christoph Hellwigfc17b652017-06-03 09:38:05 +0200893static blk_status_t blkif_queue_rq(struct blk_mq_hw_ctx *hctx,
Konrad Rzeszutek Wilk6f03a7f2015-11-16 15:14:41 -0500894 const struct blk_mq_queue_data *qd)
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700895{
Bob Liu11659562015-11-14 11:12:13 +0800896 unsigned long flags;
Bob Liu2a6f71a2016-05-31 16:59:17 +0800897 int qid = hctx->queue_num;
898 struct blkfront_info *info = hctx->queue->queuedata;
899 struct blkfront_ring_info *rinfo = NULL;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700900
Juergen Gross4ab50af2020-03-05 16:51:29 +0100901 rinfo = get_rinfo(info, qid);
Bob Liu907c3eb2015-07-13 17:55:24 +0800902 blk_mq_start_request(qd->rq);
Bob Liu11659562015-11-14 11:12:13 +0800903 spin_lock_irqsave(&rinfo->ring_lock, flags);
Bob Liu81f35162015-11-14 11:12:11 +0800904 if (RING_FULL(&rinfo->ring))
Bob Liu907c3eb2015-07-13 17:55:24 +0800905 goto out_busy;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700906
Bob Liu81f35162015-11-14 11:12:11 +0800907 if (blkif_request_flush_invalid(qd->rq, rinfo->dev_info))
Bob Liu907c3eb2015-07-13 17:55:24 +0800908 goto out_err;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700909
Bob Liu81f35162015-11-14 11:12:11 +0800910 if (blkif_queue_request(qd->rq, rinfo))
Bob Liu907c3eb2015-07-13 17:55:24 +0800911 goto out_busy;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700912
Bob Liu81f35162015-11-14 11:12:11 +0800913 flush_requests(rinfo);
Bob Liu11659562015-11-14 11:12:13 +0800914 spin_unlock_irqrestore(&rinfo->ring_lock, flags);
Christoph Hellwigfc17b652017-06-03 09:38:05 +0200915 return BLK_STS_OK;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700916
Bob Liu907c3eb2015-07-13 17:55:24 +0800917out_err:
Bob Liu11659562015-11-14 11:12:13 +0800918 spin_unlock_irqrestore(&rinfo->ring_lock, flags);
Christoph Hellwigfc17b652017-06-03 09:38:05 +0200919 return BLK_STS_IOERR;
Tejun Heo296b2f62009-05-08 11:54:15 +0900920
Bob Liu907c3eb2015-07-13 17:55:24 +0800921out_busy:
Bob Liu907c3eb2015-07-13 17:55:24 +0800922 blk_mq_stop_hw_queue(hctx);
Junxiao Bi4b422cb2017-07-20 09:26:21 +0800923 spin_unlock_irqrestore(&rinfo->ring_lock, flags);
Ming Lei86ff7c22018-01-30 22:04:57 -0500924 return BLK_STS_DEV_RESOURCE;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700925}
926
Christoph Hellwig26095872017-04-20 16:03:08 +0200927static void blkif_complete_rq(struct request *rq)
928{
929 blk_mq_end_request(rq, blkif_req(rq)->error);
930}
931
Eric Biggersf363b082017-03-30 13:39:16 -0700932static const struct blk_mq_ops blkfront_mq_ops = {
Bob Liu907c3eb2015-07-13 17:55:24 +0800933 .queue_rq = blkif_queue_rq,
Christoph Hellwig26095872017-04-20 16:03:08 +0200934 .complete = blkif_complete_rq,
Bob Liu907c3eb2015-07-13 17:55:24 +0800935};
936
Bob Liu172335a2016-07-01 17:43:39 -0400937static void blkif_set_queue_limits(struct blkfront_info *info)
938{
939 struct request_queue *rq = info->rq;
940 struct gendisk *gd = info->gd;
941 unsigned int segments = info->max_indirect_segments ? :
942 BLKIF_MAX_SEGMENTS_PER_REQUEST;
943
Bart Van Assche8b904b52018-03-07 17:10:10 -0800944 blk_queue_flag_set(QUEUE_FLAG_VIRT, rq);
Bob Liu172335a2016-07-01 17:43:39 -0400945
946 if (info->feature_discard) {
Bart Van Assche8b904b52018-03-07 17:10:10 -0800947 blk_queue_flag_set(QUEUE_FLAG_DISCARD, rq);
Bob Liu172335a2016-07-01 17:43:39 -0400948 blk_queue_max_discard_sectors(rq, get_capacity(gd));
Roger Pau Monne0549cd62021-01-19 11:57:27 +0100949 rq->limits.discard_granularity = info->discard_granularity ?:
950 info->physical_sector_size;
Bob Liu172335a2016-07-01 17:43:39 -0400951 rq->limits.discard_alignment = info->discard_alignment;
952 if (info->feature_secdiscard)
Bart Van Assche8b904b52018-03-07 17:10:10 -0800953 blk_queue_flag_set(QUEUE_FLAG_SECERASE, rq);
Bob Liu172335a2016-07-01 17:43:39 -0400954 }
955
956 /* Hard sector size and max sectors impersonate the equiv. hardware. */
957 blk_queue_logical_block_size(rq, info->sector_size);
958 blk_queue_physical_block_size(rq, info->physical_sector_size);
959 blk_queue_max_hw_sectors(rq, (segments * XEN_PAGE_SIZE) / 512);
960
961 /* Each segment in a request is up to an aligned page in size. */
962 blk_queue_segment_boundary(rq, PAGE_SIZE - 1);
963 blk_queue_max_segment_size(rq, PAGE_SIZE);
964
965 /* Ensure a merged request will fit in a single I/O ring slot. */
966 blk_queue_max_segments(rq, segments / GRANTS_PER_PSEG);
967
968 /* Make sure buffer addresses are sector-aligned. */
969 blk_queue_dma_alignment(rq, 511);
Bob Liu172335a2016-07-01 17:43:39 -0400970}
971
Mike Christiea4180902016-06-05 14:32:24 -0500972static const char *flush_info(struct blkfront_info *info)
Vitaly Kuznetsovfdf9b962014-12-09 15:25:10 +0100973{
Mike Christiea4180902016-06-05 14:32:24 -0500974 if (info->feature_flush && info->feature_fua)
Vitaly Kuznetsovfdf9b962014-12-09 15:25:10 +0100975 return "barrier: enabled;";
Mike Christiea4180902016-06-05 14:32:24 -0500976 else if (info->feature_flush)
Vitaly Kuznetsovfdf9b962014-12-09 15:25:10 +0100977 return "flush diskcache: enabled;";
Mike Christiea4180902016-06-05 14:32:24 -0500978 else
Vitaly Kuznetsovfdf9b962014-12-09 15:25:10 +0100979 return "barrier or flush: disabled;";
Vitaly Kuznetsovfdf9b962014-12-09 15:25:10 +0100980}
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700981
Tejun Heo4913efe2010-09-03 11:56:16 +0200982static void xlvbd_flush(struct blkfront_info *info)
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700983{
Mike Christiea4180902016-06-05 14:32:24 -0500984 blk_queue_write_cache(info->rq, info->feature_flush ? true : false,
985 info->feature_fua ? true : false);
Vitaly Kuznetsovfdf9b962014-12-09 15:25:10 +0100986 pr_info("blkfront: %s: %s %s %s %s %s\n",
Mike Christiea4180902016-06-05 14:32:24 -0500987 info->gd->disk_name, flush_info(info),
Vitaly Kuznetsovfdf9b962014-12-09 15:25:10 +0100988 "persistent grants:", info->feature_persistent ?
989 "enabled;" : "disabled;", "indirect descriptors:",
990 info->max_indirect_segments ? "enabled;" : "disabled;");
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -0700991}
992
Stefano Stabellinic80a4202010-12-02 17:55:00 +0000993static int xen_translate_vdev(int vdevice, int *minor, unsigned int *offset)
994{
995 int major;
996 major = BLKIF_MAJOR(vdevice);
997 *minor = BLKIF_MINOR(vdevice);
998 switch (major) {
999 case XEN_IDE0_MAJOR:
1000 *offset = (*minor / 64) + EMULATED_HD_DISK_NAME_OFFSET;
1001 *minor = ((*minor / 64) * PARTS_PER_DISK) +
1002 EMULATED_HD_DISK_MINOR_OFFSET;
1003 break;
1004 case XEN_IDE1_MAJOR:
1005 *offset = (*minor / 64) + 2 + EMULATED_HD_DISK_NAME_OFFSET;
1006 *minor = (((*minor / 64) + 2) * PARTS_PER_DISK) +
1007 EMULATED_HD_DISK_MINOR_OFFSET;
1008 break;
1009 case XEN_SCSI_DISK0_MAJOR:
1010 *offset = (*minor / PARTS_PER_DISK) + EMULATED_SD_DISK_NAME_OFFSET;
1011 *minor = *minor + EMULATED_SD_DISK_MINOR_OFFSET;
1012 break;
1013 case XEN_SCSI_DISK1_MAJOR:
1014 case XEN_SCSI_DISK2_MAJOR:
1015 case XEN_SCSI_DISK3_MAJOR:
1016 case XEN_SCSI_DISK4_MAJOR:
1017 case XEN_SCSI_DISK5_MAJOR:
1018 case XEN_SCSI_DISK6_MAJOR:
1019 case XEN_SCSI_DISK7_MAJOR:
1020 *offset = (*minor / PARTS_PER_DISK) +
1021 ((major - XEN_SCSI_DISK1_MAJOR + 1) * 16) +
1022 EMULATED_SD_DISK_NAME_OFFSET;
1023 *minor = *minor +
1024 ((major - XEN_SCSI_DISK1_MAJOR + 1) * 16 * PARTS_PER_DISK) +
1025 EMULATED_SD_DISK_MINOR_OFFSET;
1026 break;
1027 case XEN_SCSI_DISK8_MAJOR:
1028 case XEN_SCSI_DISK9_MAJOR:
1029 case XEN_SCSI_DISK10_MAJOR:
1030 case XEN_SCSI_DISK11_MAJOR:
1031 case XEN_SCSI_DISK12_MAJOR:
1032 case XEN_SCSI_DISK13_MAJOR:
1033 case XEN_SCSI_DISK14_MAJOR:
1034 case XEN_SCSI_DISK15_MAJOR:
1035 *offset = (*minor / PARTS_PER_DISK) +
1036 ((major - XEN_SCSI_DISK8_MAJOR + 8) * 16) +
1037 EMULATED_SD_DISK_NAME_OFFSET;
1038 *minor = *minor +
1039 ((major - XEN_SCSI_DISK8_MAJOR + 8) * 16 * PARTS_PER_DISK) +
1040 EMULATED_SD_DISK_MINOR_OFFSET;
1041 break;
1042 case XENVBD_MAJOR:
1043 *offset = *minor / PARTS_PER_DISK;
1044 break;
1045 default:
1046 printk(KERN_WARNING "blkfront: your disk configuration is "
1047 "incorrect, please use an xvd device instead\n");
1048 return -ENODEV;
1049 }
1050 return 0;
1051}
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001052
Jan Beuliche77c78c2012-04-05 16:37:22 +01001053static char *encode_disk_name(char *ptr, unsigned int n)
1054{
1055 if (n >= 26)
1056 ptr = encode_disk_name(ptr, n / 26 - 1);
1057 *ptr = 'a' + n % 26;
1058 return ptr + 1;
1059}
1060
Chris Lalancette9246b5f2008-09-17 14:30:32 -07001061static int xlvbd_alloc_gendisk(blkif_sector_t capacity,
Christoph Hellwig1a827ce12021-11-22 14:06:14 +01001062 struct blkfront_info *info, u16 sector_size,
1063 unsigned int physical_sector_size)
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001064{
1065 struct gendisk *gd;
1066 int nr_minors = 1;
Stefano Stabellinic80a4202010-12-02 17:55:00 +00001067 int err;
Chris Lalancette9246b5f2008-09-17 14:30:32 -07001068 unsigned int offset;
1069 int minor;
1070 int nr_parts;
Jan Beuliche77c78c2012-04-05 16:37:22 +01001071 char *ptr;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001072
1073 BUG_ON(info->gd != NULL);
1074 BUG_ON(info->rq != NULL);
1075
Chris Lalancette9246b5f2008-09-17 14:30:32 -07001076 if ((info->vdevice>>EXT_SHIFT) > 1) {
1077 /* this is above the extended range; something is wrong */
1078 printk(KERN_WARNING "blkfront: vdevice 0x%x is above the extended range; ignoring\n", info->vdevice);
1079 return -ENODEV;
1080 }
1081
1082 if (!VDEV_IS_EXTENDED(info->vdevice)) {
Stefano Stabellinic80a4202010-12-02 17:55:00 +00001083 err = xen_translate_vdev(info->vdevice, &minor, &offset);
1084 if (err)
Nathan Chancellor589b7282019-12-09 13:14:44 -07001085 return err;
1086 nr_parts = PARTS_PER_DISK;
Chris Lalancette9246b5f2008-09-17 14:30:32 -07001087 } else {
1088 minor = BLKIF_MINOR_EXT(info->vdevice);
1089 nr_parts = PARTS_PER_EXT_DISK;
Stefano Stabellinic80a4202010-12-02 17:55:00 +00001090 offset = minor / nr_parts;
Stefan Bader89153b52011-07-14 15:30:37 +02001091 if (xen_hvm_domain() && offset < EMULATED_HD_DISK_NAME_OFFSET + 4)
Stefano Stabellinic80a4202010-12-02 17:55:00 +00001092 printk(KERN_WARNING "blkfront: vdevice 0x%x might conflict with "
1093 "emulated IDE disks,\n\t choose an xvd device name"
1094 "from xvde on\n", info->vdevice);
Chris Lalancette9246b5f2008-09-17 14:30:32 -07001095 }
Jan Beuliche77c78c2012-04-05 16:37:22 +01001096 if (minor >> MINORBITS) {
1097 pr_warn("blkfront: %#x's minor (%#x) out of range; ignoring\n",
1098 info->vdevice, minor);
1099 return -ENODEV;
1100 }
Chris Lalancette9246b5f2008-09-17 14:30:32 -07001101
1102 if ((minor % nr_parts) == 0)
1103 nr_minors = nr_parts;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001104
Jan Beulich0e345822010-08-07 18:28:55 +02001105 err = xlbd_reserve_minors(minor, nr_minors);
1106 if (err)
Christoph Hellwig3b62c142021-06-02 09:53:40 +03001107 return err;
Jan Beulich0e345822010-08-07 18:28:55 +02001108
Christoph Hellwig3b62c142021-06-02 09:53:40 +03001109 memset(&info->tag_set, 0, sizeof(info->tag_set));
1110 info->tag_set.ops = &blkfront_mq_ops;
1111 info->tag_set.nr_hw_queues = info->nr_rings;
1112 if (HAS_EXTRA_REQ && info->max_indirect_segments == 0) {
1113 /*
1114 * When indirect descriptior is not supported, the I/O request
1115 * will be split between multiple request in the ring.
1116 * To avoid problems when sending the request, divide by
1117 * 2 the depth of the queue.
1118 */
1119 info->tag_set.queue_depth = BLK_RING_SIZE(info) / 2;
1120 } else
1121 info->tag_set.queue_depth = BLK_RING_SIZE(info);
1122 info->tag_set.numa_node = NUMA_NO_NODE;
1123 info->tag_set.flags = BLK_MQ_F_SHOULD_MERGE;
1124 info->tag_set.cmd_size = sizeof(struct blkif_req);
1125 info->tag_set.driver_data = info;
1126
1127 err = blk_mq_alloc_tag_set(&info->tag_set);
1128 if (err)
1129 goto out_release_minors;
1130
1131 gd = blk_mq_alloc_disk(&info->tag_set, info);
1132 if (IS_ERR(gd)) {
1133 err = PTR_ERR(gd);
1134 goto out_free_tag_set;
1135 }
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001136
Jan Beuliche77c78c2012-04-05 16:37:22 +01001137 strcpy(gd->disk_name, DEV_NAME);
1138 ptr = encode_disk_name(gd->disk_name + sizeof(DEV_NAME) - 1, offset);
1139 BUG_ON(ptr >= gd->disk_name + DISK_NAME_LEN);
1140 if (nr_minors > 1)
1141 *ptr = 0;
1142 else
1143 snprintf(ptr, gd->disk_name + DISK_NAME_LEN - ptr,
1144 "%d", minor & (nr_parts - 1));
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001145
1146 gd->major = XENVBD_MAJOR;
1147 gd->first_minor = minor;
Christoph Hellwig3b62c142021-06-02 09:53:40 +03001148 gd->minors = nr_minors;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001149 gd->fops = &xlvbd_block_fops;
1150 gd->private_data = info;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001151 set_capacity(gd, capacity);
1152
Christoph Hellwig3b62c142021-06-02 09:53:40 +03001153 info->rq = gd->queue;
1154 info->gd = gd;
1155 info->sector_size = sector_size;
1156 info->physical_sector_size = physical_sector_size;
1157 blkif_set_queue_limits(info);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001158
Tejun Heo4913efe2010-09-03 11:56:16 +02001159 xlvbd_flush(info);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001160
Christoph Hellwig1a827ce12021-11-22 14:06:14 +01001161 if (info->vdisk_info & VDISK_READONLY)
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001162 set_disk_ro(gd, 1);
Christoph Hellwig1a827ce12021-11-22 14:06:14 +01001163 if (info->vdisk_info & VDISK_REMOVABLE)
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001164 gd->flags |= GENHD_FL_REMOVABLE;
1165
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001166 return 0;
1167
Christoph Hellwig3b62c142021-06-02 09:53:40 +03001168out_free_tag_set:
1169 blk_mq_free_tag_set(&info->tag_set);
1170out_release_minors:
Jan Beulich0e345822010-08-07 18:28:55 +02001171 xlbd_release_minors(minor, nr_minors);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001172 return err;
1173}
1174
Bob Liu11659562015-11-14 11:12:13 +08001175/* Already hold rinfo->ring_lock. */
1176static inline void kick_pending_request_queues_locked(struct blkfront_ring_info *rinfo)
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001177{
Bob Liu81f35162015-11-14 11:12:11 +08001178 if (!RING_FULL(&rinfo->ring))
1179 blk_mq_start_stopped_hw_queues(rinfo->dev_info->rq, true);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001180}
1181
Bob Liu11659562015-11-14 11:12:13 +08001182static void kick_pending_request_queues(struct blkfront_ring_info *rinfo)
1183{
1184 unsigned long flags;
1185
1186 spin_lock_irqsave(&rinfo->ring_lock, flags);
1187 kick_pending_request_queues_locked(rinfo);
1188 spin_unlock_irqrestore(&rinfo->ring_lock, flags);
1189}
1190
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001191static void blkif_restart_queue(struct work_struct *work)
1192{
Bob Liu81f35162015-11-14 11:12:11 +08001193 struct blkfront_ring_info *rinfo = container_of(work, struct blkfront_ring_info, work);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001194
Bob Liu81f35162015-11-14 11:12:11 +08001195 if (rinfo->dev_info->connected == BLKIF_STATE_CONNECTED)
1196 kick_pending_request_queues(rinfo);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001197}
1198
Bob Liu3df0e502015-11-14 11:12:12 +08001199static void blkif_free_ring(struct blkfront_ring_info *rinfo)
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001200{
Bob Liu73716df2015-11-16 16:51:39 -05001201 struct grant *persistent_gnt, *n;
Bob Liu3df0e502015-11-14 11:12:12 +08001202 struct blkfront_info *info = rinfo->dev_info;
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001203 int i, j, segs;
Roger Pau Monne0a8704a2012-10-24 18:58:45 +02001204
Roger Pau Monnebfe11d62013-10-29 18:31:14 +01001205 /*
1206 * Remove indirect pages, this only happens when using indirect
1207 * descriptors but not persistent grants
1208 */
Bob Liu81f35162015-11-14 11:12:11 +08001209 if (!list_empty(&rinfo->indirect_pages)) {
Roger Pau Monnebfe11d62013-10-29 18:31:14 +01001210 struct page *indirect_page, *n;
1211
1212 BUG_ON(info->feature_persistent);
Bob Liu81f35162015-11-14 11:12:11 +08001213 list_for_each_entry_safe(indirect_page, n, &rinfo->indirect_pages, lru) {
Roger Pau Monnebfe11d62013-10-29 18:31:14 +01001214 list_del(&indirect_page->lru);
1215 __free_page(indirect_page);
1216 }
1217 }
1218
Bob Liu73716df2015-11-16 16:51:39 -05001219 /* Remove all persistent grants. */
1220 if (!list_empty(&rinfo->grants)) {
1221 list_for_each_entry_safe(persistent_gnt, n,
1222 &rinfo->grants, node) {
1223 list_del(&persistent_gnt->node);
1224 if (persistent_gnt->gref != GRANT_INVALID_REF) {
1225 gnttab_end_foreign_access(persistent_gnt->gref,
1226 0, 0UL);
1227 rinfo->persistent_gnts_c--;
1228 }
1229 if (info->feature_persistent)
1230 __free_page(persistent_gnt->page);
1231 kfree(persistent_gnt);
1232 }
1233 }
1234 BUG_ON(rinfo->persistent_gnts_c != 0);
1235
Bob Liu86839c52015-06-03 13:40:03 +08001236 for (i = 0; i < BLK_RING_SIZE(info); i++) {
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001237 /*
1238 * Clear persistent grants present in requests already
1239 * on the shared ring
1240 */
Bob Liu81f35162015-11-14 11:12:11 +08001241 if (!rinfo->shadow[i].request)
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001242 goto free_shadow;
1243
Bob Liu81f35162015-11-14 11:12:11 +08001244 segs = rinfo->shadow[i].req.operation == BLKIF_OP_INDIRECT ?
1245 rinfo->shadow[i].req.u.indirect.nr_segments :
1246 rinfo->shadow[i].req.u.rw.nr_segments;
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001247 for (j = 0; j < segs; j++) {
Bob Liu81f35162015-11-14 11:12:11 +08001248 persistent_gnt = rinfo->shadow[i].grants_used[j];
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001249 gnttab_end_foreign_access(persistent_gnt->gref, 0, 0UL);
Roger Pau Monnebfe11d62013-10-29 18:31:14 +01001250 if (info->feature_persistent)
Julien Gralla7a6df22015-06-30 11:58:51 +01001251 __free_page(persistent_gnt->page);
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001252 kfree(persistent_gnt);
1253 }
1254
Bob Liu81f35162015-11-14 11:12:11 +08001255 if (rinfo->shadow[i].req.operation != BLKIF_OP_INDIRECT)
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001256 /*
1257 * If this is not an indirect operation don't try to
1258 * free indirect segments
1259 */
1260 goto free_shadow;
1261
1262 for (j = 0; j < INDIRECT_GREFS(segs); j++) {
Bob Liu81f35162015-11-14 11:12:11 +08001263 persistent_gnt = rinfo->shadow[i].indirect_grants[j];
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001264 gnttab_end_foreign_access(persistent_gnt->gref, 0, 0UL);
Julien Gralla7a6df22015-06-30 11:58:51 +01001265 __free_page(persistent_gnt->page);
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001266 kfree(persistent_gnt);
1267 }
1268
1269free_shadow:
Roger Pau Monne1d5c76e2019-05-03 17:04:01 +02001270 kvfree(rinfo->shadow[i].grants_used);
Bob Liu81f35162015-11-14 11:12:11 +08001271 rinfo->shadow[i].grants_used = NULL;
Roger Pau Monne1d5c76e2019-05-03 17:04:01 +02001272 kvfree(rinfo->shadow[i].indirect_grants);
Bob Liu81f35162015-11-14 11:12:11 +08001273 rinfo->shadow[i].indirect_grants = NULL;
Roger Pau Monne1d5c76e2019-05-03 17:04:01 +02001274 kvfree(rinfo->shadow[i].sg);
Bob Liu81f35162015-11-14 11:12:11 +08001275 rinfo->shadow[i].sg = NULL;
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001276 }
1277
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001278 /* No more gnttab callback work. */
Bob Liu81f35162015-11-14 11:12:11 +08001279 gnttab_cancel_free_callback(&rinfo->callback);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001280
1281 /* Flush gnttab callback work. Must be done with no locks held. */
Bob Liu81f35162015-11-14 11:12:11 +08001282 flush_work(&rinfo->work);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001283
1284 /* Free resources associated with old device channel. */
Bob Liu86839c52015-06-03 13:40:03 +08001285 for (i = 0; i < info->nr_ring_pages; i++) {
Bob Liu81f35162015-11-14 11:12:11 +08001286 if (rinfo->ring_ref[i] != GRANT_INVALID_REF) {
1287 gnttab_end_foreign_access(rinfo->ring_ref[i], 0, 0);
1288 rinfo->ring_ref[i] = GRANT_INVALID_REF;
Bob Liu86839c52015-06-03 13:40:03 +08001289 }
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001290 }
Bob Liu6c647b02016-07-01 15:45:57 -04001291 free_pages((unsigned long)rinfo->ring.sring, get_order(info->nr_ring_pages * XEN_PAGE_SIZE));
Bob Liu81f35162015-11-14 11:12:11 +08001292 rinfo->ring.sring = NULL;
Bob Liu86839c52015-06-03 13:40:03 +08001293
Bob Liu81f35162015-11-14 11:12:11 +08001294 if (rinfo->irq)
1295 unbind_from_irqhandler(rinfo->irq, rinfo);
1296 rinfo->evtchn = rinfo->irq = 0;
Bob Liu3df0e502015-11-14 11:12:12 +08001297}
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001298
Bob Liu3df0e502015-11-14 11:12:12 +08001299static void blkif_free(struct blkfront_info *info, int suspend)
1300{
Bob Liu3df0e502015-11-14 11:12:12 +08001301 unsigned int i;
Juergen Gross4ab50af2020-03-05 16:51:29 +01001302 struct blkfront_ring_info *rinfo;
Bob Liu3df0e502015-11-14 11:12:12 +08001303
1304 /* Prevent new requests being issued until we fix things up. */
Bob Liu3df0e502015-11-14 11:12:12 +08001305 info->connected = suspend ?
1306 BLKIF_STATE_SUSPENDED : BLKIF_STATE_DISCONNECTED;
1307 /* No more blkif_request(). */
1308 if (info->rq)
1309 blk_mq_stop_hw_queues(info->rq);
1310
Juergen Gross4ab50af2020-03-05 16:51:29 +01001311 for_each_rinfo(info, rinfo, i)
1312 blkif_free_ring(rinfo);
Bob Liu3df0e502015-11-14 11:12:12 +08001313
Roger Pau Monne1d5c76e2019-05-03 17:04:01 +02001314 kvfree(info->rinfo);
Bob Liu3df0e502015-11-14 11:12:12 +08001315 info->rinfo = NULL;
1316 info->nr_rings = 0;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001317}
1318
Julien Grallc004a6f2015-07-22 16:44:54 +01001319struct copy_from_grant {
1320 const struct blk_shadow *s;
1321 unsigned int grant_idx;
1322 unsigned int bvec_offset;
1323 char *bvec_data;
1324};
1325
1326static void blkif_copy_from_grant(unsigned long gfn, unsigned int offset,
1327 unsigned int len, void *data)
1328{
1329 struct copy_from_grant *info = data;
1330 char *shared_data;
1331 /* Convenient aliases */
1332 const struct blk_shadow *s = info->s;
1333
1334 shared_data = kmap_atomic(s->grants_used[info->grant_idx]->page);
1335
1336 memcpy(info->bvec_data + info->bvec_offset,
1337 shared_data + offset, len);
1338
1339 info->bvec_offset += len;
1340 info->grant_idx++;
1341
1342 kunmap_atomic(shared_data);
1343}
1344
Julien Grall6cc568332015-08-13 13:13:35 +01001345static enum blk_req_status blkif_rsp_to_req_status(int rsp)
1346{
1347 switch (rsp)
1348 {
1349 case BLKIF_RSP_OKAY:
1350 return REQ_DONE;
1351 case BLKIF_RSP_EOPNOTSUPP:
1352 return REQ_EOPNOTSUPP;
1353 case BLKIF_RSP_ERROR:
Julien Grall6cc568332015-08-13 13:13:35 +01001354 default:
1355 return REQ_ERROR;
1356 }
1357}
1358
1359/*
1360 * Get the final status of the block request based on two ring response
1361 */
1362static int blkif_get_final_status(enum blk_req_status s1,
1363 enum blk_req_status s2)
1364{
Juergen Grossb94e4b12021-07-30 12:38:54 +02001365 BUG_ON(s1 < REQ_DONE);
1366 BUG_ON(s2 < REQ_DONE);
Julien Grall6cc568332015-08-13 13:13:35 +01001367
1368 if (s1 == REQ_ERROR || s2 == REQ_ERROR)
1369 return BLKIF_RSP_ERROR;
1370 else if (s1 == REQ_EOPNOTSUPP || s2 == REQ_EOPNOTSUPP)
1371 return BLKIF_RSP_EOPNOTSUPP;
1372 return BLKIF_RSP_OKAY;
1373}
1374
1375static bool blkif_completion(unsigned long *id,
1376 struct blkfront_ring_info *rinfo,
Roger Pau Monne0a8704a2012-10-24 18:58:45 +02001377 struct blkif_response *bret)
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001378{
Roger Pau Monned62f6912012-12-07 19:00:31 +01001379 int i = 0;
Roger Pau Monneb7649152013-05-02 10:58:50 +02001380 struct scatterlist *sg;
Julien Grallc004a6f2015-07-22 16:44:54 +01001381 int num_sg, num_grant;
Bob Liu81f35162015-11-14 11:12:11 +08001382 struct blkfront_info *info = rinfo->dev_info;
Julien Grall6cc568332015-08-13 13:13:35 +01001383 struct blk_shadow *s = &rinfo->shadow[*id];
Julien Grallc004a6f2015-07-22 16:44:54 +01001384 struct copy_from_grant data = {
Julien Grallc004a6f2015-07-22 16:44:54 +01001385 .grant_idx = 0,
1386 };
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001387
Julien Grallc004a6f2015-07-22 16:44:54 +01001388 num_grant = s->req.operation == BLKIF_OP_INDIRECT ?
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001389 s->req.u.indirect.nr_segments : s->req.u.rw.nr_segments;
Julien Grall6cc568332015-08-13 13:13:35 +01001390
1391 /* The I/O request may be split in two. */
1392 if (unlikely(s->associated_id != NO_ASSOCIATED_ID)) {
1393 struct blk_shadow *s2 = &rinfo->shadow[s->associated_id];
1394
1395 /* Keep the status of the current response in shadow. */
1396 s->status = blkif_rsp_to_req_status(bret->status);
1397
1398 /* Wait the second response if not yet here. */
Juergen Grossb94e4b12021-07-30 12:38:54 +02001399 if (s2->status < REQ_DONE)
Gustavo A. R. Silvaf87c30c2018-08-06 08:14:55 -06001400 return false;
Julien Grall6cc568332015-08-13 13:13:35 +01001401
1402 bret->status = blkif_get_final_status(s->status,
1403 s2->status);
1404
1405 /*
1406 * All the grants is stored in the first shadow in order
1407 * to make the completion code simpler.
1408 */
1409 num_grant += s2->req.u.rw.nr_segments;
1410
1411 /*
1412 * The two responses may not come in order. Only the
1413 * first request will store the scatter-gather list.
1414 */
1415 if (s2->num_sg != 0) {
1416 /* Update "id" with the ID of the first response. */
1417 *id = s->associated_id;
1418 s = s2;
1419 }
1420
1421 /*
1422 * We don't need anymore the second request, so recycling
1423 * it now.
1424 */
1425 if (add_id_to_freelist(rinfo, s->associated_id))
1426 WARN(1, "%s: can't recycle the second part (id = %ld) of the request\n",
1427 info->gd->disk_name, s->associated_id);
1428 }
1429
1430 data.s = s;
Julien Grallc004a6f2015-07-22 16:44:54 +01001431 num_sg = s->num_sg;
Roger Pau Monne0a8704a2012-10-24 18:58:45 +02001432
Roger Pau Monnebfe11d62013-10-29 18:31:14 +01001433 if (bret->operation == BLKIF_OP_READ && info->feature_persistent) {
Julien Grallc004a6f2015-07-22 16:44:54 +01001434 for_each_sg(s->sg, sg, num_sg, i) {
Roger Pau Monneb7649152013-05-02 10:58:50 +02001435 BUG_ON(sg->offset + sg->length > PAGE_SIZE);
Julien Grallc004a6f2015-07-22 16:44:54 +01001436
1437 data.bvec_offset = sg->offset;
1438 data.bvec_data = kmap_atomic(sg_page(sg));
1439
1440 gnttab_foreach_grant_in_range(sg_page(sg),
1441 sg->offset,
1442 sg->length,
1443 blkif_copy_from_grant,
1444 &data);
1445
1446 kunmap_atomic(data.bvec_data);
Roger Pau Monne0a8704a2012-10-24 18:58:45 +02001447 }
1448 }
1449 /* Add the persistent grant into the list of free grants */
Julien Grallc004a6f2015-07-22 16:44:54 +01001450 for (i = 0; i < num_grant; i++) {
Roger Pau Monnefbe363c2013-08-12 12:53:44 +02001451 if (gnttab_query_foreign_access(s->grants_used[i]->gref)) {
1452 /*
1453 * If the grant is still mapped by the backend (the
1454 * backend has chosen to make this grant persistent)
1455 * we add it at the head of the list, so it will be
1456 * reused first.
1457 */
Roger Pau Monnebfe11d62013-10-29 18:31:14 +01001458 if (!info->feature_persistent)
1459 pr_alert_ratelimited("backed has not unmapped grant: %u\n",
1460 s->grants_used[i]->gref);
Bob Liu73716df2015-11-16 16:51:39 -05001461 list_add(&s->grants_used[i]->node, &rinfo->grants);
1462 rinfo->persistent_gnts_c++;
Roger Pau Monnefbe363c2013-08-12 12:53:44 +02001463 } else {
1464 /*
1465 * If the grant is not mapped by the backend we end the
1466 * foreign access and add it to the tail of the list,
1467 * so it will not be picked again unless we run out of
1468 * persistent grants.
1469 */
1470 gnttab_end_foreign_access(s->grants_used[i]->gref, 0, 0UL);
1471 s->grants_used[i]->gref = GRANT_INVALID_REF;
Bob Liu73716df2015-11-16 16:51:39 -05001472 list_add_tail(&s->grants_used[i]->node, &rinfo->grants);
Roger Pau Monnefbe363c2013-08-12 12:53:44 +02001473 }
Roger Pau Monne0a8704a2012-10-24 18:58:45 +02001474 }
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001475 if (s->req.operation == BLKIF_OP_INDIRECT) {
Julien Grallc004a6f2015-07-22 16:44:54 +01001476 for (i = 0; i < INDIRECT_GREFS(num_grant); i++) {
Roger Pau Monnefbe363c2013-08-12 12:53:44 +02001477 if (gnttab_query_foreign_access(s->indirect_grants[i]->gref)) {
Roger Pau Monnebfe11d62013-10-29 18:31:14 +01001478 if (!info->feature_persistent)
1479 pr_alert_ratelimited("backed has not unmapped grant: %u\n",
1480 s->indirect_grants[i]->gref);
Bob Liu73716df2015-11-16 16:51:39 -05001481 list_add(&s->indirect_grants[i]->node, &rinfo->grants);
1482 rinfo->persistent_gnts_c++;
Roger Pau Monnefbe363c2013-08-12 12:53:44 +02001483 } else {
Roger Pau Monnebfe11d62013-10-29 18:31:14 +01001484 struct page *indirect_page;
1485
Roger Pau Monnefbe363c2013-08-12 12:53:44 +02001486 gnttab_end_foreign_access(s->indirect_grants[i]->gref, 0, 0UL);
Roger Pau Monnebfe11d62013-10-29 18:31:14 +01001487 /*
1488 * Add the used indirect page back to the list of
1489 * available pages for indirect grefs.
1490 */
Bob Liu7b076752015-07-22 14:40:09 +08001491 if (!info->feature_persistent) {
Julien Gralla7a6df22015-06-30 11:58:51 +01001492 indirect_page = s->indirect_grants[i]->page;
Bob Liu81f35162015-11-14 11:12:11 +08001493 list_add(&indirect_page->lru, &rinfo->indirect_pages);
Bob Liu7b076752015-07-22 14:40:09 +08001494 }
Roger Pau Monnefbe363c2013-08-12 12:53:44 +02001495 s->indirect_grants[i]->gref = GRANT_INVALID_REF;
Bob Liu73716df2015-11-16 16:51:39 -05001496 list_add_tail(&s->indirect_grants[i]->node, &rinfo->grants);
Roger Pau Monnefbe363c2013-08-12 12:53:44 +02001497 }
Roger Pau Monne402b27f2013-04-18 16:06:54 +02001498 }
1499 }
Julien Grall6cc568332015-08-13 13:13:35 +01001500
Gustavo A. R. Silvaf87c30c2018-08-06 08:14:55 -06001501 return true;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001502}
1503
1504static irqreturn_t blkif_interrupt(int irq, void *dev_id)
1505{
1506 struct request *req;
Juergen Gross71b66242021-07-30 12:38:52 +02001507 struct blkif_response bret;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001508 RING_IDX i, rp;
1509 unsigned long flags;
Bob Liu81f35162015-11-14 11:12:11 +08001510 struct blkfront_ring_info *rinfo = (struct blkfront_ring_info *)dev_id;
1511 struct blkfront_info *info = rinfo->dev_info;
Juergen Gross0fd08a32021-12-16 08:24:08 +01001512 unsigned int eoiflag = XEN_EOI_FLAG_SPURIOUS;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001513
Juergen Gross0fd08a32021-12-16 08:24:08 +01001514 if (unlikely(info->connected != BLKIF_STATE_CONNECTED)) {
1515 xen_irq_lateeoi(irq, XEN_EOI_FLAG_SPURIOUS);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001516 return IRQ_HANDLED;
Juergen Gross0fd08a32021-12-16 08:24:08 +01001517 }
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001518
Bob Liu11659562015-11-14 11:12:13 +08001519 spin_lock_irqsave(&rinfo->ring_lock, flags);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001520 again:
Juergen Grossb94e4b12021-07-30 12:38:54 +02001521 rp = READ_ONCE(rinfo->ring.sring->rsp_prod);
1522 virt_rmb(); /* Ensure we see queued responses up to 'rp'. */
1523 if (RING_RESPONSE_PROD_OVERFLOW(&rinfo->ring, rp)) {
1524 pr_alert("%s: illegal number of responses %u\n",
1525 info->gd->disk_name, rp - rinfo->ring.rsp_cons);
1526 goto err;
1527 }
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001528
Bob Liu81f35162015-11-14 11:12:11 +08001529 for (i = rinfo->ring.rsp_cons; i != rp; i++) {
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001530 unsigned long id;
Juergen Grossb94e4b12021-07-30 12:38:54 +02001531 unsigned int op;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001532
Juergen Gross0fd08a32021-12-16 08:24:08 +01001533 eoiflag = 0;
1534
Juergen Gross71b66242021-07-30 12:38:52 +02001535 RING_COPY_RESPONSE(&rinfo->ring, i, &bret);
1536 id = bret.id;
1537
Konrad Rzeszutek Wilk6878c322012-05-25 17:34:51 -04001538 /*
1539 * The backend has messed up and given us an id that we would
1540 * never have given to it (we stamp it up to BLK_RING_SIZE -
1541 * look in get_id_from_freelist.
1542 */
Bob Liu86839c52015-06-03 13:40:03 +08001543 if (id >= BLK_RING_SIZE(info)) {
Juergen Grossb94e4b12021-07-30 12:38:54 +02001544 pr_alert("%s: response has incorrect id (%ld)\n",
1545 info->gd->disk_name, id);
1546 goto err;
Konrad Rzeszutek Wilk6878c322012-05-25 17:34:51 -04001547 }
Juergen Grossb94e4b12021-07-30 12:38:54 +02001548 if (rinfo->shadow[id].status != REQ_WAITING) {
1549 pr_alert("%s: response references no pending request\n",
1550 info->gd->disk_name);
1551 goto err;
1552 }
1553
1554 rinfo->shadow[id].status = REQ_PROCESSING;
Bob Liu81f35162015-11-14 11:12:11 +08001555 req = rinfo->shadow[id].request;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001556
Juergen Grossb94e4b12021-07-30 12:38:54 +02001557 op = rinfo->shadow[id].req.operation;
1558 if (op == BLKIF_OP_INDIRECT)
1559 op = rinfo->shadow[id].req.u.indirect.indirect_op;
1560 if (bret.operation != op) {
1561 pr_alert("%s: response has wrong operation (%u instead of %u)\n",
1562 info->gd->disk_name, bret.operation, op);
1563 goto err;
1564 }
1565
Juergen Gross71b66242021-07-30 12:38:52 +02001566 if (bret.operation != BLKIF_OP_DISCARD) {
Julien Grall6cc568332015-08-13 13:13:35 +01001567 /*
1568 * We may need to wait for an extra response if the
1569 * I/O request is split in 2
1570 */
Juergen Gross71b66242021-07-30 12:38:52 +02001571 if (!blkif_completion(&id, rinfo, &bret))
Julien Grall6cc568332015-08-13 13:13:35 +01001572 continue;
1573 }
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001574
Bob Liu81f35162015-11-14 11:12:11 +08001575 if (add_id_to_freelist(rinfo, id)) {
Konrad Rzeszutek Wilk6878c322012-05-25 17:34:51 -04001576 WARN(1, "%s: response to %s (id %ld) couldn't be recycled!\n",
Juergen Gross71b66242021-07-30 12:38:52 +02001577 info->gd->disk_name, op_name(bret.operation), id);
Konrad Rzeszutek Wilk6878c322012-05-25 17:34:51 -04001578 continue;
1579 }
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001580
Juergen Gross71b66242021-07-30 12:38:52 +02001581 if (bret.status == BLKIF_RSP_OKAY)
Christoph Hellwig2a842ac2017-06-03 09:38:04 +02001582 blkif_req(req)->error = BLK_STS_OK;
1583 else
1584 blkif_req(req)->error = BLK_STS_IOERR;
1585
Juergen Gross71b66242021-07-30 12:38:52 +02001586 switch (bret.operation) {
Li Dongyanged30bf32011-09-01 18:39:09 +08001587 case BLKIF_OP_DISCARD:
Juergen Gross71b66242021-07-30 12:38:52 +02001588 if (unlikely(bret.status == BLKIF_RSP_EOPNOTSUPP)) {
Li Dongyanged30bf32011-09-01 18:39:09 +08001589 struct request_queue *rq = info->rq;
Juergen Grossb94e4b12021-07-30 12:38:54 +02001590
1591 pr_warn_ratelimited("blkfront: %s: %s op failed\n",
Juergen Gross71b66242021-07-30 12:38:52 +02001592 info->gd->disk_name, op_name(bret.operation));
Christoph Hellwig2a842ac2017-06-03 09:38:04 +02001593 blkif_req(req)->error = BLK_STS_NOTSUPP;
Li Dongyanged30bf32011-09-01 18:39:09 +08001594 info->feature_discard = 0;
Konrad Rzeszutek Wilk5ea42982011-10-12 16:23:30 -04001595 info->feature_secdiscard = 0;
Bart Van Assche8b904b52018-03-07 17:10:10 -08001596 blk_queue_flag_clear(QUEUE_FLAG_DISCARD, rq);
1597 blk_queue_flag_clear(QUEUE_FLAG_SECERASE, rq);
Li Dongyanged30bf32011-09-01 18:39:09 +08001598 }
Li Dongyanged30bf32011-09-01 18:39:09 +08001599 break;
Konrad Rzeszutek Wilkedf6ef52011-05-03 12:01:11 -04001600 case BLKIF_OP_FLUSH_DISKCACHE:
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001601 case BLKIF_OP_WRITE_BARRIER:
Juergen Gross71b66242021-07-30 12:38:52 +02001602 if (unlikely(bret.status == BLKIF_RSP_EOPNOTSUPP)) {
Juergen Grossb94e4b12021-07-30 12:38:54 +02001603 pr_warn_ratelimited("blkfront: %s: %s op failed\n",
Juergen Gross71b66242021-07-30 12:38:52 +02001604 info->gd->disk_name, op_name(bret.operation));
Bart Van Assche31c4ccc2017-07-21 19:11:10 +02001605 blkif_req(req)->error = BLK_STS_NOTSUPP;
Jeremy Fitzhardingedcb8bae2010-11-02 11:55:58 -04001606 }
Juergen Gross71b66242021-07-30 12:38:52 +02001607 if (unlikely(bret.status == BLKIF_RSP_ERROR &&
Bob Liu81f35162015-11-14 11:12:11 +08001608 rinfo->shadow[id].req.u.rw.nr_segments == 0)) {
Juergen Grossb94e4b12021-07-30 12:38:54 +02001609 pr_warn_ratelimited("blkfront: %s: empty %s op failed\n",
Juergen Gross71b66242021-07-30 12:38:52 +02001610 info->gd->disk_name, op_name(bret.operation));
Christoph Hellwig2a842ac2017-06-03 09:38:04 +02001611 blkif_req(req)->error = BLK_STS_NOTSUPP;
Jeremy Fitzhardingedcb8bae2010-11-02 11:55:58 -04001612 }
Christoph Hellwig26095872017-04-20 16:03:08 +02001613 if (unlikely(blkif_req(req)->error)) {
Christoph Hellwig2a842ac2017-06-03 09:38:04 +02001614 if (blkif_req(req)->error == BLK_STS_NOTSUPP)
1615 blkif_req(req)->error = BLK_STS_OK;
Mike Christiea4180902016-06-05 14:32:24 -05001616 info->feature_fua = 0;
Tejun Heo4913efe2010-09-03 11:56:16 +02001617 info->feature_flush = 0;
1618 xlvbd_flush(info);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001619 }
Gustavo A. R. Silvadf561f662020-08-23 17:36:59 -05001620 fallthrough;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001621 case BLKIF_OP_READ:
1622 case BLKIF_OP_WRITE:
Juergen Gross71b66242021-07-30 12:38:52 +02001623 if (unlikely(bret.status != BLKIF_RSP_OKAY))
Juergen Grossb94e4b12021-07-30 12:38:54 +02001624 dev_dbg_ratelimited(&info->xbdev->dev,
1625 "Bad return from blkdev data request: %#x\n",
1626 bret.status);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001627
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001628 break;
1629 default:
1630 BUG();
1631 }
Christoph Hellwig26095872017-04-20 16:03:08 +02001632
Christoph Hellwig15f73f52020-06-11 08:44:47 +02001633 if (likely(!blk_should_fake_timeout(req->q)))
1634 blk_mq_complete_request(req);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001635 }
1636
Bob Liu81f35162015-11-14 11:12:11 +08001637 rinfo->ring.rsp_cons = i;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001638
Bob Liu81f35162015-11-14 11:12:11 +08001639 if (i != rinfo->ring.req_prod_pvt) {
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001640 int more_to_do;
Bob Liu81f35162015-11-14 11:12:11 +08001641 RING_FINAL_CHECK_FOR_RESPONSES(&rinfo->ring, more_to_do);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001642 if (more_to_do)
1643 goto again;
1644 } else
Bob Liu81f35162015-11-14 11:12:11 +08001645 rinfo->ring.sring->rsp_event = i + 1;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001646
Bob Liu11659562015-11-14 11:12:13 +08001647 kick_pending_request_queues_locked(rinfo);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001648
Bob Liu11659562015-11-14 11:12:13 +08001649 spin_unlock_irqrestore(&rinfo->ring_lock, flags);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001650
Juergen Gross0fd08a32021-12-16 08:24:08 +01001651 xen_irq_lateeoi(irq, eoiflag);
1652
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001653 return IRQ_HANDLED;
Juergen Grossb94e4b12021-07-30 12:38:54 +02001654
1655 err:
1656 info->connected = BLKIF_STATE_ERROR;
1657
1658 spin_unlock_irqrestore(&rinfo->ring_lock, flags);
1659
Juergen Gross0fd08a32021-12-16 08:24:08 +01001660 /* No EOI in order to avoid further interrupts. */
1661
Juergen Grossb94e4b12021-07-30 12:38:54 +02001662 pr_alert("%s disabled for further use\n", info->gd->disk_name);
1663 return IRQ_HANDLED;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001664}
1665
1666
1667static int setup_blkring(struct xenbus_device *dev,
Bob Liu81f35162015-11-14 11:12:11 +08001668 struct blkfront_ring_info *rinfo)
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001669{
1670 struct blkif_sring *sring;
Bob Liu86839c52015-06-03 13:40:03 +08001671 int err, i;
Bob Liu81f35162015-11-14 11:12:11 +08001672 struct blkfront_info *info = rinfo->dev_info;
Julien Grallc004a6f2015-07-22 16:44:54 +01001673 unsigned long ring_size = info->nr_ring_pages * XEN_PAGE_SIZE;
Julien Grall9cce2912015-10-13 17:50:11 +01001674 grant_ref_t gref[XENBUS_MAX_RING_GRANTS];
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001675
Bob Liu86839c52015-06-03 13:40:03 +08001676 for (i = 0; i < info->nr_ring_pages; i++)
Bob Liu81f35162015-11-14 11:12:11 +08001677 rinfo->ring_ref[i] = GRANT_INVALID_REF;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001678
Bob Liu86839c52015-06-03 13:40:03 +08001679 sring = (struct blkif_sring *)__get_free_pages(GFP_NOIO | __GFP_HIGH,
1680 get_order(ring_size));
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001681 if (!sring) {
1682 xenbus_dev_fatal(dev, -ENOMEM, "allocating shared ring");
1683 return -ENOMEM;
1684 }
1685 SHARED_RING_INIT(sring);
Bob Liu81f35162015-11-14 11:12:11 +08001686 FRONT_RING_INIT(&rinfo->ring, sring, ring_size);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001687
Bob Liu81f35162015-11-14 11:12:11 +08001688 err = xenbus_grant_ring(dev, rinfo->ring.sring, info->nr_ring_pages, gref);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001689 if (err < 0) {
Bob Liu86839c52015-06-03 13:40:03 +08001690 free_pages((unsigned long)sring, get_order(ring_size));
Bob Liu81f35162015-11-14 11:12:11 +08001691 rinfo->ring.sring = NULL;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001692 goto fail;
1693 }
Bob Liu86839c52015-06-03 13:40:03 +08001694 for (i = 0; i < info->nr_ring_pages; i++)
Bob Liu81f35162015-11-14 11:12:11 +08001695 rinfo->ring_ref[i] = gref[i];
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001696
Bob Liu81f35162015-11-14 11:12:11 +08001697 err = xenbus_alloc_evtchn(dev, &rinfo->evtchn);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001698 if (err)
1699 goto fail;
1700
Juergen Gross0fd08a32021-12-16 08:24:08 +01001701 err = bind_evtchn_to_irqhandler_lateeoi(rinfo->evtchn, blkif_interrupt,
1702 0, "blkif", rinfo);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001703 if (err <= 0) {
1704 xenbus_dev_fatal(dev, err,
1705 "bind_evtchn_to_irqhandler failed");
1706 goto fail;
1707 }
Bob Liu81f35162015-11-14 11:12:11 +08001708 rinfo->irq = err;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001709
1710 return 0;
1711fail:
1712 blkif_free(info, 0);
1713 return err;
1714}
1715
Bob Liu28d949b2015-11-14 11:12:14 +08001716/*
1717 * Write out per-ring/queue nodes including ring-ref and event-channel, and each
1718 * ring buffer may have multi pages depending on ->nr_ring_pages.
1719 */
1720static int write_per_ring_nodes(struct xenbus_transaction xbt,
1721 struct blkfront_ring_info *rinfo, const char *dir)
1722{
1723 int err;
1724 unsigned int i;
1725 const char *message = NULL;
1726 struct blkfront_info *info = rinfo->dev_info;
1727
1728 if (info->nr_ring_pages == 1) {
1729 err = xenbus_printf(xbt, dir, "ring-ref", "%u", rinfo->ring_ref[0]);
1730 if (err) {
1731 message = "writing ring-ref";
1732 goto abort_transaction;
1733 }
1734 } else {
1735 for (i = 0; i < info->nr_ring_pages; i++) {
1736 char ring_ref_name[RINGREF_NAME_LEN];
1737
1738 snprintf(ring_ref_name, RINGREF_NAME_LEN, "ring-ref%u", i);
1739 err = xenbus_printf(xbt, dir, ring_ref_name,
1740 "%u", rinfo->ring_ref[i]);
1741 if (err) {
1742 message = "writing ring-ref";
1743 goto abort_transaction;
1744 }
1745 }
1746 }
1747
1748 err = xenbus_printf(xbt, dir, "event-channel", "%u", rinfo->evtchn);
1749 if (err) {
1750 message = "writing event-channel";
1751 goto abort_transaction;
1752 }
1753
1754 return 0;
1755
1756abort_transaction:
1757 xenbus_transaction_end(xbt, 1);
1758 if (message)
1759 xenbus_dev_fatal(info->xbdev, err, "%s", message);
1760
1761 return err;
1762}
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001763
1764/* Common code used when first setting up, and when resuming. */
Ian Campbell203fd612009-12-04 15:33:54 +00001765static int talk_to_blkback(struct xenbus_device *dev,
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001766 struct blkfront_info *info)
1767{
1768 const char *message = NULL;
1769 struct xenbus_transaction xbt;
Bob Liu28d949b2015-11-14 11:12:14 +08001770 int err;
Juergen Grossf27dc1a2016-10-31 14:58:40 +01001771 unsigned int i, max_page_order;
1772 unsigned int ring_page_order;
Juergen Gross4ab50af2020-03-05 16:51:29 +01001773 struct blkfront_ring_info *rinfo;
Bob Liu86839c52015-06-03 13:40:03 +08001774
Bhavesh Davda7ed8ce12017-12-22 14:17:13 -08001775 if (!info)
1776 return -ENODEV;
1777
Juergen Grossf27dc1a2016-10-31 14:58:40 +01001778 max_page_order = xenbus_read_unsigned(info->xbdev->otherend,
1779 "max-ring-page-order", 0);
1780 ring_page_order = min(xen_blkif_max_ring_order, max_page_order);
1781 info->nr_ring_pages = 1 << ring_page_order;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001782
Bhavesh Davda7ed8ce12017-12-22 14:17:13 -08001783 err = negotiate_mq(info);
1784 if (err)
1785 goto destroy_blkring;
1786
Juergen Gross4ab50af2020-03-05 16:51:29 +01001787 for_each_rinfo(info, rinfo, i) {
Bob Liu3df0e502015-11-14 11:12:12 +08001788 /* Create shared ring, alloc event channel. */
1789 err = setup_blkring(dev, rinfo);
1790 if (err)
1791 goto destroy_blkring;
1792 }
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001793
1794again:
1795 err = xenbus_transaction_start(&xbt);
1796 if (err) {
1797 xenbus_dev_fatal(dev, err, "starting transaction");
1798 goto destroy_blkring;
1799 }
1800
Bob Liu28d949b2015-11-14 11:12:14 +08001801 if (info->nr_ring_pages > 1) {
1802 err = xenbus_printf(xbt, dev->nodename, "ring-page-order", "%u",
1803 ring_page_order);
Bob Liu3df0e502015-11-14 11:12:12 +08001804 if (err) {
Bob Liu28d949b2015-11-14 11:12:14 +08001805 message = "writing ring-page-order";
Bob Liu3df0e502015-11-14 11:12:12 +08001806 goto abort_transaction;
1807 }
Bob Liu28d949b2015-11-14 11:12:14 +08001808 }
1809
1810 /* We already got the number of queues/rings in _probe */
1811 if (info->nr_rings == 1) {
Juergen Gross4ab50af2020-03-05 16:51:29 +01001812 err = write_per_ring_nodes(xbt, info->rinfo, dev->nodename);
Bob Liu28d949b2015-11-14 11:12:14 +08001813 if (err)
1814 goto destroy_blkring;
Bob Liu3df0e502015-11-14 11:12:12 +08001815 } else {
Bob Liu28d949b2015-11-14 11:12:14 +08001816 char *path;
1817 size_t pathsize;
1818
1819 err = xenbus_printf(xbt, dev->nodename, "multi-queue-num-queues", "%u",
1820 info->nr_rings);
1821 if (err) {
1822 message = "writing multi-queue-num-queues";
1823 goto abort_transaction;
1824 }
1825
1826 pathsize = strlen(dev->nodename) + QUEUE_NAME_LEN;
1827 path = kmalloc(pathsize, GFP_KERNEL);
1828 if (!path) {
1829 err = -ENOMEM;
1830 message = "ENOMEM while writing ring references";
1831 goto abort_transaction;
1832 }
1833
Juergen Gross4ab50af2020-03-05 16:51:29 +01001834 for_each_rinfo(info, rinfo, i) {
Bob Liu28d949b2015-11-14 11:12:14 +08001835 memset(path, 0, pathsize);
1836 snprintf(path, pathsize, "%s/queue-%u", dev->nodename, i);
Juergen Gross4ab50af2020-03-05 16:51:29 +01001837 err = write_per_ring_nodes(xbt, rinfo, path);
Bob Liu28d949b2015-11-14 11:12:14 +08001838 if (err) {
1839 kfree(path);
1840 goto destroy_blkring;
1841 }
1842 }
1843 kfree(path);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001844 }
Markus Armbruster3e334232008-04-02 10:54:02 -07001845 err = xenbus_printf(xbt, dev->nodename, "protocol", "%s",
1846 XEN_IO_PROTO_ABI_NATIVE);
1847 if (err) {
1848 message = "writing protocol";
1849 goto abort_transaction;
1850 }
SeongJae Park74a85242020-09-23 08:18:40 +02001851 err = xenbus_printf(xbt, dev->nodename, "feature-persistent", "%u",
1852 info->feature_persistent);
Roger Pau Monne0a8704a2012-10-24 18:58:45 +02001853 if (err)
1854 dev_warn(&dev->dev,
1855 "writing persistent grants feature to xenbus");
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001856
1857 err = xenbus_transaction_end(xbt, 0);
1858 if (err) {
1859 if (err == -EAGAIN)
1860 goto again;
1861 xenbus_dev_fatal(dev, err, "completing transaction");
1862 goto destroy_blkring;
1863 }
1864
Juergen Gross4ab50af2020-03-05 16:51:29 +01001865 for_each_rinfo(info, rinfo, i) {
Bob Liu3df0e502015-11-14 11:12:12 +08001866 unsigned int j;
Bob Liu3df0e502015-11-14 11:12:12 +08001867
1868 for (j = 0; j < BLK_RING_SIZE(info); j++)
1869 rinfo->shadow[j].req.u.rw.id = j + 1;
1870 rinfo->shadow[BLK_RING_SIZE(info)-1].req.u.rw.id = 0x0fffffff;
1871 }
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001872 xenbus_switch_state(dev, XenbusStateInitialised);
1873
1874 return 0;
1875
1876 abort_transaction:
1877 xenbus_transaction_end(xbt, 1);
1878 if (message)
1879 xenbus_dev_fatal(dev, err, "%s", message);
1880 destroy_blkring:
1881 blkif_free(info, 0);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001882 return err;
1883}
1884
Bob Liu3db70a82015-11-25 17:52:55 -05001885static int negotiate_mq(struct blkfront_info *info)
1886{
Juergen Grossf27dc1a2016-10-31 14:58:40 +01001887 unsigned int backend_max_queues;
Bob Liu3db70a82015-11-25 17:52:55 -05001888 unsigned int i;
Juergen Gross4ab50af2020-03-05 16:51:29 +01001889 struct blkfront_ring_info *rinfo;
Bob Liu3db70a82015-11-25 17:52:55 -05001890
1891 BUG_ON(info->nr_rings);
1892
1893 /* Check if backend supports multiple queues. */
Juergen Grossf27dc1a2016-10-31 14:58:40 +01001894 backend_max_queues = xenbus_read_unsigned(info->xbdev->otherend,
1895 "multi-queue-max-queues", 1);
Bob Liu3db70a82015-11-25 17:52:55 -05001896 info->nr_rings = min(backend_max_queues, xen_blkif_max_queues);
1897 /* We need at least one ring. */
1898 if (!info->nr_rings)
1899 info->nr_rings = 1;
1900
Juergen Gross4ab50af2020-03-05 16:51:29 +01001901 info->rinfo_size = struct_size(info->rinfo, shadow,
1902 BLK_RING_SIZE(info));
1903 info->rinfo = kvcalloc(info->nr_rings, info->rinfo_size, GFP_KERNEL);
Bob Liu3db70a82015-11-25 17:52:55 -05001904 if (!info->rinfo) {
1905 xenbus_dev_fatal(info->xbdev, -ENOMEM, "allocating ring_info structure");
Manjunath Patil6cc4a082018-10-30 09:49:21 -07001906 info->nr_rings = 0;
Bob Liu3db70a82015-11-25 17:52:55 -05001907 return -ENOMEM;
1908 }
1909
Juergen Gross4ab50af2020-03-05 16:51:29 +01001910 for_each_rinfo(info, rinfo, i) {
Bob Liu3db70a82015-11-25 17:52:55 -05001911 INIT_LIST_HEAD(&rinfo->indirect_pages);
1912 INIT_LIST_HEAD(&rinfo->grants);
1913 rinfo->dev_info = info;
1914 INIT_WORK(&rinfo->work, blkif_restart_queue);
1915 spin_lock_init(&rinfo->ring_lock);
1916 }
1917 return 0;
1918}
SeongJae Park74a85242020-09-23 08:18:40 +02001919
1920/* Enable the persistent grants feature. */
1921static bool feature_persistent = true;
1922module_param(feature_persistent, bool, 0644);
1923MODULE_PARM_DESC(feature_persistent,
1924 "Enables the persistent grants feature");
1925
Lee Jones5fdbd5b2021-03-12 10:55:29 +00001926/*
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001927 * Entry point to this code when a new device is created. Allocate the basic
1928 * structures and the ring buffer for communication with the backend, and
1929 * inform the backend of the appropriate details for those. Switch to
1930 * Initialised state.
1931 */
1932static int blkfront_probe(struct xenbus_device *dev,
1933 const struct xenbus_device_id *id)
1934{
Bob Liu86839c52015-06-03 13:40:03 +08001935 int err, vdevice;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001936 struct blkfront_info *info;
1937
1938 /* FIXME: Use dynamic device id if this is not set. */
1939 err = xenbus_scanf(XBT_NIL, dev->nodename,
1940 "virtual-device", "%i", &vdevice);
1941 if (err != 1) {
Chris Lalancette9246b5f2008-09-17 14:30:32 -07001942 /* go looking in the extended area instead */
1943 err = xenbus_scanf(XBT_NIL, dev->nodename, "virtual-device-ext",
1944 "%i", &vdevice);
1945 if (err != 1) {
1946 xenbus_dev_fatal(dev, err, "reading virtual-device");
1947 return err;
1948 }
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001949 }
1950
Stefano Stabellinib98a4092010-07-29 14:53:16 +01001951 if (xen_hvm_domain()) {
1952 char *type;
1953 int len;
1954 /* no unplug has been done: do not hook devices != xen vbds */
Konrad Rzeszutek Wilk51c71a32013-11-26 15:05:40 -05001955 if (xen_has_pv_and_legacy_disk_devices()) {
Stefano Stabellinib98a4092010-07-29 14:53:16 +01001956 int major;
Stefano Stabellinic1c54132010-05-14 12:44:30 +01001957
Stefano Stabellinib98a4092010-07-29 14:53:16 +01001958 if (!VDEV_IS_EXTENDED(vdevice))
1959 major = BLKIF_MAJOR(vdevice);
1960 else
1961 major = XENVBD_MAJOR;
Stefano Stabellinic1c54132010-05-14 12:44:30 +01001962
Stefano Stabellinib98a4092010-07-29 14:53:16 +01001963 if (major != XENVBD_MAJOR) {
1964 printk(KERN_INFO
1965 "%s: HVM does not support vbd %d as xen block device\n",
Rasmus Villemoes02f1f212015-02-12 15:01:31 -08001966 __func__, vdevice);
Stefano Stabellinib98a4092010-07-29 14:53:16 +01001967 return -ENODEV;
1968 }
1969 }
1970 /* do not create a PV cdrom device if we are an HVM guest */
1971 type = xenbus_read(XBT_NIL, dev->nodename, "device-type", &len);
1972 if (IS_ERR(type))
1973 return -ENODEV;
1974 if (strncmp(type, "cdrom", 5) == 0) {
1975 kfree(type);
Stefano Stabellinic1c54132010-05-14 12:44:30 +01001976 return -ENODEV;
1977 }
Stefano Stabellinib98a4092010-07-29 14:53:16 +01001978 kfree(type);
Stefano Stabellinic1c54132010-05-14 12:44:30 +01001979 }
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001980 info = kzalloc(sizeof(*info), GFP_KERNEL);
1981 if (!info) {
1982 xenbus_dev_fatal(dev, -ENOMEM, "allocating info structure");
1983 return -ENOMEM;
1984 }
1985
Bob Liu28d949b2015-11-14 11:12:14 +08001986 info->xbdev = dev;
Bob Liu81f35162015-11-14 11:12:11 +08001987
Daniel Stoddenb70f5fa2010-04-30 22:01:19 +00001988 mutex_init(&info->mutex);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001989 info->vdevice = vdevice;
1990 info->connected = BLKIF_STATE_DISCONNECTED;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001991
SeongJae Park74a85242020-09-23 08:18:40 +02001992 info->feature_persistent = feature_persistent;
1993
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001994 /* Front end dir is a number, which is used as the id. */
1995 info->handle = simple_strtoul(strrchr(dev->nodename, '/')+1, NULL, 0);
Greg Kroah-Hartmana1b4b122009-04-30 14:43:31 -07001996 dev_set_drvdata(&dev->dev, info);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07001997
Juergen Grossa46b5362018-08-13 16:01:11 +02001998 mutex_lock(&blkfront_mutex);
1999 list_add(&info->info_list, &info_list);
2000 mutex_unlock(&blkfront_mutex);
2001
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002002 return 0;
2003}
2004
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002005static int blkif_recover(struct blkfront_info *info)
2006{
NeilBrown4559fa52017-06-18 14:38:59 +10002007 unsigned int r_index;
Roger Pau Monne402b27f2013-04-18 16:06:54 +02002008 struct request *req, *n;
Roger Pau Monne402b27f2013-04-18 16:06:54 +02002009 int rc;
NeilBrown4559fa52017-06-18 14:38:59 +10002010 struct bio *bio;
2011 unsigned int segs;
Juergen Gross4ab50af2020-03-05 16:51:29 +01002012 struct blkfront_ring_info *rinfo;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002013
Bob Liu3df0e502015-11-14 11:12:12 +08002014 blkfront_gather_backend_features(info);
Bob Liu172335a2016-07-01 17:43:39 -04002015 /* Reset limits changed by blk_mq_update_nr_hw_queues(). */
2016 blkif_set_queue_limits(info);
Roger Pau Monne402b27f2013-04-18 16:06:54 +02002017 segs = info->max_indirect_segments ? : BLKIF_MAX_SEGMENTS_PER_REQUEST;
Bob Liu6c647b02016-07-01 15:45:57 -04002018 blk_queue_max_segments(info->rq, segs / GRANTS_PER_PSEG);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002019
Juergen Gross4ab50af2020-03-05 16:51:29 +01002020 for_each_rinfo(info, rinfo, r_index) {
Bob Liu3df0e502015-11-14 11:12:12 +08002021 rc = blkfront_setup_indirect(rinfo);
Bob Liu7b427a52016-06-27 16:33:24 +08002022 if (rc)
Bob Liu3df0e502015-11-14 11:12:12 +08002023 return rc;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002024 }
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002025 xenbus_switch_state(info->xbdev, XenbusStateConnected);
2026
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002027 /* Now safe for us to use the shared ring */
2028 info->connected = BLKIF_STATE_CONNECTED;
2029
Juergen Gross4ab50af2020-03-05 16:51:29 +01002030 for_each_rinfo(info, rinfo, r_index) {
Bob Liu3df0e502015-11-14 11:12:12 +08002031 /* Kick any other new requests queued since we resumed */
2032 kick_pending_request_queues(rinfo);
2033 }
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002034
Bob Liu7b427a52016-06-27 16:33:24 +08002035 list_for_each_entry_safe(req, n, &info->requests, queuelist) {
Roger Pau Monne402b27f2013-04-18 16:06:54 +02002036 /* Requeue pending requests (flush or discard) */
2037 list_del_init(&req->queuelist);
2038 BUG_ON(req->nr_phys_segments > segs);
Bart Van Assche2b053ac2016-10-28 17:21:41 -07002039 blk_mq_requeue_request(req, false);
Roger Pau Monne402b27f2013-04-18 16:06:54 +02002040 }
Bart Van Assche52d7f1b2016-10-28 17:20:32 -07002041 blk_mq_start_stopped_hw_queues(info->rq, true);
Bob Liu907c3eb2015-07-13 17:55:24 +08002042 blk_mq_kick_requeue_list(info->rq);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002043
Bob Liu7b427a52016-06-27 16:33:24 +08002044 while ((bio = bio_list_pop(&info->bio_list)) != NULL) {
Roger Pau Monne402b27f2013-04-18 16:06:54 +02002045 /* Traverse the list of pending bios and re-queue them */
Mike Christie4e49ea42016-06-05 14:31:41 -05002046 submit_bio(bio);
Roger Pau Monne402b27f2013-04-18 16:06:54 +02002047 }
2048
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002049 return 0;
2050}
2051
Lee Jones5fdbd5b2021-03-12 10:55:29 +00002052/*
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002053 * We are reconnecting to the backend, due to a suspend/resume, or a backend
2054 * driver restart. We tear down our blkif structure and recreate it, but
2055 * leave the device-layer structures intact so that this is transparent to the
2056 * rest of the kernel.
2057 */
2058static int blkfront_resume(struct xenbus_device *dev)
2059{
Greg Kroah-Hartmana1b4b122009-04-30 14:43:31 -07002060 struct blkfront_info *info = dev_get_drvdata(&dev->dev);
Bob Liu3db70a82015-11-25 17:52:55 -05002061 int err = 0;
Bob Liu7b427a52016-06-27 16:33:24 +08002062 unsigned int i, j;
Juergen Gross4ab50af2020-03-05 16:51:29 +01002063 struct blkfront_ring_info *rinfo;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002064
2065 dev_dbg(&dev->dev, "blkfront_resume: %s\n", dev->nodename);
2066
Bob Liu7b427a52016-06-27 16:33:24 +08002067 bio_list_init(&info->bio_list);
2068 INIT_LIST_HEAD(&info->requests);
Juergen Gross4ab50af2020-03-05 16:51:29 +01002069 for_each_rinfo(info, rinfo, i) {
Bob Liu7b427a52016-06-27 16:33:24 +08002070 struct bio_list merge_bio;
2071 struct blk_shadow *shadow = rinfo->shadow;
2072
2073 for (j = 0; j < BLK_RING_SIZE(info); j++) {
2074 /* Not in use? */
2075 if (!shadow[j].request)
2076 continue;
2077
2078 /*
2079 * Get the bios in the request so we can re-queue them.
2080 */
Munehisa Kamatab15bd8c2017-08-09 15:31:40 -07002081 if (req_op(shadow[j].request) == REQ_OP_FLUSH ||
2082 req_op(shadow[j].request) == REQ_OP_DISCARD ||
2083 req_op(shadow[j].request) == REQ_OP_SECURE_ERASE ||
Linus Torvalds3fc9d692016-07-26 15:37:51 -07002084 shadow[j].request->cmd_flags & REQ_FUA) {
Bob Liu7b427a52016-06-27 16:33:24 +08002085 /*
2086 * Flush operations don't contain bios, so
2087 * we need to requeue the whole request
Linus Torvalds3fc9d692016-07-26 15:37:51 -07002088 *
2089 * XXX: but this doesn't make any sense for a
2090 * write with the FUA flag set..
Bob Liu7b427a52016-06-27 16:33:24 +08002091 */
2092 list_add(&shadow[j].request->queuelist, &info->requests);
2093 continue;
2094 }
2095 merge_bio.head = shadow[j].request->bio;
2096 merge_bio.tail = shadow[j].request->biotail;
2097 bio_list_merge(&info->bio_list, &merge_bio);
2098 shadow[j].request->bio = NULL;
Christoph Hellwig2a842ac2017-06-03 09:38:04 +02002099 blk_mq_end_request(shadow[j].request, BLK_STS_OK);
Bob Liu7b427a52016-06-27 16:33:24 +08002100 }
2101 }
2102
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002103 blkif_free(info, info->connected == BLKIF_STATE_CONNECTED);
2104
Ian Campbell203fd612009-12-04 15:33:54 +00002105 err = talk_to_blkback(dev, info);
Bob Liu2a6f71a2016-05-31 16:59:17 +08002106 if (!err)
2107 blk_mq_update_nr_hw_queues(&info->tag_set, info->nr_rings);
Roger Pau Monne402b27f2013-04-18 16:06:54 +02002108
2109 /*
2110 * We have to wait for the backend to switch to
2111 * connected state, since we want to read which
2112 * features it supports.
2113 */
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002114
2115 return err;
2116}
2117
Konrad Rzeszutek Wilk6f03a7f2015-11-16 15:14:41 -05002118static void blkfront_closing(struct blkfront_info *info)
Daniel Stoddenb70f5fa2010-04-30 22:01:19 +00002119{
2120 struct xenbus_device *xbdev = info->xbdev;
Christoph Hellwig05d69d92021-07-15 16:17:11 +02002121 struct blkfront_ring_info *rinfo;
2122 unsigned int i;
Daniel Stoddenb70f5fa2010-04-30 22:01:19 +00002123
Christoph Hellwig05d69d92021-07-15 16:17:11 +02002124 if (xbdev->state == XenbusStateClosing)
Daniel Stoddenb70f5fa2010-04-30 22:01:19 +00002125 return;
Christoph Hellwig05d69d92021-07-15 16:17:11 +02002126
2127 /* No more blkif_request(). */
2128 blk_mq_stop_hw_queues(info->rq);
2129 blk_set_queue_dying(info->rq);
2130 set_capacity(info->gd, 0);
2131
2132 for_each_rinfo(info, rinfo, i) {
2133 /* No more gnttab callback work. */
2134 gnttab_cancel_free_callback(&rinfo->callback);
2135
2136 /* Flush gnttab callback work. Must be done with no locks held. */
2137 flush_work(&rinfo->work);
Daniel Stoddenb70f5fa2010-04-30 22:01:19 +00002138 }
2139
Christoph Hellwig05d69d92021-07-15 16:17:11 +02002140 xenbus_frontend_closed(xbdev);
Daniel Stoddenb70f5fa2010-04-30 22:01:19 +00002141}
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002142
Li Dongyanged30bf32011-09-01 18:39:09 +08002143static void blkfront_setup_discard(struct blkfront_info *info)
2144{
Olaf Hering1c8cad62014-05-21 16:32:40 +02002145 info->feature_discard = 1;
Roger Pau Monne0549cd62021-01-19 11:57:27 +01002146 info->discard_granularity = xenbus_read_unsigned(info->xbdev->otherend,
2147 "discard-granularity",
2148 0);
2149 info->discard_alignment = xenbus_read_unsigned(info->xbdev->otherend,
2150 "discard-alignment", 0);
Juergen Grossf27dc1a2016-10-31 14:58:40 +01002151 info->feature_secdiscard =
2152 !!xenbus_read_unsigned(info->xbdev->otherend, "discard-secure",
2153 0);
Li Dongyanged30bf32011-09-01 18:39:09 +08002154}
2155
Bob Liu81f35162015-11-14 11:12:11 +08002156static int blkfront_setup_indirect(struct blkfront_ring_info *rinfo)
Roger Pau Monne402b27f2013-04-18 16:06:54 +02002157{
Juergen Gross3a169c02020-04-03 11:00:34 +02002158 unsigned int psegs, grants, memflags;
Roger Pau Monne402b27f2013-04-18 16:06:54 +02002159 int err, i;
Bob Liu81f35162015-11-14 11:12:11 +08002160 struct blkfront_info *info = rinfo->dev_info;
Roger Pau Monne402b27f2013-04-18 16:06:54 +02002161
Juergen Gross3a169c02020-04-03 11:00:34 +02002162 memflags = memalloc_noio_save();
2163
Julien Grall6cc568332015-08-13 13:13:35 +01002164 if (info->max_indirect_segments == 0) {
2165 if (!HAS_EXTRA_REQ)
2166 grants = BLKIF_MAX_SEGMENTS_PER_REQUEST;
2167 else {
2168 /*
2169 * When an extra req is required, the maximum
2170 * grants supported is related to the size of the
2171 * Linux block segment.
2172 */
2173 grants = GRANTS_PER_PSEG;
2174 }
2175 }
Bob Liud50babb2015-07-22 14:40:08 +08002176 else
Julien Grallc004a6f2015-07-22 16:44:54 +01002177 grants = info->max_indirect_segments;
Jan Beulich3b4f1882017-01-23 08:11:37 -07002178 psegs = DIV_ROUND_UP(grants, GRANTS_PER_PSEG);
Roger Pau Monne402b27f2013-04-18 16:06:54 +02002179
Bob Liu81f35162015-11-14 11:12:11 +08002180 err = fill_grant_buffer(rinfo,
Julien Grallc004a6f2015-07-22 16:44:54 +01002181 (grants + INDIRECT_GREFS(grants)) * BLK_RING_SIZE(info));
Roger Pau Monne402b27f2013-04-18 16:06:54 +02002182 if (err)
2183 goto out_of_memory;
2184
Roger Pau Monnebfe11d62013-10-29 18:31:14 +01002185 if (!info->feature_persistent && info->max_indirect_segments) {
2186 /*
2187 * We are using indirect descriptors but not persistent
2188 * grants, we need to allocate a set of pages that can be
2189 * used for mapping indirect grefs
2190 */
Julien Grallc004a6f2015-07-22 16:44:54 +01002191 int num = INDIRECT_GREFS(grants) * BLK_RING_SIZE(info);
Roger Pau Monnebfe11d62013-10-29 18:31:14 +01002192
Bob Liu81f35162015-11-14 11:12:11 +08002193 BUG_ON(!list_empty(&rinfo->indirect_pages));
Roger Pau Monnebfe11d62013-10-29 18:31:14 +01002194 for (i = 0; i < num; i++) {
Juergen Gross3a169c02020-04-03 11:00:34 +02002195 struct page *indirect_page = alloc_page(GFP_KERNEL);
Roger Pau Monnebfe11d62013-10-29 18:31:14 +01002196 if (!indirect_page)
2197 goto out_of_memory;
Bob Liu81f35162015-11-14 11:12:11 +08002198 list_add(&indirect_page->lru, &rinfo->indirect_pages);
Roger Pau Monnebfe11d62013-10-29 18:31:14 +01002199 }
2200 }
2201
Bob Liu86839c52015-06-03 13:40:03 +08002202 for (i = 0; i < BLK_RING_SIZE(info); i++) {
Kees Cook6396bb22018-06-12 14:03:40 -07002203 rinfo->shadow[i].grants_used =
Roger Pau Monne1d5c76e2019-05-03 17:04:01 +02002204 kvcalloc(grants,
2205 sizeof(rinfo->shadow[i].grants_used[0]),
Juergen Gross3a169c02020-04-03 11:00:34 +02002206 GFP_KERNEL);
Roger Pau Monne1d5c76e2019-05-03 17:04:01 +02002207 rinfo->shadow[i].sg = kvcalloc(psegs,
2208 sizeof(rinfo->shadow[i].sg[0]),
Juergen Gross3a169c02020-04-03 11:00:34 +02002209 GFP_KERNEL);
Kees Cook6396bb22018-06-12 14:03:40 -07002210 if (info->max_indirect_segments)
2211 rinfo->shadow[i].indirect_grants =
Roger Pau Monne1d5c76e2019-05-03 17:04:01 +02002212 kvcalloc(INDIRECT_GREFS(grants),
2213 sizeof(rinfo->shadow[i].indirect_grants[0]),
Juergen Gross3a169c02020-04-03 11:00:34 +02002214 GFP_KERNEL);
Bob Liu81f35162015-11-14 11:12:11 +08002215 if ((rinfo->shadow[i].grants_used == NULL) ||
2216 (rinfo->shadow[i].sg == NULL) ||
Roger Pau Monne402b27f2013-04-18 16:06:54 +02002217 (info->max_indirect_segments &&
Bob Liu81f35162015-11-14 11:12:11 +08002218 (rinfo->shadow[i].indirect_grants == NULL)))
Roger Pau Monne402b27f2013-04-18 16:06:54 +02002219 goto out_of_memory;
Bob Liu81f35162015-11-14 11:12:11 +08002220 sg_init_table(rinfo->shadow[i].sg, psegs);
Roger Pau Monne402b27f2013-04-18 16:06:54 +02002221 }
2222
Juergen Gross3a169c02020-04-03 11:00:34 +02002223 memalloc_noio_restore(memflags);
Roger Pau Monne402b27f2013-04-18 16:06:54 +02002224
2225 return 0;
2226
2227out_of_memory:
Bob Liu86839c52015-06-03 13:40:03 +08002228 for (i = 0; i < BLK_RING_SIZE(info); i++) {
Roger Pau Monne1d5c76e2019-05-03 17:04:01 +02002229 kvfree(rinfo->shadow[i].grants_used);
Bob Liu81f35162015-11-14 11:12:11 +08002230 rinfo->shadow[i].grants_used = NULL;
Roger Pau Monne1d5c76e2019-05-03 17:04:01 +02002231 kvfree(rinfo->shadow[i].sg);
Bob Liu81f35162015-11-14 11:12:11 +08002232 rinfo->shadow[i].sg = NULL;
Roger Pau Monne1d5c76e2019-05-03 17:04:01 +02002233 kvfree(rinfo->shadow[i].indirect_grants);
Bob Liu81f35162015-11-14 11:12:11 +08002234 rinfo->shadow[i].indirect_grants = NULL;
Roger Pau Monne402b27f2013-04-18 16:06:54 +02002235 }
Bob Liu81f35162015-11-14 11:12:11 +08002236 if (!list_empty(&rinfo->indirect_pages)) {
Roger Pau Monnebfe11d62013-10-29 18:31:14 +01002237 struct page *indirect_page, *n;
Bob Liu81f35162015-11-14 11:12:11 +08002238 list_for_each_entry_safe(indirect_page, n, &rinfo->indirect_pages, lru) {
Roger Pau Monnebfe11d62013-10-29 18:31:14 +01002239 list_del(&indirect_page->lru);
2240 __free_page(indirect_page);
2241 }
2242 }
Juergen Gross3a169c02020-04-03 11:00:34 +02002243
2244 memalloc_noio_restore(memflags);
2245
Roger Pau Monne402b27f2013-04-18 16:06:54 +02002246 return -ENOMEM;
2247}
2248
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002249/*
Bob Liud50babb2015-07-22 14:40:08 +08002250 * Gather all backend feature-*
2251 */
Bob Liu3df0e502015-11-14 11:12:12 +08002252static void blkfront_gather_backend_features(struct blkfront_info *info)
Bob Liud50babb2015-07-22 14:40:08 +08002253{
Bob Liud50babb2015-07-22 14:40:08 +08002254 unsigned int indirect_segments;
2255
2256 info->feature_flush = 0;
Mike Christiea4180902016-06-05 14:32:24 -05002257 info->feature_fua = 0;
Bob Liud50babb2015-07-22 14:40:08 +08002258
Bob Liud50babb2015-07-22 14:40:08 +08002259 /*
2260 * If there's no "feature-barrier" defined, then it means
2261 * we're dealing with a very old backend which writes
2262 * synchronously; nothing to do.
2263 *
2264 * If there are barriers, then we use flush.
2265 */
Juergen Grossf27dc1a2016-10-31 14:58:40 +01002266 if (xenbus_read_unsigned(info->xbdev->otherend, "feature-barrier", 0)) {
Mike Christiea4180902016-06-05 14:32:24 -05002267 info->feature_flush = 1;
2268 info->feature_fua = 1;
2269 }
2270
Bob Liud50babb2015-07-22 14:40:08 +08002271 /*
2272 * And if there is "feature-flush-cache" use that above
2273 * barriers.
2274 */
Juergen Grossf27dc1a2016-10-31 14:58:40 +01002275 if (xenbus_read_unsigned(info->xbdev->otherend, "feature-flush-cache",
2276 0)) {
Mike Christiea4180902016-06-05 14:32:24 -05002277 info->feature_flush = 1;
2278 info->feature_fua = 0;
2279 }
Bob Liud50babb2015-07-22 14:40:08 +08002280
Juergen Grossf27dc1a2016-10-31 14:58:40 +01002281 if (xenbus_read_unsigned(info->xbdev->otherend, "feature-discard", 0))
Bob Liud50babb2015-07-22 14:40:08 +08002282 blkfront_setup_discard(info);
2283
SeongJae Park74a85242020-09-23 08:18:40 +02002284 if (info->feature_persistent)
2285 info->feature_persistent =
2286 !!xenbus_read_unsigned(info->xbdev->otherend,
2287 "feature-persistent", 0);
Bob Liud50babb2015-07-22 14:40:08 +08002288
Juergen Grossf27dc1a2016-10-31 14:58:40 +01002289 indirect_segments = xenbus_read_unsigned(info->xbdev->otherend,
2290 "feature-max-indirect-segments", 0);
Jan Beulich3b4f1882017-01-23 08:11:37 -07002291 if (indirect_segments > xen_blkif_max_segments)
2292 indirect_segments = xen_blkif_max_segments;
2293 if (indirect_segments <= BLKIF_MAX_SEGMENTS_PER_REQUEST)
2294 indirect_segments = 0;
2295 info->max_indirect_segments = indirect_segments;
Juergen Grossa46b5362018-08-13 16:01:11 +02002296
2297 if (info->feature_persistent) {
2298 mutex_lock(&blkfront_mutex);
2299 schedule_delayed_work(&blkfront_work, HZ * 10);
2300 mutex_unlock(&blkfront_mutex);
2301 }
Bob Liud50babb2015-07-22 14:40:08 +08002302}
2303
2304/*
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002305 * Invoked when the backend is finally 'ready' (and has told produced
2306 * the details about the physical device - #sectors, size, etc).
2307 */
2308static void blkfront_connect(struct blkfront_info *info)
2309{
2310 unsigned long long sectors;
2311 unsigned long sector_size;
Stefan Bader7c4d7d72013-05-13 16:28:15 +02002312 unsigned int physical_sector_size;
Bob Liu3df0e502015-11-14 11:12:12 +08002313 int err, i;
Juergen Gross4ab50af2020-03-05 16:51:29 +01002314 struct blkfront_ring_info *rinfo;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002315
K. Y. Srinivasan1fa73be2010-03-11 13:42:26 -08002316 switch (info->connected) {
2317 case BLKIF_STATE_CONNECTED:
2318 /*
2319 * Potentially, the back-end may be signalling
2320 * a capacity change; update the capacity.
2321 */
2322 err = xenbus_scanf(XBT_NIL, info->xbdev->otherend,
2323 "sectors", "%Lu", &sectors);
2324 if (XENBUS_EXIST_ERR(err))
2325 return;
2326 printk(KERN_INFO "Setting capacity to %Lu\n",
2327 sectors);
Christoph Hellwig449f4ec2020-11-16 15:56:56 +01002328 set_capacity_and_notify(info->gd, sectors);
K. Y. Srinivasan1fa73be2010-03-11 13:42:26 -08002329
Roger Pau Monne402b27f2013-04-18 16:06:54 +02002330 return;
K. Y. Srinivasan1fa73be2010-03-11 13:42:26 -08002331 case BLKIF_STATE_SUSPENDED:
Roger Pau Monne402b27f2013-04-18 16:06:54 +02002332 /*
2333 * If we are recovering from suspension, we need to wait
2334 * for the backend to announce it's features before
2335 * reconnecting, at least we need to know if the backend
2336 * supports indirect descriptors, and how many.
2337 */
2338 blkif_recover(info);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002339 return;
2340
Jeremy Fitzhardingeb4dddb42010-03-11 15:10:40 -08002341 default:
2342 break;
K. Y. Srinivasan1fa73be2010-03-11 13:42:26 -08002343 }
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002344
2345 dev_dbg(&info->xbdev->dev, "%s:%s.\n",
2346 __func__, info->xbdev->otherend);
2347
2348 err = xenbus_gather(XBT_NIL, info->xbdev->otherend,
2349 "sectors", "%llu", &sectors,
Christoph Hellwig1a827ce12021-11-22 14:06:14 +01002350 "info", "%u", &info->vdisk_info,
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002351 "sector-size", "%lu", &sector_size,
2352 NULL);
2353 if (err) {
2354 xenbus_dev_fatal(info->xbdev, err,
2355 "reading backend fields at %s",
2356 info->xbdev->otherend);
2357 return;
2358 }
2359
Stefan Bader7c4d7d72013-05-13 16:28:15 +02002360 /*
Bjorn Helgaasec3307a2021-01-26 14:55:09 -06002361 * physical-sector-size is a newer field, so old backends may not
Stefan Bader7c4d7d72013-05-13 16:28:15 +02002362 * provide this. Assume physical sector size to be the same as
2363 * sector_size in that case.
2364 */
Juergen Grossf27dc1a2016-10-31 14:58:40 +01002365 physical_sector_size = xenbus_read_unsigned(info->xbdev->otherend,
2366 "physical-sector-size",
2367 sector_size);
Bob Liu3df0e502015-11-14 11:12:12 +08002368 blkfront_gather_backend_features(info);
Juergen Gross4ab50af2020-03-05 16:51:29 +01002369 for_each_rinfo(info, rinfo, i) {
2370 err = blkfront_setup_indirect(rinfo);
Bob Liu3df0e502015-11-14 11:12:12 +08002371 if (err) {
2372 xenbus_dev_fatal(info->xbdev, err, "setup_indirect at %s",
2373 info->xbdev->otherend);
2374 blkif_free(info, 0);
2375 break;
2376 }
Roger Pau Monne402b27f2013-04-18 16:06:54 +02002377 }
2378
Christoph Hellwig1a827ce12021-11-22 14:06:14 +01002379 err = xlvbd_alloc_gendisk(sectors, info, sector_size,
Stefan Bader7c4d7d72013-05-13 16:28:15 +02002380 physical_sector_size);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002381 if (err) {
2382 xenbus_dev_fatal(info->xbdev, err, "xlvbd_add at %s",
2383 info->xbdev->otherend);
Bob Liu4e876c22016-07-27 17:42:04 +08002384 goto fail;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002385 }
2386
2387 xenbus_switch_state(info->xbdev, XenbusStateConnected);
2388
2389 /* Kick pending requests. */
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002390 info->connected = BLKIF_STATE_CONNECTED;
Juergen Gross4ab50af2020-03-05 16:51:29 +01002391 for_each_rinfo(info, rinfo, i)
2392 kick_pending_request_queues(rinfo);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002393
Luis Chamberlain293a7c52021-10-15 16:30:24 -07002394 err = device_add_disk(&info->xbdev->dev, info->gd, NULL);
2395 if (err) {
2396 blk_cleanup_disk(info->gd);
2397 blk_mq_free_tag_set(&info->tag_set);
2398 info->rq = NULL;
2399 goto fail;
2400 }
Christian Limpach1d78d702008-04-02 10:54:04 -07002401
2402 info->is_ready = 1;
Bob Liu4e876c22016-07-27 17:42:04 +08002403 return;
2404
2405fail:
2406 blkif_free(info, 0);
2407 return;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002408}
2409
Lee Jones5fdbd5b2021-03-12 10:55:29 +00002410/*
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002411 * Callback received when the backend's state changes.
2412 */
Ian Campbell203fd612009-12-04 15:33:54 +00002413static void blkback_changed(struct xenbus_device *dev,
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002414 enum xenbus_state backend_state)
2415{
Greg Kroah-Hartmana1b4b122009-04-30 14:43:31 -07002416 struct blkfront_info *info = dev_get_drvdata(&dev->dev);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002417
Ian Campbell203fd612009-12-04 15:33:54 +00002418 dev_dbg(&dev->dev, "blkfront:blkback_changed to state %d.\n", backend_state);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002419
2420 switch (backend_state) {
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002421 case XenbusStateInitWait:
Bob Liua9b54bb2015-06-19 00:23:00 -04002422 if (dev->state != XenbusStateInitialising)
2423 break;
Konrad Rzeszutek Wilkc31ecf62015-12-18 16:28:53 -05002424 if (talk_to_blkback(dev, info))
Bob Liu8ab01442015-06-03 13:40:02 +08002425 break;
Gustavo A. R. Silva3955bcb2020-11-20 12:32:58 -06002426 break;
Bob Liu8ab01442015-06-03 13:40:02 +08002427 case XenbusStateInitialising:
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002428 case XenbusStateInitialised:
Noboru Iwamatsub78c9512009-10-13 17:22:29 -04002429 case XenbusStateReconfiguring:
2430 case XenbusStateReconfigured:
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002431 case XenbusStateUnknown:
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002432 break;
2433
2434 case XenbusStateConnected:
Bob Liuefd15352016-06-07 10:43:15 -04002435 /*
2436 * talk_to_blkback sets state to XenbusStateInitialised
2437 * and blkfront_connect sets it to XenbusStateConnected
2438 * (if connection went OK).
2439 *
2440 * If the backend (or toolstack) decides to poke at backend
2441 * state (and re-trigger the watch by setting the state repeatedly
2442 * to XenbusStateConnected (4)) we need to deal with this.
2443 * This is allowed as this is used to communicate to the guest
2444 * that the size of disk has changed!
2445 */
2446 if ((dev->state != XenbusStateInitialised) &&
2447 (dev->state != XenbusStateConnected)) {
Konrad Rzeszutek Wilkc31ecf62015-12-18 16:28:53 -05002448 if (talk_to_blkback(dev, info))
2449 break;
2450 }
Bob Liuefd15352016-06-07 10:43:15 -04002451
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002452 blkfront_connect(info);
2453 break;
2454
David Vrabel36613712014-02-04 18:53:56 +00002455 case XenbusStateClosed:
2456 if (dev->state == XenbusStateClosed)
2457 break;
Gustavo A. R. Silvadf561f662020-08-23 17:36:59 -05002458 fallthrough;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002459 case XenbusStateClosing:
Christoph Hellwig05d69d92021-07-15 16:17:11 +02002460 blkfront_closing(info);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002461 break;
2462 }
2463}
2464
Daniel Stoddenfa1bd352010-04-30 22:01:22 +00002465static int blkfront_remove(struct xenbus_device *xbdev)
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002466{
Daniel Stoddenfa1bd352010-04-30 22:01:22 +00002467 struct blkfront_info *info = dev_get_drvdata(&xbdev->dev);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002468
Daniel Stoddenfa1bd352010-04-30 22:01:22 +00002469 dev_dbg(&xbdev->dev, "%s removed", xbdev->nodename);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002470
Christoph Hellwig05d69d92021-07-15 16:17:11 +02002471 del_gendisk(info->gd);
2472
2473 mutex_lock(&blkfront_mutex);
2474 list_del(&info->info_list);
2475 mutex_unlock(&blkfront_mutex);
Vasilis Liaskovitisf92898e2018-10-15 15:25:08 +02002476
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002477 blkif_free(info, 0);
Christoph Hellwig05d69d92021-07-15 16:17:11 +02002478 xlbd_release_minors(info->gd->first_minor, info->gd->minors);
2479 blk_cleanup_disk(info->gd);
2480 blk_mq_free_tag_set(&info->tag_set);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002481
Christoph Hellwig05d69d92021-07-15 16:17:11 +02002482 kfree(info);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002483 return 0;
2484}
2485
Christian Limpach1d78d702008-04-02 10:54:04 -07002486static int blkfront_is_ready(struct xenbus_device *dev)
2487{
Greg Kroah-Hartmana1b4b122009-04-30 14:43:31 -07002488 struct blkfront_info *info = dev_get_drvdata(&dev->dev);
Christian Limpach1d78d702008-04-02 10:54:04 -07002489
Jan Beulich5d7ed202010-08-07 18:31:12 +02002490 return info->is_ready && info->xbdev;
Christian Limpach1d78d702008-04-02 10:54:04 -07002491}
2492
Alexey Dobriyan83d5cde2009-09-21 17:01:13 -07002493static const struct block_device_operations xlvbd_block_fops =
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002494{
2495 .owner = THIS_MODULE,
Ian Campbell597592d2008-02-21 13:03:45 -08002496 .getgeo = blkif_getgeo,
Arnd Bergmann8a6cfeb2010-07-08 10:18:46 +02002497 .ioctl = blkif_ioctl,
Arnd Bergmann9452b1a2019-11-28 15:48:10 +01002498 .compat_ioctl = blkdev_compat_ptr_ioctl,
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002499};
2500
2501
Márton Némethec9c42e2010-01-10 13:39:52 +01002502static const struct xenbus_device_id blkfront_ids[] = {
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002503 { "vbd" },
2504 { "" }
2505};
2506
David Vrabel95afae42014-09-08 17:30:41 +01002507static struct xenbus_driver blkfront_driver = {
2508 .ids = blkfront_ids,
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002509 .probe = blkfront_probe,
2510 .remove = blkfront_remove,
2511 .resume = blkfront_resume,
Ian Campbell203fd612009-12-04 15:33:54 +00002512 .otherend_changed = blkback_changed,
Christian Limpach1d78d702008-04-02 10:54:04 -07002513 .is_ready = blkfront_is_ready,
David Vrabel95afae42014-09-08 17:30:41 +01002514};
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002515
Juergen Grossa46b5362018-08-13 16:01:11 +02002516static void purge_persistent_grants(struct blkfront_info *info)
2517{
2518 unsigned int i;
2519 unsigned long flags;
Juergen Gross4ab50af2020-03-05 16:51:29 +01002520 struct blkfront_ring_info *rinfo;
Juergen Grossa46b5362018-08-13 16:01:11 +02002521
Juergen Gross4ab50af2020-03-05 16:51:29 +01002522 for_each_rinfo(info, rinfo, i) {
Juergen Grossa46b5362018-08-13 16:01:11 +02002523 struct grant *gnt_list_entry, *tmp;
2524
2525 spin_lock_irqsave(&rinfo->ring_lock, flags);
2526
2527 if (rinfo->persistent_gnts_c == 0) {
2528 spin_unlock_irqrestore(&rinfo->ring_lock, flags);
2529 continue;
2530 }
2531
2532 list_for_each_entry_safe(gnt_list_entry, tmp, &rinfo->grants,
2533 node) {
2534 if (gnt_list_entry->gref == GRANT_INVALID_REF ||
2535 gnttab_query_foreign_access(gnt_list_entry->gref))
2536 continue;
2537
2538 list_del(&gnt_list_entry->node);
2539 gnttab_end_foreign_access(gnt_list_entry->gref, 0, 0UL);
2540 rinfo->persistent_gnts_c--;
Juergen Gross6c767862018-09-28 09:28:27 +02002541 gnt_list_entry->gref = GRANT_INVALID_REF;
2542 list_add_tail(&gnt_list_entry->node, &rinfo->grants);
Juergen Grossa46b5362018-08-13 16:01:11 +02002543 }
2544
2545 spin_unlock_irqrestore(&rinfo->ring_lock, flags);
2546 }
2547}
2548
2549static void blkfront_delay_work(struct work_struct *work)
2550{
2551 struct blkfront_info *info;
2552 bool need_schedule_work = false;
2553
2554 mutex_lock(&blkfront_mutex);
2555
2556 list_for_each_entry(info, &info_list, info_list) {
2557 if (info->feature_persistent) {
2558 need_schedule_work = true;
2559 mutex_lock(&info->mutex);
2560 purge_persistent_grants(info);
2561 mutex_unlock(&info->mutex);
2562 }
2563 }
2564
2565 if (need_schedule_work)
2566 schedule_delayed_work(&blkfront_work, HZ * 10);
2567
2568 mutex_unlock(&blkfront_mutex);
2569}
2570
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002571static int __init xlblk_init(void)
2572{
Laszlo Ersek469738e2011-10-07 21:34:38 +02002573 int ret;
Bob Liu28d949b2015-11-14 11:12:14 +08002574 int nr_cpus = num_online_cpus();
Laszlo Ersek469738e2011-10-07 21:34:38 +02002575
Jeremy Fitzhardinge6e833582008-08-19 13:16:17 -07002576 if (!xen_domain())
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002577 return -ENODEV;
2578
Juergen Gross4bcddba2018-08-13 16:01:12 +02002579 if (!xen_has_pv_disk_devices())
2580 return -ENODEV;
2581
2582 if (register_blkdev(XENVBD_MAJOR, DEV_NAME)) {
2583 pr_warn("xen_blk: can't get major %d with name %s\n",
2584 XENVBD_MAJOR, DEV_NAME);
2585 return -ENODEV;
2586 }
2587
Jan Beulich3b4f1882017-01-23 08:11:37 -07002588 if (xen_blkif_max_segments < BLKIF_MAX_SEGMENTS_PER_REQUEST)
2589 xen_blkif_max_segments = BLKIF_MAX_SEGMENTS_PER_REQUEST;
2590
Julien Grall9cce2912015-10-13 17:50:11 +01002591 if (xen_blkif_max_ring_order > XENBUS_MAX_RING_GRANT_ORDER) {
Bob Liu86839c52015-06-03 13:40:03 +08002592 pr_info("Invalid max_ring_order (%d), will use default max: %d.\n",
Julien Grall9cce2912015-10-13 17:50:11 +01002593 xen_blkif_max_ring_order, XENBUS_MAX_RING_GRANT_ORDER);
Peng Fan45fc8262015-11-25 18:26:01 +08002594 xen_blkif_max_ring_order = XENBUS_MAX_RING_GRANT_ORDER;
Bob Liu86839c52015-06-03 13:40:03 +08002595 }
2596
Bob Liu28d949b2015-11-14 11:12:14 +08002597 if (xen_blkif_max_queues > nr_cpus) {
2598 pr_info("Invalid max_queues (%d), will use default max: %d.\n",
2599 xen_blkif_max_queues, nr_cpus);
2600 xen_blkif_max_queues = nr_cpus;
2601 }
2602
Juergen Grossa46b5362018-08-13 16:01:11 +02002603 INIT_DELAYED_WORK(&blkfront_work, blkfront_delay_work);
2604
Jan Beulich73db1442011-12-22 09:08:13 +00002605 ret = xenbus_register_frontend(&blkfront_driver);
Laszlo Ersek469738e2011-10-07 21:34:38 +02002606 if (ret) {
2607 unregister_blkdev(XENVBD_MAJOR, DEV_NAME);
2608 return ret;
2609 }
2610
2611 return 0;
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002612}
2613module_init(xlblk_init);
2614
2615
Jan Beulich5a60d0c2008-06-17 10:47:08 +02002616static void __exit xlblk_exit(void)
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002617{
Juergen Grossa46b5362018-08-13 16:01:11 +02002618 cancel_delayed_work_sync(&blkfront_work);
2619
Jan Beulich86050672012-04-05 16:04:52 +01002620 xenbus_unregister_driver(&blkfront_driver);
2621 unregister_blkdev(XENVBD_MAJOR, DEV_NAME);
2622 kfree(minors);
Jeremy Fitzhardinge9f27ee52007-07-17 18:37:06 -07002623}
2624module_exit(xlblk_exit);
2625
2626MODULE_DESCRIPTION("Xen virtual block device frontend");
2627MODULE_LICENSE("GPL");
2628MODULE_ALIAS_BLOCKDEV_MAJOR(XENVBD_MAJOR);
Mark McLoughlind2f0c522008-04-02 10:54:05 -07002629MODULE_ALIAS("xen:vbd");
Mark McLoughlin4f93f09b2008-04-02 10:54:06 -07002630MODULE_ALIAS("xenblk");